@arcgis/charts-components-react 4.31.0-next.68 → 4.31.0-next.69

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 (1) hide show
  1. package/package.json +18 -18
package/package.json CHANGED
@@ -1,30 +1,33 @@
1
1
  {
2
2
  "name": "@arcgis/charts-components-react",
3
- "version": "4.31.0-next.68",
4
- "description": "A set of React components that wrap ArcGIS charts components",
5
- "homepage": "https://developers.arcgis.com/javascript/latest/",
6
- "sideEffects": false,
7
- "main": "dist/index.js",
8
- "module": "dist/index.js",
9
- "types": "dist/index.d.ts",
10
- "files": [
11
- "dist/"
12
- ],
3
+ "version": "4.31.0-next.69",
13
4
  "publishConfig": {
14
5
  "registry": "https://registry.npmjs.org/",
15
6
  "access": "public"
16
7
  },
8
+ "description": "A set of React components that wrap ArcGIS charts components",
17
9
  "license": "SEE LICENSE.md",
10
+ "homepage": "https://developers.arcgis.com/javascript/latest/",
11
+ "main": "dist/index.js",
12
+ "module": "dist/index.js",
18
13
  "scripts": {
14
+ "build": "yarn pre && yarn compile",
15
+ "build:production": "yarn build",
19
16
  "clean": "rimraf dist node_modules .turbo",
20
17
  "compile": "yarn tsc",
21
18
  "pre": "rimraf dist",
22
- "build": "yarn pre && yarn compile",
23
- "build:production": "yarn build",
24
19
  "tsc": "tsc"
25
20
  },
21
+ "files": [
22
+ "dist/"
23
+ ],
24
+ "peerDependencies": {
25
+ "@arcgis/core": ">=4.31.0-next <4.32",
26
+ "react": ">=18.0.0 <19.0.0",
27
+ "react-dom": ">=18.0.0 <19.0.0"
28
+ },
26
29
  "dependencies": {
27
- "@arcgis/charts-components": "4.31.0-next.68"
30
+ "@arcgis/charts-components": "4.31.0-next.69"
28
31
  },
29
32
  "devDependencies": {
30
33
  "@arcgis/components-plugins": ">=4.31.0-next <4.32",
@@ -35,9 +38,6 @@
35
38
  "rimraf": "^6.0.1",
36
39
  "typescript": "~5.4.0"
37
40
  },
38
- "peerDependencies": {
39
- "@arcgis/core": ">=4.31.0-next <4.32",
40
- "react": ">=18.0.0 <19.0.0",
41
- "react-dom": ">=18.0.0 <19.0.0"
42
- }
41
+ "types": "dist/index.d.ts",
42
+ "sideEffects": false
43
43
  }