@umoteam/editor 10.0.6 → 10.0.7
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 -0
- package/README.zh-CN.md +10 -0
- package/dist/umo-editor.css +1 -1
- package/dist/umo-editor.js +12296 -12064
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -32,6 +32,16 @@ As an independent Vue3 plugin, Umo Editor can be easily integrated into various
|
|
|
32
32
|
|
|
33
33
|
[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)
|
|
34
34
|
|
|
35
|
+
## Umo Editor Mobile
|
|
36
|
+
|
|
37
|
+
Umo Editor Mobile is a mobile document editor built with Vue3 and Tiptap3. It supports the complete "preview + edit + save" workflow and can be integrated directly into business systems as a standalone editor. Rather than being a simple trimmed-down version of Umo Editor, it is an independent product redesigned for touch-first scenarios, with its own save state machine, auto-save, back-navigation guards, history, internationalization, theming, and extension capabilities. At the same time, it keeps its configuration, events, and method naming as aligned with Umo Editor as possible, helping teams achieve a more unified multi-platform integration at lower cost.
|
|
38
|
+
|
|
39
|
+
If you plan to support both desktop and mobile, we recommend abstracting a unified editor adapter layer in your business application first, so you can reuse the document model, configuration semantics, and save flow while reducing long-term maintenance costs.
|
|
40
|
+
|
|
41
|
+
- Website: [https://mobile.umodoc.com](https://mobile.umodoc.com)
|
|
42
|
+
- Mobile Playground: Visit [https://em.umodoc.com](https://em.umodoc.com) in a mobile browser
|
|
43
|
+
- Documentation: [https://dev.umodoc.com/en/docs/mobile](https://dev.umodoc.com/en/docs/mobile)
|
|
44
|
+
|
|
35
45
|
## Screenshots
|
|
36
46
|
|
|
37
47
|

|
|
@@ -157,6 +167,7 @@ If you find Umo Editor useful, please consider supporting us in the following wa
|
|
|
157
167
|
|
|
158
168
|
- [Umo Editor](https://dev.umodoc.com/en/docs/editor): A localized open-source document editor based on Vue3 and Tiptap3.
|
|
159
169
|
- [Umo Viewer](https://dev.umodoc.com/en/docs/viewer): An open-source, lightweight document viewer for Umo Editor.
|
|
170
|
+
- [Umo Editor Mobile](https://mobile.umodoc.com): A mobile document editor for enterprise business scenarios, designed for standalone integration as well as collaboration with Umo Editor and Umo Editor Next.
|
|
160
171
|
- [Umo Editor Next](https://dev.umodoc.com/en/docs/next): An enhanced version of Umo Editor that includes all features of the latest Umo Editor while adding or improving support for multi-user real-time collaborative editing, document annotations (comments), document version history, AI-assisted creation, document import/export, tables, and more. It also enhances customization of toolbars and sidebars.
|
|
161
172
|
- [Umo Editor Server](https://dev.umodoc.com/en/docs/server): A companion server-side software developed to extend Umo Editor capabilities such as multi-user collaborative editing, document annotations, and document import/export.
|
|
162
173
|
- [Umo Office Viewer](https://dev.umodoc.com/en/docs/office-viewer): An Office document viewer that supports previewing over 40 mainstream office document in web pages.
|
package/README.zh-CN.md
CHANGED
|
@@ -23,6 +23,16 @@ Umo Editor 最大的特点是代码完全开源且自主可控,支持私有部
|
|
|
23
23
|
|
|
24
24
|
[官网](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)
|
|
25
25
|
|
|
26
|
+
## Umo Editor Mobile
|
|
27
|
+
|
|
28
|
+
Umo Editor Mobile 是基于 Vue3 和 Tiptap3 构建的移动端文档编辑器,支持“预览 + 编辑 + 保存”完整链路,可直接作为业务系统中的独立编辑器落地。它不是对 Umo Editor 的简单裁剪,而是围绕触控场景重新设计的独立产品,具备保存状态机、自动保存、回退守卫、历史记录、国际化、主题与扩展能力,并在配置、事件、方法命名上尽可能与 Umo Editor 保持一致,帮助团队以更低成本实现多端统一。
|
|
29
|
+
|
|
30
|
+
如果您计划同时接入桌面端与移动端,建议优先在业务层抽象一层统一的编辑器适配层,以便复用文档模型、配置语义和保存链路,降低后续维护成本。
|
|
31
|
+
|
|
32
|
+
- 官网:[https://mobile.umodoc.com](https://mobile.umodoc.com)
|
|
33
|
+
- 移动端示例:[https://em.umodoc.com](https://em.umodoc.com)
|
|
34
|
+
- 开发文档:[https://dev.umodoc.com/cn/docs/mobile](https://dev.umodoc.com/cn/docs/mobile)
|
|
35
|
+
|
|
26
36
|
## 部分截图
|
|
27
37
|
|
|
28
38
|
**Umo Editor**
|