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
|
@@ -4093,7 +4093,6 @@ function RequestInstance(
|
|
|
4093
4093
|
onShellReady,
|
|
4094
4094
|
onShellError,
|
|
4095
4095
|
onFatalError,
|
|
4096
|
-
onPostpone,
|
|
4097
4096
|
formState
|
|
4098
4097
|
) {
|
|
4099
4098
|
var abortSet = new Set();
|
|
@@ -4116,7 +4115,6 @@ function RequestInstance(
|
|
|
4116
4115
|
this.partialBoundaries = [];
|
|
4117
4116
|
this.trackedPostpones = null;
|
|
4118
4117
|
this.onError = void 0 === onError ? defaultErrorHandler : onError;
|
|
4119
|
-
this.onPostpone = void 0 === onPostpone ? noop : onPostpone;
|
|
4120
4118
|
this.onAllReady = void 0 === onAllReady ? noop : onAllReady;
|
|
4121
4119
|
this.onShellReady = void 0 === onShellReady ? noop : onShellReady;
|
|
4122
4120
|
this.onShellError = void 0 === onShellError ? noop : onShellError;
|
|
@@ -4134,7 +4132,6 @@ function createRequest(
|
|
|
4134
4132
|
onShellReady,
|
|
4135
4133
|
onShellError,
|
|
4136
4134
|
onFatalError,
|
|
4137
|
-
onPostpone,
|
|
4138
4135
|
formState
|
|
4139
4136
|
) {
|
|
4140
4137
|
resumableState = new RequestInstance(
|
|
@@ -4147,7 +4144,6 @@ function createRequest(
|
|
|
4147
4144
|
onShellReady,
|
|
4148
4145
|
onShellError,
|
|
4149
4146
|
onFatalError,
|
|
4150
|
-
onPostpone,
|
|
4151
4147
|
formState
|
|
4152
4148
|
);
|
|
4153
4149
|
renderState = createPendingSegment(
|
|
@@ -4190,8 +4186,7 @@ function createPrerenderRequest(
|
|
|
4190
4186
|
onAllReady,
|
|
4191
4187
|
onShellReady,
|
|
4192
4188
|
onShellError,
|
|
4193
|
-
onFatalError
|
|
4194
|
-
onPostpone
|
|
4189
|
+
onFatalError
|
|
4195
4190
|
) {
|
|
4196
4191
|
children = createRequest(
|
|
4197
4192
|
children,
|
|
@@ -4204,7 +4199,6 @@ function createPrerenderRequest(
|
|
|
4204
4199
|
onShellReady,
|
|
4205
4200
|
onShellError,
|
|
4206
4201
|
onFatalError,
|
|
4207
|
-
onPostpone,
|
|
4208
4202
|
void 0
|
|
4209
4203
|
);
|
|
4210
4204
|
children.trackedPostpones = {
|
|
@@ -4222,8 +4216,7 @@ function resumeRequest(
|
|
|
4222
4216
|
onAllReady,
|
|
4223
4217
|
onShellReady,
|
|
4224
4218
|
onShellError,
|
|
4225
|
-
onFatalError
|
|
4226
|
-
onPostpone
|
|
4219
|
+
onFatalError
|
|
4227
4220
|
) {
|
|
4228
4221
|
renderState = new RequestInstance(
|
|
4229
4222
|
postponedState.resumableState,
|
|
@@ -4235,7 +4228,6 @@ function resumeRequest(
|
|
|
4235
4228
|
onShellReady,
|
|
4236
4229
|
onShellError,
|
|
4237
4230
|
onFatalError,
|
|
4238
|
-
onPostpone,
|
|
4239
4231
|
null
|
|
4240
4232
|
);
|
|
4241
4233
|
renderState.nextSegmentId = postponedState.nextSegmentId;
|
|
@@ -4303,8 +4295,7 @@ function resumeAndPrerenderRequest(
|
|
|
4303
4295
|
onAllReady,
|
|
4304
4296
|
onShellReady,
|
|
4305
4297
|
onShellError,
|
|
4306
|
-
onFatalError
|
|
4307
|
-
onPostpone
|
|
4298
|
+
onFatalError
|
|
4308
4299
|
) {
|
|
4309
4300
|
children = resumeRequest(
|
|
4310
4301
|
children,
|
|
@@ -4314,8 +4305,7 @@ function resumeAndPrerenderRequest(
|
|
|
4314
4305
|
onAllReady,
|
|
4315
4306
|
onShellReady,
|
|
4316
4307
|
onShellError,
|
|
4317
|
-
onFatalError
|
|
4318
|
-
onPostpone
|
|
4308
|
+
onFatalError
|
|
4319
4309
|
);
|
|
4320
4310
|
children.trackedPostpones = {
|
|
4321
4311
|
workingMap: new Map(),
|
|
@@ -5347,8 +5337,8 @@ function renderElement(request, task, keyPath, type, props, ref) {
|
|
|
5347
5337
|
contentRootSegment.status = 3;
|
|
5348
5338
|
var error = request.fatalError;
|
|
5349
5339
|
} else (contentRootSegment.status = 4), (error = thrownValue$31);
|
|
5350
|
-
var thrownInfo = getThrownInfo(task.componentStack)
|
|
5351
|
-
|
|
5340
|
+
var thrownInfo = getThrownInfo(task.componentStack),
|
|
5341
|
+
errorDigest = logRecoverableError(request, error, thrownInfo);
|
|
5352
5342
|
newBoundary.errorDigest = errorDigest;
|
|
5353
5343
|
untrackBoundary(request, newBoundary);
|
|
5354
5344
|
} finally {
|
|
@@ -5537,12 +5527,12 @@ function retryNode(request, task) {
|
|
|
5537
5527
|
name +
|
|
5538
5528
|
">. The tree doesn't match so React will fallback to client rendering."
|
|
5539
5529
|
);
|
|
5540
|
-
var childNodes = node$jscomp$0[2]
|
|
5541
|
-
|
|
5542
|
-
|
|
5530
|
+
var childNodes = node$jscomp$0[2],
|
|
5531
|
+
childSlots = node$jscomp$0[3];
|
|
5532
|
+
name = task.node;
|
|
5543
5533
|
task.replay = {
|
|
5544
5534
|
nodes: childNodes,
|
|
5545
|
-
slots:
|
|
5535
|
+
slots: childSlots,
|
|
5546
5536
|
pendingTasks: 1
|
|
5547
5537
|
};
|
|
5548
5538
|
try {
|
|
@@ -5563,7 +5553,7 @@ function retryNode(request, task) {
|
|
|
5563
5553
|
"function" === typeof x.then)
|
|
5564
5554
|
)
|
|
5565
5555
|
throw (
|
|
5566
|
-
(task.node ===
|
|
5556
|
+
(task.node === name
|
|
5567
5557
|
? (task.replay = replay)
|
|
5568
5558
|
: childIndex.splice(node, 1),
|
|
5569
5559
|
x)
|
|
@@ -5578,7 +5568,7 @@ function retryNode(request, task) {
|
|
|
5578
5568
|
key,
|
|
5579
5569
|
request,
|
|
5580
5570
|
childNodes,
|
|
5581
|
-
|
|
5571
|
+
childSlots,
|
|
5582
5572
|
type,
|
|
5583
5573
|
props
|
|
5584
5574
|
);
|
|
@@ -5592,16 +5582,15 @@ function retryNode(request, task) {
|
|
|
5592
5582
|
">. The tree doesn't match so React will fallback to client rendering."
|
|
5593
5583
|
);
|
|
5594
5584
|
b: {
|
|
5595
|
-
replay =
|
|
5596
|
-
type = node$jscomp$0[
|
|
5597
|
-
ref = node$jscomp$0[
|
|
5598
|
-
name =
|
|
5599
|
-
keyOrIndex =
|
|
5585
|
+
replay = node$jscomp$0[5];
|
|
5586
|
+
type = node$jscomp$0[2];
|
|
5587
|
+
ref = node$jscomp$0[3];
|
|
5588
|
+
name =
|
|
5600
5589
|
null === node$jscomp$0[4] ? [] : node$jscomp$0[4][2];
|
|
5601
5590
|
node$jscomp$0 =
|
|
5602
5591
|
null === node$jscomp$0[4] ? null : node$jscomp$0[4][3];
|
|
5603
|
-
|
|
5604
|
-
|
|
5592
|
+
keyOrIndex = task.keyPath;
|
|
5593
|
+
var prevContext = task.formatContext,
|
|
5605
5594
|
prevRow = task.row,
|
|
5606
5595
|
previousReplaySet = task.replay,
|
|
5607
5596
|
parentBoundary = task.blockedBoundary,
|
|
@@ -5626,7 +5615,7 @@ function retryNode(request, task) {
|
|
|
5626
5615
|
null
|
|
5627
5616
|
);
|
|
5628
5617
|
props.parentFlushed = !0;
|
|
5629
|
-
props.rootSegmentID =
|
|
5618
|
+
props.rootSegmentID = replay;
|
|
5630
5619
|
task.blockedBoundary = props;
|
|
5631
5620
|
task.hoistableState = props.contentState;
|
|
5632
5621
|
task.keyPath = key;
|
|
@@ -5636,8 +5625,8 @@ function retryNode(request, task) {
|
|
|
5636
5625
|
);
|
|
5637
5626
|
task.row = null;
|
|
5638
5627
|
task.replay = {
|
|
5639
|
-
nodes:
|
|
5640
|
-
slots:
|
|
5628
|
+
nodes: type,
|
|
5629
|
+
slots: ref,
|
|
5641
5630
|
pendingTasks: 1
|
|
5642
5631
|
};
|
|
5643
5632
|
try {
|
|
@@ -5658,30 +5647,26 @@ function retryNode(request, task) {
|
|
|
5658
5647
|
} catch (error) {
|
|
5659
5648
|
(props.status = 4),
|
|
5660
5649
|
(childNodes = getThrownInfo(task.componentStack)),
|
|
5661
|
-
(
|
|
5650
|
+
(childSlots = logRecoverableError(
|
|
5662
5651
|
request,
|
|
5663
5652
|
error,
|
|
5664
5653
|
childNodes
|
|
5665
5654
|
)),
|
|
5666
|
-
(props.errorDigest =
|
|
5655
|
+
(props.errorDigest = childSlots),
|
|
5667
5656
|
task.replay.pendingTasks--,
|
|
5668
5657
|
request.clientRenderedBoundaries.push(props);
|
|
5669
5658
|
} finally {
|
|
5670
5659
|
(task.blockedBoundary = parentBoundary),
|
|
5671
5660
|
(task.hoistableState = parentHoistableState),
|
|
5672
5661
|
(task.replay = previousReplaySet),
|
|
5673
|
-
(task.keyPath =
|
|
5662
|
+
(task.keyPath = keyOrIndex),
|
|
5674
5663
|
(task.formatContext = prevContext),
|
|
5675
5664
|
(task.row = prevRow);
|
|
5676
5665
|
}
|
|
5677
5666
|
childNodes = createReplayTask(
|
|
5678
5667
|
request,
|
|
5679
5668
|
null,
|
|
5680
|
-
{
|
|
5681
|
-
nodes: keyOrIndex,
|
|
5682
|
-
slots: node$jscomp$0,
|
|
5683
|
-
pendingTasks: 0
|
|
5684
|
-
},
|
|
5669
|
+
{ nodes: name, slots: node$jscomp$0, pendingTasks: 0 },
|
|
5685
5670
|
fallback,
|
|
5686
5671
|
-1,
|
|
5687
5672
|
parentBoundary,
|
|
@@ -5729,10 +5714,10 @@ function retryNode(request, task) {
|
|
|
5729
5714
|
if ((childNodes = childNodes.call(node))) {
|
|
5730
5715
|
node = childNodes.next();
|
|
5731
5716
|
if (!node.done) {
|
|
5732
|
-
|
|
5733
|
-
do
|
|
5717
|
+
childSlots = [];
|
|
5718
|
+
do childSlots.push(node.value), (node = childNodes.next());
|
|
5734
5719
|
while (!node.done);
|
|
5735
|
-
renderChildrenArray(request, task,
|
|
5720
|
+
renderChildrenArray(request, task, childSlots, childIndex);
|
|
5736
5721
|
}
|
|
5737
5722
|
return;
|
|
5738
5723
|
}
|
|
@@ -6439,38 +6424,37 @@ function finishedTask(request, boundary, row, segment) {
|
|
|
6439
6424
|
tryToResolveTogetherRow(request, boundary);
|
|
6440
6425
|
0 === request.allPendingTasks && completeAll(request);
|
|
6441
6426
|
}
|
|
6442
|
-
function performWork(request$jscomp$
|
|
6443
|
-
if (14 !== request$jscomp$
|
|
6427
|
+
function performWork(request$jscomp$1) {
|
|
6428
|
+
if (14 !== request$jscomp$1.status && 13 !== request$jscomp$1.status) {
|
|
6444
6429
|
var prevContext = currentActiveSnapshot,
|
|
6445
6430
|
prevDispatcher = ReactSharedInternals.H;
|
|
6446
6431
|
ReactSharedInternals.H = HooksDispatcher;
|
|
6447
6432
|
var prevAsyncDispatcher = ReactSharedInternals.A;
|
|
6448
6433
|
ReactSharedInternals.A = DefaultAsyncDispatcher;
|
|
6449
6434
|
var prevRequest = currentRequest;
|
|
6450
|
-
currentRequest = request$jscomp$
|
|
6435
|
+
currentRequest = request$jscomp$1;
|
|
6451
6436
|
var prevResumableState = currentResumableState;
|
|
6452
|
-
currentResumableState = request$jscomp$
|
|
6437
|
+
currentResumableState = request$jscomp$1.resumableState;
|
|
6453
6438
|
try {
|
|
6454
|
-
var pingedTasks = request$jscomp$
|
|
6439
|
+
var pingedTasks = request$jscomp$1.pingedTasks,
|
|
6455
6440
|
i;
|
|
6456
6441
|
for (i = 0; i < pingedTasks.length; i++) {
|
|
6457
6442
|
var task = pingedTasks[i],
|
|
6458
|
-
request = request$jscomp$
|
|
6443
|
+
request = request$jscomp$1,
|
|
6459
6444
|
segment = task.blockedSegment;
|
|
6460
6445
|
if (null === segment) {
|
|
6461
|
-
var request$jscomp$0 = request;
|
|
6462
6446
|
if (0 !== task.replay.pendingTasks) {
|
|
6463
6447
|
switchContext(task.context);
|
|
6464
6448
|
try {
|
|
6465
6449
|
"number" === typeof task.replay.slots
|
|
6466
6450
|
? resumeNode(
|
|
6467
|
-
request
|
|
6451
|
+
request,
|
|
6468
6452
|
task,
|
|
6469
6453
|
task.replay.slots,
|
|
6470
6454
|
task.node,
|
|
6471
6455
|
task.childIndex
|
|
6472
6456
|
)
|
|
6473
|
-
: retryNode(request
|
|
6457
|
+
: retryNode(request, task);
|
|
6474
6458
|
if (
|
|
6475
6459
|
1 === task.replay.pendingTasks &&
|
|
6476
6460
|
0 < task.replay.nodes.length
|
|
@@ -6480,12 +6464,7 @@ function performWork(request$jscomp$2) {
|
|
|
6480
6464
|
);
|
|
6481
6465
|
task.replay.pendingTasks--;
|
|
6482
6466
|
task.abortSet.delete(task);
|
|
6483
|
-
finishedTask(
|
|
6484
|
-
request$jscomp$0,
|
|
6485
|
-
task.blockedBoundary,
|
|
6486
|
-
task.row,
|
|
6487
|
-
null
|
|
6488
|
-
);
|
|
6467
|
+
finishedTask(request, task.blockedBoundary, task.row, null);
|
|
6489
6468
|
} catch (thrownValue) {
|
|
6490
6469
|
resetHooksState();
|
|
6491
6470
|
var x =
|
|
@@ -6506,66 +6485,59 @@ function performWork(request$jscomp$2) {
|
|
|
6506
6485
|
} else {
|
|
6507
6486
|
task.replay.pendingTasks--;
|
|
6508
6487
|
task.abortSet.delete(task);
|
|
6509
|
-
var errorInfo = getThrownInfo(task.componentStack)
|
|
6510
|
-
|
|
6511
|
-
var request$jscomp$1 = request$jscomp$0,
|
|
6488
|
+
var errorInfo = getThrownInfo(task.componentStack),
|
|
6489
|
+
request$jscomp$0 = request,
|
|
6512
6490
|
boundary = task.blockedBoundary,
|
|
6513
6491
|
error$jscomp$0 =
|
|
6514
|
-
12 === request
|
|
6515
|
-
? request$jscomp$0.fatalError
|
|
6516
|
-
: x,
|
|
6492
|
+
12 === request.status ? request.fatalError : x,
|
|
6517
6493
|
replayNodes = task.replay.nodes,
|
|
6518
|
-
resumeSlots = task.replay.slots
|
|
6519
|
-
|
|
6520
|
-
|
|
6521
|
-
|
|
6522
|
-
|
|
6523
|
-
|
|
6494
|
+
resumeSlots = task.replay.slots,
|
|
6495
|
+
errorDigest = logRecoverableError(
|
|
6496
|
+
request$jscomp$0,
|
|
6497
|
+
error$jscomp$0,
|
|
6498
|
+
errorInfo
|
|
6499
|
+
);
|
|
6524
6500
|
abortRemainingReplayNodes(
|
|
6525
|
-
request$jscomp$
|
|
6501
|
+
request$jscomp$0,
|
|
6526
6502
|
boundary,
|
|
6527
6503
|
replayNodes,
|
|
6528
6504
|
resumeSlots,
|
|
6529
6505
|
error$jscomp$0,
|
|
6530
|
-
|
|
6506
|
+
errorDigest
|
|
6531
6507
|
);
|
|
6532
|
-
request
|
|
6533
|
-
0 === request
|
|
6534
|
-
|
|
6535
|
-
request
|
|
6536
|
-
0 === request$jscomp$0.allPendingTasks &&
|
|
6537
|
-
completeAll(request$jscomp$0);
|
|
6508
|
+
request.pendingRootTasks--;
|
|
6509
|
+
0 === request.pendingRootTasks && completeShell(request);
|
|
6510
|
+
request.allPendingTasks--;
|
|
6511
|
+
0 === request.allPendingTasks && completeAll(request);
|
|
6538
6512
|
}
|
|
6539
6513
|
} finally {
|
|
6540
6514
|
}
|
|
6541
6515
|
}
|
|
6542
6516
|
} else if (
|
|
6543
|
-
((request$jscomp$0 =
|
|
6544
|
-
(request$jscomp$1 = segment),
|
|
6545
|
-
0 === request$jscomp$1.status)
|
|
6517
|
+
((request$jscomp$0 = segment), 0 === request$jscomp$0.status)
|
|
6546
6518
|
) {
|
|
6547
|
-
request$jscomp$
|
|
6519
|
+
request$jscomp$0.status = 6;
|
|
6548
6520
|
switchContext(task.context);
|
|
6549
|
-
var childrenLength = request$jscomp$
|
|
6550
|
-
chunkLength = request$jscomp$
|
|
6521
|
+
var childrenLength = request$jscomp$0.children.length,
|
|
6522
|
+
chunkLength = request$jscomp$0.chunks.length;
|
|
6551
6523
|
try {
|
|
6552
6524
|
retryNode(request, task),
|
|
6553
|
-
request$jscomp$
|
|
6554
|
-
request$jscomp$
|
|
6555
|
-
request$jscomp$
|
|
6525
|
+
request$jscomp$0.lastPushedText &&
|
|
6526
|
+
request$jscomp$0.textEmbedded &&
|
|
6527
|
+
request$jscomp$0.chunks.push(textSeparator),
|
|
6556
6528
|
task.abortSet.delete(task),
|
|
6557
|
-
(request$jscomp$
|
|
6558
|
-
finishedSegment(request, task.blockedBoundary, request$jscomp$
|
|
6529
|
+
(request$jscomp$0.status = 1),
|
|
6530
|
+
finishedSegment(request, task.blockedBoundary, request$jscomp$0),
|
|
6559
6531
|
finishedTask(
|
|
6560
6532
|
request,
|
|
6561
6533
|
task.blockedBoundary,
|
|
6562
6534
|
task.row,
|
|
6563
|
-
request$jscomp$
|
|
6535
|
+
request$jscomp$0
|
|
6564
6536
|
);
|
|
6565
6537
|
} catch (thrownValue) {
|
|
6566
6538
|
resetHooksState();
|
|
6567
|
-
request$jscomp$
|
|
6568
|
-
request$jscomp$
|
|
6539
|
+
request$jscomp$0.children.length = childrenLength;
|
|
6540
|
+
request$jscomp$0.chunks.length = chunkLength;
|
|
6569
6541
|
var x$jscomp$0 =
|
|
6570
6542
|
thrownValue === SuspenseException
|
|
6571
6543
|
? getSuspendedThenable()
|
|
@@ -6577,19 +6549,19 @@ function performWork(request$jscomp$2) {
|
|
|
6577
6549
|
thrownInfo = getThrownInfo(task.componentStack);
|
|
6578
6550
|
task.abortSet.delete(task);
|
|
6579
6551
|
logRecoverableError(request, x$jscomp$0, thrownInfo);
|
|
6580
|
-
trackPostpone(request, trackedPostpones, task, request$jscomp$
|
|
6552
|
+
trackPostpone(request, trackedPostpones, task, request$jscomp$0);
|
|
6581
6553
|
finishedTask(
|
|
6582
6554
|
request,
|
|
6583
6555
|
task.blockedBoundary,
|
|
6584
6556
|
task.row,
|
|
6585
|
-
request$jscomp$
|
|
6557
|
+
request$jscomp$0
|
|
6586
6558
|
);
|
|
6587
6559
|
} else if (
|
|
6588
6560
|
"object" === typeof x$jscomp$0 &&
|
|
6589
6561
|
null !== x$jscomp$0 &&
|
|
6590
6562
|
"function" === typeof x$jscomp$0.then
|
|
6591
6563
|
) {
|
|
6592
|
-
request$jscomp$
|
|
6564
|
+
request$jscomp$0.status = 0;
|
|
6593
6565
|
task.thenableState =
|
|
6594
6566
|
thrownValue === SuspenseException
|
|
6595
6567
|
? getThenableStateAfterSuspending()
|
|
@@ -6599,14 +6571,14 @@ function performWork(request$jscomp$2) {
|
|
|
6599
6571
|
} else {
|
|
6600
6572
|
var errorInfo$jscomp$0 = getThrownInfo(task.componentStack);
|
|
6601
6573
|
task.abortSet.delete(task);
|
|
6602
|
-
request$jscomp$
|
|
6574
|
+
request$jscomp$0.status = 4;
|
|
6603
6575
|
var boundary$jscomp$0 = task.blockedBoundary,
|
|
6604
6576
|
row = task.row;
|
|
6605
6577
|
null !== row &&
|
|
6606
6578
|
0 === --row.pendingTasks &&
|
|
6607
6579
|
finishSuspenseListRow(request, row);
|
|
6608
6580
|
request.allPendingTasks--;
|
|
6609
|
-
|
|
6581
|
+
var errorDigest$jscomp$0 = logRecoverableError(
|
|
6610
6582
|
request,
|
|
6611
6583
|
x$jscomp$0,
|
|
6612
6584
|
errorInfo$jscomp$0
|
|
@@ -6617,7 +6589,7 @@ function performWork(request$jscomp$2) {
|
|
|
6617
6589
|
4 !== boundary$jscomp$0.status)
|
|
6618
6590
|
) {
|
|
6619
6591
|
boundary$jscomp$0.status = 4;
|
|
6620
|
-
boundary$jscomp$0.errorDigest =
|
|
6592
|
+
boundary$jscomp$0.errorDigest = errorDigest$jscomp$0;
|
|
6621
6593
|
untrackBoundary(request, boundary$jscomp$0);
|
|
6622
6594
|
var boundaryRow = boundary$jscomp$0.row;
|
|
6623
6595
|
null !== boundaryRow &&
|
|
@@ -6637,11 +6609,11 @@ function performWork(request$jscomp$2) {
|
|
|
6637
6609
|
}
|
|
6638
6610
|
}
|
|
6639
6611
|
pingedTasks.splice(0, i);
|
|
6640
|
-
null !== request$jscomp$
|
|
6641
|
-
flushCompletedQueues(request$jscomp$
|
|
6612
|
+
null !== request$jscomp$1.destination &&
|
|
6613
|
+
flushCompletedQueues(request$jscomp$1, request$jscomp$1.destination);
|
|
6642
6614
|
} catch (error) {
|
|
6643
|
-
logRecoverableError(request$jscomp$
|
|
6644
|
-
fatalError(request$jscomp$
|
|
6615
|
+
logRecoverableError(request$jscomp$1, error, {}),
|
|
6616
|
+
fatalError(request$jscomp$1, error);
|
|
6645
6617
|
} finally {
|
|
6646
6618
|
(currentResumableState = prevResumableState),
|
|
6647
6619
|
(ReactSharedInternals.H = prevDispatcher),
|
|
@@ -7366,11 +7338,11 @@ function getPostponedState(request) {
|
|
|
7366
7338
|
}
|
|
7367
7339
|
function ensureCorrectIsomorphicReactVersion() {
|
|
7368
7340
|
var isomorphicReactPackageVersion = React.version;
|
|
7369
|
-
if ("19.3.0-canary-
|
|
7341
|
+
if ("19.3.0-canary-dd048c3b-20251105" !== isomorphicReactPackageVersion)
|
|
7370
7342
|
throw Error(
|
|
7371
7343
|
'Incompatible React versions: The "react" and "react-dom" packages must have the exact same version. Instead got:\n - react: ' +
|
|
7372
7344
|
(isomorphicReactPackageVersion +
|
|
7373
|
-
"\n - react-dom: 19.3.0-canary-
|
|
7345
|
+
"\n - react-dom: 19.3.0-canary-dd048c3b-20251105\nLearn more: https://react.dev/warnings/version-mismatch")
|
|
7374
7346
|
);
|
|
7375
7347
|
}
|
|
7376
7348
|
ensureCorrectIsomorphicReactVersion();
|
|
@@ -7411,7 +7383,6 @@ function createRequestImpl(children, options) {
|
|
|
7411
7383
|
options ? options.onShellReady : void 0,
|
|
7412
7384
|
options ? options.onShellError : void 0,
|
|
7413
7385
|
void 0,
|
|
7414
|
-
options ? options.onPostpone : void 0,
|
|
7415
7386
|
options ? options.formState : void 0
|
|
7416
7387
|
);
|
|
7417
7388
|
}
|
|
@@ -7448,8 +7419,7 @@ function resumeRequestImpl(children, postponedState, options) {
|
|
|
7448
7419
|
options ? options.onAllReady : void 0,
|
|
7449
7420
|
options ? options.onShellReady : void 0,
|
|
7450
7421
|
options ? options.onShellError : void 0,
|
|
7451
|
-
void 0
|
|
7452
|
-
options ? options.onPostpone : void 0
|
|
7422
|
+
void 0
|
|
7453
7423
|
);
|
|
7454
7424
|
}
|
|
7455
7425
|
ensureCorrectIsomorphicReactVersion();
|
|
@@ -7536,8 +7506,7 @@ exports.prerender = function (children, options) {
|
|
|
7536
7506
|
},
|
|
7537
7507
|
void 0,
|
|
7538
7508
|
void 0,
|
|
7539
|
-
reject
|
|
7540
|
-
options ? options.onPostpone : void 0
|
|
7509
|
+
reject
|
|
7541
7510
|
);
|
|
7542
7511
|
if (options && options.signal) {
|
|
7543
7512
|
var signal = options.signal;
|
|
@@ -7591,8 +7560,7 @@ exports.prerenderToNodeStream = function (children, options) {
|
|
|
7591
7560
|
},
|
|
7592
7561
|
void 0,
|
|
7593
7562
|
void 0,
|
|
7594
|
-
reject
|
|
7595
|
-
options ? options.onPostpone : void 0
|
|
7563
|
+
reject
|
|
7596
7564
|
);
|
|
7597
7565
|
if (options && options.signal) {
|
|
7598
7566
|
var signal = options.signal;
|
|
@@ -7712,7 +7680,6 @@ exports.renderToReadableStream = function (children, options) {
|
|
|
7712
7680
|
reject(error);
|
|
7713
7681
|
},
|
|
7714
7682
|
onFatalError,
|
|
7715
|
-
options ? options.onPostpone : void 0,
|
|
7716
7683
|
options ? options.formState : void 0
|
|
7717
7684
|
);
|
|
7718
7685
|
if (options && options.signal) {
|
|
@@ -7778,8 +7745,7 @@ exports.resume = function (children, postponedState, options) {
|
|
|
7778
7745
|
allReady.catch(function () {});
|
|
7779
7746
|
reject(error);
|
|
7780
7747
|
},
|
|
7781
|
-
onFatalError
|
|
7782
|
-
options ? options.onPostpone : void 0
|
|
7748
|
+
onFatalError
|
|
7783
7749
|
);
|
|
7784
7750
|
if (options && options.signal) {
|
|
7785
7751
|
var signal = options.signal;
|
|
@@ -7833,8 +7799,7 @@ exports.resumeAndPrerender = function (children, postponedState, options) {
|
|
|
7833
7799
|
},
|
|
7834
7800
|
void 0,
|
|
7835
7801
|
void 0,
|
|
7836
|
-
reject
|
|
7837
|
-
options ? options.onPostpone : void 0
|
|
7802
|
+
reject
|
|
7838
7803
|
);
|
|
7839
7804
|
if (options && options.signal) {
|
|
7840
7805
|
var signal = options.signal;
|
|
@@ -7880,8 +7845,7 @@ exports.resumeAndPrerenderToNodeStream = function (
|
|
|
7880
7845
|
},
|
|
7881
7846
|
void 0,
|
|
7882
7847
|
void 0,
|
|
7883
|
-
reject
|
|
7884
|
-
options ? options.onPostpone : void 0
|
|
7848
|
+
reject
|
|
7885
7849
|
);
|
|
7886
7850
|
if (options && options.signal) {
|
|
7887
7851
|
var signal = options.signal;
|
|
@@ -7928,4 +7892,4 @@ exports.resumeToPipeableStream = function (children, postponedState, options) {
|
|
|
7928
7892
|
}
|
|
7929
7893
|
};
|
|
7930
7894
|
};
|
|
7931
|
-
exports.version = "19.3.0-canary-
|
|
7895
|
+
exports.version = "19.3.0-canary-dd048c3b-20251105";
|
|
@@ -416,7 +416,7 @@
|
|
|
416
416
|
exports.useFormStatus = function () {
|
|
417
417
|
return resolveDispatcher().useHostTransitionStatus();
|
|
418
418
|
};
|
|
419
|
-
exports.version = "19.3.0-canary-
|
|
419
|
+
exports.version = "19.3.0-canary-dd048c3b-20251105";
|
|
420
420
|
"undefined" !== typeof __REACT_DEVTOOLS_GLOBAL_HOOK__ &&
|
|
421
421
|
"function" ===
|
|
422
422
|
typeof __REACT_DEVTOOLS_GLOBAL_HOOK__.registerInternalModuleStop &&
|
|
@@ -207,4 +207,4 @@ exports.useFormState = function (action, initialState, permalink) {
|
|
|
207
207
|
exports.useFormStatus = function () {
|
|
208
208
|
return ReactSharedInternals.H.useHostTransitionStatus();
|
|
209
209
|
};
|
|
210
|
-
exports.version = "19.3.0-canary-
|
|
210
|
+
exports.version = "19.3.0-canary-dd048c3b-20251105";
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "react-dom",
|
|
3
|
-
"version": "19.3.0-canary-
|
|
3
|
+
"version": "19.3.0-canary-dd048c3b-20251105",
|
|
4
4
|
"description": "React package for working with the DOM.",
|
|
5
5
|
"main": "index.js",
|
|
6
6
|
"repository": {
|
|
@@ -17,10 +17,10 @@
|
|
|
17
17
|
},
|
|
18
18
|
"homepage": "https://react.dev/",
|
|
19
19
|
"dependencies": {
|
|
20
|
-
"scheduler": "0.28.0-canary-
|
|
20
|
+
"scheduler": "0.28.0-canary-dd048c3b-20251105"
|
|
21
21
|
},
|
|
22
22
|
"peerDependencies": {
|
|
23
|
-
"react": "19.3.0-canary-
|
|
23
|
+
"react": "19.3.0-canary-dd048c3b-20251105"
|
|
24
24
|
},
|
|
25
25
|
"files": [
|
|
26
26
|
"LICENSE",
|