react-native-steerpath-smart-map 1.14.0 → 1.15.0
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,13 @@ 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.15.0]
|
|
19
|
+
- Bump Android Smart SDK to android-smart-1.14.3
|
|
20
|
+
|
|
21
|
+
## [1.14.1] - 2022-02-01
|
|
22
|
+
|
|
23
|
+
- Bump iOS Smart SDK to 1.15.10 (fixes an issue where search bottom sheet was cut off from the bottom)
|
|
24
|
+
|
|
18
25
|
## [1.14.0] - 2022-01-28
|
|
19
26
|
- Added ```setLanguage()``` API which sets the language that the SDK will use in search. The method setLanguage() takes one parameter ```languageCode``` which is one of the language codes listed in the config file's ```supportedLanguages```-array.
|
|
20
27
|
```
|
package/android/build.gradle
CHANGED
|
@@ -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.14.
|
|
62
|
+
implementation "com.steerpath:smart:android-smart-1.14.3"
|
|
63
63
|
implementation 'androidx.lifecycle:lifecycle-extensions:2.2.0'
|
|
64
64
|
implementation "androidx.lifecycle:lifecycle-viewmodel:2.2.0"
|
|
65
65
|
}
|
package/package.json
CHANGED