@arcgis/coding-components-react 4.29.0-test.0 → 4.29.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/README.md +7 -3
- package/{components.d.ts → dist/components.d.ts} +1 -1
- package/dist/components.js +6 -0
- package/package.json +29 -9
- package/components.js +0 -8
- /package/{index.d.ts → dist/index.d.ts} +0 -0
- /package/{index.js → dist/index.js} +0 -0
- /package/{react-component-lib → dist/react-component-lib}/createComponent.d.ts +0 -0
- /package/{react-component-lib → dist/react-component-lib}/createComponent.js +0 -0
- /package/{react-component-lib → dist/react-component-lib}/createOverlayComponent.d.ts +0 -0
- /package/{react-component-lib → dist/react-component-lib}/createOverlayComponent.js +0 -0
- /package/{react-component-lib → dist/react-component-lib}/index.d.ts +0 -0
- /package/{react-component-lib → dist/react-component-lib}/index.js +0 -0
- /package/{react-component-lib → dist/react-component-lib}/interfaces.d.ts +0 -0
- /package/{react-component-lib → dist/react-component-lib}/interfaces.js +0 -0
- /package/{react-component-lib → dist/react-component-lib}/utils/attachProps.d.ts +0 -0
- /package/{react-component-lib → dist/react-component-lib}/utils/attachProps.js +0 -0
- /package/{react-component-lib → dist/react-component-lib}/utils/case.d.ts +0 -0
- /package/{react-component-lib → dist/react-component-lib}/utils/case.js +0 -0
- /package/{react-component-lib → dist/react-component-lib}/utils/dev.d.ts +0 -0
- /package/{react-component-lib → dist/react-component-lib}/utils/dev.js +0 -0
- /package/{react-component-lib → dist/react-component-lib}/utils/index.d.ts +0 -0
- /package/{react-component-lib → dist/react-component-lib}/utils/index.js +0 -0
package/README.md
CHANGED
|
@@ -1,6 +1,10 @@
|
|
|
1
|
-
# React wrapper for
|
|
1
|
+
# ArcGIS Maps SDK for JavaScript - React wrapper for Coding Components (beta)
|
|
2
2
|
|
|
3
|
-
|
|
3
|
+
**No Esri Technical Support during beta.**
|
|
4
|
+
|
|
5
|
+
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
|
+
|
|
7
|
+
Refer to the [ArcGIS Maps SDK for JavaScript components documentation](https://developers.arcgis.com/javascript/latest/components/) for more information.
|
|
4
8
|
|
|
5
9
|
## License
|
|
6
10
|
|
|
@@ -14,4 +18,4 @@ See use restrictions at <http://www.esri.com/legal/pdfs/mla_e204_e300/english>
|
|
|
14
18
|
|
|
15
19
|
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
20
|
|
|
17
|
-
email: contracts@esri.com
|
|
21
|
+
email: contracts@esri.com
|
|
@@ -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>>;
|
|
@@ -0,0 +1,6 @@
|
|
|
1
|
+
/* eslint-disable */
|
|
2
|
+
/* tslint:disable */
|
|
3
|
+
/* auto-generated react proxies */
|
|
4
|
+
import { createReactComponent } from './react-component-lib';
|
|
5
|
+
export const ArcgisArcadeEditor = /*@__PURE__*/ createReactComponent('arcgis-arcade-editor');
|
|
6
|
+
export const ArcgisCodeEditor = /*@__PURE__*/ createReactComponent('arcgis-code-editor');
|
package/package.json
CHANGED
|
@@ -2,21 +2,41 @@
|
|
|
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
|
|
6
|
-
"
|
|
7
|
-
"
|
|
8
|
-
"
|
|
5
|
+
"version": "4.29.0",
|
|
6
|
+
"sideEffects": false,
|
|
7
|
+
"module": "dist/index.js",
|
|
8
|
+
"main": "dist/index.js",
|
|
9
|
+
"types": "dist/index.d.ts",
|
|
10
|
+
"files": [
|
|
11
|
+
"dist/"
|
|
12
|
+
],
|
|
9
13
|
"publishConfig": {
|
|
10
14
|
"registry": "https://registry.npmjs.org/",
|
|
11
15
|
"access": "public"
|
|
12
16
|
},
|
|
13
17
|
"license": "SEE LICENSE.md",
|
|
18
|
+
"scripts": {
|
|
19
|
+
"build": "yarn pre && yarn compile",
|
|
20
|
+
"clean": "rimraf dist node_modules .turbo",
|
|
21
|
+
"compile": "yarn tsc",
|
|
22
|
+
"pre": "rimraf dist && yarn awc patch-jsx-imports",
|
|
23
|
+
"tsc": "tsc"
|
|
24
|
+
},
|
|
14
25
|
"dependencies": {
|
|
15
|
-
"@arcgis/coding-components": "4.29.0
|
|
26
|
+
"@arcgis/coding-components": "4.29.0"
|
|
27
|
+
},
|
|
28
|
+
"devDependencies": {
|
|
29
|
+
"@arcgis/components-plugins": "4.29.0",
|
|
30
|
+
"@arcgis/core": ">=4.29.0-next <4.30",
|
|
31
|
+
"@types/node": "^20.2.5",
|
|
32
|
+
"@types/react-dom": "^18.2.0",
|
|
33
|
+
"rimraf": "^5.0.0",
|
|
34
|
+
"typescript": "~5.3.0"
|
|
16
35
|
},
|
|
17
36
|
"peerDependencies": {
|
|
18
37
|
"@arcgis/core": ">=4.29.0-next <4.30",
|
|
19
|
-
"react": "
|
|
20
|
-
"react-dom": "
|
|
21
|
-
}
|
|
22
|
-
|
|
38
|
+
"react": ">=18.0.0 <19.0.0",
|
|
39
|
+
"react-dom": ">=18.0.0 <19.0.0"
|
|
40
|
+
},
|
|
41
|
+
"gitHead": "33c2de9115bb9e2881ccd3ffa658d79cb63e11bc"
|
|
42
|
+
}
|
package/components.js
DELETED
|
@@ -1,8 +0,0 @@
|
|
|
1
|
-
/* eslint-disable */
|
|
2
|
-
/* tslint:disable */
|
|
3
|
-
/* auto-generated react proxies */
|
|
4
|
-
import { createReactComponent } from './react-component-lib';
|
|
5
|
-
import { defineCustomElement as defineArcgisArcadeEditor } from '@arcgis/coding-components/dist/components/arcgis-arcade-editor.js';
|
|
6
|
-
import { defineCustomElement as defineArcgisCodeEditor } from '@arcgis/coding-components/dist/components/arcgis-code-editor.js';
|
|
7
|
-
export const ArcgisArcadeEditor = /*@__PURE__*/ createReactComponent('arcgis-arcade-editor', undefined, undefined, defineArcgisArcadeEditor);
|
|
8
|
-
export const ArcgisCodeEditor = /*@__PURE__*/ createReactComponent('arcgis-code-editor', undefined, undefined, defineArcgisCodeEditor);
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|