@leafer-ui/miniapp 1.4.0 → 1.4.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/miniapp.cjs +12 -9
- package/dist/miniapp.cjs.map +1 -1
- package/dist/miniapp.esm.js +13 -10
- package/dist/miniapp.esm.js.map +1 -1
- 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 +315 -267
- package/dist/miniapp.module.js.map +1 -1
- package/dist/miniapp.module.min.js +1 -1
- package/dist/miniapp.module.min.js.map +1 -1
- package/package.json +11 -11
package/dist/miniapp.module.js
CHANGED
|
@@ -1374,7 +1374,7 @@ function getNameList(name) {
|
|
|
1374
1374
|
}
|
|
1375
1375
|
const D$4 = Debug;
|
|
1376
1376
|
|
|
1377
|
-
const debug$
|
|
1377
|
+
const debug$f = Debug.get('RunTime');
|
|
1378
1378
|
const Run = {
|
|
1379
1379
|
currentId: 0,
|
|
1380
1380
|
currentName: '',
|
|
@@ -1383,24 +1383,24 @@ const Run = {
|
|
|
1383
1383
|
nameToIdMap: {},
|
|
1384
1384
|
start(name, microsecond) {
|
|
1385
1385
|
const id = IncrementId.create(IncrementId.RUNTIME);
|
|
1386
|
-
R.currentId = R.idMap[id] = microsecond ? performance.now() : Date.now();
|
|
1387
|
-
R.currentName = R.nameMap[id] = name;
|
|
1388
|
-
R.nameToIdMap[name] = id;
|
|
1386
|
+
R$1.currentId = R$1.idMap[id] = microsecond ? performance.now() : Date.now();
|
|
1387
|
+
R$1.currentName = R$1.nameMap[id] = name;
|
|
1388
|
+
R$1.nameToIdMap[name] = id;
|
|
1389
1389
|
return id;
|
|
1390
1390
|
},
|
|
1391
1391
|
end(id, microsecond) {
|
|
1392
|
-
const time = R.idMap[id], name = R.nameMap[id];
|
|
1392
|
+
const time = R$1.idMap[id], name = R$1.nameMap[id];
|
|
1393
1393
|
const duration = microsecond ? (performance.now() - time) / 1000 : Date.now() - time;
|
|
1394
|
-
R.idMap[id] = R.nameMap[id] = R.nameToIdMap[name] = undefined;
|
|
1395
|
-
debug$
|
|
1394
|
+
R$1.idMap[id] = R$1.nameMap[id] = R$1.nameToIdMap[name] = undefined;
|
|
1395
|
+
debug$f.log(name, duration, 'ms');
|
|
1396
1396
|
},
|
|
1397
1397
|
endOfName(name, microsecond) {
|
|
1398
|
-
const id = R.nameToIdMap[name];
|
|
1398
|
+
const id = R$1.nameToIdMap[name];
|
|
1399
1399
|
if (id !== undefined)
|
|
1400
|
-
R.end(id, microsecond);
|
|
1400
|
+
R$1.end(id, microsecond);
|
|
1401
1401
|
}
|
|
1402
1402
|
};
|
|
1403
|
-
const R = Run;
|
|
1403
|
+
const R$1 = Run;
|
|
1404
1404
|
|
|
1405
1405
|
const check = [];
|
|
1406
1406
|
const Plugin = {
|
|
@@ -1421,18 +1421,18 @@ const Plugin = {
|
|
|
1421
1421
|
};
|
|
1422
1422
|
setTimeout(() => check.forEach(name => Plugin.has(name, true)));
|
|
1423
1423
|
|
|
1424
|
-
const debug$
|
|
1424
|
+
const debug$e = Debug.get('UICreator');
|
|
1425
1425
|
const UICreator = {
|
|
1426
1426
|
list: {},
|
|
1427
1427
|
register(UI) {
|
|
1428
1428
|
const { __tag: tag } = UI.prototype;
|
|
1429
1429
|
if (list$1[tag])
|
|
1430
|
-
debug$
|
|
1430
|
+
debug$e.repeat(tag);
|
|
1431
1431
|
list$1[tag] = UI;
|
|
1432
1432
|
},
|
|
1433
1433
|
get(tag, data, x, y, width, height) {
|
|
1434
1434
|
if (!list$1[tag])
|
|
1435
|
-
debug$
|
|
1435
|
+
debug$e.error('not register ' + tag);
|
|
1436
1436
|
const ui = new list$1[tag](data);
|
|
1437
1437
|
if (x !== undefined) {
|
|
1438
1438
|
ui.x = x;
|
|
@@ -1448,7 +1448,7 @@ const UICreator = {
|
|
|
1448
1448
|
};
|
|
1449
1449
|
const { list: list$1 } = UICreator;
|
|
1450
1450
|
|
|
1451
|
-
const debug$
|
|
1451
|
+
const debug$d = Debug.get('EventCreator');
|
|
1452
1452
|
const EventCreator = {
|
|
1453
1453
|
nameList: {},
|
|
1454
1454
|
register(Event) {
|
|
@@ -1456,7 +1456,7 @@ const EventCreator = {
|
|
|
1456
1456
|
Object.keys(Event).forEach(key => {
|
|
1457
1457
|
name = Event[key];
|
|
1458
1458
|
if (typeof name === 'string')
|
|
1459
|
-
nameList[name] && debug$
|
|
1459
|
+
nameList[name] && debug$d.repeat(name), nameList[name] = Event;
|
|
1460
1460
|
});
|
|
1461
1461
|
},
|
|
1462
1462
|
changeName(oldName, newName) {
|
|
@@ -1533,10 +1533,10 @@ const DataHelper = {
|
|
|
1533
1533
|
Object.keys(merge).forEach(key => {
|
|
1534
1534
|
var _a, _b;
|
|
1535
1535
|
value = merge[key];
|
|
1536
|
-
if ((value === null || value ===
|
|
1536
|
+
if ((value === null || value === void 0 ? void 0 : value.constructor) === Object && ((_a = t[key]) === null || _a === void 0 ? void 0 : _a.constructor) === Object)
|
|
1537
1537
|
return assign(t[key], merge[key], exclude && exclude[key]);
|
|
1538
1538
|
if (exclude && (key in exclude)) {
|
|
1539
|
-
if (((_b = exclude[key]) === null || _b ===
|
|
1539
|
+
if (((_b = exclude[key]) === null || _b === void 0 ? void 0 : _b.constructor) === Object)
|
|
1540
1540
|
assign(t[key] = {}, merge[key], exclude[key]);
|
|
1541
1541
|
return;
|
|
1542
1542
|
}
|
|
@@ -1660,7 +1660,7 @@ class LeafData {
|
|
|
1660
1660
|
const t = this;
|
|
1661
1661
|
if (t.blendMode === 'pass-through') {
|
|
1662
1662
|
const leaf = this.__leaf;
|
|
1663
|
-
if ((t.opacity < 1 && (leaf.isBranch || t.__hasMultiPaint)) || leaf.__hasEraser || t.eraser) {
|
|
1663
|
+
if ((t.opacity < 1 && (leaf.isBranch || t.__hasMultiPaint)) || leaf.__hasEraser || t.eraser || t.filter) {
|
|
1664
1664
|
t.__single = true;
|
|
1665
1665
|
}
|
|
1666
1666
|
else if (t.__single) {
|
|
@@ -1773,7 +1773,7 @@ let Canvas$1 = class Canvas {
|
|
|
1773
1773
|
}
|
|
1774
1774
|
setTransform(_a, _b, _c, _d, _e, _f) { }
|
|
1775
1775
|
resetTransform() { }
|
|
1776
|
-
getTransform() { return
|
|
1776
|
+
getTransform() { return void 0; }
|
|
1777
1777
|
save() { }
|
|
1778
1778
|
restore() { }
|
|
1779
1779
|
transform(a, b, c, d, e, f) {
|
|
@@ -1830,12 +1830,12 @@ let Canvas$1 = class Canvas {
|
|
|
1830
1830
|
ellipse(_x, _y, _radiusX, _radiusY, _rotation, _startAngle, _endAngle, _anticlockwise) { }
|
|
1831
1831
|
rect(_x, _y, _width, _height) { }
|
|
1832
1832
|
roundRect(_x, _y, _width, _height, _radius) { }
|
|
1833
|
-
createConicGradient(_startAngle, _x, _y) { return
|
|
1834
|
-
createLinearGradient(_x0, _y0, _x1, _y1) { return
|
|
1835
|
-
createPattern(_image, _repetition) { return
|
|
1836
|
-
createRadialGradient(_x0, _y0, _r0, _x1, _y1, _r1) { return
|
|
1833
|
+
createConicGradient(_startAngle, _x, _y) { return void 0; }
|
|
1834
|
+
createLinearGradient(_x0, _y0, _x1, _y1) { return void 0; }
|
|
1835
|
+
createPattern(_image, _repetition) { return void 0; }
|
|
1836
|
+
createRadialGradient(_x0, _y0, _r0, _x1, _y1, _r1) { return void 0; }
|
|
1837
1837
|
fillText(_text, _x, _y, _maxWidth) { }
|
|
1838
|
-
measureText(_text) { return
|
|
1838
|
+
measureText(_text) { return void 0; }
|
|
1839
1839
|
strokeText(_text, _x, _y, _maxWidth) { }
|
|
1840
1840
|
destroy() {
|
|
1841
1841
|
this.context = null;
|
|
@@ -1843,79 +1843,79 @@ let Canvas$1 = class Canvas {
|
|
|
1843
1843
|
};
|
|
1844
1844
|
__decorate([
|
|
1845
1845
|
contextAttr('imageSmoothingEnabled')
|
|
1846
|
-
], Canvas$1.prototype, "smooth",
|
|
1846
|
+
], Canvas$1.prototype, "smooth", void 0);
|
|
1847
1847
|
__decorate([
|
|
1848
1848
|
contextAttr('imageSmoothingQuality')
|
|
1849
|
-
], Canvas$1.prototype, "smoothLevel",
|
|
1849
|
+
], Canvas$1.prototype, "smoothLevel", void 0);
|
|
1850
1850
|
__decorate([
|
|
1851
1851
|
contextAttr('globalAlpha')
|
|
1852
|
-
], Canvas$1.prototype, "opacity",
|
|
1852
|
+
], Canvas$1.prototype, "opacity", void 0);
|
|
1853
1853
|
__decorate([
|
|
1854
1854
|
contextAttr()
|
|
1855
|
-
], Canvas$1.prototype, "fillStyle",
|
|
1855
|
+
], Canvas$1.prototype, "fillStyle", void 0);
|
|
1856
1856
|
__decorate([
|
|
1857
1857
|
contextAttr()
|
|
1858
|
-
], Canvas$1.prototype, "strokeStyle",
|
|
1858
|
+
], Canvas$1.prototype, "strokeStyle", void 0);
|
|
1859
1859
|
__decorate([
|
|
1860
1860
|
contextAttr('lineWidth')
|
|
1861
|
-
], Canvas$1.prototype, "strokeWidth",
|
|
1861
|
+
], Canvas$1.prototype, "strokeWidth", void 0);
|
|
1862
1862
|
__decorate([
|
|
1863
1863
|
contextAttr('lineCap')
|
|
1864
|
-
], Canvas$1.prototype, "strokeCap",
|
|
1864
|
+
], Canvas$1.prototype, "strokeCap", void 0);
|
|
1865
1865
|
__decorate([
|
|
1866
1866
|
contextAttr('lineJoin')
|
|
1867
|
-
], Canvas$1.prototype, "strokeJoin",
|
|
1867
|
+
], Canvas$1.prototype, "strokeJoin", void 0);
|
|
1868
1868
|
__decorate([
|
|
1869
1869
|
contextAttr('lineDashOffset')
|
|
1870
|
-
], Canvas$1.prototype, "dashOffset",
|
|
1870
|
+
], Canvas$1.prototype, "dashOffset", void 0);
|
|
1871
1871
|
__decorate([
|
|
1872
1872
|
contextAttr()
|
|
1873
|
-
], Canvas$1.prototype, "miterLimit",
|
|
1873
|
+
], Canvas$1.prototype, "miterLimit", void 0);
|
|
1874
1874
|
__decorate([
|
|
1875
1875
|
contextAttr()
|
|
1876
|
-
], Canvas$1.prototype, "shadowBlur",
|
|
1876
|
+
], Canvas$1.prototype, "shadowBlur", void 0);
|
|
1877
1877
|
__decorate([
|
|
1878
1878
|
contextAttr()
|
|
1879
|
-
], Canvas$1.prototype, "shadowColor",
|
|
1879
|
+
], Canvas$1.prototype, "shadowColor", void 0);
|
|
1880
1880
|
__decorate([
|
|
1881
1881
|
contextAttr()
|
|
1882
|
-
], Canvas$1.prototype, "shadowOffsetX",
|
|
1882
|
+
], Canvas$1.prototype, "shadowOffsetX", void 0);
|
|
1883
1883
|
__decorate([
|
|
1884
1884
|
contextAttr()
|
|
1885
|
-
], Canvas$1.prototype, "shadowOffsetY",
|
|
1885
|
+
], Canvas$1.prototype, "shadowOffsetY", void 0);
|
|
1886
1886
|
__decorate([
|
|
1887
1887
|
contextAttr()
|
|
1888
|
-
], Canvas$1.prototype, "filter",
|
|
1888
|
+
], Canvas$1.prototype, "filter", void 0);
|
|
1889
1889
|
__decorate([
|
|
1890
1890
|
contextAttr()
|
|
1891
|
-
], Canvas$1.prototype, "font",
|
|
1891
|
+
], Canvas$1.prototype, "font", void 0);
|
|
1892
1892
|
__decorate([
|
|
1893
1893
|
contextAttr()
|
|
1894
|
-
], Canvas$1.prototype, "fontKerning",
|
|
1894
|
+
], Canvas$1.prototype, "fontKerning", void 0);
|
|
1895
1895
|
__decorate([
|
|
1896
1896
|
contextAttr()
|
|
1897
|
-
], Canvas$1.prototype, "fontStretch",
|
|
1897
|
+
], Canvas$1.prototype, "fontStretch", void 0);
|
|
1898
1898
|
__decorate([
|
|
1899
1899
|
contextAttr()
|
|
1900
|
-
], Canvas$1.prototype, "fontVariantCaps",
|
|
1900
|
+
], Canvas$1.prototype, "fontVariantCaps", void 0);
|
|
1901
1901
|
__decorate([
|
|
1902
1902
|
contextAttr()
|
|
1903
|
-
], Canvas$1.prototype, "textAlign",
|
|
1903
|
+
], Canvas$1.prototype, "textAlign", void 0);
|
|
1904
1904
|
__decorate([
|
|
1905
1905
|
contextAttr()
|
|
1906
|
-
], Canvas$1.prototype, "textBaseline",
|
|
1906
|
+
], Canvas$1.prototype, "textBaseline", void 0);
|
|
1907
1907
|
__decorate([
|
|
1908
1908
|
contextAttr()
|
|
1909
|
-
], Canvas$1.prototype, "textRendering",
|
|
1909
|
+
], Canvas$1.prototype, "textRendering", void 0);
|
|
1910
1910
|
__decorate([
|
|
1911
1911
|
contextAttr()
|
|
1912
|
-
], Canvas$1.prototype, "wordSpacing",
|
|
1912
|
+
], Canvas$1.prototype, "wordSpacing", void 0);
|
|
1913
1913
|
__decorate([
|
|
1914
1914
|
contextAttr()
|
|
1915
|
-
], Canvas$1.prototype, "letterSpacing",
|
|
1915
|
+
], Canvas$1.prototype, "letterSpacing", void 0);
|
|
1916
1916
|
__decorate([
|
|
1917
1917
|
contextAttr()
|
|
1918
|
-
], Canvas$1.prototype, "direction",
|
|
1918
|
+
], Canvas$1.prototype, "direction", void 0);
|
|
1919
1919
|
__decorate([
|
|
1920
1920
|
contextMethod()
|
|
1921
1921
|
], Canvas$1.prototype, "setTransform", null);
|
|
@@ -2612,7 +2612,7 @@ const EllipseHelper = {
|
|
|
2612
2612
|
const { M: M$4, m, L: L$5, l, H, h, V, v, C: C$4, c, S, s, Q: Q$3, q, T, t, A, a, Z: Z$4, z, N: N$3, D: D$3, X: X$3, G: G$3, F: F$4, O: O$3, P: P$3, U: U$3 } = PathCommandMap;
|
|
2613
2613
|
const { rect: rect$3, roundRect: roundRect$2, arcTo: arcTo$3, arc: arc$3, ellipse: ellipse$4, quadraticCurveTo: quadraticCurveTo$1 } = BezierHelper;
|
|
2614
2614
|
const { ellipticalArc } = EllipseHelper;
|
|
2615
|
-
const debug$
|
|
2615
|
+
const debug$c = Debug.get('PathConvert');
|
|
2616
2616
|
const setEndPoint$1 = {};
|
|
2617
2617
|
const PathConvert = {
|
|
2618
2618
|
current: { dot: 0 },
|
|
@@ -2853,7 +2853,7 @@ const PathConvert = {
|
|
|
2853
2853
|
i += 6;
|
|
2854
2854
|
break;
|
|
2855
2855
|
default:
|
|
2856
|
-
debug$
|
|
2856
|
+
debug$c.error(`command: ${command} [index:${i}]`, old);
|
|
2857
2857
|
return data;
|
|
2858
2858
|
}
|
|
2859
2859
|
lastCommand = command;
|
|
@@ -2962,12 +2962,10 @@ const PathCommandDataHelper = {
|
|
|
2962
2962
|
},
|
|
2963
2963
|
arcTo(data, x1, y1, x2, y2, radius, lastX, lastY) {
|
|
2964
2964
|
if (lastX !== undefined) {
|
|
2965
|
-
const
|
|
2966
|
-
|
|
2967
|
-
}
|
|
2968
|
-
else {
|
|
2969
|
-
data.push(U$2, x1, y1, x2, y2, radius);
|
|
2965
|
+
const d = getMinDistanceFrom(lastX, lastY, x1, y1, x2, y2);
|
|
2966
|
+
radius = min(radius, min(d / 2, d / 2 * abs$2(tan(getRadianFrom(lastX, lastY, x1, y1, x2, y2) / 2))));
|
|
2970
2967
|
}
|
|
2968
|
+
data.push(U$2, x1, y1, x2, y2, radius);
|
|
2971
2969
|
},
|
|
2972
2970
|
drawEllipse(data, x, y, radiusX, radiusY, rotation, startAngle, endAngle, anticlockwise) {
|
|
2973
2971
|
BezierHelper.ellipse(null, x, y, radiusX, radiusY, rotation === undefined ? 0 : rotation, startAngle === undefined ? 0 : startAngle, endAngle === undefined ? 360 : endAngle, anticlockwise, null, null, startPoint);
|
|
@@ -3078,7 +3076,7 @@ class PathCreator {
|
|
|
3078
3076
|
}
|
|
3079
3077
|
|
|
3080
3078
|
const { M: M$2, L: L$3, C: C$2, Q: Q$1, Z: Z$2, N: N$1, D: D$1, X: X$1, G: G$1, F: F$2, O: O$1, P: P$1, U: U$1 } = PathCommandMap;
|
|
3081
|
-
const debug$
|
|
3079
|
+
const debug$b = Debug.get('PathDrawer');
|
|
3082
3080
|
const PathDrawer = {
|
|
3083
3081
|
drawPathByData(drawer, data) {
|
|
3084
3082
|
if (!data)
|
|
@@ -3141,7 +3139,7 @@ const PathDrawer = {
|
|
|
3141
3139
|
i += 6;
|
|
3142
3140
|
break;
|
|
3143
3141
|
default:
|
|
3144
|
-
debug$
|
|
3142
|
+
debug$b.error(`command: ${command} [index:${i}]`, data);
|
|
3145
3143
|
return;
|
|
3146
3144
|
}
|
|
3147
3145
|
}
|
|
@@ -3151,7 +3149,7 @@ const PathDrawer = {
|
|
|
3151
3149
|
const { M: M$1, L: L$2, C: C$1, Q, Z: Z$1, N, D, X, G, F: F$1, O, P, U } = PathCommandMap;
|
|
3152
3150
|
const { toTwoPointBounds, toTwoPointBoundsByQuadraticCurve, arcTo: arcTo$1, arc, ellipse: ellipse$1 } = BezierHelper;
|
|
3153
3151
|
const { addPointBounds, copy: copy$8, addPoint, setPoint, addBounds, toBounds: toBounds$2 } = TwoPointBoundsHelper;
|
|
3154
|
-
const debug$
|
|
3152
|
+
const debug$a = Debug.get('PathBounds');
|
|
3155
3153
|
let radius, radiusX, radiusY;
|
|
3156
3154
|
const tempPointBounds = {};
|
|
3157
3155
|
const setPointBounds = {};
|
|
@@ -3259,7 +3257,7 @@ const PathBounds = {
|
|
|
3259
3257
|
i += 6;
|
|
3260
3258
|
break;
|
|
3261
3259
|
default:
|
|
3262
|
-
debug$
|
|
3260
|
+
debug$a.error(`command: ${command} [index:${i}]`, data);
|
|
3263
3261
|
return;
|
|
3264
3262
|
}
|
|
3265
3263
|
}
|
|
@@ -3375,7 +3373,7 @@ const FileHelper = {
|
|
|
3375
3373
|
const F = FileHelper;
|
|
3376
3374
|
F.opacityTypes.forEach(type => F.upperCaseTypeMap[type] = type.toUpperCase());
|
|
3377
3375
|
|
|
3378
|
-
const debug$
|
|
3376
|
+
const debug$9 = Debug.get('TaskProcessor');
|
|
3379
3377
|
class TaskItem {
|
|
3380
3378
|
constructor(task) {
|
|
3381
3379
|
this.parallel = true;
|
|
@@ -3384,13 +3382,13 @@ class TaskItem {
|
|
|
3384
3382
|
this.task = task;
|
|
3385
3383
|
}
|
|
3386
3384
|
run() {
|
|
3387
|
-
return __awaiter(this,
|
|
3385
|
+
return __awaiter(this, void 0, void 0, function* () {
|
|
3388
3386
|
try {
|
|
3389
3387
|
if (this.task && !this.isComplete && this.parent.running)
|
|
3390
3388
|
yield this.task();
|
|
3391
3389
|
}
|
|
3392
3390
|
catch (error) {
|
|
3393
|
-
debug$
|
|
3391
|
+
debug$9.error(error);
|
|
3394
3392
|
}
|
|
3395
3393
|
});
|
|
3396
3394
|
}
|
|
@@ -3623,18 +3621,52 @@ class TaskProcessor {
|
|
|
3623
3621
|
}
|
|
3624
3622
|
}
|
|
3625
3623
|
|
|
3626
|
-
const
|
|
3624
|
+
const debug$8 = Debug.get('Resource');
|
|
3625
|
+
const Resource = {
|
|
3626
|
+
tasker: new TaskProcessor(),
|
|
3627
3627
|
map: {},
|
|
3628
|
+
get isComplete() { return R.tasker.isComplete; },
|
|
3629
|
+
set(key, value) {
|
|
3630
|
+
if (R.map[key])
|
|
3631
|
+
debug$8.repeat(key);
|
|
3632
|
+
R.map[key] = value;
|
|
3633
|
+
},
|
|
3634
|
+
get(key) {
|
|
3635
|
+
return R.map[key];
|
|
3636
|
+
},
|
|
3637
|
+
remove(key) {
|
|
3638
|
+
delete R.map[key];
|
|
3639
|
+
},
|
|
3640
|
+
loadImage(key, format) {
|
|
3641
|
+
return new Promise((resolve, reject) => {
|
|
3642
|
+
const image = this.setImage(key, key, format);
|
|
3643
|
+
image.load(() => resolve(image), (e) => reject(e));
|
|
3644
|
+
});
|
|
3645
|
+
},
|
|
3646
|
+
setImage(key, value, format) {
|
|
3647
|
+
let config;
|
|
3648
|
+
if (typeof value === 'string')
|
|
3649
|
+
config = { url: value };
|
|
3650
|
+
else if (!value.url)
|
|
3651
|
+
config = { url: key, view: value };
|
|
3652
|
+
if (config)
|
|
3653
|
+
format && (config.format = format), value = Creator.image(config);
|
|
3654
|
+
R.set(key, value);
|
|
3655
|
+
return value;
|
|
3656
|
+
},
|
|
3657
|
+
destroy() {
|
|
3658
|
+
R.map = {};
|
|
3659
|
+
}
|
|
3660
|
+
};
|
|
3661
|
+
const R = Resource;
|
|
3662
|
+
|
|
3663
|
+
const ImageManager = {
|
|
3628
3664
|
recycledList: [],
|
|
3629
|
-
tasker: new TaskProcessor(),
|
|
3630
3665
|
patternTasker: new TaskProcessor(),
|
|
3631
|
-
get isComplete() { return I$1.tasker.isComplete; },
|
|
3632
3666
|
get(config) {
|
|
3633
|
-
let image =
|
|
3634
|
-
if (!image)
|
|
3635
|
-
image = Creator.image(config);
|
|
3636
|
-
I$1.map[config.url] = image;
|
|
3637
|
-
}
|
|
3667
|
+
let image = Resource.get(config.url);
|
|
3668
|
+
if (!image)
|
|
3669
|
+
Resource.set(config.url, image = Creator.image(config));
|
|
3638
3670
|
image.use++;
|
|
3639
3671
|
return image;
|
|
3640
3672
|
},
|
|
@@ -3648,7 +3680,7 @@ const ImageManager = {
|
|
|
3648
3680
|
if (list.length > 100) {
|
|
3649
3681
|
list.forEach(image => {
|
|
3650
3682
|
if (!image.use && image.url) {
|
|
3651
|
-
|
|
3683
|
+
Resource.remove(image.url);
|
|
3652
3684
|
image.destroy();
|
|
3653
3685
|
}
|
|
3654
3686
|
});
|
|
@@ -3675,7 +3707,6 @@ const ImageManager = {
|
|
|
3675
3707
|
return false;
|
|
3676
3708
|
},
|
|
3677
3709
|
destroy() {
|
|
3678
|
-
I$1.map = {};
|
|
3679
3710
|
I$1.recycledList = [];
|
|
3680
3711
|
}
|
|
3681
3712
|
};
|
|
@@ -3689,21 +3720,19 @@ class LeaferImage {
|
|
|
3689
3720
|
this.use = 0;
|
|
3690
3721
|
this.waitComplete = [];
|
|
3691
3722
|
this.innerId = create$1(IMAGE);
|
|
3692
|
-
this.config = config || { url: '' };
|
|
3693
|
-
|
|
3694
|
-
|
|
3723
|
+
this.config = config || (config = { url: '' });
|
|
3724
|
+
if (config.view) {
|
|
3725
|
+
const { view } = config;
|
|
3726
|
+
this.setView(view.config ? view.view : view);
|
|
3727
|
+
}
|
|
3728
|
+
ImageManager.isFormat('svg', config) && (this.isSVG = true);
|
|
3729
|
+
ImageManager.hasOpacityPixel(config) && (this.hasOpacityPixel = true);
|
|
3695
3730
|
}
|
|
3696
3731
|
load(onSuccess, onError) {
|
|
3697
3732
|
if (!this.loading) {
|
|
3698
3733
|
this.loading = true;
|
|
3699
|
-
|
|
3700
|
-
return yield Platform.origin.loadImage(this.url).then((img) => {
|
|
3701
|
-
this.ready = true;
|
|
3702
|
-
this.width = img.naturalWidth || img.width;
|
|
3703
|
-
this.height = img.naturalHeight || img.height;
|
|
3704
|
-
this.view = img;
|
|
3705
|
-
this.onComplete(true);
|
|
3706
|
-
}).catch((e) => {
|
|
3734
|
+
Resource.tasker.add(() => __awaiter(this, void 0, void 0, function* () {
|
|
3735
|
+
return yield Platform.origin.loadImage(this.url).then(img => this.setView(img)).catch((e) => {
|
|
3707
3736
|
this.error = e;
|
|
3708
3737
|
this.onComplete(false);
|
|
3709
3738
|
});
|
|
@@ -3721,6 +3750,13 @@ class LeaferImage {
|
|
|
3721
3750
|
}
|
|
3722
3751
|
l[index] = l[index + 1] = undefined;
|
|
3723
3752
|
}
|
|
3753
|
+
setView(img) {
|
|
3754
|
+
this.ready = true;
|
|
3755
|
+
this.width = img.naturalWidth || img.width;
|
|
3756
|
+
this.height = img.naturalHeight || img.height;
|
|
3757
|
+
this.view = img;
|
|
3758
|
+
this.onComplete(true);
|
|
3759
|
+
}
|
|
3724
3760
|
onComplete(isSuccess) {
|
|
3725
3761
|
let odd;
|
|
3726
3762
|
this.waitComplete.forEach((item, index) => {
|
|
@@ -3739,6 +3775,9 @@ class LeaferImage {
|
|
|
3739
3775
|
this.waitComplete.length = 0;
|
|
3740
3776
|
this.loading = false;
|
|
3741
3777
|
}
|
|
3778
|
+
getFull(_filters) {
|
|
3779
|
+
return this.view;
|
|
3780
|
+
}
|
|
3742
3781
|
getCanvas(width, height, opacity, _filters) {
|
|
3743
3782
|
width || (width = this.width);
|
|
3744
3783
|
height || (height = this.height);
|
|
@@ -5219,7 +5258,7 @@ const LeafRender = {
|
|
|
5219
5258
|
if (this.__.eraser === 'path')
|
|
5220
5259
|
return this.__renderEraser(canvas, options);
|
|
5221
5260
|
const tempCanvas = canvas.getSameCanvas(true, true);
|
|
5222
|
-
this.__draw(tempCanvas, options);
|
|
5261
|
+
this.__draw(tempCanvas, options, canvas);
|
|
5223
5262
|
if (this.__worldFlipped) {
|
|
5224
5263
|
canvas.copyWorldByReset(tempCanvas, this.__nowWorld, null, this.__.__blendMode, true);
|
|
5225
5264
|
}
|
|
@@ -6012,7 +6051,7 @@ class LeafLevelList {
|
|
|
6012
6051
|
}
|
|
6013
6052
|
}
|
|
6014
6053
|
|
|
6015
|
-
const version = "1.4.
|
|
6054
|
+
const version = "1.4.1";
|
|
6016
6055
|
|
|
6017
6056
|
class LeaferCanvas extends LeaferCanvasBase {
|
|
6018
6057
|
get allowBackgroundColor() { return false; }
|
|
@@ -6496,7 +6535,7 @@ class Layouter {
|
|
|
6496
6535
|
}
|
|
6497
6536
|
partLayout() {
|
|
6498
6537
|
var _a;
|
|
6499
|
-
if (!((_a = this.__updatedList) === null || _a ===
|
|
6538
|
+
if (!((_a = this.__updatedList) === null || _a === void 0 ? void 0 : _a.length))
|
|
6500
6539
|
return;
|
|
6501
6540
|
const t = Run.start('PartLayout');
|
|
6502
6541
|
const { target, __updatedList: updateList } = this;
|
|
@@ -6961,9 +7000,10 @@ class Selector {
|
|
|
6961
7000
|
this.finder = Creator.finder && Creator.finder();
|
|
6962
7001
|
}
|
|
6963
7002
|
getByPoint(hitPoint, hitRadius, options) {
|
|
6964
|
-
|
|
6965
|
-
|
|
6966
|
-
|
|
7003
|
+
const { target, picker } = this;
|
|
7004
|
+
if (Platform.backgrounder)
|
|
7005
|
+
target && target.updateLayout();
|
|
7006
|
+
return picker.getByPoint(hitPoint, hitRadius, options);
|
|
6967
7007
|
}
|
|
6968
7008
|
getBy(condition, branch, one, options) {
|
|
6969
7009
|
return this.finder ? this.finder.getBy(condition, branch, one, options) : Plugin.need('find');
|
|
@@ -7021,9 +7061,7 @@ const TextConvert = {};
|
|
|
7021
7061
|
const ColorConvert = {};
|
|
7022
7062
|
const UnitConvert = {
|
|
7023
7063
|
number(value, percentRefer) {
|
|
7024
|
-
|
|
7025
|
-
return value.type === 'percent' ? value.value * percentRefer : value.value;
|
|
7026
|
-
return value;
|
|
7064
|
+
return typeof value === 'object' ? (value.type === 'percent' ? value.value * percentRefer : value.value) : value;
|
|
7027
7065
|
}
|
|
7028
7066
|
};
|
|
7029
7067
|
const PathArrow = {};
|
|
@@ -7031,16 +7069,15 @@ const Paint = {};
|
|
|
7031
7069
|
const PaintImage = {};
|
|
7032
7070
|
const PaintGradient = {};
|
|
7033
7071
|
const Effect = {};
|
|
7072
|
+
const Filter = {
|
|
7073
|
+
apply() { Plugin.need('filter'); }
|
|
7074
|
+
};
|
|
7034
7075
|
const Export = {};
|
|
7035
7076
|
const State = {
|
|
7036
|
-
setStyleName(
|
|
7037
|
-
set(
|
|
7038
|
-
};
|
|
7039
|
-
const Transition = {
|
|
7040
|
-
list: {},
|
|
7041
|
-
register(attrName, fn) { Transition.list[attrName] = fn; },
|
|
7042
|
-
get(attrName) { return Transition.list[attrName]; }
|
|
7077
|
+
setStyleName() { return Plugin.need('state'); },
|
|
7078
|
+
set() { return Plugin.need('state'); }
|
|
7043
7079
|
};
|
|
7080
|
+
const Transition = {};
|
|
7044
7081
|
|
|
7045
7082
|
const { parse, objectToCanvasData } = PathConvert;
|
|
7046
7083
|
const emptyPaint = {};
|
|
@@ -7147,24 +7184,13 @@ class UIData extends LeafData {
|
|
|
7147
7184
|
}
|
|
7148
7185
|
}
|
|
7149
7186
|
setShadow(value) {
|
|
7150
|
-
this
|
|
7151
|
-
if (value instanceof Array) {
|
|
7152
|
-
if (value.some((item) => item.visible === false))
|
|
7153
|
-
value = value.filter((item) => item.visible !== false);
|
|
7154
|
-
this._shadow = value.length ? value : null;
|
|
7155
|
-
}
|
|
7156
|
-
else
|
|
7157
|
-
this._shadow = value && value.visible !== false ? [value] : null;
|
|
7187
|
+
setArray(this, 'shadow', value);
|
|
7158
7188
|
}
|
|
7159
7189
|
setInnerShadow(value) {
|
|
7160
|
-
this
|
|
7161
|
-
|
|
7162
|
-
|
|
7163
|
-
|
|
7164
|
-
this._innerShadow = value.length ? value : null;
|
|
7165
|
-
}
|
|
7166
|
-
else
|
|
7167
|
-
this._innerShadow = value && value.visible !== false ? [value] : null;
|
|
7190
|
+
setArray(this, 'innerShadow', value);
|
|
7191
|
+
}
|
|
7192
|
+
setFilter(value) {
|
|
7193
|
+
setArray(this, 'filter', value);
|
|
7168
7194
|
}
|
|
7169
7195
|
__computePaint() {
|
|
7170
7196
|
const { fill, stroke } = this.__input;
|
|
@@ -7175,6 +7201,17 @@ class UIData extends LeafData {
|
|
|
7175
7201
|
this.__needComputePaint = false;
|
|
7176
7202
|
}
|
|
7177
7203
|
}
|
|
7204
|
+
function setArray(data, key, value) {
|
|
7205
|
+
data.__setInput(key, value);
|
|
7206
|
+
if (value instanceof Array) {
|
|
7207
|
+
if (value.some((item) => item.visible === false))
|
|
7208
|
+
value = value.filter((item) => item.visible !== false);
|
|
7209
|
+
value.length || (value = null);
|
|
7210
|
+
}
|
|
7211
|
+
else
|
|
7212
|
+
value = value && value.visible !== false ? [value] : null;
|
|
7213
|
+
data['_' + key] = value;
|
|
7214
|
+
}
|
|
7178
7215
|
|
|
7179
7216
|
class GroupData extends UIData {
|
|
7180
7217
|
}
|
|
@@ -7297,11 +7334,13 @@ const UIBounds = {
|
|
|
7297
7334
|
},
|
|
7298
7335
|
__updateRenderSpread() {
|
|
7299
7336
|
let width = 0;
|
|
7300
|
-
const { shadow, innerShadow, blur, backgroundBlur } = this.__;
|
|
7337
|
+
const { shadow, innerShadow, blur, backgroundBlur, filter } = this.__;
|
|
7301
7338
|
if (shadow)
|
|
7302
7339
|
shadow.forEach(item => width = Math.max(width, Math.max(Math.abs(item.y), Math.abs(item.x)) + (item.spread > 0 ? item.spread : 0) + item.blur * 1.5));
|
|
7303
7340
|
if (blur)
|
|
7304
7341
|
width = Math.max(width, blur);
|
|
7342
|
+
if (filter)
|
|
7343
|
+
width += Filter.getSpread(filter);
|
|
7305
7344
|
let shapeWidth = width = Math.ceil(width);
|
|
7306
7345
|
if (innerShadow)
|
|
7307
7346
|
innerShadow.forEach(item => shapeWidth = Math.max(shapeWidth, Math.max(Math.abs(item.y), Math.abs(item.x)) + (item.spread < 0 ? -item.spread : 0) + item.blur * 1.5));
|
|
@@ -7316,8 +7355,8 @@ const UIRender = {
|
|
|
7316
7355
|
__updateChange() {
|
|
7317
7356
|
const data = this.__;
|
|
7318
7357
|
if (data.__useEffect) {
|
|
7319
|
-
const { shadow, innerShadow, blur, backgroundBlur } = this.__;
|
|
7320
|
-
data.__useEffect = !!(shadow || innerShadow || blur || backgroundBlur);
|
|
7358
|
+
const { shadow, innerShadow, blur, backgroundBlur, filter } = this.__;
|
|
7359
|
+
data.__useEffect = !!(shadow || innerShadow || blur || backgroundBlur || filter);
|
|
7321
7360
|
}
|
|
7322
7361
|
data.__checkSingle();
|
|
7323
7362
|
const complex = data.__isFills || data.__isStrokes || data.cornerRadius || data.__useEffect;
|
|
@@ -7331,7 +7370,7 @@ const UIRender = {
|
|
|
7331
7370
|
__drawFast(canvas, options) {
|
|
7332
7371
|
drawFast(this, canvas, options);
|
|
7333
7372
|
},
|
|
7334
|
-
__draw(canvas, options) {
|
|
7373
|
+
__draw(canvas, options, originCanvas) {
|
|
7335
7374
|
const data = this.__;
|
|
7336
7375
|
if (data.__complex) {
|
|
7337
7376
|
if (data.__needComputePaint)
|
|
@@ -7341,7 +7380,7 @@ const UIRender = {
|
|
|
7341
7380
|
if (data.__useEffect) {
|
|
7342
7381
|
const shape = Paint.shape(this, canvas, options);
|
|
7343
7382
|
this.__nowWorld = this.__getNowWorld(options);
|
|
7344
|
-
const { shadow, innerShadow } = data;
|
|
7383
|
+
const { shadow, innerShadow, filter } = data;
|
|
7345
7384
|
if (shadow)
|
|
7346
7385
|
Effect.shadow(this, canvas, shape);
|
|
7347
7386
|
if (fill)
|
|
@@ -7352,6 +7391,8 @@ const UIRender = {
|
|
|
7352
7391
|
Effect.innerShadow(this, canvas, shape);
|
|
7353
7392
|
if (stroke)
|
|
7354
7393
|
data.__isStrokes ? Paint.strokes(stroke, this, canvas) : Paint.stroke(stroke, this, canvas);
|
|
7394
|
+
if (filter)
|
|
7395
|
+
Filter.apply(filter, this, this.__nowWorld, canvas, originCanvas, shape);
|
|
7355
7396
|
if (shape.worldCanvas)
|
|
7356
7397
|
shape.worldCanvas.recycle();
|
|
7357
7398
|
shape.canvas.recycle();
|
|
@@ -7571,199 +7612,202 @@ let UI = UI_1 = class UI extends Leaf {
|
|
|
7571
7612
|
};
|
|
7572
7613
|
__decorate([
|
|
7573
7614
|
dataProcessor(UIData)
|
|
7574
|
-
], UI.prototype, "__",
|
|
7615
|
+
], UI.prototype, "__", void 0);
|
|
7575
7616
|
__decorate([
|
|
7576
7617
|
zoomLayerType()
|
|
7577
|
-
], UI.prototype, "zoomLayer",
|
|
7618
|
+
], UI.prototype, "zoomLayer", void 0);
|
|
7578
7619
|
__decorate([
|
|
7579
7620
|
dataType('')
|
|
7580
|
-
], UI.prototype, "id",
|
|
7621
|
+
], UI.prototype, "id", void 0);
|
|
7581
7622
|
__decorate([
|
|
7582
7623
|
dataType('')
|
|
7583
|
-
], UI.prototype, "name",
|
|
7624
|
+
], UI.prototype, "name", void 0);
|
|
7584
7625
|
__decorate([
|
|
7585
7626
|
dataType('')
|
|
7586
|
-
], UI.prototype, "className",
|
|
7627
|
+
], UI.prototype, "className", void 0);
|
|
7587
7628
|
__decorate([
|
|
7588
7629
|
surfaceType('pass-through')
|
|
7589
|
-
], UI.prototype, "blendMode",
|
|
7630
|
+
], UI.prototype, "blendMode", void 0);
|
|
7590
7631
|
__decorate([
|
|
7591
7632
|
opacityType(1)
|
|
7592
|
-
], UI.prototype, "opacity",
|
|
7633
|
+
], UI.prototype, "opacity", void 0);
|
|
7593
7634
|
__decorate([
|
|
7594
7635
|
visibleType(true)
|
|
7595
|
-
], UI.prototype, "visible",
|
|
7636
|
+
], UI.prototype, "visible", void 0);
|
|
7596
7637
|
__decorate([
|
|
7597
7638
|
surfaceType(false)
|
|
7598
|
-
], UI.prototype, "locked",
|
|
7639
|
+
], UI.prototype, "locked", void 0);
|
|
7599
7640
|
__decorate([
|
|
7600
7641
|
sortType(0)
|
|
7601
|
-
], UI.prototype, "zIndex",
|
|
7642
|
+
], UI.prototype, "zIndex", void 0);
|
|
7602
7643
|
__decorate([
|
|
7603
7644
|
maskType(false)
|
|
7604
|
-
], UI.prototype, "mask",
|
|
7645
|
+
], UI.prototype, "mask", void 0);
|
|
7605
7646
|
__decorate([
|
|
7606
7647
|
eraserType(false)
|
|
7607
|
-
], UI.prototype, "eraser",
|
|
7648
|
+
], UI.prototype, "eraser", void 0);
|
|
7608
7649
|
__decorate([
|
|
7609
7650
|
positionType(0, true)
|
|
7610
|
-
], UI.prototype, "x",
|
|
7651
|
+
], UI.prototype, "x", void 0);
|
|
7611
7652
|
__decorate([
|
|
7612
7653
|
positionType(0, true)
|
|
7613
|
-
], UI.prototype, "y",
|
|
7654
|
+
], UI.prototype, "y", void 0);
|
|
7614
7655
|
__decorate([
|
|
7615
7656
|
boundsType(100, true)
|
|
7616
|
-
], UI.prototype, "width",
|
|
7657
|
+
], UI.prototype, "width", void 0);
|
|
7617
7658
|
__decorate([
|
|
7618
7659
|
boundsType(100, true)
|
|
7619
|
-
], UI.prototype, "height",
|
|
7660
|
+
], UI.prototype, "height", void 0);
|
|
7620
7661
|
__decorate([
|
|
7621
7662
|
scaleType(1, true)
|
|
7622
|
-
], UI.prototype, "scaleX",
|
|
7663
|
+
], UI.prototype, "scaleX", void 0);
|
|
7623
7664
|
__decorate([
|
|
7624
7665
|
scaleType(1, true)
|
|
7625
|
-
], UI.prototype, "scaleY",
|
|
7666
|
+
], UI.prototype, "scaleY", void 0);
|
|
7626
7667
|
__decorate([
|
|
7627
7668
|
rotationType(0, true)
|
|
7628
|
-
], UI.prototype, "rotation",
|
|
7669
|
+
], UI.prototype, "rotation", void 0);
|
|
7629
7670
|
__decorate([
|
|
7630
7671
|
rotationType(0, true)
|
|
7631
|
-
], UI.prototype, "skewX",
|
|
7672
|
+
], UI.prototype, "skewX", void 0);
|
|
7632
7673
|
__decorate([
|
|
7633
7674
|
rotationType(0, true)
|
|
7634
|
-
], UI.prototype, "skewY",
|
|
7675
|
+
], UI.prototype, "skewY", void 0);
|
|
7635
7676
|
__decorate([
|
|
7636
7677
|
positionType(0, true)
|
|
7637
|
-
], UI.prototype, "offsetX",
|
|
7678
|
+
], UI.prototype, "offsetX", void 0);
|
|
7638
7679
|
__decorate([
|
|
7639
7680
|
positionType(0, true)
|
|
7640
|
-
], UI.prototype, "offsetY",
|
|
7681
|
+
], UI.prototype, "offsetY", void 0);
|
|
7641
7682
|
__decorate([
|
|
7642
7683
|
positionType(0, true)
|
|
7643
|
-
], UI.prototype, "scrollX",
|
|
7684
|
+
], UI.prototype, "scrollX", void 0);
|
|
7644
7685
|
__decorate([
|
|
7645
7686
|
positionType(0, true)
|
|
7646
|
-
], UI.prototype, "scrollY",
|
|
7687
|
+
], UI.prototype, "scrollY", void 0);
|
|
7647
7688
|
__decorate([
|
|
7648
7689
|
autoLayoutType()
|
|
7649
|
-
], UI.prototype, "origin",
|
|
7690
|
+
], UI.prototype, "origin", void 0);
|
|
7650
7691
|
__decorate([
|
|
7651
7692
|
autoLayoutType()
|
|
7652
|
-
], UI.prototype, "around",
|
|
7693
|
+
], UI.prototype, "around", void 0);
|
|
7653
7694
|
__decorate([
|
|
7654
7695
|
dataType(false)
|
|
7655
|
-
], UI.prototype, "lazy",
|
|
7696
|
+
], UI.prototype, "lazy", void 0);
|
|
7656
7697
|
__decorate([
|
|
7657
7698
|
naturalBoundsType(1)
|
|
7658
|
-
], UI.prototype, "pixelRatio",
|
|
7699
|
+
], UI.prototype, "pixelRatio", void 0);
|
|
7659
7700
|
__decorate([
|
|
7660
7701
|
pathInputType()
|
|
7661
|
-
], UI.prototype, "path",
|
|
7702
|
+
], UI.prototype, "path", void 0);
|
|
7662
7703
|
__decorate([
|
|
7663
7704
|
pathType()
|
|
7664
|
-
], UI.prototype, "windingRule",
|
|
7705
|
+
], UI.prototype, "windingRule", void 0);
|
|
7665
7706
|
__decorate([
|
|
7666
7707
|
pathType(true)
|
|
7667
|
-
], UI.prototype, "closed",
|
|
7708
|
+
], UI.prototype, "closed", void 0);
|
|
7668
7709
|
__decorate([
|
|
7669
7710
|
boundsType(0)
|
|
7670
|
-
], UI.prototype, "padding",
|
|
7711
|
+
], UI.prototype, "padding", void 0);
|
|
7671
7712
|
__decorate([
|
|
7672
7713
|
boundsType(false)
|
|
7673
|
-
], UI.prototype, "lockRatio",
|
|
7714
|
+
], UI.prototype, "lockRatio", void 0);
|
|
7674
7715
|
__decorate([
|
|
7675
7716
|
boundsType()
|
|
7676
|
-
], UI.prototype, "widthRange",
|
|
7717
|
+
], UI.prototype, "widthRange", void 0);
|
|
7677
7718
|
__decorate([
|
|
7678
7719
|
boundsType()
|
|
7679
|
-
], UI.prototype, "heightRange",
|
|
7720
|
+
], UI.prototype, "heightRange", void 0);
|
|
7680
7721
|
__decorate([
|
|
7681
7722
|
dataType(false)
|
|
7682
|
-
], UI.prototype, "draggable",
|
|
7723
|
+
], UI.prototype, "draggable", void 0);
|
|
7683
7724
|
__decorate([
|
|
7684
7725
|
dataType()
|
|
7685
|
-
], UI.prototype, "dragBounds",
|
|
7726
|
+
], UI.prototype, "dragBounds", void 0);
|
|
7686
7727
|
__decorate([
|
|
7687
7728
|
dataType(false)
|
|
7688
|
-
], UI.prototype, "editable",
|
|
7729
|
+
], UI.prototype, "editable", void 0);
|
|
7689
7730
|
__decorate([
|
|
7690
7731
|
hitType(true)
|
|
7691
|
-
], UI.prototype, "hittable",
|
|
7732
|
+
], UI.prototype, "hittable", void 0);
|
|
7692
7733
|
__decorate([
|
|
7693
7734
|
hitType('path')
|
|
7694
|
-
], UI.prototype, "hitFill",
|
|
7735
|
+
], UI.prototype, "hitFill", void 0);
|
|
7695
7736
|
__decorate([
|
|
7696
7737
|
strokeType('path')
|
|
7697
|
-
], UI.prototype, "hitStroke",
|
|
7738
|
+
], UI.prototype, "hitStroke", void 0);
|
|
7698
7739
|
__decorate([
|
|
7699
7740
|
hitType(false)
|
|
7700
|
-
], UI.prototype, "hitBox",
|
|
7741
|
+
], UI.prototype, "hitBox", void 0);
|
|
7701
7742
|
__decorate([
|
|
7702
7743
|
hitType(true)
|
|
7703
|
-
], UI.prototype, "hitChildren",
|
|
7744
|
+
], UI.prototype, "hitChildren", void 0);
|
|
7704
7745
|
__decorate([
|
|
7705
7746
|
hitType(true)
|
|
7706
|
-
], UI.prototype, "hitSelf",
|
|
7747
|
+
], UI.prototype, "hitSelf", void 0);
|
|
7707
7748
|
__decorate([
|
|
7708
7749
|
hitType()
|
|
7709
|
-
], UI.prototype, "hitRadius",
|
|
7750
|
+
], UI.prototype, "hitRadius", void 0);
|
|
7710
7751
|
__decorate([
|
|
7711
7752
|
cursorType('')
|
|
7712
|
-
], UI.prototype, "cursor",
|
|
7753
|
+
], UI.prototype, "cursor", void 0);
|
|
7713
7754
|
__decorate([
|
|
7714
7755
|
surfaceType()
|
|
7715
|
-
], UI.prototype, "fill",
|
|
7756
|
+
], UI.prototype, "fill", void 0);
|
|
7716
7757
|
__decorate([
|
|
7717
7758
|
strokeType()
|
|
7718
|
-
], UI.prototype, "stroke",
|
|
7759
|
+
], UI.prototype, "stroke", void 0);
|
|
7719
7760
|
__decorate([
|
|
7720
7761
|
strokeType('inside')
|
|
7721
|
-
], UI.prototype, "strokeAlign",
|
|
7762
|
+
], UI.prototype, "strokeAlign", void 0);
|
|
7722
7763
|
__decorate([
|
|
7723
7764
|
strokeType(1)
|
|
7724
|
-
], UI.prototype, "strokeWidth",
|
|
7765
|
+
], UI.prototype, "strokeWidth", void 0);
|
|
7725
7766
|
__decorate([
|
|
7726
7767
|
strokeType(false)
|
|
7727
|
-
], UI.prototype, "strokeWidthFixed",
|
|
7768
|
+
], UI.prototype, "strokeWidthFixed", void 0);
|
|
7728
7769
|
__decorate([
|
|
7729
7770
|
strokeType('none')
|
|
7730
|
-
], UI.prototype, "strokeCap",
|
|
7771
|
+
], UI.prototype, "strokeCap", void 0);
|
|
7731
7772
|
__decorate([
|
|
7732
7773
|
strokeType('miter')
|
|
7733
|
-
], UI.prototype, "strokeJoin",
|
|
7774
|
+
], UI.prototype, "strokeJoin", void 0);
|
|
7734
7775
|
__decorate([
|
|
7735
7776
|
strokeType()
|
|
7736
|
-
], UI.prototype, "dashPattern",
|
|
7777
|
+
], UI.prototype, "dashPattern", void 0);
|
|
7737
7778
|
__decorate([
|
|
7738
7779
|
strokeType()
|
|
7739
|
-
], UI.prototype, "dashOffset",
|
|
7780
|
+
], UI.prototype, "dashOffset", void 0);
|
|
7740
7781
|
__decorate([
|
|
7741
7782
|
strokeType(10)
|
|
7742
|
-
], UI.prototype, "miterLimit",
|
|
7783
|
+
], UI.prototype, "miterLimit", void 0);
|
|
7743
7784
|
__decorate([
|
|
7744
7785
|
pathType(0)
|
|
7745
|
-
], UI.prototype, "cornerRadius",
|
|
7786
|
+
], UI.prototype, "cornerRadius", void 0);
|
|
7746
7787
|
__decorate([
|
|
7747
7788
|
pathType()
|
|
7748
|
-
], UI.prototype, "cornerSmoothing",
|
|
7789
|
+
], UI.prototype, "cornerSmoothing", void 0);
|
|
7790
|
+
__decorate([
|
|
7791
|
+
effectType()
|
|
7792
|
+
], UI.prototype, "shadow", void 0);
|
|
7749
7793
|
__decorate([
|
|
7750
7794
|
effectType()
|
|
7751
|
-
], UI.prototype, "
|
|
7795
|
+
], UI.prototype, "innerShadow", void 0);
|
|
7752
7796
|
__decorate([
|
|
7753
7797
|
effectType()
|
|
7754
|
-
], UI.prototype, "
|
|
7798
|
+
], UI.prototype, "blur", void 0);
|
|
7755
7799
|
__decorate([
|
|
7756
7800
|
effectType()
|
|
7757
|
-
], UI.prototype, "
|
|
7801
|
+
], UI.prototype, "backgroundBlur", void 0);
|
|
7758
7802
|
__decorate([
|
|
7759
7803
|
effectType()
|
|
7760
|
-
], UI.prototype, "
|
|
7804
|
+
], UI.prototype, "grayscale", void 0);
|
|
7761
7805
|
__decorate([
|
|
7762
7806
|
effectType()
|
|
7763
|
-
], UI.prototype, "
|
|
7807
|
+
], UI.prototype, "filter", void 0);
|
|
7764
7808
|
__decorate([
|
|
7765
7809
|
dataType({})
|
|
7766
|
-
], UI.prototype, "data",
|
|
7810
|
+
], UI.prototype, "data", void 0);
|
|
7767
7811
|
__decorate([
|
|
7768
7812
|
rewrite(Leaf.prototype.reset)
|
|
7769
7813
|
], UI.prototype, "reset", null);
|
|
@@ -7824,7 +7868,7 @@ let Group = class Group extends UI {
|
|
|
7824
7868
|
};
|
|
7825
7869
|
__decorate([
|
|
7826
7870
|
dataProcessor(GroupData)
|
|
7827
|
-
], Group.prototype, "__",
|
|
7871
|
+
], Group.prototype, "__", void 0);
|
|
7828
7872
|
Group = __decorate([
|
|
7829
7873
|
useModule(Branch),
|
|
7830
7874
|
registerUI()
|
|
@@ -7837,7 +7881,7 @@ let Leafer = Leafer_1 = class Leafer extends Group {
|
|
|
7837
7881
|
get isApp() { return false; }
|
|
7838
7882
|
get app() { return this.parent || this; }
|
|
7839
7883
|
get isLeafer() { return true; }
|
|
7840
|
-
get imageReady() { return this.viewReady &&
|
|
7884
|
+
get imageReady() { return this.viewReady && Resource.isComplete; }
|
|
7841
7885
|
get layoutLocked() { return !this.layouter.running; }
|
|
7842
7886
|
get FPS() { return this.renderer ? this.renderer.FPS : 60; }
|
|
7843
7887
|
get cursorPoint() { return (this.interaction && this.interaction.hoverData) || { x: this.width / 2, y: this.height / 2 }; }
|
|
@@ -8048,13 +8092,13 @@ let Leafer = Leafer_1 = class Leafer extends Group {
|
|
|
8048
8092
|
WaitHelper.run(this.__viewReadyWait);
|
|
8049
8093
|
}
|
|
8050
8094
|
__onLayoutEnd() {
|
|
8051
|
-
const { grow,
|
|
8095
|
+
const { grow, width: fixedWidth, height: fixedHeight } = this.config;
|
|
8052
8096
|
if (grow) {
|
|
8053
8097
|
let { width, height, pixelRatio } = this;
|
|
8054
8098
|
const bounds = grow === 'box' ? this.worldBoxBounds : this.__world;
|
|
8055
|
-
if (
|
|
8099
|
+
if (!fixedWidth)
|
|
8056
8100
|
width = Math.max(1, bounds.x + bounds.width);
|
|
8057
|
-
if (
|
|
8101
|
+
if (!fixedHeight)
|
|
8058
8102
|
height = Math.max(1, bounds.y + bounds.height);
|
|
8059
8103
|
this.__doResize({ width, height, pixelRatio });
|
|
8060
8104
|
}
|
|
@@ -8132,7 +8176,7 @@ let Leafer = Leafer_1 = class Leafer extends Group {
|
|
|
8132
8176
|
list.push(item);
|
|
8133
8177
|
this.requestRender();
|
|
8134
8178
|
}
|
|
8135
|
-
zoom(_zoomType, _padding, _fixedScale) {
|
|
8179
|
+
zoom(_zoomType, _padding, _fixedScale, _transition) {
|
|
8136
8180
|
return Plugin.need('view');
|
|
8137
8181
|
}
|
|
8138
8182
|
getValidMove(moveX, moveY) { return { x: moveX, y: moveY }; }
|
|
@@ -8197,10 +8241,10 @@ let Leafer = Leafer_1 = class Leafer extends Group {
|
|
|
8197
8241
|
Leafer.list = new LeafList();
|
|
8198
8242
|
__decorate([
|
|
8199
8243
|
dataProcessor(LeaferData)
|
|
8200
|
-
], Leafer.prototype, "__",
|
|
8244
|
+
], Leafer.prototype, "__", void 0);
|
|
8201
8245
|
__decorate([
|
|
8202
8246
|
boundsType()
|
|
8203
|
-
], Leafer.prototype, "pixelRatio",
|
|
8247
|
+
], Leafer.prototype, "pixelRatio", void 0);
|
|
8204
8248
|
Leafer = Leafer_1 = __decorate([
|
|
8205
8249
|
registerUI()
|
|
8206
8250
|
], Leafer);
|
|
@@ -8213,7 +8257,7 @@ let Rect = class Rect extends UI {
|
|
|
8213
8257
|
};
|
|
8214
8258
|
__decorate([
|
|
8215
8259
|
dataProcessor(RectData)
|
|
8216
|
-
], Rect.prototype, "__",
|
|
8260
|
+
], Rect.prototype, "__", void 0);
|
|
8217
8261
|
Rect = __decorate([
|
|
8218
8262
|
useModule(RectRender),
|
|
8219
8263
|
rewriteAble(),
|
|
@@ -8304,13 +8348,13 @@ let Box = class Box extends Group {
|
|
|
8304
8348
|
};
|
|
8305
8349
|
__decorate([
|
|
8306
8350
|
dataProcessor(BoxData)
|
|
8307
|
-
], Box.prototype, "__",
|
|
8351
|
+
], Box.prototype, "__", void 0);
|
|
8308
8352
|
__decorate([
|
|
8309
8353
|
dataType(false)
|
|
8310
|
-
], Box.prototype, "resizeChildren",
|
|
8354
|
+
], Box.prototype, "resizeChildren", void 0);
|
|
8311
8355
|
__decorate([
|
|
8312
8356
|
affectRenderBoundsType('show')
|
|
8313
|
-
], Box.prototype, "overflow",
|
|
8357
|
+
], Box.prototype, "overflow", void 0);
|
|
8314
8358
|
__decorate([
|
|
8315
8359
|
rewrite(rect$1.__updateStrokeSpread)
|
|
8316
8360
|
], Box.prototype, "__updateStrokeSpread", null);
|
|
@@ -8349,13 +8393,13 @@ let Frame = class Frame extends Box {
|
|
|
8349
8393
|
};
|
|
8350
8394
|
__decorate([
|
|
8351
8395
|
dataProcessor(FrameData)
|
|
8352
|
-
], Frame.prototype, "__",
|
|
8396
|
+
], Frame.prototype, "__", void 0);
|
|
8353
8397
|
__decorate([
|
|
8354
8398
|
surfaceType('#FFFFFF')
|
|
8355
|
-
], Frame.prototype, "fill",
|
|
8399
|
+
], Frame.prototype, "fill", void 0);
|
|
8356
8400
|
__decorate([
|
|
8357
8401
|
affectRenderBoundsType('hide')
|
|
8358
|
-
], Frame.prototype, "overflow",
|
|
8402
|
+
], Frame.prototype, "overflow", void 0);
|
|
8359
8403
|
Frame = __decorate([
|
|
8360
8404
|
registerUI()
|
|
8361
8405
|
], Frame);
|
|
@@ -8402,16 +8446,16 @@ let Ellipse = class Ellipse extends UI {
|
|
|
8402
8446
|
};
|
|
8403
8447
|
__decorate([
|
|
8404
8448
|
dataProcessor(EllipseData)
|
|
8405
|
-
], Ellipse.prototype, "__",
|
|
8449
|
+
], Ellipse.prototype, "__", void 0);
|
|
8406
8450
|
__decorate([
|
|
8407
8451
|
pathType(0)
|
|
8408
|
-
], Ellipse.prototype, "innerRadius",
|
|
8452
|
+
], Ellipse.prototype, "innerRadius", void 0);
|
|
8409
8453
|
__decorate([
|
|
8410
8454
|
pathType(0)
|
|
8411
|
-
], Ellipse.prototype, "startAngle",
|
|
8455
|
+
], Ellipse.prototype, "startAngle", void 0);
|
|
8412
8456
|
__decorate([
|
|
8413
8457
|
pathType(0)
|
|
8414
|
-
], Ellipse.prototype, "endAngle",
|
|
8458
|
+
], Ellipse.prototype, "endAngle", void 0);
|
|
8415
8459
|
Ellipse = __decorate([
|
|
8416
8460
|
registerUI()
|
|
8417
8461
|
], Ellipse);
|
|
@@ -8470,22 +8514,22 @@ let Line = class Line extends UI {
|
|
|
8470
8514
|
};
|
|
8471
8515
|
__decorate([
|
|
8472
8516
|
dataProcessor(LineData)
|
|
8473
|
-
], Line.prototype, "__",
|
|
8517
|
+
], Line.prototype, "__", void 0);
|
|
8474
8518
|
__decorate([
|
|
8475
8519
|
affectStrokeBoundsType('center')
|
|
8476
|
-
], Line.prototype, "strokeAlign",
|
|
8520
|
+
], Line.prototype, "strokeAlign", void 0);
|
|
8477
8521
|
__decorate([
|
|
8478
8522
|
boundsType(0)
|
|
8479
|
-
], Line.prototype, "height",
|
|
8523
|
+
], Line.prototype, "height", void 0);
|
|
8480
8524
|
__decorate([
|
|
8481
8525
|
pathType()
|
|
8482
|
-
], Line.prototype, "points",
|
|
8526
|
+
], Line.prototype, "points", void 0);
|
|
8483
8527
|
__decorate([
|
|
8484
8528
|
pathType(0)
|
|
8485
|
-
], Line.prototype, "curve",
|
|
8529
|
+
], Line.prototype, "curve", void 0);
|
|
8486
8530
|
__decorate([
|
|
8487
8531
|
pathType(false)
|
|
8488
|
-
], Line.prototype, "closed",
|
|
8532
|
+
], Line.prototype, "closed", void 0);
|
|
8489
8533
|
Line = __decorate([
|
|
8490
8534
|
registerUI()
|
|
8491
8535
|
], Line);
|
|
@@ -8518,16 +8562,16 @@ let Polygon = class Polygon extends UI {
|
|
|
8518
8562
|
};
|
|
8519
8563
|
__decorate([
|
|
8520
8564
|
dataProcessor(PolygonData)
|
|
8521
|
-
], Polygon.prototype, "__",
|
|
8565
|
+
], Polygon.prototype, "__", void 0);
|
|
8522
8566
|
__decorate([
|
|
8523
8567
|
pathType(3)
|
|
8524
|
-
], Polygon.prototype, "sides",
|
|
8568
|
+
], Polygon.prototype, "sides", void 0);
|
|
8525
8569
|
__decorate([
|
|
8526
8570
|
pathType()
|
|
8527
|
-
], Polygon.prototype, "points",
|
|
8571
|
+
], Polygon.prototype, "points", void 0);
|
|
8528
8572
|
__decorate([
|
|
8529
8573
|
pathType(0)
|
|
8530
|
-
], Polygon.prototype, "curve",
|
|
8574
|
+
], Polygon.prototype, "curve", void 0);
|
|
8531
8575
|
__decorate([
|
|
8532
8576
|
rewrite(line.__updateRenderPath)
|
|
8533
8577
|
], Polygon.prototype, "__updateRenderPath", null);
|
|
@@ -8559,13 +8603,13 @@ let Star = class Star extends UI {
|
|
|
8559
8603
|
};
|
|
8560
8604
|
__decorate([
|
|
8561
8605
|
dataProcessor(StarData)
|
|
8562
|
-
], Star.prototype, "__",
|
|
8606
|
+
], Star.prototype, "__", void 0);
|
|
8563
8607
|
__decorate([
|
|
8564
8608
|
pathType(5)
|
|
8565
|
-
], Star.prototype, "corners",
|
|
8609
|
+
], Star.prototype, "corners", void 0);
|
|
8566
8610
|
__decorate([
|
|
8567
8611
|
pathType(0.382)
|
|
8568
|
-
], Star.prototype, "innerRadius",
|
|
8612
|
+
], Star.prototype, "innerRadius", void 0);
|
|
8569
8613
|
Star = __decorate([
|
|
8570
8614
|
registerUI()
|
|
8571
8615
|
], Star);
|
|
@@ -8587,10 +8631,10 @@ let Image = class Image extends Rect {
|
|
|
8587
8631
|
};
|
|
8588
8632
|
__decorate([
|
|
8589
8633
|
dataProcessor(ImageData)
|
|
8590
|
-
], Image.prototype, "__",
|
|
8634
|
+
], Image.prototype, "__", void 0);
|
|
8591
8635
|
__decorate([
|
|
8592
8636
|
boundsType('')
|
|
8593
|
-
], Image.prototype, "url",
|
|
8637
|
+
], Image.prototype, "url", void 0);
|
|
8594
8638
|
Image = __decorate([
|
|
8595
8639
|
registerUI()
|
|
8596
8640
|
], Image);
|
|
@@ -8653,25 +8697,25 @@ let Canvas = class Canvas extends Rect {
|
|
|
8653
8697
|
};
|
|
8654
8698
|
__decorate([
|
|
8655
8699
|
dataProcessor(CanvasData)
|
|
8656
|
-
], Canvas.prototype, "__",
|
|
8700
|
+
], Canvas.prototype, "__", void 0);
|
|
8657
8701
|
__decorate([
|
|
8658
8702
|
resizeType(100)
|
|
8659
|
-
], Canvas.prototype, "width",
|
|
8703
|
+
], Canvas.prototype, "width", void 0);
|
|
8660
8704
|
__decorate([
|
|
8661
8705
|
resizeType(100)
|
|
8662
|
-
], Canvas.prototype, "height",
|
|
8706
|
+
], Canvas.prototype, "height", void 0);
|
|
8663
8707
|
__decorate([
|
|
8664
8708
|
resizeType(1)
|
|
8665
|
-
], Canvas.prototype, "pixelRatio",
|
|
8709
|
+
], Canvas.prototype, "pixelRatio", void 0);
|
|
8666
8710
|
__decorate([
|
|
8667
8711
|
resizeType(true)
|
|
8668
|
-
], Canvas.prototype, "smooth",
|
|
8712
|
+
], Canvas.prototype, "smooth", void 0);
|
|
8669
8713
|
__decorate([
|
|
8670
8714
|
dataType(false)
|
|
8671
|
-
], Canvas.prototype, "safeResize",
|
|
8715
|
+
], Canvas.prototype, "safeResize", void 0);
|
|
8672
8716
|
__decorate([
|
|
8673
8717
|
resizeType()
|
|
8674
|
-
], Canvas.prototype, "contextSettings",
|
|
8718
|
+
], Canvas.prototype, "contextSettings", void 0);
|
|
8675
8719
|
Canvas = __decorate([
|
|
8676
8720
|
registerUI()
|
|
8677
8721
|
], Canvas);
|
|
@@ -8762,76 +8806,76 @@ let Text = class Text extends UI {
|
|
|
8762
8806
|
};
|
|
8763
8807
|
__decorate([
|
|
8764
8808
|
dataProcessor(TextData)
|
|
8765
|
-
], Text.prototype, "__",
|
|
8809
|
+
], Text.prototype, "__", void 0);
|
|
8766
8810
|
__decorate([
|
|
8767
8811
|
boundsType(0)
|
|
8768
|
-
], Text.prototype, "width",
|
|
8812
|
+
], Text.prototype, "width", void 0);
|
|
8769
8813
|
__decorate([
|
|
8770
8814
|
boundsType(0)
|
|
8771
|
-
], Text.prototype, "height",
|
|
8815
|
+
], Text.prototype, "height", void 0);
|
|
8772
8816
|
__decorate([
|
|
8773
8817
|
dataType(false)
|
|
8774
|
-
], Text.prototype, "resizeFontSize",
|
|
8818
|
+
], Text.prototype, "resizeFontSize", void 0);
|
|
8775
8819
|
__decorate([
|
|
8776
8820
|
surfaceType('#000000')
|
|
8777
|
-
], Text.prototype, "fill",
|
|
8821
|
+
], Text.prototype, "fill", void 0);
|
|
8778
8822
|
__decorate([
|
|
8779
8823
|
affectStrokeBoundsType('outside')
|
|
8780
|
-
], Text.prototype, "strokeAlign",
|
|
8824
|
+
], Text.prototype, "strokeAlign", void 0);
|
|
8781
8825
|
__decorate([
|
|
8782
8826
|
hitType('all')
|
|
8783
|
-
], Text.prototype, "hitFill",
|
|
8827
|
+
], Text.prototype, "hitFill", void 0);
|
|
8784
8828
|
__decorate([
|
|
8785
8829
|
boundsType('')
|
|
8786
|
-
], Text.prototype, "text",
|
|
8830
|
+
], Text.prototype, "text", void 0);
|
|
8787
8831
|
__decorate([
|
|
8788
8832
|
boundsType('caption')
|
|
8789
|
-
], Text.prototype, "fontFamily",
|
|
8833
|
+
], Text.prototype, "fontFamily", void 0);
|
|
8790
8834
|
__decorate([
|
|
8791
8835
|
boundsType(12)
|
|
8792
|
-
], Text.prototype, "fontSize",
|
|
8836
|
+
], Text.prototype, "fontSize", void 0);
|
|
8793
8837
|
__decorate([
|
|
8794
8838
|
boundsType('normal')
|
|
8795
|
-
], Text.prototype, "fontWeight",
|
|
8839
|
+
], Text.prototype, "fontWeight", void 0);
|
|
8796
8840
|
__decorate([
|
|
8797
8841
|
boundsType(false)
|
|
8798
|
-
], Text.prototype, "italic",
|
|
8842
|
+
], Text.prototype, "italic", void 0);
|
|
8799
8843
|
__decorate([
|
|
8800
8844
|
boundsType('none')
|
|
8801
|
-
], Text.prototype, "textCase",
|
|
8845
|
+
], Text.prototype, "textCase", void 0);
|
|
8802
8846
|
__decorate([
|
|
8803
8847
|
boundsType('none')
|
|
8804
|
-
], Text.prototype, "textDecoration",
|
|
8848
|
+
], Text.prototype, "textDecoration", void 0);
|
|
8805
8849
|
__decorate([
|
|
8806
8850
|
boundsType(0)
|
|
8807
|
-
], Text.prototype, "letterSpacing",
|
|
8851
|
+
], Text.prototype, "letterSpacing", void 0);
|
|
8808
8852
|
__decorate([
|
|
8809
8853
|
boundsType({ type: 'percent', value: 1.5 })
|
|
8810
|
-
], Text.prototype, "lineHeight",
|
|
8854
|
+
], Text.prototype, "lineHeight", void 0);
|
|
8811
8855
|
__decorate([
|
|
8812
8856
|
boundsType(0)
|
|
8813
|
-
], Text.prototype, "paraIndent",
|
|
8857
|
+
], Text.prototype, "paraIndent", void 0);
|
|
8814
8858
|
__decorate([
|
|
8815
8859
|
boundsType(0)
|
|
8816
|
-
], Text.prototype, "paraSpacing",
|
|
8860
|
+
], Text.prototype, "paraSpacing", void 0);
|
|
8817
8861
|
__decorate([
|
|
8818
8862
|
boundsType('x')
|
|
8819
|
-
], Text.prototype, "writingMode",
|
|
8863
|
+
], Text.prototype, "writingMode", void 0);
|
|
8820
8864
|
__decorate([
|
|
8821
8865
|
boundsType('left')
|
|
8822
|
-
], Text.prototype, "textAlign",
|
|
8866
|
+
], Text.prototype, "textAlign", void 0);
|
|
8823
8867
|
__decorate([
|
|
8824
8868
|
boundsType('top')
|
|
8825
|
-
], Text.prototype, "verticalAlign",
|
|
8869
|
+
], Text.prototype, "verticalAlign", void 0);
|
|
8826
8870
|
__decorate([
|
|
8827
8871
|
boundsType(true)
|
|
8828
|
-
], Text.prototype, "autoSizeAlign",
|
|
8872
|
+
], Text.prototype, "autoSizeAlign", void 0);
|
|
8829
8873
|
__decorate([
|
|
8830
8874
|
boundsType('normal')
|
|
8831
|
-
], Text.prototype, "textWrap",
|
|
8875
|
+
], Text.prototype, "textWrap", void 0);
|
|
8832
8876
|
__decorate([
|
|
8833
8877
|
boundsType('show')
|
|
8834
|
-
], Text.prototype, "textOverflow",
|
|
8878
|
+
], Text.prototype, "textOverflow", void 0);
|
|
8835
8879
|
Text = __decorate([
|
|
8836
8880
|
registerUI()
|
|
8837
8881
|
], Text);
|
|
@@ -8844,10 +8888,10 @@ let Path = class Path extends UI {
|
|
|
8844
8888
|
};
|
|
8845
8889
|
__decorate([
|
|
8846
8890
|
dataProcessor(PathData)
|
|
8847
|
-
], Path.prototype, "__",
|
|
8891
|
+
], Path.prototype, "__", void 0);
|
|
8848
8892
|
__decorate([
|
|
8849
8893
|
affectStrokeBoundsType('center')
|
|
8850
|
-
], Path.prototype, "strokeAlign",
|
|
8894
|
+
], Path.prototype, "strokeAlign", void 0);
|
|
8851
8895
|
Path = __decorate([
|
|
8852
8896
|
registerUI()
|
|
8853
8897
|
], Path);
|
|
@@ -8886,10 +8930,10 @@ let Pen = class Pen extends Group {
|
|
|
8886
8930
|
};
|
|
8887
8931
|
__decorate([
|
|
8888
8932
|
dataProcessor(PenData)
|
|
8889
|
-
], Pen.prototype, "__",
|
|
8933
|
+
], Pen.prototype, "__", void 0);
|
|
8890
8934
|
__decorate([
|
|
8891
8935
|
penPathType()
|
|
8892
|
-
], Pen.prototype, "path",
|
|
8936
|
+
], Pen.prototype, "path", void 0);
|
|
8893
8937
|
Pen = __decorate([
|
|
8894
8938
|
useModule(PathCreator, ['set', 'path', 'paint']),
|
|
8895
8939
|
registerUI()
|
|
@@ -9125,7 +9169,7 @@ let DragEvent = class DragEvent extends PointerEvent {
|
|
|
9125
9169
|
const { draggable, dragBounds } = leaf, move = leaf.getLocalPoint(total, null, true);
|
|
9126
9170
|
PointHelper.move(move, start.x - leaf.x, start.y - leaf.y);
|
|
9127
9171
|
if (dragBounds)
|
|
9128
|
-
this.getMoveInDragBounds(leaf.
|
|
9172
|
+
this.getMoveInDragBounds(leaf.__localBoxBounds, dragBounds === 'parent' ? leaf.parent.boxBounds : dragBounds, move, true);
|
|
9129
9173
|
if (draggable === 'x')
|
|
9130
9174
|
move.y = 0;
|
|
9131
9175
|
if (draggable === 'y')
|
|
@@ -9828,7 +9872,9 @@ class InteractionBase {
|
|
|
9828
9872
|
}
|
|
9829
9873
|
findPath(data, options) {
|
|
9830
9874
|
const { hitRadius, through } = this.p;
|
|
9831
|
-
const { bottomList } = this;
|
|
9875
|
+
const { bottomList, target } = this;
|
|
9876
|
+
if (!Platform.backgrounder && !data.origin)
|
|
9877
|
+
target && target.updateLayout();
|
|
9832
9878
|
const find = this.selector.getByPoint(data, hitRadius, Object.assign({ bottomList, name: data.type }, (options || { through })));
|
|
9833
9879
|
if (find.throughPath)
|
|
9834
9880
|
data.throughPath = find.throughPath;
|
|
@@ -10073,9 +10119,9 @@ leaf.__hitWorld = function (point) {
|
|
|
10073
10119
|
}
|
|
10074
10120
|
return this.__hit(inner);
|
|
10075
10121
|
};
|
|
10076
|
-
leaf.__hitFill = function (inner) { var _a; return (_a = this.__hitCanvas) === null || _a ===
|
|
10077
|
-
leaf.__hitStroke = function (inner, strokeWidth) { var _a; return (_a = this.__hitCanvas) === null || _a ===
|
|
10078
|
-
leaf.__hitPixel = function (inner) { var _a; return (_a = this.__hitCanvas) === null || _a ===
|
|
10122
|
+
leaf.__hitFill = function (inner) { var _a; return (_a = this.__hitCanvas) === null || _a === void 0 ? void 0 : _a.hitFill(inner, this.__.windingRule); };
|
|
10123
|
+
leaf.__hitStroke = function (inner, strokeWidth) { var _a; return (_a = this.__hitCanvas) === null || _a === void 0 ? void 0 : _a.hitStroke(inner, strokeWidth); };
|
|
10124
|
+
leaf.__hitPixel = function (inner) { var _a; return (_a = this.__hitCanvas) === null || _a === void 0 ? void 0 : _a.hitPixel(inner, this.__layout.renderBounds, this.__hitCanvas.hitScale); };
|
|
10079
10125
|
leaf.__drawHitPath = function (canvas) { if (canvas)
|
|
10080
10126
|
this.__drawRenderPath(canvas); };
|
|
10081
10127
|
|
|
@@ -10163,8 +10209,8 @@ function getSelector(ui) {
|
|
|
10163
10209
|
return ui.leafer ? ui.leafer.selector : (Platform.selector || (Platform.selector = Creator.selector()));
|
|
10164
10210
|
}
|
|
10165
10211
|
Group.prototype.pick = function (hitPoint, options) {
|
|
10166
|
-
this.leafer || this.updateLayout();
|
|
10167
10212
|
options || (options = emptyData);
|
|
10213
|
+
this.updateLayout();
|
|
10168
10214
|
return getSelector(this).getByPoint(hitPoint, options.hitRadius || 0, Object.assign(Object.assign({}, options), { target: this }));
|
|
10169
10215
|
};
|
|
10170
10216
|
|
|
@@ -10653,7 +10699,7 @@ function getPatternData(paint, box, image) {
|
|
|
10653
10699
|
box = tempBox.set(box).shrink(paint.padding);
|
|
10654
10700
|
if (paint.mode === 'strench')
|
|
10655
10701
|
paint.mode = 'stretch';
|
|
10656
|
-
const { opacity, mode, align, offset, scale, size, rotation, repeat } = paint;
|
|
10702
|
+
const { opacity, mode, align, offset, scale, size, rotation, repeat, filters } = paint;
|
|
10657
10703
|
const sameBox = box.width === width && box.height === height;
|
|
10658
10704
|
const data = { mode };
|
|
10659
10705
|
const swapSize = align !== 'center' && (rotation || 0) % 180 === 90;
|
|
@@ -10716,6 +10762,8 @@ function getPatternData(paint, box, image) {
|
|
|
10716
10762
|
data.height = height;
|
|
10717
10763
|
if (opacity)
|
|
10718
10764
|
data.opacity = opacity;
|
|
10765
|
+
if (filters)
|
|
10766
|
+
data.filters = filters;
|
|
10719
10767
|
if (repeat)
|
|
10720
10768
|
data.repeat = typeof repeat === 'string' ? (repeat === 'x' ? 'repeat-x' : 'repeat-y') : 'repeat';
|
|
10721
10769
|
return data;
|
|
@@ -10818,7 +10866,7 @@ function createPattern(ui, paint, pixelRatio) {
|
|
|
10818
10866
|
scaleX = abs$1(scaleX);
|
|
10819
10867
|
scaleY = abs$1(scaleY);
|
|
10820
10868
|
const { image, data } = paint;
|
|
10821
|
-
let imageScale, imageMatrix, { width, height, scaleX: sx, scaleY: sy,
|
|
10869
|
+
let imageScale, imageMatrix, { width, height, scaleX: sx, scaleY: sy, transform, repeat } = data;
|
|
10822
10870
|
if (sx) {
|
|
10823
10871
|
imageMatrix = get$1();
|
|
10824
10872
|
copy$1(imageMatrix, transform);
|
|
@@ -10861,7 +10909,7 @@ function createPattern(ui, paint, pixelRatio) {
|
|
|
10861
10909
|
}
|
|
10862
10910
|
scale(imageMatrix, 1 / scaleX, 1 / scaleY);
|
|
10863
10911
|
}
|
|
10864
|
-
const canvas = image.getCanvas(ceil(width) || 1, ceil(height) || 1, opacity);
|
|
10912
|
+
const canvas = image.getCanvas(ceil(width) || 1, ceil(height) || 1, data.opacity, data.filters);
|
|
10865
10913
|
const pattern = image.getPattern(canvas, repeat || (Platform.origin.noRepeat || 'no-repeat'), imageMatrix, paint);
|
|
10866
10914
|
paint.style = pattern;
|
|
10867
10915
|
paint.patternId = id;
|
|
@@ -10905,7 +10953,7 @@ function checkImage(ui, canvas, paint, allowPaint) {
|
|
|
10905
10953
|
canvas.opacity *= data.opacity;
|
|
10906
10954
|
if (data.transform)
|
|
10907
10955
|
canvas.transform(data.transform);
|
|
10908
|
-
canvas.drawImage(paint.image.
|
|
10956
|
+
canvas.drawImage(paint.image.getFull(data.filters), 0, 0, data.width, data.height);
|
|
10909
10957
|
canvas.restore();
|
|
10910
10958
|
return true;
|
|
10911
10959
|
}
|
|
@@ -10915,7 +10963,7 @@ function checkImage(ui, canvas, paint, allowPaint) {
|
|
|
10915
10963
|
}
|
|
10916
10964
|
else {
|
|
10917
10965
|
if (!paint.patternTask) {
|
|
10918
|
-
paint.patternTask = ImageManager.patternTasker.add(() => __awaiter(this,
|
|
10966
|
+
paint.patternTask = ImageManager.patternTasker.add(() => __awaiter(this, void 0, void 0, function* () {
|
|
10919
10967
|
paint.patternTask = null;
|
|
10920
10968
|
if (canvas.bounds.hit(ui.__nowWorld))
|
|
10921
10969
|
createPattern(ui, paint, pixelRatio);
|
|
@@ -11818,5 +11866,5 @@ if (platform === 'ios') {
|
|
|
11818
11866
|
};
|
|
11819
11867
|
}
|
|
11820
11868
|
|
|
11821
|
-
export { AlignHelper, Answer, App, AroundHelper, AutoBounds, BezierHelper, Bounds, BoundsHelper, Box, BoxData, Branch, BranchHelper, BranchRender, Canvas, CanvasData, CanvasManager, ChildEvent, ColorConvert, Creator, Cursor, DataHelper, Debug, Direction4, Direction9, DragEvent, Dragger, DropEvent, Effect, Ellipse, EllipseData, EllipseHelper, Event, EventCreator, Eventer, Export, FileHelper, 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, NeedConvertToCanvasCommandMap, OneRadian, PI2, PI_2, Paint, PaintGradient, PaintImage, Path, PathArrow, PathBounds, PathCommandDataHelper, PathCommandMap, 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, RotateEvent, Run, Selector, Star, StarData, State, StringNumberMap, SwipeEvent, TaskItem, TaskProcessor, Text, TextConvert, TextData, Transition, TwoPointBoundsHelper, UI, UIBounds, UICreator, UIData, UIEvent, UIRender, UnitConvert, WaitHelper, WatchEvent, Watcher, ZoomEvent, 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 };
|
|
11869
|
+
export { AlignHelper, Answer, App, AroundHelper, AutoBounds, BezierHelper, Bounds, BoundsHelper, Box, BoxData, Branch, BranchHelper, BranchRender, Canvas, CanvasData, CanvasManager, ChildEvent, ColorConvert, Creator, Cursor, DataHelper, Debug, Direction4, Direction9, DragEvent, Dragger, DropEvent, Effect, Ellipse, EllipseData, EllipseHelper, Event, EventCreator, Eventer, Export, FileHelper, Filter, 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, NeedConvertToCanvasCommandMap, OneRadian, PI2, PI_2, Paint, PaintGradient, PaintImage, Path, PathArrow, PathBounds, PathCommandDataHelper, PathCommandMap, 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, Transition, TwoPointBoundsHelper, UI, UIBounds, UICreator, UIData, UIEvent, UIRender, UnitConvert, WaitHelper, WatchEvent, Watcher, ZoomEvent, 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 };
|
|
11822
11870
|
//# sourceMappingURL=miniapp.module.js.map
|