@tiptap/vue-3 2.0.0-beta.83 → 2.0.0-beta.84
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/packages/extension-blockquote/src/blockquote.d.ts +1 -1
- package/dist/packages/extension-bold/src/bold.d.ts +1 -1
- package/dist/packages/extension-bullet-list/src/bullet-list.d.ts +2 -1
- package/dist/packages/extension-character-count/src/character-count.d.ts +1 -1
- package/dist/packages/extension-code/src/code.d.ts +1 -1
- package/dist/packages/extension-code-block/src/code-block.d.ts +1 -1
- package/dist/packages/extension-code-block-lowlight/src/code-block-lowlight.d.ts +1 -1
- package/dist/packages/extension-heading/src/heading.d.ts +1 -1
- package/dist/packages/extension-highlight/src/highlight.d.ts +1 -1
- package/dist/packages/extension-horizontal-rule/src/horizontal-rule.d.ts +1 -1
- package/dist/packages/extension-image/src/image.d.ts +1 -1
- package/dist/packages/extension-italic/src/italic.d.ts +1 -1
- package/dist/packages/extension-link/src/link.d.ts +1 -1
- package/dist/packages/extension-ordered-list/src/ordered-list.d.ts +2 -1
- package/dist/packages/extension-strike/src/strike.d.ts +1 -1
- package/dist/packages/extension-task-item/src/task-item.d.ts +1 -1
- package/dist/packages/extension-task-list/src/task-list.d.ts +1 -0
- package/package.json +4 -4
|
@@ -24,4 +24,4 @@ export declare const starInputRegex: RegExp;
|
|
|
24
24
|
export declare const starPasteRegex: RegExp;
|
|
25
25
|
export declare const underscoreInputRegex: RegExp;
|
|
26
26
|
export declare const underscorePasteRegex: RegExp;
|
|
27
|
-
export declare const Bold: Mark<BoldOptions,
|
|
27
|
+
export declare const Bold: Mark<BoldOptions, unknown>;
|
|
@@ -1,5 +1,6 @@
|
|
|
1
1
|
import { Node } from '@tiptap/core';
|
|
2
2
|
export interface BulletListOptions {
|
|
3
|
+
itemTypeName: string;
|
|
3
4
|
HTMLAttributes: Record<string, any>;
|
|
4
5
|
}
|
|
5
6
|
declare module '@tiptap/core' {
|
|
@@ -13,4 +14,4 @@ declare module '@tiptap/core' {
|
|
|
13
14
|
}
|
|
14
15
|
}
|
|
15
16
|
export declare const inputRegex: RegExp;
|
|
16
|
-
export declare const BulletList: Node<BulletListOptions,
|
|
17
|
+
export declare const BulletList: Node<BulletListOptions, unknown>;
|
|
@@ -23,4 +23,4 @@ declare module '@tiptap/core' {
|
|
|
23
23
|
}
|
|
24
24
|
export declare const backtickInputRegex: RegExp;
|
|
25
25
|
export declare const tildeInputRegex: RegExp;
|
|
26
|
-
export declare const CodeBlock: Node<CodeBlockOptions,
|
|
26
|
+
export declare const CodeBlock: Node<CodeBlockOptions, unknown>;
|
|
@@ -3,4 +3,4 @@ export interface CodeBlockLowlightOptions extends CodeBlockOptions {
|
|
|
3
3
|
lowlight: any;
|
|
4
4
|
defaultLanguage: string | null | undefined;
|
|
5
5
|
}
|
|
6
|
-
export declare const CodeBlockLowlight: import("@tiptap/core").Node<CodeBlockLowlightOptions,
|
|
6
|
+
export declare const CodeBlockLowlight: import("@tiptap/core").Node<CodeBlockLowlightOptions, unknown>;
|
|
@@ -24,4 +24,4 @@ export declare const starInputRegex: RegExp;
|
|
|
24
24
|
export declare const starPasteRegex: RegExp;
|
|
25
25
|
export declare const underscoreInputRegex: RegExp;
|
|
26
26
|
export declare const underscorePasteRegex: RegExp;
|
|
27
|
-
export declare const Italic: Mark<ItalicOptions,
|
|
27
|
+
export declare const Italic: Mark<ItalicOptions, unknown>;
|
|
@@ -1,5 +1,6 @@
|
|
|
1
1
|
import { Node } from '@tiptap/core';
|
|
2
2
|
export interface OrderedListOptions {
|
|
3
|
+
itemTypeName: string;
|
|
3
4
|
HTMLAttributes: Record<string, any>;
|
|
4
5
|
}
|
|
5
6
|
declare module '@tiptap/core' {
|
|
@@ -13,4 +14,4 @@ declare module '@tiptap/core' {
|
|
|
13
14
|
}
|
|
14
15
|
}
|
|
15
16
|
export declare const inputRegex: RegExp;
|
|
16
|
-
export declare const OrderedList: Node<OrderedListOptions,
|
|
17
|
+
export declare const OrderedList: Node<OrderedListOptions, unknown>;
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@tiptap/vue-3",
|
|
3
3
|
"description": "Vue components for tiptap",
|
|
4
|
-
"version": "2.0.0-beta.
|
|
4
|
+
"version": "2.0.0-beta.84",
|
|
5
5
|
"homepage": "https://tiptap.dev",
|
|
6
6
|
"keywords": [
|
|
7
7
|
"tiptap",
|
|
@@ -28,8 +28,8 @@
|
|
|
28
28
|
"vue": "^3.0.0"
|
|
29
29
|
},
|
|
30
30
|
"dependencies": {
|
|
31
|
-
"@tiptap/extension-bubble-menu": "^2.0.0-beta.
|
|
32
|
-
"@tiptap/extension-floating-menu": "^2.0.0-beta.
|
|
31
|
+
"@tiptap/extension-bubble-menu": "^2.0.0-beta.52",
|
|
32
|
+
"@tiptap/extension-floating-menu": "^2.0.0-beta.47",
|
|
33
33
|
"prosemirror-state": "^1.3.4",
|
|
34
34
|
"prosemirror-view": "^1.23.3"
|
|
35
35
|
},
|
|
@@ -38,5 +38,5 @@
|
|
|
38
38
|
"url": "https://github.com/ueberdosis/tiptap",
|
|
39
39
|
"directory": "packages/vue-3"
|
|
40
40
|
},
|
|
41
|
-
"gitHead": "
|
|
41
|
+
"gitHead": "56cbf99f9f636930f77840d6e69dd1d8d2063e37"
|
|
42
42
|
}
|