zs_library 0.7.8 → 0.7.10
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/desktop/modal/base-modal.d.ts +1 -0
- package/dist/components/md-editor/editor.d.ts +1 -0
- package/dist/components/md-editor/index.d.ts +1 -0
- package/dist/components/tiptap-editor/simple/components/tiptap-node/code-block-node/code-block-node-view.d.ts +2 -0
- package/dist/components/tiptap-editor/simple/components/tiptap-node/table-node/table-menu.d.ts +6 -0
- package/dist/components/tiptap-editor/simple/components/tiptap-node/table-node/table-node-extension.d.ts +2 -0
- package/dist/components/tiptap-editor/simple/components/tiptap-ui/blockquote-button/use-blockquote.d.ts +1 -1
- package/dist/components/tiptap-editor/simple/components/tiptap-ui/code-block-button/use-code-block.d.ts +1 -1
- package/dist/components/tiptap-editor/simple/components/tiptap-ui/image-upload-button/image-upload-button.d.ts +1 -1
- package/dist/components/tiptap-editor/simple/components/tiptap-ui/table-trigger-button/index.d.ts +2 -0
- package/dist/components/tiptap-editor/simple/components/tiptap-ui/table-trigger-button/table-trigger-button.d.ts +8 -0
- package/dist/components/tiptap-editor/simple/components/tiptap-ui/table-trigger-button/use-table-trigger-button.d.ts +16 -0
- package/dist/components/tiptap-editor/simple/components/tiptap-ui/text-color-button/index.d.ts +2 -0
- package/dist/components/tiptap-editor/simple/components/tiptap-ui/text-color-button/text-color-button.d.ts +6 -0
- package/dist/components/tiptap-editor/simple/components/tiptap-ui/text-color-button/use-text-color.d.ts +103 -0
- package/dist/components/tiptap-editor/simple/components/tiptap-ui/text-color-popover/index.d.ts +1 -0
- package/dist/components/tiptap-editor/simple/components/tiptap-ui/text-color-popover/text-color-popover.d.ts +14 -0
- package/dist/components/tiptap-editor/simple/i18n/en-US.json.d.ts +134 -104
- package/dist/components/tiptap-editor/simple/i18n/zh-CN.json.d.ts +134 -104
- package/dist/components/tiptap-editor/simple/lib/feature-utils.d.ts +5 -0
- package/dist/components/tiptap-editor/simple/lib/image-upload-handler.d.ts +2 -1
- package/dist/components/tiptap-editor/simple/simple-editor.d.ts +1 -0
- package/dist/components/tiptap-editor/simple/use-simple-editor.d.ts +2 -1
- package/dist/i18n/locales/en-US.d.ts +0 -8
- package/dist/i18n/locales/zh-CN.d.ts +0 -8
- package/dist/index.css +10 -1
- package/dist/index.js +5612 -3740
- package/package.json +8 -1
- package/dist/components/tiptap-editor/simple/components/tiptap-icons/arrow-left-icon.d.ts +0 -3
- package/dist/components/tiptap-editor/simple/components/tiptap-icons/blockquote-icon.d.ts +0 -3
- package/dist/components/tiptap-editor/simple/components/tiptap-icons/chevron-down-icon.d.ts +0 -3
- package/dist/components/tiptap-editor/simple/components/tiptap-icons/close-icon.d.ts +0 -3
- package/dist/components/tiptap-editor/simple/components/tiptap-icons/code-block-icon.d.ts +0 -3
- package/dist/components/tiptap-editor/simple/components/tiptap-icons/corner-down-left-icon.d.ts +0 -3
- package/dist/components/tiptap-editor/simple/components/tiptap-icons/external-link-icon.d.ts +0 -3
- package/dist/components/tiptap-editor/simple/components/tiptap-icons/trash-icon.d.ts +0 -3
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "zs_library",
|
|
3
|
-
"version": "0.7.
|
|
3
|
+
"version": "0.7.10",
|
|
4
4
|
"homepage": "https://zs-library.virs.xyz/",
|
|
5
5
|
"bugs": {
|
|
6
6
|
"url": "https://github.com/virzs/zs_library/issues"
|
|
@@ -44,6 +44,8 @@
|
|
|
44
44
|
"@remixicon/react": "^4.7.0",
|
|
45
45
|
"@tailwindcss/typography": "^0.5.16",
|
|
46
46
|
"@tiptap/core": "^3.12.1",
|
|
47
|
+
"@tiptap/extension-bubble-menu": "^3.13.0",
|
|
48
|
+
"@tiptap/extension-code-block-lowlight": "^3.13.0",
|
|
47
49
|
"@tiptap/extension-highlight": "^3.12.1",
|
|
48
50
|
"@tiptap/extension-horizontal-rule": "^3.12.1",
|
|
49
51
|
"@tiptap/extension-image": "^3.12.1",
|
|
@@ -51,7 +53,12 @@
|
|
|
51
53
|
"@tiptap/extension-list": "^3.12.1",
|
|
52
54
|
"@tiptap/extension-subscript": "^3.12.1",
|
|
53
55
|
"@tiptap/extension-superscript": "^3.12.1",
|
|
56
|
+
"@tiptap/extension-table": "^3.13.0",
|
|
57
|
+
"@tiptap/extension-table-cell": "^3.13.0",
|
|
58
|
+
"@tiptap/extension-table-header": "^3.13.0",
|
|
59
|
+
"@tiptap/extension-table-row": "^3.13.0",
|
|
54
60
|
"@tiptap/extension-text-align": "^3.12.1",
|
|
61
|
+
"@tiptap/extension-text-style": "^3.13.0",
|
|
55
62
|
"@tiptap/extension-typography": "^3.12.1",
|
|
56
63
|
"@tiptap/extensions": "^3.12.1",
|
|
57
64
|
"@tiptap/markdown": "^3.13.0",
|