@leafer-ui/worker 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/worker.cjs +12 -9
- package/dist/worker.cjs.map +1 -1
- package/dist/worker.esm.js +14 -11
- package/dist/worker.esm.js.map +1 -1
- package/dist/worker.esm.min.js +1 -1
- package/dist/worker.esm.min.js.map +1 -1
- package/dist/worker.js +316 -266
- package/dist/worker.js.map +1 -1
- package/dist/worker.min.cjs +1 -1
- package/dist/worker.min.cjs.map +1 -1
- package/dist/worker.min.js +1 -1
- package/dist/worker.min.js.map +1 -1
- package/dist/worker.module.js +315 -267
- package/dist/worker.module.js.map +1 -1
- package/dist/worker.module.min.js +1 -1
- package/dist/worker.module.min.js.map +1 -1
- package/package.json +10 -10
package/dist/worker.js
CHANGED
|
@@ -1377,7 +1377,7 @@ var LeaferUI = (function (exports) {
|
|
|
1377
1377
|
}
|
|
1378
1378
|
const D$4 = Debug;
|
|
1379
1379
|
|
|
1380
|
-
const debug$
|
|
1380
|
+
const debug$f = Debug.get('RunTime');
|
|
1381
1381
|
const Run = {
|
|
1382
1382
|
currentId: 0,
|
|
1383
1383
|
currentName: '',
|
|
@@ -1386,24 +1386,24 @@ var LeaferUI = (function (exports) {
|
|
|
1386
1386
|
nameToIdMap: {},
|
|
1387
1387
|
start(name, microsecond) {
|
|
1388
1388
|
const id = IncrementId.create(IncrementId.RUNTIME);
|
|
1389
|
-
R.currentId = R.idMap[id] = microsecond ? performance.now() : Date.now();
|
|
1390
|
-
R.currentName = R.nameMap[id] = name;
|
|
1391
|
-
R.nameToIdMap[name] = id;
|
|
1389
|
+
R$1.currentId = R$1.idMap[id] = microsecond ? performance.now() : Date.now();
|
|
1390
|
+
R$1.currentName = R$1.nameMap[id] = name;
|
|
1391
|
+
R$1.nameToIdMap[name] = id;
|
|
1392
1392
|
return id;
|
|
1393
1393
|
},
|
|
1394
1394
|
end(id, microsecond) {
|
|
1395
|
-
const time = R.idMap[id], name = R.nameMap[id];
|
|
1395
|
+
const time = R$1.idMap[id], name = R$1.nameMap[id];
|
|
1396
1396
|
const duration = microsecond ? (performance.now() - time) / 1000 : Date.now() - time;
|
|
1397
|
-
R.idMap[id] = R.nameMap[id] = R.nameToIdMap[name] = undefined;
|
|
1398
|
-
debug$
|
|
1397
|
+
R$1.idMap[id] = R$1.nameMap[id] = R$1.nameToIdMap[name] = undefined;
|
|
1398
|
+
debug$f.log(name, duration, 'ms');
|
|
1399
1399
|
},
|
|
1400
1400
|
endOfName(name, microsecond) {
|
|
1401
|
-
const id = R.nameToIdMap[name];
|
|
1401
|
+
const id = R$1.nameToIdMap[name];
|
|
1402
1402
|
if (id !== undefined)
|
|
1403
|
-
R.end(id, microsecond);
|
|
1403
|
+
R$1.end(id, microsecond);
|
|
1404
1404
|
}
|
|
1405
1405
|
};
|
|
1406
|
-
const R = Run;
|
|
1406
|
+
const R$1 = Run;
|
|
1407
1407
|
|
|
1408
1408
|
const check = [];
|
|
1409
1409
|
const Plugin = {
|
|
@@ -1424,18 +1424,18 @@ var LeaferUI = (function (exports) {
|
|
|
1424
1424
|
};
|
|
1425
1425
|
setTimeout(() => check.forEach(name => Plugin.has(name, true)));
|
|
1426
1426
|
|
|
1427
|
-
const debug$
|
|
1427
|
+
const debug$e = Debug.get('UICreator');
|
|
1428
1428
|
const UICreator = {
|
|
1429
1429
|
list: {},
|
|
1430
1430
|
register(UI) {
|
|
1431
1431
|
const { __tag: tag } = UI.prototype;
|
|
1432
1432
|
if (list$1[tag])
|
|
1433
|
-
debug$
|
|
1433
|
+
debug$e.repeat(tag);
|
|
1434
1434
|
list$1[tag] = UI;
|
|
1435
1435
|
},
|
|
1436
1436
|
get(tag, data, x, y, width, height) {
|
|
1437
1437
|
if (!list$1[tag])
|
|
1438
|
-
debug$
|
|
1438
|
+
debug$e.error('not register ' + tag);
|
|
1439
1439
|
const ui = new list$1[tag](data);
|
|
1440
1440
|
if (x !== undefined) {
|
|
1441
1441
|
ui.x = x;
|
|
@@ -1451,7 +1451,7 @@ var LeaferUI = (function (exports) {
|
|
|
1451
1451
|
};
|
|
1452
1452
|
const { list: list$1 } = UICreator;
|
|
1453
1453
|
|
|
1454
|
-
const debug$
|
|
1454
|
+
const debug$d = Debug.get('EventCreator');
|
|
1455
1455
|
const EventCreator = {
|
|
1456
1456
|
nameList: {},
|
|
1457
1457
|
register(Event) {
|
|
@@ -1459,7 +1459,7 @@ var LeaferUI = (function (exports) {
|
|
|
1459
1459
|
Object.keys(Event).forEach(key => {
|
|
1460
1460
|
name = Event[key];
|
|
1461
1461
|
if (typeof name === 'string')
|
|
1462
|
-
nameList[name] && debug$
|
|
1462
|
+
nameList[name] && debug$d.repeat(name), nameList[name] = Event;
|
|
1463
1463
|
});
|
|
1464
1464
|
},
|
|
1465
1465
|
changeName(oldName, newName) {
|
|
@@ -1536,10 +1536,10 @@ var LeaferUI = (function (exports) {
|
|
|
1536
1536
|
Object.keys(merge).forEach(key => {
|
|
1537
1537
|
var _a, _b;
|
|
1538
1538
|
value = merge[key];
|
|
1539
|
-
if ((value === null || value ===
|
|
1539
|
+
if ((value === null || value === void 0 ? void 0 : value.constructor) === Object && ((_a = t[key]) === null || _a === void 0 ? void 0 : _a.constructor) === Object)
|
|
1540
1540
|
return assign(t[key], merge[key], exclude && exclude[key]);
|
|
1541
1541
|
if (exclude && (key in exclude)) {
|
|
1542
|
-
if (((_b = exclude[key]) === null || _b ===
|
|
1542
|
+
if (((_b = exclude[key]) === null || _b === void 0 ? void 0 : _b.constructor) === Object)
|
|
1543
1543
|
assign(t[key] = {}, merge[key], exclude[key]);
|
|
1544
1544
|
return;
|
|
1545
1545
|
}
|
|
@@ -1663,7 +1663,7 @@ var LeaferUI = (function (exports) {
|
|
|
1663
1663
|
const t = this;
|
|
1664
1664
|
if (t.blendMode === 'pass-through') {
|
|
1665
1665
|
const leaf = this.__leaf;
|
|
1666
|
-
if ((t.opacity < 1 && (leaf.isBranch || t.__hasMultiPaint)) || leaf.__hasEraser || t.eraser) {
|
|
1666
|
+
if ((t.opacity < 1 && (leaf.isBranch || t.__hasMultiPaint)) || leaf.__hasEraser || t.eraser || t.filter) {
|
|
1667
1667
|
t.__single = true;
|
|
1668
1668
|
}
|
|
1669
1669
|
else if (t.__single) {
|
|
@@ -1776,7 +1776,7 @@ var LeaferUI = (function (exports) {
|
|
|
1776
1776
|
}
|
|
1777
1777
|
setTransform(_a, _b, _c, _d, _e, _f) { }
|
|
1778
1778
|
resetTransform() { }
|
|
1779
|
-
getTransform() { return
|
|
1779
|
+
getTransform() { return void 0; }
|
|
1780
1780
|
save() { }
|
|
1781
1781
|
restore() { }
|
|
1782
1782
|
transform(a, b, c, d, e, f) {
|
|
@@ -1833,12 +1833,12 @@ var LeaferUI = (function (exports) {
|
|
|
1833
1833
|
ellipse(_x, _y, _radiusX, _radiusY, _rotation, _startAngle, _endAngle, _anticlockwise) { }
|
|
1834
1834
|
rect(_x, _y, _width, _height) { }
|
|
1835
1835
|
roundRect(_x, _y, _width, _height, _radius) { }
|
|
1836
|
-
createConicGradient(_startAngle, _x, _y) { return
|
|
1837
|
-
createLinearGradient(_x0, _y0, _x1, _y1) { return
|
|
1838
|
-
createPattern(_image, _repetition) { return
|
|
1839
|
-
createRadialGradient(_x0, _y0, _r0, _x1, _y1, _r1) { return
|
|
1836
|
+
createConicGradient(_startAngle, _x, _y) { return void 0; }
|
|
1837
|
+
createLinearGradient(_x0, _y0, _x1, _y1) { return void 0; }
|
|
1838
|
+
createPattern(_image, _repetition) { return void 0; }
|
|
1839
|
+
createRadialGradient(_x0, _y0, _r0, _x1, _y1, _r1) { return void 0; }
|
|
1840
1840
|
fillText(_text, _x, _y, _maxWidth) { }
|
|
1841
|
-
measureText(_text) { return
|
|
1841
|
+
measureText(_text) { return void 0; }
|
|
1842
1842
|
strokeText(_text, _x, _y, _maxWidth) { }
|
|
1843
1843
|
destroy() {
|
|
1844
1844
|
this.context = null;
|
|
@@ -1846,79 +1846,79 @@ var LeaferUI = (function (exports) {
|
|
|
1846
1846
|
}
|
|
1847
1847
|
__decorate([
|
|
1848
1848
|
contextAttr('imageSmoothingEnabled')
|
|
1849
|
-
], Canvas.prototype, "smooth",
|
|
1849
|
+
], Canvas.prototype, "smooth", void 0);
|
|
1850
1850
|
__decorate([
|
|
1851
1851
|
contextAttr('imageSmoothingQuality')
|
|
1852
|
-
], Canvas.prototype, "smoothLevel",
|
|
1852
|
+
], Canvas.prototype, "smoothLevel", void 0);
|
|
1853
1853
|
__decorate([
|
|
1854
1854
|
contextAttr('globalAlpha')
|
|
1855
|
-
], Canvas.prototype, "opacity",
|
|
1855
|
+
], Canvas.prototype, "opacity", void 0);
|
|
1856
1856
|
__decorate([
|
|
1857
1857
|
contextAttr()
|
|
1858
|
-
], Canvas.prototype, "fillStyle",
|
|
1858
|
+
], Canvas.prototype, "fillStyle", void 0);
|
|
1859
1859
|
__decorate([
|
|
1860
1860
|
contextAttr()
|
|
1861
|
-
], Canvas.prototype, "strokeStyle",
|
|
1861
|
+
], Canvas.prototype, "strokeStyle", void 0);
|
|
1862
1862
|
__decorate([
|
|
1863
1863
|
contextAttr('lineWidth')
|
|
1864
|
-
], Canvas.prototype, "strokeWidth",
|
|
1864
|
+
], Canvas.prototype, "strokeWidth", void 0);
|
|
1865
1865
|
__decorate([
|
|
1866
1866
|
contextAttr('lineCap')
|
|
1867
|
-
], Canvas.prototype, "strokeCap",
|
|
1867
|
+
], Canvas.prototype, "strokeCap", void 0);
|
|
1868
1868
|
__decorate([
|
|
1869
1869
|
contextAttr('lineJoin')
|
|
1870
|
-
], Canvas.prototype, "strokeJoin",
|
|
1870
|
+
], Canvas.prototype, "strokeJoin", void 0);
|
|
1871
1871
|
__decorate([
|
|
1872
1872
|
contextAttr('lineDashOffset')
|
|
1873
|
-
], Canvas.prototype, "dashOffset",
|
|
1873
|
+
], Canvas.prototype, "dashOffset", void 0);
|
|
1874
1874
|
__decorate([
|
|
1875
1875
|
contextAttr()
|
|
1876
|
-
], Canvas.prototype, "miterLimit",
|
|
1876
|
+
], Canvas.prototype, "miterLimit", void 0);
|
|
1877
1877
|
__decorate([
|
|
1878
1878
|
contextAttr()
|
|
1879
|
-
], Canvas.prototype, "shadowBlur",
|
|
1879
|
+
], Canvas.prototype, "shadowBlur", void 0);
|
|
1880
1880
|
__decorate([
|
|
1881
1881
|
contextAttr()
|
|
1882
|
-
], Canvas.prototype, "shadowColor",
|
|
1882
|
+
], Canvas.prototype, "shadowColor", void 0);
|
|
1883
1883
|
__decorate([
|
|
1884
1884
|
contextAttr()
|
|
1885
|
-
], Canvas.prototype, "shadowOffsetX",
|
|
1885
|
+
], Canvas.prototype, "shadowOffsetX", void 0);
|
|
1886
1886
|
__decorate([
|
|
1887
1887
|
contextAttr()
|
|
1888
|
-
], Canvas.prototype, "shadowOffsetY",
|
|
1888
|
+
], Canvas.prototype, "shadowOffsetY", void 0);
|
|
1889
1889
|
__decorate([
|
|
1890
1890
|
contextAttr()
|
|
1891
|
-
], Canvas.prototype, "filter",
|
|
1891
|
+
], Canvas.prototype, "filter", void 0);
|
|
1892
1892
|
__decorate([
|
|
1893
1893
|
contextAttr()
|
|
1894
|
-
], Canvas.prototype, "font",
|
|
1894
|
+
], Canvas.prototype, "font", void 0);
|
|
1895
1895
|
__decorate([
|
|
1896
1896
|
contextAttr()
|
|
1897
|
-
], Canvas.prototype, "fontKerning",
|
|
1897
|
+
], Canvas.prototype, "fontKerning", void 0);
|
|
1898
1898
|
__decorate([
|
|
1899
1899
|
contextAttr()
|
|
1900
|
-
], Canvas.prototype, "fontStretch",
|
|
1900
|
+
], Canvas.prototype, "fontStretch", void 0);
|
|
1901
1901
|
__decorate([
|
|
1902
1902
|
contextAttr()
|
|
1903
|
-
], Canvas.prototype, "fontVariantCaps",
|
|
1903
|
+
], Canvas.prototype, "fontVariantCaps", void 0);
|
|
1904
1904
|
__decorate([
|
|
1905
1905
|
contextAttr()
|
|
1906
|
-
], Canvas.prototype, "textAlign",
|
|
1906
|
+
], Canvas.prototype, "textAlign", void 0);
|
|
1907
1907
|
__decorate([
|
|
1908
1908
|
contextAttr()
|
|
1909
|
-
], Canvas.prototype, "textBaseline",
|
|
1909
|
+
], Canvas.prototype, "textBaseline", void 0);
|
|
1910
1910
|
__decorate([
|
|
1911
1911
|
contextAttr()
|
|
1912
|
-
], Canvas.prototype, "textRendering",
|
|
1912
|
+
], Canvas.prototype, "textRendering", void 0);
|
|
1913
1913
|
__decorate([
|
|
1914
1914
|
contextAttr()
|
|
1915
|
-
], Canvas.prototype, "wordSpacing",
|
|
1915
|
+
], Canvas.prototype, "wordSpacing", void 0);
|
|
1916
1916
|
__decorate([
|
|
1917
1917
|
contextAttr()
|
|
1918
|
-
], Canvas.prototype, "letterSpacing",
|
|
1918
|
+
], Canvas.prototype, "letterSpacing", void 0);
|
|
1919
1919
|
__decorate([
|
|
1920
1920
|
contextAttr()
|
|
1921
|
-
], Canvas.prototype, "direction",
|
|
1921
|
+
], Canvas.prototype, "direction", void 0);
|
|
1922
1922
|
__decorate([
|
|
1923
1923
|
contextMethod()
|
|
1924
1924
|
], Canvas.prototype, "setTransform", null);
|
|
@@ -2615,7 +2615,7 @@ var LeaferUI = (function (exports) {
|
|
|
2615
2615
|
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;
|
|
2616
2616
|
const { rect: rect$3, roundRect: roundRect$2, arcTo: arcTo$3, arc: arc$3, ellipse: ellipse$4, quadraticCurveTo: quadraticCurveTo$1 } = BezierHelper;
|
|
2617
2617
|
const { ellipticalArc } = EllipseHelper;
|
|
2618
|
-
const debug$
|
|
2618
|
+
const debug$c = Debug.get('PathConvert');
|
|
2619
2619
|
const setEndPoint$1 = {};
|
|
2620
2620
|
const PathConvert = {
|
|
2621
2621
|
current: { dot: 0 },
|
|
@@ -2856,7 +2856,7 @@ var LeaferUI = (function (exports) {
|
|
|
2856
2856
|
i += 6;
|
|
2857
2857
|
break;
|
|
2858
2858
|
default:
|
|
2859
|
-
debug$
|
|
2859
|
+
debug$c.error(`command: ${command} [index:${i}]`, old);
|
|
2860
2860
|
return data;
|
|
2861
2861
|
}
|
|
2862
2862
|
lastCommand = command;
|
|
@@ -2965,12 +2965,10 @@ var LeaferUI = (function (exports) {
|
|
|
2965
2965
|
},
|
|
2966
2966
|
arcTo(data, x1, y1, x2, y2, radius, lastX, lastY) {
|
|
2967
2967
|
if (lastX !== undefined) {
|
|
2968
|
-
const
|
|
2969
|
-
|
|
2970
|
-
}
|
|
2971
|
-
else {
|
|
2972
|
-
data.push(U$2, x1, y1, x2, y2, radius);
|
|
2968
|
+
const d = getMinDistanceFrom(lastX, lastY, x1, y1, x2, y2);
|
|
2969
|
+
radius = min(radius, min(d / 2, d / 2 * abs$2(tan(getRadianFrom(lastX, lastY, x1, y1, x2, y2) / 2))));
|
|
2973
2970
|
}
|
|
2971
|
+
data.push(U$2, x1, y1, x2, y2, radius);
|
|
2974
2972
|
},
|
|
2975
2973
|
drawEllipse(data, x, y, radiusX, radiusY, rotation, startAngle, endAngle, anticlockwise) {
|
|
2976
2974
|
BezierHelper.ellipse(null, x, y, radiusX, radiusY, rotation === undefined ? 0 : rotation, startAngle === undefined ? 0 : startAngle, endAngle === undefined ? 360 : endAngle, anticlockwise, null, null, startPoint);
|
|
@@ -3081,7 +3079,7 @@ var LeaferUI = (function (exports) {
|
|
|
3081
3079
|
}
|
|
3082
3080
|
|
|
3083
3081
|
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;
|
|
3084
|
-
const debug$
|
|
3082
|
+
const debug$b = Debug.get('PathDrawer');
|
|
3085
3083
|
const PathDrawer = {
|
|
3086
3084
|
drawPathByData(drawer, data) {
|
|
3087
3085
|
if (!data)
|
|
@@ -3144,7 +3142,7 @@ var LeaferUI = (function (exports) {
|
|
|
3144
3142
|
i += 6;
|
|
3145
3143
|
break;
|
|
3146
3144
|
default:
|
|
3147
|
-
debug$
|
|
3145
|
+
debug$b.error(`command: ${command} [index:${i}]`, data);
|
|
3148
3146
|
return;
|
|
3149
3147
|
}
|
|
3150
3148
|
}
|
|
@@ -3154,7 +3152,7 @@ var LeaferUI = (function (exports) {
|
|
|
3154
3152
|
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;
|
|
3155
3153
|
const { toTwoPointBounds, toTwoPointBoundsByQuadraticCurve, arcTo: arcTo$1, arc, ellipse: ellipse$1 } = BezierHelper;
|
|
3156
3154
|
const { addPointBounds, copy: copy$8, addPoint, setPoint, addBounds, toBounds: toBounds$2 } = TwoPointBoundsHelper;
|
|
3157
|
-
const debug$
|
|
3155
|
+
const debug$a = Debug.get('PathBounds');
|
|
3158
3156
|
let radius, radiusX, radiusY;
|
|
3159
3157
|
const tempPointBounds = {};
|
|
3160
3158
|
const setPointBounds = {};
|
|
@@ -3262,7 +3260,7 @@ var LeaferUI = (function (exports) {
|
|
|
3262
3260
|
i += 6;
|
|
3263
3261
|
break;
|
|
3264
3262
|
default:
|
|
3265
|
-
debug$
|
|
3263
|
+
debug$a.error(`command: ${command} [index:${i}]`, data);
|
|
3266
3264
|
return;
|
|
3267
3265
|
}
|
|
3268
3266
|
}
|
|
@@ -3378,7 +3376,7 @@ var LeaferUI = (function (exports) {
|
|
|
3378
3376
|
const F = FileHelper;
|
|
3379
3377
|
F.opacityTypes.forEach(type => F.upperCaseTypeMap[type] = type.toUpperCase());
|
|
3380
3378
|
|
|
3381
|
-
const debug$
|
|
3379
|
+
const debug$9 = Debug.get('TaskProcessor');
|
|
3382
3380
|
class TaskItem {
|
|
3383
3381
|
constructor(task) {
|
|
3384
3382
|
this.parallel = true;
|
|
@@ -3387,13 +3385,13 @@ var LeaferUI = (function (exports) {
|
|
|
3387
3385
|
this.task = task;
|
|
3388
3386
|
}
|
|
3389
3387
|
run() {
|
|
3390
|
-
return __awaiter(this,
|
|
3388
|
+
return __awaiter(this, void 0, void 0, function* () {
|
|
3391
3389
|
try {
|
|
3392
3390
|
if (this.task && !this.isComplete && this.parent.running)
|
|
3393
3391
|
yield this.task();
|
|
3394
3392
|
}
|
|
3395
3393
|
catch (error) {
|
|
3396
|
-
debug$
|
|
3394
|
+
debug$9.error(error);
|
|
3397
3395
|
}
|
|
3398
3396
|
});
|
|
3399
3397
|
}
|
|
@@ -3626,18 +3624,52 @@ var LeaferUI = (function (exports) {
|
|
|
3626
3624
|
}
|
|
3627
3625
|
}
|
|
3628
3626
|
|
|
3629
|
-
const
|
|
3627
|
+
const debug$8 = Debug.get('Resource');
|
|
3628
|
+
const Resource = {
|
|
3629
|
+
tasker: new TaskProcessor(),
|
|
3630
3630
|
map: {},
|
|
3631
|
+
get isComplete() { return R.tasker.isComplete; },
|
|
3632
|
+
set(key, value) {
|
|
3633
|
+
if (R.map[key])
|
|
3634
|
+
debug$8.repeat(key);
|
|
3635
|
+
R.map[key] = value;
|
|
3636
|
+
},
|
|
3637
|
+
get(key) {
|
|
3638
|
+
return R.map[key];
|
|
3639
|
+
},
|
|
3640
|
+
remove(key) {
|
|
3641
|
+
delete R.map[key];
|
|
3642
|
+
},
|
|
3643
|
+
loadImage(key, format) {
|
|
3644
|
+
return new Promise((resolve, reject) => {
|
|
3645
|
+
const image = this.setImage(key, key, format);
|
|
3646
|
+
image.load(() => resolve(image), (e) => reject(e));
|
|
3647
|
+
});
|
|
3648
|
+
},
|
|
3649
|
+
setImage(key, value, format) {
|
|
3650
|
+
let config;
|
|
3651
|
+
if (typeof value === 'string')
|
|
3652
|
+
config = { url: value };
|
|
3653
|
+
else if (!value.url)
|
|
3654
|
+
config = { url: key, view: value };
|
|
3655
|
+
if (config)
|
|
3656
|
+
format && (config.format = format), value = Creator.image(config);
|
|
3657
|
+
R.set(key, value);
|
|
3658
|
+
return value;
|
|
3659
|
+
},
|
|
3660
|
+
destroy() {
|
|
3661
|
+
R.map = {};
|
|
3662
|
+
}
|
|
3663
|
+
};
|
|
3664
|
+
const R = Resource;
|
|
3665
|
+
|
|
3666
|
+
const ImageManager = {
|
|
3631
3667
|
recycledList: [],
|
|
3632
|
-
tasker: new TaskProcessor(),
|
|
3633
3668
|
patternTasker: new TaskProcessor(),
|
|
3634
|
-
get isComplete() { return I$1.tasker.isComplete; },
|
|
3635
3669
|
get(config) {
|
|
3636
|
-
let image =
|
|
3637
|
-
if (!image)
|
|
3638
|
-
image = Creator.image(config);
|
|
3639
|
-
I$1.map[config.url] = image;
|
|
3640
|
-
}
|
|
3670
|
+
let image = Resource.get(config.url);
|
|
3671
|
+
if (!image)
|
|
3672
|
+
Resource.set(config.url, image = Creator.image(config));
|
|
3641
3673
|
image.use++;
|
|
3642
3674
|
return image;
|
|
3643
3675
|
},
|
|
@@ -3651,7 +3683,7 @@ var LeaferUI = (function (exports) {
|
|
|
3651
3683
|
if (list.length > 100) {
|
|
3652
3684
|
list.forEach(image => {
|
|
3653
3685
|
if (!image.use && image.url) {
|
|
3654
|
-
|
|
3686
|
+
Resource.remove(image.url);
|
|
3655
3687
|
image.destroy();
|
|
3656
3688
|
}
|
|
3657
3689
|
});
|
|
@@ -3678,7 +3710,6 @@ var LeaferUI = (function (exports) {
|
|
|
3678
3710
|
return false;
|
|
3679
3711
|
},
|
|
3680
3712
|
destroy() {
|
|
3681
|
-
I$1.map = {};
|
|
3682
3713
|
I$1.recycledList = [];
|
|
3683
3714
|
}
|
|
3684
3715
|
};
|
|
@@ -3692,21 +3723,19 @@ var LeaferUI = (function (exports) {
|
|
|
3692
3723
|
this.use = 0;
|
|
3693
3724
|
this.waitComplete = [];
|
|
3694
3725
|
this.innerId = create$1(IMAGE);
|
|
3695
|
-
this.config = config || { url: '' };
|
|
3696
|
-
|
|
3697
|
-
|
|
3726
|
+
this.config = config || (config = { url: '' });
|
|
3727
|
+
if (config.view) {
|
|
3728
|
+
const { view } = config;
|
|
3729
|
+
this.setView(view.config ? view.view : view);
|
|
3730
|
+
}
|
|
3731
|
+
ImageManager.isFormat('svg', config) && (this.isSVG = true);
|
|
3732
|
+
ImageManager.hasOpacityPixel(config) && (this.hasOpacityPixel = true);
|
|
3698
3733
|
}
|
|
3699
3734
|
load(onSuccess, onError) {
|
|
3700
3735
|
if (!this.loading) {
|
|
3701
3736
|
this.loading = true;
|
|
3702
|
-
|
|
3703
|
-
return yield Platform.origin.loadImage(this.url).then((img) => {
|
|
3704
|
-
this.ready = true;
|
|
3705
|
-
this.width = img.naturalWidth || img.width;
|
|
3706
|
-
this.height = img.naturalHeight || img.height;
|
|
3707
|
-
this.view = img;
|
|
3708
|
-
this.onComplete(true);
|
|
3709
|
-
}).catch((e) => {
|
|
3737
|
+
Resource.tasker.add(() => __awaiter(this, void 0, void 0, function* () {
|
|
3738
|
+
return yield Platform.origin.loadImage(this.url).then(img => this.setView(img)).catch((e) => {
|
|
3710
3739
|
this.error = e;
|
|
3711
3740
|
this.onComplete(false);
|
|
3712
3741
|
});
|
|
@@ -3724,6 +3753,13 @@ var LeaferUI = (function (exports) {
|
|
|
3724
3753
|
}
|
|
3725
3754
|
l[index] = l[index + 1] = undefined;
|
|
3726
3755
|
}
|
|
3756
|
+
setView(img) {
|
|
3757
|
+
this.ready = true;
|
|
3758
|
+
this.width = img.naturalWidth || img.width;
|
|
3759
|
+
this.height = img.naturalHeight || img.height;
|
|
3760
|
+
this.view = img;
|
|
3761
|
+
this.onComplete(true);
|
|
3762
|
+
}
|
|
3727
3763
|
onComplete(isSuccess) {
|
|
3728
3764
|
let odd;
|
|
3729
3765
|
this.waitComplete.forEach((item, index) => {
|
|
@@ -3742,6 +3778,9 @@ var LeaferUI = (function (exports) {
|
|
|
3742
3778
|
this.waitComplete.length = 0;
|
|
3743
3779
|
this.loading = false;
|
|
3744
3780
|
}
|
|
3781
|
+
getFull(_filters) {
|
|
3782
|
+
return this.view;
|
|
3783
|
+
}
|
|
3745
3784
|
getCanvas(width, height, opacity, _filters) {
|
|
3746
3785
|
width || (width = this.width);
|
|
3747
3786
|
height || (height = this.height);
|
|
@@ -5222,7 +5261,7 @@ var LeaferUI = (function (exports) {
|
|
|
5222
5261
|
if (this.__.eraser === 'path')
|
|
5223
5262
|
return this.__renderEraser(canvas, options);
|
|
5224
5263
|
const tempCanvas = canvas.getSameCanvas(true, true);
|
|
5225
|
-
this.__draw(tempCanvas, options);
|
|
5264
|
+
this.__draw(tempCanvas, options, canvas);
|
|
5226
5265
|
if (this.__worldFlipped) {
|
|
5227
5266
|
canvas.copyWorldByReset(tempCanvas, this.__nowWorld, null, this.__.__blendMode, true);
|
|
5228
5267
|
}
|
|
@@ -6015,7 +6054,7 @@ var LeaferUI = (function (exports) {
|
|
|
6015
6054
|
}
|
|
6016
6055
|
}
|
|
6017
6056
|
|
|
6018
|
-
const version = "1.4.
|
|
6057
|
+
const version = "1.4.1";
|
|
6019
6058
|
|
|
6020
6059
|
class LeaferCanvas extends LeaferCanvasBase {
|
|
6021
6060
|
get allowBackgroundColor() { return true; }
|
|
@@ -6360,7 +6399,7 @@ var LeaferUI = (function (exports) {
|
|
|
6360
6399
|
}
|
|
6361
6400
|
partLayout() {
|
|
6362
6401
|
var _a;
|
|
6363
|
-
if (!((_a = this.__updatedList) === null || _a ===
|
|
6402
|
+
if (!((_a = this.__updatedList) === null || _a === void 0 ? void 0 : _a.length))
|
|
6364
6403
|
return;
|
|
6365
6404
|
const t = Run.start('PartLayout');
|
|
6366
6405
|
const { target, __updatedList: updateList } = this;
|
|
@@ -6825,9 +6864,10 @@ var LeaferUI = (function (exports) {
|
|
|
6825
6864
|
this.finder = Creator.finder && Creator.finder();
|
|
6826
6865
|
}
|
|
6827
6866
|
getByPoint(hitPoint, hitRadius, options) {
|
|
6828
|
-
|
|
6829
|
-
|
|
6830
|
-
|
|
6867
|
+
const { target, picker } = this;
|
|
6868
|
+
if (Platform.backgrounder)
|
|
6869
|
+
target && target.updateLayout();
|
|
6870
|
+
return picker.getByPoint(hitPoint, hitRadius, options);
|
|
6831
6871
|
}
|
|
6832
6872
|
getBy(condition, branch, one, options) {
|
|
6833
6873
|
return this.finder ? this.finder.getBy(condition, branch, one, options) : Plugin.need('find');
|
|
@@ -6885,9 +6925,7 @@ var LeaferUI = (function (exports) {
|
|
|
6885
6925
|
const ColorConvert = {};
|
|
6886
6926
|
const UnitConvert = {
|
|
6887
6927
|
number(value, percentRefer) {
|
|
6888
|
-
|
|
6889
|
-
return value.type === 'percent' ? value.value * percentRefer : value.value;
|
|
6890
|
-
return value;
|
|
6928
|
+
return typeof value === 'object' ? (value.type === 'percent' ? value.value * percentRefer : value.value) : value;
|
|
6891
6929
|
}
|
|
6892
6930
|
};
|
|
6893
6931
|
const PathArrow = {};
|
|
@@ -6895,16 +6933,15 @@ var LeaferUI = (function (exports) {
|
|
|
6895
6933
|
const PaintImage = {};
|
|
6896
6934
|
const PaintGradient = {};
|
|
6897
6935
|
const Effect = {};
|
|
6936
|
+
const Filter = {
|
|
6937
|
+
apply() { Plugin.need('filter'); }
|
|
6938
|
+
};
|
|
6898
6939
|
const Export = {};
|
|
6899
6940
|
const State = {
|
|
6900
|
-
setStyleName(
|
|
6901
|
-
set(
|
|
6902
|
-
};
|
|
6903
|
-
const Transition = {
|
|
6904
|
-
list: {},
|
|
6905
|
-
register(attrName, fn) { Transition.list[attrName] = fn; },
|
|
6906
|
-
get(attrName) { return Transition.list[attrName]; }
|
|
6941
|
+
setStyleName() { return Plugin.need('state'); },
|
|
6942
|
+
set() { return Plugin.need('state'); }
|
|
6907
6943
|
};
|
|
6944
|
+
const Transition = {};
|
|
6908
6945
|
|
|
6909
6946
|
const { parse, objectToCanvasData } = PathConvert;
|
|
6910
6947
|
const emptyPaint = {};
|
|
@@ -7011,24 +7048,13 @@ var LeaferUI = (function (exports) {
|
|
|
7011
7048
|
}
|
|
7012
7049
|
}
|
|
7013
7050
|
setShadow(value) {
|
|
7014
|
-
this
|
|
7015
|
-
if (value instanceof Array) {
|
|
7016
|
-
if (value.some((item) => item.visible === false))
|
|
7017
|
-
value = value.filter((item) => item.visible !== false);
|
|
7018
|
-
this._shadow = value.length ? value : null;
|
|
7019
|
-
}
|
|
7020
|
-
else
|
|
7021
|
-
this._shadow = value && value.visible !== false ? [value] : null;
|
|
7051
|
+
setArray(this, 'shadow', value);
|
|
7022
7052
|
}
|
|
7023
7053
|
setInnerShadow(value) {
|
|
7024
|
-
this
|
|
7025
|
-
|
|
7026
|
-
|
|
7027
|
-
|
|
7028
|
-
this._innerShadow = value.length ? value : null;
|
|
7029
|
-
}
|
|
7030
|
-
else
|
|
7031
|
-
this._innerShadow = value && value.visible !== false ? [value] : null;
|
|
7054
|
+
setArray(this, 'innerShadow', value);
|
|
7055
|
+
}
|
|
7056
|
+
setFilter(value) {
|
|
7057
|
+
setArray(this, 'filter', value);
|
|
7032
7058
|
}
|
|
7033
7059
|
__computePaint() {
|
|
7034
7060
|
const { fill, stroke } = this.__input;
|
|
@@ -7039,6 +7065,17 @@ var LeaferUI = (function (exports) {
|
|
|
7039
7065
|
this.__needComputePaint = false;
|
|
7040
7066
|
}
|
|
7041
7067
|
}
|
|
7068
|
+
function setArray(data, key, value) {
|
|
7069
|
+
data.__setInput(key, value);
|
|
7070
|
+
if (value instanceof Array) {
|
|
7071
|
+
if (value.some((item) => item.visible === false))
|
|
7072
|
+
value = value.filter((item) => item.visible !== false);
|
|
7073
|
+
value.length || (value = null);
|
|
7074
|
+
}
|
|
7075
|
+
else
|
|
7076
|
+
value = value && value.visible !== false ? [value] : null;
|
|
7077
|
+
data['_' + key] = value;
|
|
7078
|
+
}
|
|
7042
7079
|
|
|
7043
7080
|
class GroupData extends UIData {
|
|
7044
7081
|
}
|
|
@@ -7161,11 +7198,13 @@ var LeaferUI = (function (exports) {
|
|
|
7161
7198
|
},
|
|
7162
7199
|
__updateRenderSpread() {
|
|
7163
7200
|
let width = 0;
|
|
7164
|
-
const { shadow, innerShadow, blur, backgroundBlur } = this.__;
|
|
7201
|
+
const { shadow, innerShadow, blur, backgroundBlur, filter } = this.__;
|
|
7165
7202
|
if (shadow)
|
|
7166
7203
|
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));
|
|
7167
7204
|
if (blur)
|
|
7168
7205
|
width = Math.max(width, blur);
|
|
7206
|
+
if (filter)
|
|
7207
|
+
width += Filter.getSpread(filter);
|
|
7169
7208
|
let shapeWidth = width = Math.ceil(width);
|
|
7170
7209
|
if (innerShadow)
|
|
7171
7210
|
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));
|
|
@@ -7180,8 +7219,8 @@ var LeaferUI = (function (exports) {
|
|
|
7180
7219
|
__updateChange() {
|
|
7181
7220
|
const data = this.__;
|
|
7182
7221
|
if (data.__useEffect) {
|
|
7183
|
-
const { shadow, innerShadow, blur, backgroundBlur } = this.__;
|
|
7184
|
-
data.__useEffect = !!(shadow || innerShadow || blur || backgroundBlur);
|
|
7222
|
+
const { shadow, innerShadow, blur, backgroundBlur, filter } = this.__;
|
|
7223
|
+
data.__useEffect = !!(shadow || innerShadow || blur || backgroundBlur || filter);
|
|
7185
7224
|
}
|
|
7186
7225
|
data.__checkSingle();
|
|
7187
7226
|
const complex = data.__isFills || data.__isStrokes || data.cornerRadius || data.__useEffect;
|
|
@@ -7195,7 +7234,7 @@ var LeaferUI = (function (exports) {
|
|
|
7195
7234
|
__drawFast(canvas, options) {
|
|
7196
7235
|
drawFast(this, canvas, options);
|
|
7197
7236
|
},
|
|
7198
|
-
__draw(canvas, options) {
|
|
7237
|
+
__draw(canvas, options, originCanvas) {
|
|
7199
7238
|
const data = this.__;
|
|
7200
7239
|
if (data.__complex) {
|
|
7201
7240
|
if (data.__needComputePaint)
|
|
@@ -7205,7 +7244,7 @@ var LeaferUI = (function (exports) {
|
|
|
7205
7244
|
if (data.__useEffect) {
|
|
7206
7245
|
const shape = Paint.shape(this, canvas, options);
|
|
7207
7246
|
this.__nowWorld = this.__getNowWorld(options);
|
|
7208
|
-
const { shadow, innerShadow } = data;
|
|
7247
|
+
const { shadow, innerShadow, filter } = data;
|
|
7209
7248
|
if (shadow)
|
|
7210
7249
|
Effect.shadow(this, canvas, shape);
|
|
7211
7250
|
if (fill)
|
|
@@ -7216,6 +7255,8 @@ var LeaferUI = (function (exports) {
|
|
|
7216
7255
|
Effect.innerShadow(this, canvas, shape);
|
|
7217
7256
|
if (stroke)
|
|
7218
7257
|
data.__isStrokes ? Paint.strokes(stroke, this, canvas) : Paint.stroke(stroke, this, canvas);
|
|
7258
|
+
if (filter)
|
|
7259
|
+
Filter.apply(filter, this, this.__nowWorld, canvas, originCanvas, shape);
|
|
7219
7260
|
if (shape.worldCanvas)
|
|
7220
7261
|
shape.worldCanvas.recycle();
|
|
7221
7262
|
shape.canvas.recycle();
|
|
@@ -7435,199 +7476,202 @@ var LeaferUI = (function (exports) {
|
|
|
7435
7476
|
};
|
|
7436
7477
|
__decorate([
|
|
7437
7478
|
dataProcessor(UIData)
|
|
7438
|
-
], exports.UI.prototype, "__",
|
|
7479
|
+
], exports.UI.prototype, "__", void 0);
|
|
7439
7480
|
__decorate([
|
|
7440
7481
|
zoomLayerType()
|
|
7441
|
-
], exports.UI.prototype, "zoomLayer",
|
|
7482
|
+
], exports.UI.prototype, "zoomLayer", void 0);
|
|
7442
7483
|
__decorate([
|
|
7443
7484
|
dataType('')
|
|
7444
|
-
], exports.UI.prototype, "id",
|
|
7485
|
+
], exports.UI.prototype, "id", void 0);
|
|
7445
7486
|
__decorate([
|
|
7446
7487
|
dataType('')
|
|
7447
|
-
], exports.UI.prototype, "name",
|
|
7488
|
+
], exports.UI.prototype, "name", void 0);
|
|
7448
7489
|
__decorate([
|
|
7449
7490
|
dataType('')
|
|
7450
|
-
], exports.UI.prototype, "className",
|
|
7491
|
+
], exports.UI.prototype, "className", void 0);
|
|
7451
7492
|
__decorate([
|
|
7452
7493
|
surfaceType('pass-through')
|
|
7453
|
-
], exports.UI.prototype, "blendMode",
|
|
7494
|
+
], exports.UI.prototype, "blendMode", void 0);
|
|
7454
7495
|
__decorate([
|
|
7455
7496
|
opacityType(1)
|
|
7456
|
-
], exports.UI.prototype, "opacity",
|
|
7497
|
+
], exports.UI.prototype, "opacity", void 0);
|
|
7457
7498
|
__decorate([
|
|
7458
7499
|
visibleType(true)
|
|
7459
|
-
], exports.UI.prototype, "visible",
|
|
7500
|
+
], exports.UI.prototype, "visible", void 0);
|
|
7460
7501
|
__decorate([
|
|
7461
7502
|
surfaceType(false)
|
|
7462
|
-
], exports.UI.prototype, "locked",
|
|
7503
|
+
], exports.UI.prototype, "locked", void 0);
|
|
7463
7504
|
__decorate([
|
|
7464
7505
|
sortType(0)
|
|
7465
|
-
], exports.UI.prototype, "zIndex",
|
|
7506
|
+
], exports.UI.prototype, "zIndex", void 0);
|
|
7466
7507
|
__decorate([
|
|
7467
7508
|
maskType(false)
|
|
7468
|
-
], exports.UI.prototype, "mask",
|
|
7509
|
+
], exports.UI.prototype, "mask", void 0);
|
|
7469
7510
|
__decorate([
|
|
7470
7511
|
eraserType(false)
|
|
7471
|
-
], exports.UI.prototype, "eraser",
|
|
7512
|
+
], exports.UI.prototype, "eraser", void 0);
|
|
7472
7513
|
__decorate([
|
|
7473
7514
|
positionType(0, true)
|
|
7474
|
-
], exports.UI.prototype, "x",
|
|
7515
|
+
], exports.UI.prototype, "x", void 0);
|
|
7475
7516
|
__decorate([
|
|
7476
7517
|
positionType(0, true)
|
|
7477
|
-
], exports.UI.prototype, "y",
|
|
7518
|
+
], exports.UI.prototype, "y", void 0);
|
|
7478
7519
|
__decorate([
|
|
7479
7520
|
boundsType(100, true)
|
|
7480
|
-
], exports.UI.prototype, "width",
|
|
7521
|
+
], exports.UI.prototype, "width", void 0);
|
|
7481
7522
|
__decorate([
|
|
7482
7523
|
boundsType(100, true)
|
|
7483
|
-
], exports.UI.prototype, "height",
|
|
7524
|
+
], exports.UI.prototype, "height", void 0);
|
|
7484
7525
|
__decorate([
|
|
7485
7526
|
scaleType(1, true)
|
|
7486
|
-
], exports.UI.prototype, "scaleX",
|
|
7527
|
+
], exports.UI.prototype, "scaleX", void 0);
|
|
7487
7528
|
__decorate([
|
|
7488
7529
|
scaleType(1, true)
|
|
7489
|
-
], exports.UI.prototype, "scaleY",
|
|
7530
|
+
], exports.UI.prototype, "scaleY", void 0);
|
|
7490
7531
|
__decorate([
|
|
7491
7532
|
rotationType(0, true)
|
|
7492
|
-
], exports.UI.prototype, "rotation",
|
|
7533
|
+
], exports.UI.prototype, "rotation", void 0);
|
|
7493
7534
|
__decorate([
|
|
7494
7535
|
rotationType(0, true)
|
|
7495
|
-
], exports.UI.prototype, "skewX",
|
|
7536
|
+
], exports.UI.prototype, "skewX", void 0);
|
|
7496
7537
|
__decorate([
|
|
7497
7538
|
rotationType(0, true)
|
|
7498
|
-
], exports.UI.prototype, "skewY",
|
|
7539
|
+
], exports.UI.prototype, "skewY", void 0);
|
|
7499
7540
|
__decorate([
|
|
7500
7541
|
positionType(0, true)
|
|
7501
|
-
], exports.UI.prototype, "offsetX",
|
|
7542
|
+
], exports.UI.prototype, "offsetX", void 0);
|
|
7502
7543
|
__decorate([
|
|
7503
7544
|
positionType(0, true)
|
|
7504
|
-
], exports.UI.prototype, "offsetY",
|
|
7545
|
+
], exports.UI.prototype, "offsetY", void 0);
|
|
7505
7546
|
__decorate([
|
|
7506
7547
|
positionType(0, true)
|
|
7507
|
-
], exports.UI.prototype, "scrollX",
|
|
7548
|
+
], exports.UI.prototype, "scrollX", void 0);
|
|
7508
7549
|
__decorate([
|
|
7509
7550
|
positionType(0, true)
|
|
7510
|
-
], exports.UI.prototype, "scrollY",
|
|
7551
|
+
], exports.UI.prototype, "scrollY", void 0);
|
|
7511
7552
|
__decorate([
|
|
7512
7553
|
autoLayoutType()
|
|
7513
|
-
], exports.UI.prototype, "origin",
|
|
7554
|
+
], exports.UI.prototype, "origin", void 0);
|
|
7514
7555
|
__decorate([
|
|
7515
7556
|
autoLayoutType()
|
|
7516
|
-
], exports.UI.prototype, "around",
|
|
7557
|
+
], exports.UI.prototype, "around", void 0);
|
|
7517
7558
|
__decorate([
|
|
7518
7559
|
dataType(false)
|
|
7519
|
-
], exports.UI.prototype, "lazy",
|
|
7560
|
+
], exports.UI.prototype, "lazy", void 0);
|
|
7520
7561
|
__decorate([
|
|
7521
7562
|
naturalBoundsType(1)
|
|
7522
|
-
], exports.UI.prototype, "pixelRatio",
|
|
7563
|
+
], exports.UI.prototype, "pixelRatio", void 0);
|
|
7523
7564
|
__decorate([
|
|
7524
7565
|
pathInputType()
|
|
7525
|
-
], exports.UI.prototype, "path",
|
|
7566
|
+
], exports.UI.prototype, "path", void 0);
|
|
7526
7567
|
__decorate([
|
|
7527
7568
|
pathType()
|
|
7528
|
-
], exports.UI.prototype, "windingRule",
|
|
7569
|
+
], exports.UI.prototype, "windingRule", void 0);
|
|
7529
7570
|
__decorate([
|
|
7530
7571
|
pathType(true)
|
|
7531
|
-
], exports.UI.prototype, "closed",
|
|
7572
|
+
], exports.UI.prototype, "closed", void 0);
|
|
7532
7573
|
__decorate([
|
|
7533
7574
|
boundsType(0)
|
|
7534
|
-
], exports.UI.prototype, "padding",
|
|
7575
|
+
], exports.UI.prototype, "padding", void 0);
|
|
7535
7576
|
__decorate([
|
|
7536
7577
|
boundsType(false)
|
|
7537
|
-
], exports.UI.prototype, "lockRatio",
|
|
7578
|
+
], exports.UI.prototype, "lockRatio", void 0);
|
|
7538
7579
|
__decorate([
|
|
7539
7580
|
boundsType()
|
|
7540
|
-
], exports.UI.prototype, "widthRange",
|
|
7581
|
+
], exports.UI.prototype, "widthRange", void 0);
|
|
7541
7582
|
__decorate([
|
|
7542
7583
|
boundsType()
|
|
7543
|
-
], exports.UI.prototype, "heightRange",
|
|
7584
|
+
], exports.UI.prototype, "heightRange", void 0);
|
|
7544
7585
|
__decorate([
|
|
7545
7586
|
dataType(false)
|
|
7546
|
-
], exports.UI.prototype, "draggable",
|
|
7587
|
+
], exports.UI.prototype, "draggable", void 0);
|
|
7547
7588
|
__decorate([
|
|
7548
7589
|
dataType()
|
|
7549
|
-
], exports.UI.prototype, "dragBounds",
|
|
7590
|
+
], exports.UI.prototype, "dragBounds", void 0);
|
|
7550
7591
|
__decorate([
|
|
7551
7592
|
dataType(false)
|
|
7552
|
-
], exports.UI.prototype, "editable",
|
|
7593
|
+
], exports.UI.prototype, "editable", void 0);
|
|
7553
7594
|
__decorate([
|
|
7554
7595
|
hitType(true)
|
|
7555
|
-
], exports.UI.prototype, "hittable",
|
|
7596
|
+
], exports.UI.prototype, "hittable", void 0);
|
|
7556
7597
|
__decorate([
|
|
7557
7598
|
hitType('path')
|
|
7558
|
-
], exports.UI.prototype, "hitFill",
|
|
7599
|
+
], exports.UI.prototype, "hitFill", void 0);
|
|
7559
7600
|
__decorate([
|
|
7560
7601
|
strokeType('path')
|
|
7561
|
-
], exports.UI.prototype, "hitStroke",
|
|
7602
|
+
], exports.UI.prototype, "hitStroke", void 0);
|
|
7562
7603
|
__decorate([
|
|
7563
7604
|
hitType(false)
|
|
7564
|
-
], exports.UI.prototype, "hitBox",
|
|
7605
|
+
], exports.UI.prototype, "hitBox", void 0);
|
|
7565
7606
|
__decorate([
|
|
7566
7607
|
hitType(true)
|
|
7567
|
-
], exports.UI.prototype, "hitChildren",
|
|
7608
|
+
], exports.UI.prototype, "hitChildren", void 0);
|
|
7568
7609
|
__decorate([
|
|
7569
7610
|
hitType(true)
|
|
7570
|
-
], exports.UI.prototype, "hitSelf",
|
|
7611
|
+
], exports.UI.prototype, "hitSelf", void 0);
|
|
7571
7612
|
__decorate([
|
|
7572
7613
|
hitType()
|
|
7573
|
-
], exports.UI.prototype, "hitRadius",
|
|
7614
|
+
], exports.UI.prototype, "hitRadius", void 0);
|
|
7574
7615
|
__decorate([
|
|
7575
7616
|
cursorType('')
|
|
7576
|
-
], exports.UI.prototype, "cursor",
|
|
7617
|
+
], exports.UI.prototype, "cursor", void 0);
|
|
7577
7618
|
__decorate([
|
|
7578
7619
|
surfaceType()
|
|
7579
|
-
], exports.UI.prototype, "fill",
|
|
7620
|
+
], exports.UI.prototype, "fill", void 0);
|
|
7580
7621
|
__decorate([
|
|
7581
7622
|
strokeType()
|
|
7582
|
-
], exports.UI.prototype, "stroke",
|
|
7623
|
+
], exports.UI.prototype, "stroke", void 0);
|
|
7583
7624
|
__decorate([
|
|
7584
7625
|
strokeType('inside')
|
|
7585
|
-
], exports.UI.prototype, "strokeAlign",
|
|
7626
|
+
], exports.UI.prototype, "strokeAlign", void 0);
|
|
7586
7627
|
__decorate([
|
|
7587
7628
|
strokeType(1)
|
|
7588
|
-
], exports.UI.prototype, "strokeWidth",
|
|
7629
|
+
], exports.UI.prototype, "strokeWidth", void 0);
|
|
7589
7630
|
__decorate([
|
|
7590
7631
|
strokeType(false)
|
|
7591
|
-
], exports.UI.prototype, "strokeWidthFixed",
|
|
7632
|
+
], exports.UI.prototype, "strokeWidthFixed", void 0);
|
|
7592
7633
|
__decorate([
|
|
7593
7634
|
strokeType('none')
|
|
7594
|
-
], exports.UI.prototype, "strokeCap",
|
|
7635
|
+
], exports.UI.prototype, "strokeCap", void 0);
|
|
7595
7636
|
__decorate([
|
|
7596
7637
|
strokeType('miter')
|
|
7597
|
-
], exports.UI.prototype, "strokeJoin",
|
|
7638
|
+
], exports.UI.prototype, "strokeJoin", void 0);
|
|
7598
7639
|
__decorate([
|
|
7599
7640
|
strokeType()
|
|
7600
|
-
], exports.UI.prototype, "dashPattern",
|
|
7641
|
+
], exports.UI.prototype, "dashPattern", void 0);
|
|
7601
7642
|
__decorate([
|
|
7602
7643
|
strokeType()
|
|
7603
|
-
], exports.UI.prototype, "dashOffset",
|
|
7644
|
+
], exports.UI.prototype, "dashOffset", void 0);
|
|
7604
7645
|
__decorate([
|
|
7605
7646
|
strokeType(10)
|
|
7606
|
-
], exports.UI.prototype, "miterLimit",
|
|
7647
|
+
], exports.UI.prototype, "miterLimit", void 0);
|
|
7607
7648
|
__decorate([
|
|
7608
7649
|
pathType(0)
|
|
7609
|
-
], exports.UI.prototype, "cornerRadius",
|
|
7650
|
+
], exports.UI.prototype, "cornerRadius", void 0);
|
|
7610
7651
|
__decorate([
|
|
7611
7652
|
pathType()
|
|
7612
|
-
], exports.UI.prototype, "cornerSmoothing",
|
|
7653
|
+
], exports.UI.prototype, "cornerSmoothing", void 0);
|
|
7654
|
+
__decorate([
|
|
7655
|
+
effectType()
|
|
7656
|
+
], exports.UI.prototype, "shadow", void 0);
|
|
7613
7657
|
__decorate([
|
|
7614
7658
|
effectType()
|
|
7615
|
-
], exports.UI.prototype, "
|
|
7659
|
+
], exports.UI.prototype, "innerShadow", void 0);
|
|
7616
7660
|
__decorate([
|
|
7617
7661
|
effectType()
|
|
7618
|
-
], exports.UI.prototype, "
|
|
7662
|
+
], exports.UI.prototype, "blur", void 0);
|
|
7619
7663
|
__decorate([
|
|
7620
7664
|
effectType()
|
|
7621
|
-
], exports.UI.prototype, "
|
|
7665
|
+
], exports.UI.prototype, "backgroundBlur", void 0);
|
|
7622
7666
|
__decorate([
|
|
7623
7667
|
effectType()
|
|
7624
|
-
], exports.UI.prototype, "
|
|
7668
|
+
], exports.UI.prototype, "grayscale", void 0);
|
|
7625
7669
|
__decorate([
|
|
7626
7670
|
effectType()
|
|
7627
|
-
], exports.UI.prototype, "
|
|
7671
|
+
], exports.UI.prototype, "filter", void 0);
|
|
7628
7672
|
__decorate([
|
|
7629
7673
|
dataType({})
|
|
7630
|
-
], exports.UI.prototype, "data",
|
|
7674
|
+
], exports.UI.prototype, "data", void 0);
|
|
7631
7675
|
__decorate([
|
|
7632
7676
|
rewrite(exports.Leaf.prototype.reset)
|
|
7633
7677
|
], exports.UI.prototype, "reset", null);
|
|
@@ -7688,7 +7732,7 @@ var LeaferUI = (function (exports) {
|
|
|
7688
7732
|
};
|
|
7689
7733
|
__decorate([
|
|
7690
7734
|
dataProcessor(GroupData)
|
|
7691
|
-
], exports.Group.prototype, "__",
|
|
7735
|
+
], exports.Group.prototype, "__", void 0);
|
|
7692
7736
|
exports.Group = __decorate([
|
|
7693
7737
|
useModule(exports.Branch),
|
|
7694
7738
|
registerUI()
|
|
@@ -7701,7 +7745,7 @@ var LeaferUI = (function (exports) {
|
|
|
7701
7745
|
get isApp() { return false; }
|
|
7702
7746
|
get app() { return this.parent || this; }
|
|
7703
7747
|
get isLeafer() { return true; }
|
|
7704
|
-
get imageReady() { return this.viewReady &&
|
|
7748
|
+
get imageReady() { return this.viewReady && Resource.isComplete; }
|
|
7705
7749
|
get layoutLocked() { return !this.layouter.running; }
|
|
7706
7750
|
get FPS() { return this.renderer ? this.renderer.FPS : 60; }
|
|
7707
7751
|
get cursorPoint() { return (this.interaction && this.interaction.hoverData) || { x: this.width / 2, y: this.height / 2 }; }
|
|
@@ -7912,13 +7956,13 @@ var LeaferUI = (function (exports) {
|
|
|
7912
7956
|
WaitHelper.run(this.__viewReadyWait);
|
|
7913
7957
|
}
|
|
7914
7958
|
__onLayoutEnd() {
|
|
7915
|
-
const { grow,
|
|
7959
|
+
const { grow, width: fixedWidth, height: fixedHeight } = this.config;
|
|
7916
7960
|
if (grow) {
|
|
7917
7961
|
let { width, height, pixelRatio } = this;
|
|
7918
7962
|
const bounds = grow === 'box' ? this.worldBoxBounds : this.__world;
|
|
7919
|
-
if (
|
|
7963
|
+
if (!fixedWidth)
|
|
7920
7964
|
width = Math.max(1, bounds.x + bounds.width);
|
|
7921
|
-
if (
|
|
7965
|
+
if (!fixedHeight)
|
|
7922
7966
|
height = Math.max(1, bounds.y + bounds.height);
|
|
7923
7967
|
this.__doResize({ width, height, pixelRatio });
|
|
7924
7968
|
}
|
|
@@ -7996,7 +8040,7 @@ var LeaferUI = (function (exports) {
|
|
|
7996
8040
|
list.push(item);
|
|
7997
8041
|
this.requestRender();
|
|
7998
8042
|
}
|
|
7999
|
-
zoom(_zoomType, _padding, _fixedScale) {
|
|
8043
|
+
zoom(_zoomType, _padding, _fixedScale, _transition) {
|
|
8000
8044
|
return Plugin.need('view');
|
|
8001
8045
|
}
|
|
8002
8046
|
getValidMove(moveX, moveY) { return { x: moveX, y: moveY }; }
|
|
@@ -8061,10 +8105,10 @@ var LeaferUI = (function (exports) {
|
|
|
8061
8105
|
exports.Leafer.list = new LeafList();
|
|
8062
8106
|
__decorate([
|
|
8063
8107
|
dataProcessor(LeaferData)
|
|
8064
|
-
], exports.Leafer.prototype, "__",
|
|
8108
|
+
], exports.Leafer.prototype, "__", void 0);
|
|
8065
8109
|
__decorate([
|
|
8066
8110
|
boundsType()
|
|
8067
|
-
], exports.Leafer.prototype, "pixelRatio",
|
|
8111
|
+
], exports.Leafer.prototype, "pixelRatio", void 0);
|
|
8068
8112
|
exports.Leafer = Leafer_1 = __decorate([
|
|
8069
8113
|
registerUI()
|
|
8070
8114
|
], exports.Leafer);
|
|
@@ -8077,7 +8121,7 @@ var LeaferUI = (function (exports) {
|
|
|
8077
8121
|
};
|
|
8078
8122
|
__decorate([
|
|
8079
8123
|
dataProcessor(RectData)
|
|
8080
|
-
], exports.Rect.prototype, "__",
|
|
8124
|
+
], exports.Rect.prototype, "__", void 0);
|
|
8081
8125
|
exports.Rect = __decorate([
|
|
8082
8126
|
useModule(RectRender),
|
|
8083
8127
|
rewriteAble(),
|
|
@@ -8168,13 +8212,13 @@ var LeaferUI = (function (exports) {
|
|
|
8168
8212
|
};
|
|
8169
8213
|
__decorate([
|
|
8170
8214
|
dataProcessor(BoxData)
|
|
8171
|
-
], exports.Box.prototype, "__",
|
|
8215
|
+
], exports.Box.prototype, "__", void 0);
|
|
8172
8216
|
__decorate([
|
|
8173
8217
|
dataType(false)
|
|
8174
|
-
], exports.Box.prototype, "resizeChildren",
|
|
8218
|
+
], exports.Box.prototype, "resizeChildren", void 0);
|
|
8175
8219
|
__decorate([
|
|
8176
8220
|
affectRenderBoundsType('show')
|
|
8177
|
-
], exports.Box.prototype, "overflow",
|
|
8221
|
+
], exports.Box.prototype, "overflow", void 0);
|
|
8178
8222
|
__decorate([
|
|
8179
8223
|
rewrite(rect$1.__updateStrokeSpread)
|
|
8180
8224
|
], exports.Box.prototype, "__updateStrokeSpread", null);
|
|
@@ -8213,13 +8257,13 @@ var LeaferUI = (function (exports) {
|
|
|
8213
8257
|
};
|
|
8214
8258
|
__decorate([
|
|
8215
8259
|
dataProcessor(FrameData)
|
|
8216
|
-
], exports.Frame.prototype, "__",
|
|
8260
|
+
], exports.Frame.prototype, "__", void 0);
|
|
8217
8261
|
__decorate([
|
|
8218
8262
|
surfaceType('#FFFFFF')
|
|
8219
|
-
], exports.Frame.prototype, "fill",
|
|
8263
|
+
], exports.Frame.prototype, "fill", void 0);
|
|
8220
8264
|
__decorate([
|
|
8221
8265
|
affectRenderBoundsType('hide')
|
|
8222
|
-
], exports.Frame.prototype, "overflow",
|
|
8266
|
+
], exports.Frame.prototype, "overflow", void 0);
|
|
8223
8267
|
exports.Frame = __decorate([
|
|
8224
8268
|
registerUI()
|
|
8225
8269
|
], exports.Frame);
|
|
@@ -8266,16 +8310,16 @@ var LeaferUI = (function (exports) {
|
|
|
8266
8310
|
};
|
|
8267
8311
|
__decorate([
|
|
8268
8312
|
dataProcessor(EllipseData)
|
|
8269
|
-
], exports.Ellipse.prototype, "__",
|
|
8313
|
+
], exports.Ellipse.prototype, "__", void 0);
|
|
8270
8314
|
__decorate([
|
|
8271
8315
|
pathType(0)
|
|
8272
|
-
], exports.Ellipse.prototype, "innerRadius",
|
|
8316
|
+
], exports.Ellipse.prototype, "innerRadius", void 0);
|
|
8273
8317
|
__decorate([
|
|
8274
8318
|
pathType(0)
|
|
8275
|
-
], exports.Ellipse.prototype, "startAngle",
|
|
8319
|
+
], exports.Ellipse.prototype, "startAngle", void 0);
|
|
8276
8320
|
__decorate([
|
|
8277
8321
|
pathType(0)
|
|
8278
|
-
], exports.Ellipse.prototype, "endAngle",
|
|
8322
|
+
], exports.Ellipse.prototype, "endAngle", void 0);
|
|
8279
8323
|
exports.Ellipse = __decorate([
|
|
8280
8324
|
registerUI()
|
|
8281
8325
|
], exports.Ellipse);
|
|
@@ -8334,22 +8378,22 @@ var LeaferUI = (function (exports) {
|
|
|
8334
8378
|
};
|
|
8335
8379
|
__decorate([
|
|
8336
8380
|
dataProcessor(LineData)
|
|
8337
|
-
], exports.Line.prototype, "__",
|
|
8381
|
+
], exports.Line.prototype, "__", void 0);
|
|
8338
8382
|
__decorate([
|
|
8339
8383
|
affectStrokeBoundsType('center')
|
|
8340
|
-
], exports.Line.prototype, "strokeAlign",
|
|
8384
|
+
], exports.Line.prototype, "strokeAlign", void 0);
|
|
8341
8385
|
__decorate([
|
|
8342
8386
|
boundsType(0)
|
|
8343
|
-
], exports.Line.prototype, "height",
|
|
8387
|
+
], exports.Line.prototype, "height", void 0);
|
|
8344
8388
|
__decorate([
|
|
8345
8389
|
pathType()
|
|
8346
|
-
], exports.Line.prototype, "points",
|
|
8390
|
+
], exports.Line.prototype, "points", void 0);
|
|
8347
8391
|
__decorate([
|
|
8348
8392
|
pathType(0)
|
|
8349
|
-
], exports.Line.prototype, "curve",
|
|
8393
|
+
], exports.Line.prototype, "curve", void 0);
|
|
8350
8394
|
__decorate([
|
|
8351
8395
|
pathType(false)
|
|
8352
|
-
], exports.Line.prototype, "closed",
|
|
8396
|
+
], exports.Line.prototype, "closed", void 0);
|
|
8353
8397
|
exports.Line = __decorate([
|
|
8354
8398
|
registerUI()
|
|
8355
8399
|
], exports.Line);
|
|
@@ -8382,16 +8426,16 @@ var LeaferUI = (function (exports) {
|
|
|
8382
8426
|
};
|
|
8383
8427
|
__decorate([
|
|
8384
8428
|
dataProcessor(PolygonData)
|
|
8385
|
-
], exports.Polygon.prototype, "__",
|
|
8429
|
+
], exports.Polygon.prototype, "__", void 0);
|
|
8386
8430
|
__decorate([
|
|
8387
8431
|
pathType(3)
|
|
8388
|
-
], exports.Polygon.prototype, "sides",
|
|
8432
|
+
], exports.Polygon.prototype, "sides", void 0);
|
|
8389
8433
|
__decorate([
|
|
8390
8434
|
pathType()
|
|
8391
|
-
], exports.Polygon.prototype, "points",
|
|
8435
|
+
], exports.Polygon.prototype, "points", void 0);
|
|
8392
8436
|
__decorate([
|
|
8393
8437
|
pathType(0)
|
|
8394
|
-
], exports.Polygon.prototype, "curve",
|
|
8438
|
+
], exports.Polygon.prototype, "curve", void 0);
|
|
8395
8439
|
__decorate([
|
|
8396
8440
|
rewrite(line.__updateRenderPath)
|
|
8397
8441
|
], exports.Polygon.prototype, "__updateRenderPath", null);
|
|
@@ -8423,13 +8467,13 @@ var LeaferUI = (function (exports) {
|
|
|
8423
8467
|
};
|
|
8424
8468
|
__decorate([
|
|
8425
8469
|
dataProcessor(StarData)
|
|
8426
|
-
], exports.Star.prototype, "__",
|
|
8470
|
+
], exports.Star.prototype, "__", void 0);
|
|
8427
8471
|
__decorate([
|
|
8428
8472
|
pathType(5)
|
|
8429
|
-
], exports.Star.prototype, "corners",
|
|
8473
|
+
], exports.Star.prototype, "corners", void 0);
|
|
8430
8474
|
__decorate([
|
|
8431
8475
|
pathType(0.382)
|
|
8432
|
-
], exports.Star.prototype, "innerRadius",
|
|
8476
|
+
], exports.Star.prototype, "innerRadius", void 0);
|
|
8433
8477
|
exports.Star = __decorate([
|
|
8434
8478
|
registerUI()
|
|
8435
8479
|
], exports.Star);
|
|
@@ -8451,10 +8495,10 @@ var LeaferUI = (function (exports) {
|
|
|
8451
8495
|
};
|
|
8452
8496
|
__decorate([
|
|
8453
8497
|
dataProcessor(ImageData)
|
|
8454
|
-
], exports.Image.prototype, "__",
|
|
8498
|
+
], exports.Image.prototype, "__", void 0);
|
|
8455
8499
|
__decorate([
|
|
8456
8500
|
boundsType('')
|
|
8457
|
-
], exports.Image.prototype, "url",
|
|
8501
|
+
], exports.Image.prototype, "url", void 0);
|
|
8458
8502
|
exports.Image = __decorate([
|
|
8459
8503
|
registerUI()
|
|
8460
8504
|
], exports.Image);
|
|
@@ -8517,25 +8561,25 @@ var LeaferUI = (function (exports) {
|
|
|
8517
8561
|
};
|
|
8518
8562
|
__decorate([
|
|
8519
8563
|
dataProcessor(CanvasData)
|
|
8520
|
-
], exports.Canvas.prototype, "__",
|
|
8564
|
+
], exports.Canvas.prototype, "__", void 0);
|
|
8521
8565
|
__decorate([
|
|
8522
8566
|
resizeType(100)
|
|
8523
|
-
], exports.Canvas.prototype, "width",
|
|
8567
|
+
], exports.Canvas.prototype, "width", void 0);
|
|
8524
8568
|
__decorate([
|
|
8525
8569
|
resizeType(100)
|
|
8526
|
-
], exports.Canvas.prototype, "height",
|
|
8570
|
+
], exports.Canvas.prototype, "height", void 0);
|
|
8527
8571
|
__decorate([
|
|
8528
8572
|
resizeType(1)
|
|
8529
|
-
], exports.Canvas.prototype, "pixelRatio",
|
|
8573
|
+
], exports.Canvas.prototype, "pixelRatio", void 0);
|
|
8530
8574
|
__decorate([
|
|
8531
8575
|
resizeType(true)
|
|
8532
|
-
], exports.Canvas.prototype, "smooth",
|
|
8576
|
+
], exports.Canvas.prototype, "smooth", void 0);
|
|
8533
8577
|
__decorate([
|
|
8534
8578
|
dataType(false)
|
|
8535
|
-
], exports.Canvas.prototype, "safeResize",
|
|
8579
|
+
], exports.Canvas.prototype, "safeResize", void 0);
|
|
8536
8580
|
__decorate([
|
|
8537
8581
|
resizeType()
|
|
8538
|
-
], exports.Canvas.prototype, "contextSettings",
|
|
8582
|
+
], exports.Canvas.prototype, "contextSettings", void 0);
|
|
8539
8583
|
exports.Canvas = __decorate([
|
|
8540
8584
|
registerUI()
|
|
8541
8585
|
], exports.Canvas);
|
|
@@ -8626,76 +8670,76 @@ var LeaferUI = (function (exports) {
|
|
|
8626
8670
|
};
|
|
8627
8671
|
__decorate([
|
|
8628
8672
|
dataProcessor(TextData)
|
|
8629
|
-
], exports.Text.prototype, "__",
|
|
8673
|
+
], exports.Text.prototype, "__", void 0);
|
|
8630
8674
|
__decorate([
|
|
8631
8675
|
boundsType(0)
|
|
8632
|
-
], exports.Text.prototype, "width",
|
|
8676
|
+
], exports.Text.prototype, "width", void 0);
|
|
8633
8677
|
__decorate([
|
|
8634
8678
|
boundsType(0)
|
|
8635
|
-
], exports.Text.prototype, "height",
|
|
8679
|
+
], exports.Text.prototype, "height", void 0);
|
|
8636
8680
|
__decorate([
|
|
8637
8681
|
dataType(false)
|
|
8638
|
-
], exports.Text.prototype, "resizeFontSize",
|
|
8682
|
+
], exports.Text.prototype, "resizeFontSize", void 0);
|
|
8639
8683
|
__decorate([
|
|
8640
8684
|
surfaceType('#000000')
|
|
8641
|
-
], exports.Text.prototype, "fill",
|
|
8685
|
+
], exports.Text.prototype, "fill", void 0);
|
|
8642
8686
|
__decorate([
|
|
8643
8687
|
affectStrokeBoundsType('outside')
|
|
8644
|
-
], exports.Text.prototype, "strokeAlign",
|
|
8688
|
+
], exports.Text.prototype, "strokeAlign", void 0);
|
|
8645
8689
|
__decorate([
|
|
8646
8690
|
hitType('all')
|
|
8647
|
-
], exports.Text.prototype, "hitFill",
|
|
8691
|
+
], exports.Text.prototype, "hitFill", void 0);
|
|
8648
8692
|
__decorate([
|
|
8649
8693
|
boundsType('')
|
|
8650
|
-
], exports.Text.prototype, "text",
|
|
8694
|
+
], exports.Text.prototype, "text", void 0);
|
|
8651
8695
|
__decorate([
|
|
8652
8696
|
boundsType('caption')
|
|
8653
|
-
], exports.Text.prototype, "fontFamily",
|
|
8697
|
+
], exports.Text.prototype, "fontFamily", void 0);
|
|
8654
8698
|
__decorate([
|
|
8655
8699
|
boundsType(12)
|
|
8656
|
-
], exports.Text.prototype, "fontSize",
|
|
8700
|
+
], exports.Text.prototype, "fontSize", void 0);
|
|
8657
8701
|
__decorate([
|
|
8658
8702
|
boundsType('normal')
|
|
8659
|
-
], exports.Text.prototype, "fontWeight",
|
|
8703
|
+
], exports.Text.prototype, "fontWeight", void 0);
|
|
8660
8704
|
__decorate([
|
|
8661
8705
|
boundsType(false)
|
|
8662
|
-
], exports.Text.prototype, "italic",
|
|
8706
|
+
], exports.Text.prototype, "italic", void 0);
|
|
8663
8707
|
__decorate([
|
|
8664
8708
|
boundsType('none')
|
|
8665
|
-
], exports.Text.prototype, "textCase",
|
|
8709
|
+
], exports.Text.prototype, "textCase", void 0);
|
|
8666
8710
|
__decorate([
|
|
8667
8711
|
boundsType('none')
|
|
8668
|
-
], exports.Text.prototype, "textDecoration",
|
|
8712
|
+
], exports.Text.prototype, "textDecoration", void 0);
|
|
8669
8713
|
__decorate([
|
|
8670
8714
|
boundsType(0)
|
|
8671
|
-
], exports.Text.prototype, "letterSpacing",
|
|
8715
|
+
], exports.Text.prototype, "letterSpacing", void 0);
|
|
8672
8716
|
__decorate([
|
|
8673
8717
|
boundsType({ type: 'percent', value: 1.5 })
|
|
8674
|
-
], exports.Text.prototype, "lineHeight",
|
|
8718
|
+
], exports.Text.prototype, "lineHeight", void 0);
|
|
8675
8719
|
__decorate([
|
|
8676
8720
|
boundsType(0)
|
|
8677
|
-
], exports.Text.prototype, "paraIndent",
|
|
8721
|
+
], exports.Text.prototype, "paraIndent", void 0);
|
|
8678
8722
|
__decorate([
|
|
8679
8723
|
boundsType(0)
|
|
8680
|
-
], exports.Text.prototype, "paraSpacing",
|
|
8724
|
+
], exports.Text.prototype, "paraSpacing", void 0);
|
|
8681
8725
|
__decorate([
|
|
8682
8726
|
boundsType('x')
|
|
8683
|
-
], exports.Text.prototype, "writingMode",
|
|
8727
|
+
], exports.Text.prototype, "writingMode", void 0);
|
|
8684
8728
|
__decorate([
|
|
8685
8729
|
boundsType('left')
|
|
8686
|
-
], exports.Text.prototype, "textAlign",
|
|
8730
|
+
], exports.Text.prototype, "textAlign", void 0);
|
|
8687
8731
|
__decorate([
|
|
8688
8732
|
boundsType('top')
|
|
8689
|
-
], exports.Text.prototype, "verticalAlign",
|
|
8733
|
+
], exports.Text.prototype, "verticalAlign", void 0);
|
|
8690
8734
|
__decorate([
|
|
8691
8735
|
boundsType(true)
|
|
8692
|
-
], exports.Text.prototype, "autoSizeAlign",
|
|
8736
|
+
], exports.Text.prototype, "autoSizeAlign", void 0);
|
|
8693
8737
|
__decorate([
|
|
8694
8738
|
boundsType('normal')
|
|
8695
|
-
], exports.Text.prototype, "textWrap",
|
|
8739
|
+
], exports.Text.prototype, "textWrap", void 0);
|
|
8696
8740
|
__decorate([
|
|
8697
8741
|
boundsType('show')
|
|
8698
|
-
], exports.Text.prototype, "textOverflow",
|
|
8742
|
+
], exports.Text.prototype, "textOverflow", void 0);
|
|
8699
8743
|
exports.Text = __decorate([
|
|
8700
8744
|
registerUI()
|
|
8701
8745
|
], exports.Text);
|
|
@@ -8708,10 +8752,10 @@ var LeaferUI = (function (exports) {
|
|
|
8708
8752
|
};
|
|
8709
8753
|
__decorate([
|
|
8710
8754
|
dataProcessor(PathData)
|
|
8711
|
-
], exports.Path.prototype, "__",
|
|
8755
|
+
], exports.Path.prototype, "__", void 0);
|
|
8712
8756
|
__decorate([
|
|
8713
8757
|
affectStrokeBoundsType('center')
|
|
8714
|
-
], exports.Path.prototype, "strokeAlign",
|
|
8758
|
+
], exports.Path.prototype, "strokeAlign", void 0);
|
|
8715
8759
|
exports.Path = __decorate([
|
|
8716
8760
|
registerUI()
|
|
8717
8761
|
], exports.Path);
|
|
@@ -8750,10 +8794,10 @@ var LeaferUI = (function (exports) {
|
|
|
8750
8794
|
};
|
|
8751
8795
|
__decorate([
|
|
8752
8796
|
dataProcessor(PenData)
|
|
8753
|
-
], exports.Pen.prototype, "__",
|
|
8797
|
+
], exports.Pen.prototype, "__", void 0);
|
|
8754
8798
|
__decorate([
|
|
8755
8799
|
penPathType()
|
|
8756
|
-
], exports.Pen.prototype, "path",
|
|
8800
|
+
], exports.Pen.prototype, "path", void 0);
|
|
8757
8801
|
exports.Pen = __decorate([
|
|
8758
8802
|
useModule(PathCreator, ['set', 'path', 'paint']),
|
|
8759
8803
|
registerUI()
|
|
@@ -8989,7 +9033,7 @@ var LeaferUI = (function (exports) {
|
|
|
8989
9033
|
const { draggable, dragBounds } = leaf, move = leaf.getLocalPoint(total, null, true);
|
|
8990
9034
|
PointHelper.move(move, start.x - leaf.x, start.y - leaf.y);
|
|
8991
9035
|
if (dragBounds)
|
|
8992
|
-
this.getMoveInDragBounds(leaf.
|
|
9036
|
+
this.getMoveInDragBounds(leaf.__localBoxBounds, dragBounds === 'parent' ? leaf.parent.boxBounds : dragBounds, move, true);
|
|
8993
9037
|
if (draggable === 'x')
|
|
8994
9038
|
move.y = 0;
|
|
8995
9039
|
if (draggable === 'y')
|
|
@@ -9692,7 +9736,9 @@ var LeaferUI = (function (exports) {
|
|
|
9692
9736
|
}
|
|
9693
9737
|
findPath(data, options) {
|
|
9694
9738
|
const { hitRadius, through } = this.p;
|
|
9695
|
-
const { bottomList } = this;
|
|
9739
|
+
const { bottomList, target } = this;
|
|
9740
|
+
if (!Platform.backgrounder && !data.origin)
|
|
9741
|
+
target && target.updateLayout();
|
|
9696
9742
|
const find = this.selector.getByPoint(data, hitRadius, Object.assign({ bottomList, name: data.type }, (options || { through })));
|
|
9697
9743
|
if (find.throughPath)
|
|
9698
9744
|
data.throughPath = find.throughPath;
|
|
@@ -9937,9 +9983,9 @@ var LeaferUI = (function (exports) {
|
|
|
9937
9983
|
}
|
|
9938
9984
|
return this.__hit(inner);
|
|
9939
9985
|
};
|
|
9940
|
-
leaf.__hitFill = function (inner) { var _a; return (_a = this.__hitCanvas) === null || _a ===
|
|
9941
|
-
leaf.__hitStroke = function (inner, strokeWidth) { var _a; return (_a = this.__hitCanvas) === null || _a ===
|
|
9942
|
-
leaf.__hitPixel = function (inner) { var _a; return (_a = this.__hitCanvas) === null || _a ===
|
|
9986
|
+
leaf.__hitFill = function (inner) { var _a; return (_a = this.__hitCanvas) === null || _a === void 0 ? void 0 : _a.hitFill(inner, this.__.windingRule); };
|
|
9987
|
+
leaf.__hitStroke = function (inner, strokeWidth) { var _a; return (_a = this.__hitCanvas) === null || _a === void 0 ? void 0 : _a.hitStroke(inner, strokeWidth); };
|
|
9988
|
+
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); };
|
|
9943
9989
|
leaf.__drawHitPath = function (canvas) { if (canvas)
|
|
9944
9990
|
this.__drawRenderPath(canvas); };
|
|
9945
9991
|
|
|
@@ -10027,8 +10073,8 @@ var LeaferUI = (function (exports) {
|
|
|
10027
10073
|
return ui.leafer ? ui.leafer.selector : (Platform.selector || (Platform.selector = Creator.selector()));
|
|
10028
10074
|
}
|
|
10029
10075
|
exports.Group.prototype.pick = function (hitPoint, options) {
|
|
10030
|
-
this.leafer || this.updateLayout();
|
|
10031
10076
|
options || (options = emptyData);
|
|
10077
|
+
this.updateLayout();
|
|
10032
10078
|
return getSelector(this).getByPoint(hitPoint, options.hitRadius || 0, Object.assign(Object.assign({}, options), { target: this }));
|
|
10033
10079
|
};
|
|
10034
10080
|
|
|
@@ -10412,7 +10458,7 @@ var LeaferUI = (function (exports) {
|
|
|
10412
10458
|
box = tempBox.set(box).shrink(paint.padding);
|
|
10413
10459
|
if (paint.mode === 'strench')
|
|
10414
10460
|
paint.mode = 'stretch';
|
|
10415
|
-
const { opacity, mode, align, offset, scale, size, rotation, repeat } = paint;
|
|
10461
|
+
const { opacity, mode, align, offset, scale, size, rotation, repeat, filters } = paint;
|
|
10416
10462
|
const sameBox = box.width === width && box.height === height;
|
|
10417
10463
|
const data = { mode };
|
|
10418
10464
|
const swapSize = align !== 'center' && (rotation || 0) % 180 === 90;
|
|
@@ -10475,6 +10521,8 @@ var LeaferUI = (function (exports) {
|
|
|
10475
10521
|
data.height = height;
|
|
10476
10522
|
if (opacity)
|
|
10477
10523
|
data.opacity = opacity;
|
|
10524
|
+
if (filters)
|
|
10525
|
+
data.filters = filters;
|
|
10478
10526
|
if (repeat)
|
|
10479
10527
|
data.repeat = typeof repeat === 'string' ? (repeat === 'x' ? 'repeat-x' : 'repeat-y') : 'repeat';
|
|
10480
10528
|
return data;
|
|
@@ -10577,7 +10625,7 @@ var LeaferUI = (function (exports) {
|
|
|
10577
10625
|
scaleX = abs$1(scaleX);
|
|
10578
10626
|
scaleY = abs$1(scaleY);
|
|
10579
10627
|
const { image, data } = paint;
|
|
10580
|
-
let imageScale, imageMatrix, { width, height, scaleX: sx, scaleY: sy,
|
|
10628
|
+
let imageScale, imageMatrix, { width, height, scaleX: sx, scaleY: sy, transform, repeat } = data;
|
|
10581
10629
|
if (sx) {
|
|
10582
10630
|
imageMatrix = get$1();
|
|
10583
10631
|
copy$1(imageMatrix, transform);
|
|
@@ -10620,7 +10668,7 @@ var LeaferUI = (function (exports) {
|
|
|
10620
10668
|
}
|
|
10621
10669
|
scale(imageMatrix, 1 / scaleX, 1 / scaleY);
|
|
10622
10670
|
}
|
|
10623
|
-
const canvas = image.getCanvas(ceil(width) || 1, ceil(height) || 1, opacity);
|
|
10671
|
+
const canvas = image.getCanvas(ceil(width) || 1, ceil(height) || 1, data.opacity, data.filters);
|
|
10624
10672
|
const pattern = image.getPattern(canvas, repeat || (Platform.origin.noRepeat || 'no-repeat'), imageMatrix, paint);
|
|
10625
10673
|
paint.style = pattern;
|
|
10626
10674
|
paint.patternId = id;
|
|
@@ -10664,7 +10712,7 @@ var LeaferUI = (function (exports) {
|
|
|
10664
10712
|
canvas.opacity *= data.opacity;
|
|
10665
10713
|
if (data.transform)
|
|
10666
10714
|
canvas.transform(data.transform);
|
|
10667
|
-
canvas.drawImage(paint.image.
|
|
10715
|
+
canvas.drawImage(paint.image.getFull(data.filters), 0, 0, data.width, data.height);
|
|
10668
10716
|
canvas.restore();
|
|
10669
10717
|
return true;
|
|
10670
10718
|
}
|
|
@@ -10674,7 +10722,7 @@ var LeaferUI = (function (exports) {
|
|
|
10674
10722
|
}
|
|
10675
10723
|
else {
|
|
10676
10724
|
if (!paint.patternTask) {
|
|
10677
|
-
paint.patternTask = ImageManager.patternTasker.add(() => __awaiter(this,
|
|
10725
|
+
paint.patternTask = ImageManager.patternTasker.add(() => __awaiter(this, void 0, void 0, function* () {
|
|
10678
10726
|
paint.patternTask = null;
|
|
10679
10727
|
if (canvas.bounds.hit(ui.__nowWorld))
|
|
10680
10728
|
createPattern(ui, paint, pixelRatio);
|
|
@@ -11572,6 +11620,7 @@ var LeaferUI = (function (exports) {
|
|
|
11572
11620
|
exports.Eventer = Eventer;
|
|
11573
11621
|
exports.Export = Export;
|
|
11574
11622
|
exports.FileHelper = FileHelper;
|
|
11623
|
+
exports.Filter = Filter;
|
|
11575
11624
|
exports.FrameData = FrameData;
|
|
11576
11625
|
exports.GroupData = GroupData;
|
|
11577
11626
|
exports.HitCanvasManager = HitCanvasManager;
|
|
@@ -11641,6 +11690,7 @@ var LeaferUI = (function (exports) {
|
|
|
11641
11690
|
exports.RenderEvent = RenderEvent;
|
|
11642
11691
|
exports.Renderer = Renderer;
|
|
11643
11692
|
exports.ResizeEvent = ResizeEvent;
|
|
11693
|
+
exports.Resource = Resource;
|
|
11644
11694
|
exports.Run = Run;
|
|
11645
11695
|
exports.Selector = Selector;
|
|
11646
11696
|
exports.StarData = StarData;
|