expo-maps 0.4.2-canary-20240719-83ee47b → 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 +2 -0
- package/build/Map.d.ts +1 -1
- package/ios/ExpoMaps.podspec +3 -1
- package/package.json +4 -4
- package/tsconfig.json +1 -1
package/CHANGELOG.md
CHANGED
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,10 +33,10 @@
|
|
|
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
42
|
"expo": "*",
|
|
@@ -46,5 +46,5 @@
|
|
|
46
46
|
"jest": {
|
|
47
47
|
"preset": "expo-module-scripts/ios"
|
|
48
48
|
},
|
|
49
|
-
"gitHead": "
|
|
49
|
+
"gitHead": "ce0f7d5c7eaec2c8d06ee4e0dc0e58cd6c1612ed"
|
|
50
50
|
}
|
package/tsconfig.json
CHANGED