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.
@@ -2048,19 +2048,19 @@ function getTargetInstForChangeEvent(domEventName, targetInst) {
2048
2048
  }
2049
2049
  var isInputEventSupported = !1;
2050
2050
  if (canUseDOM) {
2051
- var JSCompiler_inline_result$jscomp$283;
2051
+ var JSCompiler_inline_result$jscomp$284;
2052
2052
  if (canUseDOM) {
2053
- var isSupported$jscomp$inline_428 = "oninput" in document;
2054
- if (!isSupported$jscomp$inline_428) {
2055
- var element$jscomp$inline_429 = document.createElement("div");
2056
- element$jscomp$inline_429.setAttribute("oninput", "return;");
2057
- isSupported$jscomp$inline_428 =
2058
- "function" === typeof element$jscomp$inline_429.oninput;
2053
+ var isSupported$jscomp$inline_427 = "oninput" in document;
2054
+ if (!isSupported$jscomp$inline_427) {
2055
+ var element$jscomp$inline_428 = document.createElement("div");
2056
+ element$jscomp$inline_428.setAttribute("oninput", "return;");
2057
+ isSupported$jscomp$inline_427 =
2058
+ "function" === typeof element$jscomp$inline_428.oninput;
2059
2059
  }
2060
- JSCompiler_inline_result$jscomp$283 = isSupported$jscomp$inline_428;
2061
- } else JSCompiler_inline_result$jscomp$283 = !1;
2060
+ JSCompiler_inline_result$jscomp$284 = isSupported$jscomp$inline_427;
2061
+ } else JSCompiler_inline_result$jscomp$284 = !1;
2062
2062
  isInputEventSupported =
2063
- JSCompiler_inline_result$jscomp$283 &&
2063
+ JSCompiler_inline_result$jscomp$284 &&
2064
2064
  (!document.documentMode || 9 < document.documentMode);
2065
2065
  }
