@textbus/adapter-viewfly 4.0.2 → 4.0.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.
@@ -1,5 +1,5 @@
|
|
1
1
|
import { Component, ViewMount } from '@textbus/core';
|
2
|
-
import { ComponentSetup, DynamicRef,
|
2
|
+
import { ComponentSetup, DynamicRef, ViewFlyNode } from '@viewfly/core';
|
3
3
|
import { DomAdapter } from '@textbus/platform-browser';
|
4
4
|
export interface ViewComponentProps<T extends Component> {
|
5
5
|
component: T;
|
@@ -8,9 +8,9 @@ export interface ViewComponentProps<T extends Component> {
|
|
8
8
|
export interface ViewflyAdapterComponents {
|
9
9
|
[key: string]: ComponentSetup<ViewComponentProps<any>>;
|
10
10
|
}
|
11
|
-
export declare class ViewflyAdapter extends DomAdapter<
|
11
|
+
export declare class ViewflyAdapter extends DomAdapter<ViewFlyNode, ViewFlyNode> {
|
12
12
|
private components;
|
13
13
|
private componentRefs;
|
14
|
-
constructor(components: ViewflyAdapterComponents, mount: ViewMount<
|
14
|
+
constructor(components: ViewflyAdapterComponents, mount: ViewMount<ViewFlyNode, HTMLElement>);
|
15
15
|
copy(): void;
|
16
16
|
}
|
package/package.json
CHANGED
@@ -1,6 +1,6 @@
|
|
1
1
|
{
|
2
2
|
"name": "@textbus/adapter-viewfly",
|
3
|
-
"version": "4.0.
|
3
|
+
"version": "4.0.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",
|
@@ -26,11 +26,11 @@
|
|
26
26
|
],
|
27
27
|
"dependencies": {
|
28
28
|
"@tanbo/stream": "^1.2.5",
|
29
|
-
"@textbus/core": "^4.0.
|
30
|
-
"@textbus/platform-browser": "^4.0.
|
31
|
-
"@textbus/platform-node": "^4.0.
|
32
|
-
"@viewfly/core": "^1.0.
|
33
|
-
"@viewfly/platform-browser": "^1.0.
|
29
|
+
"@textbus/core": "^4.0.3",
|
30
|
+
"@textbus/platform-browser": "^4.0.3",
|
31
|
+
"@textbus/platform-node": "^4.0.3",
|
32
|
+
"@viewfly/core": "^1.0.2",
|
33
|
+
"@viewfly/platform-browser": "^1.0.3"
|
34
34
|
},
|
35
35
|
"devDependencies": {
|
36
36
|
"@rollup/plugin-commonjs": "^23.0.2",
|
@@ -50,5 +50,5 @@
|
|
50
50
|
"bugs": {
|
51
51
|
"url": "https://github.com/textbus/textbus.git/issues"
|
52
52
|
},
|
53
|
-
"gitHead": "
|
53
|
+
"gitHead": "cf4fd289b73bc777124a32fe42bb58eba05a34f1"
|
54
54
|
}
|