rj-editor 1.1.8 → 1.2.0
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 +36 -5
- package/dist/components/RJTextEditor.d.ts +2 -1
- package/dist/components/global/spin-indicator/SpinIndicator.d.ts +6 -0
- package/dist/components/rj-text-editor/ImageUploadContext.d.ts +8 -0
- package/dist/components/rj-text-editor/RJEditorImageUploadContext.d.ts +4 -0
- package/dist/components/rj-text-editor/RJTextEditor.types.d.ts +1 -0
- package/dist/components/rj-text-editor/createInitialConfig.d.ts +1 -1
- package/dist/index.d.ts +1 -0
- package/dist/rj-editor.js +4257 -1784
- package/dist/rj-editor.umd.cjs +56 -1
- package/dist/types/RJEditorTranslations.d.ts +1 -0
- package/package.json +3 -3
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "rj-editor",
|
|
3
|
-
"version": "1.
|
|
3
|
+
"version": "1.2.0",
|
|
4
4
|
"description": "React rich text editor: toolbar tabs, table, image, link, YouTube, i18n, theme va Ant Design Form integratsiyasi.",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"license": "MIT",
|
|
@@ -52,10 +52,10 @@
|
|
|
52
52
|
"pack:check": "npm run build && npm_config_cache=/private/tmp/rj-editor-npm-cache npm pack --dry-run",
|
|
53
53
|
"prepublishOnly": "npm run lint && npm run build",
|
|
54
54
|
"release:check": "npm run lint && npm run pack:check",
|
|
55
|
-
"preview": "vite preview"
|
|
55
|
+
"preview": "vite preview --config vite.demo.config.ts"
|
|
56
56
|
},
|
|
57
57
|
"dependencies": {
|
|
58
|
-
"@lexical/code": "^0.44.0",
|
|
58
|
+
"@lexical/code-core": "^0.44.0",
|
|
59
59
|
"@lexical/history": "^0.44.0",
|
|
60
60
|
"@lexical/html": "^0.44.0",
|
|
61
61
|
"@lexical/link": "^0.44.0",
|