2066
2066
  function stopWatchingForValueChange() {
@@ -6210,6 +6210,14 @@ function updateOffscreenComponent(
6210
6210
  ) {
6211
6211
  var nextChildren = nextProps.children,
6212
6212
  prevState = null !== current ? current.memoizedState : null;
6213
+ null === current &&
6214
+ null === workInProgress.stateNode &&
6215
+ (workInProgress.stateNode = {
6216
+ _visibility: 1,
6217
+ _pendingMarkers: null,
6218
+ _retryCache: null,
6219
+ _transitions: null
6220
+ });
6213
6221
  if ("hidden" === nextProps.mode) {
6214
6222
  if (0 !== (workInProgress.flags & 128)) {
6215
6223
  nextProps =
@@ -6262,6 +6270,17 @@ function updateOffscreenComponent(
6262
6270
  reconcileChildren(current, workInProgress, nextChildren, renderLanes);
6263
6271
  return workInProgress.child;
6264
6272
  }
6273
+ function bailoutOffscreenComponent(current, workInProgress) {
6274
+ (null !== current && 22 === current.tag) ||
6275
+ null !== workInProgress.stateNode ||
6276
+ (workInProgress.stateNode = {
6277
+ _visibility: 1,
6278
+ _pendingMarkers: null,
6279
+ _retryCache: null,
6280
+ _transitions: null
6281
+ });
6282
+ return workInProgress.sibling;
6283
+ }
6265
6284
  function deferHiddenOffscreenComponent(
6266
6285
  current,
6267
6286
  workInProgress,
@@ -6306,6 +6325,110 @@ function retryActivityComponentWithoutHydrating(
6306
6325
  workInProgress.memoizedState = null;
6307
6326
  return current;
6308
6327
  }
6328
+ function updateActivityComponent(current, workInProgress, renderLanes) {
6329
+ var nextProps = workInProgress.pendingProps,
6330
+ didSuspend = 0 !== (workInProgress.flags & 128);
6331
+ workInProgress.flags &= -129;
6332
+ if (null === current) {
6333
+ if (isHydrating) {
6334
+ if ("hidden" === nextProps.mode)
6335
+ return (
6336
+ (current = mountActivityChildren(workInProgress, nextProps)),
6337
+ (workInProgress.lanes = 536870912),
6338
+ bailoutOffscreenComponent(null, current)
6339
+ );
6340
+ pushDehydratedActivitySuspenseHandler(workInProgress);
6341
+ (current = nextHydratableInstance)
6342
+ ? ((current = canHydrateHydrationBoundary(
6343
+ current,
6344
+ rootOrSingletonContext
6345
+ )),
6346
+ (current = null !== current && "&" === current.data ? current : null),
6347
+ null !== current &&
6348
+ ((workInProgress.memoizedState = {
6349
+ dehydrated: current,
6350
+ treeContext:
6351
+ null !== treeContextProvider
6352
+ ? { id: treeContextId, overflow: treeContextOverflow }
6353
+ : null,
6354
+ retryLane: 536870912,
6355
+ hydrationErrors: null
6356
+ }),
6357
+ (renderLanes = createFiberFromDehydratedFragment(current)),
6358
+ (renderLanes.return = workInProgress),
6359
+ (workInProgress.child = renderLanes),
6360
+ (hydrationParentFiber = workInProgress),
6361
+ (nextHydratableInstance = null)))
6362
+ : (current = null);
6363
+ if (null === current) throw throwOnHydrationMismatch(workInProgress);
6364
+ workInProgress.lanes = 536870912;
6365
+ return null;
6366
+ }
6367
+ return mountActivityChildren(workInProgress, nextProps);
6368
+ }
6369
+ var prevState = current.memoizedState;
6370
+ if (null !== prevState) {
6371
+ var dehydrated = prevState.dehydrated;
6372
+ pushDehydratedActivitySuspenseHandler(workInProgress);
6373
+ if (didSuspend)
6374
+ if (workInProgress.flags & 256)
6375
+ (workInProgress.flags &= -257),
6376
+ (workInProgress = retryActivityComponentWithoutHydrating(
6377
+ current,
6378
+ workInProgress,
6379
+ renderLanes
6380
+ ));
6381
+ else if (null !== workInProgress.memoizedState)
6382
+ (workInProgress.child = current.child),
6383
+ (workInProgress.flags |= 128),
6384
+ (workInProgress = null);
6385
+ else throw Error(formatProdErrorMessage(558));
6386
+ else if (
6387
+ (didReceiveUpdate ||
6388
+ propagateParentContextChanges(current, workInProgress, renderLanes, !1),
6389
+ (didSuspend = 0 !== (renderLanes & current.childLanes)),
6390
+ didReceiveUpdate || didSuspend)
6391
+ ) {
6392
+ nextProps = workInProgressRoot;
6393
+ if (
6394
+ null !== nextProps &&
6395
+ ((dehydrated = getBumpedLaneForHydration(nextProps, renderLanes)),
6396
+ 0 !== dehydrated && dehydrated !== prevState.retryLane)
6397
+ )
6398
+ throw (
6399
+ ((prevState.retryLane = dehydrated),
6400
+ enqueueConcurrentRenderForLane(current, dehydrated),
6401
+ scheduleUpdateOnFiber(nextProps, current, dehydrated),
6402
+ SelectiveHydrationException)
6403
+ );
6404
+ renderDidSuspendDelayIfPossible();
6405
+ workInProgress = retryActivityComponentWithoutHydrating(
6406
+ current,
6407
+ workInProgress,
6408
+ renderLanes
6409
+ );
6410
+ } else
6411
+ (current = prevState.treeContext),
6412
+ (nextHydratableInstance = getNextHydratable(dehydrated.nextSibling)),
6413
+ (hydrationParentFiber = workInProgress),
6414
+ (isHydrating = !0),
6415
+ (hydrationErrors = null),
6416
+ (rootOrSingletonContext = !1),
6417
+ null !== current &&
6418
+ restoreSuspendedTreeContext(workInProgress, current),
6419
+ (workInProgress = mountActivityChildren(workInProgress, nextProps)),
6420
+ (workInProgress.flags |= 4096);
6421
+ return workInProgress;
6422
+ }
6423
+ current = createWorkInProgress(current.child, {
6424
+ mode: nextProps.mode,
6425
+ children: nextProps.children
6426
+ });
6427
+ current.ref = workInProgress.ref;
6428
+ workInProgress.child = current;
6429
+ current.return = workInProgress;
6430
+ return current;
6431
+ }
6309
6432
  function markRef(current, workInProgress) {
6310
6433
  var ref = workInProgress.ref;
6311
6434
  if (null === ref)
@@ -6730,16 +6853,15 @@ function updateSuspenseComponent(current, workInProgress, renderLanes) {
6730
6853
  (nextProps.return = workInProgress),
6731
6854
  (nextPrimaryChildren.sibling = nextProps),
6732
6855
  (workInProgress.child = nextPrimaryChildren),
6733
- (nextPrimaryChildren = workInProgress.child),
6734
- (nextPrimaryChildren.memoizedState =
6735
- mountSuspenseOffscreenState(renderLanes)),
6736
- (nextPrimaryChildren.childLanes = getRemainingWorkInPrimaryTree(
6856
+ (nextProps = workInProgress.child),
6857
+ (nextProps.memoizedState = mountSuspenseOffscreenState(renderLanes)),
6858
+ (nextProps.childLanes = getRemainingWorkInPrimaryTree(
6737
6859
  current,
6738
6860
  JSCompiler_temp,
6739
6861
  renderLanes
6740
6862
  )),
6741
6863
  (workInProgress.memoizedState = SUSPENDED_MARKER),
6742
- nextProps
6864
+ bailoutOffscreenComponent(null, nextProps)
6743
6865
  );
6744
6866
  pushPrimaryTreeSuspenseHandler(workInProgress);
6745
6867
  return mountSuspensePrimaryChildren(workInProgress, nextPrimaryChildren);
@@ -6796,7 +6918,7 @@ function updateSuspenseComponent(current, workInProgress, renderLanes) {
6796
6918
  renderLanes
6797
6919
  )),
6798
6920
  (workInProgress.memoizedState = SUSPENDED_MARKER),
6799
- (workInProgress = nextPrimaryChildren));
6921
+ (workInProgress = bailoutOffscreenComponent(null, nextProps)));
6800
6922
  else if (
6801
6923
  (pushPrimaryTreeSuspenseHandler(workInProgress),
6802
6924
  isSuspenseInstanceFallback(nextPrimaryChildren))
@@ -6890,31 +7012,31 @@ function updateSuspenseComponent(current, workInProgress, renderLanes) {
6890
7012
  (nextProps.return = workInProgress),
6891
7013
  (nextProps.sibling = nextPrimaryChildren),
6892
7014
  (workInProgress.child = nextProps),
6893
- (nextProps = nextPrimaryChildren),
6894
- (nextPrimaryChildren = workInProgress.child),
6895
- (showFallback = current.child.memoizedState),
6896
- null === showFallback
6897
- ? (showFallback = mountSuspenseOffscreenState(renderLanes))
6898
- : ((prevState = showFallback.cachePool),
6899
- null !== prevState
6900
- ? ((digest = CacheContext._currentValue),
6901
- (prevState =
6902
- prevState.parent !== digest
6903
- ? { parent: digest, pool: digest }
6904
- : prevState))
6905
- : (prevState = getSuspendedCache()),
6906
- (showFallback = {
6907
- baseLanes: showFallback.baseLanes | renderLanes,
6908
- cachePool: prevState
7015
+ bailoutOffscreenComponent(null, nextProps),
7016
+ (nextProps = workInProgress.child),
7017
+ (nextPrimaryChildren = current.child.memoizedState),
7018
+ null === nextPrimaryChildren
7019
+ ? (nextPrimaryChildren = mountSuspenseOffscreenState(renderLanes))
7020
+ : ((showFallback = nextPrimaryChildren.cachePool),
7021
+ null !== showFallback
7022
+ ? ((prevState = CacheContext._currentValue),
7023
+ (showFallback =
7024
+ showFallback.parent !== prevState
7025
+ ? { parent: prevState, pool: prevState }
7026
+ : showFallback))
7027
+ : (showFallback = getSuspendedCache()),
7028
+ (nextPrimaryChildren = {
7029
+ baseLanes: nextPrimaryChildren.baseLanes | renderLanes,
7030
+ cachePool: showFallback
6909
7031
  })),
6910
- (nextPrimaryChildren.memoizedState = showFallback),
6911
- (nextPrimaryChildren.childLanes = getRemainingWorkInPrimaryTree(
7032
+ (nextProps.memoizedState = nextPrimaryChildren),
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(current.child, nextProps)
6918
7040
  );
6919
7041
  pushPrimaryTreeSuspenseHandler(workInProgress);
6920
7042
  renderLanes = current.child;
@@ -6945,12 +7067,6 @@ function mountSuspensePrimaryChildren(workInProgress, primaryChildren) {
6945
7067
  function mountWorkInProgressOffscreenFiber(offscreenProps, mode) {
6946
7068
  offscreenProps = createFiberImplClass(22, offscreenProps, null, mode);
6947
7069
  offscreenProps.lanes = 0;
6948
- offscreenProps.stateNode = {
6949
- _visibility: 1,
6950
- _pendingMarkers: null,
6951
- _retryCache: null,
6952
- _transitions: null
6953
- };
6954
7070
  return offscreenProps;
6955
7071
  }
6956
7072
  function retrySuspenseComponentWithoutHydrating(
@@ -7166,9 +7282,9 @@ function attemptEarlyBailoutIfNoScheduledUpdate(
7166
7282
  );
7167
7283
  break;
7168
7284
  case 13:
7169
- var state$100 = workInProgress.memoizedState;
7170
- if (null !== state$100) {
7171
- if (null !== state$100.dehydrated)
7285
+ var state$101 = workInProgress.memoizedState;
7286
+ if (null !== state$101) {
7287
+ if (null !== state$101.dehydrated)
7172
7288
  return (
7173
7289
  pushPrimaryTreeSuspenseHandler(workInProgress),
7174
7290
  (workInProgress.flags |= 128),
@@ -7188,17 +7304,17 @@ function attemptEarlyBailoutIfNoScheduledUpdate(
7188
7304
  break;
7189
7305
  case 19:
7190
7306
  var didSuspendBefore = 0 !== (current.flags & 128);
7191
- state$100 = 0 !== (renderLanes & workInProgress.childLanes);
7192
- state$100 ||
7307
+ state$101 = 0 !== (renderLanes & workInProgress.childLanes);
7308
+ state$101 ||
7193
7309
  (propagateParentContextChanges(
7194
7310
  current,
7195
7311
  workInProgress,
7196
7312
  renderLanes,
7197
7313
  !1
7198
7314
  ),
7199
- (state$100 = 0 !== (renderLanes & workInProgress.childLanes)));
7315
+ (state$101 = 0 !== (renderLanes & workInProgress.childLanes)));
7200
7316
  if (didSuspendBefore) {
7201
- if (state$100)
7317
+ if (state$101)
7202
7318
  return updateSuspenseListComponent(
7203
7319
  current,
7204
7320
  workInProgress,
@@ -7212,7 +7328,7 @@ function attemptEarlyBailoutIfNoScheduledUpdate(
7212
7328
  (didSuspendBefore.tail = null),
7213
7329
  (didSuspendBefore.lastEffect = null));
7214
7330
  push(suspenseStackCursor, suspenseStackCursor.current);
7215
- if (state$100) break;
7331
+ if (state$101) break;
7216
7332
  else return null;
7217
7333
  case 22:
7218
7334
  return (
@@ -7639,114 +7755,7 @@ function beginWork(current, workInProgress, renderLanes) {
7639
7755
  case 19:
7640
7756
  return updateSuspenseListComponent(current, workInProgress, renderLanes);
7641
7757
  case 31:
7642
- $$typeof = workInProgress.pendingProps;
7643
- nextState = 0 !== (workInProgress.flags & 128);
7644
- workInProgress.flags &= -129;
7645
- if (null === current)
7646
- if (isHydrating) {
7647
- if ("hidden" === $$typeof.mode)
7648
- mountActivityChildren(workInProgress, $$typeof);
7649
- else if (
7650
- (pushDehydratedActivitySuspenseHandler(workInProgress),
7651
- (renderLanes = nextHydratableInstance)
7652
- ? ((renderLanes = canHydrateHydrationBoundary(
7653
- renderLanes,
7654
- rootOrSingletonContext
7655
- )),
7656
- (renderLanes =
7657
- null !== renderLanes && "&" === renderLanes.data
7658
- ? renderLanes
7659
- : null),
7660
- null !== renderLanes &&
7661
- ((workInProgress.memoizedState = {
7662
- dehydrated: renderLanes,
7663
- treeContext:
7664
- null !== treeContextProvider
7665
- ? { id: treeContextId, overflow: treeContextOverflow }
7666
- : null,
7667
- retryLane: 536870912,
7668
- hydrationErrors: null
7669
- }),
7670
- (current = createFiberFromDehydratedFragment(renderLanes)),
7671
- (current.return = workInProgress),
7672
- (workInProgress.child = current),
7673
- (hydrationParentFiber = workInProgress),
7674
- (nextHydratableInstance = null)))
7675
- : (renderLanes = null),
7676
- null === renderLanes)
7677
- )
7678
- throw throwOnHydrationMismatch(workInProgress);
7679
- workInProgress.lanes = 536870912;
7680
- workInProgress = null;
7681
- } else workInProgress = mountActivityChildren(workInProgress, $$typeof);
7682
- else if (((props = current.memoizedState), null !== props))
7683
- if (
7684
- ((prevState = props.dehydrated),
7685
- pushDehydratedActivitySuspenseHandler(workInProgress),
7686
- nextState)
7687
- )
7688
- if (workInProgress.flags & 256)
7689
- (workInProgress.flags &= -257),
7690
- (workInProgress = retryActivityComponentWithoutHydrating(
7691
- current,
7692
- workInProgress,
7693
- renderLanes
7694
- ));
7695
- else if (null !== workInProgress.memoizedState)
7696
- (workInProgress.child = current.child),
7697
- (workInProgress.flags |= 128),
7698
- (workInProgress = null);
7699
- else throw Error(formatProdErrorMessage(558));
7700
- else if (
7701
- (didReceiveUpdate ||
7702
- propagateParentContextChanges(
7703
- current,
7704
- workInProgress,
7705
- renderLanes,
7706
- !1
7707
- ),
7708
- (nextState = 0 !== (renderLanes & current.childLanes)),
7709
- didReceiveUpdate || nextState)
7710
- ) {
7711
- $$typeof = workInProgressRoot;
7712
- if (
7713
- null !== $$typeof &&
7714
- ((prevState = getBumpedLaneForHydration($$typeof, renderLanes)),
7715
- 0 !== prevState && prevState !== props.retryLane)
7716
- )
7717
- throw (
7718
- ((props.retryLane = prevState),
7719
- enqueueConcurrentRenderForLane(current, prevState),
7720
- scheduleUpdateOnFiber($$typeof, current, prevState),
7721
- SelectiveHydrationException)
7722
- );
7723
- renderDidSuspendDelayIfPossible();
7724
- workInProgress = retryActivityComponentWithoutHydrating(
7725
- current,
7726
- workInProgress,
7727
- renderLanes
7728
- );
7729
- } else
7730
- (renderLanes = props.treeContext),
7731
- (nextHydratableInstance = getNextHydratable(prevState.nextSibling)),
7732
- (hydrationParentFiber = workInProgress),
7733
- (isHydrating = !0),
7734
- (hydrationErrors = null),
7735
- (rootOrSingletonContext = !1),
7736
- null !== renderLanes &&
7737
- restoreSuspendedTreeContext(workInProgress, renderLanes),
7738
- (workInProgress = mountActivityChildren(workInProgress, $$typeof)),
7739
- (workInProgress.flags |= 4096);
7740
- else
7741
- (renderLanes = createWorkInProgress(current.child, {
7742
- mode: $$typeof.mode,
7743
- children: $$typeof.children
7744
- })),
7745
- (renderLanes.ref = workInProgress.ref),
7746
- (workInProgress.child = renderLanes),
7747
- (renderLanes.return = workInProgress),
7748
- (workInProgress = renderLanes);
7749
- return workInProgress;
7758
+ return updateActivityComponent(current, workInProgress, renderLanes);
7750
7759
  case 22:
7751
7760
  return updateOffscreenComponent(
7752
7761
  current,
@@ -7865,14 +7874,14 @@ function cutOffTailIfNeeded(renderState, hasRenderedATailFallback) {
7865
7874
  break;
7866
7875
  case "collapsed":
7867
7876
  lastTailNode = renderState.tail;
7868
- for (var lastTailNode$104 = null; null !== lastTailNode; )
7869
- null !== lastTailNode.alternate && (lastTailNode$104 = lastTailNode),
7877
+ for (var lastTailNode$105 = null; null !== lastTailNode; )
7878
+ null !== lastTailNode.alternate && (lastTailNode$105 = lastTailNode),
7870
7879
  (lastTailNode = lastTailNode.sibling);
7871
- null === lastTailNode$104
7880
+ null === lastTailNode$105
7872
7881
  ? hasRenderedATailFallback || null === renderState.tail
7873
7882
  ? (renderState.tail = null)
7874
7883
  : (renderState.tail.sibling = null)
7875
- : (lastTailNode$104.sibling = null);
7884
+ : (lastTailNode$105.sibling = null);
7876
7885
  }
7877
7886
  }
7878
7887
  function bubbleProperties(completedWork) {
@@ -7882,19 +7891,19 @@ function bubbleProperties(completedWork) {
7882
7891
  newChildLanes = 0,
7883
7892
  subtreeFlags = 0;
7884
7893
  if (didBailout)
7885
- for (var child$105 = completedWork.child; null !== child$105; )
7886
- (newChildLanes |= child$105.lanes | child$105.childLanes),
7887
- (subtreeFlags |= child$105.subtreeFlags & 65011712),
7888
- (subtreeFlags |= child$105.flags & 65011712),
7889
- (child$105.return = completedWork),
7890
- (child$105 = child$105.sibling);
7894
+ for (var child$106 = completedWork.child; null !== child$106; )
7895
+ (newChildLanes |= child$106.lanes | child$106.childLanes),
7896
+ (subtreeFlags |= child$106.subtreeFlags & 65011712),
7897
+ (subtreeFlags |= child$106.flags & 65011712),
7898
+ (child$106.return = completedWork),
7899
+ (child$106 = child$106.sibling);
7891
7900
  else
7892
- for (child$105 = completedWork.child; null !== child$105; )
7893
- (newChildLanes |= child$105.lanes | child$105.childLanes),
7894
- (subtreeFlags |= child$105.subtreeFlags),
7895
- (subtreeFlags |= child$105.flags),
7896
- (child$105.return = completedWork),
7897
- (child$105 = child$105.sibling);
7901
+ for (child$106 = completedWork.child; null !== child$106; )
7902
+ (newChildLanes |= child$106.lanes | child$106.childLanes),
7903
+ (subtreeFlags |= child$106.subtreeFlags),
7904
+ (subtreeFlags |= child$106.flags),
7905
+ (child$106.return = completedWork),
7906
+ (child$106 = child$106.sibling);
7898
7907
  completedWork.subtreeFlags |= subtreeFlags;
7899
7908
  completedWork.childLanes = newChildLanes;
7900
7909
  return didBailout;
@@ -8643,8 +8652,8 @@ function safelyDetachRef(current, nearestMountedAncestor) {
8643
8652
  else if ("function" === typeof ref)
8644
8653
  try {
8645
8654
  ref(null);
8646
- } catch (error$138) {
8647
- captureCommitPhaseError(current, nearestMountedAncestor, error$138);
8655
+ } catch (error$139) {
8656
+ captureCommitPhaseError(current, nearestMountedAncestor, error$139);
8648
8657
  }
8649
8658
  else ref.current = null;
8650
8659
  }
@@ -8969,11 +8978,11 @@ function commitLayoutEffectOnFiber(finishedRoot, current, finishedWork) {
8969
8978
  current,
8970
8979
  finishedRoot.__reactInternalSnapshotBeforeUpdate
8971
8980
  );
8972
- } catch (error$137) {
8981
+ } catch (error$138) {
8973
8982
  captureCommitPhaseError(
8974
8983
  finishedWork,
8975
8984
  finishedWork.return,
8976
- error$137
8985
+ error$138
8977
8986
  );
8978
8987
  }
8979
8988
  }
@@ -9796,20 +9805,20 @@ function commitReconciliationEffects(finishedWork) {
9796
9805
  insertOrAppendPlacementNode(finishedWork, before, parent);
9797
9806
  break;
9798
9807
  case 5:
9799
- var parent$139 = hostParentFiber.stateNode;
9808
+ var parent$140 = hostParentFiber.stateNode;
9800
9809
  hostParentFiber.flags & 32 &&
9801
- (setTextContent(parent$139, ""), (hostParentFiber.flags &= -33));
9802
- var before$140 = getHostSibling(finishedWork);
9803
- insertOrAppendPlacementNode(finishedWork, before$140, parent$139);
9810
+ (setTextContent(parent$140, ""), (hostParentFiber.flags &= -33));
9811
+ var before$141 = getHostSibling(finishedWork);
9812
+ insertOrAppendPlacementNode(finishedWork, before$141, parent$140);
9804
9813
  break;
9805
9814
  case 3:
9806
9815
  case 4:
9807
- var parent$141 = hostParentFiber.stateNode.containerInfo,
9808
- before$142 = getHostSibling(finishedWork);
9816
+ var parent$142 = hostParentFiber.stateNode.containerInfo,
9817
+ before$143 = getHostSibling(finishedWork);
9809
9818
  insertOrAppendPlacementNodeIntoContainer(
9810
9819
  finishedWork,
9811
- before$142,
9812
- parent$141
9820
+ before$143,
9821
+ parent$142
9813
9822
  );
9814
9823
  break;
9815
9824
  default:
@@ -11029,8 +11038,8 @@ function renderRootSync(root, lanes, shouldYieldForPrerendering) {
11029
11038
  workLoopSync();
11030
11039
  exitStatus = workInProgressRootExitStatus;
11031
11040
  break;
11032
- } catch (thrownValue$163) {
11033
- handleThrow(root, thrownValue$163);
11041
+ } catch (thrownValue$164) {
11042
+ handleThrow(root, thrownValue$164);
11034
11043
  }
11035
11044
  while (1);
11036
11045
  lanes && root.shellSuspendCounter++;
@@ -11149,8 +11158,8 @@ function renderRootConcurrent(root, lanes) {
11149
11158
  }
11150
11159
  workLoopConcurrentByScheduler();
11151
11160
  break;
11152
- } catch (thrownValue$165) {
11153
- handleThrow(root, thrownValue$165);
11161
+ } catch (thrownValue$166) {
11162
+ handleThrow(root, thrownValue$166);
11154
11163
  }
11155
11164
  while (1);
11156
11165
  lastContextDependency = currentlyRenderingFiber$1 = null;
@@ -11786,14 +11795,14 @@ function flushSyncWorkAcrossRoots_impl(syncTransitionLanes, onlyLegacy) {
11786
11795
  isFlushingWork = !0;
11787
11796
  do {
11788
11797
  var didPerformSomeWork = !1;
11789
- for (var root$168 = firstScheduledRoot; null !== root$168; ) {
11798
+ for (var root$169 = firstScheduledRoot; null !== root$169; ) {
11790
11799
  if (!onlyLegacy)
11791
11800
  if (0 !== syncTransitionLanes) {
11792
- var pendingLanes = root$168.pendingLanes;
11801
+ var pendingLanes = root$169.pendingLanes;
11793
11802
  if (0 === pendingLanes) var JSCompiler_inline_result = 0;
11794
11803
  else {
11795
- var suspendedLanes = root$168.suspendedLanes,
11796
- pingedLanes = root$168.pingedLanes;
11804
+ var suspendedLanes = root$169.suspendedLanes,
11805
+ pingedLanes = root$169.pingedLanes;
11797
11806
  JSCompiler_inline_result =
11798
11807
  (1 << (31 - clz32(42 | syncTransitionLanes) + 1)) - 1;
11799
11808
  JSCompiler_inline_result &=
@@ -11807,20 +11816,20 @@ function flushSyncWorkAcrossRoots_impl(syncTransitionLanes, onlyLegacy) {
11807
11816
  }
11808
11817
  0 !== JSCompiler_inline_result &&
11809
11818
  ((didPerformSomeWork = !0),
11810
- performSyncWorkOnRoot(root$168, JSCompiler_inline_result));
11819
+ performSyncWorkOnRoot(root$169, JSCompiler_inline_result));
11811
11820
  } else
11812
11821
  (JSCompiler_inline_result = workInProgressRootRenderLanes),
11813
11822
  (JSCompiler_inline_result = getNextLanes(
11814
- root$168,
11815
- root$168 === workInProgressRoot ? JSCompiler_inline_result : 0,
11816
- null !== root$168.cancelPendingCommit ||
11817
- -1 !== root$168.timeoutHandle
11823
+ root$169,
11824
+ root$169 === workInProgressRoot ? JSCompiler_inline_result : 0,
11825
+ null !== root$169.cancelPendingCommit ||
11826
+ -1 !== root$169.timeoutHandle
11818
11827
  )),
11819
11828
  0 === (JSCompiler_inline_result & 3) ||
11820
- checkIfRootIsPrerendering(root$168, JSCompiler_inline_result) ||
11829
+ checkIfRootIsPrerendering(root$169, JSCompiler_inline_result) ||
11821
11830
  ((didPerformSomeWork = !0),
11822
- performSyncWorkOnRoot(root$168, JSCompiler_inline_result));
11823
- root$168 = root$168.next;
11831
+ performSyncWorkOnRoot(root$169, JSCompiler_inline_result));
11832
+ root$169 = root$169.next;
11824
11833
  }
11825
11834
  } while (didPerformSomeWork);
11826
11835
  isFlushingWork = !1;
@@ -12064,20 +12073,20 @@ function extractEvents$1(
12064
12073
  }
12065
12074
  }
12066
12075
  for (
12067
- var i$jscomp$inline_1576 = 0;
12068
- i$jscomp$inline_1576 < simpleEventPluginEvents.length;
12069
- i$jscomp$inline_1576++
12076
+ var i$jscomp$inline_1573 = 0;
12077
+ i$jscomp$inline_1573 < simpleEventPluginEvents.length;
12078
+ i$jscomp$inline_1573++
12070
12079
  ) {
12071
- var eventName$jscomp$inline_1577 =
12072
- simpleEventPluginEvents[i$jscomp$inline_1576],
12073
- domEventName$jscomp$inline_1578 =
12074
- eventName$jscomp$inline_1577.toLowerCase(),
12075
- capitalizedEvent$jscomp$inline_1579 =
12076
- eventName$jscomp$inline_1577[0].toUpperCase() +
12077
- eventName$jscomp$inline_1577.slice(1);
12080
+ var eventName$jscomp$inline_1574 =
12081
+ simpleEventPluginEvents[i$jscomp$inline_1573],
12082
+ domEventName$jscomp$inline_1575 =
12083
+ eventName$jscomp$inline_1574.toLowerCase(),
12084
+ capitalizedEvent$jscomp$inline_1576 =
12085
+ eventName$jscomp$inline_1574[0].toUpperCase() +
12086
+ eventName$jscomp$inline_1574.slice(1);
12078
12087
  registerSimpleEvent(
12079
- domEventName$jscomp$inline_1578,
12080
- "on" + capitalizedEvent$jscomp$inline_1579
12088
+ domEventName$jscomp$inline_1575,
12089
+ "on" + capitalizedEvent$jscomp$inline_1576
12081
12090
  );
12082
12091
  }
12083
12092
  registerSimpleEvent(ANIMATION_END, "onAnimationEnd");
@@ -13251,34 +13260,34 @@ function setInitialProperties(domElement, tag, props) {
13251
13260
  defaultChecked = null;
13252
13261
  for (hasSrc in props)
13253
13262
  if (props.hasOwnProperty(hasSrc)) {
13254
- var propValue$182 = props[hasSrc];
13255
- if (null != propValue$182)
13263
+ var propValue$183 = props[hasSrc];
13264
+ if (null != propValue$183)
13256
13265
  switch (hasSrc) {
13257
13266
  case "name":
13258
- hasSrcSet = propValue$182;
13267
+ hasSrcSet = propValue$183;
13259
13268
  break;
13260
13269
  case "type":
13261
- propValue = propValue$182;
13270
+ propValue = propValue$183;
13262
13271
  break;
13263
13272
  case "checked":
13264
- checked = propValue$182;
13273
+ checked = propValue$183;
13265
13274
  break;
13266
13275
  case "defaultChecked":
13267
- defaultChecked = propValue$182;
13276
+ defaultChecked = propValue$183;
13268
13277
  break;
13269
13278
  case "value":
13270
- propKey = propValue$182;
13279
+ propKey = propValue$183;
13271
13280
  break;
13272
13281
  case "defaultValue":
13273
- defaultValue = propValue$182;
13282
+ defaultValue = propValue$183;
13274
13283
  break;
13275
13284
  case "children":
13276
13285
  case "dangerouslySetInnerHTML":
13277
- if (null != propValue$182)
13286
+ if (null != propValue$183)
13278
13287
  throw Error(formatProdErrorMessage(137, tag));
13279
13288
  break;
13280
13289
  default:
13281
- setProp(domElement, tag, hasSrc, propValue$182, props, null);
13290
+ setProp(domElement, tag, hasSrc, propValue$183, props, null);
13282
13291
  }
13283
13292
  }
13284
13293
  initInput(
@@ -13415,14 +13424,14 @@ function setInitialProperties(domElement, tag, props) {
13415
13424
  return;
13416
13425
  default:
13417
13426
  if (isCustomElement(tag)) {
13418
- for (propValue$182 in props)
13419
- props.hasOwnProperty(propValue$182) &&
13420
- ((hasSrc = props[propValue$182]),
13427
+ for (propValue$183 in props)
13428
+ props.hasOwnProperty(propValue$183) &&
13429
+ ((hasSrc = props[propValue$183]),
13421
13430
  void 0 !== hasSrc &&
13422
13431
  setPropOnCustomElement(
13423
13432
  domElement,
13424
13433
  tag,
13425
- propValue$182,
13434
+ propValue$183,
13426
13435
  hasSrc,
13427
13436
  props,
13428
13437
  void 0
@@ -13470,14 +13479,14 @@ function updateProperties(domElement, tag, lastProps, nextProps) {
13470
13479
  setProp(domElement, tag, propKey, null, nextProps, lastProp);
13471
13480
  }
13472
13481
  }
13473
- for (var propKey$199 in nextProps) {
13474
- var propKey = nextProps[propKey$199];
13475
- lastProp = lastProps[propKey$199];
13482
+ for (var propKey$200 in nextProps) {
13483
+ var propKey = nextProps[propKey$200];
13484
+ lastProp = lastProps[propKey$200];
13476
13485
  if (
13477
- nextProps.hasOwnProperty(propKey$199) &&
13486
+ nextProps.hasOwnProperty(propKey$200) &&
13478
13487
  (null != propKey || null != lastProp)
13479
13488
  )
13480
- switch (propKey$199) {
13489
+ switch (propKey$200) {
13481
13490
  case "type":
13482
13491
  type = propKey;
13483
13492
  break;
@@ -13506,7 +13515,7 @@ function updateProperties(domElement, tag, lastProps, nextProps) {
13506
13515
  setProp(
13507
13516
  domElement,
13508
13517
  tag,
13509
- propKey$199,
13518
+ propKey$200,
13510
13519
  propKey,
13511
13520
  nextProps,
13512
13521
  lastProp
@@ -13525,7 +13534,7 @@ function updateProperties(domElement, tag, lastProps, nextProps) {
13525
13534
  );
13526
13535
  return;
13527
13536
  case "select":
13528
- propKey = value = defaultValue = propKey$199 = null;
13537
+ propKey = value = defaultValue = propKey$200 = null;
13529
13538
  for (type in lastProps)
13530
13539
  if (
13531
13540
  ((lastDefaultValue = lastProps[type]),
@@ -13556,7 +13565,7 @@ function updateProperties(domElement, tag, lastProps, nextProps) {
13556
13565
  )
13557
13566
  switch (name) {
13558
13567
  case "value":
13559
- propKey$199 = type;
13568
+ propKey$200 = type;
13560
13569
  break;
13561
13570
  case "defaultValue":
13562
13571
  defaultValue = type;
@@ -13577,15 +13586,15 @@ function updateProperties(domElement, tag, lastProps, nextProps) {
13577
13586
  tag = defaultValue;
13578
13587
  lastProps = value;
13579
13588
  nextProps = propKey;
13580
- null != propKey$199
13581
- ? updateOptions(domElement, !!lastProps, propKey$199, !1)
13589
+ null != propKey$200
13590
+ ? updateOptions(domElement, !!lastProps, propKey$200, !1)
13582
13591
  : !!nextProps !== !!lastProps &&
13583
13592
  (null != tag
13584
13593
  ? updateOptions(domElement, !!lastProps, tag, !0)
13585
13594
  : updateOptions(domElement, !!lastProps, lastProps ? [] : "", !1));
13586
13595
  return;
13587
13596
  case "textarea":
13588
- propKey = propKey$199 = null;
13597
+ propKey = propKey$200 = null;
13589
13598
  for (defaultValue in lastProps)
13590
13599
  if (
13591
13600
  ((name = lastProps[defaultValue]),
@@ -13609,7 +13618,7 @@ function updateProperties(domElement, tag, lastProps, nextProps) {
13609
13618
  )
13610
13619
  switch (value) {
13611
13620
  case "value":
13612
- propKey$199 = name;
13621
+ propKey$200 = name;
13613
13622
  break;
13614
13623
  case "defaultValue":
13615
13624
  propKey = name;
@@ -13623,17 +13632,17 @@ function updateProperties(domElement, tag, lastProps, nextProps) {
13623
13632
  name !== type &&
13624
13633
  setProp(domElement, tag, value, name, nextProps, type);
13625
13634
  }
13626
- updateTextarea(domElement, propKey$199, propKey);
13635
+ updateTextarea(domElement, propKey$200, propKey);
13627
13636
  return;
13628
13637
  case "option":
13629
- for (var propKey$215 in lastProps)
13638
+ for (var propKey$216 in lastProps)
13630
13639
  if (
13631
- ((propKey$199 = lastProps[propKey$215]),
13632
- lastProps.hasOwnProperty(propKey$215) &&
13633
- null != propKey$199 &&
13634
- !nextProps.hasOwnProperty(propKey$215))
13640
+ ((propKey$200 = lastProps[propKey$216]),
13641
+ lastProps.hasOwnProperty(propKey$216) &&
13642
+ null != propKey$200 &&
13643
+ !nextProps.hasOwnProperty(propKey$216))
13635
13644
  )
13636
- switch (propKey$215) {
13645
+ switch (propKey$216) {
13637
13646
  case "selected":
13638
13647
  domElement.selected = !1;
13639
13648
  break;
@@ -13641,33 +13650,33 @@ function updateProperties(domElement, tag, lastProps, nextProps) {
13641
13650
  setProp(
13642
13651
  domElement,
13643
13652
  tag,
13644
- propKey$215,
13653
+ propKey$216,
13645
13654
  null,
13646
13655
  nextProps,
13647
- propKey$199
13656
+ propKey$200
13648
13657
  );
13649
13658
  }
13650
13659
  for (lastDefaultValue in nextProps)
13651
13660
  if (
13652
- ((propKey$199 = nextProps[lastDefaultValue]),
13661
+ ((propKey$200 = nextProps[lastDefaultValue]),
13653
13662
  (propKey = lastProps[lastDefaultValue]),
13654
13663
  nextProps.hasOwnProperty(lastDefaultValue) &&
13655
- propKey$199 !== propKey &&
13656
- (null != propKey$199 || null != propKey))
13664
+ propKey$200 !== propKey &&
13665
+ (null != propKey$200 || null != propKey))
13657
13666
  )
13658
13667
  switch (lastDefaultValue) {
13659
13668
  case "selected":
13660
13669
  domElement.selected =
13661
- propKey$199 &&
13662
- "function" !== typeof propKey$199 &&
13663
- "symbol" !== typeof propKey$199;
13670
+ propKey$200 &&
13671
+ "function" !== typeof propKey$200 &&
13672
+ "symbol" !== typeof propKey$200;
13664
13673
  break;
13665
13674
  default:
13666
13675
  setProp(
13667
13676
  domElement,
13668
13677
  tag,
13669
13678
  lastDefaultValue,
13670
- propKey$199,
13679
+ propKey$200,
13671
13680
  nextProps,
13672
13681
  propKey
13673
13682
  );
@@ -13688,24 +13697,24 @@ function updateProperties(domElement, tag, lastProps, nextProps) {
13688
13697
  case "track":
13689
13698
  case "wbr":
13690
13699
  case "menuitem":
13691
- for (var propKey$220 in lastProps)
13692
- (propKey$199 = lastProps[propKey$220]),
13693
- lastProps.hasOwnProperty(propKey$220) &&
13694
- null != propKey$199 &&
13695
- !nextProps.hasOwnProperty(propKey$220) &&
13696
- setProp(domElement, tag, propKey$220, null, nextProps, propKey$199);
13700
+ for (var propKey$221 in lastProps)
13701
+ (propKey$200 = lastProps[propKey$221]),
13702
+ lastProps.hasOwnProperty(propKey$221) &&
13703
+ null != propKey$200 &&
13704
+ !nextProps.hasOwnProperty(propKey$221) &&
13705
+ setProp(domElement, tag, propKey$221, null, nextProps, propKey$200);
13697
13706
  for (checked in nextProps)
13698
13707
  if (
13699
- ((propKey$199 = nextProps[checked]),
13708
+ ((propKey$200 = nextProps[checked]),
13700
13709
  (propKey = lastProps[checked]),
13701
13710
  nextProps.hasOwnProperty(checked) &&
13702
- propKey$199 !== propKey &&
13703
- (null != propKey$199 || null != propKey))
13711
+ propKey$200 !== propKey &&
13712
+ (null != propKey$200 || null != propKey))
13704
13713
  )
13705
13714
  switch (checked) {
13706
13715
  case "children":
13707
13716
  case "dangerouslySetInnerHTML":
13708
- if (null != propKey$199)
13717
+ if (null != propKey$200)
13709
13718
  throw Error(formatProdErrorMessage(137, tag));
13710
13719
  break;
13711
13720
  default:
@@ -13713,7 +13722,7 @@ function updateProperties(domElement, tag, lastProps, nextProps) {
13713
13722
  domElement,
13714
13723
  tag,
13715
13724
  checked,
13716
- propKey$199,
13725
+ propKey$200,
13717
13726
  nextProps,
13718
13727
  propKey
13719
13728
  );
@@ -13721,49 +13730,49 @@ function updateProperties(domElement, tag, lastProps, nextProps) {
13721
13730
  return;
13722
13731
  default:
13723
13732
  if (isCustomElement(tag)) {
13724
- for (var propKey$225 in lastProps)
13725
- (propKey$199 = lastProps[propKey$225]),
13726
- lastProps.hasOwnProperty(propKey$225) &&
13727
- void 0 !== propKey$199 &&
13728
- !nextProps.hasOwnProperty(propKey$225) &&
13733
+ for (var propKey$226 in lastProps)
13734
+ (propKey$200 = lastProps[propKey$226]),
13735
+ lastProps.hasOwnProperty(propKey$226) &&
13736
+ void 0 !== propKey$200 &&
13737
+ !nextProps.hasOwnProperty(propKey$226) &&
13729
13738
  setPropOnCustomElement(
13730
13739
  domElement,
13731
13740
  tag,
13732
- propKey$225,
13741
+ propKey$226,
13733
13742
  void 0,
13734
13743
  nextProps,
13735
- propKey$199
13744
+ propKey$200
13736
13745
  );
13737
13746
  for (defaultChecked in nextProps)
13738
- (propKey$199 = nextProps[defaultChecked]),
13747
+ (propKey$200 = nextProps[defaultChecked]),
13739
13748
  (propKey = lastProps[defaultChecked]),
13740
13749
  !nextProps.hasOwnProperty(defaultChecked) ||
13741
- propKey$199 === propKey ||
13742
- (void 0 === propKey$199 && void 0 === propKey) ||
13750
+ propKey$200 === propKey ||
13751
+ (void 0 === propKey$200 && void 0 === propKey) ||
13743
13752
  setPropOnCustomElement(
13744
13753
  domElement,
13745
13754
  tag,
13746
13755
  defaultChecked,
13747
- propKey$199,
13756
+ propKey$200,
13748
13757
  nextProps,
13749
13758
  propKey
13750
13759
  );
13751
13760
  return;
13752
13761
  }
13753
13762
  }
13754
- for (var propKey$230 in lastProps)
13755
- (propKey$199 = lastProps[propKey$230]),
13756
- lastProps.hasOwnProperty(propKey$230) &&
13757
- null != propKey$199 &&
13758
- !nextProps.hasOwnProperty(propKey$230) &&
13759
- setProp(domElement, tag, propKey$230, null, nextProps, propKey$199);
13763
+ for (var propKey$231 in lastProps)
13764
+ (propKey$200 = lastProps[propKey$231]),
13765
+ lastProps.hasOwnProperty(propKey$231) &&
13766
+ null != propKey$200 &&
13767
+ !nextProps.hasOwnProperty(propKey$231) &&
13768
+ setProp(domElement, tag, propKey$231, null, nextProps, propKey$200);
13760
13769
  for (lastProp in nextProps)
13761
- (propKey$199 = nextProps[lastProp]),
13770
+ (propKey$200 = nextProps[lastProp]),
13762
13771
  (propKey = lastProps[lastProp]),
13763
13772
  !nextProps.hasOwnProperty(lastProp) ||
13764
- propKey$199 === propKey ||
13765
- (null == propKey$199 && null == propKey) ||
13766
- setProp(domElement, tag, lastProp, propKey$199, nextProps, propKey);
13773
+ propKey$200 === propKey ||
13774
+ (null == propKey$200 && null == propKey) ||
13775
+ setProp(domElement, tag, lastProp, propKey$200, nextProps, propKey);
13767
13776
  }
13768
13777
  var eventsEnabled = null,
13769
13778
  selectionInformation = null;
@@ -14432,26 +14441,26 @@ function getResource(type, currentProps, pendingProps, currentResource) {
14432
14441
  "string" === typeof pendingProps.precedence
14433
14442
  ) {
14434
14443
  type = getStyleKey(pendingProps.href);
14435
- var styles$241 = getResourcesFromRoot(
14444
+ var styles$242 = getResourcesFromRoot(
14436
14445
  JSCompiler_inline_result
14437
14446
  ).hoistableStyles,
14438
- resource$242 = styles$241.get(type);
14439
- resource$242 ||
14447
+ resource$243 = styles$242.get(type);
14448
+ resource$243 ||
14440
14449
  ((JSCompiler_inline_result =
14441
14450
  JSCompiler_inline_result.ownerDocument || JSCompiler_inline_result),
14442
- (resource$242 = {
14451
+ (resource$243 = {
14443
14452
  type: "stylesheet",
14444
14453
  instance: null,
14445
14454
  count: 0,
14446
14455
  state: { loading: 0, preload: null }
14447
14456
  }),
14448
- styles$241.set(type, resource$242),
14449
- (styles$241 = JSCompiler_inline_result.querySelector(
14457
+ styles$242.set(type, resource$243),
14458
+ (styles$242 = JSCompiler_inline_result.querySelector(
14450
14459
  getStylesheetSelectorFromKey(type)
14451
14460
  )) &&
14452
- !styles$241._p &&
14453
- ((resource$242.instance = styles$241),
14454
- (resource$242.state.loading = 5)),
14461
+ !styles$242._p &&
14462
+ ((resource$243.instance = styles$242),
14463
+ (resource$243.state.loading = 5)),
14455
14464
  preloadPropsMap.has(type) ||
14456
14465
  ((pendingProps = {
14457
14466
  rel: "preload",
@@ -14464,16 +14473,16 @@ function getResource(type, currentProps, pendingProps, currentResource) {
14464
14473
  referrerPolicy: pendingProps.referrerPolicy
14465
14474
  }),
14466
14475
  preloadPropsMap.set(type, pendingProps),
14467
- styles$241 ||
14476
+ styles$242 ||
14468
14477
  preloadStylesheet(
14469
14478
  JSCompiler_inline_result,
14470
14479
  type,
14471
14480
  pendingProps,
14472
- resource$242.state
14481
+ resource$243.state
14473
14482
  )));
14474
14483
  if (currentProps && null === currentResource)
14475
14484
  throw Error(formatProdErrorMessage(528, ""));
14476
- return resource$242;
14485
+ return resource$243;
14477
14486
  }
14478
14487
  if (currentProps && null !== currentResource)
14479
14488
  throw Error(formatProdErrorMessage(529, ""));
@@ -14570,37 +14579,37 @@ function acquireResource(hoistableRoot, resource, props) {
14570
14579
  return (resource.instance = instance);
14571
14580
  case "stylesheet":
14572
14581
  styleProps = getStyleKey(props.href);
14573
- var instance$247 = hoistableRoot.querySelector(
14582
+ var instance$248 = hoistableRoot.querySelector(
14574
14583
  getStylesheetSelectorFromKey(styleProps)
14575
14584
  );
14576
- if (instance$247)
14585
+ if (instance$248)
14577
14586
  return (
14578
14587
  (resource.state.loading |= 4),
14579
- (resource.instance = instance$247),
14580
- markNodeAsHoistable(instance$247),
14581
- instance$247
14588
+ (resource.instance = instance$248),
14589
+ markNodeAsHoistable(instance$248),
14590
+ instance$248
14582
14591
  );
14583
14592
  instance = stylesheetPropsFromRawProps(props);
14584
14593
  (styleProps = preloadPropsMap.get(styleProps)) &&
14585
14594
  adoptPreloadPropsForStylesheet(instance, styleProps);
14586
- instance$247 = (
14595
+ instance$248 = (
14587
14596
  hoistableRoot.ownerDocument || hoistableRoot
14588
14597
  ).createElement("link");
14589
- markNodeAsHoistable(instance$247);
14590
- var linkInstance = instance$247;
14598
+ markNodeAsHoistable(instance$248);
14599
+ var linkInstance = instance$248;
14591
14600
  linkInstance._p = new Promise(function (resolve, reject) {
14592
14601
  linkInstance.onload = resolve;
14593
14602
  linkInstance.onerror = reject;
14594
14603
  });
14595
- setInitialProperties(instance$247, "link", instance);
14604
+ setInitialProperties(instance$248, "link", instance);
14596
14605
  resource.state.loading |= 4;
14597
- insertStylesheet(instance$247, props.precedence, hoistableRoot);
14598
- return (resource.instance = instance$247);
14606
+ insertStylesheet(instance$248, props.precedence, hoistableRoot);
14607
+ return (resource.instance = instance$248);
14599
14608
  case "script":
14600
- instance$247 = getScriptKey(props.src);
14609
+ instance$248 = getScriptKey(props.src);
14601
14610
  if (
14602
14611
  (styleProps = hoistableRoot.querySelector(
14603
- getScriptSelectorFromKey(instance$247)
14612
+ getScriptSelectorFromKey(instance$248)
14604
14613
  ))
14605
14614
  )
14606
14615
  return (
@@ -14609,7 +14618,7 @@ function acquireResource(hoistableRoot, resource, props) {
14609
14618
  styleProps
14610
14619
  );
14611
14620
  instance = props;
14612
- if ((styleProps = preloadPropsMap.get(instance$247)))
14621
+ if ((styleProps = preloadPropsMap.get(instance$248)))
14613
14622
  (instance = assign({}, props)),
14614
14623
  adoptPreloadPropsForScript(instance, styleProps);
14615
14624
  hoistableRoot = hoistableRoot.ownerDocument || hoistableRoot;
@@ -15693,16 +15702,16 @@ ReactDOMHydrationRoot.prototype.unstable_scheduleHydration = function (target) {
15693
15702
  0 === i && attemptExplicitHydrationTarget(target);
15694
15703
  }
15695
15704
  };
15696
- var isomorphicReactPackageVersion$jscomp$inline_1836 = React.version;
15705
+ var isomorphicReactPackageVersion$jscomp$inline_1833 = React.version;
15697
15706
  if (
15698
- "19.2.0-canary-f1e70b5e-20250811" !==
15699
- isomorphicReactPackageVersion$jscomp$inline_1836
15707
+ "19.2.0-canary-ac7820a9-20250811" !==
15708
+ isomorphicReactPackageVersion$jscomp$inline_1833
15700
15709
  )
15701
15710
  throw Error(
15702
15711
  formatProdErrorMessage(
15703
15712
  527,
15704
- isomorphicReactPackageVersion$jscomp$inline_1836,
15705
- "19.2.0-canary-f1e70b5e-20250811"
15713
+ isomorphicReactPackageVersion$jscomp$inline_1833,
15714
+ "19.2.0-canary-ac7820a9-20250811"
15706
15715
  )
15707
15716
  );
15708
15717
  ReactDOMSharedInternals.findDOMNode = function (componentOrElement) {
@@ -15722,24 +15731,24 @@ ReactDOMSharedInternals.findDOMNode = function (componentOrElement) {
15722
15731
  null === componentOrElement ? null : componentOrElement.stateNode;
15723
15732
  return componentOrElement;
15724
15733
  };
15725
- var internals$jscomp$inline_2329 = {
15734
+ var internals$jscomp$inline_2336 = {
15726
15735
  bundleType: 0,
15727
- version: "19.2.0-canary-f1e70b5e-20250811",
15736
+ version: "19.2.0-canary-ac7820a9-20250811",
15728
15737
  rendererPackageName: "react-dom",
15729
15738
  currentDispatcherRef: ReactSharedInternals,
15730
- reconcilerVersion: "19.2.0-canary-f1e70b5e-20250811"
15739
+ reconcilerVersion: "19.2.0-canary-ac7820a9-20250811"
15731
15740
  };
15732
15741
  if ("undefined" !== typeof __REACT_DEVTOOLS_GLOBAL_HOOK__) {
15733
- var hook$jscomp$inline_2330 = __REACT_DEVTOOLS_GLOBAL_HOOK__;
15742
+ var hook$jscomp$inline_2337 = __REACT_DEVTOOLS_GLOBAL_HOOK__;
15734
15743
  if (
15735
- !hook$jscomp$inline_2330.isDisabled &&
15736
- hook$jscomp$inline_2330.supportsFiber
15744
+ !hook$jscomp$inline_2337.isDisabled &&
15745
+ hook$jscomp$inline_2337.supportsFiber
15737
15746
  )
15738
15747
  try {
15739
- (rendererID = hook$jscomp$inline_2330.inject(
15740
- internals$jscomp$inline_2329
15748
+ (rendererID = hook$jscomp$inline_2337.inject(
15749
+ internals$jscomp$inline_2336
15741
15750
  )),
15742
- (injectedHook = hook$jscomp$inline_2330);
15751
+ (injectedHook = hook$jscomp$inline_2337);
15743
15752
  } catch (err) {}
15744
15753
  }
15745
15754
  exports.createRoot = function (container, options) {
@@ -15825,4 +15834,4 @@ exports.hydrateRoot = function (container, initialChildren, options) {
15825
15834
  listenToAllSupportedEvents(container);
15826
15835
  return new ReactDOMHydrationRoot(initialChildren);
15827
15836
  };
15828
- exports.version = "19.2.0-canary-f1e70b5e-20250811";
15837
+ exports.version = "19.2.0-canary-ac7820a9-20250811";