@matthamlin/react-client 0.0.0-experimental-56408a5b-20250610 → 0.0.0-experimental-12bc60f5-20250613

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.
@@ -940,7 +940,7 @@
940
940
  case REACT_PORTAL_TYPE:
941
941
  return "Portal";
942
942
  case REACT_CONTEXT_TYPE:
943
- return (type.displayName || "Context") + ".Provider";
943
+ return type.displayName || "Context";
944
944
  case REACT_CONSUMER_TYPE:
945
945
  return (type._context.displayName || "Context") + ".Consumer";
946
946
  case REACT_FORWARD_REF_TYPE:
@@ -2874,9 +2874,8 @@
2874
2874
  REACT_PORTAL_TYPE = Symbol.for("react.portal"),
2875
2875
  REACT_FRAGMENT_TYPE = Symbol.for("react.fragment"),
2876
2876
  REACT_STRICT_MODE_TYPE = Symbol.for("react.strict_mode"),
2877
- REACT_PROFILER_TYPE = Symbol.for("react.profiler");
2878
- Symbol.for("react.provider");
2879
- var REACT_CONSUMER_TYPE = Symbol.for("react.consumer"),
2877
+ REACT_PROFILER_TYPE = Symbol.for("react.profiler"),
2878
+ REACT_CONSUMER_TYPE = Symbol.for("react.consumer"),
2880
2879
  REACT_CONTEXT_TYPE = Symbol.for("react.context"),
2881
2880
  REACT_FORWARD_REF_TYPE = Symbol.for("react.forward_ref"),
2882
2881
  REACT_SUSPENSE_TYPE = Symbol.for("react.suspense"),
@@ -3055,7 +3054,7 @@
3055
3054
  version: rendererVersion,
3056
3055
  rendererPackageName: rendererPackageName,
3057
3056
  currentDispatcherRef: ReactSharedInternals,
3058
- reconcilerVersion: "19.2.0-experimental-56408a5b-20250610",
3057
+ reconcilerVersion: "19.2.0-experimental-12bc60f5-20250613",
3059
3058
  getCurrentComponentInfo: getCurrentOwnerInDEV
3060
3059
  };
3061
3060
  if ("undefined" === typeof __REACT_DEVTOOLS_GLOBAL_HOOK__)
@@ -1601,7 +1601,7 @@ module.exports = function ($$$config) {
1601
1601
  version: rendererVersion,
1602
1602
  rendererPackageName: rendererPackageName,
1603
1603
  currentDispatcherRef: ReactSharedInternals,
1604
- reconcilerVersion: "19.2.0-experimental-56408a5b-20250610",
1604
+ reconcilerVersion: "19.2.0-experimental-12bc60f5-20250613",
1605
1605
  getCurrentComponentInfo: getCurrentOwnerInDEV
1606
1606
  };
1607
1607
  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-56408a5b-20250610",
4
+ "version": "0.0.0-experimental-12bc60f5-20250613",
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-56408a5b-20250610"
26
+ "react": "0.0.0-experimental-12bc60f5-20250613"
27
27
  }
28
28
  }