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
|
@@ -4480,7 +4480,6 @@
|
|
|
4480
4480
|
onShellReady,
|
|
4481
4481
|
onShellError,
|
|
4482
4482
|
onFatalError,
|
|
4483
|
-
onPostpone,
|
|
4484
4483
|
formState
|
|
4485
4484
|
) {
|
|
4486
4485
|
var abortSet = new Set();
|
|
@@ -4503,7 +4502,6 @@
|
|
|
4503
4502
|
this.partialBoundaries = [];
|
|
4504
4503
|
this.trackedPostpones = null;
|
|
4505
4504
|
this.onError = void 0 === onError ? defaultErrorHandler : onError;
|
|
4506
|
-
this.onPostpone = void 0 === onPostpone ? noop : onPostpone;
|
|
4507
4505
|
this.onAllReady = void 0 === onAllReady ? noop : onAllReady;
|
|
4508
4506
|
this.onShellReady = void 0 === onShellReady ? noop : onShellReady;
|
|
4509
4507
|
this.onShellError = void 0 === onShellError ? noop : onShellError;
|
|
@@ -4522,7 +4520,6 @@
|
|
|
4522
4520
|
onShellReady,
|
|
4523
4521
|
onShellError,
|
|
4524
4522
|
onFatalError,
|
|
4525
|
-
onPostpone,
|
|
4526
4523
|
formState
|
|
4527
4524
|
) {
|
|
4528
4525
|
var now = getCurrentTime();
|
|
@@ -4539,7 +4536,6 @@
|
|
|
4539
4536
|
onShellReady,
|
|
4540
4537
|
onShellError,
|
|
4541
4538
|
onFatalError,
|
|
4542
|
-
onPostpone,
|
|
4543
4539
|
formState
|
|
4544
4540
|
);
|
|
4545
4541
|
renderState = createPendingSegment(
|
|
@@ -6049,13 +6045,13 @@
|
|
|
6049
6045
|
} else
|
|
6050
6046
|
(contentRootSegment.status = ERRORED),
|
|
6051
6047
|
(error = thrownValue$2);
|
|
6052
|
-
var thrownInfo = getThrownInfo(task.componentStack)
|
|
6053
|
-
|
|
6054
|
-
|
|
6055
|
-
|
|
6056
|
-
|
|
6057
|
-
|
|
6058
|
-
|
|
6048
|
+
var thrownInfo = getThrownInfo(task.componentStack),
|
|
6049
|
+
errorDigest = logRecoverableError(
|
|
6050
|
+
request,
|
|
6051
|
+
error,
|
|
6052
|
+
thrownInfo,
|
|
6053
|
+
task.debugTask
|
|
6054
|
+
);
|
|
6059
6055
|
encodeErrorForBoundary(
|
|
6060
6056
|
newBoundary,
|
|
6061
6057
|
errorDigest,
|
|
@@ -6271,10 +6267,14 @@
|
|
|
6271
6267
|
name +
|
|
6272
6268
|
">. The tree doesn't match so React will fallback to client rendering."
|
|
6273
6269
|
);
|
|
6274
|
-
var childNodes = node[2]
|
|
6275
|
-
|
|
6276
|
-
|
|
6277
|
-
task.replay = {
|
|
6270
|
+
var childNodes = node[2],
|
|
6271
|
+
childSlots = node[3];
|
|
6272
|
+
name = task.node;
|
|
6273
|
+
task.replay = {
|
|
6274
|
+
nodes: childNodes,
|
|
6275
|
+
slots: childSlots,
|
|
6276
|
+
pendingTasks: 1
|
|
6277
|
+
};
|
|
6278
6278
|
try {
|
|
6279
6279
|
renderElement(request, task, keyPath, type, props, ref);
|
|
6280
6280
|
if (
|
|
@@ -6292,7 +6292,7 @@
|
|
|
6292
6292
|
(x === SuspenseException || "function" === typeof x.then)
|
|
6293
6293
|
)
|
|
6294
6294
|
throw (
|
|
6295
|
-
(task.node ===
|
|
6295
|
+
(task.node === name
|
|
6296
6296
|
? (task.replay = replay)
|
|
6297
6297
|
: childIndex.splice(i, 1),
|
|
6298
6298
|
x)
|
|
@@ -6300,17 +6300,16 @@
|
|
|
6300
6300
|
task.replay.pendingTasks--;
|
|
6301
6301
|
type = getThrownInfo(task.componentStack);
|
|
6302
6302
|
props = request;
|
|
6303
|
-
|
|
6304
|
-
|
|
6305
|
-
ref =
|
|
6306
|
-
name = logRecoverableError(props, keyPath, type, task.debugTask);
|
|
6303
|
+
keyPath = task.blockedBoundary;
|
|
6304
|
+
request = x;
|
|
6305
|
+
ref = logRecoverableError(props, request, type, task.debugTask);
|
|
6307
6306
|
abortRemainingReplayNodes(
|
|
6308
6307
|
props,
|
|
6309
|
-
|
|
6308
|
+
keyPath,
|
|
6310
6309
|
childNodes,
|
|
6310
|
+
childSlots,
|
|
6311
|
+
request,
|
|
6311
6312
|
ref,
|
|
6312
|
-
keyPath,
|
|
6313
|
-
name,
|
|
6314
6313
|
type,
|
|
6315
6314
|
!1
|
|
6316
6315
|
);
|
|
@@ -6324,14 +6323,14 @@
|
|
|
6324
6323
|
">. The tree doesn't match so React will fallback to client rendering."
|
|
6325
6324
|
);
|
|
6326
6325
|
a: {
|
|
6327
|
-
replay =
|
|
6328
|
-
|
|
6326
|
+
replay = request;
|
|
6327
|
+
request = node[5];
|
|
6329
6328
|
type = node[2];
|
|
6330
6329
|
ref = node[3];
|
|
6331
|
-
|
|
6330
|
+
name = null === node[4] ? [] : node[4][2];
|
|
6332
6331
|
node = null === node[4] ? null : node[4][3];
|
|
6333
|
-
|
|
6334
|
-
|
|
6332
|
+
keyOrIndex = task.keyPath;
|
|
6333
|
+
var prevContext = task.formatContext,
|
|
6335
6334
|
prevRow = task.row,
|
|
6336
6335
|
previousReplaySet = task.replay,
|
|
6337
6336
|
parentBoundary = task.blockedBoundary,
|
|
@@ -6340,25 +6339,25 @@
|
|
|
6340
6339
|
fallback = props.fallback,
|
|
6341
6340
|
fallbackAbortSet = new Set();
|
|
6342
6341
|
props = createSuspenseBoundary(
|
|
6343
|
-
|
|
6342
|
+
replay,
|
|
6344
6343
|
task.row,
|
|
6345
6344
|
fallbackAbortSet,
|
|
6346
6345
|
null,
|
|
6347
6346
|
null
|
|
6348
6347
|
);
|
|
6349
6348
|
props.parentFlushed = !0;
|
|
6350
|
-
props.rootSegmentID =
|
|
6349
|
+
props.rootSegmentID = request;
|
|
6351
6350
|
task.blockedBoundary = props;
|
|
6352
6351
|
task.hoistableState = props.contentState;
|
|
6353
6352
|
task.keyPath = keyPath;
|
|
6354
6353
|
task.formatContext = getSuspenseContentFormatContext(
|
|
6355
|
-
|
|
6354
|
+
replay.resumableState,
|
|
6356
6355
|
prevContext
|
|
6357
6356
|
);
|
|
6358
6357
|
task.row = null;
|
|
6359
6358
|
task.replay = { nodes: type, slots: ref, pendingTasks: 1 };
|
|
6360
6359
|
try {
|
|
6361
|
-
renderNode(
|
|
6360
|
+
renderNode(replay, task, content, -1);
|
|
6362
6361
|
if (
|
|
6363
6362
|
1 === task.replay.pendingTasks &&
|
|
6364
6363
|
0 < task.replay.nodes.length
|
|
@@ -6369,33 +6368,39 @@
|
|
|
6369
6368
|
task.replay.pendingTasks--;
|
|
6370
6369
|
if (0 === props.pendingTasks && props.status === PENDING) {
|
|
6371
6370
|
props.status = COMPLETED;
|
|
6372
|
-
|
|
6371
|
+
replay.completedBoundaries.push(props);
|
|
6373
6372
|
break a;
|
|
6374
6373
|
}
|
|
6375
6374
|
} catch (error) {
|
|
6376
6375
|
(props.status = CLIENT_RENDERED),
|
|
6377
6376
|
(childNodes = getThrownInfo(task.componentStack)),
|
|
6378
|
-
(
|
|
6379
|
-
|
|
6377
|
+
(childSlots = logRecoverableError(
|
|
6378
|
+
replay,
|
|
6380
6379
|
error,
|
|
6381
6380
|
childNodes,
|
|
6382
6381
|
task.debugTask
|
|
6383
6382
|
)),
|
|
6384
|
-
encodeErrorForBoundary(
|
|
6383
|
+
encodeErrorForBoundary(
|
|
6384
|
+
props,
|
|
6385
|
+
childSlots,
|
|
6386
|
+
error,
|
|
6387
|
+
childNodes,
|
|
6388
|
+
!1
|
|
6389
|
+
),
|
|
6385
6390
|
task.replay.pendingTasks--,
|
|
6386
|
-
|
|
6391
|
+
replay.clientRenderedBoundaries.push(props);
|
|
6387
6392
|
} finally {
|
|
6388
6393
|
(task.blockedBoundary = parentBoundary),
|
|
6389
6394
|
(task.hoistableState = parentHoistableState),
|
|
6390
6395
|
(task.replay = previousReplaySet),
|
|
6391
|
-
(task.keyPath =
|
|
6396
|
+
(task.keyPath = keyOrIndex),
|
|
6392
6397
|
(task.formatContext = prevContext),
|
|
6393
6398
|
(task.row = prevRow);
|
|
6394
6399
|
}
|
|
6395
6400
|
props = createReplayTask(
|
|
6396
|
-
|
|
6401
|
+
replay,
|
|
6397
6402
|
null,
|
|
6398
|
-
{ nodes:
|
|
6403
|
+
{ nodes: name, slots: node, pendingTasks: 0 },
|
|
6399
6404
|
fallback,
|
|
6400
6405
|
-1,
|
|
6401
6406
|
parentBoundary,
|
|
@@ -6403,7 +6408,7 @@
|
|
|
6403
6408
|
fallbackAbortSet,
|
|
6404
6409
|
[keyPath[0], "Suspense Fallback", keyPath[2]],
|
|
6405
6410
|
getSuspenseFallbackFormatContext(
|
|
6406
|
-
|
|
6411
|
+
replay.resumableState,
|
|
6407
6412
|
task.formatContext
|
|
6408
6413
|
),
|
|
6409
6414
|
task.context,
|
|
@@ -6416,7 +6421,7 @@
|
|
|
6416
6421
|
task.debugTask
|
|
6417
6422
|
);
|
|
6418
6423
|
pushComponentStack(props);
|
|
6419
|
-
|
|
6424
|
+
replay.pingedTasks.push(props);
|
|
6420
6425
|
}
|
|
6421
6426
|
}
|
|
6422
6427
|
childIndex.splice(i, 1);
|
|
@@ -6712,20 +6717,19 @@
|
|
|
6712
6717
|
var thrownInfo = getThrownInfo(task.componentStack);
|
|
6713
6718
|
children = task.blockedBoundary;
|
|
6714
6719
|
var error = x,
|
|
6715
|
-
|
|
6716
|
-
|
|
6717
|
-
|
|
6718
|
-
|
|
6719
|
-
|
|
6720
|
-
|
|
6721
|
-
);
|
|
6720
|
+
errorDigest = logRecoverableError(
|
|
6721
|
+
request,
|
|
6722
|
+
error,
|
|
6723
|
+
thrownInfo,
|
|
6724
|
+
task.debugTask
|
|
6725
|
+
);
|
|
6722
6726
|
abortRemainingReplayNodes(
|
|
6723
6727
|
request,
|
|
6724
6728
|
children,
|
|
6725
6729
|
childIndex,
|
|
6726
|
-
resumeSlots,
|
|
6727
|
-
error,
|
|
6728
6730
|
node,
|
|
6731
|
+
error,
|
|
6732
|
+
errorDigest,
|
|
6729
6733
|
thrownInfo,
|
|
6730
6734
|
!1
|
|
6731
6735
|
);
|
|
@@ -7421,10 +7425,10 @@
|
|
|
7421
7425
|
tryToResolveTogetherRow(request, boundary);
|
|
7422
7426
|
0 === request.allPendingTasks && completeAll(request);
|
|
7423
7427
|
}
|
|
7424
|
-
function performWork(request$jscomp$
|
|
7428
|
+
function performWork(request$jscomp$1) {
|
|
7425
7429
|
if (
|
|
7426
|
-
request$jscomp$
|
|
7427
|
-
13 !== request$jscomp$
|
|
7430
|
+
request$jscomp$1.status !== CLOSED &&
|
|
7431
|
+
13 !== request$jscomp$1.status
|
|
7428
7432
|
) {
|
|
7429
7433
|
var prevContext = currentActiveSnapshot,
|
|
7430
7434
|
prevDispatcher = ReactSharedInternals.H;
|
|
@@ -7432,49 +7436,48 @@
|
|
|
7432
7436
|
var prevAsyncDispatcher = ReactSharedInternals.A;
|
|
7433
7437
|
ReactSharedInternals.A = DefaultAsyncDispatcher;
|
|
7434
7438
|
var prevRequest = currentRequest;
|
|
7435
|
-
currentRequest = request$jscomp$
|
|
7439
|
+
currentRequest = request$jscomp$1;
|
|
7436
7440
|
var prevGetCurrentStackImpl = ReactSharedInternals.getCurrentStack;
|
|
7437
7441
|
ReactSharedInternals.getCurrentStack = getCurrentStackInDEV;
|
|
7438
7442
|
var prevResumableState = currentResumableState;
|
|
7439
|
-
currentResumableState = request$jscomp$
|
|
7443
|
+
currentResumableState = request$jscomp$1.resumableState;
|
|
7440
7444
|
try {
|
|
7441
|
-
var pingedTasks = request$jscomp$
|
|
7445
|
+
var pingedTasks = request$jscomp$1.pingedTasks,
|
|
7442
7446
|
i;
|
|
7443
7447
|
for (i = 0; i < pingedTasks.length; i++) {
|
|
7444
|
-
var request = request$jscomp$
|
|
7448
|
+
var request = request$jscomp$1,
|
|
7445
7449
|
task = pingedTasks[i],
|
|
7446
7450
|
segment = task.blockedSegment;
|
|
7447
7451
|
if (null === segment) {
|
|
7448
7452
|
var prevTaskInDEV = void 0,
|
|
7449
|
-
|
|
7450
|
-
|
|
7451
|
-
|
|
7452
|
-
switchContext(request.context);
|
|
7453
|
+
task$jscomp$0 = task;
|
|
7454
|
+
if (0 !== task$jscomp$0.replay.pendingTasks) {
|
|
7455
|
+
switchContext(task$jscomp$0.context);
|
|
7453
7456
|
prevTaskInDEV = currentTaskInDEV;
|
|
7454
|
-
currentTaskInDEV =
|
|
7457
|
+
currentTaskInDEV = task$jscomp$0;
|
|
7455
7458
|
try {
|
|
7456
|
-
"number" === typeof
|
|
7459
|
+
"number" === typeof task$jscomp$0.replay.slots
|
|
7457
7460
|
? resumeNode(
|
|
7458
|
-
request$jscomp$0,
|
|
7459
7461
|
request,
|
|
7460
|
-
|
|
7461
|
-
|
|
7462
|
-
|
|
7462
|
+
task$jscomp$0,
|
|
7463
|
+
task$jscomp$0.replay.slots,
|
|
7464
|
+
task$jscomp$0.node,
|
|
7465
|
+
task$jscomp$0.childIndex
|
|
7463
7466
|
)
|
|
7464
|
-
: retryNode(request$jscomp$0
|
|
7467
|
+
: retryNode(request, task$jscomp$0);
|
|
7465
7468
|
if (
|
|
7466
|
-
1 ===
|
|
7467
|
-
0 <
|
|
7469
|
+
1 === task$jscomp$0.replay.pendingTasks &&
|
|
7470
|
+
0 < task$jscomp$0.replay.nodes.length
|
|
7468
7471
|
)
|
|
7469
7472
|
throw Error(
|
|
7470
7473
|
"Couldn't find all resumable slots by key/index during replaying. The tree doesn't match so React will fallback to client rendering."
|
|
7471
7474
|
);
|
|
7472
|
-
|
|
7473
|
-
|
|
7475
|
+
task$jscomp$0.replay.pendingTasks--;
|
|
7476
|
+
task$jscomp$0.abortSet.delete(task$jscomp$0);
|
|
7474
7477
|
finishedTask(
|
|
7475
|
-
request
|
|
7476
|
-
|
|
7477
|
-
|
|
7478
|
+
request,
|
|
7479
|
+
task$jscomp$0.blockedBoundary,
|
|
7480
|
+
task$jscomp$0.row,
|
|
7478
7481
|
null
|
|
7479
7482
|
);
|
|
7480
7483
|
} catch (thrownValue) {
|
|
@@ -7488,34 +7491,31 @@
|
|
|
7488
7491
|
null !== x &&
|
|
7489
7492
|
"function" === typeof x.then
|
|
7490
7493
|
) {
|
|
7491
|
-
var ping =
|
|
7494
|
+
var ping = task$jscomp$0.ping;
|
|
7492
7495
|
x.then(ping, ping);
|
|
7493
|
-
|
|
7496
|
+
task$jscomp$0.thenableState =
|
|
7494
7497
|
thrownValue === SuspenseException
|
|
7495
7498
|
? getThenableStateAfterSuspending()
|
|
7496
7499
|
: null;
|
|
7497
7500
|
} else {
|
|
7498
|
-
|
|
7499
|
-
|
|
7500
|
-
var errorInfo = getThrownInfo(
|
|
7501
|
-
|
|
7502
|
-
|
|
7503
|
-
boundary = request.blockedBoundary,
|
|
7501
|
+
task$jscomp$0.replay.pendingTasks--;
|
|
7502
|
+
task$jscomp$0.abortSet.delete(task$jscomp$0);
|
|
7503
|
+
var errorInfo = getThrownInfo(task$jscomp$0.componentStack),
|
|
7504
|
+
request$jscomp$0 = request,
|
|
7505
|
+
boundary = task$jscomp$0.blockedBoundary,
|
|
7504
7506
|
error$jscomp$0 =
|
|
7505
|
-
12 === request
|
|
7506
|
-
? request$jscomp$0.fatalError
|
|
7507
|
-
: x,
|
|
7507
|
+
12 === request.status ? request.fatalError : x,
|
|
7508
7508
|
errorInfo$jscomp$0 = errorInfo,
|
|
7509
|
-
replayNodes =
|
|
7510
|
-
resumeSlots =
|
|
7511
|
-
|
|
7512
|
-
|
|
7513
|
-
|
|
7514
|
-
|
|
7515
|
-
|
|
7516
|
-
|
|
7509
|
+
replayNodes = task$jscomp$0.replay.nodes,
|
|
7510
|
+
resumeSlots = task$jscomp$0.replay.slots,
|
|
7511
|
+
errorDigest = logRecoverableError(
|
|
7512
|
+
request$jscomp$0,
|
|
7513
|
+
error$jscomp$0,
|
|
7514
|
+
errorInfo$jscomp$0,
|
|
7515
|
+
task$jscomp$0.debugTask
|
|
7516
|
+
);
|
|
7517
7517
|
abortRemainingReplayNodes(
|
|
7518
|
-
request$jscomp$
|
|
7518
|
+
request$jscomp$0,
|
|
7519
7519
|
boundary,
|
|
7520
7520
|
replayNodes,
|
|
7521
7521
|
resumeSlots,
|
|
@@ -7524,49 +7524,47 @@
|
|
|
7524
7524
|
errorInfo$jscomp$0,
|
|
7525
7525
|
!1
|
|
7526
7526
|
);
|
|
7527
|
-
request
|
|
7528
|
-
0 === request
|
|
7529
|
-
|
|
7530
|
-
request
|
|
7531
|
-
0 === request$jscomp$0.allPendingTasks &&
|
|
7532
|
-
completeAll(request$jscomp$0);
|
|
7527
|
+
request.pendingRootTasks--;
|
|
7528
|
+
0 === request.pendingRootTasks && completeShell(request);
|
|
7529
|
+
request.allPendingTasks--;
|
|
7530
|
+
0 === request.allPendingTasks && completeAll(request);
|
|
7533
7531
|
}
|
|
7534
7532
|
} finally {
|
|
7535
7533
|
currentTaskInDEV = prevTaskInDEV;
|
|
7536
7534
|
}
|
|
7537
7535
|
}
|
|
7538
7536
|
} else if (
|
|
7539
|
-
((
|
|
7540
|
-
(
|
|
7541
|
-
(request$jscomp$
|
|
7542
|
-
request$jscomp$
|
|
7537
|
+
((prevTaskInDEV = void 0),
|
|
7538
|
+
(task$jscomp$0 = task),
|
|
7539
|
+
(request$jscomp$0 = segment),
|
|
7540
|
+
request$jscomp$0.status === PENDING)
|
|
7543
7541
|
) {
|
|
7544
|
-
request$jscomp$
|
|
7545
|
-
switchContext(
|
|
7546
|
-
|
|
7547
|
-
currentTaskInDEV =
|
|
7548
|
-
var childrenLength = request$jscomp$
|
|
7549
|
-
chunkLength = request$jscomp$
|
|
7542
|
+
request$jscomp$0.status = 6;
|
|
7543
|
+
switchContext(task$jscomp$0.context);
|
|
7544
|
+
prevTaskInDEV = currentTaskInDEV;
|
|
7545
|
+
currentTaskInDEV = task$jscomp$0;
|
|
7546
|
+
var childrenLength = request$jscomp$0.children.length,
|
|
7547
|
+
chunkLength = request$jscomp$0.chunks.length;
|
|
7550
7548
|
try {
|
|
7551
|
-
retryNode(request,
|
|
7549
|
+
retryNode(request, task$jscomp$0),
|
|
7552
7550
|
pushSegmentFinale(
|
|
7553
|
-
request$jscomp$
|
|
7551
|
+
request$jscomp$0.chunks,
|
|
7554
7552
|
request.renderState,
|
|
7555
|
-
request$jscomp$
|
|
7556
|
-
request$jscomp$
|
|
7553
|
+
request$jscomp$0.lastPushedText,
|
|
7554
|
+
request$jscomp$0.textEmbedded
|
|
7557
7555
|
),
|
|
7558
|
-
|
|
7559
|
-
(request$jscomp$
|
|
7556
|
+
task$jscomp$0.abortSet.delete(task$jscomp$0),
|
|
7557
|
+
(request$jscomp$0.status = COMPLETED),
|
|
7560
7558
|
finishedTask(
|
|
7561
7559
|
request,
|
|
7562
|
-
|
|
7563
|
-
|
|
7564
|
-
request$jscomp$
|
|
7560
|
+
task$jscomp$0.blockedBoundary,
|
|
7561
|
+
task$jscomp$0.row,
|
|
7562
|
+
request$jscomp$0
|
|
7565
7563
|
);
|
|
7566
7564
|
} catch (thrownValue) {
|
|
7567
7565
|
resetHooksState();
|
|
7568
|
-
request$jscomp$
|
|
7569
|
-
request$jscomp$
|
|
7566
|
+
request$jscomp$0.children.length = childrenLength;
|
|
7567
|
+
request$jscomp$0.chunks.length = chunkLength;
|
|
7570
7568
|
var x$jscomp$0 =
|
|
7571
7569
|
thrownValue === SuspenseException
|
|
7572
7570
|
? getSuspendedThenable()
|
|
@@ -7578,52 +7576,52 @@
|
|
|
7578
7576
|
null !== request.trackedPostpones
|
|
7579
7577
|
) {
|
|
7580
7578
|
var trackedPostpones = request.trackedPostpones,
|
|
7581
|
-
thrownInfo = getThrownInfo(
|
|
7582
|
-
|
|
7579
|
+
thrownInfo = getThrownInfo(task$jscomp$0.componentStack);
|
|
7580
|
+
task$jscomp$0.abortSet.delete(task$jscomp$0);
|
|
7583
7581
|
logRecoverableError(
|
|
7584
7582
|
request,
|
|
7585
7583
|
x$jscomp$0,
|
|
7586
7584
|
thrownInfo,
|
|
7587
|
-
|
|
7585
|
+
task$jscomp$0.debugTask
|
|
7588
7586
|
);
|
|
7589
7587
|
trackPostpone(
|
|
7590
7588
|
request,
|
|
7591
7589
|
trackedPostpones,
|
|
7592
|
-
|
|
7593
|
-
request$jscomp$
|
|
7590
|
+
task$jscomp$0,
|
|
7591
|
+
request$jscomp$0
|
|
7594
7592
|
);
|
|
7595
7593
|
finishedTask(
|
|
7596
7594
|
request,
|
|
7597
|
-
|
|
7598
|
-
|
|
7599
|
-
request$jscomp$
|
|
7595
|
+
task$jscomp$0.blockedBoundary,
|
|
7596
|
+
task$jscomp$0.row,
|
|
7597
|
+
request$jscomp$0
|
|
7600
7598
|
);
|
|
7601
7599
|
} else if (
|
|
7602
7600
|
"object" === typeof x$jscomp$0 &&
|
|
7603
7601
|
null !== x$jscomp$0 &&
|
|
7604
7602
|
"function" === typeof x$jscomp$0.then
|
|
7605
7603
|
) {
|
|
7606
|
-
request$jscomp$
|
|
7607
|
-
|
|
7604
|
+
request$jscomp$0.status = PENDING;
|
|
7605
|
+
task$jscomp$0.thenableState =
|
|
7608
7606
|
thrownValue === SuspenseException
|
|
7609
7607
|
? getThenableStateAfterSuspending()
|
|
7610
7608
|
: null;
|
|
7611
|
-
var ping$jscomp$0 =
|
|
7609
|
+
var ping$jscomp$0 = task$jscomp$0.ping;
|
|
7612
7610
|
x$jscomp$0.then(ping$jscomp$0, ping$jscomp$0);
|
|
7613
7611
|
} else {
|
|
7614
7612
|
var errorInfo$jscomp$1 = getThrownInfo(
|
|
7615
|
-
|
|
7613
|
+
task$jscomp$0.componentStack
|
|
7616
7614
|
);
|
|
7617
|
-
|
|
7618
|
-
request$jscomp$
|
|
7619
|
-
var boundary$jscomp$0 =
|
|
7620
|
-
row =
|
|
7621
|
-
debugTask =
|
|
7615
|
+
task$jscomp$0.abortSet.delete(task$jscomp$0);
|
|
7616
|
+
request$jscomp$0.status = ERRORED;
|
|
7617
|
+
var boundary$jscomp$0 = task$jscomp$0.blockedBoundary,
|
|
7618
|
+
row = task$jscomp$0.row,
|
|
7619
|
+
debugTask = task$jscomp$0.debugTask;
|
|
7622
7620
|
null !== row &&
|
|
7623
7621
|
0 === --row.pendingTasks &&
|
|
7624
7622
|
finishSuspenseListRow(request, row);
|
|
7625
7623
|
request.allPendingTasks--;
|
|
7626
|
-
|
|
7624
|
+
var errorDigest$jscomp$0 = logRecoverableError(
|
|
7627
7625
|
request,
|
|
7628
7626
|
x$jscomp$0,
|
|
7629
7627
|
errorInfo$jscomp$1,
|
|
@@ -7643,7 +7641,7 @@
|
|
|
7643
7641
|
boundary$jscomp$0.status = CLIENT_RENDERED;
|
|
7644
7642
|
encodeErrorForBoundary(
|
|
7645
7643
|
boundary$jscomp$0,
|
|
7646
|
-
|
|
7644
|
+
errorDigest$jscomp$0,
|
|
7647
7645
|
x$jscomp$0,
|
|
7648
7646
|
errorInfo$jscomp$1,
|
|
7649
7647
|
!1
|
|
@@ -7663,20 +7661,20 @@
|
|
|
7663
7661
|
0 === request.allPendingTasks && completeAll(request);
|
|
7664
7662
|
}
|
|
7665
7663
|
} finally {
|
|
7666
|
-
currentTaskInDEV =
|
|
7664
|
+
currentTaskInDEV = prevTaskInDEV;
|
|
7667
7665
|
}
|
|
7668
7666
|
}
|
|
7669
7667
|
}
|
|
7670
7668
|
pingedTasks.splice(0, i);
|
|
7671
|
-
null !== request$jscomp$
|
|
7669
|
+
null !== request$jscomp$1.destination &&
|
|
7672
7670
|
flushCompletedQueues(
|
|
7673
|
-
request$jscomp$
|
|
7674
|
-
request$jscomp$
|
|
7671
|
+
request$jscomp$1,
|
|
7672
|
+
request$jscomp$1.destination
|
|
7675
7673
|
);
|
|
7676
7674
|
} catch (error) {
|
|
7677
7675
|
(pingedTasks = {}),
|
|
7678
|
-
logRecoverableError(request$jscomp$
|
|
7679
|
-
fatalError(request$jscomp$
|
|
7676
|
+
logRecoverableError(request$jscomp$1, error, pingedTasks, null),
|
|
7677
|
+
fatalError(request$jscomp$1, error, pingedTasks, null);
|
|
7680
7678
|
} finally {
|
|
7681
7679
|
(currentResumableState = prevResumableState),
|
|
7682
7680
|
(ReactSharedInternals.H = prevDispatcher),
|
|
@@ -10006,5 +10004,5 @@
|
|
|
10006
10004
|
'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'
|
|
10007
10005
|
);
|
|
10008
10006
|
};
|
|
10009
|
-
exports.version = "19.3.0-canary-
|
|
10007
|
+
exports.version = "19.3.0-canary-dd048c3b-20251105";
|
|
10010
10008
|
})();
|