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.
@@ -2250,19 +2250,19 @@ function getTargetInstForChangeEvent(domEventName, targetInst) {
2250
2250
  }
2251
2251
  var isInputEventSupported = !1;
2252
2252
  if (canUseDOM) {
2253
- var JSCompiler_inline_result$jscomp$354;
2253
+ var JSCompiler_inline_result$jscomp$355;
2254
2254
  if (canUseDOM) {
2255
- var isSupported$jscomp$inline_516 = "oninput" in document;
2256
- if (!isSupported$jscomp$inline_516) {
2257
- var element$jscomp$inline_517 = document.createElement("div");
2258
- element$jscomp$inline_517.setAttribute("oninput", "return;");
2259
- isSupported$jscomp$inline_516 =
2260
- "function" === typeof element$jscomp$inline_517.oninput;
2255
+ var isSupported$jscomp$inline_518 = "oninput" in document;
2256
+ if (!isSupported$jscomp$inline_518) {
2257
+ var element$jscomp$inline_519 = document.createElement("div");
2258
+ element$jscomp$inline_519.setAttribute("oninput", "return;");
2259
+ isSupported$jscomp$inline_518 =
2260
+ "function" === typeof element$jscomp$inline_519.oninput;
2261
2261
  }
2262
- JSCompiler_inline_result$jscomp$354 = isSupported$jscomp$inline_516;
2263
- } else JSCompiler_inline_result$jscomp$354 = !1;
2262
+ JSCompiler_inline_result$jscomp$355 = isSupported$jscomp$inline_518;
2263
+ } else JSCompiler_inline_result$jscomp$355 = !1;
2264
2264
  isInputEventSupported =
2265
- JSCompiler_inline_result$jscomp$354 &&
2265
+ JSCompiler_inline_result$jscomp$355 &&
2266
2266
  (!document.documentMode || 9 < document.documentMode);
2267
2267
  }
