react-dom 19.1.0-canary-cd90a4d8-20250210 → 19.1.0-canary-f83903bf-20250212

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.
@@ -3690,9 +3690,8 @@ function updateSyncExternalStore(subscribe, getSnapshot, getServerSnapshot) {
3690
3690
  snapshotChanged &&
3691
3691
  ((hook.memoizedState = getServerSnapshot), (didReceiveUpdate = !0));
3692
3692
  hook = hook.queue;
3693
- updateEffect(subscribeToStore.bind(null, fiber, hook, subscribe), [
3694
- subscribe
3695
- ]);
3693
+ var create = subscribeToStore.bind(null, fiber, hook, subscribe);
3694
+ updateEffectImpl(2048, 8, create, [subscribe]);
3696
3695
  if (
3697
3696
  hook.getSnapshot !== getSnapshot ||
3698
3697
  snapshotChanged ||
@@ -4040,8 +4039,8 @@ function rerenderActionState(action) {
4040
4039
  currentStateHook.memoizedState = action;
4041
4040
  return [stateHook, dispatch, !1];
4042
4041
  }
4043
- function pushSimpleEffect(tag, inst, create, deps) {
4044
- tag = { tag: tag, create: create, deps: deps, inst: inst, next: null };
4042
+ function pushSimpleEffect(tag, inst, create, createDeps) {
4043
+ tag = { tag: tag, create: create, deps: createDeps, inst: inst, next: null };
4045
4044
  inst = currentlyRenderingFiber.updateQueue;
4046
4045
  null === inst &&
4047
4046
  ((inst = createFunctionComponentUpdateQueue()),
@@ -4049,9 +4048,9 @@ function pushSimpleEffect(tag, inst, create, deps) {
4049
4048
  create = inst.lastEffect;
4050
4049
  null === create
4051
4050
  ? (inst.lastEffect = tag.next = tag)
4052
- : ((deps = create.next),
4051
+ : ((createDeps = create.next),
4053
4052
  (create.next = tag),
4054
- (tag.next = deps),
4053
+ (tag.next = createDeps),
4055
4054
  (inst.lastEffect = tag));
4056
4055
  return tag;
4057
4056
  }
@@ -4061,15 +4060,15 @@ function createEffectInstance() {
4061
4060
  function updateRef() {
4062
4061
  return updateWorkInProgressHook().memoizedState;
4063
4062
  }
4064
- function mountEffectImpl(fiberFlags, hookFlags, create, deps) {
4063
+ function mountEffectImpl(fiberFlags, hookFlags, create, createDeps) {
4065
4064
  var hook = mountWorkInProgressHook();
4066
- deps = void 0 === deps ? null : deps;
4065
+ createDeps = void 0 === createDeps ? null : createDeps;
4067
4066
  currentlyRenderingFiber.flags |= fiberFlags;
4068
4067
  hook.memoizedState = pushSimpleEffect(
4069
4068
  1 | hookFlags,
4070
4069
  createEffectInstance(),
4071
4070
  create,
4072
- deps
4071
+ createDeps
4073
4072
  );
4074
4073
  }
4075
4074
  function updateEffectImpl(fiberFlags, hookFlags, create, deps) {
@@ -4088,11 +4087,11 @@ function updateEffectImpl(fiberFlags, hookFlags, create, deps) {
4088
4087
  deps
4089
4088
  )));
4090
4089
  }
4091
- function mountEffect(create, deps) {
4092
- mountEffectImpl(8390656, 8, create, deps);
4090
+ function mountEffect(create, createDeps) {
4091
+ mountEffectImpl(8390656, 8, create, createDeps);
4093
4092
  }
4094
- function updateEffect(create, deps) {
4095
- updateEffectImpl(2048, 8, create, deps);
4093
+ function updateEffect(create, createDeps) {
4094
+ updateEffectImpl(2048, 8, create, createDeps);
4096
4095
  }
4097
4096
  function updateInsertionEffect(create, deps) {
4098
4097
  return updateEffectImpl(4, 2, create, deps);
@@ -7529,9 +7528,10 @@ function commitHookEffectListUnmount(
7529
7528
  finishedWork
7530
7529
  );
7531
7530
  lastEffect = finishedWork;
7532
- var nearestMountedAncestor = nearestMountedAncestor$jscomp$0;
7531
+ var nearestMountedAncestor = nearestMountedAncestor$jscomp$0,
7532
+ destroy_ = destroy;
7533
7533
  try {
7534
- destroy();
7534
+ destroy_();
7535
7535
  } catch (error) {
7536
7536
  captureCommitPhaseError(
7537
7537
  lastEffect,
@@ -12371,20 +12371,20 @@ function extractEvents$1(
12371
12371
  }
12372
12372
  }
12373
12373
  for (
12374
- var i$jscomp$inline_1596 = 0;
12375
- i$jscomp$inline_1596 < simpleEventPluginEvents.length;
12376
- i$jscomp$inline_1596++
12374
+ var i$jscomp$inline_1604 = 0;
12375
+ i$jscomp$inline_1604 < simpleEventPluginEvents.length;
12376
+ i$jscomp$inline_1604++
12377
12377
  ) {
12378
- var eventName$jscomp$inline_1597 =
12379
- simpleEventPluginEvents[i$jscomp$inline_1596],
12380
- domEventName$jscomp$inline_1598 =
12381
- eventName$jscomp$inline_1597.toLowerCase(),
12382
- capitalizedEvent$jscomp$inline_1599 =
12383
- eventName$jscomp$inline_1597[0].toUpperCase() +
12384
- eventName$jscomp$inline_1597.slice(1);
12378
+ var eventName$jscomp$inline_1605 =
12379
+ simpleEventPluginEvents[i$jscomp$inline_1604],
12380
+ domEventName$jscomp$inline_1606 =
12381
+ eventName$jscomp$inline_1605.toLowerCase(),
12382
+ capitalizedEvent$jscomp$inline_1607 =
12383
+ eventName$jscomp$inline_1605[0].toUpperCase() +
12384
+ eventName$jscomp$inline_1605.slice(1);
12385
12385
  registerSimpleEvent(
12386
- domEventName$jscomp$inline_1598,
12387
- "on" + capitalizedEvent$jscomp$inline_1599
12386
+ domEventName$jscomp$inline_1606,
12387
+ "on" + capitalizedEvent$jscomp$inline_1607
12388
12388
  );
12389
12389
  }
12390
12390
  registerSimpleEvent(ANIMATION_END, "onAnimationEnd");
@@ -15896,16 +15896,16 @@ ReactDOMHydrationRoot.prototype.unstable_scheduleHydration = function (target) {
15896
15896
  0 === i && attemptExplicitHydrationTarget(target);
15897
15897
  }
15898
15898
  };
15899
- var isomorphicReactPackageVersion$jscomp$inline_1850 = React.version;
15899
+ var isomorphicReactPackageVersion$jscomp$inline_1858 = React.version;
15900
15900
  if (
15901
- "19.1.0-canary-cd90a4d8-20250210" !==
15902
- isomorphicReactPackageVersion$jscomp$inline_1850
15901
+ "19.1.0-canary-f83903bf-20250212" !==
15902
+ isomorphicReactPackageVersion$jscomp$inline_1858
15903
15903
  )
15904
15904
  throw Error(
15905
15905
  formatProdErrorMessage(
15906
15906
  527,
15907
- isomorphicReactPackageVersion$jscomp$inline_1850,
15908
- "19.1.0-canary-cd90a4d8-20250210"
15907
+ isomorphicReactPackageVersion$jscomp$inline_1858,
15908
+ "19.1.0-canary-f83903bf-20250212"
15909
15909
  )
15910
15910
  );
15911
15911
  ReactDOMSharedInternals.findDOMNode = function (componentOrElement) {
@@ -15925,12 +15925,12 @@ ReactDOMSharedInternals.findDOMNode = function (componentOrElement) {
15925
15925
  null === componentOrElement ? null : componentOrElement.stateNode;
15926
15926
  return componentOrElement;
15927
15927
  };
15928
- var internals$jscomp$inline_1857 = {
15928
+ var internals$jscomp$inline_1865 = {
15929
15929
  bundleType: 0,
15930
- version: "19.1.0-canary-cd90a4d8-20250210",
15930
+ version: "19.1.0-canary-f83903bf-20250212",
15931
15931
  rendererPackageName: "react-dom",
15932
15932
  currentDispatcherRef: ReactSharedInternals,
15933
- reconcilerVersion: "19.1.0-canary-cd90a4d8-20250210",
15933
+ reconcilerVersion: "19.1.0-canary-f83903bf-20250212",
15934
15934
  getLaneLabelMap: function () {
15935
15935
  for (
15936
15936
  var map = new Map(), lane = 1, index$281 = 0;
@@ -15948,16 +15948,16 @@ var internals$jscomp$inline_1857 = {
15948
15948
  }
15949
15949
  };
15950
15950
  if ("undefined" !== typeof __REACT_DEVTOOLS_GLOBAL_HOOK__) {
15951
- var hook$jscomp$inline_2299 = __REACT_DEVTOOLS_GLOBAL_HOOK__;
15951
+ var hook$jscomp$inline_2307 = __REACT_DEVTOOLS_GLOBAL_HOOK__;
15952
15952
  if (
15953
- !hook$jscomp$inline_2299.isDisabled &&
15954
- hook$jscomp$inline_2299.supportsFiber
15953
+ !hook$jscomp$inline_2307.isDisabled &&
15954
+ hook$jscomp$inline_2307.supportsFiber
15955
15955
  )
15956
15956
  try {
15957
- (rendererID = hook$jscomp$inline_2299.inject(
15958
- internals$jscomp$inline_1857
15957
+ (rendererID = hook$jscomp$inline_2307.inject(
15958
+ internals$jscomp$inline_1865
15959
15959
  )),
15960
- (injectedHook = hook$jscomp$inline_2299);
15960
+ (injectedHook = hook$jscomp$inline_2307);
15961
15961
  } catch (err) {}
15962
15962
  }
15963
15963
  function noop() {}
@@ -16210,7 +16210,7 @@ exports.useFormState = function (action, initialState, permalink) {
16210
16210
  exports.useFormStatus = function () {
16211
16211
  return ReactSharedInternals.H.useHostTransitionStatus();
16212
16212
  };
16213
- exports.version = "19.1.0-canary-cd90a4d8-20250210";
16213
+ exports.version = "19.1.0-canary-f83903bf-20250212";
16214
16214
  "undefined" !== typeof __REACT_DEVTOOLS_GLOBAL_HOOK__ &&
16215
16215
  "function" ===
16216
16216
  typeof __REACT_DEVTOOLS_GLOBAL_HOOK__.registerInternalModuleStop &&
@@ -8851,5 +8851,5 @@
8851
8851
  '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'
8852
8852
  );
8853
8853
  };
8854
- exports.version = "19.1.0-canary-cd90a4d8-20250210";
8854
+ exports.version = "19.1.0-canary-f83903bf-20250212";
8855
8855
  })();
@@ -5885,4 +5885,4 @@ exports.renderToString = function (children, options) {
5885
5885
  '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'
5886
5886
  );
5887
5887
  };
5888
- exports.version = "19.1.0-canary-cd90a4d8-20250210";
5888
+ exports.version = "19.1.0-canary-f83903bf-20250212";
@@ -8851,5 +8851,5 @@
8851
8851
  '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'
8852
8852
  );
8853
8853
  };
8854
- exports.version = "19.1.0-canary-cd90a4d8-20250210";
8854
+ exports.version = "19.1.0-canary-f83903bf-20250212";
8855
8855
  })();
@@ -5965,4 +5965,4 @@ exports.renderToString = function (children, options) {
5965
5965
  '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'
5966
5966
  );
5967
5967
  };
5968
- exports.version = "19.1.0-canary-cd90a4d8-20250210";
5968
+ exports.version = "19.1.0-canary-f83903bf-20250212";
@@ -7582,11 +7582,11 @@
7582
7582
  }
7583
7583
  function ensureCorrectIsomorphicReactVersion() {
7584
7584
  var isomorphicReactPackageVersion = React.version;
7585
- if ("19.1.0-canary-cd90a4d8-20250210" !== isomorphicReactPackageVersion)
7585
+ if ("19.1.0-canary-f83903bf-20250212" !== isomorphicReactPackageVersion)
7586
7586
  throw Error(
7587
7587
  'Incompatible React versions: The "react" and "react-dom" packages must have the exact same version. Instead got:\n - react: ' +
7588
7588
  (isomorphicReactPackageVersion +
7589
- "\n - react-dom: 19.1.0-canary-cd90a4d8-20250210\nLearn more: https://react.dev/warnings/version-mismatch")
7589
+ "\n - react-dom: 19.1.0-canary-f83903bf-20250212\nLearn more: https://react.dev/warnings/version-mismatch")
7590
7590
  );
7591
7591
  }
7592
7592
  var React = require("react"),
@@ -9240,5 +9240,5 @@
9240
9240
  startWork(request);
9241
9241
  });
9242
9242
  };
9243
- exports.version = "19.1.0-canary-cd90a4d8-20250210";
9243
+ exports.version = "19.1.0-canary-f83903bf-20250212";
9244
9244
  })();
