react-dom 19.1.0-canary-313332d1-20250326 → 19.1.0-canary-4280563b-20250326

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.
@@ -4421,14 +4421,18 @@
4421
4421
  fiber.serverTail.push(rejectedCandidate)));
4422
4422
  }
4423
4423
  function throwOnHydrationMismatch(fiber) {
4424
- var diff = "",
4424
+ var fromText =
4425
+ 1 < arguments.length && void 0 !== arguments[1] ? arguments[1] : !1,
4426
+ diff = "",
4425
4427
  diffRoot = hydrationDiffRootDEV;
4426
4428
  null !== diffRoot &&
4427
4429
  ((hydrationDiffRootDEV = null), (diff = describeDiff(diffRoot)));
4428
4430
  queueHydrationError(
4429
4431
  createCapturedValueAtFiber(
4430
4432
  Error(
4431
- "Hydration failed because the server rendered HTML didn't match the client. As a result this tree will be regenerated on the client. This can happen if a SSR-ed Client Component used:\n\n- A server/client branch `if (typeof window !== 'undefined')`.\n- Variable input such as `Date.now()` or `Math.random()` which changes each time it's called.\n- Date formatting in a user's locale which doesn't match the server.\n- External changing data without sending a snapshot of it along with the HTML.\n- Invalid HTML tag nesting.\n\nIt can also happen if the client has a browser extension installed which messes with the HTML before React loaded.\n\nhttps://react.dev/link/hydration-mismatch" +
4433
+ "Hydration failed because the server rendered " +
4434
+ (fromText ? "text" : "HTML") +
4435
+ " didn't match the client. As a result this tree will be regenerated on the client. This can happen if a SSR-ed Client Component used:\n\n- A server/client branch `if (typeof window !== 'undefined')`.\n- Variable input such as `Date.now()` or `Math.random()` which changes each time it's called.\n- Date formatting in a user's locale which doesn't match the server.\n- External changing data without sending a snapshot of it along with the HTML.\n- Invalid HTML tag nesting.\n\nIt can also happen if the client has a browser extension installed which messes with the HTML before React loaded.\n\nhttps://react.dev/link/hydration-mismatch" +
4432
4436
  diff
4433
4437
  ),
4434
4438
  fiber
@@ -4523,7 +4527,7 @@
4523
4527
  null != props.onClick && (didHydrate.onclick = noop$1),
4524
4528
  (didHydrate = !0))
4525
4529
  : (didHydrate = !1);
4526
- didHydrate || throwOnHydrationMismatch(fiber);
4530
+ didHydrate || throwOnHydrationMismatch(fiber, !0);
4527
4531
  }
4528
4532
  function popToNextHostParent(fiber) {
4529
4533
  for (hydrationParentFiber = fiber.return; hydrationParentFiber; )
@@ -11454,7 +11458,7 @@
11454
11458
  checkForUnmatchedText(current.nodeValue, renderLanes)
11455
11459
  ? !0
11456
11460
  : !1;
11457
- current || throwOnHydrationMismatch(workInProgress);
11461
+ current || throwOnHydrationMismatch(workInProgress, !0);
11458
11462
  } else
11459
11463
  (_type = renderLanes.ancestorInfo.current),
11460
11464
  null != _type &&
@@ -16103,7 +16107,9 @@
16103
16107
  mightHavePendingSyncWork = !0;
16104
16108
  root = next;
16105
16109
  }
16106
- flushSyncWorkAcrossRoots_impl(syncTransitionLanes, !1);
16110
+ (pendingEffectsStatus !== NO_PENDING_EFFECTS &&
16111
+ pendingEffectsStatus !== PENDING_PASSIVE_PHASE) ||
16112
+ flushSyncWorkAcrossRoots_impl(syncTransitionLanes, !1);
16107
16113
  }
16108
16114
  function scheduleTaskForRootDuringMicrotask(root, currentTime) {
16109
16115
  for (
@@ -24779,11 +24785,11 @@
24779
24785
  };
24780
24786
  (function () {
24781
24787
  var isomorphicReactPackageVersion = React.version;
24782
- if ("19.1.0-canary-313332d1-20250326" !== isomorphicReactPackageVersion)
24788
+ if ("19.1.0-canary-4280563b-20250326" !== isomorphicReactPackageVersion)
24783
24789
  throw Error(
24784
24790
  'Incompatible React versions: The "react" and "react-dom" packages must have the exact same version. Instead got:\n - react: ' +
24785
24791
  (isomorphicReactPackageVersion +
24786
- "\n - react-dom: 19.1.0-canary-313332d1-20250326\nLearn more: https://react.dev/warnings/version-mismatch")
24792
+ "\n - react-dom: 19.1.0-canary-4280563b-20250326\nLearn more: https://react.dev/warnings/version-mismatch")
24787
24793
  );
24788
24794
  })();
