@matthamlin/react-client 0.0.0-experimental-f3c95600-20250313 → 0.0.0-experimental-a35aaf70-20250318

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.
@@ -906,8 +906,6 @@
906
906
  switch (type) {
907
907
  case REACT_FRAGMENT_TYPE:
908
908
  return "Fragment";
909
- case REACT_PORTAL_TYPE:
910
- return "Portal";
911
909
  case REACT_PROFILER_TYPE:
912
910
  return "Profiler";
913
911
  case REACT_STRICT_MODE_TYPE:
@@ -916,6 +914,8 @@
916
914
  return "Suspense";
917
915
  case REACT_SUSPENSE_LIST_TYPE:
918
916
  return "SuspenseList";
917
+ case REACT_ACTIVITY_TYPE:
918
+ return "Activity";
919
919
  case REACT_VIEW_TRANSITION_TYPE:
920
920
  return "ViewTransition";
921
921
  }
@@ -927,6 +927,8 @@
927
927
  ),
928
928
  type.$$typeof)
929
929
  ) {
930
+ case REACT_PORTAL_TYPE:
931
+ return "Portal";
930
932
  case REACT_CONTEXT_TYPE:
931
933
  return (type.displayName || "Context") + ".Provider";
932
934
  case REACT_CONSUMER_TYPE:
@@ -2628,6 +2630,7 @@
2628
2630
  REACT_SUSPENSE_LIST_TYPE = Symbol.for("react.suspense_list"),
2629
2631
  REACT_MEMO_TYPE = Symbol.for("react.memo"),
2630
2632
  REACT_LAZY_TYPE = Symbol.for("react.lazy"),
2633
+ REACT_ACTIVITY_TYPE = Symbol.for("react.activity"),
2631
2634
  REACT_POSTPONE_TYPE = Symbol.for("react.postpone"),
2632
2635
  REACT_VIEW_TRANSITION_TYPE = Symbol.for("react.view_transition"),
2633
2636
  MAYBE_ITERATOR_SYMBOL = Symbol.iterator,
@@ -2803,7 +2806,7 @@
2803
2806
  version: rendererVersion,
2804
2807
  rendererPackageName: rendererPackageName,
2805
2808
  currentDispatcherRef: ReactSharedInternals,
2806
- reconcilerVersion: "19.1.0-experimental-f3c95600-20250313",
2809
+ reconcilerVersion: "19.1.0-experimental-a35aaf70-20250318",
2807
2810
  getCurrentComponentInfo: getCurrentOwnerInDEV
2808
2811
  };
2809
2812
  if ("undefined" === typeof __REACT_DEVTOOLS_GLOBAL_HOOK__)
@@ -1600,7 +1600,7 @@ module.exports = function ($$$config) {
1600
1600
  version: rendererVersion,
1601
1601
  rendererPackageName: rendererPackageName,
1602
1602
  currentDispatcherRef: ReactSharedInternals,
1603
- reconcilerVersion: "19.1.0-experimental-f3c95600-20250313",
1603
+ reconcilerVersion: "19.1.0-experimental-a35aaf70-20250318",
1604
1604
  getCurrentComponentInfo: getCurrentOwnerInDEV
1605
1605
  };
1606
1606
  if ("undefined" === typeof __REACT_DEVTOOLS_GLOBAL_HOOK__)
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@matthamlin/react-client",
3
3
  "description": "React package for consuming streaming models.",
4
- "version": "0.0.0-experimental-f3c95600-20250313",
4
+ "version": "0.0.0-experimental-a35aaf70-20250318",
5
5
  "keywords": [
6
6
  "react"
7
7
  ],
@@ -23,6 +23,6 @@
23
23
  "node": ">=0.10.0"
24
24
  },
25
25
  "peerDependencies": {
26
- "react": "0.0.0-experimental-f3c95600-20250313"
26
+ "react": "0.0.0-experimental-a35aaf70-20250318"
27
27
  }
28
28
  }