@@ -6225,12 +6225,12 @@ function abort(request, reason) {
6225
6225
  }
6226
6226
  function ensureCorrectIsomorphicReactVersion() {
6227
6227
  var isomorphicReactPackageVersion = React.version;
6228
- if ("19.1.0-canary-cd90a4d8-20250210" !== isomorphicReactPackageVersion)
6228
+ if ("19.1.0-canary-f83903bf-20250212" !== isomorphicReactPackageVersion)
6229
6229
  throw Error(
6230
6230
  formatProdErrorMessage(
6231
6231
  527,
6232
6232
  isomorphicReactPackageVersion,
6233
- "19.1.0-canary-cd90a4d8-20250210"
6233
+ "19.1.0-canary-f83903bf-20250212"
6234
6234
  )
6235
6235
  );
6236
6236
  }
@@ -6377,4 +6377,4 @@ exports.renderToReadableStream = function (children, options) {
6377
6377
  startWork(request);
6378
6378
  });
6379
6379
  };
6380
- exports.version = "19.1.0-canary-cd90a4d8-20250210";
6380
+ exports.version = "19.1.0-canary-f83903bf-20250212";
@@ -8476,13 +8476,13 @@ function abort(request, reason) {
8476
8476
  }
8477
8477
  var isomorphicReactPackageVersion$jscomp$inline_732 = React.version;
