@leafer-ui/interface 1.0.0-rc.26 → 1.0.0-rc.27

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-ui/interface",
3
- "version": "1.0.0-rc.26",
3
+ "version": "1.0.0-rc.27",
4
4
  "description": "@leafer-ui/interface",
5
5
  "author": "Chao (Leafer) Wan",
6
6
  "license": "MIT",
@@ -22,6 +22,6 @@
22
22
  "leaferjs"
23
23
  ],
24
24
  "dependencies": {
25
- "@leafer/interface": "1.0.0-rc.26"
25
+ "@leafer/interface": "1.0.0-rc.27"
26
26
  }
27
27
  }
package/src/IUI.ts CHANGED
@@ -370,6 +370,7 @@ export interface IUIData extends IUIComputedData, ILeafData {
370
370
  __pixelStroke?: boolean
371
371
 
372
372
  __isHitPixel?: boolean
373
+ __isCanvas?: boolean // canvas 等需单独绘制的元素
373
374
 
374
375
  __opacityFill?: boolean // 半透明的
375
376
  __opacityStroke?: boolean
package/types/index.d.ts CHANGED
@@ -710,6 +710,7 @@ interface IUIData extends IUIComputedData, ILeafData {
710
710
  __pixelFill?: boolean;
711
711
  __pixelStroke?: boolean;
712
712
  __isHitPixel?: boolean;
713
+ __isCanvas?: boolean;
713
714
  __opacityFill?: boolean;
714
715
  __opacityStroke?: boolean;
715
716
  __drawAfterFill?: boolean;