24789
24795
  ("function" === typeof Map &&
@@ -24820,10 +24826,10 @@
24820
24826
  !(function () {
24821
24827
  var internals = {
24822
24828
  bundleType: 1,
24823
- version: "19.1.0-canary-313332d1-20250326",
24829
+ version: "19.1.0-canary-4280563b-20250326",
24824
24830
  rendererPackageName: "react-dom",
24825
24831
  currentDispatcherRef: ReactSharedInternals,
24826
- reconcilerVersion: "19.1.0-canary-313332d1-20250326"
24832
+ reconcilerVersion: "19.1.0-canary-4280563b-20250326"
24827
24833
  };
24828
24834
  internals.overrideHookState = overrideHookState;
24829
24835
  internals.overrideHookStateDeletePath = overrideHookStateDeletePath;
@@ -24967,7 +24973,7 @@
24967
24973
  listenToAllSupportedEvents(container);
24968
24974
  return new ReactDOMHydrationRoot(initialChildren);
24969
24975
  };
24970
- exports.version = "19.1.0-canary-313332d1-20250326";
24976
+ exports.version = "19.1.0-canary-4280563b-20250326";
24971
24977
  "undefined" !== typeof __REACT_DEVTOOLS_GLOBAL_HOOK__ &&
24972
24978
  "function" ===
24973
24979
  typeof __REACT_DEVTOOLS_GLOBAL_HOOK__.registerInternalModuleStop &&
@@ -2664,7 +2664,15 @@ var hydrationParentFiber = null,
2664
2664
  rootOrSingletonContext = !1,
2665
2665
  HydrationMismatchException = Error(formatProdErrorMessage(519));
2666
2666
  function throwOnHydrationMismatch(fiber) {
2667
- var error = Error(formatProdErrorMessage(418, ""));
2667
+ var error = Error(
2668
+ formatProdErrorMessage(
2669
+ 418,
2670
+ 1 < arguments.length && void 0 !== arguments[1] && arguments[1]
2671
+ ? "text"
2672
+ : "HTML",
2673
+ ""
2674
+ )
2675
+ );
2668
2676
  queueHydrationError(createCapturedValueAtFiber(error, fiber));
2669
2677
  throw HydrationMismatchException;
2670
2678
  }
@@ -2739,7 +2747,7 @@ function prepareToHydrateHostInstance(fiber) {
2739
2747
  null != props.onClick && (instance.onclick = noop$1),
2740
2748
  (instance = !0))
2741
2749
  : (instance = !1);
2742
- instance || throwOnHydrationMismatch(fiber);
2750
+ instance || throwOnHydrationMismatch(fiber, !0);
2743
2751
  }
2744
2752
  function popToNextHostParent(fiber) {
2745
2753
  for (hydrationParentFiber = fiber.return; hydrationParentFiber; )
@@ -7962,7 +7970,7 @@ function completeWork(current, workInProgress, renderLanes) {
7962
7970
  checkForUnmatchedText(current.nodeValue, renderLanes)
7963
7971
  ? !0
7964
7972
  : !1;
7965
- current || throwOnHydrationMismatch(workInProgress);
7973
+ current || throwOnHydrationMismatch(workInProgress, !0);
7966
7974
  } else
7967
7975
  (current =
7968
7976
  getOwnerDocumentFromRootContainer(current).createTextNode(
@@ -11533,7 +11541,8 @@ function processRootScheduleInMicrotask() {
11533
11541
  mightHavePendingSyncWork = !0;
11534
11542
  root = next;
11535
11543
  }
11536
- flushSyncWorkAcrossRoots_impl(syncTransitionLanes, !1);
11544
+ (0 !== pendingEffectsStatus && 5 !== pendingEffectsStatus) ||
11545
+ flushSyncWorkAcrossRoots_impl(syncTransitionLanes, !1);
11537
11546
  }
11538
11547
  function scheduleTaskForRootDuringMicrotask(root, currentTime) {
11539
11548
  for (
@@ -15251,14 +15260,14 @@ ReactDOMHydrationRoot.prototype.unstable_scheduleHydration = function (target) {
15251
15260
  };
15252
15261
  var isomorphicReactPackageVersion$jscomp$inline_1779 = React.version;
15253
15262
  if (
15254
- "19.1.0-canary-313332d1-20250326" !==
15263
+ "19.1.0-canary-4280563b-20250326" !==
15255
15264
  isomorphicReactPackageVersion$jscomp$inline_1779
15256
15265
  )
15257
15266
  throw Error(
15258
15267
  formatProdErrorMessage(
15259
15268
  527,
15260
15269
  isomorphicReactPackageVersion$jscomp$inline_1779,
15261
- "19.1.0-canary-313332d1-20250326"
15270
+ "19.1.0-canary-4280563b-20250326"
15262
15271
  )
15263
15272
  );
15264
15273
  ReactDOMSharedInternals.findDOMNode = function (componentOrElement) {
@@ -15280,10 +15289,10 @@ ReactDOMSharedInternals.findDOMNode = function (componentOrElement) {
15280
15289
  };
15281
15290
  var internals$jscomp$inline_2250 = {
15282
15291
  bundleType: 0,
15283
- version: "19.1.0-canary-313332d1-20250326",
15292
+ version: "19.1.0-canary-4280563b-20250326",
15284
15293
  rendererPackageName: "react-dom",
15285
15294
  currentDispatcherRef: ReactSharedInternals,
15286
- reconcilerVersion: "19.1.0-canary-313332d1-20250326"
15295
+ reconcilerVersion: "19.1.0-canary-4280563b-20250326"
15287
15296
  };
15288
15297
  if ("undefined" !== typeof __REACT_DEVTOOLS_GLOBAL_HOOK__) {
15289
15298
  var hook$jscomp$inline_2251 = __REACT_DEVTOOLS_GLOBAL_HOOK__;
@@ -15387,4 +15396,4 @@ exports.hydrateRoot = function (container, initialChildren, options) {
15387
15396
  listenToAllSupportedEvents(container);
15388
15397
  return new ReactDOMHydrationRoot(initialChildren);
15389
15398
  };
15390
- exports.version = "19.1.0-canary-313332d1-20250326";
15399
+ exports.version = "19.1.0-canary-4280563b-20250326";
@@ -4429,14 +4429,18 @@
4429
4429
  fiber.serverTail.push(rejectedCandidate)));
4430
4430
  }
4431
4431
  function throwOnHydrationMismatch(fiber) {
4432
- var diff = "",
4432
+ var fromText =
4433
+ 1 < arguments.length && void 0 !== arguments[1] ? arguments[1] : !1,
4434
+ diff = "",
4433
4435
  diffRoot = hydrationDiffRootDEV;
4434
4436
  null !== diffRoot &&
4435
4437
  ((hydrationDiffRootDEV = null), (diff = describeDiff(diffRoot)));
4436
4438
  queueHydrationError(
4437
4439
  createCapturedValueAtFiber(
4438
4440
  Error(
4439
- "Hydration failed because the server rendered HTML didn't match the client. As a result this tree will be regenerated on the client. This can happen if a SSR-ed Client Component used:\n\n- A server/client branch `if (typeof window !== 'undefined')`.\n- Variable input such as `Date.now()` or `Math.random()` which changes each time it's called.\n- Date formatting in a user's locale which doesn't match the server.\n- External changing data without sending a snapshot of it along with the HTML.\n- Invalid HTML tag nesting.\n\nIt can also happen if the client has a browser extension installed which messes with the HTML before React loaded.\n\nhttps://react.dev/link/hydration-mismatch" +
4441
+ "Hydration failed because the server rendered " +
4442
+ (fromText ? "text" : "HTML") +
4443
+ " didn't match the client. As a result this tree will be regenerated on the client. This can happen if a SSR-ed Client Component used:\n\n- A server/client branch `if (typeof window !== 'undefined')`.\n- Variable input such as `Date.now()` or `Math.random()` which changes each time it's called.\n- Date formatting in a user's locale which doesn't match the server.\n- External changing data without sending a snapshot of it along with the HTML.\n- Invalid HTML tag nesting.\n\nIt can also happen if the client has a browser extension installed which messes with the HTML before React loaded.\n\nhttps://react.dev/link/hydration-mismatch" +
4440
4444
  diff
4441
4445
  ),
4442
4446
  fiber
@@ -4531,7 +4535,7 @@
4531
4535
  null != props.onClick && (didHydrate.onclick = noop$2),
4532
4536
  (didHydrate = !0))
4533
4537
  : (didHydrate = !1);
4534
- didHydrate || throwOnHydrationMismatch(fiber);
4538
+ didHydrate || throwOnHydrationMismatch(fiber, !0);
4535
4539
  }
4536
4540
  function popToNextHostParent(fiber) {
4537
4541
  for (hydrationParentFiber = fiber.return; hydrationParentFiber; )
@@ -11462,7 +11466,7 @@
11462
11466
  checkForUnmatchedText(current.nodeValue, renderLanes)
11463
11467
  ? !0
11464
11468
  : !1;
11465
- current || throwOnHydrationMismatch(workInProgress);
11469
+ current || throwOnHydrationMismatch(workInProgress, !0);
11466
11470
  } else
11467
11471
  (_type = renderLanes.ancestorInfo.current),
11468
11472
  null != _type &&
@@ -16115,7 +16119,9 @@
16115
16119
  mightHavePendingSyncWork = !0;
16116
16120
  root = next;
16117
16121
  }
16118
- flushSyncWorkAcrossRoots_impl(syncTransitionLanes, !1);
16122
+ (pendingEffectsStatus !== NO_PENDING_EFFECTS &&
16123
+ pendingEffectsStatus !== PENDING_PASSIVE_PHASE) ||
16124
+ flushSyncWorkAcrossRoots_impl(syncTransitionLanes, !1);
16119
16125
  }
16120
16126
  function scheduleTaskForRootDuringMicrotask(root, currentTime) {
16121
16127
  for (
@@ -24836,11 +24842,11 @@
24836
24842
  };
24837
24843
  (function () {
24838
24844
  var isomorphicReactPackageVersion = React.version;
24839
- if ("19.1.0-canary-313332d1-20250326" !== isomorphicReactPackageVersion)
24845
+ if ("19.1.0-canary-4280563b-20250326" !== isomorphicReactPackageVersion)
24840
24846
  throw Error(
24841
24847
  'Incompatible React versions: The "react" and "react-dom" packages must have the exact same version. Instead got:\n - react: ' +
24842
24848
  (isomorphicReactPackageVersion +
24843
- "\n - react-dom: 19.1.0-canary-313332d1-20250326\nLearn more: https://react.dev/warnings/version-mismatch")
24849
+ "\n - react-dom: 19.1.0-canary-4280563b-20250326\nLearn more: https://react.dev/warnings/version-mismatch")
24844
24850
  );
24845
24851
  })();
24846
24852
  ("function" === typeof Map &&
@@ -24877,10 +24883,10 @@
24877
24883
  !(function () {
24878
24884
  var internals = {
24879
24885
  bundleType: 1,
24880
- version: "19.1.0-canary-313332d1-20250326",
24886
+ version: "19.1.0-canary-4280563b-20250326",
24881
24887
  rendererPackageName: "react-dom",
24882
24888
  currentDispatcherRef: ReactSharedInternals,
24883
- reconcilerVersion: "19.1.0-canary-313332d1-20250326"
24889
+ reconcilerVersion: "19.1.0-canary-4280563b-20250326"
24884
24890
  };
24885
24891
  internals.overrideHookState = overrideHookState;
24886
24892
  internals.overrideHookStateDeletePath = overrideHookStateDeletePath;
@@ -25354,7 +25360,7 @@
25354
25360
  exports.useFormStatus = function () {
25355
25361
  return resolveDispatcher().useHostTransitionStatus();
25356
25362
  };
25357
- exports.version = "19.1.0-canary-313332d1-20250326";
25363
+ exports.version = "19.1.0-canary-4280563b-20250326";
25358
25364
  "undefined" !== typeof __REACT_DEVTOOLS_GLOBAL_HOOK__ &&
25359
25365
  "function" ===
25360
25366
  typeof __REACT_DEVTOOLS_GLOBAL_HOOK__.registerInternalModuleStop &&
@@ -2758,7 +2758,15 @@ var hydrationParentFiber = null,
2758
2758
  rootOrSingletonContext = !1,
2759
2759
  HydrationMismatchException = Error(formatProdErrorMessage(519));
2760
2760
  function throwOnHydrationMismatch(fiber) {
2761
- var error = Error(formatProdErrorMessage(418, ""));
2761
+ var error = Error(
2762
+ formatProdErrorMessage(
2763
+ 418,
2764
+ 1 < arguments.length && void 0 !== arguments[1] && arguments[1]
2765
+ ? "text"
2766
+ : "HTML",
2767
+ ""
2768
+ )
2769
+ );
2762
2770
  queueHydrationError(createCapturedValueAtFiber(error, fiber));
2763
2771
  throw HydrationMismatchException;
2764
2772
  }
@@ -2833,7 +2841,7 @@ function prepareToHydrateHostInstance(fiber) {
2833
2841
  null != props.onClick && (instance.onclick = noop$2),
2834
2842
  (instance = !0))
2835
2843
  : (instance = !1);
2836
- instance || throwOnHydrationMismatch(fiber);
2844
+ instance || throwOnHydrationMismatch(fiber, !0);
2837
2845
  }
2838
2846
  function popToNextHostParent(fiber) {
2839
2847
  for (hydrationParentFiber = fiber.return; hydrationParentFiber; )
@@ -8178,7 +8186,7 @@ function completeWork(current, workInProgress, renderLanes) {
8178
8186
  checkForUnmatchedText(current.nodeValue, renderLanes)
8179
8187
  ? !0
8180
8188
  : !1;
8181
- current || throwOnHydrationMismatch(workInProgress);
8189
+ current || throwOnHydrationMismatch(workInProgress, !0);
8182
8190
  } else
8183
8191
  (current =
8184
8192
  getOwnerDocumentFromRootContainer(current).createTextNode(
@@ -12156,7 +12164,8 @@ function processRootScheduleInMicrotask() {
12156
12164
  mightHavePendingSyncWork = !0;
12157
12165
  root = next;
12158
12166
  }
12159
- flushSyncWorkAcrossRoots_impl(syncTransitionLanes, !1);
12167
+ (0 !== pendingEffectsStatus && 5 !== pendingEffectsStatus) ||
12168
+ flushSyncWorkAcrossRoots_impl(syncTransitionLanes, !1);
12160
12169
  }
12161
12170
  function scheduleTaskForRootDuringMicrotask(root, currentTime) {
12162
12171
  for (
@@ -15896,14 +15905,14 @@ ReactDOMHydrationRoot.prototype.unstable_scheduleHydration = function (target) {
15896
15905
  };
15897
15906
  var isomorphicReactPackageVersion$jscomp$inline_1875 = React.version;
15898
15907
  if (
15899
- "19.1.0-canary-313332d1-20250326" !==
15908
+ "19.1.0-canary-4280563b-20250326" !==
15900
15909
  isomorphicReactPackageVersion$jscomp$inline_1875
15901
15910
  )
15902
15911
  throw Error(
15903
15912
  formatProdErrorMessage(
15904
15913
  527,
15905
15914
  isomorphicReactPackageVersion$jscomp$inline_1875,
15906
- "19.1.0-canary-313332d1-20250326"
15915
+ "19.1.0-canary-4280563b-20250326"
15907
15916
  )
15908
15917
  );
15909
15918
  ReactDOMSharedInternals.findDOMNode = function (componentOrElement) {
@@ -15925,10 +15934,10 @@ ReactDOMSharedInternals.findDOMNode = function (componentOrElement) {
15925
15934
  };
15926
15935
  var internals$jscomp$inline_1882 = {
15927
15936
  bundleType: 0,
15928
- version: "19.1.0-canary-313332d1-20250326",
15937
+ version: "19.1.0-canary-4280563b-20250326",
15929
15938
  rendererPackageName: "react-dom",
15930
15939
  currentDispatcherRef: ReactSharedInternals,
15931
- reconcilerVersion: "19.1.0-canary-313332d1-20250326",
15940
+ reconcilerVersion: "19.1.0-canary-4280563b-20250326",
15932
15941
  getLaneLabelMap: function () {
15933
15942
  for (
15934
15943
  var map = new Map(), lane = 1, index$282 = 0;
@@ -16208,7 +16217,7 @@ exports.useFormState = function (action, initialState, permalink) {
16208
16217
  exports.useFormStatus = function () {
16209
16218
  return ReactSharedInternals.H.useHostTransitionStatus();
16210
16219
  };
16211
- exports.version = "19.1.0-canary-313332d1-20250326";
16220
+ exports.version = "19.1.0-canary-4280563b-20250326";
16212
16221
  "undefined" !== typeof __REACT_DEVTOOLS_GLOBAL_HOOK__ &&
16213
16222
  "function" ===
16214
16223
  typeof __REACT_DEVTOOLS_GLOBAL_HOOK__.registerInternalModuleStop &&
@@ -9031,5 +9031,5 @@
9031
9031
  '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'
9032
9032
  );
9033
9033
  };
9034
- exports.version = "19.1.0-canary-313332d1-20250326";
9034
+ exports.version = "19.1.0-canary-4280563b-20250326";
9035
9035
  })();
@@ -5889,4 +5889,4 @@ exports.renderToString = function (children, options) {
5889
5889
  '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'
5890
5890
  );
5891
5891
  };
5892
- exports.version = "19.1.0-canary-313332d1-20250326";
5892
+ exports.version = "19.1.0-canary-4280563b-20250326";
@@ -9031,5 +9031,5 @@
9031
9031
  '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'
9032
9032
  );
9033
9033
  };
9034
- exports.version = "19.1.0-canary-313332d1-20250326";
9034
+ exports.version = "19.1.0-canary-4280563b-20250326";
9035
9035
  })();
@@ -5969,4 +5969,4 @@ exports.renderToString = function (children, options) {
5969
5969
  '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'
5970
5970
  );
5971
5971
  };
5972
- exports.version = "19.1.0-canary-313332d1-20250326";
5972
+ exports.version = "19.1.0-canary-4280563b-20250326";
@@ -7746,11 +7746,11 @@
7746
7746
  }
7747
7747
  function ensureCorrectIsomorphicReactVersion() {
7748
7748
  var isomorphicReactPackageVersion = React.version;
7749
- if ("19.1.0-canary-313332d1-20250326" !== isomorphicReactPackageVersion)
7749
+ if ("19.1.0-canary-4280563b-20250326" !== isomorphicReactPackageVersion)
7750
7750
  throw Error(
7751
7751
  'Incompatible React versions: The "react" and "react-dom" packages must have the exact same version. Instead got:\n - react: ' +
7752
7752
  (isomorphicReactPackageVersion +
7753
- "\n - react-dom: 19.1.0-canary-313332d1-20250326\nLearn more: https://react.dev/warnings/version-mismatch")
7753
+ "\n - react-dom: 19.1.0-canary-4280563b-20250326\nLearn more: https://react.dev/warnings/version-mismatch")
7754
7754
  );
7755
7755
  }
7756
7756
  var React = require("react"),
@@ -9420,5 +9420,5 @@
9420
9420
  startWork(request);
9421
9421
  });
