@leafer-ui/node 1.10.0 → 1.11.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/dist/node.cjs CHANGED
@@ -891,30 +891,31 @@ function fill(fill, ui, canvas, renderOptions) {
891
891
  }
892
892
 
893
893
  function fills(fills, ui, canvas, renderOptions) {
894
- let item;
894
+ let item, originPaint, countImage;
895
895
  for (let i = 0, len = fills.length; i < len; i++) {
896
- item = fills[i];
896
+ item = fills[i], originPaint = item.originPaint;
897
897
  if (item.image) {
898
+ countImage ? countImage++ : countImage = 1;
898
899
  if (draw.PaintImage.checkImage(item, !ui.__.__font, ui, canvas, renderOptions)) continue;
899
900
  if (!item.style) {
900
- if (!i && item.image.isPlacehold) ui.drawImagePlaceholder(item.image, canvas, renderOptions);
901
+ if (countImage === 1 && item.image.isPlacehold) ui.drawImagePlaceholder(item, canvas, renderOptions);
901
902
  continue;
902
903
  }
903
904
  }
904
905
  canvas.fillStyle = item.style;
905
- if (item.transform || item.scaleFixed) {
906
+ if (item.transform || originPaint.scaleFixed) {
906
907
  canvas.save();
907
908
  if (item.transform) canvas.transform(item.transform);
908
- if (item.scaleFixed) {
909
+ if (originPaint.scaleFixed) {
909
910
  const {scaleX: scaleX, scaleY: scaleY} = ui.getRenderScaleData(true);
910
- if (item.scaleFixed === true || item.scaleFixed === "zoom-in" && scaleX > 1 && scaleY > 1) canvas.scale(1 / scaleX, 1 / scaleY);
911
+ if (originPaint.scaleFixed === true || originPaint.scaleFixed === "zoom-in" && scaleX > 1 && scaleY > 1) canvas.scale(1 / scaleX, 1 / scaleY);
911
912
  }
912
- if (item.blendMode) canvas.blendMode = item.blendMode;
913
+ if (originPaint.blendMode) canvas.blendMode = originPaint.blendMode;
913
914
  fillPathOrText(ui, canvas, renderOptions);
914
915
  canvas.restore();
915
916
  } else {
916
- if (item.blendMode) {
917
- canvas.saveBlendMode(item.blendMode);
917
+ if (originPaint.blendMode) {
918
+ canvas.saveBlendMode(originPaint.blendMode);
918
919
  fillPathOrText(ui, canvas, renderOptions);
919
920
  canvas.restoreBlendMode();
920
921
  } else fillPathOrText(ui, canvas, renderOptions);
@@ -1067,8 +1068,8 @@ function drawStrokesStyle(strokes, strokeWidthScale, isText, ui, canvas, renderO
1067
1068
  const {strokeStyle: strokeStyle} = item;
1068
1069
  strokeStyle ? canvas.setStroke(item.style, data.__getRealStrokeWidth(strokeStyle) * strokeWidthScale, data, strokeStyle) : canvas.setStroke(item.style, data.__strokeWidth * strokeWidthScale, data);
1069
1070
  } else canvas.strokeStyle = item.style;
1070
- if (item.blendMode) {
1071
- canvas.saveBlendMode(item.blendMode);
1071
+ if (item.originPaint.blendMode) {
1072
+ canvas.saveBlendMode(item.originPaint.blendMode);
1072
1073
  isText ? draw.Paint.drawTextStroke(ui, canvas, renderOptions) : canvas.stroke();
1073
1074
  canvas.restoreBlendMode();
1074
1075
  } else {
@@ -1165,62 +1166,63 @@ function compute(attrName, ui) {
1165
1166
  if (leafPaints.some(item => item.image)) isAlphaPixel = true;
1166
1167
  isTransparent = true;
1167
1168
  }
1168
- }
1169
- if (attrName === "fill") {
1170
- stintSet(data, "__isAlphaPixelFill", isAlphaPixel);
1171
- stintSet(data, "__isTransparentFill", isTransparent);
1169
+ if (attrName === "fill") {
1170
+ stintSet(data, "__isAlphaPixelFill", isAlphaPixel);
1171
+ stintSet(data, "__isTransparentFill", isTransparent);
1172
+ } else {
1173
+ stintSet(data, "__isAlphaPixelStroke", isAlphaPixel);
1174
+ stintSet(data, "__isTransparentStroke", isTransparent);
1175
+ stintSet(data, "__hasMultiStrokeStyle", maxChildStrokeWidth);
1176
+ }
1172
1177
  } else {
1173
- stintSet(data, "__isAlphaPixelStroke", isAlphaPixel);
1174
- stintSet(data, "__isTransparentStroke", isTransparent);
1175
- stintSet(data, "__hasMultiStrokeStyle", maxChildStrokeWidth);
1178
+ data.__removePaint(attrName, false);
1176
1179
  }
1177
1180
  }
1178
1181
 
1179
1182
  function getLeafPaint(attrName, paint, ui) {
1180
1183
  if (!core.isObject(paint) || paint.visible === false || paint.opacity === 0) return undefined;
1181
- let data;
1184
+ let leafPaint;
1182
1185
  const {boxBounds: boxBounds} = ui.__layout;
1183
1186
  switch (paint.type) {
1184
1187
  case "image":
1185
- data = draw.PaintImage.image(ui, attrName, paint, boxBounds, !recycleMap || !recycleMap[paint.url]);
1188
+ leafPaint = draw.PaintImage.image(ui, attrName, paint, boxBounds, !recycleMap || !recycleMap[paint.url]);
1186
1189
  break;
1187
1190
 
1188
1191
  case "linear":
1189
- data = draw.PaintGradient.linearGradient(paint, boxBounds);
1192
+ leafPaint = draw.PaintGradient.linearGradient(paint, boxBounds);
1190
1193
  break;
1191
1194
 
1192
1195
  case "radial":
1193
- data = draw.PaintGradient.radialGradient(paint, boxBounds);
1196
+ leafPaint = draw.PaintGradient.radialGradient(paint, boxBounds);
1194
1197
  break;
1195
1198
 
1196
1199
  case "angular":
1197
- data = draw.PaintGradient.conicGradient(paint, boxBounds);
1200
+ leafPaint = draw.PaintGradient.conicGradient(paint, boxBounds);
1198
1201
  break;
1199
1202
 
1200
1203
  case "solid":
1201
1204
  const {type: type, color: color, opacity: opacity} = paint;
1202
- data = {
1205
+ leafPaint = {
1203
1206
  type: type,
1204
1207
  style: draw.ColorConvert.string(color, opacity)
1205
1208
  };
1206
1209
  break;
1207
1210
 
1208
1211
  default:
1209
- if (!core.isUndefined(paint.r)) data = {
1212
+ if (!core.isUndefined(paint.r)) leafPaint = {
1210
1213
  type: "solid",
1211
1214
  style: draw.ColorConvert.string(paint)
1212
1215
  };
1213
1216
  }
1214
- if (data) {
1215
- if (core.isString(data.style) && hasTransparent$1(data.style)) data.isTransparent = true;
1217
+ if (leafPaint) {
1218
+ leafPaint.originPaint = paint;
1219
+ if (core.isString(leafPaint.style) && hasTransparent$1(leafPaint.style)) leafPaint.isTransparent = true;
1216
1220
  if (paint.style) {
1217
1221
  if (paint.style.strokeWidth === 0) return undefined;
1218
- data.strokeStyle = paint.style;
1222
+ leafPaint.strokeStyle = paint.style;
1219
1223
  }
1220
- if (paint.editing) data.editing = paint.editing;
1221
- if (paint.blendMode) data.blendMode = paint.blendMode;
1222
1224
  }
1223
- return data;
1225
+ return leafPaint;
1224
1226
  }
1225
1227
 
1226
1228
  const PaintModule = {
@@ -1353,10 +1355,6 @@ const tempScaleData = {};
1353
1355
  const tempImage = {};
1354
1356
 
1355
1357
  function createData(leafPaint, image, paint, box) {
1356
- const {changeful: changeful, sync: sync, scaleFixed: scaleFixed} = paint;
1357
- if (changeful) leafPaint.changeful = changeful;
1358
- if (sync) leafPaint.sync = sync;
1359
- if (scaleFixed) leafPaint.scaleFixed = scaleFixed;
1360
1358
  leafPaint.data = draw.PaintImage.getPatternData(paint, box, image);
1361
1359
  }
1362
1360
 
@@ -1583,14 +1581,14 @@ function getPatternFixScale(paint, imageScaleX, imageScaleY) {
1583
1581
 
1584
1582
  function checkImage(paint, drawImage, ui, canvas, renderOptions) {
1585
1583
  const {scaleX: scaleX, scaleY: scaleY} = draw.PaintImage.getImageRenderScaleData(paint, ui, canvas, renderOptions);
1586
- const {image: image, data: data} = paint, {exporting: exporting} = renderOptions;
1584
+ const {image: image, data: data, originPaint: originPaint} = paint, {exporting: exporting} = renderOptions;
1587
1585
  if (!data || paint.patternId === scaleX + "-" + scaleY && !exporting) {
1588
1586
  return false;
1589
1587
  } else {
1590
1588
  if (drawImage) {
1591
1589
  if (data.repeat) {
1592
1590
  drawImage = false;
1593
- } else if (!(paint.changeful || core.Platform.name === "miniapp" && core.ResizeEvent.isResizing(ui) || exporting)) {
1591
+ } else if (!(originPaint.changeful || core.Platform.name === "miniapp" && core.ResizeEvent.isResizing(ui) || exporting)) {
1594
1592
  drawImage = core.Platform.image.isLarge(image, scaleX, scaleY);
1595
1593
  }
1596
1594
  }
@@ -1602,16 +1600,16 @@ function checkImage(paint, drawImage, ui, canvas, renderOptions) {
1602
1600
  draw.PaintImage.drawImage(paint, scaleX, scaleY, ui, canvas, renderOptions);
1603
1601
  return true;
1604
1602
  } else {
1605
- if (!paint.style || paint.sync || exporting) draw.PaintImage.createPattern(paint, ui, canvas, renderOptions); else draw.PaintImage.createPatternTask(paint, ui, canvas, renderOptions);
1603
+ if (!paint.style || originPaint.sync || exporting) draw.PaintImage.createPattern(paint, ui, canvas, renderOptions); else draw.PaintImage.createPatternTask(paint, ui, canvas, renderOptions);
1606
1604
  return false;
1607
1605
  }
1608
1606
  }
1609
1607
  }
1610
1608
 
1611
1609
  function drawImage(paint, _imageScaleX, _imageScaleY, ui, canvas, _renderOptions) {
1612
- const {data: data, image: image, blendMode: blendMode} = paint, {opacity: opacity, transform: transform} = data, view = image.getFull(data.filters), u = ui.__;
1610
+ const {data: data, image: image} = paint, {blendMode: blendMode} = paint.originPaint, {opacity: opacity, transform: transform} = data, view = image.getFull(data.filters), u = ui.__;
1613
1611
  let {width: width, height: height} = image, clipUI;
1614
- if (transform && !transform.onlyScale || (clipUI = u.path || u.cornerRadius) || opacity || blendMode) {
1612
+ if ((clipUI = transform && !transform.onlyScale || u.path || u.cornerRadius) || opacity || blendMode) {
1615
1613
  canvas.save();
1616
1614
  clipUI && canvas.clipUI(ui);
1617
1615
  blendMode && (canvas.blendMode = blendMode);
@@ -1626,7 +1624,7 @@ function drawImage(paint, _imageScaleX, _imageScaleY, ui, canvas, _renderOptions
1626
1624
  }
1627
1625
 
1628
1626
  function getImageRenderScaleData(paint, ui, canvas, _renderOptions) {
1629
- const scaleData = ui.getRenderScaleData(true, paint.scaleFixed), {data: data} = paint;
1627
+ const scaleData = ui.getRenderScaleData(true, paint.originPaint.scaleFixed), {data: data} = paint;
1630
1628
  if (canvas) {
1631
1629
  const {pixelRatio: pixelRatio} = canvas;
1632
1630
  scaleData.scaleX *= pixelRatio;
package/dist/node.esm.js CHANGED
@@ -895,30 +895,31 @@ function fill(fill, ui, canvas, renderOptions) {
895
895
  }
896
896
 
897
897
  function fills(fills, ui, canvas, renderOptions) {
898
- let item;
898
+ let item, originPaint, countImage;
899
899
  for (let i = 0, len = fills.length; i < len; i++) {
900
- item = fills[i];
900
+ item = fills[i], originPaint = item.originPaint;
901
901
  if (item.image) {
902
+ countImage ? countImage++ : countImage = 1;
902
903
  if (PaintImage.checkImage(item, !ui.__.__font, ui, canvas, renderOptions)) continue;
903
904
  if (!item.style) {
904
- if (!i && item.image.isPlacehold) ui.drawImagePlaceholder(item.image, canvas, renderOptions);
905
+ if (countImage === 1 && item.image.isPlacehold) ui.drawImagePlaceholder(item, canvas, renderOptions);
905
906
  continue;
906
907
  }
907
908
  }
908
909
  canvas.fillStyle = item.style;
909
- if (item.transform || item.scaleFixed) {
910
+ if (item.transform || originPaint.scaleFixed) {
910
911
  canvas.save();
911
912
  if (item.transform) canvas.transform(item.transform);
912
- if (item.scaleFixed) {
913
+ if (originPaint.scaleFixed) {
913
914
  const {scaleX: scaleX, scaleY: scaleY} = ui.getRenderScaleData(true);
914
- if (item.scaleFixed === true || item.scaleFixed === "zoom-in" && scaleX > 1 && scaleY > 1) canvas.scale(1 / scaleX, 1 / scaleY);
915
+ if (originPaint.scaleFixed === true || originPaint.scaleFixed === "zoom-in" && scaleX > 1 && scaleY > 1) canvas.scale(1 / scaleX, 1 / scaleY);
915
916
  }
916
- if (item.blendMode) canvas.blendMode = item.blendMode;
917
+ if (originPaint.blendMode) canvas.blendMode = originPaint.blendMode;
917
918
  fillPathOrText(ui, canvas, renderOptions);
918
919
  canvas.restore();
919
920
  } else {
920
- if (item.blendMode) {
921
- canvas.saveBlendMode(item.blendMode);
921
+ if (originPaint.blendMode) {
922
+ canvas.saveBlendMode(originPaint.blendMode);
922
923
  fillPathOrText(ui, canvas, renderOptions);
923
924
  canvas.restoreBlendMode();
924
925
  } else fillPathOrText(ui, canvas, renderOptions);
@@ -1071,8 +1072,8 @@ function drawStrokesStyle(strokes, strokeWidthScale, isText, ui, canvas, renderO
1071
1072
  const {strokeStyle: strokeStyle} = item;
1072
1073
  strokeStyle ? canvas.setStroke(item.style, data.__getRealStrokeWidth(strokeStyle) * strokeWidthScale, data, strokeStyle) : canvas.setStroke(item.style, data.__strokeWidth * strokeWidthScale, data);
1073
1074
  } else canvas.strokeStyle = item.style;
1074
- if (item.blendMode) {
1075
- canvas.saveBlendMode(item.blendMode);
1075
+ if (item.originPaint.blendMode) {
1076
+ canvas.saveBlendMode(item.originPaint.blendMode);
1076
1077
  isText ? Paint.drawTextStroke(ui, canvas, renderOptions) : canvas.stroke();
1077
1078
  canvas.restoreBlendMode();
1078
1079
  } else {
@@ -1169,62 +1170,63 @@ function compute(attrName, ui) {
1169
1170
  if (leafPaints.some(item => item.image)) isAlphaPixel = true;
1170
1171
  isTransparent = true;
1171
1172
  }
1172
- }
1173
- if (attrName === "fill") {
1174
- stintSet(data, "__isAlphaPixelFill", isAlphaPixel);
1175
- stintSet(data, "__isTransparentFill", isTransparent);
1173
+ if (attrName === "fill") {
1174
+ stintSet(data, "__isAlphaPixelFill", isAlphaPixel);
1175
+ stintSet(data, "__isTransparentFill", isTransparent);
1176
+ } else {
1177
+ stintSet(data, "__isAlphaPixelStroke", isAlphaPixel);
1178
+ stintSet(data, "__isTransparentStroke", isTransparent);
1179
+ stintSet(data, "__hasMultiStrokeStyle", maxChildStrokeWidth);
1180
+ }
1176
1181
  } else {
1177
- stintSet(data, "__isAlphaPixelStroke", isAlphaPixel);
1178
- stintSet(data, "__isTransparentStroke", isTransparent);
1179
- stintSet(data, "__hasMultiStrokeStyle", maxChildStrokeWidth);
1182
+ data.__removePaint(attrName, false);
1180
1183
  }
1181
1184
  }
1182
1185
 
1183
1186
  function getLeafPaint(attrName, paint, ui) {
1184
1187
  if (!isObject(paint) || paint.visible === false || paint.opacity === 0) return undefined;
1185
- let data;
1188
+ let leafPaint;
1186
1189
  const {boxBounds: boxBounds} = ui.__layout;
1187
1190
  switch (paint.type) {
1188
1191
  case "image":
1189
- data = PaintImage.image(ui, attrName, paint, boxBounds, !recycleMap || !recycleMap[paint.url]);
1192
+ leafPaint = PaintImage.image(ui, attrName, paint, boxBounds, !recycleMap || !recycleMap[paint.url]);
1190
1193
  break;
1191
1194
 
1192
1195
  case "linear":
1193
- data = PaintGradient.linearGradient(paint, boxBounds);
1196
+ leafPaint = PaintGradient.linearGradient(paint, boxBounds);
1194
1197
  break;
1195
1198
 
1196
1199
  case "radial":
1197
- data = PaintGradient.radialGradient(paint, boxBounds);
1200
+ leafPaint = PaintGradient.radialGradient(paint, boxBounds);
1198
1201
  break;
1199
1202
 
1200
1203
  case "angular":
1201
- data = PaintGradient.conicGradient(paint, boxBounds);
1204
+ leafPaint = PaintGradient.conicGradient(paint, boxBounds);
1202
1205
  break;
1203
1206
 
1204
1207
  case "solid":
1205
1208
  const {type: type, color: color, opacity: opacity} = paint;
1206
- data = {
1209
+ leafPaint = {
1207
1210
  type: type,
1208
1211
  style: ColorConvert.string(color, opacity)
1209
1212
  };
1210
1213
  break;
1211
1214
 
1212
1215
  default:
1213
- if (!isUndefined(paint.r)) data = {
1216
+ if (!isUndefined(paint.r)) leafPaint = {
1214
1217
  type: "solid",
1215
1218
  style: ColorConvert.string(paint)
1216
1219
  };
1217
1220
  }
1218
- if (data) {
1219
- if (isString(data.style) && hasTransparent$1(data.style)) data.isTransparent = true;
1221
+ if (leafPaint) {
1222
+ leafPaint.originPaint = paint;
1223
+ if (isString(leafPaint.style) && hasTransparent$1(leafPaint.style)) leafPaint.isTransparent = true;
1220
1224
  if (paint.style) {
1221
1225
  if (paint.style.strokeWidth === 0) return undefined;
1222
- data.strokeStyle = paint.style;
1226
+ leafPaint.strokeStyle = paint.style;
1223
1227
  }
1224
- if (paint.editing) data.editing = paint.editing;
1225
- if (paint.blendMode) data.blendMode = paint.blendMode;
1226
1228
  }
1227
- return data;
1229
+ return leafPaint;
1228
1230
  }
1229
1231
 
1230
1232
  const PaintModule = {
@@ -1357,10 +1359,6 @@ const tempScaleData = {};
1357
1359
  const tempImage = {};
1358
1360
 
1359
1361
  function createData(leafPaint, image, paint, box) {
1360
- const {changeful: changeful, sync: sync, scaleFixed: scaleFixed} = paint;
1361
- if (changeful) leafPaint.changeful = changeful;
1362
- if (sync) leafPaint.sync = sync;
1363
- if (scaleFixed) leafPaint.scaleFixed = scaleFixed;
1364
1362
  leafPaint.data = PaintImage.getPatternData(paint, box, image);
1365
1363
  }
1366
1364
 
@@ -1587,14 +1585,14 @@ function getPatternFixScale(paint, imageScaleX, imageScaleY) {
1587
1585
 
1588
1586
  function checkImage(paint, drawImage, ui, canvas, renderOptions) {
1589
1587
  const {scaleX: scaleX, scaleY: scaleY} = PaintImage.getImageRenderScaleData(paint, ui, canvas, renderOptions);
1590
- const {image: image, data: data} = paint, {exporting: exporting} = renderOptions;
1588
+ const {image: image, data: data, originPaint: originPaint} = paint, {exporting: exporting} = renderOptions;
1591
1589
  if (!data || paint.patternId === scaleX + "-" + scaleY && !exporting) {
1592
1590
  return false;
1593
1591
  } else {
1594
1592
  if (drawImage) {
1595
1593
  if (data.repeat) {
1596
1594
  drawImage = false;
1597
- } else if (!(paint.changeful || Platform.name === "miniapp" && ResizeEvent.isResizing(ui) || exporting)) {
1595
+ } else if (!(originPaint.changeful || Platform.name === "miniapp" && ResizeEvent.isResizing(ui) || exporting)) {
1598
1596
  drawImage = Platform.image.isLarge(image, scaleX, scaleY);
1599
1597
  }
1600
1598
  }
@@ -1606,16 +1604,16 @@ function checkImage(paint, drawImage, ui, canvas, renderOptions) {
1606
1604
  PaintImage.drawImage(paint, scaleX, scaleY, ui, canvas, renderOptions);
1607
1605
  return true;
1608
1606
  } else {
1609
- if (!paint.style || paint.sync || exporting) PaintImage.createPattern(paint, ui, canvas, renderOptions); else PaintImage.createPatternTask(paint, ui, canvas, renderOptions);
1607
+ if (!paint.style || originPaint.sync || exporting) PaintImage.createPattern(paint, ui, canvas, renderOptions); else PaintImage.createPatternTask(paint, ui, canvas, renderOptions);
1610
1608
  return false;
1611
1609
  }
1612
1610
  }
1613
1611
  }
1614
1612
 
1615
1613
  function drawImage(paint, _imageScaleX, _imageScaleY, ui, canvas, _renderOptions) {
1616
- const {data: data, image: image, blendMode: blendMode} = paint, {opacity: opacity, transform: transform} = data, view = image.getFull(data.filters), u = ui.__;
1614
+ const {data: data, image: image} = paint, {blendMode: blendMode} = paint.originPaint, {opacity: opacity, transform: transform} = data, view = image.getFull(data.filters), u = ui.__;
1617
1615
  let {width: width, height: height} = image, clipUI;
1618
- if (transform && !transform.onlyScale || (clipUI = u.path || u.cornerRadius) || opacity || blendMode) {
1616
+ if ((clipUI = transform && !transform.onlyScale || u.path || u.cornerRadius) || opacity || blendMode) {
1619
1617
  canvas.save();
1620
1618
  clipUI && canvas.clipUI(ui);
1621
1619
  blendMode && (canvas.blendMode = blendMode);
@@ -1630,7 +1628,7 @@ function drawImage(paint, _imageScaleX, _imageScaleY, ui, canvas, _renderOptions
1630
1628
  }
1631
1629
 
1632
1630
  function getImageRenderScaleData(paint, ui, canvas, _renderOptions) {
1633
- const scaleData = ui.getRenderScaleData(true, paint.scaleFixed), {data: data} = paint;
1631
+ const scaleData = ui.getRenderScaleData(true, paint.originPaint.scaleFixed), {data: data} = paint;
1634
1632
  if (canvas) {
1635
1633
  const {pixelRatio: pixelRatio} = canvas;
1636
1634
  scaleData.scaleX *= pixelRatio;
@@ -1,2 +1,2 @@
1
- import{LeaferCanvasBase as t,Platform as e,canvasPatch as i,FileHelper as s,Creator as a,LeaferImage as n,defineKey as r,LeafList as o,DataHelper as l,RenderEvent as d,ChildEvent as c,WatchEvent as h,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 S,BoundsHelper as k,Plugin as B,isObject as R,FourNumberHelper as E,Matrix as L,isUndefined as T,isString as A,ImageEvent as P,MatrixHelper as C,MathHelper as O,AlignHelper as M,PointHelper as W,getMatrixData as D,AroundHelper as F,Direction4 as I,isNumber as Y}from"@leafer/core";export*from"@leafer/core";export{LeaferImage}from"@leafer/core";import{writeFileSync as X}from"fs";import{HitCanvasManager as U,InteractionBase as N}from"@leafer-ui/core";export*from"@leafer-ui/core";import{Paint as j,PaintImage as q,ColorConvert as z,PaintGradient as G,Effect as H,Group as V,TextConvert as Q,TwoPointBoundsHelper as J,Bounds as Z,Export as $,FileHelper as K,Platform as tt,isUndefined as et,Matrix as it,MathHelper as st,Creator as at,TaskProcessor as nt,Resource as rt,LeaferCanvasBase as ot,Debug as lt,Plugin as dt,UI as ct}from"@leafer-ui/draw";function ht(t,e,i,s){return new(i||(i=Promise))(function(a,n){function r(t){try{l(s.next(t))}catch(t){n(t)}}function o(t){try{l(s.throw(t))}catch(t){n(t)}}function l(t){var e;t.done?a(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)=>ht(this,void 0,void 0,function*(){return t.toBuffer(ft(e),i)}),canvasSaveAs:(t,e,i)=>ht(this,void 0,void 0,function*(){return X(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=a.canvas()}}Object.assign(a,{canvas:(t,e)=>new ut(t,e),image:t=>new n(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===c.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 h(h.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],[[c.ADD,c.REMOVE],this.__onChildEvent,this],[h.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:xt,pushAllParent:vt}=g;const{worldBounds:bt}=p;class St{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:kt,updateAllChange:Bt}=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(x.START),this.layoutOnce(),t.emitEvent(new x(x.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(h.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:a,LAYOUT:n,AFTER:r}=x,o=this.getBlocks(s);o.forEach(t=>t.setBefore()),i.emitEvent(new x(a,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&&xt(t,e),vt(t,e)):i.boundsChanged&&(e.add(t),t.isBranch&&(t.__tempNumber=0),vt(t,e)))})}(s,this.__levelList),function(t){let e,i,s;t.sort(!0),t.levels.forEach(a=>{e=t.levelMap[a];for(let t=0,a=e.length;t<a;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 x(n,o,this.times)),i.emitEvent(new x(r,o,this.times)),this.addBlocks(o),this.__levelList.reset(),this.__updatedList=null,v.end(e)}fullLayout(){const t=v.start("FullLayout"),{target:e}=this,{BEFORE:i,LAYOUT:s,AFTER:a}=x,n=this.getBlocks(new o(e));e.emitEvent(new x(i,n,this.times)),Et.fullLayout(e),n.forEach(t=>{t.setAfter()}),e.emitEvent(new x(s,n,this.times)),e.emitEvent(new x(a,n,this.times)),this.addBlocks(n),v.end(t)}static fullLayout(t){kt(t,!0),t.isBranch?g.updateBounds(t):f.updateBounds(t),Bt(t)}addExtra(t){if(!this.__updatedList.has(t)){const{updatedList:e,beforeBounds:i}=this.extraBlock||(this.extraBlock=new St([]));e.length?i.add(t.__world):i.set(t.__world),e.add(t)}}createBlock(t){return new St(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],[h.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(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 _,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=v.start("PartRender"),{canvas:i}=this,s=t.getIntersect(i.bounds),a=new _(s);i.save(),s.spread(Tt.clipSpread).ceil(),i.clearWorld(s),i.clipWorld(s),this.__render(s,a),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,a=t.includes(this.target.__world),n=a?{includes:a}:{bounds:t,includes:a};this.needFill&&s.fillWorld(t,this.config.fill),y.showRepaint&&y.drawRepaint(s,t),e.render(this.target,s,n),this.renderBounds=i=i||t,this.renderOptions=n,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:a}=this;a.length>30&&a.shift(),a.push(t),this.FPS=Math.round(a.reduce((t,e)=>t+e,0)/a.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],[x.END,this.__onLayoutEnd,this],[d.AGAIN,this.renderAgain,this],[S.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}=k;class Pt{constructor(t,e){this.target=t,this.selector=e}getByPoint(t,e,i){e||(e=0),i||(i={});const s=i.through||!1,a=i.ignoreHittable||!1,n=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(n.isBranchLeaf?{children:[n]}:n);const{list:r}=this.findList,l=this.getBestMatchLeaf(r,i.bottomList,a,!!i.findList),d=a?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,s){const a=this.findList=new o;if(t.length){let e;const{x:s,y:n}=this.point,r={x:s,y:n,radiusX:0,radiusY:0};for(let s=0,n=t.length;s<n;s++)if(e=t[s],(i||f.worldHittable(e))&&(this.hitChild(e,r),a.length)){if(e.isBranchLeaf&&t.some(t=>t!==e&&f.hasParent(t,e))){a.reset();break}return a.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),a.length)return a.list[0];return s?null:i?t[0]:t.find(t=>f.worldHittable(t))}getPath(t){const e=new o,i=[],{target:s}=this;for(;t&&(t.syncEventer&&i.push(t.syncEventer),e.add(t),(t=t.parent)!==s););return i.length&&i.forEach(t=>{for(;t&&(t.__.hittable&&e.add(t),(t=t.parent)!==s););}),s&&e.add(s),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,a,n;for(let t=0,r=i.length;t<r;t++){s=i[t],a=i[t+1];for(let t=0,i=s.length;t<i&&(n=s.list[t],!a||!a.has(n));t++)e.add(n)}return e}hitBranch(t){this.eachFind(t.children,t.__onlyHitMask)}eachFind(t,e){let i,s;const{point:a}=this;for(let n=t.length-1;n>-1;n--)if(i=t[n],i.__.visible&&(!e||i.__.mask))if(s=!!i.__.hitRadius||At(i.__world,a),i.isBranch){if(s||i.__ignoreHitWorld){if(i.isBranchLeaf&&i.__.__clipAfterFill&&!i.__hitWorld(a))continue;i.topChildren&&this.eachFind(i.topChildren,!1),this.eachFind(i.children,i.__onlyHitMask),i.isBranchLeaf&&this.hitChild(i,a)}}else s&&this.hitChild(i,a)}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,a=[];const{children:n}=s;for(let s=0,r=n.length;s<r;s++)if(i=n[s],i.__.mask&&a.push(i),i===t){if(a&&!a.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 Pt(this.target=t,this),this.finder=a.finder&&a.finder()}getByPoint(t,i,s){const{target:a,picker:n}=this;return e.backgrounder&&a&&a.updateLayout(),n.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):B.need("find")}destroy(){this.picker.destroy(),this.finder&&this.finder.destroy()}}function Ot(t,e,i){t.__.__font?j.fillText(t,e,i):t.__.windingRule?e.fill(t.__.windingRule):e.fill()}function Mt(t,e,i,s,a){const n=i.__;R(t)?j.drawStrokesStyle(t,e,!1,i,s,a):(s.setStroke(t,n.__strokeWidth*e,n),s.stroke()),n.__useArrow&&j.strokeArrow(t,i,s,a)}function Wt(t,e,i,s,a){const n=i.__;R(t)?j.drawStrokesStyle(t,e,!0,i,s,a):(s.setStroke(t,n.__strokeWidth*e,n),j.drawTextStroke(i,s,a))}function Dt(t,e,i,s,a){const n=s.getSameCanvas(!0,!0);n.font=i.__.__font,Wt(t,2,i,n,a),n.blendMode="outside"===e?"destination-out":"destination-in",j.fillText(i,n,a),n.blendMode="normal",f.copyCanvasByWorld(i,s,n),n.recycle(i.__nowWorld)}Object.assign(a,{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 Ct(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:Ft,copyAndSpread:It,toOuterOf:Yt,getOuterOf:Xt,getByMove:Ut,move:Nt,getIntersectData:jt}=k,qt={};let zt;const{stintSet:Gt}=l,{hasTransparent:Ht}=z;function Vt(t,e,i){if(!R(e)||!1===e.visible||0===e.opacity)return;let s;const{boxBounds:a}=i.__layout;switch(e.type){case"image":s=q.image(i,t,e,a,!zt||!zt[e.url]);break;case"linear":s=G.linearGradient(e,a);break;case"radial":s=G.radialGradient(e,a);break;case"angular":s=G.conicGradient(e,a);break;case"solid":const{type:n,color:r,opacity:o}=e;s={type:n,style:z.string(r,o)};break;default:T(e.r)||(s={type:"solid",style:z.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 a,n,r,o=i.__input[t];w(o)||(o=[o]),zt=q.recycleImage(t,i);for(let i,a=0,n=o.length;a<n;a++)(i=Vt(t,o[a],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)&&(a=!0),n=!0),"fill"===t?(Gt(i,"__isAlphaPixelFill",a),Gt(i,"__isTransparentFill",n)):(Gt(i,"__isAlphaPixelStroke",a),Gt(i,"__isTransparentStroke",n),Gt(i,"__hasMultiStrokeStyle",r))},fill:function(t,e,i,s){i.fillStyle=t,Ot(e,i,s)},fills:function(t,e,i,s){let a;for(let n=0,r=t.length;n<r;n++){if(a=t[n],a.image){if(q.checkImage(a,!e.__.__font,e,i,s))continue;if(!a.style){!n&&a.image.isPlacehold&&e.drawImagePlaceholder(a.image,i,s);continue}}if(i.fillStyle=a.style,a.transform||a.scaleFixed){if(i.save(),a.transform&&i.transform(a.transform),a.scaleFixed){const{scaleX:t,scaleY:s}=e.getRenderScaleData(!0);(!0===a.scaleFixed||"zoom-in"===a.scaleFixed&&t>1&&s>1)&&i.scale(1/t,1/s)}a.blendMode&&(i.blendMode=a.blendMode),Ot(e,i,s),i.restore()}else a.blendMode?(i.saveBlendMode(a.blendMode),Ot(e,i,s),i.restoreBlendMode()):Ot(e,i,s)}},fillPathOrText:Ot,fillText:function(t,e,i){const s=t.__,{rows:a,decorationY:n}=s.__textDrawData;let r;s.__isPlacehold&&s.placeholderColor&&(e.fillStyle=s.placeholderColor);for(let t=0,i=a.length;t<i;t++)r=a[t],r.text?e.fillText(r.text,r.x,r.y):r.data&&r.data.forEach(t=>{e.fillText(t.char,t.x,r.y)});if(n){const{decorationColor:t,decorationHeight:i}=s.__textDrawData;t&&(e.fillStyle=t),a.forEach(t=>n.forEach(s=>e.fillRect(t.x,t.y+s,t.width,i)))}},stroke:function(t,e,i,s){const a=e.__;if(a.__strokeWidth)if(a.__font)j.strokeText(t,e,i,s);else switch(a.strokeAlign){case"center":Mt(t,1,e,i,s);break;case"inside":!function(t,e,i,s){i.save(),i.clipUI(e),Mt(t,2,e,i,s),i.restore()}(t,e,i,s);break;case"outside":!function(t,e,i,s){const a=e.__;if(a.__fillAfterStroke)Mt(t,2,e,i,s);else{const{renderBounds:n}=e.__layout,r=i.getSameCanvas(!0,!0);e.__drawRenderPath(r),Mt(t,2,e,r,s),r.clipUI(a),r.clearWorld(n),f.copyCanvasByWorld(e,i,r),r.recycle(e.__nowWorld)}}(t,e,i,s)}},strokes:function(t,e,i,s){j.stroke(t,e,i,s)},strokeText:function(t,e,i,s){switch(e.__.strokeAlign){case"center":Wt(t,1,e,i,s);break;case"inside":Dt(t,"inside",e,i,s);break;case"outside":e.__.__fillAfterStroke?Wt(t,2,e,i,s):Dt(t,"outside",e,i,s)}},drawTextStroke:function(t,e,i){let s,a=t.__.__textDrawData;const{rows:n,decorationY:r}=a;for(let t=0,i=n.length;t<i;t++)s=n[t],s.text?e.strokeText(s.text,s.x,s.y):s.data&&s.data.forEach(t=>{e.strokeText(t.char,t.x,s.y)});if(r){const{decorationHeight:t}=a;n.forEach(i=>r.forEach(s=>e.strokeRect(i.x,i.y+s,i.width,t)))}},drawStrokesStyle:function(t,e,i,s,a,n){let r;const o=s.__,{__hasMultiStrokeStyle:l}=o;l||a.setStroke(void 0,o.__strokeWidth*e,o);for(let d=0,c=t.length;d<c;d++)if(r=t[d],(!r.image||!q.checkImage(r,!1,s,a,n))&&r.style){if(l){const{strokeStyle:t}=r;t?a.setStroke(r.style,o.__getRealStrokeWidth(t)*e,o,t):a.setStroke(r.style,o.__strokeWidth*e,o)}else a.strokeStyle=r.style;r.blendMode?(a.saveBlendMode(r.blendMode),i?j.drawTextStroke(s,a,n):a.stroke(),a.restoreBlendMode()):i?j.drawTextStroke(s,a,n):a.stroke()}},shape:function(t,i,s){const a=i.getSameCanvas(),n=i.bounds,r=t.__nowWorld,o=t.__layout,l=t.__nowWorldShapeBounds||(t.__nowWorldShapeBounds={});let d,c,h,u,f,g;Yt(o.strokeSpread?(It(qt,o.boxBounds,o.strokeSpread),qt):o.boxBounds,r,l);let{scaleX:p,scaleY:_}=t.getRenderScaleData(!0);if(n.includes(l))g=a,d=f=l,c=r;else{let a;if(e.fullImageShadow)a=l;else{const t=o.renderShapeSpread?Ft(n,E.swapAndScale(o.renderShapeSpread,p,_)):n;a=jt(t,l)}u=n.getFitMatrix(a);let{a:w,d:y}=u;u.a<1&&(g=i.getSameCanvas(),t.__renderShape(g,s),p*=w,_*=y),f=Xt(l,u),d=Ut(f,-u.e,-u.f),c=Xt(r,u),Nt(c,-u.e,-u.f);const m=s.matrix;m?(h=new L(u),h.multiply(m),w*=m.scaleX,y*=m.scaleY):h=u,h.withScale(w,y),s=Object.assign(Object.assign({},s),{matrix:h})}return t.__renderShape(a,s),{canvas:a,matrix:h,fitMatrix:u,bounds:d,renderBounds:c,worldCanvas:g,shapeBounds:f,scaleX:p,scaleY:_}}};let Jt,Zt=new _;const{isSame:$t}=k;function Kt(t,e,i,s,a,n){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 a.data||q.createData(a,s,i,n),!0}function te(t,e){se(t,P.LOAD,e)}function ee(t,e){se(t,P.LOADED,e)}function ie(t,e,i){e.error=i,t.forceUpdate("surface"),se(t,P.ERROR,e)}function se(t,e,i){t.hasEvent(e)&&t.emitEvent(new P(e,i))}function ae(t,e){const{leafer:i}=t;i&&i.viewReady&&(i.renderer.ignore=e)}const{get:ne,translate:re}=C,oe=new _,le={},de={};function ce(t,e,i,s){const a=A(t)||s?(s?i-s*e:i%e)/((s||Math.floor(i/e))-1):t;return"auto"===t&&a<0?0:a}let he={},ue=D();const{get:fe,set:ge,rotateOfOuter:pe,translate:_e,scaleOfOuter:we,multiplyParent:ye,scale:me,rotate:xe,skew:ve}=C;function be(t,e,i,s,a,n,r,o){r&&xe(t,r),o&&ve(t,o.x,o.y),a&&me(t,a,n),_e(t,e.x+i,e.y+s)}const{get:Se,scale:ke,copy:Be}=C,{getFloorScale:Re}=O,{abs:Ee}=Math;const Le={image:function(t,e,i,s,a){let n,r;const o=b.get(i);return Jt&&i===Jt.paint&&$t(s,Jt.boxBounds)?n=Jt.leafPaint:(n={type:i.type,image:o},o.hasAlphaPixel&&(n.isTransparent=!0),Jt=o.use>1?{leafPaint:n,paint:i,boxBounds:Zt.set(s)}:null),(a||o.loading)&&(r={image:o,attrName:e,attrValue:i}),o.ready?(Kt(t,e,i,o,n,s),a&&(te(t,r),ee(t,r))):o.error?a&&ie(t,r,o.error):(a&&(ae(t,!0),te(t,r)),n.loadId=o.load(()=>{ae(t,!1),t.destroyed||(Kt(t,e,i,o,n,s)&&(o.hasAlphaPixel&&(t.__layout.hitCanvasChanged=!0),t.forceUpdate("surface")),ee(t,r)),n.loadId=void 0},e=>{ae(t,!1),ie(t,r,e),n.loadId=void 0}),t.placeholderColor&&(t.placeholderDelay?setTimeout(()=>{o.ready||(o.isPlacehold=!0,t.forceUpdate("surface"))},t.placeholderDelay):o.isPlacehold=!0)),n},checkImage:function(t,i,s,a,n){const{scaleX:r,scaleY:o}=q.getImageRenderScaleData(t,s,a,n),{image:l,data:d}=t,{exporting:c}=n;return!(!d||t.patternId===r+"-"+o&&!c)&&(i&&(d.repeat?i=!1:t.changeful||"miniapp"===e.name&&S.isResizing(s)||c||(i=e.image.isLarge(l,r,o))),i?(s.__.__isFastShadow&&(a.fillStyle=t.style||"#000",a.fill()),q.drawImage(t,r,o,s,a,n),!0):(!t.style||t.sync||c?q.createPattern(t,s,a,n):q.createPatternTask(t,s,a,n),!1))},drawImage:function(t,e,i,s,a,n){const{data:r,image:o,blendMode:l}=t,{opacity:d,transform:c}=r,h=o.getFull(r.filters),u=s.__;let f,{width:g,height:p}=o;c&&!c.onlyScale||(f=u.path||u.cornerRadius)||d||l?(a.save(),f&&a.clipUI(s),l&&(a.blendMode=l),d&&(a.opacity*=d),c&&a.transform(c),a.drawImage(h,0,0,g,p),a.restore()):(r.scaleX&&(g*=r.scaleX,p*=r.scaleY),a.drawImage(h,0,0,g,p))},getImageRenderScaleData:function(t,e,i,s){const a=e.getRenderScaleData(!0,t.scaleFixed),{data:n}=t;if(i){const{pixelRatio:t}=i;a.scaleX*=t,a.scaleY*=t}return n&&n.scaleX&&(a.scaleX*=Math.abs(n.scaleX),a.scaleY*=Math.abs(n.scaleY)),a},recycleImage:function(t,e){const i=e["_"+t];if(w(i)){let s,a,n,r,o;for(let l=0,d=i.length;l<d;l++)s=i[l],a=s.image,o=a&&a.url,o&&(n||(n={}),n[o]=!0,b.recycle(a),a.loading&&(r||(r=e.__input&&e.__input[t]||[],w(r)||(r=[r])),a.unload(i[l].loadId,!r.some(t=>t.url===o))));return n}return null},createPatternTask:function(t,e,i,s){t.patternTask||(t.patternTask=b.patternTasker.add(()=>ht(this,void 0,void 0,function*(){t.patternTask=null,i.bounds.hit(e.__nowWorld)&&q.createPattern(t,e,i,s),e.forceUpdate("surface")}),300))},createPattern:function(t,i,s,a){let{scaleX:n,scaleY:r}=q.getImageRenderScaleData(t,i,s,a),o=n+"-"+r;if(t.patternId!==o&&!i.destroyed&&(!e.image.isLarge(t.image,n,r)||t.data.repeat)){const{image:s,data:a}=t,{transform:l,gap:d}=a,c=q.getPatternFixScale(t,n,r);let h,u,f,{width:g,height:p}=s;c&&(n*=c,r*=c),g*=n,p*=r,d&&(u=d.x*n/Ee(a.scaleX||1),f=d.y*r/Ee(a.scaleY||1)),(l||1!==n||1!==r)&&(n*=Re(g+(u||0)),r*=Re(p+(f||0)),h=Se(),l&&Be(h,l),ke(h,1/n,1/r));const _=s.getCanvas(g,p,a.opacity,a.filters,u,f,i.leafer&&i.leafer.config.smooth),w=s.getPattern(_,a.repeat||e.origin.noRepeat||"no-repeat",h,t);t.style=w,t.patternId=o}},getPatternFixScale:function(t,i,s){const{image:a}=t;let n,r=e.image.maxPatternSize,o=a.width*a.height;return a.isSVG?i>1&&(n=Math.ceil(i)/i):r>o&&(r=o),(o*=i*s)>r&&(n=Math.sqrt(r/o)),n},createData:function(t,e,i,s){const{changeful:a,sync:n,scaleFixed:r}=i;a&&(t.changeful=a),n&&(t.sync=n),r&&(t.scaleFixed=r),t.data=q.getPatternData(i,s,e)},getPatternData:function(t,e,i){t.padding&&(e=oe.set(e).shrink(t.padding)),"strench"===t.mode&&(t.mode="stretch");const{width:s,height:a}=i,{opacity:n,mode:r,align:o,offset:l,scale:d,size:c,rotation:h,skew:u,clipSize:f,repeat:g,gap:p,filters:_}=t,w=e.width===s&&e.height===a,y={mode:r},m="center"!==o&&(h||0)%180==90;let x,v;switch(k.set(de,0,0,m?a:s,m?s:a),r&&"cover"!==r&&"fit"!==r?((d||c)&&(O.getScaleData(d,c,i,le),x=le.scaleX,v=le.scaleY),(o||p||g)&&(x&&k.scale(de,x,v,!0),o&&M.toPoint(o,de,e,de,!0,!0))):w&&!h||(x=v=k.getFitScale(e,de,"fit"!==r),k.put(e,i,o,x,!1,de),k.scale(de,x,v,!0)),l&&W.move(de,l),r){case"stretch":w?x&&(x=v=void 0):(x=e.width/s,v=e.height/a,q.stretchMode(y,e,x,v));break;case"normal":case"clip":if(de.x||de.y||x||f||h||u){let t,i;f&&(t=e.width/f.width,i=e.height/f.height),q.clipMode(y,e,de.x,de.y,x,v,h,u,t,i),t&&(x=x?x*t:t,v=v?v*i:i)}break;case"repeat":(!w||x||h||u)&&q.repeatMode(y,e,s,a,de.x,de.y,x,v,h,u,o,t.freeTransform),g||(y.repeat="repeat");const i=R(g);(p||i)&&(y.gap=function(t,e,i,s,a){let n,r;R(t)?(n=t.x,r=t.y):n=r=t;return{x:ce(n,i,a.width,e&&e.x),y:ce(r,s,a.height,e&&e.y)}}(p,i&&g,de.width,de.height,e));break;default:x&&q.fillOrFitMode(y,e,de.x,de.y,x,v,h)}return y.transform||(e.x||e.y)&&re(y.transform=ne(),e.x,e.y),x&&(y.scaleX=x,y.scaleY=v),n&&n<1&&(y.opacity=n),_&&(y.filters=_),g&&(y.repeat=A(g)?"x"===g?"repeat-x":"repeat-y":"repeat"),y},stretchMode:function(t,e,i,s){const a=fe(),{x:n,y:r}=e;n||r?_e(a,n,r):a.onlyScale=!0,me(a,i,s),t.transform=a},fillOrFitMode:function(t,e,i,s,a,n,r){const o=fe();_e(o,e.x+i,e.y+s),me(o,a,n),r&&pe(o,{x:e.x+e.width/2,y:e.y+e.height/2},r),t.transform=o},clipMode:function(t,e,i,s,a,n,r,o,l,d){const c=fe();be(c,e,i,s,a,n,r,o),l&&(r||o?(ge(ue),we(ue,e,l,d),ye(c,ue)):we(c,e,l,d)),t.transform=c},repeatMode:function(t,e,i,s,a,n,r,o,l,d,c,h){const u=fe();if(h)be(u,e,a,n,r,o,l,d);else{if(l)if("center"===c)pe(u,{x:i/2,y:s/2},l);else switch(xe(u,l),l){case 90:_e(u,s,0);break;case 180:_e(u,i,s);break;case 270:_e(u,0,i)}he.x=e.x+a,he.y=e.y+n,_e(u,he.x,he.y),r&&we(u,he,r,o)}t.transform=u}},{toPoint:Te}=F,{hasTransparent:Ae}=z,Pe={},Ce={};function Oe(t,e,i,s){if(i){let a,n,r,o;for(let t=0,l=i.length;t<l;t++)a=i[t],A(a)?(r=t/(l-1),n=z.string(a,s)):(r=a.offset,n=z.string(a.color,s)),e.addColorStop(r,n),!o&&Ae(n)&&(o=!0);o&&(t.isTransparent=!0)}}const{getAngle:Me,getDistance:We}=W,{get:De,rotateOfOuter:Fe,scaleOfOuter:Ie}=C,{toPoint:Ye}=F,Xe={},Ue={};function Ne(t,e,i,s,a){let n;const{width:r,height:o}=t;if(r!==o||s){const t=Me(e,i);n=De(),a?(Ie(n,e,r/o*(s||1),1),Fe(n,e,t+90)):(Ie(n,e,1,r/o*(s||1)),Fe(n,e,t))}return n}const{getDistance:je}=W,{toPoint:qe}=F,ze={},Ge={};const He={linearGradient:function(t,i){let{from:s,to:a,type:n,opacity:r}=t;Te(s||"top",i,Pe),Te(a||"bottom",i,Ce);const o=e.canvas.createLinearGradient(Pe.x,Pe.y,Ce.x,Ce.y),l={type:n,style:o};return Oe(l,o,t.stops,r),l},radialGradient:function(t,i){let{from:s,to:a,type:n,opacity:r,stretch:o}=t;Ye(s||"center",i,Xe),Ye(a||"bottom",i,Ue);const l=e.canvas.createRadialGradient(Xe.x,Xe.y,0,Xe.x,Xe.y,We(Xe,Ue)),d={type:n,style:l};Oe(d,l,t.stops,r);const c=Ne(i,Xe,Ue,o,!0);return c&&(d.transform=c),d},conicGradient:function(t,i){let{from:s,to:a,type:n,opacity:r,stretch:o}=t;qe(s||"center",i,ze),qe(a||"bottom",i,Ge);const l=e.conicGradientSupport?e.canvas.createConicGradient(0,ze.x,ze.y):e.canvas.createRadialGradient(ze.x,ze.y,0,ze.x,ze.y,je(ze,Ge)),d={type:n,style:l};Oe(d,l,t.stops,r);const c=Ne(i,ze,Ge,o||1,e.conicGradientRotate90);return c&&(d.transform=c),d},getTransform:Ne},{copy:Ve,move:Qe,toOffsetOutBounds:Je}=k,{max:Ze,abs:$e}=Math,Ke={},ti=new L,ei={};function ii(t,e){let i,s,a,n,r=0,o=0,l=0,d=0;return e.forEach(t=>{i=t.x||0,s=t.y||0,n=1.5*(t.blur||0),a=$e(t.spread||0),r=Ze(r,a+n-s),o=Ze(o,a+n+i),l=Ze(l,a+n+s),d=Ze(d,a+n-i)}),r===o&&o===l&&l===d?r:[r,o,l,d]}function si(t,i,s){const{shapeBounds:a}=s;let n,r;e.fullImageShadow?(Ve(Ke,t.bounds),Qe(Ke,i.x-a.x,i.y-a.y),n=t.bounds,r=Ke):(n=a,r=i),t.copyWorld(s.canvas,n,r)}const{toOffsetOutBounds:ai}=k,ni={};const ri=ii;const oi={shadow:function(t,e,i){let s,a;const{__nowWorld:n}=t,{shadow:r}=t.__,{worldCanvas:o,bounds:l,renderBounds:d,shapeBounds:c,scaleX:h,scaleY:u}=i,g=e.getSameCanvas(),p=r.length-1;Je(l,ei,d),r.forEach((r,_)=>{let w=1;if(r.scaleFixed){const t=Math.abs(n.scaleX);t>1&&(w=1/t)}g.setWorldShadow(ei.offsetX+(r.x||0)*h*w,ei.offsetY+(r.y||0)*u*w,(r.blur||0)*h*w,z.string(r.color)),a=H.getShadowTransform(t,g,i,r,ei,w),a&&g.setTransform(a),si(g,ei,i),a&&g.resetTransform(),s=d,r.box&&(g.restore(),g.save(),o&&(g.copyWorld(g,d,n,"copy"),s=n),o?g.copyWorld(o,n,n,"destination-out"):g.copyWorld(i.canvas,c,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,a;const{__nowWorld:n}=t,{innerShadow:r}=t.__,{worldCanvas:o,bounds:l,renderBounds:d,shapeBounds:c,scaleX:h,scaleY:u}=i,g=e.getSameCanvas(),p=r.length-1;ai(l,ni,d),r.forEach((r,_)=>{let w=1;if(r.scaleFixed){const t=Math.abs(n.scaleX);t>1&&(w=1/t)}g.save(),g.setWorldShadow(ni.offsetX+(r.x||0)*h*w,ni.offsetY+(r.y||0)*u*w,(r.blur||0)*h*w),a=H.getShadowTransform(t,g,i,r,ni,w,!0),a&&g.setTransform(a),si(g,ni,i),g.restore(),o?(g.copyWorld(g,d,n,"copy"),g.copyWorld(o,n,n,"source-out"),s=n):(g.copyWorld(i.canvas,c,l,"source-out"),s=d),g.fillWorld(s,z.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:ii,getShadowTransform:function(t,e,i,s,a,n,r){if(s.spread){const i=2*s.spread*n*(r?-1:1),{width:o,height:l}=t.__layout.strokeBounds;return ti.set().scaleOfOuter({x:(a.x+a.width/2)*e.pixelRatio,y:(a.y+a.height/2)*e.pixelRatio},1+i/o,1+i/l),ti}},isTransformShadow(t){},getInnerShadowSpread:ri},{excludeRenderBounds:li}=p;let di;function ci(t,e,i,s,a,n,r,o){switch(e){case"grayscale":di||(di=!0,a.useGrayscaleAlpha(t.__nowWorld));case"alpha":!function(t,e,i,s,a,n){const r=t.__nowWorld;i.resetTransform(),i.opacity=1,i.useMask(s,r),n&&s.recycle(r);ui(t,e,i,1,a,n)}(t,i,s,a,r,o);break;case"opacity-path":ui(t,i,s,n,r,o);break;case"path":o&&i.restore()}}function hi(t){return t.getSameCanvas(!1,!0)}function ui(t,e,i,s,a,n){const r=t.__nowWorld;e.resetTransform(),e.opacity=s,e.copyWorld(i,r,void 0,a),n?i.recycle(r):i.clearWorld(r)}V.prototype.__renderMask=function(t,e){let i,s,a,n,r,o;const{children:l}=this;for(let d=0,c=l.length;d<c;d++){if(i=l[d],o=i.__.mask,o){r&&(ci(this,r,t,a,s,n,void 0,!0),s=a=null),"clipping"!==o&&"clipping-path"!==o||li(i,e)||i.__render(t,e),n=i.__.opacity,di=!1,"path"===o||"clipping-path"===o?(n<1?(r="opacity-path",a||(a=hi(t))):(r="path",t.save()),i.__clip(a||t,e)):(r="grayscale"===o?"grayscale":"alpha",s||(s=hi(t)),a||(a=hi(t)),i.__render(s,e));continue}const c=1===n&&i.__.__blendMode;c&&ci(this,r,t,a,s,n,void 0,!1),li(i,e)||i.__render(a||t,e),c&&ci(this,r,t,a,s,n,c,!1)}ci(this,r,t,a,s,n,void 0,!0)};const fi=">)]}%!?,.:;'\"》)」〉』〗】〕}┐>’”!?,、。:;‰",gi=fi+"_#~&*+\\=|≮≯≈≠=…",pi=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 _i(t){const e={};return t.split("").forEach(t=>e[t]=!0),e}const wi=_i("ABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789abcdefghijklmnopqrstuvwxyz"),yi=_i("{[(<'\"《(「〈『〖【〔{┌<‘“=¥¥$€££¢¢"),mi=_i(fi),xi=_i(gi),vi=_i("- —/~|┆·");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:Si,Single:ki,Before:Bi,After:Ri,Symbol:Ei,Break:Li}=bi;function Ti(t){return wi[t]?Si:vi[t]?Li:yi[t]?Bi:mi[t]?Ri:xi[t]?Ei:pi.test(t)?ki:Si}const Ai={trimRight(t){const{words:e}=t;let i,s=0,a=e.length;for(let n=a-1;n>-1&&(i=e[n].data[0]," "===i.char);n--)s++,t.width-=i.width;s&&e.splice(a-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:Ci}=Ai,{Letter:Oi,Single:Mi,Before:Wi,After:Di,Symbol:Fi,Break:Ii}=bi;let Yi,Xi,Ui,Ni,ji,qi,zi,Gi,Hi,Vi,Qi,Ji,Zi,$i,Ki,ts,es,is=[];function ss(t,e){Hi&&!Gi&&(Gi=Hi),Yi.data.push({char:t,width:e}),Ui+=e}function as(){Ni+=Ui,Yi.width=Ui,Xi.words.push(Yi),Yi={data:[]},Ui=0}function ns(){$i&&(Ki.paraNumber++,Xi.paraStart=!0,$i=!1),Hi&&(Xi.startCharSize=Gi,Xi.endCharSize=Hi,Gi=0),Xi.width=Ni,ts.width?Ci(Xi):es&&rs(),is.push(Xi),Xi={words:[]},Ni=0}function rs(){Ni>(Ki.maxWidth||0)&&(Ki.maxWidth=Ni)}const{top:os,right:ls,bottom:ds,left:cs}=I;function hs(t,e,i){const{bounds:s,rows:a}=t;s[e]+=i;for(let t=0;t<a.length;t++)a[t][e]+=i}const us={getDrawData:function(t,i){A(t)||(t=String(t));let s=0,a=0,n=i.__getInput("width")||0,r=i.__getInput("height")||0;const{__padding:o}=i;o&&(n?(s=o[cs],n-=o[ls]+o[cs],!n&&(n=.01)):i.autoSizeAlign||(s=o[cs]),r?(a=o[os],r-=o[os]+o[ds],!r&&(r=.01)):i.autoSizeAlign||(a=o[os]));const l={bounds:{x:s,y:a,width:n,height:r},rows:[],paraNumber:0,font:e.canvas.font=i.__font};return function(t,i,s){Ki=t,is=t.rows,ts=t.bounds,es=!ts.width&&!s.autoSizeAlign;const{__letterSpacing:a,paraIndent:n,textCase:r}=s,{canvas:o}=e,{width:l}=ts;if(s.__isCharMode){const t="none"!==s.textWrap,e="break"===s.textWrap;$i=!0,Qi=null,Gi=zi=Hi=Ui=Ni=0,Yi={data:[]},Xi={words:[]},a&&(i=[...i]);for(let s=0,d=i.length;s<d;s++)qi=i[s],"\n"===qi?(Ui&&as(),Xi.paraEnd=!0,ns(),$i=!0):(Vi=Ti(qi),Vi===Oi&&"none"!==r&&(qi=Pi(qi,r,!Ui)),zi=o.measureText(qi).width,a&&(a<0&&(Hi=zi),zi+=a),Ji=Vi===Mi&&(Qi===Mi||Qi===Oi)||Qi===Mi&&Vi!==Di,Zi=!(Vi!==Wi&&Vi!==Mi||Qi!==Fi&&Qi!==Di),ji=$i&&n?l-n:l,t&&l&&Ni+Ui+zi>ji&&(e?(Ui&&as(),Ni&&ns()):(Zi||(Zi=Vi===Oi&&Qi==Di),Ji||Zi||Vi===Ii||Vi===Wi||Vi===Mi||Ui+zi>ji?(Ui&&as(),Ni&&ns()):Ni&&ns()))," "===qi&&!0!==$i&&Ni+Ui===0||(Vi===Ii?(" "===qi&&Ui&&as(),ss(qi,zi),as()):Ji||Zi?(Ui&&as(),ss(qi,zi)):ss(qi,zi)),Qi=Vi);Ui&&as(),Ni&&ns(),is.length>0&&(is[is.length-1].paraEnd=!0)}else i.split("\n").forEach(t=>{Ki.paraNumber++,Ni=o.measureText(t).width,is.push({x:n||0,text:t,width:Ni,paraStart:!0}),es&&rs()})}(l,t,i),o&&function(t,e,i,s,a){if(!s&&i.autoSizeAlign)switch(i.textAlign){case"left":hs(e,"x",t[cs]);break;case"right":hs(e,"x",-t[ls])}if(!a&&i.autoSizeAlign)switch(i.verticalAlign){case"top":hs(e,"y",t[os]);break;case"bottom":hs(e,"y",-t[ds])}}(o,l,i,n,r),function(t,e){const{rows:i,bounds:s}=t,a=i.length,{__lineHeight:n,__baseLine:r,__letterSpacing:o,__clipText:l,textAlign:d,verticalAlign:c,paraSpacing:h,autoSizeAlign:u}=e;let{x:f,y:g,width:p,height:_}=s,w=n*a+(h?h*(t.paraNumber-1):0),y=r;if(l&&w>_)w=Math.max(_,n),a>1&&(t.overflow=a);else if(_||u)switch(c){case"middle":g+=(_-w)/2;break;case"bottom":g+=_-w}y+=g;let m,x,v,b=p||u?p:t.maxWidth;for(let r=0,c=a;r<c;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&&h&&r>0&&(y+=h),m.y=y,y+=n,t.overflow>r&&y>w&&(m.isOverflow=!0,t.overflow=r+1),x=m.x,v=m.width,o<0&&(m.width<0?(v=-m.width+e.fontSize+o,x-=v,v+=e.fontSize):v-=o),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}(l,i),i.__isCharMode&&function(t,e,i){const{rows:s}=t,{textAlign:a,paraIndent:n,letterSpacing:r}=e,o=i&&a.includes("both"),l=o||i&&a.includes("justify"),d=l&&a.includes("letter");let c,h,u,f,g,p,_,w,y,m;s.forEach(t=>{t.words&&(g=n&&t.paraStart?n:0,w=t.words.length,l&&(m=!t.paraEnd||o,h=i-t.width-g,d?f=h/(t.words.reduce((t,e)=>t+e.data.length,0)-1):u=w>1?h/(w-1):0),p=r||t.isOverflow||d?0:u?1:2,t.isOverflow&&!r&&(t.textMode=!0),2===p?(t.x+=g,function(t){t.text="",t.words.forEach(e=>{e.data.forEach(e=>{t.text+=e.char})})}(t)):(t.x+=g,c=t.x,t.data=[],t.words.forEach((e,i)=>{1===p?(_={char:"",x:c},c=function(t,e,i){return t.forEach(t=>{i.char+=t.char,e+=t.width}),e}(e.data,c,_),(t.isOverflow||" "!==_.char)&&t.data.push(_)):c=function(t,e,i,s,a){return t.forEach(t=>{(s||" "!==t.char)&&(t.x=e,i.push(t)),e+=t.width,a&&(e+=a)}),e}(e.data,c,t.data,t.isOverflow,m&&f),m&&(y=i===w-1,u?y||(c+=u,t.width+=u):f&&(t.width+=f*(e.data.length-(y?1:0))))})),t.words=null)})}(l,i,n),l.overflow&&function(t,i,s,a){if(!a)return;const{rows:n,overflow:r}=t;let{textOverflow:o}=i;if(n.splice(r),o&&"show"!==o){let t,l;"hide"===o?o="":"ellipsis"===o&&(o="...");const d=o?e.canvas.measureText(o).width:0,c=s+a-d;("none"===i.textWrap?n:[n[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<c));s--){if(l<c&&" "!==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)}})}}(l,i,s,n),"none"!==i.textDecoration&&function(t,e){let i,s=0;const{fontSize:a,textDecoration:n}=e;switch(t.decorationHeight=a/11,R(n)?(i=n.type,n.color&&(t.decorationColor=z.string(n.color)),n.offset&&(s=Math.min(.3*a,Math.max(n.offset,.15*-a)))):i=n,i){case"under":t.decorationY=[.15*a+s];break;case"delete":t.decorationY=[.35*-a];break;case"under-delete":t.decorationY=[.15*a+s,.35*-a]}}(l,i),l}};const fs={string:function(t,e){if(!t)return"#000";const i=Y(e)&&e<1;if(A(t)){if(!i||!z.object)return t;t=z.object(t)}let s=T(t.a)?1:t.a;i&&(s*=e);const a=t.r+","+t.g+","+t.b;return 1===s?"rgb("+a+")":"rgba("+a+","+s+")"}};Object.assign(Q,us),Object.assign(z,fs),Object.assign(j,Qt),Object.assign(q,Le),Object.assign(G,He),Object.assign(H,oi);const{setPoint:gs,addPoint:ps,toBounds:_s}=J;const ws={syncExport(t,e,i){let s;$.running=!0;try{const a=K.fileType(e),n=e.includes(".");i=K.getExportOptions(i);const{toURL:r}=tt,{download:o}=tt.origin;if("json"===a)n&&o(r(JSON.stringify(t.toJSON(i.json)),"text"),e),s={data:!!n||t.toJSON(i.json)};else if("svg"===a)n&&o(r(t.toSVG(),"svg"),e),s={data:!!n||t.toSVG()};else{let a,n,r=1,o=1;const{worldTransform:l,isLeafer:d,leafer:c,isFrame:h}=t,{slice:u,clip:f,trim:g,screenshot:p,padding:_,onCanvas:w}=i,y=et(i.smooth)?!c||c.config.smooth:i.smooth,m=i.contextSettings||(c?c.config.contextSettings:void 0),x=d&&p&&et(i.fill)?t.fill:i.fill,v=K.isOpaqueImage(e)||x,b=new it;if(p)a=!0===p?d?c.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=c||t;default:b.set(l).divide(t.getTransform(e));const i=e.worldTransform;r/=r/i.scaleX,o/=o/i.scaleY}a=t.getBounds("render",e)}const S={scaleX:1,scaleY:1};st.getScaleData(i.scale,i.size,a,S);let k=i.pixelRatio||1,{x:B,y:R,width:E,height:L}=new Z(a).scale(S.scaleX,S.scaleY);f&&(B+=f.x,R+=f.y,E=f.width,L=f.height);const T={exporting:!0,matrix:b.scale(1/S.scaleX,1/S.scaleY).invert().translate(-B,-R).withScale(1/r*S.scaleX,1/o*S.scaleY)};let A,P=at.canvas({width:Math.floor(E),height:Math.floor(L),pixelRatio:k,smooth:y,contextSettings:m});u&&(A=t,A.__worldOpacity=0,t=c||t,T.bounds=P.bounds),P.save();const C=h&&!et(x),O=t.get("fill");if(C&&(t.fill=""),tt.render(t,P,T),C&&(t.fill=O),P.restore(),A&&A.__updateWorldOpacity(),g){n=function(t){const{width:e,height:i}=t.view,{data:s}=t.context.getImageData(0,0,e,i);let a,n,r,o=0;for(let t=0;t<s.length;t+=4)0!==s[t+3]&&(a=o%e,n=(o-a)/e,r?ps(r,a,n):gs(r={},a,n)),o++;const l=new Z;return r&&(_s(r,l),l.scale(1/t.pixelRatio).ceil()),l}(P);const t=P,{width:e,height:i}=n,s={x:0,y:0,width:e,height:i,pixelRatio:k};P=at.canvas(s),P.copyWorld(t,n,s),t.destroy()}if(_){const[t,e,i,s]=st.fourNumber(_),a=P,{width:n,height:r}=a;P=at.canvas({width:n+s+e,height:r+t+i,pixelRatio:k}),P.copyWorld(a,a.bounds,{x:s,y:t,width:n,height:r}),a.destroy()}v&&P.fillWorld(P.bounds,x||"#FFFFFF","destination-over"),w&&w(P);s={data:"canvas"===e?P:P.export(e,i),width:P.pixelWidth,height:P.pixelHeight,renderBounds:a,trimBounds:n};const M=c&&c.app;M&&M.canvasManager&&M.canvasManager.clearRecycled()}}catch(t){s={data:"",error:t}}return $.running=!1,s},export(t,e,i){return $.running=!0,function(t){ys||(ys=new nt);return new Promise(e=>{ys.add(()=>ht(this,void 0,void 0,function*(){return yield t(e)}),{parallel:!1})})}(s=>new Promise(a=>{const n=()=>ht(this,void 0,void 0,function*(){if(!rt.isComplete)return tt.requestRender(n);const r=$.syncExport(t,e,i);r.data instanceof Promise&&(r.data=yield r.data),s(r),a()});t.updateLayout(),ms(t);const{leafer:r}=t;r?r.waitViewCompleted(n):n()}))}};let ys;function ms(t){t.__.__needComputePaint&&t.__.__computePaint(),t.isBranch&&t.children.forEach(t=>ms(t))}const xs=ot.prototype,vs=lt.get("@leafer-in/export");xs.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)},xs.toBlob=function(t,e){return new Promise(i=>{tt.origin.canvasToBolb(this.view,t,e).then(t=>{i(t)}).catch(t=>{vs.error(t),i(null)})})},xs.toDataURL=function(t,e){return tt.origin.canvasToDataURL(this.view,t,e)},xs.saveAs=function(t,e){return new Promise(i=>{tt.origin.canvasSaveAs(this.view,t,e).then(()=>{i(!0)}).catch(t=>{vs.error(t),i(!1)})})},dt.add("export"),Object.assign($,ws),ct.prototype.export=function(t,e){return $.export(this,t,e)},ct.prototype.syncExport=function(t,e){return $.syncExport(this,t,e)},Object.assign(a,{interaction:(t,e,i,s)=>new N(t,e,i,s),hitCanvas:(t,e)=>new ut(t,e),hitCanvasManager:()=>new U});export{Et as Layouter,ut as LeaferCanvas,Pt as Picker,Tt as Renderer,Ct as Selector,_t as Watcher,pt as useCanvas};
1
+ import{LeaferCanvasBase as t,Platform as e,canvasPatch as i,FileHelper as s,Creator as a,LeaferImage as n,defineKey as r,LeafList as o,DataHelper as l,RenderEvent as d,ChildEvent as c,WatchEvent as h,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 S,BoundsHelper as k,Plugin as B,isObject as R,FourNumberHelper as E,Matrix as L,isUndefined as T,isString as A,ImageEvent as P,MatrixHelper as C,MathHelper as O,AlignHelper as M,PointHelper as W,getMatrixData as D,AroundHelper as F,Direction4 as I,isNumber as Y}from"@leafer/core";export*from"@leafer/core";export{LeaferImage}from"@leafer/core";import{writeFileSync as X}from"fs";import{HitCanvasManager as U,InteractionBase as N}from"@leafer-ui/core";export*from"@leafer-ui/core";import{Paint as j,PaintImage as q,ColorConvert as z,PaintGradient as G,Effect as H,Group as V,TextConvert as Q,TwoPointBoundsHelper as J,Bounds as Z,Export as $,FileHelper as K,Platform as tt,isUndefined as et,Matrix as it,MathHelper as st,Creator as at,TaskProcessor as nt,Resource as rt,LeaferCanvasBase as ot,Debug as lt,Plugin as dt,UI as ct}from"@leafer-ui/draw";function ht(t,e,i,s){return new(i||(i=Promise))(function(a,n){function r(t){try{l(s.next(t))}catch(t){n(t)}}function o(t){try{l(s.throw(t))}catch(t){n(t)}}function l(t){var e;t.done?a(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)=>ht(this,void 0,void 0,function*(){return t.toBuffer(ft(e),i)}),canvasSaveAs:(t,e,i)=>ht(this,void 0,void 0,function*(){return X(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=a.canvas()}}Object.assign(a,{canvas:(t,e)=>new ut(t,e),image:t=>new n(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===c.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 h(h.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],[[c.ADD,c.REMOVE],this.__onChildEvent,this],[h.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 St{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:kt,updateAllChange:Bt}=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(h.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:a,LAYOUT:n,AFTER:r}=v,o=this.getBlocks(s);o.forEach(t=>t.setBefore()),i.emitEvent(new v(a,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(a=>{e=t.levelMap[a];for(let t=0,a=e.length;t<a;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(n,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:a}=v,n=this.getBlocks(new o(e));e.emitEvent(new v(i,n,this.times)),Et.fullLayout(e),n.forEach(t=>{t.setAfter()}),e.emitEvent(new v(s,n,this.times)),e.emitEvent(new v(a,n,this.times)),this.addBlocks(n),x.end(t)}static fullLayout(t){kt(t,!0),t.isBranch?g.updateBounds(t):f.updateBounds(t),Bt(t)}addExtra(t){if(!this.__updatedList.has(t)){const{updatedList:e,beforeBounds:i}=this.extraBlock||(this.extraBlock=new St([]));e.length?i.add(t.__world):i.set(t.__world),e.add(t)}}createBlock(t){return new St(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],[h.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),a=new _(s);i.save(),s.spread(Tt.clipSpread).ceil(),i.clearWorld(s),i.clipWorld(s),this.__render(s,a),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,a=t.includes(this.target.__world),n=a?{includes:a}:{bounds:t,includes:a};this.needFill&&s.fillWorld(t,this.config.fill),y.showRepaint&&y.drawRepaint(s,t),e.render(this.target,s,n),this.renderBounds=i=i||t,this.renderOptions=n,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:a}=this;a.length>30&&a.shift(),a.push(t),this.FPS=Math.round(a.reduce((t,e)=>t+e,0)/a.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],[S.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}=k;class Pt{constructor(t,e){this.target=t,this.selector=e}getByPoint(t,e,i){e||(e=0),i||(i={});const s=i.through||!1,a=i.ignoreHittable||!1,n=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(n.isBranchLeaf?{children:[n]}:n);const{list:r}=this.findList,l=this.getBestMatchLeaf(r,i.bottomList,a,!!i.findList),d=a?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,s){const a=this.findList=new o;if(t.length){let e;const{x:s,y:n}=this.point,r={x:s,y:n,radiusX:0,radiusY:0};for(let s=0,n=t.length;s<n;s++)if(e=t[s],(i||f.worldHittable(e))&&(this.hitChild(e,r),a.length)){if(e.isBranchLeaf&&t.some(t=>t!==e&&f.hasParent(t,e))){a.reset();break}return a.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),a.length)return a.list[0];return s?null:i?t[0]:t.find(t=>f.worldHittable(t))}getPath(t){const e=new o,i=[],{target:s}=this;for(;t&&(t.syncEventer&&i.push(t.syncEventer),e.add(t),(t=t.parent)!==s););return i.length&&i.forEach(t=>{for(;t&&(t.__.hittable&&e.add(t),(t=t.parent)!==s););}),s&&e.add(s),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,a,n;for(let t=0,r=i.length;t<r;t++){s=i[t],a=i[t+1];for(let t=0,i=s.length;t<i&&(n=s.list[t],!a||!a.has(n));t++)e.add(n)}return e}hitBranch(t){this.eachFind(t.children,t.__onlyHitMask)}eachFind(t,e){let i,s;const{point:a}=this;for(let n=t.length-1;n>-1;n--)if(i=t[n],i.__.visible&&(!e||i.__.mask))if(s=!!i.__.hitRadius||At(i.__world,a),i.isBranch){if(s||i.__ignoreHitWorld){if(i.isBranchLeaf&&i.__.__clipAfterFill&&!i.__hitWorld(a))continue;i.topChildren&&this.eachFind(i.topChildren,!1),this.eachFind(i.children,i.__onlyHitMask),i.isBranchLeaf&&this.hitChild(i,a)}}else s&&this.hitChild(i,a)}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,a=[];const{children:n}=s;for(let s=0,r=n.length;s<r;s++)if(i=n[s],i.__.mask&&a.push(i),i===t){if(a&&!a.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 Pt(this.target=t,this),this.finder=a.finder&&a.finder()}getByPoint(t,i,s){const{target:a,picker:n}=this;return e.backgrounder&&a&&a.updateLayout(),n.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):B.need("find")}destroy(){this.picker.destroy(),this.finder&&this.finder.destroy()}}function Ot(t,e,i){t.__.__font?j.fillText(t,e,i):t.__.windingRule?e.fill(t.__.windingRule):e.fill()}function Mt(t,e,i,s,a){const n=i.__;R(t)?j.drawStrokesStyle(t,e,!1,i,s,a):(s.setStroke(t,n.__strokeWidth*e,n),s.stroke()),n.__useArrow&&j.strokeArrow(t,i,s,a)}function Wt(t,e,i,s,a){const n=i.__;R(t)?j.drawStrokesStyle(t,e,!0,i,s,a):(s.setStroke(t,n.__strokeWidth*e,n),j.drawTextStroke(i,s,a))}function Dt(t,e,i,s,a){const n=s.getSameCanvas(!0,!0);n.font=i.__.__font,Wt(t,2,i,n,a),n.blendMode="outside"===e?"destination-out":"destination-in",j.fillText(i,n,a),n.blendMode="normal",f.copyCanvasByWorld(i,s,n),n.recycle(i.__nowWorld)}Object.assign(a,{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 Ct(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:Ft,copyAndSpread:It,toOuterOf:Yt,getOuterOf:Xt,getByMove:Ut,move:Nt,getIntersectData:jt}=k,qt={};let zt;const{stintSet:Gt}=l,{hasTransparent:Ht}=z;function Vt(t,e,i){if(!R(e)||!1===e.visible||0===e.opacity)return;let s;const{boxBounds:a}=i.__layout;switch(e.type){case"image":s=q.image(i,t,e,a,!zt||!zt[e.url]);break;case"linear":s=G.linearGradient(e,a);break;case"radial":s=G.radialGradient(e,a);break;case"angular":s=G.conicGradient(e,a);break;case"solid":const{type:n,color:r,opacity:o}=e;s={type:n,style:z.string(r,o)};break;default:T(e.r)||(s={type:"solid",style:z.string(e)})}if(s&&(s.originPaint=e,A(s.style)&&Ht(s.style)&&(s.isTransparent=!0),e.style)){if(0===e.style.strokeWidth)return;s.strokeStyle=e.style}return s}const Qt={compute:function(t,e){const i=e.__,s=[];let a,n,r,o=i.__input[t];w(o)||(o=[o]),zt=q.recycleImage(t,i);for(let i,a=0,n=o.length;a<n;a++)(i=Vt(t,o[a],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)&&(a=!0),n=!0),"fill"===t?(Gt(i,"__isAlphaPixelFill",a),Gt(i,"__isTransparentFill",n)):(Gt(i,"__isAlphaPixelStroke",a),Gt(i,"__isTransparentStroke",n),Gt(i,"__hasMultiStrokeStyle",r))):i.__removePaint(t,!1)},fill:function(t,e,i,s){i.fillStyle=t,Ot(e,i,s)},fills:function(t,e,i,s){let a,n,r;for(let o=0,l=t.length;o<l;o++){if(a=t[o],n=a.originPaint,a.image){if(r?r++:r=1,q.checkImage(a,!e.__.__font,e,i,s))continue;if(!a.style){1===r&&a.image.isPlacehold&&e.drawImagePlaceholder(a,i,s);continue}}if(i.fillStyle=a.style,a.transform||n.scaleFixed){if(i.save(),a.transform&&i.transform(a.transform),n.scaleFixed){const{scaleX:t,scaleY:s}=e.getRenderScaleData(!0);(!0===n.scaleFixed||"zoom-in"===n.scaleFixed&&t>1&&s>1)&&i.scale(1/t,1/s)}n.blendMode&&(i.blendMode=n.blendMode),Ot(e,i,s),i.restore()}else n.blendMode?(i.saveBlendMode(n.blendMode),Ot(e,i,s),i.restoreBlendMode()):Ot(e,i,s)}},fillPathOrText:Ot,fillText:function(t,e,i){const s=t.__,{rows:a,decorationY:n}=s.__textDrawData;let r;s.__isPlacehold&&s.placeholderColor&&(e.fillStyle=s.placeholderColor);for(let t=0,i=a.length;t<i;t++)r=a[t],r.text?e.fillText(r.text,r.x,r.y):r.data&&r.data.forEach(t=>{e.fillText(t.char,t.x,r.y)});if(n){const{decorationColor:t,decorationHeight:i}=s.__textDrawData;t&&(e.fillStyle=t),a.forEach(t=>n.forEach(s=>e.fillRect(t.x,t.y+s,t.width,i)))}},stroke:function(t,e,i,s){const a=e.__;if(a.__strokeWidth)if(a.__font)j.strokeText(t,e,i,s);else switch(a.strokeAlign){case"center":Mt(t,1,e,i,s);break;case"inside":!function(t,e,i,s){i.save(),i.clipUI(e),Mt(t,2,e,i,s),i.restore()}(t,e,i,s);break;case"outside":!function(t,e,i,s){const a=e.__;if(a.__fillAfterStroke)Mt(t,2,e,i,s);else{const{renderBounds:n}=e.__layout,r=i.getSameCanvas(!0,!0);e.__drawRenderPath(r),Mt(t,2,e,r,s),r.clipUI(a),r.clearWorld(n),f.copyCanvasByWorld(e,i,r),r.recycle(e.__nowWorld)}}(t,e,i,s)}},strokes:function(t,e,i,s){j.stroke(t,e,i,s)},strokeText:function(t,e,i,s){switch(e.__.strokeAlign){case"center":Wt(t,1,e,i,s);break;case"inside":Dt(t,"inside",e,i,s);break;case"outside":e.__.__fillAfterStroke?Wt(t,2,e,i,s):Dt(t,"outside",e,i,s)}},drawTextStroke:function(t,e,i){let s,a=t.__.__textDrawData;const{rows:n,decorationY:r}=a;for(let t=0,i=n.length;t<i;t++)s=n[t],s.text?e.strokeText(s.text,s.x,s.y):s.data&&s.data.forEach(t=>{e.strokeText(t.char,t.x,s.y)});if(r){const{decorationHeight:t}=a;n.forEach(i=>r.forEach(s=>e.strokeRect(i.x,i.y+s,i.width,t)))}},drawStrokesStyle:function(t,e,i,s,a,n){let r;const o=s.__,{__hasMultiStrokeStyle:l}=o;l||a.setStroke(void 0,o.__strokeWidth*e,o);for(let d=0,c=t.length;d<c;d++)if(r=t[d],(!r.image||!q.checkImage(r,!1,s,a,n))&&r.style){if(l){const{strokeStyle:t}=r;t?a.setStroke(r.style,o.__getRealStrokeWidth(t)*e,o,t):a.setStroke(r.style,o.__strokeWidth*e,o)}else a.strokeStyle=r.style;r.originPaint.blendMode?(a.saveBlendMode(r.originPaint.blendMode),i?j.drawTextStroke(s,a,n):a.stroke(),a.restoreBlendMode()):i?j.drawTextStroke(s,a,n):a.stroke()}},shape:function(t,i,s){const a=i.getSameCanvas(),n=i.bounds,r=t.__nowWorld,o=t.__layout,l=t.__nowWorldShapeBounds||(t.__nowWorldShapeBounds={});let d,c,h,u,f,g;Yt(o.strokeSpread?(It(qt,o.boxBounds,o.strokeSpread),qt):o.boxBounds,r,l);let{scaleX:p,scaleY:_}=t.getRenderScaleData(!0);if(n.includes(l))g=a,d=f=l,c=r;else{let a;if(e.fullImageShadow)a=l;else{const t=o.renderShapeSpread?Ft(n,E.swapAndScale(o.renderShapeSpread,p,_)):n;a=jt(t,l)}u=n.getFitMatrix(a);let{a:w,d:y}=u;u.a<1&&(g=i.getSameCanvas(),t.__renderShape(g,s),p*=w,_*=y),f=Xt(l,u),d=Ut(f,-u.e,-u.f),c=Xt(r,u),Nt(c,-u.e,-u.f);const m=s.matrix;m?(h=new L(u),h.multiply(m),w*=m.scaleX,y*=m.scaleY):h=u,h.withScale(w,y),s=Object.assign(Object.assign({},s),{matrix:h})}return t.__renderShape(a,s),{canvas:a,matrix:h,fitMatrix:u,bounds:d,renderBounds:c,worldCanvas:g,shapeBounds:f,scaleX:p,scaleY:_}}};let Jt,Zt=new _;const{isSame:$t}=k;function Kt(t,e,i,s,a,n){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 a.data||q.createData(a,s,i,n),!0}function te(t,e){se(t,P.LOAD,e)}function ee(t,e){se(t,P.LOADED,e)}function ie(t,e,i){e.error=i,t.forceUpdate("surface"),se(t,P.ERROR,e)}function se(t,e,i){t.hasEvent(e)&&t.emitEvent(new P(e,i))}function ae(t,e){const{leafer:i}=t;i&&i.viewReady&&(i.renderer.ignore=e)}const{get:ne,translate:re}=C,oe=new _,le={},de={};function ce(t,e,i,s){const a=A(t)||s?(s?i-s*e:i%e)/((s||Math.floor(i/e))-1):t;return"auto"===t&&a<0?0:a}let he={},ue=D();const{get:fe,set:ge,rotateOfOuter:pe,translate:_e,scaleOfOuter:we,multiplyParent:ye,scale:me,rotate:ve,skew:xe}=C;function be(t,e,i,s,a,n,r,o){r&&ve(t,r),o&&xe(t,o.x,o.y),a&&me(t,a,n),_e(t,e.x+i,e.y+s)}const{get:Se,scale:ke,copy:Be}=C,{getFloorScale:Re}=O,{abs:Ee}=Math;const Le={image:function(t,e,i,s,a){let n,r;const o=b.get(i);return Jt&&i===Jt.paint&&$t(s,Jt.boxBounds)?n=Jt.leafPaint:(n={type:i.type,image:o},o.hasAlphaPixel&&(n.isTransparent=!0),Jt=o.use>1?{leafPaint:n,paint:i,boxBounds:Zt.set(s)}:null),(a||o.loading)&&(r={image:o,attrName:e,attrValue:i}),o.ready?(Kt(t,e,i,o,n,s),a&&(te(t,r),ee(t,r))):o.error?a&&ie(t,r,o.error):(a&&(ae(t,!0),te(t,r)),n.loadId=o.load(()=>{ae(t,!1),t.destroyed||(Kt(t,e,i,o,n,s)&&(o.hasAlphaPixel&&(t.__layout.hitCanvasChanged=!0),t.forceUpdate("surface")),ee(t,r)),n.loadId=void 0},e=>{ae(t,!1),ie(t,r,e),n.loadId=void 0}),t.placeholderColor&&(t.placeholderDelay?setTimeout(()=>{o.ready||(o.isPlacehold=!0,t.forceUpdate("surface"))},t.placeholderDelay):o.isPlacehold=!0)),n},checkImage:function(t,i,s,a,n){const{scaleX:r,scaleY:o}=q.getImageRenderScaleData(t,s,a,n),{image:l,data:d,originPaint:c}=t,{exporting:h}=n;return!(!d||t.patternId===r+"-"+o&&!h)&&(i&&(d.repeat?i=!1:c.changeful||"miniapp"===e.name&&S.isResizing(s)||h||(i=e.image.isLarge(l,r,o))),i?(s.__.__isFastShadow&&(a.fillStyle=t.style||"#000",a.fill()),q.drawImage(t,r,o,s,a,n),!0):(!t.style||c.sync||h?q.createPattern(t,s,a,n):q.createPatternTask(t,s,a,n),!1))},drawImage:function(t,e,i,s,a,n){const{data:r,image:o}=t,{blendMode:l}=t.originPaint,{opacity:d,transform:c}=r,h=o.getFull(r.filters),u=s.__;let f,{width:g,height:p}=o;(f=c&&!c.onlyScale||u.path||u.cornerRadius)||d||l?(a.save(),f&&a.clipUI(s),l&&(a.blendMode=l),d&&(a.opacity*=d),c&&a.transform(c),a.drawImage(h,0,0,g,p),a.restore()):(r.scaleX&&(g*=r.scaleX,p*=r.scaleY),a.drawImage(h,0,0,g,p))},getImageRenderScaleData:function(t,e,i,s){const a=e.getRenderScaleData(!0,t.originPaint.scaleFixed),{data:n}=t;if(i){const{pixelRatio:t}=i;a.scaleX*=t,a.scaleY*=t}return n&&n.scaleX&&(a.scaleX*=Math.abs(n.scaleX),a.scaleY*=Math.abs(n.scaleY)),a},recycleImage:function(t,e){const i=e["_"+t];if(w(i)){let s,a,n,r,o;for(let l=0,d=i.length;l<d;l++)s=i[l],a=s.image,o=a&&a.url,o&&(n||(n={}),n[o]=!0,b.recycle(a),a.loading&&(r||(r=e.__input&&e.__input[t]||[],w(r)||(r=[r])),a.unload(i[l].loadId,!r.some(t=>t.url===o))));return n}return null},createPatternTask:function(t,e,i,s){t.patternTask||(t.patternTask=b.patternTasker.add(()=>ht(this,void 0,void 0,function*(){t.patternTask=null,i.bounds.hit(e.__nowWorld)&&q.createPattern(t,e,i,s),e.forceUpdate("surface")}),300))},createPattern:function(t,i,s,a){let{scaleX:n,scaleY:r}=q.getImageRenderScaleData(t,i,s,a),o=n+"-"+r;if(t.patternId!==o&&!i.destroyed&&(!e.image.isLarge(t.image,n,r)||t.data.repeat)){const{image:s,data:a}=t,{transform:l,gap:d}=a,c=q.getPatternFixScale(t,n,r);let h,u,f,{width:g,height:p}=s;c&&(n*=c,r*=c),g*=n,p*=r,d&&(u=d.x*n/Ee(a.scaleX||1),f=d.y*r/Ee(a.scaleY||1)),(l||1!==n||1!==r)&&(n*=Re(g+(u||0)),r*=Re(p+(f||0)),h=Se(),l&&Be(h,l),ke(h,1/n,1/r));const _=s.getCanvas(g,p,a.opacity,a.filters,u,f,i.leafer&&i.leafer.config.smooth),w=s.getPattern(_,a.repeat||e.origin.noRepeat||"no-repeat",h,t);t.style=w,t.patternId=o}},getPatternFixScale:function(t,i,s){const{image:a}=t;let n,r=e.image.maxPatternSize,o=a.width*a.height;return a.isSVG?i>1&&(n=Math.ceil(i)/i):r>o&&(r=o),(o*=i*s)>r&&(n=Math.sqrt(r/o)),n},createData:function(t,e,i,s){t.data=q.getPatternData(i,s,e)},getPatternData:function(t,e,i){t.padding&&(e=oe.set(e).shrink(t.padding)),"strench"===t.mode&&(t.mode="stretch");const{width:s,height:a}=i,{opacity:n,mode:r,align:o,offset:l,scale:d,size:c,rotation:h,skew:u,clipSize:f,repeat:g,gap:p,filters:_}=t,w=e.width===s&&e.height===a,y={mode:r},m="center"!==o&&(h||0)%180==90;let v,x;switch(k.set(de,0,0,m?a:s,m?s:a),r&&"cover"!==r&&"fit"!==r?((d||c)&&(O.getScaleData(d,c,i,le),v=le.scaleX,x=le.scaleY),(o||p||g)&&(v&&k.scale(de,v,x,!0),o&&M.toPoint(o,de,e,de,!0,!0))):w&&!h||(v=x=k.getFitScale(e,de,"fit"!==r),k.put(e,i,o,v,!1,de),k.scale(de,v,x,!0)),l&&W.move(de,l),r){case"stretch":w?v&&(v=x=void 0):(v=e.width/s,x=e.height/a,q.stretchMode(y,e,v,x));break;case"normal":case"clip":if(de.x||de.y||v||f||h||u){let t,i;f&&(t=e.width/f.width,i=e.height/f.height),q.clipMode(y,e,de.x,de.y,v,x,h,u,t,i),t&&(v=v?v*t:t,x=x?x*i:i)}break;case"repeat":(!w||v||h||u)&&q.repeatMode(y,e,s,a,de.x,de.y,v,x,h,u,o,t.freeTransform),g||(y.repeat="repeat");const i=R(g);(p||i)&&(y.gap=function(t,e,i,s,a){let n,r;R(t)?(n=t.x,r=t.y):n=r=t;return{x:ce(n,i,a.width,e&&e.x),y:ce(r,s,a.height,e&&e.y)}}(p,i&&g,de.width,de.height,e));break;default:v&&q.fillOrFitMode(y,e,de.x,de.y,v,x,h)}return y.transform||(e.x||e.y)&&re(y.transform=ne(),e.x,e.y),v&&(y.scaleX=v,y.scaleY=x),n&&n<1&&(y.opacity=n),_&&(y.filters=_),g&&(y.repeat=A(g)?"x"===g?"repeat-x":"repeat-y":"repeat"),y},stretchMode:function(t,e,i,s){const a=fe(),{x:n,y:r}=e;n||r?_e(a,n,r):a.onlyScale=!0,me(a,i,s),t.transform=a},fillOrFitMode:function(t,e,i,s,a,n,r){const o=fe();_e(o,e.x+i,e.y+s),me(o,a,n),r&&pe(o,{x:e.x+e.width/2,y:e.y+e.height/2},r),t.transform=o},clipMode:function(t,e,i,s,a,n,r,o,l,d){const c=fe();be(c,e,i,s,a,n,r,o),l&&(r||o?(ge(ue),we(ue,e,l,d),ye(c,ue)):we(c,e,l,d)),t.transform=c},repeatMode:function(t,e,i,s,a,n,r,o,l,d,c,h){const u=fe();if(h)be(u,e,a,n,r,o,l,d);else{if(l)if("center"===c)pe(u,{x:i/2,y:s/2},l);else switch(ve(u,l),l){case 90:_e(u,s,0);break;case 180:_e(u,i,s);break;case 270:_e(u,0,i)}he.x=e.x+a,he.y=e.y+n,_e(u,he.x,he.y),r&&we(u,he,r,o)}t.transform=u}},{toPoint:Te}=F,{hasTransparent:Ae}=z,Pe={},Ce={};function Oe(t,e,i,s){if(i){let a,n,r,o;for(let t=0,l=i.length;t<l;t++)a=i[t],A(a)?(r=t/(l-1),n=z.string(a,s)):(r=a.offset,n=z.string(a.color,s)),e.addColorStop(r,n),!o&&Ae(n)&&(o=!0);o&&(t.isTransparent=!0)}}const{getAngle:Me,getDistance:We}=W,{get:De,rotateOfOuter:Fe,scaleOfOuter:Ie}=C,{toPoint:Ye}=F,Xe={},Ue={};function Ne(t,e,i,s,a){let n;const{width:r,height:o}=t;if(r!==o||s){const t=Me(e,i);n=De(),a?(Ie(n,e,r/o*(s||1),1),Fe(n,e,t+90)):(Ie(n,e,1,r/o*(s||1)),Fe(n,e,t))}return n}const{getDistance:je}=W,{toPoint:qe}=F,ze={},Ge={};const He={linearGradient:function(t,i){let{from:s,to:a,type:n,opacity:r}=t;Te(s||"top",i,Pe),Te(a||"bottom",i,Ce);const o=e.canvas.createLinearGradient(Pe.x,Pe.y,Ce.x,Ce.y),l={type:n,style:o};return Oe(l,o,t.stops,r),l},radialGradient:function(t,i){let{from:s,to:a,type:n,opacity:r,stretch:o}=t;Ye(s||"center",i,Xe),Ye(a||"bottom",i,Ue);const l=e.canvas.createRadialGradient(Xe.x,Xe.y,0,Xe.x,Xe.y,We(Xe,Ue)),d={type:n,style:l};Oe(d,l,t.stops,r);const c=Ne(i,Xe,Ue,o,!0);return c&&(d.transform=c),d},conicGradient:function(t,i){let{from:s,to:a,type:n,opacity:r,stretch:o}=t;qe(s||"center",i,ze),qe(a||"bottom",i,Ge);const l=e.conicGradientSupport?e.canvas.createConicGradient(0,ze.x,ze.y):e.canvas.createRadialGradient(ze.x,ze.y,0,ze.x,ze.y,je(ze,Ge)),d={type:n,style:l};Oe(d,l,t.stops,r);const c=Ne(i,ze,Ge,o||1,e.conicGradientRotate90);return c&&(d.transform=c),d},getTransform:Ne},{copy:Ve,move:Qe,toOffsetOutBounds:Je}=k,{max:Ze,abs:$e}=Math,Ke={},ti=new L,ei={};function ii(t,e){let i,s,a,n,r=0,o=0,l=0,d=0;return e.forEach(t=>{i=t.x||0,s=t.y||0,n=1.5*(t.blur||0),a=$e(t.spread||0),r=Ze(r,a+n-s),o=Ze(o,a+n+i),l=Ze(l,a+n+s),d=Ze(d,a+n-i)}),r===o&&o===l&&l===d?r:[r,o,l,d]}function si(t,i,s){const{shapeBounds:a}=s;let n,r;e.fullImageShadow?(Ve(Ke,t.bounds),Qe(Ke,i.x-a.x,i.y-a.y),n=t.bounds,r=Ke):(n=a,r=i),t.copyWorld(s.canvas,n,r)}const{toOffsetOutBounds:ai}=k,ni={};const ri=ii;const oi={shadow:function(t,e,i){let s,a;const{__nowWorld:n}=t,{shadow:r}=t.__,{worldCanvas:o,bounds:l,renderBounds:d,shapeBounds:c,scaleX:h,scaleY:u}=i,g=e.getSameCanvas(),p=r.length-1;Je(l,ei,d),r.forEach((r,_)=>{let w=1;if(r.scaleFixed){const t=Math.abs(n.scaleX);t>1&&(w=1/t)}g.setWorldShadow(ei.offsetX+(r.x||0)*h*w,ei.offsetY+(r.y||0)*u*w,(r.blur||0)*h*w,z.string(r.color)),a=H.getShadowTransform(t,g,i,r,ei,w),a&&g.setTransform(a),si(g,ei,i),a&&g.resetTransform(),s=d,r.box&&(g.restore(),g.save(),o&&(g.copyWorld(g,d,n,"copy"),s=n),o?g.copyWorld(o,n,n,"destination-out"):g.copyWorld(i.canvas,c,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,a;const{__nowWorld:n}=t,{innerShadow:r}=t.__,{worldCanvas:o,bounds:l,renderBounds:d,shapeBounds:c,scaleX:h,scaleY:u}=i,g=e.getSameCanvas(),p=r.length-1;ai(l,ni,d),r.forEach((r,_)=>{let w=1;if(r.scaleFixed){const t=Math.abs(n.scaleX);t>1&&(w=1/t)}g.save(),g.setWorldShadow(ni.offsetX+(r.x||0)*h*w,ni.offsetY+(r.y||0)*u*w,(r.blur||0)*h*w),a=H.getShadowTransform(t,g,i,r,ni,w,!0),a&&g.setTransform(a),si(g,ni,i),g.restore(),o?(g.copyWorld(g,d,n,"copy"),g.copyWorld(o,n,n,"source-out"),s=n):(g.copyWorld(i.canvas,c,l,"source-out"),s=d),g.fillWorld(s,z.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:ii,getShadowTransform:function(t,e,i,s,a,n,r){if(s.spread){const i=2*s.spread*n*(r?-1:1),{width:o,height:l}=t.__layout.strokeBounds;return ti.set().scaleOfOuter({x:(a.x+a.width/2)*e.pixelRatio,y:(a.y+a.height/2)*e.pixelRatio},1+i/o,1+i/l),ti}},isTransformShadow(t){},getInnerShadowSpread:ri},{excludeRenderBounds:li}=p;let di;function ci(t,e,i,s,a,n,r,o){switch(e){case"grayscale":di||(di=!0,a.useGrayscaleAlpha(t.__nowWorld));case"alpha":!function(t,e,i,s,a,n){const r=t.__nowWorld;i.resetTransform(),i.opacity=1,i.useMask(s,r),n&&s.recycle(r);ui(t,e,i,1,a,n)}(t,i,s,a,r,o);break;case"opacity-path":ui(t,i,s,n,r,o);break;case"path":o&&i.restore()}}function hi(t){return t.getSameCanvas(!1,!0)}function ui(t,e,i,s,a,n){const r=t.__nowWorld;e.resetTransform(),e.opacity=s,e.copyWorld(i,r,void 0,a),n?i.recycle(r):i.clearWorld(r)}V.prototype.__renderMask=function(t,e){let i,s,a,n,r,o;const{children:l}=this;for(let d=0,c=l.length;d<c;d++){if(i=l[d],o=i.__.mask,o){r&&(ci(this,r,t,a,s,n,void 0,!0),s=a=null),"clipping"!==o&&"clipping-path"!==o||li(i,e)||i.__render(t,e),n=i.__.opacity,di=!1,"path"===o||"clipping-path"===o?(n<1?(r="opacity-path",a||(a=hi(t))):(r="path",t.save()),i.__clip(a||t,e)):(r="grayscale"===o?"grayscale":"alpha",s||(s=hi(t)),a||(a=hi(t)),i.__render(s,e));continue}const c=1===n&&i.__.__blendMode;c&&ci(this,r,t,a,s,n,void 0,!1),li(i,e)||i.__render(a||t,e),c&&ci(this,r,t,a,s,n,c,!1)}ci(this,r,t,a,s,n,void 0,!0)};const fi=">)]}%!?,.:;'\"》)」〉』〗】〕}┐>’”!?,、。:;‰",gi=fi+"_#~&*+\\=|≮≯≈≠=…",pi=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 _i(t){const e={};return t.split("").forEach(t=>e[t]=!0),e}const wi=_i("ABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789abcdefghijklmnopqrstuvwxyz"),yi=_i("{[(<'\"《(「〈『〖【〔{┌<‘“=¥¥$€££¢¢"),mi=_i(fi),vi=_i(gi),xi=_i("- —/~|┆·");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:Si,Single:ki,Before:Bi,After:Ri,Symbol:Ei,Break:Li}=bi;function Ti(t){return wi[t]?Si:xi[t]?Li:yi[t]?Bi:mi[t]?Ri:vi[t]?Ei:pi.test(t)?ki:Si}const Ai={trimRight(t){const{words:e}=t;let i,s=0,a=e.length;for(let n=a-1;n>-1&&(i=e[n].data[0]," "===i.char);n--)s++,t.width-=i.width;s&&e.splice(a-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:Ci}=Ai,{Letter:Oi,Single:Mi,Before:Wi,After:Di,Symbol:Fi,Break:Ii}=bi;let Yi,Xi,Ui,Ni,ji,qi,zi,Gi,Hi,Vi,Qi,Ji,Zi,$i,Ki,ts,es,is=[];function ss(t,e){Hi&&!Gi&&(Gi=Hi),Yi.data.push({char:t,width:e}),Ui+=e}function as(){Ni+=Ui,Yi.width=Ui,Xi.words.push(Yi),Yi={data:[]},Ui=0}function ns(){$i&&(Ki.paraNumber++,Xi.paraStart=!0,$i=!1),Hi&&(Xi.startCharSize=Gi,Xi.endCharSize=Hi,Gi=0),Xi.width=Ni,ts.width?Ci(Xi):es&&rs(),is.push(Xi),Xi={words:[]},Ni=0}function rs(){Ni>(Ki.maxWidth||0)&&(Ki.maxWidth=Ni)}const{top:os,right:ls,bottom:ds,left:cs}=I;function hs(t,e,i){const{bounds:s,rows:a}=t;s[e]+=i;for(let t=0;t<a.length;t++)a[t][e]+=i}const us={getDrawData:function(t,i){A(t)||(t=String(t));let s=0,a=0,n=i.__getInput("width")||0,r=i.__getInput("height")||0;const{__padding:o}=i;o&&(n?(s=o[cs],n-=o[ls]+o[cs],!n&&(n=.01)):i.autoSizeAlign||(s=o[cs]),r?(a=o[os],r-=o[os]+o[ds],!r&&(r=.01)):i.autoSizeAlign||(a=o[os]));const l={bounds:{x:s,y:a,width:n,height:r},rows:[],paraNumber:0,font:e.canvas.font=i.__font};return function(t,i,s){Ki=t,is=t.rows,ts=t.bounds,es=!ts.width&&!s.autoSizeAlign;const{__letterSpacing:a,paraIndent:n,textCase:r}=s,{canvas:o}=e,{width:l}=ts;if(s.__isCharMode){const t="none"!==s.textWrap,e="break"===s.textWrap;$i=!0,Qi=null,Gi=zi=Hi=Ui=Ni=0,Yi={data:[]},Xi={words:[]},a&&(i=[...i]);for(let s=0,d=i.length;s<d;s++)qi=i[s],"\n"===qi?(Ui&&as(),Xi.paraEnd=!0,ns(),$i=!0):(Vi=Ti(qi),Vi===Oi&&"none"!==r&&(qi=Pi(qi,r,!Ui)),zi=o.measureText(qi).width,a&&(a<0&&(Hi=zi),zi+=a),Ji=Vi===Mi&&(Qi===Mi||Qi===Oi)||Qi===Mi&&Vi!==Di,Zi=!(Vi!==Wi&&Vi!==Mi||Qi!==Fi&&Qi!==Di),ji=$i&&n?l-n:l,t&&l&&Ni+Ui+zi>ji&&(e?(Ui&&as(),Ni&&ns()):(Zi||(Zi=Vi===Oi&&Qi==Di),Ji||Zi||Vi===Ii||Vi===Wi||Vi===Mi||Ui+zi>ji?(Ui&&as(),Ni&&ns()):Ni&&ns()))," "===qi&&!0!==$i&&Ni+Ui===0||(Vi===Ii?(" "===qi&&Ui&&as(),ss(qi,zi),as()):Ji||Zi?(Ui&&as(),ss(qi,zi)):ss(qi,zi)),Qi=Vi);Ui&&as(),Ni&&ns(),is.length>0&&(is[is.length-1].paraEnd=!0)}else i.split("\n").forEach(t=>{Ki.paraNumber++,Ni=o.measureText(t).width,is.push({x:n||0,text:t,width:Ni,paraStart:!0}),es&&rs()})}(l,t,i),o&&function(t,e,i,s,a){if(!s&&i.autoSizeAlign)switch(i.textAlign){case"left":hs(e,"x",t[cs]);break;case"right":hs(e,"x",-t[ls])}if(!a&&i.autoSizeAlign)switch(i.verticalAlign){case"top":hs(e,"y",t[os]);break;case"bottom":hs(e,"y",-t[ds])}}(o,l,i,n,r),function(t,e){const{rows:i,bounds:s}=t,a=i.length,{__lineHeight:n,__baseLine:r,__letterSpacing:o,__clipText:l,textAlign:d,verticalAlign:c,paraSpacing:h,autoSizeAlign:u}=e;let{x:f,y:g,width:p,height:_}=s,w=n*a+(h?h*(t.paraNumber-1):0),y=r;if(l&&w>_)w=Math.max(_,n),a>1&&(t.overflow=a);else if(_||u)switch(c){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,c=a;r<c;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&&h&&r>0&&(y+=h),m.y=y,y+=n,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}(l,i),i.__isCharMode&&function(t,e,i){const{rows:s}=t,{textAlign:a,paraIndent:n,letterSpacing:r}=e,o=i&&a.includes("both"),l=o||i&&a.includes("justify"),d=l&&a.includes("letter");let c,h,u,f,g,p,_,w,y,m;s.forEach(t=>{t.words&&(g=n&&t.paraStart?n:0,w=t.words.length,l&&(m=!t.paraEnd||o,h=i-t.width-g,d?f=h/(t.words.reduce((t,e)=>t+e.data.length,0)-1):u=w>1?h/(w-1):0),p=r||t.isOverflow||d?0:u?1:2,t.isOverflow&&!r&&(t.textMode=!0),2===p?(t.x+=g,function(t){t.text="",t.words.forEach(e=>{e.data.forEach(e=>{t.text+=e.char})})}(t)):(t.x+=g,c=t.x,t.data=[],t.words.forEach((e,i)=>{1===p?(_={char:"",x:c},c=function(t,e,i){return t.forEach(t=>{i.char+=t.char,e+=t.width}),e}(e.data,c,_),(t.isOverflow||" "!==_.char)&&t.data.push(_)):c=function(t,e,i,s,a){return t.forEach(t=>{(s||" "!==t.char)&&(t.x=e,i.push(t)),e+=t.width,a&&(e+=a)}),e}(e.data,c,t.data,t.isOverflow,m&&f),m&&(y=i===w-1,u?y||(c+=u,t.width+=u):f&&(t.width+=f*(e.data.length-(y?1:0))))})),t.words=null)})}(l,i,n),l.overflow&&function(t,i,s,a){if(!a)return;const{rows:n,overflow:r}=t;let{textOverflow:o}=i;if(n.splice(r),o&&"show"!==o){let t,l;"hide"===o?o="":"ellipsis"===o&&(o="...");const d=o?e.canvas.measureText(o).width:0,c=s+a-d;("none"===i.textWrap?n:[n[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<c));s--){if(l<c&&" "!==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)}})}}(l,i,s,n),"none"!==i.textDecoration&&function(t,e){let i,s=0;const{fontSize:a,textDecoration:n}=e;switch(t.decorationHeight=a/11,R(n)?(i=n.type,n.color&&(t.decorationColor=z.string(n.color)),n.offset&&(s=Math.min(.3*a,Math.max(n.offset,.15*-a)))):i=n,i){case"under":t.decorationY=[.15*a+s];break;case"delete":t.decorationY=[.35*-a];break;case"under-delete":t.decorationY=[.15*a+s,.35*-a]}}(l,i),l}};const fs={string:function(t,e){if(!t)return"#000";const i=Y(e)&&e<1;if(A(t)){if(!i||!z.object)return t;t=z.object(t)}let s=T(t.a)?1:t.a;i&&(s*=e);const a=t.r+","+t.g+","+t.b;return 1===s?"rgb("+a+")":"rgba("+a+","+s+")"}};Object.assign(Q,us),Object.assign(z,fs),Object.assign(j,Qt),Object.assign(q,Le),Object.assign(G,He),Object.assign(H,oi);const{setPoint:gs,addPoint:ps,toBounds:_s}=J;const ws={syncExport(t,e,i){let s;$.running=!0;try{const a=K.fileType(e),n=e.includes(".");i=K.getExportOptions(i);const{toURL:r}=tt,{download:o}=tt.origin;if("json"===a)n&&o(r(JSON.stringify(t.toJSON(i.json)),"text"),e),s={data:!!n||t.toJSON(i.json)};else if("svg"===a)n&&o(r(t.toSVG(),"svg"),e),s={data:!!n||t.toSVG()};else{let a,n,r=1,o=1;const{worldTransform:l,isLeafer:d,leafer:c,isFrame:h}=t,{slice:u,clip:f,trim:g,screenshot:p,padding:_,onCanvas:w}=i,y=et(i.smooth)?!c||c.config.smooth:i.smooth,m=i.contextSettings||(c?c.config.contextSettings:void 0),v=d&&p&&et(i.fill)?t.fill:i.fill,x=K.isOpaqueImage(e)||v,b=new it;if(p)a=!0===p?d?c.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=c||t;default:b.set(l).divide(t.getTransform(e));const i=e.worldTransform;r/=r/i.scaleX,o/=o/i.scaleY}a=t.getBounds("render",e)}const S={scaleX:1,scaleY:1};st.getScaleData(i.scale,i.size,a,S);let k=i.pixelRatio||1,{x:B,y:R,width:E,height:L}=new Z(a).scale(S.scaleX,S.scaleY);f&&(B+=f.x,R+=f.y,E=f.width,L=f.height);const T={exporting:!0,matrix:b.scale(1/S.scaleX,1/S.scaleY).invert().translate(-B,-R).withScale(1/r*S.scaleX,1/o*S.scaleY)};let A,P=at.canvas({width:Math.floor(E),height:Math.floor(L),pixelRatio:k,smooth:y,contextSettings:m});u&&(A=t,A.__worldOpacity=0,t=c||t,T.bounds=P.bounds),P.save();const C=h&&!et(v),O=t.get("fill");if(C&&(t.fill=""),tt.render(t,P,T),C&&(t.fill=O),P.restore(),A&&A.__updateWorldOpacity(),g){n=function(t){const{width:e,height:i}=t.view,{data:s}=t.context.getImageData(0,0,e,i);let a,n,r,o=0;for(let t=0;t<s.length;t+=4)0!==s[t+3]&&(a=o%e,n=(o-a)/e,r?ps(r,a,n):gs(r={},a,n)),o++;const l=new Z;return r&&(_s(r,l),l.scale(1/t.pixelRatio).ceil()),l}(P);const t=P,{width:e,height:i}=n,s={x:0,y:0,width:e,height:i,pixelRatio:k};P=at.canvas(s),P.copyWorld(t,n,s),t.destroy()}if(_){const[t,e,i,s]=st.fourNumber(_),a=P,{width:n,height:r}=a;P=at.canvas({width:n+s+e,height:r+t+i,pixelRatio:k}),P.copyWorld(a,a.bounds,{x:s,y:t,width:n,height:r}),a.destroy()}x&&P.fillWorld(P.bounds,v||"#FFFFFF","destination-over"),w&&w(P);s={data:"canvas"===e?P:P.export(e,i),width:P.pixelWidth,height:P.pixelHeight,renderBounds:a,trimBounds:n};const M=c&&c.app;M&&M.canvasManager&&M.canvasManager.clearRecycled()}}catch(t){s={data:"",error:t}}return $.running=!1,s},export(t,e,i){return $.running=!0,function(t){ys||(ys=new nt);return new Promise(e=>{ys.add(()=>ht(this,void 0,void 0,function*(){return yield t(e)}),{parallel:!1})})}(s=>new Promise(a=>{const n=()=>ht(this,void 0,void 0,function*(){if(!rt.isComplete)return tt.requestRender(n);const r=$.syncExport(t,e,i);r.data instanceof Promise&&(r.data=yield r.data),s(r),a()});t.updateLayout(),ms(t);const{leafer:r}=t;r?r.waitViewCompleted(n):n()}))}};let ys;function ms(t){t.__.__needComputePaint&&t.__.__computePaint(),t.isBranch&&t.children.forEach(t=>ms(t))}const vs=ot.prototype,xs=lt.get("@leafer-in/export");vs.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)},vs.toBlob=function(t,e){return new Promise(i=>{tt.origin.canvasToBolb(this.view,t,e).then(t=>{i(t)}).catch(t=>{xs.error(t),i(null)})})},vs.toDataURL=function(t,e){return tt.origin.canvasToDataURL(this.view,t,e)},vs.saveAs=function(t,e){return new Promise(i=>{tt.origin.canvasSaveAs(this.view,t,e).then(()=>{i(!0)}).catch(t=>{xs.error(t),i(!1)})})},dt.add("export"),Object.assign($,ws),ct.prototype.export=function(t,e){return $.export(this,t,e)},ct.prototype.syncExport=function(t,e){return $.syncExport(this,t,e)},Object.assign(a,{interaction:(t,e,i,s)=>new N(t,e,i,s),hitCanvas:(t,e)=>new ut(t,e),hitCanvasManager:()=>new U});export{Et as Layouter,ut as LeaferCanvas,Pt as Picker,Tt as Renderer,Ct as Selector,_t as Watcher,pt as useCanvas};
2
2
  //# sourceMappingURL=node.esm.min.js.map