@arcgis/coding-components-react 5.0.0-next.9 → 5.0.0-next.91
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/dist/components.d.ts +3 -0
- package/dist/index.js +11 -5
- package/package.json +5 -5
package/dist/components.d.ts
CHANGED
|
@@ -12,6 +12,9 @@ export declare const ArcgisCodeEditor: import('@lit/react').ReactWebComponent<HT
|
|
|
12
12
|
onArcgisSelectionChange: EventName<HTMLArcgisCodeEditorElement["arcgisSelectionChange"]>;
|
|
13
13
|
onArcgisValueChange: EventName<HTMLArcgisCodeEditorElement["arcgisValueChange"]>;
|
|
14
14
|
}>;
|
|
15
|
+
export declare const ArcgisCodeViewer: import('@lit/react').ReactWebComponent<HTMLArcgisCodeViewerElement & {
|
|
16
|
+
class?: string;
|
|
17
|
+
}, {}>;
|
|
15
18
|
export declare const ArcgisSqlExpressionEditor: import('@lit/react').ReactWebComponent<HTMLArcgisSqlExpressionEditorElement & {
|
|
16
19
|
class?: string;
|
|
17
20
|
}, {
|
package/dist/index.js
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
|
-
import
|
|
1
|
+
import i from "react";
|
|
2
2
|
import { createComponent as c } from "@lit/react";
|
|
3
3
|
import { makeReactWrapperFactory as a, getReactWrapperOptions as r } from "@arcgis/lumina";
|
|
4
|
-
const
|
|
4
|
+
const e = /* @__PURE__ */ a(i, c), n = /* @__PURE__ */ e(
|
|
5
5
|
r(
|
|
6
6
|
"arcgis-arcade-editor",
|
|
7
7
|
{
|
|
@@ -9,7 +9,7 @@ const i = /* @__PURE__ */ a(e, c), n = /* @__PURE__ */ i(
|
|
|
9
9
|
onArcgisScriptChange: "arcgisScriptChange"
|
|
10
10
|
}
|
|
11
11
|
)
|
|
12
|
-
), t = /* @__PURE__ */
|
|
12
|
+
), t = /* @__PURE__ */ e(
|
|
13
13
|
r(
|
|
14
14
|
"arcgis-code-editor",
|
|
15
15
|
{
|
|
@@ -17,7 +17,12 @@ const i = /* @__PURE__ */ a(e, c), n = /* @__PURE__ */ i(
|
|
|
17
17
|
onArcgisValueChange: "arcgisValueChange"
|
|
18
18
|
}
|
|
19
19
|
)
|
|
20
|
-
), p = /* @__PURE__ */
|
|
20
|
+
), p = /* @__PURE__ */ e(
|
|
21
|
+
r(
|
|
22
|
+
"arcgis-code-viewer",
|
|
23
|
+
{}
|
|
24
|
+
)
|
|
25
|
+
), C = /* @__PURE__ */ e(
|
|
21
26
|
r(
|
|
22
27
|
"arcgis-sql-expression-editor",
|
|
23
28
|
{
|
|
@@ -29,5 +34,6 @@ const i = /* @__PURE__ */ a(e, c), n = /* @__PURE__ */ i(
|
|
|
29
34
|
export {
|
|
30
35
|
n as ArcgisArcadeEditor,
|
|
31
36
|
t as ArcgisCodeEditor,
|
|
32
|
-
p as
|
|
37
|
+
p as ArcgisCodeViewer,
|
|
38
|
+
C as ArcgisSqlExpressionEditor
|
|
33
39
|
};
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@arcgis/coding-components-react",
|
|
3
|
-
"version": "5.0.0-next.
|
|
3
|
+
"version": "5.0.0-next.91",
|
|
4
4
|
"description": "A set of React components that wrap ArcGIS coding components",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"ArcGIS",
|
|
@@ -29,14 +29,14 @@
|
|
|
29
29
|
],
|
|
30
30
|
"license": "SEE LICENSE.md",
|
|
31
31
|
"dependencies": {
|
|
32
|
-
"@arcgis/coding-components": "5.0.0-next.
|
|
33
|
-
"@arcgis/lumina": "5.0.0-next.
|
|
34
|
-
"@lit/react": "^1.0.
|
|
32
|
+
"@arcgis/coding-components": "5.0.0-next.91",
|
|
33
|
+
"@arcgis/lumina": "5.0.0-next.91",
|
|
34
|
+
"@lit/react": "^1.0.8",
|
|
35
35
|
"lit": "^3.3.0",
|
|
36
36
|
"tslib": "^2.8.1"
|
|
37
37
|
},
|
|
38
38
|
"peerDependencies": {
|
|
39
|
-
"@arcgis/core": ">=5.0.0-next.
|
|
39
|
+
"@arcgis/core": ">=5.0.0-next.62 <5.1",
|
|
40
40
|
"react": ">=18.0.0 <20.0.0",
|
|
41
41
|
"react-dom": ">=18.0.0 <20.0.0"
|
|
42
42
|
}
|