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.
@@ -1062,11 +1062,12 @@
1062
1062
  case 32768:
1063
1063
  case 65536:
1064
1064
  case 131072:
1065
+ return lanes & 261888;
1065
1066
  case 262144:
1066
1067
  case 524288:
1067
1068
  case 1048576:
1068
1069
  case 2097152:
1069
- return lanes & 4194048;
1070
+ return lanes & 3932160;
1070
1071
  case 4194304:
1071
1072
  case 8388608:
1072
1073
  case 16777216:
@@ -1186,12 +1187,6 @@
1186
1187
  );
1187
1188
  }
1188
1189
  }
1189
- function claimNextTransitionLane() {
1190
- var lane = nextTransitionLane;
1191
- nextTransitionLane <<= 1;
1192
- 0 === (nextTransitionLane & 4194048) && (nextTransitionLane = 256);
1193
- return lane;
1194
- }
1195
1190
  function claimNextRetryLane() {
1196
1191
  var lane = nextRetryLane;
1197
1192
  nextRetryLane <<= 1;
@@ -1265,7 +1260,7 @@
1265
1260
  root.entanglements[spawnedLaneIndex] =
1266
1261
  root.entanglements[spawnedLaneIndex] |
1267
1262
  1073741824 |
1268
- (entangledLanes & 4194090);
1263
+ (entangledLanes & 261930);
1269
1264
  }
1270
1265
  function markRootEntangled(root, entangledLanes) {
1271
1266
  var rootEntangledLanes = (root.entangledLanes |= entangledLanes);
@@ -7928,7 +7923,11 @@
7928
7923
  );
7929
7924
  }
7930
7925
  function mountDeferredValueImpl(hook, value, initialValue) {
7931
- if (void 0 === initialValue || 0 !== (renderLanes & 1073741824))
7926
+ if (
7927
+ void 0 === initialValue ||
7928
+ (0 !== (renderLanes & 1073741824) &&
7929
+ 0 === (workInProgressRootRenderLanes & 261930))
7930
+ )
7932
7931
  return (hook.memoizedState = value);
7933
7932
  hook.memoizedState = initialValue;
7934
7933
  hook = requestDeferredLane();
@@ -7944,7 +7943,11 @@
7944
7943
  objectIs(hook, prevValue) || (didReceiveUpdate = !0),
7945
7944
  hook
7946
7945
  );
7947
- if (0 === (renderLanes & 42) || 0 !== (renderLanes & 1073741824))
7946
+ if (
7947
+ 0 === (renderLanes & 42) ||
7948
+ (0 !== (renderLanes & 1073741824) &&
7949
+ 0 === (workInProgressRootRenderLanes & 261930))
7950
+ )
7948
7951
  return (didReceiveUpdate = !0), (hook.memoizedState = value);
7949
7952
  hook = requestDeferredLane();
7950
7953
  currentlyRenderingFiber.lanes |= hook;
@@ -9903,24 +9906,24 @@
9903
9906
  return current;
9904
9907
  }
