@leafer-draw/miniapp 1.3.2 → 1.4.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -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 === void 0 ? void 0 : value.constructor) === Object && ((_a = t[key]) === null || _a === void 0 ? void 0 : _a.constructor) === Object)
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 === void 0 ? void 0 : _b.constructor) === Object)
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 void 0; }
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 void 0; }
1834
- createLinearGradient(_x0, _y0, _x1, _y1) { return void 0; }
1835
- createPattern(_image, _repetition) { return void 0; }
1836
- createRadialGradient(_x0, _y0, _r0, _x1, _y1, _r1) { return void 0; }
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 void 0; }
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", void 0);
1846
+ ], Canvas$1.prototype, "smooth", undefined);
1847
1847
  __decorate([
1848
1848
  contextAttr('imageSmoothingQuality')
1849
- ], Canvas$1.prototype, "smoothLevel", void 0);
1849
+ ], Canvas$1.prototype, "smoothLevel", undefined);
1850
1850
  __decorate([
1851
1851
  contextAttr('globalAlpha')
1852
- ], Canvas$1.prototype, "opacity", void 0);
1852
+ ], Canvas$1.prototype, "opacity", undefined);
1853
1853
  __decorate([
1854
1854
  contextAttr()
1855
- ], Canvas$1.prototype, "fillStyle", void 0);
1855
+ ], Canvas$1.prototype, "fillStyle", undefined);
1856
1856
  __decorate([
1857
1857
  contextAttr()
1858
- ], Canvas$1.prototype, "strokeStyle", void 0);
1858
+ ], Canvas$1.prototype, "strokeStyle", undefined);
1859
1859
  __decorate([
1860
1860
  contextAttr('lineWidth')
1861
- ], Canvas$1.prototype, "strokeWidth", void 0);
1861
+ ], Canvas$1.prototype, "strokeWidth", undefined);
1862
1862
  __decorate([
1863
1863
  contextAttr('lineCap')
1864
- ], Canvas$1.prototype, "strokeCap", void 0);
1864
+ ], Canvas$1.prototype, "strokeCap", undefined);
1865
1865
  __decorate([
1866
1866
  contextAttr('lineJoin')
1867
- ], Canvas$1.prototype, "strokeJoin", void 0);
1867
+ ], Canvas$1.prototype, "strokeJoin", undefined);
1868
1868
  __decorate([
1869
1869
  contextAttr('lineDashOffset')
1870
- ], Canvas$1.prototype, "dashOffset", void 0);
1870
+ ], Canvas$1.prototype, "dashOffset", undefined);
1871
1871
  __decorate([
1872
1872
  contextAttr()
1873
- ], Canvas$1.prototype, "miterLimit", void 0);
1873
+ ], Canvas$1.prototype, "miterLimit", undefined);
1874
1874
  __decorate([
1875
1875
  contextAttr()
1876
- ], Canvas$1.prototype, "shadowBlur", void 0);
1876
+ ], Canvas$1.prototype, "shadowBlur", undefined);
1877
1877
  __decorate([
1878
1878
  contextAttr()
1879
- ], Canvas$1.prototype, "shadowColor", void 0);
1879
+ ], Canvas$1.prototype, "shadowColor", undefined);
1880
1880
  __decorate([
1881
1881
  contextAttr()
1882
- ], Canvas$1.prototype, "shadowOffsetX", void 0);
1882
+ ], Canvas$1.prototype, "shadowOffsetX", undefined);
1883
1883
  __decorate([
1884
1884
  contextAttr()
1885
- ], Canvas$1.prototype, "shadowOffsetY", void 0);
1885
+ ], Canvas$1.prototype, "shadowOffsetY", undefined);
1886
1886
  __decorate([
1887
1887
  contextAttr()
1888
- ], Canvas$1.prototype, "filter", void 0);
1888
+ ], Canvas$1.prototype, "filter", undefined);
1889
1889
  __decorate([
1890
1890
  contextAttr()
1891
- ], Canvas$1.prototype, "font", void 0);
1891
+ ], Canvas$1.prototype, "font", undefined);
1892
1892
  __decorate([
1893
1893
  contextAttr()
1894
- ], Canvas$1.prototype, "fontKerning", void 0);
1894
+ ], Canvas$1.prototype, "fontKerning", undefined);
1895
1895
  __decorate([
1896
1896
  contextAttr()
1897
- ], Canvas$1.prototype, "fontStretch", void 0);
1897
+ ], Canvas$1.prototype, "fontStretch", undefined);
1898
1898
  __decorate([
1899
1899
  contextAttr()
1900
- ], Canvas$1.prototype, "fontVariantCaps", void 0);
1900
+ ], Canvas$1.prototype, "fontVariantCaps", undefined);
1901
1901
  __decorate([
1902
1902
  contextAttr()
1903
- ], Canvas$1.prototype, "textAlign", void 0);
1903
+ ], Canvas$1.prototype, "textAlign", undefined);
1904
1904
  __decorate([
1905
1905
  contextAttr()
1906
- ], Canvas$1.prototype, "textBaseline", void 0);
1906
+ ], Canvas$1.prototype, "textBaseline", undefined);
1907
1907
  __decorate([
1908
1908
  contextAttr()
1909
- ], Canvas$1.prototype, "textRendering", void 0);
1909
+ ], Canvas$1.prototype, "textRendering", undefined);
1910
1910
  __decorate([
1911
1911
  contextAttr()
1912
- ], Canvas$1.prototype, "wordSpacing", void 0);
1912
+ ], Canvas$1.prototype, "wordSpacing", undefined);
1913
1913
  __decorate([
1914
1914
  contextAttr()
1915
- ], Canvas$1.prototype, "letterSpacing", void 0);
1915
+ ], Canvas$1.prototype, "letterSpacing", undefined);
1916
1916
  __decorate([
1917
1917
  contextAttr()
1918
- ], Canvas$1.prototype, "direction", void 0);
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, void 0, void 0, function* () {
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, void 0, void 0, function* () {
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;
@@ -3821,10 +3821,10 @@ function autoLayoutType(defaultValue) {
3821
3821
  return decorateLeafAttr(defaultValue, (key) => attr({
3822
3822
  set(value) {
3823
3823
  if (this.__setAttr(key, value)) {
3824
- this.__layout.matrixChanged || this.__layout.matrixChange();
3825
3824
  this.__hasAutoLayout = !!(this.origin || this.around || this.flow);
3826
3825
  if (!this.__local)
3827
3826
  this.__layout.createLocal();
3827
+ doBoundsType(this);
3828
3828
  }
3829
3829
  }
3830
3830
  }));
@@ -4207,55 +4207,62 @@ const LeafHelper = {
4207
4207
  y += t.y;
4208
4208
  transition ? t.animate({ x, y }, transition) : (t.x = x, t.y = y);
4209
4209
  },
4210
- zoomOfWorld(t, origin, scaleX, scaleY, resize) {
4211
- L.zoomOfLocal(t, getTempLocal(t, origin), scaleX, scaleY, resize);
4210
+ zoomOfWorld(t, origin, scaleX, scaleY, resize, transition) {
4211
+ L.zoomOfLocal(t, getTempLocal(t, origin), scaleX, scaleY, resize, transition);
4212
4212
  },
4213
- zoomOfLocal(t, origin, scaleX, scaleY = scaleX, resize) {
4214
- copy$6(matrix, t.__localMatrix);
4213
+ zoomOfLocal(t, origin, scaleX, scaleY = scaleX, resize, transition) {
4214
+ const o = t.__localMatrix;
4215
+ if (typeof scaleY !== 'number') {
4216
+ if (scaleY)
4217
+ transition = scaleY;
4218
+ scaleY = scaleX;
4219
+ }
4220
+ copy$6(matrix, o);
4215
4221
  scaleOfOuter$2(matrix, origin, scaleX, scaleY);
4216
4222
  if (t.origin || t.around) {
4217
- L.setTransform(t, matrix, resize);
4223
+ L.setTransform(t, matrix, resize, transition);
4218
4224
  }
4219
4225
  else {
4220
- moveByMatrix(t, matrix);
4221
- t.scaleResize(scaleX, scaleY, resize !== true);
4226
+ const x = t.x + matrix.e - o.e, y = t.y + matrix.f - o.f;
4227
+ if (transition && !resize)
4228
+ t.animate({ x, y, scaleX: t.scaleX * scaleX, scaleY: t.scaleY * scaleY }, transition);
4229
+ else
4230
+ t.x = x, t.y = y, t.scaleResize(scaleX, scaleY, resize !== true);
4222
4231
  }
4223
4232
  },
4224
- rotateOfWorld(t, origin, angle) {
4225
- L.rotateOfLocal(t, getTempLocal(t, origin), angle);
4233
+ rotateOfWorld(t, origin, angle, transition) {
4234
+ L.rotateOfLocal(t, getTempLocal(t, origin), angle, transition);
4226
4235
  },
4227
- rotateOfLocal(t, origin, angle) {
4228
- copy$6(matrix, t.__localMatrix);
4236
+ rotateOfLocal(t, origin, angle, transition) {
4237
+ const o = t.__localMatrix;
4238
+ copy$6(matrix, o);
4229
4239
  rotateOfOuter$2(matrix, origin, angle);
4230
- if (t.origin || t.around) {
4231
- L.setTransform(t, matrix);
4232
- }
4233
- else {
4234
- moveByMatrix(t, matrix);
4235
- t.rotation = MathHelper.formatRotation(t.rotation + angle);
4236
- }
4240
+ if (t.origin || t.around)
4241
+ L.setTransform(t, matrix, false, transition);
4242
+ else
4243
+ t.set({ x: t.x + matrix.e - o.e, y: t.y + matrix.f - o.f, rotation: MathHelper.formatRotation(t.rotation + angle) }, transition);
4237
4244
  },
4238
- skewOfWorld(t, origin, skewX, skewY, resize) {
4239
- L.skewOfLocal(t, getTempLocal(t, origin), skewX, skewY, resize);
4245
+ skewOfWorld(t, origin, skewX, skewY, resize, transition) {
4246
+ L.skewOfLocal(t, getTempLocal(t, origin), skewX, skewY, resize, transition);
4240
4247
  },
4241
- skewOfLocal(t, origin, skewX, skewY = 0, resize) {
4248
+ skewOfLocal(t, origin, skewX, skewY = 0, resize, transition) {
4242
4249
  copy$6(matrix, t.__localMatrix);
4243
4250
  skewOfOuter(matrix, origin, skewX, skewY);
4244
- L.setTransform(t, matrix, resize);
4251
+ L.setTransform(t, matrix, resize, transition);
4245
4252
  },
4246
- transformWorld(t, transform, resize) {
4253
+ transformWorld(t, transform, resize, transition) {
4247
4254
  copy$6(matrix, t.worldTransform);
4248
4255
  multiplyParent$2(matrix, transform);
4249
4256
  if (t.parent)
4250
4257
  divideParent(matrix, t.parent.worldTransform);
4251
- L.setTransform(t, matrix, resize);
4258
+ L.setTransform(t, matrix, resize, transition);
4252
4259
  },
4253
- transform(t, transform, resize) {
4260
+ transform(t, transform, resize, transition) {
4254
4261
  copy$6(matrix, t.localTransform);
4255
4262
  multiplyParent$2(matrix, transform);
4256
- L.setTransform(t, matrix, resize);
4263
+ L.setTransform(t, matrix, resize, transition);
4257
4264
  },
4258
- setTransform(t, transform, resize) {
4265
+ setTransform(t, transform, resize, transition) {
4259
4266
  const data = t.__, originPoint = data.origin && L.getInnerOrigin(t, data.origin);
4260
4267
  const layout = getLayout(transform, originPoint, data.around && L.getInnerOrigin(t, data.around));
4261
4268
  if (resize) {
@@ -4270,7 +4277,7 @@ const LeafHelper = {
4270
4277
  t.scaleResize(scaleX, scaleY, false);
4271
4278
  }
4272
4279
  else
4273
- t.set(layout);
4280
+ t.set(layout, transition);
4274
4281
  },
4275
4282
  getFlipTransform(t, axis) {
4276
4283
  const m = getMatrixData();
@@ -4307,11 +4314,6 @@ const LeafHelper = {
4307
4314
  };
4308
4315
  const L = LeafHelper;
4309
4316
  const { updateAllMatrix: updateAllMatrix$3, updateMatrix: updateMatrix$2, updateAllWorldOpacity: updateAllWorldOpacity$1, updateAllChange: updateAllChange$1 } = L;
4310
- function moveByMatrix(t, matrix) {
4311
- const { e, f } = t.__localMatrix;
4312
- t.x += matrix.e - e;
4313
- t.y += matrix.f - f;
4314
- }
4315
4317
  function getTempLocal(t, world) {
4316
4318
  t.__layout.update();
4317
4319
  return t.parent ? PointHelper.tempToInnerOf(world, t.parent.__world) : world;
@@ -5175,8 +5177,7 @@ const LeafBounds = {
5175
5177
  __updateAutoLayout() {
5176
5178
  this.__layout.matrixChanged = true;
5177
5179
  if (this.isBranch) {
5178
- if (this.leaferIsReady)
5179
- this.leafer.layouter.addExtra(this);
5180
+ this.__extraUpdate();
5180
5181
  if (this.__.flow) {
5181
5182
  if (this.__layout.boxChanged)
5182
5183
  this.__updateFlowLayout();
@@ -5329,7 +5330,7 @@ let Leaf = class Leaf {
5329
5330
  get __worldFlipped() { return this.__world.scaleX < 0 || this.__world.scaleY < 0; }
5330
5331
  get __onlyHitMask() { return this.__hasMask && !this.__.hitChildren; }
5331
5332
  get __ignoreHitWorld() { return (this.__hasMask || this.__hasEraser) && this.__.hitChildren; }
5332
- get __inLazyBounds() { const { leafer } = this; return leafer && leafer.created && leafer.lazyBounds.hit(this.__world); }
5333
+ get __inLazyBounds() { return this.leaferIsCreated && this.leafer.lazyBounds.hit(this.__world); }
5333
5334
  get pathInputed() { return this.__.__pathInputed; }
5334
5335
  set event(map) { this.on(map); }
5335
5336
  constructor(data) {
@@ -5440,6 +5441,10 @@ let Leaf = class Leaf {
5440
5441
  forceRender(_bounds, _sync) {
5441
5442
  this.forceUpdate('surface');
5442
5443
  }
5444
+ __extraUpdate() {
5445
+ if (this.leaferIsReady)
5446
+ this.leafer.layouter.addExtra(this);
5447
+ }
5443
5448
  __updateWorldMatrix() { }
5444
5449
  __updateLocalMatrix() { }
5445
5450
  __updateWorldBounds() { }
@@ -5582,11 +5587,11 @@ let Leaf = class Leaf {
5582
5587
  const layer = this.leafer ? this.leafer.zoomLayer : this;
5583
5588
  return layer.getWorldPoint(page, relative, distance, change);
5584
5589
  }
5585
- setTransform(matrix, resize) {
5586
- setTransform(this, matrix, resize);
5590
+ setTransform(matrix, resize, transition) {
5591
+ setTransform(this, matrix, resize, transition);
5587
5592
  }
5588
- transform(matrix, resize) {
5589
- transform(this, matrix, resize);
5593
+ transform(matrix, resize, transition) {
5594
+ transform(this, matrix, resize, transition);
5590
5595
  }
5591
5596
  move(x, y, transition) {
5592
5597
  moveLocal(this, x, y, transition);
@@ -5594,32 +5599,32 @@ let Leaf = class Leaf {
5594
5599
  moveInner(x, y, transition) {
5595
5600
  moveWorld(this, x, y, true, transition);
5596
5601
  }
5597
- scaleOf(origin, scaleX, scaleY, resize) {
5598
- zoomOfLocal(this, getLocalOrigin(this, origin), scaleX, scaleY, resize);
5602
+ scaleOf(origin, scaleX, scaleY, resize, transition) {
5603
+ zoomOfLocal(this, getLocalOrigin(this, origin), scaleX, scaleY, resize, transition);
5599
5604
  }
5600
- rotateOf(origin, rotation) {
5601
- rotateOfLocal(this, getLocalOrigin(this, origin), rotation);
5605
+ rotateOf(origin, rotation, transition) {
5606
+ rotateOfLocal(this, getLocalOrigin(this, origin), rotation, transition);
5602
5607
  }
5603
- skewOf(origin, skewX, skewY, resize) {
5604
- skewOfLocal(this, getLocalOrigin(this, origin), skewX, skewY, resize);
5608
+ skewOf(origin, skewX, skewY, resize, transition) {
5609
+ skewOfLocal(this, getLocalOrigin(this, origin), skewX, skewY, resize, transition);
5605
5610
  }
5606
- transformWorld(worldTransform, resize) {
5607
- transformWorld(this, worldTransform, resize);
5611
+ transformWorld(worldTransform, resize, transition) {
5612
+ transformWorld(this, worldTransform, resize, transition);
5608
5613
  }
5609
5614
  moveWorld(x, y, transition) {
5610
5615
  moveWorld(this, x, y, false, transition);
5611
5616
  }
5612
- scaleOfWorld(worldOrigin, scaleX, scaleY, resize) {
5613
- zoomOfWorld(this, worldOrigin, scaleX, scaleY, resize);
5617
+ scaleOfWorld(worldOrigin, scaleX, scaleY, resize, transition) {
5618
+ zoomOfWorld(this, worldOrigin, scaleX, scaleY, resize, transition);
5614
5619
  }
5615
5620
  rotateOfWorld(worldOrigin, rotation) {
5616
5621
  rotateOfWorld(this, worldOrigin, rotation);
5617
5622
  }
5618
- skewOfWorld(worldOrigin, skewX, skewY, resize) {
5619
- skewOfWorld(this, worldOrigin, skewX, skewY, resize);
5623
+ skewOfWorld(worldOrigin, skewX, skewY, resize, transition) {
5624
+ skewOfWorld(this, worldOrigin, skewX, skewY, resize, transition);
5620
5625
  }
5621
- flip(axis) {
5622
- transform(this, getFlipTransform(this, axis));
5626
+ flip(axis, transition) {
5627
+ transform(this, getFlipTransform(this, axis), false, transition);
5623
5628
  }
5624
5629
  scaleResize(scaleX, scaleY = scaleX, _noResize) {
5625
5630
  this.scaleX *= scaleX;
@@ -6007,7 +6012,7 @@ class LeafLevelList {
6007
6012
  }
6008
6013
  }
6009
6014
 
6010
- const version = "1.3.2";
6015
+ const version = "1.4.0";
6011
6016
 
6012
6017
  class LeaferCanvas extends LeaferCanvasBase {
6013
6018
  get allowBackgroundColor() { return false; }
@@ -6491,7 +6496,7 @@ class Layouter {
6491
6496
  }
6492
6497
  partLayout() {
6493
6498
  var _a;
6494
- if (!((_a = this.__updatedList) === null || _a === void 0 ? void 0 : _a.length))
6499
+ if (!((_a = this.__updatedList) === null || _a === undefined ? undefined : _a.length))
6495
6500
  return;
6496
6501
  const t = Run.start('PartLayout');
6497
6502
  const { target, __updatedList: updateList } = this;
@@ -6906,6 +6911,7 @@ class UIData extends LeafData {
6906
6911
  return t.fill && this.__hasStroke;
6907
6912
  }
6908
6913
  get __clipAfterFill() { const t = this; return (t.cornerRadius || t.innerShadow || t.__pathInputed); }
6914
+ get __hasSurface() { const t = this; return (t.fill || t.stroke); }
6909
6915
  get __autoWidth() { return !this._width; }
6910
6916
  get __autoHeight() { return !this._height; }
6911
6917
  get __autoSide() { return !this._width || !this._height; }
@@ -7409,199 +7415,199 @@ let UI = UI_1 = class UI extends Leaf {
7409
7415
  };
7410
7416
  __decorate([
7411
7417
  dataProcessor(UIData)
7412
- ], UI.prototype, "__", void 0);
7418
+ ], UI.prototype, "__", undefined);
7413
7419
  __decorate([
7414
7420
  zoomLayerType()
7415
- ], UI.prototype, "zoomLayer", void 0);
7421
+ ], UI.prototype, "zoomLayer", undefined);
7416
7422
  __decorate([
7417
7423
  dataType('')
7418
- ], UI.prototype, "id", void 0);
7424
+ ], UI.prototype, "id", undefined);
7419
7425
  __decorate([
7420
7426
  dataType('')
7421
- ], UI.prototype, "name", void 0);
7427
+ ], UI.prototype, "name", undefined);
7422
7428
  __decorate([
7423
7429
  dataType('')
7424
- ], UI.prototype, "className", void 0);
7430
+ ], UI.prototype, "className", undefined);
7425
7431
  __decorate([
7426
7432
  surfaceType('pass-through')
7427
- ], UI.prototype, "blendMode", void 0);
7433
+ ], UI.prototype, "blendMode", undefined);
7428
7434
  __decorate([
7429
7435
  opacityType(1)
7430
- ], UI.prototype, "opacity", void 0);
7436
+ ], UI.prototype, "opacity", undefined);
7431
7437
  __decorate([
7432
7438
  visibleType(true)
7433
- ], UI.prototype, "visible", void 0);
7439
+ ], UI.prototype, "visible", undefined);
7434
7440
  __decorate([
7435
7441
  surfaceType(false)
7436
- ], UI.prototype, "locked", void 0);
7442
+ ], UI.prototype, "locked", undefined);
7437
7443
  __decorate([
7438
7444
  sortType(0)
7439
- ], UI.prototype, "zIndex", void 0);
7445
+ ], UI.prototype, "zIndex", undefined);
7440
7446
  __decorate([
7441
7447
  maskType(false)
7442
- ], UI.prototype, "mask", void 0);
7448
+ ], UI.prototype, "mask", undefined);
7443
7449
  __decorate([
7444
7450
  eraserType(false)
7445
- ], UI.prototype, "eraser", void 0);
7451
+ ], UI.prototype, "eraser", undefined);
7446
7452
  __decorate([
7447
7453
  positionType(0, true)
7448
- ], UI.prototype, "x", void 0);
7454
+ ], UI.prototype, "x", undefined);
7449
7455
  __decorate([
7450
7456
  positionType(0, true)
7451
- ], UI.prototype, "y", void 0);
7457
+ ], UI.prototype, "y", undefined);
7452
7458
  __decorate([
7453
7459
  boundsType(100, true)
7454
- ], UI.prototype, "width", void 0);
7460
+ ], UI.prototype, "width", undefined);
7455
7461
  __decorate([
7456
7462
  boundsType(100, true)
7457
- ], UI.prototype, "height", void 0);
7463
+ ], UI.prototype, "height", undefined);
7458
7464
  __decorate([
7459
7465
  scaleType(1, true)
7460
- ], UI.prototype, "scaleX", void 0);
7466
+ ], UI.prototype, "scaleX", undefined);
7461
7467
  __decorate([
7462
7468
  scaleType(1, true)
7463
- ], UI.prototype, "scaleY", void 0);
7469
+ ], UI.prototype, "scaleY", undefined);
7464
7470
  __decorate([
7465
7471
  rotationType(0, true)
7466
- ], UI.prototype, "rotation", void 0);
7472
+ ], UI.prototype, "rotation", undefined);
7467
7473
  __decorate([
7468
7474
  rotationType(0, true)
7469
- ], UI.prototype, "skewX", void 0);
7475
+ ], UI.prototype, "skewX", undefined);
7470
7476
  __decorate([
7471
7477
  rotationType(0, true)
7472
- ], UI.prototype, "skewY", void 0);
7478
+ ], UI.prototype, "skewY", undefined);
7473
7479
  __decorate([
7474
7480
  positionType(0, true)
7475
- ], UI.prototype, "offsetX", void 0);
7481
+ ], UI.prototype, "offsetX", undefined);
7476
7482
  __decorate([
7477
7483
  positionType(0, true)
7478
- ], UI.prototype, "offsetY", void 0);
7484
+ ], UI.prototype, "offsetY", undefined);
7479
7485
  __decorate([
7480
7486
  positionType(0, true)
7481
- ], UI.prototype, "scrollX", void 0);
7487
+ ], UI.prototype, "scrollX", undefined);
7482
7488
  __decorate([
7483
7489
  positionType(0, true)
7484
- ], UI.prototype, "scrollY", void 0);
7490
+ ], UI.prototype, "scrollY", undefined);
7485
7491
  __decorate([
7486
7492
  autoLayoutType()
7487
- ], UI.prototype, "origin", void 0);
7493
+ ], UI.prototype, "origin", undefined);
7488
7494
  __decorate([
7489
7495
  autoLayoutType()
7490
- ], UI.prototype, "around", void 0);
7496
+ ], UI.prototype, "around", undefined);
7491
7497
  __decorate([
7492
7498
  dataType(false)
7493
- ], UI.prototype, "lazy", void 0);
7499
+ ], UI.prototype, "lazy", undefined);
7494
7500
  __decorate([
7495
7501
  naturalBoundsType(1)
7496
- ], UI.prototype, "pixelRatio", void 0);
7502
+ ], UI.prototype, "pixelRatio", undefined);
7497
7503
  __decorate([
7498
7504
  pathInputType()
7499
- ], UI.prototype, "path", void 0);
7505
+ ], UI.prototype, "path", undefined);
7500
7506
  __decorate([
7501
7507
  pathType()
7502
- ], UI.prototype, "windingRule", void 0);
7508
+ ], UI.prototype, "windingRule", undefined);
7503
7509
  __decorate([
7504
7510
  pathType(true)
7505
- ], UI.prototype, "closed", void 0);
7511
+ ], UI.prototype, "closed", undefined);
7506
7512
  __decorate([
7507
7513
  boundsType(0)
7508
- ], UI.prototype, "padding", void 0);
7514
+ ], UI.prototype, "padding", undefined);
7509
7515
  __decorate([
7510
7516
  boundsType(false)
7511
- ], UI.prototype, "lockRatio", void 0);
7517
+ ], UI.prototype, "lockRatio", undefined);
7512
7518
  __decorate([
7513
7519
  boundsType()
7514
- ], UI.prototype, "widthRange", void 0);
7520
+ ], UI.prototype, "widthRange", undefined);
7515
7521
  __decorate([
7516
7522
  boundsType()
7517
- ], UI.prototype, "heightRange", void 0);
7523
+ ], UI.prototype, "heightRange", undefined);
7518
7524
  __decorate([
7519
7525
  dataType(false)
7520
- ], UI.prototype, "draggable", void 0);
7526
+ ], UI.prototype, "draggable", undefined);
7521
7527
  __decorate([
7522
7528
  dataType()
7523
- ], UI.prototype, "dragBounds", void 0);
7529
+ ], UI.prototype, "dragBounds", undefined);
7524
7530
  __decorate([
7525
7531
  dataType(false)
7526
- ], UI.prototype, "editable", void 0);
7532
+ ], UI.prototype, "editable", undefined);
7527
7533
  __decorate([
7528
7534
  hitType(true)
7529
- ], UI.prototype, "hittable", void 0);
7535
+ ], UI.prototype, "hittable", undefined);
7530
7536
  __decorate([
7531
7537
  hitType('path')
7532
- ], UI.prototype, "hitFill", void 0);
7538
+ ], UI.prototype, "hitFill", undefined);
7533
7539
  __decorate([
7534
7540
  strokeType('path')
7535
- ], UI.prototype, "hitStroke", void 0);
7541
+ ], UI.prototype, "hitStroke", undefined);
7536
7542
  __decorate([
7537
7543
  hitType(false)
7538
- ], UI.prototype, "hitBox", void 0);
7544
+ ], UI.prototype, "hitBox", undefined);
7539
7545
  __decorate([
7540
7546
  hitType(true)
7541
- ], UI.prototype, "hitChildren", void 0);
7547
+ ], UI.prototype, "hitChildren", undefined);
7542
7548
  __decorate([
7543
7549
  hitType(true)
7544
- ], UI.prototype, "hitSelf", void 0);
7550
+ ], UI.prototype, "hitSelf", undefined);
7545
7551
  __decorate([
7546
7552
  hitType()
7547
- ], UI.prototype, "hitRadius", void 0);
7553
+ ], UI.prototype, "hitRadius", undefined);
7548
7554
  __decorate([
7549
7555
  cursorType('')
7550
- ], UI.prototype, "cursor", void 0);
7556
+ ], UI.prototype, "cursor", undefined);
7551
7557
  __decorate([
7552
7558
  surfaceType()
7553
- ], UI.prototype, "fill", void 0);
7559
+ ], UI.prototype, "fill", undefined);
7554
7560
  __decorate([
7555
7561
  strokeType()
7556
- ], UI.prototype, "stroke", void 0);
7562
+ ], UI.prototype, "stroke", undefined);
7557
7563
  __decorate([
7558
7564
  strokeType('inside')
7559
- ], UI.prototype, "strokeAlign", void 0);
7565
+ ], UI.prototype, "strokeAlign", undefined);
7560
7566
  __decorate([
7561
7567
  strokeType(1)
7562
- ], UI.prototype, "strokeWidth", void 0);
7568
+ ], UI.prototype, "strokeWidth", undefined);
7563
7569
  __decorate([
7564
7570
  strokeType(false)
7565
- ], UI.prototype, "strokeWidthFixed", void 0);
7571
+ ], UI.prototype, "strokeWidthFixed", undefined);
7566
7572
  __decorate([
7567
7573
  strokeType('none')
7568
- ], UI.prototype, "strokeCap", void 0);
7574
+ ], UI.prototype, "strokeCap", undefined);
7569
7575
  __decorate([
7570
7576
  strokeType('miter')
7571
- ], UI.prototype, "strokeJoin", void 0);
7577
+ ], UI.prototype, "strokeJoin", undefined);
7572
7578
  __decorate([
7573
7579
  strokeType()
7574
- ], UI.prototype, "dashPattern", void 0);
7580
+ ], UI.prototype, "dashPattern", undefined);
7575
7581
  __decorate([
7576
7582
  strokeType()
7577
- ], UI.prototype, "dashOffset", void 0);
7583
+ ], UI.prototype, "dashOffset", undefined);
7578
7584
  __decorate([
7579
7585
  strokeType(10)
7580
- ], UI.prototype, "miterLimit", void 0);
7586
+ ], UI.prototype, "miterLimit", undefined);
7581
7587
  __decorate([
7582
7588
  pathType(0)
7583
- ], UI.prototype, "cornerRadius", void 0);
7589
+ ], UI.prototype, "cornerRadius", undefined);
7584
7590
  __decorate([
7585
7591
  pathType()
7586
- ], UI.prototype, "cornerSmoothing", void 0);
7592
+ ], UI.prototype, "cornerSmoothing", undefined);
7587
7593
  __decorate([
7588
7594
  effectType()
7589
- ], UI.prototype, "shadow", void 0);
7595
+ ], UI.prototype, "shadow", undefined);
7590
7596
  __decorate([
7591
7597
  effectType()
7592
- ], UI.prototype, "innerShadow", void 0);
7598
+ ], UI.prototype, "innerShadow", undefined);
7593
7599
  __decorate([
7594
7600
  effectType()
7595
- ], UI.prototype, "blur", void 0);
7601
+ ], UI.prototype, "blur", undefined);
7596
7602
  __decorate([
7597
7603
  effectType()
7598
- ], UI.prototype, "backgroundBlur", void 0);
7604
+ ], UI.prototype, "backgroundBlur", undefined);
7599
7605
  __decorate([
7600
7606
  effectType()
7601
- ], UI.prototype, "grayscale", void 0);
7607
+ ], UI.prototype, "grayscale", undefined);
7602
7608
  __decorate([
7603
7609
  dataType({})
7604
- ], UI.prototype, "data", void 0);
7610
+ ], UI.prototype, "data", undefined);
7605
7611
  __decorate([
7606
7612
  rewrite(Leaf.prototype.reset)
7607
7613
  ], UI.prototype, "reset", null);
