react-dom 19.1.0-canary-5398b711-20250314 → 19.1.0-canary-fbcda19a-20250317

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.
@@ -3495,8 +3495,6 @@
3495
3495
  switch (type) {
3496
3496
  case REACT_FRAGMENT_TYPE:
3497
3497
  return "Fragment";
3498
- case REACT_PORTAL_TYPE:
3499
- return "Portal";
3500
3498
  case REACT_PROFILER_TYPE:
3501
3499
  return "Profiler";
3502
3500
  case REACT_STRICT_MODE_TYPE:
@@ -3505,6 +3503,8 @@
3505
3503
  return "Suspense";
3506
3504
  case REACT_SUSPENSE_LIST_TYPE:
3507
3505
  return "SuspenseList";
3506
+ case REACT_ACTIVITY_TYPE:
3507
+ return "Activity";
3508
3508
  }
3509
3509
  if ("object" === typeof type)
3510
3510
  switch (
@@ -3514,6 +3514,8 @@
3514
3514
  ),
3515
3515
  type.$$typeof)
3516
3516
  ) {
3517
+ case REACT_PORTAL_TYPE:
3518
+ return "Portal";
3517
3519
  case REACT_CONTEXT_TYPE:
3518
3520
  return (type.displayName || "Context") + ".Provider";
3519
3521
  case REACT_CONSUMER_TYPE:
@@ -5307,7 +5309,7 @@
5307
5309
  renderNodeDestructive(request, task, props.children, -1);
5308
5310
  task.keyPath = prevKeyPath$jscomp$1;
5309
5311
  return;
5310
- case REACT_OFFSCREEN_TYPE:
5312
+ case REACT_ACTIVITY_TYPE:
5311
5313
  if ("hidden" !== props.mode) {
5312
5314
  var prevKeyPath$jscomp$2 = task.keyPath;
5313
5315
  task.keyPath = keyPath;
@@ -7581,7 +7583,7 @@
7581
7583
  REACT_MEMO_TYPE = Symbol.for("react.memo"),
7582
7584
  REACT_LAZY_TYPE = Symbol.for("react.lazy"),
7583
7585
  REACT_SCOPE_TYPE = Symbol.for("react.scope"),
7584
- REACT_OFFSCREEN_TYPE = Symbol.for("react.offscreen"),
7586
+ REACT_ACTIVITY_TYPE = Symbol.for("react.activity"),
7585
7587
  REACT_LEGACY_HIDDEN_TYPE = Symbol.for("react.legacy_hidden"),
7586
7588
  REACT_MEMO_CACHE_SENTINEL = Symbol.for("react.memo_cache_sentinel"),
7587
7589
  REACT_VIEW_TRANSITION_TYPE = Symbol.for("react.view_transition"),
@@ -9010,5 +9012,5 @@
9010
9012
  '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
9013
  );
9012
9014
  };
9013
- exports.version = "19.1.0-canary-5398b711-20250314";
9015
+ exports.version = "19.1.0-canary-fbcda19a-20250317";
9014
9016
  })();
@@ -64,7 +64,7 @@ var REACT_ELEMENT_TYPE = Symbol.for("react.transitional.element"),
64
64
  REACT_MEMO_TYPE = Symbol.for("react.memo"),
65
65
  REACT_LAZY_TYPE = Symbol.for("react.lazy"),
66
66
  REACT_SCOPE_TYPE = Symbol.for("react.scope"),
67
- REACT_OFFSCREEN_TYPE = Symbol.for("react.offscreen"),
67
+ REACT_ACTIVITY_TYPE = Symbol.for("react.activity"),
68
68
  REACT_LEGACY_HIDDEN_TYPE = Symbol.for("react.legacy_hidden"),
69
69
  REACT_MEMO_CACHE_SENTINEL = Symbol.for("react.memo_cache_sentinel"),
70
70
  REACT_VIEW_TRANSITION_TYPE = Symbol.for("react.view_transition"),
