react-native-steerpath-smart-map 1.16.0 → 1.16.1
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 +4 -0
- package/dist/SmartMapViewProps.d.ts +4 -4
- package/package.json +1 -1
- package/src/SmartMapViewProps.ts +4 -4
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.16.1] - 2022-06-08
|
|
19
|
+
|
|
20
|
+
- Fixed typoes in localized description properties in SmartMapObjectProperties interface. These props are optional.
|
|
21
|
+
|
|
18
22
|
# [1.16.0] - 2022-06-01
|
|
19
23
|
|
|
20
24
|
- Update build.gradle to make the library compatible with apps using gradle version 7+
|
|
@@ -132,10 +132,10 @@ export interface SmartMapObjectProperties {
|
|
|
132
132
|
cateringEmail?: string;
|
|
133
133
|
css_class: string;
|
|
134
134
|
description?: string;
|
|
135
|
-
'description:fi
|
|
136
|
-
'description:nb
|
|
137
|
-
'description:sv
|
|
138
|
-
'description:en
|
|
135
|
+
'description:fi'?: string;
|
|
136
|
+
'description:nb'?: string;
|
|
137
|
+
'description:sv'?: string;
|
|
138
|
+
'description:en'?: string;
|
|
139
139
|
images?: ImageProperty[];
|
|
140
140
|
'images:fi'?: ImageProperty[];
|
|
141
141
|
'images:sv'?: ImageProperty[];
|
package/package.json
CHANGED
package/src/SmartMapViewProps.ts
CHANGED
|
@@ -198,10 +198,10 @@ export interface SmartMapObjectProperties {
|
|
|
198
198
|
cateringEmail?: string;
|
|
199
199
|
css_class: string;
|
|
200
200
|
description?: string;
|
|
201
|
-
'description:fi
|
|
202
|
-
'description:nb
|
|
203
|
-
'description:sv
|
|
204
|
-
'description:en
|
|
201
|
+
'description:fi'?: string;
|
|
202
|
+
'description:nb'?: string;
|
|
203
|
+
'description:sv'?: string;
|
|
204
|
+
'description:en'?: string;
|
|
205
205
|
images?: ImageProperty[];
|
|
206
206
|
'images:fi'?: ImageProperty[];
|
|
207
207
|
'images:sv'?: ImageProperty[];
|