@leafer/event 1.9.9 → 1.9.11
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 +6 -6
- package/src/Eventer.ts +1 -1
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@leafer/event",
|
|
3
|
-
"version": "1.9.
|
|
3
|
+
"version": "1.9.11",
|
|
4
4
|
"description": "@leafer/event",
|
|
5
5
|
"author": "Chao (Leafer) Wan",
|
|
6
6
|
"license": "MIT",
|
|
@@ -22,12 +22,12 @@
|
|
|
22
22
|
"leaferjs"
|
|
23
23
|
],
|
|
24
24
|
"dependencies": {
|
|
25
|
-
"@leafer/decorator": "1.9.
|
|
26
|
-
"@leafer/math": "1.9.
|
|
27
|
-
"@leafer/data": "1.9.
|
|
28
|
-
"@leafer/platform": "1.9.
|
|
25
|
+
"@leafer/decorator": "1.9.11",
|
|
26
|
+
"@leafer/math": "1.9.11",
|
|
27
|
+
"@leafer/data": "1.9.11",
|
|
28
|
+
"@leafer/platform": "1.9.11"
|
|
29
29
|
},
|
|
30
30
|
"devDependencies": {
|
|
31
|
-
"@leafer/interface": "1.9.
|
|
31
|
+
"@leafer/interface": "1.9.11"
|
|
32
32
|
}
|
|
33
33
|
}
|
package/src/Eventer.ts
CHANGED
|
@@ -19,7 +19,7 @@ export class Eventer implements IEventer {
|
|
|
19
19
|
public __hasLocalEvent?: boolean
|
|
20
20
|
public __hasWorldEvent?: boolean
|
|
21
21
|
|
|
22
|
-
public syncEventer?: IEventer
|
|
22
|
+
public syncEventer?: IEventer // 同步触发一样事件的元素
|
|
23
23
|
|
|
24
24
|
public set event(map: IEventParamsMap) { this.on(map) }
|
|
25
25
|
|