react-dom 19.2.0-canary-2805f0ed-20250903 → 19.2.0-canary-3302d1f7-20250903

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.
@@ -1054,11 +1054,12 @@
1054
1054
  case 32768:
1055
1055
  case 65536:
1056
1056
  case 131072:
1057
+ return lanes & 261888;
1057
1058
  case 262144:
1058
1059
  case 524288:
1059
1060
  case 1048576:
1060
1061
  case 2097152:
1061
- return lanes & 4194048;
1062
+ return lanes & 3932160;
1062
1063
  case 4194304:
1063
1064
  case 8388608:
1064
1065
  case 16777216:
@@ -1178,12 +1179,6 @@
1178
1179
  );
1179
1180
  }
1180
1181
  }
1181
- function claimNextTransitionLane() {
1182
- var lane = nextTransitionLane;
1183
- nextTransitionLane <<= 1;
1184
- 0 === (nextTransitionLane & 4194048) && (nextTransitionLane = 256);
1185
- return lane;
1186
- }
1187
1182
  function claimNextRetryLane() {
1188
1183
  var lane = nextRetryLane;
1189
1184
  nextRetryLane <<= 1;
@@ -1257,7 +1252,7 @@
1257
1252
  root.entanglements[spawnedLaneIndex] =
1258
1253
  root.entanglements[spawnedLaneIndex] |
1259
1254
  1073741824 |
1260
- (entangledLanes & 4194090);
1255
+ (entangledLanes & 261930);
1261
1256
  }
1262
1257
  function markRootEntangled(root, entangledLanes) {
1263
1258
  var rootEntangledLanes = (root.entangledLanes |= entangledLanes);
@@ -7920,7 +7915,11 @@
7920
7915
  );
7921
7916
  }
7922
7917
  function mountDeferredValueImpl(hook, value, initialValue) {
7923
- if (void 0 === initialValue || 0 !== (renderLanes & 1073741824))
7918
+ if (
7919
+ void 0 === initialValue ||
7920
+ (0 !== (renderLanes & 1073741824) &&
7921
+ 0 === (workInProgressRootRenderLanes & 261930))
7922
+ )
7924
7923
  return (hook.memoizedState = value);
7925
7924
  hook.memoizedState = initialValue;
7926
7925
  hook = requestDeferredLane();
@@ -7936,7 +7935,11 @@
7936
7935
  objectIs(hook, prevValue) || (didReceiveUpdate = !0),
7937
7936
  hook
7938
7937
  );
7939
- if (0 === (renderLanes & 42) || 0 !== (renderLanes & 1073741824))
7938
+ if (
7939
+ 0 === (renderLanes & 42) ||
7940
+ (0 !== (renderLanes & 1073741824) &&
7941
+ 0 === (workInProgressRootRenderLanes & 261930))
7942
+ )
7940
7943
  return (didReceiveUpdate = !0), (hook.memoizedState = value);
7941
7944
  hook = requestDeferredLane();
7942
7945
  currentlyRenderingFiber.lanes |= hook;
@@ -9895,24 +9898,24 @@
9895
9898
  return current;
9896
9899
  }