9422
9422
  };
9423
- exports.version = "19.1.0-canary-313332d1-20250326";
9423
+ exports.version = "19.1.0-canary-4280563b-20250326";
9424
9424
  })();
@@ -6229,12 +6229,12 @@ function abort(request, reason) {
6229
6229
  }
6230
6230
  function ensureCorrectIsomorphicReactVersion() {
6231
6231
  var isomorphicReactPackageVersion = React.version;
6232
- if ("19.1.0-canary-313332d1-20250326" !== isomorphicReactPackageVersion)
6232
+ if ("19.1.0-canary-4280563b-20250326" !== isomorphicReactPackageVersion)
6233
6233
  throw Error(
6234
6234
  formatProdErrorMessage(
6235
6235
  527,
6236
6236
  isomorphicReactPackageVersion,
6237
- "19.1.0-canary-313332d1-20250326"
6237
+ "19.1.0-canary-4280563b-20250326"
6238
6238
  )
6239
6239
  );
6240
6240
  }
@@ -6381,4 +6381,4 @@ exports.renderToReadableStream = function (children, options) {
6381
6381
  startWork(request);
6382
6382
  });
6383
6383
  };
6384
- exports.version = "19.1.0-canary-313332d1-20250326";
6384
+ exports.version = "19.1.0-canary-4280563b-20250326";
@@ -8637,13 +8637,13 @@ function abort(request, reason) {
8637
8637
  }
