expo-widgets 56.0.6 → 56.0.7

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.
package/CHANGELOG.md CHANGED
@@ -10,6 +10,12 @@
10
10
 
11
11
  ### 💡 Others
12
12
 
13
+ ## 56.0.7 — 2026-05-13
14
+
15
+ ### 🎉 New features
16
+
17
+ - Add `ChartView` support. ([#45674](https://github.com/expo/expo/pull/45674) by [@jakex7](https://github.com/jakex7))
18
+
13
19
  ## 56.0.6 — 2026-05-11
14
20
 
15
21
  _This version does not introduce any user-facing changes._
@@ -81,6 +81,8 @@ public struct WidgetsDynamicView: View, ExpoSwiftUI.AnyChild {
81
81
  render(UnevenRoundedRectangleView.self, UnevenRoundedRectangleViewProps.self)
82
82
  case "GaugeView":
83
83
  render(GaugeView.self, GaugeProps.self)
84
+ case "ChartView":
85
+ render(ChartView.self, ChartProps.self)
84
86
  case "Button":
85
87
  if #available(iOS 17.0, *) {
86
88
  switch kind {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "expo-widgets",
3
- "version": "56.0.6",
3
+ "version": "56.0.7",
4
4
  "description": "Widgets.",
5
5
  "main": "build/index.js",
6
6
  "types": "build/index.d.ts",
@@ -22,7 +22,7 @@
22
22
  "homepage": "https://docs.expo.dev/versions/latest/sdk/widgets/",
23
23
  "dependencies": {
24
24
  "@expo/plist": "^0.6.0",
25
- "@expo/ui": "~56.0.5"
25
+ "@expo/ui": "~56.0.6"
26
26
  },
27
27
  "devDependencies": {
28
28
  "@expo/spawn-async": "^1.7.2",
@@ -30,8 +30,8 @@
30
30
  "@types/react": "~19.2.0",
31
31
  "react-native": "0.85.3",
32
32
  "resolve-workspace-root": "^2.0.0",
33
- "expo-module-scripts": "56.0.2",
34
- "expo": "56.0.0-preview.8"
33
+ "expo": "56.0.0-preview.10",
34
+ "expo-module-scripts": "56.0.2"
35
35
  },
36
36
  "peerDependencies": {
37
37
  "expo": "*",
@@ -44,7 +44,7 @@
44
44
  "./scripts/xcode-build-bundle.sh"
45
45
  ]
46
46
  },
47
- "gitHead": "42013232893cb2aa71ab218e9b422d4a8476b3f0",
47
+ "gitHead": "40f0a6f6711d93762e0506b37e6e077e4bd9a541",
48
48
  "scripts": {
49
49
  "build": "expo-module build",
50
50
  "build:plugin": "expo-module build plugin",