@leafer-ui/display 1.1.1 → 1.1.2
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/package.json +8 -8
- package/src/Leafer.ts +1 -1
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@leafer-ui/display",
|
|
3
|
-
"version": "1.1.
|
|
3
|
+
"version": "1.1.2",
|
|
4
4
|
"description": "@leafer-ui/display",
|
|
5
5
|
"author": "Chao (Leafer) Wan",
|
|
6
6
|
"license": "MIT",
|
|
@@ -22,14 +22,14 @@
|
|
|
22
22
|
"leaferjs"
|
|
23
23
|
],
|
|
24
24
|
"dependencies": {
|
|
25
|
-
"@leafer/core": "1.1.
|
|
26
|
-
"@leafer-ui/data": "1.1.
|
|
27
|
-
"@leafer-ui/display-module": "1.1.
|
|
28
|
-
"@leafer-ui/decorator": "1.1.
|
|
29
|
-
"@leafer-ui/external": "1.1.
|
|
25
|
+
"@leafer/core": "1.1.2",
|
|
26
|
+
"@leafer-ui/data": "1.1.2",
|
|
27
|
+
"@leafer-ui/display-module": "1.1.2",
|
|
28
|
+
"@leafer-ui/decorator": "1.1.2",
|
|
29
|
+
"@leafer-ui/external": "1.1.2"
|
|
30
30
|
},
|
|
31
31
|
"devDependencies": {
|
|
32
|
-
"@leafer/interface": "1.1.
|
|
33
|
-
"@leafer-ui/interface": "1.1.
|
|
32
|
+
"@leafer/interface": "1.1.2",
|
|
33
|
+
"@leafer-ui/interface": "1.1.2"
|
|
34
34
|
}
|
|
35
35
|
}
|
package/src/Leafer.ts
CHANGED
|
@@ -155,7 +155,7 @@ export class Leafer extends Group implements ILeafer {
|
|
|
155
155
|
|
|
156
156
|
public onInit(): void { }
|
|
157
157
|
|
|
158
|
-
public initType(_type: ILeaferType): void { } // rewrite in @leafer-ui/
|
|
158
|
+
public initType(_type: ILeaferType): void { } // rewrite in @leafer-ui/viewport
|
|
159
159
|
|
|
160
160
|
public set(data: IUIInputData, transition?: ITransition | 'temp'): void {
|
|
161
161
|
this.waitInit(() => { super.set(data, transition) })
|