8638
8638
  var isomorphicReactPackageVersion$jscomp$inline_743 = React.version;
8639
8639
  if (
8640
- "19.1.0-canary-313332d1-20250326" !==
8640
+ "19.1.0-canary-4280563b-20250326" !==
8641
8641
  isomorphicReactPackageVersion$jscomp$inline_743
8642
8642
  )
8643
8643
  throw Error(
8644
8644
  'Incompatible React versions: The "react" and "react-dom" packages must have the exact same version. Instead got:\n - react: ' +
8645
8645
  (isomorphicReactPackageVersion$jscomp$inline_743 +
8646
- "\n - react-dom: 19.1.0-canary-313332d1-20250326\nLearn more: https://react.dev/warnings/version-mismatch")
8646
+ "\n - react-dom: 19.1.0-canary-4280563b-20250326\nLearn more: https://react.dev/warnings/version-mismatch")
8647
8647
  );
8648
8648
  exports.renderToReadableStream = function (children, options) {
8649
8649
  return new Promise(function (resolve, reject) {
@@ -8736,4 +8736,4 @@ exports.renderToReadableStream = function (children, options) {
8736
8736
  startWork(request$jscomp$0);
8737
8737
  });
8738
8738
  };
8739
- exports.version = "19.1.0-canary-313332d1-20250326";
8739
+ exports.version = "19.1.0-canary-4280563b-20250326";
@@ -5867,13 +5867,13 @@ function abort(request, reason) {
5867
5867
  }
5868
5868
  var isomorphicReactPackageVersion$jscomp$inline_761 = React.version;
5869
5869
  if (
5870
- "19.1.0-canary-313332d1-20250326" !==
5870
+ "19.1.0-canary-4280563b-20250326" !==
5871
5871
  isomorphicReactPackageVersion$jscomp$inline_761
5872
5872
  )
5873
5873
  throw Error(
5874
5874
  'Incompatible React versions: The "react" and "react-dom" packages must have the exact same version. Instead got:\n - react: ' +
5875
5875
  (isomorphicReactPackageVersion$jscomp$inline_761 +
5876
- "\n - react-dom: 19.1.0-canary-313332d1-20250326\nLearn more: https://react.dev/warnings/version-mismatch")
5876
+ "\n - react-dom: 19.1.0-canary-4280563b-20250326\nLearn more: https://react.dev/warnings/version-mismatch")
5877
5877
  );
