react-dom 19.3.0-canary-67f7d47a-20251103 → 19.3.0-canary-dd048c3b-20251105
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 +194 -140
- package/cjs/react-dom-client.production.js +250 -205
- package/cjs/react-dom-profiling.development.js +194 -140
- package/cjs/react-dom-profiling.profiling.js +274 -229
- package/cjs/react-dom-server-legacy.browser.development.js +147 -149
- package/cjs/react-dom-server-legacy.browser.production.js +70 -92
- package/cjs/react-dom-server-legacy.node.development.js +147 -149
- package/cjs/react-dom-server-legacy.node.production.js +70 -92
- package/cjs/react-dom-server.browser.development.js +159 -171
- package/cjs/react-dom-server.browser.production.js +80 -112
- package/cjs/react-dom-server.bun.development.js +150 -176
- package/cjs/react-dom-server.bun.production.js +83 -119
- package/cjs/react-dom-server.edge.development.js +159 -171
- package/cjs/react-dom-server.edge.production.js +80 -112
- package/cjs/react-dom-server.node.development.js +162 -178
- package/cjs/react-dom-server.node.production.js +83 -119
- 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
|
@@ -3795,7 +3795,6 @@ function RequestInstance(
|
|
|
3795
3795
|
onShellReady,
|
|
3796
3796
|
onShellError,
|
|
3797
3797
|
onFatalError,
|
|
3798
|
-
onPostpone,
|
|
3799
3798
|
formState
|
|
3800
3799
|
) {
|
|
3801
3800
|
var abortSet = new Set();
|
|
@@ -3818,7 +3817,6 @@ function RequestInstance(
|
|
|
3818
3817
|
this.partialBoundaries = [];
|
|
3819
3818
|
this.trackedPostpones = null;
|
|
3820
3819
|
this.onError = void 0 === onError ? defaultErrorHandler : onError;
|
|
3821
|
-
this.onPostpone = void 0 === onPostpone ? noop : onPostpone;
|
|
3822
3820
|
this.onAllReady = void 0 === onAllReady ? noop : onAllReady;
|
|
3823
3821
|
this.onShellReady = void 0 === onShellReady ? noop : onShellReady;
|
|
3824
3822
|
this.onShellError = void 0 === onShellError ? noop : onShellError;
|
|
@@ -3836,7 +3834,6 @@ function createRequest(
|
|
|
3836
3834
|
onShellReady,
|
|
3837
3835
|
onShellError,
|
|
3838
3836
|
onFatalError,
|
|
3839
|
-
onPostpone,
|
|
3840
3837
|
formState
|
|
3841
3838
|
) {
|
|
3842
3839
|
resumableState = new RequestInstance(
|
|
@@ -3849,7 +3846,6 @@ function createRequest(
|
|
|
3849
3846
|
onShellReady,
|
|
3850
3847
|
onShellError,
|
|
3851
3848
|
onFatalError,
|
|
3852
|
-
onPostpone,
|
|
3853
3849
|
formState
|
|
3854
3850
|
);
|
|
3855
3851
|
renderState = createPendingSegment(
|
|
@@ -3892,8 +3888,7 @@ function createPrerenderRequest(
|
|
|
3892
3888
|
onAllReady,
|
|
3893
3889
|
onShellReady,
|
|
3894
3890
|
onShellError,
|
|
3895
|
-
onFatalError
|
|
3896
|
-
onPostpone
|
|
3891
|
+
onFatalError
|
|
3897
3892
|
) {
|
|
3898
3893
|
children = createRequest(
|
|
3899
3894
|
children,
|
|
@@ -3906,7 +3901,6 @@ function createPrerenderRequest(
|
|
|
3906
3901
|
onShellReady,
|
|
3907
3902
|
onShellError,
|
|
3908
3903
|
onFatalError,
|
|
3909
|
-
onPostpone,
|
|
3910
3904
|
void 0
|
|
3911
3905
|
);
|
|
3912
3906
|
children.trackedPostpones = {
|
|
@@ -3924,8 +3918,7 @@ function resumeRequest(
|
|
|
3924
3918
|
onAllReady,
|
|
3925
3919
|
onShellReady,
|
|
3926
3920
|
onShellError,
|
|
3927
|
-
onFatalError
|
|
3928
|
-
onPostpone
|
|
3921
|
+
onFatalError
|
|
3929
3922
|
) {
|
|
3930
3923
|
renderState = new RequestInstance(
|
|
3931
3924
|
postponedState.resumableState,
|
|
@@ -3937,7 +3930,6 @@ function resumeRequest(
|
|
|
3937
3930
|
onShellReady,
|
|
3938
3931
|
onShellError,
|
|
3939
3932
|
onFatalError,
|
|
3940
|
-
onPostpone,
|
|
3941
3933
|
null
|
|
3942
3934
|
);
|
|
3943
3935
|
renderState.nextSegmentId = postponedState.nextSegmentId;
|
|
@@ -4005,8 +3997,7 @@ function resumeAndPrerenderRequest(
|
|
|
4005
3997
|
onAllReady,
|
|
4006
3998
|
onShellReady,
|
|
4007
3999
|
onShellError,
|
|
4008
|
-
onFatalError
|
|
4009
|
-
onPostpone
|
|
4000
|
+
onFatalError
|
|
4010
4001
|
) {
|
|
4011
4002
|
children = resumeRequest(
|
|
4012
4003
|
children,
|
|
@@ -4016,8 +4007,7 @@ function resumeAndPrerenderRequest(
|
|
|
4016
4007
|
onAllReady,
|
|
4017
4008
|
onShellReady,
|
|
4018
4009
|
onShellError,
|
|
4019
|
-
onFatalError
|
|
4020
|
-
onPostpone
|
|
4010
|
+
onFatalError
|
|
4021
4011
|
);
|
|
4022
4012
|
children.trackedPostpones = {
|
|
4023
4013
|
workingMap: new Map(),
|
|
@@ -5056,8 +5046,8 @@ function renderElement(request, task, keyPath, type, props, ref) {
|
|
|
5056
5046
|
contentRootSegment.status = 3;
|
|
5057
5047
|
var error = request.fatalError;
|
|
5058
5048
|
} else (contentRootSegment.status = 4), (error = thrownValue$31);
|
|
5059
|
-
var thrownInfo = getThrownInfo(task.componentStack)
|
|
5060
|
-
|
|
5049
|
+
var thrownInfo = getThrownInfo(task.componentStack),
|
|
5050
|
+
errorDigest = logRecoverableError(request, error, thrownInfo);
|
|
5061
5051
|
newBoundary.errorDigest = errorDigest;
|
|
5062
5052
|
untrackBoundary(request, newBoundary);
|
|
5063
5053
|
} finally {
|
|
@@ -5246,12 +5236,12 @@ function retryNode(request, task) {
|
|
|
5246
5236
|
name +
|
|
5247
5237
|
">. The tree doesn't match so React will fallback to client rendering."
|
|
5248
5238
|
);
|
|
5249
|
-
var childNodes = node$jscomp$0[2]
|
|
5250
|
-
|
|
5251
|
-
|
|
5239
|
+
var childNodes = node$jscomp$0[2],
|
|
5240
|
+
childSlots = node$jscomp$0[3];
|
|
5241
|
+
name = task.node;
|
|
5252
5242
|
task.replay = {
|
|
5253
5243
|
nodes: childNodes,
|
|
5254
|
-
slots:
|
|
5244
|
+
slots: childSlots,
|
|
5255
5245
|
pendingTasks: 1
|
|
5256
5246
|
};
|
|
5257
5247
|
try {
|
|
@@ -5272,7 +5262,7 @@ function retryNode(request, task) {
|
|
|
5272
5262
|
"function" === typeof x.then)
|
|
5273
5263
|
)
|
|
5274
5264
|
throw (
|
|
5275
|
-
(task.node ===
|
|
5265
|
+
(task.node === name
|
|
5276
5266
|
? (task.replay = replay)
|
|
5277
5267
|
: childIndex.splice(node, 1),
|
|
5278
5268
|
x)
|
|
@@ -5287,7 +5277,7 @@ function retryNode(request, task) {
|
|
|
5287
5277
|
key,
|
|
5288
5278
|
request,
|
|
5289
5279
|
childNodes,
|
|
5290
|
-
|
|
5280
|
+
childSlots,
|
|
5291
5281
|
type,
|
|
5292
5282
|
props
|
|
5293
5283
|
);
|
|
@@ -5301,16 +5291,15 @@ function retryNode(request, task) {
|
|
|
5301
5291
|
">. The tree doesn't match so React will fallback to client rendering."
|
|
5302
5292
|
);
|
|
5303
5293
|
b: {
|
|
5304
|
-
replay =
|
|
5305
|
-
type = node$jscomp$0[
|
|
5306
|
-
ref = node$jscomp$0[
|
|
5307
|
-
name =
|
|
5308
|
-
keyOrIndex =
|
|
5294
|
+
replay = node$jscomp$0[5];
|
|
5295
|
+
type = node$jscomp$0[2];
|
|
5296
|
+
ref = node$jscomp$0[3];
|
|
5297
|
+
name =
|
|
5309
5298
|
null === node$jscomp$0[4] ? [] : node$jscomp$0[4][2];
|
|
5310
5299
|
node$jscomp$0 =
|
|
5311
5300
|
null === node$jscomp$0[4] ? null : node$jscomp$0[4][3];
|
|
5312
|
-
|
|
5313
|
-
|
|
5301
|
+
keyOrIndex = task.keyPath;
|
|
5302
|
+
var prevContext = task.formatContext,
|
|
5314
5303
|
prevRow = task.row,
|
|
5315
5304
|
previousReplaySet = task.replay,
|
|
5316
5305
|
parentBoundary = task.blockedBoundary,
|
|
@@ -5335,7 +5324,7 @@ function retryNode(request, task) {
|
|
|
5335
5324
|
null
|
|
5336
5325
|
);
|
|
5337
5326
|
props.parentFlushed = !0;
|
|
5338
|
-
props.rootSegmentID =
|
|
5327
|
+
props.rootSegmentID = replay;
|
|
5339
5328
|
task.blockedBoundary = props;
|
|
5340
5329
|
task.hoistableState = props.contentState;
|
|
5341
5330
|
task.keyPath = key;
|
|
@@ -5345,8 +5334,8 @@ function retryNode(request, task) {
|
|
|
5345
5334
|
);
|
|
5346
5335
|
task.row = null;
|
|
5347
5336
|
task.replay = {
|
|
5348
|
-
nodes:
|
|
5349
|
-
slots:
|
|
5337
|
+
nodes: type,
|
|
5338
|
+
slots: ref,
|
|
5350
5339
|
pendingTasks: 1
|
|
5351
5340
|
};
|
|
5352
5341
|
try {
|
|
@@ -5367,30 +5356,26 @@ function retryNode(request, task) {
|
|
|
5367
5356
|
} catch (error) {
|
|
5368
5357
|
(props.status = 4),
|
|
5369
5358
|
(childNodes = getThrownInfo(task.componentStack)),
|
|
5370
|
-
(
|
|
5359
|
+
(childSlots = logRecoverableError(
|
|
5371
5360
|
request,
|
|
5372
5361
|
error,
|
|
5373
5362
|
childNodes
|
|
5374
5363
|
)),
|
|
5375
|
-
(props.errorDigest =
|
|
5364
|
+
(props.errorDigest = childSlots),
|
|
5376
5365
|
task.replay.pendingTasks--,
|
|
5377
5366
|
request.clientRenderedBoundaries.push(props);
|
|
5378
5367
|
} finally {
|
|
5379
5368
|
(task.blockedBoundary = parentBoundary),
|
|
5380
5369
|
(task.hoistableState = parentHoistableState),
|
|
5381
5370
|
(task.replay = previousReplaySet),
|
|
5382
|
-
(task.keyPath =
|
|
5371
|
+
(task.keyPath = keyOrIndex),
|
|
5383
5372
|
(task.formatContext = prevContext),
|
|
5384
5373
|
(task.row = prevRow);
|
|
5385
5374
|
}
|
|
5386
5375
|
childNodes = createReplayTask(
|
|
5387
5376
|
request,
|
|
5388
5377
|
null,
|
|
5389
|
-
{
|
|
5390
|
-
nodes: keyOrIndex,
|
|
5391
|
-
slots: node$jscomp$0,
|
|
5392
|
-
pendingTasks: 0
|
|
5393
|
-
},
|
|
5378
|
+
{ nodes: name, slots: node$jscomp$0, pendingTasks: 0 },
|
|
5394
5379
|
fallback,
|
|
5395
5380
|
-1,
|
|
5396
5381
|
parentBoundary,
|
|
@@ -5438,10 +5423,10 @@ function retryNode(request, task) {
|
|
|
5438
5423
|
if ((childNodes = childNodes.call(node))) {
|
|
5439
5424
|
node = childNodes.next();
|
|
5440
5425
|
if (!node.done) {
|
|
5441
|
-
|
|
5442
|
-
do
|
|
5426
|
+
childSlots = [];
|
|
5427
|
+
do childSlots.push(node.value), (node = childNodes.next());
|
|
5443
5428
|
while (!node.done);
|
|
5444
|
-
renderChildrenArray(request, task,
|
|
5429
|
+
renderChildrenArray(request, task, childSlots, childIndex);
|
|
5445
5430
|
}
|
|
5446
5431
|
return;
|
|
5447
5432
|
}
|
|
@@ -6148,38 +6133,37 @@ function finishedTask(request, boundary, row, segment) {
|
|
|
6148
6133
|
tryToResolveTogetherRow(request, boundary);
|
|
6149
6134
|
0 === request.allPendingTasks && completeAll(request);
|
|
6150
6135
|
}
|
|
6151
|
-
function performWork(request$jscomp$
|
|
6152
|
-
if (14 !== request$jscomp$
|
|
6136
|
+
function performWork(request$jscomp$1) {
|
|
6137
|
+
if (14 !== request$jscomp$1.status && 13 !== request$jscomp$1.status) {
|
|
6153
6138
|
var prevContext = currentActiveSnapshot,
|
|
6154
6139
|
prevDispatcher = ReactSharedInternals.H;
|
|
6155
6140
|
ReactSharedInternals.H = HooksDispatcher;
|
|
6156
6141
|
var prevAsyncDispatcher = ReactSharedInternals.A;
|
|
6157
6142
|
ReactSharedInternals.A = DefaultAsyncDispatcher;
|
|
6158
6143
|
var prevRequest = currentRequest;
|
|
6159
|
-
currentRequest = request$jscomp$
|
|
6144
|
+
currentRequest = request$jscomp$1;
|
|
6160
6145
|
var prevResumableState = currentResumableState;
|
|
6161
|
-
currentResumableState = request$jscomp$
|
|
6146
|
+
currentResumableState = request$jscomp$1.resumableState;
|
|
6162
6147
|
try {
|
|
6163
|
-
var pingedTasks = request$jscomp$
|
|
6148
|
+
var pingedTasks = request$jscomp$1.pingedTasks,
|
|
6164
6149
|
i;
|
|
6165
6150
|
for (i = 0; i < pingedTasks.length; i++) {
|
|
6166
6151
|
var task = pingedTasks[i],
|
|
6167
|
-
request = request$jscomp$
|
|
6152
|
+
request = request$jscomp$1,
|
|
6168
6153
|
segment = task.blockedSegment;
|
|
6169
6154
|
if (null === segment) {
|
|
6170
|
-
var request$jscomp$0 = request;
|
|
6171
6155
|
if (0 !== task.replay.pendingTasks) {
|
|
6172
6156
|
switchContext(task.context);
|
|
6173
6157
|
try {
|
|
6174
6158
|
"number" === typeof task.replay.slots
|
|
6175
6159
|
? resumeNode(
|
|
6176
|
-
request
|
|
6160
|
+
request,
|
|
6177
6161
|
task,
|
|
6178
6162
|
task.replay.slots,
|
|
6179
6163
|
task.node,
|
|
6180
6164
|
task.childIndex
|
|
6181
6165
|
)
|
|
6182
|
-
: retryNode(request
|
|
6166
|
+
: retryNode(request, task);
|
|
6183
6167
|
if (
|
|
6184
6168
|
1 === task.replay.pendingTasks &&
|
|
6185
6169
|
0 < task.replay.nodes.length
|
|
@@ -6189,12 +6173,7 @@ function performWork(request$jscomp$2) {
|
|
|
6189
6173
|
);
|
|
6190
6174
|
task.replay.pendingTasks--;
|
|
6191
6175
|
task.abortSet.delete(task);
|
|
6192
|
-
finishedTask(
|
|
6193
|
-
request$jscomp$0,
|
|
6194
|
-
task.blockedBoundary,
|
|
6195
|
-
task.row,
|
|
6196
|
-
null
|
|
6197
|
-
);
|
|
6176
|
+
finishedTask(request, task.blockedBoundary, task.row, null);
|
|
6198
6177
|
} catch (thrownValue) {
|
|
6199
6178
|
resetHooksState();
|
|
6200
6179
|
var x =
|
|
@@ -6215,69 +6194,62 @@ function performWork(request$jscomp$2) {
|
|
|
6215
6194
|
} else {
|
|
6216
6195
|
task.replay.pendingTasks--;
|
|
6217
6196
|
task.abortSet.delete(task);
|
|
6218
|
-
var errorInfo = getThrownInfo(task.componentStack)
|
|
6219
|
-
|
|
6220
|
-
var request$jscomp$1 = request$jscomp$0,
|
|
6197
|
+
var errorInfo = getThrownInfo(task.componentStack),
|
|
6198
|
+
request$jscomp$0 = request,
|
|
6221
6199
|
boundary = task.blockedBoundary,
|
|
6222
6200
|
error$jscomp$0 =
|
|
6223
|
-
12 === request
|
|
6224
|
-
? request$jscomp$0.fatalError
|
|
6225
|
-
: x,
|
|
6201
|
+
12 === request.status ? request.fatalError : x,
|
|
6226
6202
|
replayNodes = task.replay.nodes,
|
|
6227
|
-
resumeSlots = task.replay.slots
|
|
6228
|
-
|
|
6229
|
-
|
|
6230
|
-
|
|
6231
|
-
|
|
6232
|
-
|
|
6203
|
+
resumeSlots = task.replay.slots,
|
|
6204
|
+
errorDigest = logRecoverableError(
|
|
6205
|
+
request$jscomp$0,
|
|
6206
|
+
error$jscomp$0,
|
|
6207
|
+
errorInfo
|
|
6208
|
+
);
|
|
6233
6209
|
abortRemainingReplayNodes(
|
|
6234
|
-
request$jscomp$
|
|
6210
|
+
request$jscomp$0,
|
|
6235
6211
|
boundary,
|
|
6236
6212
|
replayNodes,
|
|
6237
6213
|
resumeSlots,
|
|
6238
6214
|
error$jscomp$0,
|
|
6239
|
-
|
|
6215
|
+
errorDigest
|
|
6240
6216
|
);
|
|
6241
|
-
request
|
|
6242
|
-
0 === request
|
|
6243
|
-
|
|
6244
|
-
request
|
|
6245
|
-
0 === request$jscomp$0.allPendingTasks &&
|
|
6246
|
-
completeAll(request$jscomp$0);
|
|
6217
|
+
request.pendingRootTasks--;
|
|
6218
|
+
0 === request.pendingRootTasks && completeShell(request);
|
|
6219
|
+
request.allPendingTasks--;
|
|
6220
|
+
0 === request.allPendingTasks && completeAll(request);
|
|
6247
6221
|
}
|
|
6248
6222
|
} finally {
|
|
6249
6223
|
}
|
|
6250
6224
|
}
|
|
6251
6225
|
} else if (
|
|
6252
|
-
((request$jscomp$0 =
|
|
6253
|
-
(request$jscomp$1 = segment),
|
|
6254
|
-
0 === request$jscomp$1.status)
|
|
6226
|
+
((request$jscomp$0 = segment), 0 === request$jscomp$0.status)
|
|
6255
6227
|
) {
|
|
6256
|
-
request$jscomp$
|
|
6228
|
+
request$jscomp$0.status = 6;
|
|
6257
6229
|
switchContext(task.context);
|
|
6258
|
-
var childrenLength = request$jscomp$
|
|
6259
|
-
chunkLength = request$jscomp$
|
|
6230
|
+
var childrenLength = request$jscomp$0.children.length,
|
|
6231
|
+
chunkLength = request$jscomp$0.chunks.length;
|
|
6260
6232
|
try {
|
|
6261
6233
|
retryNode(request, task),
|
|
6262
6234
|
pushSegmentFinale(
|
|
6263
|
-
request$jscomp$
|
|
6235
|
+
request$jscomp$0.chunks,
|
|
6264
6236
|
request.renderState,
|
|
6265
|
-
request$jscomp$
|
|
6266
|
-
request$jscomp$
|
|
6237
|
+
request$jscomp$0.lastPushedText,
|
|
6238
|
+
request$jscomp$0.textEmbedded
|
|
6267
6239
|
),
|
|
6268
6240
|
task.abortSet.delete(task),
|
|
6269
|
-
(request$jscomp$
|
|
6270
|
-
finishedSegment(request, task.blockedBoundary, request$jscomp$
|
|
6241
|
+
(request$jscomp$0.status = 1),
|
|
6242
|
+
finishedSegment(request, task.blockedBoundary, request$jscomp$0),
|
|
6271
6243
|
finishedTask(
|
|
6272
6244
|
request,
|
|
6273
6245
|
task.blockedBoundary,
|
|
6274
6246
|
task.row,
|
|
6275
|
-
request$jscomp$
|
|
6247
|
+
request$jscomp$0
|
|
6276
6248
|
);
|
|
6277
6249
|
} catch (thrownValue) {
|
|
6278
6250
|
resetHooksState();
|
|
6279
|
-
request$jscomp$
|
|
6280
|
-
request$jscomp$
|
|
6251
|
+
request$jscomp$0.children.length = childrenLength;
|
|
6252
|
+
request$jscomp$0.chunks.length = chunkLength;
|
|
6281
6253
|
var x$jscomp$0 =
|
|
6282
6254
|
thrownValue === SuspenseException
|
|
6283
6255
|
? getSuspendedThenable()
|
|
@@ -6289,19 +6261,19 @@ function performWork(request$jscomp$2) {
|
|
|
6289
6261
|
thrownInfo = getThrownInfo(task.componentStack);
|
|
6290
6262
|
task.abortSet.delete(task);
|
|
6291
6263
|
logRecoverableError(request, x$jscomp$0, thrownInfo);
|
|
6292
|
-
trackPostpone(request, trackedPostpones, task, request$jscomp$
|
|
6264
|
+
trackPostpone(request, trackedPostpones, task, request$jscomp$0);
|
|
6293
6265
|
finishedTask(
|
|
6294
6266
|
request,
|
|
6295
6267
|
task.blockedBoundary,
|
|
6296
6268
|
task.row,
|
|
6297
|
-
request$jscomp$
|
|
6269
|
+
request$jscomp$0
|
|
6298
6270
|
);
|
|
6299
6271
|
} else if (
|
|
6300
6272
|
"object" === typeof x$jscomp$0 &&
|
|
6301
6273
|
null !== x$jscomp$0 &&
|
|
6302
6274
|
"function" === typeof x$jscomp$0.then
|
|
6303
6275
|
) {
|
|
6304
|
-
request$jscomp$
|
|
6276
|
+
request$jscomp$0.status = 0;
|
|
6305
6277
|
task.thenableState =
|
|
6306
6278
|
thrownValue === SuspenseException
|
|
6307
6279
|
? getThenableStateAfterSuspending()
|
|
@@ -6311,14 +6283,14 @@ function performWork(request$jscomp$2) {
|
|
|
6311
6283
|
} else {
|
|
6312
6284
|
var errorInfo$jscomp$0 = getThrownInfo(task.componentStack);
|
|
6313
6285
|
task.abortSet.delete(task);
|
|
6314
|
-
request$jscomp$
|
|
6286
|
+
request$jscomp$0.status = 4;
|
|
6315
6287
|
var boundary$jscomp$0 = task.blockedBoundary,
|
|
6316
6288
|
row = task.row;
|
|
6317
6289
|
null !== row &&
|
|
6318
6290
|
0 === --row.pendingTasks &&
|
|
6319
6291
|
finishSuspenseListRow(request, row);
|
|
6320
6292
|
request.allPendingTasks--;
|
|
6321
|
-
|
|
6293
|
+
var errorDigest$jscomp$0 = logRecoverableError(
|
|
6322
6294
|
request,
|
|
6323
6295
|
x$jscomp$0,
|
|
6324
6296
|
errorInfo$jscomp$0
|
|
@@ -6329,7 +6301,7 @@ function performWork(request$jscomp$2) {
|
|
|
6329
6301
|
4 !== boundary$jscomp$0.status)
|
|
6330
6302
|
) {
|
|
6331
6303
|
boundary$jscomp$0.status = 4;
|
|
6332
|
-
boundary$jscomp$0.errorDigest =
|
|
6304
|
+
boundary$jscomp$0.errorDigest = errorDigest$jscomp$0;
|
|
6333
6305
|
untrackBoundary(request, boundary$jscomp$0);
|
|
6334
6306
|
var boundaryRow = boundary$jscomp$0.row;
|
|
6335
6307
|
null !== boundaryRow &&
|
|
@@ -6349,11 +6321,11 @@ function performWork(request$jscomp$2) {
|
|
|
6349
6321
|
}
|
|
6350
6322
|
}
|
|
6351
6323
|
pingedTasks.splice(0, i);
|
|
6352
|
-
null !== request$jscomp$
|
|
6353
|
-
flushCompletedQueues(request$jscomp$
|
|
6324
|
+
null !== request$jscomp$1.destination &&
|
|
6325
|
+
flushCompletedQueues(request$jscomp$1, request$jscomp$1.destination);
|
|
6354
6326
|
} catch (error) {
|
|
6355
|
-
logRecoverableError(request$jscomp$
|
|
6356
|
-
fatalError(request$jscomp$
|
|
6327
|
+
logRecoverableError(request$jscomp$1, error, {}),
|
|
6328
|
+
fatalError(request$jscomp$1, error);
|
|
6357
6329
|
} finally {
|
|
6358
6330
|
(currentResumableState = prevResumableState),
|
|
6359
6331
|
(ReactSharedInternals.H = prevDispatcher),
|
|
@@ -7076,11 +7048,11 @@ function getPostponedState(request) {
|
|
|
7076
7048
|
}
|
|
7077
7049
|
function ensureCorrectIsomorphicReactVersion() {
|
|
7078
7050
|
var isomorphicReactPackageVersion = React.version;
|
|
7079
|
-
if ("19.3.0-canary-
|
|
7051
|
+
if ("19.3.0-canary-dd048c3b-20251105" !== isomorphicReactPackageVersion)
|
|
7080
7052
|
throw Error(
|
|
7081
7053
|
'Incompatible React versions: The "react" and "react-dom" packages must have the exact same version. Instead got:\n - react: ' +
|
|
7082
7054
|
(isomorphicReactPackageVersion +
|
|
7083
|
-
"\n - react-dom: 19.3.0-canary-
|
|
7055
|
+
"\n - react-dom: 19.3.0-canary-dd048c3b-20251105\nLearn more: https://react.dev/warnings/version-mismatch")
|
|
7084
7056
|
);
|
|
7085
7057
|
}
|
|
7086
7058
|
ensureCorrectIsomorphicReactVersion();
|
|
@@ -7123,7 +7095,6 @@ function createRequestImpl(children, options) {
|
|
|
7123
7095
|
options ? options.onShellReady : void 0,
|
|
7124
7096
|
options ? options.onShellError : void 0,
|
|
7125
7097
|
void 0,
|
|
7126
|
-
options ? options.onPostpone : void 0,
|
|
7127
7098
|
options ? options.formState : void 0
|
|
7128
7099
|
);
|
|
7129
7100
|
}
|
|
@@ -7160,8 +7131,7 @@ function resumeRequestImpl(children, postponedState, options) {
|
|
|
7160
7131
|
options ? options.onAllReady : void 0,
|
|
7161
7132
|
options ? options.onShellReady : void 0,
|
|
7162
7133
|
options ? options.onShellError : void 0,
|
|
7163
|
-
void 0
|
|
7164
|
-
options ? options.onPostpone : void 0
|
|
7134
|
+
void 0
|
|
7165
7135
|
);
|
|
7166
7136
|
}
|
|
7167
7137
|
ensureCorrectIsomorphicReactVersion();
|
|
@@ -7248,8 +7218,7 @@ exports.prerender = function (children, options) {
|
|
|
7248
7218
|
},
|
|
7249
7219
|
void 0,
|
|
7250
7220
|
void 0,
|
|
7251
|
-
reject
|
|
7252
|
-
options ? options.onPostpone : void 0
|
|
7221
|
+
reject
|
|
7253
7222
|
);
|
|
7254
7223
|
if (options && options.signal) {
|
|
7255
7224
|
var signal = options.signal;
|
|
@@ -7303,8 +7272,7 @@ exports.prerenderToNodeStream = function (children, options) {
|
|
|
7303
7272
|
},
|
|
7304
7273
|
void 0,
|
|
7305
7274
|
void 0,
|
|
7306
|
-
reject
|
|
7307
|
-
options ? options.onPostpone : void 0
|
|
7275
|
+
reject
|
|
7308
7276
|
);
|
|
7309
7277
|
if (options && options.signal) {
|
|
7310
7278
|
var signal = options.signal;
|
|
@@ -7417,7 +7385,6 @@ exports.renderToReadableStream = function (children, options) {
|
|
|
7417
7385
|
reject(error);
|
|
7418
7386
|
},
|
|
7419
7387
|
onFatalError,
|
|
7420
|
-
options ? options.onPostpone : void 0,
|
|
7421
7388
|
options ? options.formState : void 0
|
|
7422
7389
|
);
|
|
7423
7390
|
if (options && options.signal) {
|
|
@@ -7483,8 +7450,7 @@ exports.resume = function (children, postponedState, options) {
|
|
|
7483
7450
|
allReady.catch(function () {});
|
|
7484
7451
|
reject(error);
|
|
7485
7452
|
},
|
|
7486
|
-
onFatalError
|
|
7487
|
-
options ? options.onPostpone : void 0
|
|
7453
|
+
onFatalError
|
|
7488
7454
|
);
|
|
7489
7455
|
if (options && options.signal) {
|
|
7490
7456
|
var signal = options.signal;
|
|
@@ -7538,8 +7504,7 @@ exports.resumeAndPrerender = function (children, postponedState, options) {
|
|
|
7538
7504
|
},
|
|
7539
7505
|
void 0,
|
|
7540
7506
|
void 0,
|
|
7541
|
-
reject
|
|
7542
|
-
options ? options.onPostpone : void 0
|
|
7507
|
+
reject
|
|
7543
7508
|
);
|
|
7544
7509
|
if (options && options.signal) {
|
|
7545
7510
|
var signal = options.signal;
|
|
@@ -7585,8 +7550,7 @@ exports.resumeAndPrerenderToNodeStream = function (
|
|
|
7585
7550
|
},
|
|
7586
7551
|
void 0,
|
|
7587
7552
|
void 0,
|
|
7588
|
-
reject
|
|
7589
|
-
options ? options.onPostpone : void 0
|
|
7553
|
+
reject
|
|
7590
7554
|
);
|
|
7591
7555
|
if (options && options.signal) {
|
|
7592
7556
|
var signal = options.signal;
|
|
@@ -7633,4 +7597,4 @@ exports.resumeToPipeableStream = function (children, postponedState, options) {
|
|
|
7633
7597
|
}
|
|
7634
7598
|
};
|
|
7635
7599
|
};
|
|
7636
|
-
exports.version = "19.3.0-canary-
|
|
7600
|
+
exports.version = "19.3.0-canary-dd048c3b-20251105";
|