8478
8478
  if (
8479
- "19.1.0-canary-cd90a4d8-20250210" !==
8479
+ "19.1.0-canary-f83903bf-20250212" !==
8480
8480
  isomorphicReactPackageVersion$jscomp$inline_732
8481
8481
  )
8482
8482
  throw Error(
8483
8483
  'Incompatible React versions: The "react" and "react-dom" packages must have the exact same version. Instead got:\n - react: ' +
8484
8484
  (isomorphicReactPackageVersion$jscomp$inline_732 +
8485
- "\n - react-dom: 19.1.0-canary-cd90a4d8-20250210\nLearn more: https://react.dev/warnings/version-mismatch")
8485
+ "\n - react-dom: 19.1.0-canary-f83903bf-20250212\nLearn more: https://react.dev/warnings/version-mismatch")
8486
8486
  );
8487
8487
  exports.renderToReadableStream = function (children, options) {
8488
8488
  return new Promise(function (resolve, reject) {
@@ -8574,4 +8574,4 @@ exports.renderToReadableStream = function (children, options) {
8574
8574
  startWork(request$jscomp$0);
8575
8575
  });
8576
8576
  };
8577
- exports.version = "19.1.0-canary-cd90a4d8-20250210";
8577
+ exports.version = "19.1.0-canary-f83903bf-20250212";
@@ -5863,13 +5863,13 @@ function abort(request, reason) {
5863
5863
  }
5864
5864
  var isomorphicReactPackageVersion$jscomp$inline_761 = React.version;
5865
5865
  if (
5866
- "19.1.0-canary-cd90a4d8-20250210" !==
5866
+ "19.1.0-canary-f83903bf-20250212" !==
5867
5867
  isomorphicReactPackageVersion$jscomp$inline_761
5868
5868
  )
5869
5869
  throw Error(
5870
5870
  'Incompatible React versions: The "react" and "react-dom" packages must have the exact same version. Instead got:\n - react: ' +
5871
5871
  (isomorphicReactPackageVersion$jscomp$inline_761 +
5872
- "\n - react-dom: 19.1.0-canary-cd90a4d8-20250210\nLearn more: https://react.dev/warnings/version-mismatch")
5872
+ "\n - react-dom: 19.1.0-canary-f83903bf-20250212\nLearn more: https://react.dev/warnings/version-mismatch")
5873
5873
  );
