@tiptap/extension-paragraph 2.0.0-beta.14 → 2.0.0-beta.18
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-paragraph/src/paragraph.d.ts +4 -4
- package/dist/tiptap-extension-paragraph.cjs.js +6 -4
- package/dist/tiptap-extension-paragraph.cjs.js.map +1 -1
- package/dist/tiptap-extension-paragraph.esm.js +6 -5
- package/dist/tiptap-extension-paragraph.esm.js.map +1 -1
- package/dist/tiptap-extension-paragraph.umd.js +9 -7
- package/dist/tiptap-extension-paragraph.umd.js.map +1 -1
- package/package.json +7 -2
- package/src/paragraph.ts +8 -6
- package/CHANGELOG.md +0 -231
|
@@ -1,15 +1,15 @@
|
|
|
1
|
-
import {
|
|
1
|
+
import { Node } from '@tiptap/core';
|
|
2
2
|
export interface ParagraphOptions {
|
|
3
3
|
HTMLAttributes: Record<string, any>;
|
|
4
4
|
}
|
|
5
5
|
declare module '@tiptap/core' {
|
|
6
|
-
interface Commands {
|
|
6
|
+
interface Commands<ReturnType> {
|
|
7
7
|
paragraph: {
|
|
8
8
|
/**
|
|
9
9
|
* Toggle a paragraph
|
|
10
10
|
*/
|
|
11
|
-
setParagraph: () =>
|
|
11
|
+
setParagraph: () => ReturnType;
|
|
12
12
|
};
|
|
13
13
|
}
|
|
14
14
|
}
|
|
15
|
-
export declare const Paragraph: Node<ParagraphOptions>;
|
|
15
|
+
export declare const Paragraph: Node<ParagraphOptions, any>;
|
|
@@ -7,8 +7,10 @@ var core = require('@tiptap/core');
|
|
|
7
7
|
const Paragraph = core.Node.create({
|
|
8
8
|
name: 'paragraph',
|
|
9
9
|
priority: 1000,
|
|
10
|
-
|
|
11
|
-
|
|
10
|
+
addOptions() {
|
|
11
|
+
return {
|
|
12
|
+
HTMLAttributes: {},
|
|
13
|
+
};
|
|
12
14
|
},
|
|
13
15
|
group: 'block',
|
|
14
16
|
content: 'inline*',
|
|
@@ -23,7 +25,7 @@ const Paragraph = core.Node.create({
|
|
|
23
25
|
addCommands() {
|
|
24
26
|
return {
|
|
25
27
|
setParagraph: () => ({ commands }) => {
|
|
26
|
-
return commands.
|
|
28
|
+
return commands.setNode('paragraph');
|
|
27
29
|
},
|
|
28
30
|
};
|
|
29
31
|
},
|
|
@@ -35,5 +37,5 @@ const Paragraph = core.Node.create({
|
|
|
35
37
|
});
|
|
36
38
|
|
|
37
39
|
exports.Paragraph = Paragraph;
|
|
38
|
-
exports
|
|
40
|
+
exports["default"] = Paragraph;
|
|
39
41
|
//# sourceMappingURL=tiptap-extension-paragraph.cjs.js.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"tiptap-extension-paragraph.cjs.js","sources":["../src/paragraph.ts"],"sourcesContent":["import {
|
|
1
|
+
{"version":3,"file":"tiptap-extension-paragraph.cjs.js","sources":["../src/paragraph.ts"],"sourcesContent":["import { Node, mergeAttributes } from '@tiptap/core'\n\nexport interface ParagraphOptions {\n HTMLAttributes: Record<string, any>,\n}\n\ndeclare module '@tiptap/core' {\n interface Commands<ReturnType> {\n paragraph: {\n /**\n * Toggle a paragraph\n */\n setParagraph: () => ReturnType,\n }\n }\n}\n\nexport const Paragraph = Node.create<ParagraphOptions>({\n name: 'paragraph',\n\n priority: 1000,\n\n addOptions() {\n return {\n HTMLAttributes: {},\n }\n },\n\n group: 'block',\n\n content: 'inline*',\n\n parseHTML() {\n return [\n { tag: 'p' },\n ]\n },\n\n renderHTML({ HTMLAttributes }) {\n return ['p', mergeAttributes(this.options.HTMLAttributes, HTMLAttributes), 0]\n },\n\n addCommands() {\n return {\n setParagraph: () => ({ commands }) => {\n return commands.setNode('paragraph')\n },\n }\n },\n\n addKeyboardShortcuts() {\n return {\n 'Mod-Alt-0': () => this.editor.commands.setParagraph(),\n }\n },\n})\n"],"names":["Node","mergeAttributes"],"mappings":";;;;;;MAiBa,SAAS,GAAGA,SAAI,CAAC,MAAM,CAAmB;IACrD,IAAI,EAAE,WAAW;IAEjB,QAAQ,EAAE,IAAI;IAEd,UAAU;QACR,OAAO;YACL,cAAc,EAAE,EAAE;SACnB,CAAA;KACF;IAED,KAAK,EAAE,OAAO;IAEd,OAAO,EAAE,SAAS;IAElB,SAAS;QACP,OAAO;YACL,EAAE,GAAG,EAAE,GAAG,EAAE;SACb,CAAA;KACF;IAED,UAAU,CAAC,EAAE,cAAc,EAAE;QAC3B,OAAO,CAAC,GAAG,EAAEC,oBAAe,CAAC,IAAI,CAAC,OAAO,CAAC,cAAc,EAAE,cAAc,CAAC,EAAE,CAAC,CAAC,CAAA;KAC9E;IAED,WAAW;QACT,OAAO;YACL,YAAY,EAAE,MAAM,CAAC,EAAE,QAAQ,EAAE;gBAC/B,OAAO,QAAQ,CAAC,OAAO,CAAC,WAAW,CAAC,CAAA;aACrC;SACF,CAAA;KACF;IAED,oBAAoB;QAClB,OAAO;YACL,WAAW,EAAE,MAAM,IAAI,CAAC,MAAM,CAAC,QAAQ,CAAC,YAAY,EAAE;SACvD,CAAA;KACF;CACF;;;;;"}
|
|
@@ -3,8 +3,10 @@ import { Node, mergeAttributes } from '@tiptap/core';
|
|
|
3
3
|
const Paragraph = Node.create({
|
|
4
4
|
name: 'paragraph',
|
|
5
5
|
priority: 1000,
|
|
6
|
-
|
|
7
|
-
|
|
6
|
+
addOptions() {
|
|
7
|
+
return {
|
|
8
|
+
HTMLAttributes: {},
|
|
9
|
+
};
|
|
8
10
|
},
|
|
9
11
|
group: 'block',
|
|
10
12
|
content: 'inline*',
|
|
@@ -19,7 +21,7 @@ const Paragraph = Node.create({
|
|
|
19
21
|
addCommands() {
|
|
20
22
|
return {
|
|
21
23
|
setParagraph: () => ({ commands }) => {
|
|
22
|
-
return commands.
|
|
24
|
+
return commands.setNode('paragraph');
|
|
23
25
|
},
|
|
24
26
|
};
|
|
25
27
|
},
|
|
@@ -30,6 +32,5 @@ const Paragraph = Node.create({
|
|
|
30
32
|
},
|
|
31
33
|
});
|
|
32
34
|
|
|
33
|
-
export default
|
|
34
|
-
export { Paragraph };
|
|
35
|
+
export { Paragraph, Paragraph as default };
|
|
35
36
|
//# sourceMappingURL=tiptap-extension-paragraph.esm.js.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"tiptap-extension-paragraph.esm.js","sources":["../src/paragraph.ts"],"sourcesContent":["import {
|
|
1
|
+
{"version":3,"file":"tiptap-extension-paragraph.esm.js","sources":["../src/paragraph.ts"],"sourcesContent":["import { Node, mergeAttributes } from '@tiptap/core'\n\nexport interface ParagraphOptions {\n HTMLAttributes: Record<string, any>,\n}\n\ndeclare module '@tiptap/core' {\n interface Commands<ReturnType> {\n paragraph: {\n /**\n * Toggle a paragraph\n */\n setParagraph: () => ReturnType,\n }\n }\n}\n\nexport const Paragraph = Node.create<ParagraphOptions>({\n name: 'paragraph',\n\n priority: 1000,\n\n addOptions() {\n return {\n HTMLAttributes: {},\n }\n },\n\n group: 'block',\n\n content: 'inline*',\n\n parseHTML() {\n return [\n { tag: 'p' },\n ]\n },\n\n renderHTML({ HTMLAttributes }) {\n return ['p', mergeAttributes(this.options.HTMLAttributes, HTMLAttributes), 0]\n },\n\n addCommands() {\n return {\n setParagraph: () => ({ commands }) => {\n return commands.setNode('paragraph')\n },\n }\n },\n\n addKeyboardShortcuts() {\n return {\n 'Mod-Alt-0': () => this.editor.commands.setParagraph(),\n }\n },\n})\n"],"names":[],"mappings":";;MAiBa,SAAS,GAAG,IAAI,CAAC,MAAM,CAAmB;IACrD,IAAI,EAAE,WAAW;IAEjB,QAAQ,EAAE,IAAI;IAEd,UAAU;QACR,OAAO;YACL,cAAc,EAAE,EAAE;SACnB,CAAA;KACF;IAED,KAAK,EAAE,OAAO;IAEd,OAAO,EAAE,SAAS;IAElB,SAAS;QACP,OAAO;YACL,EAAE,GAAG,EAAE,GAAG,EAAE;SACb,CAAA;KACF;IAED,UAAU,CAAC,EAAE,cAAc,EAAE;QAC3B,OAAO,CAAC,GAAG,EAAE,eAAe,CAAC,IAAI,CAAC,OAAO,CAAC,cAAc,EAAE,cAAc,CAAC,EAAE,CAAC,CAAC,CAAA;KAC9E;IAED,WAAW;QACT,OAAO;YACL,YAAY,EAAE,MAAM,CAAC,EAAE,QAAQ,EAAE;gBAC/B,OAAO,QAAQ,CAAC,OAAO,CAAC,WAAW,CAAC,CAAA;aACrC;SACF,CAAA;KACF;IAED,oBAAoB;QAClB,OAAO;YACL,WAAW,EAAE,MAAM,IAAI,CAAC,MAAM,CAAC,QAAQ,CAAC,YAAY,EAAE;SACvD,CAAA;KACF;CACF;;;;"}
|
|
@@ -1,14 +1,16 @@
|
|
|
1
1
|
(function (global, factory) {
|
|
2
2
|
typeof exports === 'object' && typeof module !== 'undefined' ? factory(exports, require('@tiptap/core')) :
|
|
3
3
|
typeof define === 'function' && define.amd ? define(['exports', '@tiptap/core'], factory) :
|
|
4
|
-
(global = typeof globalThis !== 'undefined' ? globalThis : global || self, factory(global[
|
|
5
|
-
}(this, (function (exports, core) { 'use strict';
|
|
4
|
+
(global = typeof globalThis !== 'undefined' ? globalThis : global || self, factory(global["@tiptap/extension-paragraph"] = {}, global.core));
|
|
5
|
+
})(this, (function (exports, core) { 'use strict';
|
|
6
6
|
|
|
7
7
|
const Paragraph = core.Node.create({
|
|
8
8
|
name: 'paragraph',
|
|
9
9
|
priority: 1000,
|
|
10
|
-
|
|
11
|
-
|
|
10
|
+
addOptions() {
|
|
11
|
+
return {
|
|
12
|
+
HTMLAttributes: {},
|
|
13
|
+
};
|
|
12
14
|
},
|
|
13
15
|
group: 'block',
|
|
14
16
|
content: 'inline*',
|
|
@@ -23,7 +25,7 @@
|
|
|
23
25
|
addCommands() {
|
|
24
26
|
return {
|
|
25
27
|
setParagraph: () => ({ commands }) => {
|
|
26
|
-
return commands.
|
|
28
|
+
return commands.setNode('paragraph');
|
|
27
29
|
},
|
|
28
30
|
};
|
|
29
31
|
},
|
|
@@ -35,9 +37,9 @@
|
|
|
35
37
|
});
|
|
36
38
|
|
|
37
39
|
exports.Paragraph = Paragraph;
|
|
38
|
-
exports
|
|
40
|
+
exports["default"] = Paragraph;
|
|
39
41
|
|
|
40
42
|
Object.defineProperty(exports, '__esModule', { value: true });
|
|
41
43
|
|
|
42
|
-
}))
|
|
44
|
+
}));
|
|
43
45
|
//# sourceMappingURL=tiptap-extension-paragraph.umd.js.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"tiptap-extension-paragraph.umd.js","sources":["../src/paragraph.ts"],"sourcesContent":["import {
|
|
1
|
+
{"version":3,"file":"tiptap-extension-paragraph.umd.js","sources":["../src/paragraph.ts"],"sourcesContent":["import { Node, mergeAttributes } from '@tiptap/core'\n\nexport interface ParagraphOptions {\n HTMLAttributes: Record<string, any>,\n}\n\ndeclare module '@tiptap/core' {\n interface Commands<ReturnType> {\n paragraph: {\n /**\n * Toggle a paragraph\n */\n setParagraph: () => ReturnType,\n }\n }\n}\n\nexport const Paragraph = Node.create<ParagraphOptions>({\n name: 'paragraph',\n\n priority: 1000,\n\n addOptions() {\n return {\n HTMLAttributes: {},\n }\n },\n\n group: 'block',\n\n content: 'inline*',\n\n parseHTML() {\n return [\n { tag: 'p' },\n ]\n },\n\n renderHTML({ HTMLAttributes }) {\n return ['p', mergeAttributes(this.options.HTMLAttributes, HTMLAttributes), 0]\n },\n\n addCommands() {\n return {\n setParagraph: () => ({ commands }) => {\n return commands.setNode('paragraph')\n },\n }\n },\n\n addKeyboardShortcuts() {\n return {\n 'Mod-Alt-0': () => this.editor.commands.setParagraph(),\n }\n },\n})\n"],"names":["Node","mergeAttributes"],"mappings":";;;;;;QAiBa,SAAS,GAAGA,SAAI,CAAC,MAAM,CAAmB;MACrD,IAAI,EAAE,WAAW;MAEjB,QAAQ,EAAE,IAAI;MAEd,UAAU;UACR,OAAO;cACL,cAAc,EAAE,EAAE;WACnB,CAAA;OACF;MAED,KAAK,EAAE,OAAO;MAEd,OAAO,EAAE,SAAS;MAElB,SAAS;UACP,OAAO;cACL,EAAE,GAAG,EAAE,GAAG,EAAE;WACb,CAAA;OACF;MAED,UAAU,CAAC,EAAE,cAAc,EAAE;UAC3B,OAAO,CAAC,GAAG,EAAEC,oBAAe,CAAC,IAAI,CAAC,OAAO,CAAC,cAAc,EAAE,cAAc,CAAC,EAAE,CAAC,CAAC,CAAA;OAC9E;MAED,WAAW;UACT,OAAO;cACL,YAAY,EAAE,MAAM,CAAC,EAAE,QAAQ,EAAE;kBAC/B,OAAO,QAAQ,CAAC,OAAO,CAAC,WAAW,CAAC,CAAA;eACrC;WACF,CAAA;OACF;MAED,oBAAoB;UAClB,OAAO;cACL,WAAW,EAAE,MAAM,IAAI,CAAC,MAAM,CAAC,QAAQ,CAAC,YAAY,EAAE;WACvD,CAAA;OACF;GACF;;;;;;;;;;;"}
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@tiptap/extension-paragraph",
|
|
3
3
|
"description": "paragraph extension for tiptap",
|
|
4
|
-
"version": "2.0.0-beta.
|
|
4
|
+
"version": "2.0.0-beta.18",
|
|
5
5
|
"homepage": "https://tiptap.dev",
|
|
6
6
|
"keywords": [
|
|
7
7
|
"tiptap",
|
|
@@ -23,5 +23,10 @@
|
|
|
23
23
|
"peerDependencies": {
|
|
24
24
|
"@tiptap/core": "^2.0.0-beta.1"
|
|
25
25
|
},
|
|
26
|
-
"
|
|
26
|
+
"repository": {
|
|
27
|
+
"type": "git",
|
|
28
|
+
"url": "https://github.com/ueberdosis/tiptap",
|
|
29
|
+
"directory": "packages/extension-paragraph"
|
|
30
|
+
},
|
|
31
|
+
"gitHead": "642627ec3635a1d8fa851887d75bee5f193ec63b"
|
|
27
32
|
}
|
package/src/paragraph.ts
CHANGED
|
@@ -1,16 +1,16 @@
|
|
|
1
|
-
import {
|
|
1
|
+
import { Node, mergeAttributes } from '@tiptap/core'
|
|
2
2
|
|
|
3
3
|
export interface ParagraphOptions {
|
|
4
4
|
HTMLAttributes: Record<string, any>,
|
|
5
5
|
}
|
|
6
6
|
|
|
7
7
|
declare module '@tiptap/core' {
|
|
8
|
-
interface Commands {
|
|
8
|
+
interface Commands<ReturnType> {
|
|
9
9
|
paragraph: {
|
|
10
10
|
/**
|
|
11
11
|
* Toggle a paragraph
|
|
12
12
|
*/
|
|
13
|
-
setParagraph: () =>
|
|
13
|
+
setParagraph: () => ReturnType,
|
|
14
14
|
}
|
|
15
15
|
}
|
|
16
16
|
}
|
|
@@ -20,8 +20,10 @@ export const Paragraph = Node.create<ParagraphOptions>({
|
|
|
20
20
|
|
|
21
21
|
priority: 1000,
|
|
22
22
|
|
|
23
|
-
|
|
24
|
-
|
|
23
|
+
addOptions() {
|
|
24
|
+
return {
|
|
25
|
+
HTMLAttributes: {},
|
|
26
|
+
}
|
|
25
27
|
},
|
|
26
28
|
|
|
27
29
|
group: 'block',
|
|
@@ -41,7 +43,7 @@ export const Paragraph = Node.create<ParagraphOptions>({
|
|
|
41
43
|
addCommands() {
|
|
42
44
|
return {
|
|
43
45
|
setParagraph: () => ({ commands }) => {
|
|
44
|
-
return commands.
|
|
46
|
+
return commands.setNode('paragraph')
|
|
45
47
|
},
|
|
46
48
|
}
|
|
47
49
|
},
|
package/CHANGELOG.md
DELETED
|
@@ -1,231 +0,0 @@
|
|
|
1
|
-
# Change Log
|
|
2
|
-
|
|
3
|
-
All notable changes to this project will be documented in this file.
|
|
4
|
-
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
|
|
5
|
-
|
|
6
|
-
# [2.0.0-beta.14](https://github.com/ueberdosis/tiptap/compare/@tiptap/extension-paragraph@2.0.0-beta.13...@tiptap/extension-paragraph@2.0.0-beta.14) (2021-05-18)
|
|
7
|
-
|
|
8
|
-
**Note:** Version bump only for package @tiptap/extension-paragraph
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
# [2.0.0-beta.13](https://github.com/ueberdosis/tiptap/compare/@tiptap/extension-paragraph@2.0.0-beta.12...@tiptap/extension-paragraph@2.0.0-beta.13) (2021-05-13)
|
|
15
|
-
|
|
16
|
-
**Note:** Version bump only for package @tiptap/extension-paragraph
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
# [2.0.0-beta.12](https://github.com/ueberdosis/tiptap/compare/@tiptap/extension-paragraph@2.0.0-beta.11...@tiptap/extension-paragraph@2.0.0-beta.12) (2021-05-07)
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
### Bug Fixes
|
|
26
|
-
|
|
27
|
-
* revert adding exports ([bc320d0](https://github.com/ueberdosis/tiptap/commit/bc320d0b4b80b0e37a7e47a56e0f6daec6e65d98))
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
# [2.0.0-beta.11](https://github.com/ueberdosis/tiptap/compare/@tiptap/extension-paragraph@2.0.0-beta.10...@tiptap/extension-paragraph@2.0.0-beta.11) (2021-05-06)
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
### Bug Fixes
|
|
37
|
-
|
|
38
|
-
* revert adding type: module ([f8d6475](https://github.com/ueberdosis/tiptap/commit/f8d6475e2151faea6f96baecdd6bd75880d50d2c))
|
|
39
|
-
|
|
40
|
-
|
|
41
|
-
|
|
42
|
-
|
|
43
|
-
|
|
44
|
-
# [2.0.0-beta.10](https://github.com/ueberdosis/tiptap/compare/@tiptap/extension-paragraph@2.0.0-beta.9...@tiptap/extension-paragraph@2.0.0-beta.10) (2021-05-06)
|
|
45
|
-
|
|
46
|
-
|
|
47
|
-
### Bug Fixes
|
|
48
|
-
|
|
49
|
-
* add exports to package.json ([1277fa4](https://github.com/ueberdosis/tiptap/commit/1277fa47151e9c039508cdb219bdd0ffe647f4ee))
|
|
50
|
-
|
|
51
|
-
|
|
52
|
-
|
|
53
|
-
|
|
54
|
-
|
|
55
|
-
# [2.0.0-beta.9](https://github.com/ueberdosis/tiptap/compare/@tiptap/extension-paragraph@2.0.0-beta.8...@tiptap/extension-paragraph@2.0.0-beta.9) (2021-05-06)
|
|
56
|
-
|
|
57
|
-
**Note:** Version bump only for package @tiptap/extension-paragraph
|
|
58
|
-
|
|
59
|
-
|
|
60
|
-
|
|
61
|
-
|
|
62
|
-
|
|
63
|
-
# [2.0.0-beta.8](https://github.com/ueberdosis/tiptap/compare/@tiptap/extension-paragraph@2.0.0-beta.7...@tiptap/extension-paragraph@2.0.0-beta.8) (2021-05-05)
|
|
64
|
-
|
|
65
|
-
**Note:** Version bump only for package @tiptap/extension-paragraph
|
|
66
|
-
|
|
67
|
-
|
|
68
|
-
|
|
69
|
-
|
|
70
|
-
|
|
71
|
-
# [2.0.0-beta.7](https://github.com/ueberdosis/tiptap/compare/@tiptap/extension-paragraph@2.0.0-beta.6...@tiptap/extension-paragraph@2.0.0-beta.7) (2021-04-23)
|
|
72
|
-
|
|
73
|
-
**Note:** Version bump only for package @tiptap/extension-paragraph
|
|
74
|
-
|
|
75
|
-
|
|
76
|
-
|
|
77
|
-
|
|
78
|
-
|
|
79
|
-
# [2.0.0-beta.6](https://github.com/ueberdosis/tiptap/compare/@tiptap/extension-paragraph@2.0.0-beta.5...@tiptap/extension-paragraph@2.0.0-beta.6) (2021-04-22)
|
|
80
|
-
|
|
81
|
-
**Note:** Version bump only for package @tiptap/extension-paragraph
|
|
82
|
-
|
|
83
|
-
|
|
84
|
-
|
|
85
|
-
|
|
86
|
-
|
|
87
|
-
# [2.0.0-beta.5](https://github.com/ueberdosis/tiptap/compare/@tiptap/extension-paragraph@2.0.0-beta.4...@tiptap/extension-paragraph@2.0.0-beta.5) (2021-04-21)
|
|
88
|
-
|
|
89
|
-
**Note:** Version bump only for package @tiptap/extension-paragraph
|
|
90
|
-
|
|
91
|
-
|
|
92
|
-
|
|
93
|
-
|
|
94
|
-
|
|
95
|
-
# [2.0.0-beta.4](https://github.com/ueberdosis/tiptap/compare/@tiptap/extension-paragraph@2.0.0-beta.3...@tiptap/extension-paragraph@2.0.0-beta.4) (2021-04-16)
|
|
96
|
-
|
|
97
|
-
**Note:** Version bump only for package @tiptap/extension-paragraph
|
|
98
|
-
|
|
99
|
-
|
|
100
|
-
|
|
101
|
-
|
|
102
|
-
|
|
103
|
-
# [2.0.0-beta.3](https://github.com/ueberdosis/tiptap/compare/@tiptap/extension-paragraph@2.0.0-beta.2...@tiptap/extension-paragraph@2.0.0-beta.3) (2021-04-15)
|
|
104
|
-
|
|
105
|
-
**Note:** Version bump only for package @tiptap/extension-paragraph
|
|
106
|
-
|
|
107
|
-
|
|
108
|
-
|
|
109
|
-
|
|
110
|
-
|
|
111
|
-
# [2.0.0-beta.2](https://github.com/ueberdosis/tiptap/compare/@tiptap/extension-paragraph@2.0.0-beta.1...@tiptap/extension-paragraph@2.0.0-beta.2) (2021-04-07)
|
|
112
|
-
|
|
113
|
-
|
|
114
|
-
### Features
|
|
115
|
-
|
|
116
|
-
* add priority option to extensions ([bb1ae65](https://github.com/ueberdosis/tiptap/commit/bb1ae659a463e97a7ada15af711347b5c004897a))
|
|
117
|
-
|
|
118
|
-
|
|
119
|
-
|
|
120
|
-
|
|
121
|
-
|
|
122
|
-
# [2.0.0-beta.1](https://github.com/ueberdosis/tiptap/compare/@tiptap/extension-paragraph@2.0.0-alpha.11...@tiptap/extension-paragraph@2.0.0-beta.1) (2021-03-05)
|
|
123
|
-
|
|
124
|
-
**Note:** Version bump only for package @tiptap/extension-paragraph
|
|
125
|
-
|
|
126
|
-
|
|
127
|
-
|
|
128
|
-
|
|
129
|
-
|
|
130
|
-
# [2.0.0-alpha.11](https://github.com/ueberdosis/tiptap/compare/@tiptap/extension-paragraph@2.0.0-alpha.10...@tiptap/extension-paragraph@2.0.0-alpha.11) (2021-02-16)
|
|
131
|
-
|
|
132
|
-
**Note:** Version bump only for package @tiptap/extension-paragraph
|
|
133
|
-
|
|
134
|
-
|
|
135
|
-
|
|
136
|
-
|
|
137
|
-
|
|
138
|
-
# [2.0.0-alpha.10](https://github.com/ueberdosis/tiptap/compare/@tiptap/extension-paragraph@2.0.0-alpha.9...@tiptap/extension-paragraph@2.0.0-alpha.10) (2021-02-07)
|
|
139
|
-
|
|
140
|
-
**Note:** Version bump only for package @tiptap/extension-paragraph
|
|
141
|
-
|
|
142
|
-
|
|
143
|
-
|
|
144
|
-
|
|
145
|
-
|
|
146
|
-
# [2.0.0-alpha.9](https://github.com/ueberdosis/tiptap/compare/@tiptap/extension-paragraph@2.0.0-alpha.8...@tiptap/extension-paragraph@2.0.0-alpha.9) (2021-02-05)
|
|
147
|
-
|
|
148
|
-
**Note:** Version bump only for package @tiptap/extension-paragraph
|
|
149
|
-
|
|
150
|
-
|
|
151
|
-
|
|
152
|
-
|
|
153
|
-
|
|
154
|
-
# [2.0.0-alpha.8](https://github.com/ueberdosis/tiptap/compare/@tiptap/extension-paragraph@2.0.0-alpha.7...@tiptap/extension-paragraph@2.0.0-alpha.8) (2021-01-29)
|
|
155
|
-
|
|
156
|
-
**Note:** Version bump only for package @tiptap/extension-paragraph
|
|
157
|
-
|
|
158
|
-
|
|
159
|
-
|
|
160
|
-
|
|
161
|
-
|
|
162
|
-
# [2.0.0-alpha.7](https://github.com/ueberdosis/tiptap/compare/@tiptap/extension-paragraph@2.0.0-alpha.6...@tiptap/extension-paragraph@2.0.0-alpha.7) (2021-01-29)
|
|
163
|
-
|
|
164
|
-
**Note:** Version bump only for package @tiptap/extension-paragraph
|
|
165
|
-
|
|
166
|
-
|
|
167
|
-
|
|
168
|
-
|
|
169
|
-
|
|
170
|
-
# [2.0.0-alpha.6](https://github.com/ueberdosis/tiptap/compare/@tiptap/extension-paragraph@2.0.0-alpha.5...@tiptap/extension-paragraph@2.0.0-alpha.6) (2021-01-28)
|
|
171
|
-
|
|
172
|
-
**Note:** Version bump only for package @tiptap/extension-paragraph
|
|
173
|
-
|
|
174
|
-
|
|
175
|
-
|
|
176
|
-
|
|
177
|
-
|
|
178
|
-
# [2.0.0-alpha.5](https://github.com/ueberdosis/tiptap/compare/@tiptap/extension-paragraph@2.0.0-alpha.4...@tiptap/extension-paragraph@2.0.0-alpha.5) (2020-12-18)
|
|
179
|
-
|
|
180
|
-
**Note:** Version bump only for package @tiptap/extension-paragraph
|
|
181
|
-
|
|
182
|
-
|
|
183
|
-
|
|
184
|
-
|
|
185
|
-
|
|
186
|
-
# [2.0.0-alpha.4](https://github.com/ueberdosis/tiptap/compare/@tiptap/extension-paragraph@2.0.0-alpha.3...@tiptap/extension-paragraph@2.0.0-alpha.4) (2020-12-02)
|
|
187
|
-
|
|
188
|
-
**Note:** Version bump only for package @tiptap/extension-paragraph
|
|
189
|
-
|
|
190
|
-
|
|
191
|
-
|
|
192
|
-
|
|
193
|
-
|
|
194
|
-
# [2.0.0-alpha.3](https://github.com/ueberdosis/tiptap/compare/@tiptap/extension-paragraph@2.0.0-alpha.2...@tiptap/extension-paragraph@2.0.0-alpha.3) (2020-11-19)
|
|
195
|
-
|
|
196
|
-
**Note:** Version bump only for package @tiptap/extension-paragraph
|
|
197
|
-
|
|
198
|
-
|
|
199
|
-
|
|
200
|
-
|
|
201
|
-
|
|
202
|
-
# [2.0.0-alpha.2](https://github.com/ueberdosis/tiptap/compare/@tiptap/extension-paragraph@2.0.0-alpha.1...@tiptap/extension-paragraph@2.0.0-alpha.2) (2020-11-19)
|
|
203
|
-
|
|
204
|
-
**Note:** Version bump only for package @tiptap/extension-paragraph
|
|
205
|
-
|
|
206
|
-
|
|
207
|
-
|
|
208
|
-
|
|
209
|
-
|
|
210
|
-
# [2.0.0-alpha.1](https://github.com/ueberdosis/tiptap/compare/@tiptap/extension-paragraph@1.0.0-alpha.2...@tiptap/extension-paragraph@2.0.0-alpha.1) (2020-11-18)
|
|
211
|
-
|
|
212
|
-
**Note:** Version bump only for package @tiptap/extension-paragraph
|
|
213
|
-
|
|
214
|
-
|
|
215
|
-
|
|
216
|
-
|
|
217
|
-
|
|
218
|
-
# [1.0.0-alpha.2](https://github.com/ueberdosis/tiptap/compare/@tiptap/extension-paragraph@1.0.0-alpha.1...@tiptap/extension-paragraph@1.0.0-alpha.2) (2020-11-16)
|
|
219
|
-
|
|
220
|
-
**Note:** Version bump only for package @tiptap/extension-paragraph
|
|
221
|
-
|
|
222
|
-
|
|
223
|
-
|
|
224
|
-
|
|
225
|
-
|
|
226
|
-
# 1.0.0-alpha.1 (2020-11-16)
|
|
227
|
-
|
|
228
|
-
|
|
229
|
-
### Reverts
|
|
230
|
-
|
|
231
|
-
* Revert "use global namespace" ([0c9ce26](https://github.com/ueberdosis/tiptap/commit/0c9ce26c02c07d88a757c01b0a9d7f9e2b0b7502))
|