@@ -7662,7 +7668,7 @@ let Group = class Group extends UI {
7662
7668
  };
7663
7669
  __decorate([
7664
7670
  dataProcessor(GroupData)
7665
- ], Group.prototype, "__", void 0);
7671
+ ], Group.prototype, "__", undefined);
7666
7672
  Group = __decorate([
7667
7673
  useModule(Branch),
7668
7674
  registerUI()
@@ -7833,8 +7839,6 @@ let Leafer = Leafer_1 = class Leafer extends Group {
7833
7839
  __setAttr(attrName, newValue) {
7834
7840
  if (this.canvas) {
7835
7841
  if (canvasSizeAttrs.includes(attrName)) {
7836
- if (!newValue)
7837
- debug.warn(attrName + ' is 0');
7838
7842
  this.__changeCanvasSize(attrName, newValue);
7839
7843
  }
7840
7844
  else if (attrName === 'fill') {
@@ -8037,10 +8041,10 @@ let Leafer = Leafer_1 = class Leafer extends Group {
8037
8041
  Leafer.list = new LeafList();
8038
8042
  __decorate([
8039
8043
  dataProcessor(LeaferData)
8040
- ], Leafer.prototype, "__", void 0);
8044
+ ], Leafer.prototype, "__", undefined);
8041
8045
  __decorate([
8042
8046
  boundsType()
8043
- ], Leafer.prototype, "pixelRatio", void 0);
8047
+ ], Leafer.prototype, "pixelRatio", undefined);
8044
8048
  Leafer = Leafer_1 = __decorate([
8045
8049
  registerUI()
8046
8050
  ], Leafer);
@@ -8053,7 +8057,7 @@ let Rect = class Rect extends UI {
8053
8057
  };
8054
8058
  __decorate([
8055
8059
  dataProcessor(RectData)
8056
- ], Rect.prototype, "__", void 0);
8060
+ ], Rect.prototype, "__", undefined);
8057
8061
  Rect = __decorate([
8058
8062
  useModule(RectRender),
8059
8063
  rewriteAble(),
@@ -8078,6 +8082,8 @@ let Box = class Box extends Group {
8078
8082
  const data = this.__;
8079
8083
  if (this.children.length) {
8080
8084
  if (data.__autoSide) {
8085
+ if (data.__hasSurface)
8086
+ this.__extraUpdate();
8081
8087
  super.__updateBoxBounds();
8082
8088
  const { boxBounds } = this.__layout;
8083
8089
  if (!data.__autoSize) {
@@ -8142,13 +8148,13 @@ let Box = class Box extends Group {
8142
8148
  };
8143
8149
  __decorate([
8144
8150
  dataProcessor(BoxData)
8145
- ], Box.prototype, "__", void 0);
8151
+ ], Box.prototype, "__", undefined);
8146
8152
  __decorate([
8147
8153
  dataType(false)
8148
- ], Box.prototype, "resizeChildren", void 0);
8154
+ ], Box.prototype, "resizeChildren", undefined);
8149
8155
  __decorate([
8150
8156
  affectRenderBoundsType('show')
8151
- ], Box.prototype, "overflow", void 0);
8157
+ ], Box.prototype, "overflow", undefined);
8152
8158
  __decorate([
8153
8159
  rewrite(rect.__updateStrokeSpread)
8154
8160
  ], Box.prototype, "__updateStrokeSpread", null);
@@ -8187,13 +8193,13 @@ let Frame = class Frame extends Box {
8187
8193
  };
8188
8194
  __decorate([
8189
8195
  dataProcessor(FrameData)
8190
- ], Frame.prototype, "__", void 0);
8196
+ ], Frame.prototype, "__", undefined);
8191
8197
  __decorate([
8192
8198
  surfaceType('#FFFFFF')
8193
- ], Frame.prototype, "fill", void 0);
8199
+ ], Frame.prototype, "fill", undefined);
8194
8200
  __decorate([
8195
8201
  affectRenderBoundsType('hide')
8196
- ], Frame.prototype, "overflow", void 0);
8202
+ ], Frame.prototype, "overflow", undefined);
8197
8203
  Frame = __decorate([
8198
8204
  registerUI()
8199
8205
  ], Frame);
