@paroicms/tiptap-editor-plugin 1.2.3 → 1.2.4
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.
|
@@ -6,6 +6,10 @@ import Document from "@tiptap/extension-document";
|
|
|
6
6
|
import { BulletList, ListItem, OrderedList } from "@tiptap/extension-list";
|
|
7
7
|
import Subscript from "@tiptap/extension-subscript";
|
|
8
8
|
import Superscript from "@tiptap/extension-superscript";
|
|
9
|
+
import { TableCell } from "@tiptap/extension-table/cell";
|
|
10
|
+
import { TableHeader } from "@tiptap/extension-table/header";
|
|
11
|
+
import { TableRow } from "@tiptap/extension-table/row";
|
|
12
|
+
import { Table } from "@tiptap/extension-table/table";
|
|
9
13
|
import TextAlign from "@tiptap/extension-text-align";
|
|
10
14
|
import { TextStyle } from "@tiptap/extension-text-style";
|
|
11
15
|
import StarterKit from "@tiptap/starter-kit";
|
|
@@ -144,6 +148,10 @@ function renderTiptapToHtml(json, service, mediaMap, documentMap, options) {
|
|
|
144
148
|
OrderedList,
|
|
145
149
|
CustomListItem,
|
|
146
150
|
CustomLink,
|
|
151
|
+
Table,
|
|
152
|
+
TableRow,
|
|
153
|
+
TableHeader,
|
|
154
|
+
TableCell,
|
|
147
155
|
...(hasCodeInConf ? [Code, CodeBlockLowlight] : []),
|
|
148
156
|
TextAlign.configure({
|
|
149
157
|
types: ["heading", "paragraph"],
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@paroicms/tiptap-editor-plugin",
|
|
3
|
-
"version": "1.2.
|
|
3
|
+
"version": "1.2.4",
|
|
4
4
|
"description": "Tiptap editor plugin for ParoiCMS",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"paroicms",
|
|
@@ -27,17 +27,18 @@
|
|
|
27
27
|
"test:watch": "vitest"
|
|
28
28
|
},
|
|
29
29
|
"dependencies": {
|
|
30
|
-
"@paroicms/markdown-to-tiptap-json": "0.2.
|
|
31
|
-
"@paroicms/script-lib": "0.3.
|
|
32
|
-
"@tiptap/core": "3.
|
|
33
|
-
"@tiptap/extension-code": "3.
|
|
34
|
-
"@tiptap/extension-code-block-lowlight": "3.
|
|
35
|
-
"@tiptap/extension-subscript": "3.
|
|
36
|
-
"@tiptap/extension-superscript": "3.
|
|
37
|
-
"@tiptap/extension-
|
|
38
|
-
"@tiptap/extension-text-
|
|
39
|
-
"@tiptap/
|
|
40
|
-
"@tiptap/
|
|
30
|
+
"@paroicms/markdown-to-tiptap-json": "0.2.8",
|
|
31
|
+
"@paroicms/script-lib": "0.3.15",
|
|
32
|
+
"@tiptap/core": "3.16.0",
|
|
33
|
+
"@tiptap/extension-code": "3.16.0",
|
|
34
|
+
"@tiptap/extension-code-block-lowlight": "3.16.0",
|
|
35
|
+
"@tiptap/extension-subscript": "3.16.0",
|
|
36
|
+
"@tiptap/extension-superscript": "3.16.0",
|
|
37
|
+
"@tiptap/extension-table": "3.16.0",
|
|
38
|
+
"@tiptap/extension-text-align": "3.16.0",
|
|
39
|
+
"@tiptap/extension-text-style": "3.16.0",
|
|
40
|
+
"@tiptap/starter-kit": "3.16.0",
|
|
41
|
+
"@tiptap/static-renderer": "3.16.0",
|
|
41
42
|
"arktype": "~2.1.29"
|
|
42
43
|
},
|
|
43
44
|
"peerDependencies": {
|
|
@@ -45,12 +46,12 @@
|
|
|
45
46
|
"@paroicms/public-server-lib": "0"
|
|
46
47
|
},
|
|
47
48
|
"devDependencies": {
|
|
48
|
-
"@paroicms/public-anywhere-lib": "0.41.
|
|
49
|
-
"@paroicms/public-server-lib": "0.50.
|
|
49
|
+
"@paroicms/public-anywhere-lib": "0.41.3",
|
|
50
|
+
"@paroicms/public-server-lib": "0.50.4",
|
|
50
51
|
"@types/node": "~24.10.7",
|
|
51
52
|
"rimraf": "~6.1.2",
|
|
52
53
|
"typescript": "~5.9.3",
|
|
53
|
-
"vitest": "~4.0.
|
|
54
|
+
"vitest": "~4.0.17"
|
|
54
55
|
},
|
|
55
56
|
"type": "module",
|
|
56
57
|
"main": "backend/dist/index.js",
|