react-markup 0.0.0-experimental-dd048c3b-20251105 → 0.0.0-experimental-fa50caf5-20251107
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.
|
@@ -3518,7 +3518,9 @@ function describeComponentStackByType(type) {
|
|
|
3518
3518
|
return "";
|
|
3519
3519
|
}
|
|
3520
3520
|
function isEligibleForOutlining(request, boundary) {
|
|
3521
|
-
return (
|
|
3521
|
+
return (
|
|
3522
|
+
(500 < boundary.byteSize || boundary.defer) && null === boundary.preamble
|
|
3523
|
+
);
|
|
3522
3524
|
}
|
|
3523
3525
|
function defaultErrorHandler(error) {
|
|
3524
3526
|
if (
|
|
@@ -3645,8 +3647,8 @@ function createSuspenseBoundary(
|
|
|
3645
3647
|
request,
|
|
3646
3648
|
row,
|
|
3647
3649
|
fallbackAbortableTasks,
|
|
3648
|
-
|
|
3649
|
-
|
|
3650
|
+
preamble,
|
|
3651
|
+
defer
|
|
3650
3652
|
) {
|
|
3651
3653
|
fallbackAbortableTasks = {
|
|
3652
3654
|
status: 0,
|
|
@@ -3656,22 +3658,21 @@ function createSuspenseBoundary(
|
|
|
3656
3658
|
row: row,
|
|
3657
3659
|
completedSegments: [],
|
|
3658
3660
|
byteSize: 0,
|
|
3661
|
+
defer: defer,
|
|
3659
3662
|
fallbackAbortableTasks: fallbackAbortableTasks,
|
|
3660
3663
|
errorDigest: null,
|
|
3661
3664
|
contentState: createHoistableState(),
|
|
3662
3665
|
fallbackState: createHoistableState(),
|
|
3663
|
-
|
|
3664
|
-
|
|
3665
|
-
trackedContentKeyPath: null,
|
|
3666
|
-
trackedFallbackNode: null
|
|
3666
|
+
preamble: preamble,
|
|
3667
|
+
tracked: null
|
|
3667
3668
|
};
|
|
3668
3669
|
null !== row &&
|
|
3669
3670
|
(row.pendingTasks++,
|
|
3670
|
-
(
|
|
3671
|
-
null !==
|
|
3671
|
+
(preamble = row.boundaries),
|
|
3672
|
+
null !== preamble &&
|
|
3672
3673
|
(request.allPendingTasks++,
|
|
3673
3674
|
fallbackAbortableTasks.pendingTasks++,
|
|
3674
|
-
|
|
3675
|
+
preamble.push(fallbackAbortableTasks)),
|
|
3675
3676
|
(request = row.inheritedHoistables),
|
|
3676
3677
|
null !== request &&
|
|
3677
3678
|
hoistHoistables(fallbackAbortableTasks.contentState, request));
|
|
@@ -4498,6 +4499,7 @@ function renderElement(request, task, keyPath, type, props, ref) {
|
|
|
4498
4499
|
parentSegment = task.blockedSegment,
|
|
4499
4500
|
fallback = props.fallback,
|
|
4500
4501
|
content = props.children,
|
|
4502
|
+
defer = !0 === props.defer,
|
|
4501
4503
|
fallbackAbortSet = new Set();
|
|
4502
4504
|
var newBoundary =
|
|
4503
4505
|
2 > task.formatContext.insertionMode
|
|
@@ -4505,18 +4507,19 @@ function renderElement(request, task, keyPath, type, props, ref) {
|
|
|
4505
4507
|
request,
|
|
4506
4508
|
task.row,
|
|
4507
4509
|
fallbackAbortSet,
|
|
4508
|
-
|
|
4509
|
-
|
|
4510
|
+
{
|
|
4511
|
+
content: createPreambleState(),
|
|
4512
|
+
fallback: createPreambleState()
|
|
4513
|
+
},
|
|
4514
|
+
defer
|
|
4510
4515
|
)
|
|
4511
4516
|
: createSuspenseBoundary(
|
|
4512
4517
|
request,
|
|
4513
4518
|
task.row,
|
|
4514
4519
|
fallbackAbortSet,
|
|
4515
4520
|
null,
|
|
4516
|
-
|
|
4521
|
+
defer
|
|
4517
4522
|
);
|
|
4518
|
-
null !== request.trackedPostpones &&
|
|
4519
|
-
(newBoundary.trackedContentKeyPath = keyPath);
|
|
4520
4523
|
var boundarySegment = createPendingSegment(
|
|
4521
4524
|
request,
|
|
4522
4525
|
parentSegment.chunks.length,
|
|
@@ -4536,22 +4539,31 @@ function renderElement(request, task, keyPath, type, props, ref) {
|
|
|
4536
4539
|
!1
|
|
4537
4540
|
);
|
|
4538
4541
|
contentRootSegment.parentFlushed = !0;
|
|
4539
|
-
|
|
4542
|
+
var trackedPostpones = request.trackedPostpones;
|
|
4543
|
+
if (null !== trackedPostpones || defer) {
|
|
4540
4544
|
var suspenseComponentStack = task.componentStack,
|
|
4541
|
-
fallbackKeyPath = [keyPath[0], "Suspense Fallback", keyPath[2]]
|
|
4542
|
-
|
|
4545
|
+
fallbackKeyPath = [keyPath[0], "Suspense Fallback", keyPath[2]];
|
|
4546
|
+
if (null !== trackedPostpones) {
|
|
4547
|
+
var fallbackReplayNode = [
|
|
4543
4548
|
fallbackKeyPath[1],
|
|
4544
4549
|
fallbackKeyPath[2],
|
|
4545
4550
|
[],
|
|
4546
4551
|
null
|
|
4547
4552
|
];
|
|
4548
|
-
|
|
4549
|
-
|
|
4550
|
-
|
|
4551
|
-
|
|
4552
|
-
|
|
4553
|
+
trackedPostpones.workingMap.set(
|
|
4554
|
+
fallbackKeyPath,
|
|
4555
|
+
fallbackReplayNode
|
|
4556
|
+
);
|
|
4557
|
+
newBoundary.tracked = {
|
|
4558
|
+
contentKeyPath: keyPath,
|
|
4559
|
+
fallbackNode: fallbackReplayNode
|
|
4560
|
+
};
|
|
4561
|
+
}
|
|
4553
4562
|
task.blockedSegment = boundarySegment;
|
|
4554
|
-
task.blockedPreamble =
|
|
4563
|
+
task.blockedPreamble =
|
|
4564
|
+
null === newBoundary.preamble
|
|
4565
|
+
? null
|
|
4566
|
+
: newBoundary.preamble.fallback;
|
|
4555
4567
|
task.keyPath = fallbackKeyPath;
|
|
4556
4568
|
task.formatContext = getSuspenseFallbackFormatContext(
|
|
4557
4569
|
request.resumableState,
|
|
@@ -4583,7 +4595,9 @@ function renderElement(request, task, keyPath, type, props, ref) {
|
|
|
4583
4595
|
-1,
|
|
4584
4596
|
newBoundary,
|
|
4585
4597
|
contentRootSegment,
|
|
4586
|
-
newBoundary.
|
|
4598
|
+
null === newBoundary.preamble
|
|
4599
|
+
? null
|
|
4600
|
+
: newBoundary.preamble.content,
|
|
4587
4601
|
newBoundary.contentState,
|
|
4588
4602
|
task.abortSet,
|
|
4589
4603
|
keyPath,
|
|
@@ -4600,7 +4614,10 @@ function renderElement(request, task, keyPath, type, props, ref) {
|
|
|
4600
4614
|
request.pingedTasks.push(suspendedPrimaryTask);
|
|
4601
4615
|
} else {
|
|
4602
4616
|
task.blockedBoundary = newBoundary;
|
|
4603
|
-
task.blockedPreamble =
|
|
4617
|
+
task.blockedPreamble =
|
|
4618
|
+
null === newBoundary.preamble
|
|
4619
|
+
? null
|
|
4620
|
+
: newBoundary.preamble.content;
|
|
4604
4621
|
task.hoistableState = newBoundary.contentState;
|
|
4605
4622
|
task.blockedSegment = contentRootSegment;
|
|
4606
4623
|
task.keyPath = keyPath;
|
|
@@ -4659,7 +4676,9 @@ function renderElement(request, task, keyPath, type, props, ref) {
|
|
|
4659
4676
|
-1,
|
|
4660
4677
|
parentBoundary,
|
|
4661
4678
|
boundarySegment,
|
|
4662
|
-
newBoundary.
|
|
4679
|
+
null === newBoundary.preamble
|
|
4680
|
+
? null
|
|
4681
|
+
: newBoundary.preamble.fallback,
|
|
4663
4682
|
newBoundary.fallbackState,
|
|
4664
4683
|
fallbackAbortSet,
|
|
4665
4684
|
[keyPath[0], "Suspense Fallback", keyPath[2]],
|
|
@@ -4861,12 +4880,13 @@ function retryNode(request, task) {
|
|
|
4861
4880
|
);
|
|
4862
4881
|
task.replay.pendingTasks--;
|
|
4863
4882
|
props = getThrownInfo(task.componentStack);
|
|
4864
|
-
key =
|
|
4883
|
+
key = request;
|
|
4884
|
+
request = task.blockedBoundary;
|
|
4865
4885
|
type = x;
|
|
4866
|
-
props = logRecoverableError(
|
|
4886
|
+
props = logRecoverableError(key, type, props);
|
|
4867
4887
|
abortRemainingReplayNodes(
|
|
4868
|
-
request,
|
|
4869
4888
|
key,
|
|
4889
|
+
request,
|
|
4870
4890
|
childNodes,
|
|
4871
4891
|
childSlots,
|
|
4872
4892
|
type,
|
|
@@ -4896,28 +4916,32 @@ function retryNode(request, task) {
|
|
|
4896
4916
|
parentBoundary = task.blockedBoundary,
|
|
4897
4917
|
parentHoistableState = task.hoistableState,
|
|
4898
4918
|
content = props.children,
|
|
4899
|
-
fallback = props.fallback
|
|
4900
|
-
|
|
4901
|
-
props =
|
|
4919
|
+
fallback = props.fallback;
|
|
4920
|
+
var resumedBoundary = !0 === props.defer;
|
|
4921
|
+
props = new Set();
|
|
4922
|
+
resumedBoundary =
|
|
4902
4923
|
2 > task.formatContext.insertionMode
|
|
4903
4924
|
? createSuspenseBoundary(
|
|
4904
4925
|
request,
|
|
4905
4926
|
task.row,
|
|
4906
|
-
|
|
4907
|
-
|
|
4908
|
-
|
|
4927
|
+
props,
|
|
4928
|
+
{
|
|
4929
|
+
content: createPreambleState(),
|
|
4930
|
+
fallback: createPreambleState()
|
|
4931
|
+
},
|
|
4932
|
+
resumedBoundary
|
|
4909
4933
|
)
|
|
4910
4934
|
: createSuspenseBoundary(
|
|
4911
4935
|
request,
|
|
4912
4936
|
task.row,
|
|
4913
|
-
|
|
4937
|
+
props,
|
|
4914
4938
|
null,
|
|
4915
|
-
|
|
4939
|
+
resumedBoundary
|
|
4916
4940
|
);
|
|
4917
|
-
|
|
4918
|
-
|
|
4919
|
-
task.blockedBoundary =
|
|
4920
|
-
task.hoistableState =
|
|
4941
|
+
resumedBoundary.parentFlushed = !0;
|
|
4942
|
+
resumedBoundary.rootSegmentID = replay;
|
|
4943
|
+
task.blockedBoundary = resumedBoundary;
|
|
4944
|
+
task.hoistableState = resumedBoundary.contentState;
|
|
4921
4945
|
task.keyPath = key;
|
|
4922
4946
|
task.formatContext = getSuspenseContentFormatContext(
|
|
4923
4947
|
request.resumableState,
|
|
@@ -4939,22 +4963,27 @@ function retryNode(request, task) {
|
|
|
4939
4963
|
"Couldn't find all resumable slots by key/index during replaying. The tree doesn't match so React will fallback to client rendering."
|
|
4940
4964
|
);
|
|
4941
4965
|
task.replay.pendingTasks--;
|
|
4942
|
-
if (
|
|
4943
|
-
|
|
4944
|
-
|
|
4966
|
+
if (
|
|
4967
|
+
0 === resumedBoundary.pendingTasks &&
|
|
4968
|
+
0 === resumedBoundary.status
|
|
4969
|
+
) {
|
|
4970
|
+
resumedBoundary.status = 1;
|
|
4971
|
+
request.completedBoundaries.push(resumedBoundary);
|
|
4945
4972
|
break b;
|
|
4946
4973
|
}
|
|
4947
4974
|
} catch (error) {
|
|
4948
|
-
(
|
|
4975
|
+
(resumedBoundary.status = 4),
|
|
4949
4976
|
(childNodes = getThrownInfo(task.componentStack)),
|
|
4950
4977
|
(childSlots = logRecoverableError(
|
|
4951
4978
|
request,
|
|
4952
4979
|
error,
|
|
4953
4980
|
childNodes
|
|
4954
4981
|
)),
|
|
4955
|
-
(
|
|
4982
|
+
(resumedBoundary.errorDigest = childSlots),
|
|
4956
4983
|
task.replay.pendingTasks--,
|
|
4957
|
-
request.clientRenderedBoundaries.push(
|
|
4984
|
+
request.clientRenderedBoundaries.push(
|
|
4985
|
+
resumedBoundary
|
|
4986
|
+
);
|
|
4958
4987
|
} finally {
|
|
4959
4988
|
(task.blockedBoundary = parentBoundary),
|
|
4960
4989
|
(task.hoistableState = parentHoistableState),
|
|
@@ -4970,8 +4999,8 @@ function retryNode(request, task) {
|
|
|
4970
4999
|
fallback,
|
|
4971
5000
|
-1,
|
|
4972
5001
|
parentBoundary,
|
|
4973
|
-
|
|
4974
|
-
|
|
5002
|
+
resumedBoundary.fallbackState,
|
|
5003
|
+
props,
|
|
4975
5004
|
[key[0], "Suspense Fallback", key[2]],
|
|
4976
5005
|
getSuspenseFallbackFormatContext(
|
|
4977
5006
|
request.resumableState,
|
|
@@ -5161,13 +5190,18 @@ function renderChildrenArray(request, task, children, childIndex) {
|
|
|
5161
5190
|
function trackPostponedBoundary(request, trackedPostpones, boundary) {
|
|
5162
5191
|
boundary.status = 5;
|
|
5163
5192
|
boundary.rootSegmentID = request.nextSegmentId++;
|
|
5164
|
-
|
|
5193
|
+
var tracked = boundary.tracked;
|
|
5194
|
+
if (null === tracked)
|
|
5195
|
+
throw Error(
|
|
5196
|
+
"It should not be possible to postpone at the root. This is a bug in React."
|
|
5197
|
+
);
|
|
5198
|
+
request = tracked.contentKeyPath;
|
|
5165
5199
|
if (null === request)
|
|
5166
5200
|
throw Error(
|
|
5167
5201
|
"It should not be possible to postpone at the root. This is a bug in React."
|
|
5168
5202
|
);
|
|
5169
|
-
|
|
5170
|
-
|
|
5203
|
+
tracked = tracked.fallbackNode;
|
|
5204
|
+
var children = [],
|
|
5171
5205
|
boundaryNode = trackedPostpones.workingMap.get(request);
|
|
5172
5206
|
if (void 0 === boundaryNode)
|
|
5173
5207
|
return (
|
|
@@ -5176,14 +5210,14 @@ function trackPostponedBoundary(request, trackedPostpones, boundary) {
|
|
|
5176
5210
|
request[2],
|
|
5177
5211
|
children,
|
|
5178
5212
|
null,
|
|
5179
|
-
|
|
5213
|
+
tracked,
|
|
5180
5214
|
boundary.rootSegmentID
|
|
5181
5215
|
]),
|
|
5182
5216
|
trackedPostpones.workingMap.set(request, boundary),
|
|
5183
5217
|
addToReplayParent(boundary, request[0], trackedPostpones),
|
|
5184
5218
|
boundary
|
|
5185
5219
|
);
|
|
5186
|
-
boundaryNode[4] =
|
|
5220
|
+
boundaryNode[4] = tracked;
|
|
5187
5221
|
boundaryNode[5] = boundary.rootSegmentID;
|
|
5188
5222
|
return boundaryNode;
|
|
5189
5223
|
}
|
|
@@ -5204,7 +5238,8 @@ function trackPostpone(request, trackedPostpones, task, segment) {
|
|
|
5204
5238
|
boundary
|
|
5205
5239
|
);
|
|
5206
5240
|
if (
|
|
5207
|
-
boundary.
|
|
5241
|
+
null !== boundary.tracked &&
|
|
5242
|
+
boundary.tracked.contentKeyPath === keyPath &&
|
|
5208
5243
|
-1 === task.childIndex
|
|
5209
5244
|
) {
|
|
5210
5245
|
-1 === segment.id &&
|
|
@@ -5260,11 +5295,13 @@ function trackPostpone(request, trackedPostpones, task, segment) {
|
|
|
5260
5295
|
function untrackBoundary(request, boundary) {
|
|
5261
5296
|
request = request.trackedPostpones;
|
|
5262
5297
|
null !== request &&
|
|
5263
|
-
((boundary = boundary.
|
|
5298
|
+
((boundary = boundary.tracked),
|
|
5264
5299
|
null !== boundary &&
|
|
5265
|
-
((boundary =
|
|
5266
|
-
|
|
5267
|
-
((
|
|
5300
|
+
((boundary = boundary.contentKeyPath),
|
|
5301
|
+
null !== boundary &&
|
|
5302
|
+
((request = request.workingMap.get(boundary)),
|
|
5303
|
+
void 0 !== request &&
|
|
5304
|
+
((request.length = 4), (request[2] = []), (request[3] = null)))));
|
|
5268
5305
|
}
|
|
5269
5306
|
function spawnNewSuspendedReplayTask(request, task, thenableState) {
|
|
5270
5307
|
return createReplayTask(
|
|
@@ -5459,7 +5496,7 @@ function abortRemainingReplayNodes(
|
|
|
5459
5496
|
null,
|
|
5460
5497
|
new Set(),
|
|
5461
5498
|
null,
|
|
5462
|
-
|
|
5499
|
+
!1
|
|
5463
5500
|
);
|
|
5464
5501
|
resumedBoundary.parentFlushed = !0;
|
|
5465
5502
|
resumedBoundary.rootSegmentID = node;
|
|
@@ -5690,7 +5727,7 @@ function finishedTask(request, boundary, row, segment) {
|
|
|
5690
5727
|
finishSuspenseListRow(request, row)),
|
|
5691
5728
|
0 === request.pendingRootTasks &&
|
|
5692
5729
|
null === request.trackedPostpones &&
|
|
5693
|
-
null !== boundary.
|
|
5730
|
+
null !== boundary.preamble &&
|
|
5694
5731
|
preparePreamble(request);
|
|
5695
5732
|
else {
|
|
5696
5733
|
if (
|
|
@@ -5901,7 +5938,7 @@ function performWork(request$jscomp$1) {
|
|
|
5901
5938
|
request.clientRenderedBoundaries.push(boundary$jscomp$0);
|
|
5902
5939
|
0 === request.pendingRootTasks &&
|
|
5903
5940
|
null === request.trackedPostpones &&
|
|
5904
|
-
null !== boundary$jscomp$0.
|
|
5941
|
+
null !== boundary$jscomp$0.preamble &&
|
|
5905
5942
|
preparePreamble(request);
|
|
5906
5943
|
}
|
|
5907
5944
|
0 === request.allPendingTasks && completeAll(request);
|
|
@@ -5952,12 +5989,11 @@ function preparePreambleFromSegment(
|
|
|
5952
5989
|
segment,
|
|
5953
5990
|
collectedPreambleSegments
|
|
5954
5991
|
);
|
|
5955
|
-
var preamble = boundary.
|
|
5956
|
-
|
|
5957
|
-
if (null === preamble || null === fallbackPreamble) return !1;
|
|
5992
|
+
var preamble = boundary.preamble;
|
|
5993
|
+
if (null === preamble) return !1;
|
|
5958
5994
|
switch (boundary.status) {
|
|
5959
5995
|
case 1:
|
|
5960
|
-
hoistPreambleState(request.renderState, preamble);
|
|
5996
|
+
hoistPreambleState(request.renderState, preamble.content);
|
|
5961
5997
|
request.byteSize += boundary.byteSize;
|
|
5962
5998
|
segment = boundary.completedSegments[0];
|
|
5963
5999
|
if (!segment)
|
|
@@ -5974,7 +6010,7 @@ function preparePreambleFromSegment(
|
|
|
5974
6010
|
case 4:
|
|
5975
6011
|
if (1 === segment.status)
|
|
5976
6012
|
return (
|
|
5977
|
-
hoistPreambleState(request.renderState,
|
|
6013
|
+
hoistPreambleState(request.renderState, preamble.fallback),
|
|
5978
6014
|
preparePreambleFromSubtree(
|
|
5979
6015
|
request,
|
|
5980
6016
|
segment,
|
|
@@ -6077,7 +6113,8 @@ function flushSegment(request, destination, segment, hoistableState) {
|
|
|
6077
6113
|
if (
|
|
6078
6114
|
!flushingPartialBoundaries &&
|
|
6079
6115
|
isEligibleForOutlining(request, boundary) &&
|
|
6080
|
-
flushedByteSize + boundary.byteSize > request.progressiveChunkSize
|
|
6116
|
+
(flushedByteSize + boundary.byteSize > request.progressiveChunkSize ||
|
|
6117
|
+
boundary.defer)
|
|
6081
6118
|
)
|
|
6082
6119
|
return (
|
|
6083
6120
|
(boundary.rootSegmentID = request.nextSegmentId++),
|
|
@@ -6165,7 +6202,7 @@ function flushCompletedBoundary(request, destination, boundary) {
|
|
|
6165
6202
|
0 === (completedSegments.instructions & 256) &&
|
|
6166
6203
|
((completedSegments.instructions |= 256),
|
|
6167
6204
|
destination.push(
|
|
6168
|
-
'$RV=function(A,g){function k(a,b){var e=a.getAttribute(b);e&&(b=a.style,l.push(a,b.viewTransitionName,b.viewTransitionClass),"auto"!==e&&(b.viewTransitionClass=e),(a=a.getAttribute("vt-name"))||(a="_T_"+K++ +"_"),b.viewTransitionName=a,B=!0)}var B=!1,K=0,l=[];try{var f=document.__reactViewTransition;if(f){f.finished.finally($RV.bind(null,g));return}var m=new Map;for(f=1;f<g.length;f+=2)for(var h=g[f].querySelectorAll("[vt-share]"),d=0;d<h.length;d++){var c=h[d];m.set(c.getAttribute("vt-name"),c)}var u=[];for(h=0;h<g.length;h+=2){var C=g[h],x=C.parentNode;if(x){var v=x.getBoundingClientRect();if(v.left||v.top||v.width||v.height){c=C;for(f=0;c;){if(8===c.nodeType){var r=c.data;if("/$"===r)if(0===f)break;else f--;else"$"!==r&&"$?"!==r&&"$~"!==r&&"$!"!==r||f++}else if(1===c.nodeType){d=c;var D=d.getAttribute("vt-name"),y=m.get(D);k(d,y?"vt-share":"vt-exit");y&&(k(y,"vt-share"),m.set(D,null));var E=d.querySelectorAll("[vt-share]")
|
|
6205
|
+
'$RV=function(A,g){function k(a,b){var e=a.getAttribute(b);e&&(b=a.style,l.push(a,b.viewTransitionName,b.viewTransitionClass),"auto"!==e&&(b.viewTransitionClass=e),(a=a.getAttribute("vt-name"))||(a="_T_"+K++ +"_"),a=CSS.escape(a)!==a?"r-"+btoa(a).replace(/=/g,""):a,b.viewTransitionName=a,B=!0)}var B=!1,K=0,l=[];try{var f=document.__reactViewTransition;if(f){f.finished.finally($RV.bind(null,g));return}var m=new Map;for(f=1;f<g.length;f+=2)for(var h=g[f].querySelectorAll("[vt-share]"),d=0;d<h.length;d++){var c=h[d];m.set(c.getAttribute("vt-name"),c)}var u=[];for(h=0;h<g.length;h+=2){var C=g[h],x=C.parentNode;if(x){var v=x.getBoundingClientRect();if(v.left||v.top||v.width||v.height){c=C;for(f=0;c;){if(8===c.nodeType){var r=c.data;if("/$"===r)if(0===f)break;else f--;else"$"!==r&&"$?"!==r&&"$~"!==r&&"$!"!==r||f++}else if(1===c.nodeType){d=c;var D=d.getAttribute("vt-name"),y=m.get(D);k(d,y?"vt-share":"vt-exit");y&&(k(y,"vt-share"),m.set(D,null));var E=d.querySelectorAll("[vt-share]");\nfor(d=0;d<E.length;d++){var F=E[d],G=F.getAttribute("vt-name"),H=m.get(G);H&&(k(F,"vt-share"),k(H,"vt-share"),m.set(G,null))}}c=c.nextSibling}for(var I=g[h+1],t=I.firstElementChild;t;)null!==m.get(t.getAttribute("vt-name"))&&k(t,"vt-enter"),t=t.nextElementSibling;c=x;do for(var n=c.firstElementChild;n;){var J=n.getAttribute("vt-update");J&&"none"!==J&&!l.includes(n)&&k(n,"vt-update");n=n.nextElementSibling}while((c=c.parentNode)&&1===c.nodeType&&"none"!==c.getAttribute("vt-update"));u.push.apply(u,\nI.querySelectorAll(\'img[src]:not([loading="lazy"])\'))}}}if(B){var z=document.__reactViewTransition=document.startViewTransition({update:function(){A(g);for(var a=[document.documentElement.clientHeight,document.fonts.ready],b={},e=0;e<u.length;b={g:b.g},e++)if(b.g=u[e],!b.g.complete){var p=b.g.getBoundingClientRect();0<p.bottom&&0<p.right&&p.top<window.innerHeight&&p.left<window.innerWidth&&(p=new Promise(function(w){return function(q){w.g.addEventListener("load",q);w.g.addEventListener("error",q)}}(b)),\na.push(p))}return Promise.race([Promise.all(a),new Promise(function(w){var q=performance.now();setTimeout(w,2300>q&&2E3<q?2300-q:500)})])},types:[]});z.ready.finally(function(){for(var a=l.length-3;0<=a;a-=3){var b=l[a],e=b.style;e.viewTransitionName=l[a+1];e.viewTransitionClass=l[a+1];""===b.getAttribute("style")&&b.removeAttribute("style")}});z.finished.finally(function(){document.__reactViewTransition===z&&(document.__reactViewTransition=null)});$RB=[];return}}catch(a){}A(g)}.bind(null,\n$RV);'
|
|
6169
6206
|
)),
|
|
6170
6207
|
0 === (completedSegments.instructions & 8)
|
|
6171
6208
|
? ((completedSegments.instructions |= 8),
|
|
@@ -6182,7 +6219,7 @@ function flushCompletedBoundary(request, destination, boundary) {
|
|
|
6182
6219
|
0 === (completedSegments.instructions & 256) &&
|
|
6183
6220
|
((completedSegments.instructions |= 256),
|
|
6184
6221
|
destination.push(
|
|
6185
|
-
'$RV=function(A,g){function k(a,b){var e=a.getAttribute(b);e&&(b=a.style,l.push(a,b.viewTransitionName,b.viewTransitionClass),"auto"!==e&&(b.viewTransitionClass=e),(a=a.getAttribute("vt-name"))||(a="_T_"+K++ +"_"),b.viewTransitionName=a,B=!0)}var B=!1,K=0,l=[];try{var f=document.__reactViewTransition;if(f){f.finished.finally($RV.bind(null,g));return}var m=new Map;for(f=1;f<g.length;f+=2)for(var h=g[f].querySelectorAll("[vt-share]"),d=0;d<h.length;d++){var c=h[d];m.set(c.getAttribute("vt-name"),c)}var u=[];for(h=0;h<g.length;h+=2){var C=g[h],x=C.parentNode;if(x){var v=x.getBoundingClientRect();if(v.left||v.top||v.width||v.height){c=C;for(f=0;c;){if(8===c.nodeType){var r=c.data;if("/$"===r)if(0===f)break;else f--;else"$"!==r&&"$?"!==r&&"$~"!==r&&"$!"!==r||f++}else if(1===c.nodeType){d=c;var D=d.getAttribute("vt-name"),y=m.get(D);k(d,y?"vt-share":"vt-exit");y&&(k(y,"vt-share"),m.set(D,null));var E=d.querySelectorAll("[vt-share]")
|
|
6222
|
+
'$RV=function(A,g){function k(a,b){var e=a.getAttribute(b);e&&(b=a.style,l.push(a,b.viewTransitionName,b.viewTransitionClass),"auto"!==e&&(b.viewTransitionClass=e),(a=a.getAttribute("vt-name"))||(a="_T_"+K++ +"_"),a=CSS.escape(a)!==a?"r-"+btoa(a).replace(/=/g,""):a,b.viewTransitionName=a,B=!0)}var B=!1,K=0,l=[];try{var f=document.__reactViewTransition;if(f){f.finished.finally($RV.bind(null,g));return}var m=new Map;for(f=1;f<g.length;f+=2)for(var h=g[f].querySelectorAll("[vt-share]"),d=0;d<h.length;d++){var c=h[d];m.set(c.getAttribute("vt-name"),c)}var u=[];for(h=0;h<g.length;h+=2){var C=g[h],x=C.parentNode;if(x){var v=x.getBoundingClientRect();if(v.left||v.top||v.width||v.height){c=C;for(f=0;c;){if(8===c.nodeType){var r=c.data;if("/$"===r)if(0===f)break;else f--;else"$"!==r&&"$?"!==r&&"$~"!==r&&"$!"!==r||f++}else if(1===c.nodeType){d=c;var D=d.getAttribute("vt-name"),y=m.get(D);k(d,y?"vt-share":"vt-exit");y&&(k(y,"vt-share"),m.set(D,null));var E=d.querySelectorAll("[vt-share]");\nfor(d=0;d<E.length;d++){var F=E[d],G=F.getAttribute("vt-name"),H=m.get(G);H&&(k(F,"vt-share"),k(H,"vt-share"),m.set(G,null))}}c=c.nextSibling}for(var I=g[h+1],t=I.firstElementChild;t;)null!==m.get(t.getAttribute("vt-name"))&&k(t,"vt-enter"),t=t.nextElementSibling;c=x;do for(var n=c.firstElementChild;n;){var J=n.getAttribute("vt-update");J&&"none"!==J&&!l.includes(n)&&k(n,"vt-update");n=n.nextElementSibling}while((c=c.parentNode)&&1===c.nodeType&&"none"!==c.getAttribute("vt-update"));u.push.apply(u,\nI.querySelectorAll(\'img[src]:not([loading="lazy"])\'))}}}if(B){var z=document.__reactViewTransition=document.startViewTransition({update:function(){A(g);for(var a=[document.documentElement.clientHeight,document.fonts.ready],b={},e=0;e<u.length;b={g:b.g},e++)if(b.g=u[e],!b.g.complete){var p=b.g.getBoundingClientRect();0<p.bottom&&0<p.right&&p.top<window.innerHeight&&p.left<window.innerWidth&&(p=new Promise(function(w){return function(q){w.g.addEventListener("load",q);w.g.addEventListener("error",q)}}(b)),\na.push(p))}return Promise.race([Promise.all(a),new Promise(function(w){var q=performance.now();setTimeout(w,2300>q&&2E3<q?2300-q:500)})])},types:[]});z.ready.finally(function(){for(var a=l.length-3;0<=a;a-=3){var b=l[a],e=b.style;e.viewTransitionName=l[a+1];e.viewTransitionClass=l[a+1];""===b.getAttribute("style")&&b.removeAttribute("style")}});z.finished.finally(function(){document.__reactViewTransition===z&&(document.__reactViewTransition=null)});$RB=[];return}}catch(a){}A(g)}.bind(null,\n$RV);'
|
|
6186
6223
|
)),
|
|
6187
6224
|
destination.push('$RC("')))
|
|
6188
6225
|
: requiresStyleInsertion
|
|
@@ -6643,4 +6680,4 @@ exports.experimental_renderToHTML = function (children, options) {
|
|
|
6643
6680
|
});
|
|
6644
6681
|
});
|
|
6645
6682
|
};
|
|
6646
|
-
exports.version = "19.3.0-experimental-
|
|
6683
|
+
exports.version = "19.3.0-experimental-fa50caf5-20251107";
|