@@ -8240,16 +8246,16 @@ let Ellipse = class Ellipse extends UI {
8240
8246
  };
8241
8247
  __decorate([
8242
8248
  dataProcessor(EllipseData)
8243
- ], Ellipse.prototype, "__", void 0);
8249
+ ], Ellipse.prototype, "__", undefined);
8244
8250
  __decorate([
8245
8251
  pathType(0)
8246
- ], Ellipse.prototype, "innerRadius", void 0);
8252
+ ], Ellipse.prototype, "innerRadius", undefined);
8247
8253
  __decorate([
8248
8254
  pathType(0)
8249
- ], Ellipse.prototype, "startAngle", void 0);
8255
+ ], Ellipse.prototype, "startAngle", undefined);
8250
8256
  __decorate([
8251
8257
  pathType(0)
8252
- ], Ellipse.prototype, "endAngle", void 0);
8258
+ ], Ellipse.prototype, "endAngle", undefined);
8253
8259
  Ellipse = __decorate([
8254
8260
  registerUI()
8255
8261
  ], Ellipse);
@@ -8308,22 +8314,22 @@ let Line = class Line extends UI {
8308
8314
  };
8309
8315
  __decorate([
8310
8316
  dataProcessor(LineData)
8311
- ], Line.prototype, "__", void 0);
8317
+ ], Line.prototype, "__", undefined);
8312
8318
  __decorate([
8313
8319
  affectStrokeBoundsType('center')
8314
- ], Line.prototype, "strokeAlign", void 0);
8320
+ ], Line.prototype, "strokeAlign", undefined);
8315
8321
  __decorate([
8316
8322
  boundsType(0)
8317
- ], Line.prototype, "height", void 0);
8323
+ ], Line.prototype, "height", undefined);
8318
8324
  __decorate([
8319
8325
  pathType()
8320
- ], Line.prototype, "points", void 0);
8326
+ ], Line.prototype, "points", undefined);
8321
8327
  __decorate([
8322
8328
  pathType(0)
8323
- ], Line.prototype, "curve", void 0);
8329
+ ], Line.prototype, "curve", undefined);
8324
8330
  __decorate([
8325
8331
  pathType(false)
8326
- ], Line.prototype, "closed", void 0);
8332
+ ], Line.prototype, "closed", undefined);
8327
8333
  Line = __decorate([
8328
8334
  registerUI()
8329
8335
  ], Line);
