@tiptap/extension-table-header 2.0.0-beta.17 → 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-table-header/src/table-header.d.ts +1 -1
- package/dist/tiptap-extension-table-header.cjs.js +5 -3
- package/dist/tiptap-extension-table-header.cjs.js.map +1 -1
- package/dist/tiptap-extension-table-header.esm.js +4 -2
- package/dist/tiptap-extension-table-header.esm.js.map +1 -1
- package/dist/tiptap-extension-table-header.umd.js +8 -6
- package/dist/tiptap-extension-table-header.umd.js.map +1 -1
- package/package.json +2 -2
- package/src/table-header.ts +4 -2
- package/CHANGELOG.md +0 -196
|
@@ -6,8 +6,10 @@ var core = require('@tiptap/core');
|
|
|
6
6
|
|
|
7
7
|
const TableHeader = core.Node.create({
|
|
8
8
|
name: 'tableHeader',
|
|
9
|
-
|
|
10
|
-
|
|
9
|
+
addOptions() {
|
|
10
|
+
return {
|
|
11
|
+
HTMLAttributes: {},
|
|
12
|
+
};
|
|
11
13
|
},
|
|
12
14
|
content: 'block+',
|
|
13
15
|
addAttributes() {
|
|
@@ -43,5 +45,5 @@ const TableHeader = core.Node.create({
|
|
|
43
45
|
});
|
|
44
46
|
|
|
45
47
|
exports.TableHeader = TableHeader;
|
|
46
|
-
exports[
|
|
48
|
+
exports["default"] = TableHeader;
|
|
47
49
|
//# sourceMappingURL=tiptap-extension-table-header.cjs.js.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"tiptap-extension-table-header.cjs.js","sources":["../src/table-header.ts"],"sourcesContent":["import { Node, mergeAttributes } from '@tiptap/core'\n\nexport interface TableHeaderOptions {\n HTMLAttributes: Record<string, any>,\n}\nexport const TableHeader = Node.create<TableHeaderOptions>({\n name: 'tableHeader',\n\n
|
|
1
|
+
{"version":3,"file":"tiptap-extension-table-header.cjs.js","sources":["../src/table-header.ts"],"sourcesContent":["import { Node, mergeAttributes } from '@tiptap/core'\n\nexport interface TableHeaderOptions {\n HTMLAttributes: Record<string, any>,\n}\nexport const TableHeader = Node.create<TableHeaderOptions>({\n name: 'tableHeader',\n\n addOptions() {\n return {\n HTMLAttributes: {},\n }\n },\n\n content: 'block+',\n\n addAttributes() {\n return {\n colspan: {\n default: 1,\n },\n rowspan: {\n default: 1,\n },\n colwidth: {\n default: null,\n parseHTML: element => {\n const colwidth = element.getAttribute('colwidth')\n const value = colwidth\n ? [parseInt(colwidth, 10)]\n : null\n\n return value\n },\n },\n }\n },\n\n tableRole: 'header_cell',\n\n isolating: true,\n\n parseHTML() {\n return [\n { tag: 'th' },\n ]\n },\n\n renderHTML({ HTMLAttributes }) {\n return ['th', mergeAttributes(this.options.HTMLAttributes, HTMLAttributes), 0]\n },\n\n})\n"],"names":["Node","mergeAttributes"],"mappings":";;;;;;MAKa,WAAW,GAAGA,SAAI,CAAC,MAAM,CAAqB;IACzD,IAAI,EAAE,aAAa;IAEnB,UAAU;QACR,OAAO;YACL,cAAc,EAAE,EAAE;SACnB,CAAA;KACF;IAED,OAAO,EAAE,QAAQ;IAEjB,aAAa;QACX,OAAO;YACL,OAAO,EAAE;gBACP,OAAO,EAAE,CAAC;aACX;YACD,OAAO,EAAE;gBACP,OAAO,EAAE,CAAC;aACX;YACD,QAAQ,EAAE;gBACR,OAAO,EAAE,IAAI;gBACb,SAAS,EAAE,OAAO;oBAChB,MAAM,QAAQ,GAAG,OAAO,CAAC,YAAY,CAAC,UAAU,CAAC,CAAA;oBACjD,MAAM,KAAK,GAAG,QAAQ;0BAClB,CAAC,QAAQ,CAAC,QAAQ,EAAE,EAAE,CAAC,CAAC;0BACxB,IAAI,CAAA;oBAER,OAAO,KAAK,CAAA;iBACb;aACF;SACF,CAAA;KACF;IAED,SAAS,EAAE,aAAa;IAExB,SAAS,EAAE,IAAI;IAEf,SAAS;QACP,OAAO;YACL,EAAE,GAAG,EAAE,IAAI,EAAE;SACd,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;CAEF;;;;;"}
|
|
@@ -2,8 +2,10 @@ import { Node, mergeAttributes } from '@tiptap/core';
|
|
|
2
2
|
|
|
3
3
|
const TableHeader = Node.create({
|
|
4
4
|
name: 'tableHeader',
|
|
5
|
-
|
|
6
|
-
|
|
5
|
+
addOptions() {
|
|
6
|
+
return {
|
|
7
|
+
HTMLAttributes: {},
|
|
8
|
+
};
|
|
7
9
|
},
|
|
8
10
|
content: 'block+',
|
|
9
11
|
addAttributes() {
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"tiptap-extension-table-header.esm.js","sources":["../src/table-header.ts"],"sourcesContent":["import { Node, mergeAttributes } from '@tiptap/core'\n\nexport interface TableHeaderOptions {\n HTMLAttributes: Record<string, any>,\n}\nexport const TableHeader = Node.create<TableHeaderOptions>({\n name: 'tableHeader',\n\n
|
|
1
|
+
{"version":3,"file":"tiptap-extension-table-header.esm.js","sources":["../src/table-header.ts"],"sourcesContent":["import { Node, mergeAttributes } from '@tiptap/core'\n\nexport interface TableHeaderOptions {\n HTMLAttributes: Record<string, any>,\n}\nexport const TableHeader = Node.create<TableHeaderOptions>({\n name: 'tableHeader',\n\n addOptions() {\n return {\n HTMLAttributes: {},\n }\n },\n\n content: 'block+',\n\n addAttributes() {\n return {\n colspan: {\n default: 1,\n },\n rowspan: {\n default: 1,\n },\n colwidth: {\n default: null,\n parseHTML: element => {\n const colwidth = element.getAttribute('colwidth')\n const value = colwidth\n ? [parseInt(colwidth, 10)]\n : null\n\n return value\n },\n },\n }\n },\n\n tableRole: 'header_cell',\n\n isolating: true,\n\n parseHTML() {\n return [\n { tag: 'th' },\n ]\n },\n\n renderHTML({ HTMLAttributes }) {\n return ['th', mergeAttributes(this.options.HTMLAttributes, HTMLAttributes), 0]\n },\n\n})\n"],"names":[],"mappings":";;MAKa,WAAW,GAAG,IAAI,CAAC,MAAM,CAAqB;IACzD,IAAI,EAAE,aAAa;IAEnB,UAAU;QACR,OAAO;YACL,cAAc,EAAE,EAAE;SACnB,CAAA;KACF;IAED,OAAO,EAAE,QAAQ;IAEjB,aAAa;QACX,OAAO;YACL,OAAO,EAAE;gBACP,OAAO,EAAE,CAAC;aACX;YACD,OAAO,EAAE;gBACP,OAAO,EAAE,CAAC;aACX;YACD,QAAQ,EAAE;gBACR,OAAO,EAAE,IAAI;gBACb,SAAS,EAAE,OAAO;oBAChB,MAAM,QAAQ,GAAG,OAAO,CAAC,YAAY,CAAC,UAAU,CAAC,CAAA;oBACjD,MAAM,KAAK,GAAG,QAAQ;0BAClB,CAAC,QAAQ,CAAC,QAAQ,EAAE,EAAE,CAAC,CAAC;0BACxB,IAAI,CAAA;oBAER,OAAO,KAAK,CAAA;iBACb;aACF;SACF,CAAA;KACF;IAED,SAAS,EAAE,aAAa;IAExB,SAAS,EAAE,IAAI;IAEf,SAAS;QACP,OAAO;YACL,EAAE,GAAG,EAAE,IAAI,EAAE;SACd,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;CAEF;;;;"}
|
|
@@ -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-table-header"] = {}, global.core));
|
|
5
|
+
})(this, (function (exports, core) { 'use strict';
|
|
6
6
|
|
|
7
7
|
const TableHeader = core.Node.create({
|
|
8
8
|
name: 'tableHeader',
|
|
9
|
-
|
|
10
|
-
|
|
9
|
+
addOptions() {
|
|
10
|
+
return {
|
|
11
|
+
HTMLAttributes: {},
|
|
12
|
+
};
|
|
11
13
|
},
|
|
12
14
|
content: 'block+',
|
|
13
15
|
addAttributes() {
|
|
@@ -43,9 +45,9 @@
|
|
|
43
45
|
});
|
|
44
46
|
|
|
45
47
|
exports.TableHeader = TableHeader;
|
|
46
|
-
exports[
|
|
48
|
+
exports["default"] = TableHeader;
|
|
47
49
|
|
|
48
50
|
Object.defineProperty(exports, '__esModule', { value: true });
|
|
49
51
|
|
|
50
|
-
}))
|
|
52
|
+
}));
|
|
51
53
|
//# sourceMappingURL=tiptap-extension-table-header.umd.js.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"tiptap-extension-table-header.umd.js","sources":["../src/table-header.ts"],"sourcesContent":["import { Node, mergeAttributes } from '@tiptap/core'\n\nexport interface TableHeaderOptions {\n HTMLAttributes: Record<string, any>,\n}\nexport const TableHeader = Node.create<TableHeaderOptions>({\n name: 'tableHeader',\n\n
|
|
1
|
+
{"version":3,"file":"tiptap-extension-table-header.umd.js","sources":["../src/table-header.ts"],"sourcesContent":["import { Node, mergeAttributes } from '@tiptap/core'\n\nexport interface TableHeaderOptions {\n HTMLAttributes: Record<string, any>,\n}\nexport const TableHeader = Node.create<TableHeaderOptions>({\n name: 'tableHeader',\n\n addOptions() {\n return {\n HTMLAttributes: {},\n }\n },\n\n content: 'block+',\n\n addAttributes() {\n return {\n colspan: {\n default: 1,\n },\n rowspan: {\n default: 1,\n },\n colwidth: {\n default: null,\n parseHTML: element => {\n const colwidth = element.getAttribute('colwidth')\n const value = colwidth\n ? [parseInt(colwidth, 10)]\n : null\n\n return value\n },\n },\n }\n },\n\n tableRole: 'header_cell',\n\n isolating: true,\n\n parseHTML() {\n return [\n { tag: 'th' },\n ]\n },\n\n renderHTML({ HTMLAttributes }) {\n return ['th', mergeAttributes(this.options.HTMLAttributes, HTMLAttributes), 0]\n },\n\n})\n"],"names":["Node","mergeAttributes"],"mappings":";;;;;;QAKa,WAAW,GAAGA,SAAI,CAAC,MAAM,CAAqB;MACzD,IAAI,EAAE,aAAa;MAEnB,UAAU;UACR,OAAO;cACL,cAAc,EAAE,EAAE;WACnB,CAAA;OACF;MAED,OAAO,EAAE,QAAQ;MAEjB,aAAa;UACX,OAAO;cACL,OAAO,EAAE;kBACP,OAAO,EAAE,CAAC;eACX;cACD,OAAO,EAAE;kBACP,OAAO,EAAE,CAAC;eACX;cACD,QAAQ,EAAE;kBACR,OAAO,EAAE,IAAI;kBACb,SAAS,EAAE,OAAO;sBAChB,MAAM,QAAQ,GAAG,OAAO,CAAC,YAAY,CAAC,UAAU,CAAC,CAAA;sBACjD,MAAM,KAAK,GAAG,QAAQ;4BAClB,CAAC,QAAQ,CAAC,QAAQ,EAAE,EAAE,CAAC,CAAC;4BACxB,IAAI,CAAA;sBAER,OAAO,KAAK,CAAA;mBACb;eACF;WACF,CAAA;OACF;MAED,SAAS,EAAE,aAAa;MAExB,SAAS,EAAE,IAAI;MAEf,SAAS;UACP,OAAO;cACL,EAAE,GAAG,EAAE,IAAI,EAAE;WACd,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;GAEF;;;;;;;;;;;"}
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@tiptap/extension-table-header",
|
|
3
3
|
"description": "table cell 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",
|
|
@@ -28,5 +28,5 @@
|
|
|
28
28
|
"url": "https://github.com/ueberdosis/tiptap",
|
|
29
29
|
"directory": "packages/extension-table-header"
|
|
30
30
|
},
|
|
31
|
-
"gitHead": "
|
|
31
|
+
"gitHead": "642627ec3635a1d8fa851887d75bee5f193ec63b"
|
|
32
32
|
}
|
package/src/table-header.ts
CHANGED
|
@@ -6,8 +6,10 @@ export interface TableHeaderOptions {
|
|
|
6
6
|
export const TableHeader = Node.create<TableHeaderOptions>({
|
|
7
7
|
name: 'tableHeader',
|
|
8
8
|
|
|
9
|
-
|
|
10
|
-
|
|
9
|
+
addOptions() {
|
|
10
|
+
return {
|
|
11
|
+
HTMLAttributes: {},
|
|
12
|
+
}
|
|
11
13
|
},
|
|
12
14
|
|
|
13
15
|
content: 'block+',
|
package/CHANGELOG.md
DELETED
|
@@ -1,196 +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.17](https://github.com/ueberdosis/tiptap/compare/@tiptap/extension-table-header@2.0.0-beta.16...@tiptap/extension-table-header@2.0.0-beta.17) (2021-09-08)
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
### Features
|
|
10
|
-
|
|
11
|
-
* parseHTML for attributes should return the value instead of an object now, fix [#1863](https://github.com/ueberdosis/tiptap/issues/1863) ([8a3b47a](https://github.com/ueberdosis/tiptap/commit/8a3b47a529d28b28b50d634c6ff69b8e5aad3080))
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
# [2.0.0-beta.16](https://github.com/ueberdosis/tiptap/compare/@tiptap/extension-table-header@2.0.0-beta.15...@tiptap/extension-table-header@2.0.0-beta.16) (2021-07-26)
|
|
18
|
-
|
|
19
|
-
**Note:** Version bump only for package @tiptap/extension-table-header
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
# [2.0.0-beta.15](https://github.com/ueberdosis/tiptap/compare/@tiptap/extension-table-header@2.0.0-beta.14...@tiptap/extension-table-header@2.0.0-beta.15) (2021-05-18)
|
|
26
|
-
|
|
27
|
-
**Note:** Version bump only for package @tiptap/extension-table-header
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
# [2.0.0-beta.14](https://github.com/ueberdosis/tiptap/compare/@tiptap/extension-table-header@2.0.0-beta.13...@tiptap/extension-table-header@2.0.0-beta.14) (2021-05-13)
|
|
34
|
-
|
|
35
|
-
**Note:** Version bump only for package @tiptap/extension-table-header
|
|
36
|
-
|
|
37
|
-
|
|
38
|
-
|
|
39
|
-
|
|
40
|
-
|
|
41
|
-
# [2.0.0-beta.13](https://github.com/ueberdosis/tiptap/compare/@tiptap/extension-table-header@2.0.0-beta.12...@tiptap/extension-table-header@2.0.0-beta.13) (2021-05-07)
|
|
42
|
-
|
|
43
|
-
|
|
44
|
-
### Bug Fixes
|
|
45
|
-
|
|
46
|
-
* revert adding exports ([bc320d0](https://github.com/ueberdosis/tiptap/commit/bc320d0b4b80b0e37a7e47a56e0f6daec6e65d98))
|
|
47
|
-
|
|
48
|
-
|
|
49
|
-
|
|
50
|
-
|
|
51
|
-
|
|
52
|
-
# [2.0.0-beta.12](https://github.com/ueberdosis/tiptap/compare/@tiptap/extension-table-header@2.0.0-beta.11...@tiptap/extension-table-header@2.0.0-beta.12) (2021-05-06)
|
|
53
|
-
|
|
54
|
-
|
|
55
|
-
### Bug Fixes
|
|
56
|
-
|
|
57
|
-
* revert adding type: module ([f8d6475](https://github.com/ueberdosis/tiptap/commit/f8d6475e2151faea6f96baecdd6bd75880d50d2c))
|
|
58
|
-
|
|
59
|
-
|
|
60
|
-
|
|
61
|
-
|
|
62
|
-
|
|
63
|
-
# [2.0.0-beta.11](https://github.com/ueberdosis/tiptap/compare/@tiptap/extension-table-header@2.0.0-beta.10...@tiptap/extension-table-header@2.0.0-beta.11) (2021-05-06)
|
|
64
|
-
|
|
65
|
-
|
|
66
|
-
### Bug Fixes
|
|
67
|
-
|
|
68
|
-
* add exports to package.json ([1277fa4](https://github.com/ueberdosis/tiptap/commit/1277fa47151e9c039508cdb219bdd0ffe647f4ee))
|
|
69
|
-
|
|
70
|
-
|
|
71
|
-
|
|
72
|
-
|
|
73
|
-
|
|
74
|
-
# [2.0.0-beta.10](https://github.com/ueberdosis/tiptap/compare/@tiptap/extension-table-header@2.0.0-beta.9...@tiptap/extension-table-header@2.0.0-beta.10) (2021-05-06)
|
|
75
|
-
|
|
76
|
-
**Note:** Version bump only for package @tiptap/extension-table-header
|
|
77
|
-
|
|
78
|
-
|
|
79
|
-
|
|
80
|
-
|
|
81
|
-
|
|
82
|
-
# [2.0.0-beta.9](https://github.com/ueberdosis/tiptap/compare/@tiptap/extension-table-header@2.0.0-beta.8...@tiptap/extension-table-header@2.0.0-beta.9) (2021-05-05)
|
|
83
|
-
|
|
84
|
-
**Note:** Version bump only for package @tiptap/extension-table-header
|
|
85
|
-
|
|
86
|
-
|
|
87
|
-
|
|
88
|
-
|
|
89
|
-
|
|
90
|
-
# [2.0.0-beta.8](https://github.com/ueberdosis/tiptap/compare/@tiptap/extension-table-header@2.0.0-beta.7...@tiptap/extension-table-header@2.0.0-beta.8) (2021-04-23)
|
|
91
|
-
|
|
92
|
-
**Note:** Version bump only for package @tiptap/extension-table-header
|
|
93
|
-
|
|
94
|
-
|
|
95
|
-
|
|
96
|
-
|
|
97
|
-
|
|
98
|
-
# [2.0.0-beta.7](https://github.com/ueberdosis/tiptap/compare/@tiptap/extension-table-header@2.0.0-beta.6...@tiptap/extension-table-header@2.0.0-beta.7) (2021-04-22)
|
|
99
|
-
|
|
100
|
-
**Note:** Version bump only for package @tiptap/extension-table-header
|
|
101
|
-
|
|
102
|
-
|
|
103
|
-
|
|
104
|
-
|
|
105
|
-
|
|
106
|
-
# [2.0.0-beta.6](https://github.com/ueberdosis/tiptap/compare/@tiptap/extension-table-header@2.0.0-beta.5...@tiptap/extension-table-header@2.0.0-beta.6) (2021-04-21)
|
|
107
|
-
|
|
108
|
-
**Note:** Version bump only for package @tiptap/extension-table-header
|
|
109
|
-
|
|
110
|
-
|
|
111
|
-
|
|
112
|
-
|
|
113
|
-
|
|
114
|
-
# [2.0.0-beta.5](https://github.com/ueberdosis/tiptap/compare/@tiptap/extension-table-header@2.0.0-beta.4...@tiptap/extension-table-header@2.0.0-beta.5) (2021-04-16)
|
|
115
|
-
|
|
116
|
-
**Note:** Version bump only for package @tiptap/extension-table-header
|
|
117
|
-
|
|
118
|
-
|
|
119
|
-
|
|
120
|
-
|
|
121
|
-
|
|
122
|
-
# [2.0.0-beta.4](https://github.com/ueberdosis/tiptap/compare/@tiptap/extension-table-header@2.0.0-beta.3...@tiptap/extension-table-header@2.0.0-beta.4) (2021-04-15)
|
|
123
|
-
|
|
124
|
-
**Note:** Version bump only for package @tiptap/extension-table-header
|
|
125
|
-
|
|
126
|
-
|
|
127
|
-
|
|
128
|
-
|
|
129
|
-
|
|
130
|
-
# [2.0.0-beta.3](https://github.com/ueberdosis/tiptap/compare/@tiptap/extension-table-header@2.0.0-beta.2...@tiptap/extension-table-header@2.0.0-beta.3) (2021-03-31)
|
|
131
|
-
|
|
132
|
-
**Note:** Version bump only for package @tiptap/extension-table-header
|
|
133
|
-
|
|
134
|
-
|
|
135
|
-
|
|
136
|
-
|
|
137
|
-
|
|
138
|
-
# [2.0.0-beta.2](https://github.com/ueberdosis/tiptap/compare/@tiptap/extension-table-header@2.0.0-beta.1...@tiptap/extension-table-header@2.0.0-beta.2) (2021-03-28)
|
|
139
|
-
|
|
140
|
-
**Note:** Version bump only for package @tiptap/extension-table-header
|
|
141
|
-
|
|
142
|
-
|
|
143
|
-
|
|
144
|
-
|
|
145
|
-
|
|
146
|
-
# [2.0.0-beta.1](https://github.com/ueberdosis/tiptap/compare/@tiptap/extension-table-header@2.0.0-alpha.11...@tiptap/extension-table-header@2.0.0-beta.1) (2021-03-05)
|
|
147
|
-
|
|
148
|
-
**Note:** Version bump only for package @tiptap/extension-table-header
|
|
149
|
-
|
|
150
|
-
|
|
151
|
-
|
|
152
|
-
|
|
153
|
-
|
|
154
|
-
# [2.0.0-alpha.11](https://github.com/ueberdosis/tiptap/compare/@tiptap/extension-table-header@2.0.0-alpha.10...@tiptap/extension-table-header@2.0.0-alpha.11) (2021-02-16)
|
|
155
|
-
|
|
156
|
-
**Note:** Version bump only for package @tiptap/extension-table-header
|
|
157
|
-
|
|
158
|
-
|
|
159
|
-
|
|
160
|
-
|
|
161
|
-
|
|
162
|
-
# [2.0.0-alpha.10](https://github.com/ueberdosis/tiptap/compare/@tiptap/extension-table-header@2.0.0-alpha.9...@tiptap/extension-table-header@2.0.0-alpha.10) (2021-02-07)
|
|
163
|
-
|
|
164
|
-
**Note:** Version bump only for package @tiptap/extension-table-header
|
|
165
|
-
|
|
166
|
-
|
|
167
|
-
|
|
168
|
-
|
|
169
|
-
|
|
170
|
-
# [2.0.0-alpha.9](https://github.com/ueberdosis/tiptap/compare/@tiptap/extension-table-header@2.0.0-alpha.8...@tiptap/extension-table-header@2.0.0-alpha.9) (2021-02-05)
|
|
171
|
-
|
|
172
|
-
**Note:** Version bump only for package @tiptap/extension-table-header
|
|
173
|
-
|
|
174
|
-
|
|
175
|
-
|
|
176
|
-
|
|
177
|
-
|
|
178
|
-
# [2.0.0-alpha.8](https://github.com/ueberdosis/tiptap/compare/@tiptap/extension-table-header@2.0.0-alpha.7...@tiptap/extension-table-header@2.0.0-alpha.8) (2021-01-29)
|
|
179
|
-
|
|
180
|
-
**Note:** Version bump only for package @tiptap/extension-table-header
|
|
181
|
-
|
|
182
|
-
|
|
183
|
-
|
|
184
|
-
|
|
185
|
-
|
|
186
|
-
# [2.0.0-alpha.7](https://github.com/ueberdosis/tiptap/compare/@tiptap/extension-table-header@2.0.0-alpha.6...@tiptap/extension-table-header@2.0.0-alpha.7) (2021-01-29)
|
|
187
|
-
|
|
188
|
-
**Note:** Version bump only for package @tiptap/extension-table-header
|
|
189
|
-
|
|
190
|
-
|
|
191
|
-
|
|
192
|
-
|
|
193
|
-
|
|
194
|
-
# 2.0.0-alpha.6 (2021-01-28)
|
|
195
|
-
|
|
196
|
-
**Note:** Version bump only for package @tiptap/extension-table-header
|