react-dom 19.1.0-canary-2980f277-20250301 → 19.1.0-canary-443b7ff2-20250303

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.
@@ -17099,9 +17099,10 @@
17099
17099
  listeners.push(
17100
17100
  createDispatchListener(targetFiber, _instance3, stateNode)
17101
17101
  ));
17102
+ if (3 === targetFiber.tag) return listeners;
17102
17103
  targetFiber = targetFiber.return;
17103
17104
  }
17104
- return listeners;
17105
+ return [];
17105
17106
  }
17106
17107
  function getParent(inst) {
17107
17108
  if (null === inst) return null;
@@ -22527,10 +22528,11 @@
22527
22528
  TRANSITION_END = getVendorPrefixedEventName("transitionend"),
22528
22529
  topLevelEventsToReactNames = new Map(),
22529
22530
  simpleEventPluginEvents =
22530
- "abort auxClick beforeToggle cancel canPlay canPlayThrough click close contextMenu copy cut drag dragEnd dragEnter dragExit dragLeave dragOver dragStart drop durationChange emptied encrypted ended error gotPointerCapture input invalid keyDown keyPress keyUp load loadedData loadedMetadata loadStart lostPointerCapture mouseDown mouseMove mouseOut mouseOver mouseUp paste pause play playing pointerCancel pointerDown pointerMove pointerOut pointerOver pointerUp progress rateChange reset resize seeked seeking stalled submit suspend timeUpdate touchCancel touchEnd touchStart volumeChange scroll scrollEnd toggle touchMove waiting wheel".split(
22531
+ "abort auxClick beforeToggle cancel canPlay canPlayThrough click close contextMenu copy cut drag dragEnd dragEnter dragExit dragLeave dragOver dragStart drop durationChange emptied encrypted ended error gotPointerCapture input invalid keyDown keyPress keyUp load loadedData loadedMetadata loadStart lostPointerCapture mouseDown mouseMove mouseOut mouseOver mouseUp paste pause play playing pointerCancel pointerDown pointerMove pointerOut pointerOver pointerUp progress rateChange reset resize seeked seeking stalled submit suspend timeUpdate touchCancel touchEnd touchStart volumeChange scroll toggle touchMove waiting wheel".split(
22531
22532
  " "
22532
- ),
22533
- CapturedStacks = new WeakMap(),
22533
+ );
22534
+ simpleEventPluginEvents.push("scrollEnd");
22535
+ var CapturedStacks = new WeakMap(),
22534
22536
  OffscreenVisible = 1,
22535
22537
  OffscreenDetached = 2,
22536
22538
  OffscreenPassiveEffectsConnected = 4,
@@ -24833,11 +24835,11 @@
24833
24835
  };
24834
24836
  (function () {
24835
24837
  var isomorphicReactPackageVersion = React.version;
24836
- if ("19.1.0-canary-2980f277-20250301" !== isomorphicReactPackageVersion)
24838
+ if ("19.1.0-canary-443b7ff2-20250303" !== isomorphicReactPackageVersion)
24837
24839
  throw Error(
24838
24840
  'Incompatible React versions: The "react" and "react-dom" packages must have the exact same version. Instead got:\n - react: ' +
24839
24841
  (isomorphicReactPackageVersion +
24840
- "\n - react-dom: 19.1.0-canary-2980f277-20250301\nLearn more: https://react.dev/warnings/version-mismatch")
24842
+ "\n - react-dom: 19.1.0-canary-443b7ff2-20250303\nLearn more: https://react.dev/warnings/version-mismatch")
24841
24843
  );
24842
24844
  })();
