slate-vue3 0.0.8 → 0.0.11
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 +5 -5
- package/package.json +9 -21
package/README.md
CHANGED
|
@@ -1,9 +1,7 @@
|
|
|
1
|
-
[
|
|
1
|
+

|
|
2
2
|
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
</p>
|
|
6
|
-
<br/>
|
|
3
|
+
|
|
4
|
+
# slate-[react](https://react.dev/) library implemented with [vue3](https://vuejs.org/)
|
|
7
5
|
|
|
8
6
|
# Why use it?
|
|
9
7
|
|
|
@@ -78,6 +76,8 @@ Get the current editor selection from the React context.
|
|
|
78
76
|
Implementation of slate on dom, update synchronously with slate-dom
|
|
79
77
|
- [slate-vue](https://github.com/Guan-Erjia/slate-vue3/tree/master/packages/slate-vue)
|
|
80
78
|
Vue components for rendering slate editors
|
|
79
|
+
- [slate-history](https://github.com/Guan-Erjia/slate-vue3/tree/master/packages/slate-history)
|
|
80
|
+
Provide undo redo functions, replace Weakmap to UnProxyWeakmap
|
|
81
81
|
- [share-tools](https://github.com/Guan-Erjia/slate-vue3/tree/master/packages/share-tools)
|
|
82
82
|
for special processing of proxy type data, obtain the raw pointer, isPlainObject declare
|
|
83
83
|
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "slate-vue3",
|
|
3
|
-
"version": "0.0.
|
|
3
|
+
"version": "0.0.11",
|
|
4
4
|
"type": "module",
|
|
5
5
|
"main": "dist/index.js",
|
|
6
6
|
"module": "dist/index.js",
|
|
@@ -18,8 +18,7 @@
|
|
|
18
18
|
"direction": "^2.0.1",
|
|
19
19
|
"is-hotkey": "^0.2.0",
|
|
20
20
|
"lodash-es": "^4.17.21",
|
|
21
|
-
"scroll-into-view-if-needed": "^3.1.0"
|
|
22
|
-
"slate-history": "^0.110.3"
|
|
21
|
+
"scroll-into-view-if-needed": "^3.1.0"
|
|
23
22
|
},
|
|
24
23
|
"peerDependencies": {
|
|
25
24
|
"vue": "^3.5.13"
|
|
@@ -44,27 +43,16 @@
|
|
|
44
43
|
"vue-router": "^4.5.0"
|
|
45
44
|
},
|
|
46
45
|
"keywords": [
|
|
47
|
-
"
|
|
48
|
-
"
|
|
49
|
-
"
|
|
50
|
-
"document",
|
|
51
|
-
"edit",
|
|
46
|
+
"slate-vue3",
|
|
47
|
+
"slate-vue",
|
|
48
|
+
"slate",
|
|
52
49
|
"editor",
|
|
50
|
+
"contenteditable",
|
|
51
|
+
"richtext",
|
|
52
|
+
"rich",
|
|
53
53
|
"editable",
|
|
54
|
-
"html",
|
|
55
|
-
"immutable",
|
|
56
54
|
"markdown",
|
|
57
|
-
"
|
|
58
|
-
"paper",
|
|
59
|
-
"react",
|
|
60
|
-
"rich",
|
|
61
|
-
"richtext",
|
|
62
|
-
"richtext",
|
|
63
|
-
"slate",
|
|
64
|
-
"slate-vue3",
|
|
65
|
-
"text",
|
|
66
|
-
"wysiwyg",
|
|
67
|
-
"wysiwym"
|
|
55
|
+
"html"
|
|
68
56
|
],
|
|
69
57
|
"repository": {
|
|
70
58
|
"type": "git",
|