@umoteam/editor 2.1.0 → 2.2.0
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/README.md +11 -1
- package/README.zh-CN.md +11 -1
- package/dist/es/style.css +1 -1
- package/dist/es/umo-editor.mjs +4663 -4652
- package/dist/umd/style.css +1 -1
- package/dist/umd/umo-editor.js +3 -3
- package/dist/umd/umo-editor.js.gz +0 -0
- package/package.json +8 -7
package/README.md
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
<p style="text-align: center; margin: 2rem 0">
|
|
2
|
-
<a href="https://umodoc.com" target="_blank"><img src="https://unpkg.com/@umoteam/editor-external@latest/static/logo.svg" alt="umodoc.com" width="
|
|
2
|
+
<a href="https://umodoc.com" target="_blank"><img src="https://unpkg.com/@umoteam/editor-external@latest/static/logo.svg" alt="umodoc.com" width="280" /></a>
|
|
3
3
|
</p>
|
|
4
4
|
|
|
5
5
|
<p style={{ textAlign: 'center' }}>
|
|
@@ -28,6 +28,16 @@ As a standalone Vue3 plugin, Umo Editor can be easily integrated into any Vue3 p
|
|
|
28
28
|
|
|
29
29
|
Visit [Playground](https://demo.umodoc.com/editor?pane=no&lang=en) for a fast experience.
|
|
30
30
|
|
|
31
|
+
## Installation
|
|
32
|
+
|
|
33
|
+
```bash
|
|
34
|
+
npm config set "@tiptap-pro:registry" https://registry.tiptap.dev/
|
|
35
|
+
npm config set "//registry.tiptap.dev/:_authToken" 9fsQEgp8C8pbxpk8PFAjYn64BtBDq6HfXmI2qgpnI7XYr/OwHaMvOUIE5mfVR49y
|
|
36
|
+
npm install --save @umoteam/editor @umoteam/editor-external
|
|
37
|
+
```
|
|
38
|
+
|
|
39
|
+
For more information, please visit the [Developer Documentation](https://editor.umodoc.com/en/docs/getting-started).
|
|
40
|
+
|
|
31
41
|
## Documentation
|
|
32
42
|
|
|
33
43
|
Please visit [Documentation](https://editor.umodoc.com/en/docs).
|
package/README.zh-CN.md
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
<p style="text-align: center; margin: 2rem 0">
|
|
2
|
-
<a href="https://umodoc.com" target="_blank"><img src="https://unpkg.com/@umoteam/editor-external@latest/static/logo.svg" alt="umodoc.com" width="
|
|
2
|
+
<a href="https://umodoc.com" target="_blank"><img src="https://unpkg.com/@umoteam/editor-external@latest/static/logo.svg" alt="umodoc.com" width="280" /></a>
|
|
3
3
|
</p>
|
|
4
4
|
|
|
5
5
|
<p style="text-align: center;">
|
|
@@ -34,6 +34,16 @@ npm install --save @umoteam/editor @umoteam/editor-external
|
|
|
34
34
|
|
|
35
35
|
访问 [在线演示](https://demo.umodoc.com/editor?pane=no&lang=cn) 快速体验。
|
|
36
36
|
|
|
37
|
+
## 安装说明
|
|
38
|
+
|
|
39
|
+
```bash
|
|
40
|
+
npm config set "@tiptap-pro:registry" https://registry.tiptap.dev/
|
|
41
|
+
npm config set "//registry.tiptap.dev/:_authToken" 9fsQEgp8C8pbxpk8PFAjYn64BtBDq6HfXmI2qgpnI7XYr/OwHaMvOUIE5mfVR49y
|
|
42
|
+
npm install --save @umoteam/editor @umoteam/editor-external
|
|
43
|
+
```
|
|
44
|
+
|
|
45
|
+
更多信息请访问 [开发文档](https://editor.umodoc.com/cn/docs/getting-started)。
|
|
46
|
+
|
|
37
47
|
## 开发文档
|
|
38
48
|
|
|
39
49
|
请访问 [开发文档](https://editor.umodoc.com/cn/docs) 。
|