24843
24845
  ("function" === typeof Map &&
@@ -24874,10 +24876,10 @@
24874
24876
  !(function () {
24875
24877
  var internals = {
24876
24878
  bundleType: 1,
24877
- version: "19.1.0-canary-2980f277-20250301",
24879
+ version: "19.1.0-canary-443b7ff2-20250303",
24878
24880
  rendererPackageName: "react-dom",
24879
24881
  currentDispatcherRef: ReactSharedInternals,
24880
- reconcilerVersion: "19.1.0-canary-2980f277-20250301"
24882
+ reconcilerVersion: "19.1.0-canary-443b7ff2-20250303"
24881
24883
  };
24882
24884
  internals.overrideHookState = overrideHookState;
24883
24885
  internals.overrideHookStateDeletePath = overrideHookStateDeletePath;
@@ -25021,7 +25023,7 @@
25021
25023
  listenToAllSupportedEvents(container);
25022
25024
  return new ReactDOMHydrationRoot(initialChildren);
25023
25025
  };
25024
- exports.version = "19.1.0-canary-2980f277-20250301";
25026
+ exports.version = "19.1.0-canary-443b7ff2-20250303";
25025
25027
  "undefined" !== typeof __REACT_DEVTOOLS_GLOBAL_HOOK__ &&
25026
25028
  "function" ===
25027
25029
  typeof __REACT_DEVTOOLS_GLOBAL_HOOK__.registerInternalModuleStop &&
@@ -2264,9 +2264,10 @@ var ANIMATION_END = getVendorPrefixedEventName("animationend"),
2264
2264
  TRANSITION_END = getVendorPrefixedEventName("transitionend"),
2265
2265
  topLevelEventsToReactNames = new Map(),
2266
2266
  simpleEventPluginEvents =
2267
- "abort auxClick beforeToggle cancel canPlay canPlayThrough click close contextMenu copy cut drag dragEnd dragEnter dragExit dragLeave dragOver dragStart drop durationChange emptied encrypted ended error gotPointerCapture input invalid keyDown keyPress keyUp load loadedData loadedMetadata loadStart lostPointerCapture mouseDown mouseMove mouseOut mouseOver mouseUp paste pause play playing pointerCancel pointerDown pointerMove pointerOut pointerOver pointerUp progress rateChange reset resize seeked seeking stalled submit suspend timeUpdate touchCancel touchEnd touchStart volumeChange scroll scrollEnd toggle touchMove waiting wheel".split(
2267
+ "abort auxClick beforeToggle cancel canPlay canPlayThrough click close contextMenu copy cut drag dragEnd dragEnter dragExit dragLeave dragOver dragStart drop durationChange emptied encrypted ended error gotPointerCapture input invalid keyDown keyPress keyUp load loadedData loadedMetadata loadStart lostPointerCapture mouseDown mouseMove mouseOut mouseOver mouseUp paste pause play playing pointerCancel pointerDown pointerMove pointerOut pointerOver pointerUp progress rateChange reset resize seeked seeking stalled submit suspend timeUpdate touchCancel touchEnd touchStart volumeChange scroll toggle touchMove waiting wheel".split(
2268
2268
  " "
2269
2269
  );
2270
+ simpleEventPluginEvents.push("scrollEnd");
2270
2271
  function registerSimpleEvent(domEventName, reactName) {
2271
2272
  topLevelEventsToReactNames.set(domEventName, reactName);
2272
2273
  registerTwoPhaseEvent(reactName, [domEventName]);
@@ -12507,9 +12508,10 @@ function accumulateTwoPhaseListeners(targetFiber, reactName) {
12507
12508
  listeners.push(
12508
12509
  createDispatchListener(targetFiber, _instance2, stateNode)
12509
12510
  ));
12511
+ if (3 === targetFiber.tag) return listeners;
12510
12512
  targetFiber = targetFiber.return;
12511
12513
  }
12512
- return listeners;
12514
+ return [];
12513
12515
  }
12514
12516
  function getParent(inst) {
12515
12517
  if (null === inst) return null;
@@ -15320,14 +15322,14 @@ ReactDOMHydrationRoot.prototype.unstable_scheduleHydration = function (target) {
15320
15322
  };
15321
15323
  var isomorphicReactPackageVersion$jscomp$inline_1788 = React.version;
15322
15324
  if (
15323
- "19.1.0-canary-2980f277-20250301" !==
15325
+ "19.1.0-canary-443b7ff2-20250303" !==
15324
15326
  isomorphicReactPackageVersion$jscomp$inline_1788
15325
15327
  )
15326
15328
  throw Error(
15327
15329
  formatProdErrorMessage(
15328
15330
  527,
15329
15331
  isomorphicReactPackageVersion$jscomp$inline_1788,
15330
- "19.1.0-canary-2980f277-20250301"
15332
+ "19.1.0-canary-443b7ff2-20250303"
15331
15333
  )
15332
15334
  );
15333
15335
  ReactDOMSharedInternals.findDOMNode = function (componentOrElement) {
@@ -15349,10 +15351,10 @@ ReactDOMSharedInternals.findDOMNode = function (componentOrElement) {
15349
15351
  };
15350
15352
  var internals$jscomp$inline_2280 = {
15351
15353
  bundleType: 0,
15352
- version: "19.1.0-canary-2980f277-20250301",
15354
+ version: "19.1.0-canary-443b7ff2-20250303",
15353
15355
  rendererPackageName: "react-dom",
15354
15356
  currentDispatcherRef: ReactSharedInternals,
15355
- reconcilerVersion: "19.1.0-canary-2980f277-20250301"
15357
+ reconcilerVersion: "19.1.0-canary-443b7ff2-20250303"
15356
15358
  };
15357
15359
  if ("undefined" !== typeof __REACT_DEVTOOLS_GLOBAL_HOOK__) {
15358
15360
  var hook$jscomp$inline_2281 = __REACT_DEVTOOLS_GLOBAL_HOOK__;
@@ -15456,4 +15458,4 @@ exports.hydrateRoot = function (container, initialChildren, options) {
15456
15458
  listenToAllSupportedEvents(container);
15457
15459
  return new ReactDOMHydrationRoot(initialChildren);
15458
15460
  };
15459
- exports.version = "19.1.0-canary-2980f277-20250301";
15461
+ exports.version = "19.1.0-canary-443b7ff2-20250303";
@@ -17111,9 +17111,10 @@
17111
17111
  listeners.push(
17112
17112
  createDispatchListener(targetFiber, _instance3, stateNode)
17113
17113
  ));
17114
+ if (3 === targetFiber.tag) return listeners;
17114
17115
  targetFiber = targetFiber.return;
17115
17116
  }
17116
- return listeners;
17117
+ return [];
17117
17118
  }
17118
17119
  function getParent(inst) {
17119
17120
  if (null === inst) return null;
@@ -22584,10 +22585,11 @@
22584
22585
  TRANSITION_END = getVendorPrefixedEventName("transitionend"),
22585
22586
  topLevelEventsToReactNames = new Map(),
22586
22587
  simpleEventPluginEvents =
22587
- "abort auxClick beforeToggle cancel canPlay canPlayThrough click close contextMenu copy cut drag dragEnd dragEnter dragExit dragLeave dragOver dragStart drop durationChange emptied encrypted ended error gotPointerCapture input invalid keyDown keyPress keyUp load loadedData loadedMetadata loadStart lostPointerCapture mouseDown mouseMove mouseOut mouseOver mouseUp paste pause play playing pointerCancel pointerDown pointerMove pointerOut pointerOver pointerUp progress rateChange reset resize seeked seeking stalled submit suspend timeUpdate touchCancel touchEnd touchStart volumeChange scroll scrollEnd toggle touchMove waiting wheel".split(
22588
+ "abort auxClick beforeToggle cancel canPlay canPlayThrough click close contextMenu copy cut drag dragEnd dragEnter dragExit dragLeave dragOver dragStart drop durationChange emptied encrypted ended error gotPointerCapture input invalid keyDown keyPress keyUp load loadedData loadedMetadata loadStart lostPointerCapture mouseDown mouseMove mouseOut mouseOver mouseUp paste pause play playing pointerCancel pointerDown pointerMove pointerOut pointerOver pointerUp progress rateChange reset resize seeked seeking stalled submit suspend timeUpdate touchCancel touchEnd touchStart volumeChange scroll toggle touchMove waiting wheel".split(
22588
22589
  " "
22589
- ),
22590
- CapturedStacks = new WeakMap(),
22590
+ );
22591
+ simpleEventPluginEvents.push("scrollEnd");
22592
+ var CapturedStacks = new WeakMap(),
22591
22593
  OffscreenVisible = 1,
22592
22594
  OffscreenDetached = 2,
22593
22595
  OffscreenPassiveEffectsConnected = 4,
@@ -24890,11 +24892,11 @@
24890
24892
  };
24891
24893
  (function () {
24892
24894
  var isomorphicReactPackageVersion = React.version;
24893
- if ("19.1.0-canary-2980f277-20250301" !== isomorphicReactPackageVersion)
24895
+ if ("19.1.0-canary-443b7ff2-20250303" !== isomorphicReactPackageVersion)
24894
24896
  throw Error(
24895
24897
  'Incompatible React versions: The "react" and "react-dom" packages must have the exact same version. Instead got:\n - react: ' +
24896
24898
  (isomorphicReactPackageVersion +
24897
- "\n - react-dom: 19.1.0-canary-2980f277-20250301\nLearn more: https://react.dev/warnings/version-mismatch")
24899
+ "\n - react-dom: 19.1.0-canary-443b7ff2-20250303\nLearn more: https://react.dev/warnings/version-mismatch")
24898
24900
  );
24899
24901
  })();
24900
24902
  ("function" === typeof Map &&
@@ -24931,10 +24933,10 @@
24931
24933
  !(function () {
24932
24934
  var internals = {
24933
24935
  bundleType: 1,
24934
- version: "19.1.0-canary-2980f277-20250301",
24936
+ version: "19.1.0-canary-443b7ff2-20250303",
24935
24937
  rendererPackageName: "react-dom",
24936
24938
  currentDispatcherRef: ReactSharedInternals,
24937
- reconcilerVersion: "19.1.0-canary-2980f277-20250301"
24939
+ reconcilerVersion: "19.1.0-canary-443b7ff2-20250303"
24938
24940
  };
24939
24941
  internals.overrideHookState = overrideHookState;
24940
24942
  internals.overrideHookStateDeletePath = overrideHookStateDeletePath;
@@ -25408,7 +25410,7 @@
25408
25410
  exports.useFormStatus = function () {
25409
25411
  return resolveDispatcher().useHostTransitionStatus();
25410
25412
  };
25411
- exports.version = "19.1.0-canary-2980f277-20250301";
25413
+ exports.version = "19.1.0-canary-443b7ff2-20250303";
25412
25414
  "undefined" !== typeof __REACT_DEVTOOLS_GLOBAL_HOOK__ &&
25413
25415
  "function" ===
25414
25416
  typeof __REACT_DEVTOOLS_GLOBAL_HOOK__.registerInternalModuleStop &&
@@ -2346,9 +2346,10 @@ var ANIMATION_END = getVendorPrefixedEventName("animationend"),
2346
2346
  TRANSITION_END = getVendorPrefixedEventName("transitionend"),
2347
2347
  topLevelEventsToReactNames = new Map(),
2348
2348
  simpleEventPluginEvents =
2349
- "abort auxClick beforeToggle cancel canPlay canPlayThrough click close contextMenu copy cut drag dragEnd dragEnter dragExit dragLeave dragOver dragStart drop durationChange emptied encrypted ended error gotPointerCapture input invalid keyDown keyPress keyUp load loadedData loadedMetadata loadStart lostPointerCapture mouseDown mouseMove mouseOut mouseOver mouseUp paste pause play playing pointerCancel pointerDown pointerMove pointerOut pointerOver pointerUp progress rateChange reset resize seeked seeking stalled submit suspend timeUpdate touchCancel touchEnd touchStart volumeChange scroll scrollEnd toggle touchMove waiting wheel".split(
2349
+ "abort auxClick beforeToggle cancel canPlay canPlayThrough click close contextMenu copy cut drag dragEnd dragEnter dragExit dragLeave dragOver dragStart drop durationChange emptied encrypted ended error gotPointerCapture input invalid keyDown keyPress keyUp load loadedData loadedMetadata loadStart lostPointerCapture mouseDown mouseMove mouseOut mouseOver mouseUp paste pause play playing pointerCancel pointerDown pointerMove pointerOut pointerOver pointerUp progress rateChange reset resize seeked seeking stalled submit suspend timeUpdate touchCancel touchEnd touchStart volumeChange scroll toggle touchMove waiting wheel".split(
2350
2350
  " "
2351
2351
  );
2352
+ simpleEventPluginEvents.push("scrollEnd");
2352
2353
  function registerSimpleEvent(domEventName, reactName) {
2353
2354
  topLevelEventsToReactNames.set(domEventName, reactName);
2354
2355
  registerTwoPhaseEvent(reactName, [domEventName]);
@@ -13136,9 +13137,10 @@ function accumulateTwoPhaseListeners(targetFiber, reactName) {
13136
13137
  listeners.push(
13137
13138
  createDispatchListener(targetFiber, _instance2, stateNode)
13138
13139
  ));
13140
+ if (3 === targetFiber.tag) return listeners;
13139
13141
  targetFiber = targetFiber.return;
13140
13142
  }
13141
- return listeners;
13143
+ return [];
13142
13144
  }
13143
13145
  function getParent(inst) {
13144
13146
  if (null === inst) return null;
@@ -15968,14 +15970,14 @@ ReactDOMHydrationRoot.prototype.unstable_scheduleHydration = function (target) {
15968
15970
  };
15969
15971
  var isomorphicReactPackageVersion$jscomp$inline_1884 = React.version;
15970
15972
  if (
15971
- "19.1.0-canary-2980f277-20250301" !==
15973
+ "19.1.0-canary-443b7ff2-20250303" !==
15972
15974
  isomorphicReactPackageVersion$jscomp$inline_1884
15973
15975
  )
15974
15976
  throw Error(
15975
15977
  formatProdErrorMessage(
15976
15978
  527,
15977
15979
  isomorphicReactPackageVersion$jscomp$inline_1884,
15978
- "19.1.0-canary-2980f277-20250301"
15980
+ "19.1.0-canary-443b7ff2-20250303"
15979
15981
  )
15980
15982
  );
15981
15983
  ReactDOMSharedInternals.findDOMNode = function (componentOrElement) {
@@ -15997,10 +15999,10 @@ ReactDOMSharedInternals.findDOMNode = function (componentOrElement) {
15997
15999
  };
15998
16000
  var internals$jscomp$inline_1891 = {
15999
16001
  bundleType: 0,
16000
- version: "19.1.0-canary-2980f277-20250301",
16002
+ version: "19.1.0-canary-443b7ff2-20250303",
16001
16003
  rendererPackageName: "react-dom",
16002
16004
  currentDispatcherRef: ReactSharedInternals,
16003
- reconcilerVersion: "19.1.0-canary-2980f277-20250301",
16005
+ reconcilerVersion: "19.1.0-canary-443b7ff2-20250303",
16004
16006
  getLaneLabelMap: function () {
16005
16007
  for (
16006
16008
  var map = new Map(), lane = 1, index$281 = 0;
@@ -16280,7 +16282,7 @@ exports.useFormState = function (action, initialState, permalink) {
16280
16282
  exports.useFormStatus = function () {
16281
16283
  return ReactSharedInternals.H.useHostTransitionStatus();
16282
16284
  };
16283
- exports.version = "19.1.0-canary-2980f277-20250301";
16285
+ exports.version = "19.1.0-canary-443b7ff2-20250303";
16284
16286
  "undefined" !== typeof __REACT_DEVTOOLS_GLOBAL_HOOK__ &&
16285
16287
  "function" ===
16286
16288
  typeof __REACT_DEVTOOLS_GLOBAL_HOOK__.registerInternalModuleStop &&
@@ -9010,5 +9010,5 @@
9010
9010
  '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'
9011
9011
  );
9012
9012
  };
9013
- exports.version = "19.1.0-canary-2980f277-20250301";
9013
+ exports.version = "19.1.0-canary-443b7ff2-20250303";
9014
9014
  })();
@@ -5887,4 +5887,4 @@ exports.renderToString = function (children, options) {
5887
5887
  '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'
5888
5888
  );
5889
5889
  };
5890
- exports.version = "19.1.0-canary-2980f277-20250301";
5890
+ exports.version = "19.1.0-canary-443b7ff2-20250303";
@@ -9010,5 +9010,5 @@
9010
9010
  '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'
9011
9011
  );
9012
9012
  };
9013
- exports.version = "19.1.0-canary-2980f277-20250301";
9013
+ exports.version = "19.1.0-canary-443b7ff2-20250303";
9014
9014
  })();
@@ -5967,4 +5967,4 @@ exports.renderToString = function (children, options) {
5967
5967
  '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'
5968
5968
  );
5969
5969
  };
