expo-contacts 14.1.0-canary-20250404-42b6263 → 14.1.0-canary-20250404-87e2506

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
@@ -23,6 +23,7 @@
23
23
  - [Android] Started using expo modules gradle plugin. ([#34176](https://github.com/expo/expo/pull/34176) by [@lukmccall](https://github.com/lukmccall))
24
24
  - [apple] Migrate remaining `expo-module.config.json` to unified platform syntax. ([#34445](https://github.com/expo/expo/pull/34445) by [@reichhartd](https://github.com/reichhartd))
25
25
  - [iOS] Fix warnings which will become errors in Swift 6. ([#35288](https://github.com/expo/expo/pull/35288) by [@behenate](https://github.com/behenate)), ([#35428](https://github.com/expo/expo/pull/35428) by [@behenate](https://github.com/behenate))
26
+ - Migrated SwiftUI views with backward compatible `WithHostingView`. ([#35553](https://github.com/expo/expo/pull/35553) by [@kudo](https://github.com/kudo))
26
27
 
27
28
  ## 14.0.5 - 2025-01-31
28
29
 
@@ -4,8 +4,8 @@ import ContactsUI
4
4
  import SwiftUI
5
5
  import ExpoModulesCore
6
6
 
7
- internal struct ExpoContactAccessButton: ExpoSwiftUI.View {
8
- @EnvironmentObject
7
+ internal struct ExpoContactAccessButton: ExpoSwiftUI.View, ExpoSwiftUI.WithHostingView {
8
+ @ObservedObject
9
9
  internal var props: ContactAccessButtonProps
10
10
 
11
11
  var body: some View {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "expo-contacts",
3
- "version": "14.1.0-canary-20250404-42b6263",
3
+ "version": "14.1.0-canary-20250404-87e2506",
4
4
  "description": "Provides access to the phone's system contacts.",
5
5
  "main": "src/index.ts",
6
6
  "types": "build/index.d.ts",
@@ -34,10 +34,10 @@
34
34
  "preset": "expo-module-scripts"
35
35
  },
36
36
  "devDependencies": {
37
- "expo-module-scripts": "4.0.6-canary-20250404-42b6263"
37
+ "expo-module-scripts": "4.0.6-canary-20250404-87e2506"
38
38
  },
39
39
  "peerDependencies": {
40
- "expo": "53.0.0-canary-20250404-42b6263",
40
+ "expo": "53.0.0-canary-20250404-87e2506",
41
41
  "react": "*",
42
42
  "react-native": "*"
43
43
  }