react-dom 19.2.0-canary-f1e70b5e-20250811 → 19.2.0-canary-ac7820a9-20250811

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.
@@ -2130,19 +2130,19 @@ function getTargetInstForChangeEvent(domEventName, targetInst) {
2130
2130
  }
2131
2131
  var isInputEventSupported = !1;
2132
2132
  if (canUseDOM) {
2133
- var JSCompiler_inline_result$jscomp$301;
2133
+ var JSCompiler_inline_result$jscomp$302;
2134
2134
  if (canUseDOM) {
2135
- var isSupported$jscomp$inline_447 = "oninput" in document;
2136
- if (!isSupported$jscomp$inline_447) {
2137
- var element$jscomp$inline_448 = document.createElement("div");
2138
- element$jscomp$inline_448.setAttribute("oninput", "return;");
2139
- isSupported$jscomp$inline_447 =
2140
- "function" === typeof element$jscomp$inline_448.oninput;
2135
+ var isSupported$jscomp$inline_446 = "oninput" in document;
2136
+ if (!isSupported$jscomp$inline_446) {
2137
+ var element$jscomp$inline_447 = document.createElement("div");
2138
+ element$jscomp$inline_447.setAttribute("oninput", "return;");
2139
+ isSupported$jscomp$inline_446 =
2140
+ "function" === typeof element$jscomp$inline_447.oninput;
2141
2141
  }
2142
- JSCompiler_inline_result$jscomp$301 = isSupported$jscomp$inline_447;
2143
- } else JSCompiler_inline_result$jscomp$301 = !1;
2142
+ JSCompiler_inline_result$jscomp$302 = isSupported$jscomp$inline_446;
2143
+ } else JSCompiler_inline_result$jscomp$302 = !1;
2144
2144
  isInputEventSupported =
2145
- JSCompiler_inline_result$jscomp$301 &&
2145
+ JSCompiler_inline_result$jscomp$302 &&
2146
2146
  (!document.documentMode || 9 < document.documentMode);
2147
2147
  }