5970
- exports.version = "19.1.0-canary-2980f277-20250301";
5970
+ exports.version = "19.1.0-canary-443b7ff2-20250303";
@@ -7740,11 +7740,11 @@
7740
7740
  }
7741
7741
  function ensureCorrectIsomorphicReactVersion() {
7742
7742
  var isomorphicReactPackageVersion = React.version;
7743
- if ("19.1.0-canary-2980f277-20250301" !== isomorphicReactPackageVersion)
7743
+ if ("19.1.0-canary-443b7ff2-20250303" !== isomorphicReactPackageVersion)
7744
7744
  throw Error(
7745
7745
  'Incompatible React versions: The "react" and "react-dom" packages must have the exact same version. Instead got:\n - react: ' +
7746
7746
  (isomorphicReactPackageVersion +
7747
- "\n - react-dom: 19.1.0-canary-2980f277-20250301\nLearn more: https://react.dev/warnings/version-mismatch")
7747
+ "\n - react-dom: 19.1.0-canary-443b7ff2-20250303\nLearn more: https://react.dev/warnings/version-mismatch")
7748
7748
  );
7749
7749
  }
7750
7750
  var React = require("react"),
@@ -9399,5 +9399,5 @@
9399
9399
  startWork(request);
9400
9400
  });
9401
9401
  };