@@ -2806,8 +2806,6 @@ function getComponentNameFromType(type) {
2806
2806
  switch (type) {
2807
2807
  case REACT_FRAGMENT_TYPE:
2808
2808
  return "Fragment";
2809
- case REACT_PORTAL_TYPE:
2810
- return "Portal";
2811
2809
  case REACT_PROFILER_TYPE:
2812
2810
  return "Profiler";
2813
2811
  case REACT_STRICT_MODE_TYPE:
@@ -2816,9 +2814,13 @@ function getComponentNameFromType(type) {
2816
2814
  return "Suspense";
2817
2815
  case REACT_SUSPENSE_LIST_TYPE:
2818
2816
  return "SuspenseList";
2817
+ case REACT_ACTIVITY_TYPE:
2818
+ return "Activity";
2819
2819
  }
2820
2820
  if ("object" === typeof type)
2821
2821
  switch (type.$$typeof) {
2822
+ case REACT_PORTAL_TYPE:
2823
+ return "Portal";
2822
2824
  case REACT_CONTEXT_TYPE:
2823
2825
  return (type.displayName || "Context") + ".Provider";
2824
2826
  case REACT_CONSUMER_TYPE:
@@ -4082,7 +4084,7 @@ function renderElement(request, task, keyPath, type, props, ref) {
4082
4084
  renderNodeDestructive(request, task, props.children, -1);
4083
4085
  task.keyPath = type;
4084
4086
  return;
4085
- case REACT_OFFSCREEN_TYPE:
4087
+ case REACT_ACTIVITY_TYPE:
4086
4088
  "hidden" !== props.mode &&
4087
4089
  ((type = task.keyPath),
4088
4090
  (task.keyPath = keyPath),
@@ -5887,4 +5889,4 @@ exports.renderToString = function (children, options) {
5887
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'
5888
5890
  );
5889
5891
  };
5890
- exports.version = "19.1.0-canary-5398b711-20250314";
5892
+ exports.version = "19.1.0-canary-fbcda19a-20250317";
@@ -3495,8 +3495,6 @@
3495
3495
  switch (type) {
3496
3496
  case REACT_FRAGMENT_TYPE:
3497
3497
  return "Fragment";
3498
- case REACT_PORTAL_TYPE:
3499
- return "Portal";
3500
3498
  case REACT_PROFILER_TYPE:
3501
3499
  return "Profiler";
3502
3500
  case REACT_STRICT_MODE_TYPE:
@@ -3505,6 +3503,8 @@
3505
3503
  return "Suspense";
3506
3504
  case REACT_SUSPENSE_LIST_TYPE:
3507
3505
  return "SuspenseList";
3506
+ case REACT_ACTIVITY_TYPE:
3507
+ return "Activity";
3508
3508
  }
3509
3509
  if ("object" === typeof type)
3510
3510
  switch (
@@ -3514,6 +3514,8 @@
3514
3514
  ),
3515
3515
  type.$$typeof)
3516
3516
  ) {
3517
+ case REACT_PORTAL_TYPE:
3518
+ return "Portal";
3517
3519
  case REACT_CONTEXT_TYPE:
3518
3520
  return (type.displayName || "Context") + ".Provider";
3519
3521
  case REACT_CONSUMER_TYPE:
@@ -5307,7 +5309,7 @@
5307
5309
  renderNodeDestructive(request, task, props.children, -1);
5308
5310
  task.keyPath = prevKeyPath$jscomp$1;
5309
5311
  return;
5310
- case REACT_OFFSCREEN_TYPE:
5312
+ case REACT_ACTIVITY_TYPE:
5311
5313
  if ("hidden" !== props.mode) {
5312
5314
  var prevKeyPath$jscomp$2 = task.keyPath;
5313
5315
  task.keyPath = keyPath;
@@ -7581,7 +7583,7 @@
7581
7583
  REACT_MEMO_TYPE = Symbol.for("react.memo"),
7582
7584
  REACT_LAZY_TYPE = Symbol.for("react.lazy"),
7583
7585
  REACT_SCOPE_TYPE = Symbol.for("react.scope"),
7584
- REACT_OFFSCREEN_TYPE = Symbol.for("react.offscreen"),
7586
+ REACT_ACTIVITY_TYPE = Symbol.for("react.activity"),
7585
7587
  REACT_LEGACY_HIDDEN_TYPE = Symbol.for("react.legacy_hidden"),
7586
7588
  REACT_MEMO_CACHE_SENTINEL = Symbol.for("react.memo_cache_sentinel"),
7587
7589
  REACT_VIEW_TRANSITION_TYPE = Symbol.for("react.view_transition"),
@@ -9010,5 +9012,5 @@
9010
9012
  '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
9013
  );
9012
9014
  };
9013
- exports.version = "19.1.0-canary-5398b711-20250314";
9015
+ exports.version = "19.1.0-canary-fbcda19a-20250317";
9014
9016
  })();
@@ -49,7 +49,7 @@ var React = require("react"),
49
49
  REACT_MEMO_TYPE = Symbol.for("react.memo"),
50
50
  REACT_LAZY_TYPE = Symbol.for("react.lazy"),
51
51
  REACT_SCOPE_TYPE = Symbol.for("react.scope"),
52
- REACT_OFFSCREEN_TYPE = Symbol.for("react.offscreen"),
52
+ REACT_ACTIVITY_TYPE = Symbol.for("react.activity"),
53
53
  REACT_LEGACY_HIDDEN_TYPE = Symbol.for("react.legacy_hidden"),
54
54
  REACT_MEMO_CACHE_SENTINEL = Symbol.for("react.memo_cache_sentinel"),
55
55
  REACT_VIEW_TRANSITION_TYPE = Symbol.for("react.view_transition"),
