amis-editor-core 6.9.0 → 6.10.0-beta.1
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/esm/component/Editor.d.ts +5 -1
- package/esm/component/ModalForm.d.ts +25 -0
- package/esm/deepSplice.d.ts +12 -0
- package/esm/index.d.ts +4 -1
- package/esm/index.js +2 -2
- package/esm/manager.d.ts +13 -2
- package/esm/plugin.d.ts +13 -0
- package/esm/store/editor.d.ts +25 -36
- package/lib/component/Editor.d.ts +5 -1
- package/lib/component/ModalForm.d.ts +25 -0
- package/lib/component/base/BackTop.d.ts +1 -1
- package/lib/deepSplice.d.ts +12 -0
- package/lib/editor.js +1 -1
- package/lib/index.d.ts +4 -1
- package/lib/index.js +2 -2
- package/lib/layout/flex.d.ts +0 -1
- package/lib/manager.d.ts +13 -2
- package/lib/plugin.d.ts +13 -0
- package/lib/store/editor.d.ts +25 -36
- package/lib/style.css +1 -1
- package/package.json +4 -4
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "amis-editor-core",
|
|
3
|
-
"version": "6.
|
|
3
|
+
"version": "6.10.0-beta.1",
|
|
4
4
|
"description": "amis 可视化编辑器",
|
|
5
5
|
"main": "lib/index.js",
|
|
6
6
|
"module": "esm/index.js",
|
|
@@ -27,8 +27,8 @@
|
|
|
27
27
|
},
|
|
28
28
|
"scripts": {
|
|
29
29
|
"test": "echo \"Warnings: no test specified\"",
|
|
30
|
-
"build": "npm run clean-dist && NODE_ENV=production rollup -c",
|
|
31
|
-
"build-esm": "npm run clean-dist && NODE_ENV=production rollup -c rollup.esm.config.js",
|
|
30
|
+
"build": "npm run clean-dist && cross-env NODE_ENV=production rollup -c",
|
|
31
|
+
"build-esm": "npm run clean-dist && cross-env NODE_ENV=production rollup -c rollup.esm.config.js",
|
|
32
32
|
"clean-dist": "rimraf lib/* esm/*",
|
|
33
33
|
"i18n:update": "npx i18n update --config=./i18nConfig.js",
|
|
34
34
|
"i18n:translate": "npx i18n translate --config=./i18nConfig.js --l=en-US",
|
|
@@ -67,7 +67,6 @@
|
|
|
67
67
|
"@rollup/plugin-typescript": "^8.3.2",
|
|
68
68
|
"@svgr/rollup": "^6.2.1",
|
|
69
69
|
"@types/async": "^2.0.45",
|
|
70
|
-
"@types/classnames": "^2.2.3",
|
|
71
70
|
"@types/codemirror": "5.60.10",
|
|
72
71
|
"@types/deep-diff": "^1.0.0",
|
|
73
72
|
"@types/history": "^4.6.0",
|
|
@@ -84,6 +83,7 @@
|
|
|
84
83
|
"ajv": "^8.8.2",
|
|
85
84
|
"autoprefixer": "^10.4.12",
|
|
86
85
|
"concurrently": "^6.2.0",
|
|
86
|
+
"cross-env": "^7.0.3",
|
|
87
87
|
"css-loader": "^6.2.0",
|
|
88
88
|
"faker": "^5.5.3",
|
|
89
89
|
"i18n-command": "^0.0.23-beta.15",
|