@@ -8356,16 +8362,16 @@ let Polygon = class Polygon extends UI {
8356
8362
  };
8357
8363
  __decorate([
8358
8364
  dataProcessor(PolygonData)
8359
- ], Polygon.prototype, "__", void 0);
8365
+ ], Polygon.prototype, "__", undefined);
8360
8366
  __decorate([
8361
8367
  pathType(3)
8362
- ], Polygon.prototype, "sides", void 0);
8368
+ ], Polygon.prototype, "sides", undefined);
8363
8369
  __decorate([
8364
8370
  pathType()
8365
- ], Polygon.prototype, "points", void 0);
8371
+ ], Polygon.prototype, "points", undefined);
8366
8372
  __decorate([
8367
8373
  pathType(0)
8368
- ], Polygon.prototype, "curve", void 0);
8374
+ ], Polygon.prototype, "curve", undefined);
8369
8375
  __decorate([
8370
8376
  rewrite(line.__updateRenderPath)
8371
8377
  ], Polygon.prototype, "__updateRenderPath", null);
@@ -8397,13 +8403,13 @@ let Star = class Star extends UI {
8397
8403
  };
8398
8404
  __decorate([
8399
8405
  dataProcessor(StarData)
8400
- ], Star.prototype, "__", void 0);
8406
+ ], Star.prototype, "__", undefined);
8401
8407
  __decorate([
8402
8408
  pathType(5)
8403
- ], Star.prototype, "corners", void 0);
8409
+ ], Star.prototype, "corners", undefined);
8404
8410
  __decorate([
8405
8411
  pathType(0.382)
8406
- ], Star.prototype, "innerRadius", void 0);
8412
+ ], Star.prototype, "innerRadius", undefined);
8407
8413
  Star = __decorate([
8408
8414
  registerUI()
8409
8415
  ], Star);
