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.
@@ -4550,7 +4550,8 @@
4550
4550
  }
4551
4551
  function isEligibleForOutlining(request, boundary) {
4552
4552
  return (
4553
- (500 < boundary.byteSize || !1) && null === boundary.contentPreamble
4553
+ (500 < boundary.byteSize || boundary.defer) &&
4554
+ null === boundary.preamble
4554
4555
  );
4555
4556
  }
4556
4557
  function defaultErrorHandler(error) {
@@ -4685,8 +4686,8 @@
4685
4686
  request,
4686
4687
  row,
4687
4688
  fallbackAbortableTasks,
4688
- contentPreamble,
4689
- fallbackPreamble
4689
+ preamble,
4690
+ defer
4690
4691
  ) {
4691
4692
  fallbackAbortableTasks = {
4692
4693
  status: 0,
@@ -4696,25 +4697,24 @@
4696
4697
  row: row,
4697
4698
  completedSegments: [],
4698
4699
  byteSize: 0,
4700
+ defer: defer,
4699
4701
  fallbackAbortableTasks: fallbackAbortableTasks,
4700
4702
  errorDigest: null,
4701
4703
  contentState: createHoistableState(),
4702
4704
  fallbackState: createHoistableState(),
4703
- contentPreamble: contentPreamble,
4704
- fallbackPreamble: fallbackPreamble,
4705
- trackedContentKeyPath: null,
4706
- trackedFallbackNode: null,
4705
+ preamble: preamble,
4706
+ tracked: null,
4707
4707
  errorMessage: null,
4708
4708
  errorStack: null,
4709
4709
  errorComponentStack: null
4710
4710
  };
4711
4711
  null !== row &&
4712
4712
  (row.pendingTasks++,
4713
- (contentPreamble = row.boundaries),
4714
- null !== contentPreamble &&
4713
+ (preamble = row.boundaries),
4714
+ null !== preamble &&
4715
4715
  (request.allPendingTasks++,
4716
4716
  fallbackAbortableTasks.pendingTasks++,
4717
- contentPreamble.push(fallbackAbortableTasks)),
4717
+ preamble.push(fallbackAbortableTasks)),
4718
4718
  (request = row.inheritedHoistables),
4719
4719
  null !== request &&
4720
4720
  hoistHoistables(fallbackAbortableTasks.contentState, request));
@@ -6048,6 +6048,7 @@
6048
6048
  parentSegment = task.blockedSegment,
6049
6049
  fallback = props.fallback,
6050
6050
  content = props.children,
6051
+ defer = !0 === props.defer,
6051
6052
  fallbackAbortSet = new Set();
6052
6053
  var newBoundary =
6053
6054
  2 > task.formatContext.insertionMode
@@ -6055,18 +6056,19 @@
6055
6056
  request,
6056
6057
  task.row,
6057
6058
  fallbackAbortSet,
6058
- createPreambleState(),
6059
- createPreambleState()
6059
+ {
6060
+ content: createPreambleState(),
6061
+ fallback: createPreambleState()
6062
+ },
6063
+ defer
6060
6064
  )
6061
6065
  : createSuspenseBoundary(
6062
6066
  request,
6063
6067
  task.row,
6064
6068
  fallbackAbortSet,
6065
6069
  null,
6066
- null
6070
+ defer
6067
6071
  );
6068
- null !== request.trackedPostpones &&
6069
- (newBoundary.trackedContentKeyPath = keyPath);
6070
6072
  var boundarySegment = createPendingSegment(
6071
6073
  request,
6072
6074
  parentSegment.chunks.length,
@@ -6086,26 +6088,35 @@
6086
6088
  !1
6087
6089
  );
6088
6090
  contentRootSegment.parentFlushed = !0;
