@arcgis/coding-components-react 4.29.0-beta.8 → 4.29.0-beta.80
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 +1 -1
- package/dist/components.d.ts +1 -1
- package/package.json +9 -8
package/README.md
CHANGED
|
@@ -14,4 +14,4 @@ See use restrictions at <http://www.esri.com/legal/pdfs/mla_e204_e300/english>
|
|
|
14
14
|
|
|
15
15
|
For additional information, contact: Environmental Systems Research Institute, Inc. Attn: Contracts and Legal Services Department 380 New York Street Redlands, California, USA 92373 USA
|
|
16
16
|
|
|
17
|
-
email: contracts@esri.com
|
|
17
|
+
email: contracts@esri.com
|
package/dist/components.d.ts
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
1
|
/// <reference types="react" />
|
|
2
|
-
import type { JSX } from
|
|
2
|
+
import type { JSX } from "@arcgis/coding-components/dist/types/components";
|
|
3
3
|
export declare const ArcgisArcadeEditor: import("react").ForwardRefExoticComponent<JSX.ArcgisArcadeEditor & Omit<import("react").HTMLAttributes<HTMLArcgisArcadeEditorElement>, "style"> & import("./react-component-lib/interfaces").StyleReactProps & import("react").RefAttributes<HTMLArcgisArcadeEditorElement>>;
|
|
4
4
|
export declare const ArcgisCodeEditor: import("react").ForwardRefExoticComponent<JSX.ArcgisCodeEditor & Omit<import("react").HTMLAttributes<HTMLArcgisCodeEditorElement>, "style"> & import("./react-component-lib/interfaces").StyleReactProps & import("react").RefAttributes<HTMLArcgisCodeEditorElement>>;
|
package/package.json
CHANGED
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
"name": "@arcgis/coding-components-react",
|
|
3
3
|
"description": "A set of React components that wrap ArcGIS coding components",
|
|
4
4
|
"homepage": "https://developers.arcgis.com/javascript/latest/",
|
|
5
|
-
"version": "4.29.0-beta.
|
|
5
|
+
"version": "4.29.0-beta.80",
|
|
6
6
|
"sideEffects": false,
|
|
7
7
|
"module": "dist/index.js",
|
|
8
8
|
"main": "dist/index.js",
|
|
@@ -16,26 +16,27 @@
|
|
|
16
16
|
},
|
|
17
17
|
"license": "SEE LICENSE.md",
|
|
18
18
|
"scripts": {
|
|
19
|
-
"build": "
|
|
19
|
+
"build": "yarn pre && yarn compile",
|
|
20
20
|
"clean": "rimraf dist node_modules .turbo",
|
|
21
21
|
"compile": "yarn tsc",
|
|
22
|
+
"pre": "rimraf dist && awc-patch-jsx-imports",
|
|
22
23
|
"tsc": "tsc"
|
|
23
24
|
},
|
|
24
25
|
"dependencies": {
|
|
25
|
-
"@arcgis/coding-components": "4.29.0-beta.
|
|
26
|
+
"@arcgis/coding-components": "4.29.0-beta.80"
|
|
26
27
|
},
|
|
27
28
|
"devDependencies": {
|
|
29
|
+
"@arcgis/components-plugins": "4.29.0-beta.80",
|
|
28
30
|
"@arcgis/core": ">=4.29.0-next <4.30",
|
|
29
31
|
"@types/node": "^20.2.5",
|
|
30
32
|
"@types/react-dom": "^18.2.0",
|
|
31
33
|
"rimraf": "^5.0.0",
|
|
32
|
-
"
|
|
33
|
-
"typescript": "4.9.5"
|
|
34
|
+
"typescript": "~5.3.0"
|
|
34
35
|
},
|
|
35
36
|
"peerDependencies": {
|
|
36
37
|
"@arcgis/core": ">=4.29.0-next <4.30",
|
|
37
|
-
"react": "
|
|
38
|
-
"react-dom": "
|
|
38
|
+
"react": ">=18.0.0 <19.0.0",
|
|
39
|
+
"react-dom": ">=18.0.0 <19.0.0"
|
|
39
40
|
},
|
|
40
|
-
"gitHead": "
|
|
41
|
+
"gitHead": "6db02e74c18b1e84c68217e5153252756b04d729"
|
|
41
42
|
}
|