mce 0.27.0 → 0.28.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/dist/components/ShortcutsPanel.vue.d.ts +3 -0
- package/dist/index.css +1 -1
- package/dist/index.js +3900 -3749
- package/dist/locale/en.d.ts +1 -0
- package/dist/locale/zh-Hans.d.ts +1 -0
- package/dist/plugins/shortcuts.d.ts +17 -0
- package/dist/typed-plugins.d.ts +1 -0
- package/package.json +2 -2
package/dist/locale/en.d.ts
CHANGED
package/dist/locale/zh-Hans.d.ts
CHANGED
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
declare global {
|
|
2
|
+
namespace Mce {
|
|
3
|
+
interface UIConfig {
|
|
4
|
+
shortcuts: ShortcutsConfig;
|
|
5
|
+
}
|
|
6
|
+
interface ShortcutsConfig {
|
|
7
|
+
visible: boolean;
|
|
8
|
+
}
|
|
9
|
+
}
|
|
10
|
+
}
|
|
11
|
+
/**
|
|
12
|
+
* 快捷键参考面板:把 editor.hotkeysData 全量列出、按类别分组、可搜索。
|
|
13
|
+
* 用 `Ctrl+Shift+?`(Mac 上同为 Control)开关;显隐走 `ui.shortcuts` 配置,
|
|
14
|
+
* 复用核心 `toggleUi:shortcuts` 命令。
|
|
15
|
+
*/
|
|
16
|
+
declare const _default: import("../plugin").Plugin;
|
|
17
|
+
export default _default;
|
package/dist/typed-plugins.d.ts
CHANGED
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "mce",
|
|
3
3
|
"type": "module",
|
|
4
|
-
"version": "0.
|
|
4
|
+
"version": "0.28.0",
|
|
5
5
|
"description": "A headless infinite canvas editor framework built on WebGL rendering, supports exporting to image, video, and PPT. Only the ESM.",
|
|
6
6
|
"author": "wxm",
|
|
7
7
|
"license": "MIT",
|
|
@@ -60,7 +60,7 @@
|
|
|
60
60
|
"@vueuse/core": "^14.3.0",
|
|
61
61
|
"diff": "^9.0.0",
|
|
62
62
|
"lodash-es": "^4.18.1",
|
|
63
|
-
"modern-canvas": "^0.24.
|
|
63
|
+
"modern-canvas": "^0.24.3",
|
|
64
64
|
"modern-font": "^0.6.1",
|
|
65
65
|
"modern-idoc": "^0.12.1",
|
|
66
66
|
"modern-text": "^2.0.6",
|