2268
2268
  function stopWatchingForValueChange() {
@@ -4961,7 +4961,7 @@ function pushOffscreenSuspenseHandler(fiber) {
4961
4961
  ? (push(suspenseStackCursor, suspenseStackCursor.current),
4962
4962
  push(suspenseHandlerStackCursor, fiber),
4963
4963
  null === shellBoundary && (shellBoundary = fiber))
4964
- : reuseSuspenseHandlerOnStack(fiber);
4964
+ : reuseSuspenseHandlerOnStack();
4965
4965
  }
4966
4966
  function reuseSuspenseHandlerOnStack() {
4967
4967
  push(suspenseStackCursor, suspenseStackCursor.current);
@@ -4973,6 +4973,15 @@ function popSuspenseHandler(fiber) {
4973
4973
  pop(suspenseStackCursor);
4974
4974
  }
4975
4975
  var suspenseStackCursor = createCursor(0);
4976
+ function pushSuspenseListContext(fiber, newContext) {
4977
+ push(suspenseHandlerStackCursor, suspenseHandlerStackCursor.current);
4978
+ push(suspenseStackCursor, newContext);
4979
+ }
4980
+ function popSuspenseListContext(fiber) {
4981
+ pop(suspenseStackCursor);
4982
+ pop(suspenseHandlerStackCursor);
4983
+ shellBoundary === fiber && (shellBoundary = null);
4984
+ }
4976
4985
  function findFirstSuspended(row) {
4977
4986
  for (var node = row; null !== node; ) {
4978
4987
  if (13 === node.tag) {
@@ -6692,6 +6701,7 @@ function throwException(
6692
6701
  switch (sourceFiber.tag) {
6693
6702
  case 31:
6694
6703
  case 13:
6704
+ case 19:
6695
6705
  return (
6696
6706
  null === shellBoundary
6697
6707
  ? renderDidSuspendDelayIfPossible()
@@ -7013,11 +7023,11 @@ function updateOffscreenComponent(
7013
7023
  null !== prevState
7014
7024
  ? (pushTransition(workInProgress, prevState.cachePool),
7015
7025
  pushHiddenContext(workInProgress, prevState),
7016
- reuseSuspenseHandlerOnStack(workInProgress),
7026
+ reuseSuspenseHandlerOnStack(),
7017
7027
  (workInProgress.memoizedState = null))
7018
7028
  : (null !== current && pushTransition(workInProgress, null),
7019
7029
  reuseHiddenContextOnStack(),
7020
- reuseSuspenseHandlerOnStack(workInProgress));
7030
+ reuseSuspenseHandlerOnStack());
7021
7031
  reconcileChildren(current, workInProgress, nextChildren, renderLanes);
7022
7032
  return workInProgress.child;
7023
7033
  }
@@ -7556,7 +7566,7 @@ function updateSuspenseComponent(current, workInProgress, renderLanes) {
7556
7566
  if (isHydrating) {
7557
7567
  showFallback
7558
7568
  ? pushPrimaryTreeSuspenseHandler(workInProgress)
7559
- : reuseSuspenseHandlerOnStack(workInProgress);
7569
+ : reuseSuspenseHandlerOnStack();
7560
7570
  (current = nextHydratableInstance)
7561
7571
  ? ((current = canHydrateHydrationBoundary(
7562
7572
  current,
@@ -7589,7 +7599,7 @@ function updateSuspenseComponent(current, workInProgress, renderLanes) {
7589
7599
  nextProps = nextProps.fallback;
7590
7600
  if (showFallback)
7591
7601
  return (
7592
- reuseSuspenseHandlerOnStack(workInProgress),
7602
+ reuseSuspenseHandlerOnStack(),
7593
7603
  (showFallback = workInProgress.mode),
7594
7604
  (nextPrimaryChildren = mountWorkInProgressOffscreenFiber(
7595
7605
  { mode: "hidden", children: nextPrimaryChildren },
@@ -7633,11 +7643,11 @@ function updateSuspenseComponent(current, workInProgress, renderLanes) {
7633
7643
  renderLanes
7634
7644
  )))
7635
7645
  : null !== workInProgress.memoizedState
7636
- ? (reuseSuspenseHandlerOnStack(workInProgress),
7646
+ ? (reuseSuspenseHandlerOnStack(),
7637
7647
  (workInProgress.child = current.child),
7638
7648
  (workInProgress.flags |= 128),
7639
7649
  (workInProgress = null))
7640
- : (reuseSuspenseHandlerOnStack(workInProgress),
7650
+ : (reuseSuspenseHandlerOnStack(),
7641
7651
  (nextPrimaryChildren = nextProps.fallback),
7642
7652
  (showFallback = workInProgress.mode),
7643
7653
  (nextProps = mountWorkInProgressOffscreenFiber(
@@ -7738,7 +7748,7 @@ function updateSuspenseComponent(current, workInProgress, renderLanes) {
7738
7748
  }
7739
7749
  if (showFallback)
7740
7750
  return (
7741
- reuseSuspenseHandlerOnStack(workInProgress),
7751
+ reuseSuspenseHandlerOnStack(),
7742
7752
  (nextPrimaryChildren = nextProps.fallback),
7743
7753
  (showFallback = workInProgress.mode),
7744
7754
  (prevState = current.child),
@@ -7892,13 +7902,15 @@ function updateSuspenseListComponent(current, workInProgress, renderLanes) {
7892
7902
  revealOrder = nextProps.revealOrder,
7893
7903
  tailMode = nextProps.tail;
7894
7904
  nextProps = nextProps.children;
7895
- var suspenseContext = suspenseStackCursor.current,
7896
- shouldForceFallback = 0 !== (suspenseContext & 2);
7905
+ var suspenseContext = suspenseStackCursor.current;
7906
+ if (workInProgress.flags & 128)
7907
+ return pushSuspenseListContext(workInProgress, suspenseContext), null;
7908
+ var shouldForceFallback = 0 !== (suspenseContext & 2);
7897
7909
  shouldForceFallback
7898
7910
  ? ((suspenseContext = (suspenseContext & 1) | 2),
7899
7911
  (workInProgress.flags |= 128))
7900
7912
  : (suspenseContext &= 1);
7901
- push(suspenseStackCursor, suspenseContext);
7913
+ pushSuspenseListContext(workInProgress, suspenseContext);
7902
7914
  "backwards" === revealOrder && null !== current
7903
7915
  ? (reverseChildren(current),
7904
7916
  reconcileChildren(current, workInProgress, nextProps, renderLanes),
@@ -8096,6 +8108,12 @@ function attemptEarlyBailoutIfNoScheduledUpdate(
8096
8108
  pushPrimaryTreeSuspenseHandler(workInProgress);
8097
8109
  break;
8098
8110
  case 19:
8111
+ if (workInProgress.flags & 128)
8112
+ return updateSuspenseListComponent(
8113
+ current,
8114
+ workInProgress,
8115
+ renderLanes
8116
+ );
8099
8117
  var didSuspendBefore = 0 !== (current.flags & 128);
8100
8118
  stateNode = 0 !== (renderLanes & workInProgress.childLanes);
8101
8119
  stateNode ||
@@ -8120,7 +8138,7 @@ function attemptEarlyBailoutIfNoScheduledUpdate(
8120
8138
  ((didSuspendBefore.rendering = null),
8121
8139
  (didSuspendBefore.tail = null),
8122
8140
  (didSuspendBefore.lastEffect = null));
8123
- push(suspenseStackCursor, suspenseStackCursor.current);
8141
+ pushSuspenseListContext(workInProgress, suspenseStackCursor.current);
8124
8142
  if (stateNode) break;
8125
8143
  else return null;
8126
8144
  case 22:
@@ -9166,7 +9184,7 @@ function completeWork(current, workInProgress, renderLanes) {
9166
9184
  popProvider(workInProgress.type), bubbleProperties(workInProgress), null
9167
9185
  );
9168
9186
  case 19:
9169
- pop(suspenseStackCursor);
9187
+ popSuspenseListContext(workInProgress);
9170
9188
  newProps = workInProgress.memoizedState;
9171
9189
  if (null === newProps) return bubbleProperties(workInProgress), null;
9172
9190
  type = 0 !== (workInProgress.flags & 128);
@@ -9191,8 +9209,8 @@ function completeWork(current, workInProgress, renderLanes) {
9191
9209
  for (renderLanes = workInProgress.child; null !== renderLanes; )
9192
9210
  resetWorkInProgress(renderLanes, current),
9193
9211
  (renderLanes = renderLanes.sibling);
9194
- push(
9195
- suspenseStackCursor,
9212
+ pushSuspenseListContext(
9213
+ workInProgress,
9196
9214
  (suspenseStackCursor.current & 1) | 2
9197
9215
  );
9198
9216
  isHydrating &&
@@ -9244,21 +9262,36 @@ function completeWork(current, workInProgress, renderLanes) {
9244
9262
  : (workInProgress.child = nextResource),
9245
9263
  (newProps.last = nextResource));
9246
9264
  }
9247
- if (null !== newProps.tail)
9248
- return (
9249
- (current = newProps.tail),
9250
- (newProps.rendering = current),
9251
- (newProps.tail = current.sibling),
9252
- (newProps.renderingStartTime = now$1()),
9253
- (current.sibling = null),
9254
- (renderLanes = suspenseStackCursor.current),
9255
- push(
9256
- suspenseStackCursor,
9257
- type ? (renderLanes & 1) | 2 : renderLanes & 1
9258
- ),
9259
- isHydrating && pushTreeFork(workInProgress, newProps.treeForkCount),
9260
- current
9261
- );
9265
+ if (null !== newProps.tail) {
9266
+ current = newProps.tail;
9267
+ a: {
9268
+ for (renderLanes = current; null !== renderLanes; ) {
9269
+ if (null !== renderLanes.alternate) {
9270
+ renderLanes = !1;
9271
+ break a;
9272
+ }
9273
+ renderLanes = renderLanes.sibling;
9274
+ }
9275
+ renderLanes = !0;
9276
+ }
9277
+ newProps.rendering = current;
9278
+ newProps.tail = current.sibling;
9279
+ newProps.renderingStartTime = now$1();
9280
+ current.sibling = null;
9281
+ nextResource = suspenseStackCursor.current;
9282
+ nextResource = type ? (nextResource & 1) | 2 : nextResource & 1;
9283
+ "visible" === newProps.tailMode ||
9284
+ "collapsed" === newProps.tailMode ||
9285
+ !renderLanes ||
9286
+ isHydrating
9287
+ ? pushSuspenseListContext(workInProgress, nextResource)
9288
+ : ((renderLanes = nextResource),
9289
+ push(suspenseHandlerStackCursor, workInProgress),
9290
+ push(suspenseStackCursor, renderLanes),
9291
+ null === shellBoundary && (shellBoundary = workInProgress));
9292
+ isHydrating && pushTreeFork(workInProgress, newProps.treeForkCount);
9293
+ return current;
9294
+ }
9262
9295
  bubbleProperties(workInProgress);
9263
9296
  return null;
9264
9297
  case 22:
@@ -9370,7 +9403,18 @@ function unwindWork(current, workInProgress) {
9370
9403
  workInProgress)
9371
9404
  : null;
9372
9405
  case 19:
9373
- return pop(suspenseStackCursor), null;
9406
+ return (
9407
+ popSuspenseListContext(workInProgress),
9408
+ (current = workInProgress.flags),
9409
+ current & 65536
9410
+ ? ((workInProgress.flags = (current & -65537) | 128),
9411
+ (current = workInProgress.memoizedState),
9412
+ null !== current &&
9413
+ ((current.rendering = null), (current.tail = null)),
9414
+ (workInProgress.flags |= 4),
9415
+ workInProgress)
9416
+ : null
9417
+ );
9374
9418
  case 4:
9375
9419
  return popHostContainer(), null;
9376
9420
  case 10:
@@ -9420,7 +9464,7 @@ function unwindInterruptedWork(current, interruptedWork) {
9420
9464
  popSuspenseHandler(interruptedWork);
9421
9465
  break;
9422
9466
  case 19:
9423
- pop(suspenseStackCursor);
9467
+ popSuspenseListContext(interruptedWork);
9424
9468
  break;
9425
9469
  case 10:
9426
9470
  popProvider(interruptedWork.type);
@@ -9582,8 +9626,8 @@ function safelyCallComponentWillUnmount(
9582
9626
  } else
9583
9627
  try {
9584
9628
  instance.componentWillUnmount();
9585
- } catch (error$163) {
9586
- captureCommitPhaseError(current, nearestMountedAncestor, error$163);
9629
+ } catch (error$164) {
9630
+ captureCommitPhaseError(current, nearestMountedAncestor, error$164);
9587
9631
  }
9588
9632
  }
9589
9633
  function safelyAttachRef(current, nearestMountedAncestor) {
@@ -9654,8 +9698,8 @@ function safelyDetachRef(current, nearestMountedAncestor) {
9654
9698
  recordEffectDuration(current);
9655
9699
  }
9656
9700
  else ref(null);
9657
- } catch (error$165) {
9658
- captureCommitPhaseError(current, nearestMountedAncestor, error$165);
9701
+ } catch (error$166) {
9702
+ captureCommitPhaseError(current, nearestMountedAncestor, error$166);
9659
9703
  }
9660
9704
  else ref.current = null;
9661
9705
  }
@@ -9732,12 +9776,12 @@ function commitNewChildToFragmentInstances(fiber, parentFragmentInstances) {
9732
9776
  function commitFragmentInstanceDeletionEffects(fiber) {
9733
9777
  for (var parent = fiber.return; null !== parent; ) {
9734
9778
  if (isFragmentInstanceParent(parent)) {
9735
- var childElement = fiber.stateNode,
9779
+ var childInstance = fiber.stateNode,
9736
9780
  eventListeners = parent.stateNode._eventListeners;
9737
9781
  if (null !== eventListeners)
9738
9782
  for (var i = 0; i < eventListeners.length; i++) {
9739
9783
  var _eventListeners$i4 = eventListeners[i];
9740
- childElement.removeEventListener(
9784
+ childInstance.removeEventListener(
9741
9785
  _eventListeners$i4.type,
9742
9786
  _eventListeners$i4.listener,
9743
9787
  _eventListeners$i4.optionsOrUseCapture
@@ -10536,11 +10580,11 @@ function commitLayoutEffectOnFiber(finishedRoot, current, finishedWork) {
10536
10580
  } else
10537
10581
  try {
10538
10582
  finishedRoot.componentDidMount();
10539
- } catch (error$160) {
10583
+ } catch (error$161) {
10540
10584
  captureCommitPhaseError(
10541
10585
  finishedWork,
10542
10586
  finishedWork.return,
10543
- error$160
10587
+ error$161
10544
10588
  );
10545
10589
  }
10546
10590
  else {
@@ -10557,11 +10601,11 @@ function commitLayoutEffectOnFiber(finishedRoot, current, finishedWork) {
10557
10601
  current,
10558
10602
  finishedRoot.__reactInternalSnapshotBeforeUpdate
10559
10603
  );
10560
- } catch (error$161) {
10604
+ } catch (error$162) {
10561
10605
  captureCommitPhaseError(
10562
10606
  finishedWork,
10563
10607
  finishedWork.return,
10564
- error$161
10608
+ error$162
10565
10609
  );
10566
10610
  }
10567
10611
  recordEffectDuration();
@@ -10572,11 +10616,11 @@ function commitLayoutEffectOnFiber(finishedRoot, current, finishedWork) {
10572
10616
  current,
10573
10617
  finishedRoot.__reactInternalSnapshotBeforeUpdate
10574
10618
  );
10575
- } catch (error$162) {
10619
+ } catch (error$163) {
10576
10620
  captureCommitPhaseError(
10577
10621
  finishedWork,
10578
10622
  finishedWork.return,
10579
- error$162
10623
+ error$163
10580
10624
  );
10581
10625
  }
10582
10626
  }
@@ -11380,14 +11424,14 @@ function commitMutationEffectsOnFiber(finishedWork, root, lanes) {
11380
11424
  var wasHidden = null !== current && null !== current.memoizedState,
11381
11425
  prevOffscreenSubtreeIsHidden = offscreenSubtreeIsHidden,
11382
11426
  prevOffscreenSubtreeWasHidden = offscreenSubtreeWasHidden,
11383
- prevOffscreenDirectParentIsHidden$184 = offscreenDirectParentIsHidden;
11427
+ prevOffscreenDirectParentIsHidden$185 = offscreenDirectParentIsHidden;
11384
11428
  offscreenSubtreeIsHidden = prevOffscreenSubtreeIsHidden || hoistableRoot;
11385
11429
  offscreenDirectParentIsHidden =
11386
- prevOffscreenDirectParentIsHidden$184 || hoistableRoot;
11430
+ prevOffscreenDirectParentIsHidden$185 || hoistableRoot;
11387
11431
  offscreenSubtreeWasHidden = prevOffscreenSubtreeWasHidden || wasHidden;
11388
11432
  recursivelyTraverseMutationEffects(root, finishedWork, lanes);
11389
11433
  offscreenSubtreeWasHidden = prevOffscreenSubtreeWasHidden;
11390
- offscreenDirectParentIsHidden = prevOffscreenDirectParentIsHidden$184;
11434
+ offscreenDirectParentIsHidden = prevOffscreenDirectParentIsHidden$185;
11391
11435
  offscreenSubtreeIsHidden = prevOffscreenSubtreeIsHidden;
11392
11436
  wasHidden &&
11393
11437
  !hoistableRoot &&
@@ -11609,25 +11653,25 @@ function commitReconciliationEffects(finishedWork) {
11609
11653
  );
11610
11654
  break;
11611
11655
  case 5:
11612
- var parent$166 = hostParentFiber.stateNode;
11656
+ var parent$167 = hostParentFiber.stateNode;
11613
11657
  hostParentFiber.flags & 32 &&
11614
- (setTextContent(parent$166, ""), (hostParentFiber.flags &= -33));
11615
- var before$167 = getHostSibling(finishedWork);
11658
+ (setTextContent(parent$167, ""), (hostParentFiber.flags &= -33));
11659
+ var before$168 = getHostSibling(finishedWork);
11616
11660
  insertOrAppendPlacementNode(
11617
11661
  finishedWork,
11618
- before$167,
11619
- parent$166,
11662
+ before$168,
11663
+ parent$167,
11620
11664
  parentFragmentInstances
11621
11665
  );
11622
11666
  break;
11623
11667
  case 3:
11624
11668
  case 4:
11625
- var parent$168 = hostParentFiber.stateNode.containerInfo,
11626
- before$169 = getHostSibling(finishedWork);
11669
+ var parent$169 = hostParentFiber.stateNode.containerInfo,
11670
+ before$170 = getHostSibling(finishedWork);
11627
11671
  insertOrAppendPlacementNodeIntoContainer(
11628
11672
  finishedWork,
11629
- before$169,
11630
- parent$168,
11673
+ before$170,
11674
+ parent$169,
11631
11675
  parentFragmentInstances
11632
11676
  );
11633
11677
  break;
@@ -13217,7 +13261,8 @@ function performWorkOnRoot(root$jscomp$0, lanes, forceSync) {
13217
13261
  case 1:
13218
13262
  throw Error(formatProdErrorMessage(345));
13219
13263
  case 4:
13220
- if ((lanes & 4194048) !== lanes) break;
13264
+ if ((lanes & 4194048) !== lanes && (lanes & 62914560) !== lanes)
13265
+ break;
13221
13266
  case 6:
13222
13267
  setCurrentTrackFromLanes(lanes);
13223
13268
  logSuspendedRenderPhase(renderStartTime, yieldDuration, lanes);
@@ -13564,7 +13609,7 @@ function prepareFreshStack(root, lanes) {
13564
13609
  0 <= blockingEventTime && blockingEventTime < blockingClampTime
13565
13610
  ? blockingClampTime
13566
13611
  : blockingEventTime;
13567
- var clampedRenderStartTime$213 =
13612
+ var clampedRenderStartTime$214 =
13568
13613
  0 <= endTime
13569
13614
  ? endTime
13570
13615
  : 0 <= previousRenderStartTime
@@ -13574,13 +13619,13 @@ function prepareFreshStack(root, lanes) {
13574
13619
  ? (setCurrentTrackFromLanes(2),
13575
13620
  logSuspendedWithDelayPhase(
13576
13621
  blockingSuspendedTime,
13577
- clampedRenderStartTime$213,
13622
+ clampedRenderStartTime$214,
13578
13623
  lanes
13579
13624
  ))
13580
13625
  : 0 !== (animatingLanes & 127) &&
13581
13626
  (setCurrentTrackFromLanes(2),
13582
- logAnimatingPhase(blockingClampTime, clampedRenderStartTime$213));
13583
- clampedRenderStartTime$213 = blockingEventType;
13627
+ logAnimatingPhase(blockingClampTime, clampedRenderStartTime$214));
13628
+ clampedRenderStartTime$214 = blockingEventType;
13584
13629
  var eventIsRepeat = 0 < blockingEventRepeatTime,
13585
13630
  isSpawnedUpdate = 1 === blockingUpdateType,
13586
13631
  isPingedUpdate = 2 === blockingUpdateType,
@@ -13595,12 +13640,12 @@ function prepareFreshStack(root, lanes) {
13595
13640
  ? endTime > previousRenderStartTime &&
13596
13641
  (endTime = previousRenderStartTime)
13597
13642
  : (endTime = previousRenderStartTime),
13598
- null !== clampedRenderStartTime$213 &&
13643
+ null !== clampedRenderStartTime$214 &&
13599
13644
  previousRenderStartTime > endTime &&
13600
13645
  console.timeStamp(
13601
13646
  eventIsRepeat
13602
13647
  ? "Consecutive"
13603
- : "Event: " + clampedRenderStartTime$213,
13648
+ : "Event: " + clampedRenderStartTime$214,
13604
13649
  endTime,
13605
13650
  previousRenderStartTime,
13606
13651
  currentTrack,
@@ -13642,13 +13687,13 @@ function prepareFreshStack(root, lanes) {
13642
13687
  0 <= transitionUpdateTime && transitionUpdateTime < transitionClampTime
13643
13688
  ? transitionClampTime
13644
13689
  : transitionUpdateTime),
13645
- (clampedRenderStartTime$213 =
13690
+ (clampedRenderStartTime$214 =
13646
13691
  0 <= transitionEventTime && transitionEventTime < transitionClampTime
13647
13692
  ? transitionClampTime
13648
13693
  : transitionEventTime),
13649
13694
  (eventIsRepeat =
13650
- 0 <= clampedRenderStartTime$213
13651
- ? clampedRenderStartTime$213
13695
+ 0 <= clampedRenderStartTime$214
13696
+ ? clampedRenderStartTime$214
13652
13697
  : 0 <= endTime
13653
13698
  ? endTime
13654
13699
  : renderStartTime),
@@ -13676,15 +13721,15 @@ function prepareFreshStack(root, lanes) {
13676
13721
  ? previousRenderStartTime > endTime &&
13677
13722
  (previousRenderStartTime = endTime)
13678
13723
  : (previousRenderStartTime = endTime),
13679
- 0 < clampedRenderStartTime$213
13680
- ? clampedRenderStartTime$213 > previousRenderStartTime &&
13681
- (clampedRenderStartTime$213 = previousRenderStartTime)
13682
- : (clampedRenderStartTime$213 = previousRenderStartTime),
13683
- previousRenderStartTime > clampedRenderStartTime$213 &&
13724
+ 0 < clampedRenderStartTime$214
13725
+ ? clampedRenderStartTime$214 > previousRenderStartTime &&
13726
+ (clampedRenderStartTime$214 = previousRenderStartTime)
13727
+ : (clampedRenderStartTime$214 = previousRenderStartTime),
13728
+ previousRenderStartTime > clampedRenderStartTime$214 &&
13684
13729
  null !== eventIsRepeat &&
13685
13730
  console.timeStamp(
13686
13731
  isSpawnedUpdate ? "Consecutive" : "Event: " + eventIsRepeat,
13687
- clampedRenderStartTime$213,
13732
+ clampedRenderStartTime$214,
13688
13733
  previousRenderStartTime,
13689
13734
  currentTrack,
13690
13735
  "Scheduler \u269b",
@@ -13759,9 +13804,9 @@ function prepareFreshStack(root, lanes) {
13759
13804
  endTime = root.entangledLanes;
13760
13805
  if (0 !== endTime)
13761
13806
  for (root = root.entanglements, endTime &= lanes; 0 < endTime; )
13762
- (clampedRenderStartTime$213 = 31 - clz32(endTime)),
13763
- (eventIsRepeat = 1 << clampedRenderStartTime$213),
13764
- (lanes |= root[clampedRenderStartTime$213]),
13807
+ (clampedRenderStartTime$214 = 31 - clz32(endTime)),
13808
+ (eventIsRepeat = 1 << clampedRenderStartTime$214),
13809
+ (lanes |= root[clampedRenderStartTime$214]),
13765
13810
  (endTime &= ~eventIsRepeat);
13766
13811
  entangledRenderLanes = lanes;
13767
13812
  finishQueueingConcurrentUpdates();
@@ -13892,8 +13937,8 @@ function renderRootSync(root, lanes, shouldYieldForPrerendering) {
13892
13937
  workLoopSync();
13893
13938
  memoizedUpdaters = workInProgressRootExitStatus;
13894
13939
  break;
13895
- } catch (thrownValue$218) {
13896
- handleThrow(root, thrownValue$218);
13940
+ } catch (thrownValue$219) {
13941
+ handleThrow(root, thrownValue$219);
13897
13942
  }
13898
13943
  while (1);
13899
13944
  lanes && root.shellSuspendCounter++;
@@ -14018,8 +14063,8 @@ function renderRootConcurrent(root, lanes) {
14018
14063
  }
14019
14064
  workLoopConcurrentByScheduler();
14020
14065
  break;
14021
- } catch (thrownValue$220) {
14022
- handleThrow(root, thrownValue$220);
14066
+ } catch (thrownValue$221) {
14067
+ handleThrow(root, thrownValue$221);
14023
14068
  }
14024
14069
  while (1);
14025
14070
  lastContextDependency = currentlyRenderingFiber$1 = null;
@@ -14949,14 +14994,14 @@ function flushSyncWorkAcrossRoots_impl(syncTransitionLanes, onlyLegacy) {
14949
14994
  isFlushingWork = !0;
14950
14995
  do {
14951
14996
  var didPerformSomeWork = !1;
14952
- for (var root$224 = firstScheduledRoot; null !== root$224; ) {
14997
+ for (var root$225 = firstScheduledRoot; null !== root$225; ) {
14953
14998
  if (!onlyLegacy)
14954
14999
  if (0 !== syncTransitionLanes) {
14955
- var pendingLanes = root$224.pendingLanes;
15000
+ var pendingLanes = root$225.pendingLanes;
14956
15001
  if (0 === pendingLanes) var JSCompiler_inline_result = 0;
14957
15002
  else {
14958
- var suspendedLanes = root$224.suspendedLanes,
14959
- pingedLanes = root$224.pingedLanes;
15003
+ var suspendedLanes = root$225.suspendedLanes,
15004
+ pingedLanes = root$225.pingedLanes;
14960
15005
  JSCompiler_inline_result =
14961
15006
  (1 << (31 - clz32(42 | syncTransitionLanes) + 1)) - 1;
14962
15007
  JSCompiler_inline_result &=
@@ -14970,20 +15015,20 @@ function flushSyncWorkAcrossRoots_impl(syncTransitionLanes, onlyLegacy) {
14970
15015
  }
14971
15016
  0 !== JSCompiler_inline_result &&
14972
15017
  ((didPerformSomeWork = !0),
14973
- performSyncWorkOnRoot(root$224, JSCompiler_inline_result));
15018
+ performSyncWorkOnRoot(root$225, JSCompiler_inline_result));
14974
15019
  } else
14975
15020
  (JSCompiler_inline_result = workInProgressRootRenderLanes),
14976
15021
  (JSCompiler_inline_result = getNextLanes(
14977
- root$224,
14978
- root$224 === workInProgressRoot ? JSCompiler_inline_result : 0,
14979
- null !== root$224.cancelPendingCommit ||
14980
- -1 !== root$224.timeoutHandle
15022
+ root$225,
15023
+ root$225 === workInProgressRoot ? JSCompiler_inline_result : 0,
15024
+ null !== root$225.cancelPendingCommit ||
15025
+ -1 !== root$225.timeoutHandle
14981
15026
  )),
14982
15027
  0 === (JSCompiler_inline_result & 3) ||
14983
- checkIfRootIsPrerendering(root$224, JSCompiler_inline_result) ||
15028
+ checkIfRootIsPrerendering(root$225, JSCompiler_inline_result) ||
14984
15029
  ((didPerformSomeWork = !0),
14985
- performSyncWorkOnRoot(root$224, JSCompiler_inline_result));
14986
- root$224 = root$224.next;
15030
+ performSyncWorkOnRoot(root$225, JSCompiler_inline_result));
15031
+ root$225 = root$225.next;
14987
15032
  }
14988
15033
  } while (didPerformSomeWork);
14989
15034
  isFlushingWork = !1;
@@ -15237,20 +15282,20 @@ function extractEvents$1(
15237
15282
  }
15238
15283
  }
15239
15284
  for (
15240
- var i$jscomp$inline_1997 = 0;
15241
- i$jscomp$inline_1997 < simpleEventPluginEvents.length;
15242
- i$jscomp$inline_1997++
15285
+ var i$jscomp$inline_1973 = 0;
15286
+ i$jscomp$inline_1973 < simpleEventPluginEvents.length;
15287
+ i$jscomp$inline_1973++
15243
15288
  ) {
15244
- var eventName$jscomp$inline_1998 =
15245
- simpleEventPluginEvents[i$jscomp$inline_1997],
15246
- domEventName$jscomp$inline_1999 =
15247
- eventName$jscomp$inline_1998.toLowerCase(),
15248
- capitalizedEvent$jscomp$inline_2000 =
15249
- eventName$jscomp$inline_1998[0].toUpperCase() +
15250
- eventName$jscomp$inline_1998.slice(1);
15289
+ var eventName$jscomp$inline_1974 =
15290
+ simpleEventPluginEvents[i$jscomp$inline_1973],
15291
+ domEventName$jscomp$inline_1975 =
15292
+ eventName$jscomp$inline_1974.toLowerCase(),
15293
+ capitalizedEvent$jscomp$inline_1976 =
15294
+ eventName$jscomp$inline_1974[0].toUpperCase() +
15295
+ eventName$jscomp$inline_1974.slice(1);
15251
15296
  registerSimpleEvent(
15252
- domEventName$jscomp$inline_1999,
15253
- "on" + capitalizedEvent$jscomp$inline_2000
15297
+ domEventName$jscomp$inline_1975,
15298
+ "on" + capitalizedEvent$jscomp$inline_1976
15254
15299
  );
15255
15300
  }
15256
15301
  registerSimpleEvent(ANIMATION_END, "onAnimationEnd");
@@ -16404,34 +16449,34 @@ function setInitialProperties(domElement, tag, props) {
16404
16449
  defaultChecked = null;
16405
16450
  for (hasSrc in props)
16406
16451
  if (props.hasOwnProperty(hasSrc)) {
16407
- var propValue$238 = props[hasSrc];
16408
- if (null != propValue$238)
16452
+ var propValue$239 = props[hasSrc];
16453
+ if (null != propValue$239)
16409
16454
  switch (hasSrc) {
16410
16455
  case "name":
16411
- hasSrcSet = propValue$238;
16456
+ hasSrcSet = propValue$239;
16412
16457
  break;
16413
16458
  case "type":
16414
- propValue = propValue$238;
16459
+ propValue = propValue$239;
16415
16460
  break;
16416
16461
  case "checked":
16417
- checked = propValue$238;
16462
+ checked = propValue$239;
16418
16463
  break;
16419
16464
  case "defaultChecked":
16420
- defaultChecked = propValue$238;
16465
+ defaultChecked = propValue$239;
16421
16466
  break;
16422
16467
  case "value":
16423
- propKey = propValue$238;
16468
+ propKey = propValue$239;
16424
16469
  break;
16425
16470
  case "defaultValue":
16426
- defaultValue = propValue$238;
16471
+ defaultValue = propValue$239;
16427
16472
  break;
16428
16473
  case "children":
16429
16474
  case "dangerouslySetInnerHTML":
16430
- if (null != propValue$238)
16475
+ if (null != propValue$239)
16431
16476
  throw Error(formatProdErrorMessage(137, tag));
16432
16477
  break;
16433
16478
  default:
16434
- setProp(domElement, tag, hasSrc, propValue$238, props, null);
16479
+ setProp(domElement, tag, hasSrc, propValue$239, props, null);
16435
16480
  }
16436
16481
  }
16437
16482
  initInput(
@@ -16568,14 +16613,14 @@ function setInitialProperties(domElement, tag, props) {
16568
16613
  return;
16569
16614
  default:
16570
16615
  if (isCustomElement(tag)) {
16571
- for (propValue$238 in props)
16572
- props.hasOwnProperty(propValue$238) &&
16573
- ((hasSrc = props[propValue$238]),
16616
+ for (propValue$239 in props)
16617
+ props.hasOwnProperty(propValue$239) &&
16618
+ ((hasSrc = props[propValue$239]),
16574
16619
  void 0 !== hasSrc &&
16575
16620
  setPropOnCustomElement(
16576
16621
  domElement,
16577
16622
  tag,
16578
- propValue$238,
16623
+ propValue$239,
16579
16624
  hasSrc,
16580
16625
  props,
16581
16626
  void 0
@@ -16623,14 +16668,14 @@ function updateProperties(domElement, tag, lastProps, nextProps) {
16623
16668
  setProp(domElement, tag, propKey, null, nextProps, lastProp);
16624
16669
  }
16625
16670
  }
16626
- for (var propKey$255 in nextProps) {
16627
- var propKey = nextProps[propKey$255];
16628
- lastProp = lastProps[propKey$255];
16671
+ for (var propKey$256 in nextProps) {
16672
+ var propKey = nextProps[propKey$256];
16673
+ lastProp = lastProps[propKey$256];
16629
16674
  if (
16630
- nextProps.hasOwnProperty(propKey$255) &&
16675
+ nextProps.hasOwnProperty(propKey$256) &&
16631
16676
  (null != propKey || null != lastProp)
16632
16677
  )
16633
- switch (propKey$255) {
16678
+ switch (propKey$256) {
16634
16679
  case "type":
16635
16680
  propKey !== lastProp && (viewTransitionMutationContext = !0);
16636
16681
  type = propKey;
@@ -16665,7 +16710,7 @@ function updateProperties(domElement, tag, lastProps, nextProps) {
16665
16710
  setProp(
16666
16711
  domElement,
16667
16712
  tag,
16668
- propKey$255,
16713
+ propKey$256,
16669
16714
  propKey,
16670
16715
  nextProps,
16671
16716
  lastProp
@@ -16684,7 +16729,7 @@ function updateProperties(domElement, tag, lastProps, nextProps) {
16684
16729
  );
16685
16730
  return;
16686
16731
  case "select":
16687
- propKey = value = defaultValue = propKey$255 = null;
16732
+ propKey = value = defaultValue = propKey$256 = null;
16688
16733
  for (type in lastProps)
16689
16734
  if (
16690
16735
  ((lastDefaultValue = lastProps[type]),
@@ -16716,7 +16761,7 @@ function updateProperties(domElement, tag, lastProps, nextProps) {
16716
16761
  switch (name) {
16717
16762
  case "value":
16718
16763
  type !== lastDefaultValue && (viewTransitionMutationContext = !0);
16719
- propKey$255 = type;
16764
+ propKey$256 = type;
16720
16765
  break;
16721
16766
  case "defaultValue":
16722
16767
  type !== lastDefaultValue && (viewTransitionMutationContext = !0);
@@ -16739,15 +16784,15 @@ function updateProperties(domElement, tag, lastProps, nextProps) {
16739
16784
  tag = defaultValue;
16740
16785
  lastProps = value;
16741
16786
  nextProps = propKey;
16742
- null != propKey$255
16743
- ? updateOptions(domElement, !!lastProps, propKey$255, !1)
16787
+ null != propKey$256
16788
+ ? updateOptions(domElement, !!lastProps, propKey$256, !1)
16744
16789
  : !!nextProps !== !!lastProps &&
16745
16790
  (null != tag
16746
16791
  ? updateOptions(domElement, !!lastProps, tag, !0)
16747
16792
  : updateOptions(domElement, !!lastProps, lastProps ? [] : "", !1));
16748
16793
  return;
16749
16794
  case "textarea":
16750
- propKey = propKey$255 = null;
16795
+ propKey = propKey$256 = null;
16751
16796
  for (defaultValue in lastProps)
16752
16797
  if (
16753
16798
  ((name = lastProps[defaultValue]),
@@ -16772,7 +16817,7 @@ function updateProperties(domElement, tag, lastProps, nextProps) {
16772
16817
  switch (value) {
16773
16818
  case "value":
16774
16819
  name !== type && (viewTransitionMutationContext = !0);
16775
- propKey$255 = name;
16820
+ propKey$256 = name;
16776
16821
  break;
16777
16822
  case "defaultValue":
16778
16823
  name !== type && (viewTransitionMutationContext = !0);
@@ -16787,17 +16832,17 @@ function updateProperties(domElement, tag, lastProps, nextProps) {
16787
16832
  name !== type &&
16788
16833
  setProp(domElement, tag, value, name, nextProps, type);
16789
16834
  }
16790
- updateTextarea(domElement, propKey$255, propKey);
16835
+ updateTextarea(domElement, propKey$256, propKey);
16791
16836
  return;
16792
16837
  case "option":
16793
- for (var propKey$271 in lastProps)
16838
+ for (var propKey$272 in lastProps)
16794
16839
  if (
16795
- ((propKey$255 = lastProps[propKey$271]),
16796
- lastProps.hasOwnProperty(propKey$271) &&
16797
- null != propKey$255 &&
16798
- !nextProps.hasOwnProperty(propKey$271))
16840
+ ((propKey$256 = lastProps[propKey$272]),
16841
+ lastProps.hasOwnProperty(propKey$272) &&
16842
+ null != propKey$256 &&
16843
+ !nextProps.hasOwnProperty(propKey$272))
16799
16844
  )
16800
- switch (propKey$271) {
16845
+ switch (propKey$272) {
16801
16846
  case "selected":
16802
16847
  domElement.selected = !1;
16803
16848
  break;
@@ -16805,34 +16850,34 @@ function updateProperties(domElement, tag, lastProps, nextProps) {
16805
16850
  setProp(
16806
16851
  domElement,
16807
16852
  tag,
16808
- propKey$271,
16853
+ propKey$272,
16809
16854
  null,
16810
16855
  nextProps,
16811
- propKey$255
16856
+ propKey$256
16812
16857
  );
16813
16858
  }
16814
16859
  for (lastDefaultValue in nextProps)
16815
16860
  if (
16816
- ((propKey$255 = nextProps[lastDefaultValue]),
16861
+ ((propKey$256 = nextProps[lastDefaultValue]),
16817
16862
  (propKey = lastProps[lastDefaultValue]),
16818
16863
  nextProps.hasOwnProperty(lastDefaultValue) &&
16819
- propKey$255 !== propKey &&
16820
- (null != propKey$255 || null != propKey))
16864
+ propKey$256 !== propKey &&
16865
+ (null != propKey$256 || null != propKey))
16821
16866
  )
16822
16867
  switch (lastDefaultValue) {
16823
16868
  case "selected":
16824
- propKey$255 !== propKey && (viewTransitionMutationContext = !0);
16869
+ propKey$256 !== propKey && (viewTransitionMutationContext = !0);
16825
16870
  domElement.selected =
16826
- propKey$255 &&
16827
- "function" !== typeof propKey$255 &&
16828
- "symbol" !== typeof propKey$255;
16871
+ propKey$256 &&
16872
+ "function" !== typeof propKey$256 &&
16873
+ "symbol" !== typeof propKey$256;
16829
16874
  break;
16830
16875
  default:
16831
16876
  setProp(
16832
16877
  domElement,
16833
16878
  tag,
16834
16879
  lastDefaultValue,
16835
- propKey$255,
16880
+ propKey$256,
16836
16881
  nextProps,
16837
16882
  propKey
16838
16883
  );
@@ -16853,24 +16898,24 @@ function updateProperties(domElement, tag, lastProps, nextProps) {
16853
16898
  case "track":
16854
16899
  case "wbr":
16855
16900
  case "menuitem":
16856
- for (var propKey$276 in lastProps)
16857
- (propKey$255 = lastProps[propKey$276]),
16858
- lastProps.hasOwnProperty(propKey$276) &&
16859
- null != propKey$255 &&
16860
- !nextProps.hasOwnProperty(propKey$276) &&
16861
- setProp(domElement, tag, propKey$276, null, nextProps, propKey$255);
16901
+ for (var propKey$277 in lastProps)
16902
+ (propKey$256 = lastProps[propKey$277]),
16903
+ lastProps.hasOwnProperty(propKey$277) &&
16904
+ null != propKey$256 &&
16905
+ !nextProps.hasOwnProperty(propKey$277) &&
16906
+ setProp(domElement, tag, propKey$277, null, nextProps, propKey$256);
16862
16907
  for (checked in nextProps)
16863
16908
  if (
16864
- ((propKey$255 = nextProps[checked]),
16909
+ ((propKey$256 = nextProps[checked]),
16865
16910
  (propKey = lastProps[checked]),
16866
16911
  nextProps.hasOwnProperty(checked) &&
16867
- propKey$255 !== propKey &&
16868
- (null != propKey$255 || null != propKey))
16912
+ propKey$256 !== propKey &&
16913
+ (null != propKey$256 || null != propKey))
16869
16914
  )
16870
16915
  switch (checked) {
16871
16916
  case "children":
16872
16917
  case "dangerouslySetInnerHTML":
16873
- if (null != propKey$255)
16918
+ if (null != propKey$256)
16874
16919
  throw Error(formatProdErrorMessage(137, tag));
16875
16920
  break;
16876
16921
  default:
@@ -16878,7 +16923,7 @@ function updateProperties(domElement, tag, lastProps, nextProps) {
16878
16923
  domElement,
16879
16924
  tag,
16880
16925
  checked,
16881
- propKey$255,
16926
+ propKey$256,
16882
16927
  nextProps,
16883
16928
  propKey
16884
16929
  );
@@ -16886,49 +16931,49 @@ function updateProperties(domElement, tag, lastProps, nextProps) {
16886
16931
  return;
16887
16932
  default:
16888
16933
  if (isCustomElement(tag)) {
16889
- for (var propKey$281 in lastProps)
16890
- (propKey$255 = lastProps[propKey$281]),
16891
- lastProps.hasOwnProperty(propKey$281) &&
16892
- void 0 !== propKey$255 &&
16893
- !nextProps.hasOwnProperty(propKey$281) &&
16934
+ for (var propKey$282 in lastProps)
16935
+ (propKey$256 = lastProps[propKey$282]),
16936
+ lastProps.hasOwnProperty(propKey$282) &&
16937
+ void 0 !== propKey$256 &&
16938
+ !nextProps.hasOwnProperty(propKey$282) &&
16894
16939
  setPropOnCustomElement(
16895
16940
  domElement,
16896
16941
  tag,
16897
- propKey$281,
16942
+ propKey$282,
16898
16943
  void 0,
16899
16944
  nextProps,
16900
- propKey$255
16945
+ propKey$256
16901
16946
  );
16902
16947
  for (defaultChecked in nextProps)
16903
- (propKey$255 = nextProps[defaultChecked]),
16948
+ (propKey$256 = nextProps[defaultChecked]),
16904
16949
  (propKey = lastProps[defaultChecked]),
16905
16950
  !nextProps.hasOwnProperty(defaultChecked) ||
16906
- propKey$255 === propKey ||
16907
- (void 0 === propKey$255 && void 0 === propKey) ||
16951
+ propKey$256 === propKey ||
16952
+ (void 0 === propKey$256 && void 0 === propKey) ||
16908
16953
  setPropOnCustomElement(
16909
16954
  domElement,
16910
16955
  tag,
16911
16956
  defaultChecked,
16912
- propKey$255,
16957
+ propKey$256,
16913
16958
  nextProps,
16914
16959
  propKey
16915
16960
  );
16916
16961
  return;
16917
16962
  }
16918
16963
  }
16919
- for (var propKey$286 in lastProps)
16920
- (propKey$255 = lastProps[propKey$286]),
16921
- lastProps.hasOwnProperty(propKey$286) &&
16922
- null != propKey$255 &&
16923
- !nextProps.hasOwnProperty(propKey$286) &&
16924
- setProp(domElement, tag, propKey$286, null, nextProps, propKey$255);
16964
+ for (var propKey$287 in lastProps)
16965
+ (propKey$256 = lastProps[propKey$287]),
16966
+ lastProps.hasOwnProperty(propKey$287) &&
16967
+ null != propKey$256 &&
16968
+ !nextProps.hasOwnProperty(propKey$287) &&
16969
+ setProp(domElement, tag, propKey$287, null, nextProps, propKey$256);
16925
16970
  for (lastProp in nextProps)
16926
- (propKey$255 = nextProps[lastProp]),
16971
+ (propKey$256 = nextProps[lastProp]),
16927
16972
  (propKey = lastProps[lastProp]),
16928
16973
  !nextProps.hasOwnProperty(lastProp) ||
16929
- propKey$255 === propKey ||
16930
- (null == propKey$255 && null == propKey) ||
16931
- setProp(domElement, tag, lastProp, propKey$255, nextProps, propKey);
16974
+ propKey$256 === propKey ||
16975
+ (null == propKey$256 && null == propKey) ||
16976
+ setProp(domElement, tag, lastProp, propKey$256, nextProps, propKey);
16932
16977
  }
16933
16978
  function isLikelyStaticResource(initiatorType) {
16934
16979
  switch (initiatorType) {
@@ -18535,26 +18580,26 @@ function getResource(type, currentProps, pendingProps, currentResource) {
18535
18580
  "string" === typeof pendingProps.precedence
18536
18581
  ) {
18537
18582
  type = getStyleKey(pendingProps.href);
18538
- var styles$302 = getResourcesFromRoot(
18583
+ var styles$303 = getResourcesFromRoot(
18539
18584
  JSCompiler_inline_result
18540
18585
  ).hoistableStyles,
18541
- resource$303 = styles$302.get(type);
18542
- resource$303 ||
18586
+ resource$304 = styles$303.get(type);
18587
+ resource$304 ||
18543
18588
  ((JSCompiler_inline_result =
18544
18589
  JSCompiler_inline_result.ownerDocument || JSCompiler_inline_result),
18545
- (resource$303 = {
18590
+ (resource$304 = {
18546
18591
  type: "stylesheet",
18547
18592
  instance: null,
18548
18593
  count: 0,
18549
18594
  state: { loading: 0, preload: null }
18550
18595
  }),
18551
- styles$302.set(type, resource$303),
18552
- (styles$302 = JSCompiler_inline_result.querySelector(
18596
+ styles$303.set(type, resource$304),
18597
+ (styles$303 = JSCompiler_inline_result.querySelector(
18553
18598
  getStylesheetSelectorFromKey(type)
18554
18599
  )) &&
18555
- !styles$302._p &&
18556
- ((resource$303.instance = styles$302),
18557
- (resource$303.state.loading = 5)),
18600
+ !styles$303._p &&
18601
+ ((resource$304.instance = styles$303),
18602
+ (resource$304.state.loading = 5)),
18558
18603
  preloadPropsMap.has(type) ||
18559
18604
  ((pendingProps = {
18560
18605
  rel: "preload",
@@ -18567,16 +18612,16 @@ function getResource(type, currentProps, pendingProps, currentResource) {
18567
18612
  referrerPolicy: pendingProps.referrerPolicy
18568
18613
  }),
18569
18614
  preloadPropsMap.set(type, pendingProps),
18570
- styles$302 ||
18615
+ styles$303 ||
18571
18616
  preloadStylesheet(
18572
18617
  JSCompiler_inline_result,
18573
18618
  type,
18574
18619
  pendingProps,
18575
- resource$303.state
18620
+ resource$304.state
18576
18621
  )));
18577
18622
  if (currentProps && null === currentResource)
18578
18623
  throw Error(formatProdErrorMessage(528, ""));
18579
- return resource$303;
18624
+ return resource$304;
18580
18625
  }
18581
18626
  if (currentProps && null !== currentResource)
18582
18627
  throw Error(formatProdErrorMessage(529, ""));
@@ -18673,37 +18718,37 @@ function acquireResource(hoistableRoot, resource, props) {
18673
18718
  return (resource.instance = instance);
18674
18719
  case "stylesheet":
18675
18720
  styleProps = getStyleKey(props.href);
18676
- var instance$308 = hoistableRoot.querySelector(
18721
+ var instance$309 = hoistableRoot.querySelector(
18677
18722
  getStylesheetSelectorFromKey(styleProps)
18678
18723
  );
18679
- if (instance$308)
18724
+ if (instance$309)
18680
18725
  return (
18681
18726
  (resource.state.loading |= 4),
18682
- (resource.instance = instance$308),
18683
- markNodeAsHoistable(instance$308),
18684
- instance$308
18727
+ (resource.instance = instance$309),
18728
+ markNodeAsHoistable(instance$309),
18729
+ instance$309
18685
18730
  );
18686
18731
  instance = stylesheetPropsFromRawProps(props);
18687
18732
  (styleProps = preloadPropsMap.get(styleProps)) &&
18688
18733
  adoptPreloadPropsForStylesheet(instance, styleProps);
18689
- instance$308 = (
18734
+ instance$309 = (
18690
18735
  hoistableRoot.ownerDocument || hoistableRoot
18691
18736
  ).createElement("link");
18692
- markNodeAsHoistable(instance$308);
18693
- var linkInstance = instance$308;
18737
+ markNodeAsHoistable(instance$309);
18738
+ var linkInstance = instance$309;
18694
18739
  linkInstance._p = new Promise(function (resolve, reject) {
18695
18740
  linkInstance.onload = resolve;
18696
18741
  linkInstance.onerror = reject;
18697
18742
  });
18698
- setInitialProperties(instance$308, "link", instance);
18743
+ setInitialProperties(instance$309, "link", instance);
18699
18744
  resource.state.loading |= 4;
18700
- insertStylesheet(instance$308, props.precedence, hoistableRoot);
18701
- return (resource.instance = instance$308);
18745
+ insertStylesheet(instance$309, props.precedence, hoistableRoot);
18746
+ return (resource.instance = instance$309);
18702
18747
  case "script":
18703
- instance$308 = getScriptKey(props.src);
18748
+ instance$309 = getScriptKey(props.src);
18704
18749
  if (
18705
18750
  (styleProps = hoistableRoot.querySelector(
18706
- getScriptSelectorFromKey(instance$308)
18751
+ getScriptSelectorFromKey(instance$309)
18707
18752
  ))
18708
18753
  )
18709
18754
  return (
@@ -18712,7 +18757,7 @@ function acquireResource(hoistableRoot, resource, props) {
18712
18757
  styleProps
18713
18758
  );
18714
18759
  instance = props;
18715
- if ((styleProps = preloadPropsMap.get(instance$308)))
18760
+ if ((styleProps = preloadPropsMap.get(instance$309)))
18716
18761
  (instance = assign({}, props)),
18717
18762
  adoptPreloadPropsForScript(instance, styleProps);
18718
18763
  hoistableRoot = hoistableRoot.ownerDocument || hoistableRoot;
@@ -19864,16 +19909,16 @@ ReactDOMHydrationRoot.prototype.unstable_scheduleHydration = function (target) {
19864
19909
  0 === i && attemptExplicitHydrationTarget(target);
19865
19910
  }
19866
19911
  };
19867
- var isomorphicReactPackageVersion$jscomp$inline_2353 = React.version;
19912
+ var isomorphicReactPackageVersion$jscomp$inline_2329 = React.version;
19868
19913
  if (
19869
- "19.3.0-canary-67f7d47a-20251103" !==
19870
- isomorphicReactPackageVersion$jscomp$inline_2353
19914
+ "19.3.0-canary-dd048c3b-20251105" !==
19915
+ isomorphicReactPackageVersion$jscomp$inline_2329
19871
19916
  )
19872
19917
  throw Error(
19873
19918
  formatProdErrorMessage(
19874
19919
  527,
19875
- isomorphicReactPackageVersion$jscomp$inline_2353,
19876
- "19.3.0-canary-67f7d47a-20251103"
19920
+ isomorphicReactPackageVersion$jscomp$inline_2329,
19921
+ "19.3.0-canary-dd048c3b-20251105"
19877
19922
  )
19878
19923
  );
19879
19924
  ReactDOMSharedInternals.findDOMNode = function (componentOrElement) {
@@ -19893,24 +19938,24 @@ ReactDOMSharedInternals.findDOMNode = function (componentOrElement) {
19893
19938
  null === componentOrElement ? null : componentOrElement.stateNode;
19894
19939
  return componentOrElement;
19895
19940
  };
19896
- var internals$jscomp$inline_2953 = {
19941
+ var internals$jscomp$inline_2927 = {
19897
19942
  bundleType: 0,
19898
- version: "19.3.0-canary-67f7d47a-20251103",
19943
+ version: "19.3.0-canary-dd048c3b-20251105",
19899
19944
  rendererPackageName: "react-dom",
19900
19945
  currentDispatcherRef: ReactSharedInternals,
19901
- reconcilerVersion: "19.3.0-canary-67f7d47a-20251103"
19946
+ reconcilerVersion: "19.3.0-canary-dd048c3b-20251105"
19902
19947
  };
19903
19948
  if ("undefined" !== typeof __REACT_DEVTOOLS_GLOBAL_HOOK__) {
19904
- var hook$jscomp$inline_2954 = __REACT_DEVTOOLS_GLOBAL_HOOK__;
19949
+ var hook$jscomp$inline_2928 = __REACT_DEVTOOLS_GLOBAL_HOOK__;
19905
19950
  if (
19906
- !hook$jscomp$inline_2954.isDisabled &&
19907
- hook$jscomp$inline_2954.supportsFiber
19951
+ !hook$jscomp$inline_2928.isDisabled &&
19952
+ hook$jscomp$inline_2928.supportsFiber
19908
19953
  )
19909
19954
  try {
19910
- (rendererID = hook$jscomp$inline_2954.inject(
19911
- internals$jscomp$inline_2953
19955
+ (rendererID = hook$jscomp$inline_2928.inject(
19956
+ internals$jscomp$inline_2927
19912
19957
  )),
19913
- (injectedHook = hook$jscomp$inline_2954);
19958
+ (injectedHook = hook$jscomp$inline_2928);
19914
19959
  } catch (err) {}
19915
19960
  }
19916
19961
  function getCrossOriginStringAs(as, input) {
@@ -20157,7 +20202,7 @@ exports.useFormState = function (action, initialState, permalink) {
20157
20202
  exports.useFormStatus = function () {
20158
20203
  return ReactSharedInternals.H.useHostTransitionStatus();
20159
20204
  };
20160
- exports.version = "19.3.0-canary-67f7d47a-20251103";
20205
+ exports.version = "19.3.0-canary-dd048c3b-20251105";
20161
20206
  "undefined" !== typeof __REACT_DEVTOOLS_GLOBAL_HOOK__ &&
20162
20207
  "function" ===
20163
20208
  typeof __REACT_DEVTOOLS_GLOBAL_HOOK__.registerInternalModuleStop &&