@leafer/interface 1.0.0-beta.16 → 1.0.0-beta.17

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.
Files changed (2) hide show
  1. package/package.json +1 -1
  2. package/types/index.d.ts +2 -2
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@leafer/interface",
3
- "version": "1.0.0-beta.16",
3
+ "version": "1.0.0-beta.17",
4
4
  "description": "@leafer/interface",
5
5
  "author": "Chao (Leafer) Wan",
6
6
  "license": "MIT",
package/types/index.d.ts CHANGED
@@ -1198,7 +1198,7 @@ interface ILeaf extends ILeafMask, ILeafRender, ILeafHit, ILeafBounds, ILeafMatr
1198
1198
  destroyed: boolean;
1199
1199
  waitParent(item: IFunction): void;
1200
1200
  waitLeafer(item: IFunction): void;
1201
- waitRender(item: IFunction): void;
1201
+ nextRender(item: IFunction): void;
1202
1202
  __bindLeafer(leafer: ILeafer | null): void;
1203
1203
  set(data: IObject): void;
1204
1204
  toJSON(): IObject;
@@ -1503,7 +1503,7 @@ interface ILeafer extends IZoomView, IControl {
1503
1503
  autoLayout?: IAutoBounds;
1504
1504
  config: ILeaferConfig;
1505
1505
  __eventIds: IEventListenerId[];
1506
- __renderWait: IFunction[];
1506
+ __nextRenderWait: IFunction[];
1507
1507
  init(userConfig?: ILeaferConfig, parentApp?: IApp): void;
1508
1508
  setZoomLayer(zoomLayer: ILeaf, moveLayer?: ILeaf): void;
1509
1509
  forceFullRender(): void;