@arcgis/coding-components-react 4.31.0-next.9 → 4.31.0-next.90

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.
Files changed (2) hide show
  1. package/README.md +22 -3
  2. 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
- This package offers a series of components that provide tools, resources, code editors or utilities that can be used to assist with build applications with the ArcGIS Maps SDK for JavaScript.
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 [arcgis-maps-sdk-javascript-samples-beta](https://github.com/Esri/arcgis-maps-sdk-javascript-samples-beta/) repository.
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
- Refer to the [ArcGIS Maps SDK for JavaScript components documentation](https://developers.arcgis.com/javascript/latest/components/) for more information.
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.9",
3
+ "version": "4.31.0-next.90",
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.9"
43
+ "@arcgis/coding-components": "4.31.0-next.90",
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": "841cf28f4f7e21fecbb07c16b998314a36b2f493"
58
+ "gitHead": "a9a0d57b58ffabca05a7c03a2d0516b7174cf939"
41
59
  }