@wangeditor-kai/editor 5.6.37 → 5.6.38
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 +21 -0
- package/dist/core/src/editor/interface.d.ts +1 -1
- package/dist/css/style.css +6 -1553
- package/dist/editor/src/Boot.d.ts +1 -1
- package/dist/editor/src/create.d.ts +1 -1
- package/dist/editor/src/index.d.ts +2 -2
- package/dist/editor/src/register-builtin-modules/register.d.ts +1 -1
- package/dist/index.js +34 -49820
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +17 -46690
- package/dist/index.mjs.map +1 -1
- package/package.json +20 -21
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@wangeditor-kai/editor",
|
|
3
|
-
"version": "5.6.
|
|
3
|
+
"version": "5.6.38",
|
|
4
4
|
"description": "Web rich text editor, Web 富文本编辑器 仅个人修改使用",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"wangeditor",
|
|
@@ -39,29 +39,19 @@
|
|
|
39
39
|
"type": "git",
|
|
40
40
|
"url": "git+https://github.com/wangeditor-next/wangEditor-next.git"
|
|
41
41
|
},
|
|
42
|
-
"scripts": {
|
|
43
|
-
"test": "jest",
|
|
44
|
-
"test-c": "jest --coverage",
|
|
45
|
-
"example": "concurrently \"pnpm dev-watch\" \"http-server -p 8881 -c-1\" ",
|
|
46
|
-
"dev": "cross-env NODE_ENV=development rollup -c rollup.config.js",
|
|
47
|
-
"dev-watch": "cross-env NODE_ENV=development rollup -c rollup.config.js -w",
|
|
48
|
-
"build": "cross-env NODE_ENV=production rollup -c rollup.config.js",
|
|
49
|
-
"dev-size-stats": "cross-env NODE_ENV=development:size_stats rollup -c rollup.config.js",
|
|
50
|
-
"size-stats": "cross-env NODE_ENV=production:size_stats rollup -c rollup.config.js"
|
|
51
|
-
},
|
|
52
42
|
"bugs": {
|
|
53
43
|
"url": "https://github.com/wangeditor-next/wangeditor-next/issues"
|
|
54
44
|
},
|
|
55
45
|
"dependencies": {
|
|
56
46
|
"@uppy/core": "^2.1.1",
|
|
57
47
|
"@uppy/xhr-upload": "^2.0.3",
|
|
58
|
-
"@wangeditor-kai/basic-modules": "
|
|
59
|
-
"@wangeditor-kai/code-highlight": "
|
|
60
|
-
"@wangeditor-kai/core": "
|
|
61
|
-
"@wangeditor-kai/list-module": "
|
|
62
|
-
"@wangeditor-kai/table-module": "
|
|
63
|
-
"@wangeditor-kai/upload-image-module": "
|
|
64
|
-
"@wangeditor-kai/video-module": "
|
|
48
|
+
"@wangeditor-kai/basic-modules": "^1.5.40",
|
|
49
|
+
"@wangeditor-kai/code-highlight": "^1.3.37",
|
|
50
|
+
"@wangeditor-kai/core": "^1.7.40",
|
|
51
|
+
"@wangeditor-kai/list-module": "^1.1.46",
|
|
52
|
+
"@wangeditor-kai/table-module": "^1.6.51",
|
|
53
|
+
"@wangeditor-kai/upload-image-module": "^1.1.43",
|
|
54
|
+
"@wangeditor-kai/video-module": "^1.3.46",
|
|
65
55
|
"dom7": "^4.0.0",
|
|
66
56
|
"is-hotkey": "^0.2.0",
|
|
67
57
|
"lodash.camelcase": "^4.3.0",
|
|
@@ -73,7 +63,16 @@
|
|
|
73
63
|
"lodash.toarray": "^4.4.0",
|
|
74
64
|
"nanoid": "^5.0.0",
|
|
75
65
|
"slate": "^0.82.0",
|
|
76
|
-
"snabbdom": "^3.6.0"
|
|
77
|
-
|
|
66
|
+
"snabbdom": "^3.6.0"
|
|
67
|
+
},
|
|
68
|
+
"scripts": {
|
|
69
|
+
"test": "jest",
|
|
70
|
+
"test-c": "jest --coverage",
|
|
71
|
+
"example": "concurrently \"pnpm dev-watch\" \"http-server -p 8881 -c-1\" ",
|
|
72
|
+
"dev": "cross-env NODE_ENV=development rollup -c rollup.config.js",
|
|
73
|
+
"dev-watch": "cross-env NODE_ENV=development rollup -c rollup.config.js -w",
|
|
74
|
+
"build": "cross-env NODE_ENV=production rollup -c rollup.config.js",
|
|
75
|
+
"dev-size-stats": "cross-env NODE_ENV=development:size_stats rollup -c rollup.config.js",
|
|
76
|
+
"size-stats": "cross-env NODE_ENV=production:size_stats rollup -c rollup.config.js"
|
|
78
77
|
}
|
|
79
|
-
}
|
|
78
|
+
}
|