@@ -8425,10 +8431,10 @@ let Image = class Image extends Rect {
8425
8431
  };
8426
8432
  __decorate([
8427
8433
  dataProcessor(ImageData)
8428
- ], Image.prototype, "__", void 0);
8434
+ ], Image.prototype, "__", undefined);
8429
8435
  __decorate([
8430
8436
  boundsType('')
8431
- ], Image.prototype, "url", void 0);
8437
+ ], Image.prototype, "url", undefined);
8432
8438
  Image = __decorate([
8433
8439
  registerUI()
8434
8440
  ], Image);
@@ -8491,25 +8497,25 @@ let Canvas = class Canvas extends Rect {
8491
8497
  };
8492
8498
  __decorate([
8493
8499
  dataProcessor(CanvasData)
8494
- ], Canvas.prototype, "__", void 0);
8500
+ ], Canvas.prototype, "__", undefined);
8495
8501
  __decorate([
8496
8502
  resizeType(100)
8497
- ], Canvas.prototype, "width", void 0);
8503
+ ], Canvas.prototype, "width", undefined);
8498
8504
  __decorate([
8499
8505
  resizeType(100)
8500
- ], Canvas.prototype, "height", void 0);
8506
+ ], Canvas.prototype, "height", undefined);
8501
8507
  __decorate([
8502
8508
  resizeType(1)
8503
- ], Canvas.prototype, "pixelRatio", void 0);
8509
+ ], Canvas.prototype, "pixelRatio", undefined);
8504
8510
  __decorate([
8505
8511
  resizeType(true)
8506
- ], Canvas.prototype, "smooth", void 0);
8512
+ ], Canvas.prototype, "smooth", undefined);
8507
8513
  __decorate([
8508
8514
  dataType(false)
8509
- ], Canvas.prototype, "safeResize", void 0);
8515
+ ], Canvas.prototype, "safeResize", undefined);
8510
8516
  __decorate([
8511
8517
  resizeType()
8512
- ], Canvas.prototype, "contextSettings", void 0);
8518
+ ], Canvas.prototype, "contextSettings", undefined);
8513
8519
  Canvas = __decorate([
8514
8520
  registerUI()
8515
8521
  ], Canvas);
