@logicflow/core 2.2.0 โ†’ 2.2.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (236) hide show
  1. package/dist/index.css +3 -2
  2. package/dist/index.min.js +1 -1
  3. package/dist/index.min.js.map +1 -1
  4. package/es/LogicFlow.d.ts +9 -0
  5. package/es/LogicFlow.js +0 -1
  6. package/es/constant/index.d.ts +1 -1
  7. package/es/constant/index.js +1 -1
  8. package/es/constant/theme.d.ts +136 -0
  9. package/es/constant/theme.js +680 -0
  10. package/es/index.css +3 -2
  11. package/es/model/GraphModel.d.ts +10 -2
  12. package/es/model/GraphModel.js +48 -14
  13. package/es/model/TransformModel.js +9 -9
  14. package/es/model/edge/BaseEdgeModel.js +7 -2
  15. package/es/model/edge/PolylineEdgeModel.d.ts +7 -0
  16. package/es/model/edge/PolylineEdgeModel.js +136 -7
  17. package/es/model/node/BaseNodeModel.d.ts +12 -1
  18. package/es/model/node/BaseNodeModel.js +9 -2
  19. package/es/model/node/HtmlNodeModel.d.ts +12 -0
  20. package/es/model/node/HtmlNodeModel.js +19 -0
  21. package/es/model/node/PolygonNodeModel.js +3 -3
  22. package/es/options.d.ts +4 -2
  23. package/es/style/index.css +3 -2
  24. package/es/style/index.less +3 -2
  25. package/es/style/raw.d.ts +1 -1
  26. package/es/style/raw.js +1 -1
  27. package/es/tool/MultipleSelectTool.js +10 -5
  28. package/es/util/drag.js +0 -1
  29. package/es/util/edge.d.ts +40 -1
  30. package/es/util/edge.js +43 -9
  31. package/es/util/geometry.d.ts +8 -0
  32. package/es/util/geometry.js +79 -0
  33. package/es/util/theme.d.ts +2 -65
  34. package/es/util/theme.js +4 -281
  35. package/es/view/Anchor.d.ts +1 -0
  36. package/es/view/Anchor.js +24 -21
  37. package/es/view/Control.d.ts +5 -0
  38. package/es/view/Control.js +44 -57
  39. package/es/view/edge/BaseEdge.js +9 -0
  40. package/es/view/edge/PolylineEdge.js +13 -2
  41. package/es/view/node/BaseNode.d.ts +1 -0
  42. package/es/view/node/BaseNode.js +23 -11
  43. package/es/view/node/HtmlNode.js +2 -4
  44. package/es/view/overlay/CanvasOverlay.js +5 -2
  45. package/es/view/overlay/Grid.d.ts +12 -1
  46. package/es/view/overlay/Grid.js +85 -23
  47. package/es/view/overlay/OutlineOverlay.d.ts +1 -0
  48. package/es/view/overlay/OutlineOverlay.js +18 -17
  49. package/es/view/overlay/gridConfig.d.ts +46 -0
  50. package/es/view/overlay/gridConfig.js +99 -0
  51. package/es/view/shape/Polygon.d.ts +0 -7
  52. package/es/view/shape/Polygon.js +12 -43
  53. package/lib/LogicFlow.d.ts +9 -0
  54. package/lib/LogicFlow.js +0 -1
  55. package/lib/constant/index.d.ts +1 -1
  56. package/lib/constant/index.js +16 -2
  57. package/lib/constant/theme.d.ts +136 -0
  58. package/lib/constant/theme.js +683 -0
  59. package/lib/index.css +3 -2
  60. package/lib/model/GraphModel.d.ts +10 -2
  61. package/lib/model/GraphModel.js +49 -15
  62. package/lib/model/TransformModel.js +9 -9
  63. package/lib/model/edge/BaseEdgeModel.js +7 -2
  64. package/lib/model/edge/PolylineEdgeModel.d.ts +7 -0
  65. package/lib/model/edge/PolylineEdgeModel.js +136 -7
  66. package/lib/model/node/BaseNodeModel.d.ts +12 -1
  67. package/lib/model/node/BaseNodeModel.js +9 -2
  68. package/lib/model/node/HtmlNodeModel.d.ts +12 -0
  69. package/lib/model/node/HtmlNodeModel.js +19 -0
  70. package/lib/model/node/PolygonNodeModel.js +3 -3
  71. package/lib/options.d.ts +4 -2
  72. package/lib/style/index.css +3 -2
  73. package/lib/style/index.less +3 -2
  74. package/lib/style/raw.d.ts +1 -1
  75. package/lib/style/raw.js +1 -1
  76. package/lib/tool/MultipleSelectTool.js +10 -5
  77. package/lib/util/drag.js +0 -1
  78. package/lib/util/edge.d.ts +40 -1
  79. package/lib/util/edge.js +43 -9
  80. package/lib/util/geometry.d.ts +8 -0
  81. package/lib/util/geometry.js +81 -1
  82. package/lib/util/theme.d.ts +2 -65
  83. package/lib/util/theme.js +15 -292
  84. package/lib/view/Anchor.d.ts +1 -0
  85. package/lib/view/Anchor.js +24 -21
  86. package/lib/view/Control.d.ts +5 -0
  87. package/lib/view/Control.js +44 -57
  88. package/lib/view/edge/BaseEdge.js +9 -0
  89. package/lib/view/edge/PolylineEdge.js +13 -2
  90. package/lib/view/node/BaseNode.d.ts +1 -0
  91. package/lib/view/node/BaseNode.js +22 -10
  92. package/lib/view/node/HtmlNode.js +1 -3
  93. package/lib/view/overlay/CanvasOverlay.js +5 -2
  94. package/lib/view/overlay/Grid.d.ts +12 -1
  95. package/lib/view/overlay/Grid.js +83 -21
  96. package/lib/view/overlay/OutlineOverlay.d.ts +1 -0
  97. package/lib/view/overlay/OutlineOverlay.js +18 -17
  98. package/lib/view/overlay/gridConfig.d.ts +46 -0
  99. package/lib/view/overlay/gridConfig.js +104 -0
  100. package/lib/view/shape/Polygon.d.ts +0 -7
  101. package/lib/view/shape/Polygon.js +13 -45
  102. package/package.json +6 -1
  103. package/.turbo/turbo-build$colon$dev.log +0 -10
  104. package/.turbo/turbo-build.log +0 -33
  105. package/CHANGELOG.md +0 -1849
  106. package/__tests__/algorithm/egde.test.ts +0 -131
  107. package/__tests__/algorithm/index.test.ts +0 -74
  108. package/__tests__/algorithm/outline.test.ts +0 -43
  109. package/__tests__/bugs/1545-spec.test.ts +0 -42
  110. package/__tests__/event/event.test.ts +0 -22
  111. package/__tests__/history/history.test.ts +0 -28
  112. package/__tests__/logicflow.test.ts +0 -575
  113. package/__tests__/model/graphmodel.test.ts +0 -87
  114. package/__tests__/util/compatible.test.ts +0 -48
  115. package/__tests__/util/edge.test.ts +0 -224
  116. package/__tests__/util/geometry.test.ts +0 -14
  117. package/__tests__/util/graph.test.ts +0 -16
  118. package/__tests__/util/matrix.test.ts +0 -41
  119. package/__tests__/util/node.test.ts +0 -68
  120. package/__tests__/util/sampling.test.ts +0 -12
  121. package/__tests__/util/vector.test.ts +0 -50
  122. package/__tests__/util/zIndex.test.ts +0 -10
  123. package/src/LogicFlow.tsx +0 -2008
  124. package/src/algorithm/edge.ts +0 -67
  125. package/src/algorithm/index.ts +0 -70
  126. package/src/algorithm/outline.ts +0 -77
  127. package/src/algorithm/rotate.ts +0 -55
  128. package/src/common/drag.ts +0 -219
  129. package/src/common/history.ts +0 -108
  130. package/src/common/index.ts +0 -6
  131. package/src/common/keyboard.ts +0 -108
  132. package/src/common/matrix.ts +0 -122
  133. package/src/common/vector.ts +0 -93
  134. package/src/constant/index.ts +0 -179
  135. package/src/event/event.md +0 -66
  136. package/src/event/eventArgs.ts +0 -643
  137. package/src/event/eventEmitter.ts +0 -156
  138. package/src/history/index.ts +0 -119
  139. package/src/index.less +0 -1
  140. package/src/index.ts +0 -26
  141. package/src/keyboard/index.ts +0 -112
  142. package/src/keyboard/shortcut.ts +0 -200
  143. package/src/model/BaseModel.ts +0 -250
  144. package/src/model/EditConfigModel.ts +0 -334
  145. package/src/model/GraphModel.ts +0 -1788
  146. package/src/model/NestedTransformModel.ts +0 -121
  147. package/src/model/SnaplineModel.ts +0 -256
  148. package/src/model/TransformModel.ts +0 -258
  149. package/src/model/edge/BaseEdgeModel.ts +0 -777
  150. package/src/model/edge/BezierEdgeModel.ts +0 -197
  151. package/src/model/edge/LineEdgeModel.ts +0 -36
  152. package/src/model/edge/PolylineEdgeModel.ts +0 -672
  153. package/src/model/edge/index.ts +0 -4
  154. package/src/model/index.ts +0 -9
  155. package/src/model/node/BaseNodeModel.ts +0 -949
  156. package/src/model/node/CircleNodeModel.ts +0 -91
  157. package/src/model/node/DiamondNodeModel.ts +0 -132
  158. package/src/model/node/EllipseNodeModel.ts +0 -98
  159. package/src/model/node/HtmlNodeModel.ts +0 -50
  160. package/src/model/node/PolygonNodeModel.ts +0 -150
  161. package/src/model/node/RectNodeModel.ts +0 -69
  162. package/src/model/node/TextNodeModel.ts +0 -54
  163. package/src/model/node/index.ts +0 -8
  164. package/src/options.ts +0 -145
  165. package/src/style/index.less +0 -261
  166. package/src/style/raw.ts +0 -220
  167. package/src/tool/MultipleSelectTool.tsx +0 -132
  168. package/src/tool/TextEditTool.tsx +0 -193
  169. package/src/tool/index.ts +0 -101
  170. package/src/typings.d.ts +0 -5
  171. package/src/util/animation.ts +0 -29
  172. package/src/util/browser.ts +0 -4
  173. package/src/util/compatible.ts +0 -15
  174. package/src/util/drag.ts +0 -220
  175. package/src/util/edge.ts +0 -1060
  176. package/src/util/geometry.ts +0 -55
  177. package/src/util/graph.ts +0 -46
  178. package/src/util/index.ts +0 -17
  179. package/src/util/matrix.ts +0 -129
  180. package/src/util/mobx.ts +0 -23
  181. package/src/util/node.ts +0 -543
  182. package/src/util/raf.ts +0 -28
  183. package/src/util/resize.ts +0 -606
  184. package/src/util/sampling.ts +0 -85
  185. package/src/util/theme.ts +0 -375
  186. package/src/util/uuid.ts +0 -26
  187. package/src/util/vector.ts +0 -93
  188. package/src/util/zIndex.ts +0 -6
  189. package/src/view/Anchor.tsx +0 -445
  190. package/src/view/Control.tsx +0 -512
  191. package/src/view/Graph.tsx +0 -141
  192. package/src/view/Rotate.tsx +0 -113
  193. package/src/view/behavior/dnd.ts +0 -162
  194. package/src/view/behavior/index.ts +0 -2
  195. package/src/view/behavior/snapline.ts +0 -16
  196. package/src/view/edge/AdjustPoint.tsx +0 -425
  197. package/src/view/edge/Arrow.tsx +0 -54
  198. package/src/view/edge/BaseEdge.tsx +0 -650
  199. package/src/view/edge/BezierEdge.tsx +0 -101
  200. package/src/view/edge/LineEdge.tsx +0 -81
  201. package/src/view/edge/PolylineEdge.tsx +0 -299
  202. package/src/view/edge/index.ts +0 -6
  203. package/src/view/index.ts +0 -8
  204. package/src/view/node/BaseNode.tsx +0 -571
  205. package/src/view/node/CircleNode.tsx +0 -21
  206. package/src/view/node/DiamondNode.tsx +0 -24
  207. package/src/view/node/EllipseNode.tsx +0 -22
  208. package/src/view/node/HtmlNode.tsx +0 -95
  209. package/src/view/node/PolygonNode.tsx +0 -28
  210. package/src/view/node/RectNode.tsx +0 -30
  211. package/src/view/node/TextNode.tsx +0 -39
  212. package/src/view/node/index.ts +0 -8
  213. package/src/view/overlay/BackgroundOverlay.tsx +0 -34
  214. package/src/view/overlay/BezierAdjustOverlay.tsx +0 -150
  215. package/src/view/overlay/CanvasOverlay.tsx +0 -288
  216. package/src/view/overlay/Grid.tsx +0 -162
  217. package/src/view/overlay/ModificationOverlay.tsx +0 -31
  218. package/src/view/overlay/OutlineOverlay.tsx +0 -170
  219. package/src/view/overlay/SnaplineOverlay.tsx +0 -44
  220. package/src/view/overlay/ToolOverlay.tsx +0 -65
  221. package/src/view/overlay/getTransformHoc.tsx +0 -50
  222. package/src/view/overlay/index.ts +0 -8
  223. package/src/view/shape/Circle.tsx +0 -41
  224. package/src/view/shape/Ellipse.tsx +0 -42
  225. package/src/view/shape/Line.tsx +0 -39
  226. package/src/view/shape/Path.tsx +0 -22
  227. package/src/view/shape/Polygon.tsx +0 -91
  228. package/src/view/shape/Polyline.tsx +0 -31
  229. package/src/view/shape/Rect.tsx +0 -44
  230. package/src/view/shape/Text.tsx +0 -169
  231. package/src/view/shape/index.ts +0 -8
  232. package/src/view/text/BaseText.tsx +0 -134
  233. package/src/view/text/LineText.tsx +0 -168
  234. package/src/view/text/index.ts +0 -2
  235. package/stats.html +0 -4842
  236. package/tsconfig.json +0 -18
