react-three-map 0.3.3 → 0.3.4

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 CHANGED
@@ -1,5 +1,11 @@
1
1
  # react-three-map
2
2
 
3
+ ## 0.3.4
4
+
5
+ ### Patch Changes
6
+
7
+ - 4dd8a72: Fix types declaration path.
8
+
3
9
  ## 0.3.3
4
10
 
5
11
  ### Patch Changes
package/README.md CHANGED
@@ -10,10 +10,10 @@
10
10
 
11
11
  Until now you had:
12
12
 
13
- | imperative | declarative (react) |
14
- | --- | --- |
15
- | Mapbox GL JS | react-map-gl |
16
- | THREE.js | react-three-fiber |
13
+ | imperative | declarative (react) |
14
+ | --------------- | ----------------- |
15
+ | Maplibre/Mapbox | react-map-gl |
16
+ | THREE.js | react-three-fiber |
17
17
 
18
18
  Now with `react-three-map`, you can use them together :fist_right::star::fist_left:.
19
19
 
Binary file
Binary file
Binary file
Binary file
package/package.json CHANGED
@@ -1,10 +1,10 @@
1
1
  {
2
2
  "name": "react-three-map",
3
- "version": "0.3.3",
3
+ "version": "0.3.4",
4
4
  "description": "Use react-three-fiber inside MapLibre and Mapbox",
5
5
  "main": "dist/cjs/main.js",
6
6
  "module": "dist/es/main.mjs",
7
- "types": "dist/types/maplibre.index.d.ts",
7
+ "types": "dist/types/mapbox.index.d.ts",
8
8
  "sideEffects": false,
9
9
  "repository": "https://github.com/RodrigoHamuy/react-three-map",
10
10
  "homepage": "https://github.com/RodrigoHamuy/react-three-map",
@@ -51,17 +51,19 @@
51
51
  "react": "^18.2.0",
52
52
  "react-dom": "^18.2.0",
53
53
  "react-map-gl": "^7.1.0",
54
+ "suspend-react": "^0.1.3",
54
55
  "three": "^0.153.0",
55
56
  "three-stdlib": "^2.23.8",
56
57
  "typescript": "~5.0.2",
57
- "vite": "^4.3.9"
58
+ "vite": "^4.3.9",
59
+ "web-ifc-three": "^0.0.125"
58
60
  },
59
61
  "peerDependencies": {
60
62
  "@react-three/fiber": ">=8.13",
61
63
  "mapbox-gl": ">=2.15",
62
64
  "maplibre-gl": ">=3.1",
63
- "react-map-gl": ">=7.1",
64
65
  "react": ">=18.0",
66
+ "react-map-gl": ">=7.1",
65
67
  "three": ">=0.133"
66
68
  },
67
69
  "peerDependenciesMeta": {