react-dom 19.2.0-canary-b6c0aa88-20250609 → 19.2.0-canary-b7e2de63-20250611

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.
@@ -163,7 +163,6 @@ var assign = Object.assign,
163
163
  REACT_FRAGMENT_TYPE = Symbol.for("react.fragment"),
164
164
  REACT_STRICT_MODE_TYPE = Symbol.for("react.strict_mode"),
165
165
  REACT_PROFILER_TYPE = Symbol.for("react.profiler"),
166
- REACT_PROVIDER_TYPE = Symbol.for("react.provider"),
167
166
  REACT_CONSUMER_TYPE = Symbol.for("react.consumer"),
168
167
  REACT_CONTEXT_TYPE = Symbol.for("react.context"),
169
168
  REACT_FORWARD_REF_TYPE = Symbol.for("react.forward_ref"),
@@ -212,7 +211,7 @@ function getComponentNameFromType(type) {
212
211
  case REACT_PORTAL_TYPE:
213
212
  return "Portal";
214
213
  case REACT_CONTEXT_TYPE:
215
- return (type.displayName || "Context") + ".Provider";
214
+ return type.displayName || "Context";
216
215
  case REACT_CONSUMER_TYPE:
217
216
  return (type._context.displayName || "Context") + ".Consumer";
218
217
  case REACT_FORWARD_REF_TYPE:
@@ -2673,7 +2672,6 @@ function createFiberFromTypeAndProps(
2673
2672
  default:
2674
2673
  if ("object" === typeof type && null !== type)
2675
2674
  switch (type.$$typeof) {
2676
- case REACT_PROVIDER_TYPE:
2677
2675
  case REACT_CONTEXT_TYPE:
2678
2676
  fiberTag = 10;
2679
2677
  break a;
@@ -7145,7 +7143,8 @@ function initSuspenseListRenderState(
7145
7143
  isBackwards,
7146
7144
  tail,
7147
7145
  lastContentRow,
7148
- tailMode
7146
+ tailMode,
7147
+ treeForkCount
7149
7148
  ) {
7150
7149
  var renderState = workInProgress.memoizedState;
7151
7150
  null === renderState
@@ -7155,14 +7154,16 @@ function initSuspenseListRenderState(
7155
7154
  renderingStartTime: 0,
7156
7155
  last: lastContentRow,
7157
7156
  tail: tail,
7158
- tailMode: tailMode
7157
+ tailMode: tailMode,
7158
+ treeForkCount: treeForkCount
7159
7159
  })
7160
7160
  : ((renderState.isBackwards = isBackwards),
7161
7161
  (renderState.rendering = null),
7162
7162
  (renderState.renderingStartTime = 0),
7163
7163
  (renderState.last = lastContentRow),
7164
7164
  (renderState.tail = tail),
7165
- (renderState.tailMode = tailMode));
7165
+ (renderState.tailMode = tailMode),
7166
+ (renderState.treeForkCount = treeForkCount));
7166
7167
  }
7167
7168
  function updateSuspenseListComponent(current, workInProgress, renderLanes) {
7168
7169
  var nextProps = workInProgress.pendingProps,
@@ -7177,6 +7178,7 @@ function updateSuspenseListComponent(current, workInProgress, renderLanes) {
7177
7178
  : (suspenseContext &= 1);
7178
7179
  push(suspenseStackCursor, suspenseContext);
7179
7180
  reconcileChildren(current, workInProgress, nextProps, renderLanes);
7181
+ nextProps = isHydrating ? treeForkCount : 0;
7180
7182
  if (!shouldForceFallback && null !== current && 0 !== (current.flags & 128))
7181
7183
  a: for (current = workInProgress.child; null !== current; ) {
7182
7184
  if (13 === current.tag)
@@ -7216,7 +7218,8 @@ function updateSuspenseListComponent(current, workInProgress, renderLanes) {
7216
7218
  !1,
7217
7219
  revealOrder,
7218
7220
  renderLanes,
7219
- tailMode
7221
+ tailMode,
7222
+ nextProps
7220
7223
  );
7221
7224
  break;
7222
7225
  case "backwards":
@@ -7239,11 +7242,19 @@ function updateSuspenseListComponent(current, workInProgress, renderLanes) {
7239
7242
  !0,
7240
7243
  renderLanes,
7241
7244
  null,
7242
- tailMode
7245
+ tailMode,
7246
+ nextProps
7243
7247
  );
7244
7248
  break;
7245
7249
  case "together":
7246
- initSuspenseListRenderState(workInProgress, !1, null, null, void 0);
7250
+ initSuspenseListRenderState(
7251
+ workInProgress,
7252
+ !1,
7253
+ null,
7254
+ null,
7255
+ void 0,
7256
+ nextProps
7257
+ );
7247
7258
  break;
7248
7259
  default:
7249
7260
  workInProgress.memoizedState = null;
@@ -8532,12 +8543,12 @@ function completeWork(current, workInProgress, renderLanes) {
8532
8543
  );
8533
8544
  case 19:
8534
8545
  pop(suspenseStackCursor);
8535
- type = workInProgress.memoizedState;
8536
- if (null === type) return bubbleProperties(workInProgress), null;
8537
- newProps = 0 !== (workInProgress.flags & 128);
8538
- nextResource = type.rendering;
8546
+ newProps = workInProgress.memoizedState;
8547
+ if (null === newProps) return bubbleProperties(workInProgress), null;
8548
+ type = 0 !== (workInProgress.flags & 128);
8549
+ nextResource = newProps.rendering;
8539
8550
  if (null === nextResource)
8540
- if (newProps) cutOffTailIfNeeded(type, !1);
8551
+ if (type) cutOffTailIfNeeded(newProps, !1);
8541
8552
  else {
8542
8553
  if (
8543
8554
  0 !== workInProgressRootExitStatus ||
@@ -8547,7 +8558,7 @@ function completeWork(current, workInProgress, renderLanes) {
8547
8558
  nextResource = findFirstSuspended(current);
8548
8559
  if (null !== nextResource) {
8549
8560
  workInProgress.flags |= 128;
8550
- cutOffTailIfNeeded(type, !1);
8561
+ cutOffTailIfNeeded(newProps, !1);
8551
8562
  current = nextResource.updateQueue;
8552
8563
  workInProgress.updateQueue = current;
8553
8564
  scheduleRetryEffect(workInProgress, current);
@@ -8560,62 +8571,68 @@ function completeWork(current, workInProgress, renderLanes) {
8560
8571
  suspenseStackCursor,
8561
8572
  (suspenseStackCursor.current & 1) | 2
8562
8573
  );
8574
+ isHydrating &&
8575
+ pushTreeFork(workInProgress, newProps.treeForkCount);
8563
8576
  return workInProgress.child;
8564
8577
  }
8565
8578
  current = current.sibling;
8566
8579
  }
8567
- null !== type.tail &&
8580
+ null !== newProps.tail &&
8568
8581
  now$1() > workInProgressRootRenderTargetTime &&
8569
8582
  ((workInProgress.flags |= 128),
8570
- (newProps = !0),
8571
- cutOffTailIfNeeded(type, !1),
8583
+ (type = !0),
8584
+ cutOffTailIfNeeded(newProps, !1),
8572
8585
  (workInProgress.lanes = 4194304));
8573
8586
  }
8574
8587
  else {
8575
- if (!newProps)
8588
+ if (!type)
8576
8589
  if (
8577
8590
  ((current = findFirstSuspended(nextResource)), null !== current)
8578
8591
  ) {
8579
8592
  if (
8580
8593
  ((workInProgress.flags |= 128),
8581
- (newProps = !0),
8594
+ (type = !0),
8582
8595
  (current = current.updateQueue),
8583
8596
  (workInProgress.updateQueue = current),
8584
8597
  scheduleRetryEffect(workInProgress, current),
8585
- cutOffTailIfNeeded(type, !0),
8586
- null === type.tail &&
8587
- "hidden" === type.tailMode &&
8598
+ cutOffTailIfNeeded(newProps, !0),
8599
+ null === newProps.tail &&
8600
+ "hidden" === newProps.tailMode &&
8588
8601
  !nextResource.alternate &&
8589
8602
  !isHydrating)
8590
8603
  )
8591
8604
  return bubbleProperties(workInProgress), null;
8592
8605
  } else
8593
- 2 * now$1() - type.renderingStartTime >
8606
+ 2 * now$1() - newProps.renderingStartTime >
8594
8607
  workInProgressRootRenderTargetTime &&
8595
8608
  536870912 !== renderLanes &&
8596
8609
  ((workInProgress.flags |= 128),
8597
- (newProps = !0),
8598
- cutOffTailIfNeeded(type, !1),
8610
+ (type = !0),
8611
+ cutOffTailIfNeeded(newProps, !1),
8599
8612
  (workInProgress.lanes = 4194304));
8600
- type.isBackwards
8613
+ newProps.isBackwards
8601
8614
  ? ((nextResource.sibling = workInProgress.child),
8602
8615
  (workInProgress.child = nextResource))
8603
- : ((current = type.last),
8616
+ : ((current = newProps.last),
8604
8617
  null !== current
8605
8618
  ? (current.sibling = nextResource)
8606
8619
  : (workInProgress.child = nextResource),
8607
- (type.last = nextResource));
8620
+ (newProps.last = nextResource));
8608
8621
  }
8609
- if (null !== type.tail)
8622
+ if (null !== newProps.tail)
8610
8623
  return (
8611
- (workInProgress = type.tail),
8612
- (type.rendering = workInProgress),
8613
- (type.tail = workInProgress.sibling),
8614
- (type.renderingStartTime = now$1()),
8615
- (workInProgress.sibling = null),
8616
- (current = suspenseStackCursor.current),
8617
- push(suspenseStackCursor, newProps ? (current & 1) | 2 : current & 1),
8618
- workInProgress
8624
+ (current = newProps.tail),
8625
+ (newProps.rendering = current),
8626
+ (newProps.tail = current.sibling),
8627
+ (newProps.renderingStartTime = now$1()),
8628
+ (current.sibling = null),
8629
+ (renderLanes = suspenseStackCursor.current),
8630
+ push(
8631
+ suspenseStackCursor,
8632
+ type ? (renderLanes & 1) | 2 : renderLanes & 1
8633
+ ),
8634
+ isHydrating && pushTreeFork(workInProgress, newProps.treeForkCount),
8635
+ current
8619
8636
  );
8620
8637
  bubbleProperties(workInProgress);
8621
8638
  return null;
@@ -16394,14 +16411,14 @@ ReactDOMHydrationRoot.prototype.unstable_scheduleHydration = function (target) {
16394
16411
  };
16395
16412
  var isomorphicReactPackageVersion$jscomp$inline_1955 = React.version;
16396
16413
  if (
16397
- "19.2.0-canary-b6c0aa88-20250609" !==
16414
+ "19.2.0-canary-b7e2de63-20250611" !==
16398
16415
  isomorphicReactPackageVersion$jscomp$inline_1955
16399
16416
  )
16400
16417
  throw Error(
16401
16418
  formatProdErrorMessage(
16402
16419
  527,
16403
16420
  isomorphicReactPackageVersion$jscomp$inline_1955,
16404
- "19.2.0-canary-b6c0aa88-20250609"
16421
+ "19.2.0-canary-b7e2de63-20250611"
16405
16422
  )
16406
16423
  );
16407
16424
  ReactDOMSharedInternals.findDOMNode = function (componentOrElement) {
@@ -16423,10 +16440,10 @@ ReactDOMSharedInternals.findDOMNode = function (componentOrElement) {
16423
16440
  };
16424
16441
  var internals$jscomp$inline_1962 = {
16425
16442
  bundleType: 0,
16426
- version: "19.2.0-canary-b6c0aa88-20250609",
16443
+ version: "19.2.0-canary-b7e2de63-20250611",
16427
16444
  rendererPackageName: "react-dom",
16428
16445
  currentDispatcherRef: ReactSharedInternals,
16429
- reconcilerVersion: "19.2.0-canary-b6c0aa88-20250609",
16446
+ reconcilerVersion: "19.2.0-canary-b7e2de63-20250611",
16430
16447
  getLaneLabelMap: function () {
16431
16448
  for (
16432
16449
  var map = new Map(), lane = 1, index$293 = 0;
@@ -16699,7 +16716,7 @@ exports.useFormState = function (action, initialState, permalink) {
16699
16716
  exports.useFormStatus = function () {
16700
16717
  return ReactSharedInternals.H.useHostTransitionStatus();
16701
16718
  };
16702
- exports.version = "19.2.0-canary-b6c0aa88-20250609";
16719
+ exports.version = "19.2.0-canary-b7e2de63-20250611";
16703
16720
  "undefined" !== typeof __REACT_DEVTOOLS_GLOBAL_HOOK__ &&
16704
16721
  "function" ===
16705
16722
  typeof __REACT_DEVTOOLS_GLOBAL_HOOK__.registerInternalModuleStop &&
@@ -3616,7 +3616,7 @@
3616
3616
  case REACT_PORTAL_TYPE:
3617
3617
  return "Portal";
3618
3618
  case REACT_CONTEXT_TYPE:
3619
- return (type.displayName || "Context") + ".Provider";
3619
+ return type.displayName || "Context";
3620
3620
  case REACT_CONSUMER_TYPE:
3621
3621
  return (type._context.displayName || "Context") + ".Consumer";
3622
3622
  case REACT_FORWARD_REF_TYPE:
@@ -5969,7 +5969,6 @@
5969
5969
  case REACT_MEMO_TYPE:
5970
5970
  renderElement(request, task, keyPath, type.type, props, ref);
5971
5971
  return;
5972
- case REACT_PROVIDER_TYPE:
5973
5972
  case REACT_CONTEXT_TYPE:
5974
5973
  var value$jscomp$0 = props.value,
5975
5974
  children$jscomp$2 = props.children;
@@ -8202,7 +8201,6 @@
8202
8201
  REACT_FRAGMENT_TYPE = Symbol.for("react.fragment"),
8203
8202
  REACT_STRICT_MODE_TYPE = Symbol.for("react.strict_mode"),
8204
8203
  REACT_PROFILER_TYPE = Symbol.for("react.profiler"),
8205
- REACT_PROVIDER_TYPE = Symbol.for("react.provider"),
8206
8204
  REACT_CONSUMER_TYPE = Symbol.for("react.consumer"),
8207
8205
  REACT_CONTEXT_TYPE = Symbol.for("react.context"),
8208
8206
  REACT_FORWARD_REF_TYPE = Symbol.for("react.forward_ref"),
@@ -9662,5 +9660,5 @@
9662
9660
  'The server used "renderToString" which does not support Suspense. If you intended for this Suspense boundary to render the fallback content on the server consider throwing an Error somewhere within the Suspense boundary. If you intended to have the server wait for the suspended component please switch to "renderToReadableStream" which supports Suspense on the server'
9663
9661
  );
9664
9662
  };
9665
- exports.version = "19.2.0-canary-b6c0aa88-20250609";
9663
+ exports.version = "19.2.0-canary-b7e2de63-20250611";
9666
9664
  })();
@@ -55,7 +55,6 @@ var REACT_ELEMENT_TYPE = Symbol.for("react.transitional.element"),
55
55
  REACT_FRAGMENT_TYPE = Symbol.for("react.fragment"),
56
56
  REACT_STRICT_MODE_TYPE = Symbol.for("react.strict_mode"),
57
57
  REACT_PROFILER_TYPE = Symbol.for("react.profiler"),
58
- REACT_PROVIDER_TYPE = Symbol.for("react.provider"),
59
58
  REACT_CONSUMER_TYPE = Symbol.for("react.consumer"),
60
59
  REACT_CONTEXT_TYPE = Symbol.for("react.context"),
61
60
  REACT_FORWARD_REF_TYPE = Symbol.for("react.forward_ref"),
@@ -2915,7 +2914,7 @@ function getComponentNameFromType(type) {
2915
2914
  case REACT_PORTAL_TYPE:
2916
2915
  return "Portal";
2917
2916
  case REACT_CONTEXT_TYPE:
2918
- return (type.displayName || "Context") + ".Provider";
2917
+ return type.displayName || "Context";
2919
2918
  case REACT_CONSUMER_TYPE:
2920
2919
  return (type._context.displayName || "Context") + ".Consumer";
2921
2920
  case REACT_FORWARD_REF_TYPE:
@@ -4653,7 +4652,6 @@ function renderElement(request, task, keyPath, type, props, ref) {
4653
4652
  case REACT_MEMO_TYPE:
4654
4653
  renderElement(request, task, keyPath, type.type, props, ref);
4655
4654
  return;
4656
- case REACT_PROVIDER_TYPE:
4657
4655
  case REACT_CONTEXT_TYPE:
4658
4656
  defaultProps = props.children;
4659
4657
  newProps = task.keyPath;
@@ -6425,4 +6423,4 @@ exports.renderToString = function (children, options) {
6425
6423
  'The server used "renderToString" which does not support Suspense. If you intended for this Suspense boundary to render the fallback content on the server consider throwing an Error somewhere within the Suspense boundary. If you intended to have the server wait for the suspended component please switch to "renderToReadableStream" which supports Suspense on the server'
6426
6424
  );
6427
6425
  };
6428
- exports.version = "19.2.0-canary-b6c0aa88-20250609";
6426
+ exports.version = "19.2.0-canary-b7e2de63-20250611";
@@ -3616,7 +3616,7 @@
3616
3616
  case REACT_PORTAL_TYPE:
3617
3617
  return "Portal";
3618
3618
  case REACT_CONTEXT_TYPE:
3619
- return (type.displayName || "Context") + ".Provider";
3619
+ return type.displayName || "Context";
3620
3620
  case REACT_CONSUMER_TYPE:
3621
3621
  return (type._context.displayName || "Context") + ".Consumer";
3622
3622
  case REACT_FORWARD_REF_TYPE:
@@ -5969,7 +5969,6 @@
5969
5969
  case REACT_MEMO_TYPE:
5970
5970
  renderElement(request, task, keyPath, type.type, props, ref);
5971
5971
  return;
5972
- case REACT_PROVIDER_TYPE:
5973
5972
  case REACT_CONTEXT_TYPE:
5974
5973
  var value$jscomp$0 = props.value,
5975
5974
  children$jscomp$2 = props.children;
@@ -8202,7 +8201,6 @@
8202
8201
  REACT_FRAGMENT_TYPE = Symbol.for("react.fragment"),
8203
8202
  REACT_STRICT_MODE_TYPE = Symbol.for("react.strict_mode"),
8204
8203
  REACT_PROFILER_TYPE = Symbol.for("react.profiler"),
8205
- REACT_PROVIDER_TYPE = Symbol.for("react.provider"),
8206
8204
  REACT_CONSUMER_TYPE = Symbol.for("react.consumer"),
8207
8205
  REACT_CONTEXT_TYPE = Symbol.for("react.context"),
8208
8206
  REACT_FORWARD_REF_TYPE = Symbol.for("react.forward_ref"),
@@ -9662,5 +9660,5 @@
9662
9660
  'The server used "renderToString" which does not support Suspense. If you intended for this Suspense boundary to render the fallback content on the server consider throwing an Error somewhere within the Suspense boundary. If you intended to have the server wait for the suspended component please switch to "renderToPipeableStream" which supports Suspense on the server'
9663
9661
  );
9664
9662
  };
9665
- exports.version = "19.2.0-canary-b6c0aa88-20250609";
9663
+ exports.version = "19.2.0-canary-b7e2de63-20250611";
9666
9664
  })();
@@ -40,7 +40,6 @@ var React = require("react"),
40
40
  REACT_FRAGMENT_TYPE = Symbol.for("react.fragment"),
41
41
  REACT_STRICT_MODE_TYPE = Symbol.for("react.strict_mode"),
42
42
  REACT_PROFILER_TYPE = Symbol.for("react.profiler"),
43
- REACT_PROVIDER_TYPE = Symbol.for("react.provider"),
44
43
  REACT_CONSUMER_TYPE = Symbol.for("react.consumer"),
45
44
  REACT_CONTEXT_TYPE = Symbol.for("react.context"),
46
45
  REACT_FORWARD_REF_TYPE = Symbol.for("react.forward_ref"),
@@ -2934,7 +2933,7 @@ function getComponentNameFromType(type) {
2934
2933
  case REACT_PORTAL_TYPE:
2935
2934
  return "Portal";
2936
2935
  case REACT_CONTEXT_TYPE:
2937
- return (type.displayName || "Context") + ".Provider";
2936
+ return type.displayName || "Context";
2938
2937
  case REACT_CONSUMER_TYPE:
2939
2938
  return (type._context.displayName || "Context") + ".Consumer";
2940
2939
  case REACT_FORWARD_REF_TYPE:
@@ -4700,7 +4699,6 @@ function renderElement(request, task, keyPath, type, props, ref) {
4700
4699
  case REACT_MEMO_TYPE:
4701
4700
  renderElement(request, task, keyPath, type.type, props, ref);
4702
4701
  return;
4703
- case REACT_PROVIDER_TYPE:
4704
4702
  case REACT_CONTEXT_TYPE:
4705
4703
  defaultProps = props.children;
4706
4704
  newProps = task.keyPath;
@@ -6508,4 +6506,4 @@ exports.renderToString = function (children, options) {
6508
6506
  'The server used "renderToString" which does not support Suspense. If you intended for this Suspense boundary to render the fallback content on the server consider throwing an Error somewhere within the Suspense boundary. If you intended to have the server wait for the suspended component please switch to "renderToPipeableStream" which supports Suspense on the server'
6509
6507
  );
6510
6508
  };
6511
- exports.version = "19.2.0-canary-b6c0aa88-20250609";
6509
+ exports.version = "19.2.0-canary-b7e2de63-20250611";
@@ -3770,7 +3770,7 @@
3770
3770
  case REACT_PORTAL_TYPE:
3771
3771
  return "Portal";
3772
3772
  case REACT_CONTEXT_TYPE:
3773
- return (type.displayName || "Context") + ".Provider";
3773
+ return type.displayName || "Context";
3774
3774
  case REACT_CONSUMER_TYPE:
3775
3775
  return (type._context.displayName || "Context") + ".Consumer";
3776
3776
  case REACT_FORWARD_REF_TYPE:
@@ -6174,7 +6174,6 @@
6174
6174
  case REACT_MEMO_TYPE:
6175
6175
  renderElement(request, task, keyPath, type.type, props, ref);
6176
6176
  return;
6177
- case REACT_PROVIDER_TYPE:
6178
6177
  case REACT_CONTEXT_TYPE:
6179
6178
  var value$jscomp$0 = props.value,
6180
6179
  children$jscomp$2 = props.children;
@@ -8413,11 +8412,11 @@
8413
8412
  }
8414
8413
  function ensureCorrectIsomorphicReactVersion() {
8415
8414
  var isomorphicReactPackageVersion = React.version;
8416
- if ("19.2.0-canary-b6c0aa88-20250609" !== isomorphicReactPackageVersion)
8415
+ if ("19.2.0-canary-b7e2de63-20250611" !== isomorphicReactPackageVersion)
8417
8416
  throw Error(
8418
8417
  'Incompatible React versions: The "react" and "react-dom" packages must have the exact same version. Instead got:\n - react: ' +
8419
8418
  (isomorphicReactPackageVersion +
8420
- "\n - react-dom: 19.2.0-canary-b6c0aa88-20250609\nLearn more: https://react.dev/warnings/version-mismatch")
8419
+ "\n - react-dom: 19.2.0-canary-b7e2de63-20250611\nLearn more: https://react.dev/warnings/version-mismatch")
8421
8420
  );
8422
8421
  }
8423
8422
  var React = require("react"),
@@ -8427,7 +8426,6 @@
8427
8426
  REACT_FRAGMENT_TYPE = Symbol.for("react.fragment"),
8428
8427
  REACT_STRICT_MODE_TYPE = Symbol.for("react.strict_mode"),
8429
8428
  REACT_PROFILER_TYPE = Symbol.for("react.profiler"),
8430
- REACT_PROVIDER_TYPE = Symbol.for("react.provider"),
8431
8429
  REACT_CONSUMER_TYPE = Symbol.for("react.consumer"),
8432
8430
  REACT_CONTEXT_TYPE = Symbol.for("react.context"),
8433
8431
  REACT_FORWARD_REF_TYPE = Symbol.for("react.forward_ref"),
@@ -10105,5 +10103,5 @@
10105
10103
  startWork(request);
10106
10104
  });