package/CHANGELOG.md DELETED
@@ -1,1849 +0,0 @@
1
- # Change Log
2
-
3
- ## 2.2.0
4
-
5
- ### Minor Changes
6
-
7
- - feat: ๆ”ฏๆŒ็งปๅŠจ็ซฏ้€‚้…
8
-
9
- ## 2.1.4
10
-
11
- ### Patch Changes
12
-
13
- - fix: ไฟฎๅคissueๅ้ฆˆ็š„้—ฎ้ข˜
14
- - feat: ๅขžๅŠ ่พนๅฑ‚็บงไผ˜ๅ…ˆ็š„ๅ †ๅ ๆจกๅผๅ’Œ้™ๆ€ๅ †ๅ ๆจกๅผ #2063 #2019
15
- - fix: ไฟฎๅค้ƒจๅˆ†ๅœบๆ™ฏไธ‹่Š‚็‚น็‚นๅ‡ปๆ— ๆณ•้€‰ไธญ้—ฎ้ข˜ #2181
16
- - fix: ไฟฎๅคๅผ€ๅฏๆก†้€‰็š„ๆƒ…ๅ†ตไธ‹,ๅŒๅ‡ป็”ปๅธƒไผšๅฏผ่‡ดๅ…ณ้—ญๆก†้€‰ๅŽstopMoveGraphไธ่ฟ˜ๅŽŸ้—ฎ้ข˜ #2263
17
-
18
- ## 2.1.3
19
-
20
- ### Patch Changes
21
-
22
- - fix: ไฟฎๅคissueๅ้ฆˆ็š„้—ฎ้ข˜
23
- - fix: ไฟฎๅค็”จๆˆท่‡ชๅฎšไน‰ๆŠ˜็บฟ่ทฏๅพ„ๅœบๆ™ฏไธ‹,็ปˆ็‚นๆฒกๅœจๅ…ทไฝ“้”š็‚นไธŠๅฏผ่‡ด็š„NaNๆŠฅ้”™็š„้—ฎ้ข˜ #2121
24
-
25
- ## 2.1.2
26
-
27
- ### Patch Changes
28
-
29
- - fix: ไฟฎๅคๅญ˜ๅœจๅญๅบ”็”จๆ—ถ,็ˆถๅญๅบ”็”จ็ผฉๆ”พๅŽ,่พน่ฟž็บฟ้”™ไฝ็š„้—ฎ้ข˜
30
-
31
- ## 2.1.1
32
-
33
- ### Patch Changes
34
-
35
- - fix: ไฟฎๅค็‚นๅ‡ป่Š‚็‚นไผš่งฆๅ‘ๅคš้€‰็š„้—ฎ้ข˜ๅ’Œvue-node-registryๅผ•ๅ…ฅๆŠฅ้”™้—ฎ้ข˜
36
-
37
- ## 2.1.0
38
-
39
- ### Minor Changes
40
-
41
- - - [fix] ไฟฎๅคๅ…ณ้—ญ็ฝ‘ๆ ผๅธ้™„ๅŽ็‚นๅ‡ป่Š‚็‚นๆ—ถๅฎนๆ˜“ๆ— ๆณ•้€‰ไธญ็š„้—ฎ้ข˜
42
- - [feature] ๆ”ฏๆŒshift่Š‚็‚น็ญ‰ๆฏ”็ผฉๆ”พ
43
- - [fix] ไฟฎๅคๆ‰น้‡ๆก†้€‰ๅŽ๏ผŒ่ฐƒๆ•ด่พน่ตท็ปˆ็‚นๆŠฅ้”™็š„ bug
44
- - [fix] snapline cannot show when zoomed
45
- - [feature] ็”ปๅธƒๅขžๅŠ blank:mousemoveไบ‹ไปถๅค–ๅ‘,ๅนถๆ–ฐๅขžisDraggingๅ‚ๆ•ฐไปฅๅŒบๅˆ†้ผ ๆ ‡ๆ˜ฏๆ‹–ๆ‹ฝ็งปๅŠจ่ฟ˜ๆ˜ฏๆ™ฎ้€š็งปๅŠจ
46
- - [feature] ้‚ฎไปถ่œๅ•ๆŸ้กน็š„็ฆ็”จ่ƒฝๅŠ›
47
- - ไฟฎๅคvue3้กน็›ฎไธญๅฐๅœฐๅ›พๆ’ไปถไธๆ˜พ็คบvue่‡ชๅฎšไน‰่Š‚็‚น้—ฎ้ข˜ close #2200
48
- - ไฟฎๅคๆธ่ฟ›่ฟž็บฟๆ’ไปถisInNodeๅˆคๅฎš่ฟ‡ไบŽ็ฒพ็กฎๅฏผ่‡ด็š„ๅถ็Žฐไผš่ฟžๅ‡บไธคๆก็บฟ็š„้—ฎ้ข˜ close #2210
49
- - ไฟฎๅคๅธฆlabel็š„ๅ…ƒ็ด ๅคๅˆถ็ฒ˜่ดดๅŽlabelๅฑ•็คบ้”™ไฝไธ”ไธๅฏๆ‹–ๆ‹ฝ็š„้—ฎ้ข˜ close #2196
50
- - ไฟฎๅคๅฟซ็…งๆ’ไปถๅฏผๅ‡บๅ›พ็‰‡ๅ—ๆต่งˆๅ™จๅฏนcanvas้™ๅˆถ close #2187
51
- - ไผ˜ๅŒ–ๆ–‡ๆกฃไธญๅ…ณไบŽ OverlapMode ๅฑžๆ€ง็š„่ฏดๆ˜Ž
52
-
53
- ## 2.0.16
54
-
55
- ### Patch Changes
56
-
57
- - fix: ไฟฎๆญฃ้™ๆ€ๆ–นๆณ•่ฐƒ็”จ้€ป่พ‘,่งฃๅ†ณdestroyๆŠฅ้”™้—ฎ้ข˜
58
-
59
- ## 2.0.15
60
-
61
- ### Patch Changes
62
-
63
- - fix: ไฟฎๅค่พน้ป˜่ฎคๅฑ•็คบๅŒๅ‘็ฎญๅคด้—ฎ้ข˜
64
-
65
- ## 2.0.14
66
-
67
- ### Patch Changes
68
-
69
- - fix: ไธป้ข˜ๅŠŸ่ƒฝๅขžๅผบ & dynamic-groupๅขžๅŠ ไบ‹ไปถๅ›ž่ฐƒ
70
-
71
- ## 2.0.13
72
-
73
- ### Patch Changes
74
-
75
- - feat: ๆ–ฐๅขžๆธ…็ฉบๅฝ“ๅ‰้€‰ไธญ่Š‚็‚น็š„ๆ–นๆณ•
76
-
77
- ## 2.0.12
78
-
79
- ### Patch Changes
80
-
81
- - fix: ไฟฎๅคๅŠไผ˜ๅŒ–ไธ€ไบ›ๅทฒ็Ÿฅ้—ฎ้ข˜
82
- - fix(core): graphModel theme + ๆŠ˜็บฟ่พน&ๆ›ฒ็บฟ่พนOffsetๆ”นไธบ็›‘ๅฌๅฑžๆ€ง
83
- - fix(core): ๆœช้€‰ไธญ่Š‚็‚นๆ—ถ่ฟ›่กŒๅฟซ้€Ÿ็ผฉๆ”พไผš้€€ๅ‡บ็ผฉๆ”พ
84
- - feat(core): ๆ–ฐๅขž้”š็‚น ANCHOR_CLICK/ANCHOR_MOUSEDOWN ไบ‹ไปถ,็”จไบŽ่‡ชๅฎšไน‰้”š็‚นๆ–นๆณ•
85
-
86
- ## 2.0.11
87
-
88
- ### Patch Changes
89
-
90
- - fix: ไฟฎๅคไธ€ไบ›ๅทฒ็Ÿฅ้—ฎ้ข˜
91
- - fix(core): ไฟฎๅค่Š‚็‚นๆ—‹่ฝฌๅŽ้”š็‚นๆ— ๆณ•่ขซๆŽฅ็บฟ็š„้—ฎ้ข˜ fix #1871
92
- - fix(core): ไฟฎๅคๆ—‹่ฝฌ่Š‚็‚นๅคš้€‰ๅŽ็งปๅŠจไฝ็ฝฎๅผ‚ๅธธ้—ฎ้ข˜ fix #1794
93
- - feat(core): ้”€ๆฏๆ—ถ่ฐƒ็”จๆ‰€ๆœ‰ๆ’ไปถ็š„ destroy ๆ–นๆณ•
94
- - fix: ไฟฎๆญฃ้”™่ฏฏๆ็คบ
95
- - feat: ๆŠ˜็บฟ่พนๆ”ฏๆŒ้…็ฝฎ่Š‚็‚น็›ธ้‚ป็ฌฌไธ€ไธชๆ‹็‚นไฝ็ฝฎ&ๆ›ฒ็บฟ่พนๆ”ฏๆŒ้…็ฝฎ่ฐƒๆ•ด็บฟๆ‹‰ไผธ้•ฟๅบฆ fix #1953
96
-
97
- ## 2.0.10
98
-
99
- ### Patch Changes
100
-
101
- - fix(core): ๅฏผๅ‡บ็š„่พนๆ•ฐๆฎไธญ้ป˜่ฎคๅธฆไธŠ่ฟžๆŽฅ้”š็‚น็š„ID fix #1991
102
- - fix(core): ไฟฎๅค่Š‚็‚นๅ’Œๆ–‡ๆœฌๅŒๆ—ถๆ”ฏๆŒๆ‹–ๆ‹ฝๅœบๆ™ฏไธ‹,ๆ‹–ๆ‹ฝๆ–‡ๆœฌๆ—ถ่Š‚็‚นไนŸ่ทŸ้š็งปๅŠจ้—ฎ้ข˜ fix #1520
103
- - fix(core): ไฟฎๅค้™้ป˜็Šถๆ€ไธ‹็‚นๅ‡ป่Š‚็‚นๅ’Œ่พนไผšไฟฎไฟฎๆ”น่Š‚็‚นๅ’Œ่พน็š„ๅฑ‚็บง fix #1588
104
- - fix: ๅ…ผๅฎนไธ่ฎพ็ฝฎ้ซ˜ๅบฆๆ—ถ,็ช—ๅฃๅ˜ๅŒ–ๅŽๆ›ดๆ–ฐ็”ปๅธƒๅฐบๅฏธ
105
- - fix: ไฟฎๅคwindow resizeๅคฑๆ•ˆ้—ฎ้ข˜
106
- - fix(ๅ†…ๅญ˜): ไฟฎๅค่ฐƒ็”จclearDataไน‹ๅŽ๏ผŒไพ็„ถไฟๆŒๅฏน่Š‚็‚น็š„ๅผ•็”จๅฏผ่‡ด็š„ๅ†…ๅญ˜ๆบขๅ‡บbug fix #1993
107
- - fix: ไฟฎๅค่ฎพ็ฝฎ textDraggable ไธบ true ๆ—ถ๏ผŒ่พนใ€่Š‚็‚นๆ–‡ๆœฌๆ— ๆณ•ๆ‹–ๆ‹ฝ็š„ bug
108
- - feat(core): ๅฎŒๅ–„destoryๆ–นๆณ•&ๅขžๅŠ ๆ€ง่ƒฝๆต‹่ฏ•demo
109
- - fix(core/polyline): ไฟฎๅคๆต็จ‹ๅ›พๅˆๆฌกๆธฒๆŸ“ๆ—ถๅณไฝฟไผ ๅ…ฅpointsListๆŠ˜็บฟ่ทฏๅพ„ไนŸไผš้‡็ฝฎ้—ฎ้ข˜&ๆ–ฐๅขžไฟฎๆ”นๆŠ˜็บฟpointsList็š„ๆ–นๆณ•
110
- - fix(core): ็ฝ‘ๆ ผๅฏน้ฝๆ”นไธบๅผ€ๅ…ณๆŽงๅˆถ & ไฟฎๅคๅˆๅง‹ๅŒ–ๆ—ถๆต็จ‹ๅ›พๅ็งป้—ฎ้ข˜
111
-
112
- ## 2.0.9
113
-
114
- ### Patch Changes
115
-
116
- - fix: ้‡ๆ–ฐๆ‰“ๅŒ…ไปฅๅŠ ๅ…ฅๆœ€ๆ–ฐๆ”นๅŠจๅ†…ๅฎน
117
-
118
- ## 2.0.8
119
-
120
- ### Patch Changes
121
-
122
- - fix(core): ไฟฎๅคๅทฒ็Ÿฅ้—ฎ้ข˜,ๆ–ฐๅขžๆธ่ฟ›่ฟž็บฟ่ƒฝๅŠ›
123
- - feat: ๆ”ฏๆŒๅŠจๆ€ไฟฎๆ”น็”ปๅธƒ่ƒŒๆ™ฏ้…็ฝฎ
124
- - fix(core): ไฟฎๅคไฝฟ็”จlabelๆƒ…ๅ†ตไธ‹ๅŒๅ‡ป่Š‚็‚นไผš่ฎฉ่Š‚็‚น่ฟ›ๅ…ฅๆ–‡ๆœฌ็ผ–่พ‘ๆ€้—ฎ้ข˜
125
- - fix(core): ไฟฎๅคๅˆๅง‹ๅŒ–็”ปๅธƒๆ—ถๅ› ไธบ่Š‚็‚นๅธ้™„็ฝ‘ๆ ผๅฏผ่‡ด็š„่Š‚็‚นไธŽ่พน้”™ไฝ้—ฎ้ข˜ #1954
126
- - feat(core): ๅขžๅŠ ่Š‚็‚นๅ’Œ่พน็š„focusๅ’Œblurไบ‹ไปถไธŠๆŠฅ #1917
127
- - feat(core): line ๅ’Œ polyline ๅขžๅŠ getPathๆ–นๆณ• #1929
128
-
129
- ## 2.0.7
130
-
131
- ### Patch Changes
132
-
133
- - fix: ไฟฎๅคไธ€ไบ›้—ฎ้ข˜
134
- - fix: ไฟฎๅคๆ–‡ๆœฌๆ‹–ๆ‹ฝไธ็ฌฆๅˆ้ข„ๆœŸ็š„้—ฎ้ข˜ by ChangeSuger
135
- - feat: ๆ”ฏๆŒๅŠจๆ€ไฟฎๆ”น Grid ็š„้…็ฝฎ by ChangeSuger
136
- - fix: ไฟฎๅค 2.x ไธŽ 1.x ไธ‹็›ธๅŒ็š„็ฝ‘ๆ ผ็บฟๅฎฝ๏ผŒGrid ่กจ็Žฐไธไธ€่‡ด็š„้—ฎ้ข˜ by ChangeSuger
137
- - fix: node:dnd-drag ๅขžๅŠ ไบ‹ไปถๆ•ฐๆฎ by HeatonZ
138
- - fix(extension): ใ€dynamic-groupใ€‘ไฟฎๅคmousemoveๅ’ŒisCollapsed็›ธๅ…ณ้—ฎ้ข˜ by wbccb
139
- - fix: ไฟฎๅค windows ็ณป็ปŸ node20 ็Žฏๅขƒไธ‹ๆ ทๅผๆ–‡ไปถๆ‰“ๅŒ…ๅคฑ่ดฅ็š„้—ฎ้ข˜ by ChangeSuger
140
- - fix: ไฟฎๅค node:dnd-drag ไบ‹ไปถ็š„็ฑปๅž‹ๆฃ€ๆŸฅ้—ฎ้ข˜ by ChangeSuger
141
- - fix(example): ไฟฎๅคๆ–‡ๆกฃไธญvue3่‡ชๅฎšไน‰็ป„ไปถไธ่ƒฝๆญฃๅธธๆ˜พ็คบbug by zkt2002
142
- - fix(core): ๅœจๆฒกๆœ‰ๆ‹–ๆ‹ฝ็š„ๆƒ…ๅ†ตไธ‹๏ผŒControl็ป„ไปถ็ช็„ถ้”€ๆฏ๏ผŒไธ่งฆๅ‘cancelDrag(#1926) by wbccb
143
- - fix(core): ไฟฎๅค็ฌ”่ฎฐๆœฌ่งฆๆ‘ธๆฟ็‚นๅ‡ป่พนไบ‹ไปถๅคฑๆ•ˆ by wuchenguang1998
144
- - feat(examples): ๆทปๅŠ ๅŠจ็”ป่พนdemo by DymoneLewis
145
- - fix(core): ็ฑปๅž‹ๅฎšไน‰ properties:change ๆ”นไธบ node:properties-change by HeatonZ
146
- - feat: node-registry ่‡ชๅฎšไน‰properties็ฑปๅž‹ by HeatonZ
147
- - fix(core): ไฟฎๅค polyline ไธŽๅคš่พนๅฝข่Š‚็‚น็š„ไบค็‚นไธๆญฃ็กฎ็š„้—ฎ้ข˜ by Yuan-ZW
148
-
149
- ## 2.0.6
150
-
151
- ### Patch Changes
152
-
153
- - feat(core&extension): ่งฃๅ†ณ transform ็›ธๅ…ณ้—ฎ้ข˜ #1446
154
- - fix(core&extension): ไผ˜ๅŒ–ๅˆ†็ป„็ผฉๆ”พๆ—ถๅญๅ…ƒ็ด ๆ˜ฏๅฆ็ผฉๆ”พ็š„้€ป่พ‘๏ผŒๅนถ่งฃๅ†ณๅ…ƒ็ด ็ผฉๆ”พๆ—ถๅ‡บ็Žฐ็š„้—ฎ้ข˜
155
- - fix(extension): ่งฃๅ†ณๅŠจๆ€ๅˆ†็ป„ resize ๆ—ถ๏ผŒๅปบ่ฎฎๅขžๅŠ ๅ‚ๆ•ฐๆŽงๅˆถๅญๅ…ƒ็ด ๆ˜ฏๅฆ้œ€่ฆๅŒๆ—ถ็ผฉๆ”พ็š„้—ฎ้ข˜ close #1826
156
-
157
- ## 2.0.5
158
-
159
- ### Patch Changes
160
-
161
- - fix(core&extension): fix bugs from issues
162
- - fix(core): update import path to relative path style to remove compile error in angular(ไฟฎๅคangularไธญๅผ•็”จๅŽ็ผ–่ฏ‘ๆŠฅ้”™้—ฎ้ข˜)
163
- - fix(core): ไฟฎๅคBaseNodeModel็š„getData()ๆ‹ฟไธๅˆฐwidthๅ’Œheight็š„้—ฎ้ข˜(#1826)
164
- - fix(core): node => rotate+ๆญฃๅธธๆจกๅผresize(#1428)
165
- - fix(core): ๅค–้ƒจ่ฐƒ็”จhandleResize()ๆฒกๆœ‰ไผ ๅ…ฅanchorๅๆ ‡ไธ่งฆๅ‘recalcRotatedResizeInfoๆ–นๆณ•
166
- - chore(core): rotate+ๆญฃๅธธๆจกๅผresize็š„็›ธๅ…ณๅ˜้‡ๅ็งฐไปŽanchorๆ”นไธบcontrol
167
-
168
- ## 2.0.4
169
-
170
- ### Patch Changes
171
-
172
- - fix: ไฟฎๅค่Š‚็‚นๆ–‡ๆœฌ่ฎพ็ฝฎdraggableๅ’Œeditableไธ็”Ÿๆ•ˆ้—ฎ้ข˜
173
-
174
- ## 2.0.3
175
-
176
- ### Patch Changes: Release 2.0.3 Version
177
-
178
- - chore: ๆ–ฐๅขž rollup.config ๅฐ† extension less ๆ–‡ไปถๆ‰“ๅŒ…ๆˆ css๏ผŒๅนถไธๅœจ js ไธญๅผ•ๅ…ฅ less
179
- - ่งฃๅ†ณ BaseEdgeModel ไธญ setProperty ๆ–นๆณ•ไฝฟ็”จ set ๆ—ถๆŠฅ้”™็š„ bug
180
- - isIe ่ฐƒๆ•ดไธบๆ–นๆณ•๏ผŒ่งฃๅ†ณ ssr ้กน็›ฎไธญ window is not defined ็š„้—ฎ้ข˜ close #1524
181
-
182
- ## 2.0.2
183
-
184
- ### Patch Changes: Release 2.0.2 Version
185
-
186
- - ไฟฎๅค่‡ชๅฎšไน‰่Š‚็‚น Model ไธญ initNodeData ๆ–นๆณ•ไธ็”Ÿๆ•ˆ
187
- - ไฟฎๅคcircleใ€diamondใ€polygonใ€rectใ€ellipse ไธญ initNodeData ๆ–นๆณ•ไธ็”Ÿๆ•ˆ
188
- - ไฟฎๅคๅฎ˜็ฝ‘ๆ•™็จ‹- ๅŸบ็ก€ๆ•™็จ‹- ่Š‚็‚นๆ–‡็ซ ไธญ่ทณ่ฝฌ้”™่ฏฏ
189
- - exampleไธญ่กฅๅ……่‡ชๅฎšไน‰circleใ€diamonใ€polygon่Š‚็‚น
190
- - ่งฃๅ†ณ Menu ๆ’ไปถ setMenuByType ไธบ็งๆœ‰ๆ–นๆณ•ๅฏผ่‡ด็”จๆˆทๆ— ๆณ•่ฐƒ็”จ็š„ bug close #1773
191
- - ไฟฎๅคๅ•็‹ฌๅผ•ๅ…ฅlessๅฏผ่‡ด็š„็”จๆˆทไพงๅฏๅŠจๆœๅŠกๆŠฅ้”™็š„้—ฎ้ข˜
192
- - ไฟฎๅคๆ–‡ๆกฃไธญ core ๅŒ… css ่ต„ๆบๅœฐๅ€้”™่ฏฏ็š„้—ฎ้ข˜ close #1798
193
- - ไฟฎๅค model ไธญ width/height/radius ็ญ‰ properties ไผ  0 ๆ— ๆ•ˆ็š„ bug
194
-
195
- ## 2.0.1
196
-
197
- ### Patch Changes: ไฟฎๅค 2.0 ็‰ˆๆœฌไธญ Core ๅŒ…ๅŠ Extension ไธญ dynamic-group/label ็ญ‰ๆ’ไปถ็š„ bug
198
-
199
- - ไฟฎๅคๅˆๅง‹ๅŒ–ๆ—ถ DyanmicGroup ๆ’ไปถๆŠ˜ๅ ๅฑ•ๅผ€ๆŠฅ้”™็š„้—ฎ้ข˜ #1767
200
- - ไฟฎๅค RectNodeModel ๅˆๅง‹ๅŒ–ๆ—ถ่ฎพ็ฝฎ widthใ€heightใ€radius ไธบ 0 ๆ—ถๆ— ๆ•ˆ็š„ bug
201
- - Rename: resizeFunction -> throttleResize ๅ‡ฝๆ•ฐๅ‘ฝๅไผ˜ๅŒ–
202
- - ไฟฎๅค isRestrict ๅผ€ๅฏๅŽๅญ่Š‚็‚นไป่ƒฝๆ‹–ๆ‹ฝๅ‡บๅˆ†็ป„ๅŒบๅŸŸ็š„ bug
203
- - ไผ˜ๅŒ–ๅˆ†็ป„ๆ—‹่ฝฌๆ—ถ๏ผŒๅญ่Š‚็‚น็š„ๆ—‹่ฝฌ้€ป่พ‘๏ผŒไปฅๅˆ†็ป„ไธญๅฟƒไธบไธญๅฟƒ็‚นๆ—‹่ฝฌ๏ผŒๅนถๆ›ดๆ–ฐ่‡ช่บซ็š„ rotate ๅฑžๆ€ง
204
- - ๅขžๅŠ  elementsModelMap ่งฃๅ†ณ Group ๅˆๅง‹ๅŒ–ๆ—ถ๏ผŒchildren ไธญ็š„ๅ…ƒ็ด ๆœชๅฎŒๆˆๅˆๅง‹ๅŒ–ๅฏผ่‡ด model ไธบ็ฉบ็š„bug
205
- - Rename: outcomingEdgeList๏ผŒgetAnchorOutcomingEdge๏ผŒoutcoming -> outgoing#1449
206
- - ไฟฎๅค็”ปๅธƒๅŠ ่ฝฝๅฎŒๅŽๆ–ฐๅขž่Š‚็‚นๆ—ถLabelไธๅฑ•็คบ้—ฎ้ข˜ #1759
207
- - ้‡ๆ–ฐไฟฎๆ”นๆ ทๅผๆ‰“ๅŒ…้…็ฝฎ,็”จไบŽไฟฎๅคๅผ•ๅ…ฅๆ’ไปถๅŒ…ๅŽ่ตทๆœๅŠกๆŠฅ้”™้—ฎ้ข˜ #1760
208
- - ไฟฎๅค็”ปๅธƒๅˆ‡ๆขๅŽ้กต้ขๅฎฝ้ซ˜ๅ˜ๅŒ–ๆ—ถๆŒ็ปญๅ‡บ็Žฐ่ญฆๅ‘Š้—ฎ้ข˜ #1756
209
- - ็ปŸไธ€ๆ•ฐๆฎ็ฑปๅž‹, ไฟฎๅคtextValไธบๆ•ฐๅญ—ๆ—ถๆŠฅ้”™้—ฎ้ข˜ #1612
210
- - ไฟฎๅค่Š‚็‚นidๅˆ‡ๆขๅŽๆŸไธ€ๆฌกๆ›ดๆ–ฐ่พนๆ‹ฟไธๅˆฐNodeId้—ฎ้ข˜ #864
211
-
212
- ## 2.0.0
213
-
214
- ### Major Changes: Release 2.0 New Version ๐ŸŽ‰๐ŸŽ‰๐ŸŽ‰๐ŸŽ‰
215
-
216
- #### refactor: ้‡ๆž„ LogicFlow ้กน็›ฎ็ป“ๆž„๏ผŒๅ‡็บงๆ‰“ๅŒ…ๅทฅๅ…ท๏ผŒไฝฟ็”จ pnpm ๅšๅŒ…็ฎก็†ๅทฅๅ…ท
217
-
218
- - rename index.tsx -> index.ts, update dependencies and declare module mobx-preact
219
- - ้…็ฝฎ husky pre-commit
220
- - ๅฎŒๅ–„ LogicFlow.tsx ไธปๆ–‡ไปถ็ฑปๅž‹ๅฎšไน‰
221
- - update .gitignore
222
- - git rm -r --cached sites/docs/.dumi/tmp
223
- - add index.less
224
- - ่งฃๅ†ณ้กน็›ฎไธญ core ๅŒ… TypeScript ็ฑปๅž‹้”™่ฏฏๅฏผ่‡ดๆ‰“ๅŒ…ๅคฑ่ดฅ็š„้—ฎ้ข˜
225
-
226
- - ้กน็›ฎไปฃ็ ้‡ๆž„๏ผŒๅŒ…ๆ‹ฌ examplesใ€extension ๅŠ core ๅŒ…
227
-
228
- - remove react-umi-app demo
229
- - rename lf-engine-browser -> engine-browser-examples
230
- - rename lf-engine-node -> engine-node-examples
231
- - extension ๅŒ…ไธญไฟฎๆ”นๆ–‡ไปถๅคนๅๅคงๅฐๅ†™ๆœช็”Ÿๆ•ˆ๏ผŒๆขๅคๆˆ Control ๅ’Œ Node ๆ–‡ไปถๅคน๏ผŒๅŽ็ปญๅ†ๅค„็†
232
- - add feature-examples DEMO ้กน็›ฎ๏ผŒ็”จไบŽๆฑ‡ๆ€ปๆ‰€ๆœ‰ๅฎ˜ๆ–น demo๏ผŒๅŽ็ปญๅ† docs ไธญไฝฟ็”จ
233
- - ๅฎŒๆˆ feature-examples ไธญ demo ็š„ๆ”น้€ ๏ผŒๅขžๅŠ  graph ้กต้ข
234
- - ไผ˜ๅŒ– DndPanel ็š„demo
235
- - ๅผ€ๅ‘ feature-examples ไธญ BPMN ๆ’ไปถ demo
236
- - feature-examples ไธญๅขžๅŠ  BPMN demo
237
- - engine-browser-examples ไธญๅขžๅŠ  graph demo๏ผŒๆ–นไพฟๅŽ็ปญๅœจ vite ็Žฏๅขƒไธ‹่ฐƒ่ฏ•ๅŒ…ๅŠŸ่ƒฝ๏ผŒๆต‹่ฏ• umi ไธŽ vite ๆ˜ฏๅฆไธ€่‡ด
238
- - engine-browser-examples bpmn demo ๆ›ดๆ–ฐ
239
- - ๆ–ฐๅขž next-app ็”จๆฅๆต‹่ฏ•ๆœๅŠก็ซฏๆธฒๆŸ“้กน็›ฎไธญ window is not defined ็š„้—ฎ้ข˜
240
- - ไฟฎๅค vue3-memory-leak ้กน็›ฎไธญๅผ•ๅ…ฅ vue ๆ–‡ไปถๆŠฅ้”™็š„้—ฎ้ข˜
241
- - ๆ–ฐๅขž vue3-app ็”จไบŽๆต‹่ฏ• vue-node-registry๏ผŒๅŽ็ปญไฝฟ็”จ่ฏฅ้กน็›ฎๅผ€ๅ‘ vue ็ป„ไปถๆˆ– demo
242
- - feature-examples ็ฑปๅž‹ๅฎŒๅ–„
243
- - ไฟฎๅค engine-browser-examples ไธญ็ฑปๅž‹้”™่ฏฏ้—ฎ้ข˜
244
- - ไผ˜ๅŒ– engine-browser-examples ๆ ทๅผ
245
- - ่กฅๅ……่‡ชๅฎšไน‰ๆŠ˜็บฟใ€ๅœ†่ง’ๆŠ˜็บฟใ€่Š‚็‚น้€‰ๆ‹ฉ็คบไพ‹ (#1680)
246
- - ๆทปๅŠ insert-node-in-polyline๏ผŒrulesไธคไธชๆ’ไปถ็š„demo
247
- - ๅขžๅŠ ๆต‹่ฏ•vue3ๆ€ง่ƒฝdemo
248
- - ๅขžๅŠ rect-label-nodeๆ’ไปถ็คบไพ‹
249
- - ๅขžๅŠ ้ซ˜ไบฎๆ’ไปถ่ฏดๆ˜Žๆ–‡ๆกฃ - ไผ˜ๅŒ–้ซ˜ไบฎๆ’ไปถ็คบไพ‹
250
-
251
- - ๆ–‡ไปถๅคน้‡ๅ‘ฝๅ๏ผŒๅฐ†ๅคง้ฉผๅณฐๅ‘ฝๅไฟฎๆ”นไธบ ๅฐๅ†™+็Ÿญๆจช็บฟ
252
-
253
- - DefaultAnimation.ts -> defaultAnimation.ts
254
- - DefatultTheme.ts -> defaultTheme.ts
255
- - history/History.ts -> history/index.ts
256
- - ๅนถๆ›ดๆ–ฐ้กน็›ฎไธญๅ„ไธชๆ–‡ไปถ็š„ๅผ•็”จๅœฐๅ€
257
-
258
- - ่งฃๅ†ณ git config core.ignorecase ไธบ true ๅฏผ่‡ดไฟฎๆ”นๆ–‡ไปถๅคนๅๅคงๅฐๅ†™ไธ็”Ÿๆ•ˆ็š„้—ฎ้ข˜
259
-
260
- - ้‡ๅ‘ฝๅ BPMN -> bpmn; Control -> control
261
- - ๅ‘ฝๅ่ง„่Œƒ๏ผšๆ–‡ไปถๅคนๅๅฐๅ†™๏ผˆname or name1-name2-name3๏ผ‰๏ผ›.js or .ts ๅฐ้ฉผๅณฐ๏ผ›.tsx or .jsx ๅคง้ฉผๅณฐ
262
- - ๆ–ฐๅขž Vue3-memory-leak demo ็”จไบŽๅฎšไฝๅ†…ๅญ˜ๆณ„ๆผ็š„้—ฎ้ข˜๏ผŒๅŽ็ปญๅŸบไบŽๆญค demo ๅขžๅŠ  LogicFlow destroy ็š„ๆ–นๆณ•
263
- - ไผ˜ๅŒ– properties ็ฑปๅž‹ๅฎšไน‰ไธบ Record<string, any>๏ผŒ้ฟๅ… unknow ๅผ•่ตท็š„้—ฎ้ข˜๏ผŒๅŽ็ปญๅ†ไผ˜ๅŒ–
264
- - ่งฃๅ†ณ graph demo ไธญๅ‘็Žฐ BezierEdge ๅˆๅง‹ๅŒ– path ไธบ็ฉบ็š„้—ฎ้ข˜๏ผŒๅฏไปฅ็œ‹ -> BezierEdgeModel.ts ็š„ๆ”นๅŠจ
265
-
266
- - ้€š่ฟ‡ git rm --cached Xxxx ็งป้™คไฟฎๆ”นๅคงๅฐๅ†™็š„ๆ–‡ไปถๅคนๅ†…ๅฎน
267
-
268
- - ๅฎŒๅ–„ README.md ไปฅๅŠ CONTRIBUTING ็›ธๅ…ณๆ–‡ๆกฃ๏ผŒ่งฃๅ†ณ eslint ้—ฎ้ข˜
269
-
270
- - ๅฎŒๅ–„ๅผ€ๆบๅ…ฑไบซๅผ•ๅฏผๆ–‡ๆกฃ๏ผšREADME ไปฅๅŠ CONTRIBUTING
271
- - ้กน็›ฎๆ น็›ฎๅฝ•่ฟ่กŒ pnpm run lint:ts๏ผŒ่งฃๅ†ณ้กน็›ฎไธญ eslint ้”™่ฏฏๅŠ warning
272
-
273
- - Update update_contributors.yml
274
-
275
- - update package.json, add changesets to generate CHANGELOG
276
-
277
- - .gitnore add .umi/ and delete .npmrc file
278
- - dependencies ไธญ 'workspace:latest' -> 'workspace:\*' ่งฃๅ†ณ changeset ไธญ็”Ÿๆˆ CHANGELOG ๆŠฅ้”™็š„้—ฎ้ข˜
279
- - update build-docs shell
280
- - add @changesets/cli and related scripts
281
-
282
- - ๆ›ดๆ–ฐ rollup config ๅนถๅขžๅŠ  umd ๅŒ…ไฝฟ็”จ demo ๆ–‡ไปถ
283
-
284
- - npm ๅŒ… dependencies ไธญๆ–ฐๅขž lodash-es ไพ่ต–๏ผŒ่งฃๅ†ณๅผ•ๅ…ฅ้กน็›ฎไธญๆŠฅ้”™็š„้—ฎ้ข˜
285
-
286
- - ๅผ€ๅ‘่Š‚็‚นๆ–‡ๆœฌๆข่กŒ็ญ‰ไฝ“้ชŒไผ˜ๅŒ–็š„ๅŠŸ่ƒฝ
287
- - ่งฃๅ†ณ examples ไธญๆŠฅ้”™็š„้—ฎ้ข˜
288
-
289
- - ็งป้™คๆ–‡ๆกฃไธญ lodash-es ไพ่ต–๏ผŒ็งป้™คๆ— ็”จ console
290
- - ไผ˜ๅŒ–ไปฃ็ ๆณจ้‡Šๆญงไน‰็š„้—ฎ้ข˜
291
- - ๆ›ดๆ–ฐ turbo ็‰ˆๆœฌๅนถ่งฃๅ†ณ extension ๆ‰“ๅŒ… core ไพ่ต–ๆŠฅ้”™็š„้—ฎ้ข˜
292
-
293
- #### Core & Extension ๆ›ดๆ–ฐ
294
-
295
- - core ๅŒ…ไธญ 'preact' -> 'preact/compat' ่งฃๅ†ณ svg ๅฑžๆ€ง้—ฎ้ข˜
296
- - ๅฎŒๆˆ core ๅŒ… roolup ๆ‰“ๅŒ…ๅŠcore ๅŒ…ไธญ็ฑปๅž‹ๅฎšไน‰ๆ›ดๆ–ฐ
297
- - extension ๅŒ…ไธญไปฃ็ ้‡ๆž„๏ผŒ่งฃๅ†ณ TypeScript ็ฑปๅž‹ๅฎšไน‰็š„้—ฎ้ข˜๏ผŒๅฎŒๆˆๆ‰“ๅŒ…ๆ”น้€ 
298
- - core ๅŒ…ไธญ็ฑปๅž‹ๅฎšไน‰ๅฎŒๅ–„๏ผŒ่งฃๅ†ณๅœจ extension ๅŒ…้‡ๆž„่ฟ‡็จ‹ไธญ้‡ๅˆฐ็š„ Core ๅŒ…้—ฎ้ข˜
299
- - ไผ˜ๅŒ– core ๅŒ…ไธญ็ฑปๅž‹ๅฎšไน‰๏ผŒๅขžๅŠ  GraphData ็ฑปๅž‹๏ผŒๅŒบๅˆซไบŽ GraphConfigData
300
- - ไผ˜ๅŒ– bpmn ๆ’ไปถ็š„ๅฏผๅ‡บๅ†…ๅฎน
301
- - ไฟฎๅค GraphModel ไธญ getAreaElement ๆ–นๆณ•็š„ bug ๅŠไธ€ไบ›ๅ…ถไป–็ฑปๅž‹ๅฎšไน‰็š„ไผ˜ๅŒ–
302
-
303
- - ไฟฎๅค GroupNode ไธญ getNodeStyle ่งฃๆž„ๅŽ่ฐƒ็”จ๏ผŒBaseNodeModel ไธญ getNodeStyle ๆ–นๆณ• this ไธบ็ฉบ็š„้—ฎ้ข˜
304
-
305
- - ็กฎ่ฎค่งฃๆž„ๅŽ่ต‹ๅ€ผๅ’Œ็›ดๆŽฅ this.props.model.getNodeStyle() ๆ–นๆณ•่ฐƒ็”จ็š„ๅŒบๅˆซ -> this ๆŒ‡ๅ‘็š„้—ฎ้ข˜
306
- - LogicFlow Examples ไธญๆ–ฐๅขž Group ๆ’ไปถ
307
-
308
- - ไธป่ฆไฟฎๅค TextEditTool ๆ— ๆ•ˆ็š„ bug๏ผŒๅŽๆณจๅŽŸๅ› 
309
-
310
- - TextEditTool ็ป„ไปถๆ›ดๆ–ฐๆ—ถ๏ผŒๅŽŸๅ…ˆ็š„ graphModel ๅ’Œ LogicFlow props ไธไผš่งฆๅ‘็ป„ไปถ็š„ๆ›ดๆ–ฐ๏ผŒ้€š่ฟ‡ๅฐ† textEditElement ไผ ๅ…ฅ่งฆๅ‘็ป„ไปถๆ›ดๆ–ฐ
311
- - ็งป้™คไปฃ็ ไธญๆ— ็”จ็š„ console
312
- - ๆ›ดๆ–ฐไพ่ต– @babel/plugin-proposal-class-properties -> @babel/plugin-transform-class-properties
313
- - EventArgs ็›ธๅ…ณ็ฑปๅž‹็”ฑ unknown ๆ”นไธบ any
314
-
315
- - ๆก†้€‰ๆ’ไปถ้‡ๆž„ไธŽ็คบไพ‹ๅ†…ๅฎนไธฐๅฏŒ
316
-
317
- - ๅฎŒๅ–„้ƒจๅˆ†็ฑปๅž‹ๅฎšไน‰
318
- - ๆก†้€‰ๆ’ไปถ็คบไพ‹ๅ†…ๅฎนไธฐๅฏŒ
319
- - ไฟฎๅคไฝฟ็”จๆก†้€‰ๆ’ไปถๅŽ๏ผŒ็ฝ‘้กตๆปš่ฝฎไบ‹ไปถ่ขซ้˜ปๅกž็š„้—ฎ้ข˜
320
- - ไฟฎๅค็ผฉๆ”พๅŽๆก†้€‰ๅ…ƒ็ด ไธŽ้ผ ๆ ‡ไฝ็งปไธไธ€่‡ด็š„้—ฎ้ข˜๏ผˆ#1102๏ผ‰
321
- - ๅขžๅŠ ๆ–ฐไบ‹ไปถ selection:selected-area๏ผŒ่ฟ”ๅ›žๆก†้€‰่Œƒๅ›ด๏ผˆ#1104๏ผ‰
322
- - ไผ˜ๅŒ–ๆก†้€‰ๅทฅๅ…ทๅœจ็ผฉๆ”พๆ—ถ็š„่พน่ทไธŽๅค–่พนๆก†ๅฎฝๅบฆ่ฎก็ฎ—
323
-
324
- - feat: ๅฐๅœฐๅ›พๆ’ไปถ้‡ๆž„ไธŽ็›ธๅ…ณ็คบไพ‹ๅขžๅŠ 
325
-
326
- - ไผ˜ๅŒ–็”ปๅธƒ็งปๅŠจๆ—ถ๏ผŒๅฐๅœฐๅ›พ็š„ๆ›ดๆ–ฐ็ญ–็•ฅ๏ผŒๅ‡ๅฐ‘ๆ€ง่ƒฝๆถˆ่€—
327
- - ๅฐๅœฐๅ›พๆ˜พ็คบๅŒบๅŸŸ่ฎก็ฎ—้€ป่พ‘ไฟฎๆ”น๏ผŒ็Žฐๅœจ็”ฑ็”ปๅธƒๅ…ƒ็ด ไธŽ่ง†ๅฃๅ…ฑๅŒๅ†ณๅฎš
328
- - ไผ˜ๅŒ–ๅฐๅœฐๅ›พ้ข„่งˆ่ง†็ช—็š„ๆ‹–ๆ‹ฝไบคไบ’
329
- - ไฟฎๅค็‚นๅ‡ปๅฐๅœฐๅ›พ้ข„่งˆ่ง†็ช—ไผš่งฆๅ‘ไธๅฏ้ข„ๆœŸ็š„็”ปๅธƒ็งปๅŠจ็š„้—ฎ้ข˜
330
- - ๆ–ฐๅขžๅฐๅœฐๅ›พๆ’ไปถ็š„็คบไพ‹
331
-
332
- - selection-select ๆ’ไปถไธญ disabled ้ป˜่ฎค่ฎพ็ฝฎไธบ true
333
-
334
- - ็”จไบŽ่งฃๅ†ณๅฝ“็”จไบŽ stopMoveGraph ่ฎพ็ฝฎไธบ true ไธ”ๅฏ็”จไบ† selection-select ๆ’ไปถๆ—ถ๏ผŒๆ’ไปถ็Šถๆ€้ป˜่ฎคๅผ€ๅฏ็š„ bug
335
- - ๆ›ดๆ–ฐ LICENSE ๆ–‡ไปถ๏ผŒๆ ผๅผๅŒ–ๅ†…ๅฎน
336
- - ๅ…ถๅฎƒ demo ็š„ไธ€ไบ›ๆ ทๅผๆ›ดๆ–ฐ
337
-
338
- - ็งป้™ค extension ๅŒ…ไธญ examples ๆ–‡ไปถๅคน๏ผŒๅทฒ่ฝฌ็งปๅˆฐ examples/feature-examples ้กน็›ฎไธญ
339
- - ๅฎŒๅ–„coreๅŒ…ไธŽgroupๆ’ไปถ็š„็ฑปๅž‹ๅฎšไน‰
340
- - ๅฎŒๅ–„ไธŽไฟฎๆญฃcoreๅŒ…็š„้ƒจๅˆ†็ฑปๅž‹ๅฎšไน‰
341
-
342
- - minimapๆ’ไปถๅŠŸ่ƒฝๅฎŒๅ–„ไธŽ็›ธๅ…ณ็คบไพ‹ไธฐๅฏŒ
343
-
344
- - ๅฐๅœฐๅ›พไธญๅฏ้€‰ๆ‹ฉๆ˜ฏๅฆๆธฒๆŸ“่ฟž็บฟ๏ผŒๆ”ฏๆŒๅˆๅง‹ๅŒ–ๆ—ถ่ฎพ็ฝฎๆˆ–้€š่ฟ‡`setShowEdge`ๆ–นๆณ•ๆ›ดๆ–ฐ่ฎพ็ฝฎ
345
- - ๆ›ดๅฎŒๅ–„็š„ไปฃ็ ๆณจ้‡ŠไธŽ็ฑปๅž‹ๅฎšไน‰
346
- - ็Žฐๅœจ๏ผŒๅฐๅœฐๅ›พ้ป˜่ฎคๅฐ†ไฝไบŽ็”ปๅธƒ็š„ๅณไธ‹่ง’๏ผŒไฟ็•™`show`ๆ–นๆณ•่ฎพ็ฝฎ็”ปๅธƒไฝ็ฝฎ็š„ๅŠŸ่ƒฝ๏ผŒๆ–ฐๅขž`updatePosition`ๆ–นๆณ•็”จไบŽๆ›ดๆ–ฐๅฐๅœฐๅ›พ็›ธๅฏน็”ปๅธƒ็š„ๅ†ณๅฎšๅฎšไฝ
347
- - ๅœจๅฐๅœฐๅ›พ็ญ‰็คบไพ‹ไธญๅขžๅŠ ไบ†ๆ–ฐๅขžๅŠŸ่ƒฝ็š„ๆผ”็คบ๏ผˆ่ฟž็บฟๅฏ้€‰ๆธฒๆŸ“ไธŽไฝ็ฝฎ่ฐƒๆ•ด๏ผ‰
348
-
349
- - ๅฎŒๅ–„ BaseEdge ๅ’Œ BaseNode ๆณ›ๅž‹็ฑปๅž‹๏ผŒๅ†…็ฝฎ่Š‚็‚น props ๅฎšไน‰ๆ›ดๆ–ฐ
350
-
351
- - ้‡ๆž„ LogicFlow.tsx ไปฅๅŠ GraphMode ไปฃ็ ๏ผŒไปฃ็ ๆŒ‰ๅŠŸ่ƒฝๅˆ†ๅŒบ็ฎก็†
352
-
353
- - Fix typo -> fakerNode ้‡ๅ‘ฝๅไธบ fakeNode๏ผŒๆ„ๆŒ‡่™šๆ‹Ÿ่Š‚็‚น
354
- - ไธป่ฆ้‡ๆž„ LogicFlow.tsx ไธญไปฃ็ : ๅฐ†ไปฃ็ ๆŒ‰ Register๏ผŒNodes๏ผŒEdges๏ผŒElement๏ผŒText๏ผŒEditConfig๏ผŒGraph๏ผŒEventCenter๏ผŒHistory ็ญ‰ๅˆ†ๆจกๅ—็ฎก็†
355
- - ้‡ๆž„ LogicFlow ไธญ getPointByClient ๆ–นๆณ•๏ผŒ้€š่ฟ‡้‡่ฝฝ๏ผŒๆ”ฏๆŒๅคš็ง็ฑปๅž‹ๅ‚ๆ•ฐ
356
- - ้‡ๆž„ LogicFlow ไธญ focusOn ๆ–นๆณ•๏ผŒ้€š่ฟ‡้‡่ฝฝ๏ผŒๆ”ฏๆŒๅคš็งไผ ๅ‚ๆ–นๅผ
357
-
358
- - coreๅŒ…็ฑปๅž‹ๅฎšไน‰ๅฎŒๅ–„
359
-
360
- - ๅฐๅœฐๅ›พๆ’ไปถๆ–ฐๅขžๅŠŸ่ƒฝไธŽ็คบไพ‹ไธฐๅฏŒ
361
-
362
- - ๅฐๅœฐๅ›พๆ’ไปถ็Žฐๅœจๆ”ฏๆŒ่ฎพ็ฝฎๅ…ณ้—ญๅฐๅœฐๅ›พๆ—ถ็š„ๅ›ž่ฐƒ๏ผŒ็”จไบŽๅค–้ƒจๆ›ดๆ–ฐๅฐๅœฐๅ›พ็š„ๆ˜พ็คบ็Šถๆ€๏ผˆ#829๏ผ‰
363
- - ๅฐๅœฐๅ›พๆ’ไปถ็คบไพ‹ๅขžๅŠ ไธŽๆ–ฐๅขžๅŠŸ่ƒฝ็›ธๅ…ณ็š„ๅ†…ๅฎน
364
-
365
- - extensionๅŒ…็š„็ฑปๅž‹ๅฎšไน‰ไฟฎๅค
366
-
367
- - ไฟฎๅค 349252c ๆไบคๅŽ๏ผŒextension ๅŒ…ไธญ็š„็ฑปๅž‹้”™่ฏฏ้—ฎ้ข˜
368
- - ไธบ BaseNode ็š„่Œƒๅž‹่ฎพ็ฝฎ้ป˜่ฎค็ฑปๅž‹
369
-
370
- - ไฟฎๅคๅฐๅœฐๅ›พ็š„้ข„่งˆ่ง†็ช—ๆ— ๆณ•ๆ‹–ๆ‹ฝ็š„้—ฎ้ข˜
371
-
372
- - ๅฐๅœฐๅ›พ่ฎพ็ฝฎๅ›ž่ฐƒ้€ป่พ‘่ฐƒๆ•ดไธบๆŠ›ๅ‡บไบ‹ไปถ
373
-
374
- - ๅˆ ้™คๅŽŸๆœ‰่ฎพ็ฝฎๅ…ณ้—ญๆ—ถๅ›ž่ฐƒ็š„้€ป่พ‘
375
- - ็Žฐๅœจๅฐๅœฐๅ›พๆ’ไปถๅœจๅ…ณ้—ญๆ—ถไผšๆŠ›ๅ‡บไบ‹ไปถ `miniMap:close`๏ผŒๅฏไปฅ้€š่ฟ‡ `lf.on()` ็›‘ๅฌ่ฏฅไบ‹ไปถๆฅ่ฎพ็ฝฎๅฐๅœฐๅ›พๅ…ณ้—ญๆ—ถ็š„ๅ›ž่ฐƒ
376
-
377
- - ไบ‹ไปถ็ณป็ปŸ็š„็ฑปๅž‹ๅฎšไน‰ๅฎŒๅ–„
378
-
379
- - ๅฐ†่Š‚็‚น Resize ๅŠŸ่ƒฝๅ†…็ฝฎ
380
-
381
- - ๆ–ฐๅขž Control ็ป„ไปถ๏ผŒ็”จไบŽๆŽงๅˆถ่Š‚็‚นๆ”พๅคง็ผฉๅฐ๏ผŒๅนถๅœจ BaseNodeModel ไธญๅขžๅŠ  resize ๆ–นๆณ•
382
- - ๆ›ดๆ–ฐ GitHub Actions ไปปๅŠกๅ
383
- - ้‡ๅ‘ฝๅ allowRotation -> allowRotate๏ผ›ๅŽ็ปญๅขžๅŠ  allowResize ้€‰้กน๏ผŒไฟๆŒๅ‘ฝๅไธ€่‡ดๆ€ง
384
- - circle/diamond/ellipse/polygon ็ญ‰่Š‚็‚นๅขžๅŠ  resize ่ƒฝๅŠ›
385
- - ่Š‚็‚น model ไธญๅขžๅŠ ๅˆๅง‹ๅŒ–ๆ—ถ properties ็š„ไฟๅญ˜๏ผŒ่ฐƒ่ฏ•ๅคš่พนๅฝข่Š‚็‚น outline ไธ็ฌฆๅˆ้ข„ๆœŸ็š„้—ฎ้ข˜
386
-
387
- - ่งฃๅ†ณresize ็ป“ๆŸๅŽ่Š‚็‚น้‡ๆ–ฐๅฎšไฝ็š„้—ฎ้ข˜
388
- - Control.tsx ไธญ new StepDrag ๅ‚ๆ•ฐไธญ step ไผ ๅ…ฅ graphModel.gridSize๏ผŒไฟ่ฏ่ฐƒๆ•ดๆ—ถๆ‹–ๆ‹ฝไปฅ gridSize ไธบๆญฅ้•ฟ็งปๅŠจ
389
-
390
- - ๅฎŒๆˆ่‡ชๅฎšไน‰่Š‚็‚นๅ†…็ฝฎๅŠŸ่ƒฝ็š„ๅผ€ๅ‘
391
-
392
- - ็งป้™ค็›ฎๅ‰็ณป็ปŸไธญๆ— ็”จ็š„ defaultTheme ๅ’Œ defaultAnimation ๆ–‡ไปถ
393
- - ้€š่ฟ‡ points ็ฝฎๅŽŸ็‚นๅนถๅŸบไบŽ่ฎพๅฎš็š„ width ๅ’Œ height ็ผฉๆ”พ็š„ๆ–นๆณ•๏ผŒ่งฃๅ†ณๅคš่พนๅฝขๅฝข็ŠถไธŽ่พนๆก†ๅฎšไฝๅผ‚ๅธธ็š„้—ฎ้ข˜
394
-
395
- - ็ฝ‘ๆ ผ็ป„ไปถ้‡ๆž„
396
- - ไฟฎๆญฃๅŽŸๆœ‰็ฝ‘ๆ ผๅญ˜ๅœจๅ็งป็š„้—ฎ้ข˜
397
- - ไฟฎๆญฃ็ฝ‘ๆ ผ้…็ฝฎ้€‰้กน็š„็ฑปๅž‹ๅฃฐๆ˜Ž
398
- - ็”ฑ Grid ็ฑป่‡ช่กŒๅฎž็Žฐ็ฝ‘ๆ ผ้…็ฝฎ้€‰้กน็š„ๅˆๅง‹ๅŒ–
399
- - ๅฐ†Grid็›ธๅ…ณ็š„็ฑปๅž‹ๅฃฐๆ˜ŽไธŽ้™ๆ€ๆˆๅ‘˜ไธŽๆ–นๆณ•็งป่‡ณๅ‘ฝๅ็ฉบ้—ด
400
- - ไฟฎๆ”น็‚น็Šถ็ฝ‘ๆ ผไธญ็‚น็š„ๆœ€ๅคงๅŠๅพ„่ฎก็ฎ—้€ป่พ‘๏ผŒๅนถๅขžๅŠ ็›ธๅ…ณๆณจ้‡Š
401
-
402
- - ไฟฎๅค HtmlREsize ่Š‚็‚น outlineStyle fill ้ป˜่ฎคไธบ ้ป‘่‰ฒ็š„ bug
403
- - ็ปŸไธ€ NodeResize ไธญ getResizeOutlineStyle fill ๅ’Œ stroke ็š„่ฟ”ๅ›žๅ€ผ
404
- - ๆ›ดๆ–ฐๆ’ไปถ็›ธๅ…ณ็ฑปๅž‹ๅฎšไน‰๏ผŒๅฎŒๅ–„ๆ’ไปถ็›ธๅ…ณๆ–นๆณ• use/installPlugins/installPlugin ็š„ๅŠŸ่ƒฝ
405
-
406
- - ่งฃๅ†ณๆ’ไปถไธญไธ€ไบ›็ฑปๅž‹้—ฎ้ข˜
407
- - ๆต‹่ฏ•ๅนถไฟฎๅค LogicFlow.use api ็š„ๅŠŸ่ƒฝ bug
408
- - ่ฐƒๆ•ดๅฎ‰่ฃ…ๆ’ไปถ็š„้กบๅบ๏ผŒๅฆ‚ๆœ‰้‡ๅ้ป˜่ฎคไผ˜ๅ…ˆไฝฟ็”จ plugins ไธญๅฎšไน‰็š„ๆ’ไปถ
409
-
410
- - ้‡ๆž„้กน็›ฎไธญ basic shape ็ป„ไปถ๏ผŒไฟฎๅคๅŠŸ่ƒฝ bugใ€ๅฎŒๅ–„็ฑปๅž‹ๅฎšไน‰
411
-
412
- - rename formateAnchorConnectValidateData - formatAnchorConnectValidateData
413
- - rename setHoverON -> setHoverOn, setHoverOFF -> setHoverOff
414
- - ไฟฎๅค Text ๆ–‡ๆœฌ่Š‚็‚น๏ผŒๆ–‡ๆœฌไธๅœจ่Š‚็‚นไธญ้—ด็š„ๆ˜พ็คบ bug๏ผŒ้€š่ฟ‡่ฎพ็ฝฎ dominantBaseline: central ่งฃๅ†ณ
415
- - TextNode getBackground ไธญ rectAttr ่ฎพ็ฝฎ y: y-1, ็งป้™ค่ฏฅ่ฎพ็ฝฎ
416
-
417
- - ๆ–ฐๅขž common ๆ–‡ไปถๅคน็”จไบŽๅญ˜ๆ”พ้€š็”จๆ–นๆณ•
418
-
419
- - ๅขžๅŠ ็”จๆˆท่ฎพ็ฝฎ็”ปๅธƒ 100% ๏ผŒๅœจ่ฐƒๆ•ด่ง†็ช—ๆ—ถ๏ผŒ็”ปๅธƒๅคงๅฐๅŒๆญฅๆ›ดๆ–ฐ็š„้€ป่พ‘๏ผŒไผ˜ๅŒ–ไฝ“้ชŒ
420
-
421
- - ไผ˜ๅŒ–ๅˆๅง‹ๅŒ–ๆ—ถ่ฎพ็ฝฎ็”ปๅธƒๅคงๅฐ็š„้€ป่พ‘
422
- - ไผ˜ๅŒ– DEMO ไปฃ็ ๏ผŒ่งฃๅ†ณ่ฎพ็ฝฎ theme ๆœช็”Ÿๆ•ˆ็š„ bug๏ผˆ ไปฃ็ ้—ฎ้ข˜ใ€‚ๅœจๅˆๅง‹ๅŒ–ๆ—ถ style ่ฆ†็›–ไบ† defaultConfig ไธญ็š„ style๏ผ‰
423
-
424
- - ๆ”ฏๆŒๅฏผๅ‡บ่Š‚็‚นไธญ็š„็ฝ‘็ปœๅ›พ็‰‡
425
-
426
- - ไฟฎๅค็บฟ็š„ menu ๆ— ๆณ•ๆญฃๅธธๆ˜พ็คบ็š„ bug (#1679)
427
-
428
- - ไฟฎๅคๅˆๅง‹ๅŒ–ๆ—ถ edgeConfig ไธญ type ๆœชไผ ๅ€ผๅœบๆ™ฏไธ‹๏ผŒๆœชไฝฟ็”จ graphModel.edgeType(้ป˜่ฎค่พน็ฑปๅž‹) ๅˆๅง‹ๅŒ–่พน็š„ bug
429
-
430
- - ไผ˜ๅŒ– snapshot ไบคไบ’ไฝ“้ชŒ๏ผŒๅ†…ๅฎนๅฑ…ไธญไธ”ๅผ€ๅฏๆ‹–ๆ‹ฝ็”ปๅธƒ๏ผŒ่ฐƒๆ•ด่œๅ•้กบๅบ
431
- - ๅฎŒๅ–„snapshotไฝฟ็”จๆ–นๅผๅ’Œไฟฎๅค่ทจๅŸŸๆŠฅ้”™
432
- - ไฟฎๅค็”ปๅธƒๆ‹–ๅŠจ้˜ปๆญขๆปšๅŠจ (#1700)
433
-
434
- - ๆ–ฐๅขžLabelๆ–‡ๆœฌๆจกๅผ, ๆ”ฏๆŒ้…็ฝฎๅคšๆ–‡ๆœฌๅ’Œไฟฎๆ”นๆ–‡ๆœฌๆœๅ‘
435
-
436
- - graphModel ไธญๅขžๅŠ  textMode ๅฑžๆ€ง๏ผŒ็”จไบŽๆ ‡่ฏ†ๅฝ“ๅ‰ไฝฟ็”จไป€ไนˆๆ–‡ๆœฌๆจกๅผ
437
- - BaseNodeMode and BaseEdgeModel ไปฅๅŠ graphModel ไธญๅขžๅŠ  ๆ›ดๆ–ฐ textMode ็š„ๆ–นๆณ•
438
- - ๆ›ดๆ–ฐ tool ไธญ props ๅ็งฐ๏ผŒlogicflow -> lf๏ผŒไพฟไบŽ็†่งฃ
439
- - ๅขžๅŠ  next-label demo
440
- - ้‡ๆž„ editConfigModel.ts๏ผŒๅฎŒๅ–„้…็ฝฎ้กนไผ˜ๅ…ˆ็บงไปŽ textEdit(ๅ…จๅฑ€) -> nodeTextEdit/edgeTextEdit(ๅˆ†็ฑป) -> ๅ…ƒ็ด ๆœฌ่บซ editable
441
- - ้กน็›ฎไธญๅŽ็ปญๅฏไปฅ็งป้™ค useLabelText ็š„ๅˆคๆ–ญ้€ป่พ‘ๅŠ็›ธๅ…ณ็š„ไบ‹ไปถ่งฆๅ‘
442
- - ้…็ฝฎ tool ๅ็งฐ้€š่ฟ‡ ็Ÿญๆจช็บฟ ้š”ๅผ€็š„ๆ–นๅผๅ‘ฝๅ๏ผŒ eg: text-edit-tool, multiple-select-tool
443
- - tool ๅขžๅŠ  disableTool ๅ’Œ enableTool ็š„ๆ–นๆณ•๏ผŒ็”จไบŽไบ’ๆ–ฅ Tool ๆณจๅ†Œๆ—ถ๏ผŒ็ฆ็”จๆމๅฆไธ€ไธช
444
- - ไผ˜ๅŒ– mediumEditor ็š„้…็ฝฎ้กนๅŠๅˆๅง‹ๅŒ–ๆต็จ‹ใ€‚็งป้™คๆ— ็”จ้…็ฝฎ้กน๏ผŒๅขžๅŠ ้ป˜่ฎคไธป้ข˜ๆ ทๅผ
445
- - ๅผ€ๅ‘ NextLabel ๆ’ไปถ๏ผŒๅ–ๅพ—้˜ถๆฎตๆ€ง่ƒœๅˆฉ
446
- - ็งป้™ค BaseNodeModel ไธญ useLabelText ็›ธๅ…ณ้€ป่พ‘
447
- - node:mousemove ไบ‹ไปถไธญๆŠ›ๅ‡บ deltaXใ€deltaY ๆ•ฐๆฎ
448
- - ่ฐƒๆ•ด Control ็š„่Œƒๅ›ดๅคงๅฐ๏ผŒ่งฃๅ†ณ่ฐƒๆ•ดๅคงๅฐๆ—ถ๏ผŒ้ผ ๆ ‡็ฆปๅผ€ๅŒบๅŸŸๅŽๅˆ‡ๆขๅ›ž้ป˜่ฎค้ผ ๆ ‡ๆ ทๅผ๏ผŒไฝ“้ชŒไธๅฅฝ
449
- - ่ฐƒๆ•ด NextLabel ไปฃ็ ้€ป่พ‘๏ผŒLabelModel ๅชๅšๆ•ฐๆฎ็š„ๅญ˜ๅ‚จ๏ผŒไธๅšๆ›ดๆ–ฐใ€‚็”จไบŽไผ ้€’ propsใ€‚ๅœจ Label ไธญ่งฆๅ‘
450
- - element ๆ•ฐๆฎๆ›ดๆ–ฐ๏ผŒLabelOverlay ๆธฒๆŸ“๏ผŒLabel ๆ›ดๆ–ฐ
451
- - ๅขžๅŠ  API๏ผŒupdateTextMode ๅฏๅˆ‡ๆข textMode ๅนถๆ›ดๆ–ฐ้กต้ข
452
-
453
- - ๅขžๅŠ ๅŒๅ‡ป่Š‚็‚น or ่พนๅขžๅŠ  Label ็š„ๅŠŸ่ƒฝ
454
-
455
- - ๅฏไผ ๅ…ฅ่ฎพ็ฝฎๆ ทๅผ ่ฎพ็ฝฎ label
456
- - ๅฏŒๆ–‡ๆœฌ็ผ–่พ‘ๅ†…ๅฎนๆ— ๆณ•ๅŒๆญฅๅˆฐ content ็š„้—ฎ้ข˜
457
- - ๅฆ‚ๆžœ properties ไธญๆฒกๆœ‰ \_label ้…็ฝฎ้กนๆ—ถ๏ผŒMediumEditor ๅˆๅง‹ๅŒ–ๆœ‰็‚น้—ฎ้ข˜๏ผŒ้€‰ไธญๆ–‡ๆœฌๆ— ๆณ•ๆ˜พ็คบๅทฅๅ…ทๆ 
458
- - ๆ›ดๆ–ฐๅฎŒLabel content ๅŽ๏ผŒLabel ๆ‹–ๆ‹ฝๆ— ๆ•ˆ็š„้—ฎ้ข˜๏ผˆisDragging state ๆ›ดๆ–ฐๆ—ถๆœบ้—ฎ้ข˜๏ผ‰
459
-
460
- - ๅฎŒๆˆ Label ๆบขๅ‡บๆจกๅผ้…็ฝฎ่ƒฝๅŠ›ๅผ€ๅ‘
461
- - ๅฐ† PluginsOptions ไธญๆ’ไปถๅฏนๅบ”็š„ๅฑžๆ€งๅ€ผ ๅฝ“ props ไผ ๅ…ฅๅˆฐๆ’ไปถ็š„ๅฎžไพ‹ๅŒ–ไธญ
462
- - label ็š„ textOverflowMode ๅขžๅŠ  'ellipsis' | 'wrap' | 'clip' | 'nowrap' | 'default' ้…็ฝฎ้กน
463
- - ๆ›ดๆ–ฐ Label dragging ๆ—ถ๏ผŒๅ…ผๅฎน็”ปๅธƒๅญ˜ๅœจ็ผฉๆ”พ็š„ๆƒ…ๅ†ต
464
- - ๅฎŒๆˆ Label ๅœจ่Š‚็‚นๆ—‹่ฝฌๆ—ถ๏ผŒไฟๆŒไฝ็ฝฎไธๅ˜๏ผŒไธ” Label ่‡ช่บซ่ทŸ้˜ถๆฎตๆ—‹่ฝฌ่ง’ๅบฆไฟๆŒไธ€่‡ด
465
- - ๅฎŒๆˆ่Š‚็‚น็ผฉๆ”พๆ—ถ๏ผŒLabel ไฟๆŒ็›ธๅฏนไฝ็ฝฎไธๅ˜
466
- - ๅขžๅŠ  labelWidth ้…็ฝฎ๏ผŒๅฏไปฅ็ปŸไธ€้กน็›ฎไธญ labelWidth ็š„ๅฎฝๅบฆ๏ผŒไนŸๅฏๅšๅ•็‹ฌไธชๆ€งๅŒ–้…็ฝฎ
467
- - ไผ˜ๅŒ– node:resize ไปฅๅŠ node:rotate ไบ‹ไปถๆŠ›ๅ‡บ็š„ๆ•ฐๆฎ
468
- - ็งป้™คๆˆ–ๆณจ้‡Š้กน็›ฎไธญๆ— ็”จ็š„ console
469
-
470
- - ็งปๆค Label ๅœจ่พนไธŠๅฎšไฝ ็š„็›ธๅ…ณไปฃ็ ๏ผŒๅœจ่ฐƒๆ•ด่Š‚็‚นๆ›ดๆ–ฐ่พนๆ—ถ๏ผŒไฟๆŒ Label ไฝ็ฝฎ
471
-
472
- - ๆ นๆฎ PR ๆ•ด็†ไปฃ็ ไธญ Text ๅ’Œ Label ็›ธๅ…ณ้€ป่พ‘๏ผŒ็งป้™คๆ— ๆ•ˆไปฃ็ 
473
- - next-label ไธญๅขžๅŠ  Edge ่ฎก็ฎ—็›ธๅ…ณ็š„้€ป่พ‘
474
-
475
- - ๅŒๆญฅ่Š‚็‚น็š„ zIndex ๅˆฐ Label ไธŠ๏ผŒ่ฟ‡ๆปคๆމ text ไธบ็ฉบๆ—ถ็š„ Label
476
- - ไฟฎๅค rangy.createClassApplier is not a function ็š„้”™่ฏฏ
477
- - ไฟฎๅค isMultiple ๅฏนไบŽๅŒๅ‡ป่Š‚็‚นๆˆ–่พนๅขžๅŠ  label ๆ— ๆ•ˆ็š„ bug
478
-
479
- - ่ฐƒๆ•ดcoreๅŒ…toolๆ–‡ไปถๅคน
480
-
481
- - ๅฐ† snapline ็งปๅ‡บ tool ๆ–‡ไปถๅคน๏ผŒๅ› ไธบๅฎƒๆœฌ่บซ้ž tool๏ผŒๆ”พ่ฟ™้‡Œ้ขไผšๆœ‰่ฏฏๅฏผ
482
- - ไผ˜ๅŒ– tool ๆ–‡ไปถๅคน๏ผŒๅฐ† tool ๅ†…ๅฎน็งป่‡ณ index ไธญ๏ผŒๅนถๆ›ดๆ–ฐ้กน็›ฎไธญ็›ธๅ…ณๅฏผๅ…ฅ
483
-
484
- - ๆ–ฐๅขž adjustEdgeStart ๅ’Œ adjustEdgeEnd๏ผŒๅฏๅ•็‹ฌๆŽงๅˆถ่ฐƒๆ•ด่ตทๅง‹็‚นๆˆ–็ป“ๆŸ็‚น
485
-
486
- - ๆ”ฏๆŒcmd - ้ผ ๆ ‡ๆปšๅŠจๆ“ไฝœๆ”พๅคง็ผฉๅฐ็”ปๅธƒ
487
- - ่Š‚็‚นๆ–‡ๆœฌๆ”ฏๆ ทๅผๆŒ้€š่ฟ‡propertiesไผ ๅ…ฅtextStylele้…็ฝฎ
488
-
489
- - ้‡ๆž„ core ๅŒ…ไธญ properties ็ฑปๅž‹ๅฎšไน‰๏ผŒ้€š่ฟ‡ๆณ›ๅž‹็š„ๆ–นๅผ็บฆๆŸๅ…ถ็ฑปๅž‹
490
-
491
- - ไฟฎๅค node-selection ไธญ properties ๆœชๅฎšไน‰็ฑปๅž‹ๅฏผ่‡ด็š„ๆŠฅ้”™
492
-
493
- - ๅ‡็บง group ๆ’ไปถไธบ dynamic-group ๆ’ไปถ
494
-
495
- - ๅฎŒๆˆ dynamic-group ๆ’ไปถ isCollased ๅˆๅง‹ๅŒ–ๅŠgroupAddable ็Šถๆ€ๅณๆ—ถๆ›ดๆ–ฐ
496
- - ไผ˜ๅŒ– editConfigModel ไธญๅฑžๆ€ง็š„ๅˆๅง‹ๅŒ–้€ป่พ‘ๅŠๅ…ถๅˆๅง‹ๅŒ–ๅ€ผ่ฐƒๆ•ด
497
- - ่ฐƒๅฐ ResizeControl ็š„่Œƒๅ›ด 30 -> 15๏ผŒๅŽŸๅ› ๆ˜ฏไผš็›–ไฝ Group ๆŠ˜ๅ ็š„ๅฐๆŒ‰้’ฎ
498
- - ไผ˜ๅŒ–ๅ…่ฎธๆ–‡ๆœฌๆ‹–ๅŠจ็š„้€ป่พ‘ๅˆคๆ–ญ -> nodeTextDraggable && draggable ๆ‰ๅฏไปฅๅ…่ฎธๆ‹–ๅŠจ
499
-
500
- - ๅผ€ๅ‘่Š‚็‚น็ผฉๆ”พๆ—‹่ฝฌๆ—ถ๏ผŒๅŒๆญฅ็ผฉๆ”พ or ๆ—‹่ฝฌ่Š‚็‚นๅ†…้ƒจๅ…ƒ็ด ๅŠŸ่ƒฝ
501
-
502
- - ๅฎŒๅ–„ node:resize ๅŠ node:rotate ไบ‹ไปถๆŠ›ๅ‡บ็š„ๆ•ฐๆฎ
503
- - ๅฐ† Control ไธญ resize ็›ธๅ…ณ็š„ๆ–นๆณ•ๆๅ–ๅˆฐ utils/resize.ts ไธญ๏ผŒๆ–นไพฟๅœจๆ’ไปถไธญ็›ดๆŽฅ่ฐƒ็”จ
504
- - ๅœจ group ็ป„ไปถไธญ็›‘ๅฌ node:resize ๅ’Œ node:rotate ไบ‹ไปถ๏ผŒๅฎŒๆˆๅฏนๅญๅ…ƒ็ด ็š„ๆ›ดๆ–ฐ
505
-
506
- - ๆต‹่ฏ• SelectionSelct ไธŽ DynamicGroup ไธๅ…ผๅฎน็š„้—ฎ้ข˜ๅนถไฟฎๅค
507
-
508
- - ่พนๆ”ฏๆŒไผ ๅ…ฅ่‡ชๅฎšไน‰ๆ ทๅผ
509
- - ไผ˜ๅŒ–้ซ˜ไบฎๆ’ไปถๅŠŸ่ƒฝ
510
- - **Breaking Change**่ฐƒๆ•ด pluginOptions ๅชไผ ๅ…ฅๆ’ไปถๅฏนๅบ”็š„ options ๆ•ฐๆฎ๏ผˆไน‹ๅ‰ๆ˜ฏๅ…จ้‡ไผ ๅ…ฅ๏ผ‰
511
-
512
- All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
513
-
514
- ## [1.2.28](https://github.com/didi/LogicFlow/compare/@logicflow/core@1.2.24...@logicflow/core@1.2.28) (2024-07-29)
515
-
516
- ### Bug Fixes
517
-
518
- - **core:** snap the text pos of cloneNode to grid([#1545](https://github.com/didi/LogicFlow/issues/1545)) ([dc661bd](https://github.com/didi/LogicFlow/commit/dc661bd1a01c740eb886da8a98142d02dacced2d))
519
- - error when diamondNode's edge is dragging ([4978bf1](https://github.com/didi/LogicFlow/commit/4978bf12fde753b731a03341cc9b3c63253fcbaa))
520
- - optimize the experience of resizeNode ([135a8e3](https://github.com/didi/LogicFlow/commit/135a8e3385799c3c9c98634ad0fecb0532377001))
521
- - ไฟฎๅคไฝฟ็”จๆก†้€‰ๆ’ไปถไผš้˜ปๅกž้กต้ขๆปš่ฝฎไบ‹ไปถ้—ฎ้ข˜ ([5266822](https://github.com/didi/LogicFlow/commit/52668221b1570606efa6caace2f6f7ae4d2bf935))
522
- - ๆ›ดๆ–ฐreadme logo & publish 1.2.25 ([4da3db7](https://github.com/didi/LogicFlow/commit/4da3db7aebc892e685269340ca38a0b9a4f68c56))
523
- - ๆก†้€‰ๆ‹–ๅŠจๆŠ˜็บฟๆ—ถๆ›ดๆ–ฐ่ตท็ปˆ็‚นไฝ็ฝฎ ([27ca25b](https://github.com/didi/LogicFlow/commit/27ca25b02014e9b8f742702b70c0389687a6f4d5))
524
-
525
- ## [1.2.27](https://github.com/didi/LogicFlow/compare/@logicflow/core@1.2.24...@logicflow/core@1.2.27) (2024-05-06)
526
-
527
- ### Bug Fixes
528
-
529
- - **core:** snap the text pos of cloneNode to grid([#1545](https://github.com/didi/LogicFlow/issues/1545)) ([dc661bd](https://github.com/didi/LogicFlow/commit/dc661bd1a01c740eb886da8a98142d02dacced2d))
530
- - error when diamondNode's edge is dragging ([4978bf1](https://github.com/didi/LogicFlow/commit/4978bf12fde753b731a03341cc9b3c63253fcbaa))
531
- - optimize the experience of resizeNode ([135a8e3](https://github.com/didi/LogicFlow/commit/135a8e3385799c3c9c98634ad0fecb0532377001))
532
- - ๆ›ดๆ–ฐreadme logo & publish 1.2.25 ([4da3db7](https://github.com/didi/LogicFlow/commit/4da3db7aebc892e685269340ca38a0b9a4f68c56))
533
- - ๆก†้€‰ๆ‹–ๅŠจๆŠ˜็บฟๆ—ถๆ›ดๆ–ฐ่ตท็ปˆ็‚นไฝ็ฝฎ ([27ca25b](https://github.com/didi/LogicFlow/commit/27ca25b02014e9b8f742702b70c0389687a6f4d5))
534
-
535
- ## [1.2.26](https://github.com/didi/LogicFlow/compare/@logicflow/core@1.2.24...@logicflow/core@1.2.26) (2024-04-10)
536
-
537
- ### Bug Fixes
538
-
539
- - **core:** snap the text pos of cloneNode to grid([#1545](https://github.com/didi/LogicFlow/issues/1545)) ([dc661bd](https://github.com/didi/LogicFlow/commit/dc661bd1a01c740eb886da8a98142d02dacced2d))
540
- - ๆ›ดๆ–ฐreadme logo & publish 1.2.25 ([4da3db7](https://github.com/didi/LogicFlow/commit/4da3db7aebc892e685269340ca38a0b9a4f68c56))
541
- - ๆก†้€‰ๆ‹–ๅŠจๆŠ˜็บฟๆ—ถๆ›ดๆ–ฐ่ตท็ปˆ็‚นไฝ็ฝฎ ([27ca25b](https://github.com/didi/LogicFlow/commit/27ca25b02014e9b8f742702b70c0389687a6f4d5))
542
-
543
- ## [1.2.25](https://github.com/didi/LogicFlow/compare/@logicflow/core@1.2.24...@logicflow/core@1.2.25) (2024-04-03)
544
-
545
- ### Bug Fixes
546
-
547
- - ๆก†้€‰ๆ‹–ๅŠจๆŠ˜็บฟๆ—ถๆ›ดๆ–ฐ่ตท็ปˆ็‚นไฝ็ฝฎ ([ad3afe1](https://github.com/didi/LogicFlow/commit/ad3afe1b3de4c30e9acd5d19ea49d0cb7f04cfd1))
548
-
549
- ## [1.2.24](https://github.com/didi/LogicFlow/compare/@logicflow/core@1.2.23...@logicflow/core@1.2.24) (2024-04-03)
550
-
551
- ### Bug Fixes
552
-
553
- - ไฟฎๅคnuxtไฝฟ็”จๆŠฅ้”™ ([f8f7da9](https://github.com/didi/LogicFlow/commit/f8f7da9f87a0239eea7913a7c979a54940d6bd91))
554
- - ไฟฎๅค้€‰ๅŒบๆ’ไปถๆ— ๆณ•่งฆๅ‘้ผ ๆ ‡ไบ‹ไปถ็š„้—ฎ้ข˜๏ผŒๅŒๆ—ถๅ…ผๅฎน Ctrl + ๆปš่ฝฎไบ‹ไปถ ([129f101](https://github.com/didi/LogicFlow/commit/129f101faf2c3aae3d25917eb68ccabadbb93ec3))
555
- - ้”š็‚น่ฟž็บฟๅคฑ่ดฅๅขžๅŠ ้ป˜่ฎค้”™่ฏฏๆ็คบ ([05ed811](https://github.com/didi/LogicFlow/commit/05ed811591bee08951a404c70b44acd0f0a39643))
556
-
557
- ## [1.2.23](https://github.com/didi/LogicFlow/compare/@logicflow/core@1.2.22...@logicflow/core@1.2.23) (2024-03-20)
558
-
559
- ### Bug Fixes
560
-
561
- - ไผ˜ๅŒ–ไปฃ็  ([10d311d](https://github.com/didi/LogicFlow/commit/10d311db4a816784bafe4266737d5af656716b6b))
562
- - ๅขžๅŠ ่Žทๅ–้”š็‚นๅ…ณ่”่พน็š„่ƒฝๅŠ›&ไฟฎๅค่พน็š„่ตท็ปˆ็‚น็งปๅŠจๆ—ถๆŠฅ้”™้—ฎ้ข˜ ([543fff7](https://github.com/didi/LogicFlow/commit/543fff7c0a14ebe5b3b5ebf1c5df773c7e6a0dc5))
563
-
564
- ### Features
565
-
566
- - ่‡ชๅฎšไน‰่ฟž็บฟๆ”ฏๆŒๆŒ‡ๅฎš้”š็‚น ([d344d38](https://github.com/didi/LogicFlow/commit/d344d3801cbb0bcbcf699c0bf91e661c55d67890))
567
-
568
- ## [1.2.22](https://github.com/didi/LogicFlow/compare/@logicflow/core@1.2.19...@logicflow/core@1.2.22) (2024-02-05)
569
-
570
- ### Features
571
-
572
- - update @logicflow/core @logicflow/extension version to 1.2.21 ([55b865b](https://github.com/didi/LogicFlow/commit/55b865b381354a75b04d339fec2f10b34cd12738))
573
-
574
- ## [1.2.19](https://github.com/didi/LogicFlow/compare/@logicflow/core@1.2.18...@logicflow/core@1.2.19) (2024-02-05)
575
-
576
- ### Bug Fixes
577
-
578
- - **core:** types build error ([fb4bb27](https://github.com/didi/LogicFlow/commit/fb4bb27602ca4cb9bd0f085a7421dbfa6049e18e))
579
- - ไฟฎๅคstopMoveGraphไปŽtrue็ฝฎไธบfalseๅŽ็”ปๅธƒไปๆ— ๆณ•็งปๅŠจ้—ฎ้ข˜ ([37b5c4a](https://github.com/didi/LogicFlow/commit/37b5c4aced4cfb66040f563316c4206b5d26716f))
580
- - ไฟฎๅค้™้ป˜ๆจกๅผๅˆ‡ๆขๅŽๅฟซๆท้”ฎๅ’Œๆ‹–ๆ‹ฝ่Š‚็‚น็Šถๆ€ไธๆ›ดๆ–ฐ้—ฎ้ข˜ ([#1491](https://github.com/didi/LogicFlow/issues/1491)) ([926f33e](https://github.com/didi/LogicFlow/commit/926f33e3f79ca148c00723c627d209f21f38fc25))
581
-
582
- ### Features
583
-
584
- - **core:** add test for core ([6780155](https://github.com/didi/LogicFlow/commit/67801556fc104a3e77c70f7016a56dbe17f52185))
585
-
586
- ## [1.2.18](https://github.com/didi/LogicFlow/compare/@logicflow/core@1.2.17...@logicflow/core@1.2.18) (2023-11-22)
587
-
588
- ### Bug Fixes
589
-
590
- - **core:** anchorId missed after point adjusting([#1365](https://github.com/didi/LogicFlow/issues/1365)) ([d7778cc](https://github.com/didi/LogicFlow/commit/d7778cc7632b3cd60afadc18a47c4df60b23a587))
591
- - **core:** fix Cannot read property 'document' of undefined bug([#1433](https://github.com/didi/LogicFlow/issues/1433)) ([9e1a2c9](https://github.com/didi/LogicFlow/commit/9e1a2c957adb01610544da3ff09eef607d7c51f2))
592
- - **core:** rename textInput ([1681484](https://github.com/didi/LogicFlow/commit/1681484bcef0ae8a7fb5d54e6cefcc45d6020f8e))
593
- - **core:** zIndex problem in overlapMode([#1395](https://github.com/didi/LogicFlow/issues/1395)) ([ae41283](https://github.com/didi/LogicFlow/commit/ae412831c16b7c07e502852b0c00baa2b6d685db))
594
- - **core:** ไฟฎๅค overflowMode ไธบ autoWrap ๆ—ถ๏ผŒ่Š‚็‚น่ฎพ็ฝฎ textWidth ๆ— ๆ•ˆ็š„ bug([#1432](https://github.com/didi/LogicFlow/issues/1432)) ([fa1cbc7](https://github.com/didi/LogicFlow/commit/fa1cbc7a4e2a4bb12b8c34997aaedd6f9bc552be))
595
- - prevent node without anchors using InsertNodeInPolyline([#1077](https://github.com/didi/LogicFlow/issues/1077)) ([6e10d3a](https://github.com/didi/LogicFlow/commit/6e10d3ad6e5b26daa6cad865bbca0eb326dfd54b))
596
-
597
- ### Features
598
-
599
- - **core:** enable lf-text-input style setting([#1390](https://github.com/didi/LogicFlow/issues/1390)) ([8a8a0f9](https://github.com/didi/LogicFlow/commit/8a8a0f937e4428c0a811b4cc8102c03fec568653))
600
-
601
- ## [1.2.17](https://github.com/didi/LogicFlow/compare/@logicflow/core@1.2.16...@logicflow/core@1.2.17) (2023-10-25)
602
-
603
- ### Bug Fixes
604
-
605
- - **core:** refresh the value of model when mouse down([#1370](https://github.com/didi/LogicFlow/issues/1370)) ([1cb45dd](https://github.com/didi/LogicFlow/commit/1cb45ddbbfdc0a0c8fd9e427d9a8dad0ad51eda9))
606
- - **core:** use mobx reaction to track the value of stepDrag.model([#1370](https://github.com/didi/LogicFlow/issues/1370)) ([a1e3bc3](https://github.com/didi/LogicFlow/commit/a1e3bc3294b49edea4f1ac41886db6f3e1f3b45b))
607
-
608
- ## [1.2.16](https://github.com/didi/LogicFlow/compare/@logicflow/core@1.2.15...@logicflow/core@1.2.16) (2023-10-19)
609
-
610
- ### Bug Fixes
611
-
612
- - add edge copying when copying a group([#1346](https://github.com/didi/LogicFlow/issues/1346)) ([f53ec7f](https://github.com/didi/LogicFlow/commit/f53ec7f8eea1b9e1357e3dc21d509695e857bb3b))
613
- - **core:** filter NaN cases in getVirtualRectSize ([045e80b](https://github.com/didi/LogicFlow/commit/045e80beba32d14efae4c32ae215b5eb1fde096c))
614
- - **core:** restore rotation ([2748c17](https://github.com/didi/LogicFlow/commit/2748c177660e9b0849631750a1a68af50dd96781))
615
- - **extension:** bug of menu initialization ([#1359](https://github.com/didi/LogicFlow/issues/1359)) ([fabd8d7](https://github.com/didi/LogicFlow/commit/fabd8d74cf998e6118499d3ddc49841ad5411480))
616
-
617
- ### Features
618
-
619
- - anchor dragendไบ‹ไปถๅ‚ๆ•ฐๅขžๅŠ edgeModel ([7b8a0ab](https://github.com/didi/LogicFlow/commit/7b8a0ab8045457ec212322a1d0e1dc265fb87954))
620
- - **core:** implement custom path for connecting ([492a412](https://github.com/didi/LogicFlow/commit/492a41201faaaee84b3b0ae734763b4d5e4a2a37))
621
- - **extension:** override addElements to support group-node copy([#1346](https://github.com/didi/LogicFlow/issues/1346)) ([e9d0139](https://github.com/didi/LogicFlow/commit/e9d0139da4446ec4451ba7c2516a1e440a951fec))
622
-
623
- ## [1.2.15](https://github.com/didi/LogicFlow/compare/@logicflow/core@1.2.14...@logicflow/core@1.2.15) (2023-09-21)
624
-
625
- ### Bug Fixes
626
-
627
- - **core:** wrong extreme value of draggable range ([46c3ce9](https://github.com/didi/LogicFlow/commit/46c3ce9e238cc849025792dcd9083431fcf61a81))
628
-
629
- ### Features
630
-
631
- - **core:** add draggable range for graph([#1337](https://github.com/didi/LogicFlow/issues/1337)) ([ecc59bc](https://github.com/didi/LogicFlow/commit/ecc59bccb07e23fbe11986d5b38f5a5e99f4b4f1))
632
-
633
- ## [1.2.14](https://github.com/didi/LogicFlow/compare/@logicflow/core@1.2.13...@logicflow/core@1.2.14) (2023-09-11)
634
-
635
- ### Features
636
-
637
- - **core:** enable node rotation ([267ebc8](https://github.com/didi/LogicFlow/commit/267ebc8ff65f461c831fc631b89028ca98305858))
638
- - **core:** optimize the using of matrix ([d13fc5c](https://github.com/didi/LogicFlow/commit/d13fc5c50dcc25727ca8646ea1afe9a250d444d5))
639
- - **core:** trigger edge:adjust when adjusting bezier([#947](https://github.com/didi/LogicFlow/issues/947)) ([ad993c4](https://github.com/didi/LogicFlow/commit/ad993c448c004623e32f9534b3971cdf9d8e47bd))
640
-
641
- ## [1.2.13](https://github.com/didi/LogicFlow/compare/@logicflow/core@1.2.12...@logicflow/core@1.2.13) (2023-09-08)
642
-
643
- ### Features
644
-
645
- - **core:** add a new function to set outer g attributes.([#880](https://github.com/didi/LogicFlow/issues/880)) ([90aaccd](https://github.com/didi/LogicFlow/commit/90aaccdb87309b4cdad2691ed425cb16732d746c))
646
- - **core:** export egde utils and sampling utils ([9a83d4a](https://github.com/didi/LogicFlow/commit/9a83d4a360c8a113bce46370aecac8e0a2ffb6ea))
647
-
648
- ## [1.2.12](https://github.com/didi/LogicFlow/compare/@logicflow/core@1.2.11...@logicflow/core@1.2.12) (2023-08-16)
649
-
650
- ### Bug Fixes
651
-
652
- - add a symbol to distinguish plugin registration method ([1e0a40a](https://github.com/didi/LogicFlow/commit/1e0a40a94f4f6ebeb584445c48dd10b13ee7504f))
653
-
654
- ### Features
655
-
656
- - optimize BPMNAdapter; add input props when register plugin ([4e9a90e](https://github.com/didi/LogicFlow/commit/4e9a90ea2abedee1456119edf0f0c9164e8cc116))
657
-
658
- ## [1.2.11](https://github.com/didi/LogicFlow/compare/@logicflow/core@1.2.10...@logicflow/core@1.2.11) (2023-08-10)
659
-
660
- ### Bug Fixes
661
-
662
- - **core:** improve the appearance of Bezier curve arrows.([#951](https://github.com/didi/LogicFlow/issues/951)) ([d631e74](https://github.com/didi/LogicFlow/commit/d631e74bd06bbe4d6e749e2563ef5de2bb760a8b))
663
-
664
- ### Features
665
-
666
- - create logicflow eninge ([c7d80f4](https://github.com/didi/LogicFlow/commit/c7d80f4b4c19cf82af9be49dd8fd44433327db58))
667
-
668
- ## [1.2.10](https://github.com/didi/LogicFlow/compare/@logicflow/core@1.2.9...@logicflow/core@1.2.10) (2023-07-17)
669
-
670
- **Note:** Version bump only for package @logicflow/core
671
-
672
- ## [1.2.9](https://github.com/didi/LogicFlow/compare/@logicflow/core@1.2.8...@logicflow/core@1.2.9) (2023-06-21)
673
-
674
- ### Bug Fixes
675
-
676
- - **core:** compute the first point direction of the rectangular polyline using the original width and height([#817](https://github.com/didi/LogicFlow/issues/817)) ([7a0a8ee](https://github.com/didi/LogicFlow/commit/7a0a8eedd24bc0aabb742c54c8e9671ccfd270a6))
677
- - **core:** fix the background width of the text on the side is not displayed correctly in ellipsis mode([#1151](https://github.com/didi/LogicFlow/issues/1151)) ([b1e0380](https://github.com/didi/LogicFlow/commit/b1e03806b5d3d4156ac601a6c318639141768d9f))
678
- - **core:** moveNodes() add the logic of the moveNode function to calculate the moving distance of the side text ([a89b630](https://github.com/didi/LogicFlow/commit/a89b6301a2355f7ced957d446721a697259b68c0))
679
- - **core:** prevent isSilentMode=true from calling repeatedly([#1180](https://github.com/didi/LogicFlow/issues/1180)) ([d8a8f5a](https://github.com/didi/LogicFlow/commit/d8a8f5a18b237d994256dc6acc09daef281ca595))
680
-
681
- ## [1.2.8](https://github.com/didi/LogicFlow/compare/@logicflow/core@1.2.6...@logicflow/core@1.2.8) (2023-05-30)
682
-
683
- ### Bug Fixes
684
-
685
- - adjust edge cause text error when delete connected node ([9e0ac91](https://github.com/didi/LogicFlow/commit/9e0ac916ff0e932d7a03b3ca165a76c49453926a))
686
- - fix the issue of getStartArrow not working.(didi[#1167](https://github.com/didi/LogicFlow/issues/1167)) ([691ed40](https://github.com/didi/LogicFlow/commit/691ed40465d3e3a0dfedc06064dd8df6f7c03e06))
687
- - node:dnd-add event throwing parameter add mouse:event([#1170](https://github.com/didi/LogicFlow/issues/1170)) ([0b9f22d](https://github.com/didi/LogicFlow/commit/0b9f22d67a43eb396bb7a2ce0e0d04d2a44cb05f))
688
- - remove unnecessary code ([e819c62](https://github.com/didi/LogicFlow/commit/e819c62628d361ed8be13f28755ce5122d2f7d3d))
689
-
690
- ## [1.2.6](https://github.com/didi/LogicFlow/compare/@logicflow/core@1.2.5...@logicflow/core@1.2.6) (2023-05-13)
691
-
692
- ### Bug Fixes
693
-
694
- - add input of convertLf2ProcessData ([a13ef07](https://github.com/didi/LogicFlow/commit/a13ef07023d7dc72f901193596de1a0e6332f376))
695
- - add optional input of adpaterOut in class LogicFlow ([ff0f23e](https://github.com/didi/LogicFlow/commit/ff0f23edeef5436bad1e16cceb2c7c0698be3e06))
696
- - keep use JSON.parse format input data.([#1153](https://github.com/didi/LogicFlow/issues/1153)) ([684a581](https://github.com/didi/LogicFlow/commit/684a5812eddc0c108a2f5c88ea971889f9371e22))
697
- - ๅค„็†ๆฒกๆœ‰ๆ–‡ๆœฌ้ผ ๆ ‡hoverๆŠฅ้”™็š„้—ฎ้ข˜ ([7b174f8](https://github.com/didi/LogicFlow/commit/7b174f8d717ff6077572e3527cb50348bed1f93d))
698
-
699
- ### Features
700
-
701
- - support undefined as render param ([3577a15](https://github.com/didi/LogicFlow/commit/3577a15c109f4637dd2c8d4b6a35a155dc092fea))
702
-
703
- ## [1.2.5](https://github.com/didi/LogicFlow/compare/@logicflow/core@1.2.3...@logicflow/core@1.2.5) (2023-05-03)
704
-
705
- ### Bug Fixes
706
-
707
- - add new id to nodesMap in changeNodeId api ([8c4fee6](https://github.com/didi/LogicFlow/commit/8c4fee6751cc9113a27497aeaddc8400cc560c89))
708
- - can not edit text when delete all text([#1067](https://github.com/didi/LogicFlow/issues/1067)) ([b01e4b9](https://github.com/didi/LogicFlow/commit/b01e4b92d8fd0d8f252c6dd81ca2d590821d591a))
709
- - destory keyboard events while destoty LogicFlow.([#1110](https://github.com/didi/LogicFlow/issues/1110)) ([98e749c](https://github.com/didi/LogicFlow/commit/98e749c9c7849ea3f046705ac4fcb4b60d251629))
710
- - fix ts's type bug ([93146ae](https://github.com/didi/LogicFlow/commit/93146aeb976ad4a5e849957c971dfefbcf17c44e))
711
- - folded icon not working when overflowMode is set to ellipsis([#1099](https://github.com/didi/LogicFlow/issues/1099)) ([cc82b6d](https://github.com/didi/LogicFlow/commit/cc82b6d6762e377ba15293e9a59bc50bc584cdf4))
712
- - getNodeDataById error handing for incorrect nodeId parameter ([8d74393](https://github.com/didi/LogicFlow/commit/8d74393f6c39bc23c4df29a8d6e69c33afdba26f))
713
- - isolate mobx ([ff6c24f](https://github.com/didi/LogicFlow/commit/ff6c24ff838bafa5196e9d1046049984d9c120a7))
714
- - observable object cannot appear twice([#837](https://github.com/didi/LogicFlow/issues/837)) ([16f338f](https://github.com/didi/LogicFlow/commit/16f338fe8df7a1cce546f5f5fa07b90864b902f4))
715
- - set orient to auto while start point and end point is null ([3d55703](https://github.com/didi/LogicFlow/commit/3d55703ec46e7986e9a9968e65a50849d51d1ff0))
716
-
717
- ### Features
718
-
719
- - optimize the local development process ([1e188be](https://github.com/didi/LogicFlow/commit/1e188be57f59bb35ee90740ae5b0a835e29e7d0a))
720
- - support move selected nodes when disabled multipleSelect.([#894](https://github.com/didi/LogicFlow/issues/894)) ([5a97bcc](https://github.com/didi/LogicFlow/commit/5a97bcc098a15a472b0d63d62c6396cd3f8b05dd))
721
- - the end marker of cubic bezier curve with light deflection ([cca4040](https://github.com/didi/LogicFlow/commit/cca4040d47b9fd7434308101b7533f428aeb1150))
722
- - use deepclone instead of json parse([#304](https://github.com/didi/LogicFlow/issues/304)) ([502abde](https://github.com/didi/LogicFlow/commit/502abde9155c692f95e0de9c8e9171806de29701))
723
-
724
- ## [1.2.4](https://github.com/didi/LogicFlow/compare/@logicflow/core@1.2.3...@logicflow/core@1.2.4) (2023-04-10)
725
-
726
- ### Bug Fixes
727
-
728
- - observable object cannot appear twice([#837](https://github.com/didi/LogicFlow/issues/837)) ([16f338f](https://github.com/didi/LogicFlow/commit/16f338fe8df7a1cce546f5f5fa07b90864b902f4))
729
-
730
- ### Features
731
-
732
- - optimize the local development process ([1e188be](https://github.com/didi/LogicFlow/commit/1e188be57f59bb35ee90740ae5b0a835e29e7d0a))
733
- - use deepclone instead of json parse([#304](https://github.com/didi/LogicFlow/issues/304)) ([502abde](https://github.com/didi/LogicFlow/commit/502abde9155c692f95e0de9c8e9171806de29701))
734
-
735
- ## [1.2.3](https://github.com/didi/LogicFlow/compare/@logicflow/core@1.2.2...@logicflow/core@1.2.3) (2023-03-25)
736
-
737
- ### Bug Fixes
738
-
739
- - update edge path while move nodes([#1027](https://github.com/didi/LogicFlow/issues/1027)) ([9179b62](https://github.com/didi/LogicFlow/commit/9179b621018c51f60f5f12458cd1c487e50b4d63))
740
-
741
- ## [1.2.2](https://github.com/didi/LogicFlow/compare/@logicflow/core@1.2.0...@logicflow/core@1.2.2) (2023-03-25)
742
-
743
- ### Bug Fixes
744
-
745
- - keep the default browser reaction.([#1046](https://github.com/didi/LogicFlow/issues/1046)) ([533f747](https://github.com/didi/LogicFlow/commit/533f7477eccd2c48290d7550ad17f5487eca21e6))
746
- - remove shape attributes from theme types.([#1052](https://github.com/didi/LogicFlow/issues/1052)) ([5a315a2](https://github.com/didi/LogicFlow/commit/5a315a2bfbe3a43ecdc2d558da1c3695a32ab342))
747
- - update logicflow site url ([8774efe](https://github.com/didi/LogicFlow/commit/8774efe5eb8411819e1a44f8c4698111f6fb6ea5))
748
-
749
- ## [1.2.1](https://github.com/didi/LogicFlow/compare/@logicflow/core@1.2.0...@logicflow/core@1.2.1) (2023-03-14)
750
-
751
- **Note:** Version bump only for package @logicflow/core
752
-
753
- # [1.2.0](https://github.com/didi/LogicFlow/compare/@logicflow/core@1.2.0-next.5...@logicflow/core@1.2.0) (2023-03-13)
754
-
755
- ### Bug Fixes
756
-
757
- - trigger extension render in difference env ([9be1f58](https://github.com/didi/LogicFlow/commit/9be1f58a3768fd48117e1143939c8a92f61191dc))
758
-
759
- # [1.2.0-next.5](https://github.com/didi/LogicFlow/compare/@logicflow/core@1.2.0-next.4...@logicflow/core@1.2.0-next.5) (2023-03-10)
760
-
761
- ### Bug Fixes
762
-
763
- - compatiable witch React.StrictMode ([7da8266](https://github.com/didi/LogicFlow/commit/7da82668f2179b0be19fc9c425dd3bbcc15efd7f))
764
- - ไฟฎๅคgetDataๆ—ถๅ‡บ็ŽฐๆŠฅ้”™็š„ๆƒ…ๅ†ต ([12cbb06](https://github.com/didi/LogicFlow/commit/12cbb06ef3e45e76ea70a3d8128df66f5e47cd56))
765
- - ไฟฎๅคๅˆๅง‹ๅŒ–่Š‚็‚น็š„ๆ—ถๅ€™ไธไผ ๅ…ฅidๅฏผ่‡ด็ฎญๅคดไธๆ˜พ็คบ็š„้—ฎ้ข˜ ([dfff4cd](https://github.com/didi/LogicFlow/commit/dfff4cd1cf466ae881d297ed9785ef59ad65619a))
766
-
767
- # [1.2.0-next.4](https://github.com/didi/LogicFlow/compare/@logicflow/core@1.2.0-next.3...@logicflow/core@1.2.0-next.4) (2023-02-22)
768
-
769
- **Note:** Version bump only for package @logicflow/core
770
-
771
- # [1.2.0-next.3](https://github.com/didi/LogicFlow/compare/@logicflow/core@1.2.0-next.2...@logicflow/core@1.2.0-next.3) (2023-02-13)
772
-
773
- ### Bug Fixes
774
-
775
- - ไฟฎๅค่พน็š„isHoverdๅคฑๆ•ˆ้—ฎ้ข˜ ([0ebd6b6](https://github.com/didi/LogicFlow/commit/0ebd6b6218fc3225b918c2cb657d89b933537a75))
776
-
777
- # [1.2.0-next.2](https://github.com/didi/LogicFlow/compare/@logicflow/core@1.1.31...@logicflow/core@1.2.0-next.2) (2023-01-13)
778
-
779
- ### Bug Fixes
780
-
781
- - getEndAnchor ([0f4e843](https://github.com/didi/LogicFlow/commit/0f4e843370351014a817b2dc07f9e8e6af581921))
782
- - twoPointDistanceๆ— ๆณ•่Žทๅ–targetๅ‚ๆ•ฐ ([c760a29](https://github.com/didi/LogicFlow/commit/c760a29abfe2acd76a6f276976451cc827215e95))
783
- - typos ([ee9f3cd](https://github.com/didi/LogicFlow/commit/ee9f3cd40a819b13887938bf5e6018f77e575917))
784
-
785
- ### Features
786
-
787
- - Modify the addNode event type ([122f42c](https://github.com/didi/LogicFlow/commit/122f42c06af5038e250418e5be6b65805050b902))
788
- - node modelๅขžๅŠ getTaretAnchorๆ–นๆณ•่Žทๅ–ๆ‰‹ๅŠจ่ฟžๆŽฅ่พนๅˆฐ่Š‚็‚นๆ—ถ้œ€่ฆ่ฟžๆŽฅ็š„้”š็‚น(้ป˜่ฎค่ฟ”ๅ›ž่ท็ฆป็›ฎๆ ‡ไฝ็ฝฎๆœ€่ฟ‘็š„้”š็‚น) ([dfa0421](https://github.com/didi/LogicFlow/commit/dfa04212f6fe0bc5d8b3adfcb90827c1a770a336))
789
- - ๅขžๅŠ ๆœฌๆ–‡ๆบขๅ‡บ็œ็•ฅๆ—ถ้ผ ๆ ‡็งปๅŠจๅˆฐๆ–‡ๆœฌtipๆ˜พ็คบๅ…จๆ–‡ ([f14897a](https://github.com/didi/LogicFlow/commit/f14897a076c5ef75f1a7e9f05746bb44f75e92d0))
790
- - **core&extension:** add pluginOptions attribute on lf instance ([47cd816](https://github.com/didi/LogicFlow/commit/47cd81647532a724456b191d0050f87e833cb968))
791
-
792
- ## [1.1.31](https://github.com/didi/LogicFlow/compare/@logicflow/core@1.1.30...@logicflow/core@1.1.31) (2022-11-12)
793
-
794
- # [1.2.0-next.1](https://github.com/didi/LogicFlow/compare/@logicflow/core@1.2.0-next.0...@logicflow/core@1.2.0-next.1) (2022-10-10)
795
-
796
- ### Features
797
-
798
- - separate select and setZindex behavior ([53d0293](https://github.com/didi/LogicFlow/commit/53d029317eea3161d63f4837ddea66b845a8e274))
799
-
800
- # [1.2.0-next.0](https://github.com/didi/LogicFlow/compare/@logicflow/core@1.1.29...@logicflow/core@1.2.0-next.0) (2022-09-29)
801
-
802
- ### Bug Fixes
803
-
804
- - **core:** fix the arrow position and getArrow type,fixes [#851](https://github.com/didi/LogicFlow/issues/851) ([10eebe2](https://github.com/didi/LogicFlow/commit/10eebe2cba13c308c4e4a411c4561e58446723ea))
805
-
806
- ### Features
807
-
808
- - add event parameter for node:dnd-add event ([35466b1](https://github.com/didi/LogicFlow/commit/35466b1801aae0783b8ae6b6d16e4a60bb4f6c31))
809
- - allow use ctrl key to select multiple elements ([e46a2d2](https://github.com/didi/LogicFlow/commit/e46a2d25304f751fd0ee74722bed9f81b478003b))
810
-
811
- ## [1.1.30](https://github.com/didi/LogicFlow/compare/@logicflow/core@1.1.29...@logicflow/core@1.1.30) (2022-10-30)
812
-
813
- ### Bug Fixes
814
-
815
- - ๅค„็†ๆŠ˜็บฟๆฒกๆ‹–ๆ‹ฝๆˆ็›ด็บฟๅŽ็ปง็ปญๆ‹–ๅˆฐๆŠฅ้”™็š„้—ฎ้ข˜ ([8e1bf3f](https://github.com/didi/LogicFlow/commit/8e1bf3f9e0c80020bb0c4feffd26bcac70f73c89))
816
- - keep GroupNode in bottom when select node ([9e3086a](https://github.com/didi/LogicFlow/commit/9e3086a3d5faac116c10ea3dc9ac6796b686ed24))
817
-
818
- ### Features
819
-
820
- - keep typo ([3a017c8](https://github.com/didi/LogicFlow/commit/3a017c8855d66cb444388267de6c090bc0fb0c89))
821
- - set selected element zindex 9999 instead of always front ([b8a2708](https://github.com/didi/LogicFlow/commit/b8a27085e7a86f3d6d8d654447d3c1d4116e5f16))
822
-
823
- ## [1.1.29](https://github.com/didi/LogicFlow/compare/@logicflow/core@1.1.28...@logicflow/core@1.1.29) (2022-09-24)
824
-
825
- ### Bug Fixes
826
-
827
- - Fix typo: currrentProperties -> currentProperties ([71650b7](https://github.com/didi/LogicFlow/commit/71650b7c51d1ffd9c8b828f26ad2189e3b9cb7a4))
828
- - Fix typo: getBackgroud -> getBackground ([3ea0c36](https://github.com/didi/LogicFlow/commit/3ea0c369747b75b321a95b22af75d2afc07b9c7a))
829
- - Fix typo: getCorssPointOfLine -> getCrossPointOfLine ([a2c44b0](https://github.com/didi/LogicFlow/commit/a2c44b09518f089df98eec711ea9b51f8351ac24))
830
-
831
- ### Features
832
-
833
- - update turbo plugin ([ed512ca](https://github.com/didi/LogicFlow/commit/ed512ca21d21829cd7c114140b006964fc4090e4))
834
-
835
- ## [1.1.28](https://github.com/didi/LogicFlow/compare/@logicflow/core@1.1.27...@logicflow/core@1.1.28) (2022-09-17)
836
-
837
- ### Features
838
-
839
- - add api delete node and edge property ([9a7c729](https://github.com/didi/LogicFlow/commit/9a7c729c463f5de555d102aa8d22341adf9b3db7))
840
-
841
- ## [1.1.27](https://github.com/didi/LogicFlow/compare/@logicflow/core@1.1.26...@logicflow/core@1.1.27) (2022-09-13)
842
-
843
- **Note:** Version bump only for package @logicflow/core
844
-
845
- ## [1.1.26](https://github.com/didi/LogicFlow/compare/@logicflow/core@1.1.25...@logicflow/core@1.1.26) (2022-08-27)
846
-
847
- ### Bug Fixes
848
-
849
- - ไฟฎๆญฃ BaseEdgeModel ๆž„้€ ๅ‡ฝๆ•ฐๅฑžๆ€งๅˆๅง‹ๅŒ–้กบๅบ ([b4f8f3a](https://github.com/didi/LogicFlow/commit/b4f8f3a0066f6cb0b95c79c4b5febbcf833a7386))
850
-
851
- ### Features
852
-
853
- - ๅขžๅŠ  edgeGenerator ้€‰้กน, ๅฏ่‡ชๅฎšไน‰่ฟž่พน่ง„ๅˆ™ ([a9aff50](https://github.com/didi/LogicFlow/commit/a9aff50b87559c9549d2eb6943797a75e09d62a3))
854
-
855
- ## [1.1.25](https://github.com/didi/LogicFlow/compare/@logicflow/core@1.1.24...@logicflow/core@1.1.25) (2022-08-21)
856
-
857
- ### Features
858
-
859
- - group add isAllowAppendIn to support pick node append in group ([e54f798](https://github.com/didi/LogicFlow/commit/e54f79845996e763098cb5749100c76063160023))
860
-
861
- ## [1.1.24](https://github.com/didi/LogicFlow/compare/@logicflow/core@1.1.23...@logicflow/core@1.1.24) (2022-08-11)
862
-
863
- **Note:** Version bump only for package @logicflow/core
864
-
865
- ## [1.1.23](https://github.com/didi/LogicFlow/compare/@logicflow/core@1.1.22...@logicflow/core@1.1.23) (2022-08-04)
866
-
867
- **Note:** Version bump only for package @logicflow/core
868
-
869
- ## [1.1.22](https://github.com/didi/LogicFlow/compare/@logicflow/core@1.1.21...@logicflow/core@1.1.22) (2022-07-13)
870
-
871
- **Note:** Version bump only for package @logicflow/core
872
-
873
- ## [1.1.21](https://github.com/didi/LogicFlow/compare/@logicflow/core@1.1.20...@logicflow/core@1.1.21) (2022-07-02)
874
-
875
- ### Bug Fixes
876
-
877
- - ๅค„็†miniๅคงๅฐ้”™่ฏฏ็š„้—ฎ้ข˜ ([8ef7619](https://github.com/didi/LogicFlow/commit/8ef7619e8f994b9cee2b2544fd3f5bae9f8c0c57))
878
- - ไฟฎๅค่Š‚็‚นๆ— ๆณ•ๆ‹–ๅŠจ็š„้—ฎ้ข˜ ([f6caac9](https://github.com/didi/LogicFlow/commit/f6caac9eebaaf9146ed07d26705befd8c8b71298))
879
-
880
- ## [1.1.20](https://github.com/didi/LogicFlow/compare/@logicflow/core@1.1.19...@logicflow/core@1.1.20) (2022-06-08)
881
-
882
- ### Bug Fixes
883
-
884
- - edge:mouseenter trigger twice ([2b4e80a](https://github.com/didi/LogicFlow/commit/2b4e80a14ab21b47e7f6d0bc774006b244450a5c))
885
- - foreignObject support style ([92e37f4](https://github.com/didi/LogicFlow/commit/92e37f403c93b48a612e97c73ffdcf374b5287c8))
886
-
887
- ### Features
888
-
889
- - add highlight plugin ([8081f91](https://github.com/didi/LogicFlow/commit/8081f91c448d4ed204f517a555af59c13bbde55f))
890
-
891
- ## [1.1.19](https://github.com/didi/LogicFlow/compare/@logicflow/core@1.1.18...@logicflow/core@1.1.19) (2022-06-01)
892
-
893
- ### Features
894
-
895
- - arrow marker, fixes [#637](https://github.com/didi/LogicFlow/issues/637) ([98720b9](https://github.com/didi/LogicFlow/commit/98720b944fd17f343ecf7ec59a5f1d0e79b59a4d))
896
-
897
- ## [1.1.18](https://github.com/didi/LogicFlow/compare/@logicflow/core@1.1.17...@logicflow/core@1.1.18) (2022-05-23)
898
-
899
- **Note:** Version bump only for package @logicflow/core
900
-
901
- ## [1.1.17](https://github.com/didi/LogicFlow/compare/@logicflow/core@1.1.16...@logicflow/core@1.1.17) (2022-05-23)
902
-
903
- **Note:** Version bump only for package @logicflow/core
904
-
905
- ## [1.1.16](https://github.com/didi/LogicFlow/compare/@logicflow/core@1.1.14...@logicflow/core@1.1.16) (2022-05-18)
906
-
907
- ### Bug Fixes
908
-
909
- - remove unnecessary object ([fa6ad3f](https://github.com/didi/LogicFlow/commit/fa6ad3ff2c36a9a7979e03eb89ba2ca8c66b8a0b))
910
-
911
- ### Features
912
-
913
- - add lf-node-select className to node when it is selected ([ce8f6ae](https://github.com/didi/LogicFlow/commit/ce8f6ae4f284de9896c3a0dc4791804b5bb7d23e))
914
- - lf-edge-select className to edge when it is selected ([6c5c301](https://github.com/didi/LogicFlow/commit/6c5c3015913a6a148c09f621873b539a3bb282c0))
915
- - setting horizontal and vertical offset separately for fitView ([37c464c](https://github.com/didi/LogicFlow/commit/37c464c1bb4539275e87c62e8c7e2d6701df742b))
916
- - support edge animation ([d66edec](https://github.com/didi/LogicFlow/commit/d66edec3c834a13242446d26cf0ac630f24495e5))
917
- - support wrapPadding for edge text which overflowMode is't autoWrap ([f5cc079](https://github.com/didi/LogicFlow/commit/f5cc0792dd9232dd0331312a2358519a96a9a278))
918
- - triger anchor-drop event when edge created ([4b355c2](https://github.com/didi/LogicFlow/commit/4b355c2361134fb85bce23b1d660f15b1476ce80))
919
-
920
- ## [1.1.15](https://github.com/didi/LogicFlow/compare/@logicflow/core@1.1.14...@logicflow/core@1.1.15) (2022-05-07)
921
-
922
- ### Bug Fixes
923
-
924
- - remove unnecessary object ([b0b7507](https://github.com/didi/LogicFlow/commit/b0b7507443d5c8dd0d133bd109d26f036a1a945a))
925
-
926
- ### Features
927
-
928
- - add lf-node-select className to node when it is selected ([ce8f6ae](https://github.com/didi/LogicFlow/commit/ce8f6ae4f284de9896c3a0dc4791804b5bb7d23e))
929
- - lf-edge-select className to edge when it is selected ([6c5c301](https://github.com/didi/LogicFlow/commit/6c5c3015913a6a148c09f621873b539a3bb282c0))
930
- - setting horizontal and vertical offset separately for fitView ([37c464c](https://github.com/didi/LogicFlow/commit/37c464c1bb4539275e87c62e8c7e2d6701df742b))
931
- - support edge animation ([d66edec](https://github.com/didi/LogicFlow/commit/d66edec3c834a13242446d26cf0ac630f24495e5))
932
- - support wrapPadding for edge text which overflowMode is't autoWrap ([f5cc079](https://github.com/didi/LogicFlow/commit/f5cc0792dd9232dd0331312a2358519a96a9a278))
933
-
934
- ## [1.1.14](https://github.com/didi/LogicFlow/compare/@logicflow/core@1.1.13...@logicflow/core@1.1.14) (2022-04-22)
935
-
936
- **Note:** Version bump only for package @logicflow/core
937
-
938
- ## [1.1.13](https://github.com/didi/LogicFlow/compare/@logicflow/core@1.1.12...@logicflow/core@1.1.13) (2022-04-16)
939
-
940
- ### Features
941
-
942
- - add useGlobalRules and customCssRules property ([88dadb8](https://github.com/didi/LogicFlow/commit/88dadb8e2c96d9f7ee4d4c286a6aa42c8941baaf))
943
-
944
- ## [1.1.12](https://github.com/didi/LogicFlow/compare/@logicflow/core@1.1.12-alpha.0...@logicflow/core@1.1.12) (2022-04-13)
945
-
946
- **Note:** Version bump only for package @logicflow/core
947
-
948
- ## [1.1.12-alpha.0](https://github.com/didi/LogicFlow/compare/@logicflow/core@1.1.11...@logicflow/core@1.1.12-alpha.0) (2022-04-09)
949
-
950
- ### Bug Fixes
951
-
952
- - cannot move node while width and height value is zero ([39238a2](https://github.com/didi/LogicFlow/commit/39238a27b741c7367b7a94c760d4083a2103239d))
953
-
954
- ### Features
955
-
956
- - add api renderRawData ([07b3d80](https://github.com/didi/LogicFlow/commit/07b3d806052428a9d2edf66db2db7e0938ce010e))
957
-
958
- ## [1.1.11](https://github.com/didi/LogicFlow/compare/@logicflow/core@1.1.10...@logicflow/core@1.1.11) (2022-03-29)
959
-
960
- **Note:** Version bump only for package @logicflow/core
961
-
962
- ## [1.1.10](https://github.com/didi/LogicFlow/compare/@logicflow/core@1.1.9...@logicflow/core@1.1.10) (2022-03-29)
963
-
964
- **Note:** Version bump only for package @logicflow/core
965
-
966
- ## [1.1.9](https://github.com/didi/LogicFlow/compare/@logicflow/core@1.1.9-alpha.1...@logicflow/core@1.1.9) (2022-03-26)
967
-
968
- **Note:** Version bump only for package @logicflow/core
969
-
970
- ## [1.1.9-alpha.1](https://github.com/didi/LogicFlow/compare/@logicflow/core@1.1.9-alpha.0...@logicflow/core@1.1.9-alpha.1) (2022-03-26)
971
-
972
- ### Features
973
-
974
- - optimize move group children behavior ([d492f20](https://github.com/didi/LogicFlow/commit/d492f20a7205c81a709f7a151b9127a2709d81a4))
975
- - optimize move node behavior ([d0e4e85](https://github.com/didi/LogicFlow/commit/d0e4e856cf58e92a98e309cdd698724bc1163295))
976
-
977
- ## [1.1.9-alpha.0](https://github.com/didi/LogicFlow/compare/@logicflow/core@1.1.8-alpha.0...@logicflow/core@1.1.9-alpha.0) (2022-03-25)
978
-
979
- ### Bug Fixes
980
-
981
- - ไฟฎๅคๆ–ฐๅขžๅˆ†็ป„ๅญ่Š‚็‚นๆœช่ขซ่ฎฐๅฝ•็š„้—ฎ้ข˜ ([24d9fc9](https://github.com/didi/LogicFlow/commit/24d9fc9d056f34141520da4a3f9482fe031ec325))
982
-
983
- ### Features
984
-
985
- - optimize anchor line dragging behavior while near graph boundary ([0d798cc](https://github.com/didi/LogicFlow/commit/0d798ccbde91bae734e7b655d85709435626cb42))
986
- - remove html demo ([a744bb2](https://github.com/didi/LogicFlow/commit/a744bb2a20d1e6fd6f7ea3b1269a9a45211501ad))
987
-
988
- ## [1.1.8](https://github.com/didi/LogicFlow/compare/@logicflow/core@1.1.8-alpha.0...@logicflow/core@1.1.8) (2022-03-25)
989
-
990
- ### Bug Fixes
991
-
992
- - ไฟฎๅคๆ–ฐๅขžๅˆ†็ป„ๅญ่Š‚็‚นๆœช่ขซ่ฎฐๅฝ•็š„้—ฎ้ข˜ ([24d9fc9](https://github.com/didi/LogicFlow/commit/24d9fc9d056f34141520da4a3f9482fe031ec325))
993
-
994
- ### Features
995
-
996
- - optimize anchor line dragging behavior while near graph boundary ([0d798cc](https://github.com/didi/LogicFlow/commit/0d798ccbde91bae734e7b655d85709435626cb42))
997
-
998
- ## [1.1.8-alpha.0](https://github.com/didi/LogicFlow/compare/@logicflow/core@1.1.7-alpha.0...@logicflow/core@1.1.8-alpha.0) (2022-03-25)
999
-
1000
- ### Bug Fixes
1001
-
1002
- - ไฟฎๅคไบ†`group`ๆ’ไปถๅœจๅคšไธช`group`่Š‚็‚นไธ€่ตท่ขซๆŠ˜ๅ ๆŠฅ้”™็š„้—ฎ้ข˜ใ€‚ ([396736e](https://github.com/didi/LogicFlow/commit/396736e07c320985f7c779b272085ba1f66f1083))
1003
- - group undo cannot fold ([5860d7e](https://github.com/didi/LogicFlow/commit/5860d7ef4770f655fab1bb5ee6114dc63757b725))
1004
-
1005
- ### Features
1006
-
1007
- - ่ฐƒๆ•ดtranslateCenterๆ–นๆณ•็š„ๆŒ‚่ฝฝๅฏน่ฑก ([d10a526](https://github.com/didi/LogicFlow/commit/d10a5263c1c922ee0b0356c01dde248dec6fe5d0))
1008
- - ็”ปๅธƒๅฑ…ไธญไปฃ็ ไผ˜ๅŒ– ([d06b162](https://github.com/didi/LogicFlow/commit/d06b16296c0e655c93f6e6670f09156c89c7204e))
1009
- - ไผ˜ๅŒ–็”ปๅธƒๅ›พๅฝขๅฑ…ไธญ่™šๆ‹Ÿ็Ÿฉๅฝข็š„่ฎก็ฎ—่ง„ๅˆ™๏ผŒๆ–ฐๅขž้€‚ๅบ”ๅฑๅน•ๅคงๅฐๅŠŸ่ƒฝ ([e0c0ea1](https://github.com/didi/LogicFlow/commit/e0c0ea15f4962ca9502606fec6ddc070d65c78a7))
1010
- - ๆ”ฏๆŒ็”ปๅธƒๆ•ดไฝ“ๅฑ…ไธญ ([39b1532](https://github.com/didi/LogicFlow/commit/39b15324bb978b2842f6638a9fa0626621910323))
1011
- - add node resize maxwidth and maxheight ([e98f575](https://github.com/didi/LogicFlow/commit/e98f575d19c5c7c9a74c7ad3302c1a8cb02bd5e3))
1012
- - add vue3 example ([9969b97](https://github.com/didi/LogicFlow/commit/9969b978d93ce863901d364bc5f01a9b9f6db269))
1013
- - optimize drag node behavior ([f88042d](https://github.com/didi/LogicFlow/commit/f88042d5623a0983003bd70098b4e0c12ba60d3d))
1014
-
1015
- ## [1.1.7](https://github.com/didi/LogicFlow/compare/@logicflow/core@1.1.7-alpha.0...@logicflow/core@1.1.7) (2022-03-07)
1016
-
1017
- **Note:** Version bump only for package @logicflow/core
1018
-
1019
- ## [1.1.7-alpha.0](https://github.com/didi/LogicFlow/compare/@logicflow/core@1.1.6...@logicflow/core@1.1.7-alpha.0) (2022-03-03)
1020
-
1021
- ### Bug Fixes
1022
-
1023
- - click node cancel edit text ([a514665](https://github.com/didi/LogicFlow/commit/a5146652b78d665d7058b7d810a26af07659ca43))
1024
-
1025
- ### Features
1026
-
1027
- - add getAnchorShape function which allow rewrite anchor shape ([e5a7d77](https://github.com/didi/LogicFlow/commit/e5a7d77b898c93ece38e28fbdbef443ec8d23fcc))
1028
-
1029
- ## [1.1.6](https://github.com/didi/LogicFlow/compare/@logicflow/core@1.1.5...@logicflow/core@1.1.6) (2022-03-02)
1030
-
1031
- **Note:** Version bump only for package @logicflow/core
1032
-
1033
- ## [1.1.5](https://github.com/didi/LogicFlow/compare/@logicflow/core@1.1.4...@logicflow/core@1.1.5) (2022-03-02)
1034
-
1035
- ### Bug Fixes
1036
-
1037
- - change strokeDasharray type from array to string ([dd9d42e](https://github.com/didi/LogicFlow/commit/dd9d42ed26da46558592124533954f23b28aade2))
1038
- - edge animation demo ([e8895cc](https://github.com/didi/LogicFlow/commit/e8895cc230fccf007638db2cdfd79b25f7cba1b9))
1039
- - trigger dragstart when dragging ([5ff04c8](https://github.com/didi/LogicFlow/commit/5ff04c807364a03554135d57c49b4f181b6f2414))
1040
-
1041
- ### Features
1042
-
1043
- - anchor add event api ([4309b81](https://github.com/didi/LogicFlow/commit/4309b81902280f0dacb7fb169b6b9c34f06de3f7))
1044
- - support animation ([c58c147](https://github.com/didi/LogicFlow/commit/c58c147c172901604834dda1a0dbb62a5f653579))
1045
-
1046
- ## [1.1.4](https://github.com/didi/LogicFlow/compare/@logicflow/core@1.1.3...@logicflow/core@1.1.4) (2022-02-23)
1047
-
1048
- ### Bug Fixes
1049
-
1050
- - change node state to default when create edge success ([9f57894](https://github.com/didi/LogicFlow/commit/9f57894034c9b6d86323e93d22a1185fe433843c))
1051
- - editConfigModel add isSilentMode ([8fcd571](https://github.com/didi/LogicFlow/commit/8fcd57143ccf1055a2c176ef417d7498ef178694))
1052
-
1053
- ### Features
1054
-
1055
- - node model add incoming & outgoing ([8cf1469](https://github.com/didi/LogicFlow/commit/8cf14690b3c8378b11e5028700539a8fdb12bee1))
1056
- - update docs ([c60d9d7](https://github.com/didi/LogicFlow/commit/c60d9d75f167ac32d871810ef2c5f7dbc5403462))
1057
-
1058
- ## [1.1.3](https://github.com/didi/LogicFlow/compare/@logicflow/core@1.1.3-alpha.0...@logicflow/core@1.1.3) (2022-02-18)
1059
-
1060
- ### Bug Fixes
1061
-
1062
- - stop edit text when input enter + alt ([438daec](https://github.com/didi/LogicFlow/commit/438daec1de3378f25b245feda8a71bead6c96ba8))
1063
-
1064
- ## [1.1.3-alpha.0](https://github.com/didi/LogicFlow/compare/@logicflow/core@1.1.1...@logicflow/core@1.1.3-alpha.0) (2022-02-18)
1065
-
1066
- **Note:** Version bump only for package @logicflow/core
1067
-
1068
- ## [1.1.1](https://github.com/didi/LogicFlow/compare/@logicflow/core@1.1.0...@logicflow/core@1.1.1) (2022-02-10)
1069
-
1070
- ### Features
1071
-
1072
- - check width and height type ([141c667](https://github.com/didi/LogicFlow/commit/141c6678503870a9d7503864353ad6cc7493fd24))
1073
-
1074
- # [1.1.0](https://github.com/didi/LogicFlow/compare/@logicflow/core@1.1.0-alpha.7...@logicflow/core@1.1.0) (2022-02-09)
1075
-
1076
- **Note:** Version bump only for package @logicflow/core
1077
-
1078
- # [1.1.0-alpha.7](https://github.com/didi/LogicFlow/compare/@logicflow/core@1.1.0-alpha.6...@logicflow/core@1.1.0-alpha.7) (2022-02-09)
1079
-
1080
- **Note:** Version bump only for package @logicflow/core
1081
-
1082
- # [1.1.0-alpha.6](https://github.com/didi/LogicFlow/compare/@logicflow/core@1.1.0-alpha.4...@logicflow/core@1.1.0-alpha.6) (2022-01-27)
1083
-
1084
- **Note:** Version bump only for package @logicflow/core
1085
-
1086
- # [1.1.0-alpha.4](https://github.com/didi/LogicFlow/compare/@logicflow/core@1.1.0-alpha.2...@logicflow/core@1.1.0-alpha.4) (2022-01-27)
1087
-
1088
- ### Bug Fixes
1089
-
1090
- - use autoToFront property take node to front ([3a8a7cc](https://github.com/didi/LogicFlow/commit/3a8a7cc6a981f53837f8774aa3130b7e6d5593b9))
1091
-
1092
- ### Features
1093
-
1094
- - add attribute visible to element ([4676427](https://github.com/didi/LogicFlow/commit/46764279f6667354b1d67186e0f131f764c3eb79))
1095
- - add getModelById & getDataById ([ad8d4e6](https://github.com/didi/LogicFlow/commit/ad8d4e62ff781914017ce478fa07ccdb36f0fe75))
1096
- - add graph:rendered event ([a3838c3](https://github.com/didi/LogicFlow/commit/a3838c385328bc9e3a41e39c555736d5f59de573))
1097
- - add group hook ([a955e7c](https://github.com/didi/LogicFlow/commit/a955e7ca151e0dd547a3995bbfed42e68f25183a))
1098
- - group support fold ([c1d8c10](https://github.com/didi/LogicFlow/commit/c1d8c109b25a3145c8c6858c4b6b5f0b6bf072ba))
1099
- - group support resize ([d9e2403](https://github.com/didi/LogicFlow/commit/d9e2403e00bce05c65d4d5b018ac3e2b9072cecd))
1100
-
1101
- # [1.1.0-alpha.2](https://github.com/didi/LogicFlow/compare/@logicflow/core@1.1.0-alpha.1...@logicflow/core@1.1.0-alpha.2) (2022-01-21)
1102
-
1103
- **Note:** Version bump only for package @logicflow/core
1104
-
1105
- # [1.1.0-alpha.1](https://github.com/didi/LogicFlow/compare/@logicflow/core@1.1.0-alpha.0...@logicflow/core@1.1.0-alpha.1) (2022-01-21)
1106
-
1107
- **Note:** Version bump only for package @logicflow/core
1108
-
1109
- # [1.1.0-alpha.0](https://github.com/didi/LogicFlow/compare/@logicflow/core@1.0.7...@logicflow/core@1.1.0-alpha.0) (2022-01-20)
1110
-
1111
- **Note:** Version bump only for package @logicflow/core
1112
-
1113
- ## [1.0.7](https://github.com/didi/LogicFlow/compare/@logicflow/core@1.0.7-alpha.1...@logicflow/core@1.0.7) (2022-01-18)
1114
-
1115
- **Note:** Version bump only for package @logicflow/core
1116
-
1117
- ## [1.0.7-alpha.1](https://github.com/didi/LogicFlow/compare/@logicflow/core@1.0.7-alpha.0...@logicflow/core@1.0.7-alpha.1) (2022-01-18)
1118
-
1119
- ### Bug Fixes
1120
-
1121
- - addEdge return edgeModel ([e91f995](https://github.com/didi/LogicFlow/commit/e91f99502a9f7bafcf93e4aac1f32dfc3fb0a603))
1122
-
1123
- ## [1.0.7-alpha.0](https://github.com/didi/LogicFlow/compare/@logicflow/core@1.0.4...@logicflow/core@1.0.7-alpha.0) (2022-01-18)
1124
-
1125
- ### Bug Fixes
1126
-
1127
- - add virtual field ([5894ae0](https://github.com/didi/LogicFlow/commit/5894ae0104bc567ef4678662b8e571c1c1d19820))
1128
- - error name ([ef10a93](https://github.com/didi/LogicFlow/commit/ef10a93198b34017fbec7dedb4c66a39ceff5536))
1129
- - **core:** adjust polyline bugfix ([e87f2c9](https://github.com/didi/LogicFlow/commit/e87f2c9c772558b2de0d6850ca528a59cbafaf6f))
1130
- - typo ([facccdf](https://github.com/didi/LogicFlow/commit/facccdf3b98d44650c75e34a66ed33f5e0d8f75e))
1131
-
1132
- ### Features
1133
-
1134
- - lf support plugins ([3dacdb6](https://github.com/didi/LogicFlow/commit/3dacdb6e39ff0fa84b0c3e525bf3e6d1b91a29f4))
1135
-
1136
- ## [1.0.4](https://github.com/didi/LogicFlow/compare/@logicflow/core@1.0.0-alpha.12...@logicflow/core@1.0.4) (2022-01-12)
1137
-
1138
- ### Bug Fixes
1139
-
1140
- - change edge type remove pointsList ([433c8e8](https://github.com/didi/LogicFlow/commit/433c8e805da226e37550c7abd770748f8c8a8bdc))
1141
- - focus on ([2301c09](https://github.com/didi/LogicFlow/commit/2301c094f2853591741101623da879ea7e0d22de))
1142
- - mini map viewport ([38c2408](https://github.com/didi/LogicFlow/commit/38c2408e0f8a76dd0b49b9271dd259fd8b6fa684))
1143
- - move edge not keep controls ([b8f28f3](https://github.com/didi/LogicFlow/commit/b8f28f38d943ab2881a2f375603025e01573c0d8))
1144
- - node updateText observable ([b04f96a](https://github.com/didi/LogicFlow/commit/b04f96abf639befeaa5cf22be9407955926a5118))
1145
- - rewrite text node getTextStyle ([2717203](https://github.com/didi/LogicFlow/commit/27172038a282404c02697986736bf10955117d16))
1146
- - typo EditConfigMode ([fed381b](https://github.com/didi/LogicFlow/commit/fed381b47ec3786f43d043c07c33f01458239840))
1147
-
1148
- ### Features
1149
-
1150
- - release 1.0.0๐ŸŽ‰๐ŸŽ‰ ([670fed7](https://github.com/didi/LogicFlow/commit/670fed7fa3e0cb0ee39501251d177c693694ef59))
1151
-
1152
- ## [1.0.1](https://github.com/didi/LogicFlow/compare/@logicflow/core@1.0.0-alpha.12...@logicflow/core@1.0.1) (2022-01-07)
1153
-
1154
- ### Bug Fixes
1155
-
1156
- - focus on ([2301c09](https://github.com/didi/LogicFlow/commit/2301c094f2853591741101623da879ea7e0d22de))
1157
- - rewrite text node getTextStyle ([2717203](https://github.com/didi/LogicFlow/commit/27172038a282404c02697986736bf10955117d16))
1158
- - typo EditConfigMode ([fed381b](https://github.com/didi/LogicFlow/commit/fed381b47ec3786f43d043c07c33f01458239840))
1159
-
1160
- ### Features
1161
-
1162
- - release 1.0.0๐ŸŽ‰๐ŸŽ‰ ([670fed7](https://github.com/didi/LogicFlow/commit/670fed7fa3e0cb0ee39501251d177c693694ef59))
1163
-
1164
- # [1.0.0-alpha.12](https://github.com/didi/LogicFlow/compare/@logicflow/core@1.0.0-alpha.11...@logicflow/core@1.0.0-alpha.12) (2021-12-30)
1165
-
1166
- ### Bug Fixes
1167
-
1168
- - reset offset ([3ab0425](https://github.com/didi/LogicFlow/commit/3ab0425fdba12e934c0380b3f4229314071e630f))
1169
-
1170
- # [1.0.0-alpha.11](https://github.com/didi/LogicFlow/compare/@logicflow/core@1.0.0-alpha.10...@logicflow/core@1.0.0-alpha.11) (2021-12-29)
1171
-
1172
- ### Bug Fixes
1173
-
1174
- - custom node ([2155c37](https://github.com/didi/LogicFlow/commit/2155c379144469848ea08511c9c1c145105f46df))
1175
-
1176
- # [1.0.0-alpha.10](https://github.com/didi/LogicFlow/compare/@logicflow/core@1.0.0-alpha.9...@logicflow/core@1.0.0-alpha.10) (2021-12-29)
1177
-
1178
- ### Bug Fixes
1179
-
1180
- - history change ([1ed9799](https://github.com/didi/LogicFlow/commit/1ed9799a0321b1d5e761b3e25ae8d874d8c310f3))
1181
-
1182
- ### Features
1183
-
1184
- - merge master ([2f418bc](https://github.com/didi/LogicFlow/commit/2f418bcbeb60ac7162718d6022047aeb326a50d8))
1185
-
1186
- # [1.0.0-alpha.9](https://github.com/didi/LogicFlow/compare/@logicflow/core@1.0.0-alpha.8...@logicflow/core@1.0.0-alpha.9) (2021-12-24)
1187
-
1188
- ### Features
1189
-
1190
- - remove hideOutline ([be86fb1](https://github.com/didi/LogicFlow/commit/be86fb118bd8bb1bd67a999802544eb2d10df0da))
1191
-
1192
- # [1.0.0-alpha.8](https://github.com/didi/LogicFlow/compare/@logicflow/core@1.0.0-alpha.7...@logicflow/core@1.0.0-alpha.8) (2021-12-22)
1193
-
1194
- ### Bug Fixes
1195
-
1196
- - recovery getAppend ([2518892](https://github.com/didi/LogicFlow/commit/2518892c656dc07008676206ca4da920e869ed99))
1197
-
1198
- ### Features
1199
-
1200
- - use deepclone return style ([e2c2af3](https://github.com/didi/LogicFlow/commit/e2c2af3673ff64de71a2e2c3d3f3db8fa84737cf))
1201
-
1202
- # [1.0.0-alpha.7](https://github.com/didi/LogicFlow/compare/@logicflow/core@1.0.0-alpha.6...@logicflow/core@1.0.0-alpha.7) (2021-12-22)
1203
-
1204
- ### Bug Fixes
1205
-
1206
- - node resize set default style ([b9def97](https://github.com/didi/LogicFlow/commit/b9def9763f1fa0464c42adeffebf37fe20543151))
1207
-
1208
- # [1.0.0-alpha.6](https://github.com/didi/LogicFlow/compare/@logicflow/core@1.0.0-alpha.4...@logicflow/core@1.0.0-alpha.6) (2021-12-22)
1209
-
1210
- ### Bug Fixes
1211
-
1212
- - edge setProperties in vue ([ecdaf34](https://github.com/didi/LogicFlow/commit/ecdaf34ad170e410ad979af8413e87bf86e8345b))
1213
- - edge text use model getTextStyle ([85b36ef](https://github.com/didi/LogicFlow/commit/85b36efa14ed9e7a0a5d95e800489d4dfa65b6d6))
1214
- - lf.select -> lf.selectElementById ([f4eea2c](https://github.com/didi/LogicFlow/commit/f4eea2c23ec6ac44acbd404b35d94b74fbb69d00))
1215
- - selection events ([682ba34](https://github.com/didi/LogicFlow/commit/682ba345451a5c5b522ebcd510f9c9e29be5758e))
1216
-
1217
- # [1.0.0-alpha.4](https://github.com/didi/LogicFlow/compare/@logicflow/core@0.7.14...@logicflow/core@1.0.0-alpha.4) (2021-12-21)
1218
-
1219
- ### Bug Fixes
1220
-
1221
- - html node ([a356297](https://github.com/didi/LogicFlow/commit/a3562974d2dac63f08e531784945bbeb9e25e81d))
1222
- - use model instead of getAttribute ([0e51cb0](https://github.com/didi/LogicFlow/commit/0e51cb0681c458bf68a69b8459ce0a4b91951ea4))
1223
-
1224
- ### Features
1225
-
1226
- - ้‡ๆž„่‡ชๅฎšไน‰้”š็‚นๅ†™ๆณ• ([657f911](https://github.com/didi/LogicFlow/commit/657f9113eff1207c910080507e94a22c69c10cce))
1227
- - custom edge ([81cd3be](https://github.com/didi/LogicFlow/commit/81cd3be6a9940553d2eec75b77a3472fdf75eb88))
1228
- - resize width and height ([8275dfb](https://github.com/didi/LogicFlow/commit/8275dfb539449c641c8f61c3f84ebad8a2046f8b))
1229
- - theme and outline ([1b7960d](https://github.com/didi/LogicFlow/commit/1b7960db3bab047e49d187bbb43578a0700d7eef))
1230
- - use loose class properties ([921a09b](https://github.com/didi/LogicFlow/commit/921a09ba4b30a819eb315316e174a7bccfc9ffc8))
1231
-
1232
- # [1.0.0-alpha.3](https://github.com/didi/LogicFlow/compare/@logicflow/core@1.0.0-alpha.1...@logicflow/core@1.0.0-alpha.3) (2021-12-09)
1233
-
1234
- **Note:** Version bump only for package @logicflow/core
1235
-
1236
- # [1.0.0-alpha.1](https://github.com/didi/LogicFlow/compare/@logicflow/core@0.7.13...@logicflow/core@1.0.0-alpha.1) (2021-12-09)
1237
-
1238
- ### Features
1239
-
1240
- - ้‡ๆž„่‡ชๅฎšไน‰้”š็‚นๅ†™ๆณ• ([657f911](https://github.com/didi/LogicFlow/commit/657f9113eff1207c910080507e94a22c69c10cce))
1241
- - use loose class properties ([921a09b](https://github.com/didi/LogicFlow/commit/921a09ba4b30a819eb315316e174a7bccfc9ffc8))
1242
-
1243
- ## [0.7.13](https://github.com/didi/LogicFlow/compare/@logicflow/core@0.7.12...@logicflow/core@0.7.13) (2021-12-09)
1244
-
1245
- ### Features
1246
-
1247
- - add node view types ([8b6a5ab](https://github.com/didi/LogicFlow/commit/8b6a5abf41967ff47d65e34a926d6b4ac37a9ad4))
1248
- - babel use loose mode ([7fed1fb](https://github.com/didi/LogicFlow/commit/7fed1fb9557e3ac7f6f7fc11ad3afcc1d3d7bad8))
1249
-
1250
- ## [0.7.13-alpha.1](https://github.com/didi/LogicFlow/compare/@logicflow/core@0.7.13-alpha.0...@logicflow/core@0.7.13-alpha.1) (2021-12-07)
1251
-
1252
- ### Features
1253
-
1254
- - babel use loose mode ([a48deef](https://github.com/didi/LogicFlow/commit/a48deef1c58e6e8d3f90463082207797fb9b771c))
1255
-
1256
- ## [0.7.13-alpha.0](https://github.com/didi/LogicFlow/compare/@logicflow/core@0.7.12...@logicflow/core@0.7.13-alpha.0) (2021-12-07)
1257
-
1258
- ### Features
1259
-
1260
- - add node view types ([b065a2d](https://github.com/didi/LogicFlow/commit/b065a2d7efc1d47cf0cf97ae73406640d8a20eb4))
1261
-
1262
- ## [0.7.12](https://github.com/didi/LogicFlow/compare/@logicflow/core@0.7.11...@logicflow/core@0.7.12) (2021-12-04)
1263
-
1264
- ### Features
1265
-
1266
- - ๅขžๅŠ ๆ–‡ๆœฌ่ถ…ๅ‡บ้š่—ๆจกๅผ ([0255275](https://github.com/didi/LogicFlow/commit/0255275ed99242da2167ea0f81f7346dc5ce5365))
1267
-
1268
- ## [0.7.11](https://github.com/didi/LogicFlow/compare/@logicflow/core@0.7.10...@logicflow/core@0.7.11) (2021-11-30)
1269
-
1270
- ### Features
1271
-
1272
- - support disabled tool in core package ([1c7527f](https://github.com/didi/LogicFlow/commit/1c7527fc75929c444d9e5fb4b0b70b87086694c8))
1273
-
1274
- ## [0.7.10](https://github.com/didi/LogicFlow/compare/@logicflow/core@0.7.9...@logicflow/core@0.7.10) (2021-11-26)
1275
-
1276
- **Note:** Version bump only for package @logicflow/core
1277
-
1278
- ## [0.7.9](https://github.com/didi/LogicFlow/compare/@logicflow/core@0.7.8...@logicflow/core@0.7.9) (2021-11-23)
1279
-
1280
- ### Bug Fixes
1281
-
1282
- - nodeResize outline bugfix ([8e76f5f](https://github.com/didi/LogicFlow/commit/8e76f5f8e79a18189f48339b85904b06d29cfda2))
1283
-
1284
- ## [0.7.8](https://github.com/didi/LogicFlow/compare/@logicflow/core@0.7.7...@logicflow/core@0.7.8) (2021-11-22)
1285
-
1286
- **Note:** Version bump only for package @logicflow/core
1287
-
1288
- ## [0.7.7](https://github.com/didi/LogicFlow/compare/@logicflow/core@0.7.6...@logicflow/core@0.7.7) (2021-11-19)
1289
-
1290
- ### Features
1291
-
1292
- - add context menu plugin ([8c5d7a8](https://github.com/didi/LogicFlow/commit/8c5d7a84309ba8d07fbbb99dcebcae81b521bd06))
1293
- - set textheight ([29e9738](https://github.com/didi/LogicFlow/commit/29e97388e765d17faaa17c8633b0408681435e06))
1294
-
1295
- ## [0.7.6](https://github.com/didi/LogicFlow/compare/@logicflow/core@0.7.5...@logicflow/core@0.7.6) (2021-11-11)
1296
-
1297
- ### Bug Fixes
1298
-
1299
- - custom element id ([cff9c18](https://github.com/didi/LogicFlow/commit/cff9c180e12df91de8921aa083e0bbafe4afc641))
1300
-
1301
- ## [0.7.5](https://github.com/didi/LogicFlow/compare/@logicflow/core@0.7.4...@logicflow/core@0.7.5) (2021-11-08)
1302
-
1303
- ### Bug Fixes
1304
-
1305
- - **core:** update text position after draging edge ([e430c14](https://github.com/didi/LogicFlow/commit/e430c14c3a0edec26ad0ba24afa7da70aa90421e))
1306
-
1307
- ## [0.7.4](https://github.com/didi/LogicFlow/compare/@logicflow/core@0.7.3...@logicflow/core@0.7.4) (2021-11-04)
1308
-
1309
- ### Bug Fixes
1310
-
1311
- - **core:** ts error ([83db114](https://github.com/didi/LogicFlow/commit/83db114f495307aa039ff45d743336f124a32221))
1312
-
1313
- ### Features
1314
-
1315
- - **core:** add anchor properties ([21b245e](https://github.com/didi/LogicFlow/commit/21b245ef858761babd42a5de558a77a39ff1e6d6))
1316
- - **core:** adjust edge ([0490ae0](https://github.com/didi/LogicFlow/commit/0490ae08d6d681dfbcf19bf678c46e2179d98cb8))
1317
- - **core:** support anchor setting properties ([ecf7aaa](https://github.com/didi/LogicFlow/commit/ecf7aaa0daa963c08fde6f2c64de0790a4133f8c))
1318
-
1319
- ## [0.7.3](https://github.com/didi/LogicFlow/compare/@logicflow/core@0.7.2...@logicflow/core@0.7.3) (2021-11-03)
1320
-
1321
- ### Bug Fixes
1322
-
1323
- - edge setProperties observable ([9517468](https://github.com/didi/LogicFlow/commit/951746878c2bbd27fc9dae7f13fa0990a2a3ba3d))
1324
- - remove both sourceRuleResults and targetRuleResults ([1ba045a](https://github.com/didi/LogicFlow/commit/1ba045aa7c298989f214eecede053a9d507dd0a8))
1325
- - **core:** update evenetName of edge adjustment, fixes [#330](https://github.com/didi/LogicFlow/issues/330) ([a973de2](https://github.com/didi/LogicFlow/commit/a973de2b70caea9b441039e0659df51401aa321b))
1326
-
1327
- ### Features
1328
-
1329
- - **core:** adjust edge startPoint or endPoint ([db96695](https://github.com/didi/LogicFlow/commit/db966950e59b5166e704ccd958e837e2fa3e1f6a))
1330
-
1331
- ## [0.7.2](https://github.com/didi/LogicFlow/compare/@logicflow/core@0.7.1...@logicflow/core@0.7.2) (2021-10-22)
1332
-
1333
- **Note:** Version bump only for package @logicflow/core
1334
-
1335
- ## [0.7.1](https://github.com/didi/LogicFlow/compare/@logicflow/core@0.7.1-alpha.0...@logicflow/core@0.7.1) (2021-10-21)
1336
-
1337
- **Note:** Version bump only for package @logicflow/core
1338
-
1339
- ## [0.7.1-alpha.0](https://github.com/didi/LogicFlow/compare/@logicflow/core@0.6.16...@logicflow/core@0.7.1-alpha.0) (2021-10-21)
1340
-
1341
- ### Bug Fixes
1342
-
1343
- - drag line not toFront ([f1db31d](https://github.com/didi/LogicFlow/commit/f1db31d5c95c339493090907af517481cefba987))
1344
- - this.setState warning ([7f7c498](https://github.com/didi/LogicFlow/commit/7f7c498dd50e25b44a291b3e5d96554144116f40))
1345
-
1346
- ### Features
1347
-
1348
- - add change graph&node&edge id function ([13d1c0b](https://github.com/didi/LogicFlow/commit/13d1c0b0b6814dc9b65bd74a9bb704b633499554))
1349
- - add increase overlap mode ([06068e4](https://github.com/didi/LogicFlow/commit/06068e4caa11544b709697d101063838020dc4d1))
1350
- - add text background ([dd1a89f](https://github.com/didi/LogicFlow/commit/dd1a89fbb84bfc74e9bf7db251b546a03b783838))
1351
- - avoid add id in dom ([37cccb6](https://github.com/didi/LogicFlow/commit/37cccb6fc75451b25254c1ccda4c581f2bb5ce51)), closes [#309](https://github.com/didi/LogicFlow/issues/309)
1352
- - remove object attributes ([a242500](https://github.com/didi/LogicFlow/commit/a242500edf2e2e197cd0a015d2e490e474ff585e))
1353
- - save data include zIndex in increase mode ([cb79054](https://github.com/didi/LogicFlow/commit/cb7905489ee097bf2b157d3202527f7e5a6f39c9))
1354
-
1355
- ## [0.6.16](https://github.com/didi/LogicFlow/compare/@logicflow/core@0.6.13...@logicflow/core@0.6.16) (2021-09-04)
1356
-
1357
- ### Bug Fixes
1358
-
1359
- - **core:** isElementInArea fix ([9e8bd62](https://github.com/didi/LogicFlow/commit/9e8bd621e28ff9563f1a02e10708a6e421a01870))
1360
- - **examples:** modified examples page title ([3a9ae5e](https://github.com/didi/LogicFlow/commit/3a9ae5ed100405378ed468574ca61445bef44035))
1361
- - isElementInArea bugfix ([2050510](https://github.com/didi/LogicFlow/commit/2050510c98684266e152d7d733694c543bbb9c28))
1362
-
1363
- ## [0.6.13](https://github.com/didi/LogicFlow/compare/@logicflow/core@0.6.12...@logicflow/core@0.6.13) (2021-08-19)
1364
-
1365
- ### Bug Fixes
1366
-
1367
- - silent mode support recovery ([7c17585](https://github.com/didi/LogicFlow/commit/7c17585767426aad508ff3b14434ec5b05850ec5))
1368
- - text undefined cause undraggble ([640ec9e](https://github.com/didi/LogicFlow/commit/640ec9ef98a3fc73206b607e21a7294314d826f3))
1369
-
1370
- ### Features
1371
-
1372
- - add config nodeSelectedOutline ([9b91cd0](https://github.com/didi/LogicFlow/commit/9b91cd0b5ab3a30bfe0575b6f297d59719f3a2d1))
1373
- - group ([2c75b81](https://github.com/didi/LogicFlow/commit/2c75b810d2bda185e37e029a5fe28503f299e412))
1374
- - merge master ([cead588](https://github.com/didi/LogicFlow/commit/cead5887df27bd7624c46000966257a73b5a95e0))
1375
- - mvp demo ([12d5e96](https://github.com/didi/LogicFlow/commit/12d5e9684bad4a465e1b57a1217aceed73453d59))
1376
- - ๅขžๅŠ ็งปๅŠจ่Š‚็‚น่ทณ่ฟ‡ๆ ก้ชŒ่ง„ๅˆ™ๅŠŸ่ƒฝ ([659b83e](https://github.com/didi/LogicFlow/commit/659b83eb8ab6c8f3a1f60333e11e24777795a14b))
1377
-
1378
- ## [0.6.12](https://github.com/didi/LogicFlow/compare/@logicflow/core@0.6.5...@logicflow/core@0.6.12) (2021-08-17)
1379
-
1380
- ### Bug Fixes
1381
-
1382
- - editconfig default type ([575e566](https://github.com/didi/LogicFlow/commit/575e566d528015ecdb5769700fb06194a34a4ad1))
1383
- - isArray not fit mobx array ([8392165](https://github.com/didi/LogicFlow/commit/839216534a7c80551a417617330d30e79121aa0c))
1384
- - **core:** code optimization ([b96dfb4](https://github.com/didi/LogicFlow/commit/b96dfb47b9ca0fa4f7182334c77db341b0515711))
1385
- - **core:** nodeText auto wrap build:type bugfix ([fb43025](https://github.com/didi/LogicFlow/commit/fb43025ed921f2f208950e476aebe640f9fda187))
1386
- - **extension:** snapshot forginObject in svg fix ([ef937a0](https://github.com/didi/LogicFlow/commit/ef937a08f2f4898b99376d06c25ee57c3f81fda2))
1387
-
1388
- ### Features
1389
-
1390
- - add custom TextPosition ([352047d](https://github.com/didi/LogicFlow/commit/352047d942cc505f36272ba1a64bae33c13b5897))
1391
- - edgemodel support override getTextPosition ([5ede6f2](https://github.com/didi/LogicFlow/commit/5ede6f295c128c5f8c87af789105576f1f04ba57))
1392
- - set anchors id ([17c4105](https://github.com/didi/LogicFlow/commit/17c4105474084b01c656298b30c28d0cd2908a36))
1393
- - **core:** nodeText auto wrap ([f260d47](https://github.com/didi/LogicFlow/commit/f260d4700cdc86194a3a738fec3df27b9871cc10))
1394
- - **core:** nodeText auto wrap lineHeight ([fcc64c3](https://github.com/didi/LogicFlow/commit/fcc64c32a5ebccd74f64f51042d7bb0dfdf680ad))
1395
- - **core:** text auto wrap for customize element ([ddf51c5](https://github.com/didi/LogicFlow/commit/ddf51c561a28a9555a64cc146abca7e58ee46d12))
1396
- - ๆ–ฐๅขžmove่Š‚็‚น้‡‡็”จ็ปๅฏนไฝ็ฝฎ ([c36d604](https://github.com/didi/LogicFlow/commit/c36d604f52ad3bfed0316d99b3dc0538f61ab339))
1397
-
1398
- ## [0.6.8](https://github.com/didi/LogicFlow/compare/@logicflow/core@0.6.5...@logicflow/core@0.6.8) (2021-08-06)
1399
-
1400
- ### Bug Fixes
1401
-
1402
- - **core:** code optimization ([b96dfb4](https://github.com/didi/LogicFlow/commit/b96dfb47b9ca0fa4f7182334c77db341b0515711))
1403
- - **core:** nodeText auto wrap build:type bugfix ([fb43025](https://github.com/didi/LogicFlow/commit/fb43025ed921f2f208950e476aebe640f9fda187))
1404
- - **extension:** snapshot forginObject in svg fix ([ef937a0](https://github.com/didi/LogicFlow/commit/ef937a08f2f4898b99376d06c25ee57c3f81fda2))
1405
-
1406
- ### Features
1407
-
1408
- - edgemodel support override getTextPosition ([5ede6f2](https://github.com/didi/LogicFlow/commit/5ede6f295c128c5f8c87af789105576f1f04ba57))
1409
- - set anchors id ([17c4105](https://github.com/didi/LogicFlow/commit/17c4105474084b01c656298b30c28d0cd2908a36))
1410
- - **core:** nodeText auto wrap ([f260d47](https://github.com/didi/LogicFlow/commit/f260d4700cdc86194a3a738fec3df27b9871cc10))
1411
- - **core:** nodeText auto wrap lineHeight ([fcc64c3](https://github.com/didi/LogicFlow/commit/fcc64c32a5ebccd74f64f51042d7bb0dfdf680ad))
1412
- - **core:** text auto wrap for customize element ([ddf51c5](https://github.com/didi/LogicFlow/commit/ddf51c561a28a9555a64cc146abca7e58ee46d12))
1413
- - ๆ–ฐๅขžmove่Š‚็‚น้‡‡็”จ็ปๅฏนไฝ็ฝฎ ([c36d604](https://github.com/didi/LogicFlow/commit/c36d604f52ad3bfed0316d99b3dc0538f61ab339))
1414
-
1415
- ## [0.6.5](https://github.com/towersxu/logicflow/compare/@logicflow/core@0.6.4...@logicflow/core@0.6.5) (2021-07-29)
1416
-
1417
- ### Bug Fixes
1418
-
1419
- - remove unnessage import ([cd02497](https://github.com/towersxu/logicflow/commit/cd024976b657c0b964e55cdcce1f086f395e2c8c))
1420
-
1421
- ### Features
1422
-
1423
- - add node:dnd-drag event ([bf8a351](https://github.com/towersxu/logicflow/commit/bf8a3515c458014c33cc7fdc8f366c4d16b226b8))
1424
-
1425
- ## [0.6.4](https://github.com/towersxu/logicflow/compare/@logicflow/core@0.6.2...@logicflow/core@0.6.4) (2021-07-28)
1426
-
1427
- ### Bug Fixes
1428
-
1429
- - codesandbox import css ([a0eb60a](https://github.com/towersxu/logicflow/commit/a0eb60a3c61b152b9e06ba043d1e6eb5f2b00e95))
1430
-
1431
- ### Features
1432
-
1433
- - all core style use one css ([3528505](https://github.com/towersxu/logicflow/commit/3528505c4be7305c10cf5dd4ab4df8dab599f6ae))
1434
-
1435
- ## [0.6.3](https://github.com/towersxu/logicflow/compare/@logicflow/core@0.6.2...@logicflow/core@0.6.3) (2021-07-28)
1436
-
1437
- ### Bug Fixes
1438
-
1439
- - codesandbox import css ([e3f71cc](https://github.com/towersxu/logicflow/commit/e3f71cc1bf62f6bbc23dc3cac2deccfde83d83a1))
1440
-
1441
- ## [0.6.2](https://github.com/towersxu/logicflow/compare/@logicflow/core@0.6.1...@logicflow/core@0.6.2) (2021-07-28)
1442
-
1443
- ### Bug Fixes
1444
-
1445
- - text undefined cause undraggble ([ae4f1db](https://github.com/towersxu/logicflow/commit/ae4f1db28efa5d7a5194be92df3922d7f6fdd7c5))
1446
- - ไฟฎๅคgetSelectElementsๆ–นๆณ•,ๅณไฝฟ้€‰ไธญๅ…ƒ็ด ,ไฝ†ๆ˜ฏไพ็„ถ่ฟ”ๅ›žไธบundefined็š„bug ([12df9f2](https://github.com/towersxu/logicflow/commit/12df9f26020c3eeda0fa18c4f23d09ab1566c1cc))
1447
-
1448
- ## [0.6.1](https://github.com/towersxu/logicflow/compare/@logicflow/core@0.6.0...@logicflow/core@0.6.1) (2021-07-19)
1449
-
1450
- ### Bug Fixes
1451
-
1452
- - setProperties not observable in htmlNode ([9b47918](https://github.com/towersxu/logicflow/commit/9b47918a97b9d7b8df53c876dcea51d88d82ac4f))
1453
-
1454
- # [0.6.0](https://github.com/towersxu/logicflow/compare/@logicflow/core@0.4.11...@logicflow/core@0.6.0) (2021-07-14)
1455
-
1456
- ### Bug Fixes
1457
-
1458
- - [#211](https://github.com/towersxu/logicflow/issues/211) ([3347137](https://github.com/towersxu/logicflow/commit/33471376ec4994eece9acf5266fe50d411aa99cd))
1459
- - new selection select ([4fc34d4](https://github.com/towersxu/logicflow/commit/4fc34d41e1000629362c141a8c6a2eb033ecf17d))
1460
- - reactive html node ([0909bd3](https://github.com/towersxu/logicflow/commit/0909bd3d423d0bb9ed72a8eb36dd69054810ba84))
1461
- - use html-node as model type ([944b895](https://github.com/towersxu/logicflow/commit/944b895e640a699d6ce0bdedd2d2ac04779489d1))
1462
- - use pluginName replace name ([2b2706a](https://github.com/towersxu/logicflow/commit/2b2706a4596eaee5fb6e88328a219ebc9366505c))
1463
-
1464
- ### Features
1465
-
1466
- - add createUniqueId API ([edaf244](https://github.com/towersxu/logicflow/commit/edaf244cd3e2ae38ad58a61c83046edb1d7e5952))
1467
- - add html node ([373db63](https://github.com/towersxu/logicflow/commit/373db637fb8cca0416ff944dc5beda23f3082bf3))
1468
- - add idGenerator global option ([b6fd441](https://github.com/towersxu/logicflow/commit/b6fd4417e9d99dfd319889fdce1c6da7a1abcfb9))
1469
- - html node support old register method ([d83821b](https://github.com/towersxu/logicflow/commit/d83821b694d45a9ad968e9d51adb7e79e402c610))
1470
- - text:update event emit element data ([44a0d5d](https://github.com/towersxu/logicflow/commit/44a0d5d9a7ae77e28021208d7ecf2d7ef5a0707c))
1471
-
1472
- # [0.5.0](https://github.com/towersxu/logicflow/compare/@logicflow/core@0.4.11...@logicflow/core@0.5.0) (2021-06-18)
1473
-
1474
- ### Bug Fixes
1475
-
1476
- - [#211](https://github.com/towersxu/logicflow/issues/211) ([3347137](https://github.com/towersxu/logicflow/commit/33471376ec4994eece9acf5266fe50d411aa99cd))
1477
- - use html-node as model type ([944b895](https://github.com/towersxu/logicflow/commit/944b895e640a699d6ce0bdedd2d2ac04779489d1))
1478
- - use pluginName replace name ([8bf1a08](https://github.com/towersxu/logicflow/commit/8bf1a0892e61f619204b7b621902f36f9ad3e204))
1479
-
1480
- ### Features
1481
-
1482
- - add html node ([373db63](https://github.com/towersxu/logicflow/commit/373db637fb8cca0416ff944dc5beda23f3082bf3))
1483
- - text:update event emit element data ([36f1f2a](https://github.com/towersxu/logicflow/commit/36f1f2a5d57c70dada007a7ec92782d994528e5e))
1484
-
1485
- ## [0.4.15](https://github.com/towersxu/logicflow/compare/@logicflow/core@0.4.11...@logicflow/core@0.4.15) (2021-06-17)
1486
-
1487
- ### Bug Fixes
1488
-
1489
- - [#211](https://github.com/towersxu/logicflow/issues/211) ([3347137](https://github.com/towersxu/logicflow/commit/33471376ec4994eece9acf5266fe50d411aa99cd))
1490
- - use html-node as model type ([944b895](https://github.com/towersxu/logicflow/commit/944b895e640a699d6ce0bdedd2d2ac04779489d1))
1491
-
1492
- ### Features
1493
-
1494
- - add html node ([373db63](https://github.com/towersxu/logicflow/commit/373db637fb8cca0416ff944dc5beda23f3082bf3))
1495
-
1496
- ## [0.4.14](https://github.com/towersxu/logicflow/compare/@logicflow/core@0.4.11...@logicflow/core@0.4.14) (2021-06-16)
1497
-
1498
- **Note:** Version bump only for package @logicflow/core
1499
-
1500
- ## [0.4.13](https://github.com/towersxu/logicflow/compare/@logicflow/core@0.4.11...@logicflow/core@0.4.13) (2021-06-09)
1501
-
1502
- **Note:** Version bump only for package @logicflow/core
1503
-
1504
- ## [0.4.11](https://github.com/towersxu/logicflow/compare/@logicflow/core@0.4.9...@logicflow/core@0.4.11) (2021-05-31)
1505
-
1506
- **Note:** Version bump only for package @logicflow/core
1507
-
1508
- ## [0.4.9](https://github.com/towersxu/logicflow/compare/@logicflow/core@0.4.7...@logicflow/core@0.4.9) (2021-05-28)
1509
-
1510
- ### Bug Fixes
1511
-
1512
- - ไฟฎๅคๆ‹–ๅŠจ่งฆๅ‘็‚นๅ‡ปไบ‹ไปถ็š„้—ฎ้ข˜ ([19fd122](https://github.com/towersxu/logicflow/commit/19fd1226f0d26ccfddbe0df405907412e95b4535))
1513
-
1514
- ## [0.4.8](https://github.com/towersxu/logicflow/compare/@logicflow/core@0.4.7...@logicflow/core@0.4.8) (2021-05-25)
1515
-
1516
- ### Bug Fixes
1517
-
1518
- - ไฟฎๅคๆ‹–ๅŠจ่งฆๅ‘็‚นๅ‡ปไบ‹ไปถ็š„้—ฎ้ข˜ ([19fd122](https://github.com/towersxu/logicflow/commit/19fd1226f0d26ccfddbe0df405907412e95b4535))
1519
-
1520
- ## [0.4.7](https://github.com/towersxu/logicflow/compare/@logicflow/core@0.4.4...@logicflow/core@0.4.7) (2021-05-24)
1521
-
1522
- ### Features
1523
-
1524
- - ่‡ชๅฎšไน‰่Š‚็‚นmodelๆ”ฏๆŒ่Žทๅ–graphModel ([4ae15aa](https://github.com/towersxu/logicflow/commit/4ae15aa243ae91184145be0df0cbb42baeb88de4))
1525
-
1526
- ## [0.4.6](https://github.com/towersxu/logicflow/compare/@logicflow/core@0.4.5...@logicflow/core@0.4.6) (2021-05-21)
1527
-
1528
- **Note:** Version bump only for package @logicflow/core
1529
-
1530
- ## [0.4.5](https://github.com/towersxu/logicflow/compare/@logicflow/core@0.4.4...@logicflow/core@0.4.5) (2021-05-21)
1531
-
1532
- ### Features
1533
-
1534
- - ่‡ชๅฎšไน‰่Š‚็‚นmodelๆ”ฏๆŒ่Žทๅ–graphModel ([71927f6](https://github.com/towersxu/logicflow/commit/71927f6947d27422bb0157898271d18d9ed2c84b))
1535
-
1536
- ## [0.4.4](https://github.com/towersxu/logicflow/compare/@logicflow/core@0.4.3...@logicflow/core@0.4.4) (2021-05-19)
1537
-
1538
- ### Bug Fixes
1539
-
1540
- - extenion render bind self instence ([afac922](https://github.com/towersxu/logicflow/commit/afac92287bf1c15b10151764c0a3fe0e4251be63))
1541
-
1542
- ### Features
1543
-
1544
- - dndpanel support properties, related [#181](https://github.com/towersxu/logicflow/issues/181) ([765416c](https://github.com/towersxu/logicflow/commit/765416c6051559f529cb5af1fe9d5d14304f3cf1))
1545
-
1546
- ## [0.4.3](https://github.com/towersxu/logicflow/compare/@logicflow/core@0.4.2...@logicflow/core@0.4.3) (2021-05-16)
1547
-
1548
- ### Bug Fixes
1549
-
1550
- - mobx4 anchorsOffset it`s not an array ([4e05895](https://github.com/towersxu/logicflow/commit/4e05895fec0a00313f851cb5afa350b5c849d408))
1551
- - remove unnecessary console ([102bd81](https://github.com/towersxu/logicflow/commit/102bd8179d5dd5f84e677ad39b209f49d2ee3a1b))
1552
- - twoPointDistance methods support negative number ([3f9b719](https://github.com/towersxu/logicflow/commit/3f9b719bbc836c6d6d050d12d7c7c908c19b0bc6))
1553
-
1554
- ### Features
1555
-
1556
- - **extension:** endEvent node hide anchor ([6e2333f](https://github.com/towersxu/logicflow/commit/6e2333f2af8a214530a2c2ed3c1dc5597fcd68f1))
1557
-
1558
- ## [0.4.2](https://github.com/towersxu/logicflow/compare/@logicflow/core@0.3.6...@logicflow/core@0.4.2) (2021-05-13)
1559
-
1560
- ### Bug Fixes
1561
-
1562
- - build support ie ([4a90d5e](https://github.com/towersxu/logicflow/commit/4a90d5e0bb20f8dfd2f4ab88db5c691894521298))
1563
- - ie11 transform no work ([f776592](https://github.com/towersxu/logicflow/commit/f776592b2d16675514e4f0e876b888d9ea14ebe9))
1564
- - occasionally read isAllPass of undefined ([dac3d41](https://github.com/towersxu/logicflow/commit/dac3d4118aff2699497512ca799912deaa0b4930))
1565
- - **core:** export function in util ([5ecae8a](https://github.com/towersxu/logicflow/commit/5ecae8a4d226a2a4e196461aef2e848a6ba7bb6c))
1566
- - save register API & add registerElement API ([916f6be](https://github.com/towersxu/logicflow/commit/916f6be2be6f16fde9f385010f3291d82ded4a23))
1567
- - update registerElement API in extension ([df25d11](https://github.com/towersxu/logicflow/commit/df25d110eee7051ee9357b11f669d80a3de1e0ea))
1568
-
1569
- ### Features
1570
-
1571
- - register support config ([074c584](https://github.com/towersxu/logicflow/commit/074c58443df30b8d0a0beeee8deb1d0866f90f66))
1572
- - support class as extension ([ac66e9f](https://github.com/towersxu/logicflow/commit/ac66e9ffd6709a605c48b61281be102429524b82))
1573
- - support ie11 ([46df695](https://github.com/towersxu/logicflow/commit/46df6951b1af5b1e46bea4ed084aa6abd5ebddf0))
1574
- - type ([a14c1c2](https://github.com/towersxu/logicflow/commit/a14c1c2b540700dc1f7ca93b1b2abbf542b896e4))
1575
- - **extension:** rect node resize ([399afb5](https://github.com/towersxu/logicflow/commit/399afb545b421345ca3ea823d60f2d47db1e0d72))
1576
-
1577
- ## [0.4.1-alpha.1](https://github.com/towersxu/logicflow/compare/@logicflow/core@0.4.0...@logicflow/core@0.4.1-alpha.1) (2021-05-12)
1578
-
1579
- ### Bug Fixes
1580
-
1581
- - ie11 transform no work ([95a069b](https://github.com/towersxu/logicflow/commit/95a069bb18faba2bd3efc849217ee4ce019fed23))
1582
- - occasionally read isAllPass of undefined ([e413970](https://github.com/towersxu/logicflow/commit/e41397064f208c8f9daa76399397a69bdf4a133f))
1583
- - **core:** export function in util ([24655f3](https://github.com/towersxu/logicflow/commit/24655f3f2d4d539925847e3ced47e16c503d6ebb))
1584
- - **extension:** merge v0.4 ([3ce2a7c](https://github.com/towersxu/logicflow/commit/3ce2a7c13e02828c701b523135c0275011c592c8))
1585
-
1586
- ### Features
1587
-
1588
- - support class as extension ([e3c40d1](https://github.com/towersxu/logicflow/commit/e3c40d1e3e648b58597f33cb8330b42ce6d76079))
1589
- - **extension:** rect node resize ([9d25526](https://github.com/towersxu/logicflow/commit/9d25526c8bdbf0a64ecf4b66d5b755e498ccc2cd))
1590
-
1591
- ## [0.4.1-alpha.0](https://github.com/towersxu/logicflow/compare/@logicflow/core@0.4.0...@logicflow/core@0.4.1-alpha.0) (2021-05-06)
1592
-
1593
- ### Features
1594
-
1595
- - support class as extension ([e3c40d1](https://github.com/towersxu/logicflow/commit/e3c40d1e3e648b58597f33cb8330b42ce6d76079))
1596
-
1597
- # [0.4.0](https://github.com/towersxu/logicflow/compare/@logicflow/core@0.3.6...@logicflow/core@0.4.0) (2021-04-30)
1598
-
1599
- ### Bug Fixes
1600
-
1601
- - save register API & add registerElement API ([53304b3](https://github.com/towersxu/logicflow/commit/53304b3c5ad7ad78cc1ae1a282879614f881cf80))
1602
- - update registerElement API in extension ([7798dbb](https://github.com/towersxu/logicflow/commit/7798dbbeef4b4d021d02b5d21d55f81ef7161d1e))
1603
-
1604
- ### Features
1605
-
1606
- - register support config ([cae7c98](https://github.com/towersxu/logicflow/commit/cae7c9807eff77fcad9de2907c286c03b01b6aa9))
1607
- - support ie11 ([902e813](https://github.com/towersxu/logicflow/commit/902e81394a2d5945d7ceecfee58875f57f938fc8))
1608
-
1609
- ## [0.3.6](https://github.com/towersxu/logicflow/compare/@logicflow/core@0.3.4...@logicflow/core@0.3.6) (2021-04-29)
1610
-
1611
- ### Bug Fixes
1612
-
1613
- - add more warning ([12f4bb3](https://github.com/towersxu/logicflow/commit/12f4bb36e34733855aeb760a5874fedd09b411de))
1614
- - change node type line ([31602bb](https://github.com/towersxu/logicflow/commit/31602bbbfb5282ef9b2d80d18c0a7492ed19f907))
1615
-
1616
- ### Features
1617
-
1618
- - add change nodetype ([15878a1](https://github.com/towersxu/logicflow/commit/15878a1c8be6f9117c925792c66dcdbfd1b0aa77))
1619
- - **extension:** drop node in polyline ([94480ac](https://github.com/towersxu/logicflow/commit/94480ac5b2b8d989a2310a3b4c25e08abe9d10b6))
1620
-
1621
- ## [0.3.5](https://github.com/towersxu/logicflow/compare/@logicflow/core@0.3.4...@logicflow/core@0.3.5) (2021-04-29)
1622
-
1623
- ### Bug Fixes
1624
-
1625
- - add more warning ([12f4bb3](https://github.com/towersxu/logicflow/commit/12f4bb36e34733855aeb760a5874fedd09b411de))
1626
-
1627
- ### Features
1628
-
1629
- - add change nodetype ([15878a1](https://github.com/towersxu/logicflow/commit/15878a1c8be6f9117c925792c66dcdbfd1b0aa77))
1630
- - **extension:** drop node in polyline ([94480ac](https://github.com/towersxu/logicflow/commit/94480ac5b2b8d989a2310a3b4c25e08abe9d10b6))
1631
-
1632
- ## [0.3.4](https://github.com/towersxu/logicflow/compare/@logicflow/core@0.3.3...@logicflow/core@0.3.4) (2021-04-22)
1633
-
1634
- **Note:** Version bump only for package @logicflow/core
1635
-
1636
- ## [0.3.3](https://github.com/towersxu/logicflow/compare/@logicflow/core@0.3.2...@logicflow/core@0.3.3) (2021-04-21)
1637
-
1638
- ### Bug Fixes
1639
-
1640
- - avoid reObserver view ([996fd65](https://github.com/towersxu/logicflow/commit/996fd6515d78b5331b08fd84025a148b45026cd9))
1641
- - drag text not allowed propagation ([9d6cc0c](https://github.com/towersxu/logicflow/commit/9d6cc0cc1c64fdc134e83f37794ca568ffbfca25))
1642
- - types ([37491ca](https://github.com/towersxu/logicflow/commit/37491cab07d7712aa4b94326424af3ded5031f75))
1643
-
1644
- ## [0.3.2](https://github.com/towersxu/logicflow/compare/@logicflow/core@0.3.1...@logicflow/core@0.3.2) (2021-04-20)
1645
-
1646
- ### Bug Fixes
1647
-
1648
- - show anchors when extend baseNode ([12bd0db](https://github.com/towersxu/logicflow/commit/12bd0db574b18b19aed8134b9e508f3c0a9ef6f4))
1649
- - show anchors when extend baseNode ([d78d7df](https://github.com/towersxu/logicflow/commit/d78d7dfabbdea171a104a22b48ad6e8662230c21))
1650
-
1651
- ### Features
1652
-
1653
- - **core:** add clearData funcion in Logicflow ([2a5b345](https://github.com/towersxu/logicflow/commit/2a5b3450b88fd7d831bc25810726fa4de4255033))
1654
-
1655
- ## [0.3.1](https://github.com/towersxu/logicflow/compare/@logicflow/core@0.3.0...@logicflow/core@0.3.1) (2021-04-19)
1656
-
1657
- ### Bug Fixes
1658
-
1659
- - delete useless code ([8680810](https://github.com/towersxu/logicflow/commit/8680810fdb6600994bcf3b94e11061dad176bc51))
1660
- - format edge text value ([cc8aa22](https://github.com/towersxu/logicflow/commit/cc8aa224d158f547589a2e1f9e079d064df0b9e8))
1661
-
1662
- # [0.3.0](https://github.com/towersxu/logicflow/compare/@logicflow/core@0.3.0-alpha.5...@logicflow/core@0.3.0) (2021-04-13)
1663
-
1664
- ### Bug Fixes
1665
-
1666
- - add hoverBackground ([aca87e6](https://github.com/towersxu/logicflow/commit/aca87e6feafb7c0745a192b110533fe96e27edc2))
1667
- - anchor hover style not hide ([2ea9e54](https://github.com/towersxu/logicflow/commit/2ea9e54b5df5030388e2cfbaca39680a88a7387a))
1668
- - edge updateText position ([e333787](https://github.com/towersxu/logicflow/commit/e3337878bed766eaab9345c9110e202cc477a56c))
1669
- - invalid setTheme for rect size ([4ed7e1a](https://github.com/towersxu/logicflow/commit/4ed7e1af69ddf31956e454748da4ea5adcb03be6))
1670
- - save input value when swich edit element ([972e4cd](https://github.com/towersxu/logicflow/commit/972e4cdaba7f7388fe59cb572ff598b976275c0b))
1671
- - **all:** add rimraf ([c526ad8](https://github.com/towersxu/logicflow/commit/c526ad840b1e2620a3221d416f7a03e9c6d3583c))
1672
- - **core:** fix the bug when drag edges ([36aed3a](https://github.com/towersxu/logicflow/commit/36aed3a455e9bfd04ad5a0b4aae294863184069c))
1673
-
1674
- ### Features
1675
-
1676
- - **extension:** curved-edge ([1731b10](https://github.com/towersxu/logicflow/commit/1731b10e3e65ccf226b48d4fb572d90d2ad10dec))
1677
- - add the height field for hoverBackground and background ([4d38c8a](https://github.com/towersxu/logicflow/commit/4d38c8aadcd21e02f21f1b822c6a7832445b24bd))
1678
- - add updateAttributes API ([3112b69](https://github.com/towersxu/logicflow/commit/3112b6917998f6cbb2e306b1862eb3e2c4bd8e8f))
1679
- - added missing element tips ([71674cd](https://github.com/towersxu/logicflow/commit/71674cddc6096170fdc88d88b02a4d482f3c2f43))
1680
- - support setting line of dashes for edges ([4f39909](https://github.com/towersxu/logicflow/commit/4f39909af2260ff0ea696dd2db04ee4e5713b4bc))
1681
-
1682
- # [0.3.0-alpha.5](https://github.com/towersxu/logicflow/compare/@logicflow/core@0.3.0-alpha.4...@logicflow/core@0.3.0-alpha.5) (2021-03-30)
1683
-
1684
- ### Features
1685
-
1686
- - edge text support hover style ([ffc75d4](https://github.com/towersxu/logicflow/commit/ffc75d45e0ef42b9dbca1be489fa749186aa81b0))
1687
-
1688
- # [0.3.0-alpha.4](https://github.com/towersxu/logicflow/compare/@logicflow/core@0.3.0-alpha.2...@logicflow/core@0.3.0-alpha.4) (2021-03-24)
1689
-
1690
- ### Bug Fixes
1691
-
1692
- - the text content misalignment caused by switching nodes ([38193f7](https://github.com/towersxu/logicflow/commit/38193f7a28cb004c18dc7717f854d83269bf4194))
1693
- - **extension:** mini-map default disable control & selection-select ([297cecf](https://github.com/towersxu/logicflow/commit/297cecf4637ca7a045619a10cd9298feacc631ea))
1694
-
1695
- # [0.3.0-alpha.3](https://github.com/towersxu/logicflow/compare/@logicflow/core@0.3.0-alpha.2...@logicflow/core@0.3.0-alpha.3) (2021-03-23)
1696
-
1697
- ### Bug Fixes
1698
-
1699
- - **extension:** mini-map default disable control & selection-select ([297cecf](https://github.com/towersxu/logicflow/commit/297cecf4637ca7a045619a10cd9298feacc631ea))
1700
-
1701
- # [0.3.0-alpha.2](https://github.com/towersxu/logicflow/compare/@logicflow/core@0.3.0-alpha.1...@logicflow/core@0.3.0-alpha.2) (2021-03-22)
1702
-
1703
- ### Bug Fixes
1704
-
1705
- - minimap extension custom disabled plugin ([3768d14](https://github.com/towersxu/logicflow/commit/3768d149b6a72e4c251e287432b6070dcbfabce6))
1706
- - move clone guard to shortcut ([c5643da](https://github.com/towersxu/logicflow/commit/c5643daa8ca7b2f905db81357444e5bba64a5ee7))
1707
-
1708
- ### Features
1709
-
1710
- - change cloneElements to addElements ([6c59d74](https://github.com/towersxu/logicflow/commit/6c59d749a53e5263f5cf630702453054347215f6))
1711
-
1712
- # [0.3.0-alpha.1](https://github.com/didi/LogicFlow/compare/@logicflow/core@0.3.0-alpha.0...@logicflow/core@0.3.0-alpha.1) (2021-03-19)
1713
-
1714
- ### Bug Fixes
1715
-
1716
- - custom shortcut replace default shortcut ([791a4e2](https://github.com/didi/LogicFlow/commit/791a4e20134ef251073e528b897a6568a38ae57f))
1717
- - vue reactive object side effect ([a2dc0f8](https://github.com/didi/LogicFlow/commit/a2dc0f86d920679df6a387985b36374c6c2aeb78))
1718
-
1719
- ### Features
1720
-
1721
- - add getSelectElements function ([d6b5a81](https://github.com/didi/LogicFlow/commit/d6b5a81a76ba59cac319cb01a3187caf0fb216ea))
1722
-
1723
- # [0.3.0-alpha.0](https://github.com/didi/LogicFlow/compare/@logicflow/core@0.2.9...@logicflow/core@0.3.0-alpha.0) (2021-03-18)
1724
-
1725
- ### Bug Fixes
1726
-
1727
- - ๐Ÿ› beforeClone is not be triggered by ctrl+v ([969ab8d](https://github.com/didi/LogicFlow/commit/969ab8d3e1f00bfaba2124389d5d48ce21c6f58f)), closes [#66](https://github.com/didi/LogicFlow/issues/66)
1728
- - ๐Ÿ› the incorrect way of anchor choice ([4811f65](https://github.com/didi/LogicFlow/commit/4811f6522ee7a817220ed472b1eb972dad562630))
1729
- - **core:** invalid style setting of snapline in setTheme function ([dc963d5](https://github.com/didi/LogicFlow/commit/dc963d5cb3480e2e469ce5cb46cc4fbf8975f73b))
1730
- - **core:** remove outline in container & copy incomplete elements ([370bbf5](https://github.com/didi/LogicFlow/commit/370bbf578416be6199fa4d4d424cb55fdb5c844c))
1731
- - **core:** select edge after mouseup event ([f24aafd](https://github.com/didi/LogicFlow/commit/f24aafdafbdb5ee3d9617df4600e71b70dda876e))
1732
- - **core:** trigger the edge:click and edge:dbclick with mousedown and mouseup ([b267188](https://github.com/didi/LogicFlow/commit/b267188c712e4ab363c958c4327d219634582641))
1733
-
1734
- ### Features
1735
-
1736
- - ๐ŸŽธ add anchorsOffset API ([f23317b](https://github.com/didi/LogicFlow/commit/f23317bf535222d3770ae39892071ca7d154df41))
1737
- - add mini-map extension ([fa621da](https://github.com/didi/LogicFlow/commit/fa621daf2cc6a05cd5265bfe5245f5424f97ae7e))
1738
- - custom active plugin & add updateText function ([c974e75](https://github.com/didi/LogicFlow/commit/c974e7521d8eb1395c9df63c5c5da8933e8a849a))
1739
- - extension add destroy property ([23e59e5](https://github.com/didi/LogicFlow/commit/23e59e5902976fced92ad67ddd72f74938113c96))
1740
- - resize node ([2bc595e](https://github.com/didi/LogicFlow/commit/2bc595eadea58e1597f730520b830efc41a0dac5))
1741
- - **core:** add disable extension config & extension need name ([8bd9355](https://github.com/didi/LogicFlow/commit/8bd93555b7f82eb30a4813c986e3e642c86578fb))
1742
- - **core:** add drap event ([746f5db](https://github.com/didi/LogicFlow/commit/746f5db4e5dcfd362f57524f2bfb40db2279030f))
1743
-
1744
- ## [0.2.9](https://github.com/didi/LogicFlow/compare/@logicflow/core@0.2.8...@logicflow/core@0.2.9) (2021-03-10)
1745
-
1746
- ### Bug Fixes
1747
-
1748
- - ๐Ÿ› no dbclick event was triggered when textEdit is false ([f295def](https://github.com/didi/LogicFlow/commit/f295def99aae5f92394056066884faf8d2967495))
1749
- - **core:** Fix the problem of invalid property settings in setProperties function ([3e28d4e](https://github.com/didi/LogicFlow/commit/3e28d4e8b0153830c8277bd81f0259374fa23b71))
1750
-
1751
- ## [0.2.8](https://github.com/didi/LogicFlow/compare/@logicflow/core@0.2.7...@logicflow/core@0.2.8) (2021-03-05)
1752
-
1753
- ### Bug Fixes
1754
-
1755
- - **core:** Compatible with the data of the vue project ([4d94215](https://github.com/didi/LogicFlow/commit/4d9421522444915ddb5534836c93ccf0b199481d))
1756
- - **core:** Fix the problem of invalid property settings in addNode and createEdge function ([54eb760](https://github.com/didi/LogicFlow/commit/54eb760b8e2d56fcc10ae1171427b275441e31c3))
1757
- - **core:** Pick standardized data in the constructor function of nodeModel ([fc6f6d7](https://github.com/didi/LogicFlow/commit/fc6f6d74968425e272b805c76692469dad449f53))
1758
- - ๐Ÿ› lack the outline style of edge ([babeaac](https://github.com/didi/LogicFlow/commit/babeaac2b6a4e9b864df0e740deddc9a6a21dfb9))
1759
- - ๐Ÿ› the render err of diamond ([01c85bb](https://github.com/didi/LogicFlow/commit/01c85bbee091222c3772dbf6cc3de282d2f7d097))
1760
-
1761
- ## [0.2.7](https://github.com/didi/LogicFlow/compare/@logicflow/core@0.2.6...@logicflow/core@0.2.7) (2021-03-01)
1762
-
1763
- ### Bug Fixes
1764
-
1765
- - ๐Ÿ› complete the type of nodes' common style ([971f63e](https://github.com/didi/LogicFlow/commit/971f63ec1b320f034263ab34e456eee970a3e06b))
1766
- - **core:** get vue project responsive data error ([e03d277](https://github.com/didi/LogicFlow/commit/e03d277b6cca2836f53f104f5e999208439a5fe0))
1767
-
1768
- ## [0.2.6](https://github.com/didi/LogicFlow/compare/@logicflow/core@0.2.4...@logicflow/core@0.2.6) (2021-03-01)
1769
-
1770
- ### Bug Fixes
1771
-
1772
- - **core:** immutable redo data ([7a5dac6](https://github.com/didi/LogicFlow/commit/7a5dac6d89b0b248a9055cacaa22dc423dc6c299))
1773
- - **extension:** ๐Ÿ›fix undo error when custom text position ([fc6e7d7](https://github.com/didi/LogicFlow/commit/fc6e7d767889e8bbdd542a3c8006e352a86121c4))
1774
- - ๐Ÿ› add the type of diamond class ([90f70b5](https://github.com/didi/LogicFlow/commit/90f70b5dd378af9f7c6ee3abca0c2ebf5cb8e4b3))
1775
-
1776
- ### Features
1777
-
1778
- - new plugin Selection & example ([2e4b489](https://github.com/didi/LogicFlow/commit/2e4b48958dff21617b6f7b08c9840deac0a178f0))
1779
- - **core:** add edit config update function ([695894c](https://github.com/didi/LogicFlow/commit/695894c4db9fa328d358be1d3917166b33aae990))
1780
- - **core:** copy paste and delete multiple selected elements ([4a5be86](https://github.com/didi/LogicFlow/commit/4a5be86c63c90b7c1c88e08e9d084e708307a80d))
1781
- - **core:** multiple elements drag moving ([a59065f](https://github.com/didi/LogicFlow/commit/a59065f7cebd745e2ba0e147c8356849384be9f9))
1782
- - **core:** support use meta key select multiple element ([e137f9f](https://github.com/didi/LogicFlow/commit/e137f9fdbdb6bf3f85c3f7ac9323785e445844c8))
1783
-
1784
- ## [0.2.4](https://github.com/didi/LogicFlow/compare/@logicflow/core@0.2.3...@logicflow/core@0.2.4) (2021-02-20)
1785
-
1786
- ### Bug Fixes
1787
-
1788
- - ๐Ÿ› fix error when moving edge ([9ac20c1](https://github.com/didi/LogicFlow/commit/9ac20c1c89a6909860e2de99eea2c333f2f4aa6c))
1789
-
1790
- ## [0.2.3](https://github.com/didi/LogicFlow/compare/@logicflow/core@0.2.2...@logicflow/core@0.2.3) (2021-02-19)
1791
-
1792
- ### Bug Fixes
1793
-
1794
- - **core:** print error when double click edge ([a890ef7](https://github.com/didi/LogicFlow/commit/a890ef7f81e559ef16da505568b1ddb94c7eb365))
1795
-
1796
- ## [0.2.2](https://github.com/didi/LogicFlow/compare/@logicflow/core@0.2.1...@logicflow/core@0.2.2) (2021-02-08)
1797
-
1798
- ### Bug Fixes
1799
-
1800
- - **core:** change the priority of events ([5373797](https://github.com/didi/LogicFlow/commit/53737978d109088a2aeac1b4492fcbd69d16ec35))
1801
-
1802
- ## [0.2.1](https://github.com/didi/LogicFlow/compare/@logicflow/core@0.1.0...@logicflow/core@0.2.1) (2021-02-08)
1803
-
1804
- ### Bug Fixes
1805
-
1806
- - **core:** fix anchor error ([7a30f23](https://github.com/didi/LogicFlow/commit/7a30f238bda918be25caa6e9646846f379042b3c))
1807
- - **core:** fix checking repeatedly verification rules ([f0efbf4](https://github.com/didi/LogicFlow/commit/f0efbf481eb254bdaf29fd25b29ee1ee495d439b))
1808
- - **core:** fix textEdit deviation ([17db629](https://github.com/didi/LogicFlow/commit/17db629500d3887f26779440582c3ce3567bdab6))
1809
- - **core:** move the tool overlay out of the graph ([fcc586d](https://github.com/didi/LogicFlow/commit/fcc586df6d9e8f5188fb6d87bdb86aa461950f98))
1810
- - **core:** optimize anchor selection ([19d5fe8](https://github.com/didi/LogicFlow/commit/19d5fe8bd7b886656ce4ec96acbc7bbbdfff1ce4))
1811
- - **core:** recovery ellipse size ([81e8ed3](https://github.com/didi/LogicFlow/commit/81e8ed396db0bc32c26a9961298ad4a535ed02ad))
1812
- - Spelling errors EdgeConifg -> EdgeConfig and EdgeConfig Repeat Definitions in type/index.ts ([401dfb5](https://github.com/didi/LogicFlow/commit/401dfb533e860d03b60ddfc6d9a006900af38c35))
1813
-
1814
- ### Features
1815
-
1816
- - **core:** add getPointByClient API ([983fa91](https://github.com/didi/LogicFlow/commit/983fa91cc70426f113c397ed89d75add50e634ad))
1817
- - **core:** add new configuration items ([66d562d](https://github.com/didi/LogicFlow/commit/66d562d90306c69d69f22823d174d11833cf70d0))
1818
- - **core:** Add stroke-dasharray vlaue to outline of node & edge ([4cb1bca](https://github.com/didi/LogicFlow/commit/4cb1bca0f5090de035adda717b9bb509c79753d7)), closes [#12](https://github.com/didi/LogicFlow/issues/12)
1819
- - **core:** Add the select function for logicflow ([6ae0671](https://github.com/didi/LogicFlow/commit/6ae067153cd2608018fd3da76bd6d00a08da4b3a))
1820
- - **core:** Create text for polyline at the double-click position ([ac7eeea](https://github.com/didi/LogicFlow/commit/ac7eeea0a3937350a4393500b24811352947fb49))
1821
- - **core:** support open text edit by double click anchor ([690d1d1](https://github.com/didi/LogicFlow/commit/690d1d1648237c06580f51439ec67e4d07931774))
1822
- - **core:** support setting hoverOutlineStrokeDash ([ad09324](https://github.com/didi/LogicFlow/commit/ad09324088cbb95d7bbe843cb4d745475cfeb92c))
1823
- - **core:** v0.2.0 ([f11d143](https://github.com/didi/LogicFlow/commit/f11d143a998ca68887f08e6ccd98604f165cec8a))
1824
- - **extension:** v0.2.0 ([ee67636](https://github.com/didi/LogicFlow/commit/ee676365b82d2d07d40cbc77e955eb3506690804))
1825
- - ๆ›ฟๆขๆ–‡ไปถๅคนๅ็งฐ ([9155d8a](https://github.com/didi/LogicFlow/commit/9155d8a7af3cd0aff983f8a036bd3ffafd0d4d56))
1826
-
1827
- # [0.2.0](https://github.com/didichuxing/LogicFlow/compare/@logicflow/core@0.1.0...@logicflow/core@0.2.0) (2021-02-01)
1828
-
1829
- ### Bug Fixes
1830
-
1831
- - Spelling errors EdgeConifg -> EdgeConfig and EdgeConfig Repeat Definitions in type/index.ts ([401dfb5](https://github.com/didichuxing/LogicFlow/commit/401dfb533e860d03b60ddfc6d9a006900af38c35))
1832
- - **core:** fix anchor error ([7a30f23](https://github.com/didichuxing/LogicFlow/commit/7a30f238bda918be25caa6e9646846f379042b3c))
1833
- - **core:** fix checking repeatedly verification rules ([f0efbf4](https://github.com/didichuxing/LogicFlow/commit/f0efbf481eb254bdaf29fd25b29ee1ee495d439b))
1834
- - **core:** move the tool overlay out of the graph ([fcc586d](https://github.com/didichuxing/LogicFlow/commit/fcc586df6d9e8f5188fb6d87bdb86aa461950f98))
1835
-
1836
- ### Features
1837
-
1838
- - ๆ›ฟๆขๆ–‡ไปถๅคนๅ็งฐ ([9155d8a](https://github.com/didichuxing/LogicFlow/commit/9155d8a7af3cd0aff983f8a036bd3ffafd0d4d56))
1839
- - **core:** Add stroke-dasharray vlaue to outline of node & edge ([4cb1bca](https://github.com/didichuxing/LogicFlow/commit/4cb1bca0f5090de035adda717b9bb509c79753d7)), closes [#12](https://github.com/didichuxing/LogicFlow/issues/12)
1840
- - **core:** support open text edit by double click anchor ([690d1d1](https://github.com/didichuxing/LogicFlow/commit/690d1d1648237c06580f51439ec67e4d07931774))
1841
- - **core:** v0.2.0 ([f11d143](https://github.com/didichuxing/LogicFlow/commit/f11d143a998ca68887f08e6ccd98604f165cec8a))
1842
- - **extension:** v0.2.0 ([ee67636](https://github.com/didichuxing/LogicFlow/commit/ee676365b82d2d07d40cbc77e955eb3506690804))
1843
-
1844
- # 0.1.0 (2020-12-29)
1845
-
1846
- ### Features
1847
-
1848
- - init ([6ab4c32](https://github.com/didichuxing/LogicFlow/commit/6ab4c326063b9242010c89b6bf92885c3158e6b0))
1849
- - ๆ›ดๆ”นๅŒ…ๅๅขžๅŠ scope ([27be341](https://github.com/didichuxing/LogicFlow/commit/27be3410c70f959093f928c792cf40f038e8adcc))