9905
9908
  function updateSuspenseComponent(current, workInProgress, renderLanes) {
9906
- var JSCompiler_object_inline_digest_2537;
9907
- var JSCompiler_object_inline_stack_2538 = workInProgress.pendingProps;
9909
+ var JSCompiler_object_inline_digest_2542;
9910
+ var JSCompiler_object_inline_stack_2543 = workInProgress.pendingProps;
9908
9911
  shouldSuspendImpl(workInProgress) && (workInProgress.flags |= 128);
9909
- var JSCompiler_object_inline_message_2536 = !1;
9912
+ var JSCompiler_object_inline_message_2541 = !1;
9910
9913
  var didSuspend = 0 !== (workInProgress.flags & 128);
9911
- (JSCompiler_object_inline_digest_2537 = didSuspend) ||
9912
- (JSCompiler_object_inline_digest_2537 =
9914
+ (JSCompiler_object_inline_digest_2542 = didSuspend) ||
9915
+ (JSCompiler_object_inline_digest_2542 =
9913
9916
  null !== current && null === current.memoizedState
9914
9917
  ? !1
9915
9918
  : 0 !== (suspenseStackCursor.current & ForceSuspenseFallback));
9916
- JSCompiler_object_inline_digest_2537 &&
9917
- ((JSCompiler_object_inline_message_2536 = !0),
9919
+ JSCompiler_object_inline_digest_2542 &&
9920
+ ((JSCompiler_object_inline_message_2541 = !0),
9918
9921
  (workInProgress.flags &= -129));
9919
- JSCompiler_object_inline_digest_2537 = 0 !== (workInProgress.flags & 32);
9922
+ JSCompiler_object_inline_digest_2542 = 0 !== (workInProgress.flags & 32);
9920
9923
  workInProgress.flags &= -33;
9921
9924
  if (null === current) {
9922
9925
  if (isHydrating) {
9923
- JSCompiler_object_inline_message_2536
9926
+ JSCompiler_object_inline_message_2541
9924
9927
  ? pushPrimaryTreeSuspenseHandler(workInProgress)
9925
9928
  : reuseSuspenseHandlerOnStack(workInProgress);
9926
9929
  (current = nextHydratableInstance)
@@ -9933,18 +9936,18 @@
9933
9936
  ? renderLanes
9934
9937
  : null),
9935
9938
  null !== renderLanes &&
9936
- ((JSCompiler_object_inline_digest_2537 = {
9939
+ ((JSCompiler_object_inline_digest_2542 = {
9937
9940
  dehydrated: renderLanes,
9938
9941
  treeContext: getSuspendedTreeContext(),
9939
9942
  retryLane: 536870912,
9940
9943
  hydrationErrors: null
9941
9944
  }),
9942
9945
  (workInProgress.memoizedState =
9943
- JSCompiler_object_inline_digest_2537),
9944
- (JSCompiler_object_inline_digest_2537 =
9946
+ JSCompiler_object_inline_digest_2542),
9947
+ (JSCompiler_object_inline_digest_2542 =
9945
9948
  createFiberFromDehydratedFragment(renderLanes)),
9946
- (JSCompiler_object_inline_digest_2537.return = workInProgress),
9947
- (workInProgress.child = JSCompiler_object_inline_digest_2537),
9949
+ (JSCompiler_object_inline_digest_2542.return = workInProgress),
9950
+ (workInProgress.child = JSCompiler_object_inline_digest_2542),
9948
9951
  (hydrationParentFiber = workInProgress),
9949
9952
  (nextHydratableInstance = null)))
9950
9953
  : (renderLanes = null);
@@ -9958,39 +9961,39 @@
9958
9961
  : (workInProgress.lanes = 536870912);
9959
9962
  return null;
9960
9963
  }
9961
- var nextPrimaryChildren = JSCompiler_object_inline_stack_2538.children;
9962
- JSCompiler_object_inline_stack_2538 =
9963
- JSCompiler_object_inline_stack_2538.fallback;
9964
- if (JSCompiler_object_inline_message_2536) {
9964
+ var nextPrimaryChildren = JSCompiler_object_inline_stack_2543.children;
9965
+ JSCompiler_object_inline_stack_2543 =
9966
+ JSCompiler_object_inline_stack_2543.fallback;
9967
+ if (JSCompiler_object_inline_message_2541) {
9965
9968
  reuseSuspenseHandlerOnStack(workInProgress);
9966
9969
  var mode = workInProgress.mode;
9967
9970
  nextPrimaryChildren = mountWorkInProgressOffscreenFiber(
9968
9971
  { mode: "hidden", children: nextPrimaryChildren },
9969
9972
  mode
9970
9973
  );
9971
- JSCompiler_object_inline_stack_2538 = createFiberFromFragment(
9972
- JSCompiler_object_inline_stack_2538,
9974
+ JSCompiler_object_inline_stack_2543 = createFiberFromFragment(
9975
+ JSCompiler_object_inline_stack_2543,
9973
9976
  mode,
9974
9977
  renderLanes,
9975
9978
  null
9976
9979
  );
9977
9980
  nextPrimaryChildren.return = workInProgress;
9978
- JSCompiler_object_inline_stack_2538.return = workInProgress;
9979
- nextPrimaryChildren.sibling = JSCompiler_object_inline_stack_2538;
9981
+ JSCompiler_object_inline_stack_2543.return = workInProgress;
9982
+ nextPrimaryChildren.sibling = JSCompiler_object_inline_stack_2543;
9980
9983
  workInProgress.child = nextPrimaryChildren;
9981
- JSCompiler_object_inline_stack_2538 = workInProgress.child;
9982
- JSCompiler_object_inline_stack_2538.memoizedState =
9984
+ JSCompiler_object_inline_stack_2543 = workInProgress.child;
9985
+ JSCompiler_object_inline_stack_2543.memoizedState =
9983
9986
  mountSuspenseOffscreenState(renderLanes);
9984
- JSCompiler_object_inline_stack_2538.childLanes =
9987
+ JSCompiler_object_inline_stack_2543.childLanes =
9985
9988
  getRemainingWorkInPrimaryTree(
9986
9989
  current,
9987
- JSCompiler_object_inline_digest_2537,
9990
+ JSCompiler_object_inline_digest_2542,
9988
9991
  renderLanes
9989
9992
  );
9990
9993
  workInProgress.memoizedState = SUSPENDED_MARKER;
9991
9994
  return bailoutOffscreenComponent(
9992
9995
  null,
9993
- JSCompiler_object_inline_stack_2538
9996
+ JSCompiler_object_inline_stack_2543
9994
9997
  );
9995
9998
  }
9996
9999
  pushPrimaryTreeSuspenseHandler(workInProgress);
@@ -10001,8 +10004,8 @@
10001
10004
  }
10002
10005
  var prevState = current.memoizedState;
10003
10006
  if (null !== prevState) {
10004
- var JSCompiler_object_inline_componentStack_2539 = prevState.dehydrated;
10005
- if (null !== JSCompiler_object_inline_componentStack_2539) {
10007
+ var JSCompiler_object_inline_componentStack_2544 = prevState.dehydrated;
10008
+ if (null !== JSCompiler_object_inline_componentStack_2544) {
10006
10009
  if (didSuspend)
10007
10010
  workInProgress.flags & 256
10008
10011
  ? (pushPrimaryTreeSuspenseHandler(workInProgress),
@@ -10019,13 +10022,13 @@
10019
10022
  (workInProgress = null))
10020
10023
  : (reuseSuspenseHandlerOnStack(workInProgress),
10021
10024
  (nextPrimaryChildren =
10022
- JSCompiler_object_inline_stack_2538.fallback),
10025
+ JSCompiler_object_inline_stack_2543.fallback),
10023
10026
  (mode = workInProgress.mode),
10024
- (JSCompiler_object_inline_stack_2538 =
10027
+ (JSCompiler_object_inline_stack_2543 =
10025
10028
  mountWorkInProgressOffscreenFiber(
10026
10029
  {
10027
10030
  mode: "visible",
10028
- children: JSCompiler_object_inline_stack_2538.children
10031
+ children: JSCompiler_object_inline_stack_2543.children
10029
10032
  },
10030
10033
  mode
10031
10034
  )),
@@ -10036,74 +10039,74 @@
10036
10039
  null
10037
10040
  )),
10038
10041
  (nextPrimaryChildren.flags |= 2),
10039
- (JSCompiler_object_inline_stack_2538.return = workInProgress),
10042
+ (JSCompiler_object_inline_stack_2543.return = workInProgress),
10040
10043
  (nextPrimaryChildren.return = workInProgress),
10041
- (JSCompiler_object_inline_stack_2538.sibling =
10044
+ (JSCompiler_object_inline_stack_2543.sibling =
10042
10045
  nextPrimaryChildren),
10043
- (workInProgress.child = JSCompiler_object_inline_stack_2538),
10046
+ (workInProgress.child = JSCompiler_object_inline_stack_2543),
10044
10047
  reconcileChildFibers(
10045
10048
  workInProgress,
10046
10049
  current.child,
10047
10050
  null,
10048
10051
  renderLanes
10049
10052
  ),
10050
- (JSCompiler_object_inline_stack_2538 = workInProgress.child),
10051
- (JSCompiler_object_inline_stack_2538.memoizedState =
10053
+ (JSCompiler_object_inline_stack_2543 = workInProgress.child),
10054
+ (JSCompiler_object_inline_stack_2543.memoizedState =
10052
10055
  mountSuspenseOffscreenState(renderLanes)),
10053
- (JSCompiler_object_inline_stack_2538.childLanes =
10056
+ (JSCompiler_object_inline_stack_2543.childLanes =
10054
10057
  getRemainingWorkInPrimaryTree(
10055
10058
  current,
10056
- JSCompiler_object_inline_digest_2537,
10059
+ JSCompiler_object_inline_digest_2542,
10057
10060
  renderLanes
10058
10061
  )),
10059
10062
  (workInProgress.memoizedState = SUSPENDED_MARKER),
10060
10063
  (workInProgress = bailoutOffscreenComponent(
10061
10064
  null,
10062
- JSCompiler_object_inline_stack_2538
10065
+ JSCompiler_object_inline_stack_2543
10063
10066
  )));
10064
10067
  else if (
10065
10068
  (pushPrimaryTreeSuspenseHandler(workInProgress),
10066
10069
  warnIfHydrating(),
10067
10070
  isSuspenseInstanceFallback(
10068
- JSCompiler_object_inline_componentStack_2539
10071
+ JSCompiler_object_inline_componentStack_2544
10069
10072
  ))
10070
10073
  ) {
10071
- JSCompiler_object_inline_digest_2537 =
10072
- JSCompiler_object_inline_componentStack_2539.nextSibling &&
10073
- JSCompiler_object_inline_componentStack_2539.nextSibling.dataset;
10074
- if (JSCompiler_object_inline_digest_2537) {
10075
- nextPrimaryChildren = JSCompiler_object_inline_digest_2537.dgst;
10076
- var message = JSCompiler_object_inline_digest_2537.msg;
10077
- mode = JSCompiler_object_inline_digest_2537.stck;
10078
- var componentStack = JSCompiler_object_inline_digest_2537.cstck;
10074
+ JSCompiler_object_inline_digest_2542 =
10075
+ JSCompiler_object_inline_componentStack_2544.nextSibling &&
10076
+ JSCompiler_object_inline_componentStack_2544.nextSibling.dataset;
10077
+ if (JSCompiler_object_inline_digest_2542) {
10078
+ nextPrimaryChildren = JSCompiler_object_inline_digest_2542.dgst;
10079
+ var message = JSCompiler_object_inline_digest_2542.msg;
10080
+ mode = JSCompiler_object_inline_digest_2542.stck;
10081
+ var componentStack = JSCompiler_object_inline_digest_2542.cstck;
10079
10082
  }
10080
- JSCompiler_object_inline_message_2536 = message;
10081
- JSCompiler_object_inline_digest_2537 = nextPrimaryChildren;
10082
- JSCompiler_object_inline_stack_2538 = mode;
10083
- JSCompiler_object_inline_componentStack_2539 = componentStack;
10084
- nextPrimaryChildren = JSCompiler_object_inline_message_2536;
10085
- mode = JSCompiler_object_inline_componentStack_2539;
10083
+ JSCompiler_object_inline_message_2541 = message;
10084
+ JSCompiler_object_inline_digest_2542 = nextPrimaryChildren;
10085
+ JSCompiler_object_inline_stack_2543 = mode;
10086
+ JSCompiler_object_inline_componentStack_2544 = componentStack;
10087
+ nextPrimaryChildren = JSCompiler_object_inline_message_2541;
10088
+ mode = JSCompiler_object_inline_componentStack_2544;
10086
10089
  nextPrimaryChildren = nextPrimaryChildren
10087
10090
  ? Error(nextPrimaryChildren)
10088
10091
  : Error(
10089
10092
  "The server could not finish this Suspense boundary, likely due to an error during server rendering. Switched to client rendering."
10090
10093
  );
10091
10094
  nextPrimaryChildren.stack =
10092
- JSCompiler_object_inline_stack_2538 || "";
10093
- nextPrimaryChildren.digest = JSCompiler_object_inline_digest_2537;
10094
- JSCompiler_object_inline_digest_2537 =
10095
+ JSCompiler_object_inline_stack_2543 || "";
10096
+ nextPrimaryChildren.digest = JSCompiler_object_inline_digest_2542;
10097
+ JSCompiler_object_inline_digest_2542 =
10095
10098
  void 0 === mode ? null : mode;
10096
- JSCompiler_object_inline_stack_2538 = {
10099
+ JSCompiler_object_inline_stack_2543 = {
10097
10100
  value: nextPrimaryChildren,
10098
10101
  source: null,
10099
- stack: JSCompiler_object_inline_digest_2537
10102
+ stack: JSCompiler_object_inline_digest_2542
10100
10103
  };
10101
- "string" === typeof JSCompiler_object_inline_digest_2537 &&
10104
+ "string" === typeof JSCompiler_object_inline_digest_2542 &&
10102
10105
  CapturedStacks.set(
10103
10106
  nextPrimaryChildren,
10104
- JSCompiler_object_inline_stack_2538
10107
+ JSCompiler_object_inline_stack_2543
10105
10108
  );
10106
- queueHydrationError(JSCompiler_object_inline_stack_2538);
10109
+ queueHydrationError(JSCompiler_object_inline_stack_2543);
10107
10110
  workInProgress = retrySuspenseComponentWithoutHydrating(
10108
10111
  current,
10109
10112
  workInProgress,
@@ -10117,35 +10120,35 @@
10117
10120
  renderLanes,
10118
10121
  !1
10119
10122
  ),
10120
- (JSCompiler_object_inline_digest_2537 =
10123
+ (JSCompiler_object_inline_digest_2542 =
10121
10124
  0 !== (renderLanes & current.childLanes)),
10122
- didReceiveUpdate || JSCompiler_object_inline_digest_2537)
10125
+ didReceiveUpdate || JSCompiler_object_inline_digest_2542)
10123
10126
  ) {
10124
- JSCompiler_object_inline_digest_2537 = workInProgressRoot;
10127
+ JSCompiler_object_inline_digest_2542 = workInProgressRoot;
10125
10128
  if (
10126
- null !== JSCompiler_object_inline_digest_2537 &&
10127
- ((JSCompiler_object_inline_stack_2538 = getBumpedLaneForHydration(
10128
- JSCompiler_object_inline_digest_2537,
10129
+ null !== JSCompiler_object_inline_digest_2542 &&
10130
+ ((JSCompiler_object_inline_stack_2543 = getBumpedLaneForHydration(
10131
+ JSCompiler_object_inline_digest_2542,
10129
10132
  renderLanes
10130
10133
  )),
10131
- 0 !== JSCompiler_object_inline_stack_2538 &&
10132
- JSCompiler_object_inline_stack_2538 !== prevState.retryLane)
10134
+ 0 !== JSCompiler_object_inline_stack_2543 &&
10135
+ JSCompiler_object_inline_stack_2543 !== prevState.retryLane)
10133
10136
  )
10134
10137
  throw (
10135
- ((prevState.retryLane = JSCompiler_object_inline_stack_2538),
10138
+ ((prevState.retryLane = JSCompiler_object_inline_stack_2543),
10136
10139
  enqueueConcurrentRenderForLane(
10137
10140
  current,
10138
- JSCompiler_object_inline_stack_2538
10141
+ JSCompiler_object_inline_stack_2543
10139
10142
  ),
10140
10143
  scheduleUpdateOnFiber(
10141
- JSCompiler_object_inline_digest_2537,
10144
+ JSCompiler_object_inline_digest_2542,
10142
10145
  current,
10143
- JSCompiler_object_inline_stack_2538
10146
+ JSCompiler_object_inline_stack_2543
10144
10147
  ),
10145
10148
  SelectiveHydrationException)
10146
10149
  );
10147
10150
  isSuspenseInstancePending(
10148
- JSCompiler_object_inline_componentStack_2539
10151
+ JSCompiler_object_inline_componentStack_2544
10149
10152
  ) || renderDidSuspendDelayIfPossible();
10150
10153
  workInProgress = retrySuspenseComponentWithoutHydrating(
10151
10154
  current,
@@ -10154,14 +10157,14 @@
10154
10157
  );
10155
10158
  } else
10156
10159
  isSuspenseInstancePending(
10157
- JSCompiler_object_inline_componentStack_2539
10160
+ JSCompiler_object_inline_componentStack_2544
10158
10161
  )
10159
10162
  ? ((workInProgress.flags |= 192),
10160
10163
  (workInProgress.child = current.child),
10161
10164
  (workInProgress = null))
10162
10165
  : ((current = prevState.treeContext),
10163
10166
  (nextHydratableInstance = getNextHydratable(
10164
- JSCompiler_object_inline_componentStack_2539.nextSibling
10167
+ JSCompiler_object_inline_componentStack_2544.nextSibling
10165
10168
  )),
10166
10169
  (hydrationParentFiber = workInProgress),
10167
10170
  (isHydrating = !0),
@@ -10173,32 +10176,32 @@
10173
10176
  restoreSuspendedTreeContext(workInProgress, current),
10174
10177
  (workInProgress = mountSuspensePrimaryChildren(
10175
10178
  workInProgress,
10176
- JSCompiler_object_inline_stack_2538.children
10179
+ JSCompiler_object_inline_stack_2543.children
10177
10180
  )),
10178
10181
  (workInProgress.flags |= 4096));
10179
10182
  return workInProgress;
10180
10183
  }
10181
10184
  }
10182
- if (JSCompiler_object_inline_message_2536)
10185
+ if (JSCompiler_object_inline_message_2541)
10183
10186
  return (
10184
10187
  reuseSuspenseHandlerOnStack(workInProgress),
10185
- (nextPrimaryChildren = JSCompiler_object_inline_stack_2538.fallback),
10188
+ (nextPrimaryChildren = JSCompiler_object_inline_stack_2543.fallback),
10186
10189
  (mode = workInProgress.mode),
10187
10190
  (componentStack = current.child),
10188
- (JSCompiler_object_inline_componentStack_2539 =
10191
+ (JSCompiler_object_inline_componentStack_2544 =
10189
10192
  componentStack.sibling),
10190
- (JSCompiler_object_inline_stack_2538 = createWorkInProgress(
10193
+ (JSCompiler_object_inline_stack_2543 = createWorkInProgress(
10191
10194
  componentStack,
10192
10195
  {
10193
10196
  mode: "hidden",
10194
- children: JSCompiler_object_inline_stack_2538.children
10197
+ children: JSCompiler_object_inline_stack_2543.children
10195
10198
  }
10196
10199
  )),
10197
- (JSCompiler_object_inline_stack_2538.subtreeFlags =
10200
+ (JSCompiler_object_inline_stack_2543.subtreeFlags =
10198
10201
  componentStack.subtreeFlags & 65011712),
10199
- null !== JSCompiler_object_inline_componentStack_2539
10202
+ null !== JSCompiler_object_inline_componentStack_2544
10200
10203
  ? (nextPrimaryChildren = createWorkInProgress(
10201
- JSCompiler_object_inline_componentStack_2539,
10204
+ JSCompiler_object_inline_componentStack_2544,
10202
10205
  nextPrimaryChildren
10203
10206
  ))
10204
10207
  : ((nextPrimaryChildren = createFiberFromFragment(
@@ -10209,11 +10212,11 @@
10209
10212
  )),
10210
10213
  (nextPrimaryChildren.flags |= 2)),
10211
10214
  (nextPrimaryChildren.return = workInProgress),
10212
- (JSCompiler_object_inline_stack_2538.return = workInProgress),
10213
- (JSCompiler_object_inline_stack_2538.sibling = nextPrimaryChildren),
10214
- (workInProgress.child = JSCompiler_object_inline_stack_2538),
10215
- bailoutOffscreenComponent(null, JSCompiler_object_inline_stack_2538),
10216
- (JSCompiler_object_inline_stack_2538 = workInProgress.child),
10215
+ (JSCompiler_object_inline_stack_2543.return = workInProgress),
10216
+ (JSCompiler_object_inline_stack_2543.sibling = nextPrimaryChildren),
10217
+ (workInProgress.child = JSCompiler_object_inline_stack_2543),
10218
+ bailoutOffscreenComponent(null, JSCompiler_object_inline_stack_2543),
10219
+ (JSCompiler_object_inline_stack_2543 = workInProgress.child),
10217
10220
  (nextPrimaryChildren = current.child.memoizedState),
10218
10221
  null === nextPrimaryChildren
10219
10222
  ? (nextPrimaryChildren = mountSuspenseOffscreenState(renderLanes))
@@ -10229,18 +10232,18 @@
10229
10232
  baseLanes: nextPrimaryChildren.baseLanes | renderLanes,
10230
10233
  cachePool: mode
10231
10234
  })),
10232
- (JSCompiler_object_inline_stack_2538.memoizedState =
10235
+ (JSCompiler_object_inline_stack_2543.memoizedState =
10233
10236
  nextPrimaryChildren),
10234
- (JSCompiler_object_inline_stack_2538.childLanes =
10237
+ (JSCompiler_object_inline_stack_2543.childLanes =
10235
10238
  getRemainingWorkInPrimaryTree(
10236
10239
  current,
10237
- JSCompiler_object_inline_digest_2537,
10240
+ JSCompiler_object_inline_digest_2542,
10238
10241
  renderLanes
10239
10242
  )),
10240
10243
  (workInProgress.memoizedState = SUSPENDED_MARKER),
10241
10244
  bailoutOffscreenComponent(
10242
10245
  current.child,
10243
- JSCompiler_object_inline_stack_2538
10246
+ JSCompiler_object_inline_stack_2543
10244
10247
  )
10245
10248
  );
10246
10249
  pushPrimaryTreeSuspenseHandler(workInProgress);
@@ -10248,16 +10251,16 @@
10248
10251
  current = renderLanes.sibling;
10249
10252
  renderLanes = createWorkInProgress(renderLanes, {
10250
10253
  mode: "visible",
10251
- children: JSCompiler_object_inline_stack_2538.children
10254
+ children: JSCompiler_object_inline_stack_2543.children
10252
10255
  });
10253
10256
  renderLanes.return = workInProgress;
10254
10257
  renderLanes.sibling = null;
10255
10258
  null !== current &&
10256
- ((JSCompiler_object_inline_digest_2537 = workInProgress.deletions),
10257
- null === JSCompiler_object_inline_digest_2537
10259
+ ((JSCompiler_object_inline_digest_2542 = workInProgress.deletions),
10260
+ null === JSCompiler_object_inline_digest_2542
10258
10261
  ? ((workInProgress.deletions = [current]),
10259
10262
  (workInProgress.flags |= 16))
10260
- : JSCompiler_object_inline_digest_2537.push(current));
10263
+ : JSCompiler_object_inline_digest_2542.push(current));
10261
10264
  workInProgress.child = renderLanes;
10262
10265
  workInProgress.memoizedState = null;
10263
10266
  return renderLanes;
@@ -14914,13 +14917,16 @@
14914
14917
  : resolveUpdatePriority();
14915
14918
  }
14916
14919
  function requestDeferredLane() {
14917
- 0 === workInProgressDeferredLane &&
14918
- (workInProgressDeferredLane =
14919
- 0 === (workInProgressRootRenderLanes & 536870912) || isHydrating
14920
- ? claimNextTransitionLane()
14921
- : 536870912);
14922
- var suspenseHandler = suspenseHandlerStackCursor.current;
14923
- null !== suspenseHandler && (suspenseHandler.flags |= 32);
14920
+ if (0 === workInProgressDeferredLane)
14921
+ if (0 === (workInProgressRootRenderLanes & 536870912) || isHydrating) {
14922
+ var lane = nextTransitionDeferredLane;
14923
+ nextTransitionDeferredLane <<= 1;
14924
+ 0 === (nextTransitionDeferredLane & 3932160) &&
14925
+ (nextTransitionDeferredLane = 262144);
14926
+ workInProgressDeferredLane = lane;
14927
+ } else workInProgressDeferredLane = 536870912;
14928
+ lane = suspenseHandlerStackCursor.current;
14929
+ null !== lane && (lane.flags |= 32);
14924
14930
  return workInProgressDeferredLane;
14925
14931
  }
14926
14932
  function scheduleUpdateOnFiber(root, fiber, lane) {
@@ -16272,7 +16278,7 @@
16272
16278
  0 !== (pendingEffectsLanes & 3) && flushPendingEffects();
16273
16279
  ensureRootIsScheduled(root);
16274
16280
  remainingLanes = root.pendingLanes;
16275
- 0 !== (lanes & 4194090) && 0 !== (remainingLanes & 42)
16281
+ 0 !== (lanes & 261930) && 0 !== (remainingLanes & 42)
16276
16282
  ? ((nestedUpdateScheduled = !0),
16277
16283
  root === rootWithNestedUpdates
16278
16284
  ? nestedUpdateCount++
@@ -16860,8 +16866,12 @@
16860
16866
  function requestTransitionLane() {
16861
16867
  if (0 === currentEventTransitionLane) {
16862
16868
  var actionScopeLane = currentEntangledLane;
16863
- currentEventTransitionLane =
16864
- 0 !== actionScopeLane ? actionScopeLane : claimNextTransitionLane();
16869
+ 0 === actionScopeLane &&
16870
+ ((actionScopeLane = nextTransitionUpdateLane),
16871
+ (nextTransitionUpdateLane <<= 1),
16872
+ 0 === (nextTransitionUpdateLane & 261888) &&
16873
+ (nextTransitionUpdateLane = 256));
16874
+ currentEventTransitionLane = actionScopeLane;
16865
16875
  }
16866
16876
  return currentEventTransitionLane;
16867
16877
  }
@@ -22099,7 +22109,8 @@
22099
22109
  clz32 = Math.clz32 ? Math.clz32 : clz32Fallback,
22100
22110
  log = Math.log,
22101
22111
  LN2 = Math.LN2,
22102
- nextTransitionLane = 256,
22112
+ nextTransitionUpdateLane = 256,
22113
+ nextTransitionDeferredLane = 262144,
22103
22114
  nextRetryLane = 4194304,
22104
22115
  DiscreteEventPriority = 2,
22105
22116
  ContinuousEventPriority = 8,
@@ -25618,11 +25629,11 @@
25618
25629
  };
25619
25630
  (function () {
25620
25631
  var isomorphicReactPackageVersion = React.version;
25621
- if ("19.2.0-canary-2805f0ed-20250903" !== isomorphicReactPackageVersion)
25632
+ if ("19.2.0-canary-3302d1f7-20250903" !== isomorphicReactPackageVersion)
25622
25633
  throw Error(
25623
25634
  'Incompatible React versions: The "react" and "react-dom" packages must have the exact same version. Instead got:\n - react: ' +
25624
25635
  (isomorphicReactPackageVersion +
25625
- "\n - react-dom: 19.2.0-canary-2805f0ed-20250903\nLearn more: https://react.dev/warnings/version-mismatch")
25636
+ "\n - react-dom: 19.2.0-canary-3302d1f7-20250903\nLearn more: https://react.dev/warnings/version-mismatch")
25626
25637
  );
25627
25638
  })();
25628
25639
  ("function" === typeof Map &&
@@ -25659,10 +25670,10 @@
25659
25670
  !(function () {
25660
25671
  var internals = {
25661
25672
  bundleType: 1,
25662
- version: "19.2.0-canary-2805f0ed-20250903",
25673
+ version: "19.2.0-canary-3302d1f7-20250903",
25663
25674
  rendererPackageName: "react-dom",
25664
25675
  currentDispatcherRef: ReactSharedInternals,
25665
- reconcilerVersion: "19.2.0-canary-2805f0ed-20250903"
25676
+ reconcilerVersion: "19.2.0-canary-3302d1f7-20250903"
25666
25677
  };
25667
25678
  internals.overrideHookState = overrideHookState;
25668
25679
  internals.overrideHookStateDeletePath = overrideHookStateDeletePath;
@@ -26130,7 +26141,7 @@
26130
26141
  exports.useFormStatus = function () {
26131
26142
  return resolveDispatcher().useHostTransitionStatus();
26132
26143
  };
26133
- exports.version = "19.2.0-canary-2805f0ed-20250903";
26144
+ exports.version = "19.2.0-canary-3302d1f7-20250903";
26134
26145
  "undefined" !== typeof __REACT_DEVTOOLS_GLOBAL_HOOK__ &&
26135
26146
  "function" ===
26136
26147
  typeof __REACT_DEVTOOLS_GLOBAL_HOOK__.registerInternalModuleStop &&