5878
5878
  exports.renderToReadableStream = function (children, options) {
5879
5879
  return new Promise(function (resolve, reject) {
@@ -5964,4 +5964,4 @@ exports.renderToReadableStream = function (children, options) {
5964
5964
  startWork(request);
5965
5965
  });
5966
5966
  };
5967
- exports.version = "19.1.0-canary-313332d1-20250326";
5967
+ exports.version = "19.1.0-canary-4280563b-20250326";
@@ -7769,11 +7769,11 @@
7769
7769
  }
7770
7770
  function ensureCorrectIsomorphicReactVersion() {
7771
7771
  var isomorphicReactPackageVersion = React.version;
7772
- if ("19.1.0-canary-313332d1-20250326" !== isomorphicReactPackageVersion)
7772
+ if ("19.1.0-canary-4280563b-20250326" !== isomorphicReactPackageVersion)
7773
7773
  throw Error(
7774
7774
  'Incompatible React versions: The "react" and "react-dom" packages must have the exact same version. Instead got:\n - react: ' +
7775
7775
  (isomorphicReactPackageVersion +
7776
- "\n - react-dom: 19.1.0-canary-313332d1-20250326\nLearn more: https://react.dev/warnings/version-mismatch")
7776
+ "\n - react-dom: 19.1.0-canary-4280563b-20250326\nLearn more: https://react.dev/warnings/version-mismatch")
7777
7777
  );
