react-dom 19.2.0-canary-0038c501-20250429 → 19.2.0-canary-e9db3cc2-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 +9 -7
- package/cjs/react-dom-client.production.js +13 -7
- package/cjs/react-dom-profiling.development.js +9 -7
- package/cjs/react-dom-profiling.profiling.js +13 -7
- package/cjs/react-dom-server-legacy.browser.development.js +17 -9
- package/cjs/react-dom-server-legacy.browser.production.js +14 -7
- package/cjs/react-dom-server-legacy.node.development.js +17 -9
- package/cjs/react-dom-server-legacy.node.production.js +14 -7
- package/cjs/react-dom-server.browser.development.js +19 -11
- package/cjs/react-dom-server.browser.production.js +16 -9
- package/cjs/react-dom-server.bun.development.js +18 -10
- package/cjs/react-dom-server.bun.production.js +16 -9
- package/cjs/react-dom-server.edge.development.js +19 -11
- package/cjs/react-dom-server.edge.production.js +16 -9
- package/cjs/react-dom-server.node.development.js +19 -11
- package/cjs/react-dom-server.node.production.js +16 -9
- 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
@@ -5699,7 +5699,7 @@
|
|
5699
5699
|
0 === newBoundary.pendingTasks &&
|
5700
5700
|
newBoundary.status === PENDING &&
|
5701
5701
|
((newBoundary.status = COMPLETED),
|
5702
|
-
!(newBoundary.byteSize
|
5702
|
+
!(500 < newBoundary.byteSize)))
|
5703
5703
|
) {
|
5704
5704
|
0 === request.pendingRootTasks &&
|
5705
5705
|
task.blockedPreamble &&
|
@@ -6845,7 +6845,7 @@
|
|
6845
6845
|
boundary.parentFlushed &&
|
6846
6846
|
request.completedBoundaries.push(boundary),
|
6847
6847
|
boundary.status === COMPLETED &&
|
6848
|
-
(boundary.byteSize
|
6848
|
+
(500 < boundary.byteSize ||
|
6849
6849
|
(boundary.fallbackAbortableTasks.forEach(
|
6850
6850
|
abortTaskSoft,
|
6851
6851
|
request
|
@@ -7277,7 +7277,10 @@
|
|
7277
7277
|
hoistableState
|
7278
7278
|
)),
|
7279
7279
|
flushSubtree(request, destination, segment, hoistableState);
|
7280
|
-
else if (
|
7280
|
+
else if (
|
7281
|
+
500 < boundary.byteSize &&
|
7282
|
+
flushedByteSize + boundary.byteSize > request.progressiveChunkSize
|
7283
|
+
)
|
7281
7284
|
(boundary.rootSegmentID = request.nextSegmentId++),
|
7282
7285
|
request.completedBoundaries.push(boundary),
|
7283
7286
|
writeStartPendingSuspenseBoundary(
|
@@ -7287,6 +7290,7 @@
|
|
7287
7290
|
),
|
7288
7291
|
flushSubtree(request, destination, segment, hoistableState);
|
7289
7292
|
else {
|
7293
|
+
flushedByteSize += boundary.byteSize;
|
7290
7294
|
hoistableState &&
|
7291
7295
|
((segment = boundary.contentState),
|
7292
7296
|
segment.styles.forEach(hoistStyleQueueDependency, hoistableState),
|
@@ -7320,6 +7324,7 @@
|
|
7320
7324
|
return writeEndSegment(destination, segment.parentFormatContext);
|
7321
7325
|
}
|
7322
7326
|
function flushCompletedBoundary(request, destination, boundary) {
|
7327
|
+
flushedByteSize = boundary.byteSize;
|
7323
7328
|
for (
|
7324
7329
|
var completedSegments = boundary.completedSegments, i = 0;
|
7325
7330
|
i < completedSegments.length;
|
@@ -7436,6 +7441,7 @@
|
|
7436
7441
|
if (completedRootSegment.status === POSTPONED) return;
|
7437
7442
|
var completedPreambleSegments = request.completedPreambleSegments;
|
7438
7443
|
if (null === completedPreambleSegments) return;
|
7444
|
+
flushedByteSize = request.byteSize;
|
7439
7445
|
var resumableState = request.resumableState,
|
7440
7446
|
renderState = request.renderState,
|
7441
7447
|
preamble = renderState.preamble,
|
@@ -7706,8 +7712,9 @@
|
|
7706
7712
|
a: {
|
7707
7713
|
clientRenderedBoundaries = request;
|
7708
7714
|
boundary = destination;
|
7709
|
-
var boundary$jscomp$0 = partialBoundaries[i]
|
7710
|
-
|
7715
|
+
var boundary$jscomp$0 = partialBoundaries[i];
|
7716
|
+
flushedByteSize = boundary$jscomp$0.byteSize;
|
7717
|
+
var completedSegments = boundary$jscomp$0.completedSegments;
|
7711
7718
|
for (
|
7712
7719
|
JSCompiler_inline_result = 0;
|
7713
7720
|
JSCompiler_inline_result < completedSegments.length;
|
@@ -7840,11 +7847,11 @@
|
|
7840
7847
|
}
|
7841
7848
|
function ensureCorrectIsomorphicReactVersion() {
|
7842
7849
|
var isomorphicReactPackageVersion = React.version;
|
7843
|
-
if ("19.2.0-canary-
|
7850
|
+
if ("19.2.0-canary-e9db3cc2-20250501" !== isomorphicReactPackageVersion)
|
7844
7851
|
throw Error(
|
7845
7852
|
'Incompatible React versions: The "react" and "react-dom" packages must have the exact same version. Instead got:\n - react: ' +
|
7846
7853
|
(isomorphicReactPackageVersion +
|
7847
|
-
"\n - react-dom: 19.2.0-canary-
|
7854
|
+
"\n - react-dom: 19.2.0-canary-e9db3cc2-20250501\nLearn more: https://react.dev/warnings/version-mismatch")
|
7848
7855
|
);
|
7849
7856
|
}
|
7850
7857
|
var React = require("react"),
|
@@ -9073,11 +9080,11 @@
|
|
9073
9080
|
stringToPrecomputedChunk('<template data-rsi="" data-sid="');
|
9074
9081
|
stringToPrecomputedChunk('" data-pid="');
|
9075
9082
|
var completeBoundaryScript1Full = stringToPrecomputedChunk(
|
9076
|
-
'$RC=function(b,d,e){d=document.getElementById(d)
|
9083
|
+
'$RC=function(b,d,e){if(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()}}};$RC("'
|
9077
9084
|
),
|
9078
9085
|
completeBoundaryScript1Partial = stringToPrecomputedChunk('$RC("'),
|
9079
9086
|
completeBoundaryWithStylesScript1FullBoth = stringToPrecomputedChunk(
|
9080
|
-
'$RC=function(b,d,e){d=document.getElementById(d)
|
9087
|
+
'$RC=function(b,d,e){if(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("'
|
9081
9088
|
),
|
9082
9089
|
completeBoundaryWithStylesScript1FullPartial = stringToPrecomputedChunk(
|
9083
9090
|
'$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("'
|
@@ -9382,7 +9389,8 @@
|
|
9382
9389
|
didWarnAboutGetDerivedStateOnFunctionComponent = {},
|
9383
9390
|
didWarnAboutReassigningProps = !1,
|
9384
9391
|
didWarnAboutGenerators = !1,
|
9385
|
-
didWarnAboutMaps = !1
|
9392
|
+
didWarnAboutMaps = !1,
|
9393
|
+
flushedByteSize = 0;
|
9386
9394
|
ensureCorrectIsomorphicReactVersion();
|
9387
9395
|
ensureCorrectIsomorphicReactVersion();
|
9388
9396
|
exports.prerender = function (children, options) {
|
@@ -9526,5 +9534,5 @@
|
|
9526
9534
|
startWork(request);
|
9527
9535
|
});
|
9528
9536
|
};
|
9529
|
-
exports.version = "19.2.0-canary-
|
9537
|
+
exports.version = "19.2.0-canary-e9db3cc2-20250501";
|
9530
9538
|
})();
|
@@ -2466,11 +2466,11 @@ var completeSegmentScript1Full = stringToPrecomputedChunk(
|
|
2466
2466
|
stringToPrecomputedChunk('<template data-rsi="" data-sid="');
|
2467
2467
|
stringToPrecomputedChunk('" data-pid="');
|
2468
2468
|
var completeBoundaryScript1Full = stringToPrecomputedChunk(
|
2469
|
-
'$RC=function(b,d,e){d=document.getElementById(d)
|
2469
|
+
'$RC=function(b,d,e){if(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()}}};$RC("'
|
2470
2470
|
),
|
2471
2471
|
completeBoundaryScript1Partial = stringToPrecomputedChunk('$RC("'),
|
2472
2472
|
completeBoundaryWithStylesScript1FullBoth = stringToPrecomputedChunk(
|
2473
|
-
'$RC=function(b,d,e){d=document.getElementById(d)
|
2473
|
+
'$RC=function(b,d,e){if(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("'
|
2474
2474
|
),
|
2475
2475
|
completeBoundaryWithStylesScript1FullPartial = stringToPrecomputedChunk(
|
2476
2476
|
'$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("'
|
@@ -4668,8 +4668,7 @@ function renderElement(request, task, keyPath, type, props, ref) {
|
|
4668
4668
|
queueCompletedSegment(newBoundary, contentRootSegment),
|
4669
4669
|
0 === newBoundary.pendingTasks &&
|
4670
4670
|
0 === newBoundary.status &&
|
4671
|
-
((newBoundary.status = 1),
|
4672
|
-
!(newBoundary.byteSize > request.progressiveChunkSize)))
|
4671
|
+
((newBoundary.status = 1), !(500 < newBoundary.byteSize)))
|
4673
4672
|
) {
|
4674
4673
|
0 === request.pendingRootTasks &&
|
4675
4674
|
task.blockedPreamble &&
|
@@ -5536,7 +5535,7 @@ function finishedTask(request, boundary, segment) {
|
|
5536
5535
|
boundary.parentFlushed &&
|
5537
5536
|
request.completedBoundaries.push(boundary),
|
5538
5537
|
1 === boundary.status &&
|
5539
|
-
(boundary.byteSize
|
5538
|
+
(500 < boundary.byteSize ||
|
5540
5539
|
(boundary.fallbackAbortableTasks.forEach(
|
5541
5540
|
abortTaskSoft,
|
5542
5541
|
request
|
@@ -5841,6 +5840,7 @@ function flushSubtree(request, destination, segment, hoistableState) {
|
|
5841
5840
|
throw Error(formatProdErrorMessage(390));
|
5842
5841
|
}
|
5843
5842
|
}
|
5843
|
+
var flushedByteSize = 0;
|
5844
5844
|
function flushSegment(request, destination, segment, hoistableState) {
|
5845
5845
|
var boundary = segment.boundary;
|
5846
5846
|
if (null === boundary)
|
@@ -5876,7 +5876,10 @@ function flushSegment(request, destination, segment, hoistableState) {
|
|
5876
5876
|
hoistableState
|
5877
5877
|
)),
|
5878
5878
|
flushSubtree(request, destination, segment, hoistableState);
|
5879
|
-
else if (
|
5879
|
+
else if (
|
5880
|
+
500 < boundary.byteSize &&
|
5881
|
+
flushedByteSize + boundary.byteSize > request.progressiveChunkSize
|
5882
|
+
)
|
5880
5883
|
(boundary.rootSegmentID = request.nextSegmentId++),
|
5881
5884
|
request.completedBoundaries.push(boundary),
|
5882
5885
|
writeStartPendingSuspenseBoundary(
|
@@ -5886,6 +5889,7 @@ function flushSegment(request, destination, segment, hoistableState) {
|
|
5886
5889
|
),
|
5887
5890
|
flushSubtree(request, destination, segment, hoistableState);
|
5888
5891
|
else {
|
5892
|
+
flushedByteSize += boundary.byteSize;
|
5889
5893
|
hoistableState &&
|
5890
5894
|
((segment = boundary.contentState),
|
5891
5895
|
segment.styles.forEach(hoistStyleQueueDependency, hoistableState),
|
@@ -5908,6 +5912,7 @@ function flushSegmentContainer(request, destination, segment, hoistableState) {
|
|
5908
5912
|
return writeEndSegment(destination, segment.parentFormatContext);
|
5909
5913
|
}
|
5910
5914
|
function flushCompletedBoundary(request, destination, boundary) {
|
5915
|
+
flushedByteSize = boundary.byteSize;
|
5911
5916
|
for (
|
5912
5917
|
var completedSegments = boundary.completedSegments, i = 0;
|
5913
5918
|
i < completedSegments.length;
|
@@ -6003,6 +6008,7 @@ function flushCompletedQueues(request, destination) {
|
|
6003
6008
|
if (5 === completedRootSegment.status) return;
|
6004
6009
|
var completedPreambleSegments = request.completedPreambleSegments;
|
6005
6010
|
if (null === completedPreambleSegments) return;
|
6011
|
+
flushedByteSize = request.byteSize;
|
6006
6012
|
var resumableState = request.resumableState,
|
6007
6013
|
renderState = request.renderState,
|
6008
6014
|
preamble = renderState.preamble,
|
@@ -6189,6 +6195,7 @@ function flushCompletedQueues(request, destination) {
|
|
6189
6195
|
a: {
|
6190
6196
|
clientRenderedBoundaries = request;
|
6191
6197
|
boundary = destination;
|
6198
|
+
flushedByteSize = boundary$53.byteSize;
|
6192
6199
|
var completedSegments = boundary$53.completedSegments;
|
6193
6200
|
for (
|
6194
6201
|
JSCompiler_inline_result = 0;
|
@@ -6311,12 +6318,12 @@ function abort(request, reason) {
|
|
6311
6318
|
}
|
6312
6319
|
function ensureCorrectIsomorphicReactVersion() {
|
6313
6320
|
var isomorphicReactPackageVersion = React.version;
|
6314
|
-
if ("19.2.0-canary-
|
6321
|
+
if ("19.2.0-canary-e9db3cc2-20250501" !== isomorphicReactPackageVersion)
|
6315
6322
|
throw Error(
|
6316
6323
|
formatProdErrorMessage(
|
6317
6324
|
527,
|
6318
6325
|
isomorphicReactPackageVersion,
|
6319
|
-
"19.2.0-canary-
|
6326
|
+
"19.2.0-canary-e9db3cc2-20250501"
|
6320
6327
|
)
|
6321
6328
|
);
|
6322
6329
|
}
|
@@ -6463,4 +6470,4 @@ exports.renderToReadableStream = function (children, options) {
|
|
6463
6470
|
startWork(request);
|
6464
6471
|
});
|
6465
6472
|
};
|
6466
|
-
exports.version = "19.2.0-canary-
|
6473
|
+
exports.version = "19.2.0-canary-e9db3cc2-20250501";
|
@@ -3839,10 +3839,10 @@ var completeSegmentScript1Full =
|
|
3839
3839
|
completeSegmentScript2 = '","',
|
3840
3840
|
completeSegmentScriptEnd = '")\x3c/script>',
|
3841
3841
|
completeBoundaryScript1Full =
|
3842
|
-
'$RC=function(b,d,e){d=document.getElementById(d)
|
3842
|
+
'$RC=function(b,d,e){if(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()}}};$RC("',
|
3843
3843
|
completeBoundaryScript1Partial = '$RC("',
|
3844
3844
|
completeBoundaryWithStylesScript1FullBoth =
|
3845
|
-
'$RC=function(b,d,e){d=document.getElementById(d)
|
3845
|
+
'$RC=function(b,d,e){if(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("',
|
3846
3846
|
completeBoundaryWithStylesScript1FullPartial =
|
3847
3847
|
'$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("',
|
3848
3848
|
completeBoundaryWithStylesScript1Partial = '$RR("',
|
@@ -6743,7 +6743,7 @@ function renderElement(request, task, keyPath, type, props, ref) {
|
|
6743
6743
|
0 === newBoundary.pendingTasks &&
|
6744
6744
|
newBoundary.status === PENDING &&
|
6745
6745
|
((newBoundary.status = COMPLETED),
|
6746
|
-
!(newBoundary.byteSize
|
6746
|
+
!(500 < newBoundary.byteSize)))
|
6747
6747
|
) {
|
6748
6748
|
0 === request.pendingRootTasks &&
|
6749
6749
|
task.blockedPreamble &&
|
@@ -7851,7 +7851,7 @@ function finishedTask(request, boundary, segment) {
|
|
7851
7851
|
boundary.parentFlushed &&
|
7852
7852
|
request.completedBoundaries.push(boundary),
|
7853
7853
|
boundary.status === COMPLETED &&
|
7854
|
-
(boundary.byteSize
|
7854
|
+
(500 < boundary.byteSize ||
|
7855
7855
|
(boundary.fallbackAbortableTasks.forEach(
|
7856
7856
|
abortTaskSoft,
|
7857
7857
|
request
|
@@ -8197,6 +8197,7 @@ function flushSubtree(request, destination, segment, hoistableState) {
|
|
8197
8197
|
);
|
8198
8198
|
}
|
8199
8199
|
}
|
8200
|
+
var flushedByteSize = 0;
|
8200
8201
|
function flushSegment(request, destination, segment, hoistableState) {
|
8201
8202
|
var boundary = segment.boundary;
|
8202
8203
|
if (null === boundary)
|
@@ -8257,7 +8258,10 @@ function flushSegment(request, destination, segment, hoistableState) {
|
|
8257
8258
|
hoistableState
|
8258
8259
|
)),
|
8259
8260
|
flushSubtree(request, destination, segment, hoistableState);
|
8260
|
-
else if (
|
8261
|
+
else if (
|
8262
|
+
500 < boundary.byteSize &&
|
8263
|
+
flushedByteSize + boundary.byteSize > request.progressiveChunkSize
|
8264
|
+
)
|
8261
8265
|
(boundary.rootSegmentID = request.nextSegmentId++),
|
8262
8266
|
request.completedBoundaries.push(boundary),
|
8263
8267
|
writeStartPendingSuspenseBoundary(
|
@@ -8267,6 +8271,7 @@ function flushSegment(request, destination, segment, hoistableState) {
|
|
8267
8271
|
),
|
8268
8272
|
flushSubtree(request, destination, segment, hoistableState);
|
8269
8273
|
else {
|
8274
|
+
flushedByteSize += boundary.byteSize;
|
8270
8275
|
hoistableState &&
|
8271
8276
|
((segment = boundary.contentState),
|
8272
8277
|
segment.styles.forEach(hoistStyleQueueDependency, hoistableState),
|
@@ -8292,6 +8297,7 @@ function flushSegmentContainer(request, destination, segment, hoistableState) {
|
|
8292
8297
|
return writeEndSegment(destination, segment.parentFormatContext);
|
8293
8298
|
}
|
8294
8299
|
function flushCompletedBoundary(request, destination, boundary) {
|
8300
|
+
flushedByteSize = boundary.byteSize;
|
8295
8301
|
for (
|
8296
8302
|
var completedSegments = boundary.completedSegments, i = 0;
|
8297
8303
|
i < completedSegments.length;
|
@@ -8393,6 +8399,7 @@ function flushCompletedQueues(request, destination) {
|
|
8393
8399
|
if (completedRootSegment.status === POSTPONED) return;
|
8394
8400
|
var completedPreambleSegments = request.completedPreambleSegments;
|
8395
8401
|
if (null === completedPreambleSegments) return;
|
8402
|
+
flushedByteSize = request.byteSize;
|
8396
8403
|
var resumableState = request.resumableState,
|
8397
8404
|
renderState = request.renderState,
|
8398
8405
|
preamble = renderState.preamble,
|
@@ -8604,8 +8611,9 @@ function flushCompletedQueues(request, destination) {
|
|
8604
8611
|
a: {
|
8605
8612
|
clientRenderedBoundaries = request;
|
8606
8613
|
boundary = destination;
|
8607
|
-
var boundary$jscomp$0 = partialBoundaries[i]
|
8608
|
-
|
8614
|
+
var boundary$jscomp$0 = partialBoundaries[i];
|
8615
|
+
flushedByteSize = boundary$jscomp$0.byteSize;
|
8616
|
+
var completedSegments = boundary$jscomp$0.completedSegments;
|
8609
8617
|
for (
|
8610
8618
|
JSCompiler_inline_result = 0;
|
8611
8619
|
JSCompiler_inline_result < completedSegments.length;
|
@@ -8721,13 +8729,13 @@ function abort(request, reason) {
|
|
8721
8729
|
}
|
8722
8730
|
var isomorphicReactPackageVersion$jscomp$inline_748 = React.version;
|
8723
8731
|
if (
|
8724
|
-
"19.2.0-canary-
|
8732
|
+
"19.2.0-canary-e9db3cc2-20250501" !==
|
8725
8733
|
isomorphicReactPackageVersion$jscomp$inline_748
|
8726
8734
|
)
|
8727
8735
|
throw Error(
|
8728
8736
|
'Incompatible React versions: The "react" and "react-dom" packages must have the exact same version. Instead got:\n - react: ' +
|
8729
8737
|
(isomorphicReactPackageVersion$jscomp$inline_748 +
|
8730
|
-
"\n - react-dom: 19.2.0-canary-
|
8738
|
+
"\n - react-dom: 19.2.0-canary-e9db3cc2-20250501\nLearn more: https://react.dev/warnings/version-mismatch")
|
8731
8739
|
);
|
8732
8740
|
exports.renderToReadableStream = function (children, options) {
|
8733
8741
|
return new Promise(function (resolve, reject) {
|
@@ -8820,4 +8828,4 @@ exports.renderToReadableStream = function (children, options) {
|
|
8820
8828
|
startWork(request$jscomp$0);
|
8821
8829
|
});
|
8822
8830
|
};
|
8823
|
-
exports.version = "19.2.0-canary-
|
8831
|
+
exports.version = "19.2.0-canary-e9db3cc2-20250501";
|
@@ -4282,8 +4282,7 @@ function renderElement(request, task, keyPath, type, props, ref) {
|
|
4282
4282
|
queueCompletedSegment(newBoundary, contentRootSegment),
|
4283
4283
|
0 === newBoundary.pendingTasks &&
|
4284
4284
|
0 === newBoundary.status &&
|
4285
|
-
((newBoundary.status = 1),
|
4286
|
-
!(newBoundary.byteSize > request.progressiveChunkSize)))
|
4285
|
+
((newBoundary.status = 1), !(500 < newBoundary.byteSize)))
|
4287
4286
|
) {
|
4288
4287
|
0 === request.pendingRootTasks &&
|
4289
4288
|
task.blockedPreamble &&
|
@@ -5168,7 +5167,7 @@ function finishedTask(request, boundary, segment) {
|
|
5168
5167
|
boundary.parentFlushed &&
|
5169
5168
|
request.completedBoundaries.push(boundary),
|
5170
5169
|
1 === boundary.status &&
|
5171
|
-
(boundary.byteSize
|
5170
|
+
(500 < boundary.byteSize ||
|
5172
5171
|
(boundary.fallbackAbortableTasks.forEach(
|
5173
5172
|
abortTaskSoft,
|
5174
5173
|
request
|
@@ -5479,6 +5478,7 @@ function flushSubtree(request, destination, segment, hoistableState) {
|
|
5479
5478
|
);
|
5480
5479
|
}
|
5481
5480
|
}
|
5481
|
+
var flushedByteSize = 0;
|
5482
5482
|
function flushSegment(request, destination, segment, hoistableState) {
|
5483
5483
|
var boundary = segment.boundary;
|
5484
5484
|
if (null === boundary)
|
@@ -5511,7 +5511,10 @@ function flushSegment(request, destination, segment, hoistableState) {
|
|
5511
5511
|
hoistableState
|
5512
5512
|
)),
|
5513
5513
|
flushSubtree(request, destination, segment, hoistableState);
|
5514
|
-
else if (
|
5514
|
+
else if (
|
5515
|
+
500 < boundary.byteSize &&
|
5516
|
+
flushedByteSize + boundary.byteSize > request.progressiveChunkSize
|
5517
|
+
)
|
5515
5518
|
(boundary.rootSegmentID = request.nextSegmentId++),
|
5516
5519
|
request.completedBoundaries.push(boundary),
|
5517
5520
|
writeStartPendingSuspenseBoundary(
|
@@ -5521,6 +5524,7 @@ function flushSegment(request, destination, segment, hoistableState) {
|
|
5521
5524
|
),
|
5522
5525
|
flushSubtree(request, destination, segment, hoistableState);
|
5523
5526
|
else {
|
5527
|
+
flushedByteSize += boundary.byteSize;
|
5524
5528
|
hoistableState &&
|
5525
5529
|
((segment = boundary.contentState),
|
5526
5530
|
segment.styles.forEach(hoistStyleQueueDependency, hoistableState),
|
@@ -5546,6 +5550,7 @@ function flushSegmentContainer(request, destination, segment, hoistableState) {
|
|
5546
5550
|
return writeEndSegment(destination, segment.parentFormatContext);
|
5547
5551
|
}
|
5548
5552
|
function flushCompletedBoundary(request, destination, boundary) {
|
5553
|
+
flushedByteSize = boundary.byteSize;
|
5549
5554
|
for (
|
5550
5555
|
var completedSegments = boundary.completedSegments, i = 0;
|
5551
5556
|
i < completedSegments.length;
|
@@ -5576,7 +5581,7 @@ function flushCompletedBoundary(request, destination, boundary) {
|
|
5576
5581
|
? ((completedSegments.instructions |= 10),
|
5577
5582
|
writeChunk(
|
5578
5583
|
destination,
|
5579
|
-
'$RC=function(b,d,e){d=document.getElementById(d)
|
5584
|
+
'$RC=function(b,d,e){if(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("'
|
5580
5585
|
))
|
5581
5586
|
: 0 === (completedSegments.instructions & 8)
|
5582
5587
|
? ((completedSegments.instructions |= 8),
|
@@ -5589,7 +5594,7 @@ function flushCompletedBoundary(request, destination, boundary) {
|
|
5589
5594
|
? ((completedSegments.instructions |= 2),
|
5590
5595
|
writeChunk(
|
5591
5596
|
destination,
|
5592
|
-
'$RC=function(b,d,e){d=document.getElementById(d)
|
5597
|
+
'$RC=function(b,d,e){if(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()}}};$RC("'
|
5593
5598
|
))
|
5594
5599
|
: writeChunk(destination, '$RC("');
|
5595
5600
|
completedSegments = i.toString(16);
|
@@ -5653,6 +5658,7 @@ function flushCompletedQueues(request, destination) {
|
|
5653
5658
|
if (5 === completedRootSegment.status) return;
|
5654
5659
|
var completedPreambleSegments = request.completedPreambleSegments;
|
5655
5660
|
if (null === completedPreambleSegments) return;
|
5661
|
+
flushedByteSize = request.byteSize;
|
5656
5662
|
var resumableState = request.resumableState,
|
5657
5663
|
renderState = request.renderState,
|
5658
5664
|
preamble = renderState.preamble,
|
@@ -5832,6 +5838,7 @@ function flushCompletedQueues(request, destination) {
|
|
5832
5838
|
a: {
|
5833
5839
|
clientRenderedBoundaries = request;
|
5834
5840
|
boundary = destination;
|
5841
|
+
flushedByteSize = boundary$53.byteSize;
|
5835
5842
|
var completedSegments = boundary$53.completedSegments;
|
5836
5843
|
for (
|
5837
5844
|
JSCompiler_inline_result = 0;
|
@@ -5942,13 +5949,13 @@ function abort(request, reason) {
|
|
5942
5949
|
}
|
5943
5950
|
var isomorphicReactPackageVersion$jscomp$inline_768 = React.version;
|
5944
5951
|
if (
|
5945
|
-
"19.2.0-canary-
|
5952
|
+
"19.2.0-canary-e9db3cc2-20250501" !==
|
5946
5953
|
isomorphicReactPackageVersion$jscomp$inline_768
|
5947
5954
|
)
|
5948
5955
|
throw Error(
|
5949
5956
|
'Incompatible React versions: The "react" and "react-dom" packages must have the exact same version. Instead got:\n - react: ' +
|
5950
5957
|
(isomorphicReactPackageVersion$jscomp$inline_768 +
|
5951
|
-
"\n - react-dom: 19.2.0-canary-
|
5958
|
+
"\n - react-dom: 19.2.0-canary-e9db3cc2-20250501\nLearn more: https://react.dev/warnings/version-mismatch")
|
5952
5959
|
);
|
5953
5960
|
exports.renderToReadableStream = function (children, options) {
|
5954
5961
|
return new Promise(function (resolve, reject) {
|
@@ -6039,4 +6046,4 @@ exports.renderToReadableStream = function (children, options) {
|
|
6039
6046
|
startWork(request);
|
6040
6047
|
});
|
6041
6048
|
};
|
6042
|
-
exports.version = "19.2.0-canary-
|
6049
|
+
exports.version = "19.2.0-canary-e9db3cc2-20250501";
|
@@ -5709,7 +5709,7 @@
|
|
5709
5709
|
0 === newBoundary.pendingTasks &&
|
5710
5710
|
newBoundary.status === PENDING &&
|
5711
5711
|
((newBoundary.status = COMPLETED),
|
5712
|
-
!(newBoundary.byteSize
|
5712
|
+
!(500 < newBoundary.byteSize)))
|
5713
5713
|
) {
|
5714
5714
|
0 === request.pendingRootTasks &&
|
5715
5715
|
task.blockedPreamble &&
|
@@ -6855,7 +6855,7 @@
|
|
6855
6855
|
boundary.parentFlushed &&
|
6856
6856
|
request.completedBoundaries.push(boundary),
|
6857
6857
|
boundary.status === COMPLETED &&
|
6858
|
-
(boundary.byteSize
|
6858
|
+
(500 < boundary.byteSize ||
|
6859
6859
|
(boundary.fallbackAbortableTasks.forEach(
|
6860
6860
|
abortTaskSoft,
|
6861
6861
|
request
|
@@ -7287,7 +7287,10 @@
|
|
7287
7287
|
hoistableState
|
7288
7288
|
)),
|
7289
7289
|
flushSubtree(request, destination, segment, hoistableState);
|
7290
|
-
else if (
|
7290
|
+
else if (
|
7291
|
+
500 < boundary.byteSize &&
|
7292
|
+
flushedByteSize + boundary.byteSize > request.progressiveChunkSize
|
7293
|
+
)
|
7291
7294
|
(boundary.rootSegmentID = request.nextSegmentId++),
|
7292
7295
|
request.completedBoundaries.push(boundary),
|
7293
7296
|
writeStartPendingSuspenseBoundary(
|
@@ -7297,6 +7300,7 @@
|
|
7297
7300
|
),
|
7298
7301
|
flushSubtree(request, destination, segment, hoistableState);
|
7299
7302
|
else {
|
7303
|
+
flushedByteSize += boundary.byteSize;
|
7300
7304
|
hoistableState &&
|
7301
7305
|
((segment = boundary.contentState),
|
7302
7306
|
segment.styles.forEach(hoistStyleQueueDependency, hoistableState),
|
@@ -7330,6 +7334,7 @@
|
|
7330
7334
|
return writeEndSegment(destination, segment.parentFormatContext);
|
7331
7335
|
}
|
7332
7336
|
function flushCompletedBoundary(request, destination, boundary) {
|
7337
|
+
flushedByteSize = boundary.byteSize;
|
7333
7338
|
for (
|
7334
7339
|
var completedSegments = boundary.completedSegments, i = 0;
|
7335
7340
|
i < completedSegments.length;
|
@@ -7446,6 +7451,7 @@
|
|
7446
7451
|
if (completedRootSegment.status === POSTPONED) return;
|
7447
7452
|
var completedPreambleSegments = request.completedPreambleSegments;
|
7448
7453
|
if (null === completedPreambleSegments) return;
|
7454
|
+
flushedByteSize = request.byteSize;
|
7449
7455
|
var resumableState = request.resumableState,
|
7450
7456
|
renderState = request.renderState,
|
7451
7457
|
preamble = renderState.preamble,
|
@@ -7716,8 +7722,9 @@
|
|
7716
7722
|
a: {
|
7717
7723
|
clientRenderedBoundaries = request;
|
7718
7724
|
boundary = destination;
|
7719
|
-
var boundary$jscomp$0 = partialBoundaries[i]
|
7720
|
-
|
7725
|
+
var boundary$jscomp$0 = partialBoundaries[i];
|
7726
|
+
flushedByteSize = boundary$jscomp$0.byteSize;
|
7727
|
+
var completedSegments = boundary$jscomp$0.completedSegments;
|
7721
7728
|
for (
|
7722
7729
|
JSCompiler_inline_result = 0;
|
7723
7730
|
JSCompiler_inline_result < completedSegments.length;
|
@@ -7863,11 +7870,11 @@
|
|
7863
7870
|
}
|
7864
7871
|
function ensureCorrectIsomorphicReactVersion() {
|
7865
7872
|
var isomorphicReactPackageVersion = React.version;
|
7866
|
-
if ("19.2.0-canary-
|
7873
|
+
if ("19.2.0-canary-e9db3cc2-20250501" !== isomorphicReactPackageVersion)
|
7867
7874
|
throw Error(
|
7868
7875
|
'Incompatible React versions: The "react" and "react-dom" packages must have the exact same version. Instead got:\n - react: ' +
|
7869
7876
|
(isomorphicReactPackageVersion +
|
7870
|
-
"\n - react-dom: 19.2.0-canary-
|
7877
|
+
"\n - react-dom: 19.2.0-canary-e9db3cc2-20250501\nLearn more: https://react.dev/warnings/version-mismatch")
|
7871
7878
|
);
|
7872
7879
|
}
|
7873
7880
|
var React = require("react"),
|
@@ -9090,11 +9097,11 @@
|
|
9090
9097
|
stringToPrecomputedChunk('<template data-rsi="" data-sid="');
|
9091
9098
|
stringToPrecomputedChunk('" data-pid="');
|
9092
9099
|
var completeBoundaryScript1Full = stringToPrecomputedChunk(
|
9093
|
-
'$RC=function(b,d,e){d=document.getElementById(d)
|
9100
|
+
'$RC=function(b,d,e){if(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()}}};$RC("'
|
9094
9101
|
),
|
9095
9102
|
completeBoundaryScript1Partial = stringToPrecomputedChunk('$RC("'),
|
9096
9103
|
completeBoundaryWithStylesScript1FullBoth = stringToPrecomputedChunk(
|
9097
|
-
'$RC=function(b,d,e){d=document.getElementById(d)
|
9104
|
+
'$RC=function(b,d,e){if(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("'
|
9098
9105
|
),
|
9099
9106
|
completeBoundaryWithStylesScript1FullPartial = stringToPrecomputedChunk(
|
9100
9107
|
'$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("'
|
@@ -9401,7 +9408,8 @@
|
|
9401
9408
|
didWarnAboutGetDerivedStateOnFunctionComponent = {},
|
9402
9409
|
didWarnAboutReassigningProps = !1,
|
9403
9410
|
didWarnAboutGenerators = !1,
|
9404
|
-
didWarnAboutMaps = !1
|
9411
|
+
didWarnAboutMaps = !1,
|
9412
|
+
flushedByteSize = 0;
|
9405
9413
|
ensureCorrectIsomorphicReactVersion();
|
9406
9414
|
ensureCorrectIsomorphicReactVersion();
|
9407
9415
|
exports.prerender = function (children, options) {
|
@@ -9545,5 +9553,5 @@
|
|
9545
9553
|
startWork(request);
|
9546
9554
|
});
|
9547
9555
|
};
|
9548
|
-
exports.version = "19.2.0-canary-
|
9556
|
+
exports.version = "19.2.0-canary-e9db3cc2-20250501";
|
9549
9557
|
})();
|