react-dom 19.3.0-canary-c9ddee7e-20251031 → 19.3.0-canary-561ee24d-20251101

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.
@@ -2155,19 +2155,19 @@ function getTargetInstForChangeEvent(domEventName, targetInst) {
2155
2155
  }
2156
2156
  var isInputEventSupported = !1;
2157
2157
  if (canUseDOM) {
2158
- var JSCompiler_inline_result$jscomp$308;
2158
+ var JSCompiler_inline_result$jscomp$310;
2159
2159
  if (canUseDOM) {
2160
- var isSupported$jscomp$inline_469 = "oninput" in document;
2161
- if (!isSupported$jscomp$inline_469) {
2162
- var element$jscomp$inline_470 = document.createElement("div");
2163
- element$jscomp$inline_470.setAttribute("oninput", "return;");
2164
- isSupported$jscomp$inline_469 =
2165
- "function" === typeof element$jscomp$inline_470.oninput;
2160
+ var isSupported$jscomp$inline_470 = "oninput" in document;
2161
+ if (!isSupported$jscomp$inline_470) {
2162
+ var element$jscomp$inline_471 = document.createElement("div");
2163
+ element$jscomp$inline_471.setAttribute("oninput", "return;");
2164
+ isSupported$jscomp$inline_470 =
2165
+ "function" === typeof element$jscomp$inline_471.oninput;
2166
2166
  }
2167
- JSCompiler_inline_result$jscomp$308 = isSupported$jscomp$inline_469;
2168
- } else JSCompiler_inline_result$jscomp$308 = !1;
2167
+ JSCompiler_inline_result$jscomp$310 = isSupported$jscomp$inline_470;
2168
+ } else JSCompiler_inline_result$jscomp$310 = !1;
2169
2169
  isInputEventSupported =
2170
- JSCompiler_inline_result$jscomp$308 &&
2170
+ JSCompiler_inline_result$jscomp$310 &&
2171
2171
  (!document.documentMode || 9 < document.documentMode);
2172
2172
  }
