rte-builder 2.0.2 → 2.0.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.
- package/dist/index.css +27 -0
- package/dist/index.css.map +1 -1
- package/dist/index.js +897 -365
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +955 -389
- package/dist/index.mjs.map +1 -1
- package/package.json +11 -20
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "rte-builder",
|
|
3
|
-
"version": "2.0.
|
|
3
|
+
"version": "2.0.4",
|
|
4
4
|
"description": "A universal Rich Text Editor for React supporting multiple backends (TipTap, Slate, Lexical) with a unified API, full toolbar customization, and zero licensing costs",
|
|
5
5
|
"main": "./dist/index.js",
|
|
6
6
|
"module": "./dist/index.mjs",
|
|
@@ -55,24 +55,7 @@
|
|
|
55
55
|
},
|
|
56
56
|
"peerDependencies": {
|
|
57
57
|
"react": "^18.0.0 || ^19.0.0",
|
|
58
|
-
"react-dom": "^18.0.0 || ^19.0.0"
|
|
59
|
-
"@tiptap/core": "^2.0.0",
|
|
60
|
-
"@tiptap/react": "^2.0.0",
|
|
61
|
-
"@tiptap/pm": "^2.0.0"
|
|
62
|
-
},
|
|
63
|
-
"peerDependenciesMeta": {
|
|
64
|
-
"lexical": {
|
|
65
|
-
"optional": true
|
|
66
|
-
},
|
|
67
|
-
"slate": {
|
|
68
|
-
"optional": true
|
|
69
|
-
},
|
|
70
|
-
"slate-react": {
|
|
71
|
-
"optional": true
|
|
72
|
-
},
|
|
73
|
-
"slate-history": {
|
|
74
|
-
"optional": true
|
|
75
|
-
}
|
|
58
|
+
"react-dom": "^18.0.0 || ^19.0.0"
|
|
76
59
|
},
|
|
77
60
|
"dependencies": {
|
|
78
61
|
"@lexical/code": "^0.39.0",
|
|
@@ -84,6 +67,7 @@
|
|
|
84
67
|
"@lexical/selection": "^0.39.0",
|
|
85
68
|
"@lexical/table": "^0.39.0",
|
|
86
69
|
"@lexical/utils": "^0.39.0",
|
|
70
|
+
"@tiptap/core": "^2.10.3",
|
|
87
71
|
"@tiptap/extension-blockquote": "^2.27.2",
|
|
88
72
|
"@tiptap/extension-bold": "^2.10.3",
|
|
89
73
|
"@tiptap/extension-bullet-list": "^2.10.3",
|
|
@@ -118,7 +102,14 @@
|
|
|
118
102
|
"@tiptap/extension-text-align": "^2.10.3",
|
|
119
103
|
"@tiptap/extension-text-style": "^2.10.3",
|
|
120
104
|
"@tiptap/extension-underline": "^2.10.3",
|
|
121
|
-
"
|
|
105
|
+
"@tiptap/pm": "^2.10.3",
|
|
106
|
+
"@tiptap/react": "^2.10.3",
|
|
107
|
+
"lexical": "^0.39.0",
|
|
108
|
+
"lowlight": "^3.1.0",
|
|
109
|
+
"lucide-react": "^0.563.0",
|
|
110
|
+
"slate": "^0.123.0",
|
|
111
|
+
"slate-history": "^0.113.1",
|
|
112
|
+
"slate-react": "^0.123.0"
|
|
122
113
|
},
|
|
123
114
|
"devDependencies": {
|
|
124
115
|
"@types/node": "^25.0.10",
|