leafer-draw 1.3.2 → 1.3.3
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/web.cjs +5 -5
- package/dist/web.esm.js +5 -5
- package/dist/web.esm.min.js +1 -1
- package/dist/web.js +180 -176
- package/dist/web.min.cjs +1 -1
- package/dist/web.min.js +1 -1
- package/dist/web.module.js +180 -176
- package/dist/web.module.min.js +1 -1
- package/package.json +2 -2
package/dist/web.module.js
CHANGED
|
@@ -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 === undefined ? undefined : value.constructor) === Object && ((_a = t[key]) === null || _a === undefined ? undefined : _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 === undefined ? undefined : _b.constructor) === Object)
|
|
1540
1540
|
assign(t[key] = {}, merge[key], exclude[key]);
|
|
1541
1541
|
return;
|
|
1542
1542
|
}
|
|
@@ -1705,7 +1705,7 @@ LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR
|
|
|
1705
1705
|
OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR
|
|
1706
1706
|
PERFORMANCE OF THIS SOFTWARE.
|
|
1707
1707
|
***************************************************************************** */
|
|
1708
|
-
/* global Reflect, Promise, SuppressedError, Symbol */
|
|
1708
|
+
/* global Reflect, Promise, SuppressedError, Symbol, Iterator */
|
|
1709
1709
|
|
|
1710
1710
|
|
|
1711
1711
|
function __decorate(decorators, target, key, desc) {
|
|
@@ -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 undefined; }
|
|
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 undefined; }
|
|
1834
|
+
createLinearGradient(_x0, _y0, _x1, _y1) { return undefined; }
|
|
1835
|
+
createPattern(_image, _repetition) { return undefined; }
|
|
1836
|
+
createRadialGradient(_x0, _y0, _r0, _x1, _y1, _r1) { return undefined; }
|
|
1837
1837
|
fillText(_text, _x, _y, _maxWidth) { }
|
|
1838
|
-
measureText(_text) { return
|
|
1838
|
+
measureText(_text) { return undefined; }
|
|
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", undefined);
|
|
1847
1847
|
__decorate([
|
|
1848
1848
|
contextAttr('imageSmoothingQuality')
|
|
1849
|
-
], Canvas$1.prototype, "smoothLevel",
|
|
1849
|
+
], Canvas$1.prototype, "smoothLevel", undefined);
|
|
1850
1850
|
__decorate([
|
|
1851
1851
|
contextAttr('globalAlpha')
|
|
1852
|
-
], Canvas$1.prototype, "opacity",
|
|
1852
|
+
], Canvas$1.prototype, "opacity", undefined);
|
|
1853
1853
|
__decorate([
|
|
1854
1854
|
contextAttr()
|
|
1855
|
-
], Canvas$1.prototype, "fillStyle",
|
|
1855
|
+
], Canvas$1.prototype, "fillStyle", undefined);
|
|
1856
1856
|
__decorate([
|
|
1857
1857
|
contextAttr()
|
|
1858
|
-
], Canvas$1.prototype, "strokeStyle",
|
|
1858
|
+
], Canvas$1.prototype, "strokeStyle", undefined);
|
|
1859
1859
|
__decorate([
|
|
1860
1860
|
contextAttr('lineWidth')
|
|
1861
|
-
], Canvas$1.prototype, "strokeWidth",
|
|
1861
|
+
], Canvas$1.prototype, "strokeWidth", undefined);
|
|
1862
1862
|
__decorate([
|
|
1863
1863
|
contextAttr('lineCap')
|
|
1864
|
-
], Canvas$1.prototype, "strokeCap",
|
|
1864
|
+
], Canvas$1.prototype, "strokeCap", undefined);
|
|
1865
1865
|
__decorate([
|
|
1866
1866
|
contextAttr('lineJoin')
|
|
1867
|
-
], Canvas$1.prototype, "strokeJoin",
|
|
1867
|
+
], Canvas$1.prototype, "strokeJoin", undefined);
|
|
1868
1868
|
__decorate([
|
|
1869
1869
|
contextAttr('lineDashOffset')
|
|
1870
|
-
], Canvas$1.prototype, "dashOffset",
|
|
1870
|
+
], Canvas$1.prototype, "dashOffset", undefined);
|
|
1871
1871
|
__decorate([
|
|
1872
1872
|
contextAttr()
|
|
1873
|
-
], Canvas$1.prototype, "miterLimit",
|
|
1873
|
+
], Canvas$1.prototype, "miterLimit", undefined);
|
|
1874
1874
|
__decorate([
|
|
1875
1875
|
contextAttr()
|
|
1876
|
-
], Canvas$1.prototype, "shadowBlur",
|
|
1876
|
+
], Canvas$1.prototype, "shadowBlur", undefined);
|
|
1877
1877
|
__decorate([
|
|
1878
1878
|
contextAttr()
|
|
1879
|
-
], Canvas$1.prototype, "shadowColor",
|
|
1879
|
+
], Canvas$1.prototype, "shadowColor", undefined);
|
|
1880
1880
|
__decorate([
|
|
1881
1881
|
contextAttr()
|
|
1882
|
-
], Canvas$1.prototype, "shadowOffsetX",
|
|
1882
|
+
], Canvas$1.prototype, "shadowOffsetX", undefined);
|
|
1883
1883
|
__decorate([
|
|
1884
1884
|
contextAttr()
|
|
1885
|
-
], Canvas$1.prototype, "shadowOffsetY",
|
|
1885
|
+
], Canvas$1.prototype, "shadowOffsetY", undefined);
|
|
1886
1886
|
__decorate([
|
|
1887
1887
|
contextAttr()
|
|
1888
|
-
], Canvas$1.prototype, "filter",
|
|
1888
|
+
], Canvas$1.prototype, "filter", undefined);
|
|
1889
1889
|
__decorate([
|
|
1890
1890
|
contextAttr()
|
|
1891
|
-
], Canvas$1.prototype, "font",
|
|
1891
|
+
], Canvas$1.prototype, "font", undefined);
|
|
1892
1892
|
__decorate([
|
|
1893
1893
|
contextAttr()
|
|
1894
|
-
], Canvas$1.prototype, "fontKerning",
|
|
1894
|
+
], Canvas$1.prototype, "fontKerning", undefined);
|
|
1895
1895
|
__decorate([
|
|
1896
1896
|
contextAttr()
|
|
1897
|
-
], Canvas$1.prototype, "fontStretch",
|
|
1897
|
+
], Canvas$1.prototype, "fontStretch", undefined);
|
|
1898
1898
|
__decorate([
|
|
1899
1899
|
contextAttr()
|
|
1900
|
-
], Canvas$1.prototype, "fontVariantCaps",
|
|
1900
|
+
], Canvas$1.prototype, "fontVariantCaps", undefined);
|
|
1901
1901
|
__decorate([
|
|
1902
1902
|
contextAttr()
|
|
1903
|
-
], Canvas$1.prototype, "textAlign",
|
|
1903
|
+
], Canvas$1.prototype, "textAlign", undefined);
|
|
1904
1904
|
__decorate([
|
|
1905
1905
|
contextAttr()
|
|
1906
|
-
], Canvas$1.prototype, "textBaseline",
|
|
1906
|
+
], Canvas$1.prototype, "textBaseline", undefined);
|
|
1907
1907
|
__decorate([
|
|
1908
1908
|
contextAttr()
|
|
1909
|
-
], Canvas$1.prototype, "textRendering",
|
|
1909
|
+
], Canvas$1.prototype, "textRendering", undefined);
|
|
1910
1910
|
__decorate([
|
|
1911
1911
|
contextAttr()
|
|
1912
|
-
], Canvas$1.prototype, "wordSpacing",
|
|
1912
|
+
], Canvas$1.prototype, "wordSpacing", undefined);
|
|
1913
1913
|
__decorate([
|
|
1914
1914
|
contextAttr()
|
|
1915
|
-
], Canvas$1.prototype, "letterSpacing",
|
|
1915
|
+
], Canvas$1.prototype, "letterSpacing", undefined);
|
|
1916
1916
|
__decorate([
|
|
1917
1917
|
contextAttr()
|
|
1918
|
-
], Canvas$1.prototype, "direction",
|
|
1918
|
+
], Canvas$1.prototype, "direction", undefined);
|
|
1919
1919
|
__decorate([
|
|
1920
1920
|
contextMethod()
|
|
1921
1921
|
], Canvas$1.prototype, "setTransform", null);
|
|
@@ -3384,7 +3384,7 @@ class TaskItem {
|
|
|
3384
3384
|
this.task = task;
|
|
3385
3385
|
}
|
|
3386
3386
|
run() {
|
|
3387
|
-
return __awaiter(this,
|
|
3387
|
+
return __awaiter(this, undefined, undefined, function* () {
|
|
3388
3388
|
try {
|
|
3389
3389
|
if (this.task && !this.isComplete && this.parent.running)
|
|
3390
3390
|
yield this.task();
|
|
@@ -3696,7 +3696,7 @@ class LeaferImage {
|
|
|
3696
3696
|
load(onSuccess, onError) {
|
|
3697
3697
|
if (!this.loading) {
|
|
3698
3698
|
this.loading = true;
|
|
3699
|
-
ImageManager.tasker.add(() => __awaiter(this,
|
|
3699
|
+
ImageManager.tasker.add(() => __awaiter(this, undefined, undefined, function* () {
|
|
3700
3700
|
return yield Platform.origin.loadImage(this.url).then((img) => {
|
|
3701
3701
|
this.ready = true;
|
|
3702
3702
|
this.width = img.naturalWidth || img.width;
|
|
@@ -5175,8 +5175,7 @@ const LeafBounds = {
|
|
|
5175
5175
|
__updateAutoLayout() {
|
|
5176
5176
|
this.__layout.matrixChanged = true;
|
|
5177
5177
|
if (this.isBranch) {
|
|
5178
|
-
|
|
5179
|
-
this.leafer.layouter.addExtra(this);
|
|
5178
|
+
this.__extraUpdate();
|
|
5180
5179
|
if (this.__.flow) {
|
|
5181
5180
|
if (this.__layout.boxChanged)
|
|
5182
5181
|
this.__updateFlowLayout();
|
|
@@ -5329,7 +5328,7 @@ let Leaf = class Leaf {
|
|
|
5329
5328
|
get __worldFlipped() { return this.__world.scaleX < 0 || this.__world.scaleY < 0; }
|
|
5330
5329
|
get __onlyHitMask() { return this.__hasMask && !this.__.hitChildren; }
|
|
5331
5330
|
get __ignoreHitWorld() { return (this.__hasMask || this.__hasEraser) && this.__.hitChildren; }
|
|
5332
|
-
get __inLazyBounds() {
|
|
5331
|
+
get __inLazyBounds() { return this.leaferIsCreated && this.leafer.lazyBounds.hit(this.__world); }
|
|
5333
5332
|
get pathInputed() { return this.__.__pathInputed; }
|
|
5334
5333
|
set event(map) { this.on(map); }
|
|
5335
5334
|
constructor(data) {
|
|
@@ -5440,6 +5439,10 @@ let Leaf = class Leaf {
|
|
|
5440
5439
|
forceRender(_bounds, _sync) {
|
|
5441
5440
|
this.forceUpdate('surface');
|
|
5442
5441
|
}
|
|
5442
|
+
__extraUpdate() {
|
|
5443
|
+
if (this.leaferIsReady)
|
|
5444
|
+
this.leafer.layouter.addExtra(this);
|
|
5445
|
+
}
|
|
5443
5446
|
__updateWorldMatrix() { }
|
|
5444
5447
|
__updateLocalMatrix() { }
|
|
5445
5448
|
__updateWorldBounds() { }
|
|
@@ -6007,7 +6010,7 @@ class LeafLevelList {
|
|
|
6007
6010
|
}
|
|
6008
6011
|
}
|
|
6009
6012
|
|
|
6010
|
-
const version = "1.3.
|
|
6013
|
+
const version = "1.3.3";
|
|
6011
6014
|
|
|
6012
6015
|
const debug$4 = Debug.get('LeaferCanvas');
|
|
6013
6016
|
class LeaferCanvas extends LeaferCanvasBase {
|
|
@@ -6528,7 +6531,7 @@ class Layouter {
|
|
|
6528
6531
|
}
|
|
6529
6532
|
partLayout() {
|
|
6530
6533
|
var _a;
|
|
6531
|
-
if (!((_a = this.__updatedList) === null || _a ===
|
|
6534
|
+
if (!((_a = this.__updatedList) === null || _a === undefined ? undefined : _a.length))
|
|
6532
6535
|
return;
|
|
6533
6536
|
const t = Run.start('PartLayout');
|
|
6534
6537
|
const { target, __updatedList: updateList } = this;
|
|
@@ -6943,6 +6946,7 @@ class UIData extends LeafData {
|
|
|
6943
6946
|
return t.fill && this.__hasStroke;
|
|
6944
6947
|
}
|
|
6945
6948
|
get __clipAfterFill() { const t = this; return (t.cornerRadius || t.innerShadow || t.__pathInputed); }
|
|
6949
|
+
get __hasSurface() { const t = this; return (t.fill || t.stroke); }
|
|
6946
6950
|
get __autoWidth() { return !this._width; }
|
|
6947
6951
|
get __autoHeight() { return !this._height; }
|
|
6948
6952
|
get __autoSide() { return !this._width || !this._height; }
|
|
@@ -7446,199 +7450,199 @@ let UI = UI_1 = class UI extends Leaf {
|
|
|
7446
7450
|
};
|
|
7447
7451
|
__decorate([
|
|
7448
7452
|
dataProcessor(UIData)
|
|
7449
|
-
], UI.prototype, "__",
|
|
7453
|
+
], UI.prototype, "__", undefined);
|
|
7450
7454
|
__decorate([
|
|
7451
7455
|
zoomLayerType()
|
|
7452
|
-
], UI.prototype, "zoomLayer",
|
|
7456
|
+
], UI.prototype, "zoomLayer", undefined);
|
|
7453
7457
|
__decorate([
|
|
7454
7458
|
dataType('')
|
|
7455
|
-
], UI.prototype, "id",
|
|
7459
|
+
], UI.prototype, "id", undefined);
|
|
7456
7460
|
__decorate([
|
|
7457
7461
|
dataType('')
|
|
7458
|
-
], UI.prototype, "name",
|
|
7462
|
+
], UI.prototype, "name", undefined);
|
|
7459
7463
|
__decorate([
|
|
7460
7464
|
dataType('')
|
|
7461
|
-
], UI.prototype, "className",
|
|
7465
|
+
], UI.prototype, "className", undefined);
|
|
7462
7466
|
__decorate([
|
|
7463
7467
|
surfaceType('pass-through')
|
|
7464
|
-
], UI.prototype, "blendMode",
|
|
7468
|
+
], UI.prototype, "blendMode", undefined);
|
|
7465
7469
|
__decorate([
|
|
7466
7470
|
opacityType(1)
|
|
7467
|
-
], UI.prototype, "opacity",
|
|
7471
|
+
], UI.prototype, "opacity", undefined);
|
|
7468
7472
|
__decorate([
|
|
7469
7473
|
visibleType(true)
|
|
7470
|
-
], UI.prototype, "visible",
|
|
7474
|
+
], UI.prototype, "visible", undefined);
|
|
7471
7475
|
__decorate([
|
|
7472
7476
|
surfaceType(false)
|
|
7473
|
-
], UI.prototype, "locked",
|
|
7477
|
+
], UI.prototype, "locked", undefined);
|
|
7474
7478
|
__decorate([
|
|
7475
7479
|
sortType(0)
|
|
7476
|
-
], UI.prototype, "zIndex",
|
|
7480
|
+
], UI.prototype, "zIndex", undefined);
|
|
7477
7481
|
__decorate([
|
|
7478
7482
|
maskType(false)
|
|
7479
|
-
], UI.prototype, "mask",
|
|
7483
|
+
], UI.prototype, "mask", undefined);
|
|
7480
7484
|
__decorate([
|
|
7481
7485
|
eraserType(false)
|
|
7482
|
-
], UI.prototype, "eraser",
|
|
7486
|
+
], UI.prototype, "eraser", undefined);
|
|
7483
7487
|
__decorate([
|
|
7484
7488
|
positionType(0, true)
|
|
7485
|
-
], UI.prototype, "x",
|
|
7489
|
+
], UI.prototype, "x", undefined);
|
|
7486
7490
|
__decorate([
|
|
7487
7491
|
positionType(0, true)
|
|
7488
|
-
], UI.prototype, "y",
|
|
7492
|
+
], UI.prototype, "y", undefined);
|
|
7489
7493
|
__decorate([
|
|
7490
7494
|
boundsType(100, true)
|
|
7491
|
-
], UI.prototype, "width",
|
|
7495
|
+
], UI.prototype, "width", undefined);
|
|
7492
7496
|
__decorate([
|
|
7493
7497
|
boundsType(100, true)
|
|
7494
|
-
], UI.prototype, "height",
|
|
7498
|
+
], UI.prototype, "height", undefined);
|
|
7495
7499
|
__decorate([
|
|
7496
7500
|
scaleType(1, true)
|
|
7497
|
-
], UI.prototype, "scaleX",
|
|
7501
|
+
], UI.prototype, "scaleX", undefined);
|
|
7498
7502
|
__decorate([
|
|
7499
7503
|
scaleType(1, true)
|
|
7500
|
-
], UI.prototype, "scaleY",
|
|
7504
|
+
], UI.prototype, "scaleY", undefined);
|
|
7501
7505
|
__decorate([
|
|
7502
7506
|
rotationType(0, true)
|
|
7503
|
-
], UI.prototype, "rotation",
|
|
7507
|
+
], UI.prototype, "rotation", undefined);
|
|
7504
7508
|
__decorate([
|
|
7505
7509
|
rotationType(0, true)
|
|
7506
|
-
], UI.prototype, "skewX",
|
|
7510
|
+
], UI.prototype, "skewX", undefined);
|
|
7507
7511
|
__decorate([
|
|
7508
7512
|
rotationType(0, true)
|
|
7509
|
-
], UI.prototype, "skewY",
|
|
7513
|
+
], UI.prototype, "skewY", undefined);
|
|
7510
7514
|
__decorate([
|
|
7511
7515
|
positionType(0, true)
|
|
7512
|
-
], UI.prototype, "offsetX",
|
|
7516
|
+
], UI.prototype, "offsetX", undefined);
|
|
7513
7517
|
__decorate([
|
|
7514
7518
|
positionType(0, true)
|
|
7515
|
-
], UI.prototype, "offsetY",
|
|
7519
|
+
], UI.prototype, "offsetY", undefined);
|
|
7516
7520
|
__decorate([
|
|
7517
7521
|
positionType(0, true)
|
|
7518
|
-
], UI.prototype, "scrollX",
|
|
7522
|
+
], UI.prototype, "scrollX", undefined);
|
|
7519
7523
|
__decorate([
|
|
7520
7524
|
positionType(0, true)
|
|
7521
|
-
], UI.prototype, "scrollY",
|
|
7525
|
+
], UI.prototype, "scrollY", undefined);
|
|
7522
7526
|
__decorate([
|
|
7523
7527
|
autoLayoutType()
|
|
7524
|
-
], UI.prototype, "origin",
|
|
7528
|
+
], UI.prototype, "origin", undefined);
|
|
7525
7529
|
__decorate([
|
|
7526
7530
|
autoLayoutType()
|
|
7527
|
-
], UI.prototype, "around",
|
|
7531
|
+
], UI.prototype, "around", undefined);
|
|
7528
7532
|
__decorate([
|
|
7529
7533
|
dataType(false)
|
|
7530
|
-
], UI.prototype, "lazy",
|
|
7534
|
+
], UI.prototype, "lazy", undefined);
|
|
7531
7535
|
__decorate([
|
|
7532
7536
|
naturalBoundsType(1)
|
|
7533
|
-
], UI.prototype, "pixelRatio",
|
|
7537
|
+
], UI.prototype, "pixelRatio", undefined);
|
|
7534
7538
|
__decorate([
|
|
7535
7539
|
pathInputType()
|
|
7536
|
-
], UI.prototype, "path",
|
|
7540
|
+
], UI.prototype, "path", undefined);
|
|
7537
7541
|
__decorate([
|
|
7538
7542
|
pathType()
|
|
7539
|
-
], UI.prototype, "windingRule",
|
|
7543
|
+
], UI.prototype, "windingRule", undefined);
|
|
7540
7544
|
__decorate([
|
|
7541
7545
|
pathType(true)
|
|
7542
|
-
], UI.prototype, "closed",
|
|
7546
|
+
], UI.prototype, "closed", undefined);
|
|
7543
7547
|
__decorate([
|
|
7544
7548
|
boundsType(0)
|
|
7545
|
-
], UI.prototype, "padding",
|
|
7549
|
+
], UI.prototype, "padding", undefined);
|
|
7546
7550
|
__decorate([
|
|
7547
7551
|
boundsType(false)
|
|
7548
|
-
], UI.prototype, "lockRatio",
|
|
7552
|
+
], UI.prototype, "lockRatio", undefined);
|
|
7549
7553
|
__decorate([
|
|
7550
7554
|
boundsType()
|
|
7551
|
-
], UI.prototype, "widthRange",
|
|
7555
|
+
], UI.prototype, "widthRange", undefined);
|
|
7552
7556
|
__decorate([
|
|
7553
7557
|
boundsType()
|
|
7554
|
-
], UI.prototype, "heightRange",
|
|
7558
|
+
], UI.prototype, "heightRange", undefined);
|
|
7555
7559
|
__decorate([
|
|
7556
7560
|
dataType(false)
|
|
7557
|
-
], UI.prototype, "draggable",
|
|
7561
|
+
], UI.prototype, "draggable", undefined);
|
|
7558
7562
|
__decorate([
|
|
7559
7563
|
dataType()
|
|
7560
|
-
], UI.prototype, "dragBounds",
|
|
7564
|
+
], UI.prototype, "dragBounds", undefined);
|
|
7561
7565
|
__decorate([
|
|
7562
7566
|
dataType(false)
|
|
7563
|
-
], UI.prototype, "editable",
|
|
7567
|
+
], UI.prototype, "editable", undefined);
|
|
7564
7568
|
__decorate([
|
|
7565
7569
|
hitType(true)
|
|
7566
|
-
], UI.prototype, "hittable",
|
|
7570
|
+
], UI.prototype, "hittable", undefined);
|
|
7567
7571
|
__decorate([
|
|
7568
7572
|
hitType('path')
|
|
7569
|
-
], UI.prototype, "hitFill",
|
|
7573
|
+
], UI.prototype, "hitFill", undefined);
|
|
7570
7574
|
__decorate([
|
|
7571
7575
|
strokeType('path')
|
|
7572
|
-
], UI.prototype, "hitStroke",
|
|
7576
|
+
], UI.prototype, "hitStroke", undefined);
|
|
7573
7577
|
__decorate([
|
|
7574
7578
|
hitType(false)
|
|
7575
|
-
], UI.prototype, "hitBox",
|
|
7579
|
+
], UI.prototype, "hitBox", undefined);
|
|
7576
7580
|
__decorate([
|
|
7577
7581
|
hitType(true)
|
|
7578
|
-
], UI.prototype, "hitChildren",
|
|
7582
|
+
], UI.prototype, "hitChildren", undefined);
|
|
7579
7583
|
__decorate([
|
|
7580
7584
|
hitType(true)
|
|
7581
|
-
], UI.prototype, "hitSelf",
|
|
7585
|
+
], UI.prototype, "hitSelf", undefined);
|
|
7582
7586
|
__decorate([
|
|
7583
7587
|
hitType()
|
|
7584
|
-
], UI.prototype, "hitRadius",
|
|
7588
|
+
], UI.prototype, "hitRadius", undefined);
|
|
7585
7589
|
__decorate([
|
|
7586
7590
|
cursorType('')
|
|
7587
|
-
], UI.prototype, "cursor",
|
|
7591
|
+
], UI.prototype, "cursor", undefined);
|
|
7588
7592
|
__decorate([
|
|
7589
7593
|
surfaceType()
|
|
7590
|
-
], UI.prototype, "fill",
|
|
7594
|
+
], UI.prototype, "fill", undefined);
|
|
7591
7595
|
__decorate([
|
|
7592
7596
|
strokeType()
|
|
7593
|
-
], UI.prototype, "stroke",
|
|
7597
|
+
], UI.prototype, "stroke", undefined);
|
|
7594
7598
|
__decorate([
|
|
7595
7599
|
strokeType('inside')
|
|
7596
|
-
], UI.prototype, "strokeAlign",
|
|
7600
|
+
], UI.prototype, "strokeAlign", undefined);
|
|
7597
7601
|
__decorate([
|
|
7598
7602
|
strokeType(1)
|
|
7599
|
-
], UI.prototype, "strokeWidth",
|
|
7603
|
+
], UI.prototype, "strokeWidth", undefined);
|
|
7600
7604
|
__decorate([
|
|
7601
7605
|
strokeType(false)
|
|
7602
|
-
], UI.prototype, "strokeWidthFixed",
|
|
7606
|
+
], UI.prototype, "strokeWidthFixed", undefined);
|
|
7603
7607
|
__decorate([
|
|
7604
7608
|
strokeType('none')
|
|
7605
|
-
], UI.prototype, "strokeCap",
|
|
7609
|
+
], UI.prototype, "strokeCap", undefined);
|
|
7606
7610
|
__decorate([
|
|
7607
7611
|
strokeType('miter')
|
|
7608
|
-
], UI.prototype, "strokeJoin",
|
|
7612
|
+
], UI.prototype, "strokeJoin", undefined);
|
|
7609
7613
|
__decorate([
|
|
7610
7614
|
strokeType()
|
|
7611
|
-
], UI.prototype, "dashPattern",
|
|
7615
|
+
], UI.prototype, "dashPattern", undefined);
|
|
7612
7616
|
__decorate([
|
|
7613
7617
|
strokeType()
|
|
7614
|
-
], UI.prototype, "dashOffset",
|
|
7618
|
+
], UI.prototype, "dashOffset", undefined);
|
|
7615
7619
|
__decorate([
|
|
7616
7620
|
strokeType(10)
|
|
7617
|
-
], UI.prototype, "miterLimit",
|
|
7621
|
+
], UI.prototype, "miterLimit", undefined);
|
|
7618
7622
|
__decorate([
|
|
7619
7623
|
pathType(0)
|
|
7620
|
-
], UI.prototype, "cornerRadius",
|
|
7624
|
+
], UI.prototype, "cornerRadius", undefined);
|
|
7621
7625
|
__decorate([
|
|
7622
7626
|
pathType()
|
|
7623
|
-
], UI.prototype, "cornerSmoothing",
|
|
7627
|
+
], UI.prototype, "cornerSmoothing", undefined);
|
|
7624
7628
|
__decorate([
|
|
7625
7629
|
effectType()
|
|
7626
|
-
], UI.prototype, "shadow",
|
|
7630
|
+
], UI.prototype, "shadow", undefined);
|
|
7627
7631
|
__decorate([
|
|
7628
7632
|
effectType()
|
|
7629
|
-
], UI.prototype, "innerShadow",
|
|
7633
|
+
], UI.prototype, "innerShadow", undefined);
|
|
7630
7634
|
__decorate([
|
|
7631
7635
|
effectType()
|
|
7632
|
-
], UI.prototype, "blur",
|
|
7636
|
+
], UI.prototype, "blur", undefined);
|
|
7633
7637
|
__decorate([
|
|
7634
7638
|
effectType()
|
|
7635
|
-
], UI.prototype, "backgroundBlur",
|
|
7639
|
+
], UI.prototype, "backgroundBlur", undefined);
|
|
7636
7640
|
__decorate([
|
|
7637
7641
|
effectType()
|
|
7638
|
-
], UI.prototype, "grayscale",
|
|
7642
|
+
], UI.prototype, "grayscale", undefined);
|
|
7639
7643
|
__decorate([
|
|
7640
7644
|
dataType({})
|
|
7641
|
-
], UI.prototype, "data",
|
|
7645
|
+
], UI.prototype, "data", undefined);
|
|
7642
7646
|
__decorate([
|
|
7643
7647
|
rewrite(Leaf.prototype.reset)
|
|
7644
7648
|
], UI.prototype, "reset", null);
|
|
@@ -7699,7 +7703,7 @@ let Group = class Group extends UI {
|
|
|
7699
7703
|
};
|
|
7700
7704
|
__decorate([
|
|
7701
7705
|
dataProcessor(GroupData)
|
|
7702
|
-
], Group.prototype, "__",
|
|
7706
|
+
], Group.prototype, "__", undefined);
|
|
7703
7707
|
Group = __decorate([
|
|
7704
7708
|
useModule(Branch),
|
|
7705
7709
|
registerUI()
|
|
@@ -7870,8 +7874,6 @@ let Leafer = Leafer_1 = class Leafer extends Group {
|
|
|
7870
7874
|
__setAttr(attrName, newValue) {
|
|
7871
7875
|
if (this.canvas) {
|
|
7872
7876
|
if (canvasSizeAttrs.includes(attrName)) {
|
|
7873
|
-
if (!newValue)
|
|
7874
|
-
debug.warn(attrName + ' is 0');
|
|
7875
7877
|
this.__changeCanvasSize(attrName, newValue);
|
|
7876
7878
|
}
|
|
7877
7879
|
else if (attrName === 'fill') {
|
|
@@ -8074,10 +8076,10 @@ let Leafer = Leafer_1 = class Leafer extends Group {
|
|
|
8074
8076
|
Leafer.list = new LeafList();
|
|
8075
8077
|
__decorate([
|
|
8076
8078
|
dataProcessor(LeaferData)
|
|
8077
|
-
], Leafer.prototype, "__",
|
|
8079
|
+
], Leafer.prototype, "__", undefined);
|
|
8078
8080
|
__decorate([
|
|
8079
8081
|
boundsType()
|
|
8080
|
-
], Leafer.prototype, "pixelRatio",
|
|
8082
|
+
], Leafer.prototype, "pixelRatio", undefined);
|
|
8081
8083
|
Leafer = Leafer_1 = __decorate([
|
|
8082
8084
|
registerUI()
|
|
8083
8085
|
], Leafer);
|
|
@@ -8090,7 +8092,7 @@ let Rect = class Rect extends UI {
|
|
|
8090
8092
|
};
|
|
8091
8093
|
__decorate([
|
|
8092
8094
|
dataProcessor(RectData)
|
|
8093
|
-
], Rect.prototype, "__",
|
|
8095
|
+
], Rect.prototype, "__", undefined);
|
|
8094
8096
|
Rect = __decorate([
|
|
8095
8097
|
useModule(RectRender),
|
|
8096
8098
|
rewriteAble(),
|
|
@@ -8115,6 +8117,8 @@ let Box = class Box extends Group {
|
|
|
8115
8117
|
const data = this.__;
|
|
8116
8118
|
if (this.children.length) {
|
|
8117
8119
|
if (data.__autoSide) {
|
|
8120
|
+
if (data.__hasSurface)
|
|
8121
|
+
this.__extraUpdate();
|
|
8118
8122
|
super.__updateBoxBounds();
|
|
8119
8123
|
const { boxBounds } = this.__layout;
|
|
8120
8124
|
if (!data.__autoSize) {
|
|
@@ -8179,13 +8183,13 @@ let Box = class Box extends Group {
|
|
|
8179
8183
|
};
|
|
8180
8184
|
__decorate([
|
|
8181
8185
|
dataProcessor(BoxData)
|
|
8182
|
-
], Box.prototype, "__",
|
|
8186
|
+
], Box.prototype, "__", undefined);
|
|
8183
8187
|
__decorate([
|
|
8184
8188
|
dataType(false)
|
|
8185
|
-
], Box.prototype, "resizeChildren",
|
|
8189
|
+
], Box.prototype, "resizeChildren", undefined);
|
|
8186
8190
|
__decorate([
|
|
8187
8191
|
affectRenderBoundsType('show')
|
|
8188
|
-
], Box.prototype, "overflow",
|
|
8192
|
+
], Box.prototype, "overflow", undefined);
|
|
8189
8193
|
__decorate([
|
|
8190
8194
|
rewrite(rect.__updateStrokeSpread)
|
|
8191
8195
|
], Box.prototype, "__updateStrokeSpread", null);
|
|
@@ -8224,13 +8228,13 @@ let Frame = class Frame extends Box {
|
|
|
8224
8228
|
};
|
|
8225
8229
|
__decorate([
|
|
8226
8230
|
dataProcessor(FrameData)
|
|
8227
|
-
], Frame.prototype, "__",
|
|
8231
|
+
], Frame.prototype, "__", undefined);
|
|
8228
8232
|
__decorate([
|
|
8229
8233
|
surfaceType('#FFFFFF')
|
|
8230
|
-
], Frame.prototype, "fill",
|
|
8234
|
+
], Frame.prototype, "fill", undefined);
|
|
8231
8235
|
__decorate([
|
|
8232
8236
|
affectRenderBoundsType('hide')
|
|
8233
|
-
], Frame.prototype, "overflow",
|
|
8237
|
+
], Frame.prototype, "overflow", undefined);
|
|
8234
8238
|
Frame = __decorate([
|
|
8235
8239
|
registerUI()
|
|
8236
8240
|
], Frame);
|
|
@@ -8277,16 +8281,16 @@ let Ellipse = class Ellipse extends UI {
|
|
|
8277
8281
|
};
|
|
8278
8282
|
__decorate([
|
|
8279
8283
|
dataProcessor(EllipseData)
|
|
8280
|
-
], Ellipse.prototype, "__",
|
|
8284
|
+
], Ellipse.prototype, "__", undefined);
|
|
8281
8285
|
__decorate([
|
|
8282
8286
|
pathType(0)
|
|
8283
|
-
], Ellipse.prototype, "innerRadius",
|
|
8287
|
+
], Ellipse.prototype, "innerRadius", undefined);
|
|
8284
8288
|
__decorate([
|
|
8285
8289
|
pathType(0)
|
|
8286
|
-
], Ellipse.prototype, "startAngle",
|
|
8290
|
+
], Ellipse.prototype, "startAngle", undefined);
|
|
8287
8291
|
__decorate([
|
|
8288
8292
|
pathType(0)
|
|
8289
|
-
], Ellipse.prototype, "endAngle",
|
|
8293
|
+
], Ellipse.prototype, "endAngle", undefined);
|
|
8290
8294
|
Ellipse = __decorate([
|
|
8291
8295
|
registerUI()
|
|
8292
8296
|
], Ellipse);
|
|
@@ -8345,22 +8349,22 @@ let Line = class Line extends UI {
|
|
|
8345
8349
|
};
|
|
8346
8350
|
__decorate([
|
|
8347
8351
|
dataProcessor(LineData)
|
|
8348
|
-
], Line.prototype, "__",
|
|
8352
|
+
], Line.prototype, "__", undefined);
|
|
8349
8353
|
__decorate([
|
|
8350
8354
|
affectStrokeBoundsType('center')
|
|
8351
|
-
], Line.prototype, "strokeAlign",
|
|
8355
|
+
], Line.prototype, "strokeAlign", undefined);
|
|
8352
8356
|
__decorate([
|
|
8353
8357
|
boundsType(0)
|
|
8354
|
-
], Line.prototype, "height",
|
|
8358
|
+
], Line.prototype, "height", undefined);
|
|
8355
8359
|
__decorate([
|
|
8356
8360
|
pathType()
|
|
8357
|
-
], Line.prototype, "points",
|
|
8361
|
+
], Line.prototype, "points", undefined);
|
|
8358
8362
|
__decorate([
|
|
8359
8363
|
pathType(0)
|
|
8360
|
-
], Line.prototype, "curve",
|
|
8364
|
+
], Line.prototype, "curve", undefined);
|
|
8361
8365
|
__decorate([
|
|
8362
8366
|
pathType(false)
|
|
8363
|
-
], Line.prototype, "closed",
|
|
8367
|
+
], Line.prototype, "closed", undefined);
|
|
8364
8368
|
Line = __decorate([
|
|
8365
8369
|
registerUI()
|
|
8366
8370
|
], Line);
|
|
@@ -8393,16 +8397,16 @@ let Polygon = class Polygon extends UI {
|
|
|
8393
8397
|
};
|
|
8394
8398
|
__decorate([
|
|
8395
8399
|
dataProcessor(PolygonData)
|
|
8396
|
-
], Polygon.prototype, "__",
|
|
8400
|
+
], Polygon.prototype, "__", undefined);
|
|
8397
8401
|
__decorate([
|
|
8398
8402
|
pathType(3)
|
|
8399
|
-
], Polygon.prototype, "sides",
|
|
8403
|
+
], Polygon.prototype, "sides", undefined);
|
|
8400
8404
|
__decorate([
|
|
8401
8405
|
pathType()
|
|
8402
|
-
], Polygon.prototype, "points",
|
|
8406
|
+
], Polygon.prototype, "points", undefined);
|
|
8403
8407
|
__decorate([
|
|
8404
8408
|
pathType(0)
|
|
8405
|
-
], Polygon.prototype, "curve",
|
|
8409
|
+
], Polygon.prototype, "curve", undefined);
|
|
8406
8410
|
__decorate([
|
|
8407
8411
|
rewrite(line.__updateRenderPath)
|
|
8408
8412
|
], Polygon.prototype, "__updateRenderPath", null);
|
|
@@ -8434,13 +8438,13 @@ let Star = class Star extends UI {
|
|
|
8434
8438
|
};
|
|
8435
8439
|
__decorate([
|
|
8436
8440
|
dataProcessor(StarData)
|
|
8437
|
-
], Star.prototype, "__",
|
|
8441
|
+
], Star.prototype, "__", undefined);
|
|
8438
8442
|
__decorate([
|
|
8439
8443
|
pathType(5)
|
|
8440
|
-
], Star.prototype, "corners",
|
|
8444
|
+
], Star.prototype, "corners", undefined);
|
|
8441
8445
|
__decorate([
|
|
8442
8446
|
pathType(0.382)
|
|
8443
|
-
], Star.prototype, "innerRadius",
|
|
8447
|
+
], Star.prototype, "innerRadius", undefined);
|
|
8444
8448
|
Star = __decorate([
|
|
8445
8449
|
registerUI()
|
|
8446
8450
|
], Star);
|
|
@@ -8462,10 +8466,10 @@ let Image$1 = class Image extends Rect {
|
|
|
8462
8466
|
};
|
|
8463
8467
|
__decorate([
|
|
8464
8468
|
dataProcessor(ImageData)
|
|
8465
|
-
], Image$1.prototype, "__",
|
|
8469
|
+
], Image$1.prototype, "__", undefined);
|
|
8466
8470
|
__decorate([
|
|
8467
8471
|
boundsType('')
|
|
8468
|
-
], Image$1.prototype, "url",
|
|
8472
|
+
], Image$1.prototype, "url", undefined);
|
|
8469
8473
|
Image$1 = __decorate([
|
|
8470
8474
|
registerUI()
|
|
8471
8475
|
], Image$1);
|
|
@@ -8528,25 +8532,25 @@ let Canvas = class Canvas extends Rect {
|
|
|
8528
8532
|
};
|
|
8529
8533
|
__decorate([
|
|
8530
8534
|
dataProcessor(CanvasData)
|
|
8531
|
-
], Canvas.prototype, "__",
|
|
8535
|
+
], Canvas.prototype, "__", undefined);
|
|
8532
8536
|
__decorate([
|
|
8533
8537
|
resizeType(100)
|
|
8534
|
-
], Canvas.prototype, "width",
|
|
8538
|
+
], Canvas.prototype, "width", undefined);
|
|
8535
8539
|
__decorate([
|
|
8536
8540
|
resizeType(100)
|
|
8537
|
-
], Canvas.prototype, "height",
|
|
8541
|
+
], Canvas.prototype, "height", undefined);
|
|
8538
8542
|
__decorate([
|
|
8539
8543
|
resizeType(1)
|
|
8540
|
-
], Canvas.prototype, "pixelRatio",
|
|
8544
|
+
], Canvas.prototype, "pixelRatio", undefined);
|
|
8541
8545
|
__decorate([
|
|
8542
8546
|
resizeType(true)
|
|
8543
|
-
], Canvas.prototype, "smooth",
|
|
8547
|
+
], Canvas.prototype, "smooth", undefined);
|
|
8544
8548
|
__decorate([
|
|
8545
8549
|
dataType(false)
|
|
8546
|
-
], Canvas.prototype, "safeResize",
|
|
8550
|
+
], Canvas.prototype, "safeResize", undefined);
|
|
8547
8551
|
__decorate([
|
|
8548
8552
|
resizeType()
|
|
8549
|
-
], Canvas.prototype, "contextSettings",
|
|
8553
|
+
], Canvas.prototype, "contextSettings", undefined);
|
|
8550
8554
|
Canvas = __decorate([
|
|
8551
8555
|
registerUI()
|
|
8552
8556
|
], Canvas);
|
|
@@ -8637,76 +8641,76 @@ let Text = class Text extends UI {
|
|
|
8637
8641
|
};
|
|
8638
8642
|
__decorate([
|
|
8639
8643
|
dataProcessor(TextData)
|
|
8640
|
-
], Text.prototype, "__",
|
|
8644
|
+
], Text.prototype, "__", undefined);
|
|
8641
8645
|
__decorate([
|
|
8642
8646
|
boundsType(0)
|
|
8643
|
-
], Text.prototype, "width",
|
|
8647
|
+
], Text.prototype, "width", undefined);
|
|
8644
8648
|
__decorate([
|
|
8645
8649
|
boundsType(0)
|
|
8646
|
-
], Text.prototype, "height",
|
|
8650
|
+
], Text.prototype, "height", undefined);
|
|
8647
8651
|
__decorate([
|
|
8648
8652
|
dataType(false)
|
|
8649
|
-
], Text.prototype, "resizeFontSize",
|
|
8653
|
+
], Text.prototype, "resizeFontSize", undefined);
|
|
8650
8654
|
__decorate([
|
|
8651
8655
|
surfaceType('#000000')
|
|
8652
|
-
], Text.prototype, "fill",
|
|
8656
|
+
], Text.prototype, "fill", undefined);
|
|
8653
8657
|
__decorate([
|
|
8654
8658
|
affectStrokeBoundsType('outside')
|
|
8655
|
-
], Text.prototype, "strokeAlign",
|
|
8659
|
+
], Text.prototype, "strokeAlign", undefined);
|
|
8656
8660
|
__decorate([
|
|
8657
8661
|
hitType('all')
|
|
8658
|
-
], Text.prototype, "hitFill",
|
|
8662
|
+
], Text.prototype, "hitFill", undefined);
|
|
8659
8663
|
__decorate([
|
|
8660
8664
|
boundsType('')
|
|
8661
|
-
], Text.prototype, "text",
|
|
8665
|
+
], Text.prototype, "text", undefined);
|
|
8662
8666
|
__decorate([
|
|
8663
|
-
boundsType('
|
|
8664
|
-
], Text.prototype, "fontFamily",
|
|
8667
|
+
boundsType('caption')
|
|
8668
|
+
], Text.prototype, "fontFamily", undefined);
|
|
8665
8669
|
__decorate([
|
|
8666
8670
|
boundsType(12)
|
|
8667
|
-
], Text.prototype, "fontSize",
|
|
8671
|
+
], Text.prototype, "fontSize", undefined);
|
|
8668
8672
|
__decorate([
|
|
8669
8673
|
boundsType('normal')
|
|
8670
|
-
], Text.prototype, "fontWeight",
|
|
8674
|
+
], Text.prototype, "fontWeight", undefined);
|
|
8671
8675
|
__decorate([
|
|
8672
8676
|
boundsType(false)
|
|
8673
|
-
], Text.prototype, "italic",
|
|
8677
|
+
], Text.prototype, "italic", undefined);
|
|
8674
8678
|
__decorate([
|
|
8675
8679
|
boundsType('none')
|
|
8676
|
-
], Text.prototype, "textCase",
|
|
8680
|
+
], Text.prototype, "textCase", undefined);
|
|
8677
8681
|
__decorate([
|
|
8678
8682
|
boundsType('none')
|
|
8679
|
-
], Text.prototype, "textDecoration",
|
|
8683
|
+
], Text.prototype, "textDecoration", undefined);
|
|
8680
8684
|
__decorate([
|
|
8681
8685
|
boundsType(0)
|
|
8682
|
-
], Text.prototype, "letterSpacing",
|
|
8686
|
+
], Text.prototype, "letterSpacing", undefined);
|
|
8683
8687
|
__decorate([
|
|
8684
8688
|
boundsType({ type: 'percent', value: 1.5 })
|
|
8685
|
-
], Text.prototype, "lineHeight",
|
|
8689
|
+
], Text.prototype, "lineHeight", undefined);
|
|
8686
8690
|
__decorate([
|
|
8687
8691
|
boundsType(0)
|
|
8688
|
-
], Text.prototype, "paraIndent",
|
|
8692
|
+
], Text.prototype, "paraIndent", undefined);
|
|
8689
8693
|
__decorate([
|
|
8690
8694
|
boundsType(0)
|
|
8691
|
-
], Text.prototype, "paraSpacing",
|
|
8695
|
+
], Text.prototype, "paraSpacing", undefined);
|
|
8692
8696
|
__decorate([
|
|
8693
8697
|
boundsType('x')
|
|
8694
|
-
], Text.prototype, "writingMode",
|
|
8698
|
+
], Text.prototype, "writingMode", undefined);
|
|
8695
8699
|
__decorate([
|
|
8696
8700
|
boundsType('left')
|
|
8697
|
-
], Text.prototype, "textAlign",
|
|
8701
|
+
], Text.prototype, "textAlign", undefined);
|
|
8698
8702
|
__decorate([
|
|
8699
8703
|
boundsType('top')
|
|
8700
|
-
], Text.prototype, "verticalAlign",
|
|
8704
|
+
], Text.prototype, "verticalAlign", undefined);
|
|
8701
8705
|
__decorate([
|
|
8702
8706
|
boundsType(true)
|
|
8703
|
-
], Text.prototype, "autoSizeAlign",
|
|
8707
|
+
], Text.prototype, "autoSizeAlign", undefined);
|
|
8704
8708
|
__decorate([
|
|
8705
8709
|
boundsType('normal')
|
|
8706
|
-
], Text.prototype, "textWrap",
|
|
8710
|
+
], Text.prototype, "textWrap", undefined);
|
|
8707
8711
|
__decorate([
|
|
8708
8712
|
boundsType('show')
|
|
8709
|
-
], Text.prototype, "textOverflow",
|
|
8713
|
+
], Text.prototype, "textOverflow", undefined);
|
|
8710
8714
|
Text = __decorate([
|
|
8711
8715
|
registerUI()
|
|
8712
8716
|
], Text);
|
|
@@ -8719,10 +8723,10 @@ let Path = class Path extends UI {
|
|
|
8719
8723
|
};
|
|
8720
8724
|
__decorate([
|
|
8721
8725
|
dataProcessor(PathData)
|
|
8722
|
-
], Path.prototype, "__",
|
|
8726
|
+
], Path.prototype, "__", undefined);
|
|
8723
8727
|
__decorate([
|
|
8724
8728
|
affectStrokeBoundsType('center')
|
|
8725
|
-
], Path.prototype, "strokeAlign",
|
|
8729
|
+
], Path.prototype, "strokeAlign", undefined);
|
|
8726
8730
|
Path = __decorate([
|
|
8727
8731
|
registerUI()
|
|
8728
8732
|
], Path);
|
|
@@ -8761,10 +8765,10 @@ let Pen = class Pen extends Group {
|
|
|
8761
8765
|
};
|
|
8762
8766
|
__decorate([
|
|
8763
8767
|
dataProcessor(PenData)
|
|
8764
|
-
], Pen.prototype, "__",
|
|
8768
|
+
], Pen.prototype, "__", undefined);
|
|
8765
8769
|
__decorate([
|
|
8766
8770
|
penPathType()
|
|
8767
|
-
], Pen.prototype, "path",
|
|
8771
|
+
], Pen.prototype, "path", undefined);
|
|
8768
8772
|
Pen = __decorate([
|
|
8769
8773
|
useModule(PathCreator, ['set', 'path', 'paint']),
|
|
8770
8774
|
registerUI()
|
|
@@ -9398,7 +9402,7 @@ function checkImage(ui, canvas, paint, allowPaint) {
|
|
|
9398
9402
|
}
|
|
9399
9403
|
else {
|
|
9400
9404
|
if (!paint.patternTask) {
|
|
9401
|
-
paint.patternTask = ImageManager.patternTasker.add(() => __awaiter(this,
|
|
9405
|
+
paint.patternTask = ImageManager.patternTasker.add(() => __awaiter(this, undefined, undefined, function* () {
|
|
9402
9406
|
paint.patternTask = null;
|
|
9403
9407
|
if (canvas.bounds.hit(ui.__nowWorld))
|
|
9404
9408
|
createPattern(ui, paint, pixelRatio);
|
|
@@ -9554,7 +9558,7 @@ function shadow(ui, current, shape) {
|
|
|
9554
9558
|
const end = shadow.length - 1;
|
|
9555
9559
|
toOffsetOutBounds$1(bounds, offsetOutBounds$1);
|
|
9556
9560
|
shadow.forEach((item, index) => {
|
|
9557
|
-
other.setWorldShadow((offsetOutBounds$1.offsetX + item.x * scaleX), (offsetOutBounds$1.offsetY + item.y * scaleY), item.blur * scaleX, item.color);
|
|
9561
|
+
other.setWorldShadow((offsetOutBounds$1.offsetX + item.x * scaleX), (offsetOutBounds$1.offsetY + item.y * scaleY), item.blur * scaleX, ColorConvert.string(item.color));
|
|
9558
9562
|
spreadScale = item.spread ? 1 + item.spread * 2 / (__layout.boxBounds.width + (__layout.strokeBoxSpread || 0) * 2) : 0;
|
|
9559
9563
|
drawWorldShadow(other, offsetOutBounds$1, spreadScale, shape);
|
|
9560
9564
|
copyBounds = bounds;
|
|
@@ -9630,7 +9634,7 @@ function innerShadow(ui, current, shape) {
|
|
|
9630
9634
|
other.copyWorld(shape.canvas, shapeBounds, bounds, 'source-out');
|
|
9631
9635
|
copyBounds = bounds;
|
|
9632
9636
|
}
|
|
9633
|
-
other.fillWorld(copyBounds, item.color, 'source-in');
|
|
9637
|
+
other.fillWorld(copyBounds, ColorConvert.string(item.color), 'source-in');
|
|
9634
9638
|
if (ui.__worldFlipped) {
|
|
9635
9639
|
current.copyWorldByReset(other, copyBounds, nowWorld, item.blendMode);
|
|
9636
9640
|
}
|