2173
2173
  function stopWatchingForValueChange() {
@@ -4490,10 +4490,7 @@ function findFirstSuspended(row) {
4490
4490
  return node;
4491
4491
  } else if (
4492
4492
  19 === node.tag &&
4493
- ("forwards" === node.memoizedProps.revealOrder ||
4494
- "backwards" === node.memoizedProps.revealOrder ||
4495
- "unstable_legacy-backwards" === node.memoizedProps.revealOrder ||
4496
- "together" === node.memoizedProps.revealOrder)
4493
+ "independent" !== node.memoizedProps.revealOrder
4497
4494
  ) {
4498
4495
  if (0 !== (node.flags & 128)) return node;
4499
4496
  } else if (null !== node.child) {
@@ -7338,6 +7335,16 @@ function scheduleSuspenseWorkOnFiber(fiber, renderLanes, propagationRoot) {
7338
7335
  null !== alternate && (alternate.lanes |= renderLanes);
7339
7336
  scheduleContextWorkOnParentPath(fiber.return, renderLanes, propagationRoot);
7340
7337
  }
7338
+ function findLastContentRow(firstChild) {
7339
+ for (var lastContentRow = null; null !== firstChild; ) {
7340
+ var currentRow = firstChild.alternate;
7341
+ null !== currentRow &&
7342
+ null === findFirstSuspended(currentRow) &&
7343
+ (lastContentRow = firstChild);
7344
+ firstChild = firstChild.sibling;
7345
+ }
7346
+ return lastContentRow;
7347
+ }
7341
7348
  function initSuspenseListRenderState(
7342
7349
  workInProgress,
7343
7350
  isBackwards,
@@ -7365,6 +7372,15 @@ function initSuspenseListRenderState(
7365
7372
  (renderState.tailMode = tailMode),
7366
7373
  (renderState.treeForkCount = treeForkCount));
7367
7374
  }
7375
+ function reverseChildren(fiber) {
7376
+ var row = fiber.child;
7377
+ for (fiber.child = null; null !== row; ) {
7378
+ var nextRow = row.sibling;
7379
+ row.sibling = fiber.child;
7380
+ fiber.child = row;
7381
+ row = nextRow;
7382
+ }
7383
+ }
7368
7384
  function updateSuspenseListComponent(current, workInProgress, renderLanes) {
7369
7385
  var nextProps = workInProgress.pendingProps,
7370
7386
  revealOrder = nextProps.revealOrder,
@@ -7377,7 +7393,11 @@ function updateSuspenseListComponent(current, workInProgress, renderLanes) {
7377
7393
  (workInProgress.flags |= 128))
7378
7394
  : (suspenseContext &= 1);
7379
7395
  push(suspenseStackCursor, suspenseContext);
7380
- reconcileChildren(current, workInProgress, nextProps, renderLanes);
7396
+ "backwards" === revealOrder && null !== current
7397
+ ? (reverseChildren(current),
7398
+ reconcileChildren(current, workInProgress, nextProps, renderLanes),
7399
+ reverseChildren(current))
7400
+ : reconcileChildren(current, workInProgress, nextProps, renderLanes);
7381
7401
  nextProps = isHydrating ? treeForkCount : 0;
7382
7402
  if (!shouldForceFallback && null !== current && 0 !== (current.flags & 128))
7383
7403
  a: for (current = workInProgress.child; null !== current; ) {
@@ -7401,28 +7421,22 @@ function updateSuspenseListComponent(current, workInProgress, renderLanes) {
7401
7421
  current = current.sibling;
7402
7422
  }
7403
7423
  switch (revealOrder) {
7404
- case "forwards":
7405
- renderLanes = workInProgress.child;
7406
- for (revealOrder = null; null !== renderLanes; )
7407
- (current = renderLanes.alternate),
7408
- null !== current &&
7409
- null === findFirstSuspended(current) &&
7410
- (revealOrder = renderLanes),
7411
- (renderLanes = renderLanes.sibling);
7412
- renderLanes = revealOrder;
7424
+ case "backwards":
7425
+ renderLanes = findLastContentRow(workInProgress.child);
7413
7426
  null === renderLanes
7414
7427
  ? ((revealOrder = workInProgress.child), (workInProgress.child = null))
7415
- : ((revealOrder = renderLanes.sibling), (renderLanes.sibling = null));
7428
+ : ((revealOrder = renderLanes.sibling),
7429
+ (renderLanes.sibling = null),
7430
+ reverseChildren(workInProgress));
7416
7431
  initSuspenseListRenderState(
7417
7432
  workInProgress,
7418
- !1,
7433
+ !0,
7419
7434
  revealOrder,
7420
- renderLanes,
7435
+ null,
7421
7436
  tailMode,
7422
7437
  nextProps
7423
7438
  );
7424
7439
  break;
7425
- case "backwards":
7426
7440
  case "unstable_legacy-backwards":
7427
7441
  renderLanes = null;
7428
7442
  revealOrder = workInProgress.child;
@@ -7456,8 +7470,23 @@ function updateSuspenseListComponent(current, workInProgress, renderLanes) {
7456
7470
  nextProps
7457
7471
  );
7458
7472
  break;
7459
- default:
7473
+ case "independent":
7460
7474
  workInProgress.memoizedState = null;
7475
+ break;
7476
+ default:
7477
+ (renderLanes = findLastContentRow(workInProgress.child)),
7478
+ null === renderLanes
7479
+ ? ((revealOrder = workInProgress.child),
7480
+ (workInProgress.child = null))
7481
+ : ((revealOrder = renderLanes.sibling), (renderLanes.sibling = null)),
7482
+ initSuspenseListRenderState(
7483
+ workInProgress,
7484
+ !1,
7485
+ revealOrder,
7486
+ renderLanes,
7487
+ tailMode,
7488
+ nextProps
7489
+ );
7461
7490
  }
7462
7491
  return workInProgress.child;
7463
7492
  }
@@ -7531,9 +7560,9 @@ function attemptEarlyBailoutIfNoScheduledUpdate(
7531
7560
  );
7532
7561
  break;
7533
7562
  case 13:
7534
- var state$104 = workInProgress.memoizedState;
7535
- if (null !== state$104) {
7536
- if (null !== state$104.dehydrated)
7563
+ var state$106 = workInProgress.memoizedState;
7564
+ if (null !== state$106) {
7565
+ if (null !== state$106.dehydrated)
7537
7566
  return (
7538
7567
  pushPrimaryTreeSuspenseHandler(workInProgress),
7539
7568
  (workInProgress.flags |= 128),
@@ -7553,17 +7582,17 @@ function attemptEarlyBailoutIfNoScheduledUpdate(
7553
7582
  break;
7554
7583
  case 19:
7555
7584
  var didSuspendBefore = 0 !== (current.flags & 128);
7556
- state$104 = 0 !== (renderLanes & workInProgress.childLanes);
7557
- state$104 ||
7585
+ state$106 = 0 !== (renderLanes & workInProgress.childLanes);
7586
+ state$106 ||
7558
7587
  (propagateParentContextChanges(
7559
7588
  current,
7560
7589
  workInProgress,
7561
7590
  renderLanes,
7562
7591
  !1
7563
7592
  ),
7564
- (state$104 = 0 !== (renderLanes & workInProgress.childLanes)));
7593
+ (state$106 = 0 !== (renderLanes & workInProgress.childLanes)));
7565
7594
  if (didSuspendBefore) {
7566
- if (state$104)
7595
+ if (state$106)
7567
7596
  return updateSuspenseListComponent(
7568
7597
  current,
7569
7598
  workInProgress,
@@ -7577,7 +7606,7 @@ function attemptEarlyBailoutIfNoScheduledUpdate(
7577
7606
  (didSuspendBefore.tail = null),
7578
7607
  (didSuspendBefore.lastEffect = null));
7579
7608
  push(suspenseStackCursor, suspenseStackCursor.current);
7580
- if (state$104) break;
7609
+ if (state$106) break;
7581
7610
  else return null;
7582
7611
  case 22:
7583
7612
  return (
@@ -8127,26 +8156,31 @@ function scheduleRetryEffect(workInProgress, retryQueue) {
8127
8156
  function cutOffTailIfNeeded(renderState, hasRenderedATailFallback) {
8128
8157
  if (!isHydrating)
8129
8158
  switch (renderState.tailMode) {
8130
- case "hidden":
8131
- hasRenderedATailFallback = renderState.tail;
8132
- for (var lastTailNode = null; null !== hasRenderedATailFallback; )
8133
- null !== hasRenderedATailFallback.alternate &&
8134
- (lastTailNode = hasRenderedATailFallback),
8135
- (hasRenderedATailFallback = hasRenderedATailFallback.sibling);
8136
- null === lastTailNode
8137
- ? (renderState.tail = null)
8138
- : (lastTailNode.sibling = null);
8159
+ case "visible":
8139
8160
  break;
8140
8161
  case "collapsed":
8141
- lastTailNode = renderState.tail;
8142
- for (var lastTailNode$108 = null; null !== lastTailNode; )
8143
- null !== lastTailNode.alternate && (lastTailNode$108 = lastTailNode),
8144
- (lastTailNode = lastTailNode.sibling);
8145
- null === lastTailNode$108
8162
+ for (
8163
+ var tailNode = renderState.tail, lastTailNode = null;
8164
+ null !== tailNode;
8165
+
8166
+ )
8167
+ null !== tailNode.alternate && (lastTailNode = tailNode),
8168
+ (tailNode = tailNode.sibling);
8169
+ null === lastTailNode
8146
8170
  ? hasRenderedATailFallback || null === renderState.tail
8147
8171
  ? (renderState.tail = null)
8148
8172
  : (renderState.tail.sibling = null)
8149
- : (lastTailNode$108.sibling = null);
8173
+ : (lastTailNode.sibling = null);
8174
+ break;
8175
+ default:
8176
+ hasRenderedATailFallback = renderState.tail;
8177
+ for (tailNode = null; null !== hasRenderedATailFallback; )
8178
+ null !== hasRenderedATailFallback.alternate &&
8179
+ (tailNode = hasRenderedATailFallback),
8180
+ (hasRenderedATailFallback = hasRenderedATailFallback.sibling);
8181
+ null === tailNode
8182
+ ? (renderState.tail = null)
8183
+ : (tailNode.sibling = null);
8150
8184
  }
8151
8185
  }
8152
8186
  function bubbleProperties(completedWork) {
@@ -8156,19 +8190,19 @@ function bubbleProperties(completedWork) {
8156
8190
  newChildLanes = 0,
8157
8191
  subtreeFlags = 0;
8158
8192
  if (didBailout)
8159
- for (var child$109 = completedWork.child; null !== child$109; )
8160
- (newChildLanes |= child$109.lanes | child$109.childLanes),
8161
- (subtreeFlags |= child$109.subtreeFlags & 65011712),
8162
- (subtreeFlags |= child$109.flags & 65011712),
8163
- (child$109.return = completedWork),
8164
- (child$109 = child$109.sibling);
8193
+ for (var child$111 = completedWork.child; null !== child$111; )
8194
+ (newChildLanes |= child$111.lanes | child$111.childLanes),
8195
+ (subtreeFlags |= child$111.subtreeFlags & 65011712),
8196
+ (subtreeFlags |= child$111.flags & 65011712),
8197
+ (child$111.return = completedWork),
8198
+ (child$111 = child$111.sibling);
8165
8199
  else
8166
- for (child$109 = completedWork.child; null !== child$109; )
8167
- (newChildLanes |= child$109.lanes | child$109.childLanes),
8168
- (subtreeFlags |= child$109.subtreeFlags),
8169
- (subtreeFlags |= child$109.flags),
8170
- (child$109.return = completedWork),
8171
- (child$109 = child$109.sibling);
8200
+ for (child$111 = completedWork.child; null !== child$111; )
8201
+ (newChildLanes |= child$111.lanes | child$111.childLanes),
8202
+ (subtreeFlags |= child$111.subtreeFlags),
8203
+ (subtreeFlags |= child$111.flags),
8204
+ (child$111.return = completedWork),
8205
+ (child$111 = child$111.sibling);
8172
8206
  completedWork.subtreeFlags |= subtreeFlags;
8173
8207
  completedWork.childLanes = newChildLanes;
8174
8208
  return didBailout;
@@ -8596,7 +8630,8 @@ function completeWork(current, workInProgress, renderLanes) {
8596
8630
  scheduleRetryEffect(workInProgress, current),
8597
8631
  cutOffTailIfNeeded(newProps, !0),
8598
8632
  null === newProps.tail &&
8599
- "hidden" === newProps.tailMode &&
8633
+ "collapsed" !== newProps.tailMode &&
8634
+ "visible" !== newProps.tailMode &&
8600
8635
  !nextResource.alternate &&
8601
8636
  !isHydrating)
8602
8637
  )
@@ -8934,8 +8969,8 @@ function safelyDetachRef(current, nearestMountedAncestor) {
8934
8969
  else if ("function" === typeof ref)
8935
8970
  try {
8936
8971
  ref(null);
8937
- } catch (error$143) {
8938
- captureCommitPhaseError(current, nearestMountedAncestor, error$143);
8972
+ } catch (error$145) {
8973
+ captureCommitPhaseError(current, nearestMountedAncestor, error$145);
8939
8974
  }
8940
8975
  else ref.current = null;
8941
8976
  }
@@ -9774,11 +9809,11 @@ function commitLayoutEffectOnFiber(finishedRoot, current, finishedWork) {
9774
9809
  current,
9775
9810
  finishedRoot.__reactInternalSnapshotBeforeUpdate
9776
9811
  );
9777
- } catch (error$141) {
9812
+ } catch (error$143) {
9778
9813
  captureCommitPhaseError(
9779
9814
  finishedWork,
9780
9815
  finishedWork.return,
9781
- error$141
9816
+ error$143
9782
9817
  );
9783
9818
  }
9784
9819
  }
@@ -10493,14 +10528,14 @@ function commitMutationEffectsOnFiber(finishedWork, root, lanes) {
10493
10528
  var wasHidden = null !== current && null !== current.memoizedState,
10494
10529
  prevOffscreenSubtreeIsHidden = offscreenSubtreeIsHidden,
10495
10530
  prevOffscreenSubtreeWasHidden = offscreenSubtreeWasHidden,
10496
- prevOffscreenDirectParentIsHidden$158 = offscreenDirectParentIsHidden;
10531
+ prevOffscreenDirectParentIsHidden$160 = offscreenDirectParentIsHidden;
10497
10532
  offscreenSubtreeIsHidden = prevOffscreenSubtreeIsHidden || hoistableRoot;
10498
10533
  offscreenDirectParentIsHidden =
10499
- prevOffscreenDirectParentIsHidden$158 || hoistableRoot;
10534
+ prevOffscreenDirectParentIsHidden$160 || hoistableRoot;
10500
10535
  offscreenSubtreeWasHidden = prevOffscreenSubtreeWasHidden || wasHidden;
10501
10536
  recursivelyTraverseMutationEffects(root, finishedWork, lanes);
10502
10537
  offscreenSubtreeWasHidden = prevOffscreenSubtreeWasHidden;
10503
- offscreenDirectParentIsHidden = prevOffscreenDirectParentIsHidden$158;
10538
+ offscreenDirectParentIsHidden = prevOffscreenDirectParentIsHidden$160;
10504
10539
  offscreenSubtreeIsHidden = prevOffscreenSubtreeIsHidden;
10505
10540
  commitReconciliationEffects(finishedWork);
10506
10541
  if (
@@ -10673,25 +10708,25 @@ function commitReconciliationEffects(finishedWork) {
10673
10708
  );
10674
10709
  break;
10675
10710
  case 5:
10676
- var parent$144 = hostParentFiber.stateNode;
10711
+ var parent$146 = hostParentFiber.stateNode;
10677
10712
  hostParentFiber.flags & 32 &&
10678
- (setTextContent(parent$144, ""), (hostParentFiber.flags &= -33));
10679
- var before$145 = getHostSibling(finishedWork);
10713
+ (setTextContent(parent$146, ""), (hostParentFiber.flags &= -33));
10714
+ var before$147 = getHostSibling(finishedWork);
10680
10715
  insertOrAppendPlacementNode(
10681
10716
  finishedWork,
10682
- before$145,
10683
- parent$144,
10717
+ before$147,
10718
+ parent$146,
10684
10719
  parentFragmentInstances
10685
10720
  );
10686
10721
  break;
10687
10722
  case 3:
10688
10723
  case 4:
10689
- var parent$146 = hostParentFiber.stateNode.containerInfo,
10690
- before$147 = getHostSibling(finishedWork);
10724
+ var parent$148 = hostParentFiber.stateNode.containerInfo,
10725
+ before$149 = getHostSibling(finishedWork);
10691
10726
  insertOrAppendPlacementNodeIntoContainer(
10692
10727
  finishedWork,
10693
- before$147,
10694
- parent$146,
10728
+ before$149,
10729
+ parent$148,
10695
10730
  parentFragmentInstances
10696
10731
  );
10697
10732
  break;
@@ -12235,8 +12270,8 @@ function renderRootSync(root, lanes, shouldYieldForPrerendering) {
12235
12270
  workLoopSync();
12236
12271
  exitStatus = workInProgressRootExitStatus;
12237
12272
  break;
12238
- } catch (thrownValue$173) {
12239
- handleThrow(root, thrownValue$173);
12273
+ } catch (thrownValue$175) {
12274
+ handleThrow(root, thrownValue$175);
12240
12275
  }
12241
12276
  while (1);
12242
12277
  lanes && root.shellSuspendCounter++;
@@ -12355,8 +12390,8 @@ function renderRootConcurrent(root, lanes) {
12355
12390
  }
12356
12391
  workLoopConcurrentByScheduler();
12357
12392
  break;
12358
- } catch (thrownValue$175) {
12359
- handleThrow(root, thrownValue$175);
12393
+ } catch (thrownValue$177) {
12394
+ handleThrow(root, thrownValue$177);
12360
12395
  }
12361
12396
  while (1);
12362
12397
  lastContextDependency = currentlyRenderingFiber$1 = null;
@@ -13043,14 +13078,14 @@ function flushSyncWorkAcrossRoots_impl(syncTransitionLanes, onlyLegacy) {
13043
13078
  isFlushingWork = !0;
13044
13079
  do {
13045
13080
  var didPerformSomeWork = !1;
13046
- for (var root$179 = firstScheduledRoot; null !== root$179; ) {
13081
+ for (var root$181 = firstScheduledRoot; null !== root$181; ) {
13047
13082
  if (!onlyLegacy)
13048
13083
  if (0 !== syncTransitionLanes) {
13049
- var pendingLanes = root$179.pendingLanes;
13084
+ var pendingLanes = root$181.pendingLanes;
13050
13085
  if (0 === pendingLanes) var JSCompiler_inline_result = 0;
13051
13086
  else {
13052
- var suspendedLanes = root$179.suspendedLanes,
13053
- pingedLanes = root$179.pingedLanes;
13087
+ var suspendedLanes = root$181.suspendedLanes,
13088
+ pingedLanes = root$181.pingedLanes;
13054
13089
  JSCompiler_inline_result =
13055
13090
  (1 << (31 - clz32(42 | syncTransitionLanes) + 1)) - 1;
13056
13091
  JSCompiler_inline_result &=
@@ -13064,20 +13099,20 @@ function flushSyncWorkAcrossRoots_impl(syncTransitionLanes, onlyLegacy) {
13064
13099
  }
13065
13100
  0 !== JSCompiler_inline_result &&
13066
13101
  ((didPerformSomeWork = !0),
13067
- performSyncWorkOnRoot(root$179, JSCompiler_inline_result));
13102
+ performSyncWorkOnRoot(root$181, JSCompiler_inline_result));
13068
13103
  } else
13069
13104
  (JSCompiler_inline_result = workInProgressRootRenderLanes),
13070
13105
  (JSCompiler_inline_result = getNextLanes(
13071
- root$179,
13072
- root$179 === workInProgressRoot ? JSCompiler_inline_result : 0,
13073
- null !== root$179.cancelPendingCommit ||
13074
- -1 !== root$179.timeoutHandle
13106
+ root$181,
13107
+ root$181 === workInProgressRoot ? JSCompiler_inline_result : 0,
13108
+ null !== root$181.cancelPendingCommit ||
13109
+ -1 !== root$181.timeoutHandle
13075
13110
  )),
13076
13111
  0 === (JSCompiler_inline_result & 3) ||
13077
- checkIfRootIsPrerendering(root$179, JSCompiler_inline_result) ||
13112
+ checkIfRootIsPrerendering(root$181, JSCompiler_inline_result) ||
13078
13113
  ((didPerformSomeWork = !0),
13079
- performSyncWorkOnRoot(root$179, JSCompiler_inline_result));
13080
- root$179 = root$179.next;
13114
+ performSyncWorkOnRoot(root$181, JSCompiler_inline_result));
13115
+ root$181 = root$181.next;
13081
13116
  }
13082
13117
  } while (didPerformSomeWork);
13083
13118
  isFlushingWork = !1;
@@ -13325,20 +13360,20 @@ function extractEvents$1(
13325
13360
  }
13326
13361
  }
13327
13362
  for (
13328
- var i$jscomp$inline_1704 = 0;
13329
- i$jscomp$inline_1704 < simpleEventPluginEvents.length;
13330
- i$jscomp$inline_1704++
13363
+ var i$jscomp$inline_1700 = 0;
13364
+ i$jscomp$inline_1700 < simpleEventPluginEvents.length;
13365
+ i$jscomp$inline_1700++
13331
13366
  ) {
13332
- var eventName$jscomp$inline_1705 =
13333
- simpleEventPluginEvents[i$jscomp$inline_1704],
13334
- domEventName$jscomp$inline_1706 =
13335
- eventName$jscomp$inline_1705.toLowerCase(),
13336
- capitalizedEvent$jscomp$inline_1707 =
13337
- eventName$jscomp$inline_1705[0].toUpperCase() +
13338
- eventName$jscomp$inline_1705.slice(1);
13367
+ var eventName$jscomp$inline_1701 =
13368
+ simpleEventPluginEvents[i$jscomp$inline_1700],
13369
+ domEventName$jscomp$inline_1702 =
13370
+ eventName$jscomp$inline_1701.toLowerCase(),
13371
+ capitalizedEvent$jscomp$inline_1703 =
13372
+ eventName$jscomp$inline_1701[0].toUpperCase() +
13373
+ eventName$jscomp$inline_1701.slice(1);
13339
13374
  registerSimpleEvent(
13340
- domEventName$jscomp$inline_1706,
13341
- "on" + capitalizedEvent$jscomp$inline_1707
13375
+ domEventName$jscomp$inline_1702,
13376
+ "on" + capitalizedEvent$jscomp$inline_1703
13342
13377
  );
13343
13378
  }
13344
13379
  registerSimpleEvent(ANIMATION_END, "onAnimationEnd");
@@ -14492,34 +14527,34 @@ function setInitialProperties(domElement, tag, props) {
14492
14527
  defaultChecked = null;
14493
14528
  for (hasSrc in props)
14494
14529
  if (props.hasOwnProperty(hasSrc)) {
14495
- var propValue$193 = props[hasSrc];
14496
- if (null != propValue$193)
14530
+ var propValue$195 = props[hasSrc];
14531
+ if (null != propValue$195)
14497
14532
  switch (hasSrc) {
14498
14533
  case "name":
14499
- hasSrcSet = propValue$193;
14534
+ hasSrcSet = propValue$195;
14500
14535
  break;
14501
14536
  case "type":
14502
- propValue = propValue$193;
14537
+ propValue = propValue$195;
14503
14538
  break;
14504
14539
  case "checked":
14505
- checked = propValue$193;
14540
+ checked = propValue$195;
14506
14541
  break;
14507
14542
  case "defaultChecked":
14508
- defaultChecked = propValue$193;
14543
+ defaultChecked = propValue$195;
14509
14544
  break;
14510
14545
  case "value":
14511
- propKey = propValue$193;
14546
+ propKey = propValue$195;
14512
14547
  break;
14513
14548
  case "defaultValue":
14514
- defaultValue = propValue$193;
14549
+ defaultValue = propValue$195;
14515
14550
  break;
14516
14551
  case "children":
14517
14552
  case "dangerouslySetInnerHTML":
14518
- if (null != propValue$193)
14553
+ if (null != propValue$195)
14519
14554
  throw Error(formatProdErrorMessage(137, tag));
14520
14555
  break;
14521
14556
  default:
14522
- setProp(domElement, tag, hasSrc, propValue$193, props, null);
14557
+ setProp(domElement, tag, hasSrc, propValue$195, props, null);
14523
14558
  }
14524
14559
  }
14525
14560
  initInput(
@@ -14656,14 +14691,14 @@ function setInitialProperties(domElement, tag, props) {
14656
14691
  return;
14657
14692
  default:
14658
14693
  if (isCustomElement(tag)) {
14659
- for (propValue$193 in props)
14660
- props.hasOwnProperty(propValue$193) &&
14661
- ((hasSrc = props[propValue$193]),
14694
+ for (propValue$195 in props)
14695
+ props.hasOwnProperty(propValue$195) &&
14696
+ ((hasSrc = props[propValue$195]),
14662
14697
  void 0 !== hasSrc &&
14663
14698
  setPropOnCustomElement(
14664
14699
  domElement,
14665
14700
  tag,
14666
- propValue$193,
14701
+ propValue$195,
14667
14702
  hasSrc,
14668
14703
  props,
14669
14704
  void 0
@@ -14711,14 +14746,14 @@ function updateProperties(domElement, tag, lastProps, nextProps) {
14711
14746
  setProp(domElement, tag, propKey, null, nextProps, lastProp);
14712
14747
  }
14713
14748
  }
14714
- for (var propKey$210 in nextProps) {
14715
- var propKey = nextProps[propKey$210];
14716
- lastProp = lastProps[propKey$210];
14749
+ for (var propKey$212 in nextProps) {
14750
+ var propKey = nextProps[propKey$212];
14751
+ lastProp = lastProps[propKey$212];
14717
14752
  if (
14718
- nextProps.hasOwnProperty(propKey$210) &&
14753
+ nextProps.hasOwnProperty(propKey$212) &&
14719
14754
  (null != propKey || null != lastProp)
14720
14755
  )
14721
- switch (propKey$210) {
14756
+ switch (propKey$212) {
14722
14757
  case "type":
14723
14758
  propKey !== lastProp && (viewTransitionMutationContext = !0);
14724
14759
  type = propKey;
@@ -14753,7 +14788,7 @@ function updateProperties(domElement, tag, lastProps, nextProps) {
14753
14788
  setProp(
14754
14789
  domElement,
14755
14790
  tag,
14756
- propKey$210,
14791
+ propKey$212,
14757
14792
  propKey,
14758
14793
  nextProps,
14759
14794
  lastProp
@@ -14772,7 +14807,7 @@ function updateProperties(domElement, tag, lastProps, nextProps) {
14772
14807
  );
14773
14808
  return;
14774
14809
  case "select":
14775
- propKey = value = defaultValue = propKey$210 = null;
14810
+ propKey = value = defaultValue = propKey$212 = null;
14776
14811
  for (type in lastProps)
14777
14812
  if (
14778
14813
  ((lastDefaultValue = lastProps[type]),
@@ -14804,7 +14839,7 @@ function updateProperties(domElement, tag, lastProps, nextProps) {
14804
14839
  switch (name) {
14805
14840
  case "value":
14806
14841
  type !== lastDefaultValue && (viewTransitionMutationContext = !0);
14807
- propKey$210 = type;
14842
+ propKey$212 = type;
14808
14843
  break;
14809
14844
  case "defaultValue":
14810
14845
  type !== lastDefaultValue && (viewTransitionMutationContext = !0);
@@ -14827,15 +14862,15 @@ function updateProperties(domElement, tag, lastProps, nextProps) {
14827
14862
  tag = defaultValue;
14828
14863
  lastProps = value;
14829
14864
  nextProps = propKey;
14830
- null != propKey$210
14831
- ? updateOptions(domElement, !!lastProps, propKey$210, !1)
14865
+ null != propKey$212
14866
+ ? updateOptions(domElement, !!lastProps, propKey$212, !1)
14832
14867
  : !!nextProps !== !!lastProps &&
14833
14868
  (null != tag
14834
14869
  ? updateOptions(domElement, !!lastProps, tag, !0)
14835
14870
  : updateOptions(domElement, !!lastProps, lastProps ? [] : "", !1));
14836
14871
  return;
14837
14872
  case "textarea":
14838
- propKey = propKey$210 = null;
14873
+ propKey = propKey$212 = null;
14839
14874
  for (defaultValue in lastProps)
14840
14875
  if (
14841
14876
  ((name = lastProps[defaultValue]),
@@ -14860,7 +14895,7 @@ function updateProperties(domElement, tag, lastProps, nextProps) {
14860
14895
  switch (value) {
14861
14896
  case "value":
14862
14897
  name !== type && (viewTransitionMutationContext = !0);
14863
- propKey$210 = name;
14898
+ propKey$212 = name;
14864
14899
  break;
14865
14900
  case "defaultValue":
14866
14901
  name !== type && (viewTransitionMutationContext = !0);
@@ -14875,17 +14910,17 @@ function updateProperties(domElement, tag, lastProps, nextProps) {
14875
14910
  name !== type &&
14876
14911
  setProp(domElement, tag, value, name, nextProps, type);
14877
14912
  }
14878
- updateTextarea(domElement, propKey$210, propKey);
14913
+ updateTextarea(domElement, propKey$212, propKey);
14879
14914
  return;
14880
14915
  case "option":
14881
- for (var propKey$226 in lastProps)
14916
+ for (var propKey$228 in lastProps)
14882
14917
  if (
14883
- ((propKey$210 = lastProps[propKey$226]),
14884
- lastProps.hasOwnProperty(propKey$226) &&
14885
- null != propKey$210 &&
14886
- !nextProps.hasOwnProperty(propKey$226))
14918
+ ((propKey$212 = lastProps[propKey$228]),
14919
+ lastProps.hasOwnProperty(propKey$228) &&
14920
+ null != propKey$212 &&
14921
+ !nextProps.hasOwnProperty(propKey$228))
14887
14922
  )
14888
- switch (propKey$226) {
14923
+ switch (propKey$228) {
14889
14924
  case "selected":
14890
14925
  domElement.selected = !1;
14891
14926
  break;
@@ -14893,34 +14928,34 @@ function updateProperties(domElement, tag, lastProps, nextProps) {
14893
14928
  setProp(
14894
14929
  domElement,
14895
14930
  tag,
14896
- propKey$226,
14931
+ propKey$228,
14897
14932
  null,
14898
14933
  nextProps,
14899
- propKey$210
14934
+ propKey$212
14900
14935
  );
14901
14936
  }
14902
14937
  for (lastDefaultValue in nextProps)
14903
14938
  if (
14904
- ((propKey$210 = nextProps[lastDefaultValue]),
14939
+ ((propKey$212 = nextProps[lastDefaultValue]),
14905
14940
  (propKey = lastProps[lastDefaultValue]),
14906
14941
  nextProps.hasOwnProperty(lastDefaultValue) &&
14907
- propKey$210 !== propKey &&
14908
- (null != propKey$210 || null != propKey))
14942
+ propKey$212 !== propKey &&
14943
+ (null != propKey$212 || null != propKey))
14909
14944
  )
14910
14945
  switch (lastDefaultValue) {
14911
14946
  case "selected":
14912
- propKey$210 !== propKey && (viewTransitionMutationContext = !0);
14947
+ propKey$212 !== propKey && (viewTransitionMutationContext = !0);
14913
14948
  domElement.selected =
14914
- propKey$210 &&
14915
- "function" !== typeof propKey$210 &&
14916
- "symbol" !== typeof propKey$210;
14949
+ propKey$212 &&
14950
+ "function" !== typeof propKey$212 &&
14951
+ "symbol" !== typeof propKey$212;
14917
14952
  break;
14918
14953
  default:
14919
14954
  setProp(
14920
14955
  domElement,
14921
14956
  tag,
14922
14957
  lastDefaultValue,
14923
- propKey$210,
14958
+ propKey$212,
14924
14959
  nextProps,
14925
14960
  propKey
14926
14961
  );
@@ -14941,24 +14976,24 @@ function updateProperties(domElement, tag, lastProps, nextProps) {
14941
14976
  case "track":
14942
14977
  case "wbr":
14943
14978
  case "menuitem":
14944
- for (var propKey$231 in lastProps)
14945
- (propKey$210 = lastProps[propKey$231]),
14946
- lastProps.hasOwnProperty(propKey$231) &&
14947
- null != propKey$210 &&
14948
- !nextProps.hasOwnProperty(propKey$231) &&
14949
- setProp(domElement, tag, propKey$231, null, nextProps, propKey$210);
14979
+ for (var propKey$233 in lastProps)
14980
+ (propKey$212 = lastProps[propKey$233]),
14981
+ lastProps.hasOwnProperty(propKey$233) &&
14982
+ null != propKey$212 &&
14983
+ !nextProps.hasOwnProperty(propKey$233) &&
14984
+ setProp(domElement, tag, propKey$233, null, nextProps, propKey$212);
14950
14985
  for (checked in nextProps)
14951
14986
  if (
14952
- ((propKey$210 = nextProps[checked]),
14987
+ ((propKey$212 = nextProps[checked]),
14953
14988
  (propKey = lastProps[checked]),
14954
14989
  nextProps.hasOwnProperty(checked) &&
14955
- propKey$210 !== propKey &&
14956
- (null != propKey$210 || null != propKey))
14990
+ propKey$212 !== propKey &&
14991
+ (null != propKey$212 || null != propKey))
14957
14992
  )
14958
14993
  switch (checked) {
14959
14994
  case "children":
14960
14995
  case "dangerouslySetInnerHTML":
14961
- if (null != propKey$210)
14996
+ if (null != propKey$212)
14962
14997
  throw Error(formatProdErrorMessage(137, tag));
14963
14998
  break;
14964
14999
  default:
@@ -14966,7 +15001,7 @@ function updateProperties(domElement, tag, lastProps, nextProps) {
14966
15001
  domElement,
14967
15002
  tag,
14968
15003
  checked,
14969
- propKey$210,
15004
+ propKey$212,
14970
15005
  nextProps,
14971
15006
  propKey
14972
15007
  );
@@ -14974,49 +15009,49 @@ function updateProperties(domElement, tag, lastProps, nextProps) {
14974
15009
  return;
14975
15010
  default:
14976
15011
  if (isCustomElement(tag)) {
14977
- for (var propKey$236 in lastProps)
14978
- (propKey$210 = lastProps[propKey$236]),
14979
- lastProps.hasOwnProperty(propKey$236) &&
14980
- void 0 !== propKey$210 &&
14981
- !nextProps.hasOwnProperty(propKey$236) &&
15012
+ for (var propKey$238 in lastProps)
15013
+ (propKey$212 = lastProps[propKey$238]),
15014
+ lastProps.hasOwnProperty(propKey$238) &&
15015
+ void 0 !== propKey$212 &&
15016
+ !nextProps.hasOwnProperty(propKey$238) &&
14982
15017
  setPropOnCustomElement(
14983
15018
  domElement,
14984
15019
  tag,
14985
- propKey$236,
15020
+ propKey$238,
14986
15021
  void 0,
14987
15022
  nextProps,
14988
- propKey$210
15023
+ propKey$212
14989
15024
  );
14990
15025
  for (defaultChecked in nextProps)
14991
- (propKey$210 = nextProps[defaultChecked]),
15026
+ (propKey$212 = nextProps[defaultChecked]),
14992
15027
  (propKey = lastProps[defaultChecked]),
14993
15028
  !nextProps.hasOwnProperty(defaultChecked) ||
14994
- propKey$210 === propKey ||
14995
- (void 0 === propKey$210 && void 0 === propKey) ||
15029
+ propKey$212 === propKey ||
15030
+ (void 0 === propKey$212 && void 0 === propKey) ||
14996
15031
  setPropOnCustomElement(
14997
15032
  domElement,
14998
15033
  tag,
14999
15034
  defaultChecked,
15000
- propKey$210,
15035
+ propKey$212,
15001
15036
  nextProps,
15002
15037
  propKey
15003
15038
  );
15004
15039
  return;
15005
15040
  }
15006
15041
  }
15007
- for (var propKey$241 in lastProps)
15008
- (propKey$210 = lastProps[propKey$241]),
15009
- lastProps.hasOwnProperty(propKey$241) &&
15010
- null != propKey$210 &&
15011
- !nextProps.hasOwnProperty(propKey$241) &&
15012
- setProp(domElement, tag, propKey$241, null, nextProps, propKey$210);
15042
+ for (var propKey$243 in lastProps)
15043
+ (propKey$212 = lastProps[propKey$243]),
15044
+ lastProps.hasOwnProperty(propKey$243) &&
15045
+ null != propKey$212 &&
15046
+ !nextProps.hasOwnProperty(propKey$243) &&
15047
+ setProp(domElement, tag, propKey$243, null, nextProps, propKey$212);
15013
15048
  for (lastProp in nextProps)
15014
- (propKey$210 = nextProps[lastProp]),
15049
+ (propKey$212 = nextProps[lastProp]),
15015
15050
  (propKey = lastProps[lastProp]),
15016
15051
  !nextProps.hasOwnProperty(lastProp) ||
15017
- propKey$210 === propKey ||
15018
- (null == propKey$210 && null == propKey) ||
15019
- setProp(domElement, tag, lastProp, propKey$210, nextProps, propKey);
15052
+ propKey$212 === propKey ||
15053
+ (null == propKey$212 && null == propKey) ||
15054
+ setProp(domElement, tag, lastProp, propKey$212, nextProps, propKey);
15020
15055
  }
15021
15056
  function isLikelyStaticResource(initiatorType) {
15022
15057
  switch (initiatorType) {
@@ -16595,26 +16630,26 @@ function getResource(type, currentProps, pendingProps, currentResource) {
16595
16630
  "string" === typeof pendingProps.precedence
16596
16631
  ) {
16597
16632
  type = getStyleKey(pendingProps.href);
16598
- var styles$257 = getResourcesFromRoot(
16633
+ var styles$259 = getResourcesFromRoot(
16599
16634
  JSCompiler_inline_result
16600
16635
  ).hoistableStyles,
16601
- resource$258 = styles$257.get(type);
16602
- resource$258 ||
16636
+ resource$260 = styles$259.get(type);
16637
+ resource$260 ||
16603
16638
  ((JSCompiler_inline_result =
16604
16639
  JSCompiler_inline_result.ownerDocument || JSCompiler_inline_result),
16605
- (resource$258 = {
16640
+ (resource$260 = {
16606
16641
  type: "stylesheet",
16607
16642
  instance: null,
16608
16643
  count: 0,
16609
16644
  state: { loading: 0, preload: null }
16610
16645
  }),
16611
- styles$257.set(type, resource$258),
16612
- (styles$257 = JSCompiler_inline_result.querySelector(
16646
+ styles$259.set(type, resource$260),
16647
+ (styles$259 = JSCompiler_inline_result.querySelector(
16613
16648
  getStylesheetSelectorFromKey(type)
16614
16649
  )) &&
16615
- !styles$257._p &&
16616
- ((resource$258.instance = styles$257),
16617
- (resource$258.state.loading = 5)),
16650
+ !styles$259._p &&
16651
+ ((resource$260.instance = styles$259),
16652
+ (resource$260.state.loading = 5)),
16618
16653
  preloadPropsMap.has(type) ||
16619
16654
  ((pendingProps = {
16620
16655
  rel: "preload",
@@ -16627,16 +16662,16 @@ function getResource(type, currentProps, pendingProps, currentResource) {
16627
16662
  referrerPolicy: pendingProps.referrerPolicy
16628
16663
  }),
16629
16664
  preloadPropsMap.set(type, pendingProps),
16630
- styles$257 ||
16665
+ styles$259 ||
16631
16666
  preloadStylesheet(
16632
16667
  JSCompiler_inline_result,
16633
16668
  type,
16634
16669
  pendingProps,
16635
- resource$258.state
16670
+ resource$260.state
16636
16671
  )));
16637
16672
  if (currentProps && null === currentResource)
16638
16673
  throw Error(formatProdErrorMessage(528, ""));
16639
- return resource$258;
16674
+ return resource$260;
16640
16675
  }
16641
16676
  if (currentProps && null !== currentResource)
16642
16677
  throw Error(formatProdErrorMessage(529, ""));
@@ -16733,37 +16768,37 @@ function acquireResource(hoistableRoot, resource, props) {
16733
16768
  return (resource.instance = instance);
16734
16769
  case "stylesheet":
16735
16770
  styleProps = getStyleKey(props.href);
16736
- var instance$263 = hoistableRoot.querySelector(
16771
+ var instance$265 = hoistableRoot.querySelector(
16737
16772
  getStylesheetSelectorFromKey(styleProps)
16738
16773
  );
16739
- if (instance$263)
16774
+ if (instance$265)
16740
16775
  return (
16741
16776
  (resource.state.loading |= 4),
16742
- (resource.instance = instance$263),
16743
- markNodeAsHoistable(instance$263),
16744
- instance$263
16777
+ (resource.instance = instance$265),
16778
+ markNodeAsHoistable(instance$265),
16779
+ instance$265
16745
16780
  );
16746
16781
  instance = stylesheetPropsFromRawProps(props);
16747
16782
  (styleProps = preloadPropsMap.get(styleProps)) &&
16748
16783
  adoptPreloadPropsForStylesheet(instance, styleProps);
16749
- instance$263 = (
16784
+ instance$265 = (
16750
16785
  hoistableRoot.ownerDocument || hoistableRoot
16751
16786
  ).createElement("link");
16752
- markNodeAsHoistable(instance$263);
16753
- var linkInstance = instance$263;
16787
+ markNodeAsHoistable(instance$265);
16788
+ var linkInstance = instance$265;
16754
16789
  linkInstance._p = new Promise(function (resolve, reject) {
16755
16790
  linkInstance.onload = resolve;
16756
16791
  linkInstance.onerror = reject;
16757
16792
  });
16758
- setInitialProperties(instance$263, "link", instance);
16793
+ setInitialProperties(instance$265, "link", instance);
16759
16794
  resource.state.loading |= 4;
16760
- insertStylesheet(instance$263, props.precedence, hoistableRoot);
16761
- return (resource.instance = instance$263);
16795
+ insertStylesheet(instance$265, props.precedence, hoistableRoot);
16796
+ return (resource.instance = instance$265);
16762
16797
  case "script":
16763
- instance$263 = getScriptKey(props.src);
16798
+ instance$265 = getScriptKey(props.src);
16764
16799
  if (
16765
16800
  (styleProps = hoistableRoot.querySelector(
16766
- getScriptSelectorFromKey(instance$263)
16801
+ getScriptSelectorFromKey(instance$265)
16767
16802
  ))
16768
16803
  )
16769
16804
  return (
@@ -16772,7 +16807,7 @@ function acquireResource(hoistableRoot, resource, props) {
16772
16807
  styleProps
16773
16808
  );
16774
16809
  instance = props;
16775
- if ((styleProps = preloadPropsMap.get(instance$263)))
16810
+ if ((styleProps = preloadPropsMap.get(instance$265)))
16776
16811
  (instance = assign({}, props)),
16777
16812
  adoptPreloadPropsForScript(instance, styleProps);
16778
16813
  hoistableRoot = hoistableRoot.ownerDocument || hoistableRoot;
@@ -17907,16 +17942,16 @@ ReactDOMHydrationRoot.prototype.unstable_scheduleHydration = function (target) {
17907
17942
  0 === i && attemptExplicitHydrationTarget(target);
17908
17943
  }
17909
17944
  };
17910
- var isomorphicReactPackageVersion$jscomp$inline_2060 = React.version;
17945
+ var isomorphicReactPackageVersion$jscomp$inline_2056 = React.version;
17911
17946
  if (
17912
- "19.3.0-canary-c9ddee7e-20251031" !==
17913
- isomorphicReactPackageVersion$jscomp$inline_2060
17947
+ "19.3.0-canary-561ee24d-20251101" !==
17948
+ isomorphicReactPackageVersion$jscomp$inline_2056
17914
17949
  )
17915
17950
  throw Error(
17916
17951
  formatProdErrorMessage(
17917
17952
  527,
17918
- isomorphicReactPackageVersion$jscomp$inline_2060,
17919
- "19.3.0-canary-c9ddee7e-20251031"
17953
+ isomorphicReactPackageVersion$jscomp$inline_2056,
17954
+ "19.3.0-canary-561ee24d-20251101"
17920
17955
  )
17921
17956
  );
17922
17957
  ReactDOMSharedInternals.findDOMNode = function (componentOrElement) {
@@ -17936,24 +17971,24 @@ ReactDOMSharedInternals.findDOMNode = function (componentOrElement) {
17936
17971
  null === componentOrElement ? null : componentOrElement.stateNode;
17937
17972
  return componentOrElement;
17938
17973
  };
17939
- var internals$jscomp$inline_2647 = {
17974
+ var internals$jscomp$inline_2643 = {
17940
17975
  bundleType: 0,
17941
- version: "19.3.0-canary-c9ddee7e-20251031",
17976
+ version: "19.3.0-canary-561ee24d-20251101",
17942
17977
  rendererPackageName: "react-dom",
17943
17978
  currentDispatcherRef: ReactSharedInternals,
17944
- reconcilerVersion: "19.3.0-canary-c9ddee7e-20251031"
17979
+ reconcilerVersion: "19.3.0-canary-561ee24d-20251101"
17945
17980
  };
17946
17981
  if ("undefined" !== typeof __REACT_DEVTOOLS_GLOBAL_HOOK__) {
17947
- var hook$jscomp$inline_2648 = __REACT_DEVTOOLS_GLOBAL_HOOK__;
17982
+ var hook$jscomp$inline_2644 = __REACT_DEVTOOLS_GLOBAL_HOOK__;
17948
17983
  if (
17949
- !hook$jscomp$inline_2648.isDisabled &&
17950
- hook$jscomp$inline_2648.supportsFiber
17984
+ !hook$jscomp$inline_2644.isDisabled &&
17985
+ hook$jscomp$inline_2644.supportsFiber
17951
17986
  )
17952
17987
  try {
17953
- (rendererID = hook$jscomp$inline_2648.inject(
17954
- internals$jscomp$inline_2647
17988
+ (rendererID = hook$jscomp$inline_2644.inject(
17989
+ internals$jscomp$inline_2643
17955
17990
  )),
17956
- (injectedHook = hook$jscomp$inline_2648);
17991
+ (injectedHook = hook$jscomp$inline_2644);
17957
17992
  } catch (err) {}
17958
17993
  }
17959
17994
  exports.createRoot = function (container, options) {
@@ -18039,4 +18074,4 @@ exports.hydrateRoot = function (container, initialChildren, options) {
18039
18074
  listenToAllSupportedEvents(container);
18040
18075
  return new ReactDOMHydrationRoot(initialChildren);
18041
18076
  };
18042
- exports.version = "19.3.0-canary-c9ddee7e-20251031";
18077
+ exports.version = "19.3.0-canary-561ee24d-20251101";