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
|
@@ -4764,43 +4764,48 @@ function renderSuspenseListRows(request, task, keyPath, rows, revealOrder) {
|
|
|
4764
4764
|
0 === --previousSuspenseListRow.pendingTasks &&
|
|
4765
4765
|
finishSuspenseListRow(request, previousSuspenseListRow);
|
|
4766
4766
|
else {
|
|
4767
|
-
|
|
4768
|
-
|
|
4769
|
-
|
|
4770
|
-
for (
|
|
4771
|
-
|
|
4767
|
+
resumeSlots = task.blockedSegment;
|
|
4768
|
+
n = resumeSlots.children.length;
|
|
4769
|
+
i = resumeSlots.chunks.length;
|
|
4770
|
+
for (node = 0; node < keyPath; node++) {
|
|
4771
|
+
resumeSegmentID =
|
|
4772
|
+
"unstable_legacy-backwards" === revealOrder ? keyPath - 1 - node : node;
|
|
4773
|
+
var node$40 = rows[resumeSegmentID];
|
|
4772
4774
|
task.row = previousSuspenseListRow = createSuspenseListRow(
|
|
4773
4775
|
previousSuspenseListRow
|
|
4774
4776
|
);
|
|
4775
|
-
task.treeContext = pushTreeContext(
|
|
4776
|
-
|
|
4777
|
+
task.treeContext = pushTreeContext(
|
|
4778
|
+
prevTreeContext,
|
|
4779
|
+
keyPath,
|
|
4780
|
+
resumeSegmentID
|
|
4781
|
+
);
|
|
4782
|
+
var newSegment = createPendingSegment(
|
|
4777
4783
|
request,
|
|
4778
|
-
|
|
4784
|
+
i,
|
|
4779
4785
|
null,
|
|
4780
4786
|
task.formatContext,
|
|
4781
|
-
0 ===
|
|
4787
|
+
0 === resumeSegmentID ? resumeSlots.lastPushedText : !0,
|
|
4782
4788
|
!0
|
|
4783
4789
|
);
|
|
4784
|
-
|
|
4785
|
-
task.blockedSegment =
|
|
4790
|
+
resumeSlots.children.splice(n, 0, newSegment);
|
|
4791
|
+
task.blockedSegment = newSegment;
|
|
4786
4792
|
try {
|
|
4787
|
-
renderNode(request, task, node,
|
|
4788
|
-
|
|
4789
|
-
|
|
4790
|
-
|
|
4791
|
-
(
|
|
4792
|
-
finishedSegment(request, task.blockedBoundary,
|
|
4793
|
+
renderNode(request, task, node$40, resumeSegmentID),
|
|
4794
|
+
newSegment.lastPushedText &&
|
|
4795
|
+
newSegment.textEmbedded &&
|
|
4796
|
+
newSegment.chunks.push(textSeparator),
|
|
4797
|
+
(newSegment.status = 1),
|
|
4798
|
+
finishedSegment(request, task.blockedBoundary, newSegment),
|
|
4793
4799
|
0 === --previousSuspenseListRow.pendingTasks &&
|
|
4794
4800
|
finishSuspenseListRow(request, previousSuspenseListRow);
|
|
4795
4801
|
} catch (thrownValue) {
|
|
4796
4802
|
throw (
|
|
4797
|
-
((
|
|
4798
|
-
thrownValue)
|
|
4803
|
+
((newSegment.status = 12 === request.status ? 3 : 4), thrownValue)
|
|
4799
4804
|
);
|
|
4800
4805
|
}
|
|
4801
4806
|
}
|
|
4802
|
-
task.blockedSegment =
|
|
4803
|
-
|
|
4807
|
+
task.blockedSegment = resumeSlots;
|
|
4808
|
+
resumeSlots.lastPushedText = !1;
|
|
4804
4809
|
}
|
|
4805
4810
|
null !== prevRow &&
|
|
4806
4811
|
null !== previousSuspenseListRow &&
|
|
@@ -4877,9 +4882,9 @@ function renderElement(request, task, keyPath, type, props, ref) {
|
|
|
4877
4882
|
var defaultProps = type.defaultProps;
|
|
4878
4883
|
if (defaultProps) {
|
|
4879
4884
|
newProps === props && (newProps = assign({}, newProps, props));
|
|
4880
|
-
for (var propName$
|
|
4881
|
-
void 0 === newProps[propName$
|
|
4882
|
-
(newProps[propName$
|
|
4885
|
+
for (var propName$45 in defaultProps)
|
|
4886
|
+
void 0 === newProps[propName$45] &&
|
|
4887
|
+
(newProps[propName$45] = defaultProps[propName$45]);
|
|
4883
4888
|
}
|
|
4884
4889
|
var JSCompiler_inline_result = newProps;
|
|
4885
4890
|
var context = emptyContextObject,
|
|
@@ -5012,7 +5017,7 @@ function renderElement(request, task, keyPath, type, props, ref) {
|
|
|
5012
5017
|
task.formatContext = prevContext;
|
|
5013
5018
|
task.keyPath = prevKeyPath$jscomp$0;
|
|
5014
5019
|
} else {
|
|
5015
|
-
var children$
|
|
5020
|
+
var children$42 = pushStartInstance(
|
|
5016
5021
|
segment.chunks,
|
|
5017
5022
|
type,
|
|
5018
5023
|
props,
|
|
@@ -5024,13 +5029,13 @@ function renderElement(request, task, keyPath, type, props, ref) {
|
|
|
5024
5029
|
segment.lastPushedText
|
|
5025
5030
|
);
|
|
5026
5031
|
segment.lastPushedText = !1;
|
|
5027
|
-
var prevContext$
|
|
5028
|
-
prevKeyPath$
|
|
5032
|
+
var prevContext$43 = task.formatContext,
|
|
5033
|
+
prevKeyPath$44 = task.keyPath;
|
|
5029
5034
|
task.keyPath = keyPath;
|
|
5030
5035
|
if (
|
|
5031
5036
|
3 ===
|
|
5032
5037
|
(task.formatContext = getChildFormatContext(
|
|
5033
|
-
prevContext$
|
|
5038
|
+
prevContext$43,
|
|
5034
5039
|
type,
|
|
5035
5040
|
props
|
|
5036
5041
|
)).insertionMode
|
|
@@ -5047,7 +5052,7 @@ function renderElement(request, task, keyPath, type, props, ref) {
|
|
|
5047
5052
|
task.blockedSegment = preambleSegment;
|
|
5048
5053
|
try {
|
|
5049
5054
|
(preambleSegment.status = 6),
|
|
5050
|
-
renderNode(request, task, children$
|
|
5055
|
+
renderNode(request, task, children$42, -1),
|
|
5051
5056
|
preambleSegment.lastPushedText &&
|
|
5052
5057
|
preambleSegment.textEmbedded &&
|
|
5053
5058
|
preambleSegment.chunks.push(textSeparator),
|
|
@@ -5056,9 +5061,9 @@ function renderElement(request, task, keyPath, type, props, ref) {
|
|
|
5056
5061
|
} finally {
|
|
5057
5062
|
task.blockedSegment = segment;
|
|
5058
5063
|
}
|
|
5059
|
-
} else renderNode(request, task, children$
|
|
5060
|
-
task.formatContext = prevContext$
|
|
5061
|
-
task.keyPath = prevKeyPath$
|
|
5064
|
+
} else renderNode(request, task, children$42, -1);
|
|
5065
|
+
task.formatContext = prevContext$43;
|
|
5066
|
+
task.keyPath = prevKeyPath$44;
|
|
5062
5067
|
a: {
|
|
5063
5068
|
var target = segment.chunks,
|
|
5064
5069
|
resumableState = request.resumableState;
|
|
@@ -5083,19 +5088,19 @@ function renderElement(request, task, keyPath, type, props, ref) {
|
|
|
5083
5088
|
case "wbr":
|
|
5084
5089
|
break a;
|
|
5085
5090
|
case "body":
|
|
5086
|
-
if (1 >= prevContext$
|
|
5091
|
+
if (1 >= prevContext$43.insertionMode) {
|
|
5087
5092
|
resumableState.hasBody = !0;
|
|
5088
5093
|
break a;
|
|
5089
5094
|
}
|
|
5090
5095
|
break;
|
|
5091
5096
|
case "html":
|
|
5092
|
-
if (0 === prevContext$
|
|
5097
|
+
if (0 === prevContext$43.insertionMode) {
|
|
5093
5098
|
resumableState.hasHtml = !0;
|
|
5094
5099
|
break a;
|
|
5095
5100
|
}
|
|
5096
5101
|
break;
|
|
5097
5102
|
case "head":
|
|
5098
|
-
if (1 >= prevContext$
|
|
5103
|
+
if (1 >= prevContext$43.insertionMode) break a;
|
|
5099
5104
|
}
|
|
5100
5105
|
target.push(endChunkForTag(type));
|
|
5101
5106
|
}
|
|
@@ -5124,10 +5129,10 @@ function renderElement(request, task, keyPath, type, props, ref) {
|
|
|
5124
5129
|
} else if ("hidden" !== props.mode) {
|
|
5125
5130
|
segment$jscomp$0.chunks.push(startActivityBoundary);
|
|
5126
5131
|
segment$jscomp$0.lastPushedText = !1;
|
|
5127
|
-
var prevKeyPath$
|
|
5132
|
+
var prevKeyPath$47 = task.keyPath;
|
|
5128
5133
|
task.keyPath = keyPath;
|
|
5129
5134
|
renderNode(request, task, props.children, -1);
|
|
5130
|
-
task.keyPath = prevKeyPath$
|
|
5135
|
+
task.keyPath = prevKeyPath$47;
|
|
5131
5136
|
segment$jscomp$0.chunks.push(endActivityBoundary);
|
|
5132
5137
|
segment$jscomp$0.lastPushedText = !1;
|
|
5133
5138
|
}
|
|
@@ -5136,11 +5141,7 @@ function renderElement(request, task, keyPath, type, props, ref) {
|
|
|
5136
5141
|
a: {
|
|
5137
5142
|
var children$jscomp$0 = props.children,
|
|
5138
5143
|
revealOrder = props.revealOrder;
|
|
5139
|
-
if (
|
|
5140
|
-
"forwards" === revealOrder ||
|
|
5141
|
-
"backwards" === revealOrder ||
|
|
5142
|
-
"unstable_legacy-backwards" === revealOrder
|
|
5143
|
-
) {
|
|
5144
|
+
if ("independent" !== revealOrder && "together" !== revealOrder) {
|
|
5144
5145
|
if (isArrayImpl(children$jscomp$0)) {
|
|
5145
5146
|
renderSuspenseListRows(
|
|
5146
5147
|
request,
|
|
@@ -5172,7 +5173,7 @@ function renderElement(request, task, keyPath, type, props, ref) {
|
|
|
5172
5173
|
}
|
|
5173
5174
|
}
|
|
5174
5175
|
if ("together" === revealOrder) {
|
|
5175
|
-
var prevKeyPath$
|
|
5176
|
+
var prevKeyPath$41 = task.keyPath,
|
|
5176
5177
|
prevRow = task.row,
|
|
5177
5178
|
newRow = (task.row = createSuspenseListRow(null));
|
|
5178
5179
|
newRow.boundaries = [];
|
|
@@ -5181,7 +5182,7 @@ function renderElement(request, task, keyPath, type, props, ref) {
|
|
|
5181
5182
|
renderNodeDestructive(request, task, children$jscomp$0, -1);
|
|
5182
5183
|
0 === --newRow.pendingTasks &&
|
|
5183
5184
|
finishSuspenseListRow(request, newRow);
|
|
5184
|
-
task.keyPath = prevKeyPath$
|
|
5185
|
+
task.keyPath = prevKeyPath$41;
|
|
5185
5186
|
task.row = prevRow;
|
|
5186
5187
|
null !== prevRow &&
|
|
5187
5188
|
0 < newRow.pendingTasks &&
|
|
@@ -6169,21 +6170,21 @@ function renderNode(request, task, node, childIndex) {
|
|
|
6169
6170
|
chunkLength = segment.chunks.length;
|
|
6170
6171
|
try {
|
|
6171
6172
|
return renderNodeDestructive(request, task, node, childIndex);
|
|
6172
|
-
} catch (thrownValue$
|
|
6173
|
+
} catch (thrownValue$64) {
|
|
6173
6174
|
if (
|
|
6174
6175
|
(resetHooksState(),
|
|
6175
6176
|
(segment.children.length = childrenLength),
|
|
6176
6177
|
(segment.chunks.length = chunkLength),
|
|
6177
6178
|
(node =
|
|
6178
|
-
thrownValue$
|
|
6179
|
+
thrownValue$64 === SuspenseException
|
|
6179
6180
|
? getSuspendedThenable()
|
|
6180
|
-
: thrownValue$
|
|
6181
|
+
: thrownValue$64),
|
|
6181
6182
|
12 !== request.status && "object" === typeof node && null !== node)
|
|
6182
6183
|
) {
|
|
6183
6184
|
if ("function" === typeof node.then) {
|
|
6184
6185
|
segment = node;
|
|
6185
6186
|
node =
|
|
6186
|
-
thrownValue$
|
|
6187
|
+
thrownValue$64 === SuspenseException
|
|
6187
6188
|
? getThenableStateAfterSuspending()
|
|
6188
6189
|
: null;
|
|
6189
6190
|
request = spawnNewSuspendedRenderTask(request, task, node).ping;
|
|
@@ -6198,7 +6199,7 @@ function renderNode(request, task, node, childIndex) {
|
|
|
6198
6199
|
}
|
|
6199
6200
|
if ("Maximum call stack size exceeded" === node.message) {
|
|
6200
6201
|
segment =
|
|
6201
|
-
thrownValue$
|
|
6202
|
+
thrownValue$64 === SuspenseException
|
|
6202
6203
|
? getThenableStateAfterSuspending()
|
|
6203
6204
|
: null;
|
|
6204
6205
|
segment = spawnNewSuspendedRenderTask(request, task, segment);
|
|
@@ -6316,12 +6317,12 @@ function abortTask(task, request, error) {
|
|
|
6316
6317
|
0 === request.pendingRootTasks && completeShell(request);
|
|
6317
6318
|
}
|
|
6318
6319
|
} else {
|
|
6319
|
-
var trackedPostpones$
|
|
6320
|
+
var trackedPostpones$65 = request.trackedPostpones;
|
|
6320
6321
|
if (4 !== boundary.status) {
|
|
6321
|
-
if (null !== trackedPostpones$
|
|
6322
|
+
if (null !== trackedPostpones$65 && null !== segment)
|
|
6322
6323
|
return (
|
|
6323
6324
|
logRecoverableError(request, error, errorInfo),
|
|
6324
|
-
trackPostpone(request, trackedPostpones$
|
|
6325
|
+
trackPostpone(request, trackedPostpones$65, task, segment),
|
|
6325
6326
|
boundary.fallbackAbortableTasks.forEach(function (fallbackTask) {
|
|
6326
6327
|
return abortTask(fallbackTask, request, error);
|
|
6327
6328
|
}),
|
|
@@ -7264,12 +7265,12 @@ function flushCompletedQueues(request, destination) {
|
|
|
7264
7265
|
flushingPartialBoundaries = !0;
|
|
7265
7266
|
var partialBoundaries = request.partialBoundaries;
|
|
7266
7267
|
for (i = 0; i < partialBoundaries.length; i++) {
|
|
7267
|
-
var boundary$
|
|
7268
|
+
var boundary$71 = partialBoundaries[i];
|
|
7268
7269
|
a: {
|
|
7269
7270
|
clientRenderedBoundaries = request;
|
|
7270
7271
|
boundary = destination;
|
|
7271
|
-
flushedByteSize = boundary$
|
|
7272
|
-
var completedSegments = boundary$
|
|
7272
|
+
flushedByteSize = boundary$71.byteSize;
|
|
7273
|
+
var completedSegments = boundary$71.completedSegments;
|
|
7273
7274
|
for (
|
|
7274
7275
|
JSCompiler_inline_result = 0;
|
|
7275
7276
|
JSCompiler_inline_result < completedSegments.length;
|
|
@@ -7279,7 +7280,7 @@ function flushCompletedQueues(request, destination) {
|
|
|
7279
7280
|
!flushPartiallyCompletedSegment(
|
|
7280
7281
|
clientRenderedBoundaries,
|
|
7281
7282
|
boundary,
|
|
7282
|
-
boundary$
|
|
7283
|
+
boundary$71,
|
|
7283
7284
|
completedSegments[JSCompiler_inline_result]
|
|
7284
7285
|
)
|
|
7285
7286
|
) {
|
|
@@ -7289,10 +7290,10 @@ function flushCompletedQueues(request, destination) {
|
|
|
7289
7290
|
break a;
|
|
7290
7291
|
}
|
|
7291
7292
|
completedSegments.splice(0, JSCompiler_inline_result);
|
|
7292
|
-
var row = boundary$
|
|
7293
|
+
var row = boundary$71.row;
|
|
7293
7294
|
null !== row &&
|
|
7294
7295
|
row.together &&
|
|
7295
|
-
1 === boundary$
|
|
7296
|
+
1 === boundary$71.pendingTasks &&
|
|
7296
7297
|
(1 === row.pendingTasks
|
|
7297
7298
|
? unblockSuspenseListRow(
|
|
7298
7299
|
clientRenderedBoundaries,
|
|
@@ -7302,7 +7303,7 @@ function flushCompletedQueues(request, destination) {
|
|
|
7302
7303
|
: row.pendingTasks--);
|
|
7303
7304
|
JSCompiler_inline_result$jscomp$0 = writeHoistablesForBoundary(
|
|
7304
7305
|
boundary,
|
|
7305
|
-
boundary$
|
|
7306
|
+
boundary$71.contentState,
|
|
7306
7307
|
clientRenderedBoundaries.renderState
|
|
7307
7308
|
);
|
|
7308
7309
|
}
|
|
@@ -7410,8 +7411,8 @@ function abort(request, reason) {
|
|
|
7410
7411
|
}
|
|
7411
7412
|
null !== request.destination &&
|
|
7412
7413
|
flushCompletedQueues(request, request.destination);
|
|
7413
|
-
} catch (error$
|
|
7414
|
-
logRecoverableError(request, error$
|
|
7414
|
+
} catch (error$73) {
|
|
7415
|
+
logRecoverableError(request, error$73, {}), fatalError(request, error$73);
|
|
7415
7416
|
}
|
|
7416
7417
|
}
|
|
7417
7418
|
function addToReplayParent(node, parentKeyPath, trackedPostpones) {
|
|
@@ -7474,11 +7475,11 @@ function getPostponedState(request) {
|
|
|
7474
7475
|
}
|
|
7475
7476
|
function ensureCorrectIsomorphicReactVersion() {
|
|
7476
7477
|
var isomorphicReactPackageVersion = React.version;
|
|
7477
|
-
if ("19.3.0-canary-
|
|
7478
|
+
if ("19.3.0-canary-561ee24d-20251101" !== isomorphicReactPackageVersion)
|
|
7478
7479
|
throw Error(
|
|
7479
7480
|
'Incompatible React versions: The "react" and "react-dom" packages must have the exact same version. Instead got:\n - react: ' +
|
|
7480
7481
|
(isomorphicReactPackageVersion +
|
|
7481
|
-
"\n - react-dom: 19.3.0-canary-
|
|
7482
|
+
"\n - react-dom: 19.3.0-canary-561ee24d-20251101\nLearn more: https://react.dev/warnings/version-mismatch")
|
|
7482
7483
|
);
|
|
7483
7484
|
}
|
|
7484
7485
|
ensureCorrectIsomorphicReactVersion();
|
|
@@ -7732,4 +7733,4 @@ exports.resumeAndPrerender = function (children, postponedState, options) {
|
|
|
7732
7733
|
startWork(request);
|
|
7733
7734
|
});
|
|
7734
7735
|
};
|
|
7735
|
-
exports.version = "19.3.0-canary-
|
|
7736
|
+
exports.version = "19.3.0-canary-561ee24d-20251101";
|
|
@@ -5041,8 +5041,6 @@
|
|
|
5041
5041
|
if (null != debugInfo)
|
|
5042
5042
|
for (var i = debugInfo.length - 1; 0 <= i; i--) {
|
|
5043
5043
|
var info = debugInfo[i];
|
|
5044
|
-
if ("string" === typeof info.name) break;
|
|
5045
|
-
if ("number" === typeof info.time) break;
|
|
5046
5044
|
if (null != info.awaited) {
|
|
5047
5045
|
var bestStack = null == info.debugStack ? info.awaited : info;
|
|
5048
5046
|
if (void 0 !== bestStack.debugStack) {
|
|
@@ -5318,45 +5316,52 @@
|
|
|
5318
5316
|
0 === --previousSuspenseListRow.pendingTasks &&
|
|
5319
5317
|
finishSuspenseListRow(request, previousSuspenseListRow);
|
|
5320
5318
|
else {
|
|
5321
|
-
|
|
5322
|
-
|
|
5323
|
-
|
|
5324
|
-
for (
|
|
5325
|
-
|
|
5319
|
+
resumeSlots = task.blockedSegment;
|
|
5320
|
+
n = resumeSlots.children.length;
|
|
5321
|
+
i = resumeSlots.chunks.length;
|
|
5322
|
+
for (node = 0; node < keyPath; node++) {
|
|
5323
|
+
resumeSegmentID =
|
|
5324
|
+
"unstable_legacy-backwards" === revealOrder
|
|
5325
|
+
? keyPath - 1 - node
|
|
5326
|
+
: node;
|
|
5327
|
+
var _node3 = rows[resumeSegmentID];
|
|
5326
5328
|
task.row = previousSuspenseListRow = createSuspenseListRow(
|
|
5327
5329
|
previousSuspenseListRow
|
|
5328
5330
|
);
|
|
5329
|
-
task.treeContext = pushTreeContext(
|
|
5330
|
-
|
|
5331
|
+
task.treeContext = pushTreeContext(
|
|
5332
|
+
prevTreeContext,
|
|
5333
|
+
keyPath,
|
|
5334
|
+
resumeSegmentID
|
|
5335
|
+
);
|
|
5336
|
+
var newSegment = createPendingSegment(
|
|
5331
5337
|
request,
|
|
5332
|
-
|
|
5338
|
+
i,
|
|
5333
5339
|
null,
|
|
5334
5340
|
task.formatContext,
|
|
5335
|
-
0 ===
|
|
5341
|
+
0 === resumeSegmentID ? resumeSlots.lastPushedText : !0,
|
|
5336
5342
|
!0
|
|
5337
5343
|
);
|
|
5338
|
-
|
|
5339
|
-
task.blockedSegment =
|
|
5340
|
-
warnForMissingKey(request, task,
|
|
5344
|
+
resumeSlots.children.splice(n, 0, newSegment);
|
|
5345
|
+
task.blockedSegment = newSegment;
|
|
5346
|
+
warnForMissingKey(request, task, _node3);
|
|
5341
5347
|
try {
|
|
5342
|
-
renderNode(request, task,
|
|
5343
|
-
|
|
5344
|
-
|
|
5345
|
-
|
|
5346
|
-
(
|
|
5347
|
-
finishedSegment(request, task.blockedBoundary,
|
|
5348
|
+
renderNode(request, task, _node3, resumeSegmentID),
|
|
5349
|
+
newSegment.lastPushedText &&
|
|
5350
|
+
newSegment.textEmbedded &&
|
|
5351
|
+
newSegment.chunks.push(textSeparator),
|
|
5352
|
+
(newSegment.status = COMPLETED),
|
|
5353
|
+
finishedSegment(request, task.blockedBoundary, newSegment),
|
|
5348
5354
|
0 === --previousSuspenseListRow.pendingTasks &&
|
|
5349
5355
|
finishSuspenseListRow(request, previousSuspenseListRow);
|
|
5350
5356
|
} catch (thrownValue) {
|
|
5351
5357
|
throw (
|
|
5352
|
-
((
|
|
5353
|
-
12 === request.status ? ABORTED : ERRORED),
|
|
5358
|
+
((newSegment.status = 12 === request.status ? ABORTED : ERRORED),
|
|
5354
5359
|
thrownValue)
|
|
5355
5360
|
);
|
|
5356
5361
|
}
|
|
5357
5362
|
}
|
|
5358
|
-
task.blockedSegment =
|
|
5359
|
-
|
|
5363
|
+
task.blockedSegment = resumeSlots;
|
|
5364
|
+
resumeSlots.lastPushedText = !1;
|
|
5360
5365
|
}
|
|
5361
5366
|
null !== prevRow &&
|
|
5362
5367
|
null !== previousSuspenseListRow &&
|
|
@@ -6023,11 +6028,7 @@
|
|
|
6023
6028
|
a: {
|
|
6024
6029
|
var children$jscomp$0 = props.children,
|
|
6025
6030
|
revealOrder = props.revealOrder;
|
|
6026
|
-
if (
|
|
6027
|
-
"forwards" === revealOrder ||
|
|
6028
|
-
"backwards" === revealOrder ||
|
|
6029
|
-
"unstable_legacy-backwards" === revealOrder
|
|
6030
|
-
) {
|
|
6031
|
+
if ("independent" !== revealOrder && "together" !== revealOrder) {
|
|
6031
6032
|
if (isArrayImpl(children$jscomp$0)) {
|
|
6032
6033
|
renderSuspenseListRows(
|
|
6033
6034
|
request,
|
|
@@ -7455,9 +7456,28 @@
|
|
|
7455
7456
|
}
|
|
7456
7457
|
var errorInfo = getThrownInfo(task.componentStack),
|
|
7457
7458
|
node = task.node;
|
|
7458
|
-
null !== node &&
|
|
7459
|
+
if (null !== node && "object" === typeof node) {
|
|
7460
|
+
for (
|
|
7461
|
+
var debugInfo = node._debugInfo;
|
|
7462
|
+
"object" === typeof node &&
|
|
7463
|
+
null !== node &&
|
|
7464
|
+
node.$$typeof === REACT_LAZY_TYPE;
|
|
7465
|
+
|
|
7466
|
+
) {
|
|
7467
|
+
var payload = node._payload;
|
|
7468
|
+
if ("fulfilled" === payload.status) node = payload.value;
|
|
7469
|
+
else break;
|
|
7470
|
+
}
|
|
7459
7471
|
"object" === typeof node &&
|
|
7460
|
-
|
|
7472
|
+
null !== node &&
|
|
7473
|
+
(isArrayImpl(node) ||
|
|
7474
|
+
"function" === typeof node[ASYNC_ITERATOR] ||
|
|
7475
|
+
node.$$typeof === REACT_ELEMENT_TYPE ||
|
|
7476
|
+
node.$$typeof === REACT_LAZY_TYPE) &&
|
|
7477
|
+
isArrayImpl(node._debugInfo) &&
|
|
7478
|
+
(debugInfo = node._debugInfo);
|
|
7479
|
+
pushHaltedAwaitOnComponentStack(task, debugInfo);
|
|
7480
|
+
}
|
|
7461
7481
|
if (null === boundary) {
|
|
7462
7482
|
if (13 !== request.status && request.status !== CLOSED) {
|
|
7463
7483
|
boundary = task.replay;
|
|
@@ -8864,11 +8884,11 @@
|
|
|
8864
8884
|
}
|
|
8865
8885
|
function ensureCorrectIsomorphicReactVersion() {
|
|
8866
8886
|
var isomorphicReactPackageVersion = React.version;
|
|
8867
|
-
if ("19.3.0-canary-
|
|
8887
|
+
if ("19.3.0-canary-561ee24d-20251101" !== isomorphicReactPackageVersion)
|
|
8868
8888
|
throw Error(
|
|
8869
8889
|
'Incompatible React versions: The "react" and "react-dom" packages must have the exact same version. Instead got:\n - react: ' +
|
|
8870
8890
|
(isomorphicReactPackageVersion +
|
|
8871
|
-
"\n - react-dom: 19.3.0-canary-
|
|
8891
|
+
"\n - react-dom: 19.3.0-canary-561ee24d-20251101\nLearn more: https://react.dev/warnings/version-mismatch")
|
|
8872
8892
|
);
|
|
8873
8893
|
}
|
|
8874
8894
|
function createDrainHandler(destination, request) {
|
|
@@ -9003,6 +9023,7 @@
|
|
|
9003
9023
|
REACT_MEMO_CACHE_SENTINEL = Symbol.for("react.memo_cache_sentinel"),
|
|
9004
9024
|
REACT_VIEW_TRANSITION_TYPE = Symbol.for("react.view_transition"),
|
|
9005
9025
|
MAYBE_ITERATOR_SYMBOL = Symbol.iterator,
|
|
9026
|
+
ASYNC_ITERATOR = Symbol.asyncIterator,
|
|
9006
9027
|
isArrayImpl = Array.isArray,
|
|
9007
9028
|
jsxPropsParents = new WeakMap(),
|
|
9008
9029
|
jsxChildrenParents = new WeakMap(),
|
|
@@ -10979,5 +11000,5 @@
|
|
|
10979
11000
|
}
|
|
10980
11001
|
};
|
|
10981
11002
|
};
|
|
10982
|
-
exports.version = "19.3.0-canary-
|
|
11003
|
+
exports.version = "19.3.0-canary-561ee24d-20251101";
|
|
10983
11004
|
})();
|