7778
7778
  }
7779
7779
  var React = require("react"),
@@ -9439,5 +9439,5 @@
9439
9439
  startWork(request);
9440
9440
  });
9441
9441
  };
9442
- exports.version = "19.1.0-canary-313332d1-20250326";
9442
+ exports.version = "19.1.0-canary-4280563b-20250326";
9443
9443
  })();
@@ -6324,11 +6324,11 @@ function abort(request, reason) {
6324
6324
  }
6325
6325
  function ensureCorrectIsomorphicReactVersion() {
6326
6326
  var isomorphicReactPackageVersion = React.version;
6327
- if ("19.1.0-canary-313332d1-20250326" !== isomorphicReactPackageVersion)
6327
+ if ("19.1.0-canary-4280563b-20250326" !== isomorphicReactPackageVersion)
6328
6328
  throw Error(
6329
6329
  'Incompatible React versions: The "react" and "react-dom" packages must have the exact same version. Instead got:\n - react: ' +
6330
6330
  (isomorphicReactPackageVersion +
6331
- "\n - react-dom: 19.1.0-canary-313332d1-20250326\nLearn more: https://react.dev/warnings/version-mismatch")
6331
+ "\n - react-dom: 19.1.0-canary-4280563b-20250326\nLearn more: https://react.dev/warnings/version-mismatch")
6332
6332
  );
