@leafer/layout 1.0.2 → 1.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.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@leafer/layout",
3
- "version": "1.0.2",
3
+ "version": "1.0.3",
4
4
  "description": "@leafer/layout",
5
5
  "author": "Chao (Leafer) Wan",
6
6
  "license": "MIT",
@@ -22,11 +22,11 @@
22
22
  "leaferjs"
23
23
  ],
24
24
  "dependencies": {
25
- "@leafer/math": "1.0.2",
26
- "@leafer/helper": "1.0.2",
27
- "@leafer/platform": "1.0.2"
25
+ "@leafer/math": "1.0.3",
26
+ "@leafer/helper": "1.0.3",
27
+ "@leafer/platform": "1.0.3"
28
28
  },
29
29
  "devDependencies": {
30
- "@leafer/interface": "1.0.2"
30
+ "@leafer/interface": "1.0.3"
31
31
  }
32
32
  }
package/src/LeafLayout.ts CHANGED
@@ -75,6 +75,7 @@ export class LeafLayout implements ILeafLayout {
75
75
  public hitCanvasChanged: boolean
76
76
 
77
77
  public childrenSortChanged?: boolean
78
+ public stateStyleChanged?: boolean
78
79
 
79
80
  // keep state
80
81
  public affectScaleOrRotation: boolean
package/types/index.d.ts CHANGED
@@ -37,6 +37,7 @@ declare class LeafLayout implements ILeafLayout {
37
37
  opacityChanged: boolean;
38
38
  hitCanvasChanged: boolean;
39
39
  childrenSortChanged?: boolean;
40
+ stateStyleChanged?: boolean;
40
41
  affectScaleOrRotation: boolean;
41
42
  affectRotation: boolean;
42
43
  affectChildrenSort?: boolean;