@arcgis/map-components-react 4.31.0-next.4 → 4.31.0-next.40
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 +22 -3
- package/package.json +19 -3
package/README.md
CHANGED
|
@@ -1,10 +1,29 @@
|
|
|
1
1
|
# ArcGIS Maps SDK for JavaScript - React wrapper for Map Components
|
|
2
2
|
|
|
3
|
-
|
|
3
|
+
The ArcGIS Maps SDK for JavaScript provides a suite of ready-to-use UI components that simplify the process of creating GIS web applications. This package contains a map component, scene component, and many other components with functionality made possible through the SDK's core API which is also accessible through the components.
|
|
4
4
|
|
|
5
|
-
Samples for how to use this package are available on github in the [
|
|
5
|
+
Samples for how to use this package are available on github in the [jsapi-resources](https://github.com/Esri/jsapi-resources) repository.
|
|
6
6
|
|
|
7
|
-
|
|
7
|
+
## Documentation
|
|
8
|
+
|
|
9
|
+
- [Key Features](https://developers.arcgis.com/javascript/latest/key-features/)
|
|
10
|
+
- [Build with React](https://developers.arcgis.com/javascript/latest/get-started-react/)
|
|
11
|
+
- [API and component references](https://developers.arcgis.com/javascript/latest/references/)
|
|
12
|
+
- [Functionality samples](https://developers.arcgis.com/javascript/latest/sample-code/)
|
|
13
|
+
|
|
14
|
+
## Resources
|
|
15
|
+
|
|
16
|
+
- [ArcGIS blog](https://blogs.esri.com/esri/arcgis/tag/javascript/)
|
|
17
|
+
- [twitter@EsriDevs](https://twitter.com/EsriDevs)
|
|
18
|
+
- [System Requirements](https://developers.arcgis.com/javascript/latest/system-requirements/)
|
|
19
|
+
- [Terms of Use](https://www.esri.com/en-us/legal/terms/product-specific-scope-of-use)
|
|
20
|
+
- [Licensing](https://developers.arcgis.com/javascript/latest/licensing/)
|
|
21
|
+
- [Working with `next` versions](https://github.com/Esri/feedback-js-api-next/blob/main/README.md)
|
|
22
|
+
|
|
23
|
+
## Issues
|
|
24
|
+
|
|
25
|
+
- General questions about using this package or the ArcGIS Maps SDK for JavaScript? See the [Esri developer community](https://community.esri.com/t5/arcgis-api-for-javascript/ct-p/arcgis-api-for-javascript).
|
|
26
|
+
- [Technical support](https://support.esri.com/).
|
|
8
27
|
|
|
9
28
|
## License
|
|
10
29
|
|
package/package.json
CHANGED
|
@@ -1,7 +1,23 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@arcgis/map-components-react",
|
|
3
|
-
"version": "4.31.0-next.
|
|
3
|
+
"version": "4.31.0-next.40",
|
|
4
4
|
"description": "A set of React components that wrap ArcGIS map components",
|
|
5
|
+
"keywords": [
|
|
6
|
+
"ArcGIS",
|
|
7
|
+
"javascript",
|
|
8
|
+
"react",
|
|
9
|
+
"map",
|
|
10
|
+
"3D",
|
|
11
|
+
"2D",
|
|
12
|
+
"visualization",
|
|
13
|
+
"analytics",
|
|
14
|
+
"spatial",
|
|
15
|
+
"data-driven",
|
|
16
|
+
"gis",
|
|
17
|
+
"components",
|
|
18
|
+
"web-components",
|
|
19
|
+
"Esri"
|
|
20
|
+
],
|
|
5
21
|
"homepage": "https://developers.arcgis.com/javascript/latest/",
|
|
6
22
|
"sideEffects": false,
|
|
7
23
|
"main": "dist/index.js",
|
|
@@ -23,7 +39,7 @@
|
|
|
23
39
|
"tsc": "tsc"
|
|
24
40
|
},
|
|
25
41
|
"dependencies": {
|
|
26
|
-
"@arcgis/map-components": "4.31.0-next.
|
|
42
|
+
"@arcgis/map-components": "4.31.0-next.40"
|
|
27
43
|
},
|
|
28
44
|
"devDependencies": {
|
|
29
45
|
"@types/node": "^20.2.5",
|
|
@@ -36,5 +52,5 @@
|
|
|
36
52
|
"react": ">=18.0.0 <19.0.0",
|
|
37
53
|
"react-dom": ">=18.0.0 <19.0.0"
|
|
38
54
|
},
|
|
39
|
-
"gitHead": "
|
|
55
|
+
"gitHead": "9217ab7d1a789df48fa6df22b6322989e9e112b6"
|
|
40
56
|
}
|