@textbus/platform-browser 3.0.0-alpha.29 → 3.0.0-alpha.30
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 +2 -2
- package/bundles/index.js +2 -2
- package/package.json +4 -4
package/bundles/index.esm.js
CHANGED
@@ -2266,10 +2266,10 @@ class Viewer extends Starter {
|
|
2266
2266
|
useValue: mask
|
2267
2267
|
}, {
|
2268
2268
|
provide: NativeRenderer,
|
2269
|
-
|
2269
|
+
useExisting: DomRenderer
|
2270
2270
|
}, {
|
2271
2271
|
provide: NativeSelectionBridge,
|
2272
|
-
|
2272
|
+
useExisting: SelectionBridge
|
2273
2273
|
}, {
|
2274
2274
|
provide: Input,
|
2275
2275
|
useClass: options.useContentEditable ? NativeInput : MagicInput
|
package/bundles/index.js
CHANGED
@@ -2268,10 +2268,10 @@ class Viewer extends core.Starter {
|
|
2268
2268
|
useValue: mask
|
2269
2269
|
}, {
|
2270
2270
|
provide: core.NativeRenderer,
|
2271
|
-
|
2271
|
+
useExisting: exports.DomRenderer
|
2272
2272
|
}, {
|
2273
2273
|
provide: core.NativeSelectionBridge,
|
2274
|
-
|
2274
|
+
useExisting: exports.SelectionBridge
|
2275
2275
|
}, {
|
2276
2276
|
provide: Input,
|
2277
2277
|
useClass: options.useContentEditable ? exports.NativeInput : exports.MagicInput
|
package/package.json
CHANGED
@@ -1,6 +1,6 @@
|
|
1
1
|
{
|
2
2
|
"name": "@textbus/platform-browser",
|
3
|
-
"version": "3.0.0-alpha.
|
3
|
+
"version": "3.0.0-alpha.30",
|
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",
|
@@ -25,9 +25,9 @@
|
|
25
25
|
"typescript editor"
|
26
26
|
],
|
27
27
|
"dependencies": {
|
28
|
-
"@tanbo/di": "^1.1.
|
28
|
+
"@tanbo/di": "^1.1.4",
|
29
29
|
"@tanbo/stream": "^1.1.8",
|
30
|
-
"@textbus/core": "^3.0.0-alpha.
|
30
|
+
"@textbus/core": "^3.0.0-alpha.30",
|
31
31
|
"reflect-metadata": "^0.1.13"
|
32
32
|
},
|
33
33
|
"devDependencies": {
|
@@ -48,5 +48,5 @@
|
|
48
48
|
"bugs": {
|
49
49
|
"url": "https://github.com/textbus/textbus.git/issues"
|
50
50
|
},
|
51
|
-
"gitHead": "
|
51
|
+
"gitHead": "5e6ca16bf169e611d816d58b9a98118073a41e47"
|
52
52
|
}
|