9402
- exports.version = "19.1.0-canary-2980f277-20250301";
9402
+ exports.version = "19.1.0-canary-443b7ff2-20250303";
9403
9403
  })();
@@ -6227,12 +6227,12 @@ function abort(request, reason) {
6227
6227
  }
6228
6228
  function ensureCorrectIsomorphicReactVersion() {
6229
6229
  var isomorphicReactPackageVersion = React.version;
6230
- if ("19.1.0-canary-2980f277-20250301" !== isomorphicReactPackageVersion)
6230
+ if ("19.1.0-canary-443b7ff2-20250303" !== isomorphicReactPackageVersion)
6231
6231
  throw Error(
6232
6232
  formatProdErrorMessage(
6233
6233
  527,
6234
6234
  isomorphicReactPackageVersion,
6235
- "19.1.0-canary-2980f277-20250301"
6235
+ "19.1.0-canary-443b7ff2-20250303"
6236
6236
  )
6237
6237
  );
6238
6238
  }
@@ -6379,4 +6379,4 @@ exports.renderToReadableStream = function (children, options) {
6379
6379
  startWork(request);
6380
6380
  });
6381
6381
  };
6382
- exports.version = "19.1.0-canary-2980f277-20250301";
6382
+ exports.version = "19.1.0-canary-443b7ff2-20250303";
@@ -8618,13 +8618,13 @@ function abort(request, reason) {
8618
8618
  }
