@mapfirst.ai/react 0.0.56 → 0.0.57

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.mts CHANGED
@@ -290,6 +290,7 @@ declare function useMapFirst(options: BaseMapFirstOptions): {
290
290
  markerOptions?: {
291
291
  showLabel?: boolean;
292
292
  hideBadge?: boolean;
293
+ showTail?: boolean;
293
294
  };
294
295
  }) => void;
295
296
  attachGoogle: (map: any, google: GoogleMapsNamespace, options?: {
@@ -297,6 +298,7 @@ declare function useMapFirst(options: BaseMapFirstOptions): {
297
298
  markerOptions?: {
298
299
  showLabel?: boolean;
299
300
  hideBadge?: boolean;
301
+ showTail?: boolean;
300
302
  };
301
303
  }) => void;
302
304
  attachMapbox: (map: any, mapboxgl: MapboxNamespace, options?: {
@@ -304,6 +306,7 @@ declare function useMapFirst(options: BaseMapFirstOptions): {
304
306
  markerOptions?: {
305
307
  showLabel?: boolean;
306
308
  hideBadge?: boolean;
309
+ showTail?: boolean;
307
310
  };
308
311
  }) => void;
309
312
  };
package/dist/index.d.ts CHANGED
@@ -290,6 +290,7 @@ declare function useMapFirst(options: BaseMapFirstOptions): {
290
290
  markerOptions?: {
291
291
  showLabel?: boolean;
292
292
  hideBadge?: boolean;
293
+ showTail?: boolean;
293
294
  };
294
295
  }) => void;
295
296
  attachGoogle: (map: any, google: GoogleMapsNamespace, options?: {
@@ -297,6 +298,7 @@ declare function useMapFirst(options: BaseMapFirstOptions): {
297
298
  markerOptions?: {
298
299
  showLabel?: boolean;
299
300
  hideBadge?: boolean;
301
+ showTail?: boolean;
300
302
  };
301
303
  }) => void;
302
304
  attachMapbox: (map: any, mapboxgl: MapboxNamespace, options?: {
@@ -304,6 +306,7 @@ declare function useMapFirst(options: BaseMapFirstOptions): {
304
306
  markerOptions?: {
305
307
  showLabel?: boolean;
306
308
  hideBadge?: boolean;
309
+ showTail?: boolean;
307
310
  };
308
311
  }) => void;
309
312
  };
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@mapfirst.ai/react",
3
- "version": "0.0.56",
3
+ "version": "0.0.57",
4
4
  "description": "React hooks for MapFirst SDK - Reactive state management for map properties",
5
5
  "main": "./dist/index.js",
6
6
  "module": "./dist/index.mjs",
@@ -40,7 +40,7 @@
40
40
  "react": ">=17"
41
41
  },
42
42
  "dependencies": {
43
- "@mapfirst.ai/core": "0.0.48"
43
+ "@mapfirst.ai/core": "0.0.49"
44
44
  },
45
45
  "scripts": {
46
46
  "build": "tsup src/index.tsx --format esm,cjs --dts --clean"