react-dom 19.2.0-canary-c4676e72-20250520 → 19.2.0-canary-8ce15b0f-20250522
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/cjs/react-dom-client.development.js +5 -5
- package/cjs/react-dom-client.production.js +5 -5
- package/cjs/react-dom-profiling.development.js +5 -5
- package/cjs/react-dom-profiling.profiling.js +5 -5
- package/cjs/react-dom-server-legacy.browser.development.js +352 -197
- package/cjs/react-dom-server-legacy.browser.production.js +335 -213
- package/cjs/react-dom-server-legacy.node.development.js +352 -197
- package/cjs/react-dom-server-legacy.node.production.js +338 -213
- package/cjs/react-dom-server.browser.development.js +338 -164
- package/cjs/react-dom-server.browser.production.js +303 -159
- package/cjs/react-dom-server.bun.development.js +306 -154
- package/cjs/react-dom-server.bun.production.js +309 -162
- package/cjs/react-dom-server.edge.development.js +338 -164
- package/cjs/react-dom-server.edge.production.js +306 -159
- package/cjs/react-dom-server.node.development.js +338 -164
- package/cjs/react-dom-server.node.production.js +306 -159
- 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
@@ -321,9 +321,6 @@ function createResumableState(
|
|
321
321
|
moduleScriptResources: {}
|
322
322
|
};
|
323
323
|
}
|
324
|
-
function createPreambleState() {
|
325
|
-
return { htmlChunks: null, headChunks: null, bodyChunks: null };
|
326
|
-
}
|
327
324
|
function createFormatContext(
|
328
325
|
insertionMode,
|
329
326
|
selectedValue,
|
@@ -391,8 +388,8 @@ function getSuspenseViewTransition(parentViewTransition) {
|
|
391
388
|
? null
|
392
389
|
: {
|
393
390
|
update: parentViewTransition.update,
|
394
|
-
enter:
|
395
|
-
exit:
|
391
|
+
enter: "none",
|
392
|
+
exit: "none",
|
396
393
|
share: parentViewTransition.update,
|
397
394
|
name: parentViewTransition.autoName,
|
398
395
|
autoName: parentViewTransition.autoName,
|
@@ -2721,6 +2718,10 @@ function hoistStyleQueueDependency(styleQueue) {
|
|
2721
2718
|
function hoistStylesheetDependency(stylesheet) {
|
2722
2719
|
this.stylesheets.add(stylesheet);
|
2723
2720
|
}
|
2721
|
+
function hoistHoistables(parentState, childState) {
|
2722
|
+
childState.styles.forEach(hoistStyleQueueDependency, parentState);
|
2723
|
+
childState.stylesheets.forEach(hoistStylesheetDependency, parentState);
|
2724
|
+
}
|
2724
2725
|
function createRenderState(resumableState, generateStaticMarkup) {
|
2725
2726
|
var idPrefix = resumableState.idPrefix,
|
2726
2727
|
bootstrapChunks = [],
|
@@ -2736,17 +2737,16 @@ function createRenderState(resumableState, generateStaticMarkup) {
|
|
2736
2737
|
"\x3c/script>"
|
2737
2738
|
));
|
2738
2739
|
bootstrapScriptContent = idPrefix + "P:";
|
2739
|
-
var
|
2740
|
+
var JSCompiler_object_inline_segmentPrefix_1654 = idPrefix + "S:";
|
2740
2741
|
idPrefix += "B:";
|
2741
|
-
var
|
2742
|
-
|
2743
|
-
|
2744
|
-
|
2745
|
-
|
2746
|
-
|
2747
|
-
|
2748
|
-
|
2749
|
-
JSCompiler_object_inline_preloads_1653 = {
|
2742
|
+
var JSCompiler_object_inline_preconnects_1667 = new Set(),
|
2743
|
+
JSCompiler_object_inline_fontPreloads_1668 = new Set(),
|
2744
|
+
JSCompiler_object_inline_highImagePreloads_1669 = new Set(),
|
2745
|
+
JSCompiler_object_inline_styles_1670 = new Map(),
|
2746
|
+
JSCompiler_object_inline_bootstrapScripts_1671 = new Set(),
|
2747
|
+
JSCompiler_object_inline_scripts_1672 = new Set(),
|
2748
|
+
JSCompiler_object_inline_bulkPreloads_1673 = new Set(),
|
2749
|
+
JSCompiler_object_inline_preloads_1674 = {
|
2750
2750
|
images: new Map(),
|
2751
2751
|
stylesheets: new Map(),
|
2752
2752
|
scripts: new Map(),
|
@@ -2783,7 +2783,7 @@ function createRenderState(resumableState, generateStaticMarkup) {
|
|
2783
2783
|
scriptConfig.moduleScriptResources[href] = null;
|
2784
2784
|
scriptConfig = [];
|
2785
2785
|
pushLinkImpl(scriptConfig, props);
|
2786
|
-
|
2786
|
+
JSCompiler_object_inline_bootstrapScripts_1671.add(scriptConfig);
|
2787
2787
|
bootstrapChunks.push('<script src="', escapeTextForBrowser(src), '"');
|
2788
2788
|
"string" === typeof integrity &&
|
2789
2789
|
bootstrapChunks.push(
|
@@ -2830,7 +2830,7 @@ function createRenderState(resumableState, generateStaticMarkup) {
|
|
2830
2830
|
(props.moduleScriptResources[scriptConfig] = null),
|
2831
2831
|
(props = []),
|
2832
2832
|
pushLinkImpl(props, integrity),
|
2833
|
-
|
2833
|
+
JSCompiler_object_inline_bootstrapScripts_1671.add(props),
|
2834
2834
|
bootstrapChunks.push(
|
2835
2835
|
'<script type="module" src="',
|
2836
2836
|
escapeTextForBrowser(i),
|
@@ -2852,10 +2852,10 @@ function createRenderState(resumableState, generateStaticMarkup) {
|
|
2852
2852
|
bootstrapChunks.push(' async="">\x3c/script>');
|
2853
2853
|
return {
|
2854
2854
|
placeholderPrefix: bootstrapScriptContent,
|
2855
|
-
segmentPrefix:
|
2855
|
+
segmentPrefix: JSCompiler_object_inline_segmentPrefix_1654,
|
2856
2856
|
boundaryPrefix: idPrefix,
|
2857
2857
|
startInlineScript: "<script",
|
2858
|
-
preamble:
|
2858
|
+
preamble: { htmlChunks: null, headChunks: null, bodyChunks: null },
|
2859
2859
|
externalRuntimeScript: null,
|
2860
2860
|
bootstrapChunks: bootstrapChunks,
|
2861
2861
|
importMapChunks: [],
|
@@ -2871,14 +2871,14 @@ function createRenderState(resumableState, generateStaticMarkup) {
|
|
2871
2871
|
charsetChunks: [],
|
2872
2872
|
viewportChunks: [],
|
2873
2873
|
hoistableChunks: [],
|
2874
|
-
preconnects:
|
2875
|
-
fontPreloads:
|
2876
|
-
highImagePreloads:
|
2877
|
-
styles:
|
2878
|
-
bootstrapScripts:
|
2879
|
-
scripts:
|
2880
|
-
bulkPreloads:
|
2881
|
-
preloads:
|
2874
|
+
preconnects: JSCompiler_object_inline_preconnects_1667,
|
2875
|
+
fontPreloads: JSCompiler_object_inline_fontPreloads_1668,
|
2876
|
+
highImagePreloads: JSCompiler_object_inline_highImagePreloads_1669,
|
2877
|
+
styles: JSCompiler_object_inline_styles_1670,
|
2878
|
+
bootstrapScripts: JSCompiler_object_inline_bootstrapScripts_1671,
|
2879
|
+
scripts: JSCompiler_object_inline_scripts_1672,
|
2880
|
+
bulkPreloads: JSCompiler_object_inline_bulkPreloads_1673,
|
2881
|
+
preloads: JSCompiler_object_inline_preloads_1674,
|
2882
2882
|
stylesToHoist: !1,
|
2883
2883
|
generateStaticMarkup: generateStaticMarkup
|
2884
2884
|
};
|
@@ -3783,11 +3783,14 @@ function createSuspenseBoundary(
|
|
3783
3783
|
};
|
3784
3784
|
null !== row &&
|
3785
3785
|
(row.pendingTasks++,
|
3786
|
-
(
|
3787
|
-
null !==
|
3786
|
+
(contentPreamble = row.boundaries),
|
3787
|
+
null !== contentPreamble &&
|
3788
3788
|
(request.allPendingTasks++,
|
3789
3789
|
fallbackAbortableTasks.pendingTasks++,
|
3790
|
-
|
3790
|
+
contentPreamble.push(fallbackAbortableTasks)),
|
3791
|
+
(request = row.inheritedHoistables),
|
3792
|
+
null !== request &&
|
3793
|
+
hoistHoistables(fallbackAbortableTasks.contentState, request));
|
3791
3794
|
return fallbackAbortableTasks;
|
3792
3795
|
}
|
3793
3796
|
function createRenderTask(
|
@@ -3952,20 +3955,56 @@ function fatalError(request, error) {
|
|
3952
3955
|
: ((request.status = 13), (request.fatalError = error));
|
3953
3956
|
}
|
3954
3957
|
function finishSuspenseListRow(request, row) {
|
3955
|
-
|
3956
|
-
|
3958
|
+
unblockSuspenseListRow(request, row.next, row.hoistables);
|
3959
|
+
}
|
3960
|
+
function unblockSuspenseListRow(request, unblockedRow, inheritedHoistables) {
|
3961
|
+
for (; null !== unblockedRow; ) {
|
3962
|
+
null !== inheritedHoistables &&
|
3963
|
+
(hoistHoistables(unblockedRow.hoistables, inheritedHoistables),
|
3964
|
+
(unblockedRow.inheritedHoistables = inheritedHoistables));
|
3965
|
+
var unblockedBoundaries = unblockedRow.boundaries;
|
3957
3966
|
if (null !== unblockedBoundaries) {
|
3958
|
-
|
3959
|
-
for (var i = 0; i < unblockedBoundaries.length; i++)
|
3960
|
-
|
3967
|
+
unblockedRow.boundaries = null;
|
3968
|
+
for (var i = 0; i < unblockedBoundaries.length; i++) {
|
3969
|
+
var unblockedBoundary = unblockedBoundaries[i];
|
3970
|
+
null !== inheritedHoistables &&
|
3971
|
+
hoistHoistables(unblockedBoundary.contentState, inheritedHoistables);
|
3972
|
+
finishedTask(request, unblockedBoundary, null, null);
|
3973
|
+
}
|
3974
|
+
}
|
3975
|
+
unblockedRow.pendingTasks--;
|
3976
|
+
if (0 < unblockedRow.pendingTasks) break;
|
3977
|
+
inheritedHoistables = unblockedRow.hoistables;
|
3978
|
+
unblockedRow = unblockedRow.next;
|
3979
|
+
}
|
3980
|
+
}
|
3981
|
+
function tryToResolveTogetherRow(request, togetherRow) {
|
3982
|
+
var boundaries = togetherRow.boundaries;
|
3983
|
+
if (null !== boundaries && togetherRow.pendingTasks === boundaries.length) {
|
3984
|
+
for (var allCompleteAndInlinable = !0, i = 0; i < boundaries.length; i++) {
|
3985
|
+
var rowBoundary = boundaries[i];
|
3986
|
+
if (
|
3987
|
+
1 !== rowBoundary.pendingTasks ||
|
3988
|
+
rowBoundary.parentFlushed ||
|
3989
|
+
500 < rowBoundary.byteSize
|
3990
|
+
) {
|
3991
|
+
allCompleteAndInlinable = !1;
|
3992
|
+
break;
|
3993
|
+
}
|
3961
3994
|
}
|
3962
|
-
|
3963
|
-
|
3964
|
-
row = row.next;
|
3995
|
+
allCompleteAndInlinable &&
|
3996
|
+
unblockSuspenseListRow(request, togetherRow, togetherRow.hoistables);
|
3965
3997
|
}
|
3966
3998
|
}
|
3967
3999
|
function createSuspenseListRow(previousRow) {
|
3968
|
-
var newRow = {
|
4000
|
+
var newRow = {
|
4001
|
+
pendingTasks: 1,
|
4002
|
+
boundaries: null,
|
4003
|
+
hoistables: createHoistableState(),
|
4004
|
+
inheritedHoistables: null,
|
4005
|
+
together: !1,
|
4006
|
+
next: null
|
4007
|
+
};
|
3969
4008
|
null !== previousRow &&
|
3970
4009
|
0 < previousRow.pendingTasks &&
|
3971
4010
|
(newRow.pendingTasks++,
|
@@ -3974,21 +4013,22 @@ function createSuspenseListRow(previousRow) {
|
|
3974
4013
|
return newRow;
|
3975
4014
|
}
|
3976
4015
|
function renderSuspenseListRows(request, task, keyPath, rows, revealOrder) {
|
3977
|
-
|
3978
|
-
|
3979
|
-
prevRow = task.row
|
3980
|
-
|
3981
|
-
|
4016
|
+
var prevKeyPath = task.keyPath,
|
4017
|
+
prevTreeContext = task.treeContext,
|
4018
|
+
prevRow = task.row;
|
4019
|
+
task.keyPath = keyPath;
|
4020
|
+
keyPath = rows.length;
|
4021
|
+
var previousSuspenseListRow = null;
|
3982
4022
|
if (null !== task.replay) {
|
3983
4023
|
var resumeSlots = task.replay.slots;
|
3984
4024
|
if (null !== resumeSlots && "object" === typeof resumeSlots)
|
3985
|
-
for (var n = 0; n <
|
3986
|
-
var i = "backwards" !== revealOrder ? n :
|
4025
|
+
for (var n = 0; n < keyPath; n++) {
|
4026
|
+
var i = "backwards" !== revealOrder ? n : keyPath - 1 - n,
|
3987
4027
|
node = rows[i];
|
3988
4028
|
task.row = previousSuspenseListRow = createSuspenseListRow(
|
3989
4029
|
previousSuspenseListRow
|
3990
4030
|
);
|
3991
|
-
task.treeContext = pushTreeContext(prevTreeContext,
|
4031
|
+
task.treeContext = pushTreeContext(prevTreeContext, keyPath, i);
|
3992
4032
|
var resumeSegmentID = resumeSlots[i];
|
3993
4033
|
"number" === typeof resumeSegmentID
|
3994
4034
|
? (resumeNode(request, task, resumeSegmentID, node, i),
|
@@ -3998,30 +4038,26 @@ function renderSuspenseListRows(request, task, keyPath, rows, revealOrder) {
|
|
3998
4038
|
finishSuspenseListRow(request, previousSuspenseListRow);
|
3999
4039
|
}
|
4000
4040
|
else
|
4001
|
-
for (resumeSlots = 0; resumeSlots <
|
4041
|
+
for (resumeSlots = 0; resumeSlots < keyPath; resumeSlots++)
|
4002
4042
|
(n =
|
4003
4043
|
"backwards" !== revealOrder
|
4004
4044
|
? resumeSlots
|
4005
|
-
:
|
4045
|
+
: keyPath - 1 - resumeSlots),
|
4006
4046
|
(i = rows[n]),
|
4007
4047
|
(task.row = previousSuspenseListRow =
|
4008
4048
|
createSuspenseListRow(previousSuspenseListRow)),
|
4009
|
-
(task.treeContext = pushTreeContext(
|
4010
|
-
prevTreeContext,
|
4011
|
-
totalChildren,
|
4012
|
-
n
|
4013
|
-
)),
|
4049
|
+
(task.treeContext = pushTreeContext(prevTreeContext, keyPath, n)),
|
4014
4050
|
renderNode(request, task, i, n),
|
4015
4051
|
0 === --previousSuspenseListRow.pendingTasks &&
|
4016
4052
|
finishSuspenseListRow(request, previousSuspenseListRow);
|
4017
4053
|
} else if ("backwards" !== revealOrder)
|
4018
|
-
for (revealOrder = 0; revealOrder <
|
4054
|
+
for (revealOrder = 0; revealOrder < keyPath; revealOrder++)
|
4019
4055
|
(resumeSlots = rows[revealOrder]),
|
4020
4056
|
(task.row = previousSuspenseListRow =
|
4021
4057
|
createSuspenseListRow(previousSuspenseListRow)),
|
4022
4058
|
(task.treeContext = pushTreeContext(
|
4023
4059
|
prevTreeContext,
|
4024
|
-
|
4060
|
+
keyPath,
|
4025
4061
|
revealOrder
|
4026
4062
|
)),
|
4027
4063
|
renderNode(request, task, resumeSlots, revealOrder),
|
@@ -4031,12 +4067,12 @@ function renderSuspenseListRows(request, task, keyPath, rows, revealOrder) {
|
|
4031
4067
|
revealOrder = task.blockedSegment;
|
4032
4068
|
resumeSlots = revealOrder.children.length;
|
4033
4069
|
n = revealOrder.chunks.length;
|
4034
|
-
for (i =
|
4070
|
+
for (i = keyPath - 1; 0 <= i; i--) {
|
4035
4071
|
node = rows[i];
|
4036
4072
|
task.row = previousSuspenseListRow = createSuspenseListRow(
|
4037
4073
|
previousSuspenseListRow
|
4038
4074
|
);
|
4039
|
-
task.treeContext = pushTreeContext(prevTreeContext,
|
4075
|
+
task.treeContext = pushTreeContext(prevTreeContext, keyPath, i);
|
4040
4076
|
resumeSegmentID = createPendingSegment(
|
4041
4077
|
request,
|
4042
4078
|
n,
|
@@ -4074,7 +4110,7 @@ function renderSuspenseListRows(request, task, keyPath, rows, revealOrder) {
|
|
4074
4110
|
(prevRow.pendingTasks++, (previousSuspenseListRow.next = prevRow));
|
4075
4111
|
task.treeContext = prevTreeContext;
|
4076
4112
|
task.row = prevRow;
|
4077
|
-
task.keyPath =
|
4113
|
+
task.keyPath = prevKeyPath;
|
4078
4114
|
}
|
4079
4115
|
function renderWithHooks(request, task, keyPath, Component, props, secondArg) {
|
4080
4116
|
var prevThenableState = task.thenableState;
|
@@ -4143,9 +4179,9 @@ function renderElement(request, task, keyPath, type, props, ref) {
|
|
4143
4179
|
var defaultProps = type.defaultProps;
|
4144
4180
|
if (defaultProps) {
|
4145
4181
|
newProps === props && (newProps = assign({}, newProps, props));
|
4146
|
-
for (var propName$
|
4147
|
-
void 0 === newProps[propName$
|
4148
|
-
(newProps[propName$
|
4182
|
+
for (var propName$43 in defaultProps)
|
4183
|
+
void 0 === newProps[propName$43] &&
|
4184
|
+
(newProps[propName$43] = defaultProps[propName$43]);
|
4149
4185
|
}
|
4150
4186
|
props = newProps;
|
4151
4187
|
newProps = emptyContextObject;
|
@@ -4205,16 +4241,16 @@ function renderElement(request, task, keyPath, type, props, ref) {
|
|
4205
4241
|
defaultProps = ref ? type[0] : newProps.state;
|
4206
4242
|
initialState = !0;
|
4207
4243
|
for (ref = ref ? 1 : 0; ref < type.length; ref++)
|
4208
|
-
(propName$
|
4209
|
-
(propName$
|
4210
|
-
"function" === typeof propName$
|
4211
|
-
? propName$
|
4212
|
-
: propName$
|
4213
|
-
null != propName$
|
4244
|
+
(propName$43 = type[ref]),
|
4245
|
+
(propName$43 =
|
4246
|
+
"function" === typeof propName$43
|
4247
|
+
? propName$43.call(newProps, defaultProps, props, void 0)
|
4248
|
+
: propName$43),
|
4249
|
+
null != propName$43 &&
|
4214
4250
|
(initialState
|
4215
4251
|
? ((initialState = !1),
|
4216
|
-
(defaultProps = assign({}, defaultProps, propName$
|
4217
|
-
: assign(defaultProps, propName$
|
4252
|
+
(defaultProps = assign({}, defaultProps, propName$43)))
|
4253
|
+
: assign(defaultProps, propName$43));
|
4218
4254
|
newProps.state = defaultProps;
|
4219
4255
|
}
|
4220
4256
|
else defaultProps.queue = null;
|
@@ -4390,10 +4426,25 @@ function renderElement(request, task, keyPath, type, props, ref) {
|
|
4390
4426
|
break a;
|
4391
4427
|
}
|
4392
4428
|
}
|
4393
|
-
|
4394
|
-
|
4395
|
-
|
4396
|
-
|
4429
|
+
"together" === props
|
4430
|
+
? ((props = task.keyPath),
|
4431
|
+
(newProps = task.row),
|
4432
|
+
(defaultProps = task.row = createSuspenseListRow(null)),
|
4433
|
+
(defaultProps.boundaries = []),
|
4434
|
+
(defaultProps.together = !0),
|
4435
|
+
(task.keyPath = keyPath),
|
4436
|
+
renderNodeDestructive(request, task, type, -1),
|
4437
|
+
0 === --defaultProps.pendingTasks &&
|
4438
|
+
finishSuspenseListRow(request, defaultProps),
|
4439
|
+
(task.keyPath = props),
|
4440
|
+
(task.row = newProps),
|
4441
|
+
null !== newProps &&
|
4442
|
+
0 < defaultProps.pendingTasks &&
|
4443
|
+
(newProps.pendingTasks++, (defaultProps.next = newProps)))
|
4444
|
+
: ((props = task.keyPath),
|
4445
|
+
(task.keyPath = keyPath),
|
4446
|
+
renderNodeDestructive(request, task, type, -1),
|
4447
|
+
(task.keyPath = props));
|
4397
4448
|
}
|
4398
4449
|
return;
|
4399
4450
|
case REACT_VIEW_TRANSITION_TYPE:
|
@@ -4423,28 +4474,19 @@ function renderElement(request, task, keyPath, type, props, ref) {
|
|
4423
4474
|
ref = task.formatContext;
|
4424
4475
|
var prevRow = task.row,
|
4425
4476
|
parentBoundary = task.blockedBoundary;
|
4426
|
-
propName$
|
4477
|
+
propName$43 = task.blockedPreamble;
|
4427
4478
|
var parentHoistableState = task.hoistableState;
|
4428
4479
|
propName = task.blockedSegment;
|
4429
4480
|
var fallback = props.fallback;
|
4430
4481
|
props = props.children;
|
4431
4482
|
var fallbackAbortSet = new Set();
|
4432
|
-
var newBoundary =
|
4433
|
-
|
4434
|
-
|
4435
|
-
|
4436
|
-
|
4437
|
-
|
4438
|
-
|
4439
|
-
createPreambleState()
|
4440
|
-
)
|
4441
|
-
: createSuspenseBoundary(
|
4442
|
-
request,
|
4443
|
-
task.row,
|
4444
|
-
fallbackAbortSet,
|
4445
|
-
null,
|
4446
|
-
null
|
4447
|
-
);
|
4483
|
+
var newBoundary = createSuspenseBoundary(
|
4484
|
+
request,
|
4485
|
+
task.row,
|
4486
|
+
fallbackAbortSet,
|
4487
|
+
null,
|
4488
|
+
null
|
4489
|
+
);
|
4448
4490
|
null !== request.trackedPostpones &&
|
4449
4491
|
(newBoundary.trackedContentKeyPath = keyPath);
|
4450
4492
|
var boundarySegment = createPendingSegment(
|
@@ -4495,7 +4537,7 @@ function renderElement(request, task, keyPath, type, props, ref) {
|
|
4495
4537
|
);
|
4496
4538
|
} finally {
|
4497
4539
|
(task.blockedSegment = propName),
|
4498
|
-
(task.blockedPreamble = propName$
|
4540
|
+
(task.blockedPreamble = propName$43),
|
4499
4541
|
(task.keyPath = type),
|
4500
4542
|
(task.formatContext = ref);
|
4501
4543
|
}
|
@@ -4544,18 +4586,21 @@ function renderElement(request, task, keyPath, type, props, ref) {
|
|
4544
4586
|
),
|
4545
4587
|
(contentRootSegment.status = 1),
|
4546
4588
|
queueCompletedSegment(newBoundary, contentRootSegment),
|
4547
|
-
0 === newBoundary.pendingTasks &&
|
4548
|
-
0 === newBoundary.status &&
|
4549
|
-
((newBoundary.status = 1), !(500 < newBoundary.byteSize)))
|
4589
|
+
0 === newBoundary.pendingTasks && 0 === newBoundary.status)
|
4550
4590
|
) {
|
4591
|
+
if (((newBoundary.status = 1), !(500 < newBoundary.byteSize))) {
|
4592
|
+
null !== prevRow &&
|
4593
|
+
0 === --prevRow.pendingTasks &&
|
4594
|
+
finishSuspenseListRow(request, prevRow);
|
4595
|
+
0 === request.pendingRootTasks &&
|
4596
|
+
task.blockedPreamble &&
|
4597
|
+
preparePreamble(request);
|
4598
|
+
break a;
|
4599
|
+
}
|
4600
|
+
} else
|
4551
4601
|
null !== prevRow &&
|
4552
|
-
|
4553
|
-
|
4554
|
-
0 === request.pendingRootTasks &&
|
4555
|
-
task.blockedPreamble &&
|
4556
|
-
preparePreamble(request);
|
4557
|
-
break a;
|
4558
|
-
}
|
4602
|
+
prevRow.together &&
|
4603
|
+
tryToResolveTogetherRow(request, prevRow);
|
4559
4604
|
} catch (thrownValue$30) {
|
4560
4605
|
(newBoundary.status = 4),
|
4561
4606
|
12 === request.status
|
@@ -4573,7 +4618,7 @@ function renderElement(request, task, keyPath, type, props, ref) {
|
|
4573
4618
|
untrackBoundary(request, newBoundary);
|
4574
4619
|
} finally {
|
4575
4620
|
(task.blockedBoundary = parentBoundary),
|
4576
|
-
(task.blockedPreamble = propName$
|
4621
|
+
(task.blockedPreamble = propName$43),
|
4577
4622
|
(task.hoistableState = parentHoistableState),
|
4578
4623
|
(task.blockedSegment = propName),
|
4579
4624
|
(task.keyPath = type),
|
@@ -4822,22 +4867,13 @@ function retryNode(request, task) {
|
|
4822
4867
|
content = props.children,
|
4823
4868
|
fallback = props.fallback,
|
4824
4869
|
fallbackAbortSet = new Set();
|
4825
|
-
props =
|
4826
|
-
|
4827
|
-
|
4828
|
-
|
4829
|
-
|
4830
|
-
|
4831
|
-
|
4832
|
-
createPreambleState()
|
4833
|
-
)
|
4834
|
-
: createSuspenseBoundary(
|
4835
|
-
request,
|
4836
|
-
task.row,
|
4837
|
-
fallbackAbortSet,
|
4838
|
-
null,
|
4839
|
-
null
|
4840
|
-
);
|
4870
|
+
props = createSuspenseBoundary(
|
4871
|
+
request,
|
4872
|
+
task.row,
|
4873
|
+
fallbackAbortSet,
|
4874
|
+
null,
|
4875
|
+
null
|
4876
|
+
);
|
4841
4877
|
props.parentFlushed = !0;
|
4842
4878
|
props.rootSegmentID = type;
|
4843
4879
|
task.blockedBoundary = props;
|
@@ -5173,15 +5209,15 @@ function renderNode(request, task, node, childIndex) {
|
|
5173
5209
|
chunkLength = segment.chunks.length;
|
5174
5210
|
try {
|
5175
5211
|
return renderNodeDestructive(request, task, node, childIndex);
|
5176
|
-
} catch (thrownValue$
|
5212
|
+
} catch (thrownValue$60) {
|
5177
5213
|
if (
|
5178
5214
|
(resetHooksState(),
|
5179
5215
|
(segment.children.length = childrenLength),
|
5180
5216
|
(segment.chunks.length = chunkLength),
|
5181
5217
|
(node =
|
5182
|
-
thrownValue$
|
5218
|
+
thrownValue$60 === SuspenseException
|
5183
5219
|
? getSuspendedThenable()
|
5184
|
-
: thrownValue$
|
5220
|
+
: thrownValue$60),
|
5185
5221
|
"object" === typeof node && null !== node)
|
5186
5222
|
) {
|
5187
5223
|
if ("function" === typeof node.then) {
|
@@ -5283,10 +5319,6 @@ function abortTask(task, request, error) {
|
|
5283
5319
|
if (6 === segment.status) return;
|
5284
5320
|
segment.status = 3;
|
5285
5321
|
}
|
5286
|
-
segment = task.row;
|
5287
|
-
null !== segment &&
|
5288
|
-
0 === --segment.pendingTasks &&
|
5289
|
-
finishSuspenseListRow(request, segment);
|
5290
5322
|
segment = getThrownInfo(task.componentStack);
|
5291
5323
|
if (null === boundary) {
|
5292
5324
|
if (13 !== request.status && 14 !== request.status) {
|
@@ -5299,32 +5331,40 @@ function abortTask(task, request, error) {
|
|
5299
5331
|
boundary.pendingTasks--;
|
5300
5332
|
0 === boundary.pendingTasks &&
|
5301
5333
|
0 < boundary.nodes.length &&
|
5302
|
-
((
|
5334
|
+
((segment = logRecoverableError(request, error, segment)),
|
5303
5335
|
abortRemainingReplayNodes(
|
5304
5336
|
request,
|
5305
5337
|
null,
|
5306
5338
|
boundary.nodes,
|
5307
5339
|
boundary.slots,
|
5308
5340
|
error,
|
5309
|
-
|
5341
|
+
segment
|
5310
5342
|
));
|
5311
5343
|
request.pendingRootTasks--;
|
5312
5344
|
0 === request.pendingRootTasks && completeShell(request);
|
5313
5345
|
}
|
5314
5346
|
} else
|
5315
|
-
boundary.
|
5316
|
-
|
5317
|
-
|
5318
|
-
|
5319
|
-
|
5320
|
-
|
5321
|
-
|
5322
|
-
boundary
|
5323
|
-
|
5347
|
+
4 !== boundary.status &&
|
5348
|
+
((boundary.status = 4),
|
5349
|
+
(segment = logRecoverableError(request, error, segment)),
|
5350
|
+
(boundary.status = 4),
|
5351
|
+
(boundary.errorDigest = segment),
|
5352
|
+
untrackBoundary(request, boundary),
|
5353
|
+
boundary.parentFlushed &&
|
5354
|
+
request.clientRenderedBoundaries.push(boundary)),
|
5355
|
+
boundary.pendingTasks--,
|
5356
|
+
(segment = boundary.row),
|
5357
|
+
null !== segment &&
|
5358
|
+
0 === --segment.pendingTasks &&
|
5359
|
+
finishSuspenseListRow(request, segment),
|
5324
5360
|
boundary.fallbackAbortableTasks.forEach(function (fallbackTask) {
|
5325
5361
|
return abortTask(fallbackTask, request, error);
|
5326
5362
|
}),
|
5327
5363
|
boundary.fallbackAbortableTasks.clear();
|
5364
|
+
task = task.row;
|
5365
|
+
null !== task &&
|
5366
|
+
0 === --task.pendingTasks &&
|
5367
|
+
finishSuspenseListRow(request, task);
|
5328
5368
|
request.allPendingTasks--;
|
5329
5369
|
0 === request.allPendingTasks && completeAll(request);
|
5330
5370
|
}
|
@@ -5421,55 +5461,120 @@ function queueCompletedSegment(boundary, segment) {
|
|
5421
5461
|
1 === childSegment.status && queueCompletedSegment(boundary, childSegment);
|
5422
5462
|
} else boundary.completedSegments.push(segment);
|
5423
5463
|
}
|
5424
|
-
function finishedTask(request, boundary, row, segment) {
|
5464
|
+
function finishedTask(request$jscomp$0, boundary, row, segment) {
|
5425
5465
|
null !== row &&
|
5426
|
-
0 === --row.pendingTasks
|
5427
|
-
|
5428
|
-
|
5466
|
+
(0 === --row.pendingTasks
|
5467
|
+
? finishSuspenseListRow(request$jscomp$0, row)
|
5468
|
+
: row.together && tryToResolveTogetherRow(request$jscomp$0, row));
|
5469
|
+
request$jscomp$0.allPendingTasks--;
|
5429
5470
|
if (null === boundary) {
|
5430
5471
|
if (null !== segment && segment.parentFlushed) {
|
5431
|
-
if (null !== request.completedRootSegment)
|
5472
|
+
if (null !== request$jscomp$0.completedRootSegment)
|
5432
5473
|
throw Error(
|
5433
5474
|
"There can only be one root segment. This is a bug in React."
|
5434
5475
|
);
|
5435
|
-
request.completedRootSegment = segment;
|
5476
|
+
request$jscomp$0.completedRootSegment = segment;
|
5436
5477
|
}
|
5437
|
-
request.pendingRootTasks--;
|
5438
|
-
0 === request.pendingRootTasks && completeShell(request);
|
5439
|
-
} else
|
5440
|
-
boundary.pendingTasks
|
5441
|
-
|
5442
|
-
(0 === boundary.
|
5443
|
-
|
5444
|
-
|
5445
|
-
|
5446
|
-
|
5447
|
-
|
5448
|
-
|
5449
|
-
|
5450
|
-
|
5451
|
-
|
5452
|
-
|
5453
|
-
|
5454
|
-
|
5455
|
-
|
5456
|
-
|
5457
|
-
|
5458
|
-
|
5459
|
-
|
5460
|
-
|
5461
|
-
0 ===
|
5462
|
-
|
5463
|
-
|
5464
|
-
|
5465
|
-
|
5466
|
-
|
5467
|
-
|
5468
|
-
|
5469
|
-
|
5470
|
-
|
5471
|
-
|
5472
|
-
|
5478
|
+
request$jscomp$0.pendingRootTasks--;
|
5479
|
+
0 === request$jscomp$0.pendingRootTasks && completeShell(request$jscomp$0);
|
5480
|
+
} else if ((boundary.pendingTasks--, 4 !== boundary.status))
|
5481
|
+
if (0 === boundary.pendingTasks)
|
5482
|
+
if (
|
5483
|
+
(0 === boundary.status && (boundary.status = 1),
|
5484
|
+
null !== segment &&
|
5485
|
+
segment.parentFlushed &&
|
5486
|
+
1 === segment.status &&
|
5487
|
+
queueCompletedSegment(boundary, segment),
|
5488
|
+
boundary.parentFlushed &&
|
5489
|
+
request$jscomp$0.completedBoundaries.push(boundary),
|
5490
|
+
1 === boundary.status)
|
5491
|
+
)
|
5492
|
+
(row = boundary.row),
|
5493
|
+
null !== row &&
|
5494
|
+
hoistHoistables(row.hoistables, boundary.contentState),
|
5495
|
+
500 < boundary.byteSize ||
|
5496
|
+
(boundary.fallbackAbortableTasks.forEach(
|
5497
|
+
abortTaskSoft,
|
5498
|
+
request$jscomp$0
|
5499
|
+
),
|
5500
|
+
boundary.fallbackAbortableTasks.clear(),
|
5501
|
+
null !== row &&
|
5502
|
+
0 === --row.pendingTasks &&
|
5503
|
+
finishSuspenseListRow(request$jscomp$0, row)),
|
5504
|
+
0 === request$jscomp$0.pendingRootTasks &&
|
5505
|
+
null === request$jscomp$0.trackedPostpones &&
|
5506
|
+
null !== boundary.contentPreamble &&
|
5507
|
+
preparePreamble(request$jscomp$0);
|
5508
|
+
else {
|
5509
|
+
if (
|
5510
|
+
5 === boundary.status &&
|
5511
|
+
((boundary = boundary.row), null !== boundary)
|
5512
|
+
) {
|
5513
|
+
if (null !== request$jscomp$0.trackedPostpones) {
|
5514
|
+
row = request$jscomp$0.trackedPostpones;
|
5515
|
+
var postponedRow = boundary.next;
|
5516
|
+
if (
|
5517
|
+
null !== postponedRow &&
|
5518
|
+
((segment = postponedRow.boundaries), null !== segment)
|
5519
|
+
)
|
5520
|
+
for (
|
5521
|
+
postponedRow.boundaries = null, postponedRow = 0;
|
5522
|
+
postponedRow < segment.length;
|
5523
|
+
postponedRow++
|
5524
|
+
) {
|
5525
|
+
var postponedBoundary = segment[postponedRow];
|
5526
|
+
var request = request$jscomp$0,
|
5527
|
+
trackedPostpones = row;
|
5528
|
+
postponedBoundary.status = 5;
|
5529
|
+
postponedBoundary.rootSegmentID = request.nextSegmentId++;
|
5530
|
+
request = postponedBoundary.trackedContentKeyPath;
|
5531
|
+
if (null === request)
|
5532
|
+
throw Error(
|
5533
|
+
"It should not be possible to postpone at the root. This is a bug in React."
|
5534
|
+
);
|
5535
|
+
var fallbackReplayNode = postponedBoundary.trackedFallbackNode,
|
5536
|
+
children = [],
|
5537
|
+
boundaryNode = trackedPostpones.workingMap.get(request);
|
5538
|
+
void 0 === boundaryNode
|
5539
|
+
? ((fallbackReplayNode = [
|
5540
|
+
request[1],
|
5541
|
+
request[2],
|
5542
|
+
children,
|
5543
|
+
null,
|
5544
|
+
fallbackReplayNode,
|
5545
|
+
postponedBoundary.rootSegmentID
|
5546
|
+
]),
|
5547
|
+
trackedPostpones.workingMap.set(
|
5548
|
+
request,
|
5549
|
+
fallbackReplayNode
|
5550
|
+
),
|
5551
|
+
addToReplayParent(
|
5552
|
+
fallbackReplayNode,
|
5553
|
+
request[0],
|
5554
|
+
trackedPostpones
|
5555
|
+
))
|
5556
|
+
: ((boundaryNode[4] = fallbackReplayNode),
|
5557
|
+
(boundaryNode[5] = postponedBoundary.rootSegmentID));
|
5558
|
+
finishedTask(request$jscomp$0, postponedBoundary, null, null);
|
5559
|
+
}
|
5560
|
+
}
|
5561
|
+
0 === --boundary.pendingTasks &&
|
5562
|
+
finishSuspenseListRow(request$jscomp$0, boundary);
|
5563
|
+
}
|
5564
|
+
}
|
5565
|
+
else
|
5566
|
+
null !== segment &&
|
5567
|
+
segment.parentFlushed &&
|
5568
|
+
1 === segment.status &&
|
5569
|
+
(queueCompletedSegment(boundary, segment),
|
5570
|
+
1 === boundary.completedSegments.length &&
|
5571
|
+
boundary.parentFlushed &&
|
5572
|
+
request$jscomp$0.partialBoundaries.push(boundary)),
|
5573
|
+
(boundary = boundary.row),
|
5574
|
+
null !== boundary &&
|
5575
|
+
boundary.together &&
|
5576
|
+
tryToResolveTogetherRow(request$jscomp$0, boundary);
|
5577
|
+
0 === request$jscomp$0.allPendingTasks && completeAll(request$jscomp$0);
|
5473
5578
|
}
|
5474
5579
|
function performWork(request$jscomp$2) {
|
5475
5580
|
if (14 !== request$jscomp$2.status && 13 !== request$jscomp$2.status) {
|
@@ -5627,19 +5732,25 @@ function performWork(request$jscomp$2) {
|
|
5627
5732
|
x$jscomp$0,
|
5628
5733
|
errorInfo$jscomp$0
|
5629
5734
|
);
|
5630
|
-
null === boundary$jscomp$0
|
5631
|
-
|
5632
|
-
|
5633
|
-
|
5634
|
-
|
5635
|
-
|
5636
|
-
|
5637
|
-
|
5638
|
-
|
5639
|
-
|
5640
|
-
|
5641
|
-
|
5642
|
-
|
5735
|
+
if (null === boundary$jscomp$0) fatalError(request, x$jscomp$0);
|
5736
|
+
else if (
|
5737
|
+
(boundary$jscomp$0.pendingTasks--,
|
5738
|
+
4 !== boundary$jscomp$0.status)
|
5739
|
+
) {
|
5740
|
+
boundary$jscomp$0.status = 4;
|
5741
|
+
boundary$jscomp$0.errorDigest = request$jscomp$0;
|
5742
|
+
untrackBoundary(request, boundary$jscomp$0);
|
5743
|
+
var boundaryRow = boundary$jscomp$0.row;
|
5744
|
+
null !== boundaryRow &&
|
5745
|
+
0 === --boundaryRow.pendingTasks &&
|
5746
|
+
finishSuspenseListRow(request, boundaryRow);
|
5747
|
+
boundary$jscomp$0.parentFlushed &&
|
5748
|
+
request.clientRenderedBoundaries.push(boundary$jscomp$0);
|
5749
|
+
0 === request.pendingRootTasks &&
|
5750
|
+
null === request.trackedPostpones &&
|
5751
|
+
null !== boundary$jscomp$0.contentPreamble &&
|
5752
|
+
preparePreamble(request);
|
5753
|
+
}
|
5643
5754
|
0 === request.allPendingTasks && completeAll(request);
|
5644
5755
|
}
|
5645
5756
|
} finally {
|
@@ -5816,13 +5927,7 @@ function flushSegment(request, destination, segment, hoistableState) {
|
|
5816
5927
|
request.renderState,
|
5817
5928
|
boundary.rootSegmentID
|
5818
5929
|
),
|
5819
|
-
hoistableState &&
|
5820
|
-
((boundary = boundary.fallbackState),
|
5821
|
-
boundary.styles.forEach(hoistStyleQueueDependency, hoistableState),
|
5822
|
-
boundary.stylesheets.forEach(
|
5823
|
-
hoistStylesheetDependency,
|
5824
|
-
hoistableState
|
5825
|
-
)),
|
5930
|
+
hoistableState && hoistHoistables(hoistableState, boundary.fallbackState),
|
5826
5931
|
flushSubtree(request, destination, segment, hoistableState),
|
5827
5932
|
destination.push("\x3c!--/$--\x3e")
|
5828
5933
|
);
|
@@ -5842,10 +5947,7 @@ function flushSegment(request, destination, segment, hoistableState) {
|
|
5842
5947
|
destination.push("\x3c!--/$--\x3e")
|
5843
5948
|
);
|
5844
5949
|
flushedByteSize += boundary.byteSize;
|
5845
|
-
hoistableState &&
|
5846
|
-
((segment = boundary.contentState),
|
5847
|
-
segment.styles.forEach(hoistStyleQueueDependency, hoistableState),
|
5848
|
-
segment.stylesheets.forEach(hoistStylesheetDependency, hoistableState));
|
5950
|
+
hoistableState && hoistHoistables(hoistableState, boundary.contentState);
|
5849
5951
|
segment = boundary.row;
|
5850
5952
|
null !== segment &&
|
5851
5953
|
500 < boundary.byteSize &&
|
@@ -5915,7 +6017,7 @@ function flushCompletedBoundary(request, destination, boundary) {
|
|
5915
6017
|
0 === (completedSegments.instructions & 2) &&
|
5916
6018
|
((completedSegments.instructions |= 2),
|
5917
6019
|
destination.push(
|
5918
|
-
'$RB=[];$RV=function(){$RT=performance.now();
|
6020
|
+
'$RB=[];$RV=function(c){$RT=performance.now();for(var a=0;a<c.length;a+=2){var b=c[a],h=c[a+1],e=b.parentNode;if(e){var f=b.previousSibling,g=0;do{if(b&&8===b.nodeType){var d=b.data;if("/$"===d||"/&"===d)if(0===g)break;else g--;else"$"!==d&&"$?"!==d&&"$~"!==d&&"$!"!==d&&"&"!==d||g++}d=b.nextSibling;e.removeChild(b);b=d}while(b);for(;h.firstChild;)e.insertBefore(h.firstChild,b);f.data="$";f._reactRetry&&f._reactRetry()}}c.length=0};$RC=function(c,a){if(a=document.getElementById(a))if(a.parentNode.removeChild(a),c=document.getElementById(c))c.previousSibling.data="$~",$RB.push(c,a),2===$RB.length&&setTimeout($RV.bind(null,$RB),("number"!==typeof $RT?0:$RT)+300-performance.now())};'
|
5919
6021
|
)),
|
5920
6022
|
0 === (completedSegments.instructions & 8)
|
5921
6023
|
? ((completedSegments.instructions |= 8),
|
@@ -5926,7 +6028,7 @@ function flushCompletedBoundary(request, destination, boundary) {
|
|
5926
6028
|
: (0 === (completedSegments.instructions & 2) &&
|
5927
6029
|
((completedSegments.instructions |= 2),
|
5928
6030
|
destination.push(
|
5929
|
-
'$RB=[];$RV=function(){$RT=performance.now();
|
6031
|
+
'$RB=[];$RV=function(c){$RT=performance.now();for(var a=0;a<c.length;a+=2){var b=c[a],h=c[a+1],e=b.parentNode;if(e){var f=b.previousSibling,g=0;do{if(b&&8===b.nodeType){var d=b.data;if("/$"===d||"/&"===d)if(0===g)break;else g--;else"$"!==d&&"$?"!==d&&"$~"!==d&&"$!"!==d&&"&"!==d||g++}d=b.nextSibling;e.removeChild(b);b=d}while(b);for(;h.firstChild;)e.insertBefore(h.firstChild,b);f.data="$";f._reactRetry&&f._reactRetry()}}c.length=0};$RC=function(c,a){if(a=document.getElementById(a))if(a.parentNode.removeChild(a),c=document.getElementById(c))c.previousSibling.data="$~",$RB.push(c,a),2===$RB.length&&setTimeout($RV.bind(null,$RB),("number"!==typeof $RT?0:$RT)+300-performance.now())};'
|
5930
6032
|
)),
|
5931
6033
|
destination.push('$RC("'));
|
5932
6034
|
completedSegments = i.toString(16);
|
@@ -6173,12 +6275,12 @@ function flushCompletedQueues(request, destination) {
|
|
6173
6275
|
completedBoundaries.splice(0, i);
|
6174
6276
|
var partialBoundaries = request.partialBoundaries;
|
6175
6277
|
for (i = 0; i < partialBoundaries.length; i++) {
|
6176
|
-
var boundary$
|
6278
|
+
var boundary$66 = partialBoundaries[i];
|
6177
6279
|
a: {
|
6178
6280
|
clientRenderedBoundaries = request;
|
6179
6281
|
boundary = destination;
|
6180
|
-
flushedByteSize = boundary$
|
6181
|
-
var completedSegments = boundary$
|
6282
|
+
flushedByteSize = boundary$66.byteSize;
|
6283
|
+
var completedSegments = boundary$66.completedSegments;
|
6182
6284
|
for (
|
6183
6285
|
JSCompiler_inline_result = 0;
|
6184
6286
|
JSCompiler_inline_result < completedSegments.length;
|
@@ -6188,7 +6290,7 @@ function flushCompletedQueues(request, destination) {
|
|
6188
6290
|
!flushPartiallyCompletedSegment(
|
6189
6291
|
clientRenderedBoundaries,
|
6190
6292
|
boundary,
|
6191
|
-
boundary$
|
6293
|
+
boundary$66,
|
6192
6294
|
completedSegments[JSCompiler_inline_result]
|
6193
6295
|
)
|
6194
6296
|
) {
|
@@ -6198,9 +6300,20 @@ function flushCompletedQueues(request, destination) {
|
|
6198
6300
|
break a;
|
6199
6301
|
}
|
6200
6302
|
completedSegments.splice(0, JSCompiler_inline_result);
|
6303
|
+
var row = boundary$66.row;
|
6304
|
+
null !== row &&
|
6305
|
+
row.together &&
|
6306
|
+
1 === boundary$66.pendingTasks &&
|
6307
|
+
(1 === row.pendingTasks
|
6308
|
+
? unblockSuspenseListRow(
|
6309
|
+
clientRenderedBoundaries,
|
6310
|
+
row,
|
6311
|
+
row.hoistables
|
6312
|
+
)
|
6313
|
+
: row.pendingTasks--);
|
6201
6314
|
JSCompiler_inline_result$jscomp$0 = writeHoistablesForBoundary(
|
6202
6315
|
boundary,
|
6203
|
-
boundary$
|
6316
|
+
boundary$66.contentState,
|
6204
6317
|
clientRenderedBoundaries.renderState
|
6205
6318
|
);
|
6206
6319
|
}
|
@@ -6283,8 +6396,20 @@ function abort(request, reason) {
|
|
6283
6396
|
}
|
6284
6397
|
null !== request.destination &&
|
6285
6398
|
flushCompletedQueues(request, request.destination);
|
6286
|
-
} catch (error$
|
6287
|
-
logRecoverableError(request, error$
|
6399
|
+
} catch (error$68) {
|
6400
|
+
logRecoverableError(request, error$68, {}), fatalError(request, error$68);
|
6401
|
+
}
|
6402
|
+
}
|
6403
|
+
function addToReplayParent(node, parentKeyPath, trackedPostpones) {
|
6404
|
+
if (null === parentKeyPath) trackedPostpones.rootNodes.push(node);
|
6405
|
+
else {
|
6406
|
+
var workingMap = trackedPostpones.workingMap,
|
6407
|
+
parentNode = workingMap.get(parentKeyPath);
|
6408
|
+
void 0 === parentNode &&
|
6409
|
+
((parentNode = [parentKeyPath[1], parentKeyPath[2], [], null]),
|
6410
|
+
workingMap.set(parentKeyPath, parentNode),
|
6411
|
+
addToReplayParent(parentNode, parentKeyPath[0], trackedPostpones));
|
6412
|
+
parentNode[2].push(node);
|
6288
6413
|
}
|
6289
6414
|
}
|
6290
6415
|
function onError() {}
|
@@ -6353,4 +6478,4 @@ exports.renderToString = function (children, options) {
|
|
6353
6478
|
'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'
|
6354
6479
|
);
|
6355
6480
|
};
|
6356
|
-
exports.version = "19.2.0-canary-
|
6481
|
+
exports.version = "19.2.0-canary-8ce15b0f-20250522";
|