@mappedin/react-native-sdk 4.1.2 → 4.1.3
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/dist/index.d.ts +22 -2
- package/dist/index.js +177 -177
- package/package.json +2 -2
package/dist/index.d.ts
CHANGED
|
@@ -226,7 +226,24 @@ declare module '@mappedin/react-native-sdk/wrappers/react-native-sdk/src/MiMapVi
|
|
|
226
226
|
/**
|
|
227
227
|
* Set Polygon Color
|
|
228
228
|
*/
|
|
229
|
-
setPolygonColor(
|
|
229
|
+
setPolygonColor(
|
|
230
|
+
/**
|
|
231
|
+
* Polygon or PolygonId
|
|
232
|
+
*/
|
|
233
|
+
polygonIdOrPolygon: MappedinPolygon['id'] | MappedinPolygon,
|
|
234
|
+
/**
|
|
235
|
+
* Color to use
|
|
236
|
+
*/
|
|
237
|
+
color: string,
|
|
238
|
+
/**
|
|
239
|
+
* Opacity of polygon after setting color
|
|
240
|
+
* @deprecated
|
|
241
|
+
*/
|
|
242
|
+
opacity?: number,
|
|
243
|
+
/**
|
|
244
|
+
* Color of flat label text on polygon
|
|
245
|
+
*/
|
|
246
|
+
textColor?: string): Promise<unknown>;
|
|
230
247
|
/**
|
|
231
248
|
* Clear Polygon Color
|
|
232
249
|
*/
|
|
@@ -2331,7 +2348,10 @@ declare module '@mappedin/react-native-sdk/wrappers/common/controller' {
|
|
|
2331
2348
|
CACHE_IMAGE: {
|
|
2332
2349
|
msgID?: string | undefined;
|
|
2333
2350
|
data: {
|
|
2334
|
-
url?: string | undefined;
|
|
2351
|
+
url?: string | undefined; /**
|
|
2352
|
+
* Send a message to the other side of the bridge
|
|
2353
|
+
*
|
|
2354
|
+
* @hidden
|
|
2335
2355
|
options: import("../react-native-sdk/src").TGetVenueOptions;
|
|
2336
2356
|
locationId: string;
|
|
2337
2357
|
polygonHighlightColor?: string | undefined;
|