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.
Files changed (36) hide show
  1. package/dist/components/desktop/modal/base-modal.d.ts +1 -0
  2. package/dist/components/md-editor/editor.d.ts +1 -0
  3. package/dist/components/md-editor/index.d.ts +1 -0
  4. package/dist/components/tiptap-editor/simple/components/tiptap-node/code-block-node/code-block-node-view.d.ts +2 -0
  5. package/dist/components/tiptap-editor/simple/components/tiptap-node/table-node/table-menu.d.ts +6 -0
  6. package/dist/components/tiptap-editor/simple/components/tiptap-node/table-node/table-node-extension.d.ts +2 -0
  7. package/dist/components/tiptap-editor/simple/components/tiptap-ui/blockquote-button/use-blockquote.d.ts +1 -1
  8. package/dist/components/tiptap-editor/simple/components/tiptap-ui/code-block-button/use-code-block.d.ts +1 -1
  9. package/dist/components/tiptap-editor/simple/components/tiptap-ui/image-upload-button/image-upload-button.d.ts +1 -1
  10. package/dist/components/tiptap-editor/simple/components/tiptap-ui/table-trigger-button/index.d.ts +2 -0
  11. package/dist/components/tiptap-editor/simple/components/tiptap-ui/table-trigger-button/table-trigger-button.d.ts +8 -0
  12. package/dist/components/tiptap-editor/simple/components/tiptap-ui/table-trigger-button/use-table-trigger-button.d.ts +16 -0
  13. package/dist/components/tiptap-editor/simple/components/tiptap-ui/text-color-button/index.d.ts +2 -0
  14. package/dist/components/tiptap-editor/simple/components/tiptap-ui/text-color-button/text-color-button.d.ts +6 -0
  15. package/dist/components/tiptap-editor/simple/components/tiptap-ui/text-color-button/use-text-color.d.ts +103 -0
  16. package/dist/components/tiptap-editor/simple/components/tiptap-ui/text-color-popover/index.d.ts +1 -0
  17. package/dist/components/tiptap-editor/simple/components/tiptap-ui/text-color-popover/text-color-popover.d.ts +14 -0
  18. package/dist/components/tiptap-editor/simple/i18n/en-US.json.d.ts +134 -104
  19. package/dist/components/tiptap-editor/simple/i18n/zh-CN.json.d.ts +134 -104
  20. package/dist/components/tiptap-editor/simple/lib/feature-utils.d.ts +5 -0
  21. package/dist/components/tiptap-editor/simple/lib/image-upload-handler.d.ts +2 -1
  22. package/dist/components/tiptap-editor/simple/simple-editor.d.ts +1 -0
  23. package/dist/components/tiptap-editor/simple/use-simple-editor.d.ts +2 -1
  24. package/dist/i18n/locales/en-US.d.ts +0 -8
  25. package/dist/i18n/locales/zh-CN.d.ts +0 -8
  26. package/dist/index.css +10 -1
  27. package/dist/index.js +5612 -3740
  28. package/package.json +8 -1
  29. package/dist/components/tiptap-editor/simple/components/tiptap-icons/arrow-left-icon.d.ts +0 -3
  30. package/dist/components/tiptap-editor/simple/components/tiptap-icons/blockquote-icon.d.ts +0 -3
  31. package/dist/components/tiptap-editor/simple/components/tiptap-icons/chevron-down-icon.d.ts +0 -3
  32. package/dist/components/tiptap-editor/simple/components/tiptap-icons/close-icon.d.ts +0 -3
  33. package/dist/components/tiptap-editor/simple/components/tiptap-icons/code-block-icon.d.ts +0 -3
  34. package/dist/components/tiptap-editor/simple/components/tiptap-icons/corner-down-left-icon.d.ts +0 -3
  35. package/dist/components/tiptap-editor/simple/components/tiptap-icons/external-link-icon.d.ts +0 -3
  36. 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.8",
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",
@@ -1,3 +0,0 @@
1
- type SvgProps = React.ComponentPropsWithoutRef<"svg">;
2
- export declare const ArrowLeftIcon: import('react').MemoExoticComponent<({ className, ...props }: SvgProps) => import("react/jsx-runtime").JSX.Element>;
3
- export {};
@@ -1,3 +0,0 @@
1
- type SvgProps = React.ComponentPropsWithoutRef<"svg">;
2
- export declare const BlockquoteIcon: import('react').MemoExoticComponent<({ className, ...props }: SvgProps) => import("react/jsx-runtime").JSX.Element>;
3
- export {};
@@ -1,3 +0,0 @@
1
- type SvgProps = React.ComponentPropsWithoutRef<"svg">;
2
- export declare const ChevronDownIcon: import('react').MemoExoticComponent<({ className, ...props }: SvgProps) => import("react/jsx-runtime").JSX.Element>;
3
- export {};
@@ -1,3 +0,0 @@
1
- type SvgProps = React.ComponentPropsWithoutRef<"svg">;
2
- export declare const CloseIcon: import('react').MemoExoticComponent<({ className, ...props }: SvgProps) => import("react/jsx-runtime").JSX.Element>;
3
- export {};
@@ -1,3 +0,0 @@
1
- type SvgProps = React.ComponentPropsWithoutRef<"svg">;
2
- export declare const CodeBlockIcon: import('react').MemoExoticComponent<({ className, ...props }: SvgProps) => import("react/jsx-runtime").JSX.Element>;
3
- export {};
@@ -1,3 +0,0 @@
1
- type SvgProps = React.ComponentPropsWithoutRef<"svg">;
2
- export declare const CornerDownLeftIcon: import('react').MemoExoticComponent<({ className, ...props }: SvgProps) => import("react/jsx-runtime").JSX.Element>;
3
- export {};
@@ -1,3 +0,0 @@
1
- type SvgProps = React.ComponentPropsWithoutRef<"svg">;
2
- export declare const ExternalLinkIcon: import('react').MemoExoticComponent<({ className, ...props }: SvgProps) => import("react/jsx-runtime").JSX.Element>;
3
- export {};
@@ -1,3 +0,0 @@
1
- type SvgProps = React.ComponentPropsWithoutRef<"svg">;
2
- export declare const TrashIcon: import('react').MemoExoticComponent<({ className, ...props }: SvgProps) => import("react/jsx-runtime").JSX.Element>;
3
- export {};