@logicflow/core 2.0.0-beta.9 → 2.0.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.
- package/.turbo/turbo-build$colon$dev.log +10 -10
- package/.turbo/turbo-build.log +36 -36
- package/CHANGELOG.md +917 -1374
- package/dist/index.min.js +3 -3
- package/es/model/GraphModel.d.ts +5 -11
- package/es/model/GraphModel.js +24 -8
- package/es/model/GraphModel.js.map +1 -1
- package/es/model/edge/BaseEdgeModel.js +2 -2
- package/es/model/edge/BaseEdgeModel.js.map +1 -1
- package/es/model/node/BaseNodeModel.d.ts +1 -0
- package/es/model/node/BaseNodeModel.js +9 -14
- package/es/model/node/BaseNodeModel.js.map +1 -1
- package/es/model/node/RectNodeModel.js +4 -4
- package/es/model/node/RectNodeModel.js.map +1 -1
- package/es/view/Anchor.d.ts +1 -1
- package/es/view/Anchor.js +2 -2
- package/es/view/Anchor.js.map +1 -1
- package/es/view/Graph.d.ts +1 -0
- package/es/view/Graph.js +3 -2
- package/es/view/Graph.js.map +1 -1
- package/es/view/node/BaseNode.js +2 -0
- package/es/view/node/BaseNode.js.map +1 -1
- package/lib/model/GraphModel.d.ts +5 -11
- package/lib/model/GraphModel.js +24 -8
- package/lib/model/GraphModel.js.map +1 -1
- package/lib/model/edge/BaseEdgeModel.js +2 -2
- package/lib/model/edge/BaseEdgeModel.js.map +1 -1
- package/lib/model/node/BaseNodeModel.d.ts +1 -0
- package/lib/model/node/BaseNodeModel.js +9 -14
- package/lib/model/node/BaseNodeModel.js.map +1 -1
- package/lib/model/node/RectNodeModel.js +3 -3
- package/lib/model/node/RectNodeModel.js.map +1 -1
- package/lib/view/Anchor.d.ts +1 -1
- package/lib/view/Anchor.js +2 -2
- package/lib/view/Anchor.js.map +1 -1
- package/lib/view/Graph.d.ts +1 -0
- package/lib/view/Graph.js +3 -2
- package/lib/view/Graph.js.map +1 -1
- package/lib/view/node/BaseNode.js +2 -0
- package/lib/view/node/BaseNode.js.map +1 -1
- package/package.json +1 -1
- package/src/model/GraphModel.ts +26 -14
- package/src/model/edge/BaseEdgeModel.ts +2 -2
- package/src/model/node/BaseNodeModel.ts +12 -16
- package/src/model/node/RectNodeModel.ts +6 -4
- package/src/util/drag.ts +2 -0
- package/src/view/Anchor.tsx +2 -2
- package/src/view/Graph.tsx +8 -3
package/CHANGELOG.md
CHANGED
|
@@ -1,2114 +1,1657 @@
|
|
|
1
1
|
# Change Log
|
|
2
2
|
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
3
|
+
## 2.0.1
|
|
4
|
+
|
|
5
|
+
### Patch Changes: 修复 2.0 版本中 Core 包及 Extension 中 dynamic-group/label 等插件的 bug
|
|
6
|
+
|
|
7
|
+
- 修复初始化时 DyanmicGroup 插件折叠展开报错的问题 #1767
|
|
8
|
+
- 修复 RectNodeModel 初始化时设置 width、height、radius 为 0 时无效的 bug
|
|
9
|
+
- Rename: resizeFunction -> throttleResize 函数命名优化
|
|
10
|
+
- 修复 isRestrict 开启后子节点仍能拖拽出分组区域的 bug
|
|
11
|
+
- 优化分组旋转时,子节点的旋转逻辑,以分组中心为中心点旋转,并更新自身的 rotate 属性
|
|
12
|
+
- 增加 elementsModelMap 解决 Group 初始化时,children 中的元素未完成初始化导致 model 为空的bug
|
|
13
|
+
- Rename: outcomingEdgeList,getAnchorOutcomingEdge,outcoming -> outgoing#1449
|
|
14
|
+
- 修复画布加载完后新增节点时Label不展示问题 #1759
|
|
15
|
+
- 重新修改样式打包配置,用于修复引入插件包后起服务报错问题 #1760
|
|
16
|
+
- 修复画布切换后页面宽高变化时持续出现警告问题 #1756
|
|
17
|
+
- 统一数据类型, 修复textVal为数字时报错问题 #1612
|
|
18
|
+
- 修复节点id切换后某一次更新边拿不到NodeId问题 #864
|
|
19
|
+
|
|
20
|
+
## 2.0.0
|
|
21
|
+
|
|
22
|
+
### Major Changes: Release 2.0 New Version 🎉🎉🎉🎉
|
|
23
|
+
|
|
24
|
+
#### refactor: 重构 LogicFlow 项目结构,升级打包工具,使用 pnpm 做包管理工具
|
|
7
25
|
|
|
26
|
+
- rename index.tsx -> index.ts, update dependencies and declare module mobx-preact
|
|
27
|
+
- 配置 husky pre-commit
|
|
28
|
+
- 完善 LogicFlow.tsx 主文件类型定义
|
|
29
|
+
- update .gitignore
|
|
30
|
+
- git rm -r --cached sites/docs/.dumi/tmp
|
|
31
|
+
- add index.less
|
|
32
|
+
- 解决项目中 core 包 TypeScript 类型错误导致打包失败的问题
|
|
8
33
|
|
|
9
|
-
|
|
34
|
+
- 项目代码重构,包括 examples、extension 及 core 包
|
|
35
|
+
|
|
36
|
+
- remove react-umi-app demo
|
|
37
|
+
- rename lf-engine-browser -> engine-browser-examples
|
|
38
|
+
- rename lf-engine-node -> engine-node-examples
|
|
39
|
+
- extension 包中修改文件夹名大小写未生效,恢复成 Control 和 Node 文件夹,后续再处理
|
|
40
|
+
- add feature-examples DEMO 项目,用于汇总所有官方 demo,后续再 docs 中使用
|
|
41
|
+
- 完成 feature-examples 中 demo 的改造,增加 graph 页面
|
|
42
|
+
- 优化 DndPanel 的demo
|
|
43
|
+
- 开发 feature-examples 中 BPMN 插件 demo
|
|
44
|
+
- feature-examples 中增加 BPMN demo
|
|
45
|
+
- engine-browser-examples 中增加 graph demo,方便后续在 vite 环境下调试包功能,测试 umi 与 vite 是否一致
|
|
46
|
+
- engine-browser-examples bpmn demo 更新
|
|
47
|
+
- 新增 next-app 用来测试服务端渲染项目中 window is not defined 的问题
|
|
48
|
+
- 修复 vue3-memory-leak 项目中引入 vue 文件报错的问题
|
|
49
|
+
- 新增 vue3-app 用于测试 vue-node-registry,后续使用该项目开发 vue 组件或 demo
|
|
50
|
+
- feature-examples 类型完善
|
|
51
|
+
- 修复 engine-browser-examples 中类型错误问题
|
|
52
|
+
- 优化 engine-browser-examples 样式
|
|
53
|
+
- 补充自定义折线、圆角折线、节点选择示例 (#1680)
|
|
54
|
+
- 添加insert-node-in-polyline,rules两个插件的demo
|
|
55
|
+
- 增加测试vue3性能demo
|
|
56
|
+
- 增加rect-label-node插件示例
|
|
57
|
+
- 增加高亮插件说明文档 - 优化高亮插件示例
|
|
10
58
|
|
|
11
|
-
|
|
12
|
-
* error when diamondNode's edge is dragging ([4978bf1](https://github.com/didi/LogicFlow/commit/4978bf12fde753b731a03341cc9b3c63253fcbaa))
|
|
13
|
-
* optimize the experience of resizeNode ([135a8e3](https://github.com/didi/LogicFlow/commit/135a8e3385799c3c9c98634ad0fecb0532377001))
|
|
14
|
-
* 更新readme logo & publish 1.2.25 ([4da3db7](https://github.com/didi/LogicFlow/commit/4da3db7aebc892e685269340ca38a0b9a4f68c56))
|
|
15
|
-
* 框选拖动折线时更新起终点位置 ([27ca25b](https://github.com/didi/LogicFlow/commit/27ca25b02014e9b8f742702b70c0389687a6f4d5))
|
|
59
|
+
- 文件夹重命名,将大驼峰命名修改为 小写+短横线
|
|
16
60
|
|
|
61
|
+
- DefaultAnimation.ts -> defaultAnimation.ts
|
|
62
|
+
- DefatultTheme.ts -> defaultTheme.ts
|
|
63
|
+
- history/History.ts -> history/index.ts
|
|
64
|
+
- 并更新项目中各个文件的引用地址
|
|
17
65
|
|
|
66
|
+
- 解决 git config core.ignorecase 为 true 导致修改文件夹名大小写不生效的问题
|
|
18
67
|
|
|
68
|
+
- 重命名 BPMN -> bpmn; Control -> control
|
|
69
|
+
- 命名规范:文件夹名小写(name or name1-name2-name3);.js or .ts 小驼峰;.tsx or .jsx 大驼峰
|
|
70
|
+
- 新增 Vue3-memory-leak demo 用于定位内存泄漏的问题,后续基于此 demo 增加 LogicFlow destroy 的方法
|
|
71
|
+
- 优化 properties 类型定义为 Record<string, any>,避免 unknow 引起的问题,后续再优化
|
|
72
|
+
- 解决 graph demo 中发现 BezierEdge 初始化 path 为空的问题,可以看 -> BezierEdgeModel.ts 的改动
|
|
19
73
|
|
|
74
|
+
- 通过 git rm --cached Xxxx 移除修改大小写的文件夹内容
|
|
20
75
|
|
|
21
|
-
|
|
76
|
+
- 完善 README.md 以及 CONTRIBUTING 相关文档,解决 eslint 问题
|
|
22
77
|
|
|
78
|
+
- 完善开源共享引导文档:README 以及 CONTRIBUTING
|
|
79
|
+
- 项目根目录运行 pnpm run lint:ts,解决项目中 eslint 错误及 warning
|
|
23
80
|
|
|
24
|
-
|
|
81
|
+
- Update update_contributors.yml
|
|
25
82
|
|
|
26
|
-
|
|
27
|
-
* 更新readme logo & publish 1.2.25 ([4da3db7](https://github.com/didi/LogicFlow/commit/4da3db7aebc892e685269340ca38a0b9a4f68c56))
|
|
28
|
-
* 框选拖动折线时更新起终点位置 ([27ca25b](https://github.com/didi/LogicFlow/commit/27ca25b02014e9b8f742702b70c0389687a6f4d5))
|
|
83
|
+
- update package.json, add changesets to generate CHANGELOG
|
|
29
84
|
|
|
85
|
+
- .gitnore add .umi/ and delete .npmrc file
|
|
86
|
+
- dependencies 中 'workspace:latest' -> 'workspace:\*' 解决 changeset 中生成 CHANGELOG 报错的问题
|
|
87
|
+
- update build-docs shell
|
|
88
|
+
- add @changesets/cli and related scripts
|
|
30
89
|
|
|
90
|
+
- 更新 rollup config 并增加 umd 包使用 demo 文件
|
|
31
91
|
|
|
92
|
+
- npm 包 dependencies 中新增 lodash-es 依赖,解决引入项目中报错的问题
|
|
32
93
|
|
|
94
|
+
- 开发节点文本换行等体验优化的功能
|
|
95
|
+
- 解决 examples 中报错的问题
|
|
33
96
|
|
|
34
|
-
|
|
97
|
+
- 移除文档中 lodash-es 依赖,移除无用 console
|
|
98
|
+
- 优化代码注释歧义的问题
|
|
99
|
+
- 更新 turbo 版本并解决 extension 打包 core 依赖报错的问题
|
|
35
100
|
|
|
101
|
+
#### Core & Extension 更新
|
|
36
102
|
|
|
37
|
-
|
|
103
|
+
- core 包中 'preact' -> 'preact/compat' 解决 svg 属性问题
|
|
104
|
+
- 完成 core 包 roolup 打包及core 包中类型定义更新
|
|
105
|
+
- extension 包中代码重构,解决 TypeScript 类型定义的问题,完成打包改造
|
|
106
|
+
- core 包中类型定义完善,解决在 extension 包重构过程中遇到的 Core 包问题
|
|
107
|
+
- 优化 core 包中类型定义,增加 GraphData 类型,区别于 GraphConfigData
|
|
108
|
+
- 优化 bpmn 插件的导出内容
|
|
109
|
+
- 修复 GraphModel 中 getAreaElement 方法的 bug 及一些其他类型定义的优化
|
|
38
110
|
|
|
39
|
-
|
|
111
|
+
- 修复 GroupNode 中 getNodeStyle 解构后调用,BaseNodeModel 中 getNodeStyle 方法 this 为空的问题
|
|
40
112
|
|
|
113
|
+
- 确认解构后赋值和直接 this.props.model.getNodeStyle() 方法调用的区别 -> this 指向的问题
|
|
114
|
+
- LogicFlow Examples 中新增 Group 插件
|
|
41
115
|
|
|
116
|
+
- 主要修复 TextEditTool 无效的 bug,后注原因
|
|
42
117
|
|
|
118
|
+
- TextEditTool 组件更新时,原先的 graphModel 和 LogicFlow props 不会触发组件的更新,通过将 textEditElement 传入触发组件更新
|
|
119
|
+
- 移除代码中无用的 console
|
|
120
|
+
- 更新依赖 @babel/plugin-proposal-class-properties -> @babel/plugin-transform-class-properties
|
|
121
|
+
- EventArgs 相关类型由 unknown 改为 any
|
|
43
122
|
|
|
123
|
+
- 框选插件重构与示例内容丰富
|
|
44
124
|
|
|
45
|
-
|
|
125
|
+
- 完善部分类型定义
|
|
126
|
+
- 框选插件示例内容丰富
|
|
127
|
+
- 修复使用框选插件后,网页滚轮事件被阻塞的问题
|
|
128
|
+
- 修复缩放后框选元素与鼠标位移不一致的问题(#1102)
|
|
129
|
+
- 增加新事件 selection:selected-area,返回框选范围(#1104)
|
|
130
|
+
- 优化框选工具在缩放时的边距与外边框宽度计算
|
|
46
131
|
|
|
132
|
+
- feat: 小地图插件重构与相关示例增加
|
|
47
133
|
|
|
48
|
-
|
|
134
|
+
- 优化画布移动时,小地图的更新策略,减少性能消耗
|
|
135
|
+
- 小地图显示区域计算逻辑修改,现在由画布元素与视口共同决定
|
|
136
|
+
- 优化小地图预览视窗的拖拽交互
|
|
137
|
+
- 修复点击小地图预览视窗会触发不可预期的画布移动的问题
|
|
138
|
+
- 新增小地图插件的示例
|
|
49
139
|
|
|
50
|
-
|
|
51
|
-
* 修复选区插件无法触发鼠标事件的问题,同时兼容 Ctrl + 滚轮事件 ([129f101](https://github.com/didi/LogicFlow/commit/129f101faf2c3aae3d25917eb68ccabadbb93ec3))
|
|
52
|
-
* 锚点连线失败增加默认错误提示 ([05ed811](https://github.com/didi/LogicFlow/commit/05ed811591bee08951a404c70b44acd0f0a39643))
|
|
140
|
+
- selection-select 插件中 disabled 默认设置为 true
|
|
53
141
|
|
|
142
|
+
- 用于解决当用于 stopMoveGraph 设置为 true 且启用了 selection-select 插件时,插件状态默认开启的 bug
|
|
143
|
+
- 更新 LICENSE 文件,格式化内容
|
|
144
|
+
- 其它 demo 的一些样式更新
|
|
54
145
|
|
|
146
|
+
- 移除 extension 包中 examples 文件夹,已转移到 examples/feature-examples 项目中
|
|
147
|
+
- 完善core包与group插件的类型定义
|
|
148
|
+
- 完善与修正core包的部分类型定义
|
|
55
149
|
|
|
150
|
+
- minimap插件功能完善与相关示例丰富
|
|
56
151
|
|
|
152
|
+
- 小地图中可选择是否渲染连线,支持初始化时设置或通过`setShowEdge`方法更新设置
|
|
153
|
+
- 更完善的代码注释与类型定义
|
|
154
|
+
- 现在,小地图默认将位于画布的右下角,保留`show`方法设置画布位置的功能,新增`updatePosition`方法用于更新小地图相对画布的决定定位
|
|
155
|
+
- 在小地图等示例中增加了新增功能的演示(连线可选渲染与位置调整)
|
|
57
156
|
|
|
58
|
-
|
|
157
|
+
- 完善 BaseEdge 和 BaseNode 泛型类型,内置节点 props 定义更新
|
|
59
158
|
|
|
159
|
+
- 重构 LogicFlow.tsx 以及 GraphMode 代码,代码按功能分区管理
|
|
60
160
|
|
|
61
|
-
|
|
161
|
+
- Fix typo -> fakerNode 重命名为 fakeNode,意指虚拟节点
|
|
162
|
+
- 主要重构 LogicFlow.tsx 中代码: 将代码按 Register,Nodes,Edges,Element,Text,EditConfig,Graph,EventCenter,History 等分模块管理
|
|
163
|
+
- 重构 LogicFlow 中 getPointByClient 方法,通过重载,支持多种类型参数
|
|
164
|
+
- 重构 LogicFlow 中 focusOn 方法,通过重载,支持多种传参方式
|
|
62
165
|
|
|
63
|
-
|
|
64
|
-
* 增加获取锚点关联边的能力&修复边的起终点移动时报错问题 ([543fff7](https://github.com/didi/LogicFlow/commit/543fff7c0a14ebe5b3b5ebf1c5df773c7e6a0dc5))
|
|
166
|
+
- core包类型定义完善
|
|
65
167
|
|
|
168
|
+
- 小地图插件新增功能与示例丰富
|
|
66
169
|
|
|
67
|
-
|
|
170
|
+
- 小地图插件现在支持设置关闭小地图时的回调,用于外部更新小地图的显示状态(#829)
|
|
171
|
+
- 小地图插件示例增加与新增功能相关的内容
|
|
68
172
|
|
|
69
|
-
|
|
173
|
+
- extension包的类型定义修复
|
|
70
174
|
|
|
175
|
+
- 修复 349252c 提交后,extension 包中的类型错误问题
|
|
176
|
+
- 为 BaseNode 的范型设置默认类型
|
|
71
177
|
|
|
178
|
+
- 修复小地图的预览视窗无法拖拽的问题
|
|
72
179
|
|
|
180
|
+
- 小地图设置回调逻辑调整为抛出事件
|
|
73
181
|
|
|
182
|
+
- 删除原有设置关闭时回调的逻辑
|
|
183
|
+
- 现在小地图插件在关闭时会抛出事件 `miniMap:close`,可以通过 `lf.on()` 监听该事件来设置小地图关闭时的回调
|
|
74
184
|
|
|
75
|
-
|
|
185
|
+
- 事件系统的类型定义完善
|
|
76
186
|
|
|
187
|
+
- 将节点 Resize 功能内置
|
|
77
188
|
|
|
78
|
-
|
|
189
|
+
- 新增 Control 组件,用于控制节点放大缩小,并在 BaseNodeModel 中增加 resize 方法
|
|
190
|
+
- 更新 GitHub Actions 任务名
|
|
191
|
+
- 重命名 allowRotation -> allowRotate;后续增加 allowResize 选项,保持命名一致性
|
|
192
|
+
- circle/diamond/ellipse/polygon 等节点增加 resize 能力
|
|
193
|
+
- 节点 model 中增加初始化时 properties 的保存,调试多边形节点 outline 不符合预期的问题
|
|
79
194
|
|
|
80
|
-
|
|
195
|
+
- 解决resize 结束后节点重新定位的问题
|
|
196
|
+
- Control.tsx 中 new StepDrag 参数中 step 传入 graphModel.gridSize,保证调整时拖拽以 gridSize 为步长移动
|
|
81
197
|
|
|
198
|
+
- 完成自定义节点内置功能的开发
|
|
82
199
|
|
|
200
|
+
- 移除目前系统中无用的 defaultTheme 和 defaultAnimation 文件
|
|
201
|
+
- 通过 points 置原点并基于设定的 width 和 height 缩放的方法,解决多边形形状与边框定位异常的问题
|
|
83
202
|
|
|
203
|
+
- 网格组件重构
|
|
204
|
+
- 修正原有网格存在偏移的问题
|
|
205
|
+
- 修正网格配置选项的类型声明
|
|
206
|
+
- 由 Grid 类自行实现网格配置选项的初始化
|
|
207
|
+
- 将Grid相关的类型声明与静态成员与方法移至命名空间
|
|
208
|
+
- 修改点状网格中点的最大半径计算逻辑,并增加相关注释
|
|
84
209
|
|
|
210
|
+
- 修复 HtmlREsize 节点 outlineStyle fill 默认为 黑色的 bug
|
|
211
|
+
- 统一 NodeResize 中 getResizeOutlineStyle fill 和 stroke 的返回值
|
|
212
|
+
- 更新插件相关类型定义,完善插件相关方法 use/installPlugins/installPlugin 的功能
|
|
85
213
|
|
|
86
|
-
|
|
214
|
+
- 解决插件中一些类型问题
|
|
215
|
+
- 测试并修复 LogicFlow.use api 的功能 bug
|
|
216
|
+
- 调整安装插件的顺序,如有重名默认优先使用 plugins 中定义的插件
|
|
87
217
|
|
|
218
|
+
- 重构项目中 basic shape 组件,修复功能 bug、完善类型定义
|
|
88
219
|
|
|
89
|
-
|
|
220
|
+
- rename formateAnchorConnectValidateData - formatAnchorConnectValidateData
|
|
221
|
+
- rename setHoverON -> setHoverOn, setHoverOFF -> setHoverOff
|
|
222
|
+
- 修复 Text 文本节点,文本不在节点中间的显示 bug,通过设置 dominantBaseline: central 解决
|
|
223
|
+
- TextNode getBackground 中 rectAttr 设置 y: y-1, 移除该设置
|
|
90
224
|
|
|
91
|
-
|
|
92
|
-
* 修复stopMoveGraph从true置为false后画布仍无法移动问题 ([37b5c4a](https://github.com/didi/LogicFlow/commit/37b5c4aced4cfb66040f563316c4206b5d26716f))
|
|
93
|
-
* 修复静默模式切换后快捷键和拖拽节点状态不更新问题 ([#1491](https://github.com/didi/LogicFlow/issues/1491)) ([926f33e](https://github.com/didi/LogicFlow/commit/926f33e3f79ca148c00723c627d209f21f38fc25))
|
|
225
|
+
- 新增 common 文件夹用于存放通用方法
|
|
94
226
|
|
|
227
|
+
- 增加用户设置画布 100% ,在调整视窗时,画布大小同步更新的逻辑,优化体验
|
|
95
228
|
|
|
96
|
-
|
|
229
|
+
- 优化初始化时设置画布大小的逻辑
|
|
230
|
+
- 优化 DEMO 代码,解决设置 theme 未生效的 bug( 代码问题。在初始化时 style 覆盖了 defaultConfig 中的 style)
|
|
97
231
|
|
|
98
|
-
|
|
232
|
+
- 支持导出节点中的网络图片
|
|
99
233
|
|
|
234
|
+
- 修复线的 menu 无法正常显示的 bug (#1679)
|
|
100
235
|
|
|
236
|
+
- 修复初始化时 edgeConfig 中 type 未传值场景下,未使用 graphModel.edgeType(默认边类型) 初始化边的 bug
|
|
101
237
|
|
|
238
|
+
- 优化 snapshot 交互体验,内容居中且开启拖拽画布,调整菜单顺序
|
|
239
|
+
- 完善snapshot使用方式和修复跨域报错
|
|
240
|
+
- 修复画布拖动阻止滚动 (#1700)
|
|
102
241
|
|
|
242
|
+
- 新增Label文本模式, 支持配置多文本和修改文本朝向
|
|
103
243
|
|
|
104
|
-
|
|
244
|
+
- graphModel 中增加 textMode 属性,用于标识当前使用什么文本模式
|
|
245
|
+
- BaseNodeMode and BaseEdgeModel 以及 graphModel 中增加 更新 textMode 的方法
|
|
246
|
+
- 更新 tool 中 props 名称,logicflow -> lf,便于理解
|
|
247
|
+
- 增加 next-label demo
|
|
248
|
+
- 重构 editConfigModel.ts,完善配置项优先级从 textEdit(全局) -> nodeTextEdit/edgeTextEdit(分类) -> 元素本身 editable
|
|
249
|
+
- 项目中后续可以移除 useLabelText 的判断逻辑及相关的事件触发
|
|
250
|
+
- 配置 tool 名称通过 短横线 隔开的方式命名, eg: text-edit-tool, multiple-select-tool
|
|
251
|
+
- tool 增加 disableTool 和 enableTool 的方法,用于互斥 Tool 注册时,禁用掉另一个
|
|
252
|
+
- 优化 mediumEditor 的配置项及初始化流程。移除无用配置项,增加默认主题样式
|
|
253
|
+
- 开发 NextLabel 插件,取得阶段性胜利
|
|
254
|
+
- 移除 BaseNodeModel 中 useLabelText 相关逻辑
|
|
255
|
+
- node:mousemove 事件中抛出 deltaX、deltaY 数据
|
|
256
|
+
- 调整 Control 的范围大小,解决调整大小时,鼠标离开区域后切换回默认鼠标样式,体验不好
|
|
257
|
+
- 调整 NextLabel 代码逻辑,LabelModel 只做数据的存储,不做更新。用于传递 props。在 Label 中触发
|
|
258
|
+
- element 数据更新,LabelOverlay 渲染,Label 更新
|
|
259
|
+
- 增加 API,updateTextMode 可切换 textMode 并更新页面
|
|
105
260
|
|
|
261
|
+
- 增加双击节点 or 边增加 Label 的功能
|
|
106
262
|
|
|
107
|
-
|
|
263
|
+
- 可传入设置样式 设置 label
|
|
264
|
+
- 富文本编辑内容无法同步到 content 的问题
|
|
265
|
+
- 如果 properties 中没有 \_label 配置项时,MediumEditor 初始化有点问题,选中文本无法显示工具栏
|
|
266
|
+
- 更新完Label content 后,Label 拖拽无效的问题(isDragging state 更新时机问题)
|
|
108
267
|
|
|
109
|
-
|
|
110
|
-
|
|
111
|
-
|
|
112
|
-
|
|
113
|
-
|
|
114
|
-
|
|
268
|
+
- 完成 Label 溢出模式配置能力开发
|
|
269
|
+
- 将 PluginsOptions 中插件对应的属性值 当 props 传入到插件的实例化中
|
|
270
|
+
- label 的 textOverflowMode 增加 'ellipsis' | 'wrap' | 'clip' | 'nowrap' | 'default' 配置项
|
|
271
|
+
- 更新 Label dragging 时,兼容画布存在缩放的情况
|
|
272
|
+
- 完成 Label 在节点旋转时,保持位置不变,且 Label 自身跟阶段旋转角度保持一致
|
|
273
|
+
- 完成节点缩放时,Label 保持相对位置不变
|
|
274
|
+
- 增加 labelWidth 配置,可以统一项目中 labelWidth 的宽度,也可做单独个性化配置
|
|
275
|
+
- 优化 node:resize 以及 node:rotate 事件抛出的数据
|
|
276
|
+
- 移除或注释项目中无用的 console
|
|
115
277
|
|
|
278
|
+
- 移植 Label 在边上定位 的相关代码,在调整节点更新边时,保持 Label 位置
|
|
116
279
|
|
|
117
|
-
|
|
280
|
+
- 根据 PR 整理代码中 Text 和 Label 相关逻辑,移除无效代码
|
|
281
|
+
- next-label 中增加 Edge 计算相关的逻辑
|
|
118
282
|
|
|
119
|
-
|
|
283
|
+
- 同步节点的 zIndex 到 Label 上,过滤掉 text 为空时的 Label
|
|
284
|
+
- 修复 rangy.createClassApplier is not a function 的错误
|
|
285
|
+
- 修复 isMultiple 对于双击节点或边增加 label 无效的 bug
|
|
120
286
|
|
|
287
|
+
- 调整core包tool文件夹
|
|
121
288
|
|
|
289
|
+
- 将 snapline 移出 tool 文件夹,因为它本身非 tool,放这里面会有误导
|
|
290
|
+
- 优化 tool 文件夹,将 tool 内容移至 index 中,并更新项目中相关导入
|
|
122
291
|
|
|
292
|
+
- 新增 adjustEdgeStart 和 adjustEdgeEnd,可单独控制调整起始点或结束点
|
|
123
293
|
|
|
294
|
+
- 支持cmd - 鼠标滚动操作放大缩小画布
|
|
295
|
+
- 节点文本支样式持通过properties传入textStylele配置
|
|
124
296
|
|
|
125
|
-
|
|
297
|
+
- 重构 core 包中 properties 类型定义,通过泛型的方式约束其类型
|
|
126
298
|
|
|
299
|
+
- 修复 node-selection 中 properties 未定义类型导致的报错
|
|
127
300
|
|
|
128
|
-
|
|
301
|
+
- 升级 group 插件为 dynamic-group 插件
|
|
129
302
|
|
|
130
|
-
|
|
131
|
-
|
|
303
|
+
- 完成 dynamic-group 插件 isCollased 初始化及groupAddable 状态即时更新
|
|
304
|
+
- 优化 editConfigModel 中属性的初始化逻辑及其初始化值调整
|
|
305
|
+
- 调小 ResizeControl 的范围 30 -> 15,原因是会盖住 Group 折叠的小按钮
|
|
306
|
+
- 优化允许文本拖动的逻辑判断 -> nodeTextDraggable && draggable 才可以允许拖动
|
|
132
307
|
|
|
308
|
+
- 开发节点缩放旋转时,同步缩放 or 旋转节点内部元素功能
|
|
133
309
|
|
|
310
|
+
- 完善 node:resize 及 node:rotate 事件抛出的数据
|
|
311
|
+
- 将 Control 中 resize 相关的方法提取到 utils/resize.ts 中,方便在插件中直接调用
|
|
312
|
+
- 在 group 组件中监听 node:resize 和 node:rotate 事件,完成对子元素的更新
|
|
134
313
|
|
|
314
|
+
- 测试 SelectionSelct 与 DynamicGroup 不兼容的问题并修复
|
|
135
315
|
|
|
316
|
+
- 边支持传入自定义样式
|
|
317
|
+
- 优化高亮插件功能
|
|
318
|
+
- **Breaking Change**调整 pluginOptions 只传入插件对应的 options 数据(之前是全量传入)
|
|
136
319
|
|
|
137
|
-
|
|
320
|
+
All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
|
|
138
321
|
|
|
322
|
+
## [1.2.28](https://github.com/didi/LogicFlow/compare/@logicflow/core@1.2.24...@logicflow/core@1.2.28) (2024-07-29)
|
|
139
323
|
|
|
140
324
|
### Bug Fixes
|
|
141
325
|
|
|
142
|
-
|
|
143
|
-
|
|
144
|
-
|
|
145
|
-
|
|
326
|
+
- **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))
|
|
327
|
+
- error when diamondNode's edge is dragging ([4978bf1](https://github.com/didi/LogicFlow/commit/4978bf12fde753b731a03341cc9b3c63253fcbaa))
|
|
328
|
+
- optimize the experience of resizeNode ([135a8e3](https://github.com/didi/LogicFlow/commit/135a8e3385799c3c9c98634ad0fecb0532377001))
|
|
329
|
+
- 修复使用框选插件会阻塞页面滚轮事件问题 ([5266822](https://github.com/didi/LogicFlow/commit/52668221b1570606efa6caace2f6f7ae4d2bf935))
|
|
330
|
+
- 更新readme logo & publish 1.2.25 ([4da3db7](https://github.com/didi/LogicFlow/commit/4da3db7aebc892e685269340ca38a0b9a4f68c56))
|
|
331
|
+
- 框选拖动折线时更新起终点位置 ([27ca25b](https://github.com/didi/LogicFlow/commit/27ca25b02014e9b8f742702b70c0389687a6f4d5))
|
|
332
|
+
|
|
333
|
+
## [1.2.27](https://github.com/didi/LogicFlow/compare/@logicflow/core@1.2.24...@logicflow/core@1.2.27) (2024-05-06)
|
|
146
334
|
|
|
335
|
+
### Bug Fixes
|
|
147
336
|
|
|
148
|
-
|
|
337
|
+
- **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))
|
|
338
|
+
- error when diamondNode's edge is dragging ([4978bf1](https://github.com/didi/LogicFlow/commit/4978bf12fde753b731a03341cc9b3c63253fcbaa))
|
|
339
|
+
- optimize the experience of resizeNode ([135a8e3](https://github.com/didi/LogicFlow/commit/135a8e3385799c3c9c98634ad0fecb0532377001))
|
|
340
|
+
- 更新readme logo & publish 1.2.25 ([4da3db7](https://github.com/didi/LogicFlow/commit/4da3db7aebc892e685269340ca38a0b9a4f68c56))
|
|
341
|
+
- 框选拖动折线时更新起终点位置 ([27ca25b](https://github.com/didi/LogicFlow/commit/27ca25b02014e9b8f742702b70c0389687a6f4d5))
|
|
149
342
|
|
|
150
|
-
|
|
151
|
-
* **core:** implement custom path for connecting ([492a412](https://github.com/didi/LogicFlow/commit/492a41201faaaee84b3b0ae734763b4d5e4a2a37))
|
|
152
|
-
* **extension:** override addElements to support group-node copy([#1346](https://github.com/didi/LogicFlow/issues/1346)) ([e9d0139](https://github.com/didi/LogicFlow/commit/e9d0139da4446ec4451ba7c2516a1e440a951fec))
|
|
343
|
+
## [1.2.26](https://github.com/didi/LogicFlow/compare/@logicflow/core@1.2.24...@logicflow/core@1.2.26) (2024-04-10)
|
|
153
344
|
|
|
345
|
+
### Bug Fixes
|
|
154
346
|
|
|
347
|
+
- **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))
|
|
348
|
+
- 更新readme logo & publish 1.2.25 ([4da3db7](https://github.com/didi/LogicFlow/commit/4da3db7aebc892e685269340ca38a0b9a4f68c56))
|
|
349
|
+
- 框选拖动折线时更新起终点位置 ([27ca25b](https://github.com/didi/LogicFlow/commit/27ca25b02014e9b8f742702b70c0389687a6f4d5))
|
|
155
350
|
|
|
351
|
+
## [1.2.25](https://github.com/didi/LogicFlow/compare/@logicflow/core@1.2.24...@logicflow/core@1.2.25) (2024-04-03)
|
|
156
352
|
|
|
353
|
+
### Bug Fixes
|
|
157
354
|
|
|
158
|
-
|
|
355
|
+
- 框选拖动折线时更新起终点位置 ([ad3afe1](https://github.com/didi/LogicFlow/commit/ad3afe1b3de4c30e9acd5d19ea49d0cb7f04cfd1))
|
|
159
356
|
|
|
357
|
+
## [1.2.24](https://github.com/didi/LogicFlow/compare/@logicflow/core@1.2.23...@logicflow/core@1.2.24) (2024-04-03)
|
|
160
358
|
|
|
161
359
|
### Bug Fixes
|
|
162
360
|
|
|
163
|
-
|
|
361
|
+
- 修复nuxt使用报错 ([f8f7da9](https://github.com/didi/LogicFlow/commit/f8f7da9f87a0239eea7913a7c979a54940d6bd91))
|
|
362
|
+
- 修复选区插件无法触发鼠标事件的问题,同时兼容 Ctrl + 滚轮事件 ([129f101](https://github.com/didi/LogicFlow/commit/129f101faf2c3aae3d25917eb68ccabadbb93ec3))
|
|
363
|
+
- 锚点连线失败增加默认错误提示 ([05ed811](https://github.com/didi/LogicFlow/commit/05ed811591bee08951a404c70b44acd0f0a39643))
|
|
364
|
+
|
|
365
|
+
## [1.2.23](https://github.com/didi/LogicFlow/compare/@logicflow/core@1.2.22...@logicflow/core@1.2.23) (2024-03-20)
|
|
366
|
+
|
|
367
|
+
### Bug Fixes
|
|
164
368
|
|
|
369
|
+
- 优化代码 ([10d311d](https://github.com/didi/LogicFlow/commit/10d311db4a816784bafe4266737d5af656716b6b))
|
|
370
|
+
- 增加获取锚点关联边的能力&修复边的起终点移动时报错问题 ([543fff7](https://github.com/didi/LogicFlow/commit/543fff7c0a14ebe5b3b5ebf1c5df773c7e6a0dc5))
|
|
165
371
|
|
|
166
372
|
### Features
|
|
167
373
|
|
|
168
|
-
|
|
374
|
+
- 自定义连线支持指定锚点 ([d344d38](https://github.com/didi/LogicFlow/commit/d344d3801cbb0bcbcf699c0bf91e661c55d67890))
|
|
169
375
|
|
|
376
|
+
## [1.2.22](https://github.com/didi/LogicFlow/compare/@logicflow/core@1.2.19...@logicflow/core@1.2.22) (2024-02-05)
|
|
170
377
|
|
|
378
|
+
### Features
|
|
171
379
|
|
|
380
|
+
- update @logicflow/core @logicflow/extension version to 1.2.21 ([55b865b](https://github.com/didi/LogicFlow/commit/55b865b381354a75b04d339fec2f10b34cd12738))
|
|
172
381
|
|
|
382
|
+
## [1.2.19](https://github.com/didi/LogicFlow/compare/@logicflow/core@1.2.18...@logicflow/core@1.2.19) (2024-02-05)
|
|
173
383
|
|
|
174
|
-
|
|
384
|
+
### Bug Fixes
|
|
175
385
|
|
|
386
|
+
- **core:** types build error ([fb4bb27](https://github.com/didi/LogicFlow/commit/fb4bb27602ca4cb9bd0f085a7421dbfa6049e18e))
|
|
387
|
+
- 修复stopMoveGraph从true置为false后画布仍无法移动问题 ([37b5c4a](https://github.com/didi/LogicFlow/commit/37b5c4aced4cfb66040f563316c4206b5d26716f))
|
|
388
|
+
- 修复静默模式切换后快捷键和拖拽节点状态不更新问题 ([#1491](https://github.com/didi/LogicFlow/issues/1491)) ([926f33e](https://github.com/didi/LogicFlow/commit/926f33e3f79ca148c00723c627d209f21f38fc25))
|
|
176
389
|
|
|
177
390
|
### Features
|
|
178
391
|
|
|
179
|
-
|
|
180
|
-
* **core:** optimize the using of matrix ([d13fc5c](https://github.com/didi/LogicFlow/commit/d13fc5c50dcc25727ca8646ea1afe9a250d444d5))
|
|
181
|
-
* **core:** trigger edge:adjust when adjusting bezier([#947](https://github.com/didi/LogicFlow/issues/947)) ([ad993c4](https://github.com/didi/LogicFlow/commit/ad993c448c004623e32f9534b3971cdf9d8e47bd))
|
|
392
|
+
- **core:** add test for core ([6780155](https://github.com/didi/LogicFlow/commit/67801556fc104a3e77c70f7016a56dbe17f52185))
|
|
182
393
|
|
|
394
|
+
## [1.2.18](https://github.com/didi/LogicFlow/compare/@logicflow/core@1.2.17...@logicflow/core@1.2.18) (2023-11-22)
|
|
183
395
|
|
|
396
|
+
### Bug Fixes
|
|
184
397
|
|
|
398
|
+
- **core:** anchorId missed after point adjusting([#1365](https://github.com/didi/LogicFlow/issues/1365)) ([d7778cc](https://github.com/didi/LogicFlow/commit/d7778cc7632b3cd60afadc18a47c4df60b23a587))
|
|
399
|
+
- **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))
|
|
400
|
+
- **core:** rename textInput ([1681484](https://github.com/didi/LogicFlow/commit/1681484bcef0ae8a7fb5d54e6cefcc45d6020f8e))
|
|
401
|
+
- **core:** zIndex problem in overlapMode([#1395](https://github.com/didi/LogicFlow/issues/1395)) ([ae41283](https://github.com/didi/LogicFlow/commit/ae412831c16b7c07e502852b0c00baa2b6d685db))
|
|
402
|
+
- **core:** 修复 overflowMode 为 autoWrap 时,节点设置 textWidth 无效的 bug([#1432](https://github.com/didi/LogicFlow/issues/1432)) ([fa1cbc7](https://github.com/didi/LogicFlow/commit/fa1cbc7a4e2a4bb12b8c34997aaedd6f9bc552be))
|
|
403
|
+
- prevent node without anchors using InsertNodeInPolyline([#1077](https://github.com/didi/LogicFlow/issues/1077)) ([6e10d3a](https://github.com/didi/LogicFlow/commit/6e10d3ad6e5b26daa6cad865bbca0eb326dfd54b))
|
|
185
404
|
|
|
405
|
+
### Features
|
|
186
406
|
|
|
187
|
-
|
|
407
|
+
- **core:** enable lf-text-input style setting([#1390](https://github.com/didi/LogicFlow/issues/1390)) ([8a8a0f9](https://github.com/didi/LogicFlow/commit/8a8a0f937e4428c0a811b4cc8102c03fec568653))
|
|
188
408
|
|
|
409
|
+
## [1.2.17](https://github.com/didi/LogicFlow/compare/@logicflow/core@1.2.16...@logicflow/core@1.2.17) (2023-10-25)
|
|
189
410
|
|
|
190
|
-
###
|
|
411
|
+
### Bug Fixes
|
|
191
412
|
|
|
192
|
-
|
|
193
|
-
|
|
413
|
+
- **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))
|
|
414
|
+
- **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))
|
|
194
415
|
|
|
416
|
+
## [1.2.16](https://github.com/didi/LogicFlow/compare/@logicflow/core@1.2.15...@logicflow/core@1.2.16) (2023-10-19)
|
|
195
417
|
|
|
418
|
+
### Bug Fixes
|
|
196
419
|
|
|
420
|
+
- add edge copying when copying a group([#1346](https://github.com/didi/LogicFlow/issues/1346)) ([f53ec7f](https://github.com/didi/LogicFlow/commit/f53ec7f8eea1b9e1357e3dc21d509695e857bb3b))
|
|
421
|
+
- **core:** filter NaN cases in getVirtualRectSize ([045e80b](https://github.com/didi/LogicFlow/commit/045e80beba32d14efae4c32ae215b5eb1fde096c))
|
|
422
|
+
- **core:** restore rotation ([2748c17](https://github.com/didi/LogicFlow/commit/2748c177660e9b0849631750a1a68af50dd96781))
|
|
423
|
+
- **extension:** bug of menu initialization ([#1359](https://github.com/didi/LogicFlow/issues/1359)) ([fabd8d7](https://github.com/didi/LogicFlow/commit/fabd8d74cf998e6118499d3ddc49841ad5411480))
|
|
197
424
|
|
|
425
|
+
### Features
|
|
198
426
|
|
|
199
|
-
|
|
427
|
+
- anchor dragend事件参数增加edgeModel ([7b8a0ab](https://github.com/didi/LogicFlow/commit/7b8a0ab8045457ec212322a1d0e1dc265fb87954))
|
|
428
|
+
- **core:** implement custom path for connecting ([492a412](https://github.com/didi/LogicFlow/commit/492a41201faaaee84b3b0ae734763b4d5e4a2a37))
|
|
429
|
+
- **extension:** override addElements to support group-node copy([#1346](https://github.com/didi/LogicFlow/issues/1346)) ([e9d0139](https://github.com/didi/LogicFlow/commit/e9d0139da4446ec4451ba7c2516a1e440a951fec))
|
|
200
430
|
|
|
431
|
+
## [1.2.15](https://github.com/didi/LogicFlow/compare/@logicflow/core@1.2.14...@logicflow/core@1.2.15) (2023-09-21)
|
|
201
432
|
|
|
202
433
|
### Bug Fixes
|
|
203
434
|
|
|
204
|
-
|
|
205
|
-
|
|
435
|
+
- **core:** wrong extreme value of draggable range ([46c3ce9](https://github.com/didi/LogicFlow/commit/46c3ce9e238cc849025792dcd9083431fcf61a81))
|
|
206
436
|
|
|
207
437
|
### Features
|
|
208
438
|
|
|
209
|
-
|
|
439
|
+
- **core:** add draggable range for graph([#1337](https://github.com/didi/LogicFlow/issues/1337)) ([ecc59bc](https://github.com/didi/LogicFlow/commit/ecc59bccb07e23fbe11986d5b38f5a5e99f4b4f1))
|
|
440
|
+
|
|
441
|
+
## [1.2.14](https://github.com/didi/LogicFlow/compare/@logicflow/core@1.2.13...@logicflow/core@1.2.14) (2023-09-11)
|
|
210
442
|
|
|
443
|
+
### Features
|
|
211
444
|
|
|
445
|
+
- **core:** enable node rotation ([267ebc8](https://github.com/didi/LogicFlow/commit/267ebc8ff65f461c831fc631b89028ca98305858))
|
|
446
|
+
- **core:** optimize the using of matrix ([d13fc5c](https://github.com/didi/LogicFlow/commit/d13fc5c50dcc25727ca8646ea1afe9a250d444d5))
|
|
447
|
+
- **core:** trigger edge:adjust when adjusting bezier([#947](https://github.com/didi/LogicFlow/issues/947)) ([ad993c4](https://github.com/didi/LogicFlow/commit/ad993c448c004623e32f9534b3971cdf9d8e47bd))
|
|
212
448
|
|
|
449
|
+
## [1.2.13](https://github.com/didi/LogicFlow/compare/@logicflow/core@1.2.12...@logicflow/core@1.2.13) (2023-09-08)
|
|
213
450
|
|
|
451
|
+
### Features
|
|
214
452
|
|
|
215
|
-
|
|
453
|
+
- **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))
|
|
454
|
+
- **core:** export egde utils and sampling utils ([9a83d4a](https://github.com/didi/LogicFlow/commit/9a83d4a360c8a113bce46370aecac8e0a2ffb6ea))
|
|
216
455
|
|
|
456
|
+
## [1.2.12](https://github.com/didi/LogicFlow/compare/@logicflow/core@1.2.11...@logicflow/core@1.2.12) (2023-08-16)
|
|
217
457
|
|
|
218
458
|
### Bug Fixes
|
|
219
459
|
|
|
220
|
-
|
|
221
|
-
|
|
460
|
+
- add a symbol to distinguish plugin registration method ([1e0a40a](https://github.com/didi/LogicFlow/commit/1e0a40a94f4f6ebeb584445c48dd10b13ee7504f))
|
|
222
461
|
|
|
223
462
|
### Features
|
|
224
463
|
|
|
225
|
-
|
|
464
|
+
- optimize BPMNAdapter; add input props when register plugin ([4e9a90e](https://github.com/didi/LogicFlow/commit/4e9a90ea2abedee1456119edf0f0c9164e8cc116))
|
|
465
|
+
|
|
466
|
+
## [1.2.11](https://github.com/didi/LogicFlow/compare/@logicflow/core@1.2.10...@logicflow/core@1.2.11) (2023-08-10)
|
|
226
467
|
|
|
468
|
+
### Bug Fixes
|
|
227
469
|
|
|
470
|
+
- **core:** improve the appearance of Bezier curve arrows.([#951](https://github.com/didi/LogicFlow/issues/951)) ([d631e74](https://github.com/didi/LogicFlow/commit/d631e74bd06bbe4d6e749e2563ef5de2bb760a8b))
|
|
228
471
|
|
|
472
|
+
### Features
|
|
229
473
|
|
|
474
|
+
- create logicflow eninge ([c7d80f4](https://github.com/didi/LogicFlow/commit/c7d80f4b4c19cf82af9be49dd8fd44433327db58))
|
|
230
475
|
|
|
231
476
|
## [1.2.10](https://github.com/didi/LogicFlow/compare/@logicflow/core@1.2.9...@logicflow/core@1.2.10) (2023-07-17)
|
|
232
477
|
|
|
233
478
|
**Note:** Version bump only for package @logicflow/core
|
|
234
479
|
|
|
235
|
-
|
|
236
|
-
|
|
237
|
-
|
|
238
|
-
|
|
239
480
|
## [1.2.9](https://github.com/didi/LogicFlow/compare/@logicflow/core@1.2.8...@logicflow/core@1.2.9) (2023-06-21)
|
|
240
481
|
|
|
241
|
-
|
|
242
482
|
### Bug Fixes
|
|
243
483
|
|
|
244
|
-
|
|
245
|
-
|
|
246
|
-
|
|
247
|
-
|
|
248
|
-
|
|
249
|
-
|
|
250
|
-
|
|
251
|
-
|
|
484
|
+
- **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))
|
|
485
|
+
- **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))
|
|
486
|
+
- **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))
|
|
487
|
+
- **core:** prevent isSilentMode=true from calling repeatedly([#1180](https://github.com/didi/LogicFlow/issues/1180)) ([d8a8f5a](https://github.com/didi/LogicFlow/commit/d8a8f5a18b237d994256dc6acc09daef281ca595))
|
|
252
488
|
|
|
253
489
|
## [1.2.8](https://github.com/didi/LogicFlow/compare/@logicflow/core@1.2.6...@logicflow/core@1.2.8) (2023-05-30)
|
|
254
490
|
|
|
255
|
-
|
|
256
491
|
### Bug Fixes
|
|
257
492
|
|
|
258
|
-
|
|
259
|
-
|
|
260
|
-
|
|
261
|
-
|
|
493
|
+
- adjust edge cause text error when delete connected node ([9e0ac91](https://github.com/didi/LogicFlow/commit/9e0ac916ff0e932d7a03b3ca165a76c49453926a))
|
|
494
|
+
- fix the issue of getStartArrow not working.(didi[#1167](https://github.com/didi/LogicFlow/issues/1167)) ([691ed40](https://github.com/didi/LogicFlow/commit/691ed40465d3e3a0dfedc06064dd8df6f7c03e06))
|
|
495
|
+
- 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))
|
|
496
|
+
- remove unnecessary code ([e819c62](https://github.com/didi/LogicFlow/commit/e819c62628d361ed8be13f28755ce5122d2f7d3d))
|
|
262
497
|
|
|
498
|
+
## [1.2.6](https://github.com/didi/LogicFlow/compare/@logicflow/core@1.2.5...@logicflow/core@1.2.6) (2023-05-13)
|
|
263
499
|
|
|
500
|
+
### Bug Fixes
|
|
264
501
|
|
|
502
|
+
- add input of convertLf2ProcessData ([a13ef07](https://github.com/didi/LogicFlow/commit/a13ef07023d7dc72f901193596de1a0e6332f376))
|
|
503
|
+
- add optional input of adpaterOut in class LogicFlow ([ff0f23e](https://github.com/didi/LogicFlow/commit/ff0f23edeef5436bad1e16cceb2c7c0698be3e06))
|
|
504
|
+
- keep use JSON.parse format input data.([#1153](https://github.com/didi/LogicFlow/issues/1153)) ([684a581](https://github.com/didi/LogicFlow/commit/684a5812eddc0c108a2f5c88ea971889f9371e22))
|
|
505
|
+
- 处理没有文本鼠标hover报错的问题 ([7b174f8](https://github.com/didi/LogicFlow/commit/7b174f8d717ff6077572e3527cb50348bed1f93d))
|
|
265
506
|
|
|
507
|
+
### Features
|
|
266
508
|
|
|
267
|
-
|
|
509
|
+
- support undefined as render param ([3577a15](https://github.com/didi/LogicFlow/commit/3577a15c109f4637dd2c8d4b6a35a155dc092fea))
|
|
268
510
|
|
|
511
|
+
## [1.2.5](https://github.com/didi/LogicFlow/compare/@logicflow/core@1.2.3...@logicflow/core@1.2.5) (2023-05-03)
|
|
269
512
|
|
|
270
513
|
### Bug Fixes
|
|
271
514
|
|
|
272
|
-
|
|
273
|
-
|
|
274
|
-
|
|
275
|
-
|
|
276
|
-
|
|
515
|
+
- add new id to nodesMap in changeNodeId api ([8c4fee6](https://github.com/didi/LogicFlow/commit/8c4fee6751cc9113a27497aeaddc8400cc560c89))
|
|
516
|
+
- can not edit text when delete all text([#1067](https://github.com/didi/LogicFlow/issues/1067)) ([b01e4b9](https://github.com/didi/LogicFlow/commit/b01e4b92d8fd0d8f252c6dd81ca2d590821d591a))
|
|
517
|
+
- destory keyboard events while destoty LogicFlow.([#1110](https://github.com/didi/LogicFlow/issues/1110)) ([98e749c](https://github.com/didi/LogicFlow/commit/98e749c9c7849ea3f046705ac4fcb4b60d251629))
|
|
518
|
+
- fix ts's type bug ([93146ae](https://github.com/didi/LogicFlow/commit/93146aeb976ad4a5e849957c971dfefbcf17c44e))
|
|
519
|
+
- 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))
|
|
520
|
+
- getNodeDataById error handing for incorrect nodeId parameter ([8d74393](https://github.com/didi/LogicFlow/commit/8d74393f6c39bc23c4df29a8d6e69c33afdba26f))
|
|
521
|
+
- isolate mobx ([ff6c24f](https://github.com/didi/LogicFlow/commit/ff6c24ff838bafa5196e9d1046049984d9c120a7))
|
|
522
|
+
- observable object cannot appear twice([#837](https://github.com/didi/LogicFlow/issues/837)) ([16f338f](https://github.com/didi/LogicFlow/commit/16f338fe8df7a1cce546f5f5fa07b90864b902f4))
|
|
523
|
+
- set orient to auto while start point and end point is null ([3d55703](https://github.com/didi/LogicFlow/commit/3d55703ec46e7986e9a9968e65a50849d51d1ff0))
|
|
277
524
|
|
|
278
525
|
### Features
|
|
279
526
|
|
|
280
|
-
|
|
527
|
+
- optimize the local development process ([1e188be](https://github.com/didi/LogicFlow/commit/1e188be57f59bb35ee90740ae5b0a835e29e7d0a))
|
|
528
|
+
- support move selected nodes when disabled multipleSelect.([#894](https://github.com/didi/LogicFlow/issues/894)) ([5a97bcc](https://github.com/didi/LogicFlow/commit/5a97bcc098a15a472b0d63d62c6396cd3f8b05dd))
|
|
529
|
+
- the end marker of cubic bezier curve with light deflection ([cca4040](https://github.com/didi/LogicFlow/commit/cca4040d47b9fd7434308101b7533f428aeb1150))
|
|
530
|
+
- use deepclone instead of json parse([#304](https://github.com/didi/LogicFlow/issues/304)) ([502abde](https://github.com/didi/LogicFlow/commit/502abde9155c692f95e0de9c8e9171806de29701))
|
|
281
531
|
|
|
532
|
+
## [1.2.4](https://github.com/didi/LogicFlow/compare/@logicflow/core@1.2.3...@logicflow/core@1.2.4) (2023-04-10)
|
|
282
533
|
|
|
534
|
+
### Bug Fixes
|
|
283
535
|
|
|
536
|
+
- observable object cannot appear twice([#837](https://github.com/didi/LogicFlow/issues/837)) ([16f338f](https://github.com/didi/LogicFlow/commit/16f338fe8df7a1cce546f5f5fa07b90864b902f4))
|
|
284
537
|
|
|
538
|
+
### Features
|
|
285
539
|
|
|
286
|
-
|
|
540
|
+
- optimize the local development process ([1e188be](https://github.com/didi/LogicFlow/commit/1e188be57f59bb35ee90740ae5b0a835e29e7d0a))
|
|
541
|
+
- use deepclone instead of json parse([#304](https://github.com/didi/LogicFlow/issues/304)) ([502abde](https://github.com/didi/LogicFlow/commit/502abde9155c692f95e0de9c8e9171806de29701))
|
|
287
542
|
|
|
543
|
+
## [1.2.3](https://github.com/didi/LogicFlow/compare/@logicflow/core@1.2.2...@logicflow/core@1.2.3) (2023-03-25)
|
|
288
544
|
|
|
289
545
|
### Bug Fixes
|
|
290
546
|
|
|
291
|
-
|
|
292
|
-
* can not edit text when delete all text([#1067](https://github.com/didi/LogicFlow/issues/1067)) ([b01e4b9](https://github.com/didi/LogicFlow/commit/b01e4b92d8fd0d8f252c6dd81ca2d590821d591a))
|
|
293
|
-
* destory keyboard events while destoty LogicFlow.([#1110](https://github.com/didi/LogicFlow/issues/1110)) ([98e749c](https://github.com/didi/LogicFlow/commit/98e749c9c7849ea3f046705ac4fcb4b60d251629))
|
|
294
|
-
* fix ts's type bug ([93146ae](https://github.com/didi/LogicFlow/commit/93146aeb976ad4a5e849957c971dfefbcf17c44e))
|
|
295
|
-
* 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))
|
|
296
|
-
* getNodeDataById error handing for incorrect nodeId parameter ([8d74393](https://github.com/didi/LogicFlow/commit/8d74393f6c39bc23c4df29a8d6e69c33afdba26f))
|
|
297
|
-
* isolate mobx ([ff6c24f](https://github.com/didi/LogicFlow/commit/ff6c24ff838bafa5196e9d1046049984d9c120a7))
|
|
298
|
-
* observable object cannot appear twice([#837](https://github.com/didi/LogicFlow/issues/837)) ([16f338f](https://github.com/didi/LogicFlow/commit/16f338fe8df7a1cce546f5f5fa07b90864b902f4))
|
|
299
|
-
* set orient to auto while start point and end point is null ([3d55703](https://github.com/didi/LogicFlow/commit/3d55703ec46e7986e9a9968e65a50849d51d1ff0))
|
|
300
|
-
|
|
301
|
-
|
|
302
|
-
### Features
|
|
303
|
-
|
|
304
|
-
* optimize the local development process ([1e188be](https://github.com/didi/LogicFlow/commit/1e188be57f59bb35ee90740ae5b0a835e29e7d0a))
|
|
305
|
-
* support move selected nodes when disabled multipleSelect.([#894](https://github.com/didi/LogicFlow/issues/894)) ([5a97bcc](https://github.com/didi/LogicFlow/commit/5a97bcc098a15a472b0d63d62c6396cd3f8b05dd))
|
|
306
|
-
* the end marker of cubic bezier curve with light deflection ([cca4040](https://github.com/didi/LogicFlow/commit/cca4040d47b9fd7434308101b7533f428aeb1150))
|
|
307
|
-
* use deepclone instead of json parse([#304](https://github.com/didi/LogicFlow/issues/304)) ([502abde](https://github.com/didi/LogicFlow/commit/502abde9155c692f95e0de9c8e9171806de29701))
|
|
547
|
+
- update edge path while move nodes([#1027](https://github.com/didi/LogicFlow/issues/1027)) ([9179b62](https://github.com/didi/LogicFlow/commit/9179b621018c51f60f5f12458cd1c487e50b4d63))
|
|
308
548
|
|
|
549
|
+
## [1.2.2](https://github.com/didi/LogicFlow/compare/@logicflow/core@1.2.0...@logicflow/core@1.2.2) (2023-03-25)
|
|
309
550
|
|
|
551
|
+
### Bug Fixes
|
|
310
552
|
|
|
553
|
+
- keep the default browser reaction.([#1046](https://github.com/didi/LogicFlow/issues/1046)) ([533f747](https://github.com/didi/LogicFlow/commit/533f7477eccd2c48290d7550ad17f5487eca21e6))
|
|
554
|
+
- remove shape attributes from theme types.([#1052](https://github.com/didi/LogicFlow/issues/1052)) ([5a315a2](https://github.com/didi/LogicFlow/commit/5a315a2bfbe3a43ecdc2d558da1c3695a32ab342))
|
|
555
|
+
- update logicflow site url ([8774efe](https://github.com/didi/LogicFlow/commit/8774efe5eb8411819e1a44f8c4698111f6fb6ea5))
|
|
311
556
|
|
|
557
|
+
## [1.2.1](https://github.com/didi/LogicFlow/compare/@logicflow/core@1.2.0...@logicflow/core@1.2.1) (2023-03-14)
|
|
312
558
|
|
|
313
|
-
|
|
559
|
+
**Note:** Version bump only for package @logicflow/core
|
|
314
560
|
|
|
561
|
+
# [1.2.0](https://github.com/didi/LogicFlow/compare/@logicflow/core@1.2.0-next.5...@logicflow/core@1.2.0) (2023-03-13)
|
|
315
562
|
|
|
316
563
|
### Bug Fixes
|
|
317
564
|
|
|
318
|
-
|
|
565
|
+
- trigger extension render in difference env ([9be1f58](https://github.com/didi/LogicFlow/commit/9be1f58a3768fd48117e1143939c8a92f61191dc))
|
|
319
566
|
|
|
567
|
+
# [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)
|
|
320
568
|
|
|
321
|
-
###
|
|
569
|
+
### Bug Fixes
|
|
322
570
|
|
|
323
|
-
|
|
324
|
-
|
|
571
|
+
- compatiable witch React.StrictMode ([7da8266](https://github.com/didi/LogicFlow/commit/7da82668f2179b0be19fc9c425dd3bbcc15efd7f))
|
|
572
|
+
- 修复getData时出现报错的情况 ([12cbb06](https://github.com/didi/LogicFlow/commit/12cbb06ef3e45e76ea70a3d8128df66f5e47cd56))
|
|
573
|
+
- 修复初始化节点的时候不传入id导致箭头不显示的问题 ([dfff4cd](https://github.com/didi/LogicFlow/commit/dfff4cd1cf466ae881d297ed9785ef59ad65619a))
|
|
325
574
|
|
|
575
|
+
# [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)
|
|
326
576
|
|
|
577
|
+
**Note:** Version bump only for package @logicflow/core
|
|
327
578
|
|
|
579
|
+
# [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)
|
|
328
580
|
|
|
581
|
+
### Bug Fixes
|
|
329
582
|
|
|
330
|
-
|
|
583
|
+
- 修复边的isHoverd失效问题 ([0ebd6b6](https://github.com/didi/LogicFlow/commit/0ebd6b6218fc3225b918c2cb657d89b933537a75))
|
|
331
584
|
|
|
585
|
+
# [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)
|
|
332
586
|
|
|
333
587
|
### Bug Fixes
|
|
334
588
|
|
|
335
|
-
|
|
589
|
+
- getEndAnchor ([0f4e843](https://github.com/didi/LogicFlow/commit/0f4e843370351014a817b2dc07f9e8e6af581921))
|
|
590
|
+
- twoPointDistance无法获取target参数 ([c760a29](https://github.com/didi/LogicFlow/commit/c760a29abfe2acd76a6f276976451cc827215e95))
|
|
591
|
+
- typos ([ee9f3cd](https://github.com/didi/LogicFlow/commit/ee9f3cd40a819b13887938bf5e6018f77e575917))
|
|
336
592
|
|
|
593
|
+
### Features
|
|
337
594
|
|
|
595
|
+
- Modify the addNode event type ([122f42c](https://github.com/didi/LogicFlow/commit/122f42c06af5038e250418e5be6b65805050b902))
|
|
596
|
+
- node model增加getTaretAnchor方法获取手动连接边到节点时需要连接的锚点(默认返回距离目标位置最近的锚点) ([dfa0421](https://github.com/didi/LogicFlow/commit/dfa04212f6fe0bc5d8b3adfcb90827c1a770a336))
|
|
597
|
+
- 增加本文溢出省略时鼠标移动到文本tip显示全文 ([f14897a](https://github.com/didi/LogicFlow/commit/f14897a076c5ef75f1a7e9f05746bb44f75e92d0))
|
|
598
|
+
- **core&extension:** add pluginOptions attribute on lf instance ([47cd816](https://github.com/didi/LogicFlow/commit/47cd81647532a724456b191d0050f87e833cb968))
|
|
338
599
|
|
|
600
|
+
## [1.1.31](https://github.com/didi/LogicFlow/compare/@logicflow/core@1.1.30...@logicflow/core@1.1.31) (2022-11-12)
|
|
339
601
|
|
|
602
|
+
# [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)
|
|
340
603
|
|
|
341
|
-
|
|
604
|
+
### Features
|
|
342
605
|
|
|
606
|
+
- separate select and setZindex behavior ([53d0293](https://github.com/didi/LogicFlow/commit/53d029317eea3161d63f4837ddea66b845a8e274))
|
|
607
|
+
|
|
608
|
+
# [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)
|
|
343
609
|
|
|
344
610
|
### Bug Fixes
|
|
345
611
|
|
|
346
|
-
|
|
347
|
-
* remove shape attributes from theme types.([#1052](https://github.com/didi/LogicFlow/issues/1052)) ([5a315a2](https://github.com/didi/LogicFlow/commit/5a315a2bfbe3a43ecdc2d558da1c3695a32ab342))
|
|
348
|
-
* update logicflow site url ([8774efe](https://github.com/didi/LogicFlow/commit/8774efe5eb8411819e1a44f8c4698111f6fb6ea5))
|
|
612
|
+
- **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))
|
|
349
613
|
|
|
614
|
+
### Features
|
|
350
615
|
|
|
616
|
+
- add event parameter for node:dnd-add event ([35466b1](https://github.com/didi/LogicFlow/commit/35466b1801aae0783b8ae6b6d16e4a60bb4f6c31))
|
|
617
|
+
- allow use ctrl key to select multiple elements ([e46a2d2](https://github.com/didi/LogicFlow/commit/e46a2d25304f751fd0ee74722bed9f81b478003b))
|
|
351
618
|
|
|
619
|
+
## [1.1.30](https://github.com/didi/LogicFlow/compare/@logicflow/core@1.1.29...@logicflow/core@1.1.30) (2022-10-30)
|
|
352
620
|
|
|
621
|
+
### Bug Fixes
|
|
353
622
|
|
|
354
|
-
|
|
623
|
+
- 处理折线没拖拽成直线后继续拖到报错的问题 ([8e1bf3f](https://github.com/didi/LogicFlow/commit/8e1bf3f9e0c80020bb0c4feffd26bcac70f73c89))
|
|
624
|
+
- keep GroupNode in bottom when select node ([9e3086a](https://github.com/didi/LogicFlow/commit/9e3086a3d5faac116c10ea3dc9ac6796b686ed24))
|
|
355
625
|
|
|
356
|
-
|
|
626
|
+
### Features
|
|
357
627
|
|
|
628
|
+
- keep typo ([3a017c8](https://github.com/didi/LogicFlow/commit/3a017c8855d66cb444388267de6c090bc0fb0c89))
|
|
629
|
+
- set selected element zindex 9999 instead of always front ([b8a2708](https://github.com/didi/LogicFlow/commit/b8a27085e7a86f3d6d8d654447d3c1d4116e5f16))
|
|
358
630
|
|
|
631
|
+
## [1.1.29](https://github.com/didi/LogicFlow/compare/@logicflow/core@1.1.28...@logicflow/core@1.1.29) (2022-09-24)
|
|
359
632
|
|
|
633
|
+
### Bug Fixes
|
|
360
634
|
|
|
635
|
+
- Fix typo: currrentProperties -> currentProperties ([71650b7](https://github.com/didi/LogicFlow/commit/71650b7c51d1ffd9c8b828f26ad2189e3b9cb7a4))
|
|
636
|
+
- Fix typo: getBackgroud -> getBackground ([3ea0c36](https://github.com/didi/LogicFlow/commit/3ea0c369747b75b321a95b22af75d2afc07b9c7a))
|
|
637
|
+
- Fix typo: getCorssPointOfLine -> getCrossPointOfLine ([a2c44b0](https://github.com/didi/LogicFlow/commit/a2c44b09518f089df98eec711ea9b51f8351ac24))
|
|
361
638
|
|
|
362
|
-
|
|
639
|
+
### Features
|
|
363
640
|
|
|
641
|
+
- update turbo plugin ([ed512ca](https://github.com/didi/LogicFlow/commit/ed512ca21d21829cd7c114140b006964fc4090e4))
|
|
364
642
|
|
|
365
|
-
|
|
643
|
+
## [1.1.28](https://github.com/didi/LogicFlow/compare/@logicflow/core@1.1.27...@logicflow/core@1.1.28) (2022-09-17)
|
|
644
|
+
|
|
645
|
+
### Features
|
|
366
646
|
|
|
367
|
-
|
|
647
|
+
- add api delete node and edge property ([9a7c729](https://github.com/didi/LogicFlow/commit/9a7c729c463f5de555d102aa8d22341adf9b3db7))
|
|
368
648
|
|
|
649
|
+
## [1.1.27](https://github.com/didi/LogicFlow/compare/@logicflow/core@1.1.26...@logicflow/core@1.1.27) (2022-09-13)
|
|
369
650
|
|
|
651
|
+
**Note:** Version bump only for package @logicflow/core
|
|
370
652
|
|
|
653
|
+
## [1.1.26](https://github.com/didi/LogicFlow/compare/@logicflow/core@1.1.25...@logicflow/core@1.1.26) (2022-08-27)
|
|
371
654
|
|
|
655
|
+
### Bug Fixes
|
|
372
656
|
|
|
373
|
-
|
|
657
|
+
- 修正 BaseEdgeModel 构造函数属性初始化顺序 ([b4f8f3a](https://github.com/didi/LogicFlow/commit/b4f8f3a0066f6cb0b95c79c4b5febbcf833a7386))
|
|
374
658
|
|
|
659
|
+
### Features
|
|
375
660
|
|
|
376
|
-
|
|
661
|
+
- 增加 edgeGenerator 选项, 可自定义连边规则 ([a9aff50](https://github.com/didi/LogicFlow/commit/a9aff50b87559c9549d2eb6943797a75e09d62a3))
|
|
377
662
|
|
|
378
|
-
|
|
379
|
-
* 修复getData时出现报错的情况 ([12cbb06](https://github.com/didi/LogicFlow/commit/12cbb06ef3e45e76ea70a3d8128df66f5e47cd56))
|
|
380
|
-
* 修复初始化节点的时候不传入id导致箭头不显示的问题 ([dfff4cd](https://github.com/didi/LogicFlow/commit/dfff4cd1cf466ae881d297ed9785ef59ad65619a))
|
|
663
|
+
## [1.1.25](https://github.com/didi/LogicFlow/compare/@logicflow/core@1.1.24...@logicflow/core@1.1.25) (2022-08-21)
|
|
381
664
|
|
|
665
|
+
### Features
|
|
382
666
|
|
|
667
|
+
- group add isAllowAppendIn to support pick node append in group ([e54f798](https://github.com/didi/LogicFlow/commit/e54f79845996e763098cb5749100c76063160023))
|
|
383
668
|
|
|
669
|
+
## [1.1.24](https://github.com/didi/LogicFlow/compare/@logicflow/core@1.1.23...@logicflow/core@1.1.24) (2022-08-11)
|
|
384
670
|
|
|
671
|
+
**Note:** Version bump only for package @logicflow/core
|
|
385
672
|
|
|
386
|
-
|
|
673
|
+
## [1.1.23](https://github.com/didi/LogicFlow/compare/@logicflow/core@1.1.22...@logicflow/core@1.1.23) (2022-08-04)
|
|
387
674
|
|
|
388
675
|
**Note:** Version bump only for package @logicflow/core
|
|
389
676
|
|
|
677
|
+
## [1.1.22](https://github.com/didi/LogicFlow/compare/@logicflow/core@1.1.21...@logicflow/core@1.1.22) (2022-07-13)
|
|
390
678
|
|
|
679
|
+
**Note:** Version bump only for package @logicflow/core
|
|
391
680
|
|
|
681
|
+
## [1.1.21](https://github.com/didi/LogicFlow/compare/@logicflow/core@1.1.20...@logicflow/core@1.1.21) (2022-07-02)
|
|
392
682
|
|
|
683
|
+
### Bug Fixes
|
|
393
684
|
|
|
394
|
-
|
|
685
|
+
- 处理mini大小错误的问题 ([8ef7619](https://github.com/didi/LogicFlow/commit/8ef7619e8f994b9cee2b2544fd3f5bae9f8c0c57))
|
|
686
|
+
- 修复节点无法拖动的问题 ([f6caac9](https://github.com/didi/LogicFlow/commit/f6caac9eebaaf9146ed07d26705befd8c8b71298))
|
|
395
687
|
|
|
688
|
+
## [1.1.20](https://github.com/didi/LogicFlow/compare/@logicflow/core@1.1.19...@logicflow/core@1.1.20) (2022-06-08)
|
|
396
689
|
|
|
397
690
|
### Bug Fixes
|
|
398
691
|
|
|
399
|
-
|
|
692
|
+
- edge:mouseenter trigger twice ([2b4e80a](https://github.com/didi/LogicFlow/commit/2b4e80a14ab21b47e7f6d0bc774006b244450a5c))
|
|
693
|
+
- foreignObject support style ([92e37f4](https://github.com/didi/LogicFlow/commit/92e37f403c93b48a612e97c73ffdcf374b5287c8))
|
|
400
694
|
|
|
695
|
+
### Features
|
|
401
696
|
|
|
697
|
+
- add highlight plugin ([8081f91](https://github.com/didi/LogicFlow/commit/8081f91c448d4ed204f517a555af59c13bbde55f))
|
|
402
698
|
|
|
699
|
+
## [1.1.19](https://github.com/didi/LogicFlow/compare/@logicflow/core@1.1.18...@logicflow/core@1.1.19) (2022-06-01)
|
|
403
700
|
|
|
701
|
+
### Features
|
|
404
702
|
|
|
405
|
-
|
|
703
|
+
- arrow marker, fixes [#637](https://github.com/didi/LogicFlow/issues/637) ([98720b9](https://github.com/didi/LogicFlow/commit/98720b944fd17f343ecf7ec59a5f1d0e79b59a4d))
|
|
406
704
|
|
|
705
|
+
## [1.1.18](https://github.com/didi/LogicFlow/compare/@logicflow/core@1.1.17...@logicflow/core@1.1.18) (2022-05-23)
|
|
407
706
|
|
|
408
|
-
|
|
707
|
+
**Note:** Version bump only for package @logicflow/core
|
|
409
708
|
|
|
410
|
-
|
|
411
|
-
* twoPointDistance无法获取target参数 ([c760a29](https://github.com/didi/LogicFlow/commit/c760a29abfe2acd76a6f276976451cc827215e95))
|
|
412
|
-
* typos ([ee9f3cd](https://github.com/didi/LogicFlow/commit/ee9f3cd40a819b13887938bf5e6018f77e575917))
|
|
709
|
+
## [1.1.17](https://github.com/didi/LogicFlow/compare/@logicflow/core@1.1.16...@logicflow/core@1.1.17) (2022-05-23)
|
|
413
710
|
|
|
711
|
+
**Note:** Version bump only for package @logicflow/core
|
|
414
712
|
|
|
415
|
-
|
|
713
|
+
## [1.1.16](https://github.com/didi/LogicFlow/compare/@logicflow/core@1.1.14...@logicflow/core@1.1.16) (2022-05-18)
|
|
416
714
|
|
|
417
|
-
|
|
418
|
-
* node model增加getTaretAnchor方法获取手动连接边到节点时需要连接的锚点(默认返回距离目标位置最近的锚点) ([dfa0421](https://github.com/didi/LogicFlow/commit/dfa04212f6fe0bc5d8b3adfcb90827c1a770a336))
|
|
419
|
-
* 增加本文溢出省略时鼠标移动到文本tip显示全文 ([f14897a](https://github.com/didi/LogicFlow/commit/f14897a076c5ef75f1a7e9f05746bb44f75e92d0))
|
|
420
|
-
* **core&extension:** add pluginOptions attribute on lf instance ([47cd816](https://github.com/didi/LogicFlow/commit/47cd81647532a724456b191d0050f87e833cb968))
|
|
715
|
+
### Bug Fixes
|
|
421
716
|
|
|
717
|
+
- remove unnecessary object ([fa6ad3f](https://github.com/didi/LogicFlow/commit/fa6ad3ff2c36a9a7979e03eb89ba2ca8c66b8a0b))
|
|
422
718
|
|
|
719
|
+
### Features
|
|
423
720
|
|
|
721
|
+
- add lf-node-select className to node when it is selected ([ce8f6ae](https://github.com/didi/LogicFlow/commit/ce8f6ae4f284de9896c3a0dc4791804b5bb7d23e))
|
|
722
|
+
- lf-edge-select className to edge when it is selected ([6c5c301](https://github.com/didi/LogicFlow/commit/6c5c3015913a6a148c09f621873b539a3bb282c0))
|
|
723
|
+
- setting horizontal and vertical offset separately for fitView ([37c464c](https://github.com/didi/LogicFlow/commit/37c464c1bb4539275e87c62e8c7e2d6701df742b))
|
|
724
|
+
- support edge animation ([d66edec](https://github.com/didi/LogicFlow/commit/d66edec3c834a13242446d26cf0ac630f24495e5))
|
|
725
|
+
- support wrapPadding for edge text which overflowMode is't autoWrap ([f5cc079](https://github.com/didi/LogicFlow/commit/f5cc0792dd9232dd0331312a2358519a96a9a278))
|
|
726
|
+
- triger anchor-drop event when edge created ([4b355c2](https://github.com/didi/LogicFlow/commit/4b355c2361134fb85bce23b1d660f15b1476ce80))
|
|
424
727
|
|
|
728
|
+
## [1.1.15](https://github.com/didi/LogicFlow/compare/@logicflow/core@1.1.14...@logicflow/core@1.1.15) (2022-05-07)
|
|
425
729
|
|
|
426
|
-
|
|
427
|
-
# [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)
|
|
730
|
+
### Bug Fixes
|
|
428
731
|
|
|
732
|
+
- remove unnecessary object ([b0b7507](https://github.com/didi/LogicFlow/commit/b0b7507443d5c8dd0d133bd109d26f036a1a945a))
|
|
429
733
|
|
|
430
734
|
### Features
|
|
431
735
|
|
|
432
|
-
|
|
433
|
-
|
|
736
|
+
- add lf-node-select className to node when it is selected ([ce8f6ae](https://github.com/didi/LogicFlow/commit/ce8f6ae4f284de9896c3a0dc4791804b5bb7d23e))
|
|
737
|
+
- lf-edge-select className to edge when it is selected ([6c5c301](https://github.com/didi/LogicFlow/commit/6c5c3015913a6a148c09f621873b539a3bb282c0))
|
|
738
|
+
- setting horizontal and vertical offset separately for fitView ([37c464c](https://github.com/didi/LogicFlow/commit/37c464c1bb4539275e87c62e8c7e2d6701df742b))
|
|
739
|
+
- support edge animation ([d66edec](https://github.com/didi/LogicFlow/commit/d66edec3c834a13242446d26cf0ac630f24495e5))
|
|
740
|
+
- support wrapPadding for edge text which overflowMode is't autoWrap ([f5cc079](https://github.com/didi/LogicFlow/commit/f5cc0792dd9232dd0331312a2358519a96a9a278))
|
|
434
741
|
|
|
742
|
+
## [1.1.14](https://github.com/didi/LogicFlow/compare/@logicflow/core@1.1.13...@logicflow/core@1.1.14) (2022-04-22)
|
|
435
743
|
|
|
744
|
+
**Note:** Version bump only for package @logicflow/core
|
|
436
745
|
|
|
746
|
+
## [1.1.13](https://github.com/didi/LogicFlow/compare/@logicflow/core@1.1.12...@logicflow/core@1.1.13) (2022-04-16)
|
|
437
747
|
|
|
438
|
-
|
|
748
|
+
### Features
|
|
439
749
|
|
|
750
|
+
- add useGlobalRules and customCssRules property ([88dadb8](https://github.com/didi/LogicFlow/commit/88dadb8e2c96d9f7ee4d4c286a6aa42c8941baaf))
|
|
440
751
|
|
|
441
|
-
|
|
752
|
+
## [1.1.12](https://github.com/didi/LogicFlow/compare/@logicflow/core@1.1.12-alpha.0...@logicflow/core@1.1.12) (2022-04-13)
|
|
442
753
|
|
|
443
|
-
|
|
754
|
+
**Note:** Version bump only for package @logicflow/core
|
|
444
755
|
|
|
756
|
+
## [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)
|
|
445
757
|
|
|
446
|
-
###
|
|
758
|
+
### Bug Fixes
|
|
447
759
|
|
|
448
|
-
|
|
449
|
-
* allow use ctrl key to select multiple elements ([e46a2d2](https://github.com/didi/LogicFlow/commit/e46a2d25304f751fd0ee74722bed9f81b478003b))
|
|
760
|
+
- cannot move node while width and height value is zero ([39238a2](https://github.com/didi/LogicFlow/commit/39238a27b741c7367b7a94c760d4083a2103239d))
|
|
450
761
|
|
|
762
|
+
### Features
|
|
451
763
|
|
|
764
|
+
- add api renderRawData ([07b3d80](https://github.com/didi/LogicFlow/commit/07b3d806052428a9d2edf66db2db7e0938ce010e))
|
|
452
765
|
|
|
766
|
+
## [1.1.11](https://github.com/didi/LogicFlow/compare/@logicflow/core@1.1.10...@logicflow/core@1.1.11) (2022-03-29)
|
|
453
767
|
|
|
768
|
+
**Note:** Version bump only for package @logicflow/core
|
|
454
769
|
|
|
455
|
-
## [1.1.
|
|
770
|
+
## [1.1.10](https://github.com/didi/LogicFlow/compare/@logicflow/core@1.1.9...@logicflow/core@1.1.10) (2022-03-29)
|
|
456
771
|
|
|
772
|
+
**Note:** Version bump only for package @logicflow/core
|
|
457
773
|
|
|
458
|
-
|
|
774
|
+
## [1.1.9](https://github.com/didi/LogicFlow/compare/@logicflow/core@1.1.9-alpha.1...@logicflow/core@1.1.9) (2022-03-26)
|
|
459
775
|
|
|
460
|
-
|
|
461
|
-
* keep GroupNode in bottom when select node ([9e3086a](https://github.com/didi/LogicFlow/commit/9e3086a3d5faac116c10ea3dc9ac6796b686ed24))
|
|
776
|
+
**Note:** Version bump only for package @logicflow/core
|
|
462
777
|
|
|
778
|
+
## [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)
|
|
463
779
|
|
|
464
780
|
### Features
|
|
465
781
|
|
|
466
|
-
|
|
467
|
-
|
|
782
|
+
- optimize move group children behavior ([d492f20](https://github.com/didi/LogicFlow/commit/d492f20a7205c81a709f7a151b9127a2709d81a4))
|
|
783
|
+
- optimize move node behavior ([d0e4e85](https://github.com/didi/LogicFlow/commit/d0e4e856cf58e92a98e309cdd698724bc1163295))
|
|
468
784
|
|
|
785
|
+
## [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)
|
|
469
786
|
|
|
787
|
+
### Bug Fixes
|
|
470
788
|
|
|
789
|
+
- 修复新增分组子节点未被记录的问题 ([24d9fc9](https://github.com/didi/LogicFlow/commit/24d9fc9d056f34141520da4a3f9482fe031ec325))
|
|
471
790
|
|
|
791
|
+
### Features
|
|
472
792
|
|
|
473
|
-
|
|
793
|
+
- optimize anchor line dragging behavior while near graph boundary ([0d798cc](https://github.com/didi/LogicFlow/commit/0d798ccbde91bae734e7b655d85709435626cb42))
|
|
794
|
+
- remove html demo ([a744bb2](https://github.com/didi/LogicFlow/commit/a744bb2a20d1e6fd6f7ea3b1269a9a45211501ad))
|
|
474
795
|
|
|
796
|
+
## [1.1.8](https://github.com/didi/LogicFlow/compare/@logicflow/core@1.1.8-alpha.0...@logicflow/core@1.1.8) (2022-03-25)
|
|
475
797
|
|
|
476
798
|
### Bug Fixes
|
|
477
799
|
|
|
478
|
-
|
|
479
|
-
* Fix typo: getBackgroud -> getBackground ([3ea0c36](https://github.com/didi/LogicFlow/commit/3ea0c369747b75b321a95b22af75d2afc07b9c7a))
|
|
480
|
-
* Fix typo: getCorssPointOfLine -> getCrossPointOfLine ([a2c44b0](https://github.com/didi/LogicFlow/commit/a2c44b09518f089df98eec711ea9b51f8351ac24))
|
|
481
|
-
|
|
800
|
+
- 修复新增分组子节点未被记录的问题 ([24d9fc9](https://github.com/didi/LogicFlow/commit/24d9fc9d056f34141520da4a3f9482fe031ec325))
|
|
482
801
|
|
|
483
802
|
### Features
|
|
484
803
|
|
|
485
|
-
|
|
804
|
+
- optimize anchor line dragging behavior while near graph boundary ([0d798cc](https://github.com/didi/LogicFlow/commit/0d798ccbde91bae734e7b655d85709435626cb42))
|
|
486
805
|
|
|
806
|
+
## [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)
|
|
487
807
|
|
|
808
|
+
### Bug Fixes
|
|
488
809
|
|
|
810
|
+
- 修复了`group`插件在多个`group`节点一起被折叠报错的问题。 ([396736e](https://github.com/didi/LogicFlow/commit/396736e07c320985f7c779b272085ba1f66f1083))
|
|
811
|
+
- group undo cannot fold ([5860d7e](https://github.com/didi/LogicFlow/commit/5860d7ef4770f655fab1bb5ee6114dc63757b725))
|
|
489
812
|
|
|
813
|
+
### Features
|
|
490
814
|
|
|
491
|
-
|
|
815
|
+
- 调整translateCenter方法的挂载对象 ([d10a526](https://github.com/didi/LogicFlow/commit/d10a5263c1c922ee0b0356c01dde248dec6fe5d0))
|
|
816
|
+
- 画布居中代码优化 ([d06b162](https://github.com/didi/LogicFlow/commit/d06b16296c0e655c93f6e6670f09156c89c7204e))
|
|
817
|
+
- 优化画布图形居中虚拟矩形的计算规则,新增适应屏幕大小功能 ([e0c0ea1](https://github.com/didi/LogicFlow/commit/e0c0ea15f4962ca9502606fec6ddc070d65c78a7))
|
|
818
|
+
- 支持画布整体居中 ([39b1532](https://github.com/didi/LogicFlow/commit/39b15324bb978b2842f6638a9fa0626621910323))
|
|
819
|
+
- add node resize maxwidth and maxheight ([e98f575](https://github.com/didi/LogicFlow/commit/e98f575d19c5c7c9a74c7ad3302c1a8cb02bd5e3))
|
|
820
|
+
- add vue3 example ([9969b97](https://github.com/didi/LogicFlow/commit/9969b978d93ce863901d364bc5f01a9b9f6db269))
|
|
821
|
+
- optimize drag node behavior ([f88042d](https://github.com/didi/LogicFlow/commit/f88042d5623a0983003bd70098b4e0c12ba60d3d))
|
|
492
822
|
|
|
823
|
+
## [1.1.7](https://github.com/didi/LogicFlow/compare/@logicflow/core@1.1.7-alpha.0...@logicflow/core@1.1.7) (2022-03-07)
|
|
493
824
|
|
|
494
|
-
|
|
825
|
+
**Note:** Version bump only for package @logicflow/core
|
|
495
826
|
|
|
496
|
-
|
|
827
|
+
## [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)
|
|
497
828
|
|
|
829
|
+
### Bug Fixes
|
|
498
830
|
|
|
831
|
+
- click node cancel edit text ([a514665](https://github.com/didi/LogicFlow/commit/a5146652b78d665d7058b7d810a26af07659ca43))
|
|
499
832
|
|
|
833
|
+
### Features
|
|
500
834
|
|
|
835
|
+
- add getAnchorShape function which allow rewrite anchor shape ([e5a7d77](https://github.com/didi/LogicFlow/commit/e5a7d77b898c93ece38e28fbdbef443ec8d23fcc))
|
|
501
836
|
|
|
502
|
-
## [1.1.
|
|
837
|
+
## [1.1.6](https://github.com/didi/LogicFlow/compare/@logicflow/core@1.1.5...@logicflow/core@1.1.6) (2022-03-02)
|
|
503
838
|
|
|
504
839
|
**Note:** Version bump only for package @logicflow/core
|
|
505
840
|
|
|
841
|
+
## [1.1.5](https://github.com/didi/LogicFlow/compare/@logicflow/core@1.1.4...@logicflow/core@1.1.5) (2022-03-02)
|
|
506
842
|
|
|
843
|
+
### Bug Fixes
|
|
507
844
|
|
|
845
|
+
- change strokeDasharray type from array to string ([dd9d42e](https://github.com/didi/LogicFlow/commit/dd9d42ed26da46558592124533954f23b28aade2))
|
|
846
|
+
- edge animation demo ([e8895cc](https://github.com/didi/LogicFlow/commit/e8895cc230fccf007638db2cdfd79b25f7cba1b9))
|
|
847
|
+
- trigger dragstart when dragging ([5ff04c8](https://github.com/didi/LogicFlow/commit/5ff04c807364a03554135d57c49b4f181b6f2414))
|
|
508
848
|
|
|
849
|
+
### Features
|
|
509
850
|
|
|
510
|
-
|
|
851
|
+
- anchor add event api ([4309b81](https://github.com/didi/LogicFlow/commit/4309b81902280f0dacb7fb169b6b9c34f06de3f7))
|
|
852
|
+
- support animation ([c58c147](https://github.com/didi/LogicFlow/commit/c58c147c172901604834dda1a0dbb62a5f653579))
|
|
511
853
|
|
|
854
|
+
## [1.1.4](https://github.com/didi/LogicFlow/compare/@logicflow/core@1.1.3...@logicflow/core@1.1.4) (2022-02-23)
|
|
512
855
|
|
|
513
856
|
### Bug Fixes
|
|
514
857
|
|
|
515
|
-
|
|
516
|
-
|
|
858
|
+
- change node state to default when create edge success ([9f57894](https://github.com/didi/LogicFlow/commit/9f57894034c9b6d86323e93d22a1185fe433843c))
|
|
859
|
+
- editConfigModel add isSilentMode ([8fcd571](https://github.com/didi/LogicFlow/commit/8fcd57143ccf1055a2c176ef417d7498ef178694))
|
|
517
860
|
|
|
518
861
|
### Features
|
|
519
862
|
|
|
520
|
-
|
|
863
|
+
- node model add incoming & outgoing ([8cf1469](https://github.com/didi/LogicFlow/commit/8cf14690b3c8378b11e5028700539a8fdb12bee1))
|
|
864
|
+
- update docs ([c60d9d7](https://github.com/didi/LogicFlow/commit/c60d9d75f167ac32d871810ef2c5f7dbc5403462))
|
|
521
865
|
|
|
866
|
+
## [1.1.3](https://github.com/didi/LogicFlow/compare/@logicflow/core@1.1.3-alpha.0...@logicflow/core@1.1.3) (2022-02-18)
|
|
522
867
|
|
|
868
|
+
### Bug Fixes
|
|
523
869
|
|
|
870
|
+
- stop edit text when input enter + alt ([438daec](https://github.com/didi/LogicFlow/commit/438daec1de3378f25b245feda8a71bead6c96ba8))
|
|
524
871
|
|
|
872
|
+
## [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)
|
|
525
873
|
|
|
526
|
-
|
|
874
|
+
**Note:** Version bump only for package @logicflow/core
|
|
527
875
|
|
|
876
|
+
## [1.1.1](https://github.com/didi/LogicFlow/compare/@logicflow/core@1.1.0...@logicflow/core@1.1.1) (2022-02-10)
|
|
528
877
|
|
|
529
878
|
### Features
|
|
530
879
|
|
|
531
|
-
|
|
880
|
+
- check width and height type ([141c667](https://github.com/didi/LogicFlow/commit/141c6678503870a9d7503864353ad6cc7493fd24))
|
|
532
881
|
|
|
882
|
+
# [1.1.0](https://github.com/didi/LogicFlow/compare/@logicflow/core@1.1.0-alpha.7...@logicflow/core@1.1.0) (2022-02-09)
|
|
533
883
|
|
|
884
|
+
**Note:** Version bump only for package @logicflow/core
|
|
534
885
|
|
|
886
|
+
# [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)
|
|
535
887
|
|
|
888
|
+
**Note:** Version bump only for package @logicflow/core
|
|
536
889
|
|
|
537
|
-
|
|
890
|
+
# [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)
|
|
538
891
|
|
|
539
892
|
**Note:** Version bump only for package @logicflow/core
|
|
540
893
|
|
|
894
|
+
# [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)
|
|
895
|
+
|
|
896
|
+
### Bug Fixes
|
|
541
897
|
|
|
898
|
+
- use autoToFront property take node to front ([3a8a7cc](https://github.com/didi/LogicFlow/commit/3a8a7cc6a981f53837f8774aa3130b7e6d5593b9))
|
|
542
899
|
|
|
900
|
+
### Features
|
|
543
901
|
|
|
902
|
+
- add attribute visible to element ([4676427](https://github.com/didi/LogicFlow/commit/46764279f6667354b1d67186e0f131f764c3eb79))
|
|
903
|
+
- add getModelById & getDataById ([ad8d4e6](https://github.com/didi/LogicFlow/commit/ad8d4e62ff781914017ce478fa07ccdb36f0fe75))
|
|
904
|
+
- add graph:rendered event ([a3838c3](https://github.com/didi/LogicFlow/commit/a3838c385328bc9e3a41e39c555736d5f59de573))
|
|
905
|
+
- add group hook ([a955e7c](https://github.com/didi/LogicFlow/commit/a955e7ca151e0dd547a3995bbfed42e68f25183a))
|
|
906
|
+
- group support fold ([c1d8c10](https://github.com/didi/LogicFlow/commit/c1d8c109b25a3145c8c6858c4b6b5f0b6bf072ba))
|
|
907
|
+
- group support resize ([d9e2403](https://github.com/didi/LogicFlow/commit/d9e2403e00bce05c65d4d5b018ac3e2b9072cecd))
|
|
544
908
|
|
|
545
|
-
|
|
909
|
+
# [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)
|
|
546
910
|
|
|
547
911
|
**Note:** Version bump only for package @logicflow/core
|
|
548
912
|
|
|
913
|
+
# [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)
|
|
549
914
|
|
|
915
|
+
**Note:** Version bump only for package @logicflow/core
|
|
550
916
|
|
|
917
|
+
# [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)
|
|
551
918
|
|
|
919
|
+
**Note:** Version bump only for package @logicflow/core
|
|
552
920
|
|
|
553
|
-
## [1.
|
|
921
|
+
## [1.0.7](https://github.com/didi/LogicFlow/compare/@logicflow/core@1.0.7-alpha.1...@logicflow/core@1.0.7) (2022-01-18)
|
|
554
922
|
|
|
555
923
|
**Note:** Version bump only for package @logicflow/core
|
|
556
924
|
|
|
925
|
+
## [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)
|
|
557
926
|
|
|
927
|
+
### Bug Fixes
|
|
558
928
|
|
|
929
|
+
- addEdge return edgeModel ([e91f995](https://github.com/didi/LogicFlow/commit/e91f99502a9f7bafcf93e4aac1f32dfc3fb0a603))
|
|
559
930
|
|
|
931
|
+
## [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)
|
|
560
932
|
|
|
561
|
-
|
|
933
|
+
### Bug Fixes
|
|
562
934
|
|
|
935
|
+
- add virtual field ([5894ae0](https://github.com/didi/LogicFlow/commit/5894ae0104bc567ef4678662b8e571c1c1d19820))
|
|
936
|
+
- error name ([ef10a93](https://github.com/didi/LogicFlow/commit/ef10a93198b34017fbec7dedb4c66a39ceff5536))
|
|
937
|
+
- **core:** adjust polyline bugfix ([e87f2c9](https://github.com/didi/LogicFlow/commit/e87f2c9c772558b2de0d6850ca528a59cbafaf6f))
|
|
938
|
+
- typo ([facccdf](https://github.com/didi/LogicFlow/commit/facccdf3b98d44650c75e34a66ed33f5e0d8f75e))
|
|
563
939
|
|
|
564
|
-
###
|
|
940
|
+
### Features
|
|
565
941
|
|
|
566
|
-
|
|
567
|
-
* 修复节点无法拖动的问题 ([f6caac9](https://github.com/didi/LogicFlow/commit/f6caac9eebaaf9146ed07d26705befd8c8b71298))
|
|
942
|
+
- lf support plugins ([3dacdb6](https://github.com/didi/LogicFlow/commit/3dacdb6e39ff0fa84b0c3e525bf3e6d1b91a29f4))
|
|
568
943
|
|
|
944
|
+
## [1.0.4](https://github.com/didi/LogicFlow/compare/@logicflow/core@1.0.0-alpha.12...@logicflow/core@1.0.4) (2022-01-12)
|
|
569
945
|
|
|
946
|
+
### Bug Fixes
|
|
570
947
|
|
|
948
|
+
- change edge type remove pointsList ([433c8e8](https://github.com/didi/LogicFlow/commit/433c8e805da226e37550c7abd770748f8c8a8bdc))
|
|
949
|
+
- focus on ([2301c09](https://github.com/didi/LogicFlow/commit/2301c094f2853591741101623da879ea7e0d22de))
|
|
950
|
+
- mini map viewport ([38c2408](https://github.com/didi/LogicFlow/commit/38c2408e0f8a76dd0b49b9271dd259fd8b6fa684))
|
|
951
|
+
- move edge not keep controls ([b8f28f3](https://github.com/didi/LogicFlow/commit/b8f28f38d943ab2881a2f375603025e01573c0d8))
|
|
952
|
+
- node updateText observable ([b04f96a](https://github.com/didi/LogicFlow/commit/b04f96abf639befeaa5cf22be9407955926a5118))
|
|
953
|
+
- rewrite text node getTextStyle ([2717203](https://github.com/didi/LogicFlow/commit/27172038a282404c02697986736bf10955117d16))
|
|
954
|
+
- typo EditConfigMode ([fed381b](https://github.com/didi/LogicFlow/commit/fed381b47ec3786f43d043c07c33f01458239840))
|
|
571
955
|
|
|
956
|
+
### Features
|
|
572
957
|
|
|
573
|
-
|
|
958
|
+
- release 1.0.0🎉🎉 ([670fed7](https://github.com/didi/LogicFlow/commit/670fed7fa3e0cb0ee39501251d177c693694ef59))
|
|
574
959
|
|
|
960
|
+
## [1.0.1](https://github.com/didi/LogicFlow/compare/@logicflow/core@1.0.0-alpha.12...@logicflow/core@1.0.1) (2022-01-07)
|
|
575
961
|
|
|
576
962
|
### Bug Fixes
|
|
577
963
|
|
|
578
|
-
|
|
579
|
-
|
|
580
|
-
|
|
964
|
+
- focus on ([2301c09](https://github.com/didi/LogicFlow/commit/2301c094f2853591741101623da879ea7e0d22de))
|
|
965
|
+
- rewrite text node getTextStyle ([2717203](https://github.com/didi/LogicFlow/commit/27172038a282404c02697986736bf10955117d16))
|
|
966
|
+
- typo EditConfigMode ([fed381b](https://github.com/didi/LogicFlow/commit/fed381b47ec3786f43d043c07c33f01458239840))
|
|
581
967
|
|
|
582
968
|
### Features
|
|
583
969
|
|
|
584
|
-
|
|
970
|
+
- release 1.0.0🎉🎉 ([670fed7](https://github.com/didi/LogicFlow/commit/670fed7fa3e0cb0ee39501251d177c693694ef59))
|
|
585
971
|
|
|
972
|
+
# [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)
|
|
586
973
|
|
|
974
|
+
### Bug Fixes
|
|
587
975
|
|
|
976
|
+
- reset offset ([3ab0425](https://github.com/didi/LogicFlow/commit/3ab0425fdba12e934c0380b3f4229314071e630f))
|
|
588
977
|
|
|
978
|
+
# [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)
|
|
589
979
|
|
|
590
|
-
|
|
980
|
+
### Bug Fixes
|
|
591
981
|
|
|
982
|
+
- custom node ([2155c37](https://github.com/didi/LogicFlow/commit/2155c379144469848ea08511c9c1c145105f46df))
|
|
592
983
|
|
|
593
|
-
|
|
984
|
+
# [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)
|
|
594
985
|
|
|
595
|
-
|
|
986
|
+
### Bug Fixes
|
|
596
987
|
|
|
988
|
+
- history change ([1ed9799](https://github.com/didi/LogicFlow/commit/1ed9799a0321b1d5e761b3e25ae8d874d8c310f3))
|
|
597
989
|
|
|
990
|
+
### Features
|
|
598
991
|
|
|
992
|
+
- merge master ([2f418bc](https://github.com/didi/LogicFlow/commit/2f418bcbeb60ac7162718d6022047aeb326a50d8))
|
|
599
993
|
|
|
600
|
-
|
|
601
|
-
## [1.1.18](https://github.com/didi/LogicFlow/compare/@logicflow/core@1.1.17...@logicflow/core@1.1.18) (2022-05-23)
|
|
602
|
-
|
|
603
|
-
**Note:** Version bump only for package @logicflow/core
|
|
604
|
-
|
|
605
|
-
|
|
606
|
-
|
|
607
|
-
|
|
608
|
-
|
|
609
|
-
## [1.1.17](https://github.com/didi/LogicFlow/compare/@logicflow/core@1.1.16...@logicflow/core@1.1.17) (2022-05-23)
|
|
610
|
-
|
|
611
|
-
**Note:** Version bump only for package @logicflow/core
|
|
612
|
-
|
|
613
|
-
|
|
614
|
-
|
|
615
|
-
|
|
616
|
-
|
|
617
|
-
## [1.1.16](https://github.com/didi/LogicFlow/compare/@logicflow/core@1.1.14...@logicflow/core@1.1.16) (2022-05-18)
|
|
618
|
-
|
|
619
|
-
|
|
620
|
-
### Bug Fixes
|
|
621
|
-
|
|
622
|
-
* remove unnecessary object ([fa6ad3f](https://github.com/didi/LogicFlow/commit/fa6ad3ff2c36a9a7979e03eb89ba2ca8c66b8a0b))
|
|
623
|
-
|
|
624
|
-
|
|
625
|
-
### Features
|
|
626
|
-
|
|
627
|
-
* add lf-node-select className to node when it is selected ([ce8f6ae](https://github.com/didi/LogicFlow/commit/ce8f6ae4f284de9896c3a0dc4791804b5bb7d23e))
|
|
628
|
-
* lf-edge-select className to edge when it is selected ([6c5c301](https://github.com/didi/LogicFlow/commit/6c5c3015913a6a148c09f621873b539a3bb282c0))
|
|
629
|
-
* setting horizontal and vertical offset separately for fitView ([37c464c](https://github.com/didi/LogicFlow/commit/37c464c1bb4539275e87c62e8c7e2d6701df742b))
|
|
630
|
-
* support edge animation ([d66edec](https://github.com/didi/LogicFlow/commit/d66edec3c834a13242446d26cf0ac630f24495e5))
|
|
631
|
-
* support wrapPadding for edge text which overflowMode is't autoWrap ([f5cc079](https://github.com/didi/LogicFlow/commit/f5cc0792dd9232dd0331312a2358519a96a9a278))
|
|
632
|
-
* triger anchor-drop event when edge created ([4b355c2](https://github.com/didi/LogicFlow/commit/4b355c2361134fb85bce23b1d660f15b1476ce80))
|
|
633
|
-
|
|
634
|
-
|
|
635
|
-
|
|
636
|
-
|
|
637
|
-
|
|
638
|
-
## [1.1.15](https://github.com/didi/LogicFlow/compare/@logicflow/core@1.1.14...@logicflow/core@1.1.15) (2022-05-07)
|
|
639
|
-
|
|
640
|
-
|
|
641
|
-
### Bug Fixes
|
|
642
|
-
|
|
643
|
-
* remove unnecessary object ([b0b7507](https://github.com/didi/LogicFlow/commit/b0b7507443d5c8dd0d133bd109d26f036a1a945a))
|
|
644
|
-
|
|
645
|
-
|
|
646
|
-
### Features
|
|
647
|
-
|
|
648
|
-
* add lf-node-select className to node when it is selected ([ce8f6ae](https://github.com/didi/LogicFlow/commit/ce8f6ae4f284de9896c3a0dc4791804b5bb7d23e))
|
|
649
|
-
* lf-edge-select className to edge when it is selected ([6c5c301](https://github.com/didi/LogicFlow/commit/6c5c3015913a6a148c09f621873b539a3bb282c0))
|
|
650
|
-
* setting horizontal and vertical offset separately for fitView ([37c464c](https://github.com/didi/LogicFlow/commit/37c464c1bb4539275e87c62e8c7e2d6701df742b))
|
|
651
|
-
* support edge animation ([d66edec](https://github.com/didi/LogicFlow/commit/d66edec3c834a13242446d26cf0ac630f24495e5))
|
|
652
|
-
* support wrapPadding for edge text which overflowMode is't autoWrap ([f5cc079](https://github.com/didi/LogicFlow/commit/f5cc0792dd9232dd0331312a2358519a96a9a278))
|
|
653
|
-
|
|
654
|
-
|
|
655
|
-
|
|
656
|
-
|
|
657
|
-
|
|
658
|
-
## [1.1.14](https://github.com/didi/LogicFlow/compare/@logicflow/core@1.1.13...@logicflow/core@1.1.14) (2022-04-22)
|
|
659
|
-
|
|
660
|
-
**Note:** Version bump only for package @logicflow/core
|
|
661
|
-
|
|
662
|
-
|
|
663
|
-
|
|
664
|
-
|
|
665
|
-
|
|
666
|
-
## [1.1.13](https://github.com/didi/LogicFlow/compare/@logicflow/core@1.1.12...@logicflow/core@1.1.13) (2022-04-16)
|
|
667
|
-
|
|
668
|
-
|
|
669
|
-
### Features
|
|
670
|
-
|
|
671
|
-
* add useGlobalRules and customCssRules property ([88dadb8](https://github.com/didi/LogicFlow/commit/88dadb8e2c96d9f7ee4d4c286a6aa42c8941baaf))
|
|
672
|
-
|
|
673
|
-
|
|
674
|
-
|
|
675
|
-
|
|
676
|
-
|
|
677
|
-
## [1.1.12](https://github.com/didi/LogicFlow/compare/@logicflow/core@1.1.12-alpha.0...@logicflow/core@1.1.12) (2022-04-13)
|
|
678
|
-
|
|
679
|
-
**Note:** Version bump only for package @logicflow/core
|
|
680
|
-
|
|
681
|
-
|
|
682
|
-
|
|
683
|
-
|
|
684
|
-
|
|
685
|
-
## [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)
|
|
686
|
-
|
|
687
|
-
|
|
688
|
-
### Bug Fixes
|
|
689
|
-
|
|
690
|
-
* cannot move node while width and height value is zero ([39238a2](https://github.com/didi/LogicFlow/commit/39238a27b741c7367b7a94c760d4083a2103239d))
|
|
691
|
-
|
|
692
|
-
|
|
693
|
-
### Features
|
|
694
|
-
|
|
695
|
-
* add api renderRawData ([07b3d80](https://github.com/didi/LogicFlow/commit/07b3d806052428a9d2edf66db2db7e0938ce010e))
|
|
696
|
-
|
|
697
|
-
|
|
698
|
-
|
|
699
|
-
|
|
700
|
-
|
|
701
|
-
## [1.1.11](https://github.com/didi/LogicFlow/compare/@logicflow/core@1.1.10...@logicflow/core@1.1.11) (2022-03-29)
|
|
702
|
-
|
|
703
|
-
**Note:** Version bump only for package @logicflow/core
|
|
704
|
-
|
|
705
|
-
|
|
706
|
-
|
|
707
|
-
|
|
708
|
-
|
|
709
|
-
## [1.1.10](https://github.com/didi/LogicFlow/compare/@logicflow/core@1.1.9...@logicflow/core@1.1.10) (2022-03-29)
|
|
710
|
-
|
|
711
|
-
**Note:** Version bump only for package @logicflow/core
|
|
712
|
-
|
|
713
|
-
|
|
714
|
-
|
|
715
|
-
|
|
716
|
-
|
|
717
|
-
## [1.1.9](https://github.com/didi/LogicFlow/compare/@logicflow/core@1.1.9-alpha.1...@logicflow/core@1.1.9) (2022-03-26)
|
|
718
|
-
|
|
719
|
-
**Note:** Version bump only for package @logicflow/core
|
|
720
|
-
|
|
721
|
-
|
|
722
|
-
|
|
723
|
-
|
|
724
|
-
|
|
725
|
-
## [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)
|
|
726
|
-
|
|
727
|
-
|
|
728
|
-
### Features
|
|
729
|
-
|
|
730
|
-
* optimize move group children behavior ([d492f20](https://github.com/didi/LogicFlow/commit/d492f20a7205c81a709f7a151b9127a2709d81a4))
|
|
731
|
-
* optimize move node behavior ([d0e4e85](https://github.com/didi/LogicFlow/commit/d0e4e856cf58e92a98e309cdd698724bc1163295))
|
|
732
|
-
|
|
733
|
-
|
|
734
|
-
|
|
735
|
-
|
|
736
|
-
|
|
737
|
-
## [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)
|
|
738
|
-
|
|
739
|
-
|
|
740
|
-
### Bug Fixes
|
|
741
|
-
|
|
742
|
-
* 修复新增分组子节点未被记录的问题 ([24d9fc9](https://github.com/didi/LogicFlow/commit/24d9fc9d056f34141520da4a3f9482fe031ec325))
|
|
743
|
-
|
|
744
|
-
|
|
745
|
-
### Features
|
|
746
|
-
|
|
747
|
-
* optimize anchor line dragging behavior while near graph boundary ([0d798cc](https://github.com/didi/LogicFlow/commit/0d798ccbde91bae734e7b655d85709435626cb42))
|
|
748
|
-
* remove html demo ([a744bb2](https://github.com/didi/LogicFlow/commit/a744bb2a20d1e6fd6f7ea3b1269a9a45211501ad))
|
|
749
|
-
|
|
750
|
-
|
|
751
|
-
|
|
752
|
-
|
|
753
|
-
|
|
754
|
-
## [1.1.8](https://github.com/didi/LogicFlow/compare/@logicflow/core@1.1.8-alpha.0...@logicflow/core@1.1.8) (2022-03-25)
|
|
755
|
-
|
|
756
|
-
|
|
757
|
-
### Bug Fixes
|
|
758
|
-
|
|
759
|
-
* 修复新增分组子节点未被记录的问题 ([24d9fc9](https://github.com/didi/LogicFlow/commit/24d9fc9d056f34141520da4a3f9482fe031ec325))
|
|
760
|
-
|
|
761
|
-
|
|
762
|
-
### Features
|
|
763
|
-
|
|
764
|
-
* optimize anchor line dragging behavior while near graph boundary ([0d798cc](https://github.com/didi/LogicFlow/commit/0d798ccbde91bae734e7b655d85709435626cb42))
|
|
765
|
-
|
|
766
|
-
|
|
767
|
-
|
|
768
|
-
|
|
769
|
-
|
|
770
|
-
## [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)
|
|
771
|
-
|
|
772
|
-
|
|
773
|
-
### Bug Fixes
|
|
774
|
-
|
|
775
|
-
* 修复了`group`插件在多个`group`节点一起被折叠报错的问题。 ([396736e](https://github.com/didi/LogicFlow/commit/396736e07c320985f7c779b272085ba1f66f1083))
|
|
776
|
-
* group undo cannot fold ([5860d7e](https://github.com/didi/LogicFlow/commit/5860d7ef4770f655fab1bb5ee6114dc63757b725))
|
|
777
|
-
|
|
778
|
-
|
|
779
|
-
### Features
|
|
780
|
-
|
|
781
|
-
* 调整translateCenter方法的挂载对象 ([d10a526](https://github.com/didi/LogicFlow/commit/d10a5263c1c922ee0b0356c01dde248dec6fe5d0))
|
|
782
|
-
* 画布居中代码优化 ([d06b162](https://github.com/didi/LogicFlow/commit/d06b16296c0e655c93f6e6670f09156c89c7204e))
|
|
783
|
-
* 优化画布图形居中虚拟矩形的计算规则,新增适应屏幕大小功能 ([e0c0ea1](https://github.com/didi/LogicFlow/commit/e0c0ea15f4962ca9502606fec6ddc070d65c78a7))
|
|
784
|
-
* 支持画布整体居中 ([39b1532](https://github.com/didi/LogicFlow/commit/39b15324bb978b2842f6638a9fa0626621910323))
|
|
785
|
-
* add node resize maxwidth and maxheight ([e98f575](https://github.com/didi/LogicFlow/commit/e98f575d19c5c7c9a74c7ad3302c1a8cb02bd5e3))
|
|
786
|
-
* add vue3 example ([9969b97](https://github.com/didi/LogicFlow/commit/9969b978d93ce863901d364bc5f01a9b9f6db269))
|
|
787
|
-
* optimize drag node behavior ([f88042d](https://github.com/didi/LogicFlow/commit/f88042d5623a0983003bd70098b4e0c12ba60d3d))
|
|
788
|
-
|
|
789
|
-
|
|
790
|
-
|
|
791
|
-
|
|
792
|
-
|
|
793
|
-
## [1.1.7](https://github.com/didi/LogicFlow/compare/@logicflow/core@1.1.7-alpha.0...@logicflow/core@1.1.7) (2022-03-07)
|
|
794
|
-
|
|
795
|
-
**Note:** Version bump only for package @logicflow/core
|
|
796
|
-
|
|
797
|
-
|
|
798
|
-
|
|
799
|
-
|
|
800
|
-
|
|
801
|
-
## [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)
|
|
802
|
-
|
|
803
|
-
|
|
804
|
-
### Bug Fixes
|
|
805
|
-
|
|
806
|
-
* click node cancel edit text ([a514665](https://github.com/didi/LogicFlow/commit/a5146652b78d665d7058b7d810a26af07659ca43))
|
|
807
|
-
|
|
808
|
-
|
|
809
|
-
### Features
|
|
810
|
-
|
|
811
|
-
* add getAnchorShape function which allow rewrite anchor shape ([e5a7d77](https://github.com/didi/LogicFlow/commit/e5a7d77b898c93ece38e28fbdbef443ec8d23fcc))
|
|
812
|
-
|
|
813
|
-
|
|
814
|
-
|
|
815
|
-
|
|
816
|
-
|
|
817
|
-
## [1.1.6](https://github.com/didi/LogicFlow/compare/@logicflow/core@1.1.5...@logicflow/core@1.1.6) (2022-03-02)
|
|
818
|
-
|
|
819
|
-
**Note:** Version bump only for package @logicflow/core
|
|
820
|
-
|
|
821
|
-
|
|
822
|
-
|
|
823
|
-
|
|
824
|
-
|
|
825
|
-
## [1.1.5](https://github.com/didi/LogicFlow/compare/@logicflow/core@1.1.4...@logicflow/core@1.1.5) (2022-03-02)
|
|
826
|
-
|
|
827
|
-
|
|
828
|
-
### Bug Fixes
|
|
829
|
-
|
|
830
|
-
* change strokeDasharray type from array to string ([dd9d42e](https://github.com/didi/LogicFlow/commit/dd9d42ed26da46558592124533954f23b28aade2))
|
|
831
|
-
* edge animation demo ([e8895cc](https://github.com/didi/LogicFlow/commit/e8895cc230fccf007638db2cdfd79b25f7cba1b9))
|
|
832
|
-
* trigger dragstart when dragging ([5ff04c8](https://github.com/didi/LogicFlow/commit/5ff04c807364a03554135d57c49b4f181b6f2414))
|
|
833
|
-
|
|
834
|
-
|
|
835
|
-
### Features
|
|
836
|
-
|
|
837
|
-
* anchor add event api ([4309b81](https://github.com/didi/LogicFlow/commit/4309b81902280f0dacb7fb169b6b9c34f06de3f7))
|
|
838
|
-
* support animation ([c58c147](https://github.com/didi/LogicFlow/commit/c58c147c172901604834dda1a0dbb62a5f653579))
|
|
839
|
-
|
|
840
|
-
|
|
841
|
-
|
|
842
|
-
|
|
843
|
-
|
|
844
|
-
## [1.1.4](https://github.com/didi/LogicFlow/compare/@logicflow/core@1.1.3...@logicflow/core@1.1.4) (2022-02-23)
|
|
845
|
-
|
|
846
|
-
|
|
847
|
-
### Bug Fixes
|
|
848
|
-
|
|
849
|
-
* change node state to default when create edge success ([9f57894](https://github.com/didi/LogicFlow/commit/9f57894034c9b6d86323e93d22a1185fe433843c))
|
|
850
|
-
* editConfigModel add isSilentMode ([8fcd571](https://github.com/didi/LogicFlow/commit/8fcd57143ccf1055a2c176ef417d7498ef178694))
|
|
851
|
-
|
|
852
|
-
|
|
853
|
-
### Features
|
|
854
|
-
|
|
855
|
-
* node model add incoming & outgoing ([8cf1469](https://github.com/didi/LogicFlow/commit/8cf14690b3c8378b11e5028700539a8fdb12bee1))
|
|
856
|
-
* update docs ([c60d9d7](https://github.com/didi/LogicFlow/commit/c60d9d75f167ac32d871810ef2c5f7dbc5403462))
|
|
857
|
-
|
|
858
|
-
|
|
859
|
-
|
|
860
|
-
|
|
861
|
-
|
|
862
|
-
## [1.1.3](https://github.com/didi/LogicFlow/compare/@logicflow/core@1.1.3-alpha.0...@logicflow/core@1.1.3) (2022-02-18)
|
|
863
|
-
|
|
864
|
-
|
|
865
|
-
### Bug Fixes
|
|
866
|
-
|
|
867
|
-
* stop edit text when input enter + alt ([438daec](https://github.com/didi/LogicFlow/commit/438daec1de3378f25b245feda8a71bead6c96ba8))
|
|
868
|
-
|
|
869
|
-
|
|
870
|
-
|
|
871
|
-
|
|
872
|
-
|
|
873
|
-
## [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)
|
|
874
|
-
|
|
875
|
-
**Note:** Version bump only for package @logicflow/core
|
|
876
|
-
|
|
877
|
-
|
|
878
|
-
|
|
879
|
-
|
|
880
|
-
|
|
881
|
-
## [1.1.1](https://github.com/didi/LogicFlow/compare/@logicflow/core@1.1.0...@logicflow/core@1.1.1) (2022-02-10)
|
|
882
|
-
|
|
883
|
-
|
|
884
|
-
### Features
|
|
885
|
-
|
|
886
|
-
* check width and height type ([141c667](https://github.com/didi/LogicFlow/commit/141c6678503870a9d7503864353ad6cc7493fd24))
|
|
887
|
-
|
|
888
|
-
|
|
889
|
-
|
|
890
|
-
|
|
891
|
-
|
|
892
|
-
# [1.1.0](https://github.com/didi/LogicFlow/compare/@logicflow/core@1.1.0-alpha.7...@logicflow/core@1.1.0) (2022-02-09)
|
|
893
|
-
|
|
894
|
-
**Note:** Version bump only for package @logicflow/core
|
|
895
|
-
|
|
896
|
-
|
|
897
|
-
|
|
898
|
-
|
|
899
|
-
|
|
900
|
-
# [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)
|
|
901
|
-
|
|
902
|
-
**Note:** Version bump only for package @logicflow/core
|
|
903
|
-
|
|
904
|
-
|
|
905
|
-
|
|
906
|
-
|
|
907
|
-
|
|
908
|
-
# [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)
|
|
909
|
-
|
|
910
|
-
**Note:** Version bump only for package @logicflow/core
|
|
911
|
-
|
|
912
|
-
|
|
913
|
-
|
|
914
|
-
|
|
915
|
-
|
|
916
|
-
# [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)
|
|
917
|
-
|
|
918
|
-
|
|
919
|
-
### Bug Fixes
|
|
920
|
-
|
|
921
|
-
* use autoToFront property take node to front ([3a8a7cc](https://github.com/didi/LogicFlow/commit/3a8a7cc6a981f53837f8774aa3130b7e6d5593b9))
|
|
922
|
-
|
|
923
|
-
|
|
924
|
-
### Features
|
|
925
|
-
|
|
926
|
-
* add attribute visible to element ([4676427](https://github.com/didi/LogicFlow/commit/46764279f6667354b1d67186e0f131f764c3eb79))
|
|
927
|
-
* add getModelById & getDataById ([ad8d4e6](https://github.com/didi/LogicFlow/commit/ad8d4e62ff781914017ce478fa07ccdb36f0fe75))
|
|
928
|
-
* add graph:rendered event ([a3838c3](https://github.com/didi/LogicFlow/commit/a3838c385328bc9e3a41e39c555736d5f59de573))
|
|
929
|
-
* add group hook ([a955e7c](https://github.com/didi/LogicFlow/commit/a955e7ca151e0dd547a3995bbfed42e68f25183a))
|
|
930
|
-
* group support fold ([c1d8c10](https://github.com/didi/LogicFlow/commit/c1d8c109b25a3145c8c6858c4b6b5f0b6bf072ba))
|
|
931
|
-
* group support resize ([d9e2403](https://github.com/didi/LogicFlow/commit/d9e2403e00bce05c65d4d5b018ac3e2b9072cecd))
|
|
932
|
-
|
|
933
|
-
|
|
934
|
-
|
|
935
|
-
|
|
936
|
-
|
|
937
|
-
# [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)
|
|
938
|
-
|
|
939
|
-
**Note:** Version bump only for package @logicflow/core
|
|
940
|
-
|
|
941
|
-
|
|
942
|
-
|
|
943
|
-
|
|
944
|
-
|
|
945
|
-
# [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)
|
|
946
|
-
|
|
947
|
-
**Note:** Version bump only for package @logicflow/core
|
|
948
|
-
|
|
949
|
-
|
|
950
|
-
|
|
951
|
-
|
|
952
|
-
|
|
953
|
-
# [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)
|
|
954
|
-
|
|
955
|
-
**Note:** Version bump only for package @logicflow/core
|
|
956
|
-
|
|
957
|
-
|
|
958
|
-
|
|
959
|
-
|
|
960
|
-
|
|
961
|
-
## [1.0.7](https://github.com/didi/LogicFlow/compare/@logicflow/core@1.0.7-alpha.1...@logicflow/core@1.0.7) (2022-01-18)
|
|
962
|
-
|
|
963
|
-
**Note:** Version bump only for package @logicflow/core
|
|
964
|
-
|
|
965
|
-
|
|
966
|
-
|
|
967
|
-
|
|
968
|
-
|
|
969
|
-
## [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)
|
|
970
|
-
|
|
971
|
-
|
|
972
|
-
### Bug Fixes
|
|
973
|
-
|
|
974
|
-
* addEdge return edgeModel ([e91f995](https://github.com/didi/LogicFlow/commit/e91f99502a9f7bafcf93e4aac1f32dfc3fb0a603))
|
|
975
|
-
|
|
976
|
-
|
|
977
|
-
|
|
978
|
-
|
|
979
|
-
|
|
980
|
-
## [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)
|
|
981
|
-
|
|
982
|
-
|
|
983
|
-
### Bug Fixes
|
|
984
|
-
|
|
985
|
-
* add virtual field ([5894ae0](https://github.com/didi/LogicFlow/commit/5894ae0104bc567ef4678662b8e571c1c1d19820))
|
|
986
|
-
* error name ([ef10a93](https://github.com/didi/LogicFlow/commit/ef10a93198b34017fbec7dedb4c66a39ceff5536))
|
|
987
|
-
* **core:** adjust polyline bugfix ([e87f2c9](https://github.com/didi/LogicFlow/commit/e87f2c9c772558b2de0d6850ca528a59cbafaf6f))
|
|
988
|
-
* typo ([facccdf](https://github.com/didi/LogicFlow/commit/facccdf3b98d44650c75e34a66ed33f5e0d8f75e))
|
|
989
|
-
|
|
990
|
-
|
|
991
|
-
### Features
|
|
992
|
-
|
|
993
|
-
* lf support plugins ([3dacdb6](https://github.com/didi/LogicFlow/commit/3dacdb6e39ff0fa84b0c3e525bf3e6d1b91a29f4))
|
|
994
|
-
|
|
995
|
-
|
|
996
|
-
|
|
997
|
-
|
|
998
|
-
|
|
999
|
-
## [1.0.4](https://github.com/didi/LogicFlow/compare/@logicflow/core@1.0.0-alpha.12...@logicflow/core@1.0.4) (2022-01-12)
|
|
1000
|
-
|
|
1001
|
-
|
|
1002
|
-
### Bug Fixes
|
|
1003
|
-
|
|
1004
|
-
* change edge type remove pointsList ([433c8e8](https://github.com/didi/LogicFlow/commit/433c8e805da226e37550c7abd770748f8c8a8bdc))
|
|
1005
|
-
* focus on ([2301c09](https://github.com/didi/LogicFlow/commit/2301c094f2853591741101623da879ea7e0d22de))
|
|
1006
|
-
* mini map viewport ([38c2408](https://github.com/didi/LogicFlow/commit/38c2408e0f8a76dd0b49b9271dd259fd8b6fa684))
|
|
1007
|
-
* move edge not keep controls ([b8f28f3](https://github.com/didi/LogicFlow/commit/b8f28f38d943ab2881a2f375603025e01573c0d8))
|
|
1008
|
-
* node updateText observable ([b04f96a](https://github.com/didi/LogicFlow/commit/b04f96abf639befeaa5cf22be9407955926a5118))
|
|
1009
|
-
* rewrite text node getTextStyle ([2717203](https://github.com/didi/LogicFlow/commit/27172038a282404c02697986736bf10955117d16))
|
|
1010
|
-
* typo EditConfigMode ([fed381b](https://github.com/didi/LogicFlow/commit/fed381b47ec3786f43d043c07c33f01458239840))
|
|
1011
|
-
|
|
1012
|
-
|
|
1013
|
-
### Features
|
|
1014
|
-
|
|
1015
|
-
* release 1.0.0🎉🎉 ([670fed7](https://github.com/didi/LogicFlow/commit/670fed7fa3e0cb0ee39501251d177c693694ef59))
|
|
1016
|
-
|
|
1017
|
-
|
|
1018
|
-
|
|
1019
|
-
|
|
1020
|
-
|
|
1021
|
-
## [1.0.1](https://github.com/didi/LogicFlow/compare/@logicflow/core@1.0.0-alpha.12...@logicflow/core@1.0.1) (2022-01-07)
|
|
1022
|
-
|
|
1023
|
-
|
|
1024
|
-
### Bug Fixes
|
|
1025
|
-
|
|
1026
|
-
* focus on ([2301c09](https://github.com/didi/LogicFlow/commit/2301c094f2853591741101623da879ea7e0d22de))
|
|
1027
|
-
* rewrite text node getTextStyle ([2717203](https://github.com/didi/LogicFlow/commit/27172038a282404c02697986736bf10955117d16))
|
|
1028
|
-
* typo EditConfigMode ([fed381b](https://github.com/didi/LogicFlow/commit/fed381b47ec3786f43d043c07c33f01458239840))
|
|
1029
|
-
|
|
1030
|
-
|
|
1031
|
-
### Features
|
|
1032
|
-
|
|
1033
|
-
* release 1.0.0🎉🎉 ([670fed7](https://github.com/didi/LogicFlow/commit/670fed7fa3e0cb0ee39501251d177c693694ef59))
|
|
1034
|
-
|
|
1035
|
-
|
|
1036
|
-
|
|
1037
|
-
|
|
1038
|
-
|
|
1039
|
-
# [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)
|
|
1040
|
-
|
|
1041
|
-
|
|
1042
|
-
### Bug Fixes
|
|
1043
|
-
|
|
1044
|
-
* reset offset ([3ab0425](https://github.com/didi/LogicFlow/commit/3ab0425fdba12e934c0380b3f4229314071e630f))
|
|
1045
|
-
|
|
1046
|
-
|
|
1047
|
-
|
|
1048
|
-
|
|
1049
|
-
|
|
1050
|
-
# [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)
|
|
1051
|
-
|
|
1052
|
-
|
|
1053
|
-
### Bug Fixes
|
|
1054
|
-
|
|
1055
|
-
* custom node ([2155c37](https://github.com/didi/LogicFlow/commit/2155c379144469848ea08511c9c1c145105f46df))
|
|
1056
|
-
|
|
1057
|
-
|
|
1058
|
-
|
|
1059
|
-
|
|
1060
|
-
|
|
1061
|
-
# [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)
|
|
1062
|
-
|
|
1063
|
-
|
|
1064
|
-
### Bug Fixes
|
|
1065
|
-
|
|
1066
|
-
* history change ([1ed9799](https://github.com/didi/LogicFlow/commit/1ed9799a0321b1d5e761b3e25ae8d874d8c310f3))
|
|
1067
|
-
|
|
1068
|
-
|
|
1069
|
-
### Features
|
|
1070
|
-
|
|
1071
|
-
* merge master ([2f418bc](https://github.com/didi/LogicFlow/commit/2f418bcbeb60ac7162718d6022047aeb326a50d8))
|
|
1072
|
-
|
|
1073
|
-
|
|
1074
|
-
|
|
1075
|
-
|
|
1076
|
-
|
|
1077
|
-
# [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)
|
|
1078
|
-
|
|
1079
|
-
|
|
1080
|
-
### Features
|
|
1081
|
-
|
|
1082
|
-
* remove hideOutline ([be86fb1](https://github.com/didi/LogicFlow/commit/be86fb118bd8bb1bd67a999802544eb2d10df0da))
|
|
1083
|
-
|
|
1084
|
-
|
|
1085
|
-
|
|
1086
|
-
|
|
1087
|
-
|
|
1088
|
-
# [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)
|
|
1089
|
-
|
|
1090
|
-
|
|
1091
|
-
### Bug Fixes
|
|
1092
|
-
|
|
1093
|
-
* recovery getAppend ([2518892](https://github.com/didi/LogicFlow/commit/2518892c656dc07008676206ca4da920e869ed99))
|
|
1094
|
-
|
|
1095
|
-
|
|
1096
|
-
### Features
|
|
1097
|
-
|
|
1098
|
-
* use deepclone return style ([e2c2af3](https://github.com/didi/LogicFlow/commit/e2c2af3673ff64de71a2e2c3d3f3db8fa84737cf))
|
|
1099
|
-
|
|
1100
|
-
|
|
1101
|
-
|
|
1102
|
-
|
|
1103
|
-
|
|
1104
|
-
# [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)
|
|
1105
|
-
|
|
1106
|
-
|
|
1107
|
-
### Bug Fixes
|
|
1108
|
-
|
|
1109
|
-
* node resize set default style ([b9def97](https://github.com/didi/LogicFlow/commit/b9def9763f1fa0464c42adeffebf37fe20543151))
|
|
1110
|
-
|
|
1111
|
-
|
|
1112
|
-
|
|
1113
|
-
|
|
1114
|
-
|
|
1115
|
-
# [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)
|
|
1116
|
-
|
|
1117
|
-
|
|
1118
|
-
### Bug Fixes
|
|
1119
|
-
|
|
1120
|
-
* edge setProperties in vue ([ecdaf34](https://github.com/didi/LogicFlow/commit/ecdaf34ad170e410ad979af8413e87bf86e8345b))
|
|
1121
|
-
* edge text use model getTextStyle ([85b36ef](https://github.com/didi/LogicFlow/commit/85b36efa14ed9e7a0a5d95e800489d4dfa65b6d6))
|
|
1122
|
-
* lf.select -> lf.selectElementById ([f4eea2c](https://github.com/didi/LogicFlow/commit/f4eea2c23ec6ac44acbd404b35d94b74fbb69d00))
|
|
1123
|
-
* selection events ([682ba34](https://github.com/didi/LogicFlow/commit/682ba345451a5c5b522ebcd510f9c9e29be5758e))
|
|
1124
|
-
|
|
1125
|
-
|
|
1126
|
-
|
|
1127
|
-
|
|
1128
|
-
|
|
1129
|
-
# [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)
|
|
1130
|
-
|
|
1131
|
-
|
|
1132
|
-
### Bug Fixes
|
|
1133
|
-
|
|
1134
|
-
* html node ([a356297](https://github.com/didi/LogicFlow/commit/a3562974d2dac63f08e531784945bbeb9e25e81d))
|
|
1135
|
-
* use model instead of getAttribute ([0e51cb0](https://github.com/didi/LogicFlow/commit/0e51cb0681c458bf68a69b8459ce0a4b91951ea4))
|
|
1136
|
-
|
|
1137
|
-
|
|
1138
|
-
### Features
|
|
1139
|
-
|
|
1140
|
-
* 重构自定义锚点写法 ([657f911](https://github.com/didi/LogicFlow/commit/657f9113eff1207c910080507e94a22c69c10cce))
|
|
1141
|
-
* custom edge ([81cd3be](https://github.com/didi/LogicFlow/commit/81cd3be6a9940553d2eec75b77a3472fdf75eb88))
|
|
1142
|
-
* resize width and height ([8275dfb](https://github.com/didi/LogicFlow/commit/8275dfb539449c641c8f61c3f84ebad8a2046f8b))
|
|
1143
|
-
* theme and outline ([1b7960d](https://github.com/didi/LogicFlow/commit/1b7960db3bab047e49d187bbb43578a0700d7eef))
|
|
1144
|
-
* use loose class properties ([921a09b](https://github.com/didi/LogicFlow/commit/921a09ba4b30a819eb315316e174a7bccfc9ffc8))
|
|
1145
|
-
|
|
1146
|
-
|
|
1147
|
-
|
|
1148
|
-
|
|
1149
|
-
|
|
1150
|
-
# [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)
|
|
1151
|
-
|
|
1152
|
-
**Note:** Version bump only for package @logicflow/core
|
|
1153
|
-
|
|
1154
|
-
|
|
1155
|
-
|
|
1156
|
-
|
|
1157
|
-
|
|
1158
|
-
# [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)
|
|
1159
|
-
|
|
1160
|
-
|
|
1161
|
-
### Features
|
|
1162
|
-
|
|
1163
|
-
* 重构自定义锚点写法 ([657f911](https://github.com/didi/LogicFlow/commit/657f9113eff1207c910080507e94a22c69c10cce))
|
|
1164
|
-
* use loose class properties ([921a09b](https://github.com/didi/LogicFlow/commit/921a09ba4b30a819eb315316e174a7bccfc9ffc8))
|
|
1165
|
-
|
|
1166
|
-
|
|
1167
|
-
|
|
1168
|
-
|
|
1169
|
-
|
|
1170
|
-
## [0.7.13](https://github.com/didi/LogicFlow/compare/@logicflow/core@0.7.12...@logicflow/core@0.7.13) (2021-12-09)
|
|
1171
|
-
|
|
1172
|
-
|
|
1173
|
-
### Features
|
|
1174
|
-
|
|
1175
|
-
* add node view types ([8b6a5ab](https://github.com/didi/LogicFlow/commit/8b6a5abf41967ff47d65e34a926d6b4ac37a9ad4))
|
|
1176
|
-
* babel use loose mode ([7fed1fb](https://github.com/didi/LogicFlow/commit/7fed1fb9557e3ac7f6f7fc11ad3afcc1d3d7bad8))
|
|
1177
|
-
|
|
1178
|
-
|
|
1179
|
-
|
|
1180
|
-
|
|
1181
|
-
|
|
1182
|
-
## [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)
|
|
1183
|
-
|
|
1184
|
-
|
|
1185
|
-
### Features
|
|
1186
|
-
|
|
1187
|
-
* babel use loose mode ([a48deef](https://github.com/didi/LogicFlow/commit/a48deef1c58e6e8d3f90463082207797fb9b771c))
|
|
1188
|
-
|
|
1189
|
-
|
|
1190
|
-
|
|
1191
|
-
|
|
1192
|
-
|
|
1193
|
-
## [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)
|
|
1194
|
-
|
|
1195
|
-
|
|
1196
|
-
### Features
|
|
1197
|
-
|
|
1198
|
-
* add node view types ([b065a2d](https://github.com/didi/LogicFlow/commit/b065a2d7efc1d47cf0cf97ae73406640d8a20eb4))
|
|
1199
|
-
|
|
1200
|
-
|
|
1201
|
-
|
|
1202
|
-
|
|
1203
|
-
|
|
1204
|
-
## [0.7.12](https://github.com/didi/LogicFlow/compare/@logicflow/core@0.7.11...@logicflow/core@0.7.12) (2021-12-04)
|
|
1205
|
-
|
|
1206
|
-
|
|
1207
|
-
### Features
|
|
1208
|
-
|
|
1209
|
-
* 增加文本超出隐藏模式 ([0255275](https://github.com/didi/LogicFlow/commit/0255275ed99242da2167ea0f81f7346dc5ce5365))
|
|
1210
|
-
|
|
1211
|
-
|
|
1212
|
-
|
|
1213
|
-
|
|
1214
|
-
|
|
1215
|
-
## [0.7.11](https://github.com/didi/LogicFlow/compare/@logicflow/core@0.7.10...@logicflow/core@0.7.11) (2021-11-30)
|
|
1216
|
-
|
|
1217
|
-
|
|
1218
|
-
### Features
|
|
1219
|
-
|
|
1220
|
-
* support disabled tool in core package ([1c7527f](https://github.com/didi/LogicFlow/commit/1c7527fc75929c444d9e5fb4b0b70b87086694c8))
|
|
1221
|
-
|
|
1222
|
-
|
|
1223
|
-
|
|
1224
|
-
|
|
1225
|
-
|
|
1226
|
-
## [0.7.10](https://github.com/didi/LogicFlow/compare/@logicflow/core@0.7.9...@logicflow/core@0.7.10) (2021-11-26)
|
|
1227
|
-
|
|
1228
|
-
**Note:** Version bump only for package @logicflow/core
|
|
1229
|
-
|
|
1230
|
-
|
|
1231
|
-
|
|
1232
|
-
|
|
1233
|
-
|
|
1234
|
-
## [0.7.9](https://github.com/didi/LogicFlow/compare/@logicflow/core@0.7.8...@logicflow/core@0.7.9) (2021-11-23)
|
|
1235
|
-
|
|
1236
|
-
|
|
1237
|
-
### Bug Fixes
|
|
1238
|
-
|
|
1239
|
-
* nodeResize outline bugfix ([8e76f5f](https://github.com/didi/LogicFlow/commit/8e76f5f8e79a18189f48339b85904b06d29cfda2))
|
|
1240
|
-
|
|
1241
|
-
|
|
1242
|
-
|
|
1243
|
-
|
|
1244
|
-
|
|
1245
|
-
## [0.7.8](https://github.com/didi/LogicFlow/compare/@logicflow/core@0.7.7...@logicflow/core@0.7.8) (2021-11-22)
|
|
1246
|
-
|
|
1247
|
-
**Note:** Version bump only for package @logicflow/core
|
|
1248
|
-
|
|
1249
|
-
|
|
1250
|
-
|
|
1251
|
-
|
|
1252
|
-
|
|
1253
|
-
## [0.7.7](https://github.com/didi/LogicFlow/compare/@logicflow/core@0.7.6...@logicflow/core@0.7.7) (2021-11-19)
|
|
1254
|
-
|
|
1255
|
-
|
|
1256
|
-
### Features
|
|
1257
|
-
|
|
1258
|
-
* add context menu plugin ([8c5d7a8](https://github.com/didi/LogicFlow/commit/8c5d7a84309ba8d07fbbb99dcebcae81b521bd06))
|
|
1259
|
-
* set textheight ([29e9738](https://github.com/didi/LogicFlow/commit/29e97388e765d17faaa17c8633b0408681435e06))
|
|
1260
|
-
|
|
1261
|
-
|
|
1262
|
-
|
|
1263
|
-
|
|
1264
|
-
|
|
1265
|
-
## [0.7.6](https://github.com/didi/LogicFlow/compare/@logicflow/core@0.7.5...@logicflow/core@0.7.6) (2021-11-11)
|
|
1266
|
-
|
|
1267
|
-
|
|
1268
|
-
### Bug Fixes
|
|
1269
|
-
|
|
1270
|
-
* custom element id ([cff9c18](https://github.com/didi/LogicFlow/commit/cff9c180e12df91de8921aa083e0bbafe4afc641))
|
|
1271
|
-
|
|
1272
|
-
|
|
1273
|
-
|
|
1274
|
-
|
|
1275
|
-
|
|
1276
|
-
## [0.7.5](https://github.com/didi/LogicFlow/compare/@logicflow/core@0.7.4...@logicflow/core@0.7.5) (2021-11-08)
|
|
1277
|
-
|
|
1278
|
-
|
|
1279
|
-
### Bug Fixes
|
|
1280
|
-
|
|
1281
|
-
* **core:** update text position after draging edge ([e430c14](https://github.com/didi/LogicFlow/commit/e430c14c3a0edec26ad0ba24afa7da70aa90421e))
|
|
1282
|
-
|
|
1283
|
-
|
|
1284
|
-
|
|
1285
|
-
|
|
1286
|
-
|
|
1287
|
-
## [0.7.4](https://github.com/didi/LogicFlow/compare/@logicflow/core@0.7.3...@logicflow/core@0.7.4) (2021-11-04)
|
|
1288
|
-
|
|
1289
|
-
|
|
1290
|
-
### Bug Fixes
|
|
1291
|
-
|
|
1292
|
-
* **core:** ts error ([83db114](https://github.com/didi/LogicFlow/commit/83db114f495307aa039ff45d743336f124a32221))
|
|
1293
|
-
|
|
1294
|
-
|
|
1295
|
-
### Features
|
|
1296
|
-
|
|
1297
|
-
* **core:** add anchor properties ([21b245e](https://github.com/didi/LogicFlow/commit/21b245ef858761babd42a5de558a77a39ff1e6d6))
|
|
1298
|
-
* **core:** adjust edge ([0490ae0](https://github.com/didi/LogicFlow/commit/0490ae08d6d681dfbcf19bf678c46e2179d98cb8))
|
|
1299
|
-
* **core:** support anchor setting properties ([ecf7aaa](https://github.com/didi/LogicFlow/commit/ecf7aaa0daa963c08fde6f2c64de0790a4133f8c))
|
|
1300
|
-
|
|
1301
|
-
|
|
1302
|
-
|
|
1303
|
-
|
|
1304
|
-
|
|
1305
|
-
## [0.7.3](https://github.com/didi/LogicFlow/compare/@logicflow/core@0.7.2...@logicflow/core@0.7.3) (2021-11-03)
|
|
1306
|
-
|
|
1307
|
-
|
|
1308
|
-
### Bug Fixes
|
|
1309
|
-
|
|
1310
|
-
* edge setProperties observable ([9517468](https://github.com/didi/LogicFlow/commit/951746878c2bbd27fc9dae7f13fa0990a2a3ba3d))
|
|
1311
|
-
* remove both sourceRuleResults and targetRuleResults ([1ba045a](https://github.com/didi/LogicFlow/commit/1ba045aa7c298989f214eecede053a9d507dd0a8))
|
|
1312
|
-
* **core:** update evenetName of edge adjustment, fixes [#330](https://github.com/didi/LogicFlow/issues/330) ([a973de2](https://github.com/didi/LogicFlow/commit/a973de2b70caea9b441039e0659df51401aa321b))
|
|
1313
|
-
|
|
1314
|
-
|
|
1315
|
-
### Features
|
|
1316
|
-
|
|
1317
|
-
* **core:** adjust edge startPoint or endPoint ([db96695](https://github.com/didi/LogicFlow/commit/db966950e59b5166e704ccd958e837e2fa3e1f6a))
|
|
1318
|
-
|
|
1319
|
-
|
|
1320
|
-
|
|
1321
|
-
|
|
1322
|
-
|
|
1323
|
-
## [0.7.2](https://github.com/didi/LogicFlow/compare/@logicflow/core@0.7.1...@logicflow/core@0.7.2) (2021-10-22)
|
|
1324
|
-
|
|
1325
|
-
**Note:** Version bump only for package @logicflow/core
|
|
1326
|
-
|
|
1327
|
-
|
|
1328
|
-
|
|
1329
|
-
|
|
1330
|
-
|
|
1331
|
-
## [0.7.1](https://github.com/didi/LogicFlow/compare/@logicflow/core@0.7.1-alpha.0...@logicflow/core@0.7.1) (2021-10-21)
|
|
1332
|
-
|
|
1333
|
-
**Note:** Version bump only for package @logicflow/core
|
|
1334
|
-
|
|
1335
|
-
|
|
1336
|
-
|
|
1337
|
-
|
|
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
|
-
|
|
1342
|
-
### Bug Fixes
|
|
1343
|
-
|
|
1344
|
-
* drag line not toFront ([f1db31d](https://github.com/didi/LogicFlow/commit/f1db31d5c95c339493090907af517481cefba987))
|
|
1345
|
-
* this.setState warning ([7f7c498](https://github.com/didi/LogicFlow/commit/7f7c498dd50e25b44a291b3e5d96554144116f40))
|
|
1346
|
-
|
|
1347
|
-
|
|
1348
|
-
### Features
|
|
1349
|
-
|
|
1350
|
-
* add change graph&node&edge id function ([13d1c0b](https://github.com/didi/LogicFlow/commit/13d1c0b0b6814dc9b65bd74a9bb704b633499554))
|
|
1351
|
-
* add increase overlap mode ([06068e4](https://github.com/didi/LogicFlow/commit/06068e4caa11544b709697d101063838020dc4d1))
|
|
1352
|
-
* add text background ([dd1a89f](https://github.com/didi/LogicFlow/commit/dd1a89fbb84bfc74e9bf7db251b546a03b783838))
|
|
1353
|
-
* avoid add id in dom ([37cccb6](https://github.com/didi/LogicFlow/commit/37cccb6fc75451b25254c1ccda4c581f2bb5ce51)), closes [#309](https://github.com/didi/LogicFlow/issues/309)
|
|
1354
|
-
* remove object attributes ([a242500](https://github.com/didi/LogicFlow/commit/a242500edf2e2e197cd0a015d2e490e474ff585e))
|
|
1355
|
-
* save data include zIndex in increase mode ([cb79054](https://github.com/didi/LogicFlow/commit/cb7905489ee097bf2b157d3202527f7e5a6f39c9))
|
|
1356
|
-
|
|
1357
|
-
|
|
1358
|
-
|
|
1359
|
-
|
|
1360
|
-
|
|
1361
|
-
## [0.6.16](https://github.com/didi/LogicFlow/compare/@logicflow/core@0.6.13...@logicflow/core@0.6.16) (2021-09-04)
|
|
1362
|
-
|
|
1363
|
-
|
|
1364
|
-
### Bug Fixes
|
|
1365
|
-
|
|
1366
|
-
* **core:** isElementInArea fix ([9e8bd62](https://github.com/didi/LogicFlow/commit/9e8bd621e28ff9563f1a02e10708a6e421a01870))
|
|
1367
|
-
* **examples:** modified examples page title ([3a9ae5e](https://github.com/didi/LogicFlow/commit/3a9ae5ed100405378ed468574ca61445bef44035))
|
|
1368
|
-
* isElementInArea bugfix ([2050510](https://github.com/didi/LogicFlow/commit/2050510c98684266e152d7d733694c543bbb9c28))
|
|
1369
|
-
|
|
1370
|
-
|
|
1371
|
-
|
|
1372
|
-
|
|
1373
|
-
|
|
1374
|
-
## [0.6.13](https://github.com/didi/LogicFlow/compare/@logicflow/core@0.6.12...@logicflow/core@0.6.13) (2021-08-19)
|
|
1375
|
-
|
|
1376
|
-
|
|
1377
|
-
### Bug Fixes
|
|
1378
|
-
|
|
1379
|
-
* silent mode support recovery ([7c17585](https://github.com/didi/LogicFlow/commit/7c17585767426aad508ff3b14434ec5b05850ec5))
|
|
1380
|
-
* text undefined cause undraggble ([640ec9e](https://github.com/didi/LogicFlow/commit/640ec9ef98a3fc73206b607e21a7294314d826f3))
|
|
1381
|
-
|
|
994
|
+
# [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)
|
|
1382
995
|
|
|
1383
996
|
### Features
|
|
1384
997
|
|
|
1385
|
-
|
|
1386
|
-
* group ([2c75b81](https://github.com/didi/LogicFlow/commit/2c75b810d2bda185e37e029a5fe28503f299e412))
|
|
1387
|
-
* merge master ([cead588](https://github.com/didi/LogicFlow/commit/cead5887df27bd7624c46000966257a73b5a95e0))
|
|
1388
|
-
* mvp demo ([12d5e96](https://github.com/didi/LogicFlow/commit/12d5e9684bad4a465e1b57a1217aceed73453d59))
|
|
1389
|
-
* 增加移动节点跳过校验规则功能 ([659b83e](https://github.com/didi/LogicFlow/commit/659b83eb8ab6c8f3a1f60333e11e24777795a14b))
|
|
1390
|
-
|
|
1391
|
-
|
|
1392
|
-
|
|
1393
|
-
|
|
1394
|
-
|
|
1395
|
-
## [0.6.12](https://github.com/didi/LogicFlow/compare/@logicflow/core@0.6.5...@logicflow/core@0.6.12) (2021-08-17)
|
|
998
|
+
- remove hideOutline ([be86fb1](https://github.com/didi/LogicFlow/commit/be86fb118bd8bb1bd67a999802544eb2d10df0da))
|
|
1396
999
|
|
|
1000
|
+
# [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)
|
|
1397
1001
|
|
|
1398
1002
|
### Bug Fixes
|
|
1399
1003
|
|
|
1400
|
-
|
|
1401
|
-
* isArray not fit mobx array ([8392165](https://github.com/didi/LogicFlow/commit/839216534a7c80551a417617330d30e79121aa0c))
|
|
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
|
-
|
|
1004
|
+
- recovery getAppend ([2518892](https://github.com/didi/LogicFlow/commit/2518892c656dc07008676206ca4da920e869ed99))
|
|
1406
1005
|
|
|
1407
1006
|
### Features
|
|
1408
1007
|
|
|
1409
|
-
|
|
1410
|
-
* edgemodel support override getTextPosition ([5ede6f2](https://github.com/didi/LogicFlow/commit/5ede6f295c128c5f8c87af789105576f1f04ba57))
|
|
1411
|
-
* set anchors id ([17c4105](https://github.com/didi/LogicFlow/commit/17c4105474084b01c656298b30c28d0cd2908a36))
|
|
1412
|
-
* **core:** nodeText auto wrap ([f260d47](https://github.com/didi/LogicFlow/commit/f260d4700cdc86194a3a738fec3df27b9871cc10))
|
|
1413
|
-
* **core:** nodeText auto wrap lineHeight ([fcc64c3](https://github.com/didi/LogicFlow/commit/fcc64c32a5ebccd74f64f51042d7bb0dfdf680ad))
|
|
1414
|
-
* **core:** text auto wrap for customize element ([ddf51c5](https://github.com/didi/LogicFlow/commit/ddf51c561a28a9555a64cc146abca7e58ee46d12))
|
|
1415
|
-
* 新增move节点采用绝对位置 ([c36d604](https://github.com/didi/LogicFlow/commit/c36d604f52ad3bfed0316d99b3dc0538f61ab339))
|
|
1416
|
-
|
|
1417
|
-
|
|
1418
|
-
|
|
1419
|
-
|
|
1420
|
-
|
|
1421
|
-
## [0.6.8](https://github.com/didi/LogicFlow/compare/@logicflow/core@0.6.5...@logicflow/core@0.6.8) (2021-08-06)
|
|
1008
|
+
- use deepclone return style ([e2c2af3](https://github.com/didi/LogicFlow/commit/e2c2af3673ff64de71a2e2c3d3f3db8fa84737cf))
|
|
1422
1009
|
|
|
1010
|
+
# [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)
|
|
1423
1011
|
|
|
1424
1012
|
### Bug Fixes
|
|
1425
1013
|
|
|
1426
|
-
|
|
1427
|
-
* **core:** nodeText auto wrap build:type bugfix ([fb43025](https://github.com/didi/LogicFlow/commit/fb43025ed921f2f208950e476aebe640f9fda187))
|
|
1428
|
-
* **extension:** snapshot forginObject in svg fix ([ef937a0](https://github.com/didi/LogicFlow/commit/ef937a08f2f4898b99376d06c25ee57c3f81fda2))
|
|
1429
|
-
|
|
1430
|
-
|
|
1431
|
-
### Features
|
|
1432
|
-
|
|
1433
|
-
* edgemodel support override getTextPosition ([5ede6f2](https://github.com/didi/LogicFlow/commit/5ede6f295c128c5f8c87af789105576f1f04ba57))
|
|
1434
|
-
* set anchors id ([17c4105](https://github.com/didi/LogicFlow/commit/17c4105474084b01c656298b30c28d0cd2908a36))
|
|
1435
|
-
* **core:** nodeText auto wrap ([f260d47](https://github.com/didi/LogicFlow/commit/f260d4700cdc86194a3a738fec3df27b9871cc10))
|
|
1436
|
-
* **core:** nodeText auto wrap lineHeight ([fcc64c3](https://github.com/didi/LogicFlow/commit/fcc64c32a5ebccd74f64f51042d7bb0dfdf680ad))
|
|
1437
|
-
* **core:** text auto wrap for customize element ([ddf51c5](https://github.com/didi/LogicFlow/commit/ddf51c561a28a9555a64cc146abca7e58ee46d12))
|
|
1438
|
-
* 新增move节点采用绝对位置 ([c36d604](https://github.com/didi/LogicFlow/commit/c36d604f52ad3bfed0316d99b3dc0538f61ab339))
|
|
1439
|
-
|
|
1440
|
-
|
|
1441
|
-
|
|
1442
|
-
|
|
1443
|
-
|
|
1444
|
-
## [0.6.5](https://github.com/towersxu/logicflow/compare/@logicflow/core@0.6.4...@logicflow/core@0.6.5) (2021-07-29)
|
|
1014
|
+
- node resize set default style ([b9def97](https://github.com/didi/LogicFlow/commit/b9def9763f1fa0464c42adeffebf37fe20543151))
|
|
1445
1015
|
|
|
1016
|
+
# [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)
|
|
1446
1017
|
|
|
1447
1018
|
### Bug Fixes
|
|
1448
1019
|
|
|
1449
|
-
|
|
1450
|
-
|
|
1451
|
-
|
|
1452
|
-
|
|
1453
|
-
|
|
1454
|
-
* add node:dnd-drag event ([bf8a351](https://github.com/towersxu/logicflow/commit/bf8a3515c458014c33cc7fdc8f366c4d16b226b8))
|
|
1455
|
-
|
|
1456
|
-
|
|
1457
|
-
|
|
1458
|
-
|
|
1459
|
-
|
|
1460
|
-
## [0.6.4](https://github.com/towersxu/logicflow/compare/@logicflow/core@0.6.2...@logicflow/core@0.6.4) (2021-07-28)
|
|
1020
|
+
- edge setProperties in vue ([ecdaf34](https://github.com/didi/LogicFlow/commit/ecdaf34ad170e410ad979af8413e87bf86e8345b))
|
|
1021
|
+
- edge text use model getTextStyle ([85b36ef](https://github.com/didi/LogicFlow/commit/85b36efa14ed9e7a0a5d95e800489d4dfa65b6d6))
|
|
1022
|
+
- lf.select -> lf.selectElementById ([f4eea2c](https://github.com/didi/LogicFlow/commit/f4eea2c23ec6ac44acbd404b35d94b74fbb69d00))
|
|
1023
|
+
- selection events ([682ba34](https://github.com/didi/LogicFlow/commit/682ba345451a5c5b522ebcd510f9c9e29be5758e))
|
|
1461
1024
|
|
|
1025
|
+
# [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)
|
|
1462
1026
|
|
|
1463
1027
|
### Bug Fixes
|
|
1464
1028
|
|
|
1465
|
-
|
|
1466
|
-
|
|
1029
|
+
- html node ([a356297](https://github.com/didi/LogicFlow/commit/a3562974d2dac63f08e531784945bbeb9e25e81d))
|
|
1030
|
+
- use model instead of getAttribute ([0e51cb0](https://github.com/didi/LogicFlow/commit/0e51cb0681c458bf68a69b8459ce0a4b91951ea4))
|
|
1467
1031
|
|
|
1468
1032
|
### Features
|
|
1469
1033
|
|
|
1470
|
-
|
|
1034
|
+
- 重构自定义锚点写法 ([657f911](https://github.com/didi/LogicFlow/commit/657f9113eff1207c910080507e94a22c69c10cce))
|
|
1035
|
+
- custom edge ([81cd3be](https://github.com/didi/LogicFlow/commit/81cd3be6a9940553d2eec75b77a3472fdf75eb88))
|
|
1036
|
+
- resize width and height ([8275dfb](https://github.com/didi/LogicFlow/commit/8275dfb539449c641c8f61c3f84ebad8a2046f8b))
|
|
1037
|
+
- theme and outline ([1b7960d](https://github.com/didi/LogicFlow/commit/1b7960db3bab047e49d187bbb43578a0700d7eef))
|
|
1038
|
+
- use loose class properties ([921a09b](https://github.com/didi/LogicFlow/commit/921a09ba4b30a819eb315316e174a7bccfc9ffc8))
|
|
1471
1039
|
|
|
1040
|
+
# [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)
|
|
1472
1041
|
|
|
1042
|
+
**Note:** Version bump only for package @logicflow/core
|
|
1473
1043
|
|
|
1044
|
+
# [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)
|
|
1474
1045
|
|
|
1046
|
+
### Features
|
|
1475
1047
|
|
|
1476
|
-
|
|
1048
|
+
- 重构自定义锚点写法 ([657f911](https://github.com/didi/LogicFlow/commit/657f9113eff1207c910080507e94a22c69c10cce))
|
|
1049
|
+
- use loose class properties ([921a09b](https://github.com/didi/LogicFlow/commit/921a09ba4b30a819eb315316e174a7bccfc9ffc8))
|
|
1477
1050
|
|
|
1051
|
+
## [0.7.13](https://github.com/didi/LogicFlow/compare/@logicflow/core@0.7.12...@logicflow/core@0.7.13) (2021-12-09)
|
|
1478
1052
|
|
|
1479
|
-
###
|
|
1053
|
+
### Features
|
|
1480
1054
|
|
|
1481
|
-
|
|
1055
|
+
- add node view types ([8b6a5ab](https://github.com/didi/LogicFlow/commit/8b6a5abf41967ff47d65e34a926d6b4ac37a9ad4))
|
|
1056
|
+
- babel use loose mode ([7fed1fb](https://github.com/didi/LogicFlow/commit/7fed1fb9557e3ac7f6f7fc11ad3afcc1d3d7bad8))
|
|
1482
1057
|
|
|
1058
|
+
## [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)
|
|
1483
1059
|
|
|
1060
|
+
### Features
|
|
1484
1061
|
|
|
1062
|
+
- babel use loose mode ([a48deef](https://github.com/didi/LogicFlow/commit/a48deef1c58e6e8d3f90463082207797fb9b771c))
|
|
1485
1063
|
|
|
1064
|
+
## [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)
|
|
1486
1065
|
|
|
1487
|
-
|
|
1066
|
+
### Features
|
|
1488
1067
|
|
|
1068
|
+
- add node view types ([b065a2d](https://github.com/didi/LogicFlow/commit/b065a2d7efc1d47cf0cf97ae73406640d8a20eb4))
|
|
1489
1069
|
|
|
1490
|
-
|
|
1070
|
+
## [0.7.12](https://github.com/didi/LogicFlow/compare/@logicflow/core@0.7.11...@logicflow/core@0.7.12) (2021-12-04)
|
|
1071
|
+
|
|
1072
|
+
### Features
|
|
1491
1073
|
|
|
1492
|
-
|
|
1493
|
-
* 修复getSelectElements方法,即使选中元素,但是依然返回为undefined的bug ([12df9f2](https://github.com/towersxu/logicflow/commit/12df9f26020c3eeda0fa18c4f23d09ab1566c1cc))
|
|
1074
|
+
- 增加文本超出隐藏模式 ([0255275](https://github.com/didi/LogicFlow/commit/0255275ed99242da2167ea0f81f7346dc5ce5365))
|
|
1494
1075
|
|
|
1076
|
+
## [0.7.11](https://github.com/didi/LogicFlow/compare/@logicflow/core@0.7.10...@logicflow/core@0.7.11) (2021-11-30)
|
|
1495
1077
|
|
|
1078
|
+
### Features
|
|
1496
1079
|
|
|
1080
|
+
- support disabled tool in core package ([1c7527f](https://github.com/didi/LogicFlow/commit/1c7527fc75929c444d9e5fb4b0b70b87086694c8))
|
|
1497
1081
|
|
|
1082
|
+
## [0.7.10](https://github.com/didi/LogicFlow/compare/@logicflow/core@0.7.9...@logicflow/core@0.7.10) (2021-11-26)
|
|
1498
1083
|
|
|
1499
|
-
|
|
1084
|
+
**Note:** Version bump only for package @logicflow/core
|
|
1500
1085
|
|
|
1086
|
+
## [0.7.9](https://github.com/didi/LogicFlow/compare/@logicflow/core@0.7.8...@logicflow/core@0.7.9) (2021-11-23)
|
|
1501
1087
|
|
|
1502
1088
|
### Bug Fixes
|
|
1503
1089
|
|
|
1504
|
-
|
|
1090
|
+
- nodeResize outline bugfix ([8e76f5f](https://github.com/didi/LogicFlow/commit/8e76f5f8e79a18189f48339b85904b06d29cfda2))
|
|
1505
1091
|
|
|
1092
|
+
## [0.7.8](https://github.com/didi/LogicFlow/compare/@logicflow/core@0.7.7...@logicflow/core@0.7.8) (2021-11-22)
|
|
1506
1093
|
|
|
1094
|
+
**Note:** Version bump only for package @logicflow/core
|
|
1507
1095
|
|
|
1096
|
+
## [0.7.7](https://github.com/didi/LogicFlow/compare/@logicflow/core@0.7.6...@logicflow/core@0.7.7) (2021-11-19)
|
|
1508
1097
|
|
|
1098
|
+
### Features
|
|
1509
1099
|
|
|
1510
|
-
|
|
1100
|
+
- add context menu plugin ([8c5d7a8](https://github.com/didi/LogicFlow/commit/8c5d7a84309ba8d07fbbb99dcebcae81b521bd06))
|
|
1101
|
+
- set textheight ([29e9738](https://github.com/didi/LogicFlow/commit/29e97388e765d17faaa17c8633b0408681435e06))
|
|
1511
1102
|
|
|
1103
|
+
## [0.7.6](https://github.com/didi/LogicFlow/compare/@logicflow/core@0.7.5...@logicflow/core@0.7.6) (2021-11-11)
|
|
1512
1104
|
|
|
1513
1105
|
### Bug Fixes
|
|
1514
1106
|
|
|
1515
|
-
|
|
1516
|
-
* new selection select ([4fc34d4](https://github.com/towersxu/logicflow/commit/4fc34d41e1000629362c141a8c6a2eb033ecf17d))
|
|
1517
|
-
* reactive html node ([0909bd3](https://github.com/towersxu/logicflow/commit/0909bd3d423d0bb9ed72a8eb36dd69054810ba84))
|
|
1518
|
-
* use html-node as model type ([944b895](https://github.com/towersxu/logicflow/commit/944b895e640a699d6ce0bdedd2d2ac04779489d1))
|
|
1519
|
-
* use pluginName replace name ([2b2706a](https://github.com/towersxu/logicflow/commit/2b2706a4596eaee5fb6e88328a219ebc9366505c))
|
|
1107
|
+
- custom element id ([cff9c18](https://github.com/didi/LogicFlow/commit/cff9c180e12df91de8921aa083e0bbafe4afc641))
|
|
1520
1108
|
|
|
1109
|
+
## [0.7.5](https://github.com/didi/LogicFlow/compare/@logicflow/core@0.7.4...@logicflow/core@0.7.5) (2021-11-08)
|
|
1521
1110
|
|
|
1522
|
-
###
|
|
1111
|
+
### Bug Fixes
|
|
1523
1112
|
|
|
1524
|
-
|
|
1525
|
-
* add html node ([373db63](https://github.com/towersxu/logicflow/commit/373db637fb8cca0416ff944dc5beda23f3082bf3))
|
|
1526
|
-
* add idGenerator global option ([b6fd441](https://github.com/towersxu/logicflow/commit/b6fd4417e9d99dfd319889fdce1c6da7a1abcfb9))
|
|
1527
|
-
* html node support old register method ([d83821b](https://github.com/towersxu/logicflow/commit/d83821b694d45a9ad968e9d51adb7e79e402c610))
|
|
1528
|
-
* text:update event emit element data ([44a0d5d](https://github.com/towersxu/logicflow/commit/44a0d5d9a7ae77e28021208d7ecf2d7ef5a0707c))
|
|
1113
|
+
- **core:** update text position after draging edge ([e430c14](https://github.com/didi/LogicFlow/commit/e430c14c3a0edec26ad0ba24afa7da70aa90421e))
|
|
1529
1114
|
|
|
1115
|
+
## [0.7.4](https://github.com/didi/LogicFlow/compare/@logicflow/core@0.7.3...@logicflow/core@0.7.4) (2021-11-04)
|
|
1530
1116
|
|
|
1117
|
+
### Bug Fixes
|
|
1531
1118
|
|
|
1119
|
+
- **core:** ts error ([83db114](https://github.com/didi/LogicFlow/commit/83db114f495307aa039ff45d743336f124a32221))
|
|
1532
1120
|
|
|
1121
|
+
### Features
|
|
1533
1122
|
|
|
1534
|
-
|
|
1123
|
+
- **core:** add anchor properties ([21b245e](https://github.com/didi/LogicFlow/commit/21b245ef858761babd42a5de558a77a39ff1e6d6))
|
|
1124
|
+
- **core:** adjust edge ([0490ae0](https://github.com/didi/LogicFlow/commit/0490ae08d6d681dfbcf19bf678c46e2179d98cb8))
|
|
1125
|
+
- **core:** support anchor setting properties ([ecf7aaa](https://github.com/didi/LogicFlow/commit/ecf7aaa0daa963c08fde6f2c64de0790a4133f8c))
|
|
1535
1126
|
|
|
1127
|
+
## [0.7.3](https://github.com/didi/LogicFlow/compare/@logicflow/core@0.7.2...@logicflow/core@0.7.3) (2021-11-03)
|
|
1536
1128
|
|
|
1537
1129
|
### Bug Fixes
|
|
1538
1130
|
|
|
1539
|
-
|
|
1540
|
-
|
|
1541
|
-
|
|
1542
|
-
|
|
1131
|
+
- edge setProperties observable ([9517468](https://github.com/didi/LogicFlow/commit/951746878c2bbd27fc9dae7f13fa0990a2a3ba3d))
|
|
1132
|
+
- remove both sourceRuleResults and targetRuleResults ([1ba045a](https://github.com/didi/LogicFlow/commit/1ba045aa7c298989f214eecede053a9d507dd0a8))
|
|
1133
|
+
- **core:** update evenetName of edge adjustment, fixes [#330](https://github.com/didi/LogicFlow/issues/330) ([a973de2](https://github.com/didi/LogicFlow/commit/a973de2b70caea9b441039e0659df51401aa321b))
|
|
1543
1134
|
|
|
1544
1135
|
### Features
|
|
1545
1136
|
|
|
1546
|
-
|
|
1547
|
-
* text:update event emit element data ([36f1f2a](https://github.com/towersxu/logicflow/commit/36f1f2a5d57c70dada007a7ec92782d994528e5e))
|
|
1548
|
-
|
|
1137
|
+
- **core:** adjust edge startPoint or endPoint ([db96695](https://github.com/didi/LogicFlow/commit/db966950e59b5166e704ccd958e837e2fa3e1f6a))
|
|
1549
1138
|
|
|
1139
|
+
## [0.7.2](https://github.com/didi/LogicFlow/compare/@logicflow/core@0.7.1...@logicflow/core@0.7.2) (2021-10-22)
|
|
1550
1140
|
|
|
1141
|
+
**Note:** Version bump only for package @logicflow/core
|
|
1551
1142
|
|
|
1143
|
+
## [0.7.1](https://github.com/didi/LogicFlow/compare/@logicflow/core@0.7.1-alpha.0...@logicflow/core@0.7.1) (2021-10-21)
|
|
1552
1144
|
|
|
1553
|
-
|
|
1145
|
+
**Note:** Version bump only for package @logicflow/core
|
|
1554
1146
|
|
|
1147
|
+
## [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)
|
|
1555
1148
|
|
|
1556
1149
|
### Bug Fixes
|
|
1557
1150
|
|
|
1558
|
-
|
|
1559
|
-
|
|
1560
|
-
|
|
1151
|
+
- drag line not toFront ([f1db31d](https://github.com/didi/LogicFlow/commit/f1db31d5c95c339493090907af517481cefba987))
|
|
1152
|
+
- this.setState warning ([7f7c498](https://github.com/didi/LogicFlow/commit/7f7c498dd50e25b44a291b3e5d96554144116f40))
|
|
1561
1153
|
|
|
1562
1154
|
### Features
|
|
1563
1155
|
|
|
1564
|
-
|
|
1156
|
+
- add change graph&node&edge id function ([13d1c0b](https://github.com/didi/LogicFlow/commit/13d1c0b0b6814dc9b65bd74a9bb704b633499554))
|
|
1157
|
+
- add increase overlap mode ([06068e4](https://github.com/didi/LogicFlow/commit/06068e4caa11544b709697d101063838020dc4d1))
|
|
1158
|
+
- add text background ([dd1a89f](https://github.com/didi/LogicFlow/commit/dd1a89fbb84bfc74e9bf7db251b546a03b783838))
|
|
1159
|
+
- avoid add id in dom ([37cccb6](https://github.com/didi/LogicFlow/commit/37cccb6fc75451b25254c1ccda4c581f2bb5ce51)), closes [#309](https://github.com/didi/LogicFlow/issues/309)
|
|
1160
|
+
- remove object attributes ([a242500](https://github.com/didi/LogicFlow/commit/a242500edf2e2e197cd0a015d2e490e474ff585e))
|
|
1161
|
+
- save data include zIndex in increase mode ([cb79054](https://github.com/didi/LogicFlow/commit/cb7905489ee097bf2b157d3202527f7e5a6f39c9))
|
|
1565
1162
|
|
|
1163
|
+
## [0.6.16](https://github.com/didi/LogicFlow/compare/@logicflow/core@0.6.13...@logicflow/core@0.6.16) (2021-09-04)
|
|
1566
1164
|
|
|
1165
|
+
### Bug Fixes
|
|
1567
1166
|
|
|
1167
|
+
- **core:** isElementInArea fix ([9e8bd62](https://github.com/didi/LogicFlow/commit/9e8bd621e28ff9563f1a02e10708a6e421a01870))
|
|
1168
|
+
- **examples:** modified examples page title ([3a9ae5e](https://github.com/didi/LogicFlow/commit/3a9ae5ed100405378ed468574ca61445bef44035))
|
|
1169
|
+
- isElementInArea bugfix ([2050510](https://github.com/didi/LogicFlow/commit/2050510c98684266e152d7d733694c543bbb9c28))
|
|
1568
1170
|
|
|
1171
|
+
## [0.6.13](https://github.com/didi/LogicFlow/compare/@logicflow/core@0.6.12...@logicflow/core@0.6.13) (2021-08-19)
|
|
1569
1172
|
|
|
1570
|
-
|
|
1173
|
+
### Bug Fixes
|
|
1571
1174
|
|
|
1572
|
-
|
|
1175
|
+
- silent mode support recovery ([7c17585](https://github.com/didi/LogicFlow/commit/7c17585767426aad508ff3b14434ec5b05850ec5))
|
|
1176
|
+
- text undefined cause undraggble ([640ec9e](https://github.com/didi/LogicFlow/commit/640ec9ef98a3fc73206b607e21a7294314d826f3))
|
|
1573
1177
|
|
|
1178
|
+
### Features
|
|
1574
1179
|
|
|
1180
|
+
- add config nodeSelectedOutline ([9b91cd0](https://github.com/didi/LogicFlow/commit/9b91cd0b5ab3a30bfe0575b6f297d59719f3a2d1))
|
|
1181
|
+
- group ([2c75b81](https://github.com/didi/LogicFlow/commit/2c75b810d2bda185e37e029a5fe28503f299e412))
|
|
1182
|
+
- merge master ([cead588](https://github.com/didi/LogicFlow/commit/cead5887df27bd7624c46000966257a73b5a95e0))
|
|
1183
|
+
- mvp demo ([12d5e96](https://github.com/didi/LogicFlow/commit/12d5e9684bad4a465e1b57a1217aceed73453d59))
|
|
1184
|
+
- 增加移动节点跳过校验规则功能 ([659b83e](https://github.com/didi/LogicFlow/commit/659b83eb8ab6c8f3a1f60333e11e24777795a14b))
|
|
1575
1185
|
|
|
1186
|
+
## [0.6.12](https://github.com/didi/LogicFlow/compare/@logicflow/core@0.6.5...@logicflow/core@0.6.12) (2021-08-17)
|
|
1576
1187
|
|
|
1188
|
+
### Bug Fixes
|
|
1577
1189
|
|
|
1578
|
-
|
|
1190
|
+
- editconfig default type ([575e566](https://github.com/didi/LogicFlow/commit/575e566d528015ecdb5769700fb06194a34a4ad1))
|
|
1191
|
+
- isArray not fit mobx array ([8392165](https://github.com/didi/LogicFlow/commit/839216534a7c80551a417617330d30e79121aa0c))
|
|
1192
|
+
- **core:** code optimization ([b96dfb4](https://github.com/didi/LogicFlow/commit/b96dfb47b9ca0fa4f7182334c77db341b0515711))
|
|
1193
|
+
- **core:** nodeText auto wrap build:type bugfix ([fb43025](https://github.com/didi/LogicFlow/commit/fb43025ed921f2f208950e476aebe640f9fda187))
|
|
1194
|
+
- **extension:** snapshot forginObject in svg fix ([ef937a0](https://github.com/didi/LogicFlow/commit/ef937a08f2f4898b99376d06c25ee57c3f81fda2))
|
|
1579
1195
|
|
|
1580
|
-
|
|
1196
|
+
### Features
|
|
1581
1197
|
|
|
1198
|
+
- add custom TextPosition ([352047d](https://github.com/didi/LogicFlow/commit/352047d942cc505f36272ba1a64bae33c13b5897))
|
|
1199
|
+
- edgemodel support override getTextPosition ([5ede6f2](https://github.com/didi/LogicFlow/commit/5ede6f295c128c5f8c87af789105576f1f04ba57))
|
|
1200
|
+
- set anchors id ([17c4105](https://github.com/didi/LogicFlow/commit/17c4105474084b01c656298b30c28d0cd2908a36))
|
|
1201
|
+
- **core:** nodeText auto wrap ([f260d47](https://github.com/didi/LogicFlow/commit/f260d4700cdc86194a3a738fec3df27b9871cc10))
|
|
1202
|
+
- **core:** nodeText auto wrap lineHeight ([fcc64c3](https://github.com/didi/LogicFlow/commit/fcc64c32a5ebccd74f64f51042d7bb0dfdf680ad))
|
|
1203
|
+
- **core:** text auto wrap for customize element ([ddf51c5](https://github.com/didi/LogicFlow/commit/ddf51c561a28a9555a64cc146abca7e58ee46d12))
|
|
1204
|
+
- 新增move节点采用绝对位置 ([c36d604](https://github.com/didi/LogicFlow/commit/c36d604f52ad3bfed0316d99b3dc0538f61ab339))
|
|
1582
1205
|
|
|
1206
|
+
## [0.6.8](https://github.com/didi/LogicFlow/compare/@logicflow/core@0.6.5...@logicflow/core@0.6.8) (2021-08-06)
|
|
1583
1207
|
|
|
1208
|
+
### Bug Fixes
|
|
1584
1209
|
|
|
1210
|
+
- **core:** code optimization ([b96dfb4](https://github.com/didi/LogicFlow/commit/b96dfb47b9ca0fa4f7182334c77db341b0515711))
|
|
1211
|
+
- **core:** nodeText auto wrap build:type bugfix ([fb43025](https://github.com/didi/LogicFlow/commit/fb43025ed921f2f208950e476aebe640f9fda187))
|
|
1212
|
+
- **extension:** snapshot forginObject in svg fix ([ef937a0](https://github.com/didi/LogicFlow/commit/ef937a08f2f4898b99376d06c25ee57c3f81fda2))
|
|
1585
1213
|
|
|
1586
|
-
|
|
1214
|
+
### Features
|
|
1587
1215
|
|
|
1588
|
-
|
|
1216
|
+
- edgemodel support override getTextPosition ([5ede6f2](https://github.com/didi/LogicFlow/commit/5ede6f295c128c5f8c87af789105576f1f04ba57))
|
|
1217
|
+
- set anchors id ([17c4105](https://github.com/didi/LogicFlow/commit/17c4105474084b01c656298b30c28d0cd2908a36))
|
|
1218
|
+
- **core:** nodeText auto wrap ([f260d47](https://github.com/didi/LogicFlow/commit/f260d4700cdc86194a3a738fec3df27b9871cc10))
|
|
1219
|
+
- **core:** nodeText auto wrap lineHeight ([fcc64c3](https://github.com/didi/LogicFlow/commit/fcc64c32a5ebccd74f64f51042d7bb0dfdf680ad))
|
|
1220
|
+
- **core:** text auto wrap for customize element ([ddf51c5](https://github.com/didi/LogicFlow/commit/ddf51c561a28a9555a64cc146abca7e58ee46d12))
|
|
1221
|
+
- 新增move节点采用绝对位置 ([c36d604](https://github.com/didi/LogicFlow/commit/c36d604f52ad3bfed0316d99b3dc0538f61ab339))
|
|
1589
1222
|
|
|
1223
|
+
## [0.6.5](https://github.com/towersxu/logicflow/compare/@logicflow/core@0.6.4...@logicflow/core@0.6.5) (2021-07-29)
|
|
1590
1224
|
|
|
1225
|
+
### Bug Fixes
|
|
1591
1226
|
|
|
1227
|
+
- remove unnessage import ([cd02497](https://github.com/towersxu/logicflow/commit/cd024976b657c0b964e55cdcce1f086f395e2c8c))
|
|
1592
1228
|
|
|
1229
|
+
### Features
|
|
1593
1230
|
|
|
1594
|
-
|
|
1231
|
+
- add node:dnd-drag event ([bf8a351](https://github.com/towersxu/logicflow/commit/bf8a3515c458014c33cc7fdc8f366c4d16b226b8))
|
|
1595
1232
|
|
|
1233
|
+
## [0.6.4](https://github.com/towersxu/logicflow/compare/@logicflow/core@0.6.2...@logicflow/core@0.6.4) (2021-07-28)
|
|
1596
1234
|
|
|
1597
1235
|
### Bug Fixes
|
|
1598
1236
|
|
|
1599
|
-
|
|
1237
|
+
- codesandbox import css ([a0eb60a](https://github.com/towersxu/logicflow/commit/a0eb60a3c61b152b9e06ba043d1e6eb5f2b00e95))
|
|
1600
1238
|
|
|
1239
|
+
### Features
|
|
1601
1240
|
|
|
1241
|
+
- all core style use one css ([3528505](https://github.com/towersxu/logicflow/commit/3528505c4be7305c10cf5dd4ab4df8dab599f6ae))
|
|
1602
1242
|
|
|
1243
|
+
## [0.6.3](https://github.com/towersxu/logicflow/compare/@logicflow/core@0.6.2...@logicflow/core@0.6.3) (2021-07-28)
|
|
1603
1244
|
|
|
1245
|
+
### Bug Fixes
|
|
1604
1246
|
|
|
1605
|
-
|
|
1247
|
+
- codesandbox import css ([e3f71cc](https://github.com/towersxu/logicflow/commit/e3f71cc1bf62f6bbc23dc3cac2deccfde83d83a1))
|
|
1606
1248
|
|
|
1249
|
+
## [0.6.2](https://github.com/towersxu/logicflow/compare/@logicflow/core@0.6.1...@logicflow/core@0.6.2) (2021-07-28)
|
|
1607
1250
|
|
|
1608
1251
|
### Bug Fixes
|
|
1609
1252
|
|
|
1610
|
-
|
|
1253
|
+
- text undefined cause undraggble ([ae4f1db](https://github.com/towersxu/logicflow/commit/ae4f1db28efa5d7a5194be92df3922d7f6fdd7c5))
|
|
1254
|
+
- 修复getSelectElements方法,即使选中元素,但是依然返回为undefined的bug ([12df9f2](https://github.com/towersxu/logicflow/commit/12df9f26020c3eeda0fa18c4f23d09ab1566c1cc))
|
|
1611
1255
|
|
|
1256
|
+
## [0.6.1](https://github.com/towersxu/logicflow/compare/@logicflow/core@0.6.0...@logicflow/core@0.6.1) (2021-07-19)
|
|
1612
1257
|
|
|
1258
|
+
### Bug Fixes
|
|
1613
1259
|
|
|
1260
|
+
- setProperties not observable in htmlNode ([9b47918](https://github.com/towersxu/logicflow/commit/9b47918a97b9d7b8df53c876dcea51d88d82ac4f))
|
|
1614
1261
|
|
|
1262
|
+
# [0.6.0](https://github.com/towersxu/logicflow/compare/@logicflow/core@0.4.11...@logicflow/core@0.6.0) (2021-07-14)
|
|
1615
1263
|
|
|
1616
|
-
|
|
1264
|
+
### Bug Fixes
|
|
1617
1265
|
|
|
1266
|
+
- [#211](https://github.com/towersxu/logicflow/issues/211) ([3347137](https://github.com/towersxu/logicflow/commit/33471376ec4994eece9acf5266fe50d411aa99cd))
|
|
1267
|
+
- new selection select ([4fc34d4](https://github.com/towersxu/logicflow/commit/4fc34d41e1000629362c141a8c6a2eb033ecf17d))
|
|
1268
|
+
- reactive html node ([0909bd3](https://github.com/towersxu/logicflow/commit/0909bd3d423d0bb9ed72a8eb36dd69054810ba84))
|
|
1269
|
+
- use html-node as model type ([944b895](https://github.com/towersxu/logicflow/commit/944b895e640a699d6ce0bdedd2d2ac04779489d1))
|
|
1270
|
+
- use pluginName replace name ([2b2706a](https://github.com/towersxu/logicflow/commit/2b2706a4596eaee5fb6e88328a219ebc9366505c))
|
|
1618
1271
|
|
|
1619
1272
|
### Features
|
|
1620
1273
|
|
|
1621
|
-
|
|
1274
|
+
- add createUniqueId API ([edaf244](https://github.com/towersxu/logicflow/commit/edaf244cd3e2ae38ad58a61c83046edb1d7e5952))
|
|
1275
|
+
- add html node ([373db63](https://github.com/towersxu/logicflow/commit/373db637fb8cca0416ff944dc5beda23f3082bf3))
|
|
1276
|
+
- add idGenerator global option ([b6fd441](https://github.com/towersxu/logicflow/commit/b6fd4417e9d99dfd319889fdce1c6da7a1abcfb9))
|
|
1277
|
+
- html node support old register method ([d83821b](https://github.com/towersxu/logicflow/commit/d83821b694d45a9ad968e9d51adb7e79e402c610))
|
|
1278
|
+
- text:update event emit element data ([44a0d5d](https://github.com/towersxu/logicflow/commit/44a0d5d9a7ae77e28021208d7ecf2d7ef5a0707c))
|
|
1622
1279
|
|
|
1280
|
+
# [0.5.0](https://github.com/towersxu/logicflow/compare/@logicflow/core@0.4.11...@logicflow/core@0.5.0) (2021-06-18)
|
|
1623
1281
|
|
|
1282
|
+
### Bug Fixes
|
|
1624
1283
|
|
|
1284
|
+
- [#211](https://github.com/towersxu/logicflow/issues/211) ([3347137](https://github.com/towersxu/logicflow/commit/33471376ec4994eece9acf5266fe50d411aa99cd))
|
|
1285
|
+
- use html-node as model type ([944b895](https://github.com/towersxu/logicflow/commit/944b895e640a699d6ce0bdedd2d2ac04779489d1))
|
|
1286
|
+
- use pluginName replace name ([8bf1a08](https://github.com/towersxu/logicflow/commit/8bf1a0892e61f619204b7b621902f36f9ad3e204))
|
|
1625
1287
|
|
|
1288
|
+
### Features
|
|
1626
1289
|
|
|
1627
|
-
|
|
1290
|
+
- add html node ([373db63](https://github.com/towersxu/logicflow/commit/373db637fb8cca0416ff944dc5beda23f3082bf3))
|
|
1291
|
+
- text:update event emit element data ([36f1f2a](https://github.com/towersxu/logicflow/commit/36f1f2a5d57c70dada007a7ec92782d994528e5e))
|
|
1628
1292
|
|
|
1629
|
-
|
|
1293
|
+
## [0.4.15](https://github.com/towersxu/logicflow/compare/@logicflow/core@0.4.11...@logicflow/core@0.4.15) (2021-06-17)
|
|
1630
1294
|
|
|
1295
|
+
### Bug Fixes
|
|
1631
1296
|
|
|
1297
|
+
- [#211](https://github.com/towersxu/logicflow/issues/211) ([3347137](https://github.com/towersxu/logicflow/commit/33471376ec4994eece9acf5266fe50d411aa99cd))
|
|
1298
|
+
- use html-node as model type ([944b895](https://github.com/towersxu/logicflow/commit/944b895e640a699d6ce0bdedd2d2ac04779489d1))
|
|
1632
1299
|
|
|
1300
|
+
### Features
|
|
1633
1301
|
|
|
1302
|
+
- add html node ([373db63](https://github.com/towersxu/logicflow/commit/373db637fb8cca0416ff944dc5beda23f3082bf3))
|
|
1634
1303
|
|
|
1635
|
-
## [0.4.
|
|
1304
|
+
## [0.4.14](https://github.com/towersxu/logicflow/compare/@logicflow/core@0.4.11...@logicflow/core@0.4.14) (2021-06-16)
|
|
1636
1305
|
|
|
1306
|
+
**Note:** Version bump only for package @logicflow/core
|
|
1637
1307
|
|
|
1638
|
-
|
|
1308
|
+
## [0.4.13](https://github.com/towersxu/logicflow/compare/@logicflow/core@0.4.11...@logicflow/core@0.4.13) (2021-06-09)
|
|
1639
1309
|
|
|
1640
|
-
|
|
1310
|
+
**Note:** Version bump only for package @logicflow/core
|
|
1641
1311
|
|
|
1312
|
+
## [0.4.11](https://github.com/towersxu/logicflow/compare/@logicflow/core@0.4.9...@logicflow/core@0.4.11) (2021-05-31)
|
|
1642
1313
|
|
|
1314
|
+
**Note:** Version bump only for package @logicflow/core
|
|
1643
1315
|
|
|
1316
|
+
## [0.4.9](https://github.com/towersxu/logicflow/compare/@logicflow/core@0.4.7...@logicflow/core@0.4.9) (2021-05-28)
|
|
1644
1317
|
|
|
1318
|
+
### Bug Fixes
|
|
1645
1319
|
|
|
1646
|
-
|
|
1320
|
+
- 修复拖动触发点击事件的问题 ([19fd122](https://github.com/towersxu/logicflow/commit/19fd1226f0d26ccfddbe0df405907412e95b4535))
|
|
1647
1321
|
|
|
1322
|
+
## [0.4.8](https://github.com/towersxu/logicflow/compare/@logicflow/core@0.4.7...@logicflow/core@0.4.8) (2021-05-25)
|
|
1648
1323
|
|
|
1649
1324
|
### Bug Fixes
|
|
1650
1325
|
|
|
1651
|
-
|
|
1326
|
+
- 修复拖动触发点击事件的问题 ([19fd122](https://github.com/towersxu/logicflow/commit/19fd1226f0d26ccfddbe0df405907412e95b4535))
|
|
1652
1327
|
|
|
1328
|
+
## [0.4.7](https://github.com/towersxu/logicflow/compare/@logicflow/core@0.4.4...@logicflow/core@0.4.7) (2021-05-24)
|
|
1653
1329
|
|
|
1654
1330
|
### Features
|
|
1655
1331
|
|
|
1656
|
-
|
|
1332
|
+
- 自定义节点model支持获取graphModel ([4ae15aa](https://github.com/towersxu/logicflow/commit/4ae15aa243ae91184145be0df0cbb42baeb88de4))
|
|
1657
1333
|
|
|
1334
|
+
## [0.4.6](https://github.com/towersxu/logicflow/compare/@logicflow/core@0.4.5...@logicflow/core@0.4.6) (2021-05-21)
|
|
1658
1335
|
|
|
1336
|
+
**Note:** Version bump only for package @logicflow/core
|
|
1659
1337
|
|
|
1338
|
+
## [0.4.5](https://github.com/towersxu/logicflow/compare/@logicflow/core@0.4.4...@logicflow/core@0.4.5) (2021-05-21)
|
|
1660
1339
|
|
|
1340
|
+
### Features
|
|
1661
1341
|
|
|
1662
|
-
|
|
1342
|
+
- 自定义节点model支持获取graphModel ([71927f6](https://github.com/towersxu/logicflow/commit/71927f6947d27422bb0157898271d18d9ed2c84b))
|
|
1663
1343
|
|
|
1344
|
+
## [0.4.4](https://github.com/towersxu/logicflow/compare/@logicflow/core@0.4.3...@logicflow/core@0.4.4) (2021-05-19)
|
|
1664
1345
|
|
|
1665
1346
|
### Bug Fixes
|
|
1666
1347
|
|
|
1667
|
-
|
|
1668
|
-
* remove unnecessary console ([102bd81](https://github.com/towersxu/logicflow/commit/102bd8179d5dd5f84e677ad39b209f49d2ee3a1b))
|
|
1669
|
-
* twoPointDistance methods support negative number ([3f9b719](https://github.com/towersxu/logicflow/commit/3f9b719bbc836c6d6d050d12d7c7c908c19b0bc6))
|
|
1670
|
-
|
|
1348
|
+
- extenion render bind self instence ([afac922](https://github.com/towersxu/logicflow/commit/afac92287bf1c15b10151764c0a3fe0e4251be63))
|
|
1671
1349
|
|
|
1672
1350
|
### Features
|
|
1673
1351
|
|
|
1674
|
-
|
|
1352
|
+
- dndpanel support properties, related [#181](https://github.com/towersxu/logicflow/issues/181) ([765416c](https://github.com/towersxu/logicflow/commit/765416c6051559f529cb5af1fe9d5d14304f3cf1))
|
|
1353
|
+
|
|
1354
|
+
## [0.4.3](https://github.com/towersxu/logicflow/compare/@logicflow/core@0.4.2...@logicflow/core@0.4.3) (2021-05-16)
|
|
1675
1355
|
|
|
1356
|
+
### Bug Fixes
|
|
1676
1357
|
|
|
1358
|
+
- mobx4 anchorsOffset it`s not an array ([4e05895](https://github.com/towersxu/logicflow/commit/4e05895fec0a00313f851cb5afa350b5c849d408))
|
|
1359
|
+
- remove unnecessary console ([102bd81](https://github.com/towersxu/logicflow/commit/102bd8179d5dd5f84e677ad39b209f49d2ee3a1b))
|
|
1360
|
+
- twoPointDistance methods support negative number ([3f9b719](https://github.com/towersxu/logicflow/commit/3f9b719bbc836c6d6d050d12d7c7c908c19b0bc6))
|
|
1677
1361
|
|
|
1362
|
+
### Features
|
|
1678
1363
|
|
|
1364
|
+
- **extension:** endEvent node hide anchor ([6e2333f](https://github.com/towersxu/logicflow/commit/6e2333f2af8a214530a2c2ed3c1dc5597fcd68f1))
|
|
1679
1365
|
|
|
1680
1366
|
## [0.4.2](https://github.com/towersxu/logicflow/compare/@logicflow/core@0.3.6...@logicflow/core@0.4.2) (2021-05-13)
|
|
1681
1367
|
|
|
1682
|
-
|
|
1683
1368
|
### Bug Fixes
|
|
1684
1369
|
|
|
1685
|
-
|
|
1686
|
-
|
|
1687
|
-
|
|
1688
|
-
|
|
1689
|
-
|
|
1690
|
-
|
|
1691
|
-
|
|
1370
|
+
- build support ie ([4a90d5e](https://github.com/towersxu/logicflow/commit/4a90d5e0bb20f8dfd2f4ab88db5c691894521298))
|
|
1371
|
+
- ie11 transform no work ([f776592](https://github.com/towersxu/logicflow/commit/f776592b2d16675514e4f0e876b888d9ea14ebe9))
|
|
1372
|
+
- occasionally read isAllPass of undefined ([dac3d41](https://github.com/towersxu/logicflow/commit/dac3d4118aff2699497512ca799912deaa0b4930))
|
|
1373
|
+
- **core:** export function in util ([5ecae8a](https://github.com/towersxu/logicflow/commit/5ecae8a4d226a2a4e196461aef2e848a6ba7bb6c))
|
|
1374
|
+
- save register API & add registerElement API ([916f6be](https://github.com/towersxu/logicflow/commit/916f6be2be6f16fde9f385010f3291d82ded4a23))
|
|
1375
|
+
- update registerElement API in extension ([df25d11](https://github.com/towersxu/logicflow/commit/df25d110eee7051ee9357b11f669d80a3de1e0ea))
|
|
1692
1376
|
|
|
1693
1377
|
### Features
|
|
1694
1378
|
|
|
1695
|
-
|
|
1696
|
-
|
|
1697
|
-
|
|
1698
|
-
|
|
1699
|
-
|
|
1700
|
-
|
|
1701
|
-
|
|
1702
|
-
|
|
1703
|
-
|
|
1379
|
+
- register support config ([074c584](https://github.com/towersxu/logicflow/commit/074c58443df30b8d0a0beeee8deb1d0866f90f66))
|
|
1380
|
+
- support class as extension ([ac66e9f](https://github.com/towersxu/logicflow/commit/ac66e9ffd6709a605c48b61281be102429524b82))
|
|
1381
|
+
- support ie11 ([46df695](https://github.com/towersxu/logicflow/commit/46df6951b1af5b1e46bea4ed084aa6abd5ebddf0))
|
|
1382
|
+
- type ([a14c1c2](https://github.com/towersxu/logicflow/commit/a14c1c2b540700dc1f7ca93b1b2abbf542b896e4))
|
|
1383
|
+
- **extension:** rect node resize ([399afb5](https://github.com/towersxu/logicflow/commit/399afb545b421345ca3ea823d60f2d47db1e0d72))
|
|
1704
1384
|
|
|
1705
1385
|
## [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)
|
|
1706
1386
|
|
|
1707
|
-
|
|
1708
1387
|
### Bug Fixes
|
|
1709
1388
|
|
|
1710
|
-
|
|
1711
|
-
|
|
1712
|
-
|
|
1713
|
-
|
|
1714
|
-
|
|
1389
|
+
- ie11 transform no work ([95a069b](https://github.com/towersxu/logicflow/commit/95a069bb18faba2bd3efc849217ee4ce019fed23))
|
|
1390
|
+
- occasionally read isAllPass of undefined ([e413970](https://github.com/towersxu/logicflow/commit/e41397064f208c8f9daa76399397a69bdf4a133f))
|
|
1391
|
+
- **core:** export function in util ([24655f3](https://github.com/towersxu/logicflow/commit/24655f3f2d4d539925847e3ced47e16c503d6ebb))
|
|
1392
|
+
- **extension:** merge v0.4 ([3ce2a7c](https://github.com/towersxu/logicflow/commit/3ce2a7c13e02828c701b523135c0275011c592c8))
|
|
1715
1393
|
|
|
1716
1394
|
### Features
|
|
1717
1395
|
|
|
1718
|
-
|
|
1719
|
-
|
|
1720
|
-
|
|
1721
|
-
|
|
1722
|
-
|
|
1723
|
-
|
|
1396
|
+
- support class as extension ([e3c40d1](https://github.com/towersxu/logicflow/commit/e3c40d1e3e648b58597f33cb8330b42ce6d76079))
|
|
1397
|
+
- **extension:** rect node resize ([9d25526](https://github.com/towersxu/logicflow/commit/9d25526c8bdbf0a64ecf4b66d5b755e498ccc2cd))
|
|
1724
1398
|
|
|
1725
1399
|
## [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)
|
|
1726
1400
|
|
|
1727
|
-
|
|
1728
1401
|
### Features
|
|
1729
1402
|
|
|
1730
|
-
|
|
1731
|
-
|
|
1732
|
-
|
|
1733
|
-
|
|
1734
|
-
|
|
1403
|
+
- support class as extension ([e3c40d1](https://github.com/towersxu/logicflow/commit/e3c40d1e3e648b58597f33cb8330b42ce6d76079))
|
|
1735
1404
|
|
|
1736
1405
|
# [0.4.0](https://github.com/towersxu/logicflow/compare/@logicflow/core@0.3.6...@logicflow/core@0.4.0) (2021-04-30)
|
|
1737
1406
|
|
|
1738
|
-
|
|
1739
1407
|
### Bug Fixes
|
|
1740
1408
|
|
|
1741
|
-
|
|
1742
|
-
|
|
1743
|
-
|
|
1409
|
+
- save register API & add registerElement API ([53304b3](https://github.com/towersxu/logicflow/commit/53304b3c5ad7ad78cc1ae1a282879614f881cf80))
|
|
1410
|
+
- update registerElement API in extension ([7798dbb](https://github.com/towersxu/logicflow/commit/7798dbbeef4b4d021d02b5d21d55f81ef7161d1e))
|
|
1744
1411
|
|
|
1745
1412
|
### Features
|
|
1746
1413
|
|
|
1747
|
-
|
|
1748
|
-
|
|
1749
|
-
|
|
1750
|
-
|
|
1751
|
-
|
|
1752
|
-
|
|
1414
|
+
- register support config ([cae7c98](https://github.com/towersxu/logicflow/commit/cae7c9807eff77fcad9de2907c286c03b01b6aa9))
|
|
1415
|
+
- support ie11 ([902e813](https://github.com/towersxu/logicflow/commit/902e81394a2d5945d7ceecfee58875f57f938fc8))
|
|
1753
1416
|
|
|
1754
1417
|
## [0.3.6](https://github.com/towersxu/logicflow/compare/@logicflow/core@0.3.4...@logicflow/core@0.3.6) (2021-04-29)
|
|
1755
1418
|
|
|
1756
|
-
|
|
1757
1419
|
### Bug Fixes
|
|
1758
1420
|
|
|
1759
|
-
|
|
1760
|
-
|
|
1761
|
-
|
|
1421
|
+
- add more warning ([12f4bb3](https://github.com/towersxu/logicflow/commit/12f4bb36e34733855aeb760a5874fedd09b411de))
|
|
1422
|
+
- change node type line ([31602bb](https://github.com/towersxu/logicflow/commit/31602bbbfb5282ef9b2d80d18c0a7492ed19f907))
|
|
1762
1423
|
|
|
1763
1424
|
### Features
|
|
1764
1425
|
|
|
1765
|
-
|
|
1766
|
-
|
|
1767
|
-
|
|
1768
|
-
|
|
1769
|
-
|
|
1770
|
-
|
|
1426
|
+
- add change nodetype ([15878a1](https://github.com/towersxu/logicflow/commit/15878a1c8be6f9117c925792c66dcdbfd1b0aa77))
|
|
1427
|
+
- **extension:** drop node in polyline ([94480ac](https://github.com/towersxu/logicflow/commit/94480ac5b2b8d989a2310a3b4c25e08abe9d10b6))
|
|
1771
1428
|
|
|
1772
1429
|
## [0.3.5](https://github.com/towersxu/logicflow/compare/@logicflow/core@0.3.4...@logicflow/core@0.3.5) (2021-04-29)
|
|
1773
1430
|
|
|
1774
|
-
|
|
1775
1431
|
### Bug Fixes
|
|
1776
1432
|
|
|
1777
|
-
|
|
1778
|
-
|
|
1433
|
+
- add more warning ([12f4bb3](https://github.com/towersxu/logicflow/commit/12f4bb36e34733855aeb760a5874fedd09b411de))
|
|
1779
1434
|
|
|
1780
1435
|
### Features
|
|
1781
1436
|
|
|
1782
|
-
|
|
1783
|
-
|
|
1784
|
-
|
|
1785
|
-
|
|
1786
|
-
|
|
1787
|
-
|
|
1437
|
+
- add change nodetype ([15878a1](https://github.com/towersxu/logicflow/commit/15878a1c8be6f9117c925792c66dcdbfd1b0aa77))
|
|
1438
|
+
- **extension:** drop node in polyline ([94480ac](https://github.com/towersxu/logicflow/commit/94480ac5b2b8d989a2310a3b4c25e08abe9d10b6))
|
|
1788
1439
|
|
|
1789
1440
|
## [0.3.4](https://github.com/towersxu/logicflow/compare/@logicflow/core@0.3.3...@logicflow/core@0.3.4) (2021-04-22)
|
|
1790
1441
|
|
|
1791
1442
|
**Note:** Version bump only for package @logicflow/core
|
|
1792
1443
|
|
|
1793
|
-
|
|
1794
|
-
|
|
1795
|
-
|
|
1796
|
-
|
|
1797
1444
|
## [0.3.3](https://github.com/towersxu/logicflow/compare/@logicflow/core@0.3.2...@logicflow/core@0.3.3) (2021-04-21)
|
|
1798
1445
|
|
|
1799
|
-
|
|
1800
1446
|
### Bug Fixes
|
|
1801
1447
|
|
|
1802
|
-
|
|
1803
|
-
|
|
1804
|
-
|
|
1805
|
-
|
|
1806
|
-
|
|
1807
|
-
|
|
1808
|
-
|
|
1448
|
+
- avoid reObserver view ([996fd65](https://github.com/towersxu/logicflow/commit/996fd6515d78b5331b08fd84025a148b45026cd9))
|
|
1449
|
+
- drag text not allowed propagation ([9d6cc0c](https://github.com/towersxu/logicflow/commit/9d6cc0cc1c64fdc134e83f37794ca568ffbfca25))
|
|
1450
|
+
- types ([37491ca](https://github.com/towersxu/logicflow/commit/37491cab07d7712aa4b94326424af3ded5031f75))
|
|
1809
1451
|
|
|
1810
1452
|
## [0.3.2](https://github.com/towersxu/logicflow/compare/@logicflow/core@0.3.1...@logicflow/core@0.3.2) (2021-04-20)
|
|
1811
1453
|
|
|
1812
|
-
|
|
1813
1454
|
### Bug Fixes
|
|
1814
1455
|
|
|
1815
|
-
|
|
1816
|
-
|
|
1817
|
-
|
|
1456
|
+
- show anchors when extend baseNode ([12bd0db](https://github.com/towersxu/logicflow/commit/12bd0db574b18b19aed8134b9e508f3c0a9ef6f4))
|
|
1457
|
+
- show anchors when extend baseNode ([d78d7df](https://github.com/towersxu/logicflow/commit/d78d7dfabbdea171a104a22b48ad6e8662230c21))
|
|
1818
1458
|
|
|
1819
1459
|
### Features
|
|
1820
1460
|
|
|
1821
|
-
|
|
1822
|
-
|
|
1823
|
-
|
|
1824
|
-
|
|
1825
|
-
|
|
1461
|
+
- **core:** add clearData funcion in Logicflow ([2a5b345](https://github.com/towersxu/logicflow/commit/2a5b3450b88fd7d831bc25810726fa4de4255033))
|
|
1826
1462
|
|
|
1827
1463
|
## [0.3.1](https://github.com/towersxu/logicflow/compare/@logicflow/core@0.3.0...@logicflow/core@0.3.1) (2021-04-19)
|
|
1828
1464
|
|
|
1829
|
-
|
|
1830
1465
|
### Bug Fixes
|
|
1831
1466
|
|
|
1832
|
-
|
|
1833
|
-
|
|
1834
|
-
|
|
1835
|
-
|
|
1836
|
-
|
|
1837
|
-
|
|
1467
|
+
- delete useless code ([8680810](https://github.com/towersxu/logicflow/commit/8680810fdb6600994bcf3b94e11061dad176bc51))
|
|
1468
|
+
- format edge text value ([cc8aa22](https://github.com/towersxu/logicflow/commit/cc8aa224d158f547589a2e1f9e079d064df0b9e8))
|
|
1838
1469
|
|
|
1839
1470
|
# [0.3.0](https://github.com/towersxu/logicflow/compare/@logicflow/core@0.3.0-alpha.5...@logicflow/core@0.3.0) (2021-04-13)
|
|
1840
1471
|
|
|
1841
|
-
|
|
1842
1472
|
### Bug Fixes
|
|
1843
1473
|
|
|
1844
|
-
|
|
1845
|
-
|
|
1846
|
-
|
|
1847
|
-
|
|
1848
|
-
|
|
1849
|
-
|
|
1850
|
-
|
|
1851
|
-
|
|
1474
|
+
- add hoverBackground ([aca87e6](https://github.com/towersxu/logicflow/commit/aca87e6feafb7c0745a192b110533fe96e27edc2))
|
|
1475
|
+
- anchor hover style not hide ([2ea9e54](https://github.com/towersxu/logicflow/commit/2ea9e54b5df5030388e2cfbaca39680a88a7387a))
|
|
1476
|
+
- edge updateText position ([e333787](https://github.com/towersxu/logicflow/commit/e3337878bed766eaab9345c9110e202cc477a56c))
|
|
1477
|
+
- invalid setTheme for rect size ([4ed7e1a](https://github.com/towersxu/logicflow/commit/4ed7e1af69ddf31956e454748da4ea5adcb03be6))
|
|
1478
|
+
- save input value when swich edit element ([972e4cd](https://github.com/towersxu/logicflow/commit/972e4cdaba7f7388fe59cb572ff598b976275c0b))
|
|
1479
|
+
- **all:** add rimraf ([c526ad8](https://github.com/towersxu/logicflow/commit/c526ad840b1e2620a3221d416f7a03e9c6d3583c))
|
|
1480
|
+
- **core:** fix the bug when drag edges ([36aed3a](https://github.com/towersxu/logicflow/commit/36aed3a455e9bfd04ad5a0b4aae294863184069c))
|
|
1852
1481
|
|
|
1853
1482
|
### Features
|
|
1854
1483
|
|
|
1855
|
-
|
|
1856
|
-
|
|
1857
|
-
|
|
1858
|
-
|
|
1859
|
-
|
|
1860
|
-
|
|
1861
|
-
|
|
1862
|
-
|
|
1863
|
-
|
|
1484
|
+
- **extension:** curved-edge ([1731b10](https://github.com/towersxu/logicflow/commit/1731b10e3e65ccf226b48d4fb572d90d2ad10dec))
|
|
1485
|
+
- add the height field for hoverBackground and background ([4d38c8a](https://github.com/towersxu/logicflow/commit/4d38c8aadcd21e02f21f1b822c6a7832445b24bd))
|
|
1486
|
+
- add updateAttributes API ([3112b69](https://github.com/towersxu/logicflow/commit/3112b6917998f6cbb2e306b1862eb3e2c4bd8e8f))
|
|
1487
|
+
- added missing element tips ([71674cd](https://github.com/towersxu/logicflow/commit/71674cddc6096170fdc88d88b02a4d482f3c2f43))
|
|
1488
|
+
- support setting line of dashes for edges ([4f39909](https://github.com/towersxu/logicflow/commit/4f39909af2260ff0ea696dd2db04ee4e5713b4bc))
|
|
1864
1489
|
|
|
1865
1490
|
# [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)
|
|
1866
1491
|
|
|
1867
|
-
|
|
1868
1492
|
### Features
|
|
1869
1493
|
|
|
1870
|
-
|
|
1871
|
-
|
|
1872
|
-
|
|
1873
|
-
|
|
1874
|
-
|
|
1494
|
+
- edge text support hover style ([ffc75d4](https://github.com/towersxu/logicflow/commit/ffc75d45e0ef42b9dbca1be489fa749186aa81b0))
|
|
1875
1495
|
|
|
1876
1496
|
# [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)
|
|
1877
1497
|
|
|
1878
|
-
|
|
1879
1498
|
### Bug Fixes
|
|
1880
1499
|
|
|
1881
|
-
|
|
1882
|
-
|
|
1883
|
-
|
|
1884
|
-
|
|
1885
|
-
|
|
1886
|
-
|
|
1500
|
+
- the text content misalignment caused by switching nodes ([38193f7](https://github.com/towersxu/logicflow/commit/38193f7a28cb004c18dc7717f854d83269bf4194))
|
|
1501
|
+
- **extension:** mini-map default disable control & selection-select ([297cecf](https://github.com/towersxu/logicflow/commit/297cecf4637ca7a045619a10cd9298feacc631ea))
|
|
1887
1502
|
|
|
1888
1503
|
# [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)
|
|
1889
1504
|
|
|
1890
|
-
|
|
1891
1505
|
### Bug Fixes
|
|
1892
1506
|
|
|
1893
|
-
|
|
1894
|
-
|
|
1895
|
-
|
|
1896
|
-
|
|
1897
|
-
|
|
1507
|
+
- **extension:** mini-map default disable control & selection-select ([297cecf](https://github.com/towersxu/logicflow/commit/297cecf4637ca7a045619a10cd9298feacc631ea))
|
|
1898
1508
|
|
|
1899
1509
|
# [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)
|
|
1900
1510
|
|
|
1901
|
-
|
|
1902
1511
|
### Bug Fixes
|
|
1903
1512
|
|
|
1904
|
-
|
|
1905
|
-
|
|
1906
|
-
|
|
1513
|
+
- minimap extension custom disabled plugin ([3768d14](https://github.com/towersxu/logicflow/commit/3768d149b6a72e4c251e287432b6070dcbfabce6))
|
|
1514
|
+
- move clone guard to shortcut ([c5643da](https://github.com/towersxu/logicflow/commit/c5643daa8ca7b2f905db81357444e5bba64a5ee7))
|
|
1907
1515
|
|
|
1908
1516
|
### Features
|
|
1909
1517
|
|
|
1910
|
-
|
|
1911
|
-
|
|
1912
|
-
|
|
1913
|
-
|
|
1914
|
-
|
|
1518
|
+
- change cloneElements to addElements ([6c59d74](https://github.com/towersxu/logicflow/commit/6c59d749a53e5263f5cf630702453054347215f6))
|
|
1915
1519
|
|
|
1916
1520
|
# [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)
|
|
1917
1521
|
|
|
1918
|
-
|
|
1919
1522
|
### Bug Fixes
|
|
1920
1523
|
|
|
1921
|
-
|
|
1922
|
-
|
|
1923
|
-
|
|
1524
|
+
- custom shortcut replace default shortcut ([791a4e2](https://github.com/didi/LogicFlow/commit/791a4e20134ef251073e528b897a6568a38ae57f))
|
|
1525
|
+
- vue reactive object side effect ([a2dc0f8](https://github.com/didi/LogicFlow/commit/a2dc0f86d920679df6a387985b36374c6c2aeb78))
|
|
1924
1526
|
|
|
1925
1527
|
### Features
|
|
1926
1528
|
|
|
1927
|
-
|
|
1928
|
-
|
|
1929
|
-
|
|
1930
|
-
|
|
1931
|
-
|
|
1529
|
+
- add getSelectElements function ([d6b5a81](https://github.com/didi/LogicFlow/commit/d6b5a81a76ba59cac319cb01a3187caf0fb216ea))
|
|
1932
1530
|
|
|
1933
1531
|
# [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)
|
|
1934
1532
|
|
|
1935
|
-
|
|
1936
1533
|
### Bug Fixes
|
|
1937
1534
|
|
|
1938
|
-
|
|
1939
|
-
|
|
1940
|
-
|
|
1941
|
-
|
|
1942
|
-
|
|
1943
|
-
|
|
1944
|
-
|
|
1535
|
+
- 🐛 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)
|
|
1536
|
+
- 🐛 the incorrect way of anchor choice ([4811f65](https://github.com/didi/LogicFlow/commit/4811f6522ee7a817220ed472b1eb972dad562630))
|
|
1537
|
+
- **core:** invalid style setting of snapline in setTheme function ([dc963d5](https://github.com/didi/LogicFlow/commit/dc963d5cb3480e2e469ce5cb46cc4fbf8975f73b))
|
|
1538
|
+
- **core:** remove outline in container & copy incomplete elements ([370bbf5](https://github.com/didi/LogicFlow/commit/370bbf578416be6199fa4d4d424cb55fdb5c844c))
|
|
1539
|
+
- **core:** select edge after mouseup event ([f24aafd](https://github.com/didi/LogicFlow/commit/f24aafdafbdb5ee3d9617df4600e71b70dda876e))
|
|
1540
|
+
- **core:** trigger the edge:click and edge:dbclick with mousedown and mouseup ([b267188](https://github.com/didi/LogicFlow/commit/b267188c712e4ab363c958c4327d219634582641))
|
|
1945
1541
|
|
|
1946
1542
|
### Features
|
|
1947
1543
|
|
|
1948
|
-
|
|
1949
|
-
|
|
1950
|
-
|
|
1951
|
-
|
|
1952
|
-
|
|
1953
|
-
|
|
1954
|
-
|
|
1955
|
-
|
|
1956
|
-
|
|
1957
|
-
|
|
1958
|
-
|
|
1544
|
+
- 🎸 add anchorsOffset API ([f23317b](https://github.com/didi/LogicFlow/commit/f23317bf535222d3770ae39892071ca7d154df41))
|
|
1545
|
+
- add mini-map extension ([fa621da](https://github.com/didi/LogicFlow/commit/fa621daf2cc6a05cd5265bfe5245f5424f97ae7e))
|
|
1546
|
+
- custom active plugin & add updateText function ([c974e75](https://github.com/didi/LogicFlow/commit/c974e7521d8eb1395c9df63c5c5da8933e8a849a))
|
|
1547
|
+
- extension add destroy property ([23e59e5](https://github.com/didi/LogicFlow/commit/23e59e5902976fced92ad67ddd72f74938113c96))
|
|
1548
|
+
- resize node ([2bc595e](https://github.com/didi/LogicFlow/commit/2bc595eadea58e1597f730520b830efc41a0dac5))
|
|
1549
|
+
- **core:** add disable extension config & extension need name ([8bd9355](https://github.com/didi/LogicFlow/commit/8bd93555b7f82eb30a4813c986e3e642c86578fb))
|
|
1550
|
+
- **core:** add drap event ([746f5db](https://github.com/didi/LogicFlow/commit/746f5db4e5dcfd362f57524f2bfb40db2279030f))
|
|
1959
1551
|
|
|
1960
1552
|
## [0.2.9](https://github.com/didi/LogicFlow/compare/@logicflow/core@0.2.8...@logicflow/core@0.2.9) (2021-03-10)
|
|
1961
1553
|
|
|
1962
|
-
|
|
1963
1554
|
### Bug Fixes
|
|
1964
1555
|
|
|
1965
|
-
|
|
1966
|
-
|
|
1967
|
-
|
|
1968
|
-
|
|
1969
|
-
|
|
1970
|
-
|
|
1556
|
+
- 🐛 no dbclick event was triggered when textEdit is false ([f295def](https://github.com/didi/LogicFlow/commit/f295def99aae5f92394056066884faf8d2967495))
|
|
1557
|
+
- **core:** Fix the problem of invalid property settings in setProperties function ([3e28d4e](https://github.com/didi/LogicFlow/commit/3e28d4e8b0153830c8277bd81f0259374fa23b71))
|
|
1971
1558
|
|
|
1972
1559
|
## [0.2.8](https://github.com/didi/LogicFlow/compare/@logicflow/core@0.2.7...@logicflow/core@0.2.8) (2021-03-05)
|
|
1973
1560
|
|
|
1974
|
-
|
|
1975
1561
|
### Bug Fixes
|
|
1976
1562
|
|
|
1977
|
-
|
|
1978
|
-
|
|
1979
|
-
|
|
1980
|
-
|
|
1981
|
-
|
|
1982
|
-
|
|
1983
|
-
|
|
1984
|
-
|
|
1985
|
-
|
|
1563
|
+
- **core:** Compatible with the data of the vue project ([4d94215](https://github.com/didi/LogicFlow/commit/4d9421522444915ddb5534836c93ccf0b199481d))
|
|
1564
|
+
- **core:** Fix the problem of invalid property settings in addNode and createEdge function ([54eb760](https://github.com/didi/LogicFlow/commit/54eb760b8e2d56fcc10ae1171427b275441e31c3))
|
|
1565
|
+
- **core:** Pick standardized data in the constructor function of nodeModel ([fc6f6d7](https://github.com/didi/LogicFlow/commit/fc6f6d74968425e272b805c76692469dad449f53))
|
|
1566
|
+
- 🐛 lack the outline style of edge ([babeaac](https://github.com/didi/LogicFlow/commit/babeaac2b6a4e9b864df0e740deddc9a6a21dfb9))
|
|
1567
|
+
- 🐛 the render err of diamond ([01c85bb](https://github.com/didi/LogicFlow/commit/01c85bbee091222c3772dbf6cc3de282d2f7d097))
|
|
1986
1568
|
|
|
1987
1569
|
## [0.2.7](https://github.com/didi/LogicFlow/compare/@logicflow/core@0.2.6...@logicflow/core@0.2.7) (2021-03-01)
|
|
1988
1570
|
|
|
1989
|
-
|
|
1990
1571
|
### Bug Fixes
|
|
1991
1572
|
|
|
1992
|
-
|
|
1993
|
-
|
|
1994
|
-
|
|
1995
|
-
|
|
1996
|
-
|
|
1997
|
-
|
|
1573
|
+
- 🐛 complete the type of nodes' common style ([971f63e](https://github.com/didi/LogicFlow/commit/971f63ec1b320f034263ab34e456eee970a3e06b))
|
|
1574
|
+
- **core:** get vue project responsive data error ([e03d277](https://github.com/didi/LogicFlow/commit/e03d277b6cca2836f53f104f5e999208439a5fe0))
|
|
1998
1575
|
|
|
1999
1576
|
## [0.2.6](https://github.com/didi/LogicFlow/compare/@logicflow/core@0.2.4...@logicflow/core@0.2.6) (2021-03-01)
|
|
2000
1577
|
|
|
2001
|
-
|
|
2002
1578
|
### Bug Fixes
|
|
2003
1579
|
|
|
2004
|
-
|
|
2005
|
-
|
|
2006
|
-
|
|
2007
|
-
|
|
1580
|
+
- **core:** immutable redo data ([7a5dac6](https://github.com/didi/LogicFlow/commit/7a5dac6d89b0b248a9055cacaa22dc423dc6c299))
|
|
1581
|
+
- **extension:** 🐛fix undo error when custom text position ([fc6e7d7](https://github.com/didi/LogicFlow/commit/fc6e7d767889e8bbdd542a3c8006e352a86121c4))
|
|
1582
|
+
- 🐛 add the type of diamond class ([90f70b5](https://github.com/didi/LogicFlow/commit/90f70b5dd378af9f7c6ee3abca0c2ebf5cb8e4b3))
|
|
2008
1583
|
|
|
2009
1584
|
### Features
|
|
2010
1585
|
|
|
2011
|
-
|
|
2012
|
-
|
|
2013
|
-
|
|
2014
|
-
|
|
2015
|
-
|
|
2016
|
-
|
|
2017
|
-
|
|
2018
|
-
|
|
2019
|
-
|
|
1586
|
+
- new plugin Selection & example ([2e4b489](https://github.com/didi/LogicFlow/commit/2e4b48958dff21617b6f7b08c9840deac0a178f0))
|
|
1587
|
+
- **core:** add edit config update function ([695894c](https://github.com/didi/LogicFlow/commit/695894c4db9fa328d358be1d3917166b33aae990))
|
|
1588
|
+
- **core:** copy paste and delete multiple selected elements ([4a5be86](https://github.com/didi/LogicFlow/commit/4a5be86c63c90b7c1c88e08e9d084e708307a80d))
|
|
1589
|
+
- **core:** multiple elements drag moving ([a59065f](https://github.com/didi/LogicFlow/commit/a59065f7cebd745e2ba0e147c8356849384be9f9))
|
|
1590
|
+
- **core:** support use meta key select multiple element ([e137f9f](https://github.com/didi/LogicFlow/commit/e137f9fdbdb6bf3f85c3f7ac9323785e445844c8))
|
|
2020
1591
|
|
|
2021
1592
|
## [0.2.4](https://github.com/didi/LogicFlow/compare/@logicflow/core@0.2.3...@logicflow/core@0.2.4) (2021-02-20)
|
|
2022
1593
|
|
|
2023
|
-
|
|
2024
1594
|
### Bug Fixes
|
|
2025
1595
|
|
|
2026
|
-
|
|
2027
|
-
|
|
2028
|
-
|
|
2029
|
-
|
|
2030
|
-
|
|
1596
|
+
- 🐛 fix error when moving edge ([9ac20c1](https://github.com/didi/LogicFlow/commit/9ac20c1c89a6909860e2de99eea2c333f2f4aa6c))
|
|
2031
1597
|
|
|
2032
1598
|
## [0.2.3](https://github.com/didi/LogicFlow/compare/@logicflow/core@0.2.2...@logicflow/core@0.2.3) (2021-02-19)
|
|
2033
1599
|
|
|
2034
|
-
|
|
2035
1600
|
### Bug Fixes
|
|
2036
1601
|
|
|
2037
|
-
|
|
2038
|
-
|
|
2039
|
-
|
|
2040
|
-
|
|
2041
|
-
|
|
1602
|
+
- **core:** print error when double click edge ([a890ef7](https://github.com/didi/LogicFlow/commit/a890ef7f81e559ef16da505568b1ddb94c7eb365))
|
|
2042
1603
|
|
|
2043
1604
|
## [0.2.2](https://github.com/didi/LogicFlow/compare/@logicflow/core@0.2.1...@logicflow/core@0.2.2) (2021-02-08)
|
|
2044
1605
|
|
|
2045
|
-
|
|
2046
1606
|
### Bug Fixes
|
|
2047
1607
|
|
|
2048
|
-
|
|
2049
|
-
|
|
2050
|
-
|
|
2051
|
-
|
|
2052
|
-
|
|
1608
|
+
- **core:** change the priority of events ([5373797](https://github.com/didi/LogicFlow/commit/53737978d109088a2aeac1b4492fcbd69d16ec35))
|
|
2053
1609
|
|
|
2054
1610
|
## [0.2.1](https://github.com/didi/LogicFlow/compare/@logicflow/core@0.1.0...@logicflow/core@0.2.1) (2021-02-08)
|
|
2055
1611
|
|
|
2056
|
-
|
|
2057
1612
|
### Bug Fixes
|
|
2058
1613
|
|
|
2059
|
-
|
|
2060
|
-
|
|
2061
|
-
|
|
2062
|
-
|
|
2063
|
-
|
|
2064
|
-
|
|
2065
|
-
|
|
2066
|
-
|
|
1614
|
+
- **core:** fix anchor error ([7a30f23](https://github.com/didi/LogicFlow/commit/7a30f238bda918be25caa6e9646846f379042b3c))
|
|
1615
|
+
- **core:** fix checking repeatedly verification rules ([f0efbf4](https://github.com/didi/LogicFlow/commit/f0efbf481eb254bdaf29fd25b29ee1ee495d439b))
|
|
1616
|
+
- **core:** fix textEdit deviation ([17db629](https://github.com/didi/LogicFlow/commit/17db629500d3887f26779440582c3ce3567bdab6))
|
|
1617
|
+
- **core:** move the tool overlay out of the graph ([fcc586d](https://github.com/didi/LogicFlow/commit/fcc586df6d9e8f5188fb6d87bdb86aa461950f98))
|
|
1618
|
+
- **core:** optimize anchor selection ([19d5fe8](https://github.com/didi/LogicFlow/commit/19d5fe8bd7b886656ce4ec96acbc7bbbdfff1ce4))
|
|
1619
|
+
- **core:** recovery ellipse size ([81e8ed3](https://github.com/didi/LogicFlow/commit/81e8ed396db0bc32c26a9961298ad4a535ed02ad))
|
|
1620
|
+
- Spelling errors EdgeConifg -> EdgeConfig and EdgeConfig Repeat Definitions in type/index.ts ([401dfb5](https://github.com/didi/LogicFlow/commit/401dfb533e860d03b60ddfc6d9a006900af38c35))
|
|
2067
1621
|
|
|
2068
1622
|
### Features
|
|
2069
1623
|
|
|
2070
|
-
|
|
2071
|
-
|
|
2072
|
-
|
|
2073
|
-
|
|
2074
|
-
|
|
2075
|
-
|
|
2076
|
-
|
|
2077
|
-
|
|
2078
|
-
|
|
2079
|
-
|
|
2080
|
-
|
|
2081
|
-
|
|
2082
|
-
|
|
2083
|
-
|
|
1624
|
+
- **core:** add getPointByClient API ([983fa91](https://github.com/didi/LogicFlow/commit/983fa91cc70426f113c397ed89d75add50e634ad))
|
|
1625
|
+
- **core:** add new configuration items ([66d562d](https://github.com/didi/LogicFlow/commit/66d562d90306c69d69f22823d174d11833cf70d0))
|
|
1626
|
+
- **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)
|
|
1627
|
+
- **core:** Add the select function for logicflow ([6ae0671](https://github.com/didi/LogicFlow/commit/6ae067153cd2608018fd3da76bd6d00a08da4b3a))
|
|
1628
|
+
- **core:** Create text for polyline at the double-click position ([ac7eeea](https://github.com/didi/LogicFlow/commit/ac7eeea0a3937350a4393500b24811352947fb49))
|
|
1629
|
+
- **core:** support open text edit by double click anchor ([690d1d1](https://github.com/didi/LogicFlow/commit/690d1d1648237c06580f51439ec67e4d07931774))
|
|
1630
|
+
- **core:** support setting hoverOutlineStrokeDash ([ad09324](https://github.com/didi/LogicFlow/commit/ad09324088cbb95d7bbe843cb4d745475cfeb92c))
|
|
1631
|
+
- **core:** v0.2.0 ([f11d143](https://github.com/didi/LogicFlow/commit/f11d143a998ca68887f08e6ccd98604f165cec8a))
|
|
1632
|
+
- **extension:** v0.2.0 ([ee67636](https://github.com/didi/LogicFlow/commit/ee676365b82d2d07d40cbc77e955eb3506690804))
|
|
1633
|
+
- 替换文件夹名称 ([9155d8a](https://github.com/didi/LogicFlow/commit/9155d8a7af3cd0aff983f8a036bd3ffafd0d4d56))
|
|
2084
1634
|
|
|
2085
1635
|
# [0.2.0](https://github.com/didichuxing/LogicFlow/compare/@logicflow/core@0.1.0...@logicflow/core@0.2.0) (2021-02-01)
|
|
2086
1636
|
|
|
2087
|
-
|
|
2088
1637
|
### Bug Fixes
|
|
2089
1638
|
|
|
2090
|
-
|
|
2091
|
-
|
|
2092
|
-
|
|
2093
|
-
|
|
2094
|
-
|
|
1639
|
+
- Spelling errors EdgeConifg -> EdgeConfig and EdgeConfig Repeat Definitions in type/index.ts ([401dfb5](https://github.com/didichuxing/LogicFlow/commit/401dfb533e860d03b60ddfc6d9a006900af38c35))
|
|
1640
|
+
- **core:** fix anchor error ([7a30f23](https://github.com/didichuxing/LogicFlow/commit/7a30f238bda918be25caa6e9646846f379042b3c))
|
|
1641
|
+
- **core:** fix checking repeatedly verification rules ([f0efbf4](https://github.com/didichuxing/LogicFlow/commit/f0efbf481eb254bdaf29fd25b29ee1ee495d439b))
|
|
1642
|
+
- **core:** move the tool overlay out of the graph ([fcc586d](https://github.com/didichuxing/LogicFlow/commit/fcc586df6d9e8f5188fb6d87bdb86aa461950f98))
|
|
2095
1643
|
|
|
2096
1644
|
### Features
|
|
2097
1645
|
|
|
2098
|
-
|
|
2099
|
-
|
|
2100
|
-
|
|
2101
|
-
|
|
2102
|
-
|
|
2103
|
-
|
|
2104
|
-
|
|
2105
|
-
|
|
2106
|
-
|
|
1646
|
+
- 替换文件夹名称 ([9155d8a](https://github.com/didichuxing/LogicFlow/commit/9155d8a7af3cd0aff983f8a036bd3ffafd0d4d56))
|
|
1647
|
+
- **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)
|
|
1648
|
+
- **core:** support open text edit by double click anchor ([690d1d1](https://github.com/didichuxing/LogicFlow/commit/690d1d1648237c06580f51439ec67e4d07931774))
|
|
1649
|
+
- **core:** v0.2.0 ([f11d143](https://github.com/didichuxing/LogicFlow/commit/f11d143a998ca68887f08e6ccd98604f165cec8a))
|
|
1650
|
+
- **extension:** v0.2.0 ([ee67636](https://github.com/didichuxing/LogicFlow/commit/ee676365b82d2d07d40cbc77e955eb3506690804))
|
|
2107
1651
|
|
|
2108
1652
|
# 0.1.0 (2020-12-29)
|
|
2109
1653
|
|
|
2110
|
-
|
|
2111
1654
|
### Features
|
|
2112
1655
|
|
|
2113
|
-
|
|
2114
|
-
|
|
1656
|
+
- init ([6ab4c32](https://github.com/didichuxing/LogicFlow/commit/6ab4c326063b9242010c89b6bf92885c3158e6b0))
|
|
1657
|
+
- 更改包名增加scope ([27be341](https://github.com/didichuxing/LogicFlow/commit/27be3410c70f959093f928c792cf40f038e8adcc))
|