@arcgis/coding-components-react 4.31.0-next.9 → 4.31.0-next.91
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 +21 -3
package/README.md
CHANGED
|
@@ -1,10 +1,29 @@
|
|
|
1
1
|
# ArcGIS Maps SDK for JavaScript - React wrapper for Coding 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. Currently, this package only includes an [Arcade](https://developers.arcgis.com/arcade/) expression code editor.
|
|
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,9 +1,26 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@arcgis/coding-components-react",
|
|
3
|
-
"version": "4.31.0-next.
|
|
3
|
+
"version": "4.31.0-next.91",
|
|
4
4
|
"description": "A set of React components that wrap ArcGIS coding 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,
|
|
23
|
+
"type": "module",
|
|
7
24
|
"main": "dist/index.js",
|
|
8
25
|
"module": "dist/index.js",
|
|
9
26
|
"types": "dist/index.d.ts",
|
|
@@ -23,7 +40,8 @@
|
|
|
23
40
|
"tsc": "tsc"
|
|
24
41
|
},
|
|
25
42
|
"dependencies": {
|
|
26
|
-
"@arcgis/coding-components": "4.31.0-next.
|
|
43
|
+
"@arcgis/coding-components": "4.31.0-next.91",
|
|
44
|
+
"tslib": "^2.7.0"
|
|
27
45
|
},
|
|
28
46
|
"devDependencies": {
|
|
29
47
|
"@arcgis/core": ">=4.31.0-next <4.32",
|
|
@@ -37,5 +55,5 @@
|
|
|
37
55
|
"react": ">=18.0.0 <19.0.0",
|
|
38
56
|
"react-dom": ">=18.0.0 <19.0.0"
|
|
39
57
|
},
|
|
40
|
-
"gitHead": "
|
|
58
|
+
"gitHead": "c06a24c15d739911e39eb09ff59eeb895c478e7a"
|
|
41
59
|
}
|