@umoteam/editor 7.0.1 → 8.1.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 +25 -20
- package/README.zh-CN.md +22 -20
- package/dist/style.css +1 -1
- package/dist/umo-editor.js +18697 -20013
- package/package.json +9 -5
- package/types/index.d.ts +47 -20
- package/types/src/components/index.d.ts +9 -0
- package/types/src/components/index.vue.d.ts +1621 -0
- package/types/src/components/menus/button.vue.d.ts +583 -0
- package/types/src/components/modal.vue.d.ts +2 -0
- package/types/src/components/tooltip.vue.d.ts +27 -0
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="280" /></a>
|
|
2
|
+
<a href="https://www.umodoc.com/en" 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;">
|
|
@@ -10,15 +10,21 @@
|
|
|
10
10
|
<a href="https://github.com/umodoc/editor/commits" target="_blank"><img src="https://img.shields.io/github/commit-activity/m/umodoc/editor" /></a>
|
|
11
11
|
</p>
|
|
12
12
|
|
|
13
|
-
|
|
13
|
+
<p style="text-align: center;">English Documentation | <a href="https://dev.umodoc.com/cn/docs/editor">[中文文档]</a></p>
|
|
14
14
|
|
|
15
|
-
|
|
15
|
+
## 中文介绍
|
|
16
|
+
|
|
17
|
+
Umo Editor 是一个基于 Vue3 和 Tiptap 的本土化开源文档编辑器,专为国人用户设计。它提供了强大的文档编辑能力和 AI 创作功能,支持分页模式和普通 Web 模式、Markdown 语法、富文本编辑、多种格式的节点插入、页面样式设置、文档导出与打印等功能。
|
|
18
|
+
|
|
19
|
+
此外,Umo Editor 还支持自定义扩展、多语言设置和暗色主题。同时我们提供了单独的文本预览组件 [Umo Viewer](https://github.com/umodoc/viewer),用户可以在项目中使用该组件来预览文档。
|
|
16
20
|
|
|
17
21
|
Umo Editor 最大的特点是代码完全开源且自主可控,支持私有部署,您可以内网环境中使用,而无需担心数据安全问题。同时 Umo Editor 基于 Vue3 和 Tiptap,两者都有丰富的生态系统和社区支持,在遇到问题时可以迅速得到解决。
|
|
18
22
|
|
|
19
23
|
## Introduction
|
|
20
24
|
|
|
21
|
-
Umo Editor is an open-source document editor based on Vue3 and Tiptap. It provides powerful document editing capabilities and AI-assisted creation features. Umo Editor supports pagination, Markdown syntax, rich text editing, insertion of various node types, page style settings, document export, and printing. Additionally, it supports custom extensions, multi-language settings, and a dark theme.
|
|
25
|
+
Umo Editor is an open-source document editor based on Vue3 and Tiptap. It provides powerful document editing capabilities and AI-assisted creation features. Umo Editor supports pagination and normal web layout, Markdown syntax, rich text editing, insertion of various node types, page style settings, document export, and printing. Additionally, it supports custom extensions, multi-language settings, and a dark theme. Umo Editor also supports web layout, and you can use it as a regular rich text editor.
|
|
26
|
+
|
|
27
|
+
Additionally, Umo Editor supports custom extensions, multi-language settings, and dark theme. We also provide a standalone text preview component, [Umo Viewer](https://github.com/umodoc/viewer), which users can integrate into their projects to preview documents.
|
|
22
28
|
|
|
23
29
|
Umo Editor's largest feature is that its code is completely open source and controllable. It supports private deployment, allowing you to use it in an intranet environment without worrying about data security issues. At the same time, Umo Editor is based on Vue3 and Tiptap, both of which have rich ecosystems and communities, making it easy to solve problems when needed.
|
|
24
30
|
|
|
@@ -26,15 +32,15 @@ Umo Editor's largest feature is that its code is completely open source and cont
|
|
|
26
32
|
|
|
27
33
|
As an independent Vue3 plugin, Umo Editor can be easily integrated into various Vue3 projects with zero configuration. For non-Vue3 projects, you can embed Umo Editor into your project via an iframe.
|
|
28
34
|
|
|
29
|
-
[Website](https://umodoc.com/en) | [Documentation](https://
|
|
35
|
+
[Website](https://www.umodoc.com/en) | [Documentation](https://dev.umodoc.com/en/docs/editor) | [Playground](https://www.umodoc.com/en/demo) | [GitHub](https://github.com/umodoc/editor) | [NPM](https://www.npmjs.com/package/@umoteam/editor)
|
|
30
36
|
|
|
31
37
|
## Online Experience
|
|
32
38
|
|
|
33
|
-
Visit [Playground](https://umodoc.com/en/demo) to try Umo Editor.
|
|
39
|
+
Visit [Playground](https://www.umodoc.com/en/demo?pane=hide) to try Umo Editor.
|
|
34
40
|
|
|
35
41
|
## Documentation
|
|
36
42
|
|
|
37
|
-
Please visit [Documentation](https://
|
|
43
|
+
Please visit [Documentation](https://dev.umodoc.com/en/docs/editor) for detailed instructions.
|
|
38
44
|
|
|
39
45
|
## Design Philosophy
|
|
40
46
|
|
|
@@ -48,6 +54,7 @@ Umo Editor aims to simplify document editing in web applications by providing Mi
|
|
|
48
54
|
|
|
49
55
|
## Key Features
|
|
50
56
|
|
|
57
|
+
- Support for Intranet Deployment
|
|
51
58
|
- Zero configuration, ready to use
|
|
52
59
|
- Pagination mode similar to Microsoft Word
|
|
53
60
|
- Lightweight
|
|
@@ -65,8 +72,10 @@ Umo Editor aims to simplify document editing in web applications by providing Mi
|
|
|
65
72
|
- Theme customization
|
|
66
73
|
- Multilingual settings
|
|
67
74
|
- Dark mode
|
|
75
|
+
- Support for Web layout
|
|
76
|
+
- Standalone document preview component [Umo Viewer](https://github.com/umodoc/viewer)
|
|
68
77
|
|
|
69
|
-
For more details, see [Features](https://
|
|
78
|
+
For more details, see [Features](https://dev.umodoc.com/en/docs/editor/features).
|
|
70
79
|
|
|
71
80
|
## Browser Support
|
|
72
81
|
|
|
@@ -82,7 +91,7 @@ For more details, see [Features](https://editor.umodoc.com/en/docs/features).
|
|
|
82
91
|
|
|
83
92
|
- **Node.js** (>=v18.0.0)
|
|
84
93
|
- **Vue** (>=v3.x)
|
|
85
|
-
- **Vite** (>=
|
|
94
|
+
- **Vite** (>=v5.x)
|
|
86
95
|
- **Tiptap** (>=v2.6)
|
|
87
96
|
- **TypeScript** (>=v5.5)
|
|
88
97
|
|
|
@@ -102,10 +111,13 @@ The development of Umo Editor relies on community support. Below is a list of co
|
|
|
102
111
|
- [Cassielxd](https://github.com/Cassielxd): 💪🏻 Implemented pagination and many important features
|
|
103
112
|
- [china-wangxu](https://github.com/china-wangxu): 💪🏻 Added many important features
|
|
104
113
|
- [Na'aman Hirschfeld](https://github.com/Goldziher): 💪🏻 Enhanced TypeScript support and added tests
|
|
114
|
+
- [SevenDreamYang](https://github.com/SevenDreamYang):🛠️ Enhanced TypeScript support
|
|
105
115
|
- [ChenErik](https://github.com/ChenErik): 🛠️ Contributed code
|
|
106
116
|
- [SerRashin](https://github.com/SerRashin): 🛠️ Added Russian language support
|
|
107
117
|
- [Sunny Wisozk](https://github.com/SunnyWisozk): 🛠️ Contributed code
|
|
108
118
|
- [Sherman Xu](https://github.com/xuzhenjun130): 🛠️ Contributed code
|
|
119
|
+
- [vace](https://github.com/vace):🛠️ Contributed code
|
|
120
|
+
- [Mikasa33](https://github.com/Mikasa33):🛠️ Contributed code
|
|
109
121
|
|
|
110
122
|
We welcome all forms of contributions, including but not limited to submitting bug reports, feature requests, and code contributions.
|
|
111
123
|
|
|
@@ -128,17 +140,10 @@ If you find Umo Editor useful, please consider supporting us in the following wa
|
|
|
128
140
|
- ⭐ Star the [Umo Editor repository](https://github.com/umodoc/editor) to show your support.
|
|
129
141
|
- 🔗 If you use Umo Editor in your project, add a link to https://github.com/umodoc/editor.
|
|
130
142
|
|
|
131
|
-
## Open Source Ecosystem
|
|
132
|
-
|
|
133
|
-
Here are some open source projects that use Umo Editor:
|
|
134
|
-
|
|
135
|
-
- [文章转知识卡片](https://www.wordtocard.com/)
|
|
136
|
-
- [Umo Editor 分页](https://github.com/Cassielxd/umo-enhance)
|
|
137
|
-
|
|
138
|
-
If you are using Umo Editor and would like to be featured here, please let us know via email at [contact@umodoc.com](mailto:contact@umodoc.com).
|
|
139
|
-
|
|
140
143
|
## Open Source License
|
|
141
144
|
|
|
142
|
-
Umo Editor is licensed under the [MIT License](
|
|
145
|
+
Umo Editor is licensed under the [MIT License](https://github.com/umodoc/editor/raw/main/LICENSE). You are free to use, modify, and distribute this software, but this does **not** mean you are allowed to remove the copyright information at will. Please retain the Umo Editor copyright notice and the link displayed in the interface. Removal of these will be considered an infringement. We encourage you to support open-source projects.
|
|
146
|
+
|
|
147
|
+
If you do not wish to retain the copyright information, please contact us or consider purchasing the commercial version: [Umo Editor Next](https://dev.umodoc.com/en/docs/editor/next).
|
|
143
148
|
|
|
144
|
-
|
|
149
|
+
This documentation is published under the [CC BY-NC-SA 4.0 DEED License](https://creativecommons.org/licenses/by-nc-sa/4.0/deed.en).
|
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="280" /></a>
|
|
2
|
+
<a href="https://www.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;">
|
|
@@ -9,26 +9,29 @@
|
|
|
9
9
|
<a href="https://www.npmjs.com/package/@umoteam/editor" target="_blank"><img src="https://img.shields.io/npm/unpacked-size/%40umoteam%2Feditor" /></a>
|
|
10
10
|
<a href="https://github.com/umodoc/editor/commits" target="_blank"><img src="https://img.shields.io/github/commit-activity/m/umodoc/editor" /></a>
|
|
11
11
|
</p>
|
|
12
|
+
<p style="text-align: center;"><a href="https://dev.umodoc.com/en/docs/editor">[English Documentation]</a> | 中文文档</p>
|
|
12
13
|
|
|
13
14
|
## 基本介绍
|
|
14
15
|
|
|
15
|
-
Umo Editor 是一个基于 Vue3 和 Tiptap 的本土化开源文档编辑器,专为国人用户设计。它提供了强大的文档编辑能力和 AI
|
|
16
|
+
Umo Editor 是一个基于 Vue3 和 Tiptap 的本土化开源文档编辑器,专为国人用户设计。它提供了强大的文档编辑能力和 AI 创作功能,支持分页模式和普通 Web 模式、Markdown 语法、富文本编辑、多种格式的节点插入、页面样式设置、文档导出与打印等功能。
|
|
17
|
+
|
|
18
|
+
此外,Umo Editor 还支持自定义扩展、多语言设置和暗色主题。同时我们提供了单独的文本预览组件[Umo Viewer](https://github.com/umodoc/viewer),用户可以在项目中使用该组件来预览文档。
|
|
16
19
|
|
|
17
20
|
Umo Editor 最大的特点是代码完全开源且自主可控,支持私有部署,您可以内网环境中使用,而无需担心数据安全问题。同时 Umo Editor 基于 Vue3 和 Tiptap,两者都有丰富的生态系统和社区支持,在遇到问题时可以迅速得到解决。
|
|
18
21
|
|
|
19
|
-

|
|
20
23
|
|
|
21
24
|
作为一个独立的 Vue3 插件,Umo Editor 可以轻松集成到各类 Vue3 项目中。对于非 Vue3 项目,您可以通过 Iframe 将 Umo Editor 嵌入到您的项目中。
|
|
22
25
|
|
|
23
|
-
[官网](https://umodoc.com) | [开发文档](https://
|
|
26
|
+
[官网](https://www.umodoc.com) | [开发文档](https://dev.umodoc.com/cn/docs/editor) | [在线演示](https://www.umodoc.com/demo) | [GitHub](https://github.com/umodoc/editor) | [码云(国内镜像)](https://gitee.com/umodoc/editor) | [NPM](https://www.npmjs.com/package/@umoteam/editor)
|
|
24
27
|
|
|
25
28
|
## 在线体验
|
|
26
29
|
|
|
27
|
-
访问[https://umodoc.com/demo](https://umodoc.com/demo)快速体验。
|
|
30
|
+
访问[https://www.umodoc.com/demo?pane=hide](https://www.umodoc.com/demo?pane=hide)快速体验。
|
|
28
31
|
|
|
29
32
|
## 开发文档
|
|
30
33
|
|
|
31
|
-
请访问[https://
|
|
34
|
+
请访问[https://dev.umodoc.com/cn/docs/editor](https://dev.umodoc.com/cn/docs/editor)。
|
|
32
35
|
|
|
33
36
|
## 设计理念
|
|
34
37
|
|
|
@@ -42,6 +45,7 @@ Umo Editor 的诞生旨在解决 Web 应用中文档编辑的复杂性,为 Web
|
|
|
42
45
|
|
|
43
46
|
## 核心特性
|
|
44
47
|
|
|
48
|
+
- 支持内网部署
|
|
45
49
|
- 零配置开箱即用
|
|
46
50
|
- 类似 Microsoft Word 的分页模式
|
|
47
51
|
- 轻量级
|
|
@@ -59,8 +63,10 @@ Umo Editor 的诞生旨在解决 Web 应用中文档编辑的复杂性,为 Web
|
|
|
59
63
|
- 主题定制
|
|
60
64
|
- 多语言设置
|
|
61
65
|
- 暗色主题
|
|
66
|
+
- 支持 Web 版式
|
|
67
|
+
- 单独的文档预览组件[Umo Viewer](https://github.com/umodoc/viewer)
|
|
62
68
|
|
|
63
|
-
更多详细介绍见[核心特性](https://
|
|
69
|
+
更多详细介绍见[核心特性](https://dev.umodoc.com/cn/docs/editor/features)。
|
|
64
70
|
|
|
65
71
|
## 浏览器支持
|
|
66
72
|
|
|
@@ -78,7 +84,7 @@ Umo Editor 的诞生旨在解决 Web 应用中文档编辑的复杂性,为 Web
|
|
|
78
84
|
|
|
79
85
|
- **Node.js** (>=v18.0.0)
|
|
80
86
|
- **Vue** (>=v3.x)
|
|
81
|
-
- **Vite** (>=
|
|
87
|
+
- **Vite** (>=v5.x)
|
|
82
88
|
- **Tiptap** (>=v2.6)
|
|
83
89
|
- **TypeScript** (>=v5.5)
|
|
84
90
|
|
|
@@ -98,10 +104,13 @@ Umo Editor 的发展离不开社区的支持,以下是为 Umo Editor 贡献过
|
|
|
98
104
|
- [Cassielxd](https://github.com/Cassielxd):💪🏻 实现了分页和许多重要功能
|
|
99
105
|
- [china-wangxu](https://github.com/china-wangxu):💪🏻 添加了许多重要功能
|
|
100
106
|
- [Na'aman Hirschfeld](https://github.com/Goldziher):💪🏻 增强了 TypeScript 支持并添加测试
|
|
107
|
+
- [SevenDreamYang](https://github.com/SevenDreamYang):🛠️ 增强 TypeScript 支持
|
|
101
108
|
- [ChenErik](https://github.com/ChenErik):🛠️ 贡献了部分代码
|
|
102
109
|
- [SerRashin](https://github.com/SerRashin):🛠️ 添加了俄语支持
|
|
103
110
|
- [Sunny Wisozk](https://github.com/SunnyWisozk):🛠️ 贡献了部分代码
|
|
104
111
|
- [Sherman Xu](https://github.com/xuzhenjun130):🛠️ 贡献了部分代码
|
|
112
|
+
- [vace](https://github.com/vace):🛠️ 贡献了部分代码
|
|
113
|
+
- [Mikasa33](https://github.com/Mikasa33):🛠️ 贡献了部分代码
|
|
105
114
|
|
|
106
115
|
我们欢迎任何形式的贡献,包括但不限于提交 Bug 报告、功能请求、代码贡献等。
|
|
107
116
|
|
|
@@ -127,19 +136,12 @@ Umo Editor 的发展离不开社区的支持,以下是为 Umo Editor 贡献过
|
|
|
127
136
|
|
|
128
137
|
## 定制开发
|
|
129
138
|
|
|
130
|
-
如果您需要定制化开发,请联系我们,我们可以提供付费的定制化解决方案和商业支持。详细信息请访问[定制开发](https://
|
|
131
|
-
|
|
132
|
-
## 开源生态
|
|
133
|
-
|
|
134
|
-
以下是一些开源项目,他们在开源项目中使用了 Umo Editor:
|
|
135
|
-
|
|
136
|
-
- [文章转知识卡片](https://www.wordtocard.com/)
|
|
137
|
-
- [Umo Editor 分页](https://github.com/Cassielxd/umo-enhance)
|
|
138
|
-
|
|
139
|
-
如果您正在使用 Umo Editor,也想出现在这里,请通过邮件[contact@umodoc.com](mailto:contact@umodoc.com)告知我们。
|
|
139
|
+
如果您需要定制化开发,请联系我们,我们可以提供付费的定制化解决方案和商业支持。详细信息请访问[定制开发](https://dev.umodoc.com/cn/docs/editor/customization)。
|
|
140
140
|
|
|
141
141
|
## 开源协议
|
|
142
142
|
|
|
143
|
-
Umo Editor 采用 [MIT 许可证](
|
|
143
|
+
Umo Editor 采用 [MIT 许可证](https://gitee.com/umodoc/editor/raw/main/LICENSE),您可以免费使用、修改和使用本软件,但这不代表您可以随意删除版权信息,请保留 Umo Editor 的版权信息和界面上的链接地址,否则视为侵权,请支持开源项目。
|
|
144
|
+
|
|
145
|
+
如果您不想保留版权信息,请联系我们或者购买商业版本 [Umo Editor Next](https://dev.umodoc.com/cn/docs/editor/next)。
|
|
144
146
|
|
|
145
|
-
|
|
147
|
+
本文档采用[CC BY-NC-SA 4.0 DEED 许可证](https://creativecommons.org/licenses/by-nc-sa/4.0/deed.zh-hans)发布。
|