@arcgis/coding-components 4.29.0-beta.81 → 4.29.0-beta.83
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/arcgis-coding-components/arcgis-coding-components.esm.js +1 -1
- package/dist/arcgis-coding-components/p-01d3802f.entry.js +1 -0
- package/dist/cjs/{arcade-mode-1301c8e5.js → arcade-mode-3b7f5bb9.js} +1 -1
- package/dist/cjs/arcgis-arcade-api_6.cjs.entry.js +2 -2
- package/dist/components/arcade-mode.js +1 -1
- package/dist/components/code-editor.js +2 -2
- package/dist/esm/{arcade-mode-a0ca129e.js → arcade-mode-1d252c9e.js} +1 -1
- package/dist/esm/arcgis-arcade-api_6.entry.js +2 -2
- package/package.json +7 -7
- package/dist/arcgis-coding-components/p-31d48a0e.entry.js +0 -1
- /package/dist/arcgis-coding-components/{p-b3a4252e.js → p-36ba7917.js} +0 -0
|
@@ -3015,7 +3015,7 @@ async function getArcadeWorker(uri) {
|
|
|
3015
3015
|
* @returns mode for arcade
|
|
3016
3016
|
*/
|
|
3017
3017
|
async function getMode() {
|
|
3018
|
-
return await import('./arcade-mode-
|
|
3018
|
+
return await import('./arcade-mode-1d252c9e.js');
|
|
3019
3019
|
}
|
|
3020
3020
|
// Register the language in Monaco
|
|
3021
3021
|
languages.register({
|
|
@@ -4314,7 +4314,7 @@ const ArcgisCodeEditor = class {
|
|
|
4314
4314
|
this._disposables = [];
|
|
4315
4315
|
this.value = undefined;
|
|
4316
4316
|
this.language = undefined;
|
|
4317
|
-
this.modelId =
|
|
4317
|
+
this.modelId = F();
|
|
4318
4318
|
}
|
|
4319
4319
|
valuePropChange(newValue, oldValue) {
|
|
4320
4320
|
if (!this._editorInstance || newValue === oldValue) {
|
package/package.json
CHANGED
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
"name": "@arcgis/coding-components",
|
|
3
3
|
"description": "Contains components for editing code in different languages. The currently supported languages are html, css, json, TypeScript, JavaScript, and Arcade.",
|
|
4
4
|
"homepage": "https://developers.arcgis.com/javascript/latest/",
|
|
5
|
-
"version": "4.29.0-beta.
|
|
5
|
+
"version": "4.29.0-beta.83",
|
|
6
6
|
"module": "dist/components/index.js",
|
|
7
7
|
"main": "dist/index.cjs.js",
|
|
8
8
|
"types": "dist/types/index.d.ts",
|
|
@@ -49,17 +49,17 @@
|
|
|
49
49
|
"generate": "stencil generate"
|
|
50
50
|
},
|
|
51
51
|
"dependencies": {
|
|
52
|
-
"@arcgis/arcade-languageservice": "4.29.0-beta.
|
|
52
|
+
"@arcgis/arcade-languageservice": "4.29.0-beta.83",
|
|
53
53
|
"@stencil/core": "^4.10.0",
|
|
54
54
|
"monaco-editor": "^0.45.0",
|
|
55
55
|
"vscode-languageserver-types": "^3.17.3"
|
|
56
56
|
},
|
|
57
57
|
"devDependencies": {
|
|
58
|
-
"@arcgis/components-plugins": "4.29.0-beta.
|
|
59
|
-
"@arcgis/components-utils": "4.29.0-beta.
|
|
58
|
+
"@arcgis/components-plugins": "4.29.0-beta.83",
|
|
59
|
+
"@arcgis/components-utils": "4.29.0-beta.83",
|
|
60
60
|
"@arcgis/core": ">=4.29.0-next <4.30",
|
|
61
|
-
"@arcgis/core-adapter": "4.29.0-beta.
|
|
62
|
-
"@arcgis/typescript-config": "
|
|
61
|
+
"@arcgis/core-adapter": "4.29.0-beta.83",
|
|
62
|
+
"@arcgis/typescript-config": "4.29.0-beta.83",
|
|
63
63
|
"@esri/calcite-components": "^2.2.0",
|
|
64
64
|
"@stencil/angular-output-target": "0.8.3",
|
|
65
65
|
"@stencil/react-output-target": "0.5.3",
|
|
@@ -108,5 +108,5 @@
|
|
|
108
108
|
"@arcgis/core": ">=4.29.0-next <4.30",
|
|
109
109
|
"@esri/calcite-components": "^2.2.0"
|
|
110
110
|
},
|
|
111
|
-
"gitHead": "
|
|
111
|
+
"gitHead": "ce3e3045d55a89eba337bc3f803e4363cc31438a"
|
|
112
112
|
}
|