@arcgis/charts-components-react 4.33.0-next.98 → 4.33.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 +9 -5
- package/package.json +8 -7
package/README.md
CHANGED
|
@@ -1,15 +1,15 @@
|
|
|
1
|
-
# ArcGIS Maps SDK for JavaScript - React
|
|
1
|
+
# ArcGIS Maps SDK for JavaScript - React wrapper for Charts Components (beta)
|
|
2
2
|
|
|
3
3
|
**No Esri Technical Support during beta.**
|
|
4
4
|
|
|
5
|
-
|
|
5
|
+
> Note: `@arcgis/charts-components-react` was developed for use in React 18. Consider updating to React 19 where the React wrapper is no longer necessary. Check out the [documentation](https://developers.arcgis.com/javascript/latest/get-started/#react) to get started with `@arcgis/charts-components` in React 19.
|
|
6
6
|
|
|
7
|
-
|
|
7
|
+
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 offers a series of charting components that can be used to build custom applications.
|
|
8
8
|
|
|
9
9
|
## Documentation
|
|
10
10
|
|
|
11
11
|
- [Key Features](https://developers.arcgis.com/javascript/latest/key-features/)
|
|
12
|
-
- [Build with React](https://developers.arcgis.com/javascript/latest/get-started
|
|
12
|
+
- [Build with React](https://developers.arcgis.com/javascript/latest/get-started/#react)
|
|
13
13
|
- [API and component references](https://developers.arcgis.com/javascript/latest/references/)
|
|
14
14
|
- [Functionality samples](https://developers.arcgis.com/javascript/latest/sample-code/)
|
|
15
15
|
|
|
@@ -22,11 +22,15 @@ Samples for how to use this package are available on github in the [jsapi-resour
|
|
|
22
22
|
- [Licensing](https://developers.arcgis.com/javascript/latest/licensing/)
|
|
23
23
|
- [Working with `next` versions](https://github.com/Esri/feedback-js-api-next/blob/main/README.md)
|
|
24
24
|
|
|
25
|
-
##
|
|
25
|
+
## Support
|
|
26
26
|
|
|
27
27
|
- 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).
|
|
28
28
|
- [Technical support](https://support.esri.com/).
|
|
29
29
|
|
|
30
|
+
## Quick start guide
|
|
31
|
+
|
|
32
|
+
An [example](https://github.com/Esri/jsapi-resources/tree/50579b9362b846e869a343b660c5a2415176a275/component-samples/charts-components/samples/react) is available from the 4.31 release in the jsapi-resources repo.
|
|
33
|
+
|
|
30
34
|
## License
|
|
31
35
|
|
|
32
36
|
COPYRIGHT © 2025 Esri
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@arcgis/charts-components-react",
|
|
3
|
-
"version": "4.33.0
|
|
3
|
+
"version": "4.33.0",
|
|
4
4
|
"description": "A set of React components that wrap ArcGIS charts components",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"ArcGIS",
|
|
@@ -18,6 +18,7 @@
|
|
|
18
18
|
],
|
|
19
19
|
"homepage": "https://developers.arcgis.com/javascript/latest/",
|
|
20
20
|
"sideEffects": false,
|
|
21
|
+
"type": "module",
|
|
21
22
|
"main": "dist/index.js",
|
|
22
23
|
"module": "dist/index.js",
|
|
23
24
|
"types": "dist/index.d.ts",
|
|
@@ -26,13 +27,13 @@
|
|
|
26
27
|
],
|
|
27
28
|
"license": "SEE LICENSE.md",
|
|
28
29
|
"dependencies": {
|
|
29
|
-
"@arcgis/charts-components": "4.33.0
|
|
30
|
-
"@
|
|
31
|
-
"
|
|
30
|
+
"@arcgis/charts-components": "4.33.0",
|
|
31
|
+
"@lit/react": "^1.0.7",
|
|
32
|
+
"tslib": "^2.8.1"
|
|
32
33
|
},
|
|
33
34
|
"peerDependencies": {
|
|
34
|
-
"@arcgis/core": "
|
|
35
|
-
"react": ">=18.0.0 <
|
|
36
|
-
"react-dom": ">=18.0.0 <
|
|
35
|
+
"@arcgis/core": "~4.33.0",
|
|
36
|
+
"react": ">=18.0.0 <20.0.0",
|
|
37
|
+
"react-dom": ">=18.0.0 <20.0.0"
|
|
37
38
|
}
|
|
38
39
|
}
|