react-native-steerpath-smart-map 1.12.11 → 1.12.12

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
@@ -15,6 +15,10 @@ This package is built on top of Steerpath's Smart SDK, and most of releases are
15
15
  - [iOS](https://s3-eu-west-1.amazonaws.com/steerpath/ios/releases/smart-sdk-changelog/index.html)
16
16
  - [Web](https://s3-eu-west-1.amazonaws.com/steerpath-web-sdk/documentation/smart/latest/index.html)
17
17
 
18
+ ## [1.12.12] - 2021-12-07
19
+
20
+ - Bump Android Smart SDK to android-smart-1.14.0
21
+
18
22
  ## [1.12.11] - 2021-11-22
19
23
 
20
24
  - Bump iOS Smart SDK to 1.15.7 to make the search UI work again.
@@ -59,7 +59,7 @@ repositories {
59
59
 
60
60
  dependencies {
61
61
  implementation "com.facebook.react:react-native:${safeExtGet('reactnativeVersion', '+')}"
62
- implementation "com.steerpath:smart:android-smart-1.11.5"
62
+ implementation "com.steerpath:smart:android-smart-1.12.1"
63
63
  implementation 'androidx.lifecycle:lifecycle-extensions:2.2.0'
64
64
  implementation "androidx.lifecycle:lifecycle-viewmodel:2.2.0"
65
65
  }
@@ -59,7 +59,7 @@ repositories {
59
59
 
60
60
  dependencies {
61
61
  implementation "com.facebook.react:react-native:${safeExtGet('reactnativeVersion', '+')}"
62
- implementation "com.steerpath:smart:android-smart-1.12.1"
62
+ implementation "com.steerpath:smart:android-smart-1.14.0"
63
63
  implementation 'androidx.lifecycle:lifecycle-extensions:2.2.0'
64
64
  implementation "androidx.lifecycle:lifecycle-viewmodel:2.2.0"
65
65
  }
@@ -130,7 +130,7 @@ export var SmartMapView = forwardRef(function (props, ref) {
130
130
  runCommand(smartMapRef.current, "addMarker", [
131
131
  convertToWebSDKSmartMapObj(smartMapObj),
132
132
  layout,
133
- iconName,
133
+ iconName || "category_marker",
134
134
  textColor,
135
135
  textHaloColor,
136
136
  ]);
@@ -142,7 +142,7 @@ export var SmartMapView = forwardRef(function (props, ref) {
142
142
  runCommand(smartMapRef.current, "addMarkers", [
143
143
  mapObjectsArray,
144
144
  layout,
145
- iconName,
145
+ iconName || "category_marker",
146
146
  textColor,
147
147
  textHaloColor,
148
148
  ]);
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "react-native-steerpath-smart-map",
3
3
  "title": "React Native Steerpath Smart Map",
4
- "version": "1.12.11",
4
+ "version": "1.12.12",
5
5
  "description": "Steerpath SmartMapView for React Native",
6
6
  "main": "dist/index.js",
7
7
  "scripts": {
@@ -192,7 +192,7 @@ export const SmartMapView = forwardRef<SmartMapViewMethods, SmartMapViewProps>(
192
192
  runCommand(smartMapRef.current, "addMarker", [
193
193
  convertToWebSDKSmartMapObj(smartMapObj),
194
194
  layout,
195
- iconName,
195
+ iconName || "category_marker",
196
196
  textColor,
197
197
  textHaloColor,
198
198
  ]);
@@ -204,7 +204,7 @@ export const SmartMapView = forwardRef<SmartMapViewMethods, SmartMapViewProps>(
204
204
  runCommand(smartMapRef.current, "addMarkers", [
205
205
  mapObjectsArray,
206
206
  layout,
207
- iconName,
207
+ iconName || "category_marker",
208
208
  textColor,
209
209
  textHaloColor,
210
210
  ]);