react-dom 19.3.0-canary-c9ddee7e-20251031 → 19.3.0-canary-561ee24d-20251101
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 +200 -178
- package/cjs/react-dom-client.production.js +260 -225
- package/cjs/react-dom-profiling.development.js +200 -178
- package/cjs/react-dom-profiling.profiling.js +293 -258
- package/cjs/react-dom-server-legacy.browser.development.js +52 -31
- package/cjs/react-dom-server-legacy.browser.production.js +82 -81
- package/cjs/react-dom-server-legacy.node.development.js +52 -31
- package/cjs/react-dom-server-legacy.node.production.js +82 -81
- package/cjs/react-dom-server.browser.development.js +55 -34
- package/cjs/react-dom-server.browser.production.js +65 -64
- package/cjs/react-dom-server.bun.development.js +54 -34
- package/cjs/react-dom-server.bun.production.js +65 -64
- package/cjs/react-dom-server.edge.development.js +55 -34
- package/cjs/react-dom-server.edge.production.js +65 -64
- package/cjs/react-dom-server.node.development.js +55 -34
- package/cjs/react-dom-server.node.production.js +65 -64
- 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
|
@@ -4710,43 +4710,48 @@ function renderSuspenseListRows(request, task, keyPath, rows, revealOrder) {
|
|
|
4710
4710
|
0 === --previousSuspenseListRow.pendingTasks &&
|
|
4711
4711
|
finishSuspenseListRow(request, previousSuspenseListRow);
|
|
4712
4712
|
else {
|
|
4713
|
-
|
|
4714
|
-
|
|
4715
|
-
|
|
4716
|
-
for (
|
|
4717
|
-
|
|
4713
|
+
resumeSlots = task.blockedSegment;
|
|
4714
|
+
n = resumeSlots.children.length;
|
|
4715
|
+
i = resumeSlots.chunks.length;
|
|
4716
|
+
for (node = 0; node < keyPath; node++) {
|
|
4717
|
+
resumeSegmentID =
|
|
4718
|
+
"unstable_legacy-backwards" === revealOrder ? keyPath - 1 - node : node;
|
|
4719
|
+
var node$40 = rows[resumeSegmentID];
|
|
4718
4720
|
task.row = previousSuspenseListRow = createSuspenseListRow(
|
|
4719
4721
|
previousSuspenseListRow
|
|
4720
4722
|
);
|
|
4721
|
-
task.treeContext = pushTreeContext(
|
|
4722
|
-
|
|
4723
|
+
task.treeContext = pushTreeContext(
|
|
4724
|
+
prevTreeContext,
|
|
4725
|
+
keyPath,
|
|
4726
|
+
resumeSegmentID
|
|
4727
|
+
);
|
|
4728
|
+
var newSegment = createPendingSegment(
|
|
4723
4729
|
request,
|
|
4724
|
-
|
|
4730
|
+
i,
|
|
4725
4731
|
null,
|
|
4726
4732
|
task.formatContext,
|
|
4727
|
-
0 ===
|
|
4733
|
+
0 === resumeSegmentID ? resumeSlots.lastPushedText : !0,
|
|
4728
4734
|
!0
|
|
4729
4735
|
);
|
|
4730
|
-
|
|
4731
|
-
task.blockedSegment =
|
|
4736
|
+
resumeSlots.children.splice(n, 0, newSegment);
|
|
4737
|
+
task.blockedSegment = newSegment;
|
|
4732
4738
|
try {
|
|
4733
|
-
renderNode(request, task, node,
|
|
4734
|
-
|
|
4735
|
-
|
|
4736
|
-
|
|
4737
|
-
(
|
|
4738
|
-
finishedSegment(request, task.blockedBoundary,
|
|
4739
|
+
renderNode(request, task, node$40, resumeSegmentID),
|
|
4740
|
+
newSegment.lastPushedText &&
|
|
4741
|
+
newSegment.textEmbedded &&
|
|
4742
|
+
newSegment.chunks.push(textSeparator),
|
|
4743
|
+
(newSegment.status = 1),
|
|
4744
|
+
finishedSegment(request, task.blockedBoundary, newSegment),
|
|
4739
4745
|
0 === --previousSuspenseListRow.pendingTasks &&
|
|
4740
4746
|
finishSuspenseListRow(request, previousSuspenseListRow);
|
|
4741
4747
|
} catch (thrownValue) {
|
|
4742
4748
|
throw (
|
|
4743
|
-
((
|
|
4744
|
-
thrownValue)
|
|
4749
|
+
((newSegment.status = 12 === request.status ? 3 : 4), thrownValue)
|
|
4745
4750
|
);
|
|
4746
4751
|
}
|
|
4747
4752
|
}
|
|
4748
|
-
task.blockedSegment =
|
|
4749
|
-
|
|
4753
|
+
task.blockedSegment = resumeSlots;
|
|
4754
|
+
resumeSlots.lastPushedText = !1;
|
|
4750
4755
|
}
|
|
4751
4756
|
null !== prevRow &&
|
|
4752
4757
|
null !== previousSuspenseListRow &&
|
|
@@ -4823,9 +4828,9 @@ function renderElement(request, task, keyPath, type, props, ref) {
|
|
|
4823
4828
|
var defaultProps = type.defaultProps;
|
|
4824
4829
|
if (defaultProps) {
|
|
4825
4830
|
newProps === props && (newProps = assign({}, newProps, props));
|
|
4826
|
-
for (var propName$
|
|
4827
|
-
void 0 === newProps[propName$
|
|
4828
|
-
(newProps[propName$
|
|
4831
|
+
for (var propName$45 in defaultProps)
|
|
4832
|
+
void 0 === newProps[propName$45] &&
|
|
4833
|
+
(newProps[propName$45] = defaultProps[propName$45]);
|
|
4829
4834
|
}
|
|
4830
4835
|
var JSCompiler_inline_result = newProps;
|
|
4831
4836
|
var context = emptyContextObject,
|
|
@@ -4958,7 +4963,7 @@ function renderElement(request, task, keyPath, type, props, ref) {
|
|
|
4958
4963
|
task.formatContext = prevContext;
|
|
4959
4964
|
task.keyPath = prevKeyPath$jscomp$0;
|
|
4960
4965
|
} else {
|
|
4961
|
-
var children$
|
|
4966
|
+
var children$42 = pushStartInstance(
|
|
4962
4967
|
segment.chunks,
|
|
4963
4968
|
type,
|
|
4964
4969
|
props,
|
|
@@ -4970,13 +4975,13 @@ function renderElement(request, task, keyPath, type, props, ref) {
|
|
|
4970
4975
|
segment.lastPushedText
|
|
4971
4976
|
);
|
|
4972
4977
|
segment.lastPushedText = !1;
|
|
4973
|
-
var prevContext$
|
|
4974
|
-
prevKeyPath$
|
|
4978
|
+
var prevContext$43 = task.formatContext,
|
|
4979
|
+
prevKeyPath$44 = task.keyPath;
|
|
4975
4980
|
task.keyPath = keyPath;
|
|
4976
4981
|
if (
|
|
4977
4982
|
3 ===
|
|
4978
4983
|
(task.formatContext = getChildFormatContext(
|
|
4979
|
-
prevContext$
|
|
4984
|
+
prevContext$43,
|
|
4980
4985
|
type,
|
|
4981
4986
|
props
|
|
4982
4987
|
)).insertionMode
|
|
@@ -4993,7 +4998,7 @@ function renderElement(request, task, keyPath, type, props, ref) {
|
|
|
4993
4998
|
task.blockedSegment = preambleSegment;
|
|
4994
4999
|
try {
|
|
4995
5000
|
(preambleSegment.status = 6),
|
|
4996
|
-
renderNode(request, task, children$
|
|
5001
|
+
renderNode(request, task, children$42, -1),
|
|
4997
5002
|
preambleSegment.lastPushedText &&
|
|
4998
5003
|
preambleSegment.textEmbedded &&
|
|
4999
5004
|
preambleSegment.chunks.push(textSeparator),
|
|
@@ -5002,9 +5007,9 @@ function renderElement(request, task, keyPath, type, props, ref) {
|
|
|
5002
5007
|
} finally {
|
|
5003
5008
|
task.blockedSegment = segment;
|
|
5004
5009
|
}
|
|
5005
|
-
} else renderNode(request, task, children$
|
|
5006
|
-
task.formatContext = prevContext$
|
|
5007
|
-
task.keyPath = prevKeyPath$
|
|
5010
|
+
} else renderNode(request, task, children$42, -1);
|
|
5011
|
+
task.formatContext = prevContext$43;
|
|
5012
|
+
task.keyPath = prevKeyPath$44;
|
|
5008
5013
|
a: {
|
|
5009
5014
|
var target = segment.chunks,
|
|
5010
5015
|
resumableState = request.resumableState;
|
|
@@ -5029,19 +5034,19 @@ function renderElement(request, task, keyPath, type, props, ref) {
|
|
|
5029
5034
|
case "wbr":
|
|
5030
5035
|
break a;
|
|
5031
5036
|
case "body":
|
|
5032
|
-
if (1 >= prevContext$
|
|
5037
|
+
if (1 >= prevContext$43.insertionMode) {
|
|
5033
5038
|
resumableState.hasBody = !0;
|
|
5034
5039
|
break a;
|
|
5035
5040
|
}
|
|
5036
5041
|
break;
|
|
5037
5042
|
case "html":
|
|
5038
|
-
if (0 === prevContext$
|
|
5043
|
+
if (0 === prevContext$43.insertionMode) {
|
|
5039
5044
|
resumableState.hasHtml = !0;
|
|
5040
5045
|
break a;
|
|
5041
5046
|
}
|
|
5042
5047
|
break;
|
|
5043
5048
|
case "head":
|
|
5044
|
-
if (1 >= prevContext$
|
|
5049
|
+
if (1 >= prevContext$43.insertionMode) break a;
|
|
5045
5050
|
}
|
|
5046
5051
|
target.push(endChunkForTag(type));
|
|
5047
5052
|
}
|
|
@@ -5070,10 +5075,10 @@ function renderElement(request, task, keyPath, type, props, ref) {
|
|
|
5070
5075
|
} else if ("hidden" !== props.mode) {
|
|
5071
5076
|
segment$jscomp$0.chunks.push(startActivityBoundary);
|
|
5072
5077
|
segment$jscomp$0.lastPushedText = !1;
|
|
5073
|
-
var prevKeyPath$
|
|
5078
|
+
var prevKeyPath$47 = task.keyPath;
|
|
5074
5079
|
task.keyPath = keyPath;
|
|
5075
5080
|
renderNode(request, task, props.children, -1);
|
|
5076
|
-
task.keyPath = prevKeyPath$
|
|
5081
|
+
task.keyPath = prevKeyPath$47;
|
|
5077
5082
|
segment$jscomp$0.chunks.push(endActivityBoundary);
|
|
5078
5083
|
segment$jscomp$0.lastPushedText = !1;
|
|
5079
5084
|
}
|
|
@@ -5082,11 +5087,7 @@ function renderElement(request, task, keyPath, type, props, ref) {
|
|
|
5082
5087
|
a: {
|
|
5083
5088
|
var children$jscomp$0 = props.children,
|
|
5084
5089
|
revealOrder = props.revealOrder;
|
|
5085
|
-
if (
|
|
5086
|
-
"forwards" === revealOrder ||
|
|
5087
|
-
"backwards" === revealOrder ||
|
|
5088
|
-
"unstable_legacy-backwards" === revealOrder
|
|
5089
|
-
) {
|
|
5090
|
+
if ("independent" !== revealOrder && "together" !== revealOrder) {
|
|
5090
5091
|
if (isArrayImpl(children$jscomp$0)) {
|
|
5091
5092
|
renderSuspenseListRows(
|
|
5092
5093
|
request,
|
|
@@ -5118,7 +5119,7 @@ function renderElement(request, task, keyPath, type, props, ref) {
|
|
|
5118
5119
|
}
|
|
5119
5120
|
}
|
|
5120
5121
|
if ("together" === revealOrder) {
|
|
5121
|
-
var prevKeyPath$
|
|
5122
|
+
var prevKeyPath$41 = task.keyPath,
|
|
5122
5123
|
prevRow = task.row,
|
|
5123
5124
|
newRow = (task.row = createSuspenseListRow(null));
|
|
5124
5125
|
newRow.boundaries = [];
|
|
@@ -5127,7 +5128,7 @@ function renderElement(request, task, keyPath, type, props, ref) {
|
|
|
5127
5128
|
renderNodeDestructive(request, task, children$jscomp$0, -1);
|
|
5128
5129
|
0 === --newRow.pendingTasks &&
|
|
5129
5130
|
finishSuspenseListRow(request, newRow);
|
|
5130
|
-
task.keyPath = prevKeyPath$
|
|
5131
|
+
task.keyPath = prevKeyPath$41;
|
|
5131
5132
|
task.row = prevRow;
|
|
5132
5133
|
null !== prevRow &&
|
|
5133
5134
|
0 < newRow.pendingTasks &&
|
|
@@ -6095,21 +6096,21 @@ function renderNode(request, task, node, childIndex) {
|
|
|
6095
6096
|
chunkLength = segment.chunks.length;
|
|
6096
6097
|
try {
|
|
6097
6098
|
return renderNodeDestructive(request, task, node, childIndex);
|
|
6098
|
-
} catch (thrownValue$
|
|
6099
|
+
} catch (thrownValue$64) {
|
|
6099
6100
|
if (
|
|
6100
6101
|
(resetHooksState(),
|
|
6101
6102
|
(segment.children.length = childrenLength),
|
|
6102
6103
|
(segment.chunks.length = chunkLength),
|
|
6103
6104
|
(node =
|
|
6104
|
-
thrownValue$
|
|
6105
|
+
thrownValue$64 === SuspenseException
|
|
6105
6106
|
? getSuspendedThenable()
|
|
6106
|
-
: thrownValue$
|
|
6107
|
+
: thrownValue$64),
|
|
6107
6108
|
12 !== request.status && "object" === typeof node && null !== node)
|
|
6108
6109
|
) {
|
|
6109
6110
|
if ("function" === typeof node.then) {
|
|
6110
6111
|
segment = node;
|
|
6111
6112
|
node =
|
|
6112
|
-
thrownValue$
|
|
6113
|
+
thrownValue$64 === SuspenseException
|
|
6113
6114
|
? getThenableStateAfterSuspending()
|
|
6114
6115
|
: null;
|
|
6115
6116
|
request = spawnNewSuspendedRenderTask(request, task, node).ping;
|
|
@@ -6124,7 +6125,7 @@ function renderNode(request, task, node, childIndex) {
|
|
|
6124
6125
|
}
|
|
6125
6126
|
if ("Maximum call stack size exceeded" === node.message) {
|
|
6126
6127
|
segment =
|
|
6127
|
-
thrownValue$
|
|
6128
|
+
thrownValue$64 === SuspenseException
|
|
6128
6129
|
? getThenableStateAfterSuspending()
|
|
6129
6130
|
: null;
|
|
6130
6131
|
segment = spawnNewSuspendedRenderTask(request, task, segment);
|
|
@@ -6239,12 +6240,12 @@ function abortTask(task, request, error) {
|
|
|
6239
6240
|
0 === request.pendingRootTasks && completeShell(request);
|
|
6240
6241
|
}
|
|
6241
6242
|
} else {
|
|
6242
|
-
var trackedPostpones$
|
|
6243
|
+
var trackedPostpones$65 = request.trackedPostpones;
|
|
6243
6244
|
if (4 !== boundary.status) {
|
|
6244
|
-
if (null !== trackedPostpones$
|
|
6245
|
+
if (null !== trackedPostpones$65 && null !== segment)
|
|
6245
6246
|
return (
|
|
6246
6247
|
logRecoverableError(request, error, errorInfo),
|
|
6247
|
-
trackPostpone(request, trackedPostpones$
|
|
6248
|
+
trackPostpone(request, trackedPostpones$65, task, segment),
|
|
6248
6249
|
boundary.fallbackAbortableTasks.forEach(function (fallbackTask) {
|
|
6249
6250
|
return abortTask(fallbackTask, request, error);
|
|
6250
6251
|
}),
|
|
@@ -7173,12 +7174,12 @@ function flushCompletedQueues(request, destination) {
|
|
|
7173
7174
|
flushingPartialBoundaries = !0;
|
|
7174
7175
|
var partialBoundaries = request.partialBoundaries;
|
|
7175
7176
|
for (i = 0; i < partialBoundaries.length; i++) {
|
|
7176
|
-
var boundary$
|
|
7177
|
+
var boundary$71 = partialBoundaries[i];
|
|
7177
7178
|
a: {
|
|
7178
7179
|
clientRenderedBoundaries = request;
|
|
7179
7180
|
boundary = destination;
|
|
7180
|
-
flushedByteSize = boundary$
|
|
7181
|
-
var completedSegments = boundary$
|
|
7181
|
+
flushedByteSize = boundary$71.byteSize;
|
|
7182
|
+
var completedSegments = boundary$71.completedSegments;
|
|
7182
7183
|
for (
|
|
7183
7184
|
JSCompiler_inline_result = 0;
|
|
7184
7185
|
JSCompiler_inline_result < completedSegments.length;
|
|
@@ -7188,7 +7189,7 @@ function flushCompletedQueues(request, destination) {
|
|
|
7188
7189
|
!flushPartiallyCompletedSegment(
|
|
7189
7190
|
clientRenderedBoundaries,
|
|
7190
7191
|
boundary,
|
|
7191
|
-
boundary$
|
|
7192
|
+
boundary$71,
|
|
7192
7193
|
completedSegments[JSCompiler_inline_result]
|
|
7193
7194
|
)
|
|
7194
7195
|
) {
|
|
@@ -7198,10 +7199,10 @@ function flushCompletedQueues(request, destination) {
|
|
|
7198
7199
|
break a;
|
|
7199
7200
|
}
|
|
7200
7201
|
completedSegments.splice(0, JSCompiler_inline_result);
|
|
7201
|
-
var row = boundary$
|
|
7202
|
+
var row = boundary$71.row;
|
|
7202
7203
|
null !== row &&
|
|
7203
7204
|
row.together &&
|
|
7204
|
-
1 === boundary$
|
|
7205
|
+
1 === boundary$71.pendingTasks &&
|
|
7205
7206
|
(1 === row.pendingTasks
|
|
7206
7207
|
? unblockSuspenseListRow(
|
|
7207
7208
|
clientRenderedBoundaries,
|
|
@@ -7211,7 +7212,7 @@ function flushCompletedQueues(request, destination) {
|
|
|
7211
7212
|
: row.pendingTasks--);
|
|
7212
7213
|
JSCompiler_inline_result$jscomp$0 = writeHoistablesForBoundary(
|
|
7213
7214
|
boundary,
|
|
7214
|
-
boundary$
|
|
7215
|
+
boundary$71.contentState,
|
|
7215
7216
|
clientRenderedBoundaries.renderState
|
|
7216
7217
|
);
|
|
7217
7218
|
}
|
|
@@ -7306,8 +7307,8 @@ function abort(request, reason) {
|
|
|
7306
7307
|
}
|
|
7307
7308
|
null !== request.destination &&
|
|
7308
7309
|
flushCompletedQueues(request, request.destination);
|
|
7309
|
-
} catch (error$
|
|
7310
|
-
logRecoverableError(request, error$
|
|
7310
|
+
} catch (error$73) {
|
|
7311
|
+
logRecoverableError(request, error$73, {}), fatalError(request, error$73);
|
|
7311
7312
|
}
|
|
7312
7313
|
}
|
|
7313
7314
|
function addToReplayParent(node, parentKeyPath, trackedPostpones) {
|
|
@@ -7370,12 +7371,12 @@ function getPostponedState(request) {
|
|
|
7370
7371
|
}
|
|
7371
7372
|
function ensureCorrectIsomorphicReactVersion() {
|
|
7372
7373
|
var isomorphicReactPackageVersion = React.version;
|
|
7373
|
-
if ("19.3.0-canary-
|
|
7374
|
+
if ("19.3.0-canary-561ee24d-20251101" !== isomorphicReactPackageVersion)
|
|
7374
7375
|
throw Error(
|
|
7375
7376
|
formatProdErrorMessage(
|
|
7376
7377
|
527,
|
|
7377
7378
|
isomorphicReactPackageVersion,
|
|
7378
|
-
"19.3.0-canary-
|
|
7379
|
+
"19.3.0-canary-561ee24d-20251101"
|
|
7379
7380
|
)
|
|
7380
7381
|
);
|
|
7381
7382
|
}
|
|
@@ -7630,4 +7631,4 @@ exports.resumeAndPrerender = function (children, postponedState, options) {
|
|
|
7630
7631
|
startWork(request);
|
|
7631
7632
|
});
|
|
7632
7633
|
};
|
|
7633
|
-
exports.version = "19.3.0-canary-
|
|
7634
|
+
exports.version = "19.3.0-canary-561ee24d-20251101";
|
|
@@ -39,7 +39,8 @@ function getIteratorFn(maybeIterable) {
|
|
|
39
39
|
maybeIterable["@@iterator"];
|
|
40
40
|
return "function" === typeof maybeIterable ? maybeIterable : null;
|
|
41
41
|
}
|
|
42
|
-
var
|
|
42
|
+
var ASYNC_ITERATOR = Symbol.asyncIterator,
|
|
43
|
+
isArrayImpl = Array.isArray,
|
|
43
44
|
jsxPropsParents = new WeakMap(),
|
|
44
45
|
jsxChildrenParents = new WeakMap();
|
|
45
46
|
function objectName(object) {
|
|
@@ -6265,8 +6266,6 @@ function pushHaltedAwaitOnComponentStack(task, debugInfo) {
|
|
|
6265
6266
|
if (null != debugInfo)
|
|
6266
6267
|
for (var i = debugInfo.length - 1; 0 <= i; i--) {
|
|
6267
6268
|
var info = debugInfo[i];
|
|
6268
|
-
if ("string" === typeof info.name) break;
|
|
6269
|
-
if ("number" === typeof info.time) break;
|
|
6270
6269
|
if (null != info.awaited) {
|
|
6271
6270
|
var bestStack = null == info.debugStack ? info.awaited : info;
|
|
6272
6271
|
if (void 0 !== bestStack.debugStack) {
|
|
@@ -6526,47 +6525,53 @@ function renderSuspenseListRows(request, task, keyPath, rows, revealOrder) {
|
|
|
6526
6525
|
0 === --previousSuspenseListRow.pendingTasks &&
|
|
6527
6526
|
finishSuspenseListRow(request, previousSuspenseListRow);
|
|
6528
6527
|
else {
|
|
6529
|
-
|
|
6530
|
-
|
|
6531
|
-
|
|
6532
|
-
for (
|
|
6533
|
-
|
|
6528
|
+
resumeSlots = task.blockedSegment;
|
|
6529
|
+
n = resumeSlots.children.length;
|
|
6530
|
+
i = resumeSlots.chunks.length;
|
|
6531
|
+
for (node = 0; node < keyPath; node++) {
|
|
6532
|
+
resumeSegmentID =
|
|
6533
|
+
"unstable_legacy-backwards" === revealOrder ? keyPath - 1 - node : node;
|
|
6534
|
+
var _node3 = rows[resumeSegmentID];
|
|
6534
6535
|
task.row = previousSuspenseListRow = createSuspenseListRow(
|
|
6535
6536
|
previousSuspenseListRow
|
|
6536
6537
|
);
|
|
6537
|
-
task.treeContext = pushTreeContext(
|
|
6538
|
-
|
|
6538
|
+
task.treeContext = pushTreeContext(
|
|
6539
|
+
prevTreeContext,
|
|
6540
|
+
keyPath,
|
|
6541
|
+
resumeSegmentID
|
|
6542
|
+
);
|
|
6543
|
+
var newSegment = createPendingSegment(
|
|
6539
6544
|
request,
|
|
6540
|
-
|
|
6545
|
+
i,
|
|
6541
6546
|
null,
|
|
6542
6547
|
task.formatContext,
|
|
6543
|
-
0 ===
|
|
6548
|
+
0 === resumeSegmentID ? resumeSlots.lastPushedText : !0,
|
|
6544
6549
|
!0
|
|
6545
6550
|
);
|
|
6546
|
-
|
|
6547
|
-
task.blockedSegment =
|
|
6548
|
-
warnForMissingKey(request, task,
|
|
6551
|
+
resumeSlots.children.splice(n, 0, newSegment);
|
|
6552
|
+
task.blockedSegment = newSegment;
|
|
6553
|
+
warnForMissingKey(request, task, _node3);
|
|
6549
6554
|
try {
|
|
6550
|
-
renderNode(request, task,
|
|
6555
|
+
renderNode(request, task, _node3, resumeSegmentID),
|
|
6551
6556
|
pushSegmentFinale(
|
|
6552
|
-
|
|
6557
|
+
newSegment.chunks,
|
|
6553
6558
|
request.renderState,
|
|
6554
|
-
|
|
6555
|
-
|
|
6559
|
+
newSegment.lastPushedText,
|
|
6560
|
+
newSegment.textEmbedded
|
|
6556
6561
|
),
|
|
6557
|
-
(
|
|
6558
|
-
finishedSegment(request, task.blockedBoundary,
|
|
6562
|
+
(newSegment.status = COMPLETED),
|
|
6563
|
+
finishedSegment(request, task.blockedBoundary, newSegment),
|
|
6559
6564
|
0 === --previousSuspenseListRow.pendingTasks &&
|
|
6560
6565
|
finishSuspenseListRow(request, previousSuspenseListRow);
|
|
6561
6566
|
} catch (thrownValue) {
|
|
6562
6567
|
throw (
|
|
6563
|
-
((
|
|
6568
|
+
((newSegment.status = 12 === request.status ? ABORTED : ERRORED),
|
|
6564
6569
|
thrownValue)
|
|
6565
6570
|
);
|
|
6566
6571
|
}
|
|
6567
6572
|
}
|
|
6568
|
-
task.blockedSegment =
|
|
6569
|
-
|
|
6573
|
+
task.blockedSegment = resumeSlots;
|
|
6574
|
+
resumeSlots.lastPushedText = !1;
|
|
6570
6575
|
}
|
|
6571
6576
|
null !== prevRow &&
|
|
6572
6577
|
null !== previousSuspenseListRow &&
|
|
@@ -7197,11 +7202,7 @@ function renderElement(request, task, keyPath, type, props, ref) {
|
|
|
7197
7202
|
a: {
|
|
7198
7203
|
var children$jscomp$0 = props.children,
|
|
7199
7204
|
revealOrder = props.revealOrder;
|
|
7200
|
-
if (
|
|
7201
|
-
"forwards" === revealOrder ||
|
|
7202
|
-
"backwards" === revealOrder ||
|
|
7203
|
-
"unstable_legacy-backwards" === revealOrder
|
|
7204
|
-
) {
|
|
7205
|
+
if ("independent" !== revealOrder && "together" !== revealOrder) {
|
|
7205
7206
|
if (isArrayImpl(children$jscomp$0)) {
|
|
7206
7207
|
renderSuspenseListRows(
|
|
7207
7208
|
request,
|
|
@@ -8597,9 +8598,28 @@ function abortTask(task, request, error) {
|
|
|
8597
8598
|
}
|
|
8598
8599
|
var errorInfo = getThrownInfo(task.componentStack),
|
|
8599
8600
|
node = task.node;
|
|
8600
|
-
null !== node &&
|
|
8601
|
+
if (null !== node && "object" === typeof node) {
|
|
8602
|
+
for (
|
|
8603
|
+
var debugInfo = node._debugInfo;
|
|
8604
|
+
"object" === typeof node &&
|
|
8605
|
+
null !== node &&
|
|
8606
|
+
node.$$typeof === REACT_LAZY_TYPE;
|
|
8607
|
+
|
|
8608
|
+
) {
|
|
8609
|
+
var payload = node._payload;
|
|
8610
|
+
if ("fulfilled" === payload.status) node = payload.value;
|
|
8611
|
+
else break;
|
|
8612
|
+
}
|
|
8601
8613
|
"object" === typeof node &&
|
|
8602
|
-
|
|
8614
|
+
null !== node &&
|
|
8615
|
+
(isArrayImpl(node) ||
|
|
8616
|
+
"function" === typeof node[ASYNC_ITERATOR] ||
|
|
8617
|
+
node.$$typeof === REACT_ELEMENT_TYPE ||
|
|
8618
|
+
node.$$typeof === REACT_LAZY_TYPE) &&
|
|
8619
|
+
isArrayImpl(node._debugInfo) &&
|
|
8620
|
+
(debugInfo = node._debugInfo);
|
|
8621
|
+
pushHaltedAwaitOnComponentStack(task, debugInfo);
|
|
8622
|
+
}
|
|
8603
8623
|
if (null === boundary) {
|
|
8604
8624
|
if (13 !== request.status && request.status !== CLOSED) {
|
|
8605
8625
|
boundary = task.replay;
|
|
@@ -9898,11 +9918,11 @@ function getPostponedState(request) {
|
|
|
9898
9918
|
}
|
|
9899
9919
|
function ensureCorrectIsomorphicReactVersion() {
|
|
9900
9920
|
var isomorphicReactPackageVersion = React.version;
|
|
9901
|
-
if ("19.3.0-canary-
|
|
9921
|
+
if ("19.3.0-canary-561ee24d-20251101" !== isomorphicReactPackageVersion)
|
|
9902
9922
|
throw Error(
|
|
9903
9923
|
'Incompatible React versions: The "react" and "react-dom" packages must have the exact same version. Instead got:\n - react: ' +
|
|
9904
9924
|
(isomorphicReactPackageVersion +
|
|
9905
|
-
"\n - react-dom: 19.3.0-canary-
|
|
9925
|
+
"\n - react-dom: 19.3.0-canary-561ee24d-20251101\nLearn more: https://react.dev/warnings/version-mismatch")
|
|
9906
9926
|
);
|
|
9907
9927
|
}
|
|
9908
9928
|
ensureCorrectIsomorphicReactVersion();
|
|
@@ -10455,4 +10475,4 @@ exports.resumeToPipeableStream = function (children, postponedState, options) {
|
|
|
10455
10475
|
}
|
|
10456
10476
|
};
|
|
10457
10477
|
};
|
|
10458
|
-
exports.version = "19.3.0-canary-
|
|
10478
|
+
exports.version = "19.3.0-canary-561ee24d-20251101";
|