@leafer-ui/worker 1.5.3 → 1.6.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.
@@ -45,7 +45,7 @@ const IncrementId = {
45
45
  };
46
46
  const I$2 = IncrementId;
47
47
 
48
- const { round, pow: pow$1, PI: PI$4 } = Math;
48
+ const { round: round$3, pow: pow$1, PI: PI$4 } = Math;
49
49
  const MathHelper = {
50
50
  within(value, min, max) {
51
51
  if (typeof min === 'object')
@@ -109,7 +109,7 @@ const MathHelper = {
109
109
  },
110
110
  float(num, maxLength) {
111
111
  const a = maxLength !== undefined ? pow$1(10, maxLength) : 1000000000000;
112
- num = round(num * a) / a;
112
+ num = round$3(num * a) / a;
113
113
  return num === -0 ? 0 : num;
114
114
  },
115
115
  getScaleData(scale, size, originSize, scaleData) {
@@ -132,8 +132,15 @@ const MathHelper = {
132
132
  scaleData.scaleX = scale.x;
133
133
  scaleData.scaleY = scale.y;
134
134
  }
135
+ },
136
+ randInt,
137
+ randColor(opacity) {
138
+ return `rgba(${randInt(255)},${randInt(255)},${randInt(255)},${opacity || 1})`;
135
139
  }
136
140
  };
141
+ function randInt(num) {
142
+ return Math.round(Math.random() * num);
143
+ }
137
144
  const OneRadian = PI$4 / 180;
138
145
  const PI2 = PI$4 * 2;
139
146
  const PI_2 = PI$4 / 2;
@@ -431,7 +438,7 @@ const MatrixHelper = {
431
438
  const M$6 = MatrixHelper;
432
439
 
433
440
  const { toInnerPoint: toInnerPoint$2, toOuterPoint: toOuterPoint$3 } = MatrixHelper;
434
- const { sin: sin$4, cos: cos$4, abs: abs$4, sqrt: sqrt$2, atan2: atan2$2, min: min$1, PI: PI$3 } = Math;
441
+ const { sin: sin$4, cos: cos$4, abs: abs$4, sqrt: sqrt$2, atan2: atan2$2, min: min$1, round: round$2, PI: PI$3 } = Math;
435
442
  const PointHelper = {
436
443
  defaultPoint: getPointData(),
437
444
  tempPoint: {},
@@ -452,6 +459,10 @@ const PointHelper = {
452
459
  t.x = x;
453
460
  t.y = y;
454
461
  },
462
+ round(t, halfPixel) {
463
+ t.x = halfPixel ? round$2(t.x - 0.5) + 0.5 : round$2(t.x);
464
+ t.y = halfPixel ? round$2(t.y - 0.5) + 0.5 : round$2(t.y);
465
+ },
455
466
  move(t, x, y) {
456
467
  t.x += x;
457
468
  t.y += y;
@@ -1317,6 +1328,7 @@ const StringNumberMap = {
1317
1328
  'E': 1
1318
1329
  };
1319
1330
 
1331
+ const { randColor } = MathHelper;
1320
1332
  class Debug {
1321
1333
  constructor(name) {
1322
1334
  this.repeatMap = {};
@@ -1331,6 +1343,19 @@ class Debug {
1331
1343
  static set exclude(name) {
1332
1344
  this.excludeList = getNameList(name);
1333
1345
  }
1346
+ static drawRepaint(canvas, bounds) {
1347
+ const color = randColor();
1348
+ canvas.fillWorld(bounds, color.replace('1)', '.1)'));
1349
+ canvas.strokeWorld(bounds, color);
1350
+ }
1351
+ static drawBounds(leaf, canvas, _options) {
1352
+ const showHit = Debug.showBounds === 'hit', w = leaf.__nowWorld, color = randColor();
1353
+ if (showHit)
1354
+ canvas.setWorld(w), leaf.__drawHitPath(canvas), canvas.fillStyle = color.replace('1)', '.2)'), canvas.fill();
1355
+ canvas.resetTransform();
1356
+ canvas.setStroke(color, 2);
1357
+ showHit ? canvas.stroke() : canvas.strokeWorld(w, color);
1358
+ }
1334
1359
  log(...messages) {
1335
1360
  if (D$4.enable) {
1336
1361
  if (D$4.filterList.length && D$4.filterList.every(name => name !== this.name))
@@ -1417,7 +1442,7 @@ const Plugin = {
1417
1442
  return rs;
1418
1443
  },
1419
1444
  need(name) {
1420
- console.error('need plugin: ' + (name.includes('-x') ? '' : '@leafer-in/') + name);
1445
+ console.error('please install plugin: ' + (name.includes('-x') ? '' : '@leafer-in/') + name);
1421
1446
  }
1422
1447
  };
1423
1448
  setTimeout(() => check.forEach(name => Plugin.has(name, true)));
@@ -2017,7 +2042,7 @@ __decorate([
2017
2042
  contextMethod()
2018
2043
  ], Canvas$1.prototype, "strokeText", null);
2019
2044
 
2020
- const { copy: copy$9 } = MatrixHelper;
2045
+ const { copy: copy$9, multiplyParent: multiplyParent$3 } = MatrixHelper, { round: round$1 } = Math;
2021
2046
  const minSize = { width: 1, height: 1, pixelRatio: 1 };
2022
2047
  const canvasSizeAttrs = ['width', 'height', 'pixelRatio'];
2023
2048
  class LeaferCanvasBase extends Canvas$1 {
@@ -2026,6 +2051,8 @@ class LeaferCanvasBase extends Canvas$1 {
2026
2051
  get pixelRatio() { return this.size.pixelRatio; }
2027
2052
  get pixelWidth() { return this.width * this.pixelRatio; }
2028
2053
  get pixelHeight() { return this.height * this.pixelRatio; }
2054
+ get pixelSnap() { return this.config.pixelSnap; }
2055
+ set pixelSnap(value) { this.config.pixelSnap = value; }
2029
2056
  get allowBackgroundColor() { return this.view && this.parentView; }
2030
2057
  constructor(config, manager) {
2031
2058
  super();
@@ -2086,15 +2113,22 @@ class LeaferCanvasBase extends Canvas$1 {
2086
2113
  stopAutoLayout() { }
2087
2114
  setCursor(_cursor) { }
2088
2115
  setWorld(matrix, parentMatrix) {
2089
- const { pixelRatio } = this;
2090
- const w = this.worldTransform;
2091
- if (parentMatrix) {
2092
- const { a, b, c, d, e, f } = parentMatrix;
2093
- this.setTransform(w.a = ((matrix.a * a) + (matrix.b * c)) * pixelRatio, w.b = ((matrix.a * b) + (matrix.b * d)) * pixelRatio, w.c = ((matrix.c * a) + (matrix.d * c)) * pixelRatio, w.d = ((matrix.c * b) + (matrix.d * d)) * pixelRatio, w.e = (((matrix.e * a) + (matrix.f * c) + e)) * pixelRatio, w.f = (((matrix.e * b) + (matrix.f * d) + f)) * pixelRatio);
2094
- }
2095
- else {
2096
- this.setTransform(w.a = matrix.a * pixelRatio, w.b = matrix.b * pixelRatio, w.c = matrix.c * pixelRatio, w.d = matrix.d * pixelRatio, w.e = matrix.e * pixelRatio, w.f = matrix.f * pixelRatio);
2116
+ const { pixelRatio, pixelSnap } = this, w = this.worldTransform;
2117
+ if (parentMatrix)
2118
+ multiplyParent$3(matrix, parentMatrix, w);
2119
+ w.a = matrix.a * pixelRatio;
2120
+ w.b = matrix.b * pixelRatio;
2121
+ w.c = matrix.c * pixelRatio;
2122
+ w.d = matrix.d * pixelRatio;
2123
+ w.e = matrix.e * pixelRatio;
2124
+ w.f = matrix.f * pixelRatio;
2125
+ if (pixelSnap) {
2126
+ if (matrix.half && (matrix.half * pixelRatio) % 2)
2127
+ w.e = round$1(w.e - 0.5) + 0.5, w.f = round$1(w.f - 0.5) + 0.5;
2128
+ else
2129
+ w.e = round$1(w.e), w.f = round$1(w.f);
2097
2130
  }
2131
+ this.setTransform(w.a, w.b, w.c, w.d, w.e, w.f);
2098
2132
  }
2099
2133
  useWorldTransform(worldTransform) {
2100
2134
  if (worldTransform)
@@ -2237,12 +2271,13 @@ class LeaferCanvasBase extends Canvas$1 {
2237
2271
  return this.width === size.width && this.height === size.height && (!size.pixelRatio || this.pixelRatio === size.pixelRatio);
2238
2272
  }
2239
2273
  getSameCanvas(useSameWorldTransform, useSameSmooth) {
2240
- const canvas = this.manager ? this.manager.get(this.size) : Creator.canvas(Object.assign({}, this.size));
2274
+ const { size, pixelSnap } = this, canvas = this.manager ? this.manager.get(size) : Creator.canvas(Object.assign({}, size));
2241
2275
  canvas.save();
2242
2276
  if (useSameWorldTransform)
2243
2277
  copy$9(canvas.worldTransform, this.worldTransform), canvas.useWorldTransform();
2244
2278
  if (useSameSmooth)
2245
2279
  canvas.smooth = this.smooth;
2280
+ canvas.pixelSnap !== pixelSnap && (canvas.pixelSnap = pixelSnap);
2246
2281
  return canvas;
2247
2282
  }
2248
2283
  recycle(clearBounds) {
@@ -3669,7 +3704,7 @@ const Resource = {
3669
3704
  const R = Resource;
3670
3705
 
3671
3706
  const ImageManager = {
3672
- maxRecycled: 100,
3707
+ maxRecycled: 10,
3673
3708
  recycledList: [],
3674
3709
  patternTasker: new TaskProcessor(),
3675
3710
  get(config) {
@@ -4022,9 +4057,8 @@ function hitType(defaultValue) {
4022
4057
  set(value) {
4023
4058
  if (this.__setAttr(key, value)) {
4024
4059
  this.__layout.hitCanvasChanged = true;
4025
- if (Debug.showHitView) {
4060
+ if (Debug.showBounds === 'hit')
4026
4061
  this.__layout.surfaceChanged || this.__layout.surfaceChange();
4027
- }
4028
4062
  if (this.leafer)
4029
4063
  this.leafer.updateCursor();
4030
4064
  }
@@ -4185,7 +4219,7 @@ function registerUIEvent() {
4185
4219
  }
4186
4220
 
4187
4221
  const { copy: copy$7, toInnerPoint: toInnerPoint$1, toOuterPoint: toOuterPoint$1, scaleOfOuter: scaleOfOuter$2, rotateOfOuter: rotateOfOuter$2, skewOfOuter, multiplyParent: multiplyParent$2, divideParent, getLayout } = MatrixHelper;
4188
- const matrix$1 = {};
4222
+ const matrix$1 = {}, { round } = Math;
4189
4223
  const LeafHelper = {
4190
4224
  updateAllMatrix(leaf, checkAutoLayout, waitAutoLayout) {
4191
4225
  if (checkAutoLayout && leaf.__hasAutoLayout && leaf.__layout.matrixChanged)
@@ -4259,6 +4293,8 @@ const LeafHelper = {
4259
4293
  y = x.y, x = x.x;
4260
4294
  x += t.x;
4261
4295
  y += t.y;
4296
+ if (t.leafer && t.leafer.config.pointSnap)
4297
+ x = round(x), y = round(y);
4262
4298
  transition ? t.animate({ x, y }, transition) : (t.x = x, t.y = y);
4263
4299
  },
4264
4300
  zoomOfWorld(t, origin, scaleX, scaleY, resize, transition) {
@@ -4497,6 +4533,7 @@ class LeafLayout {
4497
4533
  set contentBounds(bounds) { this._contentBounds = bounds; }
4498
4534
  get strokeBounds() { return this._strokeBounds || this.boxBounds; }
4499
4535
  get renderBounds() { return this._renderBounds || this.boxBounds; }
4536
+ set renderBounds(bounds) { this._renderBounds = bounds; }
4500
4537
  get localContentBounds() { toOuterOf$2(this.contentBounds, this.leaf.__localMatrix, this[localContent] || (this[localContent] = {})); return this[localContent]; }
4501
4538
  get localStrokeBounds() { return this._localStrokeBounds || this; }
4502
4539
  get localRenderBounds() { return this._localRenderBounds || this; }
@@ -4515,11 +4552,13 @@ class LeafLayout {
4515
4552
  get height() { return this.boxBounds.height; }
4516
4553
  constructor(leaf) {
4517
4554
  this.leaf = leaf;
4518
- this.boxBounds = { x: 0, y: 0, width: 0, height: 0 };
4519
4555
  if (this.leaf.__local)
4520
4556
  this._localRenderBounds = this._localStrokeBounds = this.leaf.__local;
4521
- this.boxChange();
4522
- this.matrixChange();
4557
+ if (leaf.__world) {
4558
+ this.boxBounds = { x: 0, y: 0, width: 0, height: 0 };
4559
+ this.boxChange();
4560
+ this.matrixChange();
4561
+ }
4523
4562
  }
4524
4563
  createLocal() {
4525
4564
  const local = this.leaf.__local = { a: 1, b: 0, c: 0, d: 1, e: 0, f: 0, x: 0, y: 0, width: 0, height: 0 };
@@ -4851,6 +4890,9 @@ class ResizeEvent extends Event {
4851
4890
  }
4852
4891
  this.old = oldSize;
4853
4892
  }
4893
+ static isResizing(leaf) {
4894
+ return this.resizingKeys && this.resizingKeys[leaf.innerId] !== undefined;
4895
+ }
4854
4896
  }
4855
4897
  ResizeEvent.RESIZE = 'resize';
4856
4898
 
@@ -4893,6 +4935,7 @@ class RenderEvent extends Event {
4893
4935
  }
4894
4936
  RenderEvent.REQUEST = 'render.request';
4895
4937
  RenderEvent.CHILD_START = 'render.child_start';
4938
+ RenderEvent.CHILD_END = 'render.child_end';
4896
4939
  RenderEvent.START = 'render.start';
4897
4940
  RenderEvent.BEFORE = 'render.before';
4898
4941
  RenderEvent.RENDER = 'render';
@@ -5272,24 +5315,27 @@ const LeafBounds = {
5272
5315
  const LeafRender = {
5273
5316
  __render(canvas, options) {
5274
5317
  if (this.__worldOpacity) {
5318
+ const data = this.__;
5275
5319
  canvas.setWorld(this.__nowWorld = this.__getNowWorld(options));
5276
- canvas.opacity = this.__.opacity;
5320
+ canvas.opacity = options.dimOpacity && !data.dimskip ? data.opacity * options.dimOpacity : data.opacity;
5277
5321
  if (this.__.__single) {
5278
- if (this.__.eraser === 'path')
5322
+ if (data.eraser === 'path')
5279
5323
  return this.__renderEraser(canvas, options);
5280
5324
  const tempCanvas = canvas.getSameCanvas(true, true);
5281
5325
  this.__draw(tempCanvas, options, canvas);
5282
5326
  if (this.__worldFlipped) {
5283
- canvas.copyWorldByReset(tempCanvas, this.__nowWorld, null, this.__.__blendMode, true);
5327
+ canvas.copyWorldByReset(tempCanvas, this.__nowWorld, null, data.__blendMode, true);
5284
5328
  }
5285
5329
  else {
5286
- canvas.copyWorldToInner(tempCanvas, this.__nowWorld, this.__layout.renderBounds, this.__.__blendMode);
5330
+ canvas.copyWorldToInner(tempCanvas, this.__nowWorld, this.__layout.renderBounds, data.__blendMode);
5287
5331
  }
5288
5332
  tempCanvas.recycle(this.__nowWorld);
5289
5333
  }
5290
5334
  else {
5291
5335
  this.__draw(canvas, options);
5292
5336
  }
5337
+ if (Debug.showBounds)
5338
+ Debug.drawBounds(this, canvas, options);
5293
5339
  }
5294
5340
  },
5295
5341
  __clip(canvas, options) {
@@ -5319,14 +5365,19 @@ const BranchRender = {
5319
5365
  __render(canvas, options) {
5320
5366
  this.__nowWorld = this.__getNowWorld(options);
5321
5367
  if (this.__worldOpacity) {
5322
- if (this.__.__single) {
5323
- if (this.__.eraser === 'path')
5368
+ const data = this.__;
5369
+ if (data.dim)
5370
+ options.dimOpacity = data.dim === true ? 0.2 : data.dim;
5371
+ else if (data.dimskip)
5372
+ options.dimOpacity && (options.dimOpacity = 0);
5373
+ if (data.__single) {
5374
+ if (data.eraser === 'path')
5324
5375
  return this.__renderEraser(canvas, options);
5325
5376
  const tempCanvas = canvas.getSameCanvas(false, true);
5326
5377
  this.__renderBranch(tempCanvas, options);
5327
5378
  const nowWorld = this.__nowWorld;
5328
- canvas.opacity = this.__.opacity;
5329
- canvas.copyWorldByReset(tempCanvas, nowWorld, nowWorld, this.__.__blendMode, true);
5379
+ canvas.opacity = options.dimOpacity ? data.opacity * options.dimOpacity : data.opacity;
5380
+ canvas.copyWorldByReset(tempCanvas, nowWorld, nowWorld, data.__blendMode, true);
5330
5381
  tempCanvas.recycle(nowWorld);
5331
5382
  }
5332
5383
  else {
@@ -5401,9 +5452,11 @@ let Leaf = class Leaf {
5401
5452
  reset(data) {
5402
5453
  if (this.leafer)
5403
5454
  this.leafer.forceRender(this.__world);
5404
- this.__world = { a: 1, b: 0, c: 0, d: 1, e: 0, f: 0, x: 0, y: 0, width: 0, height: 0, scaleX: 1, scaleY: 1 };
5405
- if (data !== null)
5406
- this.__local = { a: 1, b: 0, c: 0, d: 1, e: 0, f: 0, x: 0, y: 0, width: 0, height: 0 };
5455
+ if (data !== 0) {
5456
+ this.__world = { a: 1, b: 0, c: 0, d: 1, e: 0, f: 0, x: 0, y: 0, width: 0, height: 0, scaleX: 1, scaleY: 1 };
5457
+ if (data !== null)
5458
+ this.__local = { a: 1, b: 0, c: 0, d: 1, e: 0, f: 0, x: 0, y: 0, width: 0, height: 0 };
5459
+ }
5407
5460
  this.__worldOpacity = 1;
5408
5461
  this.__ = new this.__DataProcessor(this);
5409
5462
  this.__layout = new this.__LayoutProcessor(this);
@@ -5539,9 +5592,10 @@ let Leaf = class Leaf {
5539
5592
  if (options.matrix) {
5540
5593
  if (!this.__cameraWorld)
5541
5594
  this.__cameraWorld = {};
5542
- const cameraWorld = this.__cameraWorld;
5543
- multiplyParent(this.__world, options.matrix, cameraWorld, undefined, this.__world);
5595
+ const cameraWorld = this.__cameraWorld, world = this.__world;
5596
+ multiplyParent(world, options.matrix, cameraWorld, undefined, world);
5544
5597
  toOuterOf(this.__layout.renderBounds, cameraWorld, cameraWorld);
5598
+ cameraWorld.half !== world.half && (cameraWorld.half = world.half);
5545
5599
  return cameraWorld;
5546
5600
  }
5547
5601
  else {
@@ -5701,7 +5755,7 @@ let Leaf = class Leaf {
5701
5755
  __updateHitCanvas() { }
5702
5756
  __render(_canvas, _options) { }
5703
5757
  __drawFast(_canvas, _options) { }
5704
- __draw(_canvas, _options) { }
5758
+ __draw(_canvas, _options, _originCanvas) { }
5705
5759
  __clip(_canvas, _options) { }
5706
5760
  __renderShape(_canvas, _options, _ignoreFill, _ignoreStroke) { }
5707
5761
  __updateWorldOpacity() { }
@@ -6071,7 +6125,7 @@ class LeafLevelList {
6071
6125
  }
6072
6126
  }
6073
6127
 
6074
- const version = "1.5.3";
6128
+ const version = "1.6.1";
6075
6129
 
6076
6130
  class LeaferCanvas extends LeaferCanvasBase {
6077
6131
  get allowBackgroundColor() { return true; }
@@ -6311,7 +6365,6 @@ function updateChange(updateList) {
6311
6365
  }
6312
6366
 
6313
6367
  const { worldBounds } = LeafBoundsHelper;
6314
- const bigBounds = { x: 0, y: 0, width: 100000, height: 100000 };
6315
6368
  class LayoutBlockData {
6316
6369
  constructor(list) {
6317
6370
  this.updatedBounds = new Bounds();
@@ -6325,13 +6378,7 @@ class LayoutBlockData {
6325
6378
  this.beforeBounds.setListWithFn(this.updatedList.list, worldBounds);
6326
6379
  }
6327
6380
  setAfter() {
6328
- const { list } = this.updatedList;
6329
- if (list.some(leaf => leaf.noBounds)) {
6330
- this.afterBounds.set(bigBounds);
6331
- }
6332
- else {
6333
- this.afterBounds.setListWithFn(list, worldBounds);
6334
- }
6381
+ this.afterBounds.setListWithFn(this.updatedList.list, worldBounds);
6335
6382
  this.updatedBounds.setList([this.beforeBounds, this.afterBounds]);
6336
6383
  }
6337
6384
  merge(data) {
@@ -6533,6 +6580,22 @@ class Renderer {
6533
6580
  requestLayout() {
6534
6581
  this.target.emit(LayoutEvent.REQUEST);
6535
6582
  }
6583
+ checkRender() {
6584
+ if (this.running) {
6585
+ const { target } = this;
6586
+ if (target.isApp) {
6587
+ target.emit(RenderEvent.CHILD_START, target);
6588
+ target.children.forEach(leafer => {
6589
+ leafer.renderer.FPS = this.FPS;
6590
+ leafer.renderer.checkRender();
6591
+ });
6592
+ target.emit(RenderEvent.CHILD_END, target);
6593
+ }
6594
+ if (this.changed && this.canvas.view)
6595
+ this.render();
6596
+ this.target.emit(RenderEvent.NEXT);
6597
+ }
6598
+ }
6536
6599
  render(callback) {
6537
6600
  if (!(this.running && this.canvas.view))
6538
6601
  return this.update();
@@ -6541,8 +6604,6 @@ class Renderer {
6541
6604
  this.totalBounds = new Bounds();
6542
6605
  debug$3.log(target.innerName, '--->');
6543
6606
  try {
6544
- if (!target.isApp)
6545
- target.app.emit(RenderEvent.CHILD_START, target);
6546
6607
  this.emitRender(RenderEvent.START);
6547
6608
  this.renderOnce(callback);
6548
6609
  this.emitRender(RenderEvent.END, this.totalBounds);
@@ -6610,20 +6671,12 @@ class Renderer {
6610
6671
  }
6611
6672
  clipRender(block) {
6612
6673
  const t = Run.start('PartRender');
6613
- const { canvas } = this;
6614
- const bounds = block.getIntersect(canvas.bounds);
6615
- const includes = block.includes(this.target.__world);
6616
- const realBounds = new Bounds(bounds);
6674
+ const { canvas } = this, bounds = block.getIntersect(canvas.bounds), realBounds = new Bounds(bounds);
6617
6675
  canvas.save();
6618
- if (includes && !Debug.showRepaint) {
6619
- canvas.clear();
6620
- }
6621
- else {
6622
- bounds.spread(10 + 1 / this.canvas.pixelRatio).ceil();
6623
- canvas.clearWorld(bounds, true);
6624
- canvas.clipWorld(bounds, true);
6625
- }
6626
- this.__render(bounds, includes, realBounds);
6676
+ bounds.spread(Renderer.clipSpread).ceil();
6677
+ canvas.clearWorld(bounds, true);
6678
+ canvas.clipWorld(bounds, true);
6679
+ this.__render(bounds, realBounds);
6627
6680
  canvas.restore();
6628
6681
  Run.end(t);
6629
6682
  }
@@ -6632,28 +6685,22 @@ class Renderer {
6632
6685
  const { canvas } = this;
6633
6686
  canvas.save();
6634
6687
  canvas.clear();
6635
- this.__render(canvas.bounds, true);
6688
+ this.__render(canvas.bounds);
6636
6689
  canvas.restore();
6637
6690
  Run.end(t);
6638
6691
  }
6639
- __render(bounds, includes, realBounds) {
6640
- const options = bounds.includes(this.target.__world) ? { includes } : { bounds, includes };
6692
+ __render(bounds, realBounds) {
6693
+ const { canvas } = this, includes = bounds.includes(this.target.__world), options = includes ? { includes } : { bounds, includes };
6641
6694
  if (this.needFill)
6642
- this.canvas.fillWorld(bounds, this.config.fill);
6695
+ canvas.fillWorld(bounds, this.config.fill);
6643
6696
  if (Debug.showRepaint)
6644
- this.canvas.strokeWorld(bounds, 'red');
6645
- this.target.__render(this.canvas, options);
6697
+ Debug.drawRepaint(canvas, bounds);
6698
+ this.target.__render(canvas, options);
6646
6699
  this.renderBounds = realBounds = realBounds || bounds;
6647
6700
  this.renderOptions = options;
6648
6701
  this.totalBounds.isEmpty() ? this.totalBounds = realBounds : this.totalBounds.add(realBounds);
6649
- if (Debug.showHitView)
6650
- this.renderHitView(options);
6651
- if (Debug.showBoundsView)
6652
- this.renderBoundsView(options);
6653
- this.canvas.updateRender(realBounds);
6654
- }
6655
- renderHitView(_options) { }
6656
- renderBoundsView(_options) { }
6702
+ canvas.updateRender(realBounds);
6703
+ }
6657
6704
  addBlock(block) {
6658
6705
  if (!this.updateBlocks)
6659
6706
  this.updateBlocks = [];
@@ -6669,17 +6716,16 @@ class Renderer {
6669
6716
  }
6670
6717
  }
6671
6718
  __requestRender() {
6672
- if (this.requestTime)
6719
+ const target = this.target;
6720
+ if (this.requestTime || !target)
6673
6721
  return;
6722
+ if (target.parentApp)
6723
+ return target.parentApp.requestRender(false);
6674
6724
  const requestTime = this.requestTime = Date.now();
6675
6725
  Platform.requestRender(() => {
6676
6726
  this.FPS = Math.min(60, Math.ceil(1000 / (Date.now() - requestTime)));
6677
6727
  this.requestTime = 0;
6678
- if (this.running) {
6679
- if (this.changed && this.canvas.view)
6680
- this.render();
6681
- this.target.emit(RenderEvent.NEXT);
6682
- }
6728
+ this.checkRender();
6683
6729
  });
6684
6730
  }
6685
6731
  __onResize(e) {
@@ -6737,6 +6783,7 @@ class Renderer {
6737
6783
  }
6738
6784
  }
6739
6785
  }
6786
+ Renderer.clipSpread = 10;
6740
6787
 
6741
6788
  const { hitRadiusPoint } = BoundsHelper;
6742
6789
  class Picker {
@@ -6982,6 +7029,7 @@ class UIData extends LeafData {
6982
7029
  return strokeWidth;
6983
7030
  }
6984
7031
  get __hasStroke() { return this.stroke && this.strokeWidth; }
7032
+ get __hasHalf() { const t = this; return (t.stroke && t.strokeAlign === 'center' && t.strokeWidth % 2) || undefined; }
6985
7033
  get __hasMultiPaint() {
6986
7034
  const t = this;
6987
7035
  if ((t.__isFills && t.fill.length > 1) || (t.__isStrokes && t.stroke.length > 1) || t.__useEffect)
@@ -7026,14 +7074,14 @@ class UIData extends LeafData {
7026
7074
  this.__removeInput('fill');
7027
7075
  PaintImage.recycleImage('fill', this);
7028
7076
  this.__isFills = false;
7029
- if (this.__pixelFill)
7030
- this.__pixelFill = false;
7077
+ this.__pixelFill && (this.__pixelFill = false);
7031
7078
  }
7032
7079
  this._fill = value;
7033
7080
  }
7034
7081
  else if (typeof value === 'object') {
7035
7082
  this.__setInput('fill', value);
7036
- this.__leaf.__layout.boxChanged || this.__leaf.__layout.boxChange();
7083
+ const layout = this.__leaf.__layout;
7084
+ layout.boxChanged || layout.boxChange();
7037
7085
  this.__isFills = true;
7038
7086
  this._fill || (this._fill = emptyPaint);
7039
7087
  }
@@ -7044,14 +7092,14 @@ class UIData extends LeafData {
7044
7092
  this.__removeInput('stroke');
7045
7093
  PaintImage.recycleImage('stroke', this);
7046
7094
  this.__isStrokes = false;
7047
- if (this.__pixelStroke)
7048
- this.__pixelStroke = false;
7095
+ this.__pixelStroke && (this.__pixelStroke = false);
7049
7096
  }
7050
7097
  this._stroke = value;
7051
7098
  }
7052
7099
  else if (typeof value === 'object') {
7053
7100
  this.__setInput('stroke', value);
7054
- this.__leaf.__layout.boxChanged || this.__leaf.__layout.boxChange();
7101
+ const layout = this.__leaf.__layout;
7102
+ layout.boxChanged || layout.boxChange();
7055
7103
  this.__isStrokes = true;
7056
7104
  this._stroke || (this._stroke = emptyPaint);
7057
7105
  }
@@ -7166,6 +7214,31 @@ class TextData extends UIData {
7166
7214
  this._fontWeight = value;
7167
7215
  }
7168
7216
  }
7217
+ setBoxStyle(value) {
7218
+ let t = this.__leaf, box = t.__box;
7219
+ if (value) {
7220
+ const { boxStyle } = this;
7221
+ if (box)
7222
+ for (let key in boxStyle)
7223
+ box[key] = undefined;
7224
+ else
7225
+ box = t.__box = UICreator.get('Rect', 0);
7226
+ const layout = t.__layout, boxLayout = box.__layout;
7227
+ if (!boxStyle)
7228
+ box.parent = t, box.__world = t.__world, boxLayout.boxBounds = layout.boxBounds;
7229
+ box.set(value);
7230
+ if (boxLayout.strokeChanged)
7231
+ layout.strokeChange();
7232
+ if (boxLayout.renderChanged)
7233
+ layout.renderChange();
7234
+ box.__updateChange();
7235
+ }
7236
+ else if (box) {
7237
+ t.__box = box.parent = null;
7238
+ box.destroy();
7239
+ }
7240
+ this._boxStyle = value;
7241
+ }
7169
7242
  }
7170
7243
 
7171
7244
  class ImageData extends RectData {
@@ -7203,7 +7276,7 @@ class CanvasData extends RectData {
7203
7276
  const UIBounds = {
7204
7277
  __updateStrokeSpread() {
7205
7278
  let width = 0, boxWidth = 0;
7206
- const data = this.__, { strokeAlign, strokeWidth } = data;
7279
+ const data = this.__, { strokeAlign, strokeWidth } = data, box = this.__box;
7207
7280
  if ((data.stroke || data.hitStroke === 'all') && strokeWidth && strokeAlign !== 'inside') {
7208
7281
  boxWidth = width = strokeAlign === 'center' ? strokeWidth / 2 : strokeWidth;
7209
7282
  if (!data.__boxStroke) {
@@ -7214,6 +7287,10 @@ const UIBounds = {
7214
7287
  }
7215
7288
  if (data.__useArrow)
7216
7289
  width += strokeWidth * 5;
7290
+ if (box) {
7291
+ width = Math.max(box.__layout.strokeSpread = box.__updateStrokeSpread(), width);
7292
+ boxWidth = box.__layout.strokeBoxSpread;
7293
+ }
7217
7294
  this.__layout.strokeBoxSpread = boxWidth;
7218
7295
  return width;
7219
7296
  },
@@ -7232,25 +7309,26 @@ const UIBounds = {
7232
7309
  if (backgroundBlur)
7233
7310
  shapeWidth = Math.max(shapeWidth, backgroundBlur);
7234
7311
  this.__layout.renderShapeSpread = shapeWidth;
7235
- return width + (this.__layout.strokeSpread || 0);
7312
+ width += this.__layout.strokeSpread || 0;
7313
+ return this.__box ? Math.max(this.__box.__updateRenderSpread(), width) : width;
7236
7314
  }
7237
7315
  };
7238
7316
 
7239
7317
  const UIRender = {
7240
7318
  __updateChange() {
7241
- const data = this.__;
7319
+ const data = this.__, w = this.__world;
7242
7320
  if (data.__useEffect) {
7243
7321
  const { shadow, innerShadow, blur, backgroundBlur, filter } = this.__;
7244
7322
  data.__useEffect = !!(shadow || innerShadow || blur || backgroundBlur || filter);
7245
7323
  }
7324
+ const half = data.__hasHalf;
7325
+ w.half !== half && (w.half = half);
7246
7326
  data.__checkSingle();
7247
7327
  const complex = data.__isFills || data.__isStrokes || data.cornerRadius || data.__useEffect;
7248
- if (complex) {
7328
+ if (complex)
7249
7329
  data.__complex = true;
7250
- }
7251
- else {
7330
+ else
7252
7331
  data.__complex && (data.__complex = false);
7253
- }
7254
7332
  },
7255
7333
  __drawFast(canvas, options) {
7256
7334
  drawFast(this, canvas, options);
@@ -7337,10 +7415,11 @@ function drawFast(ui, canvas, options) {
7337
7415
 
7338
7416
  const RectRender = {
7339
7417
  __drawFast(canvas, options) {
7340
- let { width, height, fill, stroke, __drawAfterFill } = this.__;
7418
+ let { x, y, width, height } = this.__layout.boxBounds;
7419
+ const { fill, stroke, __drawAfterFill } = this.__;
7341
7420
  if (fill) {
7342
7421
  canvas.fillStyle = fill;
7343
- canvas.fillRect(0, 0, width, height);
7422
+ canvas.fillRect(x, y, width, height);
7344
7423
  }
7345
7424
  if (__drawAfterFill)
7346
7425
  this.__drawAfterFill(canvas, options);
@@ -7359,14 +7438,14 @@ const RectRender = {
7359
7438
  if (width < 0 || height < 0) {
7360
7439
  canvas.save();
7361
7440
  this.__clip(canvas, options);
7362
- canvas.strokeRect(half, half, width, height);
7441
+ canvas.strokeRect(x + half, y + half, width, height);
7363
7442
  canvas.restore();
7364
7443
  }
7365
7444
  else
7366
- canvas.strokeRect(half, half, width, height);
7445
+ canvas.strokeRect(x + half, y + half, width, height);
7367
7446
  break;
7368
7447
  case 'outside':
7369
- canvas.strokeRect(-half, -half, width + __strokeWidth, height + __strokeWidth);
7448
+ canvas.strokeRect(x - half, y - half, width + __strokeWidth, height + __strokeWidth);
7370
7449
  break;
7371
7450
  }
7372
7451
  }
@@ -7522,6 +7601,12 @@ __decorate([
7522
7601
  __decorate([
7523
7602
  surfaceType(false)
7524
7603
  ], UI.prototype, "locked", void 0);
7604
+ __decorate([
7605
+ surfaceType(false)
7606
+ ], UI.prototype, "dim", void 0);
7607
+ __decorate([
7608
+ surfaceType(false)
7609
+ ], UI.prototype, "dimskip", void 0);
7525
7610
  __decorate([
7526
7611
  sortType(0)
7527
7612
  ], UI.prototype, "zIndex", void 0);
@@ -7783,7 +7868,7 @@ let Leafer = Leafer_1 = class Leafer extends Group {
7783
7868
  start: true,
7784
7869
  hittable: true,
7785
7870
  smooth: true,
7786
- lazySpeard: 100
7871
+ lazySpeard: 100,
7787
7872
  };
7788
7873
  this.leafs = 0;
7789
7874
  this.__eventIds = [];
@@ -8207,13 +8292,13 @@ let Box = class Box extends Group {
8207
8292
  super.__updateRenderBounds();
8208
8293
  copy$3(childrenRenderBounds, renderBounds);
8209
8294
  this.__updateRectRenderBounds();
8210
- isOverflow = !includes$1(renderBounds, childrenRenderBounds);
8295
+ isOverflow = !includes$1(renderBounds, childrenRenderBounds) || undefined;
8211
8296
  if (isOverflow && this.__.overflow !== 'hide')
8212
8297
  add(renderBounds, childrenRenderBounds);
8213
8298
  }
8214
8299
  else
8215
8300
  this.__updateRectRenderBounds();
8216
- !this.isOverflow !== !isOverflow && (this.isOverflow = isOverflow);
8301
+ this.isOverflow !== isOverflow && (this.isOverflow = isOverflow);
8217
8302
  }
8218
8303
  __updateRectRenderBounds() { }
8219
8304
  __updateRectChange() { }
@@ -8621,33 +8706,13 @@ Canvas = __decorate([
8621
8706
  registerUI()
8622
8707
  ], Canvas);
8623
8708
 
8624
- const { copyAndSpread, includes, isSame: isSame$1, spread, setList } = BoundsHelper;
8709
+ const { copyAndSpread, includes, spread, setList } = BoundsHelper;
8625
8710
  let Text = class Text extends UI {
8626
8711
  get __tag() { return 'Text'; }
8627
- get textDrawData() {
8628
- this.__layout.update();
8629
- return this.__.__textDrawData;
8630
- }
8712
+ get textDrawData() { this.updateLayout(); return this.__.__textDrawData; }
8631
8713
  constructor(data) {
8632
8714
  super(data);
8633
8715
  }
8634
- __drawHitPath(canvas) {
8635
- const { __lineHeight, fontSize, __baseLine, __textDrawData: data } = this.__;
8636
- canvas.beginPath();
8637
- if (this.__.__letterSpacing < 0) {
8638
- this.__drawPathByData(canvas);
8639
- }
8640
- else {
8641
- data.rows.forEach(row => canvas.rect(row.x, row.y - __baseLine, row.width, __lineHeight < fontSize ? fontSize : __lineHeight));
8642
- }
8643
- }
8644
- __drawPathByData(drawer, _data) {
8645
- const { x, y, width, height } = this.__layout.boxBounds;
8646
- drawer.rect(x, y, width, height);
8647
- }
8648
- __drawRenderPath(canvas) {
8649
- canvas.font = this.__.__font;
8650
- }
8651
8716
  __updateTextDrawData() {
8652
8717
  const data = this.__;
8653
8718
  const { lineHeight, letterSpacing, fontFamily, fontSize, fontWeight, italic, textCase, textOverflow, padding } = data;
@@ -8664,15 +8729,16 @@ let Text = class Text extends UI {
8664
8729
  const layout = this.__layout;
8665
8730
  const { fontSize, italic, padding, __autoWidth: autoWidth, __autoHeight: autoHeight } = data;
8666
8731
  this.__updateTextDrawData();
8667
- const { bounds } = data.__textDrawData;
8732
+ const { bounds: contentBounds } = data.__textDrawData;
8668
8733
  const b = layout.boxBounds;
8734
+ layout.contentBounds = contentBounds;
8669
8735
  if (data.__lineHeight < fontSize)
8670
- spread(bounds, fontSize / 2);
8736
+ spread(contentBounds, fontSize / 2);
8671
8737
  if (autoWidth || autoHeight) {
8672
- b.x = autoWidth ? bounds.x : 0;
8673
- b.y = autoHeight ? bounds.y : 0;
8674
- b.width = autoWidth ? bounds.width : data.width;
8675
- b.height = autoHeight ? bounds.height : data.height;
8738
+ b.x = autoWidth ? contentBounds.x : 0;
8739
+ b.y = autoHeight ? contentBounds.y : 0;
8740
+ b.width = autoWidth ? contentBounds.width : data.width;
8741
+ b.height = autoHeight ? contentBounds.height : data.height;
8676
8742
  if (padding) {
8677
8743
  const [top, right, bottom, left] = data.__padding;
8678
8744
  if (autoWidth)
@@ -8686,23 +8752,45 @@ let Text = class Text extends UI {
8686
8752
  super.__updateBoxBounds();
8687
8753
  if (italic)
8688
8754
  b.width += fontSize * 0.16;
8689
- const contentBounds = includes(b, bounds) ? b : bounds;
8690
- if (!isSame$1(contentBounds, layout.contentBounds)) {
8691
- layout.contentBounds = contentBounds;
8692
- layout.renderChanged = true;
8693
- setList(data.__textBoxBounds = {}, [b, bounds]);
8694
- }
8755
+ const isOverflow = !includes(b, contentBounds) || undefined;
8756
+ if (isOverflow)
8757
+ setList(data.__textBoxBounds = {}, [b, contentBounds]), layout.renderChanged = true;
8695
8758
  else
8696
- data.__textBoxBounds = contentBounds;
8759
+ data.__textBoxBounds = b;
8760
+ this.isOverflow !== isOverflow && (this.isOverflow = isOverflow);
8761
+ }
8762
+ __onUpdateSize() {
8763
+ if (this.__box)
8764
+ this.__box.__onUpdateSize();
8765
+ super.__onUpdateSize();
8697
8766
  }
8698
8767
  __updateRenderSpread() {
8699
8768
  let width = super.__updateRenderSpread();
8700
8769
  if (!width)
8701
- width = this.__layout.boxBounds === this.__layout.contentBounds ? 0 : 1;
8770
+ width = this.isOverflow ? 1 : 0;
8702
8771
  return width;
8703
8772
  }
8704
8773
  __updateRenderBounds() {
8705
- copyAndSpread(this.__layout.renderBounds, this.__.__textBoxBounds, this.__layout.renderSpread);
8774
+ const { renderBounds, renderSpread } = this.__layout;
8775
+ copyAndSpread(renderBounds, this.__.__textBoxBounds, renderSpread);
8776
+ if (this.__box)
8777
+ this.__box.__layout.renderBounds = renderBounds;
8778
+ }
8779
+ __drawRenderPath(canvas) {
8780
+ canvas.font = this.__.__font;
8781
+ }
8782
+ __draw(canvas, options, originCanvas) {
8783
+ const box = this.__box;
8784
+ if (box)
8785
+ box.__nowWorld = this.__nowWorld, box.__draw(canvas, options, originCanvas);
8786
+ if (this.textEditing && !Export.running)
8787
+ return;
8788
+ super.__draw(canvas, options, originCanvas);
8789
+ }
8790
+ destroy() {
8791
+ if (this.boxStyle)
8792
+ this.boxStyle = null;
8793
+ super.destroy();
8706
8794
  }
8707
8795
  };
8708
8796
  __decorate([
@@ -8714,6 +8802,9 @@ __decorate([
8714
8802
  __decorate([
8715
8803
  boundsType(0)
8716
8804
  ], Text.prototype, "height", void 0);
8805
+ __decorate([
8806
+ surfaceType()
8807
+ ], Text.prototype, "boxStyle", void 0);
8717
8808
  __decorate([
8718
8809
  dataType(false)
8719
8810
  ], Text.prototype, "resizeFontSize", void 0);
@@ -8877,26 +8968,25 @@ let App = class App extends Leafer {
8877
8968
  this.leafer = this;
8878
8969
  this.watcher.disable();
8879
8970
  this.layouter.disable();
8880
- this.__eventIds.push(this.on_(PropertyEvent.CHANGE, this.__onPropertyChange, this));
8881
8971
  }
8882
8972
  start() {
8883
8973
  super.start();
8884
- this.children.forEach(leafer => leafer.start());
8974
+ this.forEach(leafer => leafer.start());
8885
8975
  }
8886
8976
  stop() {
8887
- this.children.forEach(leafer => leafer.stop());
8977
+ this.forEach(leafer => leafer.stop());
8888
8978
  super.stop();
8889
8979
  }
8890
8980
  unlockLayout() {
8891
8981
  super.unlockLayout();
8892
- this.children.forEach(leafer => leafer.unlockLayout());
8982
+ this.forEach(leafer => leafer.unlockLayout());
8893
8983
  }
8894
8984
  lockLayout() {
8895
8985
  super.lockLayout();
8896
- this.children.forEach(leafer => leafer.lockLayout());
8986
+ this.forEach(leafer => leafer.lockLayout());
8897
8987
  }
8898
8988
  forceRender(bounds, sync) {
8899
- this.children.forEach(leafer => leafer.forceRender(bounds, sync));
8989
+ this.forEach(leafer => leafer.forceRender(bounds, sync));
8900
8990
  }
8901
8991
  addLeafer(merge) {
8902
8992
  const leafer = new Leafer(merge);
@@ -8916,9 +9006,8 @@ let App = class App extends Leafer {
8916
9006
  leafer.canvas.childIndex = index;
8917
9007
  this.__listenChildEvents(leafer);
8918
9008
  }
8919
- __onPropertyChange() {
8920
- if (Debug.showHitView)
8921
- this.children.forEach(leafer => leafer.forceUpdate('surface'));
9009
+ forEach(fn) {
9010
+ this.children.forEach(fn);
8922
9011
  }
8923
9012
  __onCreated() {
8924
9013
  this.created = this.children.every(child => child.created);
@@ -8941,18 +9030,18 @@ let App = class App extends Leafer {
8941
9030
  const m = options.matrix;
8942
9031
  if (m)
8943
9032
  canvas.setTransform(m.a, m.b, m.c, m.d, m.e, m.f);
8944
- this.children.forEach(leafer => canvas.copyWorld(leafer.canvas));
9033
+ this.forEach(leafer => canvas.copyWorld(leafer.canvas));
8945
9034
  }
8946
9035
  }
8947
9036
  __onResize(event) {
8948
- this.children.forEach(leafer => leafer.resize(event));
9037
+ this.forEach(leafer => leafer.resize(event));
8949
9038
  super.__onResize(event);
8950
9039
  }
8951
9040
  updateLayout() {
8952
- this.children.forEach(leafer => leafer.updateLayout());
9041
+ this.forEach(leafer => leafer.updateLayout());
8953
9042
  }
8954
9043
  __getChildConfig(userConfig) {
8955
- let config = Object.assign({}, this.config);
9044
+ const config = Object.assign({}, this.config);
8956
9045
  config.hittable = config.realCanvas = undefined;
8957
9046
  if (userConfig)
8958
9047
  DataHelper.assign(config, userConfig);
@@ -9511,6 +9600,7 @@ const config = {
9511
9600
  delta: { x: 80 / 4, y: 8.0 },
9512
9601
  },
9513
9602
  pointer: {
9603
+ snap: true,
9514
9604
  hitRadius: 5,
9515
9605
  tapTime: 120,
9516
9606
  longPressTime: 800,
@@ -9605,8 +9695,7 @@ class InteractionBase {
9605
9695
  if (this.downData) {
9606
9696
  const canDrag = PointHelper.getDistance(this.downData, data) > this.p.dragDistance;
9607
9697
  if (canDrag) {
9608
- if (this.waitTap)
9609
- this.pointerWaitCancel();
9698
+ this.pointerWaitCancel();
9610
9699
  this.waitRightTap = false;
9611
9700
  }
9612
9701
  this.dragger.checkDrag(data, canDrag);
@@ -9866,7 +9955,10 @@ class InteractionBase {
9866
9955
  }
9867
9956
  getLocal(clientPoint, updateClient) {
9868
9957
  const clientBounds = this.canvas.getClientBounds(updateClient);
9869
- return { x: clientPoint.clientX - clientBounds.x, y: clientPoint.clientY - clientBounds.y };
9958
+ const point = { x: clientPoint.clientX - clientBounds.x, y: clientPoint.clientY - clientBounds.y };
9959
+ if (this.p.snap)
9960
+ PointHelper.round(point);
9961
+ return point;
9870
9962
  }
9871
9963
  emitTap(data) {
9872
9964
  this.emit(PointerEvent.TAP, data);
@@ -9885,9 +9977,11 @@ class InteractionBase {
9885
9977
  this.waitTap = true;
9886
9978
  }
9887
9979
  tapWaitCancel() {
9888
- clearTimeout(this.tapTimer);
9889
- this.waitTap = false;
9890
- this.tapCount = 0;
9980
+ if (this.waitTap) {
9981
+ clearTimeout(this.tapTimer);
9982
+ this.waitTap = false;
9983
+ this.tapCount = 0;
9984
+ }
9891
9985
  }
9892
9986
  longPressWait(data) {
9893
9987
  clearTimeout(this.longPressTimer);
@@ -9907,8 +10001,10 @@ class InteractionBase {
9907
10001
  return hasLong;
9908
10002
  }
9909
10003
  longPressWaitCancel() {
9910
- clearTimeout(this.longPressTimer);
9911
- this.longPressed = false;
10004
+ if (this.longPressTimer) {
10005
+ clearTimeout(this.longPressTimer);
10006
+ this.longPressed = false;
10007
+ }
9912
10008
  }
9913
10009
  __onResize() {
9914
10010
  const { dragOut } = this.m;
@@ -9998,25 +10094,26 @@ const { toInnerRadiusPointOf, copy: copy$2, setRadius } = PointHelper;
9998
10094
  const inner = {};
9999
10095
  const leaf = Leaf.prototype;
10000
10096
  leaf.__hitWorld = function (point) {
10001
- if (!this.__.hitSelf)
10097
+ const data = this.__;
10098
+ if (!data.hitSelf)
10002
10099
  return false;
10003
- if (this.__.hitRadius) {
10100
+ const world = this.__world, layout = this.__layout;
10101
+ const isSmall = world.width < 10 && world.height < 10;
10102
+ if (data.hitRadius) {
10004
10103
  copy$2(inner, point), point = inner;
10005
- setRadius(point, this.__.hitRadius);
10104
+ setRadius(point, data.hitRadius);
10006
10105
  }
10007
- toInnerRadiusPointOf(point, this.__world, inner);
10008
- const { width, height } = this.__world;
10009
- const isSmall = width < 10 && height < 10;
10010
- if (this.__.hitBox || isSmall) {
10011
- if (BoundsHelper.hitRadiusPoint(this.__layout.boxBounds, inner))
10106
+ toInnerRadiusPointOf(point, world, inner);
10107
+ if (data.hitBox || isSmall) {
10108
+ if (BoundsHelper.hitRadiusPoint(layout.boxBounds, inner))
10012
10109
  return true;
10013
10110
  if (isSmall)
10014
10111
  return false;
10015
10112
  }
10016
- if (this.__layout.hitCanvasChanged || !this.__hitCanvas) {
10113
+ if (layout.hitCanvasChanged || !this.__hitCanvas) {
10017
10114
  this.__updateHitCanvas();
10018
- if (!this.__layout.boundsChanged)
10019
- this.__layout.hitCanvasChanged = false;
10115
+ if (!layout.boundsChanged)
10116
+ layout.hitCanvasChanged = false;
10020
10117
  }
10021
10118
  return this.__hit(inner);
10022
10119
  };
@@ -10029,7 +10126,9 @@ leaf.__drawHitPath = function (canvas) { if (canvas)
10029
10126
  const matrix = new Matrix();
10030
10127
  const ui$1 = UI.prototype;
10031
10128
  ui$1.__updateHitCanvas = function () {
10032
- const data = this.__, { hitCanvasManager } = this.leafer;
10129
+ if (this.__box)
10130
+ this.__box.__updateHitCanvas();
10131
+ const data = this.__, { hitCanvasManager } = this.leafer || this.parent.leafer;
10033
10132
  const isHitPixelFill = (data.__pixelFill || data.__isCanvas) && data.hitFill === 'pixel';
10034
10133
  const isHitPixelStroke = data.__pixelStroke && data.hitStroke === 'pixel';
10035
10134
  const isHitPixel = isHitPixelFill || isHitPixelStroke;
@@ -10056,6 +10155,8 @@ ui$1.__updateHitCanvas = function () {
10056
10155
  h.setStrokeOptions(data);
10057
10156
  };
10058
10157
  ui$1.__hit = function (inner) {
10158
+ if (this.__box && this.__box.__hit(inner))
10159
+ return true;
10059
10160
  const data = this.__;
10060
10161
  if (data.__isHitPixel && this.__hitPixel(inner))
10061
10162
  return true;
@@ -10104,6 +10205,15 @@ rect.__hitFill = box$1.__hitFill = function (inner) {
10104
10205
  return this.__hitCanvas ? ui.__hitFill.call(this, inner) : BoundsHelper.hitRadiusPoint(this.__layout.boxBounds, inner);
10105
10206
  };
10106
10207
 
10208
+ Text.prototype.__drawHitPath = function (canvas) {
10209
+ const { __lineHeight, fontSize, __baseLine, __letterSpacing, __textDrawData: data } = this.__;
10210
+ canvas.beginPath();
10211
+ if (__letterSpacing < 0)
10212
+ this.__drawPathByBox(canvas);
10213
+ else
10214
+ data.rows.forEach(row => canvas.rect(row.x, row.y - __baseLine, row.width, __lineHeight < fontSize ? fontSize : __lineHeight));
10215
+ };
10216
+
10107
10217
  function getSelector(ui) {
10108
10218
  return ui.leafer ? ui.leafer.selector : (Platform.selector || (Platform.selector = Creator.selector()));
10109
10219
  }
@@ -10486,9 +10596,11 @@ const tempBox = new Bounds();
10486
10596
  const tempPoint = {};
10487
10597
  const tempScaleData = {};
10488
10598
  function createData(leafPaint, image, paint, box) {
10489
- const { blendMode, sync } = paint;
10599
+ const { blendMode, changeful, sync } = paint;
10490
10600
  if (blendMode)
10491
10601
  leafPaint.blendMode = blendMode;
10602
+ if (changeful)
10603
+ leafPaint.changeful = changeful;
10492
10604
  if (sync)
10493
10605
  leafPaint.sync = sync;
10494
10606
  leafPaint.data = getPatternData(paint, box, image);
@@ -10721,40 +10833,32 @@ function createPattern(ui, paint, pixelRatio) {
10721
10833
  }
10722
10834
 
10723
10835
  const { abs } = Math;
10724
- function checkImage(ui, canvas, paint, allowPaint) {
10836
+ function checkImage(ui, canvas, paint, allowDraw) {
10725
10837
  const { scaleX, scaleY } = ImageManager.patternLocked ? ui.__world : ui.__nowWorld;
10726
- const { pixelRatio } = canvas;
10727
- if (!paint.data || (paint.patternId === scaleX + '-' + scaleY + '-' + pixelRatio && !Export.running)) {
10838
+ const { pixelRatio } = canvas, { data } = paint;
10839
+ if (!data || (paint.patternId === scaleX + '-' + scaleY + '-' + pixelRatio && !Export.running)) {
10728
10840
  return false;
10729
10841
  }
10730
10842
  else {
10731
- const { data } = paint;
10732
- if (allowPaint) {
10733
- if (!data.repeat) {
10734
- let { width, height } = data;
10735
- width *= abs(scaleX) * pixelRatio;
10736
- height *= abs(scaleY) * pixelRatio;
10737
- if (data.scaleX) {
10738
- width *= data.scaleX;
10739
- height *= data.scaleY;
10740
- }
10741
- allowPaint = (width * height > Platform.image.maxCacheSize) || Export.running;
10843
+ if (allowDraw) {
10844
+ if (data.repeat) {
10845
+ allowDraw = false;
10742
10846
  }
10743
10847
  else {
10744
- allowPaint = false;
10848
+ if (!(paint.changeful || ResizeEvent.isResizing(ui) || Export.running)) {
10849
+ let { width, height } = data;
10850
+ width *= abs(scaleX) * pixelRatio;
10851
+ height *= abs(scaleY) * pixelRatio;
10852
+ if (data.scaleX) {
10853
+ width *= data.scaleX;
10854
+ height *= data.scaleY;
10855
+ }
10856
+ allowDraw = (width * height > Platform.image.maxCacheSize);
10857
+ }
10745
10858
  }
10746
10859
  }
10747
- if (allowPaint) {
10748
- canvas.save();
10749
- ui.windingRule ? canvas.clip(ui.windingRule) : canvas.clip();
10750
- if (paint.blendMode)
10751
- canvas.blendMode = paint.blendMode;
10752
- if (data.opacity)
10753
- canvas.opacity *= data.opacity;
10754
- if (data.transform)
10755
- canvas.transform(data.transform);
10756
- canvas.drawImage(paint.image.getFull(data.filters), 0, 0, data.width, data.height);
10757
- canvas.restore();
10860
+ if (allowDraw) {
10861
+ drawImage(ui, canvas, paint, data);
10758
10862
  return true;
10759
10863
  }
10760
10864
  else {
@@ -10775,13 +10879,26 @@ function checkImage(ui, canvas, paint, allowPaint) {
10775
10879
  }
10776
10880
  }
10777
10881
  }
10882
+ function drawImage(ui, canvas, paint, data) {
10883
+ canvas.save();
10884
+ ui.windingRule ? canvas.clip(ui.windingRule) : canvas.clip();
10885
+ if (paint.blendMode)
10886
+ canvas.blendMode = paint.blendMode;
10887
+ if (data.opacity)
10888
+ canvas.opacity *= data.opacity;
10889
+ if (data.transform)
10890
+ canvas.transform(data.transform);
10891
+ canvas.drawImage(paint.image.getFull(data.filters), 0, 0, data.width, data.height);
10892
+ canvas.restore();
10893
+ }
10778
10894
 
10779
10895
  function recycleImage(attrName, data) {
10780
10896
  const paints = data['_' + attrName];
10781
10897
  if (paints instanceof Array) {
10782
- let image, recycleMap, input, url;
10898
+ let paint, image, recycleMap, input, url;
10783
10899
  for (let i = 0, len = paints.length; i < len; i++) {
10784
- image = paints[i].image;
10900
+ paint = paints[i];
10901
+ image = paint.image;
10785
10902
  url = image && image.url;
10786
10903
  if (url) {
10787
10904
  if (!recycleMap)
@@ -10796,8 +10913,6 @@ function recycleImage(attrName, data) {
10796
10913
  }
10797
10914
  image.unload(paints[i].loadId, !input.some((item) => item.url === url));
10798
10915
  }
10799
- else
10800
- paints[i].style = null;
10801
10916
  }
10802
10917
  }
10803
10918
  return recycleMap;
@@ -10976,7 +11091,7 @@ const { toOffsetOutBounds } = BoundsHelper;
10976
11091
  const offsetOutBounds = {};
10977
11092
  function innerShadow(ui, current, shape) {
10978
11093
  let copyBounds, spreadScale;
10979
- const { __nowWorld: nowWorld, __layout: __layout } = ui;
11094
+ const { __nowWorld: nowWorld, __layout } = ui;
10980
11095
  const { innerShadow } = ui.__;
10981
11096
  const { worldCanvas, bounds, shapeBounds, scaleX, scaleY } = shape;
10982
11097
  const other = current.getSameCanvas();