@leafer-ui/node 1.9.7 → 1.9.9

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/dist/node.esm.js CHANGED
@@ -1,4 +1,4 @@
1
- import { LeaferCanvasBase, Platform, canvasPatch, FileHelper, Creator, LeaferImage, defineKey, LeafList, DataHelper, RenderEvent, ChildEvent, WatchEvent, PropertyEvent, LeafHelper, BranchHelper, LeafBoundsHelper, Bounds, isArray, Debug, LeafLevelList, LayoutEvent, Run, ImageManager, ResizeEvent, BoundsHelper, Plugin, isObject, Matrix, isUndefined, isString, getMatrixData, MatrixHelper, MathHelper, AlignHelper, PointHelper, ImageEvent, AroundHelper, Direction4, isNumber } from "@leafer/core";
1
+ import { LeaferCanvasBase, Platform, canvasPatch, FileHelper, Creator, LeaferImage, defineKey, LeafList, DataHelper, RenderEvent, ChildEvent, WatchEvent, PropertyEvent, LeafHelper, BranchHelper, LeafBoundsHelper, Bounds, isArray, Debug, LeafLevelList, LayoutEvent, Run, ImageManager, ResizeEvent, BoundsHelper, Plugin, isObject, FourNumberHelper, Matrix, isUndefined, isString, getMatrixData, MatrixHelper, MathHelper, AlignHelper, PointHelper, ImageEvent, AroundHelper, Direction4, isNumber } from "@leafer/core";
2
2
 
3
3
  export * from "@leafer/core";
4
4
 
@@ -458,6 +458,7 @@ class Renderer {
458
458
  usePartRender: true,
459
459
  maxFPS: 120
460
460
  };
461
+ this.frames = [];
461
462
  this.target = target;
462
463
  this.canvas = canvas;
463
464
  if (userConfig) this.config = DataHelper.default(userConfig, this.config);
@@ -610,12 +611,15 @@ class Renderer {
610
611
  const target = this.target;
611
612
  if (this.requestTime || !target) return;
612
613
  if (target.parentApp) return target.parentApp.requestRender(false);
613
- const requestTime = this.requestTime = Date.now();
614
+ this.requestTime = this.frameTime || Date.now();
614
615
  const render = () => {
615
- const nowFPS = 1e3 / (Date.now() - requestTime);
616
+ const nowFPS = 1e3 / ((this.frameTime = Date.now()) - this.requestTime);
616
617
  const {maxFPS: maxFPS} = this.config;
617
- if (maxFPS && nowFPS > maxFPS - .5) return Platform.requestRender(render);
618
- this.FPS = Math.min(120, Math.ceil(nowFPS));
618
+ if (maxFPS && nowFPS > maxFPS) return Platform.requestRender(render);
619
+ const {frames: frames} = this;
620
+ if (frames.length > 30) frames.shift();
621
+ frames.push(nowFPS);
622
+ this.FPS = Math.round(frames.reduce((a, b) => a + b, 0) / frames.length);
619
623
  this.requestTime = 0;
620
624
  this.checkRender();
621
625
  };
@@ -1065,24 +1069,29 @@ function drawOutside(stroke, ui, canvas) {
1065
1069
  }
1066
1070
  }
1067
1071
 
1068
- const {getSpread: getSpread, getOuterOf: getOuterOf, getByMove: getByMove, getIntersectData: getIntersectData} = BoundsHelper;
1072
+ const {getSpread: getSpread, copyAndSpread: copyAndSpread, toOuterOf: toOuterOf, getOuterOf: getOuterOf, getByMove: getByMove, move: move$1, getIntersectData: getIntersectData} = BoundsHelper;
1073
+
1074
+ const tempBounds$1 = {};
1069
1075
 
