@leafer-ui/miniapp 1.11.1 → 1.12.0
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/miniapp.cjs +33 -15
- package/dist/miniapp.esm.js +34 -16
- package/dist/miniapp.esm.min.js +1 -1
- package/dist/miniapp.esm.min.js.map +1 -1
- package/dist/miniapp.min.cjs +1 -1
- package/dist/miniapp.min.cjs.map +1 -1
- package/dist/miniapp.module.js +62 -23
- package/dist/miniapp.module.min.js +1 -1
- package/dist/miniapp.module.min.js.map +1 -1
- package/package.json +12 -12
package/dist/miniapp.module.js
CHANGED
|
@@ -1,3 +1,12 @@
|
|
|
1
|
+
var PathNodeHandleType;
|
|
2
|
+
|
|
3
|
+
(function(PathNodeHandleType) {
|
|
4
|
+
PathNodeHandleType[PathNodeHandleType["none"] = 1] = "none";
|
|
5
|
+
PathNodeHandleType[PathNodeHandleType["free"] = 2] = "free";
|
|
6
|
+
PathNodeHandleType[PathNodeHandleType["mirrorAngle"] = 3] = "mirrorAngle";
|
|
7
|
+
PathNodeHandleType[PathNodeHandleType["mirror"] = 4] = "mirror";
|
|
8
|
+
})(PathNodeHandleType || (PathNodeHandleType = {}));
|
|
9
|
+
|
|
1
10
|
var Answer;
|
|
2
11
|
|
|
3
12
|
(function(Answer) {
|
|
@@ -4047,16 +4056,27 @@ const ImageManager = {
|
|
|
4047
4056
|
recycle(image) {
|
|
4048
4057
|
image.use--;
|
|
4049
4058
|
setTimeout(() => {
|
|
4050
|
-
if (!image.use)
|
|
4059
|
+
if (!image.use) {
|
|
4060
|
+
if (Platform.image.isLarge(image)) {
|
|
4061
|
+
if (image.url) Resource.remove(image.url);
|
|
4062
|
+
} else {
|
|
4063
|
+
image.clearLevels();
|
|
4064
|
+
I$1.recycledList.push(image);
|
|
4065
|
+
}
|
|
4066
|
+
}
|
|
4051
4067
|
});
|
|
4052
4068
|
},
|
|
4053
|
-
|
|
4069
|
+
recyclePaint(paint) {
|
|
4070
|
+
I$1.recycle(paint.image);
|
|
4071
|
+
},
|
|
4072
|
+
clearRecycled(force) {
|
|
4054
4073
|
const list = I$1.recycledList;
|
|
4055
|
-
if (list.length > I$1.maxRecycled) {
|
|
4056
|
-
list.forEach(image => !image.use && image.url && Resource.remove(image.url));
|
|
4074
|
+
if (list.length > I$1.maxRecycled || force) {
|
|
4075
|
+
list.forEach(image => (!image.use || force) && image.url && Resource.remove(image.url));
|
|
4057
4076
|
list.length = 0;
|
|
4058
4077
|
}
|
|
4059
4078
|
},
|
|
4079
|
+
clearLevels() {},
|
|
4060
4080
|
hasAlphaPixel(config) {
|
|
4061
4081
|
return FileHelper.alphaPixelTypes.some(item => I$1.isFormat(item, config));
|
|
4062
4082
|
},
|
|
@@ -4071,7 +4091,7 @@ const ImageManager = {
|
|
|
4071
4091
|
return false;
|
|
4072
4092
|
},
|
|
4073
4093
|
destroy() {
|
|
4074
|
-
|
|
4094
|
+
this.clearRecycled(true);
|
|
4075
4095
|
}
|
|
4076
4096
|
};
|
|
4077
4097
|
|
|
@@ -4174,11 +4194,15 @@ class LeaferImage {
|
|
|
4174
4194
|
Platform.image.setPatternTransform(pattern, transform, paint);
|
|
4175
4195
|
return pattern;
|
|
4176
4196
|
}
|
|
4197
|
+
clearLevels(_checkUse) {}
|
|
4177
4198
|
destroy() {
|
|
4199
|
+
this.clearLevels();
|
|
4200
|
+
const {view: view} = this;
|
|
4201
|
+
if (view && view.close) view.close();
|
|
4178
4202
|
this.config = {
|
|
4179
4203
|
url: ""
|
|
4180
4204
|
};
|
|
4181
|
-
this.cache = null;
|
|
4205
|
+
this.cache = this.view = null;
|
|
4182
4206
|
this.waitComplete.length = 0;
|
|
4183
4207
|
}
|
|
4184
4208
|
}
|
|
@@ -5957,6 +5981,7 @@ const LeafBounds = {
|
|
|
5957
5981
|
const LeafRender = {
|
|
5958
5982
|
__render(canvas, options) {
|
|
5959
5983
|
if (options.shape) return this.__renderShape(canvas, options);
|
|
5984
|
+
if (options.cellList && !options.cellList.has(this)) return;
|
|
5960
5985
|
if (this.__worldOpacity) {
|
|
5961
5986
|
const data = this.__;
|
|
5962
5987
|
if (data.bright && !options.topRendering) return options.topList.add(this);
|
|
@@ -6855,7 +6880,7 @@ class LeafLevelList {
|
|
|
6855
6880
|
}
|
|
6856
6881
|
}
|
|
6857
6882
|
|
|
6858
|
-
const version = "1.
|
|
6883
|
+
const version = "1.12.0";
|
|
6859
6884
|
|
|
6860
6885
|
class LeaferCanvas extends LeaferCanvasBase {
|
|
6861
6886
|
get allowBackgroundColor() {
|
|
@@ -7125,7 +7150,7 @@ class Watcher {
|
|
|
7125
7150
|
return this.hasAdd || this.hasRemove || this.hasVisible;
|
|
7126
7151
|
}
|
|
7127
7152
|
get updatedList() {
|
|
7128
|
-
if (this.hasRemove) {
|
|
7153
|
+
if (this.hasRemove && this.config.usePartLayout) {
|
|
7129
7154
|
const updatedList = new LeafList;
|
|
7130
7155
|
this.__updatedList.list.forEach(item => {
|
|
7131
7156
|
if (item.leafer) updatedList.add(item);
|
|
@@ -7160,16 +7185,18 @@ class Watcher {
|
|
|
7160
7185
|
if (this.running) this.target.emit(RenderEvent.REQUEST);
|
|
7161
7186
|
}
|
|
7162
7187
|
__onAttrChange(event) {
|
|
7163
|
-
this.__updatedList.add(event.target);
|
|
7188
|
+
if (this.config.usePartLayout) this.__updatedList.add(event.target);
|
|
7164
7189
|
this.update();
|
|
7165
7190
|
}
|
|
7166
7191
|
__onChildEvent(event) {
|
|
7167
|
-
if (
|
|
7168
|
-
|
|
7169
|
-
|
|
7170
|
-
|
|
7171
|
-
|
|
7172
|
-
|
|
7192
|
+
if (this.config.usePartLayout) {
|
|
7193
|
+
if (event.type === ChildEvent.ADD) {
|
|
7194
|
+
this.hasAdd = true;
|
|
7195
|
+
this.__pushChild(event.child);
|
|
7196
|
+
} else {
|
|
7197
|
+
this.hasRemove = true;
|
|
7198
|
+
this.__updatedList.add(event.parent);
|
|
7199
|
+
}
|
|
7173
7200
|
}
|
|
7174
7201
|
this.update();
|
|
7175
7202
|
}
|
|
@@ -7286,7 +7313,9 @@ const debug$4 = Debug.get("Layouter");
|
|
|
7286
7313
|
class Layouter {
|
|
7287
7314
|
constructor(target, userConfig) {
|
|
7288
7315
|
this.totalTimes = 0;
|
|
7289
|
-
this.config = {
|
|
7316
|
+
this.config = {
|
|
7317
|
+
usePartLayout: true
|
|
7318
|
+
};
|
|
7290
7319
|
this.__levelList = new LeafLevelList;
|
|
7291
7320
|
this.target = target;
|
|
7292
7321
|
if (userConfig) this.config = DataHelper.default(userConfig, this.config);
|
|
@@ -7331,7 +7360,7 @@ class Layouter {
|
|
|
7331
7360
|
this.totalTimes++;
|
|
7332
7361
|
this.layouting = true;
|
|
7333
7362
|
this.target.emit(WatchEvent.REQUEST);
|
|
7334
|
-
if (this.totalTimes > 1) {
|
|
7363
|
+
if (this.totalTimes > 1 && this.config.usePartLayout) {
|
|
7335
7364
|
this.partLayout();
|
|
7336
7365
|
} else {
|
|
7337
7366
|
this.fullLayout();
|
|
@@ -7448,7 +7477,7 @@ class Renderer {
|
|
|
7448
7477
|
}
|
|
7449
7478
|
update(change = true) {
|
|
7450
7479
|
if (!this.changed) this.changed = change;
|
|
7451
|
-
this.__requestRender();
|
|
7480
|
+
if (!this.requestTime) this.__requestRender();
|
|
7452
7481
|
}
|
|
7453
7482
|
requestLayout() {
|
|
7454
7483
|
this.target.emit(LayoutEvent.REQUEST);
|
|
@@ -7555,7 +7584,7 @@ class Renderer {
|
|
|
7555
7584
|
Run.end(t);
|
|
7556
7585
|
}
|
|
7557
7586
|
__render(bounds, realBounds) {
|
|
7558
|
-
const {canvas: canvas} = this, includes = bounds.includes(
|
|
7587
|
+
const {canvas: canvas, target: target} = this, includes = bounds.includes(target.__world), options = includes ? {
|
|
7559
7588
|
includes: includes
|
|
7560
7589
|
} : {
|
|
7561
7590
|
bounds: bounds,
|
|
@@ -7563,12 +7592,16 @@ class Renderer {
|
|
|
7563
7592
|
};
|
|
7564
7593
|
if (this.needFill) canvas.fillWorld(bounds, this.config.fill);
|
|
7565
7594
|
if (Debug.showRepaint) Debug.drawRepaint(canvas, bounds);
|
|
7566
|
-
|
|
7595
|
+
if (this.config.useCellRender) options.cellList = this.getCellList();
|
|
7596
|
+
Platform.render(target, canvas, options);
|
|
7567
7597
|
this.renderBounds = realBounds = realBounds || bounds;
|
|
7568
7598
|
this.renderOptions = options;
|
|
7569
7599
|
this.totalBounds.isEmpty() ? this.totalBounds = realBounds : this.totalBounds.add(realBounds);
|
|
7570
7600
|
canvas.updateRender(realBounds);
|
|
7571
7601
|
}
|
|
7602
|
+
getCellList() {
|
|
7603
|
+
return undefined;
|
|
7604
|
+
}
|
|
7572
7605
|
addBlock(block) {
|
|
7573
7606
|
if (!this.updateBlocks) this.updateBlocks = [];
|
|
7574
7607
|
this.updateBlocks.push(block);
|
|
@@ -8225,6 +8258,11 @@ class TextData extends UIData {
|
|
|
8225
8258
|
}
|
|
8226
8259
|
this._boxStyle = value;
|
|
8227
8260
|
}
|
|
8261
|
+
__getInputData(names, options) {
|
|
8262
|
+
const data = super.__getInputData(names, options);
|
|
8263
|
+
if (data.textEditing) delete data.textEditing;
|
|
8264
|
+
return data;
|
|
8265
|
+
}
|
|
8228
8266
|
}
|
|
8229
8267
|
|
|
8230
8268
|
class ImageData extends RectData {
|
|
@@ -11676,6 +11714,7 @@ function getLeafPaint(attrName, paint, ui) {
|
|
|
11676
11714
|
const {boxBounds: boxBounds} = ui.__layout;
|
|
11677
11715
|
switch (paint.type) {
|
|
11678
11716
|
case "image":
|
|
11717
|
+
if (!paint.url) return undefined;
|
|
11679
11718
|
leafPaint = PaintImage.image(ui, attrName, paint, boxBounds, !recycleMap || !recycleMap[paint.url]);
|
|
11680
11719
|
break;
|
|
11681
11720
|
|
|
@@ -12080,7 +12119,7 @@ function checkImage(paint, drawImage, ui, canvas, renderOptions) {
|
|
|
12080
12119
|
if (data.repeat) {
|
|
12081
12120
|
drawImage = false;
|
|
12082
12121
|
} else if (!(originPaint.changeful || Platform.name === "miniapp" && ResizeEvent.isResizing(ui) || exporting)) {
|
|
12083
|
-
drawImage = Platform.image.isLarge(image, scaleX, scaleY);
|
|
12122
|
+
drawImage = Platform.image.isLarge(image, scaleX, scaleY) || image.width * scaleX > 8096 || image.height * scaleY > 8096;
|
|
12084
12123
|
}
|
|
12085
12124
|
}
|
|
12086
12125
|
if (drawImage) {
|
|
@@ -12139,7 +12178,7 @@ function recycleImage(attrName, data) {
|
|
|
12139
12178
|
if (url) {
|
|
12140
12179
|
if (!recycleMap) recycleMap = {};
|
|
12141
12180
|
recycleMap[url] = true;
|
|
12142
|
-
ImageManager.
|
|
12181
|
+
ImageManager.recyclePaint(paint);
|
|
12143
12182
|
if (image.loading) {
|
|
12144
12183
|
if (!input) {
|
|
12145
12184
|
input = data.__input && data.__input[attrName] || [];
|
|
@@ -13061,4 +13100,4 @@ try {
|
|
|
13061
13100
|
if (wx) useCanvas("miniapp", wx);
|
|
13062
13101
|
} catch (_a) {}
|
|
13063
13102
|
|
|
13064
|
-
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, Dragger, DropEvent, Effect, Ellipse, EllipseData, EllipseHelper, Event, EventCreator, Eventer, Export, FileHelper, Filter, FourNumberHelper, Frame, FrameData, Group, GroupData, HitCanvasManager, 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, LeaferImage, 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, PathNumberCommandLengthMap, PathNumberCommandMap, Pen, PenData, Picker, Platform, Plugin, Point, PointHelper, PointerButton, 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, WaitHelper, WatchEvent, Watcher, ZoomEvent, affectRenderBoundsType, affectStrokeBoundsType, attr, autoLayoutType, boundsType, canvasPatch, canvasSizeAttrs, createAttr, createDescriptor, cursorType, dataProcessor, dataType, decorateLeafAttr, defineDataProcessor, defineKey, defineLeafAttr, dimType, doBoundsType, doStrokeType, 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$2 as tempPoint, tryToNumber, useCanvas, useModule, version, visibleType, zoomLayerType };
|
|
13103
|
+
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, Dragger, DropEvent, Effect, Ellipse, EllipseData, EllipseHelper, Event, EventCreator, Eventer, Export, FileHelper, Filter, FourNumberHelper, Frame, FrameData, Group, GroupData, HitCanvasManager, 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, LeaferImage, 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, 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, WaitHelper, WatchEvent, Watcher, ZoomEvent, affectRenderBoundsType, affectStrokeBoundsType, attr, autoLayoutType, boundsType, canvasPatch, canvasSizeAttrs, createAttr, createDescriptor, cursorType, dataProcessor, dataType, decorateLeafAttr, defineDataProcessor, defineKey, defineLeafAttr, dimType, doBoundsType, doStrokeType, 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$2 as tempPoint, tryToNumber, useCanvas, useModule, version, visibleType, zoomLayerType };
|