6333
6333
  }
6334
6334
  ensureCorrectIsomorphicReactVersion();
@@ -6474,4 +6474,4 @@ exports.renderToReadableStream = function (children, options) {
6474
6474
  startWork(request);
6475
6475
  });
6476
6476
  };
6477
- exports.version = "19.1.0-canary-313332d1-20250326";
6477
+ exports.version = "19.1.0-canary-4280563b-20250326";
@@ -7644,11 +7644,11 @@
7644
7644
  }
7645
7645
  function ensureCorrectIsomorphicReactVersion() {
7646
7646
  var isomorphicReactPackageVersion = React.version;
7647
- if ("19.1.0-canary-313332d1-20250326" !== isomorphicReactPackageVersion)
7647
+ if ("19.1.0-canary-4280563b-20250326" !== isomorphicReactPackageVersion)
7648
7648
  throw Error(
7649
7649
  'Incompatible React versions: The "react" and "react-dom" packages must have the exact same version. Instead got:\n - react: ' +
7650
7650
  (isomorphicReactPackageVersion +
7651
- "\n - react-dom: 19.1.0-canary-313332d1-20250326\nLearn more: https://react.dev/warnings/version-mismatch")
7651
+ "\n - react-dom: 19.1.0-canary-4280563b-20250326\nLearn more: https://react.dev/warnings/version-mismatch")
7652
7652
  );
