@bpd-library/components 1.2.4-beta.3 → 1.2.5-beta.2
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 +0 -1
- package/dist/index.js +0 -1
- package/dist/index.js.map +1 -1
- package/dist/molecules/map/hooks/index.d.ts +1 -0
- package/dist/molecules/map/hooks/index.js +2 -0
- package/dist/molecules/map/hooks/index.js.map +1 -0
- package/dist/molecules/map/hooks/use-map-instance.d.ts +2 -0
- package/dist/molecules/map/hooks/use-map-instance.js +15 -0
- package/dist/molecules/map/hooks/use-map-instance.js.map +1 -0
- package/dist/molecules/map/index.d.ts +1 -1
- package/dist/molecules/map/index.js +1 -1
- package/dist/molecules/map/index.js.map +1 -1
- package/dist/molecules/map/map.d.ts +4 -1
- package/dist/molecules/map/map.js +25 -54
- package/dist/molecules/map/map.js.map +1 -1
- package/dist/molecules/map/store/index.d.ts +1 -0
- package/dist/molecules/map/store/index.js +2 -0
- package/dist/molecules/map/store/index.js.map +1 -0
- package/dist/molecules/map/store/map/hooks/index.d.ts +1 -0
- package/dist/molecules/map/store/map/hooks/index.js +2 -0
- package/dist/molecules/map/store/map/hooks/index.js.map +1 -0
- package/dist/molecules/map/store/map/hooks/use-map-instance.d.ts +2 -0
- package/dist/molecules/map/store/map/hooks/use-map-instance.js +15 -0
- package/dist/molecules/map/store/map/hooks/use-map-instance.js.map +1 -0
- package/dist/molecules/map/store/map/index.d.ts +1 -0
- package/dist/molecules/map/store/map/index.js +1 -0
- package/dist/molecules/map/store/map/index.js.map +1 -1
- package/dist/molecules/map/store/map/store.d.ts +1 -4
- package/dist/molecules/map/store/map/store.js +0 -16
- package/dist/molecules/map/store/map/store.js.map +1 -1
- package/dist/molecules/map/store/store.d.ts +65 -0
- package/dist/molecules/map/store/store.js +179 -0
- package/dist/molecules/map/store/store.js.map +1 -0
- package/dist/molecules/map/utilities/mapbox/directions/directions.d.ts +5 -0
- package/dist/molecules/map/utilities/mapbox/directions/directions.js +96 -0
- package/dist/molecules/map/utilities/mapbox/directions/directions.js.map +1 -0
- package/dist/molecules/map/utilities/mapbox/mapbox.d.ts +4 -4
- package/dist/molecules/map/utilities/mapbox/mapbox.js +3 -3
- package/dist/molecules/map/utilities/mapbox/mapbox.js.map +1 -1
- package/dist/molecules/map/utilities/mapbox/pointers/setup-pointers.js +1 -1
- package/dist/molecules/map/utilities/mapbox/pointers/setup-pointers.js.map +1 -1
- package/dist/molecules/map/utilities/mapbox/polygons/interaction.js +1 -1
- package/dist/molecules/map/utilities/mapbox/polygons/interaction.js.map +1 -1
- package/dist/molecules/map/utilities/mapbox/raster.d.ts +1 -1
- package/dist/molecules/map/utilities/mapbox/raster.js.map +1 -1
- package/dist/molecules/map/utilities/mapbox/search/search.js +1 -1
- package/dist/molecules/map/utilities/mapbox/search/search.js.map +1 -1
- package/package.json +4 -4
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@bpd-library/components",
|
|
3
|
-
"version": "1.2.
|
|
3
|
+
"version": "1.2.5-beta.2",
|
|
4
4
|
"description": "Description",
|
|
5
5
|
"license": "MIT",
|
|
6
6
|
"types": "dist/index.d.ts",
|
|
@@ -46,14 +46,14 @@
|
|
|
46
46
|
"publishConfig": {
|
|
47
47
|
"access": "public"
|
|
48
48
|
},
|
|
49
|
-
"gitHead": "
|
|
49
|
+
"gitHead": "5ea16e766208ab54722b50fa50f7a223267e893c",
|
|
50
50
|
"dependencies": {
|
|
51
51
|
"@atomify/core": "2.4.1",
|
|
52
52
|
"@atomify/hooks": "1.1.11",
|
|
53
53
|
"@atomify/jsx": "1.7.1",
|
|
54
54
|
"@atomify/kit": "1.1.11",
|
|
55
|
-
"@bpd-library/types": "^1.2.
|
|
56
|
-
"@bpd-library/utilities": "^1.2.
|
|
55
|
+
"@bpd-library/types": "^1.2.5-beta.2",
|
|
56
|
+
"@bpd-library/utilities": "^1.2.5-beta.2",
|
|
57
57
|
"@mapbox/mapbox-gl-geocoder": "^4.7.0",
|
|
58
58
|
"@mapbox/mapbox-gl-language": "^0.10.1",
|
|
59
59
|
"@turf/helpers": "^6.5.0",
|