10107
10105
  };
10108
- exports.version = "19.2.0-canary-b6c0aa88-20250609";
10106
+ exports.version = "19.2.0-canary-b7e2de63-20250611";
10109
10107
  })();
@@ -55,7 +55,6 @@ var REACT_ELEMENT_TYPE = Symbol.for("react.transitional.element"),
55
55
  REACT_FRAGMENT_TYPE = Symbol.for("react.fragment"),
56
56
  REACT_STRICT_MODE_TYPE = Symbol.for("react.strict_mode"),
57
57
  REACT_PROFILER_TYPE = Symbol.for("react.profiler"),
58
- REACT_PROVIDER_TYPE = Symbol.for("react.provider"),
59
58
  REACT_CONSUMER_TYPE = Symbol.for("react.consumer"),
60
59
  REACT_CONTEXT_TYPE = Symbol.for("react.context"),
61
60
  REACT_FORWARD_REF_TYPE = Symbol.for("react.forward_ref"),
@@ -3299,7 +3298,7 @@ function getComponentNameFromType(type) {
3299
3298
  case REACT_PORTAL_TYPE:
3300
3299
  return "Portal";
3301
3300
  case REACT_CONTEXT_TYPE:
3302
- return (type.displayName || "Context") + ".Provider";
3301
+ return type.displayName || "Context";
3303
3302
  case REACT_CONSUMER_TYPE:
3304
3303
  return (type._context.displayName || "Context") + ".Consumer";
3305
3304
  case REACT_FORWARD_REF_TYPE:
@@ -5087,7 +5086,6 @@ function renderElement(request, task, keyPath, type, props, ref) {
5087
5086
  case REACT_MEMO_TYPE:
5088
5087
  renderElement(request, task, keyPath, type.type, props, ref);
5089
5088
  return;
5090
- case REACT_PROVIDER_TYPE:
5091
5089
  case REACT_CONTEXT_TYPE:
5092
5090
  defaultProps = props.children;
5093
5091
  newProps = task.keyPath;
@@ -6811,12 +6809,12 @@ function addToReplayParent(node, parentKeyPath, trackedPostpones) {
6811
6809
  }
6812
6810
  function ensureCorrectIsomorphicReactVersion() {
6813
6811
  var isomorphicReactPackageVersion = React.version;
6814
- if ("19.2.0-canary-b6c0aa88-20250609" !== isomorphicReactPackageVersion)
6812
+ if ("19.2.0-canary-b7e2de63-20250611" !== isomorphicReactPackageVersion)
6815
6813
  throw Error(
6816
6814
  formatProdErrorMessage(
6817
6815
  527,
6818
6816
  isomorphicReactPackageVersion,
6819
- "19.2.0-canary-b6c0aa88-20250609"
6817
+ "19.2.0-canary-b7e2de63-20250611"
6820
6818
  )
6821
6819
  );
6822
6820
  }
@@ -6963,4 +6961,4 @@ exports.renderToReadableStream = function (children, options) {
6963
6961
  startWork(request);
6964
6962
  });
6965
6963
  };