6089
- if (null !== request.trackedPostpones) {
6091
+ var trackedPostpones = request.trackedPostpones;
6092
+ if (null !== trackedPostpones || defer) {
6090
6093
  var suspenseComponentStack = task.componentStack,
6091
6094
  fallbackKeyPath = [
6092
6095
  keyPath[0],
6093
6096
  "Suspense Fallback",
6094
6097
  keyPath[2]
6095
- ],
6096
- fallbackReplayNode = [
6098
+ ];
6099
+ if (null !== trackedPostpones) {
6100
+ var fallbackReplayNode = [
6097
6101
  fallbackKeyPath[1],
6098
6102
  fallbackKeyPath[2],
6099
6103
  [],
6100
6104
  null
6101
6105
  ];
6102
- request.trackedPostpones.workingMap.set(
6103
- fallbackKeyPath,
6104
- fallbackReplayNode
6105
- );
6106
- newBoundary.trackedFallbackNode = fallbackReplayNode;
6106
+ trackedPostpones.workingMap.set(
6107
+ fallbackKeyPath,
6108
+ fallbackReplayNode
6109
+ );
6110
+ newBoundary.tracked = {
6111
+ contentKeyPath: keyPath,
6112
+ fallbackNode: fallbackReplayNode
6113
+ };
6114
+ }
6107
6115
  task.blockedSegment = boundarySegment;
6108
- task.blockedPreamble = newBoundary.fallbackPreamble;
6116
+ task.blockedPreamble =
6117
+ null === newBoundary.preamble
6118
+ ? null
6119
+ : newBoundary.preamble.fallback;
6109
6120
  task.keyPath = fallbackKeyPath;
6110
6121
  task.formatContext = getSuspenseFallbackFormatContext(
6111
6122
  request.resumableState,
@@ -6137,7 +6148,9 @@
6137
6148
  -1,
6138
6149
  newBoundary,
6139
6150
  contentRootSegment,
6140
- newBoundary.contentPreamble,
6151
+ null === newBoundary.preamble
6152
+ ? null
6153
+ : newBoundary.preamble.content,
6141
6154
  newBoundary.contentState,
6142
6155
  task.abortSet,
6143
6156
  keyPath,
@@ -6156,7 +6169,10 @@
6156
6169
  request.pingedTasks.push(suspendedPrimaryTask);
6157
6170
  } else {
6158
6171
  task.blockedBoundary = newBoundary;
6159
- task.blockedPreamble = newBoundary.contentPreamble;
6172
+ task.blockedPreamble =
6173
+ null === newBoundary.preamble
6174
+ ? null
6175
+ : newBoundary.preamble.content;
6160
6176
  task.hoistableState = newBoundary.contentState;
6161
6177
  task.blockedSegment = contentRootSegment;
6162
6178
  task.keyPath = keyPath;
@@ -6227,7 +6243,9 @@
6227
6243
  -1,
6228
6244
  parentBoundary,
6229
6245
  boundarySegment,
6230
- newBoundary.fallbackPreamble,
6246
+ null === newBoundary.preamble
6247
+ ? null
6248
+ : newBoundary.preamble.fallback,
6231
6249
  newBoundary.fallbackState,
6232
6250
  fallbackAbortSet,
6233
6251
  [keyPath[0], "Suspense Fallback", keyPath[2]],
@@ -6487,28 +6505,32 @@
6487
6505
  parentBoundary = task.blockedBoundary,
6488
6506
  parentHoistableState = task.hoistableState,
6489
6507
  content = props.children,
6490
- fallback = props.fallback,
6491
- fallbackAbortSet = new Set();
6492
- props =
6508
+ fallback = props.fallback;
6509
+ var resumedBoundary = !0 === props.defer;
6510
+ props = new Set();
6511
+ resumedBoundary =
6493
6512
  2 > task.formatContext.insertionMode
6494
6513
  ? createSuspenseBoundary(
6495
6514
  replay,
6496
6515
  task.row,
6497
- fallbackAbortSet,
6498
- createPreambleState(),
6499
- createPreambleState()
6516
+ props,
6517
+ {
6518
+ content: createPreambleState(),
6519
+ fallback: createPreambleState()
6520
+ },
6521
+ resumedBoundary
6500
6522
  )
6501
6523
  : createSuspenseBoundary(
6502
6524
  replay,
6503
6525
  task.row,
6504
- fallbackAbortSet,
6526
+ props,
6505
6527
  null,
6506
- null
6528
+ resumedBoundary
6507
6529
  );
6508
- props.parentFlushed = !0;
6509
- props.rootSegmentID = request;
6510
- task.blockedBoundary = props;
6511
- task.hoistableState = props.contentState;
6530
+ resumedBoundary.parentFlushed = !0;
6531
+ resumedBoundary.rootSegmentID = request;
6532
+ task.blockedBoundary = resumedBoundary;
6533
+ task.hoistableState = resumedBoundary.contentState;
6512
6534
  task.keyPath = keyPath;
6513
6535
  task.formatContext = getSuspenseContentFormatContext(
6514
6536
  replay.resumableState,
@@ -6526,13 +6548,16 @@
6526
6548
  "Couldn't find all resumable slots by key/index during replaying. The tree doesn't match so React will fallback to client rendering."
6527
6549
  );
6528
6550
  task.replay.pendingTasks--;
6529
- if (0 === props.pendingTasks && 0 === props.status) {
6530
- props.status = 1;
6531
- replay.completedBoundaries.push(props);
6551
+ if (
6552
+ 0 === resumedBoundary.pendingTasks &&
6553
+ 0 === resumedBoundary.status
6554
+ ) {
6555
+ resumedBoundary.status = 1;
6556
+ replay.completedBoundaries.push(resumedBoundary);
6532
6557
  break a;
6533
6558
  }
6534
6559
  } catch (error) {
6535
- (props.status = 4),
6560
+ (resumedBoundary.status = 4),
6536
6561
  (childNodes = getThrownInfo(task.componentStack)),
6537
6562
  (childSlots = logRecoverableError(
6538
6563
  replay,
@@ -6541,14 +6566,14 @@
6541
6566
  task.debugTask
6542
6567
  )),
6543
6568
  encodeErrorForBoundary(
6544
- props,
6569
+ resumedBoundary,
6545
6570
  childSlots,
6546
6571
  error,
6547
6572
  childNodes,
6548
6573
  !1
6549
6574
  ),
6550
6575
  task.replay.pendingTasks--,
6551
- replay.clientRenderedBoundaries.push(props);
6576
+ replay.clientRenderedBoundaries.push(resumedBoundary);
6552
6577
  } finally {
6553
6578
  (task.blockedBoundary = parentBoundary),
6554
6579
  (task.hoistableState = parentHoistableState),
@@ -6564,8 +6589,8 @@
6564
6589
  fallback,
6565
6590
  -1,
6566
6591
  parentBoundary,
6567
- props.fallbackState,
6568
- fallbackAbortSet,
6592
+ resumedBoundary.fallbackState,
6593
+ props,
6569
6594
  [keyPath[0], "Suspense Fallback", keyPath[2]],
6570
6595
  getSuspenseFallbackFormatContext(
6571
6596
  replay.resumableState,
@@ -6974,13 +6999,18 @@
6974
6999
  function trackPostponedBoundary(request, trackedPostpones, boundary) {
6975
7000
  boundary.status = 5;
6976
7001
  boundary.rootSegmentID = request.nextSegmentId++;
6977
- request = boundary.trackedContentKeyPath;
7002
+ var tracked = boundary.tracked;
7003
+ if (null === tracked)
7004
+ throw Error(
7005
+ "It should not be possible to postpone at the root. This is a bug in React."
7006
+ );
7007
+ request = tracked.contentKeyPath;
6978
7008
  if (null === request)
6979
7009
  throw Error(
6980
7010
  "It should not be possible to postpone at the root. This is a bug in React."
6981
7011
  );
6982
- var fallbackReplayNode = boundary.trackedFallbackNode,
6983
- children = [],
7012
+ tracked = tracked.fallbackNode;
7013
+ var children = [],
6984
7014
  boundaryNode = trackedPostpones.workingMap.get(request);
6985
7015
  if (void 0 === boundaryNode)
6986
7016
  return (
@@ -6989,14 +7019,14 @@
6989
7019
  request[2],
6990
7020
  children,
6991
7021
  null,
6992
- fallbackReplayNode,
7022
+ tracked,
6993
7023
  boundary.rootSegmentID
6994
7024
  ]),
6995
7025
  trackedPostpones.workingMap.set(request, boundary),
6996
7026
  addToReplayParent(boundary, request[0], trackedPostpones),
6997
7027
  boundary
6998
7028
  );
6999
- boundaryNode[4] = fallbackReplayNode;
7029
+ boundaryNode[4] = tracked;
7000
7030
  boundaryNode[5] = boundary.rootSegmentID;
7001
7031
  return boundaryNode;
7002
7032
  }
@@ -7017,7 +7047,8 @@
7017
7047
  boundary
7018
7048
  );
7019
7049
  if (
7020
- boundary.trackedContentKeyPath === keyPath &&
7050
+ null !== boundary.tracked &&
7051
+ boundary.tracked.contentKeyPath === keyPath &&
7021
7052
  -1 === task.childIndex
7022
7053
  ) {
7023
7054
  -1 === segment.id &&
@@ -7073,11 +7104,13 @@
7073
7104
  function untrackBoundary(request, boundary) {
7074
7105
  request = request.trackedPostpones;
7075
7106
  null !== request &&
7076
- ((boundary = boundary.trackedContentKeyPath),
7107
+ ((boundary = boundary.tracked),
7077
7108
  null !== boundary &&
7078
- ((boundary = request.workingMap.get(boundary)),
7079
- void 0 !== boundary &&
7080
- ((boundary.length = 4), (boundary[2] = []), (boundary[3] = null))));
7109
+ ((boundary = boundary.contentKeyPath),
7110
+ null !== boundary &&
7111
+ ((request = request.workingMap.get(boundary)),
7112
+ void 0 !== request &&
7113
+ ((request.length = 4), (request[2] = []), (request[3] = null)))));
7081
7114
  }
7082
7115
  function spawnNewSuspendedReplayTask(request, task, thenableState) {
7083
7116
  return createReplayTask(
@@ -7292,7 +7325,7 @@
7292
7325
  null,
7293
7326
  new Set(),
7294
7327
  null,
7295
- null
7328
+ !1
7296
7329
  );
7297
7330
  resumedBoundary.parentFlushed = !0;
7298
7331
  resumedBoundary.rootSegmentID = node;
@@ -7575,7 +7608,7 @@
7575
7608
  finishSuspenseListRow(request, row)),
7576
7609
  0 === request.pendingRootTasks &&
7577
7610
  null === request.trackedPostpones &&
7578
- null !== boundary.contentPreamble &&
7611
+ null !== boundary.preamble &&
7579
7612
  preparePreamble(request);
7580
7613
  else {
7581
7614
  if (
@@ -7836,7 +7869,7 @@
7836
7869
  request.clientRenderedBoundaries.push(boundary$jscomp$0);
7837
7870
  0 === request.pendingRootTasks &&
7838
7871
  null === request.trackedPostpones &&
7839
- null !== boundary$jscomp$0.contentPreamble &&
7872
+ null !== boundary$jscomp$0.preamble &&
7840
7873
  preparePreamble(request);
7841
7874
  }
7842
7875
  0 === request.allPendingTasks && completeAll(request);
@@ -7893,12 +7926,11 @@
7893
7926
  segment,
7894
7927
  collectedPreambleSegments
7895
7928
  );
7896
- var preamble = boundary.contentPreamble,
7897
- fallbackPreamble = boundary.fallbackPreamble;
7898
- if (null === preamble || null === fallbackPreamble) return !1;
7929
+ var preamble = boundary.preamble;
7930
+ if (null === preamble) return !1;
7899
7931
  switch (boundary.status) {
7900
7932
  case 1:
7901
- hoistPreambleState(request.renderState, preamble);
7933
+ hoistPreambleState(request.renderState, preamble.content);
7902
7934
  request.byteSize += boundary.byteSize;
7903
7935
  segment = boundary.completedSegments[0];
7904
7936
  if (!segment)
@@ -7915,7 +7947,7 @@
7915
7947
  case 4:
7916
7948
  if (1 === segment.status)
7917
7949
  return (
7918
- hoistPreambleState(request.renderState, fallbackPreamble),
7950
+ hoistPreambleState(request.renderState, preamble.fallback),
7919
7951
  preparePreambleFromSubtree(
7920
7952
  request,
7921
7953
  segment,
@@ -8019,7 +8051,8 @@
8019
8051
  if (
8020
8052
  !flushingPartialBoundaries &&
8021
8053
  isEligibleForOutlining(request, boundary) &&
8022
- flushedByteSize + boundary.byteSize > request.progressiveChunkSize
8054
+ (flushedByteSize + boundary.byteSize > request.progressiveChunkSize ||
8055
+ boundary.defer)
8023
8056
  )
8024
8057
  return (
8025
8058
  (boundary.rootSegmentID = request.nextSegmentId++),
@@ -8110,7 +8143,7 @@
8110
8143
  0 === (completedSegments.instructions & 256) &&
8111
8144
  ((completedSegments.instructions |= 256),
8112
8145
  destination.push(
8113
- '$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]");for(d=0;d<E.length;d++){var F=E[d],G=F.getAttribute("vt-name"),\nH=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,I.querySelectorAll(\'img[src]:not([loading="lazy"])\'))}}}if(B){var z=\ndocument.__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)),a.push(p))}return Promise.race([Promise.all(a),new Promise(function(w){var q=\nperformance.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,$RV);'
8146
+ '$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);'
8114
8147
  )),
8115
8148
  0 === (completedSegments.instructions & 8)
8116
8149
  ? ((completedSegments.instructions |= 8),
@@ -8127,7 +8160,7 @@
8127
8160
  0 === (completedSegments.instructions & 256) &&
8128
8161
  ((completedSegments.instructions |= 256),
8129
8162
  destination.push(
8130
- '$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]");for(d=0;d<E.length;d++){var F=E[d],G=F.getAttribute("vt-name"),\nH=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,I.querySelectorAll(\'img[src]:not([loading="lazy"])\'))}}}if(B){var z=\ndocument.__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)),a.push(p))}return Promise.race([Promise.all(a),new Promise(function(w){var q=\nperformance.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,$RV);'
8163
+ '$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);'
8131
8164
  )),
8132
8165
  destination.push('$RC("')))
8133
8166
  : requiresStyleInsertion
@@ -9672,5 +9705,5 @@
9672
9705
  });
9673
9706
  });
9674
9707
  };
9675
- exports.version = "19.3.0-experimental-dd048c3b-20251105";
9708
+ exports.version = "19.3.0-experimental-fa50caf5-20251107";
9676
9709
  })();