@textbus/adapter-viewfly 4.0.0-alpha.1 → 4.0.0-alpha.3
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/bundles/index.esm.js +1 -1
- package/bundles/index.js +1 -1
- package/package.json +3 -3
package/bundles/index.esm.js
CHANGED
@@ -79,7 +79,7 @@ class Adapter extends DomAdapter {
|
|
79
79
|
return a;
|
80
80
|
}, {})));
|
81
81
|
if (vNode.classes.size) {
|
82
|
-
props.
|
82
|
+
props.class = Array.from(vNode.classes).join(' ');
|
83
83
|
}
|
84
84
|
if (vNode.styles) {
|
85
85
|
props.style = Array.from(vNode.styles).reduce((a, b) => {
|
package/bundles/index.js
CHANGED
@@ -81,7 +81,7 @@ class Adapter extends platformBrowser.DomAdapter {
|
|
81
81
|
return a;
|
82
82
|
}, {})));
|
83
83
|
if (vNode.classes.size) {
|
84
|
-
props.
|
84
|
+
props.class = Array.from(vNode.classes).join(' ');
|
85
85
|
}
|
86
86
|
if (vNode.styles) {
|
87
87
|
props.style = Array.from(vNode.styles).reduce((a, b) => {
|
package/package.json
CHANGED
@@ -1,6 +1,6 @@
|
|
1
1
|
{
|
2
2
|
"name": "@textbus/adapter-viewfly",
|
3
|
-
"version": "4.0.0-alpha.
|
3
|
+
"version": "4.0.0-alpha.3",
|
4
4
|
"description": "Textbus is a rich text editor and framework that is highly customizable and extensible to achieve rich wysiwyg effects.",
|
5
5
|
"main": "./bundles/index.js",
|
6
6
|
"module": "./bundles/index.esm.js",
|
@@ -28,7 +28,7 @@
|
|
28
28
|
"@tanbo/stream": "^1.2.0",
|
29
29
|
"@textbus/core": "^4.0.0-alpha.1",
|
30
30
|
"@textbus/platform-browser": "^4.0.0-alpha.1",
|
31
|
-
"@viewfly/core": "^0.2.
|
31
|
+
"@viewfly/core": "^0.2.2"
|
32
32
|
},
|
33
33
|
"devDependencies": {
|
34
34
|
"@rollup/plugin-commonjs": "^23.0.2",
|
@@ -48,5 +48,5 @@
|
|
48
48
|
"bugs": {
|
49
49
|
"url": "https://github.com/textbus/textbus.git/issues"
|
50
50
|
},
|
51
|
-
"gitHead": "
|
51
|
+
"gitHead": "3783baf7c65eff59ba268a13c4b561116f024ab7"
|
52
52
|
}
|