@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 CHANGED
@@ -1,6 +1,6 @@
1
1
  # Licensing
2
2
 
3
- COPYRIGHT © 2023 Esri
3
+ COPYRIGHT © 2024 Esri
4
4
 
5
5
  All rights reserved under the copyright laws of the United States and applicable international laws, treaties, and conventions.
6
6
 
package/README.md CHANGED
@@ -1,6 +1,4 @@
1
- # ArcGIS Maps SDK for JavaScript - React wrapper for Coding Components (beta)
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 © 2023 Esri
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
 
@@ -1,4 +1,4 @@
1
1
  /// <reference types="react" />
2
- import type { JSX } from "@arcgis/coding-components/dist/types/components";
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.30.0-next.8",
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 && yarn awc patch-jsx-imports",
22
+ "pre": "rimraf dist",
23
23
  "tsc": "tsc"
24
24
  },
25
25
  "dependencies": {
26
- "@arcgis/coding-components": "4.30.0-next.8"
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": "ed51da924dd5b1558eca5cf53ee51b5a4a9edef3"
40
+ "gitHead": "e1e009c091fe13c435e452a1796eb563e0a59cb9"
42
41
  }