@@ -8600,76 +8606,76 @@ let Text = class Text extends UI {
8600
8606
  };
8601
8607
  __decorate([
8602
8608
  dataProcessor(TextData)
8603
- ], Text.prototype, "__", void 0);
8609
+ ], Text.prototype, "__", undefined);
8604
8610
  __decorate([
8605
8611
  boundsType(0)
8606
- ], Text.prototype, "width", void 0);
8612
+ ], Text.prototype, "width", undefined);
8607
8613
  __decorate([
8608
8614
  boundsType(0)
8609
- ], Text.prototype, "height", void 0);
8615
+ ], Text.prototype, "height", undefined);
8610
8616
  __decorate([
8611
8617
  dataType(false)
8612
- ], Text.prototype, "resizeFontSize", void 0);
8618
+ ], Text.prototype, "resizeFontSize", undefined);
8613
8619
  __decorate([
8614
8620
  surfaceType('#000000')
8615
- ], Text.prototype, "fill", void 0);
8621
+ ], Text.prototype, "fill", undefined);
8616
8622
  __decorate([
8617
8623
  affectStrokeBoundsType('outside')
8618
- ], Text.prototype, "strokeAlign", void 0);
8624
+ ], Text.prototype, "strokeAlign", undefined);
8619
8625
  __decorate([
8620
8626
  hitType('all')
8621
- ], Text.prototype, "hitFill", void 0);
8627
+ ], Text.prototype, "hitFill", undefined);
8622
8628
  __decorate([
8623
8629
  boundsType('')
8624
- ], Text.prototype, "text", void 0);
8630
+ ], Text.prototype, "text", undefined);
8625
8631
  __decorate([
8626
- boundsType('L')
8627
- ], Text.prototype, "fontFamily", void 0);
8632
+ boundsType('caption')
8633
+ ], Text.prototype, "fontFamily", undefined);
8628
8634
  __decorate([
8629
8635
  boundsType(12)
8630
- ], Text.prototype, "fontSize", void 0);
8636
+ ], Text.prototype, "fontSize", undefined);
8631
8637
  __decorate([
8632
8638
  boundsType('normal')
8633
- ], Text.prototype, "fontWeight", void 0);
8639
+ ], Text.prototype, "fontWeight", undefined);
8634
8640
  __decorate([
8635
8641
  boundsType(false)
8636
- ], Text.prototype, "italic", void 0);
8642
+ ], Text.prototype, "italic", undefined);
8637
8643
  __decorate([
8638
8644
  boundsType('none')
8639
- ], Text.prototype, "textCase", void 0);
8645
+ ], Text.prototype, "textCase", undefined);
8640
8646
  __decorate([
8641
8647
  boundsType('none')
8642
- ], Text.prototype, "textDecoration", void 0);
8648
+ ], Text.prototype, "textDecoration", undefined);
8643
8649
  __decorate([
8644
8650
  boundsType(0)
8645
- ], Text.prototype, "letterSpacing", void 0);
8651
+ ], Text.prototype, "letterSpacing", undefined);
8646
8652
  __decorate([
8647
8653
  boundsType({ type: 'percent', value: 1.5 })
8648
- ], Text.prototype, "lineHeight", void 0);
8654
+ ], Text.prototype, "lineHeight", undefined);
8649
8655
  __decorate([
8650
8656
  boundsType(0)
8651
- ], Text.prototype, "paraIndent", void 0);
8657
+ ], Text.prototype, "paraIndent", undefined);
8652
8658
  __decorate([
8653
8659
  boundsType(0)
8654
- ], Text.prototype, "paraSpacing", void 0);
8660
+ ], Text.prototype, "paraSpacing", undefined);
8655
8661
  __decorate([
8656
8662
  boundsType('x')
8657
- ], Text.prototype, "writingMode", void 0);
8663
+ ], Text.prototype, "writingMode", undefined);
8658
8664
  __decorate([
8659
8665
  boundsType('left')
8660
- ], Text.prototype, "textAlign", void 0);
8666
+ ], Text.prototype, "textAlign", undefined);
8661
8667
  __decorate([
8662
8668
  boundsType('top')
8663
- ], Text.prototype, "verticalAlign", void 0);
8669
+ ], Text.prototype, "verticalAlign", undefined);
8664
8670
  __decorate([
8665
8671
  boundsType(true)
8666
- ], Text.prototype, "autoSizeAlign", void 0);
8672
+ ], Text.prototype, "autoSizeAlign", undefined);
8667
8673
  __decorate([
8668
8674
  boundsType('normal')
8669
- ], Text.prototype, "textWrap", void 0);
8675
+ ], Text.prototype, "textWrap", undefined);
8670
8676
  __decorate([
8671
8677
  boundsType('show')
8672
- ], Text.prototype, "textOverflow", void 0);
8678
+ ], Text.prototype, "textOverflow", undefined);
8673
8679
  Text = __decorate([
8674
8680
  registerUI()
8675
8681
  ], Text);