8619
8619
  var isomorphicReactPackageVersion$jscomp$inline_740 = React.version;
8620
8620
  if (
8621
- "19.1.0-canary-2980f277-20250301" !==
8621
+ "19.1.0-canary-443b7ff2-20250303" !==
8622
8622
  isomorphicReactPackageVersion$jscomp$inline_740
8623
8623
  )
8624
8624
  throw Error(
8625
8625
  'Incompatible React versions: The "react" and "react-dom" packages must have the exact same version. Instead got:\n - react: ' +
8626
8626
  (isomorphicReactPackageVersion$jscomp$inline_740 +
8627
- "\n - react-dom: 19.1.0-canary-2980f277-20250301\nLearn more: https://react.dev/warnings/version-mismatch")
8627
+ "\n - react-dom: 19.1.0-canary-443b7ff2-20250303\nLearn more: https://react.dev/warnings/version-mismatch")
8628
8628
  );
8629
8629
  exports.renderToReadableStream = function (children, options) {
8630
8630
  return new Promise(function (resolve, reject) {
@@ -8717,4 +8717,4 @@ exports.renderToReadableStream = function (children, options) {
8717
8717
  startWork(request$jscomp$0);
8718
8718
  });
8719
8719
  };
8720
- exports.version = "19.1.0-canary-2980f277-20250301";
8720
+ exports.version = "19.1.0-canary-443b7ff2-20250303";
@@ -5865,13 +5865,13 @@ function abort(request, reason) {
5865
5865
  }
5866
5866
  var isomorphicReactPackageVersion$jscomp$inline_761 = React.version;
5867
5867
  if (
5868
- "19.1.0-canary-2980f277-20250301" !==
5868
+ "19.1.0-canary-443b7ff2-20250303" !==
5869
5869
  isomorphicReactPackageVersion$jscomp$inline_761
5870
5870
  )
5871
5871
  throw Error(
5872
5872
  'Incompatible React versions: The "react" and "react-dom" packages must have the exact same version. Instead got:\n - react: ' +
5873
5873
  (isomorphicReactPackageVersion$jscomp$inline_761 +
5874
- "\n - react-dom: 19.1.0-canary-2980f277-20250301\nLearn more: https://react.dev/warnings/version-mismatch")
5874
+ "\n - react-dom: 19.1.0-canary-443b7ff2-20250303\nLearn more: https://react.dev/warnings/version-mismatch")
5875
5875
  );
