@lax-wp/editor 0.3.19 → 0.3.21
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/contexts/ToolbarContext.d.ts +1 -0
- package/dist/extensions/AnonymizedText.d.ts +0 -2
- package/dist/extensions/plugins/ViewModeDocumentPreview.d.ts +20 -0
- package/dist/extensions/viewMode/cleanDocumentJsonForView.d.ts +1 -0
- package/dist/index.es.js +5059 -4928
- package/dist/index.umd.js +66 -66
- package/package.json +7 -6
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@lax-wp/editor",
|
|
3
|
-
"version": "0.3.
|
|
3
|
+
"version": "0.3.21",
|
|
4
4
|
"description": "A modern, feature-rich editor built with React and TipTap",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"editor",
|
|
@@ -85,10 +85,10 @@
|
|
|
85
85
|
"lowlight": "^3.3.0",
|
|
86
86
|
"react-custom-scrollbars-2": "^4.5.0",
|
|
87
87
|
"react-icons": "^5.5.0",
|
|
88
|
+
"react-keyshorts": "^2.0.2",
|
|
88
89
|
"react-select": "^5.10.2"
|
|
89
90
|
},
|
|
90
91
|
"peerDependencies": {
|
|
91
|
-
"yjs": "^13.5.38",
|
|
92
92
|
"@lax-wp/design-system": "*",
|
|
93
93
|
"@monaco-editor/react": ">=4.0.0",
|
|
94
94
|
"antd": "^5.27.0",
|
|
@@ -98,7 +98,8 @@
|
|
|
98
98
|
"react": "^18.2.0 || ^19.0.0",
|
|
99
99
|
"react-dom": "^18.2.0 || ^19.0.0",
|
|
100
100
|
"react-markdown": ">=8.0.0",
|
|
101
|
-
"remark-gfm": ">=3.0.0"
|
|
101
|
+
"remark-gfm": ">=3.0.0",
|
|
102
|
+
"yjs": "^13.5.38"
|
|
102
103
|
},
|
|
103
104
|
"peerDependenciesMeta": {
|
|
104
105
|
"yjs": {
|
|
@@ -121,9 +122,8 @@
|
|
|
121
122
|
}
|
|
122
123
|
},
|
|
123
124
|
"devDependencies": {
|
|
124
|
-
"yjs": "^13.6.27",
|
|
125
125
|
"@eslint/js": "^9.30.1",
|
|
126
|
-
"@lax-wp/design-system": "^0.11.
|
|
126
|
+
"@lax-wp/design-system": "^0.11.16",
|
|
127
127
|
"@monaco-editor/react": "^4.6.0",
|
|
128
128
|
"@types/react": "^18.2.0",
|
|
129
129
|
"@types/react-dom": "^18.2.0",
|
|
@@ -150,6 +150,7 @@
|
|
|
150
150
|
"typescript-eslint": "^8.35.1",
|
|
151
151
|
"vite": "^7.0.4",
|
|
152
152
|
"vite-plugin-svg-icons": "^2.0.1",
|
|
153
|
-
"vitest": "^3.2.4"
|
|
153
|
+
"vitest": "^3.2.4",
|
|
154
|
+
"yjs": "^13.6.27"
|
|
154
155
|
}
|
|
155
156
|
}
|