@mapfirst.ai/react 0.0.63 → 0.0.65
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 +3 -0
- package/dist/index.d.ts +3 -0
- package/package.json +2 -2
package/dist/index.d.mts
CHANGED
|
@@ -291,6 +291,7 @@ declare function useMapFirst(options: BaseMapFirstOptions): {
|
|
|
291
291
|
showLabel?: boolean;
|
|
292
292
|
hideBadge?: boolean;
|
|
293
293
|
showTail?: boolean;
|
|
294
|
+
hideNonPrimary?: boolean;
|
|
294
295
|
};
|
|
295
296
|
}) => void;
|
|
296
297
|
attachGoogle: (map: any, google: GoogleMapsNamespace, options?: {
|
|
@@ -299,6 +300,7 @@ declare function useMapFirst(options: BaseMapFirstOptions): {
|
|
|
299
300
|
showLabel?: boolean;
|
|
300
301
|
hideBadge?: boolean;
|
|
301
302
|
showTail?: boolean;
|
|
303
|
+
hideNonPrimary?: boolean;
|
|
302
304
|
};
|
|
303
305
|
}) => void;
|
|
304
306
|
attachMapbox: (map: any, mapboxgl: MapboxNamespace, options?: {
|
|
@@ -307,6 +309,7 @@ declare function useMapFirst(options: BaseMapFirstOptions): {
|
|
|
307
309
|
showLabel?: boolean;
|
|
308
310
|
hideBadge?: boolean;
|
|
309
311
|
showTail?: boolean;
|
|
312
|
+
hideNonPrimary?: boolean;
|
|
310
313
|
};
|
|
311
314
|
}) => void;
|
|
312
315
|
};
|
package/dist/index.d.ts
CHANGED
|
@@ -291,6 +291,7 @@ declare function useMapFirst(options: BaseMapFirstOptions): {
|
|
|
291
291
|
showLabel?: boolean;
|
|
292
292
|
hideBadge?: boolean;
|
|
293
293
|
showTail?: boolean;
|
|
294
|
+
hideNonPrimary?: boolean;
|
|
294
295
|
};
|
|
295
296
|
}) => void;
|
|
296
297
|
attachGoogle: (map: any, google: GoogleMapsNamespace, options?: {
|
|
@@ -299,6 +300,7 @@ declare function useMapFirst(options: BaseMapFirstOptions): {
|
|
|
299
300
|
showLabel?: boolean;
|
|
300
301
|
hideBadge?: boolean;
|
|
301
302
|
showTail?: boolean;
|
|
303
|
+
hideNonPrimary?: boolean;
|
|
302
304
|
};
|
|
303
305
|
}) => void;
|
|
304
306
|
attachMapbox: (map: any, mapboxgl: MapboxNamespace, options?: {
|
|
@@ -307,6 +309,7 @@ declare function useMapFirst(options: BaseMapFirstOptions): {
|
|
|
307
309
|
showLabel?: boolean;
|
|
308
310
|
hideBadge?: boolean;
|
|
309
311
|
showTail?: boolean;
|
|
312
|
+
hideNonPrimary?: boolean;
|
|
310
313
|
};
|
|
311
314
|
}) => void;
|
|
312
315
|
};
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@mapfirst.ai/react",
|
|
3
|
-
"version": "0.0.
|
|
3
|
+
"version": "0.0.65",
|
|
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.
|
|
43
|
+
"@mapfirst.ai/core": "0.0.57"
|
|
44
44
|
},
|
|
45
45
|
"scripts": {
|
|
46
46
|
"build": "tsup src/index.tsx --format esm,cjs --dts --clean"
|