5876
5876
  exports.renderToReadableStream = function (children, options) {
5877
5877
  return new Promise(function (resolve, reject) {
@@ -5962,4 +5962,4 @@ exports.renderToReadableStream = function (children, options) {
5962
5962
  startWork(request);
5963
5963
  });
5964
5964
  };
5965
- exports.version = "19.1.0-canary-2980f277-20250301";
5965
+ exports.version = "19.1.0-canary-443b7ff2-20250303";
@@ -7763,11 +7763,11 @@
7763
7763
  }
7764
7764
  function ensureCorrectIsomorphicReactVersion() {
7765
7765
  var isomorphicReactPackageVersion = React.version;
7766
- if ("19.1.0-canary-2980f277-20250301" !== isomorphicReactPackageVersion)
7766
+ if ("19.1.0-canary-443b7ff2-20250303" !== isomorphicReactPackageVersion)
7767
7767
  throw Error(
7768
7768
  'Incompatible React versions: The "react" and "react-dom" packages must have the exact same version. Instead got:\n - react: ' +
7769
7769
  (isomorphicReactPackageVersion +
7770
- "\n - react-dom: 19.1.0-canary-2980f277-20250301\nLearn more: https://react.dev/warnings/version-mismatch")
7770
+ "\n - react-dom: 19.1.0-canary-443b7ff2-20250303\nLearn more: https://react.dev/warnings/version-mismatch")
7771
7771
  );
