@ws-ui/code-editor 0.1.18 → 0.1.19
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/demo/common.d.ts +10 -0
- package/dist/editor/schemas/condition.schema.json.d.ts +140 -0
- package/dist/index.cjs.js +13 -13
- package/dist/index.cjs.js.map +1 -1
- package/dist/index.es.js +439 -257
- package/dist/index.es.js.map +1 -1
- package/package.json +8 -4
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@ws-ui/code-editor",
|
|
3
3
|
"private": false,
|
|
4
|
-
"version": "0.1.
|
|
4
|
+
"version": "0.1.19",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"main": "./dist/index.cjs.js",
|
|
7
7
|
"module": "./dist/index.es.js",
|
|
@@ -13,15 +13,19 @@
|
|
|
13
13
|
"dev": "cross-env VITE_DISABLE_MONACO_LOADER=true vite",
|
|
14
14
|
"dev:4d": "cross-env VITE_DEMO_LANG=4d vite",
|
|
15
15
|
"dev:qodly": "cross-env VITE_DEMO_LANG=qodly vite",
|
|
16
|
+
"dev:json": "cross-env VITE_DEMO_LANG=json VITE_DISABLE_MONACO_LOADER=true vite",
|
|
17
|
+
"dev:condition": "cross-env VITE_DEMO_LANG=condition VITE_DISABLE_MONACO_LOADER=true vite",
|
|
16
18
|
"prepack": "npm run build",
|
|
17
19
|
"build": "tsc && vite build --base=/studio/",
|
|
20
|
+
"build:noloader": "cross-env VITE_DISABLE_MONACO_LOADER=true npm run build",
|
|
18
21
|
"postbuild": "yalc push --private",
|
|
19
22
|
"lint": "eslint . --ext ts,tsx --report-unused-disable-directives --max-warnings 0",
|
|
20
23
|
"preview": "vite preview"
|
|
21
24
|
},
|
|
22
25
|
"overrides": {
|
|
23
26
|
"@ws-ui/shared": {
|
|
24
|
-
"@ws-ui/icons": "$@ws-ui/icons"
|
|
27
|
+
"@ws-ui/icons": "$@ws-ui/icons",
|
|
28
|
+
"monaco-editor": "$monaco-editor"
|
|
25
29
|
}
|
|
26
30
|
},
|
|
27
31
|
"dependencies": {
|
|
@@ -41,8 +45,8 @@
|
|
|
41
45
|
},
|
|
42
46
|
"peerDependencies": {
|
|
43
47
|
"@monaco-editor/react": "^4.6.0",
|
|
44
|
-
"@ws-ui/icons": "^0.0.
|
|
45
|
-
"@ws-ui/shared": "^0.1.
|
|
48
|
+
"@ws-ui/icons": "^0.0.13",
|
|
49
|
+
"@ws-ui/shared": "^0.1.19",
|
|
46
50
|
"classnames": "^2.3.1",
|
|
47
51
|
"lodash": "^4.17.21",
|
|
48
52
|
"monaco-editor": "^0.41.0",
|