1070
1076
  function shape(ui, current, options) {
1071
1077
  const canvas = current.getSameCanvas();
1072
- const nowWorld = ui.__nowWorld, currentBounds = current.bounds;
1073
- let bounds, matrix, fitMatrix, shapeBounds, worldCanvas;
1078
+ const currentBounds = current.bounds, nowWorld = ui.__nowWorld, layout = ui.__layout;
1079
+ const nowWorldShapeBounds = ui.__nowWorldShapeBounds || (ui.__nowWorldShapeBounds = {});
1080
+ toOuterOf(layout.strokeSpread ? (copyAndSpread(tempBounds$1, layout.boxBounds, layout.strokeSpread),
1081
+ tempBounds$1) : layout.boxBounds, nowWorld, nowWorldShapeBounds);
1082
+ let bounds, renderBounds, matrix, fitMatrix, shapeBounds, worldCanvas;
1074
1083
  let {scaleX: scaleX, scaleY: scaleY} = ui.getRenderScaleData(true);
1075
- if (currentBounds.includes(nowWorld)) {
1084
+ if (currentBounds.includes(nowWorldShapeBounds)) {
1076
1085
  worldCanvas = canvas;
1077
- bounds = shapeBounds = nowWorld;
1086
+ bounds = shapeBounds = nowWorldShapeBounds;
1087
+ renderBounds = nowWorld;
1078
1088
  } else {
1079
- const {renderShapeSpread: spread} = ui.__layout;
1080
1089
  let worldClipBounds;
1081
1090
  if (Platform.fullImageShadow) {
1082
- worldClipBounds = nowWorld;
1091
+ worldClipBounds = nowWorldShapeBounds;
1083
1092
  } else {
1084
- const spreadBounds = spread ? getSpread(currentBounds, scaleX === scaleY ? spread * scaleX : [ spread * scaleY, spread * scaleX ]) : currentBounds;
1085
- worldClipBounds = getIntersectData(spreadBounds, nowWorld);
1093
+ const spreadBounds = layout.renderShapeSpread ? getSpread(currentBounds, FourNumberHelper.swapAndScale(layout.renderShapeSpread, scaleX, scaleY)) : currentBounds;
1094
+ worldClipBounds = getIntersectData(spreadBounds, nowWorldShapeBounds);
1086
1095
  }
1087
1096
  fitMatrix = currentBounds.getFitMatrix(worldClipBounds);
1088
1097
  let {a: fitScaleX, d: fitScaleY} = fitMatrix;
@@ -1092,8 +1101,10 @@ function shape(ui, current, options) {
1092
1101
  scaleX *= fitScaleX;
1093
1102
  scaleY *= fitScaleY;
1094
1103
  }
1095
- shapeBounds = getOuterOf(nowWorld, fitMatrix);
1104
+ shapeBounds = getOuterOf(nowWorldShapeBounds, fitMatrix);
1096
1105
  bounds = getByMove(shapeBounds, -fitMatrix.e, -fitMatrix.f);
1106
+ renderBounds = getOuterOf(nowWorld, fitMatrix);
1107
+ move$1(renderBounds, -fitMatrix.e, -fitMatrix.f);
1097
1108
  const userMatrix = options.matrix;
1098
1109
  if (userMatrix) {
1099
1110
  matrix = new Matrix(fitMatrix);
@@ -1112,6 +1123,7 @@ function shape(ui, current, options) {
1112
1123
  matrix: matrix,
1113
1124
  fitMatrix: fitMatrix,
1114
1125
  bounds: bounds,
1126
+ renderBounds: renderBounds,
1115
1127
  worldCanvas: worldCanvas,
1116
1128
  shapeBounds: shapeBounds,
1117
1129
  scaleX: scaleX,
@@ -1215,7 +1227,7 @@ const PaintModule = {
1215
1227
  shape: shape
1216
1228
  };
1217
1229
 
1218
- let origin = {}, tempMatrix = getMatrixData();
1230
+ let origin = {}, tempMatrix$1 = getMatrixData();
1219
1231
 
1220
1232
  const {get: get$3, rotateOfOuter: rotateOfOuter$1, translate: translate$1, scaleOfOuter: scaleOfOuter$1, multiplyParent: multiplyParent, scale: scaleHelper, rotate: rotate, skew: skewHelper} = MatrixHelper;
1221
1233
 
@@ -1230,12 +1242,12 @@ function fillOrFitMode(data, box, x, y, scaleX, scaleY, rotation) {
1230
1242
  data.transform = transform;
1231
1243
  }
1232
1244
 
1233
- function clipMode(data, box, x, y, scaleX, scaleY, rotation, skew, clipSize) {
1245
+ function clipMode(data, box, x, y, scaleX, scaleY, rotation, skew, clipScaleX, clipScaleY) {
1234
1246
  const transform = get$3();
1235
1247
  layout(transform, box, x, y, scaleX, scaleY, rotation, skew);
1236
- if (clipSize) {
1237
- tempMatrix.a = box.width / clipSize.width, tempMatrix.d = box.height / clipSize.height;
1238
- multiplyParent(transform, tempMatrix);
1248
+ if (clipScaleX) {
1249
+ tempMatrix$1.a = clipScaleX, tempMatrix$1.d = clipScaleY;
1250
+ multiplyParent(transform, tempMatrix$1);
1239
1251
  }
1240
1252
  data.transform = transform;
1241
1253
  }
@@ -1336,7 +1348,12 @@ function getPatternData(paint, box, image) {
1336
1348
 
1337
1349
  case "normal":
1338
1350
  case "clip":
1339
- if (tempImage.x || tempImage.y || scaleX || clipSize || rotation || skew) clipMode(data, box, tempImage.x, tempImage.y, scaleX, scaleY, rotation, skew, paint.clipSize);
1351
+ if (tempImage.x || tempImage.y || scaleX || clipSize || rotation || skew) {
1352
+ let clipScaleX, clipScaleY;
1353
+ if (clipSize) clipScaleX = box.width / clipSize.width, clipScaleY = box.height / clipSize.height;
1354
+ clipMode(data, box, tempImage.x, tempImage.y, scaleX, scaleY, rotation, skew, clipScaleX, clipScaleY);
1355
+ if (clipScaleX) scaleX = scaleX ? scaleX * clipScaleX : scaleX, scaleY = scaleY ? scaleY * clipScaleY : clipScaleY;
1356
+ }
1340
1357
  break;
1341
1358
 
1342
1359
  case "repeat":
@@ -1494,7 +1511,7 @@ function ignoreRender(ui, value) {
1494
1511
 
1495
1512
  const {get: get$1, scale: scale, copy: copy$1} = MatrixHelper;
1496
1513
 
1497
- const {floor: floor, ceil: ceil, max: max, abs: abs} = Math;
1514
+ const {floor: floor, ceil: ceil, max: max$1, abs: abs} = Math;
1498
1515
 
1499
1516
  function createPattern(ui, paint, pixelRatio) {
1500
1517
  let {scaleX: scaleX, scaleY: scaleY} = ui.getRenderScaleData(true, paint.scaleFixed);
@@ -1543,8 +1560,8 @@ function createPattern(ui, paint, pixelRatio) {
1543
1560
  if (transform || scaleX !== 1 || scaleY !== 1) {
1544
1561
  const canvasWidth = width + (xGap || 0);
1545
1562
  const canvasHeight = height + (yGap || 0);
1546
- scaleX /= canvasWidth / max(floor(canvasWidth), 1);
1547
- scaleY /= canvasHeight / max(floor(canvasHeight), 1);
1563
+ scaleX /= canvasWidth / max$1(floor(canvasWidth), 1);
1564
+ scaleY /= canvasHeight / max$1(floor(canvasHeight), 1);
1548
1565
  if (!imageMatrix) {
1549
1566
  imageMatrix = get$1();
1550
1567
  if (transform) copy$1(imageMatrix, transform);
@@ -1570,17 +1587,15 @@ function checkImage(ui, canvas, paint, allowDraw) {
1570
1587
  if (allowDraw) {
1571
1588
  if (data.repeat) {
1572
1589
  allowDraw = false;
1573
- } else {
1574
- if (!(paint.changeful || Platform.name === "miniapp" && ResizeEvent.isResizing(ui) || Export.running)) {
1575
- let {width: width, height: height} = data;
1576
- width *= scaleX * pixelRatio;
1577
- height *= scaleY * pixelRatio;
1578
- if (data.scaleX) {
1579
- width *= data.scaleX;
1580
- height *= data.scaleY;
1581
- }
1582
- allowDraw = width * height > Platform.image.maxCacheSize;
1590
+ } else if (!(paint.changeful || Platform.name === "miniapp" && ResizeEvent.isResizing(ui) || Export.running)) {
1591
+ let {width: width, height: height} = data;
1592
+ width *= scaleX * pixelRatio;
1593
+ height *= scaleY * pixelRatio;
1594
+ if (data.scaleX) {
1595
+ width *= data.scaleX;
1596
+ height *= data.scaleY;
1583
1597
  }
1598
+ allowDraw = width * height > Platform.image.maxCacheSize;
1584
1599
  }
1585
1600
  }
1586
1601
  if (allowDraw) {
@@ -1760,75 +1775,82 @@ const PaintGradientModule = {
1760
1775
  getTransform: getTransform
1761
1776
  };
1762
1777
 
1763
- const {copy: copy, toOffsetOutBounds: toOffsetOutBounds$1} = BoundsHelper;
1778
+ const {copy: copy, move: move, toOffsetOutBounds: toOffsetOutBounds$1} = BoundsHelper, {max: max} = Math;
1764
1779
 
1765
- const tempBounds = {};
1780
+ const tempBounds = {}, tempMatrix = new Matrix;
1766
1781
 
1767
1782
  const offsetOutBounds$1 = {};
1768
1783
 
1769
1784
  function shadow(ui, current, shape) {
1770
- let copyBounds, spreadScale;
1771
- const {__nowWorld: nowWorld, __layout: __layout} = ui;
1785
+ let copyBounds, transform;
1786
+ const {__nowWorld: nowWorld} = ui;
1772
1787
  const {shadow: shadow} = ui.__;
1773
- const {worldCanvas: worldCanvas, bounds: bounds, shapeBounds: shapeBounds, scaleX: scaleX, scaleY: scaleY} = shape;
1788
+ const {worldCanvas: worldCanvas, bounds: bounds, renderBounds: renderBounds, shapeBounds: shapeBounds, scaleX: scaleX, scaleY: scaleY} = shape;
1774
1789
  const other = current.getSameCanvas();
1775
1790
  const end = shadow.length - 1;
1776
- toOffsetOutBounds$1(bounds, offsetOutBounds$1);
1791
+ toOffsetOutBounds$1(bounds, offsetOutBounds$1, renderBounds);
1777
1792
  shadow.forEach((item, index) => {
1778
1793
  let otherScale = 1;
1779
1794
  if (item.scaleFixed) {
1780
1795
  const sx = Math.abs(nowWorld.scaleX);
1781
1796
  if (sx > 1) otherScale = 1 / sx;
1782
1797
  }
1783
- other.setWorldShadow(offsetOutBounds$1.offsetX + item.x * scaleX * otherScale, offsetOutBounds$1.offsetY + item.y * scaleY * otherScale, item.blur * scaleX * otherScale, ColorConvert.string(item.color));
1784
- spreadScale = item.spread ? 1 + item.spread * 2 / (__layout.boxBounds.width + (__layout.strokeBoxSpread || 0) * 2) * otherScale : 0;
1785
- drawWorldShadow(other, offsetOutBounds$1, spreadScale, shape);
1786
- copyBounds = bounds;
1798
+ other.setWorldShadow(offsetOutBounds$1.offsetX + (item.x || 0) * scaleX * otherScale, offsetOutBounds$1.offsetY + (item.y || 0) * scaleY * otherScale, (item.blur || 0) * scaleX * otherScale, ColorConvert.string(item.color));
1799
+ transform = Effect.getShadowTransform(ui, other, shape, item, offsetOutBounds$1, otherScale);
1800
+ if (transform) other.setTransform(transform);
1801
+ drawWorldShadow(other, offsetOutBounds$1, shape);
1802
+ if (transform) other.resetTransform();
1803
+ copyBounds = renderBounds;
1787
1804
  if (item.box) {
1788
1805
  other.restore();
1789
1806
  other.save();
1790
1807
  if (worldCanvas) {
1791
- other.copyWorld(other, bounds, nowWorld, "copy");
1808
+ other.copyWorld(other, renderBounds, nowWorld, "copy");
1792
1809
  copyBounds = nowWorld;
1793
1810
  }
1794
1811
  worldCanvas ? other.copyWorld(worldCanvas, nowWorld, nowWorld, "destination-out") : other.copyWorld(shape.canvas, shapeBounds, bounds, "destination-out");
1795
1812
  }
1796
- if (Effect.isTransformShadow(item)) Effect.renderTransformShadow(ui, current, other, copyBounds, item); else LeafHelper.copyCanvasByWorld(ui, current, other, copyBounds, item.blendMode);
1813
+ LeafHelper.copyCanvasByWorld(ui, current, other, copyBounds, item.blendMode);
1797
1814
  if (end && index < end) other.clearWorld(copyBounds);
1798
1815
  });
1799
1816
  other.recycle(copyBounds);
1800
1817
  }
1801
1818
 
1802
- function getShadowSpread(_ui, shadow) {
1803
- let width = 0;
1804
- shadow.forEach(item => width = Math.max(width, Math.max(Math.abs(item.y), Math.abs(item.x)) + (item.spread > 0 ? item.spread : 0) + item.blur * 1.5));
1805
- return width;
1819
+ function getShadowRenderSpread(_ui, shadow) {
1820
+ let top = 0, right = 0, bottom = 0, left = 0, x, y, spread, blur;
1821
+ shadow.forEach(item => {
1822
+ x = item.x || 0, y = item.y || 0, spread = item.spread || 0, blur = (item.blur || 0) * 1.5;
1823
+ top = max(top, spread + blur - y);
1824
+ right = max(right, spread + blur + x);
1825
+ bottom = max(bottom, spread + blur + y);
1826
+ left = max(left, spread + blur - x);
1827
+ });
1828
+ return top === right && right === bottom && bottom === left ? top : [ top, right, bottom, left ];
1806
1829
  }
1807
1830
 
1808
- function drawWorldShadow(canvas, outBounds, spreadScale, shape) {
1809
- const {bounds: bounds, shapeBounds: shapeBounds} = shape;
1831
+ function getShadowTransform(ui, canvas, _shape, shadow, outBounds, otherScale, isInnerShaodw) {
1832
+ if (shadow.spread) {
1833
+ const spreadScale = 1 + shadow.spread * 2 / ui.__layout.strokeBounds.width * otherScale * (isInnerShaodw ? -1 : 1);
1834
+ tempMatrix.set().scaleOfOuter({
1835
+ x: (outBounds.x + outBounds.width / 2) * canvas.pixelRatio,
1836
+ y: (outBounds.y + outBounds.height / 2) * canvas.pixelRatio
1837
+ }, spreadScale);
1838
+ return tempMatrix;
1839
+ }
1840
+ return undefined;
1841
+ }
1842
+
1843
+ function drawWorldShadow(canvas, outBounds, shape) {
1844
+ const {shapeBounds: shapeBounds} = shape;
1845
+ let from, to;
1810
1846
  if (Platform.fullImageShadow) {
1811
1847
  copy(tempBounds, canvas.bounds);
1812
- tempBounds.x += outBounds.x - shapeBounds.x;
1813
- tempBounds.y += outBounds.y - shapeBounds.y;
1814
- if (spreadScale) {
1815
- const {fitMatrix: fitMatrix} = shape;
1816
- tempBounds.x -= (bounds.x + (fitMatrix ? fitMatrix.e : 0) + bounds.width / 2) * (spreadScale - 1);
1817
- tempBounds.y -= (bounds.y + (fitMatrix ? fitMatrix.f : 0) + bounds.height / 2) * (spreadScale - 1);
1818
- tempBounds.width *= spreadScale;
1819
- tempBounds.height *= spreadScale;
1820
- }
1821
- canvas.copyWorld(shape.canvas, canvas.bounds, tempBounds);
1848
+ move(tempBounds, outBounds.x - shapeBounds.x, outBounds.y - shapeBounds.y);
1849
+ from = canvas.bounds, to = tempBounds;
1822
1850
  } else {
1823
- if (spreadScale) {
1824
- copy(tempBounds, outBounds);
1825
- tempBounds.x -= outBounds.width / 2 * (spreadScale - 1);
1826
- tempBounds.y -= outBounds.height / 2 * (spreadScale - 1);
1827
- tempBounds.width *= spreadScale;
1828
- tempBounds.height *= spreadScale;
1829
- }
1830
- canvas.copyWorld(shape.canvas, shapeBounds, spreadScale ? tempBounds : outBounds);
1851
+ from = shapeBounds, to = outBounds;
1831
1852
  }
1853
+ canvas.copyWorld(shape.canvas, from, to);
1832
1854
  }
1833
1855
 
1834
1856
  const {toOffsetOutBounds: toOffsetOutBounds} = BoundsHelper;
@@ -1836,13 +1858,13 @@ const {toOffsetOutBounds: toOffsetOutBounds} = BoundsHelper;
1836
1858
  const offsetOutBounds = {};
1837
1859
 
1838
1860
  function innerShadow(ui, current, shape) {
1839
- let copyBounds, spreadScale;
1840
- const {__nowWorld: nowWorld, __layout: __layout} = ui;
1861
+ let copyBounds, transform;
1862
+ const {__nowWorld: nowWorld} = ui;
1841
1863
  const {innerShadow: innerShadow} = ui.__;
1842
- const {worldCanvas: worldCanvas, bounds: bounds, shapeBounds: shapeBounds, scaleX: scaleX, scaleY: scaleY} = shape;
1864
+ const {worldCanvas: worldCanvas, bounds: bounds, renderBounds: renderBounds, shapeBounds: shapeBounds, scaleX: scaleX, scaleY: scaleY} = shape;
1843
1865
  const other = current.getSameCanvas();
1844
1866
  const end = innerShadow.length - 1;
1845
- toOffsetOutBounds(bounds, offsetOutBounds);
1867
+ toOffsetOutBounds(bounds, offsetOutBounds, renderBounds);
1846
1868
  innerShadow.forEach((item, index) => {
1847
1869
  let otherScale = 1;
1848
1870
  if (item.scaleFixed) {
@@ -1850,17 +1872,18 @@ function innerShadow(ui, current, shape) {
1850
1872
  if (sx > 1) otherScale = 1 / sx;
1851
1873
  }
1852
1874
  other.save();
1853
- other.setWorldShadow(offsetOutBounds.offsetX + item.x * scaleX * otherScale, offsetOutBounds.offsetY + item.y * scaleY * otherScale, item.blur * scaleX * otherScale);
1854
- spreadScale = item.spread ? 1 - item.spread * 2 / (__layout.boxBounds.width + (__layout.strokeBoxSpread || 0) * 2) * otherScale : 0;
1855
- drawWorldShadow(other, offsetOutBounds, spreadScale, shape);
1875
+ other.setWorldShadow(offsetOutBounds.offsetX + (item.x || 0) * scaleX * otherScale, offsetOutBounds.offsetY + (item.y || 0) * scaleY * otherScale, (item.blur || 0) * scaleX * otherScale);
1876
+ transform = Effect.getShadowTransform(ui, other, shape, item, offsetOutBounds, otherScale, true);
1877
+ if (transform) other.setTransform(transform);
1878
+ drawWorldShadow(other, offsetOutBounds, shape);
1856
1879
  other.restore();
1857
1880
  if (worldCanvas) {
1858
- other.copyWorld(other, bounds, nowWorld, "copy");
1881
+ other.copyWorld(other, renderBounds, nowWorld, "copy");
1859
1882
  other.copyWorld(worldCanvas, nowWorld, nowWorld, "source-out");
1860
1883
  copyBounds = nowWorld;
1861
1884
  } else {
1862
1885
  other.copyWorld(shape.canvas, shapeBounds, bounds, "source-out");
1863
- copyBounds = bounds;
1886
+ copyBounds = renderBounds;
1864
1887
  }
1865
1888
  other.fillWorld(copyBounds, ColorConvert.string(item.color), "source-in");
1866
1889
  LeafHelper.copyCanvasByWorld(ui, current, other, copyBounds, item.blendMode);
@@ -1869,6 +1892,8 @@ function innerShadow(ui, current, shape) {
1869
1892
  other.recycle(copyBounds);
1870
1893
  }
1871
1894
 
1895
+ const getInnerShadowSpread = getShadowRenderSpread;
1896
+
1872
1897
  function blur(ui, current, origin) {
1873
1898
  const {blur: blur} = ui.__;
1874
1899
  origin.setWorldBlur(blur * ui.__nowWorld.a);
@@ -1883,10 +1908,12 @@ const EffectModule = {
1883
1908
  innerShadow: innerShadow,
1884
1909
  blur: blur,
1885
1910
  backgroundBlur: backgroundBlur,
1886
- getShadowSpread: getShadowSpread,
1911
+ getShadowRenderSpread: getShadowRenderSpread,
1912
+ getShadowTransform: getShadowTransform,
1887
1913
  isTransformShadow(_shadow) {
1888
1914
  return undefined;
1889
- }
1915
+ },
1916
+ getInnerShadowSpread: getInnerShadowSpread
1890
1917
  };
1891
1918
 
1892
1919
  const {excludeRenderBounds: excludeRenderBounds} = LeafBoundsHelper;
@@ -1903,6 +1930,7 @@ Group.prototype.__renderMask = function(canvas, options) {
1903
1930
  maskEnd(this, currentMask, canvas, contentCanvas, maskCanvas, maskOpacity, undefined, true);
1904
1931
  maskCanvas = contentCanvas = null;
1905
1932
  }
1933
+ if (mask === "clipping" || mask === "clipping-path") excludeRenderBounds(child, options) || child.__render(canvas, options);
1906
1934
  maskOpacity = child.__.opacity;
1907
1935
  usedGrayscaleAlpha = false;
1908
1936
  if (mask === "path" || mask === "clipping-path") {
@@ -1920,7 +1948,6 @@ Group.prototype.__renderMask = function(canvas, options) {
1920
1948
  if (!contentCanvas) contentCanvas = getCanvas(canvas);
1921
1949
  child.__render(maskCanvas, options);
1922
1950
  }
1923
- if (mask === "clipping" || mask === "clipping-path") excludeRenderBounds(child, options) || child.__render(canvas, options);
1924
1951
  continue;
1925
1952
  }
1926
1953
  const childBlendMode = maskOpacity === 1 && child.__.__blendMode;
@@ -2482,6 +2509,7 @@ const TextConvertModule = {
2482
2509
  };
2483
2510
 
2484
2511
  function string(color, opacity) {
2512
+ if (!color) return "#000";
2485
2513
  const doOpacity = isNumber(opacity) && opacity < 1;
2486
2514
  if (isString(color)) {
2487
2515
  if (doOpacity && ColorConvert.object) color = ColorConvert.object(color); else return color;
@@ -1,2 +1,2 @@
1
- import{LeaferCanvasBase as t,Platform as e,canvasPatch as i,FileHelper as s,Creator as n,LeaferImage as a,defineKey as o,LeafList as r,DataHelper as l,RenderEvent as d,ChildEvent as h,WatchEvent as c,PropertyEvent as u,LeafHelper as f,BranchHelper as g,LeafBoundsHelper as p,Bounds as _,isArray as w,Debug as y,LeafLevelList as m,LayoutEvent as x,Run as v,ImageManager as b,ResizeEvent as B,BoundsHelper as k,Plugin as S,isObject as R,Matrix as E,isUndefined as L,isString as A,getMatrixData as T,MatrixHelper as C,MathHelper as P,AlignHelper as M,PointHelper as O,ImageEvent as W,AroundHelper as D,Direction4 as F,isNumber as I}from"@leafer/core";export*from"@leafer/core";export{LeaferImage}from"@leafer/core";import{writeFileSync as U}from"fs";import{HitCanvasManager as Y,InteractionBase as X}from"@leafer-ui/core";export*from"@leafer-ui/core";import{PaintImage as z,Paint as N,ColorConvert as j,PaintGradient as q,Export as G,Effect as H,Group as V,TextConvert as Q,TwoPointBoundsHelper as J,Bounds as Z,FileHelper as $,Platform as K,isUndefined as tt,Matrix as et,MathHelper as it,Creator as st,TaskProcessor as nt,Resource as at,LeaferCanvasBase as ot,Debug as rt,Plugin as lt,UI as dt}from"@leafer-ui/draw";function ht(t,e,i,s){return new(i||(i=Promise))(function(n,a){function o(t){try{l(s.next(t))}catch(t){a(t)}}function r(t){try{l(s.throw(t))}catch(t){a(t)}}function l(t){var e;t.done?n(t.value):(e=t.value,e instanceof i?e:new i(function(t){t(e)})).then(o,r)}l((s=s.apply(t,e||[])).next())})}"function"==typeof SuppressedError&&SuppressedError;class ct extends t{get allowBackgroundColor(){return!0}init(){this.__createView(),this.__createContext(),this.resize(this.config),e.roundRectPatch&&(this.context.__proto__.roundRect=null,i(this.context.__proto__))}__createView(){this.view=e.origin.createCanvas(1,1)}updateViewSize(){const{width:t,height:e,pixelRatio:i}=this;this.view.width=Math.ceil(t*i),this.view.height=Math.ceil(e*i),this.clientBounds=this.bounds}}const{mineType:ut,fileType:ft}=s;function gt(t,i){if(e.canvasType=t,!e.origin){if("skia"===t){const{Canvas:t,loadImage:s}=i;e.origin={createCanvas:(e,i,s)=>new t(e,i,s),canvasToDataURL:(t,e,i)=>t.toDataURLSync(e,{quality:i}),canvasToBolb:(t,e,i)=>t.toBuffer(e,{quality:i}),canvasSaveAs:(t,e,i)=>t.saveAs(e,{quality:i}),download(t,e){},loadImage:t=>s(e.image.getRealURL(t))},e.roundRectPatch=!0}else if("napi"===t){const{Canvas:t,loadImage:s}=i;e.origin={createCanvas:(e,i,s)=>new t(e,i,s),canvasToDataURL:(t,e,i)=>t.toDataURL(ut(e),i),canvasToBolb:(t,e,i)=>ht(this,void 0,void 0,function*(){return t.toBuffer(ut(e),i)}),canvasSaveAs:(t,e,i)=>ht(this,void 0,void 0,function*(){return U(e,t.toBuffer(ut(ft(e)),i))}),download(t,e){},loadImage:t=>s(e.image.getRealURL(t))}}e.ellipseToCurve=!0,e.event={stopDefault(t){},stopNow(t){},stop(t){}},e.canvas=n.canvas()}}Object.assign(n,{canvas:(t,e)=>new ct(t,e),image:t=>new a(t)}),e.name="node",e.backgrounder=!0,e.requestRender=function(t){setTimeout(t,16)},o(e,"devicePixelRatio",{get:()=>1}),e.conicGradientSupport=!0;class pt{get childrenChanged(){return this.hasAdd||this.hasRemove||this.hasVisible}get updatedList(){if(this.hasRemove){const t=new r;return this.__updatedList.list.forEach(e=>{e.leafer&&t.add(e)}),t}return this.__updatedList}constructor(t,e){this.totalTimes=0,this.config={},this.__updatedList=new r,this.target=t,e&&(this.config=l.default(e,this.config)),this.__listenEvents()}start(){this.disabled||(this.running=!0)}stop(){this.running=!1}disable(){this.stop(),this.__removeListenEvents(),this.disabled=!0}update(){this.changed=!0,this.running&&this.target.emit(d.REQUEST)}__onAttrChange(t){this.__updatedList.add(t.target),this.update()}__onChildEvent(t){t.type===h.ADD?(this.hasAdd=!0,this.__pushChild(t.child)):(this.hasRemove=!0,this.__updatedList.add(t.parent)),this.update()}__pushChild(t){this.__updatedList.add(t),t.isBranch&&this.__loopChildren(t)}__loopChildren(t){const{children:e}=t;for(let t=0,i=e.length;t<i;t++)this.__pushChild(e[t])}__onRquestData(){this.target.emitEvent(new c(c.DATA,{updatedList:this.updatedList})),this.__updatedList=new r,this.totalTimes++,this.changed=this.hasVisible=this.hasRemove=this.hasAdd=!1}__listenEvents(){this.__eventIds=[this.target.on_([[u.CHANGE,this.__onAttrChange,this],[[h.ADD,h.REMOVE],this.__onChildEvent,this],[c.REQUEST,this.__onRquestData,this]])]}__removeListenEvents(){this.target.off_(this.__eventIds)}destroy(){this.target&&(this.stop(),this.__removeListenEvents(),this.target=this.__updatedList=null)}}const{updateAllMatrix:_t,updateBounds:wt,updateChange:yt}=f,{pushAllChildBranch:mt,pushAllParent:xt}=g;const{worldBounds:vt}=p;class bt{constructor(t){this.updatedBounds=new _,this.beforeBounds=new _,this.afterBounds=new _,w(t)&&(t=new r(t)),this.updatedList=t}setBefore(){this.beforeBounds.setListWithFn(this.updatedList.list,vt)}setAfter(){this.afterBounds.setListWithFn(this.updatedList.list,vt),this.updatedBounds.setList([this.beforeBounds,this.afterBounds])}merge(t){this.updatedList.addList(t.updatedList.list),this.beforeBounds.add(t.beforeBounds),this.afterBounds.add(t.afterBounds),this.updatedBounds.add(t.updatedBounds)}destroy(){this.updatedList=null}}const{updateAllMatrix:Bt,updateAllChange:kt}=f,St=y.get("Layouter");class Rt{constructor(t,e){this.totalTimes=0,this.config={},this.__levelList=new m,this.target=t,e&&(this.config=l.default(e,this.config)),this.__listenEvents()}start(){this.disabled||(this.running=!0)}stop(){this.running=!1}disable(){this.stop(),this.__removeListenEvents(),this.disabled=!0}layout(){if(this.layouting||!this.running)return;const{target:t}=this;this.times=0;try{t.emit(x.START),this.layoutOnce(),t.emitEvent(new x(x.END,this.layoutedBlocks,this.times))}catch(t){St.error(t)}this.layoutedBlocks=null}layoutAgain(){this.layouting?this.waitAgain=!0:this.layoutOnce()}layoutOnce(){return this.layouting?St.warn("layouting"):this.times>3?St.warn("layout max times"):(this.times++,this.totalTimes++,this.layouting=!0,this.target.emit(c.REQUEST),this.totalTimes>1?this.partLayout():this.fullLayout(),this.layouting=!1,void(this.waitAgain&&(this.waitAgain=!1,this.layoutOnce())))}partLayout(){var t;if(!(null===(t=this.__updatedList)||void 0===t?void 0:t.length))return;const e=v.start("PartLayout"),{target:i,__updatedList:s}=this,{BEFORE:n,LAYOUT:a,AFTER:o}=x,r=this.getBlocks(s);r.forEach(t=>t.setBefore()),i.emitEvent(new x(n,r,this.times)),this.extraBlock=null,s.sort(),function(t,e){let i;t.list.forEach(t=>{i=t.__layout,e.without(t)&&!i.proxyZoom&&(i.matrixChanged?(_t(t,!0),e.add(t),t.isBranch&&mt(t,e),xt(t,e)):i.boundsChanged&&(e.add(t),t.isBranch&&(t.__tempNumber=0),xt(t,e)))})}(s,this.__levelList),function(t){let e,i,s;t.sort(!0),t.levels.forEach(n=>{e=t.levelMap[n];for(let t=0,n=e.length;t<n;t++){if(i=e[t],i.isBranch&&i.__tempNumber){s=i.children;for(let t=0,e=s.length;t<e;t++)s[t].isBranch||wt(s[t])}wt(i)}})}(this.__levelList),function(t){t.list.forEach(yt)}(s),this.extraBlock&&r.push(this.extraBlock),r.forEach(t=>t.setAfter()),i.emitEvent(new x(a,r,this.times)),i.emitEvent(new x(o,r,this.times)),this.addBlocks(r),this.__levelList.reset(),this.__updatedList=null,v.end(e)}fullLayout(){const t=v.start("FullLayout"),{target:e}=this,{BEFORE:i,LAYOUT:s,AFTER:n}=x,a=this.getBlocks(new r(e));e.emitEvent(new x(i,a,this.times)),Rt.fullLayout(e),a.forEach(t=>{t.setAfter()}),e.emitEvent(new x(s,a,this.times)),e.emitEvent(new x(n,a,this.times)),this.addBlocks(a),v.end(t)}static fullLayout(t){Bt(t,!0),t.isBranch?g.updateBounds(t):f.updateBounds(t),kt(t)}addExtra(t){if(!this.__updatedList.has(t)){const{updatedList:e,beforeBounds:i}=this.extraBlock||(this.extraBlock=new bt([]));e.length?i.add(t.__world):i.set(t.__world),e.add(t)}}createBlock(t){return new bt(t)}getBlocks(t){return[this.createBlock(t)]}addBlocks(t){this.layoutedBlocks?this.layoutedBlocks.push(...t):this.layoutedBlocks=t}__onReceiveWatchData(t){this.__updatedList=t.data.updatedList}__listenEvents(){this.__eventIds=[this.target.on_([[x.REQUEST,this.layout,this],[x.AGAIN,this.layoutAgain,this],[c.DATA,this.__onReceiveWatchData,this]])]}__removeListenEvents(){this.target.off_(this.__eventIds)}destroy(){this.target&&(this.stop(),this.__removeListenEvents(),this.target=this.config=null)}}const Et=y.get("Renderer");class Lt{get needFill(){return!(this.canvas.allowBackgroundColor||!this.config.fill)}constructor(t,e,i){this.FPS=60,this.totalTimes=0,this.times=0,this.config={usePartRender:!0,maxFPS:120},this.target=t,this.canvas=e,i&&(this.config=l.default(i,this.config)),this.__listenEvents()}start(){this.running=!0,this.update(!1)}stop(){this.running=!1}update(t=!0){this.changed||(this.changed=t),this.__requestRender()}requestLayout(){this.target.emit(x.REQUEST)}checkRender(){if(this.running){const{target:t}=this;t.isApp&&(t.emit(d.CHILD_START,t),t.children.forEach(t=>{t.renderer.FPS=this.FPS,t.renderer.checkRender()}),t.emit(d.CHILD_END,t)),this.changed&&this.canvas.view&&this.render(),this.target.emit(d.NEXT)}}render(t){if(!this.running||!this.canvas.view)return this.update();const{target:e}=this;this.times=0,this.totalBounds=new _,Et.log(e.innerName,"---\x3e");try{this.emitRender(d.START),this.renderOnce(t),this.emitRender(d.END,this.totalBounds),b.clearRecycled()}catch(t){this.rendering=!1,Et.error(t)}Et.log("-------------|")}renderAgain(){this.rendering?this.waitAgain=!0:this.renderOnce()}renderOnce(t){if(this.rendering)return Et.warn("rendering");if(this.times>3)return Et.warn("render max times");if(this.times++,this.totalTimes++,this.rendering=!0,this.changed=!1,this.renderBounds=new _,this.renderOptions={},t)this.emitRender(d.BEFORE),t();else{if(this.requestLayout(),this.ignore)return void(this.ignore=this.rendering=!1);this.emitRender(d.BEFORE),this.config.usePartRender&&this.totalTimes>1?this.partRender():this.fullRender()}this.emitRender(d.RENDER,this.renderBounds,this.renderOptions),this.emitRender(d.AFTER,this.renderBounds,this.renderOptions),this.updateBlocks=null,this.rendering=!1,this.waitAgain&&(this.waitAgain=!1,this.renderOnce())}partRender(){const{canvas:t,updateBlocks:e}=this;e&&(this.mergeBlocks(),e.forEach(e=>{t.bounds.hit(e)&&!e.isEmpty()&&this.clipRender(e)}))}clipRender(t){const e=v.start("PartRender"),{canvas:i}=this,s=t.getIntersect(i.bounds),n=new _(s);i.save(),s.spread(Lt.clipSpread).ceil(),i.clearWorld(s),i.clipWorld(s),this.__render(s,n),i.restore(),v.end(e)}fullRender(){const t=v.start("FullRender"),{canvas:e}=this;e.save(),e.clear(),this.__render(e.bounds),e.restore(),v.end(t)}__render(t,i){const{canvas:s}=this,n=t.includes(this.target.__world),a=n?{includes:n}:{bounds:t,includes:n};this.needFill&&s.fillWorld(t,this.config.fill),y.showRepaint&&y.drawRepaint(s,t),e.render(this.target,s,a),this.renderBounds=i=i||t,this.renderOptions=a,this.totalBounds.isEmpty()?this.totalBounds=i:this.totalBounds.add(i),s.updateRender(i)}addBlock(t){this.updateBlocks||(this.updateBlocks=[]),this.updateBlocks.push(t)}mergeBlocks(){const{updateBlocks:t}=this;if(t){const e=new _;e.setList(t),t.length=0,t.push(e)}}__requestRender(){const t=this.target;if(this.requestTime||!t)return;if(t.parentApp)return t.parentApp.requestRender(!1);const i=this.requestTime=Date.now(),s=()=>{const t=1e3/(Date.now()-i),{maxFPS:n}=this.config;if(n&&t>n-.5)return e.requestRender(s);this.FPS=Math.min(120,Math.ceil(t)),this.requestTime=0,this.checkRender()};e.requestRender(s)}__onResize(t){if(!this.canvas.unreal){if(t.bigger||!t.samePixelRatio){const{width:e,height:i}=t.old;if(!new _(0,0,e,i).includes(this.target.__world)||this.needFill||!t.samePixelRatio)return this.addBlock(this.canvas.bounds),void this.target.forceUpdate("surface")}this.addBlock(new _(0,0,1,1)),this.update()}}__onLayoutEnd(t){t.data&&t.data.map(t=>{let e;t.updatedList&&t.updatedList.list.some(t=>(e=!t.__world.width||!t.__world.height,e&&(t.isLeafer||Et.tip(t.innerName,": empty"),e=!t.isBranch||t.isBranchLeaf),e)),this.addBlock(e?this.canvas.bounds:t.updatedBounds)})}emitRender(t,e,i){this.target.emitEvent(new d(t,this.times,e,i))}__listenEvents(){this.__eventIds=[this.target.on_([[d.REQUEST,this.update,this],[x.END,this.__onLayoutEnd,this],[d.AGAIN,this.renderAgain,this],[B.RESIZE,this.__onResize,this]])]}__removeListenEvents(){this.target.off_(this.__eventIds)}destroy(){this.target&&(this.stop(),this.__removeListenEvents(),this.config={},this.target=this.canvas=null)}}Lt.clipSpread=10;const{hitRadiusPoint:At}=k;class Tt{constructor(t,e){this.target=t,this.selector=e}getByPoint(t,e,i){e||(e=0),i||(i={});const s=i.through||!1,n=i.ignoreHittable||!1,a=i.target||this.target;this.exclude=i.exclude||null,this.point={x:t.x,y:t.y,radiusX:e,radiusY:e},this.findList=new r(i.findList),i.findList||this.hitBranch(a.isBranchLeaf?{children:[a]}:a);const{list:o}=this.findList,l=this.getBestMatchLeaf(o,i.bottomList,n),d=n?this.getPath(l):this.getHitablePath(l);return this.clear(),s?{path:d,target:l,throughPath:o.length?this.getThroughPath(o):d}:{path:d,target:l}}hitPoint(t,e,i){return!!this.getByPoint(t,e,i).target}getBestMatchLeaf(t,e,i){const s=this.findList=new r;if(t.length){let e;const{x:n,y:a}=this.point,o={x:n,y:a,radiusX:0,radiusY:0};for(let n=0,a=t.length;n<a;n++)if(e=t[n],(i||f.worldHittable(e))&&(this.hitChild(e,o),s.length)){if(e.isBranchLeaf&&t.some(t=>t!==e&&f.hasParent(t,e))){s.reset();break}return s.list[0]}}if(e)for(let t=0,i=e.length;t<i;t++)if(this.hitChild(e[t].target,this.point,e[t].proxy),s.length)return s.list[0];return i?t[0]:t.find(t=>f.worldHittable(t))}getPath(t){const e=new r;for(;t;)e.add(t),t=t.parent;return this.target&&e.add(this.target),e}getHitablePath(t){const e=this.getPath(t&&t.hittable?t:null);let i,s=new r;for(let t=e.list.length-1;t>-1&&(i=e.list[t],i.__.hittable)&&(s.addAt(i,0),i.__.hitChildren&&(!i.isLeafer||"draw"!==i.mode));t--);return s}getThroughPath(t){const e=new r,i=[];for(let e=t.length-1;e>-1;e--)i.push(this.getPath(t[e]));let s,n,a;for(let t=0,o=i.length;t<o;t++){s=i[t],n=i[t+1];for(let t=0,i=s.length;t<i&&(a=s.list[t],!n||!n.has(a));t++)e.add(a)}return e}hitBranch(t){this.eachFind(t.children,t.__onlyHitMask)}eachFind(t,e){let i,s;const{point:n}=this;for(let a=t.length-1;a>-1;a--)i=t[a],!i.__.visible||e&&!i.__.mask||(s=!!i.__.hitRadius||At(i.__world,n),i.isBranch?(s||i.__ignoreHitWorld)&&(i.topChildren&&this.eachFind(i.topChildren,!1),this.eachFind(i.children,i.__onlyHitMask),i.isBranchLeaf&&this.hitChild(i,n)):s&&this.hitChild(i,n))}hitChild(t,e,i){if((!this.exclude||!this.exclude.has(t))&&t.__hitWorld(e)){const{parent:s}=t;if(s&&s.__hasMask&&!t.__.mask){let i,n=[];const{children:a}=s;for(let s=0,o=a.length;s<o;s++)if(i=a[s],i.__.mask&&n.push(i),i===t){if(n&&!n.every(t=>t.__hitWorld(e)))return;break}}this.findList.add(i||t)}}clear(){this.point=null,this.findList=null,this.exclude=null}destroy(){this.clear()}}class Ct{constructor(t,e){this.config={},e&&(this.config=l.default(e,this.config)),this.picker=new Tt(this.target=t,this),this.finder=n.finder&&n.finder()}getByPoint(t,i,s){const{target:n,picker:a}=this;return e.backgrounder&&n&&n.updateLayout(),a.getByPoint(t,i,s)}hitPoint(t,e,i){return this.picker.hitPoint(t,e,i)}getBy(t,e,i,s){return this.finder?this.finder.getBy(t,e,i,s):S.need("find")}destroy(){this.picker.destroy(),this.finder&&this.finder.destroy()}}function Pt(t,e){const i=t.__,{rows:s,decorationY:n}=i.__textDrawData;let a;i.__isPlacehold&&i.placeholderColor&&(e.fillStyle=i.placeholderColor);for(let t=0,i=s.length;t<i;t++)a=s[t],a.text?e.fillText(a.text,a.x,a.y):a.data&&a.data.forEach(t=>{e.fillText(t.char,t.x,a.y)});if(n){const{decorationColor:t,decorationHeight:a}=i.__textDrawData;t&&(e.fillStyle=t),s.forEach(t=>n.forEach(i=>e.fillRect(t.x,t.y+i,t.width,a)))}}function Mt(t,e){t.__.__font?Pt(t,e):t.__.windingRule?e.fill(t.__.windingRule):e.fill()}function Ot(t,e,i){switch(e.__.strokeAlign){case"center":Wt(t,1,e,i);break;case"inside":Dt(t,"inside",e,i);break;case"outside":e.__.__fillAfterStroke?Wt(t,2,e,i):Dt(t,"outside",e,i)}}function Wt(t,e,i,s){const n=i.__;R(t)?It(t,e,!0,i,s):(s.setStroke(t,n.__strokeWidth*e,n),Ft(i,s))}function Dt(t,e,i,s){const n=s.getSameCanvas(!0,!0);n.font=i.__.__font,Wt(t,2,i,n),n.blendMode="outside"===e?"destination-out":"destination-in",Pt(i,n),n.blendMode="normal",f.copyCanvasByWorld(i,s,n),n.recycle(i.__nowWorld)}function Ft(t,e){let i,s=t.__.__textDrawData;const{rows:n,decorationY:a}=s;for(let t=0,s=n.length;t<s;t++)i=n[t],i.text?e.strokeText(i.text,i.x,i.y):i.data&&i.data.forEach(t=>{e.strokeText(t.char,t.x,i.y)});if(a){const{decorationHeight:t}=s;n.forEach(i=>a.forEach(s=>e.strokeRect(i.x,i.y+s,i.width,t)))}}function It(t,e,i,s,n){let a;const o=s.__,{__hasMultiStrokeStyle:r}=o;r||n.setStroke(void 0,o.__strokeWidth*e,o);for(let l=0,d=t.length;l<d;l++)if(a=t[l],(!a.image||!z.checkImage(s,n,a,!1))&&a.style){if(r){const{strokeStyle:t}=a;t?n.setStroke(a.style,o.__getRealStrokeWidth(t)*e,o,t):n.setStroke(a.style,o.__strokeWidth*e,o)}else n.strokeStyle=a.style;a.blendMode?(n.saveBlendMode(a.blendMode),i?Ft(s,n):n.stroke(),n.restoreBlendMode()):i?Ft(s,n):n.stroke()}}function Ut(t,e,i){const s=e.__;if(s.__strokeWidth)if(s.__font)Ot(t,e,i);else switch(s.strokeAlign){case"center":Yt(t,1,e,i);break;case"inside":!function(t,e,i){i.save(),i.clipUI(e),Yt(t,2,e,i),i.restore()}(t,e,i);break;case"outside":!function(t,e,i){const s=e.__;if(s.__fillAfterStroke)Yt(t,2,e,i);else{const{renderBounds:n}=e.__layout,a=i.getSameCanvas(!0,!0);e.__drawRenderPath(a),Yt(t,2,e,a),a.clipUI(s),a.clearWorld(n),f.copyCanvasByWorld(e,i,a),a.recycle(e.__nowWorld)}}(t,e,i)}}function Yt(t,e,i,s){const n=i.__;R(t)?It(t,e,!1,i,s):(s.setStroke(t,n.__strokeWidth*e,n),s.stroke()),n.__useArrow&&N.strokeArrow(t,i,s)}Object.assign(n,{watcher:(t,e)=>new pt(t,e),layouter:(t,e)=>new Rt(t,e),renderer:(t,e,i)=>new Lt(t,e,i),selector:(t,e)=>new Ct(t,e)}),e.layout=Rt.fullLayout,e.render=function(t,e,i){const s=Object.assign(Object.assign({},i),{topRendering:!0});i.topList=new r,t.__render(e,i),i.topList.length&&i.topList.forEach(t=>t.__render(e,s))};const{getSpread:Xt,getOuterOf:zt,getByMove:Nt,getIntersectData:jt}=k;let qt;const{stintSet:Gt}=l,{hasTransparent:Ht}=j;function Vt(t,e,i){if(!R(e)||!1===e.visible||0===e.opacity)return;let s;const{boxBounds:n}=i.__layout;switch(e.type){case"image":s=z.image(i,t,e,n,!qt||!qt[e.url]);break;case"linear":s=q.linearGradient(e,n);break;case"radial":s=q.radialGradient(e,n);break;case"angular":s=q.conicGradient(e,n);break;case"solid":const{type:a,color:o,opacity:r}=e;s={type:a,style:j.string(o,r)};break;default:L(e.r)||(s={type:"solid",style:j.string(e)})}if(s){if(A(s.style)&&Ht(s.style)&&(s.isTransparent=!0),e.style){if(0===e.style.strokeWidth)return;s.strokeStyle=e.style}e.editing&&(s.editing=e.editing),e.blendMode&&(s.blendMode=e.blendMode)}return s}const Qt={compute:function(t,e){const i=e.__,s=[];let n,a,o,r=i.__input[t];w(r)||(r=[r]),qt=z.recycleImage(t,i);for(let i,n=0,a=r.length;n<a;n++)(i=Vt(t,r[n],e))&&(s.push(i),i.strokeStyle&&(o||(o=1),i.strokeStyle.strokeWidth&&(o=Math.max(o,i.strokeStyle.strokeWidth))));i["_"+t]=s.length?s:void 0,s.length&&s.every(t=>t.isTransparent)&&(s.some(t=>t.image)&&(n=!0),a=!0),"fill"===t?(Gt(i,"__isAlphaPixelFill",n),Gt(i,"__isTransparentFill",a)):(Gt(i,"__isAlphaPixelStroke",n),Gt(i,"__isTransparentStroke",a),Gt(i,"__hasMultiStrokeStyle",o))},fill:function(t,e,i){i.fillStyle=t,Mt(e,i)},fills:function(t,e,i){let s;for(let n=0,a=t.length;n<a;n++){if(s=t[n],s.image){if(z.checkImage(e,i,s,!e.__.__font))continue;if(!s.style){!n&&s.image.isPlacehold&&e.drawImagePlaceholder(i,s.image);continue}}if(i.fillStyle=s.style,s.transform||s.scaleFixed){if(i.save(),s.transform&&i.transform(s.transform),s.scaleFixed){const{scaleX:t,scaleY:n}=e.getRenderScaleData(!0);(!0===s.scaleFixed||"zoom-in"===s.scaleFixed&&t>1&&n>1)&&i.scale(1/t,1/n)}s.blendMode&&(i.blendMode=s.blendMode),Mt(e,i),i.restore()}else s.blendMode?(i.saveBlendMode(s.blendMode),Mt(e,i),i.restoreBlendMode()):Mt(e,i)}},fillPathOrText:Mt,fillText:Pt,stroke:Ut,strokes:function(t,e,i){Ut(t,e,i)},strokeText:Ot,drawTextStroke:Ft,shape:function(t,i,s){const n=i.getSameCanvas(),a=t.__nowWorld,o=i.bounds;let r,l,d,h,c,{scaleX:u,scaleY:f}=t.getRenderScaleData(!0);if(o.includes(a))c=n,r=h=a;else{const{renderShapeSpread:n}=t.__layout;let g;if(e.fullImageShadow)g=a;else{const t=n?Xt(o,u===f?n*u:[n*f,n*u]):o;g=jt(t,a)}d=o.getFitMatrix(g);let{a:p,d:_}=d;d.a<1&&(c=i.getSameCanvas(),t.__renderShape(c,s),u*=p,f*=_),h=zt(a,d),r=Nt(h,-d.e,-d.f);const w=s.matrix;w?(l=new E(d),l.multiply(w),p*=w.scaleX,_*=w.scaleY):l=d,l.withScale(p,_),s=Object.assign(Object.assign({},s),{matrix:l})}return t.__renderShape(n,s),{canvas:n,matrix:l,fitMatrix:d,bounds:r,worldCanvas:c,shapeBounds:h,scaleX:u,scaleY:f}}};let Jt={},Zt=T();const{get:$t,rotateOfOuter:Kt,translate:te,scaleOfOuter:ee,multiplyParent:ie,scale:se,rotate:ne,skew:ae}=C;function oe(t,e,i,s,n,a,o){const r=$t();te(r,e.x+i,e.y+s),se(r,n,a),o&&Kt(r,{x:e.x+e.width/2,y:e.y+e.height/2},o),t.transform=r}function re(t,e,i,s,n,a,o,r,l){const d=$t();de(d,e,i,s,n,a,o,r),l&&(Zt.a=e.width/l.width,Zt.d=e.height/l.height,ie(d,Zt)),t.transform=d}function le(t,e,i,s,n,a,o,r,l,d,h,c){const u=$t();if(c)de(u,e,n,a,o,r,l,d);else{if(l)if("center"===h)Kt(u,{x:i/2,y:s/2},l);else switch(ne(u,l),l){case 90:te(u,s,0);break;case 180:te(u,i,s);break;case 270:te(u,0,i)}Jt.x=e.x+n,Jt.y=e.y+a,te(u,Jt.x,Jt.y),o&&ee(u,Jt,o,r)}t.transform=u}function de(t,e,i,s,n,a,o,r){o&&ne(t,o),r&&ae(t,r.x,r.y),n&&se(t,n,a),te(t,e.x+i,e.y+s)}const{get:he,translate:ce}=C,ue=new _,fe={},ge={};function pe(t,e,i,s){const{changeful:n,sync:a,scaleFixed:o}=i;n&&(t.changeful=n),a&&(t.sync=a),o&&(t.scaleFixed=o),t.data=_e(i,s,e)}function _e(t,e,i){t.padding&&(e=ue.set(e).shrink(t.padding)),"strench"===t.mode&&(t.mode="stretch");let{width:s,height:n}=i;const{opacity:a,mode:o,align:r,offset:l,scale:d,size:h,rotation:c,skew:u,clipSize:f,repeat:g,gap:p,filters:_}=t,w=e.width===s&&e.height===n,y={mode:o},m="center"!==r&&(c||0)%180==90;let x,v;switch(k.set(ge,0,0,m?n:s,m?s:n),o&&"cover"!==o&&"fit"!==o?((d||h)&&(P.getScaleData(d,h,i,fe),x=fe.scaleX,v=fe.scaleY),(r||p||g)&&(x&&k.scale(ge,x,v,!0),r&&M.toPoint(r,ge,e,ge,!0,!0))):w&&!c||(x=v=k.getFitScale(e,ge,"fit"!==o),k.put(e,i,r,x,!1,ge),k.scale(ge,x,v,!0)),l&&O.move(ge,l),o){case"stretch":w||(s=e.width,n=e.height);break;case"normal":case"clip":(ge.x||ge.y||x||f||c||u)&&re(y,e,ge.x,ge.y,x,v,c,u,t.clipSize);break;case"repeat":(!w||x||c||u)&&le(y,e,s,n,ge.x,ge.y,x,v,c,u,r,t.freeTransform),g||(y.repeat="repeat");const i=R(g);(p||i)&&(y.gap=function(t,e,i,s,n){let a,o;R(t)?(a=t.x,o=t.y):a=o=t;return{x:we(a,i,n.width,e&&e.x),y:we(o,s,n.height,e&&e.y)}}(p,i&&g,ge.width,ge.height,e));break;default:x&&oe(y,e,ge.x,ge.y,x,v,c)}return y.transform||(e.x||e.y)&&(y.transform=he(),ce(y.transform,e.x,e.y)),x&&"stretch"!==o&&(y.scaleX=x,y.scaleY=v),y.width=s,y.height=n,a&&(y.opacity=a),_&&(y.filters=_),g&&(y.repeat=A(g)?"x"===g?"repeat-x":"repeat-y":"repeat"),y}function we(t,e,i,s){const n=A(t)||s?(s?i-s*e:i%e)/((s||Math.floor(i/e))-1):t;return"auto"===t&&n<0?0:n}let ye,me=new _;const{isSame:xe}=k;function ve(t,e,i,s,n,a){if("fill"===e&&!t.__.__naturalWidth){const e=t.__;if(e.__naturalWidth=s.width/e.pixelRatio,e.__naturalHeight=s.height/e.pixelRatio,e.__autoSide)return t.forceUpdate("width"),t.__proxyData&&(t.setProxyAttr("width",e.width),t.setProxyAttr("height",e.height)),!1}return n.data||pe(n,s,i,a),!0}function be(t,e){Se(t,W.LOAD,e)}function Be(t,e){Se(t,W.LOADED,e)}function ke(t,e,i){e.error=i,t.forceUpdate("surface"),Se(t,W.ERROR,e)}function Se(t,e,i){t.hasEvent(e)&&t.emitEvent(new W(e,i))}function Re(t,e){const{leafer:i}=t;i&&i.viewReady&&(i.renderer.ignore=e)}const{get:Ee,scale:Le,copy:Ae}=C,{floor:Te,ceil:Ce,max:Pe,abs:Me}=Math;function Oe(t,i,s){let{scaleX:n,scaleY:a}=t.getRenderScaleData(!0,i.scaleFixed);const o=n+"-"+a+"-"+s;if(i.patternId===o||t.destroyed)return!1;{const{image:r,data:l}=i;let d,h,{width:c,height:u,scaleX:f,scaleY:g,transform:p,repeat:_,gap:w}=l;n*=s,a*=s,f&&(f=Me(f),g=Me(g),h=Ee(),Ae(h,p),Le(h,1/f,1/g),n*=f,a*=g),c*=n,u*=a;const y=c*u;if(!_&&y>e.image.maxCacheSize)return!1;let m=e.image.maxPatternSize;if(r.isSVG){const t=c/r.width;t>1&&(d=t/Ce(t))}else{const t=r.width*r.height;m>t&&(m=t)}y>m&&(d=Math.sqrt(y/m)),d&&(n/=d,a/=d,c/=d,u/=d),f&&(n/=f,a/=g);const x=w&&w.x*n,v=w&&w.y*a;if(p||1!==n||1!==a){const t=c+(x||0),e=u+(v||0);n/=t/Pe(Te(t),1),a/=e/Pe(Te(e),1),h||(h=Ee(),p&&Ae(h,p)),Le(h,1/n,1/a)}const b=r.getCanvas(c,u,l.opacity,l.filters,x,v,t.leafer&&t.leafer.config.smooth),B=r.getPattern(b,_||e.origin.noRepeat||"no-repeat",h,i);return i.style=B,i.patternId=o,!0}}const We={image:function(t,e,i,s,n){let a,o;const r=b.get(i);return ye&&i===ye.paint&&xe(s,ye.boxBounds)?a=ye.leafPaint:(a={type:i.type,image:r},r.hasAlphaPixel&&(a.isTransparent=!0),ye=r.use>1?{leafPaint:a,paint:i,boxBounds:me.set(s)}:null),(n||r.loading)&&(o={image:r,attrName:e,attrValue:i}),r.ready?(ve(t,e,i,r,a,s),n&&(be(t,o),Be(t,o))):r.error?n&&ke(t,o,r.error):(n&&(Re(t,!0),be(t,o)),a.loadId=r.load(()=>{Re(t,!1),t.destroyed||(ve(t,e,i,r,a,s)&&(r.hasAlphaPixel&&(t.__layout.hitCanvasChanged=!0),t.forceUpdate("surface")),Be(t,o)),a.loadId=void 0},e=>{Re(t,!1),ke(t,o,e),a.loadId=void 0}),t.placeholderColor&&(t.placeholderDelay?setTimeout(()=>{r.ready||(r.isPlacehold=!0,t.forceUpdate("surface"))},t.placeholderDelay):r.isPlacehold=!0)),a},checkImage:function(t,i,s,n){const{scaleX:a,scaleY:o}=t.getRenderScaleData(!0,s.scaleFixed),{pixelRatio:r}=i,{data:l}=s;if(!l||s.patternId===a+"-"+o+"-"+r&&!G.running)return!1;if(n)if(l.repeat)n=!1;else if(!(s.changeful||"miniapp"===e.name&&B.isResizing(t)||G.running)){let{width:t,height:i}=l;t*=a*r,i*=o*r,l.scaleX&&(t*=l.scaleX,i*=l.scaleY),n=t*i>e.image.maxCacheSize}return n?(t.__.__isFastShadow&&(i.fillStyle=s.style||"#000",i.fill()),function(t,e,i,s){e.save(),e.clipUI(t),i.blendMode&&(e.blendMode=i.blendMode);s.opacity&&(e.opacity*=s.opacity);s.transform&&e.transform(s.transform);e.drawImage(i.image.getFull(s.filters),0,0,s.width,s.height),e.restore()}(t,i,s,l),!0):(!s.style||s.sync||G.running?Oe(t,s,r):s.patternTask||(s.patternTask=b.patternTasker.add(()=>ht(this,void 0,void 0,function*(){s.patternTask=null,i.bounds.hit(t.__nowWorld)&&Oe(t,s,r),t.forceUpdate("surface")}),300)),!1)},createPattern:Oe,recycleImage:function(t,e){const i=e["_"+t];if(w(i)){let s,n,a,o,r;for(let l=0,d=i.length;l<d;l++)s=i[l],n=s.image,r=n&&n.url,r&&(a||(a={}),a[r]=!0,b.recycle(n),n.loading&&(o||(o=e.__input&&e.__input[t]||[],w(o)||(o=[o])),n.unload(i[l].loadId,!o.some(t=>t.url===r))));return a}return null},createData:pe,getPatternData:_e,fillOrFitMode:oe,clipMode:re,repeatMode:le},{toPoint:De}=D,{hasTransparent:Fe}=j,Ie={},Ue={};function Ye(t,e,i,s){if(i){let n,a,o,r;for(let t=0,l=i.length;t<l;t++)n=i[t],A(n)?(o=t/(l-1),a=j.string(n,s)):(o=n.offset,a=j.string(n.color,s)),e.addColorStop(o,a),!r&&Fe(a)&&(r=!0);r&&(t.isTransparent=!0)}}const{getAngle:Xe,getDistance:ze}=O,{get:Ne,rotateOfOuter:je,scaleOfOuter:qe}=C,{toPoint:Ge}=D,He={},Ve={};function Qe(t,e,i,s,n){let a;const{width:o,height:r}=t;if(o!==r||s){const t=Xe(e,i);a=Ne(),n?(qe(a,e,o/r*(s||1),1),je(a,e,t+90)):(qe(a,e,1,o/r*(s||1)),je(a,e,t))}return a}const{getDistance:Je}=O,{toPoint:Ze}=D,$e={},Ke={};const ti={linearGradient:function(t,i){let{from:s,to:n,type:a,opacity:o}=t;De(s||"top",i,Ie),De(n||"bottom",i,Ue);const r=e.canvas.createLinearGradient(Ie.x,Ie.y,Ue.x,Ue.y),l={type:a,style:r};return Ye(l,r,t.stops,o),l},radialGradient:function(t,i){let{from:s,to:n,type:a,opacity:o,stretch:r}=t;Ge(s||"center",i,He),Ge(n||"bottom",i,Ve);const l=e.canvas.createRadialGradient(He.x,He.y,0,He.x,He.y,ze(He,Ve)),d={type:a,style:l};Ye(d,l,t.stops,o);const h=Qe(i,He,Ve,r,!0);return h&&(d.transform=h),d},conicGradient:function(t,i){let{from:s,to:n,type:a,opacity:o,stretch:r}=t;Ze(s||"center",i,$e),Ze(n||"bottom",i,Ke);const l=e.conicGradientSupport?e.canvas.createConicGradient(0,$e.x,$e.y):e.canvas.createRadialGradient($e.x,$e.y,0,$e.x,$e.y,Je($e,Ke)),d={type:a,style:l};Ye(d,l,t.stops,o);const h=Qe(i,$e,Ke,r||1,e.conicGradientRotate90);return h&&(d.transform=h),d},getTransform:Qe},{copy:ei,toOffsetOutBounds:ii}=k,si={},ni={};function ai(t,i,s,n){const{bounds:a,shapeBounds:o}=n;if(e.fullImageShadow){if(ei(si,t.bounds),si.x+=i.x-o.x,si.y+=i.y-o.y,s){const{fitMatrix:t}=n;si.x-=(a.x+(t?t.e:0)+a.width/2)*(s-1),si.y-=(a.y+(t?t.f:0)+a.height/2)*(s-1),si.width*=s,si.height*=s}t.copyWorld(n.canvas,t.bounds,si)}else s&&(ei(si,i),si.x-=i.width/2*(s-1),si.y-=i.height/2*(s-1),si.width*=s,si.height*=s),t.copyWorld(n.canvas,o,s?si:i)}const{toOffsetOutBounds:oi}=k,ri={};const li={shadow:function(t,e,i){let s,n;const{__nowWorld:a,__layout:o}=t,{shadow:r}=t.__,{worldCanvas:l,bounds:d,shapeBounds:h,scaleX:c,scaleY:u}=i,g=e.getSameCanvas(),p=r.length-1;ii(d,ni),r.forEach((r,_)=>{let w=1;if(r.scaleFixed){const t=Math.abs(a.scaleX);t>1&&(w=1/t)}g.setWorldShadow(ni.offsetX+r.x*c*w,ni.offsetY+r.y*u*w,r.blur*c*w,j.string(r.color)),n=r.spread?1+2*r.spread/(o.boxBounds.width+2*(o.strokeBoxSpread||0))*w:0,ai(g,ni,n,i),s=d,r.box&&(g.restore(),g.save(),l&&(g.copyWorld(g,d,a,"copy"),s=a),l?g.copyWorld(l,a,a,"destination-out"):g.copyWorld(i.canvas,h,d,"destination-out")),H.isTransformShadow(r)?H.renderTransformShadow(t,e,g,s,r):f.copyCanvasByWorld(t,e,g,s,r.blendMode),p&&_<p&&g.clearWorld(s)}),g.recycle(s)},innerShadow:function(t,e,i){let s,n;const{__nowWorld:a,__layout:o}=t,{innerShadow:r}=t.__,{worldCanvas:l,bounds:d,shapeBounds:h,scaleX:c,scaleY:u}=i,g=e.getSameCanvas(),p=r.length-1;oi(d,ri),r.forEach((r,_)=>{let w=1;if(r.scaleFixed){const t=Math.abs(a.scaleX);t>1&&(w=1/t)}g.save(),g.setWorldShadow(ri.offsetX+r.x*c*w,ri.offsetY+r.y*u*w,r.blur*c*w),n=r.spread?1-2*r.spread/(o.boxBounds.width+2*(o.strokeBoxSpread||0))*w:0,ai(g,ri,n,i),g.restore(),l?(g.copyWorld(g,d,a,"copy"),g.copyWorld(l,a,a,"source-out"),s=a):(g.copyWorld(i.canvas,h,d,"source-out"),s=d),g.fillWorld(s,j.string(r.color),"source-in"),f.copyCanvasByWorld(t,e,g,s,r.blendMode),p&&_<p&&g.clearWorld(s)}),g.recycle(s)},blur:function(t,e,i){const{blur:s}=t.__;i.setWorldBlur(s*t.__nowWorld.a),i.copyWorldToInner(e,t.__nowWorld,t.__layout.renderBounds),i.filter="none"},backgroundBlur:function(t,e,i){},getShadowSpread:function(t,e){let i=0;return e.forEach(t=>i=Math.max(i,Math.max(Math.abs(t.y),Math.abs(t.x))+(t.spread>0?t.spread:0)+1.5*t.blur)),i},isTransformShadow(t){}},{excludeRenderBounds:di}=p;let hi;function ci(t,e,i,s,n,a,o,r){switch(e){case"grayscale":hi||(hi=!0,n.useGrayscaleAlpha(t.__nowWorld));case"alpha":!function(t,e,i,s,n,a){const o=t.__nowWorld;i.resetTransform(),i.opacity=1,i.useMask(s,o),a&&s.recycle(o);fi(t,e,i,1,n,a)}(t,i,s,n,o,r);break;case"opacity-path":fi(t,i,s,a,o,r);break;case"path":r&&i.restore()}}function ui(t){return t.getSameCanvas(!1,!0)}function fi(t,e,i,s,n,a){const o=t.__nowWorld;e.resetTransform(),e.opacity=s,e.copyWorld(i,o,void 0,n),a?i.recycle(o):i.clearWorld(o)}V.prototype.__renderMask=function(t,e){let i,s,n,a,o,r;const{children:l}=this;for(let d=0,h=l.length;d<h;d++){if(i=l[d],r=i.__.mask,r){o&&(ci(this,o,t,n,s,a,void 0,!0),s=n=null),a=i.__.opacity,hi=!1,"path"===r||"clipping-path"===r?(a<1?(o="opacity-path",n||(n=ui(t))):(o="path",t.save()),i.__clip(n||t,e)):(o="grayscale"===r?"grayscale":"alpha",s||(s=ui(t)),n||(n=ui(t)),i.__render(s,e)),"clipping"!==r&&"clipping-path"!==r||di(i,e)||i.__render(t,e);continue}const h=1===a&&i.__.__blendMode;h&&ci(this,o,t,n,s,a,void 0,!1),di(i,e)||i.__render(n||t,e),h&&ci(this,o,t,n,s,a,h,!1)}ci(this,o,t,n,s,a,void 0,!0)};const gi=">)]}%!?,.:;'\"》)」〉』〗】〕}┐>’”!?,、。:;‰",pi=gi+"_#~&*+\\=|≮≯≈≠=…",_i=new RegExp([[19968,40959],[13312,19903],[131072,173791],[173824,177983],[177984,178207],[178208,183983],[183984,191471],[196608,201551],[201552,205743],[11904,12031],[12032,12255],[12272,12287],[12288,12351],[12736,12783],[12800,13055],[13056,13311],[63744,64255],[65072,65103],[127488,127743],[194560,195103]].map(([t,e])=>`[\\u${t.toString(16)}-\\u${e.toString(16)}]`).join("|"));function wi(t){const e={};return t.split("").forEach(t=>e[t]=!0),e}const yi=wi("ABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789abcdefghijklmnopqrstuvwxyz"),mi=wi("{[(<'\"《(「〈『〖【〔{┌<‘“=¥¥$€££¢¢"),xi=wi(gi),vi=wi(pi),bi=wi("- —/~|┆·");var Bi;!function(t){t[t.Letter=0]="Letter",t[t.Single=1]="Single",t[t.Before=2]="Before",t[t.After=3]="After",t[t.Symbol=4]="Symbol",t[t.Break=5]="Break"}(Bi||(Bi={}));const{Letter:ki,Single:Si,Before:Ri,After:Ei,Symbol:Li,Break:Ai}=Bi;function Ti(t){return yi[t]?ki:bi[t]?Ai:mi[t]?Ri:xi[t]?Ei:vi[t]?Li:_i.test(t)?Si:ki}const Ci={trimRight(t){const{words:e}=t;let i,s=0,n=e.length;for(let a=n-1;a>-1&&(i=e[a].data[0]," "===i.char);a--)s++,t.width-=i.width;s&&e.splice(n-s,s)}};function Pi(t,e,i){switch(e){case"title":return i?t.toUpperCase():t;case"upper":return t.toUpperCase();case"lower":return t.toLowerCase();default:return t}}const{trimRight:Mi}=Ci,{Letter:Oi,Single:Wi,Before:Di,After:Fi,Symbol:Ii,Break:Ui}=Bi;let Yi,Xi,zi,Ni,ji,qi,Gi,Hi,Vi,Qi,Ji,Zi,$i,Ki,ts,es,is,ss=[];function ns(t,e){Vi&&!Hi&&(Hi=Vi),Yi.data.push({char:t,width:e}),zi+=e}function as(){Ni+=zi,Yi.width=zi,Xi.words.push(Yi),Yi={data:[]},zi=0}function os(){Ki&&(ts.paraNumber++,Xi.paraStart=!0,Ki=!1),Vi&&(Xi.startCharSize=Hi,Xi.endCharSize=Vi,Hi=0),Xi.width=Ni,es.width?Mi(Xi):is&&rs(),ss.push(Xi),Xi={words:[]},Ni=0}function rs(){Ni>(ts.maxWidth||0)&&(ts.maxWidth=Ni)}const{top:ls,right:ds,bottom:hs,left:cs}=F;function us(t,e,i){const{bounds:s,rows:n}=t;s[e]+=i;for(let t=0;t<n.length;t++)n[t][e]+=i}const fs={getDrawData:function(t,i){A(t)||(t=String(t));let s=0,n=0,a=i.__getInput("width")||0,o=i.__getInput("height")||0;const{textDecoration:r,__font:l,__padding:d}=i;d&&(a?(s=d[cs],a-=d[ds]+d[cs]):i.autoSizeAlign||(s=d[cs]),o?(n=d[ls],o-=d[ls]+d[hs]):i.autoSizeAlign||(n=d[ls]));const h={bounds:{x:s,y:n,width:a,height:o},rows:[],paraNumber:0,font:e.canvas.font=l};return function(t,i,s){ts=t,ss=t.rows,es=t.bounds,is=!es.width&&!s.autoSizeAlign;const{__letterSpacing:n,paraIndent:a,textCase:o}=s,{canvas:r}=e,{width:l,height:d}=es;if(l||d||n||"none"!==o){const t="none"!==s.textWrap,e="break"===s.textWrap;Ki=!0,Ji=null,Hi=Gi=Vi=zi=Ni=0,Yi={data:[]},Xi={words:[]},n&&(i=[...i]);for(let s=0,d=i.length;s<d;s++)qi=i[s],"\n"===qi?(zi&&as(),Xi.paraEnd=!0,os(),Ki=!0):(Qi=Ti(qi),Qi===Oi&&"none"!==o&&(qi=Pi(qi,o,!zi)),Gi=r.measureText(qi).width,n&&(n<0&&(Vi=Gi),Gi+=n),Zi=Qi===Wi&&(Ji===Wi||Ji===Oi)||Ji===Wi&&Qi!==Fi,$i=!(Qi!==Di&&Qi!==Wi||Ji!==Ii&&Ji!==Fi),ji=Ki&&a?l-a:l,t&&l&&Ni+zi+Gi>ji&&(e?(zi&&as(),Ni&&os()):($i||($i=Qi===Oi&&Ji==Fi),Zi||$i||Qi===Ui||Qi===Di||Qi===Wi||zi+Gi>ji?(zi&&as(),Ni&&os()):Ni&&os()))," "===qi&&!0!==Ki&&Ni+zi===0||(Qi===Ui?(" "===qi&&zi&&as(),ns(qi,Gi),as()):Zi||$i?(zi&&as(),ns(qi,Gi)):ns(qi,Gi)),Ji=Qi);zi&&as(),Ni&&os(),ss.length>0&&(ss[ss.length-1].paraEnd=!0)}else i.split("\n").forEach(t=>{ts.paraNumber++,Ni=r.measureText(t).width,ss.push({x:a||0,text:t,width:Ni,paraStart:!0}),is&&rs()})}(h,t,i),d&&function(t,e,i,s,n){if(!s&&i.autoSizeAlign)switch(i.textAlign){case"left":us(e,"x",t[cs]);break;case"right":us(e,"x",-t[ds])}if(!n&&i.autoSizeAlign)switch(i.verticalAlign){case"top":us(e,"y",t[ls]);break;case"bottom":us(e,"y",-t[hs])}}(d,h,i,a,o),function(t,e){const{rows:i,bounds:s}=t,n=i.length,{__lineHeight:a,__baseLine:o,__letterSpacing:r,__clipText:l,textAlign:d,verticalAlign:h,paraSpacing:c,autoSizeAlign:u}=e;let{x:f,y:g,width:p,height:_}=s,w=a*n+(c?c*(t.paraNumber-1):0),y=o;if(l&&w>_)w=Math.max(_,a),n>1&&(t.overflow=n);else if(_||u)switch(h){case"middle":g+=(_-w)/2;break;case"bottom":g+=_-w}y+=g;let m,x,v,b=p||u?p:t.maxWidth;for(let o=0,h=n;o<h;o++){if(m=i[o],m.x=f,m.width<p||m.width>p&&!l)switch(d){case"center":m.x+=(b-m.width)/2;break;case"right":m.x+=b-m.width}m.paraStart&&c&&o>0&&(y+=c),m.y=y,y+=a,t.overflow>o&&y>w&&(m.isOverflow=!0,t.overflow=o+1),x=m.x,v=m.width,r<0&&(m.width<0?(v=-m.width+e.fontSize+r,x-=v,v+=e.fontSize):v-=r),x<s.x&&(s.x=x),v>s.width&&(s.width=v),l&&p&&p<v&&(m.isOverflow=!0,t.overflow||(t.overflow=i.length))}s.y=g,s.height=w}(h,i),function(t,e,i){const{rows:s}=t,{textAlign:n,paraIndent:a,letterSpacing:o}=e;let r,l,d,h,c,u;s.forEach(t=>{t.words&&(d=a&&t.paraStart?a:0,u=t.words.length,l=i&&("justify"===n||"both"===n)&&u>1?(i-t.width-d)/(u-1):0,h=o||t.isOverflow?0:l>.01?1:2,t.isOverflow&&!o&&(t.textMode=!0),2===h?(t.x+=d,function(t){t.text="",t.words.forEach(e=>{e.data.forEach(e=>{t.text+=e.char})})}(t)):(t.x+=d,r=t.x,t.data=[],t.words.forEach((e,i)=>{1===h?(c={char:"",x:r},r=function(t,e,i){return t.forEach(t=>{i.char+=t.char,e+=t.width}),e}(e.data,r,c),(t.isOverflow||" "!==c.char)&&t.data.push(c)):r=function(t,e,i,s){return t.forEach(t=>{(s||" "!==t.char)&&(t.x=e,i.push(t)),e+=t.width}),e}(e.data,r,t.data,t.isOverflow),!l||t.paraEnd&&"both"!==n||i===u-1||(r+=l,t.width+=l)})),t.words=null)})}(h,i,a),h.overflow&&function(t,i,s,n){if(!n)return;const{rows:a,overflow:o}=t;let{textOverflow:r}=i;if(a.splice(o),r&&"show"!==r){let t,l;"hide"===r?r="":"ellipsis"===r&&(r="...");const d=r?e.canvas.measureText(r).width:0,h=s+n-d;("none"===i.textWrap?a:[a[o-1]]).forEach(e=>{if(e.isOverflow&&e.data){let i=e.data.length-1;for(let s=i;s>-1&&(t=e.data[s],l=t.x+t.width,!(s===i&&l<h));s--){if(l<h&&" "!==t.char||!s){e.data.splice(s+1),e.width-=t.width;break}e.width-=t.width}e.width+=d,e.data.push({char:r,x:l}),e.textMode&&function(t){t.text="",t.data.forEach(e=>{t.text+=e.char}),t.data=null}(e)}})}}(h,i,s,a),"none"!==r&&function(t,e){let i,s=0;const{fontSize:n,textDecoration:a}=e;switch(t.decorationHeight=n/11,R(a)?(i=a.type,a.color&&(t.decorationColor=j.string(a.color)),a.offset&&(s=Math.min(.3*n,Math.max(a.offset,.15*-n)))):i=a,i){case"under":t.decorationY=[.15*n+s];break;case"delete":t.decorationY=[.35*-n];break;case"under-delete":t.decorationY=[.15*n+s,.35*-n]}}(h,i),h}};const gs={string:function(t,e){const i=I(e)&&e<1;if(A(t)){if(!i||!j.object)return t;t=j.object(t)}let s=L(t.a)?1:t.a;i&&(s*=e);const n=t.r+","+t.g+","+t.b;return 1===s?"rgb("+n+")":"rgba("+n+","+s+")"}};Object.assign(Q,fs),Object.assign(j,gs),Object.assign(N,Qt),Object.assign(z,We),Object.assign(q,ti),Object.assign(H,li);const{setPoint:ps,addPoint:_s,toBounds:ws}=J;const ys={syncExport(t,e,i){let s;G.running=!0;try{const n=$.fileType(e),a=e.includes(".");i=$.getExportOptions(i);const{toURL:o}=K,{download:r}=K.origin;if("json"===n)a&&r(o(JSON.stringify(t.toJSON(i.json)),"text"),e),s={data:!!a||t.toJSON(i.json)};else if("svg"===n)a&&r(o(t.toSVG(),"svg"),e),s={data:!!a||t.toSVG()};else{let n,a,o=1,r=1;const{worldTransform:l,isLeafer:d,leafer:h,isFrame:c}=t,{slice:u,clip:f,trim:g,screenshot:p,padding:_,onCanvas:w}=i,y=tt(i.smooth)?!h||h.config.smooth:i.smooth,m=i.contextSettings||(h?h.config.contextSettings:void 0),x=d&&p&&tt(i.fill)?t.fill:i.fill,v=$.isOpaqueImage(e)||x,b=new et;if(p)n=!0===p?d?h.canvas.bounds:t.worldRenderBounds:p;else{let e=i.relative||(d?"inner":"local");switch(o=l.scaleX,r=l.scaleY,e){case"inner":b.set(l);break;case"local":b.set(l).divide(t.localTransform),o/=t.scaleX,r/=t.scaleY;break;case"world":o=1,r=1;break;case"page":e=h||t;default:b.set(l).divide(t.getTransform(e));const i=e.worldTransform;o/=o/i.scaleX,r/=r/i.scaleY}n=t.getBounds("render",e)}const B={scaleX:1,scaleY:1};it.getScaleData(i.scale,i.size,n,B);let k=i.pixelRatio||1,{x:S,y:R,width:E,height:L}=new Z(n).scale(B.scaleX,B.scaleY);f&&(S+=f.x,R+=f.y,E=f.width,L=f.height);const A={exporting:!0,matrix:b.scale(1/B.scaleX,1/B.scaleY).invert().translate(-S,-R).withScale(1/o*B.scaleX,1/r*B.scaleY)};let T,C=st.canvas({width:Math.floor(E),height:Math.floor(L),pixelRatio:k,smooth:y,contextSettings:m});u&&(T=t,T.__worldOpacity=0,t=h||t,A.bounds=C.bounds),C.save();const P=c&&!tt(x),M=t.get("fill");if(P&&(t.fill=""),K.render(t,C,A),P&&(t.fill=M),C.restore(),T&&T.__updateWorldOpacity(),g){a=function(t){const{width:e,height:i}=t.view,{data:s}=t.context.getImageData(0,0,e,i);let n,a,o,r=0;for(let t=0;t<s.length;t+=4)0!==s[t+3]&&(n=r%e,a=(r-n)/e,o?_s(o,n,a):ps(o={},n,a)),r++;const l=new Z;return o&&(ws(o,l),l.scale(1/t.pixelRatio).ceil()),l}(C);const t=C,{width:e,height:i}=a,s={x:0,y:0,width:e,height:i,pixelRatio:k};C=st.canvas(s),C.copyWorld(t,a,s),t.destroy()}if(_){const[t,e,i,s]=it.fourNumber(_),n=C,{width:a,height:o}=n;C=st.canvas({width:a+s+e,height:o+t+i,pixelRatio:k}),C.copyWorld(n,n.bounds,{x:s,y:t,width:a,height:o}),n.destroy()}v&&C.fillWorld(C.bounds,x||"#FFFFFF","destination-over"),w&&w(C);s={data:"canvas"===e?C:C.export(e,i),width:C.pixelWidth,height:C.pixelHeight,renderBounds:n,trimBounds:a};const O=h&&h.app;O&&O.canvasManager&&O.canvasManager.clearRecycled()}}catch(t){s={data:"",error:t}}return G.running=!1,s},export(t,e,i){return G.running=!0,function(t){ms||(ms=new nt);return new Promise(e=>{ms.add(()=>ht(this,void 0,void 0,function*(){return yield t(e)}),{parallel:!1})})}(s=>new Promise(n=>{const a=()=>ht(this,void 0,void 0,function*(){if(!at.isComplete)return K.requestRender(a);const o=G.syncExport(t,e,i);o.data instanceof Promise&&(o.data=yield o.data),s(o),n()});t.updateLayout(),xs(t);const{leafer:o}=t;o?o.waitViewCompleted(a):a()}))}};let ms;function xs(t){t.__.__needComputePaint&&t.__.__computePaint(),t.isBranch&&t.children.forEach(t=>xs(t))}const vs=ot.prototype,bs=rt.get("@leafer-in/export");vs.export=function(t,e){const{quality:i,blob:s}=$.getExportOptions(e);return t.includes(".")?this.saveAs(t,i):s?this.toBlob(t,i):this.toDataURL(t,i)},vs.toBlob=function(t,e){return new Promise(i=>{K.origin.canvasToBolb(this.view,t,e).then(t=>{i(t)}).catch(t=>{bs.error(t),i(null)})})},vs.toDataURL=function(t,e){return K.origin.canvasToDataURL(this.view,t,e)},vs.saveAs=function(t,e){return new Promise(i=>{K.origin.canvasSaveAs(this.view,t,e).then(()=>{i(!0)}).catch(t=>{bs.error(t),i(!1)})})},lt.add("export"),Object.assign(G,ys),dt.prototype.export=function(t,e){return G.export(this,t,e)},dt.prototype.syncExport=function(t,e){return G.syncExport(this,t,e)},Object.assign(n,{interaction:(t,e,i,s)=>new X(t,e,i,s),hitCanvas:(t,e)=>new ct(t,e),hitCanvasManager:()=>new Y});export{Rt as Layouter,ct as LeaferCanvas,Tt as Picker,Lt as Renderer,Ct as Selector,pt as Watcher,gt as useCanvas};
1
+ import{LeaferCanvasBase as t,Platform as e,canvasPatch as i,FileHelper as s,Creator as n,LeaferImage as a,defineKey as r,LeafList as o,DataHelper as l,RenderEvent as d,ChildEvent as h,WatchEvent as c,PropertyEvent as u,LeafHelper as f,BranchHelper as g,LeafBoundsHelper as p,Bounds as _,isArray as w,Debug as y,LeafLevelList as m,LayoutEvent as v,Run as x,ImageManager as b,ResizeEvent as B,BoundsHelper as S,Plugin as k,isObject as R,FourNumberHelper as E,Matrix as L,isUndefined as T,isString as A,getMatrixData as C,MatrixHelper as O,MathHelper as P,AlignHelper as W,PointHelper as M,ImageEvent as D,AroundHelper as F,Direction4 as I,isNumber as U}from"@leafer/core";export*from"@leafer/core";export{LeaferImage}from"@leafer/core";import{writeFileSync as Y}from"fs";import{HitCanvasManager as X,InteractionBase as z}from"@leafer-ui/core";export*from"@leafer-ui/core";import{PaintImage as N,Paint as j,ColorConvert as q,PaintGradient as G,Export as H,Effect as V,Group as Q,TextConvert as J,TwoPointBoundsHelper as Z,Bounds as $,FileHelper as K,Platform as tt,isUndefined as et,Matrix as it,MathHelper as st,Creator as nt,TaskProcessor as at,Resource as rt,LeaferCanvasBase as ot,Debug as lt,Plugin as dt,UI as ht}from"@leafer-ui/draw";function ct(t,e,i,s){return new(i||(i=Promise))(function(n,a){function r(t){try{l(s.next(t))}catch(t){a(t)}}function o(t){try{l(s.throw(t))}catch(t){a(t)}}function l(t){var e;t.done?n(t.value):(e=t.value,e instanceof i?e:new i(function(t){t(e)})).then(r,o)}l((s=s.apply(t,e||[])).next())})}"function"==typeof SuppressedError&&SuppressedError;class ut extends t{get allowBackgroundColor(){return!0}init(){this.__createView(),this.__createContext(),this.resize(this.config),e.roundRectPatch&&(this.context.__proto__.roundRect=null,i(this.context.__proto__))}__createView(){this.view=e.origin.createCanvas(1,1)}updateViewSize(){const{width:t,height:e,pixelRatio:i}=this;this.view.width=Math.ceil(t*i),this.view.height=Math.ceil(e*i),this.clientBounds=this.bounds}}const{mineType:ft,fileType:gt}=s;function pt(t,i){if(e.canvasType=t,!e.origin){if("skia"===t){const{Canvas:t,loadImage:s}=i;e.origin={createCanvas:(e,i,s)=>new t(e,i,s),canvasToDataURL:(t,e,i)=>t.toDataURLSync(e,{quality:i}),canvasToBolb:(t,e,i)=>t.toBuffer(e,{quality:i}),canvasSaveAs:(t,e,i)=>t.saveAs(e,{quality:i}),download(t,e){},loadImage:t=>s(e.image.getRealURL(t))},e.roundRectPatch=!0}else if("napi"===t){const{Canvas:t,loadImage:s}=i;e.origin={createCanvas:(e,i,s)=>new t(e,i,s),canvasToDataURL:(t,e,i)=>t.toDataURL(ft(e),i),canvasToBolb:(t,e,i)=>ct(this,void 0,void 0,function*(){return t.toBuffer(ft(e),i)}),canvasSaveAs:(t,e,i)=>ct(this,void 0,void 0,function*(){return Y(e,t.toBuffer(ft(gt(e)),i))}),download(t,e){},loadImage:t=>s(e.image.getRealURL(t))}}e.ellipseToCurve=!0,e.event={stopDefault(t){},stopNow(t){},stop(t){}},e.canvas=n.canvas()}}Object.assign(n,{canvas:(t,e)=>new ut(t,e),image:t=>new a(t)}),e.name="node",e.backgrounder=!0,e.requestRender=function(t){setTimeout(t,16)},r(e,"devicePixelRatio",{get:()=>1}),e.conicGradientSupport=!0;class _t{get childrenChanged(){return this.hasAdd||this.hasRemove||this.hasVisible}get updatedList(){if(this.hasRemove){const t=new o;return this.__updatedList.list.forEach(e=>{e.leafer&&t.add(e)}),t}return this.__updatedList}constructor(t,e){this.totalTimes=0,this.config={},this.__updatedList=new o,this.target=t,e&&(this.config=l.default(e,this.config)),this.__listenEvents()}start(){this.disabled||(this.running=!0)}stop(){this.running=!1}disable(){this.stop(),this.__removeListenEvents(),this.disabled=!0}update(){this.changed=!0,this.running&&this.target.emit(d.REQUEST)}__onAttrChange(t){this.__updatedList.add(t.target),this.update()}__onChildEvent(t){t.type===h.ADD?(this.hasAdd=!0,this.__pushChild(t.child)):(this.hasRemove=!0,this.__updatedList.add(t.parent)),this.update()}__pushChild(t){this.__updatedList.add(t),t.isBranch&&this.__loopChildren(t)}__loopChildren(t){const{children:e}=t;for(let t=0,i=e.length;t<i;t++)this.__pushChild(e[t])}__onRquestData(){this.target.emitEvent(new c(c.DATA,{updatedList:this.updatedList})),this.__updatedList=new o,this.totalTimes++,this.changed=this.hasVisible=this.hasRemove=this.hasAdd=!1}__listenEvents(){this.__eventIds=[this.target.on_([[u.CHANGE,this.__onAttrChange,this],[[h.ADD,h.REMOVE],this.__onChildEvent,this],[c.REQUEST,this.__onRquestData,this]])]}__removeListenEvents(){this.target.off_(this.__eventIds)}destroy(){this.target&&(this.stop(),this.__removeListenEvents(),this.target=this.__updatedList=null)}}const{updateAllMatrix:wt,updateBounds:yt,updateChange:mt}=f,{pushAllChildBranch:vt,pushAllParent:xt}=g;const{worldBounds:bt}=p;class Bt{constructor(t){this.updatedBounds=new _,this.beforeBounds=new _,this.afterBounds=new _,w(t)&&(t=new o(t)),this.updatedList=t}setBefore(){this.beforeBounds.setListWithFn(this.updatedList.list,bt)}setAfter(){this.afterBounds.setListWithFn(this.updatedList.list,bt),this.updatedBounds.setList([this.beforeBounds,this.afterBounds])}merge(t){this.updatedList.addList(t.updatedList.list),this.beforeBounds.add(t.beforeBounds),this.afterBounds.add(t.afterBounds),this.updatedBounds.add(t.updatedBounds)}destroy(){this.updatedList=null}}const{updateAllMatrix:St,updateAllChange:kt}=f,Rt=y.get("Layouter");class Et{constructor(t,e){this.totalTimes=0,this.config={},this.__levelList=new m,this.target=t,e&&(this.config=l.default(e,this.config)),this.__listenEvents()}start(){this.disabled||(this.running=!0)}stop(){this.running=!1}disable(){this.stop(),this.__removeListenEvents(),this.disabled=!0}layout(){if(this.layouting||!this.running)return;const{target:t}=this;this.times=0;try{t.emit(v.START),this.layoutOnce(),t.emitEvent(new v(v.END,this.layoutedBlocks,this.times))}catch(t){Rt.error(t)}this.layoutedBlocks=null}layoutAgain(){this.layouting?this.waitAgain=!0:this.layoutOnce()}layoutOnce(){return this.layouting?Rt.warn("layouting"):this.times>3?Rt.warn("layout max times"):(this.times++,this.totalTimes++,this.layouting=!0,this.target.emit(c.REQUEST),this.totalTimes>1?this.partLayout():this.fullLayout(),this.layouting=!1,void(this.waitAgain&&(this.waitAgain=!1,this.layoutOnce())))}partLayout(){var t;if(!(null===(t=this.__updatedList)||void 0===t?void 0:t.length))return;const e=x.start("PartLayout"),{target:i,__updatedList:s}=this,{BEFORE:n,LAYOUT:a,AFTER:r}=v,o=this.getBlocks(s);o.forEach(t=>t.setBefore()),i.emitEvent(new v(n,o,this.times)),this.extraBlock=null,s.sort(),function(t,e){let i;t.list.forEach(t=>{i=t.__layout,e.without(t)&&!i.proxyZoom&&(i.matrixChanged?(wt(t,!0),e.add(t),t.isBranch&&vt(t,e),xt(t,e)):i.boundsChanged&&(e.add(t),t.isBranch&&(t.__tempNumber=0),xt(t,e)))})}(s,this.__levelList),function(t){let e,i,s;t.sort(!0),t.levels.forEach(n=>{e=t.levelMap[n];for(let t=0,n=e.length;t<n;t++){if(i=e[t],i.isBranch&&i.__tempNumber){s=i.children;for(let t=0,e=s.length;t<e;t++)s[t].isBranch||yt(s[t])}yt(i)}})}(this.__levelList),function(t){t.list.forEach(mt)}(s),this.extraBlock&&o.push(this.extraBlock),o.forEach(t=>t.setAfter()),i.emitEvent(new v(a,o,this.times)),i.emitEvent(new v(r,o,this.times)),this.addBlocks(o),this.__levelList.reset(),this.__updatedList=null,x.end(e)}fullLayout(){const t=x.start("FullLayout"),{target:e}=this,{BEFORE:i,LAYOUT:s,AFTER:n}=v,a=this.getBlocks(new o(e));e.emitEvent(new v(i,a,this.times)),Et.fullLayout(e),a.forEach(t=>{t.setAfter()}),e.emitEvent(new v(s,a,this.times)),e.emitEvent(new v(n,a,this.times)),this.addBlocks(a),x.end(t)}static fullLayout(t){St(t,!0),t.isBranch?g.updateBounds(t):f.updateBounds(t),kt(t)}addExtra(t){if(!this.__updatedList.has(t)){const{updatedList:e,beforeBounds:i}=this.extraBlock||(this.extraBlock=new Bt([]));e.length?i.add(t.__world):i.set(t.__world),e.add(t)}}createBlock(t){return new Bt(t)}getBlocks(t){return[this.createBlock(t)]}addBlocks(t){this.layoutedBlocks?this.layoutedBlocks.push(...t):this.layoutedBlocks=t}__onReceiveWatchData(t){this.__updatedList=t.data.updatedList}__listenEvents(){this.__eventIds=[this.target.on_([[v.REQUEST,this.layout,this],[v.AGAIN,this.layoutAgain,this],[c.DATA,this.__onReceiveWatchData,this]])]}__removeListenEvents(){this.target.off_(this.__eventIds)}destroy(){this.target&&(this.stop(),this.__removeListenEvents(),this.target=this.config=null)}}const Lt=y.get("Renderer");class Tt{get needFill(){return!(this.canvas.allowBackgroundColor||!this.config.fill)}constructor(t,e,i){this.FPS=60,this.totalTimes=0,this.times=0,this.config={usePartRender:!0,maxFPS:120},this.frames=[],this.target=t,this.canvas=e,i&&(this.config=l.default(i,this.config)),this.__listenEvents()}start(){this.running=!0,this.update(!1)}stop(){this.running=!1}update(t=!0){this.changed||(this.changed=t),this.__requestRender()}requestLayout(){this.target.emit(v.REQUEST)}checkRender(){if(this.running){const{target:t}=this;t.isApp&&(t.emit(d.CHILD_START,t),t.children.forEach(t=>{t.renderer.FPS=this.FPS,t.renderer.checkRender()}),t.emit(d.CHILD_END,t)),this.changed&&this.canvas.view&&this.render(),this.target.emit(d.NEXT)}}render(t){if(!this.running||!this.canvas.view)return this.update();const{target:e}=this;this.times=0,this.totalBounds=new _,Lt.log(e.innerName,"---\x3e");try{this.emitRender(d.START),this.renderOnce(t),this.emitRender(d.END,this.totalBounds),b.clearRecycled()}catch(t){this.rendering=!1,Lt.error(t)}Lt.log("-------------|")}renderAgain(){this.rendering?this.waitAgain=!0:this.renderOnce()}renderOnce(t){if(this.rendering)return Lt.warn("rendering");if(this.times>3)return Lt.warn("render max times");if(this.times++,this.totalTimes++,this.rendering=!0,this.changed=!1,this.renderBounds=new _,this.renderOptions={},t)this.emitRender(d.BEFORE),t();else{if(this.requestLayout(),this.ignore)return void(this.ignore=this.rendering=!1);this.emitRender(d.BEFORE),this.config.usePartRender&&this.totalTimes>1?this.partRender():this.fullRender()}this.emitRender(d.RENDER,this.renderBounds,this.renderOptions),this.emitRender(d.AFTER,this.renderBounds,this.renderOptions),this.updateBlocks=null,this.rendering=!1,this.waitAgain&&(this.waitAgain=!1,this.renderOnce())}partRender(){const{canvas:t,updateBlocks:e}=this;e&&(this.mergeBlocks(),e.forEach(e=>{t.bounds.hit(e)&&!e.isEmpty()&&this.clipRender(e)}))}clipRender(t){const e=x.start("PartRender"),{canvas:i}=this,s=t.getIntersect(i.bounds),n=new _(s);i.save(),s.spread(Tt.clipSpread).ceil(),i.clearWorld(s),i.clipWorld(s),this.__render(s,n),i.restore(),x.end(e)}fullRender(){const t=x.start("FullRender"),{canvas:e}=this;e.save(),e.clear(),this.__render(e.bounds),e.restore(),x.end(t)}__render(t,i){const{canvas:s}=this,n=t.includes(this.target.__world),a=n?{includes:n}:{bounds:t,includes:n};this.needFill&&s.fillWorld(t,this.config.fill),y.showRepaint&&y.drawRepaint(s,t),e.render(this.target,s,a),this.renderBounds=i=i||t,this.renderOptions=a,this.totalBounds.isEmpty()?this.totalBounds=i:this.totalBounds.add(i),s.updateRender(i)}addBlock(t){this.updateBlocks||(this.updateBlocks=[]),this.updateBlocks.push(t)}mergeBlocks(){const{updateBlocks:t}=this;if(t){const e=new _;e.setList(t),t.length=0,t.push(e)}}__requestRender(){const t=this.target;if(this.requestTime||!t)return;if(t.parentApp)return t.parentApp.requestRender(!1);this.requestTime=this.frameTime||Date.now();const i=()=>{const t=1e3/((this.frameTime=Date.now())-this.requestTime),{maxFPS:s}=this.config;if(s&&t>s)return e.requestRender(i);const{frames:n}=this;n.length>30&&n.shift(),n.push(t),this.FPS=Math.round(n.reduce((t,e)=>t+e,0)/n.length),this.requestTime=0,this.checkRender()};e.requestRender(i)}__onResize(t){if(!this.canvas.unreal){if(t.bigger||!t.samePixelRatio){const{width:e,height:i}=t.old;if(!new _(0,0,e,i).includes(this.target.__world)||this.needFill||!t.samePixelRatio)return this.addBlock(this.canvas.bounds),void this.target.forceUpdate("surface")}this.addBlock(new _(0,0,1,1)),this.update()}}__onLayoutEnd(t){t.data&&t.data.map(t=>{let e;t.updatedList&&t.updatedList.list.some(t=>(e=!t.__world.width||!t.__world.height,e&&(t.isLeafer||Lt.tip(t.innerName,": empty"),e=!t.isBranch||t.isBranchLeaf),e)),this.addBlock(e?this.canvas.bounds:t.updatedBounds)})}emitRender(t,e,i){this.target.emitEvent(new d(t,this.times,e,i))}__listenEvents(){this.__eventIds=[this.target.on_([[d.REQUEST,this.update,this],[v.END,this.__onLayoutEnd,this],[d.AGAIN,this.renderAgain,this],[B.RESIZE,this.__onResize,this]])]}__removeListenEvents(){this.target.off_(this.__eventIds)}destroy(){this.target&&(this.stop(),this.__removeListenEvents(),this.config={},this.target=this.canvas=null)}}Tt.clipSpread=10;const{hitRadiusPoint:At}=S;class Ct{constructor(t,e){this.target=t,this.selector=e}getByPoint(t,e,i){e||(e=0),i||(i={});const s=i.through||!1,n=i.ignoreHittable||!1,a=i.target||this.target;this.exclude=i.exclude||null,this.point={x:t.x,y:t.y,radiusX:e,radiusY:e},this.findList=new o(i.findList),i.findList||this.hitBranch(a.isBranchLeaf?{children:[a]}:a);const{list:r}=this.findList,l=this.getBestMatchLeaf(r,i.bottomList,n),d=n?this.getPath(l):this.getHitablePath(l);return this.clear(),s?{path:d,target:l,throughPath:r.length?this.getThroughPath(r):d}:{path:d,target:l}}hitPoint(t,e,i){return!!this.getByPoint(t,e,i).target}getBestMatchLeaf(t,e,i){const s=this.findList=new o;if(t.length){let e;const{x:n,y:a}=this.point,r={x:n,y:a,radiusX:0,radiusY:0};for(let n=0,a=t.length;n<a;n++)if(e=t[n],(i||f.worldHittable(e))&&(this.hitChild(e,r),s.length)){if(e.isBranchLeaf&&t.some(t=>t!==e&&f.hasParent(t,e))){s.reset();break}return s.list[0]}}if(e)for(let t=0,i=e.length;t<i;t++)if(this.hitChild(e[t].target,this.point,e[t].proxy),s.length)return s.list[0];return i?t[0]:t.find(t=>f.worldHittable(t))}getPath(t){const e=new o;for(;t;)e.add(t),t=t.parent;return this.target&&e.add(this.target),e}getHitablePath(t){const e=this.getPath(t&&t.hittable?t:null);let i,s=new o;for(let t=e.list.length-1;t>-1&&(i=e.list[t],i.__.hittable)&&(s.addAt(i,0),i.__.hitChildren&&(!i.isLeafer||"draw"!==i.mode));t--);return s}getThroughPath(t){const e=new o,i=[];for(let e=t.length-1;e>-1;e--)i.push(this.getPath(t[e]));let s,n,a;for(let t=0,r=i.length;t<r;t++){s=i[t],n=i[t+1];for(let t=0,i=s.length;t<i&&(a=s.list[t],!n||!n.has(a));t++)e.add(a)}return e}hitBranch(t){this.eachFind(t.children,t.__onlyHitMask)}eachFind(t,e){let i,s;const{point:n}=this;for(let a=t.length-1;a>-1;a--)i=t[a],!i.__.visible||e&&!i.__.mask||(s=!!i.__.hitRadius||At(i.__world,n),i.isBranch?(s||i.__ignoreHitWorld)&&(i.topChildren&&this.eachFind(i.topChildren,!1),this.eachFind(i.children,i.__onlyHitMask),i.isBranchLeaf&&this.hitChild(i,n)):s&&this.hitChild(i,n))}hitChild(t,e,i){if((!this.exclude||!this.exclude.has(t))&&t.__hitWorld(e)){const{parent:s}=t;if(s&&s.__hasMask&&!t.__.mask){let i,n=[];const{children:a}=s;for(let s=0,r=a.length;s<r;s++)if(i=a[s],i.__.mask&&n.push(i),i===t){if(n&&!n.every(t=>t.__hitWorld(e)))return;break}}this.findList.add(i||t)}}clear(){this.point=null,this.findList=null,this.exclude=null}destroy(){this.clear()}}class Ot{constructor(t,e){this.config={},e&&(this.config=l.default(e,this.config)),this.picker=new Ct(this.target=t,this),this.finder=n.finder&&n.finder()}getByPoint(t,i,s){const{target:n,picker:a}=this;return e.backgrounder&&n&&n.updateLayout(),a.getByPoint(t,i,s)}hitPoint(t,e,i){return this.picker.hitPoint(t,e,i)}getBy(t,e,i,s){return this.finder?this.finder.getBy(t,e,i,s):k.need("find")}destroy(){this.picker.destroy(),this.finder&&this.finder.destroy()}}function Pt(t,e){const i=t.__,{rows:s,decorationY:n}=i.__textDrawData;let a;i.__isPlacehold&&i.placeholderColor&&(e.fillStyle=i.placeholderColor);for(let t=0,i=s.length;t<i;t++)a=s[t],a.text?e.fillText(a.text,a.x,a.y):a.data&&a.data.forEach(t=>{e.fillText(t.char,t.x,a.y)});if(n){const{decorationColor:t,decorationHeight:a}=i.__textDrawData;t&&(e.fillStyle=t),s.forEach(t=>n.forEach(i=>e.fillRect(t.x,t.y+i,t.width,a)))}}function Wt(t,e){t.__.__font?Pt(t,e):t.__.windingRule?e.fill(t.__.windingRule):e.fill()}function Mt(t,e,i){switch(e.__.strokeAlign){case"center":Dt(t,1,e,i);break;case"inside":Ft(t,"inside",e,i);break;case"outside":e.__.__fillAfterStroke?Dt(t,2,e,i):Ft(t,"outside",e,i)}}function Dt(t,e,i,s){const n=i.__;R(t)?Ut(t,e,!0,i,s):(s.setStroke(t,n.__strokeWidth*e,n),It(i,s))}function Ft(t,e,i,s){const n=s.getSameCanvas(!0,!0);n.font=i.__.__font,Dt(t,2,i,n),n.blendMode="outside"===e?"destination-out":"destination-in",Pt(i,n),n.blendMode="normal",f.copyCanvasByWorld(i,s,n),n.recycle(i.__nowWorld)}function It(t,e){let i,s=t.__.__textDrawData;const{rows:n,decorationY:a}=s;for(let t=0,s=n.length;t<s;t++)i=n[t],i.text?e.strokeText(i.text,i.x,i.y):i.data&&i.data.forEach(t=>{e.strokeText(t.char,t.x,i.y)});if(a){const{decorationHeight:t}=s;n.forEach(i=>a.forEach(s=>e.strokeRect(i.x,i.y+s,i.width,t)))}}function Ut(t,e,i,s,n){let a;const r=s.__,{__hasMultiStrokeStyle:o}=r;o||n.setStroke(void 0,r.__strokeWidth*e,r);for(let l=0,d=t.length;l<d;l++)if(a=t[l],(!a.image||!N.checkImage(s,n,a,!1))&&a.style){if(o){const{strokeStyle:t}=a;t?n.setStroke(a.style,r.__getRealStrokeWidth(t)*e,r,t):n.setStroke(a.style,r.__strokeWidth*e,r)}else n.strokeStyle=a.style;a.blendMode?(n.saveBlendMode(a.blendMode),i?It(s,n):n.stroke(),n.restoreBlendMode()):i?It(s,n):n.stroke()}}function Yt(t,e,i){const s=e.__;if(s.__strokeWidth)if(s.__font)Mt(t,e,i);else switch(s.strokeAlign){case"center":Xt(t,1,e,i);break;case"inside":!function(t,e,i){i.save(),i.clipUI(e),Xt(t,2,e,i),i.restore()}(t,e,i);break;case"outside":!function(t,e,i){const s=e.__;if(s.__fillAfterStroke)Xt(t,2,e,i);else{const{renderBounds:n}=e.__layout,a=i.getSameCanvas(!0,!0);e.__drawRenderPath(a),Xt(t,2,e,a),a.clipUI(s),a.clearWorld(n),f.copyCanvasByWorld(e,i,a),a.recycle(e.__nowWorld)}}(t,e,i)}}function Xt(t,e,i,s){const n=i.__;R(t)?Ut(t,e,!1,i,s):(s.setStroke(t,n.__strokeWidth*e,n),s.stroke()),n.__useArrow&&j.strokeArrow(t,i,s)}Object.assign(n,{watcher:(t,e)=>new _t(t,e),layouter:(t,e)=>new Et(t,e),renderer:(t,e,i)=>new Tt(t,e,i),selector:(t,e)=>new Ot(t,e)}),e.layout=Et.fullLayout,e.render=function(t,e,i){const s=Object.assign(Object.assign({},i),{topRendering:!0});i.topList=new o,t.__render(e,i),i.topList.length&&i.topList.forEach(t=>t.__render(e,s))};const{getSpread:zt,copyAndSpread:Nt,toOuterOf:jt,getOuterOf:qt,getByMove:Gt,move:Ht,getIntersectData:Vt}=S,Qt={};let Jt;const{stintSet:Zt}=l,{hasTransparent:$t}=q;function Kt(t,e,i){if(!R(e)||!1===e.visible||0===e.opacity)return;let s;const{boxBounds:n}=i.__layout;switch(e.type){case"image":s=N.image(i,t,e,n,!Jt||!Jt[e.url]);break;case"linear":s=G.linearGradient(e,n);break;case"radial":s=G.radialGradient(e,n);break;case"angular":s=G.conicGradient(e,n);break;case"solid":const{type:a,color:r,opacity:o}=e;s={type:a,style:q.string(r,o)};break;default:T(e.r)||(s={type:"solid",style:q.string(e)})}if(s){if(A(s.style)&&$t(s.style)&&(s.isTransparent=!0),e.style){if(0===e.style.strokeWidth)return;s.strokeStyle=e.style}e.editing&&(s.editing=e.editing),e.blendMode&&(s.blendMode=e.blendMode)}return s}const te={compute:function(t,e){const i=e.__,s=[];let n,a,r,o=i.__input[t];w(o)||(o=[o]),Jt=N.recycleImage(t,i);for(let i,n=0,a=o.length;n<a;n++)(i=Kt(t,o[n],e))&&(s.push(i),i.strokeStyle&&(r||(r=1),i.strokeStyle.strokeWidth&&(r=Math.max(r,i.strokeStyle.strokeWidth))));i["_"+t]=s.length?s:void 0,s.length&&s.every(t=>t.isTransparent)&&(s.some(t=>t.image)&&(n=!0),a=!0),"fill"===t?(Zt(i,"__isAlphaPixelFill",n),Zt(i,"__isTransparentFill",a)):(Zt(i,"__isAlphaPixelStroke",n),Zt(i,"__isTransparentStroke",a),Zt(i,"__hasMultiStrokeStyle",r))},fill:function(t,e,i){i.fillStyle=t,Wt(e,i)},fills:function(t,e,i){let s;for(let n=0,a=t.length;n<a;n++){if(s=t[n],s.image){if(N.checkImage(e,i,s,!e.__.__font))continue;if(!s.style){!n&&s.image.isPlacehold&&e.drawImagePlaceholder(i,s.image);continue}}if(i.fillStyle=s.style,s.transform||s.scaleFixed){if(i.save(),s.transform&&i.transform(s.transform),s.scaleFixed){const{scaleX:t,scaleY:n}=e.getRenderScaleData(!0);(!0===s.scaleFixed||"zoom-in"===s.scaleFixed&&t>1&&n>1)&&i.scale(1/t,1/n)}s.blendMode&&(i.blendMode=s.blendMode),Wt(e,i),i.restore()}else s.blendMode?(i.saveBlendMode(s.blendMode),Wt(e,i),i.restoreBlendMode()):Wt(e,i)}},fillPathOrText:Wt,fillText:Pt,stroke:Yt,strokes:function(t,e,i){Yt(t,e,i)},strokeText:Mt,drawTextStroke:It,shape:function(t,i,s){const n=i.getSameCanvas(),a=i.bounds,r=t.__nowWorld,o=t.__layout,l=t.__nowWorldShapeBounds||(t.__nowWorldShapeBounds={});let d,h,c,u,f,g;jt(o.strokeSpread?(Nt(Qt,o.boxBounds,o.strokeSpread),Qt):o.boxBounds,r,l);let{scaleX:p,scaleY:_}=t.getRenderScaleData(!0);if(a.includes(l))g=n,d=f=l,h=r;else{let n;if(e.fullImageShadow)n=l;else{const t=o.renderShapeSpread?zt(a,E.swapAndScale(o.renderShapeSpread,p,_)):a;n=Vt(t,l)}u=a.getFitMatrix(n);let{a:w,d:y}=u;u.a<1&&(g=i.getSameCanvas(),t.__renderShape(g,s),p*=w,_*=y),f=qt(l,u),d=Gt(f,-u.e,-u.f),h=qt(r,u),Ht(h,-u.e,-u.f);const m=s.matrix;m?(c=new L(u),c.multiply(m),w*=m.scaleX,y*=m.scaleY):c=u,c.withScale(w,y),s=Object.assign(Object.assign({},s),{matrix:c})}return t.__renderShape(n,s),{canvas:n,matrix:c,fitMatrix:u,bounds:d,renderBounds:h,worldCanvas:g,shapeBounds:f,scaleX:p,scaleY:_}}};let ee={},ie=C();const{get:se,rotateOfOuter:ne,translate:ae,scaleOfOuter:re,multiplyParent:oe,scale:le,rotate:de,skew:he}=O;function ce(t,e,i,s,n,a,r){const o=se();ae(o,e.x+i,e.y+s),le(o,n,a),r&&ne(o,{x:e.x+e.width/2,y:e.y+e.height/2},r),t.transform=o}function ue(t,e,i,s,n,a,r,o,l,d){const h=se();ge(h,e,i,s,n,a,r,o),l&&(ie.a=l,ie.d=d,oe(h,ie)),t.transform=h}function fe(t,e,i,s,n,a,r,o,l,d,h,c){const u=se();if(c)ge(u,e,n,a,r,o,l,d);else{if(l)if("center"===h)ne(u,{x:i/2,y:s/2},l);else switch(de(u,l),l){case 90:ae(u,s,0);break;case 180:ae(u,i,s);break;case 270:ae(u,0,i)}ee.x=e.x+n,ee.y=e.y+a,ae(u,ee.x,ee.y),r&&re(u,ee,r,o)}t.transform=u}function ge(t,e,i,s,n,a,r,o){r&&de(t,r),o&&he(t,o.x,o.y),n&&le(t,n,a),ae(t,e.x+i,e.y+s)}const{get:pe,translate:_e}=O,we=new _,ye={},me={};function ve(t,e,i,s){const{changeful:n,sync:a,scaleFixed:r}=i;n&&(t.changeful=n),a&&(t.sync=a),r&&(t.scaleFixed=r),t.data=xe(i,s,e)}function xe(t,e,i){t.padding&&(e=we.set(e).shrink(t.padding)),"strench"===t.mode&&(t.mode="stretch");let{width:s,height:n}=i;const{opacity:a,mode:r,align:o,offset:l,scale:d,size:h,rotation:c,skew:u,clipSize:f,repeat:g,gap:p,filters:_}=t,w=e.width===s&&e.height===n,y={mode:r},m="center"!==o&&(c||0)%180==90;let v,x;switch(S.set(me,0,0,m?n:s,m?s:n),r&&"cover"!==r&&"fit"!==r?((d||h)&&(P.getScaleData(d,h,i,ye),v=ye.scaleX,x=ye.scaleY),(o||p||g)&&(v&&S.scale(me,v,x,!0),o&&W.toPoint(o,me,e,me,!0,!0))):w&&!c||(v=x=S.getFitScale(e,me,"fit"!==r),S.put(e,i,o,v,!1,me),S.scale(me,v,x,!0)),l&&M.move(me,l),r){case"stretch":w||(s=e.width,n=e.height);break;case"normal":case"clip":if(me.x||me.y||v||f||c||u){let t,i;f&&(t=e.width/f.width,i=e.height/f.height),ue(y,e,me.x,me.y,v,x,c,u,t,i),t&&(v=v?v*t:v,x=x?x*i:i)}break;case"repeat":(!w||v||c||u)&&fe(y,e,s,n,me.x,me.y,v,x,c,u,o,t.freeTransform),g||(y.repeat="repeat");const i=R(g);(p||i)&&(y.gap=function(t,e,i,s,n){let a,r;R(t)?(a=t.x,r=t.y):a=r=t;return{x:be(a,i,n.width,e&&e.x),y:be(r,s,n.height,e&&e.y)}}(p,i&&g,me.width,me.height,e));break;default:v&&ce(y,e,me.x,me.y,v,x,c)}return y.transform||(e.x||e.y)&&(y.transform=pe(),_e(y.transform,e.x,e.y)),v&&"stretch"!==r&&(y.scaleX=v,y.scaleY=x),y.width=s,y.height=n,a&&(y.opacity=a),_&&(y.filters=_),g&&(y.repeat=A(g)?"x"===g?"repeat-x":"repeat-y":"repeat"),y}function be(t,e,i,s){const n=A(t)||s?(s?i-s*e:i%e)/((s||Math.floor(i/e))-1):t;return"auto"===t&&n<0?0:n}let Be,Se=new _;const{isSame:ke}=S;function Re(t,e,i,s,n,a){if("fill"===e&&!t.__.__naturalWidth){const e=t.__;if(e.__naturalWidth=s.width/e.pixelRatio,e.__naturalHeight=s.height/e.pixelRatio,e.__autoSide)return t.forceUpdate("width"),t.__proxyData&&(t.setProxyAttr("width",e.width),t.setProxyAttr("height",e.height)),!1}return n.data||ve(n,s,i,a),!0}function Ee(t,e){Ae(t,D.LOAD,e)}function Le(t,e){Ae(t,D.LOADED,e)}function Te(t,e,i){e.error=i,t.forceUpdate("surface"),Ae(t,D.ERROR,e)}function Ae(t,e,i){t.hasEvent(e)&&t.emitEvent(new D(e,i))}function Ce(t,e){const{leafer:i}=t;i&&i.viewReady&&(i.renderer.ignore=e)}const{get:Oe,scale:Pe,copy:We}=O,{floor:Me,ceil:De,max:Fe,abs:Ie}=Math;function Ue(t,i,s){let{scaleX:n,scaleY:a}=t.getRenderScaleData(!0,i.scaleFixed);const r=n+"-"+a+"-"+s;if(i.patternId===r||t.destroyed)return!1;{const{image:o,data:l}=i;let d,h,{width:c,height:u,scaleX:f,scaleY:g,transform:p,repeat:_,gap:w}=l;n*=s,a*=s,f&&(f=Ie(f),g=Ie(g),h=Oe(),We(h,p),Pe(h,1/f,1/g),n*=f,a*=g),c*=n,u*=a;const y=c*u;if(!_&&y>e.image.maxCacheSize)return!1;let m=e.image.maxPatternSize;if(o.isSVG){const t=c/o.width;t>1&&(d=t/De(t))}else{const t=o.width*o.height;m>t&&(m=t)}y>m&&(d=Math.sqrt(y/m)),d&&(n/=d,a/=d,c/=d,u/=d),f&&(n/=f,a/=g);const v=w&&w.x*n,x=w&&w.y*a;if(p||1!==n||1!==a){const t=c+(v||0),e=u+(x||0);n/=t/Fe(Me(t),1),a/=e/Fe(Me(e),1),h||(h=Oe(),p&&We(h,p)),Pe(h,1/n,1/a)}const b=o.getCanvas(c,u,l.opacity,l.filters,v,x,t.leafer&&t.leafer.config.smooth),B=o.getPattern(b,_||e.origin.noRepeat||"no-repeat",h,i);return i.style=B,i.patternId=r,!0}}const Ye={image:function(t,e,i,s,n){let a,r;const o=b.get(i);return Be&&i===Be.paint&&ke(s,Be.boxBounds)?a=Be.leafPaint:(a={type:i.type,image:o},o.hasAlphaPixel&&(a.isTransparent=!0),Be=o.use>1?{leafPaint:a,paint:i,boxBounds:Se.set(s)}:null),(n||o.loading)&&(r={image:o,attrName:e,attrValue:i}),o.ready?(Re(t,e,i,o,a,s),n&&(Ee(t,r),Le(t,r))):o.error?n&&Te(t,r,o.error):(n&&(Ce(t,!0),Ee(t,r)),a.loadId=o.load(()=>{Ce(t,!1),t.destroyed||(Re(t,e,i,o,a,s)&&(o.hasAlphaPixel&&(t.__layout.hitCanvasChanged=!0),t.forceUpdate("surface")),Le(t,r)),a.loadId=void 0},e=>{Ce(t,!1),Te(t,r,e),a.loadId=void 0}),t.placeholderColor&&(t.placeholderDelay?setTimeout(()=>{o.ready||(o.isPlacehold=!0,t.forceUpdate("surface"))},t.placeholderDelay):o.isPlacehold=!0)),a},checkImage:function(t,i,s,n){const{scaleX:a,scaleY:r}=t.getRenderScaleData(!0,s.scaleFixed),{pixelRatio:o}=i,{data:l}=s;if(!l||s.patternId===a+"-"+r+"-"+o&&!H.running)return!1;if(n)if(l.repeat)n=!1;else if(!(s.changeful||"miniapp"===e.name&&B.isResizing(t)||H.running)){let{width:t,height:i}=l;t*=a*o,i*=r*o,l.scaleX&&(t*=l.scaleX,i*=l.scaleY),n=t*i>e.image.maxCacheSize}return n?(t.__.__isFastShadow&&(i.fillStyle=s.style||"#000",i.fill()),function(t,e,i,s){e.save(),e.clipUI(t),i.blendMode&&(e.blendMode=i.blendMode);s.opacity&&(e.opacity*=s.opacity);s.transform&&e.transform(s.transform);e.drawImage(i.image.getFull(s.filters),0,0,s.width,s.height),e.restore()}(t,i,s,l),!0):(!s.style||s.sync||H.running?Ue(t,s,o):s.patternTask||(s.patternTask=b.patternTasker.add(()=>ct(this,void 0,void 0,function*(){s.patternTask=null,i.bounds.hit(t.__nowWorld)&&Ue(t,s,o),t.forceUpdate("surface")}),300)),!1)},createPattern:Ue,recycleImage:function(t,e){const i=e["_"+t];if(w(i)){let s,n,a,r,o;for(let l=0,d=i.length;l<d;l++)s=i[l],n=s.image,o=n&&n.url,o&&(a||(a={}),a[o]=!0,b.recycle(n),n.loading&&(r||(r=e.__input&&e.__input[t]||[],w(r)||(r=[r])),n.unload(i[l].loadId,!r.some(t=>t.url===o))));return a}return null},createData:ve,getPatternData:xe,fillOrFitMode:ce,clipMode:ue,repeatMode:fe},{toPoint:Xe}=F,{hasTransparent:ze}=q,Ne={},je={};function qe(t,e,i,s){if(i){let n,a,r,o;for(let t=0,l=i.length;t<l;t++)n=i[t],A(n)?(r=t/(l-1),a=q.string(n,s)):(r=n.offset,a=q.string(n.color,s)),e.addColorStop(r,a),!o&&ze(a)&&(o=!0);o&&(t.isTransparent=!0)}}const{getAngle:Ge,getDistance:He}=M,{get:Ve,rotateOfOuter:Qe,scaleOfOuter:Je}=O,{toPoint:Ze}=F,$e={},Ke={};function ti(t,e,i,s,n){let a;const{width:r,height:o}=t;if(r!==o||s){const t=Ge(e,i);a=Ve(),n?(Je(a,e,r/o*(s||1),1),Qe(a,e,t+90)):(Je(a,e,1,r/o*(s||1)),Qe(a,e,t))}return a}const{getDistance:ei}=M,{toPoint:ii}=F,si={},ni={};const ai={linearGradient:function(t,i){let{from:s,to:n,type:a,opacity:r}=t;Xe(s||"top",i,Ne),Xe(n||"bottom",i,je);const o=e.canvas.createLinearGradient(Ne.x,Ne.y,je.x,je.y),l={type:a,style:o};return qe(l,o,t.stops,r),l},radialGradient:function(t,i){let{from:s,to:n,type:a,opacity:r,stretch:o}=t;Ze(s||"center",i,$e),Ze(n||"bottom",i,Ke);const l=e.canvas.createRadialGradient($e.x,$e.y,0,$e.x,$e.y,He($e,Ke)),d={type:a,style:l};qe(d,l,t.stops,r);const h=ti(i,$e,Ke,o,!0);return h&&(d.transform=h),d},conicGradient:function(t,i){let{from:s,to:n,type:a,opacity:r,stretch:o}=t;ii(s||"center",i,si),ii(n||"bottom",i,ni);const l=e.conicGradientSupport?e.canvas.createConicGradient(0,si.x,si.y):e.canvas.createRadialGradient(si.x,si.y,0,si.x,si.y,ei(si,ni)),d={type:a,style:l};qe(d,l,t.stops,r);const h=ti(i,si,ni,o||1,e.conicGradientRotate90);return h&&(d.transform=h),d},getTransform:ti},{copy:ri,move:oi,toOffsetOutBounds:li}=S,{max:di}=Math,hi={},ci=new L,ui={};function fi(t,e){let i,s,n,a,r=0,o=0,l=0,d=0;return e.forEach(t=>{i=t.x||0,s=t.y||0,n=t.spread||0,a=1.5*(t.blur||0),r=di(r,n+a-s),o=di(o,n+a+i),l=di(l,n+a+s),d=di(d,n+a-i)}),r===o&&o===l&&l===d?r:[r,o,l,d]}function gi(t,i,s){const{shapeBounds:n}=s;let a,r;e.fullImageShadow?(ri(hi,t.bounds),oi(hi,i.x-n.x,i.y-n.y),a=t.bounds,r=hi):(a=n,r=i),t.copyWorld(s.canvas,a,r)}const{toOffsetOutBounds:pi}=S,_i={};const wi=fi;const yi={shadow:function(t,e,i){let s,n;const{__nowWorld:a}=t,{shadow:r}=t.__,{worldCanvas:o,bounds:l,renderBounds:d,shapeBounds:h,scaleX:c,scaleY:u}=i,g=e.getSameCanvas(),p=r.length-1;li(l,ui,d),r.forEach((r,_)=>{let w=1;if(r.scaleFixed){const t=Math.abs(a.scaleX);t>1&&(w=1/t)}g.setWorldShadow(ui.offsetX+(r.x||0)*c*w,ui.offsetY+(r.y||0)*u*w,(r.blur||0)*c*w,q.string(r.color)),n=V.getShadowTransform(t,g,i,r,ui,w),n&&g.setTransform(n),gi(g,ui,i),n&&g.resetTransform(),s=d,r.box&&(g.restore(),g.save(),o&&(g.copyWorld(g,d,a,"copy"),s=a),o?g.copyWorld(o,a,a,"destination-out"):g.copyWorld(i.canvas,h,l,"destination-out")),f.copyCanvasByWorld(t,e,g,s,r.blendMode),p&&_<p&&g.clearWorld(s)}),g.recycle(s)},innerShadow:function(t,e,i){let s,n;const{__nowWorld:a}=t,{innerShadow:r}=t.__,{worldCanvas:o,bounds:l,renderBounds:d,shapeBounds:h,scaleX:c,scaleY:u}=i,g=e.getSameCanvas(),p=r.length-1;pi(l,_i,d),r.forEach((r,_)=>{let w=1;if(r.scaleFixed){const t=Math.abs(a.scaleX);t>1&&(w=1/t)}g.save(),g.setWorldShadow(_i.offsetX+(r.x||0)*c*w,_i.offsetY+(r.y||0)*u*w,(r.blur||0)*c*w),n=V.getShadowTransform(t,g,i,r,_i,w,!0),n&&g.setTransform(n),gi(g,_i,i),g.restore(),o?(g.copyWorld(g,d,a,"copy"),g.copyWorld(o,a,a,"source-out"),s=a):(g.copyWorld(i.canvas,h,l,"source-out"),s=d),g.fillWorld(s,q.string(r.color),"source-in"),f.copyCanvasByWorld(t,e,g,s,r.blendMode),p&&_<p&&g.clearWorld(s)}),g.recycle(s)},blur:function(t,e,i){const{blur:s}=t.__;i.setWorldBlur(s*t.__nowWorld.a),i.copyWorldToInner(e,t.__nowWorld,t.__layout.renderBounds),i.filter="none"},backgroundBlur:function(t,e,i){},getShadowRenderSpread:fi,getShadowTransform:function(t,e,i,s,n,a,r){if(s.spread){const i=1+2*s.spread/t.__layout.strokeBounds.width*a*(r?-1:1);return ci.set().scaleOfOuter({x:(n.x+n.width/2)*e.pixelRatio,y:(n.y+n.height/2)*e.pixelRatio},i),ci}},isTransformShadow(t){},getInnerShadowSpread:wi},{excludeRenderBounds:mi}=p;let vi;function xi(t,e,i,s,n,a,r,o){switch(e){case"grayscale":vi||(vi=!0,n.useGrayscaleAlpha(t.__nowWorld));case"alpha":!function(t,e,i,s,n,a){const r=t.__nowWorld;i.resetTransform(),i.opacity=1,i.useMask(s,r),a&&s.recycle(r);Bi(t,e,i,1,n,a)}(t,i,s,n,r,o);break;case"opacity-path":Bi(t,i,s,a,r,o);break;case"path":o&&i.restore()}}function bi(t){return t.getSameCanvas(!1,!0)}function Bi(t,e,i,s,n,a){const r=t.__nowWorld;e.resetTransform(),e.opacity=s,e.copyWorld(i,r,void 0,n),a?i.recycle(r):i.clearWorld(r)}Q.prototype.__renderMask=function(t,e){let i,s,n,a,r,o;const{children:l}=this;for(let d=0,h=l.length;d<h;d++){if(i=l[d],o=i.__.mask,o){r&&(xi(this,r,t,n,s,a,void 0,!0),s=n=null),"clipping"!==o&&"clipping-path"!==o||mi(i,e)||i.__render(t,e),a=i.__.opacity,vi=!1,"path"===o||"clipping-path"===o?(a<1?(r="opacity-path",n||(n=bi(t))):(r="path",t.save()),i.__clip(n||t,e)):(r="grayscale"===o?"grayscale":"alpha",s||(s=bi(t)),n||(n=bi(t)),i.__render(s,e));continue}const h=1===a&&i.__.__blendMode;h&&xi(this,r,t,n,s,a,void 0,!1),mi(i,e)||i.__render(n||t,e),h&&xi(this,r,t,n,s,a,h,!1)}xi(this,r,t,n,s,a,void 0,!0)};const Si=">)]}%!?,.:;'\"》)」〉』〗】〕}┐>’”!?,、。:;‰",ki=Si+"_#~&*+\\=|≮≯≈≠=…",Ri=new RegExp([[19968,40959],[13312,19903],[131072,173791],[173824,177983],[177984,178207],[178208,183983],[183984,191471],[196608,201551],[201552,205743],[11904,12031],[12032,12255],[12272,12287],[12288,12351],[12736,12783],[12800,13055],[13056,13311],[63744,64255],[65072,65103],[127488,127743],[194560,195103]].map(([t,e])=>`[\\u${t.toString(16)}-\\u${e.toString(16)}]`).join("|"));function Ei(t){const e={};return t.split("").forEach(t=>e[t]=!0),e}const Li=Ei("ABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789abcdefghijklmnopqrstuvwxyz"),Ti=Ei("{[(<'\"《(「〈『〖【〔{┌<‘“=¥¥$€££¢¢"),Ai=Ei(Si),Ci=Ei(ki),Oi=Ei("- —/~|┆·");var Pi;!function(t){t[t.Letter=0]="Letter",t[t.Single=1]="Single",t[t.Before=2]="Before",t[t.After=3]="After",t[t.Symbol=4]="Symbol",t[t.Break=5]="Break"}(Pi||(Pi={}));const{Letter:Wi,Single:Mi,Before:Di,After:Fi,Symbol:Ii,Break:Ui}=Pi;function Yi(t){return Li[t]?Wi:Oi[t]?Ui:Ti[t]?Di:Ai[t]?Fi:Ci[t]?Ii:Ri.test(t)?Mi:Wi}const Xi={trimRight(t){const{words:e}=t;let i,s=0,n=e.length;for(let a=n-1;a>-1&&(i=e[a].data[0]," "===i.char);a--)s++,t.width-=i.width;s&&e.splice(n-s,s)}};function zi(t,e,i){switch(e){case"title":return i?t.toUpperCase():t;case"upper":return t.toUpperCase();case"lower":return t.toLowerCase();default:return t}}const{trimRight:Ni}=Xi,{Letter:ji,Single:qi,Before:Gi,After:Hi,Symbol:Vi,Break:Qi}=Pi;let Ji,Zi,$i,Ki,ts,es,is,ss,ns,as,rs,os,ls,ds,hs,cs,us,fs=[];function gs(t,e){ns&&!ss&&(ss=ns),Ji.data.push({char:t,width:e}),$i+=e}function ps(){Ki+=$i,Ji.width=$i,Zi.words.push(Ji),Ji={data:[]},$i=0}function _s(){ds&&(hs.paraNumber++,Zi.paraStart=!0,ds=!1),ns&&(Zi.startCharSize=ss,Zi.endCharSize=ns,ss=0),Zi.width=Ki,cs.width?Ni(Zi):us&&ws(),fs.push(Zi),Zi={words:[]},Ki=0}function ws(){Ki>(hs.maxWidth||0)&&(hs.maxWidth=Ki)}const{top:ys,right:ms,bottom:vs,left:xs}=I;function bs(t,e,i){const{bounds:s,rows:n}=t;s[e]+=i;for(let t=0;t<n.length;t++)n[t][e]+=i}const Bs={getDrawData:function(t,i){A(t)||(t=String(t));let s=0,n=0,a=i.__getInput("width")||0,r=i.__getInput("height")||0;const{textDecoration:o,__font:l,__padding:d}=i;d&&(a?(s=d[xs],a-=d[ms]+d[xs]):i.autoSizeAlign||(s=d[xs]),r?(n=d[ys],r-=d[ys]+d[vs]):i.autoSizeAlign||(n=d[ys]));const h={bounds:{x:s,y:n,width:a,height:r},rows:[],paraNumber:0,font:e.canvas.font=l};return function(t,i,s){hs=t,fs=t.rows,cs=t.bounds,us=!cs.width&&!s.autoSizeAlign;const{__letterSpacing:n,paraIndent:a,textCase:r}=s,{canvas:o}=e,{width:l,height:d}=cs;if(l||d||n||"none"!==r){const t="none"!==s.textWrap,e="break"===s.textWrap;ds=!0,rs=null,ss=is=ns=$i=Ki=0,Ji={data:[]},Zi={words:[]},n&&(i=[...i]);for(let s=0,d=i.length;s<d;s++)es=i[s],"\n"===es?($i&&ps(),Zi.paraEnd=!0,_s(),ds=!0):(as=Yi(es),as===ji&&"none"!==r&&(es=zi(es,r,!$i)),is=o.measureText(es).width,n&&(n<0&&(ns=is),is+=n),os=as===qi&&(rs===qi||rs===ji)||rs===qi&&as!==Hi,ls=!(as!==Gi&&as!==qi||rs!==Vi&&rs!==Hi),ts=ds&&a?l-a:l,t&&l&&Ki+$i+is>ts&&(e?($i&&ps(),Ki&&_s()):(ls||(ls=as===ji&&rs==Hi),os||ls||as===Qi||as===Gi||as===qi||$i+is>ts?($i&&ps(),Ki&&_s()):Ki&&_s()))," "===es&&!0!==ds&&Ki+$i===0||(as===Qi?(" "===es&&$i&&ps(),gs(es,is),ps()):os||ls?($i&&ps(),gs(es,is)):gs(es,is)),rs=as);$i&&ps(),Ki&&_s(),fs.length>0&&(fs[fs.length-1].paraEnd=!0)}else i.split("\n").forEach(t=>{hs.paraNumber++,Ki=o.measureText(t).width,fs.push({x:a||0,text:t,width:Ki,paraStart:!0}),us&&ws()})}(h,t,i),d&&function(t,e,i,s,n){if(!s&&i.autoSizeAlign)switch(i.textAlign){case"left":bs(e,"x",t[xs]);break;case"right":bs(e,"x",-t[ms])}if(!n&&i.autoSizeAlign)switch(i.verticalAlign){case"top":bs(e,"y",t[ys]);break;case"bottom":bs(e,"y",-t[vs])}}(d,h,i,a,r),function(t,e){const{rows:i,bounds:s}=t,n=i.length,{__lineHeight:a,__baseLine:r,__letterSpacing:o,__clipText:l,textAlign:d,verticalAlign:h,paraSpacing:c,autoSizeAlign:u}=e;let{x:f,y:g,width:p,height:_}=s,w=a*n+(c?c*(t.paraNumber-1):0),y=r;if(l&&w>_)w=Math.max(_,a),n>1&&(t.overflow=n);else if(_||u)switch(h){case"middle":g+=(_-w)/2;break;case"bottom":g+=_-w}y+=g;let m,v,x,b=p||u?p:t.maxWidth;for(let r=0,h=n;r<h;r++){if(m=i[r],m.x=f,m.width<p||m.width>p&&!l)switch(d){case"center":m.x+=(b-m.width)/2;break;case"right":m.x+=b-m.width}m.paraStart&&c&&r>0&&(y+=c),m.y=y,y+=a,t.overflow>r&&y>w&&(m.isOverflow=!0,t.overflow=r+1),v=m.x,x=m.width,o<0&&(m.width<0?(x=-m.width+e.fontSize+o,v-=x,x+=e.fontSize):x-=o),v<s.x&&(s.x=v),x>s.width&&(s.width=x),l&&p&&p<x&&(m.isOverflow=!0,t.overflow||(t.overflow=i.length))}s.y=g,s.height=w}(h,i),function(t,e,i){const{rows:s}=t,{textAlign:n,paraIndent:a,letterSpacing:r}=e;let o,l,d,h,c,u;s.forEach(t=>{t.words&&(d=a&&t.paraStart?a:0,u=t.words.length,l=i&&("justify"===n||"both"===n)&&u>1?(i-t.width-d)/(u-1):0,h=r||t.isOverflow?0:l>.01?1:2,t.isOverflow&&!r&&(t.textMode=!0),2===h?(t.x+=d,function(t){t.text="",t.words.forEach(e=>{e.data.forEach(e=>{t.text+=e.char})})}(t)):(t.x+=d,o=t.x,t.data=[],t.words.forEach((e,i)=>{1===h?(c={char:"",x:o},o=function(t,e,i){return t.forEach(t=>{i.char+=t.char,e+=t.width}),e}(e.data,o,c),(t.isOverflow||" "!==c.char)&&t.data.push(c)):o=function(t,e,i,s){return t.forEach(t=>{(s||" "!==t.char)&&(t.x=e,i.push(t)),e+=t.width}),e}(e.data,o,t.data,t.isOverflow),!l||t.paraEnd&&"both"!==n||i===u-1||(o+=l,t.width+=l)})),t.words=null)})}(h,i,a),h.overflow&&function(t,i,s,n){if(!n)return;const{rows:a,overflow:r}=t;let{textOverflow:o}=i;if(a.splice(r),o&&"show"!==o){let t,l;"hide"===o?o="":"ellipsis"===o&&(o="...");const d=o?e.canvas.measureText(o).width:0,h=s+n-d;("none"===i.textWrap?a:[a[r-1]]).forEach(e=>{if(e.isOverflow&&e.data){let i=e.data.length-1;for(let s=i;s>-1&&(t=e.data[s],l=t.x+t.width,!(s===i&&l<h));s--){if(l<h&&" "!==t.char||!s){e.data.splice(s+1),e.width-=t.width;break}e.width-=t.width}e.width+=d,e.data.push({char:o,x:l}),e.textMode&&function(t){t.text="",t.data.forEach(e=>{t.text+=e.char}),t.data=null}(e)}})}}(h,i,s,a),"none"!==o&&function(t,e){let i,s=0;const{fontSize:n,textDecoration:a}=e;switch(t.decorationHeight=n/11,R(a)?(i=a.type,a.color&&(t.decorationColor=q.string(a.color)),a.offset&&(s=Math.min(.3*n,Math.max(a.offset,.15*-n)))):i=a,i){case"under":t.decorationY=[.15*n+s];break;case"delete":t.decorationY=[.35*-n];break;case"under-delete":t.decorationY=[.15*n+s,.35*-n]}}(h,i),h}};const Ss={string:function(t,e){if(!t)return"#000";const i=U(e)&&e<1;if(A(t)){if(!i||!q.object)return t;t=q.object(t)}let s=T(t.a)?1:t.a;i&&(s*=e);const n=t.r+","+t.g+","+t.b;return 1===s?"rgb("+n+")":"rgba("+n+","+s+")"}};Object.assign(J,Bs),Object.assign(q,Ss),Object.assign(j,te),Object.assign(N,Ye),Object.assign(G,ai),Object.assign(V,yi);const{setPoint:ks,addPoint:Rs,toBounds:Es}=Z;const Ls={syncExport(t,e,i){let s;H.running=!0;try{const n=K.fileType(e),a=e.includes(".");i=K.getExportOptions(i);const{toURL:r}=tt,{download:o}=tt.origin;if("json"===n)a&&o(r(JSON.stringify(t.toJSON(i.json)),"text"),e),s={data:!!a||t.toJSON(i.json)};else if("svg"===n)a&&o(r(t.toSVG(),"svg"),e),s={data:!!a||t.toSVG()};else{let n,a,r=1,o=1;const{worldTransform:l,isLeafer:d,leafer:h,isFrame:c}=t,{slice:u,clip:f,trim:g,screenshot:p,padding:_,onCanvas:w}=i,y=et(i.smooth)?!h||h.config.smooth:i.smooth,m=i.contextSettings||(h?h.config.contextSettings:void 0),v=d&&p&&et(i.fill)?t.fill:i.fill,x=K.isOpaqueImage(e)||v,b=new it;if(p)n=!0===p?d?h.canvas.bounds:t.worldRenderBounds:p;else{let e=i.relative||(d?"inner":"local");switch(r=l.scaleX,o=l.scaleY,e){case"inner":b.set(l);break;case"local":b.set(l).divide(t.localTransform),r/=t.scaleX,o/=t.scaleY;break;case"world":r=1,o=1;break;case"page":e=h||t;default:b.set(l).divide(t.getTransform(e));const i=e.worldTransform;r/=r/i.scaleX,o/=o/i.scaleY}n=t.getBounds("render",e)}const B={scaleX:1,scaleY:1};st.getScaleData(i.scale,i.size,n,B);let S=i.pixelRatio||1,{x:k,y:R,width:E,height:L}=new $(n).scale(B.scaleX,B.scaleY);f&&(k+=f.x,R+=f.y,E=f.width,L=f.height);const T={exporting:!0,matrix:b.scale(1/B.scaleX,1/B.scaleY).invert().translate(-k,-R).withScale(1/r*B.scaleX,1/o*B.scaleY)};let A,C=nt.canvas({width:Math.floor(E),height:Math.floor(L),pixelRatio:S,smooth:y,contextSettings:m});u&&(A=t,A.__worldOpacity=0,t=h||t,T.bounds=C.bounds),C.save();const O=c&&!et(v),P=t.get("fill");if(O&&(t.fill=""),tt.render(t,C,T),O&&(t.fill=P),C.restore(),A&&A.__updateWorldOpacity(),g){a=function(t){const{width:e,height:i}=t.view,{data:s}=t.context.getImageData(0,0,e,i);let n,a,r,o=0;for(let t=0;t<s.length;t+=4)0!==s[t+3]&&(n=o%e,a=(o-n)/e,r?Rs(r,n,a):ks(r={},n,a)),o++;const l=new $;return r&&(Es(r,l),l.scale(1/t.pixelRatio).ceil()),l}(C);const t=C,{width:e,height:i}=a,s={x:0,y:0,width:e,height:i,pixelRatio:S};C=nt.canvas(s),C.copyWorld(t,a,s),t.destroy()}if(_){const[t,e,i,s]=st.fourNumber(_),n=C,{width:a,height:r}=n;C=nt.canvas({width:a+s+e,height:r+t+i,pixelRatio:S}),C.copyWorld(n,n.bounds,{x:s,y:t,width:a,height:r}),n.destroy()}x&&C.fillWorld(C.bounds,v||"#FFFFFF","destination-over"),w&&w(C);s={data:"canvas"===e?C:C.export(e,i),width:C.pixelWidth,height:C.pixelHeight,renderBounds:n,trimBounds:a};const W=h&&h.app;W&&W.canvasManager&&W.canvasManager.clearRecycled()}}catch(t){s={data:"",error:t}}return H.running=!1,s},export(t,e,i){return H.running=!0,function(t){Ts||(Ts=new at);return new Promise(e=>{Ts.add(()=>ct(this,void 0,void 0,function*(){return yield t(e)}),{parallel:!1})})}(s=>new Promise(n=>{const a=()=>ct(this,void 0,void 0,function*(){if(!rt.isComplete)return tt.requestRender(a);const r=H.syncExport(t,e,i);r.data instanceof Promise&&(r.data=yield r.data),s(r),n()});t.updateLayout(),As(t);const{leafer:r}=t;r?r.waitViewCompleted(a):a()}))}};let Ts;function As(t){t.__.__needComputePaint&&t.__.__computePaint(),t.isBranch&&t.children.forEach(t=>As(t))}const Cs=ot.prototype,Os=lt.get("@leafer-in/export");Cs.export=function(t,e){const{quality:i,blob:s}=K.getExportOptions(e);return t.includes(".")?this.saveAs(t,i):s?this.toBlob(t,i):this.toDataURL(t,i)},Cs.toBlob=function(t,e){return new Promise(i=>{tt.origin.canvasToBolb(this.view,t,e).then(t=>{i(t)}).catch(t=>{Os.error(t),i(null)})})},Cs.toDataURL=function(t,e){return tt.origin.canvasToDataURL(this.view,t,e)},Cs.saveAs=function(t,e){return new Promise(i=>{tt.origin.canvasSaveAs(this.view,t,e).then(()=>{i(!0)}).catch(t=>{Os.error(t),i(!1)})})},dt.add("export"),Object.assign(H,Ls),ht.prototype.export=function(t,e){return H.export(this,t,e)},ht.prototype.syncExport=function(t,e){return H.syncExport(this,t,e)},Object.assign(n,{interaction:(t,e,i,s)=>new z(t,e,i,s),hitCanvas:(t,e)=>new ut(t,e),hitCanvasManager:()=>new X});export{Et as Layouter,ut as LeaferCanvas,Ct as Picker,Tt as Renderer,Ot as Selector,_t as Watcher,pt as useCanvas};
2
2
  //# sourceMappingURL=node.esm.min.js.map