2148
2148
  function stopWatchingForValueChange() {
@@ -6380,6 +6380,14 @@ function updateOffscreenComponent(
6380
6380
  ) {
6381
6381
  var nextChildren = nextProps.children,
6382
6382
  prevState = null !== current ? current.memoizedState : null;
6383
+ null === current &&
6384
+ null === workInProgress.stateNode &&
6385
+ (workInProgress.stateNode = {
6386
+ _visibility: 1,
6387
+ _pendingMarkers: null,
6388
+ _retryCache: null,
6389
+ _transitions: null
6390
+ });
6383
6391
  if ("hidden" === nextProps.mode) {
6384
6392
  if (0 !== (workInProgress.flags & 128)) {
6385
6393
  nextProps =
@@ -6432,6 +6440,17 @@ function updateOffscreenComponent(
6432
6440
  reconcileChildren(current, workInProgress, nextChildren, renderLanes);
6433
6441
  return workInProgress.child;
6434
6442
  }
6443
+ function bailoutOffscreenComponent(current, workInProgress) {
6444
+ (null !== current && 22 === current.tag) ||
6445
+ null !== workInProgress.stateNode ||
6446
+ (workInProgress.stateNode = {
6447
+ _visibility: 1,
6448
+ _pendingMarkers: null,
6449
+ _retryCache: null,
6450
+ _transitions: null
6451
+ });
6452
+ return workInProgress.sibling;
6453
+ }
6435
6454
  function deferHiddenOffscreenComponent(
6436
6455
  current,
6437
6456
  workInProgress,
@@ -6476,6 +6495,110 @@ function retryActivityComponentWithoutHydrating(
6476
6495
  workInProgress.memoizedState = null;
6477
6496
  return current;
6478
6497
  }
6498
+ function updateActivityComponent(current, workInProgress, renderLanes) {
6499
+ var nextProps = workInProgress.pendingProps,
6500
+ didSuspend = 0 !== (workInProgress.flags & 128);
6501
+ workInProgress.flags &= -129;
6502
+ if (null === current) {
6503
+ if (isHydrating) {
6504
+ if ("hidden" === nextProps.mode)
6505
+ return (
6506
+ (current = mountActivityChildren(workInProgress, nextProps)),
6507
+ (workInProgress.lanes = 536870912),
6508
+ bailoutOffscreenComponent(null, current)
6509
+ );
6510
+ pushDehydratedActivitySuspenseHandler(workInProgress);
6511
+ (current = nextHydratableInstance)
6512
+ ? ((current = canHydrateHydrationBoundary(
6513
+ current,
6514
+ rootOrSingletonContext
6515
+ )),
6516
+ (current = null !== current && "&" === current.data ? current : null),
6517
+ null !== current &&
6518
+ ((workInProgress.memoizedState = {
6519
+ dehydrated: current,
6520
+ treeContext:
6521
+ null !== treeContextProvider
6522
+ ? { id: treeContextId, overflow: treeContextOverflow }
6523
+ : null,
6524
+ retryLane: 536870912,
6525
+ hydrationErrors: null
6526
+ }),
6527
+ (renderLanes = createFiberFromDehydratedFragment(current)),
6528
+ (renderLanes.return = workInProgress),
6529
+ (workInProgress.child = renderLanes),
6530
+ (hydrationParentFiber = workInProgress),
6531
+ (nextHydratableInstance = null)))
6532
+ : (current = null);
6533
+ if (null === current) throw throwOnHydrationMismatch(workInProgress);
6534
+ workInProgress.lanes = 536870912;
6535
+ return null;
6536
+ }
6537
+ return mountActivityChildren(workInProgress, nextProps);
6538
+ }
6539
+ var prevState = current.memoizedState;
6540
+ if (null !== prevState) {
6541
+ var dehydrated = prevState.dehydrated;
6542
+ pushDehydratedActivitySuspenseHandler(workInProgress);
6543
+ if (didSuspend)
6544
+ if (workInProgress.flags & 256)
6545
+ (workInProgress.flags &= -257),
6546
+ (workInProgress = retryActivityComponentWithoutHydrating(
6547
+ current,
6548
+ workInProgress,
6549
+ renderLanes
6550
+ ));
6551
+ else if (null !== workInProgress.memoizedState)
6552
+ (workInProgress.child = current.child),
6553
+ (workInProgress.flags |= 128),
6554
+ (workInProgress = null);
6555
+ else throw Error(formatProdErrorMessage(558));
6556
+ else if (
6557
+ (didReceiveUpdate ||
6558
+ propagateParentContextChanges(current, workInProgress, renderLanes, !1),
6559
+ (didSuspend = 0 !== (renderLanes & current.childLanes)),
6560
+ didReceiveUpdate || didSuspend)
6561
+ ) {
6562
+ nextProps = workInProgressRoot;
6563
+ if (
6564
+ null !== nextProps &&
6565
+ ((dehydrated = getBumpedLaneForHydration(nextProps, renderLanes)),
6566
+ 0 !== dehydrated && dehydrated !== prevState.retryLane)
6567
+ )
6568
+ throw (
6569
+ ((prevState.retryLane = dehydrated),
6570
+ enqueueConcurrentRenderForLane(current, dehydrated),
6571
+ scheduleUpdateOnFiber(nextProps, current, dehydrated),
6572
+ SelectiveHydrationException)
6573
+ );
6574
+ renderDidSuspendDelayIfPossible();
6575
+ workInProgress = retryActivityComponentWithoutHydrating(
6576
+ current,
6577
+ workInProgress,
6578
+ renderLanes
6579
+ );
6580
+ } else
6581
+ (current = prevState.treeContext),
6582
+ (nextHydratableInstance = getNextHydratable(dehydrated.nextSibling)),
6583
+ (hydrationParentFiber = workInProgress),
6584
+ (isHydrating = !0),
6585
+ (hydrationErrors = null),
6586
+ (rootOrSingletonContext = !1),
6587
+ null !== current &&
6588
+ restoreSuspendedTreeContext(workInProgress, current),
6589
+ (workInProgress = mountActivityChildren(workInProgress, nextProps)),
6590
+ (workInProgress.flags |= 4096);
6591
+ return workInProgress;
6592
+ }
6593
+ current = createWorkInProgress(current.child, {
6594
+ mode: nextProps.mode,
6595
+ children: nextProps.children
6596
+ });
6597
+ current.ref = workInProgress.ref;
6598
+ workInProgress.child = current;
6599
+ current.return = workInProgress;
6600
+ return current;
6601
+ }
6479
6602
  function markRef(current, workInProgress) {
6480
6603
  var ref = workInProgress.ref;
6481
6604
  if (null === ref)
@@ -6905,16 +7028,15 @@ function updateSuspenseComponent(current, workInProgress, renderLanes) {
6905
7028
  (nextProps.return = workInProgress),
6906
7029
  (nextPrimaryChildren.sibling = nextProps),
6907
7030
  (workInProgress.child = nextPrimaryChildren),
6908
- (nextPrimaryChildren = workInProgress.child),
6909
- (nextPrimaryChildren.memoizedState =
6910
- mountSuspenseOffscreenState(renderLanes)),
6911
- (nextPrimaryChildren.childLanes = getRemainingWorkInPrimaryTree(
7031
+ (nextProps = workInProgress.child),
7032
+ (nextProps.memoizedState = mountSuspenseOffscreenState(renderLanes)),
7033
+ (nextProps.childLanes = getRemainingWorkInPrimaryTree(
6912
7034
  current,
6913
7035
  JSCompiler_temp,
6914
7036
  renderLanes
6915
7037
  )),
6916
7038
  (workInProgress.memoizedState = SUSPENDED_MARKER),
6917
- nextProps
7039
+ bailoutOffscreenComponent(null, nextProps)
6918
7040
  );
6919
7041
  pushPrimaryTreeSuspenseHandler(workInProgress);
6920
7042
  return mountSuspensePrimaryChildren(workInProgress, nextPrimaryChildren);
@@ -6971,7 +7093,7 @@ function updateSuspenseComponent(current, workInProgress, renderLanes) {
6971
7093
  renderLanes
6972
7094
  )),
6973
7095
  (workInProgress.memoizedState = SUSPENDED_MARKER),
6974
- (workInProgress = nextPrimaryChildren));
7096
+ (workInProgress = bailoutOffscreenComponent(null, nextProps)));
6975
7097
  else if (
6976
7098
  (pushPrimaryTreeSuspenseHandler(workInProgress),
6977
7099
  isSuspenseInstanceFallback(nextPrimaryChildren))
@@ -7065,31 +7187,31 @@ function updateSuspenseComponent(current, workInProgress, renderLanes) {
7065
7187
  (nextProps.return = workInProgress),
7066
7188
  (nextProps.sibling = nextPrimaryChildren),
7067
7189
  (workInProgress.child = nextProps),
7068
- (nextProps = nextPrimaryChildren),
7069
- (nextPrimaryChildren = workInProgress.child),
7070
- (showFallback = current.child.memoizedState),
7071
- null === showFallback
7072
- ? (showFallback = mountSuspenseOffscreenState(renderLanes))
7073
- : ((prevState = showFallback.cachePool),
7074
- null !== prevState
7075
- ? ((digest = CacheContext._currentValue),
7076
- (prevState =
7077
- prevState.parent !== digest
7078
- ? { parent: digest, pool: digest }
7079
- : prevState))
7080
- : (prevState = getSuspendedCache()),
7081
- (showFallback = {
7082
- baseLanes: showFallback.baseLanes | renderLanes,
7083
- cachePool: prevState
7190
+ bailoutOffscreenComponent(null, nextProps),
7191
+ (nextProps = workInProgress.child),
7192
+ (nextPrimaryChildren = current.child.memoizedState),
7193
+ null === nextPrimaryChildren
7194
+ ? (nextPrimaryChildren = mountSuspenseOffscreenState(renderLanes))
7195
+ : ((showFallback = nextPrimaryChildren.cachePool),
7196
+ null !== showFallback
7197
+ ? ((prevState = CacheContext._currentValue),
7198
+ (showFallback =
7199
+ showFallback.parent !== prevState
7200
+ ? { parent: prevState, pool: prevState }
7201
+ : showFallback))
7202
+ : (showFallback = getSuspendedCache()),
7203
+ (nextPrimaryChildren = {
7204
+ baseLanes: nextPrimaryChildren.baseLanes | renderLanes,
7205
+ cachePool: showFallback
7084
7206
  })),
7085
- (nextPrimaryChildren.memoizedState = showFallback),
7086
- (nextPrimaryChildren.childLanes = getRemainingWorkInPrimaryTree(
7207
+ (nextProps.memoizedState = nextPrimaryChildren),
7208
+ (nextProps.childLanes = getRemainingWorkInPrimaryTree(
7087
7209
  current,
7088
7210
  JSCompiler_temp,
7089
7211
  renderLanes
7090
7212
  )),
7091
7213
  (workInProgress.memoizedState = SUSPENDED_MARKER),
7092
- nextProps
7214
+ bailoutOffscreenComponent(current.child, nextProps)
7093
7215
  );
7094
7216
  pushPrimaryTreeSuspenseHandler(workInProgress);
7095
7217
  renderLanes = current.child;
@@ -7120,12 +7242,6 @@ function mountSuspensePrimaryChildren(workInProgress, primaryChildren) {
7120
7242
  function mountWorkInProgressOffscreenFiber(offscreenProps, mode) {
7121
7243
  offscreenProps = createFiberImplClass(22, offscreenProps, null, mode);
7122
7244
  offscreenProps.lanes = 0;
7123
- offscreenProps.stateNode = {
7124
- _visibility: 1,
7125
- _pendingMarkers: null,
7126
- _retryCache: null,
7127
- _transitions: null
7128
- };
7129
7245
  return offscreenProps;
7130
7246
  }
7131
7247
  function retrySuspenseComponentWithoutHydrating(
@@ -7830,114 +7946,7 @@ function beginWork(current, workInProgress, renderLanes) {
7830
7946
  case 19:
7831
7947
  return updateSuspenseListComponent(current, workInProgress, renderLanes);
7832
7948
  case 31:
7833
- $$typeof = workInProgress.pendingProps;
7834
- nextState = 0 !== (workInProgress.flags & 128);
7835
- workInProgress.flags &= -129;
7836
- if (null === current)
7837
- if (isHydrating) {
7838
- if ("hidden" === $$typeof.mode)
7839
- mountActivityChildren(workInProgress, $$typeof);
7840
- else if (
7841
- (pushDehydratedActivitySuspenseHandler(workInProgress),
7842
- (renderLanes = nextHydratableInstance)
7843
- ? ((renderLanes = canHydrateHydrationBoundary(
7844
- renderLanes,
7845
- rootOrSingletonContext
7846
- )),
7847
- (renderLanes =
7848
- null !== renderLanes && "&" === renderLanes.data
7849
- ? renderLanes
7850
- : null),
7851
- null !== renderLanes &&
7852
- ((workInProgress.memoizedState = {
7853
- dehydrated: renderLanes,
7854
- treeContext:
7855
- null !== treeContextProvider
7856
- ? { id: treeContextId, overflow: treeContextOverflow }
7857
- : null,
7858
- retryLane: 536870912,
7859
- hydrationErrors: null
7860
- }),
7861
- (current = createFiberFromDehydratedFragment(renderLanes)),
7862
- (current.return = workInProgress),
7863
- (workInProgress.child = current),
7864
- (hydrationParentFiber = workInProgress),
7865
- (nextHydratableInstance = null)))
7866
- : (renderLanes = null),
7867
- null === renderLanes)
7868
- )
7869
- throw throwOnHydrationMismatch(workInProgress);
7870
- workInProgress.lanes = 536870912;
7871
- workInProgress = null;
7872
- } else workInProgress = mountActivityChildren(workInProgress, $$typeof);
7873
- else if (((props = current.memoizedState), null !== props))
7874
- if (
7875
- ((prevState = props.dehydrated),
7876
- pushDehydratedActivitySuspenseHandler(workInProgress),
7877
- nextState)
7878
- )
7879
- if (workInProgress.flags & 256)
7880
- (workInProgress.flags &= -257),
7881
- (workInProgress = retryActivityComponentWithoutHydrating(
7882
- current,
7883
- workInProgress,
7884
- renderLanes
7885
- ));
7886
- else if (null !== workInProgress.memoizedState)
7887
- (workInProgress.child = current.child),
7888
- (workInProgress.flags |= 128),
7889
- (workInProgress = null);
7890
- else throw Error(formatProdErrorMessage(558));
7891
- else if (
7892
- (didReceiveUpdate ||
7893
- propagateParentContextChanges(
7894
- current,
7895
- workInProgress,
7896
- renderLanes,
7897
- !1
7898
- ),
7899
- (nextState = 0 !== (renderLanes & current.childLanes)),
7900
- didReceiveUpdate || nextState)
7901
- ) {
7902
- $$typeof = workInProgressRoot;
7903
- if (
7904
- null !== $$typeof &&
7905
- ((prevState = getBumpedLaneForHydration($$typeof, renderLanes)),
7906
- 0 !== prevState && prevState !== props.retryLane)
7907
- )
7908
- throw (
7909
- ((props.retryLane = prevState),
7910
- enqueueConcurrentRenderForLane(current, prevState),
7911
- scheduleUpdateOnFiber($$typeof, current, prevState),
7912
- SelectiveHydrationException)
7913
- );
7914
- renderDidSuspendDelayIfPossible();
7915
- workInProgress = retryActivityComponentWithoutHydrating(
7916
- current,
7917
- workInProgress,
7918
- renderLanes
7919
- );
7920
- } else
7921
- (renderLanes = props.treeContext),
7922
- (nextHydratableInstance = getNextHydratable(prevState.nextSibling)),
7923
- (hydrationParentFiber = workInProgress),
7924
- (isHydrating = !0),
7925
- (hydrationErrors = null),
7926
- (rootOrSingletonContext = !1),
7927
- null !== renderLanes &&
7928
- restoreSuspendedTreeContext(workInProgress, renderLanes),
7929
- (workInProgress = mountActivityChildren(workInProgress, $$typeof)),
7930
- (workInProgress.flags |= 4096);
7931
- else
7932
- (renderLanes = createWorkInProgress(current.child, {
7933
- mode: $$typeof.mode,
7934
- children: $$typeof.children
7935
- })),
7936
- (renderLanes.ref = workInProgress.ref),
7937
- (workInProgress.child = renderLanes),
7938
- (renderLanes.return = workInProgress),
7939
- (workInProgress = renderLanes);
7940
- return workInProgress;
7949
+ return updateActivityComponent(current, workInProgress, renderLanes);
7941
7950
  case 22:
7942
7951
  return updateOffscreenComponent(
7943
7952
  current,
@@ -8056,14 +8065,14 @@ function cutOffTailIfNeeded(renderState, hasRenderedATailFallback) {
8056
8065
  break;
8057
8066
  case "collapsed":
8058
8067
  lastTailNode = renderState.tail;
8059
- for (var lastTailNode$107 = null; null !== lastTailNode; )
8060
- null !== lastTailNode.alternate && (lastTailNode$107 = lastTailNode),
8068
+ for (var lastTailNode$108 = null; null !== lastTailNode; )
8069
+ null !== lastTailNode.alternate && (lastTailNode$108 = lastTailNode),
8061
8070
  (lastTailNode = lastTailNode.sibling);
8062
- null === lastTailNode$107
8071
+ null === lastTailNode$108
8063
8072
  ? hasRenderedATailFallback || null === renderState.tail
8064
8073
  ? (renderState.tail = null)
8065
8074
  : (renderState.tail.sibling = null)
8066
- : (lastTailNode$107.sibling = null);
8075
+ : (lastTailNode$108.sibling = null);
8067
8076
  }
8068
8077
  }
8069
8078
  function bubbleProperties(completedWork) {
@@ -8075,53 +8084,53 @@ function bubbleProperties(completedWork) {
8075
8084
  if (didBailout)
8076
8085
  if (0 !== (completedWork.mode & 2)) {
8077
8086
  for (
8078
- var treeBaseDuration$109 = completedWork.selfBaseDuration,
8079
- child$110 = completedWork.child;
8080
- null !== child$110;
8087
+ var treeBaseDuration$110 = completedWork.selfBaseDuration,
8088
+ child$111 = completedWork.child;
8089
+ null !== child$111;
8081
8090
 
8082
8091
  )
8083
- (newChildLanes |= child$110.lanes | child$110.childLanes),
8084
- (subtreeFlags |= child$110.subtreeFlags & 65011712),
8085
- (subtreeFlags |= child$110.flags & 65011712),
8086
- (treeBaseDuration$109 += child$110.treeBaseDuration),
8087
- (child$110 = child$110.sibling);
8088
- completedWork.treeBaseDuration = treeBaseDuration$109;
8092
+ (newChildLanes |= child$111.lanes | child$111.childLanes),
8093
+ (subtreeFlags |= child$111.subtreeFlags & 65011712),
8094
+ (subtreeFlags |= child$111.flags & 65011712),
8095
+ (treeBaseDuration$110 += child$111.treeBaseDuration),
8096
+ (child$111 = child$111.sibling);
8097
+ completedWork.treeBaseDuration = treeBaseDuration$110;
8089
8098
  } else
8090
8099
  for (
8091
- treeBaseDuration$109 = completedWork.child;
8092
- null !== treeBaseDuration$109;
8100
+ treeBaseDuration$110 = completedWork.child;
8101
+ null !== treeBaseDuration$110;
8093
8102
 
8094
8103
  )
8095
8104
  (newChildLanes |=
8096
- treeBaseDuration$109.lanes | treeBaseDuration$109.childLanes),
8097
- (subtreeFlags |= treeBaseDuration$109.subtreeFlags & 65011712),
8098
- (subtreeFlags |= treeBaseDuration$109.flags & 65011712),
8099
- (treeBaseDuration$109.return = completedWork),
8100
- (treeBaseDuration$109 = treeBaseDuration$109.sibling);
8105
+ treeBaseDuration$110.lanes | treeBaseDuration$110.childLanes),
8106
+ (subtreeFlags |= treeBaseDuration$110.subtreeFlags & 65011712),
8107
+ (subtreeFlags |= treeBaseDuration$110.flags & 65011712),
8108
+ (treeBaseDuration$110.return = completedWork),
8109
+ (treeBaseDuration$110 = treeBaseDuration$110.sibling);
8101
8110
  else if (0 !== (completedWork.mode & 2)) {
8102
- treeBaseDuration$109 = completedWork.actualDuration;
8103
- child$110 = completedWork.selfBaseDuration;
8111
+ treeBaseDuration$110 = completedWork.actualDuration;
8112
+ child$111 = completedWork.selfBaseDuration;
8104
8113
  for (var child = completedWork.child; null !== child; )
8105
8114
  (newChildLanes |= child.lanes | child.childLanes),
8106
8115
  (subtreeFlags |= child.subtreeFlags),
8107
8116
  (subtreeFlags |= child.flags),
8108
- (treeBaseDuration$109 += child.actualDuration),
8109
- (child$110 += child.treeBaseDuration),
8117
+ (treeBaseDuration$110 += child.actualDuration),
8118
+ (child$111 += child.treeBaseDuration),
8110
8119
  (child = child.sibling);
8111
- completedWork.actualDuration = treeBaseDuration$109;
8112
- completedWork.treeBaseDuration = child$110;
8120
+ completedWork.actualDuration = treeBaseDuration$110;
8121
+ completedWork.treeBaseDuration = child$111;
8113
8122
  } else
8114
8123
  for (
8115
- treeBaseDuration$109 = completedWork.child;
8116
- null !== treeBaseDuration$109;
8124
+ treeBaseDuration$110 = completedWork.child;
8125
+ null !== treeBaseDuration$110;
8117
8126
 
8118
8127
  )
8119
8128
  (newChildLanes |=
8120
- treeBaseDuration$109.lanes | treeBaseDuration$109.childLanes),
8121
- (subtreeFlags |= treeBaseDuration$109.subtreeFlags),
8122
- (subtreeFlags |= treeBaseDuration$109.flags),
8123
- (treeBaseDuration$109.return = completedWork),
8124
- (treeBaseDuration$109 = treeBaseDuration$109.sibling);
8129
+ treeBaseDuration$110.lanes | treeBaseDuration$110.childLanes),
8130
+ (subtreeFlags |= treeBaseDuration$110.subtreeFlags),
8131
+ (subtreeFlags |= treeBaseDuration$110.flags),
8132
+ (treeBaseDuration$110.return = completedWork),
8133
+ (treeBaseDuration$110 = treeBaseDuration$110.sibling);
8125
8134
  completedWork.subtreeFlags |= subtreeFlags;
8126
8135
  completedWork.childLanes = newChildLanes;
8127
8136
  return didBailout;
@@ -8984,8 +8993,8 @@ function safelyCallComponentWillUnmount(
8984
8993
  } else
8985
8994
  try {
8986
8995
  instance.componentWillUnmount();
8987
- } catch (error$150) {
8988
- captureCommitPhaseError(current, nearestMountedAncestor, error$150);
8996
+ } catch (error$151) {
8997
+ captureCommitPhaseError(current, nearestMountedAncestor, error$151);
8989
8998
  }
8990
8999
  }
8991
9000
  function safelyAttachRef(current, nearestMountedAncestor) {
@@ -9047,8 +9056,8 @@ function safelyDetachRef(current, nearestMountedAncestor) {
9047
9056
  recordEffectDuration(current);
9048
9057
  }
9049
9058
  else ref(null);
9050
- } catch (error$151) {
9051
- captureCommitPhaseError(current, nearestMountedAncestor, error$151);
9059
+ } catch (error$152) {
9060
+ captureCommitPhaseError(current, nearestMountedAncestor, error$152);
9052
9061
  }
9053
9062
  else ref.current = null;
9054
9063
  }
@@ -9398,11 +9407,11 @@ function commitLayoutEffectOnFiber(finishedRoot, current, finishedWork) {
9398
9407
  } else
9399
9408
  try {
9400
9409
  finishedRoot.componentDidMount();
9401
- } catch (error$147) {
9410
+ } catch (error$148) {
9402
9411
  captureCommitPhaseError(
9403
9412
  finishedWork,
9404
9413
  finishedWork.return,
9405
- error$147
9414
+ error$148
9406
9415
  );
9407
9416
  }
9408
9417
  else {
@@ -9419,11 +9428,11 @@ function commitLayoutEffectOnFiber(finishedRoot, current, finishedWork) {
9419
9428
  current,
9420
9429
  finishedRoot.__reactInternalSnapshotBeforeUpdate
9421
9430
  );
9422
- } catch (error$148) {
9431
+ } catch (error$149) {
9423
9432
  captureCommitPhaseError(
9424
9433
  finishedWork,
9425
9434
  finishedWork.return,
9426
- error$148
9435
+ error$149
9427
9436
  );
9428
9437
  }
9429
9438
  recordEffectDuration();
@@ -9434,11 +9443,11 @@ function commitLayoutEffectOnFiber(finishedRoot, current, finishedWork) {
9434
9443
  current,
9435
9444
  finishedRoot.__reactInternalSnapshotBeforeUpdate
9436
9445
  );
9437
- } catch (error$149) {
9446
+ } catch (error$150) {
9438
9447
  captureCommitPhaseError(
9439
9448
  finishedWork,
9440
9449
  finishedWork.return,
9441
- error$149
9450
+ error$150
9442
9451
  );
9443
9452
  }
9444
9453
  }
@@ -10289,20 +10298,20 @@ function commitReconciliationEffects(finishedWork) {
10289
10298
  insertOrAppendPlacementNode(finishedWork, before, parent);
10290
10299
  break;
10291
10300
  case 5:
10292
- var parent$152 = hostParentFiber.stateNode;
10301
+ var parent$153 = hostParentFiber.stateNode;
10293
10302
  hostParentFiber.flags & 32 &&
10294
- (setTextContent(parent$152, ""), (hostParentFiber.flags &= -33));
10295
- var before$153 = getHostSibling(finishedWork);
10296
- insertOrAppendPlacementNode(finishedWork, before$153, parent$152);
10303
+ (setTextContent(parent$153, ""), (hostParentFiber.flags &= -33));
10304
+ var before$154 = getHostSibling(finishedWork);
10305
+ insertOrAppendPlacementNode(finishedWork, before$154, parent$153);
10297
10306
  break;
10298
10307
  case 3:
10299
10308
  case 4:
10300
- var parent$154 = hostParentFiber.stateNode.containerInfo,
10301
- before$155 = getHostSibling(finishedWork);
10309
+ var parent$155 = hostParentFiber.stateNode.containerInfo,
10310
+ before$156 = getHostSibling(finishedWork);
10302
10311
  insertOrAppendPlacementNodeIntoContainer(
10303
10312
  finishedWork,
10304
- before$155,
10305
- parent$154
10313
+ before$156,
10314
+ parent$155
10306
10315
  );
10307
10316
  break;
10308
10317
  default:
@@ -11611,8 +11620,8 @@ function renderRootSync(root, lanes, shouldYieldForPrerendering) {
11611
11620
  workLoopSync();
11612
11621
  memoizedUpdaters = workInProgressRootExitStatus;
11613
11622
  break;
11614
- } catch (thrownValue$180) {
11615
- handleThrow(root, thrownValue$180);
11623
+ } catch (thrownValue$181) {
11624
+ handleThrow(root, thrownValue$181);
11616
11625
  }
11617
11626
  while (1);
11618
11627
  lanes && root.shellSuspendCounter++;
@@ -11739,8 +11748,8 @@ function renderRootConcurrent(root, lanes) {
11739
11748
  }
11740
11749
  workLoopConcurrentByScheduler();
11741
11750
  break;
11742
- } catch (thrownValue$182) {
11743
- handleThrow(root, thrownValue$182);
11751
+ } catch (thrownValue$183) {
11752
+ handleThrow(root, thrownValue$183);
11744
11753
  }
11745
11754
  while (1);
11746
11755
  lastContextDependency = currentlyRenderingFiber$1 = null;
@@ -12465,14 +12474,14 @@ function flushSyncWorkAcrossRoots_impl(syncTransitionLanes, onlyLegacy) {
12465
12474
  isFlushingWork = !0;
12466
12475
  do {
12467
12476
  var didPerformSomeWork = !1;
12468
- for (var root$185 = firstScheduledRoot; null !== root$185; ) {
12477
+ for (var root$186 = firstScheduledRoot; null !== root$186; ) {
12469
12478
  if (!onlyLegacy)
12470
12479
  if (0 !== syncTransitionLanes) {
12471
- var pendingLanes = root$185.pendingLanes;
12480
+ var pendingLanes = root$186.pendingLanes;
12472
12481
  if (0 === pendingLanes) var JSCompiler_inline_result = 0;
12473
12482
  else {
12474
- var suspendedLanes = root$185.suspendedLanes,
12475
- pingedLanes = root$185.pingedLanes;
12483
+ var suspendedLanes = root$186.suspendedLanes,
12484
+ pingedLanes = root$186.pingedLanes;
12476
12485
  JSCompiler_inline_result =
12477
12486
  (1 << (31 - clz32(42 | syncTransitionLanes) + 1)) - 1;
12478
12487
  JSCompiler_inline_result &=
@@ -12486,20 +12495,20 @@ function flushSyncWorkAcrossRoots_impl(syncTransitionLanes, onlyLegacy) {
12486
12495
  }
12487
12496
  0 !== JSCompiler_inline_result &&
12488
12497
  ((didPerformSomeWork = !0),
12489
- performSyncWorkOnRoot(root$185, JSCompiler_inline_result));
12498
+ performSyncWorkOnRoot(root$186, JSCompiler_inline_result));
12490
12499
  } else
12491
12500
  (JSCompiler_inline_result = workInProgressRootRenderLanes),
12492
12501
  (JSCompiler_inline_result = getNextLanes(
12493
- root$185,
12494
- root$185 === workInProgressRoot ? JSCompiler_inline_result : 0,
12495
- null !== root$185.cancelPendingCommit ||
12496
- -1 !== root$185.timeoutHandle
12502
+ root$186,
12503
+ root$186 === workInProgressRoot ? JSCompiler_inline_result : 0,
12504
+ null !== root$186.cancelPendingCommit ||
12505
+ -1 !== root$186.timeoutHandle
12497
12506
  )),
12498
12507
  0 === (JSCompiler_inline_result & 3) ||
12499
- checkIfRootIsPrerendering(root$185, JSCompiler_inline_result) ||
12508
+ checkIfRootIsPrerendering(root$186, JSCompiler_inline_result) ||
12500
12509
  ((didPerformSomeWork = !0),
12501
- performSyncWorkOnRoot(root$185, JSCompiler_inline_result));
12502
- root$185 = root$185.next;
12510
+ performSyncWorkOnRoot(root$186, JSCompiler_inline_result));
12511
+ root$186 = root$186.next;
12503
12512
  }
12504
12513
  } while (didPerformSomeWork);
12505
12514
  isFlushingWork = !1;
@@ -12746,20 +12755,20 @@ function extractEvents$1(
12746
12755
  }
12747
12756
  }
12748
12757
  for (
12749
- var i$jscomp$inline_1678 = 0;
12750
- i$jscomp$inline_1678 < simpleEventPluginEvents.length;
12751
- i$jscomp$inline_1678++
12758
+ var i$jscomp$inline_1675 = 0;
12759
+ i$jscomp$inline_1675 < simpleEventPluginEvents.length;
12760
+ i$jscomp$inline_1675++
12752
12761
  ) {
12753
- var eventName$jscomp$inline_1679 =
12754
- simpleEventPluginEvents[i$jscomp$inline_1678],
12755
- domEventName$jscomp$inline_1680 =
12756
- eventName$jscomp$inline_1679.toLowerCase(),
12757
- capitalizedEvent$jscomp$inline_1681 =
12758
- eventName$jscomp$inline_1679[0].toUpperCase() +
12759
- eventName$jscomp$inline_1679.slice(1);
12762
+ var eventName$jscomp$inline_1676 =
12763
+ simpleEventPluginEvents[i$jscomp$inline_1675],
12764
+ domEventName$jscomp$inline_1677 =
12765
+ eventName$jscomp$inline_1676.toLowerCase(),
12766
+ capitalizedEvent$jscomp$inline_1678 =
12767
+ eventName$jscomp$inline_1676[0].toUpperCase() +
12768
+ eventName$jscomp$inline_1676.slice(1);
12760
12769
  registerSimpleEvent(
12761
- domEventName$jscomp$inline_1680,
12762
- "on" + capitalizedEvent$jscomp$inline_1681
12770
+ domEventName$jscomp$inline_1677,
12771
+ "on" + capitalizedEvent$jscomp$inline_1678
12763
12772
  );
12764
12773
  }
12765
12774
  registerSimpleEvent(ANIMATION_END, "onAnimationEnd");
@@ -13933,34 +13942,34 @@ function setInitialProperties(domElement, tag, props) {
13933
13942
  defaultChecked = null;
13934
13943
  for (hasSrc in props)
13935
13944
  if (props.hasOwnProperty(hasSrc)) {
13936
- var propValue$199 = props[hasSrc];
13937
- if (null != propValue$199)
13945
+ var propValue$200 = props[hasSrc];
13946
+ if (null != propValue$200)
13938
13947
  switch (hasSrc) {
13939
13948
  case "name":
13940
- hasSrcSet = propValue$199;
13949
+ hasSrcSet = propValue$200;
13941
13950
  break;
13942
13951
  case "type":
13943
- propValue = propValue$199;
13952
+ propValue = propValue$200;
13944
13953
  break;
13945
13954
  case "checked":
13946
- checked = propValue$199;
13955
+ checked = propValue$200;
13947
13956
  break;
13948
13957
  case "defaultChecked":
13949
- defaultChecked = propValue$199;
13958
+ defaultChecked = propValue$200;
13950
13959
  break;
13951
13960
  case "value":
13952
- propKey = propValue$199;
13961
+ propKey = propValue$200;
13953
13962
  break;
13954
13963
  case "defaultValue":
13955
- defaultValue = propValue$199;
13964
+ defaultValue = propValue$200;
13956
13965
  break;
13957
13966
  case "children":
13958
13967
  case "dangerouslySetInnerHTML":
13959
- if (null != propValue$199)
13968
+ if (null != propValue$200)
13960
13969
  throw Error(formatProdErrorMessage(137, tag));
13961
13970
  break;
13962
13971
  default:
13963
- setProp(domElement, tag, hasSrc, propValue$199, props, null);
13972
+ setProp(domElement, tag, hasSrc, propValue$200, props, null);
13964
13973
  }
13965
13974
  }
13966
13975
  initInput(
@@ -14097,14 +14106,14 @@ function setInitialProperties(domElement, tag, props) {
14097
14106
  return;
14098
14107
  default:
14099
14108
  if (isCustomElement(tag)) {
14100
- for (propValue$199 in props)
14101
- props.hasOwnProperty(propValue$199) &&
14102
- ((hasSrc = props[propValue$199]),
14109
+ for (propValue$200 in props)
14110
+ props.hasOwnProperty(propValue$200) &&
14111
+ ((hasSrc = props[propValue$200]),
14103
14112
  void 0 !== hasSrc &&
14104
14113
  setPropOnCustomElement(
14105
14114
  domElement,
14106
14115
  tag,
14107
- propValue$199,
14116
+ propValue$200,
14108
14117
  hasSrc,
14109
14118
  props,
14110
14119
  void 0
@@ -14152,14 +14161,14 @@ function updateProperties(domElement, tag, lastProps, nextProps) {
14152
14161
  setProp(domElement, tag, propKey, null, nextProps, lastProp);
14153
14162
  }
14154
14163
  }
14155
- for (var propKey$216 in nextProps) {
14156
- var propKey = nextProps[propKey$216];
14157
- lastProp = lastProps[propKey$216];
14164
+ for (var propKey$217 in nextProps) {
14165
+ var propKey = nextProps[propKey$217];
14166
+ lastProp = lastProps[propKey$217];
14158
14167
  if (
14159
- nextProps.hasOwnProperty(propKey$216) &&
14168
+ nextProps.hasOwnProperty(propKey$217) &&
14160
14169
  (null != propKey || null != lastProp)
14161
14170
  )
14162
- switch (propKey$216) {
14171
+ switch (propKey$217) {
14163
14172
  case "type":
14164
14173
  type = propKey;
14165
14174
  break;
@@ -14188,7 +14197,7 @@ function updateProperties(domElement, tag, lastProps, nextProps) {
14188
14197
  setProp(
14189
14198
  domElement,
14190
14199
  tag,
14191
- propKey$216,
14200
+ propKey$217,
14192
14201
  propKey,
14193
14202
  nextProps,
14194
14203
  lastProp
@@ -14207,7 +14216,7 @@ function updateProperties(domElement, tag, lastProps, nextProps) {
14207
14216
  );
14208
14217
  return;
14209
14218
  case "select":
14210
- propKey = value = defaultValue = propKey$216 = null;
14219
+ propKey = value = defaultValue = propKey$217 = null;
14211
14220
  for (type in lastProps)
14212
14221
  if (
14213
14222
  ((lastDefaultValue = lastProps[type]),
@@ -14238,7 +14247,7 @@ function updateProperties(domElement, tag, lastProps, nextProps) {
14238
14247
  )
14239
14248
  switch (name) {
14240
14249
  case "value":
14241
- propKey$216 = type;
14250
+ propKey$217 = type;
14242
14251
  break;
14243
14252
  case "defaultValue":
14244
14253
  defaultValue = type;
@@ -14259,15 +14268,15 @@ function updateProperties(domElement, tag, lastProps, nextProps) {
14259
14268
  tag = defaultValue;
14260
14269
  lastProps = value;
14261
14270
  nextProps = propKey;
14262
- null != propKey$216
14263
- ? updateOptions(domElement, !!lastProps, propKey$216, !1)
14271
+ null != propKey$217
14272
+ ? updateOptions(domElement, !!lastProps, propKey$217, !1)
14264
14273
  : !!nextProps !== !!lastProps &&
14265
14274
  (null != tag
14266
14275
  ? updateOptions(domElement, !!lastProps, tag, !0)
14267
14276
  : updateOptions(domElement, !!lastProps, lastProps ? [] : "", !1));
14268
14277
  return;
14269
14278
  case "textarea":
14270
- propKey = propKey$216 = null;
14279
+ propKey = propKey$217 = null;
14271
14280
  for (defaultValue in lastProps)
14272
14281
  if (
14273
14282
  ((name = lastProps[defaultValue]),
@@ -14291,7 +14300,7 @@ function updateProperties(domElement, tag, lastProps, nextProps) {
14291
14300
  )
14292
14301
  switch (value) {
14293
14302
  case "value":
14294
- propKey$216 = name;
14303
+ propKey$217 = name;
14295
14304
  break;
14296
14305
  case "defaultValue":
14297
14306
  propKey = name;
@@ -14305,17 +14314,17 @@ function updateProperties(domElement, tag, lastProps, nextProps) {
14305
14314
  name !== type &&
14306
14315
  setProp(domElement, tag, value, name, nextProps, type);
14307
14316
  }
14308
- updateTextarea(domElement, propKey$216, propKey);
14317
+ updateTextarea(domElement, propKey$217, propKey);
14309
14318
  return;
14310
14319
  case "option":
14311
- for (var propKey$232 in lastProps)
14320
+ for (var propKey$233 in lastProps)
14312
14321
  if (
14313
- ((propKey$216 = lastProps[propKey$232]),
14314
- lastProps.hasOwnProperty(propKey$232) &&
14315
- null != propKey$216 &&
14316
- !nextProps.hasOwnProperty(propKey$232))
14322
+ ((propKey$217 = lastProps[propKey$233]),
14323
+ lastProps.hasOwnProperty(propKey$233) &&
14324
+ null != propKey$217 &&
14325
+ !nextProps.hasOwnProperty(propKey$233))
14317
14326
  )
14318
- switch (propKey$232) {
14327
+ switch (propKey$233) {
14319
14328
  case "selected":
14320
14329
  domElement.selected = !1;
14321
14330
  break;
@@ -14323,33 +14332,33 @@ function updateProperties(domElement, tag, lastProps, nextProps) {
14323
14332
  setProp(
14324
14333
  domElement,
14325
14334
  tag,
14326
- propKey$232,
14335
+ propKey$233,
14327
14336
  null,
14328
14337
  nextProps,
14329
- propKey$216
14338
+ propKey$217
14330
14339
  );
14331
14340
  }
14332
14341
  for (lastDefaultValue in nextProps)
14333
14342
  if (
14334
- ((propKey$216 = nextProps[lastDefaultValue]),
14343
+ ((propKey$217 = nextProps[lastDefaultValue]),
14335
14344
  (propKey = lastProps[lastDefaultValue]),
14336
14345
  nextProps.hasOwnProperty(lastDefaultValue) &&
14337
- propKey$216 !== propKey &&
14338
- (null != propKey$216 || null != propKey))
14346
+ propKey$217 !== propKey &&
14347
+ (null != propKey$217 || null != propKey))
14339
14348
  )
14340
14349
  switch (lastDefaultValue) {
14341
14350
  case "selected":
14342
14351
  domElement.selected =
14343
- propKey$216 &&
14344
- "function" !== typeof propKey$216 &&
14345
- "symbol" !== typeof propKey$216;
14352
+ propKey$217 &&
14353
+ "function" !== typeof propKey$217 &&
14354
+ "symbol" !== typeof propKey$217;
14346
14355
  break;
14347
14356
  default:
14348
14357
  setProp(
14349
14358
  domElement,
14350
14359
  tag,
14351
14360
  lastDefaultValue,
14352
- propKey$216,
14361
+ propKey$217,
14353
14362
  nextProps,
14354
14363
  propKey
14355
14364
  );
@@ -14370,24 +14379,24 @@ function updateProperties(domElement, tag, lastProps, nextProps) {
14370
14379
  case "track":
14371
14380
  case "wbr":
14372
14381
  case "menuitem":
14373
- for (var propKey$237 in lastProps)
14374
- (propKey$216 = lastProps[propKey$237]),
14375
- lastProps.hasOwnProperty(propKey$237) &&
14376
- null != propKey$216 &&
14377
- !nextProps.hasOwnProperty(propKey$237) &&
14378
- setProp(domElement, tag, propKey$237, null, nextProps, propKey$216);
14382
+ for (var propKey$238 in lastProps)
14383
+ (propKey$217 = lastProps[propKey$238]),
14384
+ lastProps.hasOwnProperty(propKey$238) &&
14385
+ null != propKey$217 &&
14386
+ !nextProps.hasOwnProperty(propKey$238) &&
14387
+ setProp(domElement, tag, propKey$238, null, nextProps, propKey$217);
14379
14388
  for (checked in nextProps)
14380
14389
  if (
14381
- ((propKey$216 = nextProps[checked]),
14390
+ ((propKey$217 = nextProps[checked]),
14382
14391
  (propKey = lastProps[checked]),
14383
14392
  nextProps.hasOwnProperty(checked) &&
14384
- propKey$216 !== propKey &&
14385
- (null != propKey$216 || null != propKey))
14393
+ propKey$217 !== propKey &&
14394
+ (null != propKey$217 || null != propKey))
14386
14395
  )
14387
14396
  switch (checked) {
14388
14397
  case "children":
14389
14398
  case "dangerouslySetInnerHTML":
14390
- if (null != propKey$216)
14399
+ if (null != propKey$217)
14391
14400
  throw Error(formatProdErrorMessage(137, tag));
14392
14401
  break;
14393
14402
  default:
@@ -14395,7 +14404,7 @@ function updateProperties(domElement, tag, lastProps, nextProps) {
14395
14404
  domElement,
14396
14405
  tag,
14397
14406
  checked,
14398
- propKey$216,
14407
+ propKey$217,
14399
14408
  nextProps,
14400
14409
  propKey
14401
14410
  );
@@ -14403,49 +14412,49 @@ function updateProperties(domElement, tag, lastProps, nextProps) {
14403
14412
  return;
14404
14413
  default:
14405
14414
  if (isCustomElement(tag)) {
14406
- for (var propKey$242 in lastProps)
14407
- (propKey$216 = lastProps[propKey$242]),
14408
- lastProps.hasOwnProperty(propKey$242) &&
14409
- void 0 !== propKey$216 &&
14410
- !nextProps.hasOwnProperty(propKey$242) &&
14415
+ for (var propKey$243 in lastProps)
14416
+ (propKey$217 = lastProps[propKey$243]),
14417
+ lastProps.hasOwnProperty(propKey$243) &&
14418
+ void 0 !== propKey$217 &&
14419
+ !nextProps.hasOwnProperty(propKey$243) &&
14411
14420
  setPropOnCustomElement(
14412
14421
  domElement,
14413
14422
  tag,
14414
- propKey$242,
14423
+ propKey$243,
14415
14424
  void 0,
14416
14425
  nextProps,
14417
- propKey$216
14426
+ propKey$217
14418
14427
  );
14419
14428
  for (defaultChecked in nextProps)
14420
- (propKey$216 = nextProps[defaultChecked]),
14429
+ (propKey$217 = nextProps[defaultChecked]),
14421
14430
  (propKey = lastProps[defaultChecked]),
14422
14431
  !nextProps.hasOwnProperty(defaultChecked) ||
14423
- propKey$216 === propKey ||
14424
- (void 0 === propKey$216 && void 0 === propKey) ||
14432
+ propKey$217 === propKey ||
14433
+ (void 0 === propKey$217 && void 0 === propKey) ||
14425
14434
  setPropOnCustomElement(
14426
14435
  domElement,
14427
14436
  tag,
14428
14437
  defaultChecked,
14429
- propKey$216,
14438
+ propKey$217,
14430
14439
  nextProps,
14431
14440
  propKey
14432
14441
  );
14433
14442
  return;
14434
14443
  }
14435
14444
  }
14436
- for (var propKey$247 in lastProps)
14437
- (propKey$216 = lastProps[propKey$247]),
14438
- lastProps.hasOwnProperty(propKey$247) &&
14439
- null != propKey$216 &&
14440
- !nextProps.hasOwnProperty(propKey$247) &&
14441
- setProp(domElement, tag, propKey$247, null, nextProps, propKey$216);
14445
+ for (var propKey$248 in lastProps)
14446
+ (propKey$217 = lastProps[propKey$248]),
14447
+ lastProps.hasOwnProperty(propKey$248) &&
14448
+ null != propKey$217 &&
14449
+ !nextProps.hasOwnProperty(propKey$248) &&
14450
+ setProp(domElement, tag, propKey$248, null, nextProps, propKey$217);
14442
14451
  for (lastProp in nextProps)
14443
- (propKey$216 = nextProps[lastProp]),
14452
+ (propKey$217 = nextProps[lastProp]),
14444
14453
  (propKey = lastProps[lastProp]),
14445
14454
  !nextProps.hasOwnProperty(lastProp) ||
14446
- propKey$216 === propKey ||
14447
- (null == propKey$216 && null == propKey) ||
14448
- setProp(domElement, tag, lastProp, propKey$216, nextProps, propKey);
14455
+ propKey$217 === propKey ||
14456
+ (null == propKey$217 && null == propKey) ||
14457
+ setProp(domElement, tag, lastProp, propKey$217, nextProps, propKey);
14449
14458
  }
14450
14459
  var eventsEnabled = null,
14451
14460
  selectionInformation = null;
@@ -15114,26 +15123,26 @@ function getResource(type, currentProps, pendingProps, currentResource) {
15114
15123
  "string" === typeof pendingProps.precedence
15115
15124
  ) {
15116
15125
  type = getStyleKey(pendingProps.href);
15117
- var styles$258 = getResourcesFromRoot(
15126
+ var styles$259 = getResourcesFromRoot(
15118
15127
  JSCompiler_inline_result
15119
15128
  ).hoistableStyles,
15120
- resource$259 = styles$258.get(type);
15121
- resource$259 ||
15129
+ resource$260 = styles$259.get(type);
15130
+ resource$260 ||
15122
15131
  ((JSCompiler_inline_result =
15123
15132
  JSCompiler_inline_result.ownerDocument || JSCompiler_inline_result),
15124
- (resource$259 = {
15133
+ (resource$260 = {
15125
15134
  type: "stylesheet",
15126
15135
  instance: null,
15127
15136
  count: 0,
15128
15137
  state: { loading: 0, preload: null }
15129
15138
  }),
15130
- styles$258.set(type, resource$259),
15131
- (styles$258 = JSCompiler_inline_result.querySelector(
15139
+ styles$259.set(type, resource$260),
15140
+ (styles$259 = JSCompiler_inline_result.querySelector(
15132
15141
  getStylesheetSelectorFromKey(type)
15133
15142
  )) &&
15134
- !styles$258._p &&
15135
- ((resource$259.instance = styles$258),
15136
- (resource$259.state.loading = 5)),
15143
+ !styles$259._p &&
15144
+ ((resource$260.instance = styles$259),
15145
+ (resource$260.state.loading = 5)),
15137
15146
  preloadPropsMap.has(type) ||
15138
15147
  ((pendingProps = {
15139
15148
  rel: "preload",
@@ -15146,16 +15155,16 @@ function getResource(type, currentProps, pendingProps, currentResource) {
15146
15155
  referrerPolicy: pendingProps.referrerPolicy
15147
15156
  }),
15148
15157
  preloadPropsMap.set(type, pendingProps),
15149
- styles$258 ||
15158
+ styles$259 ||
15150
15159
  preloadStylesheet(
15151
15160
  JSCompiler_inline_result,
15152
15161
  type,
15153
15162
  pendingProps,
15154
- resource$259.state
15163
+ resource$260.state
15155
15164
  )));
15156
15165
  if (currentProps && null === currentResource)
15157
15166
  throw Error(formatProdErrorMessage(528, ""));
15158
- return resource$259;
15167
+ return resource$260;
15159
15168
  }
15160
15169
  if (currentProps && null !== currentResource)
15161
15170
  throw Error(formatProdErrorMessage(529, ""));
@@ -15252,37 +15261,37 @@ function acquireResource(hoistableRoot, resource, props) {
15252
15261
  return (resource.instance = instance);
15253
15262
  case "stylesheet":
15254
15263
  styleProps = getStyleKey(props.href);
15255
- var instance$264 = hoistableRoot.querySelector(
15264
+ var instance$265 = hoistableRoot.querySelector(
15256
15265
  getStylesheetSelectorFromKey(styleProps)
15257
15266
  );
15258
- if (instance$264)
15267
+ if (instance$265)
15259
15268
  return (
15260
15269
  (resource.state.loading |= 4),
15261
- (resource.instance = instance$264),
15262
- markNodeAsHoistable(instance$264),
15263
- instance$264
15270
+ (resource.instance = instance$265),
15271
+ markNodeAsHoistable(instance$265),
15272
+ instance$265
15264
15273
  );
15265
15274
  instance = stylesheetPropsFromRawProps(props);
15266
15275
  (styleProps = preloadPropsMap.get(styleProps)) &&
15267
15276
  adoptPreloadPropsForStylesheet(instance, styleProps);
15268
- instance$264 = (
15277
+ instance$265 = (
15269
15278
  hoistableRoot.ownerDocument || hoistableRoot
15270
15279
  ).createElement("link");
15271
- markNodeAsHoistable(instance$264);
15272
- var linkInstance = instance$264;
15280
+ markNodeAsHoistable(instance$265);
15281
+ var linkInstance = instance$265;
15273
15282
  linkInstance._p = new Promise(function (resolve, reject) {
15274
15283
  linkInstance.onload = resolve;
15275
15284
  linkInstance.onerror = reject;
15276
15285
  });
15277
- setInitialProperties(instance$264, "link", instance);
15286
+ setInitialProperties(instance$265, "link", instance);
15278
15287
  resource.state.loading |= 4;
15279
- insertStylesheet(instance$264, props.precedence, hoistableRoot);
15280
- return (resource.instance = instance$264);
15288
+ insertStylesheet(instance$265, props.precedence, hoistableRoot);
15289
+ return (resource.instance = instance$265);
15281
15290
  case "script":
15282
- instance$264 = getScriptKey(props.src);
15291
+ instance$265 = getScriptKey(props.src);
15283
15292
  if (
15284
15293
  (styleProps = hoistableRoot.querySelector(
15285
- getScriptSelectorFromKey(instance$264)
15294
+ getScriptSelectorFromKey(instance$265)
15286
15295
  ))
15287
15296
  )
15288
15297
  return (
@@ -15291,7 +15300,7 @@ function acquireResource(hoistableRoot, resource, props) {
15291
15300
  styleProps
15292
15301
  );
15293
15302
  instance = props;
15294
- if ((styleProps = preloadPropsMap.get(instance$264)))
15303
+ if ((styleProps = preloadPropsMap.get(instance$265)))
15295
15304
  (instance = assign({}, props)),
15296
15305
  adoptPreloadPropsForScript(instance, styleProps);
15297
15306
  hoistableRoot = hoistableRoot.ownerDocument || hoistableRoot;
@@ -16394,16 +16403,16 @@ ReactDOMHydrationRoot.prototype.unstable_scheduleHydration = function (target) {
16394
16403
  0 === i && attemptExplicitHydrationTarget(target);
16395
16404
  }
16396
16405
  };
16397
- var isomorphicReactPackageVersion$jscomp$inline_1940 = React.version;
16406
+ var isomorphicReactPackageVersion$jscomp$inline_1937 = React.version;
16398
16407
  if (
16399
- "19.2.0-canary-f1e70b5e-20250811" !==
16400
- isomorphicReactPackageVersion$jscomp$inline_1940
16408
+ "19.2.0-canary-ac7820a9-20250811" !==
16409
+ isomorphicReactPackageVersion$jscomp$inline_1937
16401
16410
  )
16402
16411
  throw Error(
16403
16412
  formatProdErrorMessage(
16404
16413
  527,
16405
- isomorphicReactPackageVersion$jscomp$inline_1940,
16406
- "19.2.0-canary-f1e70b5e-20250811"
16414
+ isomorphicReactPackageVersion$jscomp$inline_1937,
16415
+ "19.2.0-canary-ac7820a9-20250811"
16407
16416
  )
16408
16417
  );
16409
16418
  ReactDOMSharedInternals.findDOMNode = function (componentOrElement) {
@@ -16423,17 +16432,17 @@ ReactDOMSharedInternals.findDOMNode = function (componentOrElement) {
16423
16432
  null === componentOrElement ? null : componentOrElement.stateNode;
16424
16433
  return componentOrElement;
16425
16434
  };
16426
- var internals$jscomp$inline_1947 = {
16435
+ var internals$jscomp$inline_1944 = {
16427
16436
  bundleType: 0,
16428
- version: "19.2.0-canary-f1e70b5e-20250811",
16437
+ version: "19.2.0-canary-ac7820a9-20250811",
16429
16438
  rendererPackageName: "react-dom",
16430
16439
  currentDispatcherRef: ReactSharedInternals,
16431
- reconcilerVersion: "19.2.0-canary-f1e70b5e-20250811",
16440
+ reconcilerVersion: "19.2.0-canary-ac7820a9-20250811",
16432
16441
  getLaneLabelMap: function () {
16433
16442
  for (
16434
- var map = new Map(), lane = 1, index$281 = 0;
16435
- 31 > index$281;
16436
- index$281++
16443
+ var map = new Map(), lane = 1, index$282 = 0;
16444
+ 31 > index$282;
16445
+ index$282++
16437
16446
  ) {
16438
16447
  var label = getLabelForLane(lane);
16439
16448
  map.set(lane, label);
@@ -16446,16 +16455,16 @@ var internals$jscomp$inline_1947 = {
16446
16455
  }
16447
16456
  };
16448
16457
  if ("undefined" !== typeof __REACT_DEVTOOLS_GLOBAL_HOOK__) {
16449
- var hook$jscomp$inline_2401 = __REACT_DEVTOOLS_GLOBAL_HOOK__;
16458
+ var hook$jscomp$inline_2408 = __REACT_DEVTOOLS_GLOBAL_HOOK__;
16450
16459
  if (
16451
- !hook$jscomp$inline_2401.isDisabled &&
16452
- hook$jscomp$inline_2401.supportsFiber
16460
+ !hook$jscomp$inline_2408.isDisabled &&
16461
+ hook$jscomp$inline_2408.supportsFiber
16453
16462
  )
16454
16463
  try {
16455
- (rendererID = hook$jscomp$inline_2401.inject(
16456
- internals$jscomp$inline_1947
16464
+ (rendererID = hook$jscomp$inline_2408.inject(
16465
+ internals$jscomp$inline_1944
16457
16466
  )),
16458
- (injectedHook = hook$jscomp$inline_2401);
16467
+ (injectedHook = hook$jscomp$inline_2408);
16459
16468
  } catch (err) {}
16460
16469
  }
16461
16470
  function getCrossOriginStringAs(as, input) {
@@ -16701,7 +16710,7 @@ exports.useFormState = function (action, initialState, permalink) {
16701
16710
  exports.useFormStatus = function () {
16702
16711
  return ReactSharedInternals.H.useHostTransitionStatus();
16703
16712
  };
16704
- exports.version = "19.2.0-canary-f1e70b5e-20250811";
16713
+ exports.version = "19.2.0-canary-ac7820a9-20250811";
16705
16714
  "undefined" !== typeof __REACT_DEVTOOLS_GLOBAL_HOOK__ &&
16706
16715
  "function" ===
16707
16716
  typeof __REACT_DEVTOOLS_GLOBAL_HOOK__.registerInternalModuleStop &&