@@ -2825,8 +2825,6 @@ function getComponentNameFromType(type) {
2825
2825
  switch (type) {
2826
2826
  case REACT_FRAGMENT_TYPE:
2827
2827
  return "Fragment";
2828
- case REACT_PORTAL_TYPE:
2829
- return "Portal";
2830
2828
  case REACT_PROFILER_TYPE:
2831
2829
  return "Profiler";
2832
2830
  case REACT_STRICT_MODE_TYPE:
@@ -2835,9 +2833,13 @@ function getComponentNameFromType(type) {
2835
2833
  return "Suspense";
2836
2834
  case REACT_SUSPENSE_LIST_TYPE:
2837
2835
  return "SuspenseList";
2836
+ case REACT_ACTIVITY_TYPE:
2837
+ return "Activity";
2838
2838
  }
2839
2839
  if ("object" === typeof type)
2840
2840
  switch (type.$$typeof) {
2841
+ case REACT_PORTAL_TYPE:
2842
+ return "Portal";
2841
2843
  case REACT_CONTEXT_TYPE:
2842
2844
  return (type.displayName || "Context") + ".Provider";
2843
2845
  case REACT_CONSUMER_TYPE:
@@ -4129,7 +4131,7 @@ function renderElement(request, task, keyPath, type, props, ref) {
4129
4131
  renderNodeDestructive(request, task, props.children, -1);
4130
4132
  task.keyPath = type;
4131
4133
  return;
4132
- case REACT_OFFSCREEN_TYPE:
4134
+ case REACT_ACTIVITY_TYPE:
4133
4135
  "hidden" !== props.mode &&
4134
4136
  ((type = task.keyPath),
4135
4137
  (task.keyPath = keyPath),
@@ -5967,4 +5969,4 @@ exports.renderToString = function (children, options) {
5967
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'
5968
5970
  );
5969
5971
  };
5970
- exports.version = "19.1.0-canary-5398b711-20250314";
5972
+ exports.version = "19.1.0-canary-fbcda19a-20250317";
@@ -3634,8 +3634,6 @@
3634
3634
  switch (type) {
3635
3635
  case REACT_FRAGMENT_TYPE:
3636
3636
  return "Fragment";
3637
- case REACT_PORTAL_TYPE:
3638
- return "Portal";
3639
3637
  case REACT_PROFILER_TYPE:
3640
3638
  return "Profiler";
3641
3639
  case REACT_STRICT_MODE_TYPE:
@@ -3644,6 +3642,8 @@
3644
3642
  return "Suspense";
3645
3643
  case REACT_SUSPENSE_LIST_TYPE:
3646
3644
  return "SuspenseList";
3645
+ case REACT_ACTIVITY_TYPE:
3646
+ return "Activity";
3647
3647
  }
3648
3648
  if ("object" === typeof type)
3649
3649
  switch (
@@ -3653,6 +3653,8 @@
3653
3653
  ),
3654
3654
  type.$$typeof)
3655
3655
  ) {
3656
+ case REACT_PORTAL_TYPE:
3657
+ return "Portal";
3656
3658
  case REACT_CONTEXT_TYPE:
3657
3659
  return (type.displayName || "Context") + ".Provider";
3658
3660
  case REACT_CONSUMER_TYPE:
@@ -5496,7 +5498,7 @@
5496
5498
  renderNodeDestructive(request, task, props.children, -1);
5497
5499
  task.keyPath = prevKeyPath$jscomp$1;
5498
5500
  return;
5499
- case REACT_OFFSCREEN_TYPE:
5501
+ case REACT_ACTIVITY_TYPE:
5500
5502
  if ("hidden" !== props.mode) {
5501
5503
  var prevKeyPath$jscomp$2 = task.keyPath;
5502
5504
  task.keyPath = keyPath;
@@ -7740,11 +7742,11 @@
7740
7742
  }
7741
7743
  function ensureCorrectIsomorphicReactVersion() {
7742
7744
  var isomorphicReactPackageVersion = React.version;
7743
- if ("19.1.0-canary-5398b711-20250314" !== isomorphicReactPackageVersion)
7745
+ if ("19.1.0-canary-fbcda19a-20250317" !== isomorphicReactPackageVersion)
7744
7746
  throw Error(
7745
7747
  'Incompatible React versions: The "react" and "react-dom" packages must have the exact same version. Instead got:\n - react: ' +
7746
7748
  (isomorphicReactPackageVersion +
7747
- "\n - react-dom: 19.1.0-canary-5398b711-20250314\nLearn more: https://react.dev/warnings/version-mismatch")
7749
+ "\n - react-dom: 19.1.0-canary-fbcda19a-20250317\nLearn more: https://react.dev/warnings/version-mismatch")
7748
7750
  );
7749
7751
  }
7750
7752
  var React = require("react"),
@@ -7763,7 +7765,7 @@
7763
7765
  REACT_MEMO_TYPE = Symbol.for("react.memo"),
7764
7766
  REACT_LAZY_TYPE = Symbol.for("react.lazy"),
7765
7767
  REACT_SCOPE_TYPE = Symbol.for("react.scope"),
7766
- REACT_OFFSCREEN_TYPE = Symbol.for("react.offscreen"),
7768
+ REACT_ACTIVITY_TYPE = Symbol.for("react.activity"),
7767
7769
  REACT_LEGACY_HIDDEN_TYPE = Symbol.for("react.legacy_hidden"),
7768
7770
  REACT_MEMO_CACHE_SENTINEL = Symbol.for("react.memo_cache_sentinel"),
7769
7771
  REACT_VIEW_TRANSITION_TYPE = Symbol.for("react.view_transition"),
@@ -9399,5 +9401,5 @@
9399
9401
  startWork(request);
9400
9402
  });