7772
7772
  }
7773
7773
  var React = require("react"),
@@ -9418,5 +9418,5 @@
9418
9418
  startWork(request);
9419
9419
  });
9420
9420
  };
9421
- exports.version = "19.1.0-canary-2980f277-20250301";
9421
+ exports.version = "19.1.0-canary-443b7ff2-20250303";
9422
9422
  })();
@@ -6322,11 +6322,11 @@ function abort(request, reason) {
6322
6322
  }
6323
6323
  function ensureCorrectIsomorphicReactVersion() {
6324
6324
  var isomorphicReactPackageVersion = React.version;
6325
- if ("19.1.0-canary-2980f277-20250301" !== isomorphicReactPackageVersion)
6325
+ if ("19.1.0-canary-443b7ff2-20250303" !== isomorphicReactPackageVersion)
6326
6326
  throw Error(
6327
6327
  'Incompatible React versions: The "react" and "react-dom" packages must have the exact same version. Instead got:\n - react: ' +
6328
6328
  (isomorphicReactPackageVersion +
6329
- "\n - react-dom: 19.1.0-canary-2980f277-20250301\nLearn more: https://react.dev/warnings/version-mismatch")
6329
+ "\n - react-dom: 19.1.0-canary-443b7ff2-20250303\nLearn more: https://react.dev/warnings/version-mismatch")
6330
6330
  );
6331
6331
  }
6332
6332
  ensureCorrectIsomorphicReactVersion();
@@ -6472,4 +6472,4 @@ exports.renderToReadableStream = function (children, options) {
6472
6472
  startWork(request);
6473
6473
  });
6474
6474
  };