9897
9900
  function updateSuspenseComponent(current, workInProgress, renderLanes) {
9898
- var JSCompiler_object_inline_digest_2532;
9899
- var JSCompiler_object_inline_stack_2533 = workInProgress.pendingProps;
9901
+ var JSCompiler_object_inline_digest_2537;
9902
+ var JSCompiler_object_inline_stack_2538 = workInProgress.pendingProps;
9900
9903
  shouldSuspendImpl(workInProgress) && (workInProgress.flags |= 128);
9901
- var JSCompiler_object_inline_message_2531 = !1;
9904
+ var JSCompiler_object_inline_message_2536 = !1;
9902
9905
  var didSuspend = 0 !== (workInProgress.flags & 128);
9903
- (JSCompiler_object_inline_digest_2532 = didSuspend) ||
9904
- (JSCompiler_object_inline_digest_2532 =
9906
+ (JSCompiler_object_inline_digest_2537 = didSuspend) ||
9907
+ (JSCompiler_object_inline_digest_2537 =
9905
9908
  null !== current && null === current.memoizedState
9906
9909
  ? !1
9907
9910
  : 0 !== (suspenseStackCursor.current & ForceSuspenseFallback));
9908
- JSCompiler_object_inline_digest_2532 &&
9909
- ((JSCompiler_object_inline_message_2531 = !0),
9911
+ JSCompiler_object_inline_digest_2537 &&
9912
+ ((JSCompiler_object_inline_message_2536 = !0),
9910
9913
  (workInProgress.flags &= -129));
9911
- JSCompiler_object_inline_digest_2532 = 0 !== (workInProgress.flags & 32);
9914
+ JSCompiler_object_inline_digest_2537 = 0 !== (workInProgress.flags & 32);
9912
9915
  workInProgress.flags &= -33;
9913
9916
  if (null === current) {
9914
9917
  if (isHydrating) {
9915
- JSCompiler_object_inline_message_2531
9918
+ JSCompiler_object_inline_message_2536
9916
9919
  ? pushPrimaryTreeSuspenseHandler(workInProgress)
9917
9920
  : reuseSuspenseHandlerOnStack(workInProgress);
9918
9921
  (current = nextHydratableInstance)
@@ -9925,18 +9928,18 @@
9925
9928
  ? renderLanes
9926
9929
  : null),
9927
9930
  null !== renderLanes &&
9928
- ((JSCompiler_object_inline_digest_2532 = {
9931
+ ((JSCompiler_object_inline_digest_2537 = {
9929
9932
  dehydrated: renderLanes,
9930
9933
  treeContext: getSuspendedTreeContext(),
9931
9934
  retryLane: 536870912,
9932
9935
  hydrationErrors: null
9933
9936
  }),
9934
9937
  (workInProgress.memoizedState =
9935
- JSCompiler_object_inline_digest_2532),
9936
- (JSCompiler_object_inline_digest_2532 =
9938
+ JSCompiler_object_inline_digest_2537),
9939
+ (JSCompiler_object_inline_digest_2537 =
9937
9940
  createFiberFromDehydratedFragment(renderLanes)),
9938
- (JSCompiler_object_inline_digest_2532.return = workInProgress),
9939
- (workInProgress.child = JSCompiler_object_inline_digest_2532),
9941
+ (JSCompiler_object_inline_digest_2537.return = workInProgress),
9942
+ (workInProgress.child = JSCompiler_object_inline_digest_2537),
9940
9943
  (hydrationParentFiber = workInProgress),
9941
9944
  (nextHydratableInstance = null)))
9942
9945
  : (renderLanes = null);
@@ -9950,39 +9953,39 @@
9950
9953
  : (workInProgress.lanes = 536870912);
9951
9954
  return null;
9952
9955
  }
9953
- var nextPrimaryChildren = JSCompiler_object_inline_stack_2533.children;
9954
- JSCompiler_object_inline_stack_2533 =
9955
- JSCompiler_object_inline_stack_2533.fallback;
9956
- if (JSCompiler_object_inline_message_2531) {
9956
+ var nextPrimaryChildren = JSCompiler_object_inline_stack_2538.children;
9957
+ JSCompiler_object_inline_stack_2538 =
9958
+ JSCompiler_object_inline_stack_2538.fallback;
9959
+ if (JSCompiler_object_inline_message_2536) {
9957
9960
  reuseSuspenseHandlerOnStack(workInProgress);
9958
9961
  var mode = workInProgress.mode;
9959
9962
  nextPrimaryChildren = mountWorkInProgressOffscreenFiber(
9960
9963
  { mode: "hidden", children: nextPrimaryChildren },
9961
9964
  mode
9962
9965
  );
9963
- JSCompiler_object_inline_stack_2533 = createFiberFromFragment(
9964
- JSCompiler_object_inline_stack_2533,
9966
+ JSCompiler_object_inline_stack_2538 = createFiberFromFragment(
9967
+ JSCompiler_object_inline_stack_2538,
9965
9968
  mode,
9966
9969
  renderLanes,
9967
9970
  null
9968
9971
  );
9969
9972
  nextPrimaryChildren.return = workInProgress;
9970
- JSCompiler_object_inline_stack_2533.return = workInProgress;
9971
- nextPrimaryChildren.sibling = JSCompiler_object_inline_stack_2533;
9973
+ JSCompiler_object_inline_stack_2538.return = workInProgress;
9974
+ nextPrimaryChildren.sibling = JSCompiler_object_inline_stack_2538;
9972
9975
  workInProgress.child = nextPrimaryChildren;
9973
- JSCompiler_object_inline_stack_2533 = workInProgress.child;
9974
- JSCompiler_object_inline_stack_2533.memoizedState =
9976
+ JSCompiler_object_inline_stack_2538 = workInProgress.child;
9977
+ JSCompiler_object_inline_stack_2538.memoizedState =
9975
9978
  mountSuspenseOffscreenState(renderLanes);
9976
- JSCompiler_object_inline_stack_2533.childLanes =
9979
+ JSCompiler_object_inline_stack_2538.childLanes =
9977
9980
  getRemainingWorkInPrimaryTree(
9978
9981
  current,
9979
- JSCompiler_object_inline_digest_2532,
9982
+ JSCompiler_object_inline_digest_2537,
9980
9983
  renderLanes
9981
9984
  );
9982
9985
  workInProgress.memoizedState = SUSPENDED_MARKER;
9983
9986
  return bailoutOffscreenComponent(
9984
9987
  null,
9985
- JSCompiler_object_inline_stack_2533
9988
+ JSCompiler_object_inline_stack_2538
9986
9989
  );
9987
9990
  }
9988
9991
  pushPrimaryTreeSuspenseHandler(workInProgress);
@@ -9993,8 +9996,8 @@
9993
9996
  }
9994
9997
  var prevState = current.memoizedState;
9995
9998
  if (null !== prevState) {
9996
- var JSCompiler_object_inline_componentStack_2534 = prevState.dehydrated;
9997
- if (null !== JSCompiler_object_inline_componentStack_2534) {
9999
+ var JSCompiler_object_inline_componentStack_2539 = prevState.dehydrated;
10000
+ if (null !== JSCompiler_object_inline_componentStack_2539) {
9998
10001
  if (didSuspend)
9999
10002
  workInProgress.flags & 256
10000
10003
  ? (pushPrimaryTreeSuspenseHandler(workInProgress),
@@ -10011,13 +10014,13 @@
10011
10014
  (workInProgress = null))
10012
10015
  : (reuseSuspenseHandlerOnStack(workInProgress),
10013
10016
  (nextPrimaryChildren =
10014
- JSCompiler_object_inline_stack_2533.fallback),
10017
+ JSCompiler_object_inline_stack_2538.fallback),
10015
10018
  (mode = workInProgress.mode),
10016
- (JSCompiler_object_inline_stack_2533 =
10019
+ (JSCompiler_object_inline_stack_2538 =
10017
10020
  mountWorkInProgressOffscreenFiber(
10018
10021
  {
10019
10022
  mode: "visible",
10020
- children: JSCompiler_object_inline_stack_2533.children
10023
+ children: JSCompiler_object_inline_stack_2538.children
10021
10024
  },
10022
10025
  mode
10023
10026
  )),
@@ -10028,74 +10031,74 @@
10028
10031
  null
10029
10032
  )),
10030
10033
  (nextPrimaryChildren.flags |= 2),
10031
- (JSCompiler_object_inline_stack_2533.return = workInProgress),
10034
+ (JSCompiler_object_inline_stack_2538.return = workInProgress),
10032
10035
  (nextPrimaryChildren.return = workInProgress),
10033
- (JSCompiler_object_inline_stack_2533.sibling =
10036
+ (JSCompiler_object_inline_stack_2538.sibling =
10034
10037
  nextPrimaryChildren),
10035
- (workInProgress.child = JSCompiler_object_inline_stack_2533),
10038
+ (workInProgress.child = JSCompiler_object_inline_stack_2538),
10036
10039
  reconcileChildFibers(
10037
10040
  workInProgress,
10038
10041
  current.child,
10039
10042
  null,
10040
10043
  renderLanes
10041
10044
  ),
10042
- (JSCompiler_object_inline_stack_2533 = workInProgress.child),
10043
- (JSCompiler_object_inline_stack_2533.memoizedState =
10045
+ (JSCompiler_object_inline_stack_2538 = workInProgress.child),
10046
+ (JSCompiler_object_inline_stack_2538.memoizedState =
10044
10047
  mountSuspenseOffscreenState(renderLanes)),
10045
- (JSCompiler_object_inline_stack_2533.childLanes =
10048
+ (JSCompiler_object_inline_stack_2538.childLanes =
10046
10049
  getRemainingWorkInPrimaryTree(
10047
10050
  current,
10048
- JSCompiler_object_inline_digest_2532,
10051
+ JSCompiler_object_inline_digest_2537,
10049
10052
  renderLanes
10050
10053
  )),
10051
10054
  (workInProgress.memoizedState = SUSPENDED_MARKER),
10052
10055
  (workInProgress = bailoutOffscreenComponent(
10053
10056
  null,
10054
- JSCompiler_object_inline_stack_2533
10057
+ JSCompiler_object_inline_stack_2538
10055
10058
  )));
10056
10059
  else if (
10057
10060
  (pushPrimaryTreeSuspenseHandler(workInProgress),
10058
10061
  warnIfHydrating(),
10059
10062
  isSuspenseInstanceFallback(
10060
- JSCompiler_object_inline_componentStack_2534
10063
+ JSCompiler_object_inline_componentStack_2539
10061
10064
  ))
10062
10065
  ) {
10063
- JSCompiler_object_inline_digest_2532 =
10064
- JSCompiler_object_inline_componentStack_2534.nextSibling &&
10065
- JSCompiler_object_inline_componentStack_2534.nextSibling.dataset;
10066
- if (JSCompiler_object_inline_digest_2532) {
10067
- nextPrimaryChildren = JSCompiler_object_inline_digest_2532.dgst;
10068
- var message = JSCompiler_object_inline_digest_2532.msg;
10069
- mode = JSCompiler_object_inline_digest_2532.stck;
10070
- var componentStack = JSCompiler_object_inline_digest_2532.cstck;
10066
+ JSCompiler_object_inline_digest_2537 =
10067
+ JSCompiler_object_inline_componentStack_2539.nextSibling &&
10068
+ JSCompiler_object_inline_componentStack_2539.nextSibling.dataset;
10069
+ if (JSCompiler_object_inline_digest_2537) {
10070
+ nextPrimaryChildren = JSCompiler_object_inline_digest_2537.dgst;
10071
+ var message = JSCompiler_object_inline_digest_2537.msg;
10072
+ mode = JSCompiler_object_inline_digest_2537.stck;
10073
+ var componentStack = JSCompiler_object_inline_digest_2537.cstck;
10071
10074
  }
10072
- JSCompiler_object_inline_message_2531 = message;
10073
- JSCompiler_object_inline_digest_2532 = nextPrimaryChildren;
10074
- JSCompiler_object_inline_stack_2533 = mode;
10075
- JSCompiler_object_inline_componentStack_2534 = componentStack;
10076
- nextPrimaryChildren = JSCompiler_object_inline_message_2531;
10077
- mode = JSCompiler_object_inline_componentStack_2534;
10075
+ JSCompiler_object_inline_message_2536 = message;
10076
+ JSCompiler_object_inline_digest_2537 = nextPrimaryChildren;
10077
+ JSCompiler_object_inline_stack_2538 = mode;
10078
+ JSCompiler_object_inline_componentStack_2539 = componentStack;
10079
+ nextPrimaryChildren = JSCompiler_object_inline_message_2536;
10080
+ mode = JSCompiler_object_inline_componentStack_2539;
10078
10081
  nextPrimaryChildren = nextPrimaryChildren
10079
10082
  ? Error(nextPrimaryChildren)
10080
10083
  : Error(
10081
10084
  "The server could not finish this Suspense boundary, likely due to an error during server rendering. Switched to client rendering."
10082
10085
  );
10083
10086
  nextPrimaryChildren.stack =
10084
- JSCompiler_object_inline_stack_2533 || "";
10085
- nextPrimaryChildren.digest = JSCompiler_object_inline_digest_2532;
10086
- JSCompiler_object_inline_digest_2532 =
10087
+ JSCompiler_object_inline_stack_2538 || "";
10088
+ nextPrimaryChildren.digest = JSCompiler_object_inline_digest_2537;
10089
+ JSCompiler_object_inline_digest_2537 =
10087
10090
  void 0 === mode ? null : mode;
10088
- JSCompiler_object_inline_stack_2533 = {
10091
+ JSCompiler_object_inline_stack_2538 = {
10089
10092
  value: nextPrimaryChildren,
10090
10093
  source: null,
10091
- stack: JSCompiler_object_inline_digest_2532
10094
+ stack: JSCompiler_object_inline_digest_2537
10092
10095
  };
10093
- "string" === typeof JSCompiler_object_inline_digest_2532 &&
10096
+ "string" === typeof JSCompiler_object_inline_digest_2537 &&
10094
10097
  CapturedStacks.set(
10095
10098
  nextPrimaryChildren,
10096
- JSCompiler_object_inline_stack_2533
10099
+ JSCompiler_object_inline_stack_2538
10097
10100
  );
10098
- queueHydrationError(JSCompiler_object_inline_stack_2533);
10101
+ queueHydrationError(JSCompiler_object_inline_stack_2538);
10099
10102
  workInProgress = retrySuspenseComponentWithoutHydrating(
10100
10103
  current,
10101
10104
  workInProgress,
@@ -10109,35 +10112,35 @@
10109
10112
  renderLanes,
10110
10113
  !1
10111
10114
  ),
10112
- (JSCompiler_object_inline_digest_2532 =
10115
+ (JSCompiler_object_inline_digest_2537 =
10113
10116
  0 !== (renderLanes & current.childLanes)),
10114
- didReceiveUpdate || JSCompiler_object_inline_digest_2532)
10117
+ didReceiveUpdate || JSCompiler_object_inline_digest_2537)
10115
10118
  ) {
10116
- JSCompiler_object_inline_digest_2532 = workInProgressRoot;
10119
+ JSCompiler_object_inline_digest_2537 = workInProgressRoot;
10117
10120
  if (
10118
- null !== JSCompiler_object_inline_digest_2532 &&
10119
- ((JSCompiler_object_inline_stack_2533 = getBumpedLaneForHydration(
10120
- JSCompiler_object_inline_digest_2532,
10121
+ null !== JSCompiler_object_inline_digest_2537 &&
10122
+ ((JSCompiler_object_inline_stack_2538 = getBumpedLaneForHydration(
10123
+ JSCompiler_object_inline_digest_2537,
10121
10124
  renderLanes
10122
10125
  )),
10123
- 0 !== JSCompiler_object_inline_stack_2533 &&
10124
- JSCompiler_object_inline_stack_2533 !== prevState.retryLane)
10126
+ 0 !== JSCompiler_object_inline_stack_2538 &&
10127
+ JSCompiler_object_inline_stack_2538 !== prevState.retryLane)
10125
10128
  )
10126
10129
  throw (
10127
- ((prevState.retryLane = JSCompiler_object_inline_stack_2533),
10130
+ ((prevState.retryLane = JSCompiler_object_inline_stack_2538),
10128
10131
  enqueueConcurrentRenderForLane(
10129
10132
  current,
10130
- JSCompiler_object_inline_stack_2533
10133
+ JSCompiler_object_inline_stack_2538
10131
10134
  ),
10132
10135
  scheduleUpdateOnFiber(
10133
- JSCompiler_object_inline_digest_2532,
10136
+ JSCompiler_object_inline_digest_2537,
10134
10137
  current,
10135
- JSCompiler_object_inline_stack_2533
10138
+ JSCompiler_object_inline_stack_2538
10136
10139
  ),
10137
10140
  SelectiveHydrationException)
10138
10141
  );
10139
10142
  isSuspenseInstancePending(
10140
- JSCompiler_object_inline_componentStack_2534
10143
+ JSCompiler_object_inline_componentStack_2539
10141
10144
  ) || renderDidSuspendDelayIfPossible();
10142
10145
  workInProgress = retrySuspenseComponentWithoutHydrating(
10143
10146
  current,
@@ -10146,14 +10149,14 @@
10146
10149
  );
10147
10150
  } else
10148
10151
  isSuspenseInstancePending(
10149
- JSCompiler_object_inline_componentStack_2534
10152
+ JSCompiler_object_inline_componentStack_2539
10150
10153
  )
10151
10154
  ? ((workInProgress.flags |= 192),
10152
10155
  (workInProgress.child = current.child),
10153
10156
  (workInProgress = null))
10154
10157
  : ((current = prevState.treeContext),
10155
10158
  (nextHydratableInstance = getNextHydratable(
10156
- JSCompiler_object_inline_componentStack_2534.nextSibling
10159
+ JSCompiler_object_inline_componentStack_2539.nextSibling
10157
10160
  )),
10158
10161
  (hydrationParentFiber = workInProgress),
10159
10162
  (isHydrating = !0),
@@ -10165,32 +10168,32 @@
10165
10168
  restoreSuspendedTreeContext(workInProgress, current),
10166
10169
  (workInProgress = mountSuspensePrimaryChildren(
10167
10170
  workInProgress,
10168
- JSCompiler_object_inline_stack_2533.children
10171
+ JSCompiler_object_inline_stack_2538.children
10169
10172
  )),
10170
10173
  (workInProgress.flags |= 4096));
10171
10174
  return workInProgress;
10172
10175
  }
10173
10176
  }
10174
- if (JSCompiler_object_inline_message_2531)
10177
+ if (JSCompiler_object_inline_message_2536)
10175
10178
  return (
10176
10179
  reuseSuspenseHandlerOnStack(workInProgress),
10177
- (nextPrimaryChildren = JSCompiler_object_inline_stack_2533.fallback),
10180
+ (nextPrimaryChildren = JSCompiler_object_inline_stack_2538.fallback),
10178
10181
  (mode = workInProgress.mode),
10179
10182
  (componentStack = current.child),
10180
- (JSCompiler_object_inline_componentStack_2534 =
10183
+ (JSCompiler_object_inline_componentStack_2539 =
10181
10184
  componentStack.sibling),
10182
- (JSCompiler_object_inline_stack_2533 = createWorkInProgress(
10185
+ (JSCompiler_object_inline_stack_2538 = createWorkInProgress(
10183
10186
  componentStack,
10184
10187
  {
10185
10188
  mode: "hidden",
10186
- children: JSCompiler_object_inline_stack_2533.children
10189
+ children: JSCompiler_object_inline_stack_2538.children
10187
10190
  }
10188
10191
  )),
10189
- (JSCompiler_object_inline_stack_2533.subtreeFlags =
10192
+ (JSCompiler_object_inline_stack_2538.subtreeFlags =
10190
10193
  componentStack.subtreeFlags & 65011712),
10191
- null !== JSCompiler_object_inline_componentStack_2534
10194
+ null !== JSCompiler_object_inline_componentStack_2539
10192
10195
  ? (nextPrimaryChildren = createWorkInProgress(
10193
- JSCompiler_object_inline_componentStack_2534,
10196
+ JSCompiler_object_inline_componentStack_2539,
10194
10197
  nextPrimaryChildren
10195
10198
  ))
10196
10199
  : ((nextPrimaryChildren = createFiberFromFragment(
@@ -10201,11 +10204,11 @@
10201
10204
  )),
10202
10205
  (nextPrimaryChildren.flags |= 2)),
10203
10206
  (nextPrimaryChildren.return = workInProgress),
10204
- (JSCompiler_object_inline_stack_2533.return = workInProgress),
10205
- (JSCompiler_object_inline_stack_2533.sibling = nextPrimaryChildren),
10206
- (workInProgress.child = JSCompiler_object_inline_stack_2533),
10207
- bailoutOffscreenComponent(null, JSCompiler_object_inline_stack_2533),
10208
- (JSCompiler_object_inline_stack_2533 = workInProgress.child),
10207
+ (JSCompiler_object_inline_stack_2538.return = workInProgress),
10208
+ (JSCompiler_object_inline_stack_2538.sibling = nextPrimaryChildren),
10209
+ (workInProgress.child = JSCompiler_object_inline_stack_2538),
10210
+ bailoutOffscreenComponent(null, JSCompiler_object_inline_stack_2538),
10211
+ (JSCompiler_object_inline_stack_2538 = workInProgress.child),
10209
10212
  (nextPrimaryChildren = current.child.memoizedState),
10210
10213
  null === nextPrimaryChildren
10211
10214
  ? (nextPrimaryChildren = mountSuspenseOffscreenState(renderLanes))
@@ -10221,18 +10224,18 @@
10221
10224
  baseLanes: nextPrimaryChildren.baseLanes | renderLanes,
10222
10225
  cachePool: mode
10223
10226
  })),
10224
- (JSCompiler_object_inline_stack_2533.memoizedState =
10227
+ (JSCompiler_object_inline_stack_2538.memoizedState =
10225
10228
  nextPrimaryChildren),
10226
- (JSCompiler_object_inline_stack_2533.childLanes =
10229
+ (JSCompiler_object_inline_stack_2538.childLanes =
10227
10230
  getRemainingWorkInPrimaryTree(
10228
10231
  current,
10229
- JSCompiler_object_inline_digest_2532,
10232
+ JSCompiler_object_inline_digest_2537,
10230
10233
  renderLanes
10231
10234
  )),
10232
10235
  (workInProgress.memoizedState = SUSPENDED_MARKER),
10233
10236
  bailoutOffscreenComponent(
10234
10237
  current.child,
10235
- JSCompiler_object_inline_stack_2533
10238
+ JSCompiler_object_inline_stack_2538
10236
10239
  )
10237
10240
  );
10238
10241
  pushPrimaryTreeSuspenseHandler(workInProgress);
@@ -10240,16 +10243,16 @@
10240
10243
  current = renderLanes.sibling;
10241
10244
  renderLanes = createWorkInProgress(renderLanes, {
10242
10245
  mode: "visible",
10243
- children: JSCompiler_object_inline_stack_2533.children
10246
+ children: JSCompiler_object_inline_stack_2538.children
10244
10247
  });
10245
10248
  renderLanes.return = workInProgress;
10246
10249
  renderLanes.sibling = null;
10247
10250
  null !== current &&
10248
- ((JSCompiler_object_inline_digest_2532 = workInProgress.deletions),
10249
- null === JSCompiler_object_inline_digest_2532
10251
+ ((JSCompiler_object_inline_digest_2537 = workInProgress.deletions),
10252
+ null === JSCompiler_object_inline_digest_2537
10250
10253
  ? ((workInProgress.deletions = [current]),
10251
10254
  (workInProgress.flags |= 16))
10252
- : JSCompiler_object_inline_digest_2532.push(current));
10255
+ : JSCompiler_object_inline_digest_2537.push(current));
10253
10256
  workInProgress.child = renderLanes;
10254
10257
  workInProgress.memoizedState = null;
10255
10258
  return renderLanes;
@@ -14906,13 +14909,16 @@
14906
14909
  : resolveUpdatePriority();
14907
14910
  }
14908
14911
  function requestDeferredLane() {
14909
- 0 === workInProgressDeferredLane &&
14910
- (workInProgressDeferredLane =
14911
- 0 === (workInProgressRootRenderLanes & 536870912) || isHydrating
14912
- ? claimNextTransitionLane()
14913
- : 536870912);
14914
- var suspenseHandler = suspenseHandlerStackCursor.current;
14915
- null !== suspenseHandler && (suspenseHandler.flags |= 32);
14912
+ if (0 === workInProgressDeferredLane)
14913
+ if (0 === (workInProgressRootRenderLanes & 536870912) || isHydrating) {
14914
+ var lane = nextTransitionDeferredLane;
14915
+ nextTransitionDeferredLane <<= 1;
14916
+ 0 === (nextTransitionDeferredLane & 3932160) &&
14917
+ (nextTransitionDeferredLane = 262144);
14918
+ workInProgressDeferredLane = lane;
14919
+ } else workInProgressDeferredLane = 536870912;
14920
+ lane = suspenseHandlerStackCursor.current;
14921
+ null !== lane && (lane.flags |= 32);
14916
14922
  return workInProgressDeferredLane;
14917
14923
  }
14918
14924
  function scheduleUpdateOnFiber(root, fiber, lane) {
@@ -16264,7 +16270,7 @@
16264
16270
  0 !== (pendingEffectsLanes & 3) && flushPendingEffects();
16265
16271
  ensureRootIsScheduled(root);
16266
16272
  remainingLanes = root.pendingLanes;
16267
- 0 !== (lanes & 4194090) && 0 !== (remainingLanes & 42)
16273
+ 0 !== (lanes & 261930) && 0 !== (remainingLanes & 42)
16268
16274
  ? ((nestedUpdateScheduled = !0),
16269
16275
  root === rootWithNestedUpdates
16270
16276
  ? nestedUpdateCount++
@@ -16852,8 +16858,12 @@
16852
16858
  function requestTransitionLane() {
16853
16859
  if (0 === currentEventTransitionLane) {
16854
16860
  var actionScopeLane = currentEntangledLane;
16855
- currentEventTransitionLane =
16856
- 0 !== actionScopeLane ? actionScopeLane : claimNextTransitionLane();
16861
+ 0 === actionScopeLane &&
16862
+ ((actionScopeLane = nextTransitionUpdateLane),
16863
+ (nextTransitionUpdateLane <<= 1),
16864
+ 0 === (nextTransitionUpdateLane & 261888) &&
16865
+ (nextTransitionUpdateLane = 256));
16866
+ currentEventTransitionLane = actionScopeLane;
16857
16867
  }
16858
16868
  return currentEventTransitionLane;
16859
16869
  }
@@ -22047,7 +22057,8 @@
22047
22057
  clz32 = Math.clz32 ? Math.clz32 : clz32Fallback,
22048
22058
  log = Math.log,
22049
22059
  LN2 = Math.LN2,
22050
- nextTransitionLane = 256,
22060
+ nextTransitionUpdateLane = 256,
22061
+ nextTransitionDeferredLane = 262144,
22051
22062
  nextRetryLane = 4194304,
22052
22063
  DiscreteEventPriority = 2,
22053
22064
  ContinuousEventPriority = 8,
@@ -25566,11 +25577,11 @@
25566
25577
  };
25567
25578
  (function () {
25568
25579
  var isomorphicReactPackageVersion = React.version;
25569
- if ("19.2.0-canary-2805f0ed-20250903" !== isomorphicReactPackageVersion)
25580
+ if ("19.2.0-canary-3302d1f7-20250903" !== isomorphicReactPackageVersion)
25570
25581
  throw Error(
25571
25582
  'Incompatible React versions: The "react" and "react-dom" packages must have the exact same version. Instead got:\n - react: ' +
25572
25583
  (isomorphicReactPackageVersion +
25573
- "\n - react-dom: 19.2.0-canary-2805f0ed-20250903\nLearn more: https://react.dev/warnings/version-mismatch")
25584
+ "\n - react-dom: 19.2.0-canary-3302d1f7-20250903\nLearn more: https://react.dev/warnings/version-mismatch")
25574
25585
  );
25575
25586
  })();
25576
25587
  ("function" === typeof Map &&
@@ -25607,10 +25618,10 @@
25607
25618
  !(function () {
25608
25619
  var internals = {
25609
25620
  bundleType: 1,
25610
- version: "19.2.0-canary-2805f0ed-20250903",
25621
+ version: "19.2.0-canary-3302d1f7-20250903",
25611
25622
  rendererPackageName: "react-dom",
25612
25623
  currentDispatcherRef: ReactSharedInternals,
25613
- reconcilerVersion: "19.2.0-canary-2805f0ed-20250903"
25624
+ reconcilerVersion: "19.2.0-canary-3302d1f7-20250903"
25614
25625
  };
25615
25626
  internals.overrideHookState = overrideHookState;
25616
25627
  internals.overrideHookStateDeletePath = overrideHookStateDeletePath;
@@ -25748,7 +25759,7 @@
25748
25759
  listenToAllSupportedEvents(container);
25749
25760
  return new ReactDOMHydrationRoot(initialChildren);
25750
25761
  };
25751
- exports.version = "19.2.0-canary-2805f0ed-20250903";
25762
+ exports.version = "19.2.0-canary-3302d1f7-20250903";
25752
25763
  "undefined" !== typeof __REACT_DEVTOOLS_GLOBAL_HOOK__ &&
25753
25764
  "function" ===
25754
25765
  typeof __REACT_DEVTOOLS_GLOBAL_HOOK__.registerInternalModuleStop &&