9401
9403
  };
9402
- exports.version = "19.1.0-canary-5398b711-20250314";
9404
+ exports.version = "19.1.0-canary-fbcda19a-20250317";
9403
9405
  })();
@@ -64,7 +64,7 @@ var REACT_ELEMENT_TYPE = Symbol.for("react.transitional.element"),
64
64
  REACT_MEMO_TYPE = Symbol.for("react.memo"),
65
65
  REACT_LAZY_TYPE = Symbol.for("react.lazy"),
66
66
  REACT_SCOPE_TYPE = Symbol.for("react.scope"),
67
- REACT_OFFSCREEN_TYPE = Symbol.for("react.offscreen"),
67
+ REACT_ACTIVITY_TYPE = Symbol.for("react.activity"),
68
68
  REACT_LEGACY_HIDDEN_TYPE = Symbol.for("react.legacy_hidden"),
69
69
  REACT_MEMO_CACHE_SENTINEL = Symbol.for("react.memo_cache_sentinel"),
70
70
  REACT_VIEW_TRANSITION_TYPE = Symbol.for("react.view_transition"),
@@ -3165,8 +3165,6 @@ function getComponentNameFromType(type) {
3165
3165
  switch (type) {
3166
3166
  case REACT_FRAGMENT_TYPE:
3167
3167
  return "Fragment";
3168
- case REACT_PORTAL_TYPE:
3169
- return "Portal";
3170
3168
  case REACT_PROFILER_TYPE:
3171
3169
  return "Profiler";
3172
3170
  case REACT_STRICT_MODE_TYPE:
@@ -3175,9 +3173,13 @@ function getComponentNameFromType(type) {
3175
3173
  return "Suspense";
3176
3174
  case REACT_SUSPENSE_LIST_TYPE:
3177
3175
  return "SuspenseList";
3176
+ case REACT_ACTIVITY_TYPE:
3177
+ return "Activity";
3178
3178
  }
3179
3179
  if ("object" === typeof type)
3180
3180
  switch (type.$$typeof) {
3181
+ case REACT_PORTAL_TYPE:
3182
+ return "Portal";
3181
3183
  case REACT_CONTEXT_TYPE:
3182
3184
  return (type.displayName || "Context") + ".Provider";
3183
3185
  case REACT_CONSUMER_TYPE:
@@ -4489,7 +4491,7 @@ function renderElement(request, task, keyPath, type, props, ref) {
4489
4491
  renderNodeDestructive(request, task, props.children, -1);
4490
4492
  task.keyPath = type;
4491
4493
  return;
4492
- case REACT_OFFSCREEN_TYPE:
4494
+ case REACT_ACTIVITY_TYPE:
4493
4495
  "hidden" !== props.mode &&
4494
4496
  ((type = task.keyPath),
4495
4497
  (task.keyPath = keyPath),
@@ -6227,12 +6229,12 @@ function abort(request, reason) {
6227
6229
  }
6228
6230
  function ensureCorrectIsomorphicReactVersion() {
6229
6231
  var isomorphicReactPackageVersion = React.version;
6230
- if ("19.1.0-canary-5398b711-20250314" !== isomorphicReactPackageVersion)
6232
+ if ("19.1.0-canary-fbcda19a-20250317" !== isomorphicReactPackageVersion)
6231
6233
  throw Error(
6232
6234
  formatProdErrorMessage(
6233
6235
  527,
6234
6236
  isomorphicReactPackageVersion,
6235
- "19.1.0-canary-5398b711-20250314"
6237
+ "19.1.0-canary-fbcda19a-20250317"
6236
6238
  )
6237
6239
  );
6238
6240
  }
@@ -6379,4 +6381,4 @@ exports.renderToReadableStream = function (children, options) {
6379
6381
  startWork(request);
6380
6382
  });
6381
6383
  };
6382
- exports.version = "19.1.0-canary-5398b711-20250314";
6384
+ exports.version = "19.1.0-canary-fbcda19a-20250317";
@@ -25,7 +25,7 @@ var React = require("react"),
25
25
  REACT_MEMO_TYPE = Symbol.for("react.memo"),
26
26
  REACT_LAZY_TYPE = Symbol.for("react.lazy"),
27
27
  REACT_SCOPE_TYPE = Symbol.for("react.scope"),
28
- REACT_OFFSCREEN_TYPE = Symbol.for("react.offscreen"),
28
+ REACT_ACTIVITY_TYPE = Symbol.for("react.activity"),
29
29
  REACT_LEGACY_HIDDEN_TYPE = Symbol.for("react.legacy_hidden"),
30
30
  REACT_MEMO_CACHE_SENTINEL = Symbol.for("react.memo_cache_sentinel"),
31
31
  REACT_VIEW_TRANSITION_TYPE = Symbol.for("react.view_transition"),
@@ -4551,8 +4551,6 @@ function getComponentNameFromType(type) {
4551
4551
  switch (type) {
4552
4552
  case REACT_FRAGMENT_TYPE:
4553
4553
  return "Fragment";
4554
- case REACT_PORTAL_TYPE:
4555
- return "Portal";
4556
4554
  case REACT_PROFILER_TYPE:
4557
4555
  return "Profiler";
4558
4556
  case REACT_STRICT_MODE_TYPE:
@@ -4561,6 +4559,8 @@ function getComponentNameFromType(type) {
4561
4559
  return "Suspense";
4562
4560
  case REACT_SUSPENSE_LIST_TYPE:
4563
4561
  return "SuspenseList";
4562
+ case REACT_ACTIVITY_TYPE:
4563
+ return "Activity";
4564
4564
  }
4565
4565
  if ("object" === typeof type)
4566
4566
  switch (
@@ -4570,6 +4570,8 @@ function getComponentNameFromType(type) {
4570
4570
  ),
4571
4571
  type.$$typeof)
4572
4572
  ) {
4573
+ case REACT_PORTAL_TYPE:
4574
+ return "Portal";
4573
4575
  case REACT_CONTEXT_TYPE:
4574
4576
  return (type.displayName || "Context") + ".Provider";
4575
4577
  case REACT_CONSUMER_TYPE:
@@ -6540,7 +6542,7 @@ function renderElement(request, task, keyPath, type, props, ref) {
6540
6542
  renderNodeDestructive(request, task, props.children, -1);
6541
6543
  task.keyPath = prevKeyPath$jscomp$1;
6542
6544
  return;
6543
- case REACT_OFFSCREEN_TYPE:
6545
+ case REACT_ACTIVITY_TYPE:
6544
6546
  if ("hidden" !== props.mode) {
6545
6547
  var prevKeyPath$jscomp$2 = task.keyPath;
6546
6548
  task.keyPath = keyPath;
@@ -8618,13 +8620,13 @@ function abort(request, reason) {
8618
8620
  }
8619
8621
  var isomorphicReactPackageVersion$jscomp$inline_740 = React.version;
8620
8622
  if (
8621
- "19.1.0-canary-5398b711-20250314" !==
8623
+ "19.1.0-canary-fbcda19a-20250317" !==
8622
8624
  isomorphicReactPackageVersion$jscomp$inline_740
8623
8625
  )
8624
8626
  throw Error(
8625
8627
  'Incompatible React versions: The "react" and "react-dom" packages must have the exact same version. Instead got:\n - react: ' +
8626
8628
  (isomorphicReactPackageVersion$jscomp$inline_740 +
8627
- "\n - react-dom: 19.1.0-canary-5398b711-20250314\nLearn more: https://react.dev/warnings/version-mismatch")
8629
+ "\n - react-dom: 19.1.0-canary-fbcda19a-20250317\nLearn more: https://react.dev/warnings/version-mismatch")
8628
8630
  );
8629
8631
  exports.renderToReadableStream = function (children, options) {
8630
8632
  return new Promise(function (resolve, reject) {
@@ -8717,4 +8719,4 @@ exports.renderToReadableStream = function (children, options) {
8717
8719
  startWork(request$jscomp$0);
8718
8720
  });
8719
8721
  };
8720
- exports.version = "19.1.0-canary-5398b711-20250314";
8722
+ exports.version = "19.1.0-canary-fbcda19a-20250317";
@@ -25,7 +25,7 @@ var React = require("react"),
25
25
  REACT_MEMO_TYPE = Symbol.for("react.memo"),
26
26
  REACT_LAZY_TYPE = Symbol.for("react.lazy"),
27
27
  REACT_SCOPE_TYPE = Symbol.for("react.scope"),
28
- REACT_OFFSCREEN_TYPE = Symbol.for("react.offscreen"),
28
+ REACT_ACTIVITY_TYPE = Symbol.for("react.activity"),
29
29
  REACT_LEGACY_HIDDEN_TYPE = Symbol.for("react.legacy_hidden"),
30
30
  REACT_MEMO_CACHE_SENTINEL = Symbol.for("react.memo_cache_sentinel"),
31
31
  REACT_VIEW_TRANSITION_TYPE = Symbol.for("react.view_transition"),
@@ -2794,8 +2794,6 @@ function getComponentNameFromType(type) {
2794
2794
  switch (type) {
2795
2795
  case REACT_FRAGMENT_TYPE:
2796
2796
  return "Fragment";
2797
- case REACT_PORTAL_TYPE:
2798
- return "Portal";
2799
2797
  case REACT_PROFILER_TYPE:
2800
2798
  return "Profiler";
2801
2799
  case REACT_STRICT_MODE_TYPE:
@@ -2804,9 +2802,13 @@ function getComponentNameFromType(type) {
2804
2802
  return "Suspense";
2805
2803
  case REACT_SUSPENSE_LIST_TYPE:
2806
2804
  return "SuspenseList";
2805
+ case REACT_ACTIVITY_TYPE:
2806
+ return "Activity";
2807
2807
  }
2808
2808
  if ("object" === typeof type)
2809
2809
  switch (type.$$typeof) {
2810
+ case REACT_PORTAL_TYPE:
2811
+ return "Portal";
2810
2812
  case REACT_CONTEXT_TYPE:
2811
2813
  return (type.displayName || "Context") + ".Provider";
2812
2814
  case REACT_CONSUMER_TYPE:
@@ -4110,7 +4112,7 @@ function renderElement(request, task, keyPath, type, props, ref) {
4110
4112
  renderNodeDestructive(request, task, props.children, -1);
4111
4113
  task.keyPath = type;
4112
4114
  return;
4113
- case REACT_OFFSCREEN_TYPE:
4115
+ case REACT_ACTIVITY_TYPE:
4114
4116
  "hidden" !== props.mode &&
4115
4117
  ((type = task.keyPath),
4116
4118
  (task.keyPath = keyPath),
@@ -5865,13 +5867,13 @@ function abort(request, reason) {
5865
5867
  }
5866
5868
  var isomorphicReactPackageVersion$jscomp$inline_761 = React.version;
5867
5869
  if (
5868
- "19.1.0-canary-5398b711-20250314" !==
5870
+ "19.1.0-canary-fbcda19a-20250317" !==
5869
5871
  isomorphicReactPackageVersion$jscomp$inline_761
5870
5872
  )
5871
5873
  throw Error(
5872
5874
  'Incompatible React versions: The "react" and "react-dom" packages must have the exact same version. Instead got:\n - react: ' +
5873
5875
  (isomorphicReactPackageVersion$jscomp$inline_761 +
5874
- "\n - react-dom: 19.1.0-canary-5398b711-20250314\nLearn more: https://react.dev/warnings/version-mismatch")
5876
+ "\n - react-dom: 19.1.0-canary-fbcda19a-20250317\nLearn more: https://react.dev/warnings/version-mismatch")
5875
5877
  );
5876
5878
  exports.renderToReadableStream = function (children, options) {
5877
5879
  return new Promise(function (resolve, reject) {
@@ -5962,4 +5964,4 @@ exports.renderToReadableStream = function (children, options) {
5962
5964
  startWork(request);
5963
5965
  });
5964
5966
  };
5965
- exports.version = "19.1.0-canary-5398b711-20250314";
5967
+ exports.version = "19.1.0-canary-fbcda19a-20250317";
@@ -3630,8 +3630,6 @@
3630
3630
  switch (type) {
3631
3631
  case REACT_FRAGMENT_TYPE:
3632
3632
  return "Fragment";
3633
- case REACT_PORTAL_TYPE:
3634
- return "Portal";
3635
3633
  case REACT_PROFILER_TYPE:
3636
3634
  return "Profiler";
3637
3635
  case REACT_STRICT_MODE_TYPE:
@@ -3640,6 +3638,8 @@
3640
3638
  return "Suspense";
3641
3639
  case REACT_SUSPENSE_LIST_TYPE:
3642
3640
  return "SuspenseList";
3641
+ case REACT_ACTIVITY_TYPE:
3642
+ return "Activity";
3643
3643
  }
3644
3644
  if ("object" === typeof type)
3645
3645
  switch (
@@ -3649,6 +3649,8 @@
3649
3649
  ),
3650
3650
  type.$$typeof)
3651
3651
  ) {
3652
+ case REACT_PORTAL_TYPE:
3653
+ return "Portal";
3652
3654
  case REACT_CONTEXT_TYPE:
3653
3655
  return (type.displayName || "Context") + ".Provider";
3654
3656
  case REACT_CONSUMER_TYPE:
@@ -5506,7 +5508,7 @@
5506
5508
  renderNodeDestructive(request, task, props.children, -1);
5507
5509
  task.keyPath = prevKeyPath$jscomp$1;
5508
5510
  return;
5509
- case REACT_OFFSCREEN_TYPE:
5511
+ case REACT_ACTIVITY_TYPE:
5510
5512
  if ("hidden" !== props.mode) {
5511
5513
  var prevKeyPath$jscomp$2 = task.keyPath;
5512
5514
  task.keyPath = keyPath;
@@ -7763,11 +7765,11 @@
7763
7765
  }
7764
7766
  function ensureCorrectIsomorphicReactVersion() {
7765
7767
  var isomorphicReactPackageVersion = React.version;
7766
- if ("19.1.0-canary-5398b711-20250314" !== isomorphicReactPackageVersion)
7768
+ if ("19.1.0-canary-fbcda19a-20250317" !== isomorphicReactPackageVersion)
7767
7769
  throw Error(
7768
7770
  'Incompatible React versions: The "react" and "react-dom" packages must have the exact same version. Instead got:\n - react: ' +
7769
7771
  (isomorphicReactPackageVersion +
7770
- "\n - react-dom: 19.1.0-canary-5398b711-20250314\nLearn more: https://react.dev/warnings/version-mismatch")
7772
+ "\n - react-dom: 19.1.0-canary-fbcda19a-20250317\nLearn more: https://react.dev/warnings/version-mismatch")
7771
7773
  );
7772
7774
  }
7773
7775
  var React = require("react"),
@@ -7786,7 +7788,7 @@
7786
7788
  REACT_MEMO_TYPE = Symbol.for("react.memo"),
7787
7789
  REACT_LAZY_TYPE = Symbol.for("react.lazy"),
7788
7790
  REACT_SCOPE_TYPE = Symbol.for("react.scope"),
7789
- REACT_OFFSCREEN_TYPE = Symbol.for("react.offscreen"),
7791
+ REACT_ACTIVITY_TYPE = Symbol.for("react.activity"),
7790
7792
  REACT_LEGACY_HIDDEN_TYPE = Symbol.for("react.legacy_hidden"),
7791
7793
  REACT_MEMO_CACHE_SENTINEL = Symbol.for("react.memo_cache_sentinel"),
7792
7794
  REACT_VIEW_TRANSITION_TYPE = Symbol.for("react.view_transition"),
@@ -9418,5 +9420,5 @@
9418
9420
  startWork(request);
9419
9421
  });
9420
9422
  };
9421
- exports.version = "19.1.0-canary-5398b711-20250314";
9423
+ exports.version = "19.1.0-canary-fbcda19a-20250317";
9422
9424
  })();
@@ -49,7 +49,7 @@ var React = require("react"),
49
49
  REACT_MEMO_TYPE = Symbol.for("react.memo"),
50
50
  REACT_LAZY_TYPE = Symbol.for("react.lazy"),
51
51
  REACT_SCOPE_TYPE = Symbol.for("react.scope"),
52
- REACT_OFFSCREEN_TYPE = Symbol.for("react.offscreen"),
52
+ REACT_ACTIVITY_TYPE = Symbol.for("react.activity"),
53
53
  REACT_LEGACY_HIDDEN_TYPE = Symbol.for("react.legacy_hidden"),
54
54
  REACT_MEMO_CACHE_SENTINEL = Symbol.for("react.memo_cache_sentinel"),
55
55
  REACT_VIEW_TRANSITION_TYPE = Symbol.for("react.view_transition"),
@@ -3176,8 +3176,6 @@ function getComponentNameFromType(type) {
3176
3176
  switch (type) {
3177
3177
  case REACT_FRAGMENT_TYPE:
3178
3178
  return "Fragment";
3179
- case REACT_PORTAL_TYPE:
3180
- return "Portal";
3181
3179
  case REACT_PROFILER_TYPE:
3182
3180
  return "Profiler";
3183
3181
  case REACT_STRICT_MODE_TYPE:
@@ -3186,9 +3184,13 @@ function getComponentNameFromType(type) {
3186
3184
  return "Suspense";
3187
3185
  case REACT_SUSPENSE_LIST_TYPE:
3188
3186
  return "SuspenseList";
3187
+ case REACT_ACTIVITY_TYPE:
3188
+ return "Activity";
3189
3189
  }
3190
3190
  if ("object" === typeof type)
3191
3191
  switch (type.$$typeof) {
3192
+ case REACT_PORTAL_TYPE:
3193
+ return "Portal";
3192
3194
  case REACT_CONTEXT_TYPE:
3193
3195
  return (type.displayName || "Context") + ".Provider";
3194
3196
  case REACT_CONSUMER_TYPE:
@@ -4541,7 +4543,7 @@ function renderElement(request, task, keyPath, type, props, ref) {
4541
4543
  renderNodeDestructive(request, task, props.children, -1);
4542
4544
  task.keyPath = type;
4543
4545
  return;
4544
- case REACT_OFFSCREEN_TYPE:
4546
+ case REACT_ACTIVITY_TYPE:
4545
4547
  "hidden" !== props.mode &&
4546
4548
  ((type = task.keyPath),
4547
4549
  (task.keyPath = keyPath),
@@ -6322,11 +6324,11 @@ function abort(request, reason) {
6322
6324
  }
6323
6325
  function ensureCorrectIsomorphicReactVersion() {
6324
6326
  var isomorphicReactPackageVersion = React.version;
6325
- if ("19.1.0-canary-5398b711-20250314" !== isomorphicReactPackageVersion)
6327
+ if ("19.1.0-canary-fbcda19a-20250317" !== isomorphicReactPackageVersion)
6326
6328
  throw Error(
6327
6329
  'Incompatible React versions: The "react" and "react-dom" packages must have the exact same version. Instead got:\n - react: ' +
6328
6330
  (isomorphicReactPackageVersion +
6329
- "\n - react-dom: 19.1.0-canary-5398b711-20250314\nLearn more: https://react.dev/warnings/version-mismatch")
6331
+ "\n - react-dom: 19.1.0-canary-fbcda19a-20250317\nLearn more: https://react.dev/warnings/version-mismatch")
6330
6332
  );
6331
6333
  }
6332
6334
  ensureCorrectIsomorphicReactVersion();
@@ -6472,4 +6474,4 @@ exports.renderToReadableStream = function (children, options) {
6472
6474
  startWork(request);
6473
6475
  });
6474
6476
  };
6475
- exports.version = "19.1.0-canary-5398b711-20250314";
6477
+ exports.version = "19.1.0-canary-fbcda19a-20250317";
@@ -3536,8 +3536,6 @@
3536
3536
  switch (type) {
3537
3537
  case REACT_FRAGMENT_TYPE:
3538
3538
  return "Fragment";
3539
- case REACT_PORTAL_TYPE:
3540
- return "Portal";
3541
3539
  case REACT_PROFILER_TYPE:
3542
3540
  return "Profiler";
3543
3541
  case REACT_STRICT_MODE_TYPE:
@@ -3546,6 +3544,8 @@
3546
3544
  return "Suspense";
3547
3545
  case REACT_SUSPENSE_LIST_TYPE:
3548
3546
  return "SuspenseList";
3547
+ case REACT_ACTIVITY_TYPE:
3548
+ return "Activity";
3549
3549
  }
3550
3550
  if ("object" === typeof type)
3551
3551
  switch (
@@ -3555,6 +3555,8 @@
3555
3555
  ),
3556
3556
  type.$$typeof)
3557
3557
  ) {
3558
+ case REACT_PORTAL_TYPE:
3559
+ return "Portal";
3558
3560
  case REACT_CONTEXT_TYPE:
3559
3561
  return (type.displayName || "Context") + ".Provider";
3560
3562
  case REACT_CONSUMER_TYPE:
@@ -5405,7 +5407,7 @@
5405
5407
  renderNodeDestructive(request, task, props.children, -1);
5406
5408
  task.keyPath = prevKeyPath$jscomp$1;
5407
5409
  return;
5408
- case REACT_OFFSCREEN_TYPE:
5410
+ case REACT_ACTIVITY_TYPE:
5409
5411
  if ("hidden" !== props.mode) {
5410
5412
  var prevKeyPath$jscomp$2 = task.keyPath;
5411
5413
  task.keyPath = keyPath;
@@ -7638,11 +7640,11 @@
7638
7640
  }
7639
7641
  function ensureCorrectIsomorphicReactVersion() {
7640
7642
  var isomorphicReactPackageVersion = React.version;
7641
- if ("19.1.0-canary-5398b711-20250314" !== isomorphicReactPackageVersion)
7643
+ if ("19.1.0-canary-fbcda19a-20250317" !== isomorphicReactPackageVersion)
7642
7644
  throw Error(
7643
7645
  'Incompatible React versions: The "react" and "react-dom" packages must have the exact same version. Instead got:\n - react: ' +
7644
7646
  (isomorphicReactPackageVersion +
7645
- "\n - react-dom: 19.1.0-canary-5398b711-20250314\nLearn more: https://react.dev/warnings/version-mismatch")
7647
+ "\n - react-dom: 19.1.0-canary-fbcda19a-20250317\nLearn more: https://react.dev/warnings/version-mismatch")
7646
7648
  );
7647
7649
  }
7648
7650
  function createDrainHandler(destination, request) {
@@ -7719,7 +7721,7 @@
7719
7721
  REACT_MEMO_TYPE = Symbol.for("react.memo"),
7720
7722
  REACT_LAZY_TYPE = Symbol.for("react.lazy"),
7721
7723
  REACT_SCOPE_TYPE = Symbol.for("react.scope"),
7722
- REACT_OFFSCREEN_TYPE = Symbol.for("react.offscreen"),
7724
+ REACT_ACTIVITY_TYPE = Symbol.for("react.activity"),
7723
7725
  REACT_LEGACY_HIDDEN_TYPE = Symbol.for("react.legacy_hidden"),
7724
7726
  REACT_MEMO_CACHE_SENTINEL = Symbol.for("react.memo_cache_sentinel"),
7725
7727
  REACT_VIEW_TRANSITION_TYPE = Symbol.for("react.view_transition"),
@@ -9292,5 +9294,5 @@
9292
9294
  }
9293
9295
  };
9294
9296
  };
9295
- exports.version = "19.1.0-canary-5398b711-20250314";
9297
+ exports.version = "19.1.0-canary-fbcda19a-20250317";
9296
9298
  })();