@arcgis/coding-components-react 4.30.0-next.8 → 4.31.0-next.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/LICENSE.md +1 -1
- package/README.md +2 -4
- package/dist/components.d.ts +1 -1
- package/package.json +4 -5
package/LICENSE.md
CHANGED
package/README.md
CHANGED
|
@@ -1,6 +1,4 @@
|
|
|
1
|
-
# ArcGIS Maps SDK for JavaScript - React wrapper for Coding Components
|
|
2
|
-
|
|
3
|
-
**No Esri Technical Support during beta.**
|
|
1
|
+
# ArcGIS Maps SDK for JavaScript - React wrapper for Coding Components
|
|
4
2
|
|
|
5
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.
|
|
6
4
|
|
|
@@ -10,7 +8,7 @@ Refer to the [ArcGIS Maps SDK for JavaScript components documentation](https://d
|
|
|
10
8
|
|
|
11
9
|
## License
|
|
12
10
|
|
|
13
|
-
COPYRIGHT ©
|
|
11
|
+
COPYRIGHT © 2024 Esri
|
|
14
12
|
|
|
15
13
|
All rights reserved under the copyright laws of the United States and applicable international laws, treaties, and conventions.
|
|
16
14
|
|
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';
|
|
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.
|
|
5
|
+
"version": "4.31.0-next.0",
|
|
6
6
|
"sideEffects": false,
|
|
7
7
|
"module": "dist/index.js",
|
|
8
8
|
"main": "dist/index.js",
|
|
@@ -19,14 +19,13 @@
|
|
|
19
19
|
"build": "yarn pre && yarn compile",
|
|
20
20
|
"clean": "rimraf dist node_modules .turbo",
|
|
21
21
|
"compile": "yarn tsc",
|
|
22
|
-
"pre": "rimraf dist
|
|
22
|
+
"pre": "rimraf dist",
|
|
23
23
|
"tsc": "tsc"
|
|
24
24
|
},
|
|
25
25
|
"dependencies": {
|
|
26
|
-
"@arcgis/coding-components": "4.
|
|
26
|
+
"@arcgis/coding-components": "4.31.0-next.0"
|
|
27
27
|
},
|
|
28
28
|
"devDependencies": {
|
|
29
|
-
"@arcgis/components-plugins": "4.30.0-next.8",
|
|
30
29
|
"@arcgis/core": ">=4.30.0-next <4.31",
|
|
31
30
|
"@types/node": "^20.2.5",
|
|
32
31
|
"@types/react-dom": "^18.2.0",
|
|
@@ -38,5 +37,5 @@
|
|
|
38
37
|
"react": ">=18.0.0 <19.0.0",
|
|
39
38
|
"react-dom": ">=18.0.0 <19.0.0"
|
|
40
39
|
},
|
|
41
|
-
"gitHead": "
|
|
40
|
+
"gitHead": "e1e009c091fe13c435e452a1796eb563e0a59cb9"
|
|
42
41
|
}
|