expo-maps 0.4.2-canary-20240628-1ba8152 → 1.0.0-canary-20240814-ce0f7d5
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 +3 -0
- package/build/Map.d.ts +1 -1
- package/ios/ExpoMaps.podspec +3 -1
- package/package.json +7 -5
- package/tsconfig.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -4,11 +4,14 @@
|
|
|
4
4
|
|
|
5
5
|
### 🛠 Breaking changes
|
|
6
6
|
|
|
7
|
+
- Bumped iOS deployment target to 15.1. ([#30840](https://github.com/expo/expo/pull/30840) by [@tsapeta](https://github.com/tsapeta))
|
|
8
|
+
|
|
7
9
|
### 🎉 New features
|
|
8
10
|
|
|
9
11
|
### 🐛 Bug fixes
|
|
10
12
|
|
|
11
13
|
- Removed usage of reserved keyword `module`. ([#30010](https://github.com/expo/expo/pull/30010) by [@EvanBacon](https://github.com/EvanBacon))
|
|
14
|
+
Add missing `react` and `react-native` peer dependencies for isolated modules. ([#30475](https://github.com/expo/expo/pull/30475) by [@byCedric](https://github.com/byCedric))
|
|
12
15
|
|
|
13
16
|
### 💡 Others
|
|
14
17
|
|
package/build/Map.d.ts
CHANGED
|
@@ -28,6 +28,6 @@ export declare class ExpoMap extends React.Component<ExpoMapViewProps> {
|
|
|
28
28
|
componentWillUnmount(): void;
|
|
29
29
|
componentDidUpdate(_: any, prevState: ExpoMapState): void;
|
|
30
30
|
private mapChildren;
|
|
31
|
-
render(): JSX.Element;
|
|
31
|
+
render(): React.JSX.Element;
|
|
32
32
|
}
|
|
33
33
|
//# sourceMappingURL=Map.d.ts.map
|
package/ios/ExpoMaps.podspec
CHANGED
|
@@ -10,7 +10,9 @@ Pod::Spec.new do |s|
|
|
|
10
10
|
s.license = package['license']
|
|
11
11
|
s.author = package['author']
|
|
12
12
|
s.homepage = package['homepage']
|
|
13
|
-
s.
|
|
13
|
+
s.platforms = {
|
|
14
|
+
:ios => '15.1'
|
|
15
|
+
}
|
|
14
16
|
s.source = { git: 'https://github.com/expo/expo.git' }
|
|
15
17
|
s.static_framework = true
|
|
16
18
|
s.source_files = 'ExpoMaps/**/*.{h,m,swift}'
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "expo-maps",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "1.0.0-canary-20240814-ce0f7d5",
|
|
4
4
|
"description": "Provides a Map component that uses Google Maps on Android and Apple Maps or Google Maps on iOS.",
|
|
5
5
|
"main": "build/Map.js",
|
|
6
6
|
"types": "build/Map.d.ts",
|
|
@@ -33,16 +33,18 @@
|
|
|
33
33
|
"license": "MIT",
|
|
34
34
|
"homepage": "https://docs.expo.dev",
|
|
35
35
|
"dependencies": {
|
|
36
|
-
"expo-asset": "
|
|
36
|
+
"expo-asset": "11.0.0-canary-20240814-ce0f7d5"
|
|
37
37
|
},
|
|
38
38
|
"devDependencies": {
|
|
39
|
-
"expo-module-scripts": "3.6.0-canary-
|
|
39
|
+
"expo-module-scripts": "3.6.0-canary-20240814-ce0f7d5"
|
|
40
40
|
},
|
|
41
41
|
"peerDependencies": {
|
|
42
|
-
"expo": "*"
|
|
42
|
+
"expo": "*",
|
|
43
|
+
"react": "*",
|
|
44
|
+
"react-native": "*"
|
|
43
45
|
},
|
|
44
46
|
"jest": {
|
|
45
47
|
"preset": "expo-module-scripts/ios"
|
|
46
48
|
},
|
|
47
|
-
"gitHead": "
|
|
49
|
+
"gitHead": "ce0f7d5c7eaec2c8d06ee4e0dc0e58cd6c1612ed"
|
|
48
50
|
}
|
package/tsconfig.json
CHANGED