@leafer/event 1.0.4 → 1.0.6

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 CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@leafer/event",
3
- "version": "1.0.4",
3
+ "version": "1.0.6",
4
4
  "description": "@leafer/event",
5
5
  "author": "Chao (Leafer) Wan",
6
6
  "license": "MIT",
@@ -22,11 +22,11 @@
22
22
  "leaferjs"
23
23
  ],
24
24
  "dependencies": {
25
- "@leafer/decorator": "1.0.4",
26
- "@leafer/math": "1.0.4",
27
- "@leafer/platform": "1.0.4"
25
+ "@leafer/decorator": "1.0.6",
26
+ "@leafer/math": "1.0.6",
27
+ "@leafer/platform": "1.0.6"
28
28
  },
29
29
  "devDependencies": {
30
- "@leafer/interface": "1.0.4"
30
+ "@leafer/interface": "1.0.6"
31
31
  }
32
32
  }
@@ -7,6 +7,7 @@ export class RenderEvent extends Event implements IRenderEvent {
7
7
 
8
8
  static REQUEST = 'render.request'
9
9
 
10
+ static CHILD_START = 'render.child_start' // app 专用
10
11
  static START = 'render.start'
11
12
 
12
13
  static BEFORE = 'render.before'
package/types/index.d.ts CHANGED
@@ -83,6 +83,7 @@ declare class LayoutEvent extends Event implements ILayoutEvent {
83
83
 
84
84
  declare class RenderEvent extends Event implements IRenderEvent {
85
85
  static REQUEST: string;
86
+ static CHILD_START: string;
86
87
  static START: string;
87
88
  static BEFORE: string;
88
89
  static RENDER: string;