5874
5874
  exports.renderToReadableStream = function (children, options) {
5875
5875
  return new Promise(function (resolve, reject) {
@@ -5960,4 +5960,4 @@ exports.renderToReadableStream = function (children, options) {
5960
5960
  startWork(request);
5961
5961
  });
5962
5962
  };
5963
- exports.version = "19.1.0-canary-cd90a4d8-20250210";
5963
+ exports.version = "19.1.0-canary-f83903bf-20250212";
@@ -7605,11 +7605,11 @@
7605
7605
  }
7606
7606
  function ensureCorrectIsomorphicReactVersion() {
7607
7607
  var isomorphicReactPackageVersion = React.version;
7608
- if ("19.1.0-canary-cd90a4d8-20250210" !== isomorphicReactPackageVersion)
7608
+ if ("19.1.0-canary-f83903bf-20250212" !== isomorphicReactPackageVersion)
7609
7609
  throw Error(
7610
7610
  'Incompatible React versions: The "react" and "react-dom" packages must have the exact same version. Instead got:\n - react: ' +
7611
7611
  (isomorphicReactPackageVersion +
7612
- "\n - react-dom: 19.1.0-canary-cd90a4d8-20250210\nLearn more: https://react.dev/warnings/version-mismatch")
7612
+ "\n - react-dom: 19.1.0-canary-f83903bf-20250212\nLearn more: https://react.dev/warnings/version-mismatch")
7613
7613
  );