6966
- exports.version = "19.2.0-canary-b6c0aa88-20250609";
6964
+ exports.version = "19.2.0-canary-b7e2de63-20250611";
@@ -16,7 +16,6 @@ var React = require("react"),
16
16
  REACT_FRAGMENT_TYPE = Symbol.for("react.fragment"),
17
17
  REACT_STRICT_MODE_TYPE = Symbol.for("react.strict_mode"),
18
18
  REACT_PROFILER_TYPE = Symbol.for("react.profiler"),
19
- REACT_PROVIDER_TYPE = Symbol.for("react.provider"),
20
19
  REACT_CONSUMER_TYPE = Symbol.for("react.consumer"),
21
20
  REACT_CONTEXT_TYPE = Symbol.for("react.context"),
22
21
  REACT_FORWARD_REF_TYPE = Symbol.for("react.forward_ref"),
@@ -4680,7 +4679,7 @@ function getComponentNameFromType(type) {
4680
4679
  case REACT_PORTAL_TYPE:
4681
4680
  return "Portal";
4682
4681
  case REACT_CONTEXT_TYPE:
4683
- return (type.displayName || "Context") + ".Provider";
4682
+ return type.displayName || "Context";
4684
4683
  case REACT_CONSUMER_TYPE:
4685
4684
  return (type._context.displayName || "Context") + ".Consumer";
4686
4685
  case REACT_FORWARD_REF_TYPE:
@@ -7214,7 +7213,6 @@ function renderElement(request, task, keyPath, type, props, ref) {
7214
7213
  case REACT_MEMO_TYPE:
7215
7214
  renderElement(request, task, keyPath, type.type, props, ref);
7216
7215
  return;
7217
- case REACT_PROVIDER_TYPE:
7218
7216
  case REACT_CONTEXT_TYPE:
7219
7217
  var value$jscomp$0 = props.value,
7220
7218
  children$jscomp$2 = props.children;
@@ -9282,13 +9280,13 @@ function addToReplayParent(node, parentKeyPath, trackedPostpones) {
9282
9280
  }
9283
9281
  var isomorphicReactPackageVersion$jscomp$inline_761 = React.version;
9284
9282
  if (
9285
- "19.2.0-canary-b6c0aa88-20250609" !==
9283
+ "19.2.0-canary-b7e2de63-20250611" !==
9286
9284
  isomorphicReactPackageVersion$jscomp$inline_761
9287
9285
  )
9288
9286
  throw Error(
9289
9287
  'Incompatible React versions: The "react" and "react-dom" packages must have the exact same version. Instead got:\n - react: ' +
9290
9288
  (isomorphicReactPackageVersion$jscomp$inline_761 +
9291
- "\n - react-dom: 19.2.0-canary-b6c0aa88-20250609\nLearn more: https://react.dev/warnings/version-mismatch")
9289
+ "\n - react-dom: 19.2.0-canary-b7e2de63-20250611\nLearn more: https://react.dev/warnings/version-mismatch")
9292
9290
  );
9293
9291
  exports.renderToReadableStream = function (children, options) {
9294
9292
  return new Promise(function (resolve, reject) {
@@ -9381,4 +9379,4 @@ exports.renderToReadableStream = function (children, options) {
9381
9379
  startWork(request$jscomp$0);
9382
9380
  });
9383
9381
  };
9384
- exports.version = "19.2.0-canary-b6c0aa88-20250609";
9382
+ exports.version = "19.2.0-canary-b7e2de63-20250611";
@@ -16,7 +16,6 @@ var React = require("react"),
16
16
  REACT_FRAGMENT_TYPE = Symbol.for("react.fragment"),
17
17
  REACT_STRICT_MODE_TYPE = Symbol.for("react.strict_mode"),
18
18
  REACT_PROFILER_TYPE = Symbol.for("react.profiler"),
19
- REACT_PROVIDER_TYPE = Symbol.for("react.provider"),
20
19
  REACT_CONSUMER_TYPE = Symbol.for("react.consumer"),
21
20
  REACT_CONTEXT_TYPE = Symbol.for("react.context"),
22
21
  REACT_FORWARD_REF_TYPE = Symbol.for("react.forward_ref"),
@@ -2917,7 +2916,7 @@ function getComponentNameFromType(type) {
2917
2916
  case REACT_PORTAL_TYPE:
2918
2917
  return "Portal";
2919
2918
  case REACT_CONTEXT_TYPE:
2920
- return (type.displayName || "Context") + ".Provider";
2919
+ return type.displayName || "Context";
2921
2920
  case REACT_CONSUMER_TYPE:
2922
2921
  return (type._context.displayName || "Context") + ".Consumer";
2923
2922
  case REACT_FORWARD_REF_TYPE:
@@ -4706,7 +4705,6 @@ function renderElement(request, task, keyPath, type, props, ref) {
4706
4705
  case REACT_MEMO_TYPE:
4707
4706
  renderElement(request, task, keyPath, type.type, props, ref);
4708
4707
  return;
4709
- case REACT_PROVIDER_TYPE:
4710
4708
  case REACT_CONTEXT_TYPE:
4711
4709
  defaultProps = props.children;
4712
4710
  newProps = task.keyPath;
@@ -6456,13 +6454,13 @@ function addToReplayParent(node, parentKeyPath, trackedPostpones) {
6456
6454
  }
6457
6455
  var isomorphicReactPackageVersion$jscomp$inline_813 = React.version;
6458
6456
  if (
6459
- "19.2.0-canary-b6c0aa88-20250609" !==
6457
+ "19.2.0-canary-b7e2de63-20250611" !==
6460
6458
  isomorphicReactPackageVersion$jscomp$inline_813
6461
6459
  )
6462
6460
  throw Error(
6463
6461
  'Incompatible React versions: The "react" and "react-dom" packages must have the exact same version. Instead got:\n - react: ' +
6464
6462
  (isomorphicReactPackageVersion$jscomp$inline_813 +
6465
- "\n - react-dom: 19.2.0-canary-b6c0aa88-20250609\nLearn more: https://react.dev/warnings/version-mismatch")
6463
+ "\n - react-dom: 19.2.0-canary-b7e2de63-20250611\nLearn more: https://react.dev/warnings/version-mismatch")
6466
6464
  );
6467
6465
  exports.renderToReadableStream = function (children, options) {
6468
6466
  return new Promise(function (resolve, reject) {
@@ -6553,4 +6551,4 @@ exports.renderToReadableStream = function (children, options) {
6553
6551
  startWork(request);
6554
6552
  });
6555
6553
  };
6556
- exports.version = "19.2.0-canary-b6c0aa88-20250609";
6554
+ exports.version = "19.2.0-canary-b7e2de63-20250611";
@@ -3766,7 +3766,7 @@
3766
3766
  case REACT_PORTAL_TYPE:
3767
3767
  return "Portal";
3768
3768
  case REACT_CONTEXT_TYPE:
3769
- return (type.displayName || "Context") + ".Provider";
3769
+ return type.displayName || "Context";
3770
3770
  case REACT_CONSUMER_TYPE:
3771
3771
  return (type._context.displayName || "Context") + ".Consumer";
3772
3772
  case REACT_FORWARD_REF_TYPE:
@@ -6184,7 +6184,6 @@
6184
6184
  case REACT_MEMO_TYPE:
6185
6185
  renderElement(request, task, keyPath, type.type, props, ref);
6186
6186
  return;
6187
- case REACT_PROVIDER_TYPE:
6188
6187
  case REACT_CONTEXT_TYPE:
6189
6188
  var value$jscomp$0 = props.value,
6190
6189
  children$jscomp$2 = props.children;
@@ -8436,11 +8435,11 @@
8436
8435
  }
8437
8436
  function ensureCorrectIsomorphicReactVersion() {
8438
8437
  var isomorphicReactPackageVersion = React.version;
8439
- if ("19.2.0-canary-b6c0aa88-20250609" !== isomorphicReactPackageVersion)
8438
+ if ("19.2.0-canary-b7e2de63-20250611" !== isomorphicReactPackageVersion)
8440
8439
  throw Error(
8441
8440
  'Incompatible React versions: The "react" and "react-dom" packages must have the exact same version. Instead got:\n - react: ' +
8442
8441
  (isomorphicReactPackageVersion +
8443
- "\n - react-dom: 19.2.0-canary-b6c0aa88-20250609\nLearn more: https://react.dev/warnings/version-mismatch")
8442
+ "\n - react-dom: 19.2.0-canary-b7e2de63-20250611\nLearn more: https://react.dev/warnings/version-mismatch")
8444
8443
  );
8445
8444
  }
8446
8445
  var React = require("react"),
@@ -8450,7 +8449,6 @@
8450
8449
  REACT_FRAGMENT_TYPE = Symbol.for("react.fragment"),
8451
8450
  REACT_STRICT_MODE_TYPE = Symbol.for("react.strict_mode"),
8452
8451
  REACT_PROFILER_TYPE = Symbol.for("react.profiler"),
8453
- REACT_PROVIDER_TYPE = Symbol.for("react.provider"),
8454
8452
  REACT_CONSUMER_TYPE = Symbol.for("react.consumer"),
8455
8453
  REACT_CONTEXT_TYPE = Symbol.for("react.context"),
8456
8454
  REACT_FORWARD_REF_TYPE = Symbol.for("react.forward_ref"),
@@ -10124,5 +10122,5 @@
10124
10122
  startWork(request);
10125
10123
  });