6475
- exports.version = "19.1.0-canary-2980f277-20250301";
6475
+ exports.version = "19.1.0-canary-443b7ff2-20250303";
@@ -7638,11 +7638,11 @@
7638
7638
  }
7639
7639
  function ensureCorrectIsomorphicReactVersion() {
7640
7640
  var isomorphicReactPackageVersion = React.version;
7641
- if ("19.1.0-canary-2980f277-20250301" !== isomorphicReactPackageVersion)
7641
+ if ("19.1.0-canary-443b7ff2-20250303" !== isomorphicReactPackageVersion)
7642
7642
  throw Error(
7643
7643
  'Incompatible React versions: The "react" and "react-dom" packages must have the exact same version. Instead got:\n - react: ' +
7644
7644
  (isomorphicReactPackageVersion +
7645
- "\n - react-dom: 19.1.0-canary-2980f277-20250301\nLearn more: https://react.dev/warnings/version-mismatch")
7645
+ "\n - react-dom: 19.1.0-canary-443b7ff2-20250303\nLearn more: https://react.dev/warnings/version-mismatch")
7646
7646
  );
7647
7647
  }
7648
7648
  function createDrainHandler(destination, request) {
@@ -9292,5 +9292,5 @@
9292
9292
  }
9293
9293
  };
9294
9294
  };
9295
- exports.version = "19.1.0-canary-2980f277-20250301";
9295
+ exports.version = "19.1.0-canary-443b7ff2-20250303";
9296
9296
  })();
@@ -6214,11 +6214,11 @@ function abort(request, reason) {
6214
6214
  }
6215
6215
  function ensureCorrectIsomorphicReactVersion() {
6216
6216
  var isomorphicReactPackageVersion = React.version;
6217
- if ("19.1.0-canary-2980f277-20250301" !== isomorphicReactPackageVersion)
6217
+ if ("19.1.0-canary-443b7ff2-20250303" !== isomorphicReactPackageVersion)
6218
6218
  throw Error(
6219
6219
  'Incompatible React versions: The "react" and "react-dom" packages must have the exact same version. Instead got:\n - react: ' +
6220
6220
  (isomorphicReactPackageVersion +
6221
- "\n - react-dom: 19.1.0-canary-2980f277-20250301\nLearn more: https://react.dev/warnings/version-mismatch")
6221
+ "\n - react-dom: 19.1.0-canary-443b7ff2-20250303\nLearn more: https://react.dev/warnings/version-mismatch")
6222
6222
  );
6223
6223
  }
6224
6224
  ensureCorrectIsomorphicReactVersion();
@@ -6367,4 +6367,4 @@ exports.renderToPipeableStream = function (children, options) {
6367
6367
  }
6368
6368
  };
6369
6369
  };
6370
- exports.version = "19.1.0-canary-2980f277-20250301";
6370
+ exports.version = "19.1.0-canary-443b7ff2-20250303";
@@ -416,7 +416,7 @@
416
416
  exports.useFormStatus = function () {
417
417
  return resolveDispatcher().useHostTransitionStatus();
418
418
  };
419
- exports.version = "19.1.0-canary-2980f277-20250301";
419
+ exports.version = "19.1.0-canary-443b7ff2-20250303";
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-2980f277-20250301";
210
+ exports.version = "19.1.0-canary-443b7ff2-20250303";
@@ -336,5 +336,5 @@
336
336
  }))
337
337
  : Internals.d.m(href));
338
338
  };
339
- exports.version = "19.1.0-canary-2980f277-20250301";
339
+ exports.version = "19.1.0-canary-443b7ff2-20250303";
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-2980f277-20250301";
152
+ exports.version = "19.1.0-canary-443b7ff2-20250303";
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "react-dom",
3
- "version": "19.1.0-canary-2980f277-20250301",
3
+ "version": "19.1.0-canary-443b7ff2-20250303",
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-2980f277-20250301"
20
+ "scheduler": "0.26.0-canary-443b7ff2-20250303"
21
21
  },
22
22
  "peerDependencies": {
23
- "react": "19.1.0-canary-2980f277-20250301"
23
+ "react": "19.1.0-canary-443b7ff2-20250303"
24
24
  },
25
25
  "files": [
26
26
  "LICENSE",