@tiptap/extension-list-item 2.0.0-beta.12 → 2.0.0-beta.16
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/README.md +1 -1
- package/dist/packages/extension-list-item/src/list-item.d.ts +1 -1
- package/dist/tiptap-extension-list-item.cjs.js +5 -3
- package/dist/tiptap-extension-list-item.cjs.js.map +1 -1
- package/dist/tiptap-extension-list-item.esm.js +5 -4
- package/dist/tiptap-extension-list-item.esm.js.map +1 -1
- package/dist/tiptap-extension-list-item.umd.js +8 -6
- package/dist/tiptap-extension-list-item.umd.js.map +1 -1
- package/package.json +7 -2
- package/src/list-item.ts +4 -2
- package/CHANGELOG.md +0 -212
package/README.md
CHANGED
|
@@ -7,7 +7,7 @@
|
|
|
7
7
|
## Introduction
|
|
8
8
|
tiptap is a headless wrapper around [ProseMirror](https://ProseMirror.net) – a toolkit for building rich text WYSIWYG editors, which is already in use at many well-known companies such as *New York Times*, *The Guardian* or *Atlassian*.
|
|
9
9
|
|
|
10
|
-
##
|
|
10
|
+
## Official Documentation
|
|
11
11
|
Documentation can be found on the [tiptap website](https://tiptap.dev).
|
|
12
12
|
|
|
13
13
|
## License
|
|
@@ -6,8 +6,10 @@ var core = require('@tiptap/core');
|
|
|
6
6
|
|
|
7
7
|
const ListItem = core.Node.create({
|
|
8
8
|
name: 'listItem',
|
|
9
|
-
|
|
10
|
-
|
|
9
|
+
addOptions() {
|
|
10
|
+
return {
|
|
11
|
+
HTMLAttributes: {},
|
|
12
|
+
};
|
|
11
13
|
},
|
|
12
14
|
content: 'paragraph block*',
|
|
13
15
|
defining: true,
|
|
@@ -31,5 +33,5 @@ const ListItem = core.Node.create({
|
|
|
31
33
|
});
|
|
32
34
|
|
|
33
35
|
exports.ListItem = ListItem;
|
|
34
|
-
exports
|
|
36
|
+
exports["default"] = ListItem;
|
|
35
37
|
//# sourceMappingURL=tiptap-extension-list-item.cjs.js.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"tiptap-extension-list-item.cjs.js","sources":["../src/list-item.ts"],"sourcesContent":["import { Node, mergeAttributes } from '@tiptap/core'\n\nexport interface ListItemOptions {\n HTMLAttributes: Record<string, any>,\n}\n\nexport const ListItem = Node.create<ListItemOptions>({\n name: 'listItem',\n\n
|
|
1
|
+
{"version":3,"file":"tiptap-extension-list-item.cjs.js","sources":["../src/list-item.ts"],"sourcesContent":["import { Node, mergeAttributes } from '@tiptap/core'\n\nexport interface ListItemOptions {\n HTMLAttributes: Record<string, any>,\n}\n\nexport const ListItem = Node.create<ListItemOptions>({\n name: 'listItem',\n\n addOptions() {\n return {\n HTMLAttributes: {},\n }\n },\n\n content: 'paragraph block*',\n\n defining: true,\n\n parseHTML() {\n return [\n {\n tag: 'li',\n },\n ]\n },\n\n renderHTML({ HTMLAttributes }) {\n return ['li', mergeAttributes(this.options.HTMLAttributes, HTMLAttributes), 0]\n },\n\n addKeyboardShortcuts() {\n return {\n Enter: () => this.editor.commands.splitListItem('listItem'),\n Tab: () => this.editor.commands.sinkListItem('listItem'),\n 'Shift-Tab': () => this.editor.commands.liftListItem('listItem'),\n }\n },\n})\n"],"names":["Node","mergeAttributes"],"mappings":";;;;;;MAMa,QAAQ,GAAGA,SAAI,CAAC,MAAM,CAAkB;IACnD,IAAI,EAAE,UAAU;IAEhB,UAAU;QACR,OAAO;YACL,cAAc,EAAE,EAAE;SACnB,CAAA;KACF;IAED,OAAO,EAAE,kBAAkB;IAE3B,QAAQ,EAAE,IAAI;IAEd,SAAS;QACP,OAAO;YACL;gBACE,GAAG,EAAE,IAAI;aACV;SACF,CAAA;KACF;IAED,UAAU,CAAC,EAAE,cAAc,EAAE;QAC3B,OAAO,CAAC,IAAI,EAAEC,oBAAe,CAAC,IAAI,CAAC,OAAO,CAAC,cAAc,EAAE,cAAc,CAAC,EAAE,CAAC,CAAC,CAAA;KAC/E;IAED,oBAAoB;QAClB,OAAO;YACL,KAAK,EAAE,MAAM,IAAI,CAAC,MAAM,CAAC,QAAQ,CAAC,aAAa,CAAC,UAAU,CAAC;YAC3D,GAAG,EAAE,MAAM,IAAI,CAAC,MAAM,CAAC,QAAQ,CAAC,YAAY,CAAC,UAAU,CAAC;YACxD,WAAW,EAAE,MAAM,IAAI,CAAC,MAAM,CAAC,QAAQ,CAAC,YAAY,CAAC,UAAU,CAAC;SACjE,CAAA;KACF;CACF;;;;;"}
|
|
@@ -2,8 +2,10 @@ import { Node, mergeAttributes } from '@tiptap/core';
|
|
|
2
2
|
|
|
3
3
|
const ListItem = Node.create({
|
|
4
4
|
name: 'listItem',
|
|
5
|
-
|
|
6
|
-
|
|
5
|
+
addOptions() {
|
|
6
|
+
return {
|
|
7
|
+
HTMLAttributes: {},
|
|
8
|
+
};
|
|
7
9
|
},
|
|
8
10
|
content: 'paragraph block*',
|
|
9
11
|
defining: true,
|
|
@@ -26,6 +28,5 @@ const ListItem = Node.create({
|
|
|
26
28
|
},
|
|
27
29
|
});
|
|
28
30
|
|
|
29
|
-
export default
|
|
30
|
-
export { ListItem };
|
|
31
|
+
export { ListItem, ListItem as default };
|
|
31
32
|
//# sourceMappingURL=tiptap-extension-list-item.esm.js.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"tiptap-extension-list-item.esm.js","sources":["../src/list-item.ts"],"sourcesContent":["import { Node, mergeAttributes } from '@tiptap/core'\n\nexport interface ListItemOptions {\n HTMLAttributes: Record<string, any>,\n}\n\nexport const ListItem = Node.create<ListItemOptions>({\n name: 'listItem',\n\n
|
|
1
|
+
{"version":3,"file":"tiptap-extension-list-item.esm.js","sources":["../src/list-item.ts"],"sourcesContent":["import { Node, mergeAttributes } from '@tiptap/core'\n\nexport interface ListItemOptions {\n HTMLAttributes: Record<string, any>,\n}\n\nexport const ListItem = Node.create<ListItemOptions>({\n name: 'listItem',\n\n addOptions() {\n return {\n HTMLAttributes: {},\n }\n },\n\n content: 'paragraph block*',\n\n defining: true,\n\n parseHTML() {\n return [\n {\n tag: 'li',\n },\n ]\n },\n\n renderHTML({ HTMLAttributes }) {\n return ['li', mergeAttributes(this.options.HTMLAttributes, HTMLAttributes), 0]\n },\n\n addKeyboardShortcuts() {\n return {\n Enter: () => this.editor.commands.splitListItem('listItem'),\n Tab: () => this.editor.commands.sinkListItem('listItem'),\n 'Shift-Tab': () => this.editor.commands.liftListItem('listItem'),\n }\n },\n})\n"],"names":[],"mappings":";;MAMa,QAAQ,GAAG,IAAI,CAAC,MAAM,CAAkB;IACnD,IAAI,EAAE,UAAU;IAEhB,UAAU;QACR,OAAO;YACL,cAAc,EAAE,EAAE;SACnB,CAAA;KACF;IAED,OAAO,EAAE,kBAAkB;IAE3B,QAAQ,EAAE,IAAI;IAEd,SAAS;QACP,OAAO;YACL;gBACE,GAAG,EAAE,IAAI;aACV;SACF,CAAA;KACF;IAED,UAAU,CAAC,EAAE,cAAc,EAAE;QAC3B,OAAO,CAAC,IAAI,EAAE,eAAe,CAAC,IAAI,CAAC,OAAO,CAAC,cAAc,EAAE,cAAc,CAAC,EAAE,CAAC,CAAC,CAAA;KAC/E;IAED,oBAAoB;QAClB,OAAO;YACL,KAAK,EAAE,MAAM,IAAI,CAAC,MAAM,CAAC,QAAQ,CAAC,aAAa,CAAC,UAAU,CAAC;YAC3D,GAAG,EAAE,MAAM,IAAI,CAAC,MAAM,CAAC,QAAQ,CAAC,YAAY,CAAC,UAAU,CAAC;YACxD,WAAW,EAAE,MAAM,IAAI,CAAC,MAAM,CAAC,QAAQ,CAAC,YAAY,CAAC,UAAU,CAAC;SACjE,CAAA;KACF;CACF;;;;"}
|
|
@@ -1,13 +1,15 @@
|
|
|
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-list-item"] = {}, global.core));
|
|
5
|
+
})(this, (function (exports, core) { 'use strict';
|
|
6
6
|
|
|
7
7
|
const ListItem = core.Node.create({
|
|
8
8
|
name: 'listItem',
|
|
9
|
-
|
|
10
|
-
|
|
9
|
+
addOptions() {
|
|
10
|
+
return {
|
|
11
|
+
HTMLAttributes: {},
|
|
12
|
+
};
|
|
11
13
|
},
|
|
12
14
|
content: 'paragraph block*',
|
|
13
15
|
defining: true,
|
|
@@ -31,9 +33,9 @@
|
|
|
31
33
|
});
|
|
32
34
|
|
|
33
35
|
exports.ListItem = ListItem;
|
|
34
|
-
exports
|
|
36
|
+
exports["default"] = ListItem;
|
|
35
37
|
|
|
36
38
|
Object.defineProperty(exports, '__esModule', { value: true });
|
|
37
39
|
|
|
38
|
-
}))
|
|
40
|
+
}));
|
|
39
41
|
//# sourceMappingURL=tiptap-extension-list-item.umd.js.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"tiptap-extension-list-item.umd.js","sources":["../src/list-item.ts"],"sourcesContent":["import { Node, mergeAttributes } from '@tiptap/core'\n\nexport interface ListItemOptions {\n HTMLAttributes: Record<string, any>,\n}\n\nexport const ListItem = Node.create<ListItemOptions>({\n name: 'listItem',\n\n
|
|
1
|
+
{"version":3,"file":"tiptap-extension-list-item.umd.js","sources":["../src/list-item.ts"],"sourcesContent":["import { Node, mergeAttributes } from '@tiptap/core'\n\nexport interface ListItemOptions {\n HTMLAttributes: Record<string, any>,\n}\n\nexport const ListItem = Node.create<ListItemOptions>({\n name: 'listItem',\n\n addOptions() {\n return {\n HTMLAttributes: {},\n }\n },\n\n content: 'paragraph block*',\n\n defining: true,\n\n parseHTML() {\n return [\n {\n tag: 'li',\n },\n ]\n },\n\n renderHTML({ HTMLAttributes }) {\n return ['li', mergeAttributes(this.options.HTMLAttributes, HTMLAttributes), 0]\n },\n\n addKeyboardShortcuts() {\n return {\n Enter: () => this.editor.commands.splitListItem('listItem'),\n Tab: () => this.editor.commands.sinkListItem('listItem'),\n 'Shift-Tab': () => this.editor.commands.liftListItem('listItem'),\n }\n },\n})\n"],"names":["Node","mergeAttributes"],"mappings":";;;;;;QAMa,QAAQ,GAAGA,SAAI,CAAC,MAAM,CAAkB;MACnD,IAAI,EAAE,UAAU;MAEhB,UAAU;UACR,OAAO;cACL,cAAc,EAAE,EAAE;WACnB,CAAA;OACF;MAED,OAAO,EAAE,kBAAkB;MAE3B,QAAQ,EAAE,IAAI;MAEd,SAAS;UACP,OAAO;cACL;kBACE,GAAG,EAAE,IAAI;eACV;WACF,CAAA;OACF;MAED,UAAU,CAAC,EAAE,cAAc,EAAE;UAC3B,OAAO,CAAC,IAAI,EAAEC,oBAAe,CAAC,IAAI,CAAC,OAAO,CAAC,cAAc,EAAE,cAAc,CAAC,EAAE,CAAC,CAAC,CAAA;OAC/E;MAED,oBAAoB;UAClB,OAAO;cACL,KAAK,EAAE,MAAM,IAAI,CAAC,MAAM,CAAC,QAAQ,CAAC,aAAa,CAAC,UAAU,CAAC;cAC3D,GAAG,EAAE,MAAM,IAAI,CAAC,MAAM,CAAC,QAAQ,CAAC,YAAY,CAAC,UAAU,CAAC;cACxD,WAAW,EAAE,MAAM,IAAI,CAAC,MAAM,CAAC,QAAQ,CAAC,YAAY,CAAC,UAAU,CAAC;WACjE,CAAA;OACF;GACF;;;;;;;;;;;"}
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@tiptap/extension-list-item",
|
|
3
3
|
"description": "list item extension for tiptap",
|
|
4
|
-
"version": "2.0.0-beta.
|
|
4
|
+
"version": "2.0.0-beta.16",
|
|
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-list-item"
|
|
30
|
+
},
|
|
31
|
+
"gitHead": "31c23336d0e5d2be8b250530353531b8a241253c"
|
|
27
32
|
}
|
package/src/list-item.ts
CHANGED
|
@@ -7,8 +7,10 @@ export interface ListItemOptions {
|
|
|
7
7
|
export const ListItem = Node.create<ListItemOptions>({
|
|
8
8
|
name: 'listItem',
|
|
9
9
|
|
|
10
|
-
|
|
11
|
-
|
|
10
|
+
addOptions() {
|
|
11
|
+
return {
|
|
12
|
+
HTMLAttributes: {},
|
|
13
|
+
}
|
|
12
14
|
},
|
|
13
15
|
|
|
14
16
|
content: 'paragraph block*',
|
package/CHANGELOG.md
DELETED
|
@@ -1,212 +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.12](https://github.com/ueberdosis/tiptap/compare/@tiptap/extension-list-item@2.0.0-beta.11...@tiptap/extension-list-item@2.0.0-beta.12) (2021-05-13)
|
|
7
|
-
|
|
8
|
-
**Note:** Version bump only for package @tiptap/extension-list-item
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
# [2.0.0-beta.11](https://github.com/ueberdosis/tiptap/compare/@tiptap/extension-list-item@2.0.0-beta.10...@tiptap/extension-list-item@2.0.0-beta.11) (2021-05-07)
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
### Bug Fixes
|
|
18
|
-
|
|
19
|
-
* revert adding exports ([bc320d0](https://github.com/ueberdosis/tiptap/commit/bc320d0b4b80b0e37a7e47a56e0f6daec6e65d98))
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
# [2.0.0-beta.10](https://github.com/ueberdosis/tiptap/compare/@tiptap/extension-list-item@2.0.0-beta.9...@tiptap/extension-list-item@2.0.0-beta.10) (2021-05-06)
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
### Bug Fixes
|
|
29
|
-
|
|
30
|
-
* revert adding type: module ([f8d6475](https://github.com/ueberdosis/tiptap/commit/f8d6475e2151faea6f96baecdd6bd75880d50d2c))
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
# [2.0.0-beta.9](https://github.com/ueberdosis/tiptap/compare/@tiptap/extension-list-item@2.0.0-beta.8...@tiptap/extension-list-item@2.0.0-beta.9) (2021-05-06)
|
|
37
|
-
|
|
38
|
-
|
|
39
|
-
### Bug Fixes
|
|
40
|
-
|
|
41
|
-
* add exports to package.json ([1277fa4](https://github.com/ueberdosis/tiptap/commit/1277fa47151e9c039508cdb219bdd0ffe647f4ee))
|
|
42
|
-
|
|
43
|
-
|
|
44
|
-
|
|
45
|
-
|
|
46
|
-
|
|
47
|
-
# [2.0.0-beta.8](https://github.com/ueberdosis/tiptap/compare/@tiptap/extension-list-item@2.0.0-beta.7...@tiptap/extension-list-item@2.0.0-beta.8) (2021-05-06)
|
|
48
|
-
|
|
49
|
-
**Note:** Version bump only for package @tiptap/extension-list-item
|
|
50
|
-
|
|
51
|
-
|
|
52
|
-
|
|
53
|
-
|
|
54
|
-
|
|
55
|
-
# [2.0.0-beta.7](https://github.com/ueberdosis/tiptap/compare/@tiptap/extension-list-item@2.0.0-beta.6...@tiptap/extension-list-item@2.0.0-beta.7) (2021-05-05)
|
|
56
|
-
|
|
57
|
-
**Note:** Version bump only for package @tiptap/extension-list-item
|
|
58
|
-
|
|
59
|
-
|
|
60
|
-
|
|
61
|
-
|
|
62
|
-
|
|
63
|
-
# [2.0.0-beta.6](https://github.com/ueberdosis/tiptap/compare/@tiptap/extension-list-item@2.0.0-beta.5...@tiptap/extension-list-item@2.0.0-beta.6) (2021-04-23)
|
|
64
|
-
|
|
65
|
-
**Note:** Version bump only for package @tiptap/extension-list-item
|
|
66
|
-
|
|
67
|
-
|
|
68
|
-
|
|
69
|
-
|
|
70
|
-
|
|
71
|
-
# [2.0.0-beta.5](https://github.com/ueberdosis/tiptap/compare/@tiptap/extension-list-item@2.0.0-beta.4...@tiptap/extension-list-item@2.0.0-beta.5) (2021-04-22)
|
|
72
|
-
|
|
73
|
-
**Note:** Version bump only for package @tiptap/extension-list-item
|
|
74
|
-
|
|
75
|
-
|
|
76
|
-
|
|
77
|
-
|
|
78
|
-
|
|
79
|
-
# [2.0.0-beta.4](https://github.com/ueberdosis/tiptap/compare/@tiptap/extension-list-item@2.0.0-beta.3...@tiptap/extension-list-item@2.0.0-beta.4) (2021-04-21)
|
|
80
|
-
|
|
81
|
-
**Note:** Version bump only for package @tiptap/extension-list-item
|
|
82
|
-
|
|
83
|
-
|
|
84
|
-
|
|
85
|
-
|
|
86
|
-
|
|
87
|
-
# [2.0.0-beta.3](https://github.com/ueberdosis/tiptap/compare/@tiptap/extension-list-item@2.0.0-beta.2...@tiptap/extension-list-item@2.0.0-beta.3) (2021-04-16)
|
|
88
|
-
|
|
89
|
-
**Note:** Version bump only for package @tiptap/extension-list-item
|
|
90
|
-
|
|
91
|
-
|
|
92
|
-
|
|
93
|
-
|
|
94
|
-
|
|
95
|
-
# [2.0.0-beta.2](https://github.com/ueberdosis/tiptap/compare/@tiptap/extension-list-item@2.0.0-beta.1...@tiptap/extension-list-item@2.0.0-beta.2) (2021-04-15)
|
|
96
|
-
|
|
97
|
-
**Note:** Version bump only for package @tiptap/extension-list-item
|
|
98
|
-
|
|
99
|
-
|
|
100
|
-
|
|
101
|
-
|
|
102
|
-
|
|
103
|
-
# [2.0.0-beta.1](https://github.com/ueberdosis/tiptap/compare/@tiptap/extension-list-item@2.0.0-alpha.11...@tiptap/extension-list-item@2.0.0-beta.1) (2021-03-05)
|
|
104
|
-
|
|
105
|
-
**Note:** Version bump only for package @tiptap/extension-list-item
|
|
106
|
-
|
|
107
|
-
|
|
108
|
-
|
|
109
|
-
|
|
110
|
-
|
|
111
|
-
# [2.0.0-alpha.11](https://github.com/ueberdosis/tiptap/compare/@tiptap/extension-list-item@2.0.0-alpha.10...@tiptap/extension-list-item@2.0.0-alpha.11) (2021-02-16)
|
|
112
|
-
|
|
113
|
-
**Note:** Version bump only for package @tiptap/extension-list-item
|
|
114
|
-
|
|
115
|
-
|
|
116
|
-
|
|
117
|
-
|
|
118
|
-
|
|
119
|
-
# [2.0.0-alpha.10](https://github.com/ueberdosis/tiptap/compare/@tiptap/extension-list-item@2.0.0-alpha.9...@tiptap/extension-list-item@2.0.0-alpha.10) (2021-02-07)
|
|
120
|
-
|
|
121
|
-
**Note:** Version bump only for package @tiptap/extension-list-item
|
|
122
|
-
|
|
123
|
-
|
|
124
|
-
|
|
125
|
-
|
|
126
|
-
|
|
127
|
-
# [2.0.0-alpha.9](https://github.com/ueberdosis/tiptap/compare/@tiptap/extension-list-item@2.0.0-alpha.8...@tiptap/extension-list-item@2.0.0-alpha.9) (2021-02-05)
|
|
128
|
-
|
|
129
|
-
**Note:** Version bump only for package @tiptap/extension-list-item
|
|
130
|
-
|
|
131
|
-
|
|
132
|
-
|
|
133
|
-
|
|
134
|
-
|
|
135
|
-
# [2.0.0-alpha.8](https://github.com/ueberdosis/tiptap/compare/@tiptap/extension-list-item@2.0.0-alpha.7...@tiptap/extension-list-item@2.0.0-alpha.8) (2021-01-29)
|
|
136
|
-
|
|
137
|
-
**Note:** Version bump only for package @tiptap/extension-list-item
|
|
138
|
-
|
|
139
|
-
|
|
140
|
-
|
|
141
|
-
|
|
142
|
-
|
|
143
|
-
# [2.0.0-alpha.7](https://github.com/ueberdosis/tiptap/compare/@tiptap/extension-list-item@2.0.0-alpha.6...@tiptap/extension-list-item@2.0.0-alpha.7) (2021-01-29)
|
|
144
|
-
|
|
145
|
-
**Note:** Version bump only for package @tiptap/extension-list-item
|
|
146
|
-
|
|
147
|
-
|
|
148
|
-
|
|
149
|
-
|
|
150
|
-
|
|
151
|
-
# [2.0.0-alpha.6](https://github.com/ueberdosis/tiptap/compare/@tiptap/extension-list-item@2.0.0-alpha.5...@tiptap/extension-list-item@2.0.0-alpha.6) (2021-01-28)
|
|
152
|
-
|
|
153
|
-
**Note:** Version bump only for package @tiptap/extension-list-item
|
|
154
|
-
|
|
155
|
-
|
|
156
|
-
|
|
157
|
-
|
|
158
|
-
|
|
159
|
-
# [2.0.0-alpha.5](https://github.com/ueberdosis/tiptap/compare/@tiptap/extension-list-item@2.0.0-alpha.4...@tiptap/extension-list-item@2.0.0-alpha.5) (2020-12-18)
|
|
160
|
-
|
|
161
|
-
**Note:** Version bump only for package @tiptap/extension-list-item
|
|
162
|
-
|
|
163
|
-
|
|
164
|
-
|
|
165
|
-
|
|
166
|
-
|
|
167
|
-
# [2.0.0-alpha.4](https://github.com/ueberdosis/tiptap/compare/@tiptap/extension-list-item@2.0.0-alpha.3...@tiptap/extension-list-item@2.0.0-alpha.4) (2020-12-02)
|
|
168
|
-
|
|
169
|
-
**Note:** Version bump only for package @tiptap/extension-list-item
|
|
170
|
-
|
|
171
|
-
|
|
172
|
-
|
|
173
|
-
|
|
174
|
-
|
|
175
|
-
# [2.0.0-alpha.3](https://github.com/ueberdosis/tiptap/compare/@tiptap/extension-list-item@2.0.0-alpha.2...@tiptap/extension-list-item@2.0.0-alpha.3) (2020-11-19)
|
|
176
|
-
|
|
177
|
-
**Note:** Version bump only for package @tiptap/extension-list-item
|
|
178
|
-
|
|
179
|
-
|
|
180
|
-
|
|
181
|
-
|
|
182
|
-
|
|
183
|
-
# [2.0.0-alpha.2](https://github.com/ueberdosis/tiptap/compare/@tiptap/extension-list-item@2.0.0-alpha.1...@tiptap/extension-list-item@2.0.0-alpha.2) (2020-11-19)
|
|
184
|
-
|
|
185
|
-
**Note:** Version bump only for package @tiptap/extension-list-item
|
|
186
|
-
|
|
187
|
-
|
|
188
|
-
|
|
189
|
-
|
|
190
|
-
|
|
191
|
-
# [2.0.0-alpha.1](https://github.com/ueberdosis/tiptap/compare/@tiptap/extension-list-item@1.0.0-alpha.2...@tiptap/extension-list-item@2.0.0-alpha.1) (2020-11-18)
|
|
192
|
-
|
|
193
|
-
**Note:** Version bump only for package @tiptap/extension-list-item
|
|
194
|
-
|
|
195
|
-
|
|
196
|
-
|
|
197
|
-
|
|
198
|
-
|
|
199
|
-
# [1.0.0-alpha.2](https://github.com/ueberdosis/tiptap/compare/@tiptap/extension-list-item@1.0.0-alpha.1...@tiptap/extension-list-item@1.0.0-alpha.2) (2020-11-16)
|
|
200
|
-
|
|
201
|
-
**Note:** Version bump only for package @tiptap/extension-list-item
|
|
202
|
-
|
|
203
|
-
|
|
204
|
-
|
|
205
|
-
|
|
206
|
-
|
|
207
|
-
# 1.0.0-alpha.1 (2020-11-16)
|
|
208
|
-
|
|
209
|
-
|
|
210
|
-
### Reverts
|
|
211
|
-
|
|
212
|
-
* Revert "use global namespace" ([0c9ce26](https://github.com/ueberdosis/tiptap/commit/0c9ce26c02c07d88a757c01b0a9d7f9e2b0b7502))
|