@yiitap/vue 0.16.0 → 0.16.1

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/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@yiitap/vue",
3
3
  "description": "A WYSIWYG rich-text block-based editor built on top of tiptap.",
4
- "version": "0.16.0",
4
+ "version": "0.16.1",
5
5
  "private": false,
6
6
  "author": {
7
7
  "name": "Yiitap",
@@ -29,7 +29,6 @@
29
29
  "dependencies": {
30
30
  "@floating-ui/dom": "^1.7.4",
31
31
  "@tiptap/core": "^3.20.0",
32
- "@tiptap/extension-blockquote": "^3.20.0",
33
32
  "@tiptap/extension-bubble-menu": "^3.20.0",
34
33
  "@tiptap/extension-code-block-lowlight": "^3.20.0",
35
34
  "@tiptap/extension-collaboration": "^3.20.0",
@@ -61,22 +60,23 @@
61
60
  "@tiptap/vue-3": "^3.20.0",
62
61
  "tippy.js": "^6.3.7",
63
62
  "uuid": "^10.0.0",
64
- "@yiitap/core": "0.16.0",
65
- "@yiitap/extension-ai-block": "0.16.0",
66
- "@yiitap/extension-callout": "0.16.0",
67
- "@yiitap/extension-char-command": "0.16.0",
68
- "@yiitap/extension-color-highlighter": "0.16.0",
69
- "@yiitap/extension-image": "0.16.0",
70
- "@yiitap/extension-model-viewer": "0.16.0",
71
- "@yiitap/extension-inline-placeholder": "0.16.0",
72
- "@yiitap/extension-multi-column": "0.16.0",
73
- "@yiitap/extension-placeholder": "0.16.0",
74
- "@yiitap/extension-selection-decoration": "0.16.0",
75
- "@yiitap/extension-shortcut": "0.16.0",
76
- "@yiitap/extension-table": "0.16.0",
77
- "@yiitap/extension-table-wrapper": "0.16.0",
78
- "@yiitap/extension-task-item": "0.16.0",
79
- "@yiitap/extension-video": "0.16.0"
63
+ "@yiitap/extension-ai-block": "0.16.1",
64
+ "@yiitap/core": "0.16.1",
65
+ "@yiitap/extension-blockquote": "0.16.1",
66
+ "@yiitap/extension-callout": "0.16.1",
67
+ "@yiitap/extension-char-command": "0.16.1",
68
+ "@yiitap/extension-color-highlighter": "0.16.1",
69
+ "@yiitap/extension-image": "0.16.1",
70
+ "@yiitap/extension-inline-placeholder": "0.16.1",
71
+ "@yiitap/extension-model-viewer": "0.16.1",
72
+ "@yiitap/extension-multi-column": "0.16.1",
73
+ "@yiitap/extension-placeholder": "0.16.1",
74
+ "@yiitap/extension-selection-decoration": "0.16.1",
75
+ "@yiitap/extension-table": "0.16.1",
76
+ "@yiitap/extension-table-wrapper": "0.16.1",
77
+ "@yiitap/extension-task-item": "0.16.1",
78
+ "@yiitap/extension-video": "0.16.1",
79
+ "@yiitap/extension-shortcut": "0.16.1"
80
80
  },
81
81
  "peerDependencies": {
82
82
  "@mermaid-js/layout-elk": "^0.2.0",
@@ -89,9 +89,9 @@
89
89
  "markdown-it": "^14.1.1",
90
90
  "mermaid": "^11.12.0",
91
91
  "vue": "^3.3.8",
92
- "@yiitap/i18n": "0.16.0",
93
- "@yiitap/util-emoji": "0.16.0",
94
- "@yiitap/vue": "0.16.0"
92
+ "@yiitap/i18n": "0.16.1",
93
+ "@yiitap/util-emoji": "0.16.1",
94
+ "@yiitap/vue": "0.16.1"
95
95
  },
96
96
  "devDependencies": {
97
97
  "rollup-plugin-visualizer": "^5.14.0",
@@ -1,6 +1,4 @@
1
- import type { BlockquoteOptions } from '@tiptap/extension-blockquote';
2
- export interface OBlockquoteOptions extends BlockquoteOptions {
3
- triggerCharacters: string[];
4
- }
5
- declare const OBlockquote: import("@tiptap/core").Node<OBlockquoteOptions, any>;
1
+ import { type BlockquoteOptions as OBlockquoteOptions } from '@yiitap/extension-blockquote';
2
+ export declare const OBlockquote: import("@tiptap/core").Node<OBlockquoteOptions, any>;
6
3
  export default OBlockquote;
4
+ export type { OBlockquoteOptions };