@revivejs/react-google-maps 18.0.0 → 19.0.0
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/README.md +4 -3
- package/package.json +5 -5
package/README.md
CHANGED
|
@@ -1,16 +1,16 @@
|
|
|
1
1
|
# @revivejs/react-google-maps
|
|
2
2
|
|
|
3
|
-
> A maintained **React
|
|
3
|
+
> A maintained **React 19 wrapper for Google Maps** with declarative maps, markers, advanced markers, clustering, overlays, directions, geocoding hooks, and versioned live demos.
|
|
4
4
|
|
|
5
5
|
[](https://www.npmjs.com/package/@revivejs/react-google-maps)
|
|
6
6
|
[](https://www.npmjs.com/package/@revivejs/react-google-maps)
|
|
7
7
|
[](https://github.com/alexandroit/react-google-maps/blob/main/LICENSE)
|
|
8
|
-
[](https://react.dev)
|
|
9
9
|
[](https://developers.google.com/maps/documentation/javascript)
|
|
10
10
|
|
|
11
11
|
**[Documentation & Live Demos](https://alexandroit.github.io/react-google-maps/)** | **[npm](https://www.npmjs.com/package/@revivejs/react-google-maps)** | **[Issues](https://github.com/alexandroit/react-google-maps/issues)** | **[Repository](https://github.com/alexandroit/react-google-maps)**
|
|
12
12
|
|
|
13
|
-
**Latest version:** `
|
|
13
|
+
**Latest version:** `19.0.0`
|
|
14
14
|
|
|
15
15
|
## Why this library?
|
|
16
16
|
|
|
@@ -39,6 +39,7 @@ That means you can keep a typed React API for the 90% case and still drop to nat
|
|
|
39
39
|
|
|
40
40
|
| Package version | React version | Google Maps support | Demo link |
|
|
41
41
|
| :---: | :---: | :---: | :--- |
|
|
42
|
+
| **19.0.0** | **19.2.x** | Maps, markers, advanced markers, clustering, shapes, layers, directions, geocoder | [React 19 demo](https://alexandroit.github.io/react-google-maps/react-19/) |
|
|
42
43
|
| **18.0.0** | **18.3.x** | Maps, markers, advanced markers, clustering, shapes, layers, directions, geocoder | [React 18 demo](https://alexandroit.github.io/react-google-maps/react-18/) |
|
|
43
44
|
| **17.0.0** | **17.0.x** | Maps, markers, advanced markers, clustering, shapes, layers, directions, geocoder | [React 17 demo](https://alexandroit.github.io/react-google-maps/react-17/) |
|
|
44
45
|
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@revivejs/react-google-maps",
|
|
3
|
-
"version": "
|
|
4
|
-
"description": "A React
|
|
3
|
+
"version": "19.0.0",
|
|
4
|
+
"description": "A React 19 wrapper for the Google Maps JavaScript API with versioned docs, marker clustering, and migration-friendly components.",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"react",
|
|
7
7
|
"react-library",
|
|
@@ -56,12 +56,12 @@
|
|
|
56
56
|
"build:docs:react-17": "cd docs-src/react-17 && npm run build",
|
|
57
57
|
"build:docs:react-18": "cd docs-src/react-18 && npm run build",
|
|
58
58
|
"build:docs:react-19": "cd docs-src/react-19 && npm run build",
|
|
59
|
-
"build:docs": "npm run build:docs:react-
|
|
59
|
+
"build:docs": "npm run build:docs:react-19",
|
|
60
60
|
"typecheck": "tsc --noEmit"
|
|
61
61
|
},
|
|
62
62
|
"peerDependencies": {
|
|
63
|
-
"react": ">=
|
|
64
|
-
"react-dom": ">=
|
|
63
|
+
"react": ">=19.0.0 <20.0.0",
|
|
64
|
+
"react-dom": ">=19.0.0 <20.0.0"
|
|
65
65
|
},
|
|
66
66
|
"dependencies": {
|
|
67
67
|
"@googlemaps/markerclusterer": "2.6.2"
|