leafer-draw 1.1.2 → 1.2.1
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/dist/web.js +31 -16
- package/dist/web.min.js +1 -1
- package/dist/web.module.js +31 -16
- package/dist/web.module.min.js +1 -1
- package/package.json +2 -2
package/dist/web.module.js
CHANGED
|
@@ -1402,9 +1402,21 @@ const Run = {
|
|
|
1402
1402
|
};
|
|
1403
1403
|
const R = Run;
|
|
1404
1404
|
|
|
1405
|
-
|
|
1406
|
-
|
|
1407
|
-
|
|
1405
|
+
const Plugin = {
|
|
1406
|
+
list: {},
|
|
1407
|
+
add(name) {
|
|
1408
|
+
this.list[name] = true;
|
|
1409
|
+
},
|
|
1410
|
+
check(name, tip) {
|
|
1411
|
+
const rs = this.list[name];
|
|
1412
|
+
if (!rs && tip)
|
|
1413
|
+
this.need(name);
|
|
1414
|
+
return rs;
|
|
1415
|
+
},
|
|
1416
|
+
need(name) {
|
|
1417
|
+
console.error('need plugin: @leafer-in/' + name);
|
|
1418
|
+
}
|
|
1419
|
+
};
|
|
1408
1420
|
|
|
1409
1421
|
const debug$e = Debug.get('UICreator');
|
|
1410
1422
|
const UICreator = {
|
|
@@ -5419,7 +5431,7 @@ let Leaf = class Leaf {
|
|
|
5419
5431
|
this.__[attrName] = value === undefined ? null : undefined;
|
|
5420
5432
|
this[attrName] = value;
|
|
5421
5433
|
}
|
|
5422
|
-
forceRender(_bounds) {
|
|
5434
|
+
forceRender(_bounds, _sync) {
|
|
5423
5435
|
this.forceUpdate('surface');
|
|
5424
5436
|
}
|
|
5425
5437
|
__updateWorldMatrix() { }
|
|
@@ -5629,10 +5641,10 @@ let Leaf = class Leaf {
|
|
|
5629
5641
|
__updatePath() { }
|
|
5630
5642
|
__updateRenderPath() { }
|
|
5631
5643
|
getMotionPathData() {
|
|
5632
|
-
return
|
|
5644
|
+
return Plugin.need('path');
|
|
5633
5645
|
}
|
|
5634
5646
|
getMotionPoint(_motionDistance) {
|
|
5635
|
-
return
|
|
5647
|
+
return Plugin.need('path');
|
|
5636
5648
|
}
|
|
5637
5649
|
getMotionTotal() {
|
|
5638
5650
|
return 0;
|
|
@@ -5989,7 +6001,7 @@ class LeafLevelList {
|
|
|
5989
6001
|
}
|
|
5990
6002
|
}
|
|
5991
6003
|
|
|
5992
|
-
const version = "1.
|
|
6004
|
+
const version = "1.2.1";
|
|
5993
6005
|
|
|
5994
6006
|
const debug$5 = Debug.get('LeaferCanvas');
|
|
5995
6007
|
class LeaferCanvas extends LeaferCanvasBase {
|
|
@@ -6887,8 +6899,8 @@ const PaintGradient = {};
|
|
|
6887
6899
|
const Effect = {};
|
|
6888
6900
|
const Export = {};
|
|
6889
6901
|
const State = {
|
|
6890
|
-
setStyleName(_leaf, _styleName, _value) { return
|
|
6891
|
-
set(_leaf, _stateName) { return
|
|
6902
|
+
setStyleName(_leaf, _styleName, _value) { return Plugin.need('state'); },
|
|
6903
|
+
set(_leaf, _stateName) { return Plugin.need('state'); }
|
|
6892
6904
|
};
|
|
6893
6905
|
const Transition = {
|
|
6894
6906
|
list: {},
|
|
@@ -7389,7 +7401,7 @@ let UI = UI_1 = class UI extends Leaf {
|
|
|
7389
7401
|
drawer.rect(x, y, width, height);
|
|
7390
7402
|
}
|
|
7391
7403
|
animate(_keyframe, _options, _type, _isTemp) {
|
|
7392
|
-
return
|
|
7404
|
+
return Plugin.need('animate');
|
|
7393
7405
|
}
|
|
7394
7406
|
killAnimate(_type) { }
|
|
7395
7407
|
export(filename, options) {
|
|
@@ -7788,10 +7800,13 @@ let Leafer = Leafer_1 = class Leafer extends Group {
|
|
|
7788
7800
|
const data = DataHelper.copyAttrs({}, size, canvasSizeAttrs);
|
|
7789
7801
|
Object.keys(data).forEach(key => this[key] = data[key]);
|
|
7790
7802
|
}
|
|
7791
|
-
forceRender(bounds) {
|
|
7792
|
-
|
|
7793
|
-
if (
|
|
7794
|
-
|
|
7803
|
+
forceRender(bounds, sync) {
|
|
7804
|
+
const { renderer } = this;
|
|
7805
|
+
if (renderer) {
|
|
7806
|
+
renderer.addBlock(bounds ? new Bounds(bounds) : this.canvas.bounds);
|
|
7807
|
+
if (this.viewReady)
|
|
7808
|
+
sync ? renderer.render() : renderer.update();
|
|
7809
|
+
}
|
|
7795
7810
|
}
|
|
7796
7811
|
requestRender(change = false) {
|
|
7797
7812
|
if (this.renderer)
|
|
@@ -7967,7 +7982,7 @@ let Leafer = Leafer_1 = class Leafer extends Group {
|
|
|
7967
7982
|
this.requestRender();
|
|
7968
7983
|
}
|
|
7969
7984
|
zoom(_zoomType, _padding, _fixedScale) {
|
|
7970
|
-
return
|
|
7985
|
+
return Plugin.need('view');
|
|
7971
7986
|
}
|
|
7972
7987
|
getValidMove(moveX, moveY) { return { x: moveX, y: moveY }; }
|
|
7973
7988
|
getValidScale(changeScale) { return changeScale; }
|
|
@@ -10405,4 +10420,4 @@ Object.assign(Export, ExportModule);
|
|
|
10405
10420
|
|
|
10406
10421
|
useCanvas();
|
|
10407
10422
|
|
|
10408
|
-
export { AlignHelper, Answer, AroundHelper, AutoBounds, BezierHelper, Bounds, BoundsHelper, Box, BoxData, Branch, BranchHelper, BranchRender, Canvas, CanvasData, CanvasManager, ChildEvent, ColorConvert, Creator, DataHelper, Debug, Direction4, Direction9, Effect, Ellipse, EllipseData, EllipseHelper, Event, EventCreator, Eventer, Export, FileHelper, Frame, FrameData, Group, GroupData, Image$1 as Image, ImageData, ImageEvent, ImageManager, IncrementId, LayoutEvent, Layouter, Leaf, LeafBounds, LeafBoundsHelper, LeafData, LeafDataProxy, LeafEventer, LeafHelper, LeafLayout, LeafLevelList, LeafList, LeafMatrix, LeafRender, Leafer, LeaferCanvas, LeaferCanvasBase, LeaferData, LeaferEvent, LeaferImage, Line, LineData, MathHelper, Matrix, MatrixHelper, MyImage, NeedConvertToCanvasCommandMap, OneRadian, PI2, PI_2, Paint, PaintGradient, PaintImage, Path, PathArrow, PathBounds, PathCommandDataHelper, PathCommandMap, PathConvert, PathCorner, PathCreator, PathData, PathDrawer, PathHelper, PathNumberCommandLengthMap, PathNumberCommandMap, Pen, PenData, Platform, Point, PointHelper, Polygon, PolygonData, PropertyEvent, Rect, RectData, RectHelper, RectRender, RenderEvent, Renderer, ResizeEvent, Run, Star, StarData, State, StringNumberMap, TaskItem, TaskProcessor, Text, TextConvert, TextData, Transition, TwoPointBoundsHelper, UI, UIBounds, UICreator, UIData, UIRender, UnitConvert, WaitHelper, WatchEvent, Watcher, affectRenderBoundsType, affectStrokeBoundsType, attr, autoLayoutType, boundsType, canvasPatch, canvasSizeAttrs, cursorType, dataProcessor, dataType, decorateLeafAttr, defineDataProcessor, defineKey, defineLeafAttr, doBoundsType, doStrokeType, effectType, emptyData, eraserType, getBoundsData, getDescriptor, getMatrixData, getPointData, hitType, isNull, layoutProcessor, maskType, naturalBoundsType,
|
|
10423
|
+
export { AlignHelper, Answer, AroundHelper, AutoBounds, BezierHelper, Bounds, BoundsHelper, Box, BoxData, Branch, BranchHelper, BranchRender, Canvas, CanvasData, CanvasManager, ChildEvent, ColorConvert, Creator, DataHelper, Debug, Direction4, Direction9, Effect, Ellipse, EllipseData, EllipseHelper, Event, EventCreator, Eventer, Export, FileHelper, Frame, FrameData, Group, GroupData, Image$1 as Image, ImageData, ImageEvent, ImageManager, IncrementId, LayoutEvent, Layouter, Leaf, LeafBounds, LeafBoundsHelper, LeafData, LeafDataProxy, LeafEventer, LeafHelper, LeafLayout, LeafLevelList, LeafList, LeafMatrix, LeafRender, Leafer, LeaferCanvas, LeaferCanvasBase, LeaferData, LeaferEvent, LeaferImage, Line, LineData, MathHelper, Matrix, MatrixHelper, MyImage, NeedConvertToCanvasCommandMap, OneRadian, PI2, PI_2, Paint, PaintGradient, PaintImage, Path, PathArrow, PathBounds, PathCommandDataHelper, PathCommandMap, PathConvert, PathCorner, PathCreator, PathData, PathDrawer, PathHelper, PathNumberCommandLengthMap, PathNumberCommandMap, Pen, PenData, Platform, Plugin, Point, PointHelper, Polygon, PolygonData, PropertyEvent, Rect, RectData, RectHelper, RectRender, RenderEvent, Renderer, ResizeEvent, Run, Star, StarData, State, StringNumberMap, TaskItem, TaskProcessor, Text, TextConvert, TextData, Transition, TwoPointBoundsHelper, UI, UIBounds, UICreator, UIData, UIRender, UnitConvert, WaitHelper, WatchEvent, Watcher, affectRenderBoundsType, affectStrokeBoundsType, attr, autoLayoutType, boundsType, canvasPatch, canvasSizeAttrs, cursorType, dataProcessor, dataType, decorateLeafAttr, defineDataProcessor, defineKey, defineLeafAttr, doBoundsType, doStrokeType, effectType, emptyData, eraserType, getBoundsData, getDescriptor, getMatrixData, getPointData, hitType, isNull, layoutProcessor, maskType, naturalBoundsType, opacityType, pathInputType, pathType, pen, positionType, registerUI, registerUIEvent, resizeType, rewrite, rewriteAble, rotationType, scaleType, sortType, strokeType, surfaceType, tempBounds$1 as tempBounds, tempMatrix, tempPoint$3 as tempPoint, useCanvas, useModule, version, visibleType, zoomLayerType };
|