@leafer/display 1.0.0-beta → 1.0.0-beta.4
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 +9 -9
- package/src/Leaf.ts +2 -0
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@leafer/display",
|
|
3
|
-
"version": "1.0.0-beta",
|
|
3
|
+
"version": "1.0.0-beta.4",
|
|
4
4
|
"description": "@leafer/display",
|
|
5
5
|
"author": "Chao (Leafer) Wan",
|
|
6
6
|
"license": "MIT",
|
|
@@ -19,15 +19,15 @@
|
|
|
19
19
|
"leaferjs"
|
|
20
20
|
],
|
|
21
21
|
"dependencies": {
|
|
22
|
-
"@leafer/math": "1.0.0-beta",
|
|
23
|
-
"@leafer/data": "1.0.0-beta",
|
|
24
|
-
"@leafer/layout": "1.0.0-beta",
|
|
25
|
-
"@leafer/display-module": "1.0.0-beta",
|
|
26
|
-
"@leafer/event": "1.0.0-beta",
|
|
27
|
-
"@leafer/decorator": "1.0.0-beta",
|
|
28
|
-
"@leafer/helper": "1.0.0-beta"
|
|
22
|
+
"@leafer/math": "1.0.0-beta.4",
|
|
23
|
+
"@leafer/data": "1.0.0-beta.4",
|
|
24
|
+
"@leafer/layout": "1.0.0-beta.4",
|
|
25
|
+
"@leafer/display-module": "1.0.0-beta.4",
|
|
26
|
+
"@leafer/event": "1.0.0-beta.4",
|
|
27
|
+
"@leafer/decorator": "1.0.0-beta.4",
|
|
28
|
+
"@leafer/helper": "1.0.0-beta.4"
|
|
29
29
|
},
|
|
30
30
|
"devDependencies": {
|
|
31
|
-
"@leafer/interface": "1.0.0-beta"
|
|
31
|
+
"@leafer/interface": "1.0.0-beta.4"
|
|
32
32
|
}
|
|
33
33
|
}
|
package/src/Leaf.ts
CHANGED
|
@@ -18,6 +18,8 @@ const { LEAF, create } = IncrementId
|
|
|
18
18
|
export class Leaf implements ILeaf {
|
|
19
19
|
|
|
20
20
|
public get tag(): string { return this.__tag }
|
|
21
|
+
public set tag(_value: string) { }
|
|
22
|
+
|
|
21
23
|
public get __tag(): string { return 'Leaf' }
|
|
22
24
|
|
|
23
25
|
public readonly innerId: InnerId // 内部唯一标识
|