zs_library 0.6.21 → 0.7.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/desktop/config.d.ts +1 -1
- package/dist/components/desktop/context/config/hooks.d.ts +2 -0
- package/dist/components/desktop/context-menu/content.d.ts +1 -2
- package/dist/components/desktop/context-menu/sub-menu-item.d.ts +1 -1
- package/dist/components/desktop/items/item-content.d.ts +9 -0
- package/dist/components/desktop/sortable.d.ts +4 -0
- package/dist/components/desktop/types.d.ts +7 -7
- package/dist/components/index.d.ts +1 -1
- package/dist/components/tiptap-editor/simple/components/tiptap-extension/node-background-extension.d.ts +23 -0
- package/dist/components/tiptap-editor/simple/components/tiptap-icons/arrow-left-icon.d.ts +3 -0
- package/dist/components/tiptap-editor/simple/components/tiptap-icons/blockquote-icon.d.ts +3 -0
- package/dist/components/tiptap-editor/simple/components/tiptap-icons/chevron-down-icon.d.ts +3 -0
- package/dist/components/tiptap-editor/simple/components/tiptap-icons/close-icon.d.ts +3 -0
- package/dist/components/tiptap-editor/simple/components/tiptap-icons/code-block-icon.d.ts +3 -0
- package/dist/components/tiptap-editor/simple/components/tiptap-icons/corner-down-left-icon.d.ts +3 -0
- package/dist/components/tiptap-editor/simple/components/tiptap-icons/external-link-icon.d.ts +3 -0
- package/dist/components/tiptap-editor/simple/components/tiptap-icons/trash-icon.d.ts +3 -0
- package/dist/components/tiptap-editor/simple/components/tiptap-node/horizontal-rule-node/horizontal-rule-node-extension.d.ts +2 -0
- package/dist/components/tiptap-editor/simple/components/tiptap-node/image-node/image-node-extension.d.ts +21 -0
- package/dist/components/tiptap-editor/simple/components/tiptap-node/image-node/image-node.d.ts +3 -0
- package/dist/components/tiptap-editor/simple/components/tiptap-node/image-upload-node/image-upload-node-extension.d.ts +64 -0
- package/dist/components/tiptap-editor/simple/components/tiptap-node/image-upload-node/image-upload-node.d.ts +68 -0
- package/dist/components/tiptap-editor/simple/components/tiptap-node/image-upload-node/index.d.ts +1 -0
- package/dist/components/tiptap-editor/simple/components/tiptap-ui/ai-button/ai-button.d.ts +9 -0
- package/dist/components/tiptap-editor/simple/components/tiptap-ui/ai-button/index.d.ts +2 -0
- package/dist/components/tiptap-editor/simple/components/tiptap-ui/ai-button/use-ai.d.ts +38 -0
- package/dist/components/tiptap-editor/simple/components/tiptap-ui/blockquote-button/blockquote-button.d.ts +22 -0
- package/dist/components/tiptap-editor/simple/components/tiptap-ui/blockquote-button/index.d.ts +2 -0
- package/dist/components/tiptap-editor/simple/components/tiptap-ui/blockquote-button/use-blockquote.d.ts +80 -0
- package/dist/components/tiptap-editor/simple/components/tiptap-ui/code-block-button/code-block-button.d.ts +22 -0
- package/dist/components/tiptap-editor/simple/components/tiptap-ui/code-block-button/index.d.ts +2 -0
- package/dist/components/tiptap-editor/simple/components/tiptap-ui/code-block-button/use-code-block.d.ts +87 -0
- package/dist/components/tiptap-editor/simple/components/tiptap-ui/color-highlight-button/color-highlight-button.d.ts +45 -0
- package/dist/components/tiptap-editor/simple/components/tiptap-ui/color-highlight-button/index.d.ts +2 -0
- package/dist/components/tiptap-editor/simple/components/tiptap-ui/color-highlight-button/use-color-highlight.d.ts +82 -0
- package/dist/components/tiptap-editor/simple/components/tiptap-ui/color-highlight-popover/color-highlight-popover.d.ts +25 -0
- package/dist/components/tiptap-editor/simple/components/tiptap-ui/color-highlight-popover/index.d.ts +1 -0
- package/dist/components/tiptap-editor/simple/components/tiptap-ui/heading-button/heading-button.d.ts +23 -0
- package/dist/components/tiptap-editor/simple/components/tiptap-ui/heading-button/index.d.ts +2 -0
- package/dist/components/tiptap-editor/simple/components/tiptap-ui/heading-button/use-heading.d.ts +108 -0
- package/dist/components/tiptap-editor/simple/components/tiptap-ui/heading-dropdown-menu/heading-dropdown-menu.d.ts +20 -0
- package/dist/components/tiptap-editor/simple/components/tiptap-ui/heading-dropdown-menu/index.d.ts +2 -0
- package/dist/components/tiptap-editor/simple/components/tiptap-ui/heading-dropdown-menu/use-heading-dropdown-menu.d.ts +73 -0
- package/dist/components/tiptap-editor/simple/components/tiptap-ui/image-upload-button/image-upload-button.d.ts +29 -0
- package/dist/components/tiptap-editor/simple/components/tiptap-ui/image-upload-button/index.d.ts +2 -0
- package/dist/components/tiptap-editor/simple/components/tiptap-ui/image-upload-button/use-image-upload.d.ts +84 -0
- package/dist/components/tiptap-editor/simple/components/tiptap-ui/link-popover/index.d.ts +2 -0
- package/dist/components/tiptap-editor/simple/components/tiptap-ui/link-popover/link-popover.d.ts +57 -0
- package/dist/components/tiptap-editor/simple/components/tiptap-ui/link-popover/use-link-popover.d.ts +117 -0
- package/dist/components/tiptap-editor/simple/components/tiptap-ui/list-button/index.d.ts +2 -0
- package/dist/components/tiptap-editor/simple/components/tiptap-ui/list-button/list-button.d.ts +23 -0
- package/dist/components/tiptap-editor/simple/components/tiptap-ui/list-button/use-list.d.ts +97 -0
- package/dist/components/tiptap-editor/simple/components/tiptap-ui/list-dropdown-menu/index.d.ts +1 -0
- package/dist/components/tiptap-editor/simple/components/tiptap-ui/list-dropdown-menu/list-dropdown-menu.d.ts +29 -0
- package/dist/components/tiptap-editor/simple/components/tiptap-ui/list-dropdown-menu/use-list-dropdown-menu.d.ts +94 -0
- package/dist/components/tiptap-editor/simple/components/tiptap-ui/mark-button/index.d.ts +2 -0
- package/dist/components/tiptap-editor/simple/components/tiptap-ui/mark-button/mark-button.d.ts +23 -0
- package/dist/components/tiptap-editor/simple/components/tiptap-ui/mark-button/use-mark.d.ts +104 -0
- package/dist/components/tiptap-editor/simple/components/tiptap-ui/text-align-button/index.d.ts +2 -0
- package/dist/components/tiptap-editor/simple/components/tiptap-ui/text-align-button/text-align-button.d.ts +30 -0
- package/dist/components/tiptap-editor/simple/components/tiptap-ui/text-align-button/use-text-align.d.ts +101 -0
- package/dist/components/tiptap-editor/simple/components/tiptap-ui/undo-redo-button/index.d.ts +2 -0
- package/dist/components/tiptap-editor/simple/components/tiptap-ui/undo-redo-button/undo-redo-button.d.ts +23 -0
- package/dist/components/tiptap-editor/simple/components/tiptap-ui/undo-redo-button/use-undo-redo.d.ts +90 -0
- package/dist/components/tiptap-editor/simple/components/tiptap-ui-primitive/badge/badge.d.ts +8 -0
- package/dist/components/tiptap-editor/simple/components/tiptap-ui-primitive/badge/index.d.ts +1 -0
- package/dist/components/tiptap-editor/simple/components/tiptap-ui-primitive/button/button.d.ts +14 -0
- package/dist/components/tiptap-editor/simple/components/tiptap-ui-primitive/button/index.d.ts +1 -0
- package/dist/components/tiptap-editor/simple/components/tiptap-ui-primitive/card/card.d.ts +9 -0
- package/dist/components/tiptap-editor/simple/components/tiptap-ui-primitive/card/index.d.ts +1 -0
- package/dist/components/tiptap-editor/simple/components/tiptap-ui-primitive/dropdown-menu/dropdown-menu.d.ts +16 -0
- package/dist/components/tiptap-editor/simple/components/tiptap-ui-primitive/dropdown-menu/index.d.ts +1 -0
- package/dist/components/tiptap-editor/simple/components/tiptap-ui-primitive/input/index.d.ts +1 -0
- package/dist/components/tiptap-editor/simple/components/tiptap-ui-primitive/input/input.d.ts +3 -0
- package/dist/components/tiptap-editor/simple/components/tiptap-ui-primitive/popover/index.d.ts +1 -0
- package/dist/components/tiptap-editor/simple/components/tiptap-ui-primitive/popover/popover.d.ts +6 -0
- package/dist/components/tiptap-editor/simple/components/tiptap-ui-primitive/separator/index.d.ts +1 -0
- package/dist/components/tiptap-editor/simple/components/tiptap-ui-primitive/separator/separator.d.ts +6 -0
- package/dist/components/tiptap-editor/simple/components/tiptap-ui-primitive/spacer/index.d.ts +1 -0
- package/dist/components/tiptap-editor/simple/components/tiptap-ui-primitive/spacer/spacer.d.ts +6 -0
- package/dist/components/tiptap-editor/simple/components/tiptap-ui-primitive/toolbar/index.d.ts +1 -0
- package/dist/components/tiptap-editor/simple/components/tiptap-ui-primitive/toolbar/toolbar.d.ts +8 -0
- package/dist/components/tiptap-editor/simple/components/tiptap-ui-primitive/tooltip/index.d.ts +1 -0
- package/dist/components/tiptap-editor/simple/components/tiptap-ui-primitive/tooltip/tooltip.d.ts +28 -0
- package/dist/components/tiptap-editor/simple/hooks/use-composed-ref.d.ts +3 -0
- package/dist/components/tiptap-editor/simple/hooks/use-cursor-visibility.d.ts +20 -0
- package/dist/components/tiptap-editor/simple/hooks/use-element-rect.d.ts +35 -0
- package/dist/components/tiptap-editor/simple/hooks/use-is-breakpoint.d.ts +9 -0
- package/dist/components/tiptap-editor/simple/hooks/use-menu-navigation.d.ts +52 -0
- package/dist/components/tiptap-editor/simple/hooks/use-scrolling.d.ts +8 -0
- package/dist/components/tiptap-editor/simple/hooks/use-throttled-callback.d.ts +18 -0
- package/dist/components/tiptap-editor/simple/hooks/use-tiptap-editor.d.ts +17 -0
- package/dist/components/tiptap-editor/simple/hooks/use-unmount.d.ts +7 -0
- package/dist/components/tiptap-editor/simple/hooks/use-window-size.d.ts +35 -0
- package/dist/components/tiptap-editor/simple/i18n/en-US.json.d.ts +107 -0
- package/dist/components/tiptap-editor/simple/i18n/zh-CN.json.d.ts +107 -0
- package/dist/components/tiptap-editor/simple/index.d.ts +28 -0
- package/dist/components/tiptap-editor/simple/lib/ai-service.d.ts +15 -0
- package/dist/components/tiptap-editor/simple/lib/feature-utils.d.ts +124 -0
- package/dist/components/tiptap-editor/simple/lib/image-upload-handler.d.ts +44 -0
- package/dist/components/tiptap-editor/simple/lib/tiptap-utils.d.ts +167 -0
- package/dist/components/tiptap-editor/simple/simple-editor.d.ts +10 -0
- package/dist/components/tiptap-editor/simple/theme-toggle.d.ts +1 -0
- package/dist/index.css +1 -1
- package/dist/index.d.ts +1 -1
- package/dist/index.js +7688 -4797
- package/package.json +20 -6
- package/dist/components/editor/editor.d.ts +0 -3
- package/dist/components/editor/extensions/drag-handle/clipboard-serializer.d.ts +0 -3
- package/dist/components/editor/extensions/drag-handle/index.d.ts +0 -26
- package/dist/components/editor/generative/ai-completion-command.d.ts +0 -5
- package/dist/components/editor/generative/ai-selector-commands.d.ts +0 -5
- package/dist/components/editor/generative/ai-selector.d.ts +0 -8
- package/dist/components/editor/generative/drag-handle.d.ts +0 -2
- package/dist/components/editor/generative/generative-dropdown-menu.d.ts +0 -4
- package/dist/components/editor/generative/generative-menu-switch.d.ts +0 -11
- package/dist/components/editor/image-upload.d.ts +0 -1
- package/dist/components/editor/index.d.ts +0 -13
- package/dist/components/editor/lib/colors.d.ts +0 -6
- package/dist/components/editor/lib/content.d.ts +0 -4
- package/dist/components/editor/lib/nodes.d.ts +0 -9
- package/dist/components/editor/lib/url-utils.d.ts +0 -2
- package/dist/components/editor/preview.d.ts +0 -7
- package/dist/components/editor/selectors/color-selector.d.ts +0 -6
- package/dist/components/editor/selectors/link-selector.d.ts +0 -6
- package/dist/components/editor/selectors/math-selector.d.ts +0 -1
- package/dist/components/editor/selectors/node-selector.d.ts +0 -6
- package/dist/components/editor/selectors/text-buttons.d.ts +0 -1
- package/dist/components/editor/slash-command.d.ts +0 -8
- package/dist/components/editor/type.d.ts +0 -90
- package/dist/components/editor/ui/button.d.ts +0 -13
- package/dist/components/editor/ui/command.d.ts +0 -81
- package/dist/components/editor/ui/dialog.d.ts +0 -19
- package/dist/components/editor/ui/dropdown-menu.d.ts +0 -17
- package/dist/components/editor/ui/icons/crazy-spinner.d.ts +0 -2
- package/dist/components/editor/ui/icons/font-default.d.ts +0 -3
- package/dist/components/editor/ui/icons/font-mono.d.ts +0 -3
- package/dist/components/editor/ui/icons/font-serif.d.ts +0 -3
- package/dist/components/editor/ui/icons/index.d.ts +0 -3
- package/dist/components/editor/ui/icons/loading-circle.d.ts +0 -3
- package/dist/components/editor/ui/menu.d.ts +0 -1
- package/dist/components/editor/ui/popover.d.ts +0 -6
- package/dist/components/editor/ui/scroll-area.d.ts +0 -5
- package/dist/components/editor/ui/separator.d.ts +0 -4
- package/dist/components/editor/ui/tooltip.d.ts +0 -3
There are too many changes on this page to be displayed.
The amount of changes on this page would crash your brower.
You can still verify the content by downloading the package file manually.