leafer-ui 2.2.5 → 2.2.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/README.md +11 -5
- package/dist/web.esm.min.js.map +1 -1
- package/dist/web.js +27 -16
- package/dist/web.min.cjs.map +1 -1
- package/dist/web.min.js +1 -1
- package/dist/web.min.js.map +1 -1
- package/dist/web.module.js +30 -17
- package/dist/web.module.min.js +1 -1
- package/dist/web.module.min.js.map +1 -1
- package/package.json +11 -11
package/dist/web.module.js
CHANGED
|
@@ -1904,7 +1904,7 @@ function getNameList(name) {
|
|
|
1904
1904
|
|
|
1905
1905
|
const D$5 = Debug;
|
|
1906
1906
|
|
|
1907
|
-
const debug$
|
|
1907
|
+
const debug$h = Debug.get("RunTime");
|
|
1908
1908
|
|
|
1909
1909
|
const Run = {
|
|
1910
1910
|
currentId: 0,
|
|
@@ -1923,7 +1923,7 @@ const Run = {
|
|
|
1923
1923
|
const time = R$1.idMap[id], name = R$1.nameMap[id];
|
|
1924
1924
|
const duration = microsecond ? (performance.now() - time) / 1e3 : Date.now() - time;
|
|
1925
1925
|
R$1.idMap[id] = R$1.nameMap[id] = R$1.nameToIdMap[name] = undefined;
|
|
1926
|
-
debug$
|
|
1926
|
+
debug$h.log(name, duration, "ms");
|
|
1927
1927
|
},
|
|
1928
1928
|
endOfName(name, microsecond) {
|
|
1929
1929
|
const id = R$1.nameToIdMap[name];
|
|
@@ -1959,18 +1959,18 @@ const Creator = {
|
|
|
1959
1959
|
}
|
|
1960
1960
|
};
|
|
1961
1961
|
|
|
1962
|
-
const debug$
|
|
1962
|
+
const debug$g = Debug.get("UICreator");
|
|
1963
1963
|
|
|
1964
1964
|
const UICreator = {
|
|
1965
1965
|
list: {},
|
|
1966
1966
|
register(UI) {
|
|
1967
1967
|
const {__tag: tag} = UI.prototype;
|
|
1968
|
-
if (list$1[tag]) debug$
|
|
1968
|
+
if (list$1[tag]) debug$g.repeat(tag);
|
|
1969
1969
|
list$1[tag] = UI;
|
|
1970
1970
|
},
|
|
1971
1971
|
get(tag, data, x, y, width, height) {
|
|
1972
1972
|
if (!list$1[tag]) {
|
|
1973
|
-
debug$
|
|
1973
|
+
debug$g.warn("not register " + tag);
|
|
1974
1974
|
return undefined;
|
|
1975
1975
|
}
|
|
1976
1976
|
const ui = new list$1[tag](data);
|
|
@@ -1986,7 +1986,7 @@ const UICreator = {
|
|
|
1986
1986
|
|
|
1987
1987
|
const {list: list$1} = UICreator;
|
|
1988
1988
|
|
|
1989
|
-
const debug$
|
|
1989
|
+
const debug$f = Debug.get("EventCreator");
|
|
1990
1990
|
|
|
1991
1991
|
const EventCreator = {
|
|
1992
1992
|
nameList: {},
|
|
@@ -1994,7 +1994,7 @@ const EventCreator = {
|
|
|
1994
1994
|
let name;
|
|
1995
1995
|
Object.keys(Event).forEach(key => {
|
|
1996
1996
|
name = Event[key];
|
|
1997
|
-
if (isString(name)) nameList[name] && debug$
|
|
1997
|
+
if (isString(name)) nameList[name] && debug$f.repeat(name), nameList[name] = Event;
|
|
1998
1998
|
});
|
|
1999
1999
|
},
|
|
2000
2000
|
changeName(oldName, newName) {
|
|
@@ -3003,7 +3003,7 @@ const {rect: rect$3, roundRect: roundRect$2, arcTo: arcTo$3, arc: arc$3, ellipse
|
|
|
3003
3003
|
|
|
3004
3004
|
const {ellipticalArc: ellipticalArc} = EllipseHelper;
|
|
3005
3005
|
|
|
3006
|
-
const debug$
|
|
3006
|
+
const debug$e = Debug.get("PathConvert");
|
|
3007
3007
|
|
|
3008
3008
|
const setEndPoint$1 = {};
|
|
3009
3009
|
|
|
@@ -3270,7 +3270,7 @@ const PathConvert = {
|
|
|
3270
3270
|
break;
|
|
3271
3271
|
|
|
3272
3272
|
default:
|
|
3273
|
-
debug$
|
|
3273
|
+
debug$e.error(`command: ${command} [index:${i}]`, old);
|
|
3274
3274
|
return data;
|
|
3275
3275
|
}
|
|
3276
3276
|
lastCommand = command;
|
|
@@ -3333,7 +3333,10 @@ const {tan: tan, min: min$1, abs: abs$4} = Math;
|
|
|
3333
3333
|
|
|
3334
3334
|
const startPoint = {};
|
|
3335
3335
|
|
|
3336
|
+
const debug$d = Debug.get("PointsCurve");
|
|
3337
|
+
|
|
3336
3338
|
const PathCommandDataHelper = {
|
|
3339
|
+
pointsCurveList: {},
|
|
3337
3340
|
beginPath(data) {
|
|
3338
3341
|
data.length = 0;
|
|
3339
3342
|
},
|
|
@@ -3403,12 +3406,22 @@ const PathCommandDataHelper = {
|
|
|
3403
3406
|
data.push(M$3, startPoint.x, startPoint.y);
|
|
3404
3407
|
arc$2(data, x, y, radius, startAngle, endAngle, anticlockwise);
|
|
3405
3408
|
},
|
|
3406
|
-
drawPoints(data, points, curve, close) {
|
|
3407
|
-
|
|
3409
|
+
drawPoints(data, points, curve, close, options) {
|
|
3410
|
+
let type = "Q";
|
|
3411
|
+
if (isObject(curve)) type = curve.type, curve = curve.value;
|
|
3412
|
+
if (!pointsCurveList[type]) debug$d.warn("not found:", type), type = "Q";
|
|
3413
|
+
pointsCurveList[type](data, points, curve, close, options);
|
|
3408
3414
|
}
|
|
3409
3415
|
};
|
|
3410
3416
|
|
|
3411
|
-
const {ellipse: ellipse$3, arc: arc$2} = PathCommandDataHelper;
|
|
3417
|
+
const {ellipse: ellipse$3, arc: arc$2, pointsCurveList: pointsCurveList} = PathCommandDataHelper;
|
|
3418
|
+
|
|
3419
|
+
function registerPointsCurve(type, fn) {
|
|
3420
|
+
if (pointsCurveList[type]) debug$d.repeat(type);
|
|
3421
|
+
pointsCurveList[type] = fn;
|
|
3422
|
+
}
|
|
3423
|
+
|
|
3424
|
+
registerPointsCurve("Q", BezierHelper.points);
|
|
3412
3425
|
|
|
3413
3426
|
const {moveTo: moveTo$4, lineTo: lineTo$3, quadraticCurveTo: quadraticCurveTo, bezierCurveTo: bezierCurveTo, closePath: closePath$3, beginPath: beginPath, rect: rect$2, roundRect: roundRect$1, ellipse: ellipse$2, arc: arc$1, arcTo: arcTo$2, drawEllipse: drawEllipse, drawArc: drawArc, drawPoints: drawPoints$2} = PathCommandDataHelper;
|
|
3414
3427
|
|
|
@@ -7023,7 +7036,7 @@ class LeafLevelList {
|
|
|
7023
7036
|
}
|
|
7024
7037
|
}
|
|
7025
7038
|
|
|
7026
|
-
const version = "2.2.
|
|
7039
|
+
const version = "2.2.6";
|
|
7027
7040
|
|
|
7028
7041
|
const debug$5 = Debug.get("LeaferCanvas");
|
|
7029
7042
|
|
|
@@ -8567,7 +8580,7 @@ const UIRender = {
|
|
|
8567
8580
|
}
|
|
8568
8581
|
if (data.__useEffect) {
|
|
8569
8582
|
const {shadow: shadow, fill: fill, stroke: stroke} = data, otherEffect = data.innerShadow || data.blur || data.backgroundBlur || data.filter;
|
|
8570
|
-
stintSet$2(data, "__isFastShadow", shadow && !otherEffect && shadow.length < 2 && !shadow[0].spread && !Effect.isTransformShadow(shadow[0]) && fill && !data.__isTransparentFill && !(isArray(fill) && fill.length > 1) && (this.useFastShadow || !stroke || stroke && data.strokeAlign === "inside"));
|
|
8583
|
+
stintSet$2(data, "__isFastShadow", shadow && !otherEffect && shadow.length < 2 && !shadow[0].spread && !Effect.isTransformShadow(shadow[0]) && !(shadow[0].blendMode && shadow[0].blendMode !== "pass-through") && fill && !data.__isTransparentFill && !(isArray(fill) && fill.length > 1) && (this.useFastShadow || !stroke || stroke && data.strokeAlign === "inside"));
|
|
8571
8584
|
data.__useEffect = !!(shadow || otherEffect);
|
|
8572
8585
|
}
|
|
8573
8586
|
data.__checkSingle();
|
|
@@ -9625,7 +9638,7 @@ let Polygon = class Polygon extends UI {
|
|
|
9625
9638
|
const data = this.__;
|
|
9626
9639
|
const path = data.path = [];
|
|
9627
9640
|
if (data.points) {
|
|
9628
|
-
drawPoints$1(path, data.points, data.curve, data.closed);
|
|
9641
|
+
drawPoints$1(path, data.points, data.curve, data.closed, data);
|
|
9629
9642
|
} else {
|
|
9630
9643
|
const {width: width, height: height, sides: sides, startAngle: startAngle} = data;
|
|
9631
9644
|
const rx = width / 2, ry = height / 2;
|
|
@@ -9717,7 +9730,7 @@ let Line = class Line extends UI {
|
|
|
9717
9730
|
const data = this.__;
|
|
9718
9731
|
const path = data.path = [];
|
|
9719
9732
|
if (data.points) {
|
|
9720
|
-
drawPoints(path, data.points, data.curve, data.closed);
|
|
9733
|
+
drawPoints(path, data.points, data.curve, data.closed, data);
|
|
9721
9734
|
} else {
|
|
9722
9735
|
moveTo(path, 0, 0);
|
|
9723
9736
|
lineTo(path, this.width, 0);
|
|
@@ -13608,4 +13621,4 @@ Object.assign(Creator, {
|
|
|
13608
13621
|
|
|
13609
13622
|
useCanvas();
|
|
13610
13623
|
|
|
13611
|
-
export { AlignHelper, Answer, App, AroundHelper, AutoBounds, BezierHelper, Bounds, BoundsEvent, BoundsHelper, Box, BoxData, Branch, BranchHelper, BranchRender, Canvas, CanvasData, CanvasManager, ChildEvent, ColorConvert, Creator, Cursor, DataHelper, Debug, Direction4, Direction9, DragBoundsHelper, DragEvent$1 as DragEvent, Dragger, DropEvent, Effect, Ellipse, EllipseData, EllipseHelper, Event, EventCreator, Eventer, Export, FileHelper, Filter, FourNumberHelper, Frame, FrameData, Group, GroupData, HitCanvasManager, Image$1 as Image, ImageData, ImageEvent, ImageManager, IncrementId, Interaction, InteractionBase, InteractionHelper, KeyEvent, Keyboard, LayoutEvent, Layouter, Leaf, LeafBounds, LeafBoundsHelper, LeafData, LeafDataProxy, LeafEventer, LeafHelper, LeafLayout, LeafLevelList, LeafList, LeafMatrix, LeafRender, Leafer, LeaferCanvas, LeaferCanvasBase, LeaferData, LeaferEvent, LeaferFilm, LeaferImage, LeaferVideo, Line, LineData, MathHelper, Matrix, MatrixHelper, MoveEvent, MyDragEvent, MyImage, MyPointerEvent, MyTouchEvent, NeedConvertToCanvasCommandMap, OneRadian, PI2, PI_2, Paint, PaintGradient, PaintImage, Path, PathArrow, PathBounds, PathCommandDataHelper, PathCommandMap, PathCommandNodeHelper, PathConvert, PathCorner, PathCreator, PathData, PathDrawer, PathHelper, PathNodeHandleType, PathNumberCommandLengthMap, PathNumberCommandMap, Pen, PenData, Picker, Platform, Plugin, Point, PointHelper, PointerButton, PointerEvent$1 as PointerEvent, Polygon, PolygonData, PropertyEvent, Rect, RectData, RectHelper, RectRender, RenderEvent, Renderer, ResizeEvent, Resource, RotateEvent, Run, Selector, Star, StarData, State, StringNumberMap, SwipeEvent, TaskItem, TaskProcessor, Text, TextConvert, TextData, TouchEvent, Transition, TwoPointBoundsHelper, UI, UIBounds, UICreator, UIData, UIEvent, UIRender, UnitConvert, UnitConvertHelper, WaitHelper, WatchEvent, Watcher, ZoomEvent, affectRenderBoundsType, affectStrokeBoundsType, attr, autoLayoutType, boundsType, canvasPatch, canvasSizeAttrs, createAttr, createDescriptor, cursorType, dataProcessor, dataType, decorateLeafAttr, defineDataProcessor, defineKey, defineLeafAttr, dimType, doBoundsType, doStrokeType, doSurfaceType, effectType, emptyData, eraserType, extraPropertyEventMap, getBoundsData, getDescriptor, getMatrixData, getPointData, hitType, isArray, isData, isEmptyData, isFinite, isNull, isNumber, isObject, isString, isUndefined, layoutProcessor, leaferTransformAttrMap, maskType, naturalBoundsType, opacityType, path, pathInputType, pathType, pen, positionType, registerUI, registerUIEvent, resizeType, rewrite, rewriteAble, rotationType, scaleType, scrollType, sortType, strokeType, surfaceType, tempBounds$2 as tempBounds, tempMatrix$2 as tempMatrix, tempPoint$4 as tempPoint, tryToNumber, useCanvas, useModule, version, visibleType, zoomLayerType };
|
|
13624
|
+
export { AlignHelper, Answer, App, AroundHelper, AutoBounds, BezierHelper, Bounds, BoundsEvent, BoundsHelper, Box, BoxData, Branch, BranchHelper, BranchRender, Canvas, CanvasData, CanvasManager, ChildEvent, ColorConvert, Creator, Cursor, DataHelper, Debug, Direction4, Direction9, DragBoundsHelper, DragEvent$1 as DragEvent, Dragger, DropEvent, Effect, Ellipse, EllipseData, EllipseHelper, Event, EventCreator, Eventer, Export, FileHelper, Filter, FourNumberHelper, Frame, FrameData, Group, GroupData, HitCanvasManager, Image$1 as Image, ImageData, ImageEvent, ImageManager, IncrementId, Interaction, InteractionBase, InteractionHelper, KeyEvent, Keyboard, LayoutEvent, Layouter, Leaf, LeafBounds, LeafBoundsHelper, LeafData, LeafDataProxy, LeafEventer, LeafHelper, LeafLayout, LeafLevelList, LeafList, LeafMatrix, LeafRender, Leafer, LeaferCanvas, LeaferCanvasBase, LeaferData, LeaferEvent, LeaferFilm, LeaferImage, LeaferVideo, Line, LineData, MathHelper, Matrix, MatrixHelper, MoveEvent, MyDragEvent, MyImage, MyPointerEvent, MyTouchEvent, NeedConvertToCanvasCommandMap, OneRadian, PI2, PI_2, Paint, PaintGradient, PaintImage, Path, PathArrow, PathBounds, PathCommandDataHelper, PathCommandMap, PathCommandNodeHelper, PathConvert, PathCorner, PathCreator, PathData, PathDrawer, PathHelper, PathNodeHandleType, PathNumberCommandLengthMap, PathNumberCommandMap, Pen, PenData, Picker, Platform, Plugin, Point, PointHelper, PointerButton, PointerEvent$1 as PointerEvent, Polygon, PolygonData, PropertyEvent, Rect, RectData, RectHelper, RectRender, RenderEvent, Renderer, ResizeEvent, Resource, RotateEvent, Run, Selector, Star, StarData, State, StringNumberMap, SwipeEvent, TaskItem, TaskProcessor, Text, TextConvert, TextData, TouchEvent, Transition, TwoPointBoundsHelper, UI, UIBounds, UICreator, UIData, UIEvent, UIRender, UnitConvert, UnitConvertHelper, WaitHelper, WatchEvent, Watcher, ZoomEvent, affectRenderBoundsType, affectStrokeBoundsType, attr, autoLayoutType, boundsType, canvasPatch, canvasSizeAttrs, createAttr, createDescriptor, cursorType, dataProcessor, dataType, decorateLeafAttr, defineDataProcessor, defineKey, defineLeafAttr, dimType, doBoundsType, doStrokeType, doSurfaceType, effectType, emptyData, eraserType, extraPropertyEventMap, getBoundsData, getDescriptor, getMatrixData, getPointData, hitType, isArray, isData, isEmptyData, isFinite, isNull, isNumber, isObject, isString, isUndefined, layoutProcessor, leaferTransformAttrMap, maskType, naturalBoundsType, opacityType, path, pathInputType, pathType, pen, positionType, registerPointsCurve, registerUI, registerUIEvent, resizeType, rewrite, rewriteAble, rotationType, scaleType, scrollType, sortType, strokeType, surfaceType, tempBounds$2 as tempBounds, tempMatrix$2 as tempMatrix, tempPoint$4 as tempPoint, tryToNumber, useCanvas, useModule, version, visibleType, zoomLayerType };
|