10126
10124
  };
10127
- exports.version = "19.2.0-canary-b6c0aa88-20250609";
10125
+ exports.version = "19.2.0-canary-b7e2de63-20250611";
10128
10126
  })();
@@ -40,7 +40,6 @@ var React = require("react"),
40
40
  REACT_FRAGMENT_TYPE = Symbol.for("react.fragment"),
41
41
  REACT_STRICT_MODE_TYPE = Symbol.for("react.strict_mode"),
42
42
  REACT_PROFILER_TYPE = Symbol.for("react.profiler"),
43
- REACT_PROVIDER_TYPE = Symbol.for("react.provider"),
44
43
  REACT_CONSUMER_TYPE = Symbol.for("react.consumer"),
45
44
  REACT_CONTEXT_TYPE = Symbol.for("react.context"),
46
45
  REACT_FORWARD_REF_TYPE = Symbol.for("react.forward_ref"),
@@ -3310,7 +3309,7 @@ function getComponentNameFromType(type) {
3310
3309
  case REACT_PORTAL_TYPE:
3311
3310
  return "Portal";
3312
3311
  case REACT_CONTEXT_TYPE:
3313
- return (type.displayName || "Context") + ".Provider";
3312
+ return type.displayName || "Context";
3314
3313
  case REACT_CONSUMER_TYPE:
3315
3314
  return (type._context.displayName || "Context") + ".Consumer";
3316
3315
  case REACT_FORWARD_REF_TYPE:
@@ -5139,7 +5138,6 @@ function renderElement(request, task, keyPath, type, props, ref) {
5139
5138
  case REACT_MEMO_TYPE:
5140
5139
  renderElement(request, task, keyPath, type.type, props, ref);
5141
5140
  return;
5142
- case REACT_PROVIDER_TYPE:
5143
5141
  case REACT_CONTEXT_TYPE:
5144
5142
  defaultProps = props.children;
5145
5143
  newProps = task.keyPath;
@@ -6909,11 +6907,11 @@ function addToReplayParent(node, parentKeyPath, trackedPostpones) {
6909
6907
  }
6910
6908
  function ensureCorrectIsomorphicReactVersion() {
6911
6909
  var isomorphicReactPackageVersion = React.version;
6912
- if ("19.2.0-canary-b6c0aa88-20250609" !== isomorphicReactPackageVersion)
6910
+ if ("19.2.0-canary-b7e2de63-20250611" !== isomorphicReactPackageVersion)
6913
6911
  throw Error(
6914
6912
  'Incompatible React versions: The "react" and "react-dom" packages must have the exact same version. Instead got:\n - react: ' +
6915
6913
  (isomorphicReactPackageVersion +
6916
- "\n - react-dom: 19.2.0-canary-b6c0aa88-20250609\nLearn more: https://react.dev/warnings/version-mismatch")
6914
+ "\n - react-dom: 19.2.0-canary-b7e2de63-20250611\nLearn more: https://react.dev/warnings/version-mismatch")
6917
6915
  );
6918
6916
  }
6919
6917
  ensureCorrectIsomorphicReactVersion();
@@ -7059,4 +7057,4 @@ exports.renderToReadableStream = function (children, options) {
7059
7057
  startWork(request);
7060
7058
  });
7061
7059
  };
7062
- exports.version = "19.2.0-canary-b6c0aa88-20250609";
7060
+ exports.version = "19.2.0-canary-b7e2de63-20250611";