7653
7653
  }
7654
7654
  function createDrainHandler(destination, request) {
@@ -9313,5 +9313,5 @@
9313
9313
  }
9314
9314
  };
9315
9315
  };
9316
- exports.version = "19.1.0-canary-313332d1-20250326";
9316
+ exports.version = "19.1.0-canary-4280563b-20250326";
9317
9317
  })();
@@ -6216,11 +6216,11 @@ function abort(request, reason) {
6216
6216
  }
6217
6217
  function ensureCorrectIsomorphicReactVersion() {
6218
6218
  var isomorphicReactPackageVersion = React.version;
6219
- if ("19.1.0-canary-313332d1-20250326" !== isomorphicReactPackageVersion)
6219
+ if ("19.1.0-canary-4280563b-20250326" !== isomorphicReactPackageVersion)
6220
6220
  throw Error(
6221
6221
  'Incompatible React versions: The "react" and "react-dom" packages must have the exact same version. Instead got:\n - react: ' +
6222
6222
  (isomorphicReactPackageVersion +
6223
- "\n - react-dom: 19.1.0-canary-313332d1-20250326\nLearn more: https://react.dev/warnings/version-mismatch")
6223
+ "\n - react-dom: 19.1.0-canary-4280563b-20250326\nLearn more: https://react.dev/warnings/version-mismatch")
6224
6224
  );
6225
6225
  }
6226
6226
  ensureCorrectIsomorphicReactVersion();
@@ -6369,4 +6369,4 @@ exports.renderToPipeableStream = function (children, options) {
6369
6369
  }
6370
6370
  };
6371
6371
  };
6372
- exports.version = "19.1.0-canary-313332d1-20250326";
6372
+ exports.version = "19.1.0-canary-4280563b-20250326";
@@ -416,7 +416,7 @@
416
416
  exports.useFormStatus = function () {
417
417
  return resolveDispatcher().useHostTransitionStatus();
418
418
  };
419
- exports.version = "19.1.0-canary-313332d1-20250326";
419
+ exports.version = "19.1.0-canary-4280563b-20250326";
420
420
  "undefined" !== typeof __REACT_DEVTOOLS_GLOBAL_HOOK__ &&
421
421
  "function" ===
422
422
  typeof __REACT_DEVTOOLS_GLOBAL_HOOK__.registerInternalModuleStop &&
@@ -207,4 +207,4 @@ exports.useFormState = function (action, initialState, permalink) {
207
207
  exports.useFormStatus = function () {
208
208
  return ReactSharedInternals.H.useHostTransitionStatus();
209
209
  };
210
- exports.version = "19.1.0-canary-313332d1-20250326";
210
+ exports.version = "19.1.0-canary-4280563b-20250326";
@@ -336,5 +336,5 @@
336
336
  }))
337
337
  : Internals.d.m(href));
338
338
  };
339
- exports.version = "19.1.0-canary-313332d1-20250326";
339
+ exports.version = "19.1.0-canary-4280563b-20250326";
340
340
  })();
@@ -149,4 +149,4 @@ exports.preloadModule = function (href, options) {
149
149
  });
150
150
  } else Internals.d.m(href);
151
151
  };
152
- exports.version = "19.1.0-canary-313332d1-20250326";
152
+ exports.version = "19.1.0-canary-4280563b-20250326";
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "react-dom",
3
- "version": "19.1.0-canary-313332d1-20250326",
3
+ "version": "19.1.0-canary-4280563b-20250326",
4
4
  "description": "React package for working with the DOM.",
5
5
  "main": "index.js",
6
6
  "repository": {
@@ -17,10 +17,10 @@
17
17
  },
18
18
  "homepage": "https://react.dev/",
19
19
  "dependencies": {
20
- "scheduler": "0.26.0-canary-313332d1-20250326"
20
+ "scheduler": "0.26.0-canary-4280563b-20250326"
21
21
  },
22
22
  "peerDependencies": {
23
- "react": "19.1.0-canary-313332d1-20250326"
23
+ "react": "19.1.0-canary-4280563b-20250326"
24
24
  },
25
25
  "files": [
26
26
  "LICENSE",