7614
7614
  }
7615
7615
  var React = require("react"),
@@ -9259,5 +9259,5 @@
9259
9259
  startWork(request);
9260
9260
  });
9261
9261
  };
9262
- exports.version = "19.1.0-canary-cd90a4d8-20250210";
9262
+ exports.version = "19.1.0-canary-f83903bf-20250212";
9263
9263
  })();
@@ -6320,11 +6320,11 @@ function abort(request, reason) {
6320
6320
  }
6321
6321
  function ensureCorrectIsomorphicReactVersion() {
6322
6322
  var isomorphicReactPackageVersion = React.version;
6323
- if ("19.1.0-canary-cd90a4d8-20250210" !== isomorphicReactPackageVersion)
6323
+ if ("19.1.0-canary-f83903bf-20250212" !== isomorphicReactPackageVersion)
6324
6324
  throw Error(
6325
6325
  'Incompatible React versions: The "react" and "react-dom" packages must have the exact same version. Instead got:\n - react: ' +
6326
6326
  (isomorphicReactPackageVersion +
6327
- "\n - react-dom: 19.1.0-canary-cd90a4d8-20250210\nLearn more: https://react.dev/warnings/version-mismatch")
6327
+ "\n - react-dom: 19.1.0-canary-f83903bf-20250212\nLearn more: https://react.dev/warnings/version-mismatch")
6328
6328
  );
6329
6329
  }
6330
6330
  ensureCorrectIsomorphicReactVersion();
@@ -6470,4 +6470,4 @@ exports.renderToReadableStream = function (children, options) {
6470
6470
  startWork(request);
6471
6471
  });
6472
6472
  };
6473
- exports.version = "19.1.0-canary-cd90a4d8-20250210";
6473
+ exports.version = "19.1.0-canary-f83903bf-20250212";
@@ -7480,11 +7480,11 @@
7480
7480
  }