@@ -8682,10 +8688,10 @@ let Path = class Path extends UI {
8682
8688
  };
8683
8689
  __decorate([
8684
8690
  dataProcessor(PathData)
8685
- ], Path.prototype, "__", void 0);
8691
+ ], Path.prototype, "__", undefined);
8686
8692
  __decorate([
8687
8693
  affectStrokeBoundsType('center')
8688
- ], Path.prototype, "strokeAlign", void 0);
8694
+ ], Path.prototype, "strokeAlign", undefined);
8689
8695
  Path = __decorate([
8690
8696
  registerUI()
8691
8697
  ], Path);
@@ -8724,10 +8730,10 @@ let Pen = class Pen extends Group {
8724
8730
  };
8725
8731
  __decorate([
8726
8732
  dataProcessor(PenData)
8727
- ], Pen.prototype, "__", void 0);
8733
+ ], Pen.prototype, "__", undefined);
8728
8734
  __decorate([
8729
8735
  penPathType()
8730
- ], Pen.prototype, "path", void 0);
8736
+ ], Pen.prototype, "path", undefined);
8731
8737
  Pen = __decorate([
8732
8738
  useModule(PathCreator, ['set', 'path', 'paint']),
8733
8739
  registerUI()
@@ -9361,7 +9367,7 @@ function checkImage(ui, canvas, paint, allowPaint) {
9361
9367
  }
9362
9368
  else {
9363
9369
  if (!paint.patternTask) {
9364
- paint.patternTask = ImageManager.patternTasker.add(() => __awaiter(this, void 0, void 0, function* () {
9370
+ paint.patternTask = ImageManager.patternTasker.add(() => __awaiter(this, undefined, undefined, function* () {
9365
9371
  paint.patternTask = null;
9366
9372
  if (canvas.bounds.hit(ui.__nowWorld))
9367
9373
  createPattern(ui, paint, pixelRatio);
@@ -9517,7 +9523,7 @@ function shadow(ui, current, shape) {
9517
9523
  const end = shadow.length - 1;
9518
9524
  toOffsetOutBounds$1(bounds, offsetOutBounds$1);
9519
9525
  shadow.forEach((item, index) => {
9520
- other.setWorldShadow((offsetOutBounds$1.offsetX + item.x * scaleX), (offsetOutBounds$1.offsetY + item.y * scaleY), item.blur * scaleX, item.color);
9526
+ other.setWorldShadow((offsetOutBounds$1.offsetX + item.x * scaleX), (offsetOutBounds$1.offsetY + item.y * scaleY), item.blur * scaleX, ColorConvert.string(item.color));
9521
9527
  spreadScale = item.spread ? 1 + item.spread * 2 / (__layout.boxBounds.width + (__layout.strokeBoxSpread || 0) * 2) : 0;
9522
9528
  drawWorldShadow(other, offsetOutBounds$1, spreadScale, shape);
9523
9529
  copyBounds = bounds;
@@ -9593,7 +9599,7 @@ function innerShadow(ui, current, shape) {
9593
9599
  other.copyWorld(shape.canvas, shapeBounds, bounds, 'source-out');
9594
9600
  copyBounds = bounds;
9595
9601
  }
9596
- other.fillWorld(copyBounds, item.color, 'source-in');
9602
+ other.fillWorld(copyBounds, ColorConvert.string(item.color), 'source-in');
9597
9603
  if (ui.__worldFlipped) {
9598
9604
  current.copyWorldByReset(other, copyBounds, nowWorld, item.blendMode);
9599
9605
  }
@@ -9951,11 +9957,11 @@ const TextMode = 2;
9951
9957
  function layoutChar(drawData, style, width, _height) {
9952
9958
  const { rows } = drawData;
9953
9959
  const { textAlign, paraIndent, letterSpacing } = style;
9954
- let charX, addWordWidth, indentWidth, mode, wordChar;
9960
+ let charX, addWordWidth, indentWidth, mode, wordChar, wordsLength;
9955
9961
  rows.forEach(row => {
9956
9962
  if (row.words) {
9957
- indentWidth = paraIndent && row.paraStart ? paraIndent : 0;
9958
- addWordWidth = (width && (textAlign === 'justify' || textAlign === 'both') && row.words.length > 1) ? (width - row.width - indentWidth) / (row.words.length - 1) : 0;
9963
+ indentWidth = paraIndent && row.paraStart ? paraIndent : 0, wordsLength = row.words.length;
9964
+ addWordWidth = (width && (textAlign === 'justify' || textAlign === 'both') && wordsLength > 1) ? (width - row.width - indentWidth) / (wordsLength - 1) : 0;
9959
9965
  mode = (letterSpacing || row.isOverflow) ? CharMode : (addWordWidth > 0.01 ? WordMode : TextMode);
9960
9966
  if (row.isOverflow && !letterSpacing)
9961
9967
  row.textMode = true;
@@ -9967,7 +9973,7 @@ function layoutChar(drawData, style, width, _height) {
9967
9973
  row.x += indentWidth;
9968
9974
  charX = row.x;
9969
9975
  row.data = [];
9970
- row.words.forEach(word => {
9976
+ row.words.forEach((word, index) => {
9971
9977
  if (mode === WordMode) {
9972
9978
  wordChar = { char: '', x: charX };
9973
9979
  charX = toWordChar(word.data, charX, wordChar);
@@ -9977,7 +9983,7 @@ function layoutChar(drawData, style, width, _height) {
9977
9983
  else {
9978
9984
  charX = toChar(word.data, charX, row.data, row.isOverflow);
9979
9985
  }
9980
- if (addWordWidth && (!row.paraEnd || textAlign === 'both')) {
9986
+ if (addWordWidth && (!row.paraEnd || textAlign === 'both') && (index !== wordsLength - 1)) {
9981
9987
  charX += addWordWidth;
9982
9988
  row.width += addWordWidth;
9983
9989
  }
@@ -10233,3 +10239,4 @@ try {
10233
10239
  catch (_a) { }
10234
10240
 
10235
10241
  export { AlignHelper, Answer, AroundHelper, AutoBounds, BezierHelper, Bounds, BoundsHelper, Box, BoxData, Branch, BranchHelper, BranchRender, Canvas, CanvasData, CanvasManager, ChildEvent, ColorConvert, Creator, DataHelper, Debug, Direction4, Direction9, Effect, Ellipse, EllipseData, EllipseHelper, Event, EventCreator, Eventer, Export, FileHelper, Frame, FrameData, Group, GroupData, Image, ImageData, ImageEvent, ImageManager, IncrementId, LayoutEvent, Layouter, Leaf, LeafBounds, LeafBoundsHelper, LeafData, LeafDataProxy, LeafEventer, LeafHelper, LeafLayout, LeafLevelList, LeafList, LeafMatrix, LeafRender, Leafer, LeaferCanvas, LeaferCanvasBase, LeaferData, LeaferEvent, LeaferImage, Line, LineData, MathHelper, Matrix, MatrixHelper, MyImage, NeedConvertToCanvasCommandMap, OneRadian, PI2, PI_2, Paint, PaintGradient, PaintImage, Path, PathArrow, PathBounds, PathCommandDataHelper, PathCommandMap, PathConvert, PathCorner, PathCreator, PathData, PathDrawer, PathHelper, PathNumberCommandLengthMap, PathNumberCommandMap, Pen, PenData, Platform, Plugin, Point, PointHelper, Polygon, PolygonData, PropertyEvent, Rect, RectData, RectHelper, RectRender, RenderEvent, Renderer, ResizeEvent, Run, Star, StarData, State, StringNumberMap, TaskItem, TaskProcessor, Text, TextConvert, TextData, Transition, TwoPointBoundsHelper, UI, UIBounds, UICreator, UIData, UIRender, UnitConvert, WaitHelper, WatchEvent, Watcher, affectRenderBoundsType, affectStrokeBoundsType, attr, autoLayoutType, boundsType, canvasPatch, canvasSizeAttrs, cursorType, dataProcessor, dataType, decorateLeafAttr, defineDataProcessor, defineKey, defineLeafAttr, doBoundsType, doStrokeType, effectType, emptyData, eraserType, getBoundsData, getDescriptor, getMatrixData, getPointData, hitType, isNull, layoutProcessor, maskType, naturalBoundsType, opacityType, pathInputType, pathType, pen, positionType, registerUI, registerUIEvent, resizeType, rewrite, rewriteAble, rotationType, scaleType, sortType, strokeType, surfaceType, tempBounds$1 as tempBounds, tempMatrix, tempPoint$3 as tempPoint, useCanvas, useModule, version, visibleType, zoomLayerType };
10242
+ //# sourceMappingURL=miniapp.module.js.map