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.
|
@@ -11286,7 +11286,8 @@
|
|
|
11286
11286
|
}
|
|
11287
11287
|
function isEligibleForOutlining(request, boundary) {
|
|
11288
11288
|
return (
|
|
11289
|
-
(500 < boundary.byteSize ||
|
|
11289
|
+
(500 < boundary.byteSize || boundary.defer) &&
|
|
11290
|
+
null === boundary.preamble
|
|
11290
11291
|
);
|
|
11291
11292
|
}
|
|
11292
11293
|
function defaultErrorHandler(error) {
|
|
@@ -11404,8 +11405,8 @@
|
|
|
11404
11405
|
request,
|
|
11405
11406
|
row,
|
|
11406
11407
|
fallbackAbortableTasks,
|
|
11407
|
-
|
|
11408
|
-
|
|
11408
|
+
preamble,
|
|
11409
|
+
defer
|
|
11409
11410
|
) {
|
|
11410
11411
|
fallbackAbortableTasks = {
|
|
11411
11412
|
status: 0,
|
|
@@ -11415,25 +11416,24 @@
|
|
|
11415
11416
|
row: row,
|
|
11416
11417
|
completedSegments: [],
|
|
11417
11418
|
byteSize: 0,
|
|
11419
|
+
defer: defer,
|
|
11418
11420
|
fallbackAbortableTasks: fallbackAbortableTasks,
|
|
11419
11421
|
errorDigest: null,
|
|
11420
11422
|
contentState: createHoistableState(),
|
|
11421
11423
|
fallbackState: createHoistableState(),
|
|
11422
|
-
|
|
11423
|
-
|
|
11424
|
-
trackedContentKeyPath: null,
|
|
11425
|
-
trackedFallbackNode: null,
|
|
11424
|
+
preamble: preamble,
|
|
11425
|
+
tracked: null,
|
|
11426
11426
|
errorMessage: null,
|
|
11427
11427
|
errorStack: null,
|
|
11428
11428
|
errorComponentStack: null
|
|
11429
11429
|
};
|
|
11430
11430
|
null !== row &&
|
|
11431
11431
|
(row.pendingTasks++,
|
|
11432
|
-
(
|
|
11433
|
-
null !==
|
|
11432
|
+
(preamble = row.boundaries),
|
|
11433
|
+
null !== preamble &&
|
|
11434
11434
|
(request.allPendingTasks++,
|
|
11435
11435
|
fallbackAbortableTasks.pendingTasks++,
|
|
11436
|
-
|
|
11436
|
+
preamble.push(fallbackAbortableTasks)),
|
|
11437
11437
|
(request = row.inheritedHoistables),
|
|
11438
11438
|
null !== request &&
|
|
11439
11439
|
hoistHoistables(fallbackAbortableTasks.contentState, request));
|
|
@@ -12767,6 +12767,7 @@
|
|
|
12767
12767
|
parentSegment = task.blockedSegment,
|
|
12768
12768
|
fallback = props.fallback,
|
|
12769
12769
|
content = props.children,
|
|
12770
|
+
defer = !0 === props.defer,
|
|
12770
12771
|
fallbackAbortSet = new Set();
|
|
12771
12772
|
var newBoundary =
|
|
12772
12773
|
2 > task.formatContext.insertionMode
|
|
@@ -12774,18 +12775,19 @@
|
|
|
12774
12775
|
request,
|
|
12775
12776
|
task.row,
|
|
12776
12777
|
fallbackAbortSet,
|
|
12777
|
-
|
|
12778
|
-
|
|
12778
|
+
{
|
|
12779
|
+
content: createPreambleState(),
|
|
12780
|
+
fallback: createPreambleState()
|
|
12781
|
+
},
|
|
12782
|
+
defer
|
|
12779
12783
|
)
|
|
12780
12784
|
: createSuspenseBoundary(
|
|
12781
12785
|
request,
|
|
12782
12786
|
task.row,
|
|
12783
12787
|
fallbackAbortSet,
|
|
12784
12788
|
null,
|
|
12785
|
-
|
|
12789
|
+
defer
|
|
12786
12790
|
);
|
|
12787
|
-
null !== request.trackedPostpones &&
|
|
12788
|
-
(newBoundary.trackedContentKeyPath = keyPath);
|
|
12789
12791
|
var boundarySegment = createPendingSegment(
|
|
12790
12792
|
request,
|
|
12791
12793
|
parentSegment.chunks.length,
|
|
@@ -12805,26 +12807,35 @@
|
|
|
12805
12807
|
!1
|
|
12806
12808
|
);
|
|
12807
12809
|
contentRootSegment.parentFlushed = !0;
|
|
12808
|
-
|
|
12810
|
+
var trackedPostpones = request.trackedPostpones;
|
|
12811
|
+
if (null !== trackedPostpones || defer) {
|
|
12809
12812
|
var suspenseComponentStack = task.componentStack,
|
|
12810
12813
|
fallbackKeyPath = [
|
|
12811
12814
|
keyPath[0],
|
|
12812
12815
|
"Suspense Fallback",
|
|
12813
12816
|
keyPath[2]
|
|
12814
|
-
]
|
|
12815
|
-
|
|
12817
|
+
];
|
|
12818
|
+
if (null !== trackedPostpones) {
|
|
12819
|
+
var fallbackReplayNode = [
|
|
12816
12820
|
fallbackKeyPath[1],
|
|
12817
12821
|
fallbackKeyPath[2],
|
|
12818
12822
|
[],
|
|
12819
12823
|
null
|
|
12820
12824
|
];
|
|
12821
|
-
|
|
12822
|
-
|
|
12823
|
-
|
|
12824
|
-
|
|
12825
|
-
|
|
12825
|
+
trackedPostpones.workingMap.set(
|
|
12826
|
+
fallbackKeyPath,
|
|
12827
|
+
fallbackReplayNode
|
|
12828
|
+
);
|
|
12829
|
+
newBoundary.tracked = {
|
|
12830
|
+
contentKeyPath: keyPath,
|
|
12831
|
+
fallbackNode: fallbackReplayNode
|
|
12832
|
+
};
|
|
12833
|
+
}
|
|
12826
12834
|
task.blockedSegment = boundarySegment;
|
|
12827
|
-
task.blockedPreamble =
|
|
12835
|
+
task.blockedPreamble =
|
|
12836
|
+
null === newBoundary.preamble
|
|
12837
|
+
? null
|
|
12838
|
+
: newBoundary.preamble.fallback;
|
|
12828
12839
|
task.keyPath = fallbackKeyPath;
|
|
12829
12840
|
task.formatContext = getSuspenseFallbackFormatContext(
|
|
12830
12841
|
request.resumableState,
|
|
@@ -12856,7 +12867,9 @@
|
|
|
12856
12867
|
-1,
|
|
12857
12868
|
newBoundary,
|
|
12858
12869
|
contentRootSegment,
|
|
12859
|
-
newBoundary.
|
|
12870
|
+
null === newBoundary.preamble
|
|
12871
|
+
? null
|
|
12872
|
+
: newBoundary.preamble.content,
|
|
12860
12873
|
newBoundary.contentState,
|
|
12861
12874
|
task.abortSet,
|
|
12862
12875
|
keyPath,
|
|
@@ -12875,7 +12888,10 @@
|
|
|
12875
12888
|
request.pingedTasks.push(suspendedPrimaryTask);
|
|
12876
12889
|
} else {
|
|
12877
12890
|
task.blockedBoundary = newBoundary;
|
|
12878
|
-
task.blockedPreamble =
|
|
12891
|
+
task.blockedPreamble =
|
|
12892
|
+
null === newBoundary.preamble
|
|
12893
|
+
? null
|
|
12894
|
+
: newBoundary.preamble.content;
|
|
12879
12895
|
task.hoistableState = newBoundary.contentState;
|
|
12880
12896
|
task.blockedSegment = contentRootSegment;
|
|
12881
12897
|
task.keyPath = keyPath;
|
|
@@ -12946,7 +12962,9 @@
|
|
|
12946
12962
|
-1,
|
|
12947
12963
|
parentBoundary,
|
|
12948
12964
|
boundarySegment,
|
|
12949
|
-
newBoundary.
|
|
12965
|
+
null === newBoundary.preamble
|
|
12966
|
+
? null
|
|
12967
|
+
: newBoundary.preamble.fallback,
|
|
12950
12968
|
newBoundary.fallbackState,
|
|
12951
12969
|
fallbackAbortSet,
|
|
12952
12970
|
[keyPath[0], "Suspense Fallback", keyPath[2]],
|
|
@@ -13206,28 +13224,32 @@
|
|
|
13206
13224
|
parentBoundary = task.blockedBoundary,
|
|
13207
13225
|
parentHoistableState = task.hoistableState,
|
|
13208
13226
|
content = props.children,
|
|
13209
|
-
fallback = props.fallback
|
|
13210
|
-
|
|
13211
|
-
props =
|
|
13227
|
+
fallback = props.fallback;
|
|
13228
|
+
var resumedBoundary = !0 === props.defer;
|
|
13229
|
+
props = new Set();
|
|
13230
|
+
resumedBoundary =
|
|
13212
13231
|
2 > task.formatContext.insertionMode
|
|
13213
13232
|
? createSuspenseBoundary(
|
|
13214
13233
|
replay,
|
|
13215
13234
|
task.row,
|
|
13216
|
-
|
|
13217
|
-
|
|
13218
|
-
|
|
13235
|
+
props,
|
|
13236
|
+
{
|
|
13237
|
+
content: createPreambleState(),
|
|
13238
|
+
fallback: createPreambleState()
|
|
13239
|
+
},
|
|
13240
|
+
resumedBoundary
|
|
13219
13241
|
)
|
|
13220
13242
|
: createSuspenseBoundary(
|
|
13221
13243
|
replay,
|
|
13222
13244
|
task.row,
|
|
13223
|
-
|
|
13245
|
+
props,
|
|
13224
13246
|
null,
|
|
13225
|
-
|
|
13247
|
+
resumedBoundary
|
|
13226
13248
|
);
|
|
13227
|
-
|
|
13228
|
-
|
|
13229
|
-
task.blockedBoundary =
|
|
13230
|
-
task.hoistableState =
|
|
13249
|
+
resumedBoundary.parentFlushed = !0;
|
|
13250
|
+
resumedBoundary.rootSegmentID = request;
|
|
13251
|
+
task.blockedBoundary = resumedBoundary;
|
|
13252
|
+
task.hoistableState = resumedBoundary.contentState;
|
|
13231
13253
|
task.keyPath = keyPath;
|
|
13232
13254
|
task.formatContext = getSuspenseContentFormatContext(
|
|
13233
13255
|
replay.resumableState,
|
|
@@ -13245,13 +13267,16 @@
|
|
|
13245
13267
|
"Couldn't find all resumable slots by key/index during replaying. The tree doesn't match so React will fallback to client rendering."
|
|
13246
13268
|
);
|
|
13247
13269
|
task.replay.pendingTasks--;
|
|
13248
|
-
if (
|
|
13249
|
-
|
|
13250
|
-
|
|
13270
|
+
if (
|
|
13271
|
+
0 === resumedBoundary.pendingTasks &&
|
|
13272
|
+
0 === resumedBoundary.status
|
|
13273
|
+
) {
|
|
13274
|
+
resumedBoundary.status = 1;
|
|
13275
|
+
replay.completedBoundaries.push(resumedBoundary);
|
|
13251
13276
|
break a;
|
|
13252
13277
|
}
|
|
13253
13278
|
} catch (error) {
|
|
13254
|
-
(
|
|
13279
|
+
(resumedBoundary.status = 4),
|
|
13255
13280
|
(childNodes = getThrownInfo(task.componentStack)),
|
|
13256
13281
|
(childSlots = logRecoverableError(
|
|
13257
13282
|
replay,
|
|
@@ -13260,14 +13285,14 @@
|
|
|
13260
13285
|
task.debugTask
|
|
13261
13286
|
)),
|
|
13262
13287
|
encodeErrorForBoundary(
|
|
13263
|
-
|
|
13288
|
+
resumedBoundary,
|
|
13264
13289
|
childSlots,
|
|
13265
13290
|
error,
|
|
13266
13291
|
childNodes,
|
|
13267
13292
|
!1
|
|
13268
13293
|
),
|
|
13269
13294
|
task.replay.pendingTasks--,
|
|
13270
|
-
replay.clientRenderedBoundaries.push(
|
|
13295
|
+
replay.clientRenderedBoundaries.push(resumedBoundary);
|
|
13271
13296
|
} finally {
|
|
13272
13297
|
(task.blockedBoundary = parentBoundary),
|
|
13273
13298
|
(task.hoistableState = parentHoistableState),
|
|
@@ -13283,8 +13308,8 @@
|
|
|
13283
13308
|
fallback,
|
|
13284
13309
|
-1,
|
|
13285
13310
|
parentBoundary,
|
|
13286
|
-
|
|
13287
|
-
|
|
13311
|
+
resumedBoundary.fallbackState,
|
|
13312
|
+
props,
|
|
13288
13313
|
[keyPath[0], "Suspense Fallback", keyPath[2]],
|
|
13289
13314
|
getSuspenseFallbackFormatContext(
|
|
13290
13315
|
replay.resumableState,
|
|
@@ -13693,13 +13718,18 @@
|
|
|
13693
13718
|
function trackPostponedBoundary(request, trackedPostpones, boundary) {
|
|
13694
13719
|
boundary.status = 5;
|
|
13695
13720
|
boundary.rootSegmentID = request.nextSegmentId++;
|
|
13696
|
-
|
|
13721
|
+
var tracked = boundary.tracked;
|
|
13722
|
+
if (null === tracked)
|
|
13723
|
+
throw Error(
|
|
13724
|
+
"It should not be possible to postpone at the root. This is a bug in React."
|
|
13725
|
+
);
|
|
13726
|
+
request = tracked.contentKeyPath;
|
|
13697
13727
|
if (null === request)
|
|
13698
13728
|
throw Error(
|
|
13699
13729
|
"It should not be possible to postpone at the root. This is a bug in React."
|
|
13700
13730
|
);
|
|
13701
|
-
|
|
13702
|
-
|
|
13731
|
+
tracked = tracked.fallbackNode;
|
|
13732
|
+
var children = [],
|
|
13703
13733
|
boundaryNode = trackedPostpones.workingMap.get(request);
|
|
13704
13734
|
if (void 0 === boundaryNode)
|
|
13705
13735
|
return (
|
|
@@ -13708,14 +13738,14 @@
|
|
|
13708
13738
|
request[2],
|
|
13709
13739
|
children,
|
|
13710
13740
|
null,
|
|
13711
|
-
|
|
13741
|
+
tracked,
|
|
13712
13742
|
boundary.rootSegmentID
|
|
13713
13743
|
]),
|
|
13714
13744
|
trackedPostpones.workingMap.set(request, boundary),
|
|
13715
13745
|
addToReplayParent(boundary, request[0], trackedPostpones),
|
|
13716
13746
|
boundary
|
|
13717
13747
|
);
|
|
13718
|
-
boundaryNode[4] =
|
|
13748
|
+
boundaryNode[4] = tracked;
|
|
13719
13749
|
boundaryNode[5] = boundary.rootSegmentID;
|
|
13720
13750
|
return boundaryNode;
|
|
13721
13751
|
}
|
|
@@ -13736,7 +13766,8 @@
|
|
|
13736
13766
|
boundary
|
|
13737
13767
|
);
|
|
13738
13768
|
if (
|
|
13739
|
-
boundary.
|
|
13769
|
+
null !== boundary.tracked &&
|
|
13770
|
+
boundary.tracked.contentKeyPath === keyPath &&
|
|
13740
13771
|
-1 === task.childIndex
|
|
13741
13772
|
) {
|
|
13742
13773
|
-1 === segment.id &&
|
|
@@ -13792,11 +13823,13 @@
|
|
|
13792
13823
|
function untrackBoundary(request, boundary) {
|
|
13793
13824
|
request = request.trackedPostpones;
|
|
13794
13825
|
null !== request &&
|
|
13795
|
-
((boundary = boundary.
|
|
13826
|
+
((boundary = boundary.tracked),
|
|
13796
13827
|
null !== boundary &&
|
|
13797
|
-
((boundary =
|
|
13798
|
-
|
|
13799
|
-
((
|
|
13828
|
+
((boundary = boundary.contentKeyPath),
|
|
13829
|
+
null !== boundary &&
|
|
13830
|
+
((request = request.workingMap.get(boundary)),
|
|
13831
|
+
void 0 !== request &&
|
|
13832
|
+
((request.length = 4), (request[2] = []), (request[3] = null)))));
|
|
13800
13833
|
}
|
|
13801
13834
|
function spawnNewSuspendedReplayTask(request, task, thenableState) {
|
|
13802
13835
|
return createReplayTask(
|
|
@@ -14011,7 +14044,7 @@
|
|
|
14011
14044
|
null,
|
|
14012
14045
|
new Set(),
|
|
14013
14046
|
null,
|
|
14014
|
-
|
|
14047
|
+
!1
|
|
14015
14048
|
);
|
|
14016
14049
|
resumedBoundary.parentFlushed = !0;
|
|
14017
14050
|
resumedBoundary.rootSegmentID = node;
|
|
@@ -14294,7 +14327,7 @@
|
|
|
14294
14327
|
finishSuspenseListRow(request, row)),
|
|
14295
14328
|
0 === request.pendingRootTasks &&
|
|
14296
14329
|
null === request.trackedPostpones &&
|
|
14297
|
-
null !== boundary.
|
|
14330
|
+
null !== boundary.preamble &&
|
|
14298
14331
|
preparePreamble(request);
|
|
14299
14332
|
else {
|
|
14300
14333
|
if (
|
|
@@ -14555,7 +14588,7 @@
|
|
|
14555
14588
|
request.clientRenderedBoundaries.push(boundary$jscomp$0);
|
|
14556
14589
|
0 === request.pendingRootTasks &&
|
|
14557
14590
|
null === request.trackedPostpones &&
|
|
14558
|
-
null !== boundary$jscomp$0.
|
|
14591
|
+
null !== boundary$jscomp$0.preamble &&
|
|
14559
14592
|
preparePreamble(request);
|
|
14560
14593
|
}
|
|
14561
14594
|
0 === request.allPendingTasks && completeAll(request);
|
|
@@ -14612,12 +14645,11 @@
|
|
|
14612
14645
|
segment,
|
|
14613
14646
|
collectedPreambleSegments
|
|
14614
14647
|
);
|
|
14615
|
-
var preamble = boundary.
|
|
14616
|
-
|
|
14617
|
-
if (null === preamble || null === fallbackPreamble) return !1;
|
|
14648
|
+
var preamble = boundary.preamble;
|
|
14649
|
+
if (null === preamble) return !1;
|
|
14618
14650
|
switch (boundary.status) {
|
|
14619
14651
|
case 1:
|
|
14620
|
-
hoistPreambleState(request.renderState, preamble);
|
|
14652
|
+
hoistPreambleState(request.renderState, preamble.content);
|
|
14621
14653
|
request.byteSize += boundary.byteSize;
|
|
14622
14654
|
segment = boundary.completedSegments[0];
|
|
14623
14655
|
if (!segment)
|
|
@@ -14634,7 +14666,7 @@
|
|
|
14634
14666
|
case 4:
|
|
14635
14667
|
if (1 === segment.status)
|
|
14636
14668
|
return (
|
|
14637
|
-
hoistPreambleState(request.renderState,
|
|
14669
|
+
hoistPreambleState(request.renderState, preamble.fallback),
|
|
14638
14670
|
preparePreambleFromSubtree(
|
|
14639
14671
|
request,
|
|
14640
14672
|
segment,
|
|
@@ -14738,7 +14770,8 @@
|
|
|
14738
14770
|
if (
|
|
14739
14771
|
!flushingPartialBoundaries &&
|
|
14740
14772
|
isEligibleForOutlining(request, boundary) &&
|
|
14741
|
-
flushedByteSize + boundary.byteSize > request.progressiveChunkSize
|
|
14773
|
+
(flushedByteSize + boundary.byteSize > request.progressiveChunkSize ||
|
|
14774
|
+
boundary.defer)
|
|
14742
14775
|
)
|
|
14743
14776
|
return (
|
|
14744
14777
|
(boundary.rootSegmentID = request.nextSegmentId++),
|
|
@@ -14829,7 +14862,7 @@
|
|
|
14829
14862
|
0 === (completedSegments.instructions & 256) &&
|
|
14830
14863
|
((completedSegments.instructions |= 256),
|
|
14831
14864
|
destination.push(
|
|
14832
|
-
'$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]")
|
|
14865
|
+
'$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);'
|
|
14833
14866
|
)),
|
|
14834
14867
|
0 === (completedSegments.instructions & 8)
|
|
14835
14868
|
? ((completedSegments.instructions |= 8),
|
|
@@ -14846,7 +14879,7 @@
|
|
|
14846
14879
|
0 === (completedSegments.instructions & 256) &&
|
|
14847
14880
|
((completedSegments.instructions |= 256),
|
|
14848
14881
|
destination.push(
|
|
14849
|
-
'$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]")
|
|
14882
|
+
'$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);'
|
|
14850
14883
|
)),
|
|
14851
14884
|
destination.push('$RC("')))
|
|
14852
14885
|
: requiresStyleInsertion
|
|
@@ -17029,5 +17062,5 @@
|
|
|
17029
17062
|
});
|
|
17030
17063
|
});
|
|
17031
17064
|
};
|
|
17032
|
-
exports.version = "19.3.0-experimental-
|
|
17065
|
+
exports.version = "19.3.0-experimental-fa50caf5-20251107";
|
|
17033
17066
|
})();
|