7481
7481
  function ensureCorrectIsomorphicReactVersion() {
7482
7482
  var isomorphicReactPackageVersion = React.version;
7483
- if ("19.1.0-canary-cd90a4d8-20250210" !== isomorphicReactPackageVersion)
7483
+ if ("19.1.0-canary-f83903bf-20250212" !== isomorphicReactPackageVersion)
7484
7484
  throw Error(
7485
7485
  'Incompatible React versions: The "react" and "react-dom" packages must have the exact same version. Instead got:\n - react: ' +
7486
7486
  (isomorphicReactPackageVersion +
7487
- "\n - react-dom: 19.1.0-canary-cd90a4d8-20250210\nLearn more: https://react.dev/warnings/version-mismatch")
7487
+ "\n - react-dom: 19.1.0-canary-f83903bf-20250212\nLearn more: https://react.dev/warnings/version-mismatch")
7488
7488
  );
7489
7489
  }
7490
7490
  function createDrainHandler(destination, request) {
@@ -9133,5 +9133,5 @@
9133
9133
  }
9134
9134
  };
9135
9135
  };
9136
- exports.version = "19.1.0-canary-cd90a4d8-20250210";
9136
+ exports.version = "19.1.0-canary-f83903bf-20250212";
9137
9137
  })();
@@ -6212,11 +6212,11 @@ function abort(request, reason) {
6212
6212
  }
6213
6213
  function ensureCorrectIsomorphicReactVersion() {
6214
6214
  var isomorphicReactPackageVersion = React.version;
6215
- if ("19.1.0-canary-cd90a4d8-20250210" !== isomorphicReactPackageVersion)
6215
+ if ("19.1.0-canary-f83903bf-20250212" !== isomorphicReactPackageVersion)
6216
6216
  throw Error(
6217
6217
  'Incompatible React versions: The "react" and "react-dom" packages must have the exact same version. Instead got:\n - react: ' +
6218
6218
  (isomorphicReactPackageVersion +
6219
- "\n - react-dom: 19.1.0-canary-cd90a4d8-20250210\nLearn more: https://react.dev/warnings/version-mismatch")
6219
+ "\n - react-dom: 19.1.0-canary-f83903bf-20250212\nLearn more: https://react.dev/warnings/version-mismatch")
6220
6220
  );
6221
6221
  }
6222
6222
  ensureCorrectIsomorphicReactVersion();
@@ -6365,4 +6365,4 @@ exports.renderToPipeableStream = function (children, options) {
6365
6365
  }
6366
6366
  };
6367
6367
  };
6368
- exports.version = "19.1.0-canary-cd90a4d8-20250210";
6368
+ exports.version = "19.1.0-canary-f83903bf-20250212";
@@ -416,7 +416,7 @@
416
416
  exports.useFormStatus = function () {
417
417
  return resolveDispatcher().useHostTransitionStatus();
418
418
  };
419
- exports.version = "19.1.0-canary-cd90a4d8-20250210";
419
+ exports.version = "19.1.0-canary-f83903bf-20250212";
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-cd90a4d8-20250210";
210
+ exports.version = "19.1.0-canary-f83903bf-20250212";
@@ -336,5 +336,5 @@
336
336
  }))
337
337
  : Internals.d.m(href));
338
338
  };
339
- exports.version = "19.1.0-canary-cd90a4d8-20250210";
339
+ exports.version = "19.1.0-canary-f83903bf-20250212";
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-cd90a4d8-20250210";
152
+ exports.version = "19.1.0-canary-f83903bf-20250212";
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "react-dom",
3
- "version": "19.1.0-canary-cd90a4d8-20250210",
3
+ "version": "19.1.0-canary-f83903bf-20250212",
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-cd90a4d8-20250210"
20
+ "scheduler": "0.26.0-canary-f83903bf-20250212"
21
21
  },
22
22
  "peerDependencies": {
23
- "react": "19.1.0-canary-cd90a4d8-20250210"
23
+ "react": "19.1.0-canary-f83903bf-20250212"
24
24
  },
25
25
  "files": [
26
26
  "LICENSE",