adtec-core-package 3.0.4 → 3.0.5
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/AGENTS.md +1 -1
- package/CLAUDE.md +1 -1
- package/package.json +21 -4
- package/prebuilt/umo-editor/umo-editor.css +1 -1
- package/prebuilt/umo-editor/umo-editor.js +13739 -15052
- package/prebuilt/umo-editor/umo-editor.js.map +1 -1
- package/src/components/RichTextEditor/RichTextEditor.vue +1 -1
- package/src/components/editor-main/src/components/index.vue +2 -1
- package/src/components/editor-main/src/components/menus/button.vue +30 -3
- package/src/components/editor-main/src/components/menus/toolbar/base/color.vue +12 -5
- package/src/components/editor-main/src/components/menus/toolbar/base/font-family.vue +6 -4
- package/src/components/editor-main/src/components/menus/toolbar/base/font-size.vue +42 -25
- package/src/components/editor-main/src/components/menus/toolbar/base/heading.vue +6 -8
- package/src/components/editor-main/src/composables/toolbarSelection.js +233 -0
- package/src/components/editor-main/src/locales/bo.json +2 -2
- package/src/components/editor-main/src/locales/en-US.json +2 -2
- package/src/components/editor-main/src/locales/it-IT.json +2 -2
- package/src/components/editor-main/src/locales/ru-RU.json +2 -2
- package/src/components/editor-main/src/locales/zh-CN.json +2 -2
- package/src/components/editor-main/src/utils/editor-scroll.js +39 -15
- package/src/components/vxeGrid/index.vue +11 -4
- package/src/stores/dictStore.ts +72 -5
package/AGENTS.md
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
<!-- gitnexus:start -->
|
|
2
2
|
# GitNexus — Code Intelligence
|
|
3
3
|
|
|
4
|
-
This project is indexed by GitNexus as **adtec-front-end-core-package** (
|
|
4
|
+
This project is indexed by GitNexus as **adtec-front-end-core-package** (6158 symbols, 8961 relationships, 149 execution flows). Use the GitNexus MCP tools to understand code, assess impact, and navigate safely.
|
|
5
5
|
|
|
6
6
|
> If any GitNexus tool warns the index is stale, run `npx gitnexus analyze` in terminal first.
|
|
7
7
|
|
package/CLAUDE.md
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
<!-- gitnexus:start -->
|
|
2
2
|
# GitNexus — Code Intelligence
|
|
3
3
|
|
|
4
|
-
This project is indexed by GitNexus as **adtec-front-end-core-package** (
|
|
4
|
+
This project is indexed by GitNexus as **adtec-front-end-core-package** (6158 symbols, 8961 relationships, 149 execution flows). Use the GitNexus MCP tools to understand code, assess impact, and navigate safely.
|
|
5
5
|
|
|
6
6
|
> If any GitNexus tool warns the index is stale, run `npx gitnexus analyze` in terminal first.
|
|
7
7
|
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "adtec-core-package",
|
|
3
|
-
"version": "3.0.
|
|
3
|
+
"version": "3.0.5",
|
|
4
4
|
"private": false,
|
|
5
5
|
"type": "module",
|
|
6
6
|
"exports": {
|
|
@@ -156,10 +156,27 @@
|
|
|
156
156
|
"@tiptap/starter-kit": "3.20.0",
|
|
157
157
|
"@tiptap/extensions": "3.20.0",
|
|
158
158
|
"@tiptap/extension-list": "3.20.0",
|
|
159
|
-
"@tiptap/
|
|
160
|
-
"@tiptap/extension-image": "3.20.0",
|
|
159
|
+
"@tiptap/y-tiptap": "3.0.2",
|
|
161
160
|
"@tiptap/extension-drag-handle": "3.16.0",
|
|
162
|
-
"@tiptap/extension-drag-handle-vue-3": "3.16.0"
|
|
161
|
+
"@tiptap/extension-drag-handle-vue-3": "3.16.0",
|
|
162
|
+
"y-prosemirror": "1.2.15",
|
|
163
|
+
"@tiptap/extension-blockquote": "3.20.0",
|
|
164
|
+
"@tiptap/extension-bubble-menu": "3.20.0",
|
|
165
|
+
"@tiptap/extension-bullet-list": "3.20.0",
|
|
166
|
+
"@tiptap/extension-code": "3.20.0",
|
|
167
|
+
"@tiptap/extension-dropcursor": "3.20.0",
|
|
168
|
+
"@tiptap/extension-floating-menu": "3.20.0",
|
|
169
|
+
"@tiptap/extension-gapcursor": "3.20.0",
|
|
170
|
+
"@tiptap/extension-hard-break": "3.20.0",
|
|
171
|
+
"@tiptap/extension-heading": "3.20.0",
|
|
172
|
+
"@tiptap/extension-italic": "3.20.0",
|
|
173
|
+
"@tiptap/extension-list-item": "3.20.0",
|
|
174
|
+
"@tiptap/extension-list-keymap": "3.20.0",
|
|
175
|
+
"@tiptap/extension-ordered-list": "3.20.0",
|
|
176
|
+
"@tiptap/extension-paragraph": "3.20.0",
|
|
177
|
+
"@tiptap/extension-strike": "3.20.0",
|
|
178
|
+
"@tiptap/extension-text": "3.20.0",
|
|
179
|
+
"@tiptap/extension-underline": "3.20.0"
|
|
163
180
|
}
|
|
164
181
|
}
|
|
165
182
|
}
|