@logicflow/extension 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.log +387 -754
- package/CHANGELOG.md +812 -1253
- package/dist/index.css +0 -63
- package/dist/index.min.js +16 -16
- package/es/bpmn-adapter/index.js +1 -1
- package/es/bpmn-adapter/index.js.map +1 -1
- package/es/bpmn-elements-adapter/index.js +1 -1
- package/es/bpmn-elements-adapter/index.js.map +1 -1
- package/es/components/highlight/index.d.ts +6 -4
- package/es/components/highlight/index.js +36 -5
- package/es/components/highlight/index.js.map +1 -1
- package/es/components/mini-map/index.d.ts +1 -1
- package/es/components/mini-map/index.js +1 -1
- package/es/components/selection-select/index.js +14 -6
- package/es/components/selection-select/index.js.map +1 -1
- package/es/dynamic-group/index.js +3 -4
- package/es/dynamic-group/index.js.map +1 -1
- package/es/dynamic-group/model.d.ts +3 -3
- package/es/dynamic-group/model.js +12 -9
- package/es/dynamic-group/model.js.map +1 -1
- package/es/dynamic-group/node.js +19 -0
- package/es/dynamic-group/node.js.map +1 -1
- package/es/dynamic-group/utils.d.ts +5 -3
- package/es/dynamic-group/utils.js +14 -7
- package/es/dynamic-group/utils.js.map +1 -1
- package/es/index.css +0 -63
- package/es/index.d.ts +2 -0
- package/es/index.js +3 -0
- package/es/index.js.map +1 -1
- package/es/style/index.css +0 -63
- package/es/style/index.less +0 -73
- package/es/style/raw.d.ts +1 -1
- package/es/style/raw.js +1 -1
- package/es/style/raw.js.map +1 -1
- package/es/tools/label/LabelOverlay.js.map +1 -1
- package/es/tools/label/index.d.ts +1 -0
- package/es/tools/label/index.js +13 -3
- package/es/tools/label/index.js.map +1 -1
- package/es/tools/label/mediumEditor.d.ts +1 -0
- package/es/tools/label/mediumEditor.js +1 -0
- package/es/tools/label/mediumEditor.js.map +1 -1
- package/es/tools/label/style.css +63 -0
- package/es/tools/label/style.less +71 -0
- package/es/tools/snapshot/index.d.ts +9 -9
- package/es/tools/snapshot/index.js +15 -15
- package/es/tools/snapshot/index.js.map +1 -1
- package/lib/bpmn-adapter/index.js +1 -1
- package/lib/bpmn-adapter/index.js.map +1 -1
- package/lib/bpmn-elements-adapter/index.js +1 -1
- package/lib/bpmn-elements-adapter/index.js.map +1 -1
- package/lib/components/highlight/index.d.ts +6 -4
- package/lib/components/highlight/index.js +36 -5
- package/lib/components/highlight/index.js.map +1 -1
- package/lib/components/mini-map/index.d.ts +1 -1
- package/lib/components/mini-map/index.js +1 -1
- package/lib/components/selection-select/index.js +14 -6
- package/lib/components/selection-select/index.js.map +1 -1
- package/lib/dynamic-group/index.js +3 -4
- package/lib/dynamic-group/index.js.map +1 -1
- package/lib/dynamic-group/model.d.ts +3 -3
- package/lib/dynamic-group/model.js +12 -9
- package/lib/dynamic-group/model.js.map +1 -1
- package/lib/dynamic-group/node.js +19 -0
- package/lib/dynamic-group/node.js.map +1 -1
- package/lib/dynamic-group/utils.d.ts +5 -3
- package/lib/dynamic-group/utils.js +14 -7
- package/lib/dynamic-group/utils.js.map +1 -1
- package/lib/index.css +0 -63
- package/lib/index.d.ts +2 -0
- package/lib/index.js +3 -0
- package/lib/index.js.map +1 -1
- package/lib/style/index.css +0 -63
- package/lib/style/index.less +0 -73
- package/lib/style/raw.d.ts +1 -1
- package/lib/style/raw.js +1 -1
- package/lib/style/raw.js.map +1 -1
- package/lib/tools/label/LabelOverlay.js.map +1 -1
- package/lib/tools/label/index.d.ts +1 -0
- package/lib/tools/label/index.js +13 -3
- package/lib/tools/label/index.js.map +1 -1
- package/lib/tools/label/mediumEditor.d.ts +1 -0
- package/lib/tools/label/mediumEditor.js +1 -0
- package/lib/tools/label/mediumEditor.js.map +1 -1
- package/lib/tools/label/style.css +63 -0
- package/lib/tools/label/style.less +71 -0
- package/lib/tools/snapshot/index.d.ts +9 -9
- package/lib/tools/snapshot/index.js +15 -15
- package/lib/tools/snapshot/index.js.map +1 -1
- package/package.json +10 -4
- package/rollup.config.js +17 -1
- package/src/bpmn-adapter/index.ts +1 -1
- package/src/bpmn-elements-adapter/README.md +1 -3
- package/src/bpmn-elements-adapter/index.ts +1 -1
- package/src/components/highlight/index.ts +35 -6
- package/src/components/mini-map/index.ts +6 -6
- package/src/components/selection-select/index.ts +14 -6
- package/src/dynamic-group/index.ts +3 -4
- package/src/dynamic-group/model.ts +17 -11
- package/src/dynamic-group/node.ts +25 -1
- package/src/dynamic-group/utils.ts +20 -7
- package/src/index.ts +5 -0
- package/src/style/index.less +0 -73
- package/src/style/raw.ts +1 -64
- package/src/tools/label/LabelOverlay.tsx +0 -1
- package/src/tools/label/index.ts +16 -7
- package/src/tools/label/mediumEditor.ts +1 -0
- package/src/tools/label/style.less +71 -0
- package/src/tools/snapshot/index.ts +19 -15
package/CHANGELOG.md
CHANGED
|
@@ -1,1916 +1,1475 @@
|
|
|
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
|
+
- Release 2.0.1. Fix some issues on 2.0.0
|
|
8
|
+
- Updated dependencies
|
|
9
|
+
- @logicflow/core@2.0.1
|
|
10
|
+
- 修复初始化时 DynamicGroup 插件折叠展开报错的问题 #1767
|
|
11
|
+
- 修复 RectNodeModel 初始化时设置 width、height、radius 为 0 时无效的 bug
|
|
12
|
+
- Rename: resizeFunction -> throttleResize 函数命名优化
|
|
13
|
+
- 修复 isRestrict 开启后子节点仍能拖拽出分组区域的 bug
|
|
14
|
+
- 优化分组旋转时,子节点的旋转逻辑,以分组中心为中心点旋转,并更新自身的 rotate 属性
|
|
15
|
+
- 增加 elementsModelMap 解决 Group 初始化时,children 中的元素未完成初始化导致 model 为空的bug
|
|
16
|
+
- Rename: outcomingEdgeList,getAnchorOutcomingEdge,outcoming -> outgoing #1449
|
|
17
|
+
- 修复画布加载完后新增节点时Label不展示问题 #1759
|
|
18
|
+
- 重新修改样式打包配置,用于修复引入插件包后起服务报错问题 #1760
|
|
19
|
+
- 修复画布切换后页面宽高变化时持续出现警告问题 #1756
|
|
20
|
+
- 统一数据类型, 修复textVal为数字时报错问题 #1612
|
|
21
|
+
- 修复节点id切换后某一次更新边拿不到NodeId问题 #864
|
|
22
|
+
|
|
23
|
+
## 2.0.0
|
|
24
|
+
|
|
25
|
+
### Major Changes: Release 2.0 New Version 🎉🎉🎉🎉
|
|
26
|
+
|
|
27
|
+
#### refactor: 重构 LogicFlow 项目结构,升级打包工具,使用 pnpm 做包管理工具
|
|
28
|
+
|
|
29
|
+
- rename index.tsx -> index.ts, update dependencies and declare module mobx-preact
|
|
30
|
+
- 配置 husky pre-commit
|
|
31
|
+
- 完善 LogicFlow.tsx 主文件类型定义
|
|
32
|
+
- update .gitignore
|
|
33
|
+
- git rm -r --cached sites/docs/.dumi/tmp
|
|
34
|
+
- add index.less
|
|
35
|
+
- 解决项目中 core 包 TypeScript 类型错误导致打包失败的问题
|
|
36
|
+
|
|
37
|
+
- 项目代码重构,包括 examples、extension 及 core 包
|
|
38
|
+
|
|
39
|
+
- remove react-umi-app demo
|
|
40
|
+
- rename lf-engine-browser -> engine-browser-examples
|
|
41
|
+
- rename lf-engine-node -> engine-node-examples
|
|
42
|
+
- extension 包中修改文件夹名大小写未生效,恢复成 Control 和 Node 文件夹,后续再处理
|
|
43
|
+
- add feature-examples DEMO 项目,用于汇总所有官方 demo,后续再 docs 中使用
|
|
44
|
+
- 完成 feature-examples 中 demo 的改造,增加 graph 页面
|
|
45
|
+
- 优化 DndPanel 的demo
|
|
46
|
+
- 开发 feature-examples 中 BPMN 插件 demo
|
|
47
|
+
- feature-examples 中增加 BPMN demo
|
|
48
|
+
- engine-browser-examples 中增加 graph demo,方便后续在 vite 环境下调试包功能,测试 umi 与 vite 是否一致
|
|
49
|
+
- engine-browser-examples bpmn demo 更新
|
|
50
|
+
- 新增 next-app 用来测试服务端渲染项目中 window is not defined 的问题
|
|
51
|
+
- 修复 vue3-memory-leak 项目中引入 vue 文件报错的问题
|
|
52
|
+
- 新增 vue3-app 用于测试 vue-node-registry,后续使用该项目开发 vue 组件或 demo
|
|
53
|
+
- feature-examples 类型完善
|
|
54
|
+
- 修复 engine-browser-examples 中类型错误问题
|
|
55
|
+
- 优化 engine-browser-examples 样式
|
|
56
|
+
- 补充自定义折线、圆角折线、节点选择示例 (#1680)
|
|
57
|
+
- 添加insert-node-in-polyline,rules两个插件的demo
|
|
58
|
+
- 增加测试vue3性能demo
|
|
59
|
+
- 增加rect-label-node插件示例
|
|
60
|
+
- 增加高亮插件说明文档 - 优化高亮插件示例
|
|
7
61
|
|
|
62
|
+
- 文件夹重命名,将大驼峰命名修改为 小写+短横线
|
|
8
63
|
|
|
9
|
-
|
|
64
|
+
- DefaultAnimation.ts -> defaultAnimation.ts
|
|
65
|
+
- DefatultTheme.ts -> defaultTheme.ts
|
|
66
|
+
- history/History.ts -> history/index.ts
|
|
67
|
+
- 并更新项目中各个文件的引用地址
|
|
10
68
|
|
|
11
|
-
|
|
12
|
-
* **extension:** trigger updateEdgePointByAnchors() after moveTo([#1384](https://github.com/didi/LogicFlow/issues/1384)) ([65e7027](https://github.com/didi/LogicFlow/commit/65e7027170583a3f0a6ce07bc06d15a230e6e8fb))
|
|
13
|
-
* optimize the experience of resizeNode ([135a8e3](https://github.com/didi/LogicFlow/commit/135a8e3385799c3c9c98634ad0fecb0532377001))
|
|
14
|
-
* 修复选区插件无法触发鼠标事件的问题,同时兼容 Ctrl + 滚轮事件 ([129f101](https://github.com/didi/LogicFlow/commit/129f101faf2c3aae3d25917eb68ccabadbb93ec3))
|
|
15
|
-
* 更新readme logo & publish 1.2.25 ([4da3db7](https://github.com/didi/LogicFlow/commit/4da3db7aebc892e685269340ca38a0b9a4f68c56))
|
|
69
|
+
- 解决 git config core.ignorecase 为 true 导致修改文件夹名大小写不生效的问题
|
|
16
70
|
|
|
71
|
+
- 重命名 BPMN -> bpmn; Control -> control
|
|
72
|
+
- 命名规范:文件夹名小写(name or name1-name2-name3);.js or .ts 小驼峰;.tsx or .jsx 大驼峰
|
|
73
|
+
- 新增 Vue3-memory-leak demo 用于定位内存泄漏的问题,后续基于此 demo 增加 LogicFlow destroy 的方法
|
|
74
|
+
- 优化 properties 类型定义为 Record<string, any>,避免 unknow 引起的问题,后续再优化
|
|
75
|
+
- 解决 graph demo 中发现 BezierEdge 初始化 path 为空的问题,可以看 -> BezierEdgeModel.ts 的改动
|
|
17
76
|
|
|
77
|
+
- 通过 git rm --cached Xxxx 移除修改大小写的文件夹内容
|
|
18
78
|
|
|
79
|
+
- 完善 README.md 以及 CONTRIBUTING 相关文档,解决 eslint 问题
|
|
19
80
|
|
|
81
|
+
- 完善开源共享引导文档:README 以及 CONTRIBUTING
|
|
82
|
+
- 项目根目录运行 pnpm run lint:ts,解决项目中 eslint 错误及 warning
|
|
20
83
|
|
|
21
|
-
|
|
84
|
+
- Update update_contributors.yml
|
|
22
85
|
|
|
86
|
+
- update package.json, add changesets to generate CHANGELOG
|
|
23
87
|
|
|
24
|
-
|
|
88
|
+
- .gitnore add .umi/ and delete .npmrc file
|
|
89
|
+
- dependencies 中 'workspace:latest' -> 'workspace:\*' 解决 changeset 中生成 CHANGELOG 报错的问题
|
|
90
|
+
- update build-docs shell
|
|
91
|
+
- add @changesets/cli and related scripts
|
|
25
92
|
|
|
26
|
-
|
|
27
|
-
* **extension:** trigger updateEdgePointByAnchors() after moveTo([#1384](https://github.com/didi/LogicFlow/issues/1384)) ([65e7027](https://github.com/didi/LogicFlow/commit/65e7027170583a3f0a6ce07bc06d15a230e6e8fb))
|
|
28
|
-
* 修复选区插件无法触发鼠标事件的问题,同时兼容 Ctrl + 滚轮事件 ([129f101](https://github.com/didi/LogicFlow/commit/129f101faf2c3aae3d25917eb68ccabadbb93ec3))
|
|
29
|
-
* 更新readme logo & publish 1.2.25 ([4da3db7](https://github.com/didi/LogicFlow/commit/4da3db7aebc892e685269340ca38a0b9a4f68c56))
|
|
93
|
+
- 更新 rollup config 并增加 umd 包使用 demo 文件
|
|
30
94
|
|
|
95
|
+
- npm 包 dependencies 中新增 lodash-es 依赖,解决引入项目中报错的问题
|
|
31
96
|
|
|
97
|
+
- 开发节点文本换行等体验优化的功能
|
|
98
|
+
- 解决 examples 中报错的问题
|
|
32
99
|
|
|
100
|
+
- 移除文档中 lodash-es 依赖,移除无用 console
|
|
101
|
+
- 优化代码注释歧义的问题
|
|
102
|
+
- 更新 turbo 版本并解决 extension 打包 core 依赖报错的问题
|
|
33
103
|
|
|
104
|
+
#### Core & Extension
|
|
34
105
|
|
|
35
|
-
|
|
106
|
+
- core 包中 'preact' -> 'preact/compat' 解决 svg 属性问题
|
|
107
|
+
- 完成 core 包 roolup 打包及core 包中类型定义更新
|
|
108
|
+
- extension 包中代码重构,解决 TypeScript 类型定义的问题,完成打包改造
|
|
109
|
+
- core 包中类型定义完善,解决在 extension 包重构过程中遇到的 Core 包问题
|
|
110
|
+
- 优化 core 包中类型定义,增加 GraphData 类型,区别于 GraphConfigData
|
|
111
|
+
- 优化 bpmn 插件的导出内容
|
|
112
|
+
- 修复 GraphModel 中 getAreaElement 方法的 bug 及一些其他类型定义的优化
|
|
36
113
|
|
|
37
|
-
|
|
114
|
+
- 修复 GroupNode 中 getNodeStyle 解构后调用,BaseNodeModel 中 getNodeStyle 方法 this 为空的问题
|
|
38
115
|
|
|
116
|
+
- 确认解构后赋值和直接 this.props.model.getNodeStyle() 方法调用的区别 -> this 指向的问题
|
|
117
|
+
- LogicFlow Examples 中新增 Group 插件
|
|
39
118
|
|
|
119
|
+
- 主要修复 TextEditTool 无效的 bug,后注原因
|
|
40
120
|
|
|
121
|
+
- TextEditTool 组件更新时,原先的 graphModel 和 LogicFlow props 不会触发组件的更新,通过将 textEditElement 传入触发组件更新
|
|
122
|
+
- 移除代码中无用的 console
|
|
123
|
+
- 更新依赖 @babel/plugin-proposal-class-properties -> @babel/plugin-transform-class-properties
|
|
124
|
+
- EventArgs 相关类型由 unknown 改为 any
|
|
41
125
|
|
|
126
|
+
- 框选插件重构与示例内容丰富
|
|
42
127
|
|
|
43
|
-
|
|
128
|
+
- 完善部分类型定义
|
|
129
|
+
- 框选插件示例内容丰富
|
|
130
|
+
- 修复使用框选插件后,网页滚轮事件被阻塞的问题
|
|
131
|
+
- 修复缩放后框选元素与鼠标位移不一致的问题(#1102)
|
|
132
|
+
- 增加新事件 selection:selected-area,返回框选范围(#1104)
|
|
133
|
+
- 优化框选工具在缩放时的边距与外边框宽度计算
|
|
44
134
|
|
|
135
|
+
- feat: 小地图插件重构与相关示例增加
|
|
45
136
|
|
|
46
|
-
|
|
137
|
+
- 优化画布移动时,小地图的更新策略,减少性能消耗
|
|
138
|
+
- 小地图显示区域计算逻辑修改,现在由画布元素与视口共同决定
|
|
139
|
+
- 优化小地图预览视窗的拖拽交互
|
|
140
|
+
- 修复点击小地图预览视窗会触发不可预期的画布移动的问题
|
|
141
|
+
- 新增小地图插件的示例
|
|
47
142
|
|
|
48
|
-
|
|
143
|
+
- selection-select 插件中 disabled 默认设置为 true
|
|
49
144
|
|
|
145
|
+
- 用于解决当用于 stopMoveGraph 设置为 true 且启用了 selection-select 插件时,插件状态默认开启的 bug
|
|
146
|
+
- 更新 LICENSE 文件,格式化内容
|
|
147
|
+
- 其它 demo 的一些样式更新
|
|
50
148
|
|
|
149
|
+
- 移除 extension 包中 examples 文件夹,已转移到 examples/feature-examples 项目中
|
|
150
|
+
- 完善core包与group插件的类型定义
|
|
151
|
+
- 完善与修正core包的部分类型定义
|
|
51
152
|
|
|
153
|
+
- minimap插件功能完善与相关示例丰富
|
|
52
154
|
|
|
155
|
+
- 小地图中可选择是否渲染连线,支持初始化时设置或通过`setShowEdge`方法更新设置
|
|
156
|
+
- 更完善的代码注释与类型定义
|
|
157
|
+
- 现在,小地图默认将位于画布的右下角,保留`show`方法设置画布位置的功能,新增`updatePosition`方法用于更新小地图相对画布的决定定位
|
|
158
|
+
- 在小地图等示例中增加了新增功能的演示(连线可选渲染与位置调整)
|
|
53
159
|
|
|
54
|
-
|
|
160
|
+
- 完善 BaseEdge 和 BaseNode 泛型类型,内置节点 props 定义更新
|
|
55
161
|
|
|
162
|
+
- 重构 LogicFlow.tsx 以及 GraphMode 代码,代码按功能分区管理
|
|
56
163
|
|
|
57
|
-
|
|
164
|
+
- Fix typo -> fakerNode 重命名为 fakeNode,意指虚拟节点
|
|
165
|
+
- 主要重构 LogicFlow.tsx 中代码: 将代码按 Register,Nodes,Edges,Element,Text,EditConfig,Graph,EventCenter,History 等分模块管理
|
|
166
|
+
- 重构 LogicFlow 中 getPointByClient 方法,通过重载,支持多种类型参数
|
|
167
|
+
- 重构 LogicFlow 中 focusOn 方法,通过重载,支持多种传参方式
|
|
58
168
|
|
|
59
|
-
|
|
169
|
+
- core包类型定义完善
|
|
60
170
|
|
|
171
|
+
- 小地图插件新增功能与示例丰富
|
|
61
172
|
|
|
173
|
+
- 小地图插件现在支持设置关闭小地图时的回调,用于外部更新小地图的显示状态(#829)
|
|
174
|
+
- 小地图插件示例增加与新增功能相关的内容
|
|
62
175
|
|
|
176
|
+
- extension包的类型定义修复
|
|
63
177
|
|
|
178
|
+
- 修复 349252c 提交后,extension 包中的类型错误问题
|
|
179
|
+
- 为 BaseNode 的范型设置默认类型
|
|
64
180
|
|
|
65
|
-
|
|
181
|
+
- 修复小地图的预览视窗无法拖拽的问题
|
|
66
182
|
|
|
183
|
+
- 小地图设置回调逻辑调整为抛出事件
|
|
67
184
|
|
|
68
|
-
|
|
185
|
+
- 删除原有设置关闭时回调的逻辑
|
|
186
|
+
- 现在小地图插件在关闭时会抛出事件 `miniMap:close`,可以通过 `lf.on()` 监听该事件来设置小地图关闭时的回调
|
|
69
187
|
|
|
70
|
-
|
|
188
|
+
- 事件系统的类型定义完善
|
|
71
189
|
|
|
190
|
+
- 将节点 Resize 功能内置
|
|
72
191
|
|
|
192
|
+
- 新增 Control 组件,用于控制节点放大缩小,并在 BaseNodeModel 中增加 resize 方法
|
|
193
|
+
- 更新 GitHub Actions 任务名
|
|
194
|
+
- 重命名 allowRotation -> allowRotate;后续增加 allowResize 选项,保持命名一致性
|
|
195
|
+
- circle/diamond/ellipse/polygon 等节点增加 resize 能力
|
|
196
|
+
- 节点 model 中增加初始化时 properties 的保存,调试多边形节点 outline 不符合预期的问题
|
|
73
197
|
|
|
198
|
+
- 解决resize 结束后节点重新定位的问题
|
|
199
|
+
- Control.tsx 中 new StepDrag 参数中 step 传入 graphModel.gridSize,保证调整时拖拽以 gridSize 为步长移动
|
|
74
200
|
|
|
201
|
+
- 完成自定义节点内置功能的开发
|
|
75
202
|
|
|
76
|
-
|
|
203
|
+
- 移除目前系统中无用的 defaultTheme 和 defaultAnimation 文件
|
|
204
|
+
- 通过 points 置原点并基于设定的 width 和 height 缩放的方法,解决多边形形状与边框定位异常的问题
|
|
77
205
|
|
|
206
|
+
- 网格组件重构
|
|
207
|
+
- 修正原有网格存在偏移的问题
|
|
208
|
+
- 修正网格配置选项的类型声明
|
|
209
|
+
- 由 Grid 类自行实现网格配置选项的初始化
|
|
210
|
+
- 将Grid相关的类型声明与静态成员与方法移至命名空间
|
|
211
|
+
- 修改点状网格中点的最大半径计算逻辑,并增加相关注释
|
|
78
212
|
|
|
79
|
-
|
|
213
|
+
- 修复 HtmlREsize 节点 outlineStyle fill 默认为 黑色的 bug
|
|
214
|
+
- 统一 NodeResize 中 getResizeOutlineStyle fill 和 stroke 的返回值
|
|
215
|
+
- 更新插件相关类型定义,完善插件相关方法 use/installPlugins/installPlugin 的功能
|
|
80
216
|
|
|
81
|
-
|
|
217
|
+
- 解决插件中一些类型问题
|
|
218
|
+
- 测试并修复 LogicFlow.use api 的功能 bug
|
|
219
|
+
- 调整安装插件的顺序,如有重名默认优先使用 plugins 中定义的插件
|
|
82
220
|
|
|
221
|
+
- 重构项目中 basic shape 组件,修复功能 bug、完善类型定义
|
|
83
222
|
|
|
223
|
+
- rename formateAnchorConnectValidateData - formatAnchorConnectValidateData
|
|
224
|
+
- rename setHoverON -> setHoverOn, setHoverOFF -> setHoverOff
|
|
225
|
+
- 修复 Text 文本节点,文本不在节点中间的显示 bug,通过设置 dominantBaseline: central 解决
|
|
226
|
+
- TextNode getBackground 中 rectAttr 设置 y: y-1, 移除该设置
|
|
84
227
|
|
|
228
|
+
- 新增 common 文件夹用于存放通用方法
|
|
85
229
|
|
|
230
|
+
- 增加用户设置画布 100% ,在调整视窗时,画布大小同步更新的逻辑,优化体验
|
|
86
231
|
|
|
87
|
-
|
|
232
|
+
- 优化初始化时设置画布大小的逻辑
|
|
233
|
+
- 优化 DEMO 代码,解决设置 theme 未生效的 bug( 代码问题。在初始化时 style 覆盖了 defaultConfig 中的 style)
|
|
88
234
|
|
|
235
|
+
- 支持导出节点中的网络图片
|
|
89
236
|
|
|
90
|
-
|
|
237
|
+
- 修复线的 menu 无法正常显示的 bug (#1679)
|
|
91
238
|
|
|
92
|
-
|
|
93
|
-
* prevent node without anchors using InsertNodeInPolyline([#1077](https://github.com/didi/LogicFlow/issues/1077)) ([6e10d3a](https://github.com/didi/LogicFlow/commit/6e10d3ad6e5b26daa6cad865bbca0eb326dfd54b))
|
|
239
|
+
- 修复初始化时 edgeConfig 中 type 未传值场景下,未使用 graphModel.edgeType(默认边类型) 初始化边的 bug
|
|
94
240
|
|
|
241
|
+
- 优化 snapshot 交互体验,内容居中且开启拖拽画布,调整菜单顺序
|
|
242
|
+
- 完善snapshot使用方式和修复跨域报错
|
|
243
|
+
- 修复画布拖动阻止滚动 (#1700)
|
|
95
244
|
|
|
245
|
+
- 新增Label文本模式, 支持配置多文本和修改文本朝向
|
|
96
246
|
|
|
247
|
+
- graphModel 中增加 textMode 属性,用于标识当前使用什么文本模式
|
|
248
|
+
- BaseNodeMode and BaseEdgeModel 以及 graphModel 中增加 更新 textMode 的方法
|
|
249
|
+
- 更新 tool 中 props 名称,logicflow -> lf,便于理解
|
|
250
|
+
- 增加 next-label demo
|
|
251
|
+
- 重构 editConfigModel.ts,完善配置项优先级从 textEdit(全局) -> nodeTextEdit/edgeTextEdit(分类) -> 元素本身 editable
|
|
252
|
+
- 项目中后续可以移除 useLabelText 的判断逻辑及相关的事件触发
|
|
253
|
+
- 配置 tool 名称通过 短横线 隔开的方式命名, eg: text-edit-tool, multiple-select-tool
|
|
254
|
+
- tool 增加 disableTool 和 enableTool 的方法,用于互斥 Tool 注册时,禁用掉另一个
|
|
255
|
+
- 优化 mediumEditor 的配置项及初始化流程。移除无用配置项,增加默认主题样式
|
|
256
|
+
- 开发 NextLabel 插件,取得阶段性胜利
|
|
257
|
+
- 移除 BaseNodeModel 中 useLabelText 相关逻辑
|
|
258
|
+
- node:mousemove 事件中抛出 deltaX、deltaY 数据
|
|
259
|
+
- 调整 Control 的范围大小,解决调整大小时,鼠标离开区域后切换回默认鼠标样式,体验不好
|
|
260
|
+
- 调整 NextLabel 代码逻辑,LabelModel 只做数据的存储,不做更新。用于传递 props。在 Label 中触发
|
|
261
|
+
- element 数据更新,LabelOverlay 渲染,Label 更新
|
|
262
|
+
- 增加 API,updateTextMode 可切换 textMode 并更新页面
|
|
97
263
|
|
|
264
|
+
- 增加双击节点 or 边增加 Label 的功能
|
|
98
265
|
|
|
99
|
-
|
|
266
|
+
- 可传入设置样式 设置 label
|
|
267
|
+
- 富文本编辑内容无法同步到 content 的问题
|
|
268
|
+
- 如果 properties 中没有 \_label 配置项时,MediumEditor 初始化有点问题,选中文本无法显示工具栏
|
|
269
|
+
- 更新完Label content 后,Label 拖拽无效的问题(isDragging state 更新时机问题)
|
|
100
270
|
|
|
271
|
+
- 完成 Label 溢出模式配置能力开发
|
|
272
|
+
- 将 PluginsOptions 中插件对应的属性值 当 props 传入到插件的实例化中
|
|
273
|
+
- label 的 textOverflowMode 增加 'ellipsis' | 'wrap' | 'clip' | 'nowrap' | 'default' 配置项
|
|
274
|
+
- 更新 Label dragging 时,兼容画布存在缩放的情况
|
|
275
|
+
- 完成 Label 在节点旋转时,保持位置不变,且 Label 自身跟阶段旋转角度保持一致
|
|
276
|
+
- 完成节点缩放时,Label 保持相对位置不变
|
|
277
|
+
- 增加 labelWidth 配置,可以统一项目中 labelWidth 的宽度,也可做单独个性化配置
|
|
278
|
+
- 优化 node:resize 以及 node:rotate 事件抛出的数据
|
|
279
|
+
- 移除或注释项目中无用的 console
|
|
101
280
|
|
|
102
|
-
|
|
281
|
+
- 移植 Label 在边上定位 的相关代码,在调整节点更新边时,保持 Label 位置
|
|
103
282
|
|
|
104
|
-
|
|
105
|
-
|
|
283
|
+
- 根据 PR 整理代码中 Text 和 Label 相关逻辑,移除无效代码
|
|
284
|
+
- next-label 中增加 Edge 计算相关的逻辑
|
|
106
285
|
|
|
286
|
+
- 同步节点的 zIndex 到 Label 上,过滤掉 text 为空时的 Label
|
|
287
|
+
- 修复 rangy.createClassApplier is not a function 的错误
|
|
288
|
+
- 修复 isMultiple 对于双击节点或边增加 label 无效的 bug
|
|
107
289
|
|
|
290
|
+
- 调整core包tool文件夹
|
|
108
291
|
|
|
292
|
+
- 将 snapline 移出 tool 文件夹,因为它本身非 tool,放这里面会有误导
|
|
293
|
+
- 优化 tool 文件夹,将 tool 内容移至 index 中,并更新项目中相关导入
|
|
109
294
|
|
|
295
|
+
- 新增 adjustEdgeStart 和 adjustEdgeEnd,可单独控制调整起始点或结束点
|
|
110
296
|
|
|
111
|
-
|
|
297
|
+
- 支持cmd - 鼠标滚动操作放大缩小画布
|
|
298
|
+
- 节点文本支样式持通过properties传入textStylele配置
|
|
112
299
|
|
|
300
|
+
- 重构 core 包中 properties 类型定义,通过泛型的方式约束其类型
|
|
113
301
|
|
|
114
|
-
|
|
302
|
+
- 修复 node-selection 中 properties 未定义类型导致的报错
|
|
115
303
|
|
|
116
|
-
|
|
117
|
-
* **extension:** bug of menu initialization ([#1359](https://github.com/didi/LogicFlow/issues/1359)) ([fabd8d7](https://github.com/didi/LogicFlow/commit/fabd8d74cf998e6118499d3ddc49841ad5411480))
|
|
304
|
+
- 升级 group 插件为 dynamic-group 插件
|
|
118
305
|
|
|
306
|
+
- 完成 dynamic-group 插件 isCollased 初始化及groupAddable 状态即时更新
|
|
307
|
+
- 优化 editConfigModel 中属性的初始化逻辑及其初始化值调整
|
|
308
|
+
- 调小 ResizeControl 的范围 30 -> 15,原因是会盖住 Group 折叠的小按钮
|
|
309
|
+
- 优化允许文本拖动的逻辑判断 -> nodeTextDraggable && draggable 才可以允许拖动
|
|
119
310
|
|
|
120
|
-
|
|
311
|
+
- 开发节点缩放旋转时,同步缩放 or 旋转节点内部元素功能
|
|
121
312
|
|
|
122
|
-
|
|
123
|
-
|
|
313
|
+
- 完善 node:resize 及 node:rotate 事件抛出的数据
|
|
314
|
+
- 将 Control 中 resize 相关的方法提取到 utils/resize.ts 中,方便在插件中直接调用
|
|
315
|
+
- 在 group 组件中监听 node:resize 和 node:rotate 事件,完成对子元素的更新
|
|
124
316
|
|
|
317
|
+
- 测试 SelectionSelct 与 DynamicGroup 不兼容的问题并修复
|
|
125
318
|
|
|
319
|
+
- 边支持传入自定义样式
|
|
320
|
+
- 优化高亮插件功能
|
|
321
|
+
- **Breaking Change**调整 pluginOptions 只传入插件对应的 options 数据(之前是全量传入)
|
|
126
322
|
|
|
323
|
+
### Patch Changes
|
|
127
324
|
|
|
325
|
+
- Updated dependencies
|
|
326
|
+
- @logicflow/core@2.0.0
|
|
128
327
|
|
|
129
|
-
|
|
328
|
+
All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
|
|
130
329
|
|
|
330
|
+
## [1.2.28](https://github.com/didi/LogicFlow/compare/@logicflow/extension@1.2.23...@logicflow/extension@1.2.28) (2024-07-29)
|
|
131
331
|
|
|
132
332
|
### Bug Fixes
|
|
133
333
|
|
|
134
|
-
|
|
334
|
+
- **extension:** perform topGroupZIndex calibration when add node([#1535](https://github.com/didi/LogicFlow/issues/1535)) ([2d6e41c](https://github.com/didi/LogicFlow/commit/2d6e41c3e25df2a95887980652241963710e8e11))
|
|
335
|
+
- **extension:** trigger updateEdgePointByAnchors() after moveTo([#1384](https://github.com/didi/LogicFlow/issues/1384)) ([65e7027](https://github.com/didi/LogicFlow/commit/65e7027170583a3f0a6ce07bc06d15a230e6e8fb))
|
|
336
|
+
- optimize the experience of resizeNode ([135a8e3](https://github.com/didi/LogicFlow/commit/135a8e3385799c3c9c98634ad0fecb0532377001))
|
|
337
|
+
- 修复使用框选插件会阻塞页面滚轮事件问题 ([5266822](https://github.com/didi/LogicFlow/commit/52668221b1570606efa6caace2f6f7ae4d2bf935))
|
|
338
|
+
- 修复选区插件无法触发鼠标事件的问题,同时兼容 Ctrl + 滚轮事件 ([129f101](https://github.com/didi/LogicFlow/commit/129f101faf2c3aae3d25917eb68ccabadbb93ec3))
|
|
339
|
+
- 更新readme logo & publish 1.2.25 ([4da3db7](https://github.com/didi/LogicFlow/commit/4da3db7aebc892e685269340ca38a0b9a4f68c56))
|
|
340
|
+
|
|
341
|
+
## [1.2.27](https://github.com/didi/LogicFlow/compare/@logicflow/extension@1.2.23...@logicflow/extension@1.2.27) (2024-05-06)
|
|
135
342
|
|
|
343
|
+
### Bug Fixes
|
|
136
344
|
|
|
137
|
-
|
|
345
|
+
- **extension:** perform topGroupZIndex calibration when add node([#1535](https://github.com/didi/LogicFlow/issues/1535)) ([2d6e41c](https://github.com/didi/LogicFlow/commit/2d6e41c3e25df2a95887980652241963710e8e11))
|
|
346
|
+
- **extension:** trigger updateEdgePointByAnchors() after moveTo([#1384](https://github.com/didi/LogicFlow/issues/1384)) ([65e7027](https://github.com/didi/LogicFlow/commit/65e7027170583a3f0a6ce07bc06d15a230e6e8fb))
|
|
347
|
+
- optimize the experience of resizeNode ([135a8e3](https://github.com/didi/LogicFlow/commit/135a8e3385799c3c9c98634ad0fecb0532377001))
|
|
348
|
+
- 修复选区插件无法触发鼠标事件的问题,同时兼容 Ctrl + 滚轮事件 ([129f101](https://github.com/didi/LogicFlow/commit/129f101faf2c3aae3d25917eb68ccabadbb93ec3))
|
|
349
|
+
- 更新readme logo & publish 1.2.25 ([4da3db7](https://github.com/didi/LogicFlow/commit/4da3db7aebc892e685269340ca38a0b9a4f68c56))
|
|
138
350
|
|
|
139
|
-
|
|
351
|
+
## [1.2.26](https://github.com/didi/LogicFlow/compare/@logicflow/extension@1.2.23...@logicflow/extension@1.2.26) (2024-04-10)
|
|
140
352
|
|
|
353
|
+
### Bug Fixes
|
|
141
354
|
|
|
355
|
+
- **extension:** perform topGroupZIndex calibration when add node([#1535](https://github.com/didi/LogicFlow/issues/1535)) ([2d6e41c](https://github.com/didi/LogicFlow/commit/2d6e41c3e25df2a95887980652241963710e8e11))
|
|
356
|
+
- **extension:** trigger updateEdgePointByAnchors() after moveTo([#1384](https://github.com/didi/LogicFlow/issues/1384)) ([65e7027](https://github.com/didi/LogicFlow/commit/65e7027170583a3f0a6ce07bc06d15a230e6e8fb))
|
|
357
|
+
- 修复选区插件无法触发鼠标事件的问题,同时兼容 Ctrl + 滚轮事件 ([129f101](https://github.com/didi/LogicFlow/commit/129f101faf2c3aae3d25917eb68ccabadbb93ec3))
|
|
358
|
+
- 更新readme logo & publish 1.2.25 ([4da3db7](https://github.com/didi/LogicFlow/commit/4da3db7aebc892e685269340ca38a0b9a4f68c56))
|
|
142
359
|
|
|
360
|
+
## [1.2.25](https://github.com/didi/LogicFlow/compare/@logicflow/extension@1.2.24...@logicflow/extension@1.2.25) (2024-04-03)
|
|
143
361
|
|
|
362
|
+
**Note:** Version bump only for package @logicflow/extension
|
|
144
363
|
|
|
145
|
-
## [1.2.
|
|
364
|
+
## [1.2.24](https://github.com/didi/LogicFlow/compare/@logicflow/extension@1.2.23...@logicflow/extension@1.2.24) (2024-04-03)
|
|
146
365
|
|
|
366
|
+
### Bug Fixes
|
|
147
367
|
|
|
148
|
-
|
|
368
|
+
- 修复选区插件无法触发鼠标事件的问题,同时兼容 Ctrl + 滚轮事件 ([129f101](https://github.com/didi/LogicFlow/commit/129f101faf2c3aae3d25917eb68ccabadbb93ec3))
|
|
149
369
|
|
|
150
|
-
|
|
151
|
-
* **extension:** remove lf-rotate when using snapshot to export canvas ([8aa6053](https://github.com/didi/LogicFlow/commit/8aa60532b1ab7d1f5b52305e7e87aaff3774252e))
|
|
370
|
+
## [1.2.23](https://github.com/didi/LogicFlow/compare/@logicflow/extension@1.2.22...@logicflow/extension@1.2.23) (2024-03-20)
|
|
152
371
|
|
|
372
|
+
### Bug Fixes
|
|
153
373
|
|
|
374
|
+
- 修复多实例时非首个实例导出不正确问题 ([27148c0](https://github.com/didi/LogicFlow/commit/27148c0e9c9db64daa09b279cb2e3b1578fccc93))
|
|
154
375
|
|
|
376
|
+
## [1.2.22](https://github.com/didi/LogicFlow/compare/@logicflow/extension@1.2.20...@logicflow/extension@1.2.22) (2024-02-05)
|
|
155
377
|
|
|
378
|
+
### Features
|
|
156
379
|
|
|
157
|
-
|
|
380
|
+
- update @logicflow/core @logicflow/extension version to 1.2.21 ([55b865b](https://github.com/didi/LogicFlow/commit/55b865b381354a75b04d339fec2f10b34cd12738))
|
|
158
381
|
|
|
159
|
-
|
|
382
|
+
## [1.2.20](https://github.com/didi/LogicFlow/compare/@logicflow/extension@1.2.19...@logicflow/extension@1.2.20) (2024-02-05)
|
|
160
383
|
|
|
384
|
+
### Bug Fixes
|
|
161
385
|
|
|
386
|
+
- **extension:** 修复task判定附加边界事件时的坐标判定问题 ([5ffdffd](https://github.com/didi/LogicFlow/commit/5ffdffd37e70c076bae9a52f0fc685375e64022e))
|
|
162
387
|
|
|
388
|
+
## [1.2.19](https://github.com/didi/LogicFlow/compare/@logicflow/extension@1.2.18...@logicflow/extension@1.2.19) (2023-11-22)
|
|
163
389
|
|
|
390
|
+
### Bug Fixes
|
|
164
391
|
|
|
165
|
-
|
|
392
|
+
- **extension:** 修复「小地图鼠标放上去会出现浮层展示」bug([#1419](https://github.com/didi/LogicFlow/issues/1419)) ([0a47b2d](https://github.com/didi/LogicFlow/commit/0a47b2d0ac833e4fe9b207a43ba02d22df72d07d))
|
|
393
|
+
- prevent node without anchors using InsertNodeInPolyline([#1077](https://github.com/didi/LogicFlow/issues/1077)) ([6e10d3a](https://github.com/didi/LogicFlow/commit/6e10d3ad6e5b26daa6cad865bbca0eb326dfd54b))
|
|
166
394
|
|
|
395
|
+
## [1.2.18](https://github.com/didi/LogicFlow/compare/@logicflow/extension@1.2.17...@logicflow/extension@1.2.18) (2023-10-25)
|
|
167
396
|
|
|
168
397
|
### Bug Fixes
|
|
169
398
|
|
|
170
|
-
|
|
171
|
-
|
|
399
|
+
- **extension:** optimize radius and variable name ([b0810b4](https://github.com/didi/LogicFlow/commit/b0810b47f3aaf1b1b1576861f46f687ca002d13e))
|
|
400
|
+
- **extension:** the outermost edges translate 0 when copy a group([#1379](https://github.com/didi/LogicFlow/issues/1379)) ([8368622](https://github.com/didi/LogicFlow/commit/836862282032838f65e8f66d4a70fa4acce5b466))
|
|
172
401
|
|
|
402
|
+
## [1.2.17](https://github.com/didi/LogicFlow/compare/@logicflow/extension@1.2.16...@logicflow/extension@1.2.17) (2023-10-19)
|
|
173
403
|
|
|
404
|
+
### Bug Fixes
|
|
174
405
|
|
|
406
|
+
- add edge copying when copying a group([#1346](https://github.com/didi/LogicFlow/issues/1346)) ([f53ec7f](https://github.com/didi/LogicFlow/commit/f53ec7f8eea1b9e1357e3dc21d509695e857bb3b))
|
|
407
|
+
- **extension:** bug of menu initialization ([#1359](https://github.com/didi/LogicFlow/issues/1359)) ([fabd8d7](https://github.com/didi/LogicFlow/commit/fabd8d74cf998e6118499d3ddc49841ad5411480))
|
|
175
408
|
|
|
409
|
+
### Features
|
|
176
410
|
|
|
177
|
-
|
|
411
|
+
- **extension:** add test for curved-edge ([c2a92dc](https://github.com/didi/LogicFlow/commit/c2a92dc1b7eba19fc3e2a68d91c17da7ba5759e4))
|
|
412
|
+
- **extension:** override addElements to support group-node copy([#1346](https://github.com/didi/LogicFlow/issues/1346)) ([e9d0139](https://github.com/didi/LogicFlow/commit/e9d0139da4446ec4451ba7c2516a1e440a951fec))
|
|
178
413
|
|
|
414
|
+
## [1.2.16](https://github.com/didi/LogicFlow/compare/@logicflow/extension@1.2.15...@logicflow/extension@1.2.16) (2023-09-21)
|
|
179
415
|
|
|
180
416
|
### Bug Fixes
|
|
181
417
|
|
|
182
|
-
|
|
183
|
-
* **extension:** ensure dpr>=1 when exporting images([#1222](https://github.com/didi/LogicFlow/issues/1222)) ([ac3a774](https://github.com/didi/LogicFlow/commit/ac3a7742a04f4b322c0b0505434a2f0324fa241b))
|
|
184
|
-
* **extension:** remove package ids from extension ([a3fb1a8](https://github.com/didi/LogicFlow/commit/a3fb1a8d2a1cf87c2c6ea34d28ebebf9a064afd1))
|
|
185
|
-
|
|
418
|
+
- **extension:** add group:remove-node and group:add-node event([#800](https://github.com/didi/LogicFlow/issues/800)) ([58b78a0](https://github.com/didi/LogicFlow/commit/58b78a06d07128d858ee9dfa54602e2a71e82e23))
|
|
186
419
|
|
|
187
420
|
### Features
|
|
188
421
|
|
|
189
|
-
|
|
422
|
+
- **core:** add draggable range for graph([#1337](https://github.com/didi/LogicFlow/issues/1337)) ([ecc59bc](https://github.com/didi/LogicFlow/commit/ecc59bccb07e23fbe11986d5b38f5a5e99f4b4f1))
|
|
190
423
|
|
|
424
|
+
## [1.2.15](https://github.com/didi/LogicFlow/compare/@logicflow/extension@1.2.14...@logicflow/extension@1.2.15) (2023-09-11)
|
|
191
425
|
|
|
426
|
+
### Features
|
|
192
427
|
|
|
428
|
+
- **core:** enable node rotation ([267ebc8](https://github.com/didi/LogicFlow/commit/267ebc8ff65f461c831fc631b89028ca98305858))
|
|
429
|
+
- **extension:** remove lf-rotate when using snapshot to export canvas ([8aa6053](https://github.com/didi/LogicFlow/commit/8aa60532b1ab7d1f5b52305e7e87aaff3774252e))
|
|
193
430
|
|
|
431
|
+
## [1.2.14](https://github.com/didi/LogicFlow/compare/@logicflow/extension@1.2.13...@logicflow/extension@1.2.14) (2023-09-08)
|
|
194
432
|
|
|
195
|
-
|
|
433
|
+
**Note:** Version bump only for package @logicflow/extension
|
|
196
434
|
|
|
435
|
+
## [1.2.13](https://github.com/didi/LogicFlow/compare/@logicflow/extension@1.2.12...@logicflow/extension@1.2.13) (2023-08-16)
|
|
197
436
|
|
|
198
437
|
### Bug Fixes
|
|
199
438
|
|
|
200
|
-
|
|
201
|
-
|
|
202
|
-
|
|
439
|
+
- **extension:** change the way export icons and bpmnUtils ([434b167](https://github.com/didi/LogicFlow/commit/434b1679427f1a3492c9ce5f3d7712c006953db2))
|
|
440
|
+
- **extension:** modify the content in bpmn-elements/README.md ([1b37586](https://github.com/didi/LogicFlow/commit/1b37586cb498feb6398b0a36410882d0c710cf3e))
|
|
441
|
+
|
|
442
|
+
## [1.2.12](https://github.com/didi/LogicFlow/compare/@logicflow/extension@1.2.11...@logicflow/extension@1.2.12) (2023-08-16)
|
|
443
|
+
|
|
444
|
+
### Bug Fixes
|
|
203
445
|
|
|
446
|
+
- **extension:** change default value of cancelActivity ([0fb5f35](https://github.com/didi/LogicFlow/commit/0fb5f35d4da2e133b6c15f55e7f5da15c4f5d68b))
|
|
447
|
+
- **extension:** ensure dpr>=1 when exporting images([#1222](https://github.com/didi/LogicFlow/issues/1222)) ([ac3a774](https://github.com/didi/LogicFlow/commit/ac3a7742a04f4b322c0b0505434a2f0324fa241b))
|
|
448
|
+
- **extension:** remove package ids from extension ([a3fb1a8](https://github.com/didi/LogicFlow/commit/a3fb1a8d2a1cf87c2c6ea34d28ebebf9a064afd1))
|
|
204
449
|
|
|
205
450
|
### Features
|
|
206
451
|
|
|
207
|
-
|
|
208
|
-
|
|
209
|
-
|
|
452
|
+
- optimize BPMNAdapter; add input props when register plugin ([4e9a90e](https://github.com/didi/LogicFlow/commit/4e9a90ea2abedee1456119edf0f0c9164e8cc116))
|
|
453
|
+
|
|
454
|
+
## [1.2.11](https://github.com/didi/LogicFlow/compare/@logicflow/extension@1.2.10...@logicflow/extension@1.2.11) (2023-08-10)
|
|
210
455
|
|
|
456
|
+
### Bug Fixes
|
|
211
457
|
|
|
458
|
+
- **extension:** fix types error when run build:types ([f3aaf91](https://github.com/didi/LogicFlow/commit/f3aaf9169df7039527f28cfe2c9be5eb575e8933))
|
|
459
|
+
- **extension:** nodeGroupMap was not set correctly when adding a group ([8874af5](https://github.com/didi/LogicFlow/commit/8874af562fd2dca17f285ef1c4cb91ba75626852))
|
|
460
|
+
- **extension:** wrong GroupNode import lead to the failed deployment ([01442a4](https://github.com/didi/LogicFlow/commit/01442a44a1ee816bc3860c4bf8b5f0f8d6877ec2))
|
|
212
461
|
|
|
462
|
+
### Features
|
|
213
463
|
|
|
464
|
+
- create logicflow eninge ([c7d80f4](https://github.com/didi/LogicFlow/commit/c7d80f4b4c19cf82af9be49dd8fd44433327db58))
|
|
465
|
+
- **extension:** new bpmn plugin ([bd3e76a](https://github.com/didi/LogicFlow/commit/bd3e76ad76bdab13ea8e2f8e22fb7a248fea1a86))
|
|
466
|
+
- **extension:** perfecting readme.md in extension/bpmn-elements ([492a277](https://github.com/didi/LogicFlow/commit/492a2770c7380cde284fba5de995fb77308f97f7))
|
|
214
467
|
|
|
215
468
|
## [1.2.10](https://github.com/didi/LogicFlow/compare/@logicflow/extension@1.2.9...@logicflow/extension@1.2.10) (2023-07-17)
|
|
216
469
|
|
|
470
|
+
### Bug Fixes
|
|
471
|
+
|
|
472
|
+
- calculate the pos of the menu considering the bounds([#1019](https://github.com/didi/LogicFlow/issues/1019)) ([43961a6](https://github.com/didi/LogicFlow/commit/43961a61190c7efc22f088f320d34ca60b9a5f4f))
|
|
473
|
+
- use anchors to adjust the pos of edges during dragging([#807](https://github.com/didi/LogicFlow/issues/807)[#875](https://github.com/didi/LogicFlow/issues/875)) ([83c7385](https://github.com/didi/LogicFlow/commit/83c7385f43ed24cd9b13cce60e0218b2bba561b2))
|
|
474
|
+
- 修正Control移除item不正确的问题 ([560a007](https://github.com/didi/LogicFlow/commit/560a0076212cab6b014e614c8f0b3f0e06157299))
|
|
475
|
+
|
|
476
|
+
## [1.2.9](https://github.com/didi/LogicFlow/compare/@logicflow/extension@1.2.8...@logicflow/extension@1.2.9) (2023-06-21)
|
|
217
477
|
|
|
218
478
|
### Bug Fixes
|
|
219
479
|
|
|
220
|
-
|
|
221
|
-
|
|
222
|
-
* 修正Control移除item不正确的问题 ([560a007](https://github.com/didi/LogicFlow/commit/560a0076212cab6b014e614c8f0b3f0e06157299))
|
|
480
|
+
- **extension:** store the state of the children before folding, and restore the state when the parent is expanded([#1145](https://github.com/didi/LogicFlow/issues/1145)) ([9ca39a6](https://github.com/didi/LogicFlow/commit/9ca39a617eda51544641c6eadec4e101ea30d923))
|
|
481
|
+
- fix the bug of getting error snapshot after scaling the graph ([bad2c59](https://github.com/didi/LogicFlow/commit/bad2c594796692321d6184f71ad49c8875d5fe6f))
|
|
223
482
|
|
|
483
|
+
## [1.2.8](https://github.com/didi/LogicFlow/compare/@logicflow/extension@1.2.7...@logicflow/extension@1.2.8) (2023-05-30)
|
|
224
484
|
|
|
485
|
+
**Note:** Version bump only for package @logicflow/extension
|
|
225
486
|
|
|
487
|
+
## [1.2.7](https://github.com/didi/LogicFlow/compare/@logicflow/extension@1.2.6...@logicflow/extension@1.2.7) (2023-05-17)
|
|
226
488
|
|
|
489
|
+
### Bug Fixes
|
|
227
490
|
|
|
228
|
-
|
|
491
|
+
- add dragging translation to offset while getting snapshot ([e2fe1fe](https://github.com/didi/LogicFlow/commit/e2fe1fe91fa70ae676389a3d137963c9b129e9d7))
|
|
492
|
+
- fix bad case about bezier line in snapshot output.didi[#1147](https://github.com/didi/LogicFlow/issues/1147) ([7923619](https://github.com/didi/LogicFlow/commit/792361993ea954635895c4879edece7d90d86f8f))
|
|
493
|
+
- remove extra content in bpmnAdapter output ([865a1c6](https://github.com/didi/LogicFlow/commit/865a1c62da10586280b0165410d833f4bf154c3a))
|
|
494
|
+
- remove extra content in bpmnAdapter output(didi[#1155](https://github.com/didi/LogicFlow/issues/1155)) ([57a6750](https://github.com/didi/LogicFlow/commit/57a67500219e95c95b0a662edff277df347f1c6e))
|
|
495
|
+
- remove extra content in bpmnAdapter output(issue[#1155](https://github.com/didi/LogicFlow/issues/1155)) ([f76064e](https://github.com/didi/LogicFlow/commit/f76064e079a10904ca7aeeb860e19df96a34021f))
|
|
496
|
+
- resolve issue with incomplete display of minimap ([08a2c51](https://github.com/didi/LogicFlow/commit/08a2c51f8a08df6d767fa78a9fbba044dd1179ca))
|
|
229
497
|
|
|
498
|
+
## [1.2.6](https://github.com/didi/LogicFlow/compare/@logicflow/extension@1.2.5...@logicflow/extension@1.2.6) (2023-05-13)
|
|
230
499
|
|
|
231
500
|
### Bug Fixes
|
|
232
501
|
|
|
233
|
-
|
|
234
|
-
|
|
502
|
+
- add input of convertLf2ProcessData ([a13ef07](https://github.com/didi/LogicFlow/commit/a13ef07023d7dc72f901193596de1a0e6332f376))
|
|
503
|
+
- add optional input in BpmnAdapter ([d88d290](https://github.com/didi/LogicFlow/commit/d88d290a5ac79dfc89401554a23ef46d82cc77a0))
|
|
504
|
+
- add optional input of adpaterOut in class LogicFlow ([ff0f23e](https://github.com/didi/LogicFlow/commit/ff0f23edeef5436bad1e16cceb2c7c0698be3e06))
|
|
505
|
+
- remove extra $ in json2xml.ts ([9c04d85](https://github.com/didi/LogicFlow/commit/9c04d85869c4861e7c3171e0ccce7301bd435c24))
|
|
506
|
+
- 修复边上插入节点的规则问题 ([a7e577e](https://github.com/didi/LogicFlow/commit/a7e577e0ba25a68c1b1987440af4545576eb2183))
|
|
507
|
+
- 处理没有文本鼠标hover报错的问题 ([7b174f8](https://github.com/didi/LogicFlow/commit/7b174f8d717ff6077572e3527cb50348bed1f93d))
|
|
508
|
+
|
|
509
|
+
## [1.2.5](https://github.com/didi/LogicFlow/compare/@logicflow/extension@1.2.3...@logicflow/extension@1.2.5) (2023-05-03)
|
|
510
|
+
|
|
511
|
+
### Bug Fixes
|
|
235
512
|
|
|
513
|
+
- add xml node type reference, support #comment parsing ([78b04b3](https://github.com/didi/LogicFlow/commit/78b04b38db46f2fd86d383668396c88555bed1b4))
|
|
514
|
+
- add xml node type reference, support #comment parsing ([b2ff0d4](https://github.com/didi/LogicFlow/commit/b2ff0d495c0e7062bd83f8b7cf33eb260e154efa))
|
|
515
|
+
- downgrade jest version to fix the compiling error of yargs types ([cda318d](https://github.com/didi/LogicFlow/commit/cda318d79199bd50b2a5cb2c744cfdb7a81d1fa8))
|
|
516
|
+
- edge insertion node checking rules ([#1078](https://github.com/didi/LogicFlow/issues/1078)) ([e40df4d](https://github.com/didi/LogicFlow/commit/e40df4d7d73e7826fd8fb640b6d20baa02c2f45e))
|
|
517
|
+
- fix a mistake ([aa8eb09](https://github.com/didi/LogicFlow/commit/aa8eb0986537eb424c6a8430bb32d314461299d8))
|
|
518
|
+
- fix bug 571 ([90ba0cf](https://github.com/didi/LogicFlow/commit/90ba0cf5b84d1c15be503ba26ccae23e1a4e1d50))
|
|
519
|
+
- fix bugs in code review ([f0ade3c](https://github.com/didi/LogicFlow/commit/f0ade3c40e8ef773237ef1158a2284538e0440e9))
|
|
520
|
+
- fix bugs in extension/src/bpmn-adapter/index.ts ([b96c882](https://github.com/didi/LogicFlow/commit/b96c882399394d08d0b92403ae521d2300b596c9))
|
|
521
|
+
- fix execution bug in xml ⇄ json ([4551d99](https://github.com/didi/LogicFlow/commit/4551d992e933434cc72aaac7d646a7340f32b11f))
|
|
522
|
+
- fix the bug of cdata-transformation in extension: bpmn-adapter ([d690412](https://github.com/didi/LogicFlow/commit/d6904129489f5ef82321483b4f76b2706c445a54))
|
|
523
|
+
- fix the transformation of xml⇋json in extension: bpmn-adapter ([f7a9421](https://github.com/didi/LogicFlow/commit/f7a9421cf3ddd6c2d4046407e47ee25f581aa540))
|
|
524
|
+
- fix ts's type bug ([93146ae](https://github.com/didi/LogicFlow/commit/93146aeb976ad4a5e849957c971dfefbcf17c44e))
|
|
525
|
+
- 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))
|
|
526
|
+
- observable object cannot appear twice([#837](https://github.com/didi/LogicFlow/issues/837)) ([16f338f](https://github.com/didi/LogicFlow/commit/16f338fe8df7a1cce546f5f5fa07b90864b902f4))
|
|
236
527
|
|
|
528
|
+
## [1.2.4](https://github.com/didi/LogicFlow/compare/@logicflow/extension@1.2.3...@logicflow/extension@1.2.4) (2023-04-10)
|
|
237
529
|
|
|
530
|
+
### Bug Fixes
|
|
238
531
|
|
|
532
|
+
- fix bug 571 ([90ba0cf](https://github.com/didi/LogicFlow/commit/90ba0cf5b84d1c15be503ba26ccae23e1a4e1d50))
|
|
533
|
+
- observable object cannot appear twice([#837](https://github.com/didi/LogicFlow/issues/837)) ([16f338f](https://github.com/didi/LogicFlow/commit/16f338fe8df7a1cce546f5f5fa07b90864b902f4))
|
|
239
534
|
|
|
240
|
-
## [1.2.
|
|
535
|
+
## [1.2.3](https://github.com/didi/LogicFlow/compare/@logicflow/extension@1.2.2...@logicflow/extension@1.2.3) (2023-03-25)
|
|
241
536
|
|
|
242
537
|
**Note:** Version bump only for package @logicflow/extension
|
|
243
538
|
|
|
539
|
+
## [1.2.2](https://github.com/didi/LogicFlow/compare/@logicflow/extension@1.2.0...@logicflow/extension@1.2.2) (2023-03-25)
|
|
244
540
|
|
|
541
|
+
### Bug Fixes
|
|
245
542
|
|
|
543
|
+
- export images compatible with Firefox([#269](https://github.com/didi/LogicFlow/issues/269)) ([d87065e](https://github.com/didi/LogicFlow/commit/d87065e404a6569fb16ee5c0d4c01bb67c2e117d))
|
|
544
|
+
- update logicflow site url ([8774efe](https://github.com/didi/LogicFlow/commit/8774efe5eb8411819e1a44f8c4698111f6fb6ea5))
|
|
545
|
+
- virtual models cannot be included in group children.([#1022](https://github.com/didi/LogicFlow/issues/1022)) ([76d559d](https://github.com/didi/LogicFlow/commit/76d559d64f2033e541d8a1d631e240f8f9644ad9))
|
|
246
546
|
|
|
547
|
+
## [1.2.1](https://github.com/didi/LogicFlow/compare/@logicflow/extension@1.2.0...@logicflow/extension@1.2.1) (2023-03-14)
|
|
247
548
|
|
|
248
|
-
|
|
549
|
+
**Note:** Version bump only for package @logicflow/extension
|
|
249
550
|
|
|
551
|
+
# [1.2.0](https://github.com/didi/LogicFlow/compare/@logicflow/extension@1.2.0-next.5...@logicflow/extension@1.2.0) (2023-03-13)
|
|
250
552
|
|
|
251
553
|
### Bug Fixes
|
|
252
554
|
|
|
253
|
-
|
|
254
|
-
* fix bad case about bezier line in snapshot output.didi[#1147](https://github.com/didi/LogicFlow/issues/1147) ([7923619](https://github.com/didi/LogicFlow/commit/792361993ea954635895c4879edece7d90d86f8f))
|
|
255
|
-
* remove extra content in bpmnAdapter output ([865a1c6](https://github.com/didi/LogicFlow/commit/865a1c62da10586280b0165410d833f4bf154c3a))
|
|
256
|
-
* remove extra content in bpmnAdapter output(didi[#1155](https://github.com/didi/LogicFlow/issues/1155)) ([57a6750](https://github.com/didi/LogicFlow/commit/57a67500219e95c95b0a662edff277df347f1c6e))
|
|
257
|
-
* remove extra content in bpmnAdapter output(issue[#1155](https://github.com/didi/LogicFlow/issues/1155)) ([f76064e](https://github.com/didi/LogicFlow/commit/f76064e079a10904ca7aeeb860e19df96a34021f))
|
|
258
|
-
* resolve issue with incomplete display of minimap ([08a2c51](https://github.com/didi/LogicFlow/commit/08a2c51f8a08df6d767fa78a9fbba044dd1179ca))
|
|
259
|
-
|
|
555
|
+
- trigger extension render in difference env ([9be1f58](https://github.com/didi/LogicFlow/commit/9be1f58a3768fd48117e1143939c8a92f61191dc))
|
|
260
556
|
|
|
557
|
+
# [1.2.0-next.5](https://github.com/didi/LogicFlow/compare/@logicflow/extension@1.2.0-next.4...@logicflow/extension@1.2.0-next.5) (2023-03-10)
|
|
261
558
|
|
|
559
|
+
**Note:** Version bump only for package @logicflow/extension
|
|
262
560
|
|
|
561
|
+
# [1.2.0-next.4](https://github.com/didi/LogicFlow/compare/@logicflow/extension@1.2.0-next.3...@logicflow/extension@1.2.0-next.4) (2023-02-22)
|
|
263
562
|
|
|
264
|
-
|
|
563
|
+
**Note:** Version bump only for package @logicflow/extension
|
|
265
564
|
|
|
565
|
+
# [1.2.0-next.3](https://github.com/didi/LogicFlow/compare/@logicflow/extension@1.2.0-next.2...@logicflow/extension@1.2.0-next.3) (2023-02-13)
|
|
266
566
|
|
|
267
|
-
|
|
567
|
+
**Note:** Version bump only for package @logicflow/extension
|
|
268
568
|
|
|
269
|
-
|
|
270
|
-
* add optional input in BpmnAdapter ([d88d290](https://github.com/didi/LogicFlow/commit/d88d290a5ac79dfc89401554a23ef46d82cc77a0))
|
|
271
|
-
* add optional input of adpaterOut in class LogicFlow ([ff0f23e](https://github.com/didi/LogicFlow/commit/ff0f23edeef5436bad1e16cceb2c7c0698be3e06))
|
|
272
|
-
* remove extra $ in json2xml.ts ([9c04d85](https://github.com/didi/LogicFlow/commit/9c04d85869c4861e7c3171e0ccce7301bd435c24))
|
|
273
|
-
* 修复边上插入节点的规则问题 ([a7e577e](https://github.com/didi/LogicFlow/commit/a7e577e0ba25a68c1b1987440af4545576eb2183))
|
|
274
|
-
* 处理没有文本鼠标hover报错的问题 ([7b174f8](https://github.com/didi/LogicFlow/commit/7b174f8d717ff6077572e3527cb50348bed1f93d))
|
|
569
|
+
# [1.2.0-next.2](https://github.com/didi/LogicFlow/compare/@logicflow/extension@1.1.31...@logicflow/extension@1.2.0-next.2) (2023-01-13)
|
|
275
570
|
|
|
571
|
+
### Bug Fixes
|
|
276
572
|
|
|
573
|
+
- issues890 ([0aa4312](https://github.com/didi/LogicFlow/commit/0aa431230879735a63cb9701364b4ab27bde5610))
|
|
574
|
+
- move lodash-es to dependencies ([b9c5206](https://github.com/didi/LogicFlow/commit/b9c5206a6cdc0d36aecdbc89889238f3f1973de0))
|
|
575
|
+
- typos ([ee9f3cd](https://github.com/didi/LogicFlow/commit/ee9f3cd40a819b13887938bf5e6018f77e575917))
|
|
576
|
+
- **extension:** minimap remove console ([f788d87](https://github.com/didi/LogicFlow/commit/f788d873a73be89bb15c2d0a5b0a70848580c7ad))
|
|
577
|
+
- **extension:** minimap remove console ([521f76c](https://github.com/didi/LogicFlow/commit/521f76c4d3db9b44421748daefb706f927a642d6))
|
|
277
578
|
|
|
579
|
+
### Features
|
|
278
580
|
|
|
581
|
+
- add event to dnd-penal ([9707cfb](https://github.com/didi/LogicFlow/commit/9707cfb927f13b0e6dd022230c5466f145d48cf8))
|
|
582
|
+
- **core&extension:** add pluginOptions attribute on lf instance ([47cd816](https://github.com/didi/LogicFlow/commit/47cd81647532a724456b191d0050f87e833cb968))
|
|
583
|
+
- **extension:** minimap enhance, fixes [#802](https://github.com/didi/LogicFlow/issues/802) ([15c6ca3](https://github.com/didi/LogicFlow/commit/15c6ca3d53026b6a18ffd41d0ff3167add96b7fd))
|
|
584
|
+
- **extension:** minimap pirvate modifier ([238fc5f](https://github.com/didi/LogicFlow/commit/238fc5f42fd5e20fb9cc57f10e45380e574c0f64))
|
|
279
585
|
|
|
280
|
-
## [1.
|
|
586
|
+
## [1.1.31](https://github.com/didi/LogicFlow/compare/@logicflow/extension@1.1.30...@logicflow/extension@1.1.31) (2022-11-12)
|
|
281
587
|
|
|
588
|
+
# [1.2.0-next.1](https://github.com/didi/LogicFlow/compare/@logicflow/extension@1.2.0-next.0...@logicflow/extension@1.2.0-next.1) (2022-10-10)
|
|
282
589
|
|
|
283
590
|
### Bug Fixes
|
|
284
591
|
|
|
285
|
-
|
|
286
|
-
* add xml node type reference, support #comment parsing ([b2ff0d4](https://github.com/didi/LogicFlow/commit/b2ff0d495c0e7062bd83f8b7cf33eb260e154efa))
|
|
287
|
-
* downgrade jest version to fix the compiling error of yargs types ([cda318d](https://github.com/didi/LogicFlow/commit/cda318d79199bd50b2a5cb2c744cfdb7a81d1fa8))
|
|
288
|
-
* edge insertion node checking rules ([#1078](https://github.com/didi/LogicFlow/issues/1078)) ([e40df4d](https://github.com/didi/LogicFlow/commit/e40df4d7d73e7826fd8fb640b6d20baa02c2f45e))
|
|
289
|
-
* fix a mistake ([aa8eb09](https://github.com/didi/LogicFlow/commit/aa8eb0986537eb424c6a8430bb32d314461299d8))
|
|
290
|
-
* fix bug 571 ([90ba0cf](https://github.com/didi/LogicFlow/commit/90ba0cf5b84d1c15be503ba26ccae23e1a4e1d50))
|
|
291
|
-
* fix bugs in code review ([f0ade3c](https://github.com/didi/LogicFlow/commit/f0ade3c40e8ef773237ef1158a2284538e0440e9))
|
|
292
|
-
* fix bugs in extension/src/bpmn-adapter/index.ts ([b96c882](https://github.com/didi/LogicFlow/commit/b96c882399394d08d0b92403ae521d2300b596c9))
|
|
293
|
-
* fix execution bug in xml ⇄ json ([4551d99](https://github.com/didi/LogicFlow/commit/4551d992e933434cc72aaac7d646a7340f32b11f))
|
|
294
|
-
* fix the bug of cdata-transformation in extension: bpmn-adapter ([d690412](https://github.com/didi/LogicFlow/commit/d6904129489f5ef82321483b4f76b2706c445a54))
|
|
295
|
-
* fix the transformation of xml⇋json in extension: bpmn-adapter ([f7a9421](https://github.com/didi/LogicFlow/commit/f7a9421cf3ddd6c2d4046407e47ee25f581aa540))
|
|
296
|
-
* fix ts's type bug ([93146ae](https://github.com/didi/LogicFlow/commit/93146aeb976ad4a5e849957c971dfefbcf17c44e))
|
|
297
|
-
* 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))
|
|
298
|
-
* observable object cannot appear twice([#837](https://github.com/didi/LogicFlow/issues/837)) ([16f338f](https://github.com/didi/LogicFlow/commit/16f338fe8df7a1cce546f5f5fa07b90864b902f4))
|
|
299
|
-
|
|
592
|
+
- remove console ([1fa5696](https://github.com/didi/LogicFlow/commit/1fa56964c4b8c91c242610a7cefa669796a8712d))
|
|
300
593
|
|
|
594
|
+
# [1.2.0-next.0](https://github.com/didi/LogicFlow/compare/@logicflow/extension@1.1.29...@logicflow/extension@1.2.0-next.0) (2022-09-29)
|
|
301
595
|
|
|
596
|
+
**Note:** Version bump only for package @logicflow/extension
|
|
302
597
|
|
|
598
|
+
## [1.1.30](https://github.com/didi/LogicFlow/compare/@logicflow/extension@1.1.29...@logicflow/extension@1.1.30) (2022-10-30)
|
|
303
599
|
|
|
304
|
-
|
|
600
|
+
**Note:** Version bump only for package @logicflow/extension
|
|
305
601
|
|
|
602
|
+
## [1.1.29](https://github.com/didi/LogicFlow/compare/@logicflow/extension@1.1.28...@logicflow/extension@1.1.29) (2022-09-24)
|
|
306
603
|
|
|
307
|
-
###
|
|
604
|
+
### Features
|
|
308
605
|
|
|
309
|
-
|
|
310
|
-
|
|
606
|
+
- add curved edge ([b64928a](https://github.com/didi/LogicFlow/commit/b64928a486385aaa13f9dc07a28e790c982f5ada))
|
|
607
|
+
- update turbo plugin ([ed512ca](https://github.com/didi/LogicFlow/commit/ed512ca21d21829cd7c114140b006964fc4090e4))
|
|
311
608
|
|
|
609
|
+
## [1.1.28](https://github.com/didi/LogicFlow/compare/@logicflow/extension@1.1.27...@logicflow/extension@1.1.28) (2022-09-17)
|
|
312
610
|
|
|
611
|
+
**Note:** Version bump only for package @logicflow/extension
|
|
313
612
|
|
|
613
|
+
## [1.1.27](https://github.com/didi/LogicFlow/compare/@logicflow/extension@1.1.26...@logicflow/extension@1.1.27) (2022-09-13)
|
|
314
614
|
|
|
615
|
+
**Note:** Version bump only for package @logicflow/extension
|
|
315
616
|
|
|
316
|
-
## [1.
|
|
617
|
+
## [1.1.26](https://github.com/didi/LogicFlow/compare/@logicflow/extension@1.1.25...@logicflow/extension@1.1.26) (2022-08-27)
|
|
317
618
|
|
|
318
619
|
**Note:** Version bump only for package @logicflow/extension
|
|
319
620
|
|
|
621
|
+
## [1.1.25](https://github.com/didi/LogicFlow/compare/@logicflow/extension@1.1.24...@logicflow/extension@1.1.25) (2022-08-21)
|
|
320
622
|
|
|
623
|
+
### Bug Fixes
|
|
321
624
|
|
|
625
|
+
- 修复分组嵌套分组时子分组内部节点无法跟随移动的问题 ([c7edb01](https://github.com/didi/LogicFlow/commit/c7edb013907b474a65ed495817f983a3f1aafcae))
|
|
322
626
|
|
|
627
|
+
### Features
|
|
323
628
|
|
|
324
|
-
|
|
629
|
+
- group add isAllowAppendIn to support pick node append in group ([e54f798](https://github.com/didi/LogicFlow/commit/e54f79845996e763098cb5749100c76063160023))
|
|
325
630
|
|
|
631
|
+
## [1.1.24](https://github.com/didi/LogicFlow/compare/@logicflow/extension@1.1.23...@logicflow/extension@1.1.24) (2022-08-11)
|
|
326
632
|
|
|
327
|
-
|
|
633
|
+
**Note:** Version bump only for package @logicflow/extension
|
|
328
634
|
|
|
329
|
-
|
|
330
|
-
* update logicflow site url ([8774efe](https://github.com/didi/LogicFlow/commit/8774efe5eb8411819e1a44f8c4698111f6fb6ea5))
|
|
331
|
-
* virtual models cannot be included in group children.([#1022](https://github.com/didi/LogicFlow/issues/1022)) ([76d559d](https://github.com/didi/LogicFlow/commit/76d559d64f2033e541d8a1d631e240f8f9644ad9))
|
|
635
|
+
## [1.1.23](https://github.com/didi/LogicFlow/compare/@logicflow/extension@1.1.22...@logicflow/extension@1.1.23) (2022-08-04)
|
|
332
636
|
|
|
637
|
+
**Note:** Version bump only for package @logicflow/extension
|
|
333
638
|
|
|
639
|
+
## [1.1.22](https://github.com/didi/LogicFlow/compare/@logicflow/extension@1.1.21...@logicflow/extension@1.1.22) (2022-07-13)
|
|
334
640
|
|
|
641
|
+
**Note:** Version bump only for package @logicflow/extension
|
|
335
642
|
|
|
643
|
+
## [1.1.21](https://github.com/didi/LogicFlow/compare/@logicflow/extension@1.1.20...@logicflow/extension@1.1.21) (2022-07-02)
|
|
336
644
|
|
|
337
|
-
|
|
645
|
+
### Bug Fixes
|
|
338
646
|
|
|
339
|
-
**
|
|
647
|
+
- **extension-selection:** 修复开启selection后,右键仍会出现上下文菜单的问题 ([d15330c](https://github.com/didi/LogicFlow/commit/d15330cdbfc3f2018bf58058014a12ec6147e154))
|
|
340
648
|
|
|
649
|
+
## [1.1.20](https://github.com/didi/LogicFlow/compare/@logicflow/extension@1.1.19...@logicflow/extension@1.1.20) (2022-06-08)
|
|
341
650
|
|
|
651
|
+
### Features
|
|
342
652
|
|
|
653
|
+
- add highlight plugin ([8081f91](https://github.com/didi/LogicFlow/commit/8081f91c448d4ed204f517a555af59c13bbde55f))
|
|
343
654
|
|
|
655
|
+
## [1.1.19](https://github.com/didi/LogicFlow/compare/@logicflow/extension@1.1.18...@logicflow/extension@1.1.19) (2022-06-01)
|
|
344
656
|
|
|
345
|
-
|
|
657
|
+
**Note:** Version bump only for package @logicflow/extension
|
|
346
658
|
|
|
659
|
+
## [1.1.18](https://github.com/didi/LogicFlow/compare/@logicflow/extension@1.1.17...@logicflow/extension@1.1.18) (2022-05-23)
|
|
347
660
|
|
|
348
|
-
|
|
661
|
+
**Note:** Version bump only for package @logicflow/extension
|
|
349
662
|
|
|
350
|
-
|
|
663
|
+
## [1.1.17](https://github.com/didi/LogicFlow/compare/@logicflow/extension@1.1.16...@logicflow/extension@1.1.17) (2022-05-23)
|
|
351
664
|
|
|
665
|
+
### Bug Fixes
|
|
352
666
|
|
|
667
|
+
- use blank:drop instead of graph:transform ([c7fc211](https://github.com/didi/LogicFlow/commit/c7fc211438715528651ef4923849a793c325a2c8))
|
|
353
668
|
|
|
669
|
+
## [1.1.16](https://github.com/didi/LogicFlow/compare/@logicflow/extension@1.1.14...@logicflow/extension@1.1.16) (2022-05-18)
|
|
354
670
|
|
|
671
|
+
**Note:** Version bump only for package @logicflow/extension
|
|
355
672
|
|
|
356
|
-
|
|
673
|
+
## [1.1.15](https://github.com/didi/LogicFlow/compare/@logicflow/extension@1.1.14...@logicflow/extension@1.1.15) (2022-05-07)
|
|
357
674
|
|
|
358
675
|
**Note:** Version bump only for package @logicflow/extension
|
|
359
676
|
|
|
677
|
+
## [1.1.14](https://github.com/didi/LogicFlow/compare/@logicflow/extension@1.1.13...@logicflow/extension@1.1.14) (2022-04-22)
|
|
678
|
+
|
|
679
|
+
### Bug Fixes
|
|
360
680
|
|
|
681
|
+
- update turbo adapter ([205e6c8](https://github.com/didi/LogicFlow/commit/205e6c8e7cb8809ad1f04ec6b8c92b5d25416257))
|
|
361
682
|
|
|
683
|
+
## [1.1.13](https://github.com/didi/LogicFlow/compare/@logicflow/extension@1.1.12...@logicflow/extension@1.1.13) (2022-04-16)
|
|
362
684
|
|
|
685
|
+
### Features
|
|
363
686
|
|
|
364
|
-
|
|
687
|
+
- add useGlobalRules and customCssRules property ([88dadb8](https://github.com/didi/LogicFlow/commit/88dadb8e2c96d9f7ee4d4c286a6aa42c8941baaf))
|
|
688
|
+
|
|
689
|
+
## [1.1.12](https://github.com/didi/LogicFlow/compare/@logicflow/extension@1.1.12-alpha.0...@logicflow/extension@1.1.12) (2022-04-13)
|
|
365
690
|
|
|
366
691
|
**Note:** Version bump only for package @logicflow/extension
|
|
367
692
|
|
|
693
|
+
## [1.1.12-alpha.0](https://github.com/didi/LogicFlow/compare/@logicflow/extension@1.1.11...@logicflow/extension@1.1.12-alpha.0) (2022-04-09)
|
|
368
694
|
|
|
695
|
+
**Note:** Version bump only for package @logicflow/extension
|
|
369
696
|
|
|
697
|
+
## [1.1.11](https://github.com/didi/LogicFlow/compare/@logicflow/extension@1.1.10...@logicflow/extension@1.1.11) (2022-03-29)
|
|
370
698
|
|
|
699
|
+
**Note:** Version bump only for package @logicflow/extension
|
|
371
700
|
|
|
372
|
-
|
|
701
|
+
## [1.1.10](https://github.com/didi/LogicFlow/compare/@logicflow/extension@1.1.9...@logicflow/extension@1.1.10) (2022-03-29)
|
|
373
702
|
|
|
374
703
|
**Note:** Version bump only for package @logicflow/extension
|
|
375
704
|
|
|
705
|
+
## [1.1.9](https://github.com/didi/LogicFlow/compare/@logicflow/extension@1.1.9-alpha.1...@logicflow/extension@1.1.9) (2022-03-26)
|
|
376
706
|
|
|
707
|
+
**Note:** Version bump only for package @logicflow/extension
|
|
377
708
|
|
|
709
|
+
## [1.1.9-alpha.1](https://github.com/didi/LogicFlow/compare/@logicflow/extension@1.1.9-alpha.0...@logicflow/extension@1.1.9-alpha.1) (2022-03-26)
|
|
378
710
|
|
|
711
|
+
### Features
|
|
379
712
|
|
|
380
|
-
|
|
713
|
+
- optimize move group children behavior ([d492f20](https://github.com/didi/LogicFlow/commit/d492f20a7205c81a709f7a151b9127a2709d81a4))
|
|
714
|
+
- optimize move node behavior ([d0e4e85](https://github.com/didi/LogicFlow/commit/d0e4e856cf58e92a98e309cdd698724bc1163295))
|
|
381
715
|
|
|
716
|
+
## [1.1.9-alpha.0](https://github.com/didi/LogicFlow/compare/@logicflow/extension@1.1.8-alpha.0...@logicflow/extension@1.1.9-alpha.0) (2022-03-25)
|
|
382
717
|
|
|
383
718
|
### Bug Fixes
|
|
384
719
|
|
|
385
|
-
|
|
386
|
-
* move lodash-es to dependencies ([b9c5206](https://github.com/didi/LogicFlow/commit/b9c5206a6cdc0d36aecdbc89889238f3f1973de0))
|
|
387
|
-
* typos ([ee9f3cd](https://github.com/didi/LogicFlow/commit/ee9f3cd40a819b13887938bf5e6018f77e575917))
|
|
388
|
-
* **extension:** minimap remove console ([f788d87](https://github.com/didi/LogicFlow/commit/f788d873a73be89bb15c2d0a5b0a70848580c7ad))
|
|
389
|
-
* **extension:** minimap remove console ([521f76c](https://github.com/didi/LogicFlow/commit/521f76c4d3db9b44421748daefb706f927a642d6))
|
|
720
|
+
- 修复新增分组子节点未被记录的问题 ([24d9fc9](https://github.com/didi/LogicFlow/commit/24d9fc9d056f34141520da4a3f9482fe031ec325))
|
|
390
721
|
|
|
722
|
+
## [1.1.8](https://github.com/didi/LogicFlow/compare/@logicflow/extension@1.1.8-alpha.0...@logicflow/extension@1.1.8) (2022-03-25)
|
|
391
723
|
|
|
392
|
-
###
|
|
724
|
+
### Bug Fixes
|
|
393
725
|
|
|
394
|
-
|
|
395
|
-
* **core&extension:** add pluginOptions attribute on lf instance ([47cd816](https://github.com/didi/LogicFlow/commit/47cd81647532a724456b191d0050f87e833cb968))
|
|
396
|
-
* **extension:** minimap enhance, fixes [#802](https://github.com/didi/LogicFlow/issues/802) ([15c6ca3](https://github.com/didi/LogicFlow/commit/15c6ca3d53026b6a18ffd41d0ff3167add96b7fd))
|
|
397
|
-
* **extension:** minimap pirvate modifier ([238fc5f](https://github.com/didi/LogicFlow/commit/238fc5f42fd5e20fb9cc57f10e45380e574c0f64))
|
|
726
|
+
- 修复新增分组子节点未被记录的问题 ([24d9fc9](https://github.com/didi/LogicFlow/commit/24d9fc9d056f34141520da4a3f9482fe031ec325))
|
|
398
727
|
|
|
728
|
+
## [1.1.8-alpha.0](https://github.com/didi/LogicFlow/compare/@logicflow/extension@1.1.7-alpha.0...@logicflow/extension@1.1.8-alpha.0) (2022-03-25)
|
|
399
729
|
|
|
730
|
+
### Bug Fixes
|
|
400
731
|
|
|
732
|
+
- 修复了`group`插件在多个`group`节点一起被折叠报错的问题。 ([396736e](https://github.com/didi/LogicFlow/commit/396736e07c320985f7c779b272085ba1f66f1083))
|
|
733
|
+
- group undo cannot fold ([5860d7e](https://github.com/didi/LogicFlow/commit/5860d7ef4770f655fab1bb5ee6114dc63757b725))
|
|
734
|
+
- node resize can`t set shape attributes ([9811e93](https://github.com/didi/LogicFlow/commit/9811e931adcab3e9c4ec5836e40d5ca766eb04e4))
|
|
401
735
|
|
|
736
|
+
### Features
|
|
402
737
|
|
|
403
|
-
|
|
404
|
-
|
|
738
|
+
- add node resize maxwidth and maxheight ([e98f575](https://github.com/didi/LogicFlow/commit/e98f575d19c5c7c9a74c7ad3302c1a8cb02bd5e3))
|
|
739
|
+
- optimize drag node behavior ([f88042d](https://github.com/didi/LogicFlow/commit/f88042d5623a0983003bd70098b4e0c12ba60d3d))
|
|
405
740
|
|
|
741
|
+
## [1.1.7](https://github.com/didi/LogicFlow/compare/@logicflow/extension@1.1.7-alpha.0...@logicflow/extension@1.1.7) (2022-03-07)
|
|
406
742
|
|
|
407
743
|
### Bug Fixes
|
|
408
744
|
|
|
409
|
-
|
|
745
|
+
- node resize can`t set shape attributes ([9811e93](https://github.com/didi/LogicFlow/commit/9811e931adcab3e9c4ec5836e40d5ca766eb04e4))
|
|
410
746
|
|
|
747
|
+
## [1.1.7-alpha.1](https://github.com/didi/LogicFlow/compare/@logicflow/extension@1.1.7-alpha.0...@logicflow/extension@1.1.7-alpha.1) (2022-03-04)
|
|
411
748
|
|
|
749
|
+
### Bug Fixes
|
|
412
750
|
|
|
751
|
+
- node resize can`t set shape attributes ([9811e93](https://github.com/didi/LogicFlow/commit/9811e931adcab3e9c4ec5836e40d5ca766eb04e4))
|
|
413
752
|
|
|
753
|
+
## [1.1.7-alpha.0](https://github.com/didi/LogicFlow/compare/@logicflow/extension@1.1.6...@logicflow/extension@1.1.7-alpha.0) (2022-03-03)
|
|
414
754
|
|
|
415
|
-
|
|
755
|
+
### Performance Improvements
|
|
756
|
+
|
|
757
|
+
- 优化layout trunk ([e261441](https://github.com/didi/LogicFlow/commit/e261441e6b3ab928939bda43101dd5e0348da9f8))
|
|
758
|
+
|
|
759
|
+
## [1.1.6](https://github.com/didi/LogicFlow/compare/@logicflow/extension@1.1.5...@logicflow/extension@1.1.6) (2022-03-02)
|
|
416
760
|
|
|
417
761
|
**Note:** Version bump only for package @logicflow/extension
|
|
418
762
|
|
|
763
|
+
## [1.1.5](https://github.com/didi/LogicFlow/compare/@logicflow/extension@1.1.4...@logicflow/extension@1.1.5) (2022-03-02)
|
|
419
764
|
|
|
765
|
+
**Note:** Version bump only for package @logicflow/extension
|
|
420
766
|
|
|
767
|
+
## [1.1.4](https://github.com/didi/LogicFlow/compare/@logicflow/extension@1.1.3...@logicflow/extension@1.1.4) (2022-02-23)
|
|
421
768
|
|
|
769
|
+
**Note:** Version bump only for package @logicflow/extension
|
|
422
770
|
|
|
423
|
-
## [1.1.
|
|
771
|
+
## [1.1.3](https://github.com/didi/LogicFlow/compare/@logicflow/extension@1.1.3-alpha.0...@logicflow/extension@1.1.3) (2022-02-18)
|
|
424
772
|
|
|
425
773
|
**Note:** Version bump only for package @logicflow/extension
|
|
426
774
|
|
|
775
|
+
## [1.1.3-alpha.0](https://github.com/didi/LogicFlow/compare/@logicflow/extension@1.1.1...@logicflow/extension@1.1.3-alpha.0) (2022-02-18)
|
|
776
|
+
|
|
777
|
+
### Features
|
|
427
778
|
|
|
779
|
+
- remove console ([7771e65](https://github.com/didi/LogicFlow/commit/7771e6591dd25e51077930da4fe985d5e280d7e9))
|
|
428
780
|
|
|
781
|
+
## [1.1.2](https://github.com/didi/LogicFlow/compare/@logicflow/extension@1.1.1...@logicflow/extension@1.1.2) (2022-02-10)
|
|
429
782
|
|
|
783
|
+
### Features
|
|
430
784
|
|
|
431
|
-
|
|
785
|
+
- remove console ([7771e65](https://github.com/didi/LogicFlow/commit/7771e6591dd25e51077930da4fe985d5e280d7e9))
|
|
432
786
|
|
|
787
|
+
## [1.1.1](https://github.com/didi/LogicFlow/compare/@logicflow/extension@1.1.0...@logicflow/extension@1.1.1) (2022-02-10)
|
|
433
788
|
|
|
434
789
|
### Features
|
|
435
790
|
|
|
436
|
-
|
|
437
|
-
* update turbo plugin ([ed512ca](https://github.com/didi/LogicFlow/commit/ed512ca21d21829cd7c114140b006964fc4090e4))
|
|
791
|
+
- check width and height type ([141c667](https://github.com/didi/LogicFlow/commit/141c6678503870a9d7503864353ad6cc7493fd24))
|
|
438
792
|
|
|
793
|
+
# [1.1.0](https://github.com/didi/LogicFlow/compare/@logicflow/extension@1.1.0-alpha.7...@logicflow/extension@1.1.0) (2022-02-09)
|
|
439
794
|
|
|
795
|
+
**Note:** Version bump only for package @logicflow/extension
|
|
440
796
|
|
|
797
|
+
# [1.1.0-alpha.7](https://github.com/didi/LogicFlow/compare/@logicflow/extension@1.1.0-alpha.6...@logicflow/extension@1.1.0-alpha.7) (2022-02-09)
|
|
441
798
|
|
|
799
|
+
### Features
|
|
442
800
|
|
|
443
|
-
|
|
801
|
+
- group listen node:dnd-drag event ([3934d9c](https://github.com/didi/LogicFlow/commit/3934d9cb40dbe38aafccf4f94b0c880204fd1c1d))
|
|
444
802
|
|
|
445
|
-
|
|
803
|
+
# [1.1.0-alpha.6](https://github.com/didi/LogicFlow/compare/@logicflow/extension@1.1.0-alpha.4...@logicflow/extension@1.1.0-alpha.6) (2022-01-27)
|
|
446
804
|
|
|
805
|
+
### Bug Fixes
|
|
447
806
|
|
|
807
|
+
- not create new edge while edge source and target both in group ([9ec3197](https://github.com/didi/LogicFlow/commit/9ec31975a81f0fc75f13fd54b6624dbd953b04c2))
|
|
448
808
|
|
|
809
|
+
# [1.1.0-alpha.5](https://github.com/didi/LogicFlow/compare/@logicflow/extension@1.1.0-alpha.4...@logicflow/extension@1.1.0-alpha.5) (2022-01-27)
|
|
449
810
|
|
|
811
|
+
### Bug Fixes
|
|
450
812
|
|
|
451
|
-
|
|
813
|
+
- not create new edge while edge source and target both in group ([9ec3197](https://github.com/didi/LogicFlow/commit/9ec31975a81f0fc75f13fd54b6624dbd953b04c2))
|
|
452
814
|
|
|
453
|
-
|
|
815
|
+
# [1.1.0-alpha.4](https://github.com/didi/LogicFlow/compare/@logicflow/extension@1.1.0-alpha.2...@logicflow/extension@1.1.0-alpha.4) (2022-01-27)
|
|
454
816
|
|
|
817
|
+
### Bug Fixes
|
|
455
818
|
|
|
819
|
+
- extensition-GroupShrink console->throw error ([c7cf0ef](https://github.com/didi/LogicFlow/commit/c7cf0effc1ba5ac171dfe345400ffe307386f0da))
|
|
820
|
+
- use autoToFront property take node to front ([3a8a7cc](https://github.com/didi/LogicFlow/commit/3a8a7cc6a981f53837f8774aa3130b7e6d5593b9))
|
|
456
821
|
|
|
822
|
+
### Features
|
|
457
823
|
|
|
824
|
+
- add attribute visible to element ([4676427](https://github.com/didi/LogicFlow/commit/46764279f6667354b1d67186e0f131f764c3eb79))
|
|
825
|
+
- add extension-GroupShrink ([99e5414](https://github.com/didi/LogicFlow/commit/99e5414be5ac0168128320f255eb0882251c7a9c))
|
|
826
|
+
- add graph:rendered event ([a3838c3](https://github.com/didi/LogicFlow/commit/a3838c385328bc9e3a41e39c555736d5f59de573))
|
|
827
|
+
- add group hook ([a955e7c](https://github.com/didi/LogicFlow/commit/a955e7ca151e0dd547a3995bbfed42e68f25183a))
|
|
828
|
+
- group support fold ([c1d8c10](https://github.com/didi/LogicFlow/commit/c1d8c109b25a3145c8c6858c4b6b5f0b6bf072ba))
|
|
829
|
+
- group support getAddableOutlineStyle ([a34f58c](https://github.com/didi/LogicFlow/commit/a34f58c11e9e73ab6dfd9536ac0980368281e62c))
|
|
830
|
+
- group support resize ([d9e2403](https://github.com/didi/LogicFlow/commit/d9e2403e00bce05c65d4d5b018ac3e2b9072cecd))
|
|
458
831
|
|
|
459
|
-
|
|
832
|
+
# [1.1.0-alpha.2](https://github.com/didi/LogicFlow/compare/@logicflow/extension@1.1.0-alpha.1...@logicflow/extension@1.1.0-alpha.2) (2022-01-21)
|
|
460
833
|
|
|
461
834
|
**Note:** Version bump only for package @logicflow/extension
|
|
462
835
|
|
|
836
|
+
# [1.1.0-alpha.1](https://github.com/didi/LogicFlow/compare/@logicflow/extension@1.1.0-alpha.0...@logicflow/extension@1.1.0-alpha.1) (2022-01-21)
|
|
463
837
|
|
|
838
|
+
**Note:** Version bump only for package @logicflow/extension
|
|
464
839
|
|
|
840
|
+
# [1.1.0-alpha.0](https://github.com/didi/LogicFlow/compare/@logicflow/extension@1.0.7...@logicflow/extension@1.1.0-alpha.0) (2022-01-20)
|
|
465
841
|
|
|
842
|
+
### Features
|
|
466
843
|
|
|
467
|
-
|
|
468
|
-
|
|
844
|
+
- change MiniMap.show -> lf.extension.miniMap.show ([39e1a2f](https://github.com/didi/LogicFlow/commit/39e1a2fb254e480418275641880f454e5101e0c3))
|
|
845
|
+
- **extension:** htmlNode resize ([24209af](https://github.com/didi/LogicFlow/commit/24209afc16f8dd7acf824fd5231ee3e8266d45d7))
|
|
469
846
|
|
|
470
|
-
|
|
847
|
+
## [1.0.7](https://github.com/didi/LogicFlow/compare/@logicflow/extension@1.0.7-alpha.1...@logicflow/extension@1.0.7) (2022-01-18)
|
|
471
848
|
|
|
472
|
-
|
|
849
|
+
**Note:** Version bump only for package @logicflow/extension
|
|
473
850
|
|
|
851
|
+
## [1.0.7-alpha.1](https://github.com/didi/LogicFlow/compare/@logicflow/extension@1.0.7-alpha.0...@logicflow/extension@1.0.7-alpha.1) (2022-01-18)
|
|
474
852
|
|
|
475
853
|
### Features
|
|
476
854
|
|
|
477
|
-
|
|
478
|
-
|
|
855
|
+
- add lfJson2Xml and lfXml2Json ([928a0d4](https://github.com/didi/LogicFlow/commit/928a0d42fd7cba383fe4768d1eafd01b59b668c3))
|
|
479
856
|
|
|
857
|
+
## [1.0.7-alpha.0](https://github.com/didi/LogicFlow/compare/@logicflow/extension@1.0.4...@logicflow/extension@1.0.7-alpha.0) (2022-01-18)
|
|
480
858
|
|
|
859
|
+
### Bug Fixes
|
|
481
860
|
|
|
861
|
+
- bpmn example use new control ([eb11ffa](https://github.com/didi/LogicFlow/commit/eb11ffa464e563946b58f7e0f18e2bc58383d9c0))
|
|
862
|
+
- dnd-panel render ([26799eb](https://github.com/didi/LogicFlow/commit/26799ebe5ff1f396cb01c14b71ae8482ba4e2f50))
|
|
863
|
+
- graphDownload ([2e94d30](https://github.com/didi/LogicFlow/commit/2e94d300b15784e6b29fde731c1eb87cacb82869))
|
|
864
|
+
- pattern callback ([1d29050](https://github.com/didi/LogicFlow/commit/1d290501712f74b13a1e4f5d3ae2d85109aa55dd))
|
|
865
|
+
- rewrite control extension ([2e70363](https://github.com/didi/LogicFlow/commit/2e70363b7f1ac9fb3e0924f4cc439d412c6e492e))
|
|
866
|
+
- type error ShapeItem ([9551c6d](https://github.com/didi/LogicFlow/commit/9551c6d4cd973e3f8f1dab71cb908b755deb401c))
|
|
867
|
+
- typo ([facccdf](https://github.com/didi/LogicFlow/commit/facccdf3b98d44650c75e34a66ed33f5e0d8f75e))
|
|
482
868
|
|
|
483
|
-
## [1.
|
|
869
|
+
## [1.0.4](https://github.com/didi/LogicFlow/compare/@logicflow/extension@1.0.0-alpha.12...@logicflow/extension@1.0.4) (2022-01-12)
|
|
484
870
|
|
|
485
|
-
|
|
871
|
+
### Bug Fixes
|
|
486
872
|
|
|
873
|
+
- mini map viewport ([38c2408](https://github.com/didi/LogicFlow/commit/38c2408e0f8a76dd0b49b9271dd259fd8b6fa684))
|
|
487
874
|
|
|
875
|
+
### Features
|
|
488
876
|
|
|
877
|
+
- release 1.0.0🎉🎉 ([670fed7](https://github.com/didi/LogicFlow/commit/670fed7fa3e0cb0ee39501251d177c693694ef59))
|
|
878
|
+
- remove node selection ([92d4b7a](https://github.com/didi/LogicFlow/commit/92d4b7a88727b8dd213487f09e1117afa5c48310))
|
|
489
879
|
|
|
880
|
+
## [1.0.1-alpha.0](https://github.com/didi/LogicFlow/compare/@logicflow/extension@1.0.0-alpha.12...@logicflow/extension@1.0.1) (2022-01-07)
|
|
490
881
|
|
|
491
|
-
|
|
882
|
+
### Features
|
|
492
883
|
|
|
493
|
-
|
|
884
|
+
- release 1.0.0🎉🎉 ([670fed7](https://github.com/didi/LogicFlow/commit/670fed7fa3e0cb0ee39501251d177c693694ef59))
|
|
885
|
+
- remove node selection ([92d4b7a](https://github.com/didi/LogicFlow/commit/92d4b7a88727b8dd213487f09e1117afa5c48310))
|
|
494
886
|
|
|
887
|
+
# [1.0.0-alpha.12](https://github.com/didi/LogicFlow/compare/@logicflow/extension@1.0.0-alpha.11...@logicflow/extension@1.0.0-alpha.12) (2021-12-30)
|
|
495
888
|
|
|
889
|
+
**Note:** Version bump only for package @logicflow/extension
|
|
496
890
|
|
|
891
|
+
# [1.0.0-alpha.11](https://github.com/didi/LogicFlow/compare/@logicflow/extension@1.0.0-alpha.10...@logicflow/extension@1.0.0-alpha.11) (2021-12-29)
|
|
497
892
|
|
|
893
|
+
**Note:** Version bump only for package @logicflow/extension
|
|
498
894
|
|
|
499
|
-
|
|
895
|
+
# [1.0.0-alpha.10](https://github.com/didi/LogicFlow/compare/@logicflow/extension@1.0.0-alpha.9...@logicflow/extension@1.0.0-alpha.10) (2021-12-29)
|
|
500
896
|
|
|
501
897
|
**Note:** Version bump only for package @logicflow/extension
|
|
502
898
|
|
|
899
|
+
# [1.0.0-alpha.9](https://github.com/didi/LogicFlow/compare/@logicflow/extension@1.0.0-alpha.8...@logicflow/extension@1.0.0-alpha.9) (2021-12-24)
|
|
503
900
|
|
|
901
|
+
### Features
|
|
504
902
|
|
|
903
|
+
- remove hideOutline ([be86fb1](https://github.com/didi/LogicFlow/commit/be86fb118bd8bb1bd67a999802544eb2d10df0da))
|
|
505
904
|
|
|
905
|
+
# [1.0.0-alpha.8](https://github.com/didi/LogicFlow/compare/@logicflow/extension@1.0.0-alpha.7...@logicflow/extension@1.0.0-alpha.8) (2021-12-22)
|
|
506
906
|
|
|
507
|
-
|
|
907
|
+
**Note:** Version bump only for package @logicflow/extension
|
|
508
908
|
|
|
909
|
+
# [1.0.0-alpha.7](https://github.com/didi/LogicFlow/compare/@logicflow/extension@1.0.0-alpha.6...@logicflow/extension@1.0.0-alpha.7) (2021-12-22)
|
|
509
910
|
|
|
510
911
|
### Bug Fixes
|
|
511
912
|
|
|
512
|
-
|
|
913
|
+
- node resize set default style ([b9def97](https://github.com/didi/LogicFlow/commit/b9def9763f1fa0464c42adeffebf37fe20543151))
|
|
513
914
|
|
|
915
|
+
# [1.0.0-alpha.6](https://github.com/didi/LogicFlow/compare/@logicflow/extension@1.0.0-alpha.4...@logicflow/extension@1.0.0-alpha.6) (2021-12-22)
|
|
514
916
|
|
|
917
|
+
### Bug Fixes
|
|
515
918
|
|
|
919
|
+
- edge setProperties in vue ([ecdaf34](https://github.com/didi/LogicFlow/commit/ecdaf34ad170e410ad979af8413e87bf86e8345b))
|
|
920
|
+
- lf.select -> lf.selectElementById ([f4eea2c](https://github.com/didi/LogicFlow/commit/f4eea2c23ec6ac44acbd404b35d94b74fbb69d00))
|
|
921
|
+
- mini map ([822adf9](https://github.com/didi/LogicFlow/commit/822adf9bddc53f9c82cd26790e8f83b9eb67f093))
|
|
516
922
|
|
|
923
|
+
# [1.0.0-alpha.4](https://github.com/didi/LogicFlow/compare/@logicflow/extension@0.7.14...@logicflow/extension@1.0.0-alpha.4) (2021-12-21)
|
|
517
924
|
|
|
518
|
-
|
|
925
|
+
### Bug Fixes
|
|
519
926
|
|
|
927
|
+
- use model instead of getAttribute ([0e51cb0](https://github.com/didi/LogicFlow/commit/0e51cb0681c458bf68a69b8459ce0a4b91951ea4))
|
|
928
|
+
- version typo ([edc73ed](https://github.com/didi/LogicFlow/commit/edc73ede58859412fa1183fb3237013e4c56e9ad))
|
|
520
929
|
|
|
521
930
|
### Features
|
|
522
931
|
|
|
523
|
-
|
|
932
|
+
- custom edge ([81cd3be](https://github.com/didi/LogicFlow/commit/81cd3be6a9940553d2eec75b77a3472fdf75eb88))
|
|
933
|
+
- use loose class properties ([921a09b](https://github.com/didi/LogicFlow/commit/921a09ba4b30a819eb315316e174a7bccfc9ffc8))
|
|
524
934
|
|
|
525
|
-
|
|
526
|
-
|
|
527
|
-
|
|
528
|
-
|
|
529
|
-
## [1.1.19](https://github.com/didi/LogicFlow/compare/@logicflow/extension@1.1.18...@logicflow/extension@1.1.19) (2022-06-01)
|
|
530
|
-
|
|
531
|
-
**Note:** Version bump only for package @logicflow/extension
|
|
532
|
-
|
|
533
|
-
|
|
534
|
-
|
|
535
|
-
|
|
536
|
-
|
|
537
|
-
## [1.1.18](https://github.com/didi/LogicFlow/compare/@logicflow/extension@1.1.17...@logicflow/extension@1.1.18) (2022-05-23)
|
|
538
|
-
|
|
539
|
-
**Note:** Version bump only for package @logicflow/extension
|
|
540
|
-
|
|
541
|
-
|
|
542
|
-
|
|
543
|
-
|
|
544
|
-
|
|
545
|
-
## [1.1.17](https://github.com/didi/LogicFlow/compare/@logicflow/extension@1.1.16...@logicflow/extension@1.1.17) (2022-05-23)
|
|
546
|
-
|
|
547
|
-
|
|
548
|
-
### Bug Fixes
|
|
549
|
-
|
|
550
|
-
* use blank:drop instead of graph:transform ([c7fc211](https://github.com/didi/LogicFlow/commit/c7fc211438715528651ef4923849a793c325a2c8))
|
|
551
|
-
|
|
552
|
-
|
|
553
|
-
|
|
554
|
-
|
|
555
|
-
|
|
556
|
-
## [1.1.16](https://github.com/didi/LogicFlow/compare/@logicflow/extension@1.1.14...@logicflow/extension@1.1.16) (2022-05-18)
|
|
557
|
-
|
|
558
|
-
**Note:** Version bump only for package @logicflow/extension
|
|
559
|
-
|
|
560
|
-
|
|
561
|
-
|
|
562
|
-
|
|
563
|
-
|
|
564
|
-
## [1.1.15](https://github.com/didi/LogicFlow/compare/@logicflow/extension@1.1.14...@logicflow/extension@1.1.15) (2022-05-07)
|
|
565
|
-
|
|
566
|
-
**Note:** Version bump only for package @logicflow/extension
|
|
567
|
-
|
|
568
|
-
|
|
569
|
-
|
|
570
|
-
|
|
571
|
-
|
|
572
|
-
## [1.1.14](https://github.com/didi/LogicFlow/compare/@logicflow/extension@1.1.13...@logicflow/extension@1.1.14) (2022-04-22)
|
|
573
|
-
|
|
574
|
-
|
|
575
|
-
### Bug Fixes
|
|
576
|
-
|
|
577
|
-
* update turbo adapter ([205e6c8](https://github.com/didi/LogicFlow/commit/205e6c8e7cb8809ad1f04ec6b8c92b5d25416257))
|
|
578
|
-
|
|
579
|
-
|
|
580
|
-
|
|
581
|
-
|
|
582
|
-
|
|
583
|
-
## [1.1.13](https://github.com/didi/LogicFlow/compare/@logicflow/extension@1.1.12...@logicflow/extension@1.1.13) (2022-04-16)
|
|
584
|
-
|
|
585
|
-
|
|
586
|
-
### Features
|
|
587
|
-
|
|
588
|
-
* add useGlobalRules and customCssRules property ([88dadb8](https://github.com/didi/LogicFlow/commit/88dadb8e2c96d9f7ee4d4c286a6aa42c8941baaf))
|
|
589
|
-
|
|
590
|
-
|
|
591
|
-
|
|
592
|
-
|
|
593
|
-
|
|
594
|
-
## [1.1.12](https://github.com/didi/LogicFlow/compare/@logicflow/extension@1.1.12-alpha.0...@logicflow/extension@1.1.12) (2022-04-13)
|
|
595
|
-
|
|
596
|
-
**Note:** Version bump only for package @logicflow/extension
|
|
597
|
-
|
|
598
|
-
|
|
599
|
-
|
|
600
|
-
|
|
601
|
-
|
|
602
|
-
## [1.1.12-alpha.0](https://github.com/didi/LogicFlow/compare/@logicflow/extension@1.1.11...@logicflow/extension@1.1.12-alpha.0) (2022-04-09)
|
|
603
|
-
|
|
604
|
-
**Note:** Version bump only for package @logicflow/extension
|
|
605
|
-
|
|
606
|
-
|
|
607
|
-
|
|
608
|
-
|
|
609
|
-
|
|
610
|
-
## [1.1.11](https://github.com/didi/LogicFlow/compare/@logicflow/extension@1.1.10...@logicflow/extension@1.1.11) (2022-03-29)
|
|
611
|
-
|
|
612
|
-
**Note:** Version bump only for package @logicflow/extension
|
|
613
|
-
|
|
614
|
-
|
|
615
|
-
|
|
616
|
-
|
|
617
|
-
|
|
618
|
-
## [1.1.10](https://github.com/didi/LogicFlow/compare/@logicflow/extension@1.1.9...@logicflow/extension@1.1.10) (2022-03-29)
|
|
619
|
-
|
|
620
|
-
**Note:** Version bump only for package @logicflow/extension
|
|
621
|
-
|
|
622
|
-
|
|
623
|
-
|
|
624
|
-
|
|
625
|
-
|
|
626
|
-
## [1.1.9](https://github.com/didi/LogicFlow/compare/@logicflow/extension@1.1.9-alpha.1...@logicflow/extension@1.1.9) (2022-03-26)
|
|
627
|
-
|
|
628
|
-
**Note:** Version bump only for package @logicflow/extension
|
|
629
|
-
|
|
630
|
-
|
|
631
|
-
|
|
632
|
-
|
|
633
|
-
|
|
634
|
-
## [1.1.9-alpha.1](https://github.com/didi/LogicFlow/compare/@logicflow/extension@1.1.9-alpha.0...@logicflow/extension@1.1.9-alpha.1) (2022-03-26)
|
|
635
|
-
|
|
636
|
-
|
|
637
|
-
### Features
|
|
638
|
-
|
|
639
|
-
* optimize move group children behavior ([d492f20](https://github.com/didi/LogicFlow/commit/d492f20a7205c81a709f7a151b9127a2709d81a4))
|
|
640
|
-
* optimize move node behavior ([d0e4e85](https://github.com/didi/LogicFlow/commit/d0e4e856cf58e92a98e309cdd698724bc1163295))
|
|
641
|
-
|
|
642
|
-
|
|
643
|
-
|
|
644
|
-
|
|
645
|
-
|
|
646
|
-
## [1.1.9-alpha.0](https://github.com/didi/LogicFlow/compare/@logicflow/extension@1.1.8-alpha.0...@logicflow/extension@1.1.9-alpha.0) (2022-03-25)
|
|
647
|
-
|
|
648
|
-
|
|
649
|
-
### Bug Fixes
|
|
650
|
-
|
|
651
|
-
* 修复新增分组子节点未被记录的问题 ([24d9fc9](https://github.com/didi/LogicFlow/commit/24d9fc9d056f34141520da4a3f9482fe031ec325))
|
|
652
|
-
|
|
653
|
-
|
|
654
|
-
|
|
655
|
-
|
|
656
|
-
|
|
657
|
-
## [1.1.8](https://github.com/didi/LogicFlow/compare/@logicflow/extension@1.1.8-alpha.0...@logicflow/extension@1.1.8) (2022-03-25)
|
|
658
|
-
|
|
659
|
-
|
|
660
|
-
### Bug Fixes
|
|
661
|
-
|
|
662
|
-
* 修复新增分组子节点未被记录的问题 ([24d9fc9](https://github.com/didi/LogicFlow/commit/24d9fc9d056f34141520da4a3f9482fe031ec325))
|
|
663
|
-
|
|
664
|
-
|
|
665
|
-
|
|
666
|
-
|
|
667
|
-
|
|
668
|
-
## [1.1.8-alpha.0](https://github.com/didi/LogicFlow/compare/@logicflow/extension@1.1.7-alpha.0...@logicflow/extension@1.1.8-alpha.0) (2022-03-25)
|
|
669
|
-
|
|
670
|
-
|
|
671
|
-
### Bug Fixes
|
|
672
|
-
|
|
673
|
-
* 修复了`group`插件在多个`group`节点一起被折叠报错的问题。 ([396736e](https://github.com/didi/LogicFlow/commit/396736e07c320985f7c779b272085ba1f66f1083))
|
|
674
|
-
* group undo cannot fold ([5860d7e](https://github.com/didi/LogicFlow/commit/5860d7ef4770f655fab1bb5ee6114dc63757b725))
|
|
675
|
-
* node resize can`t set shape attributes ([9811e93](https://github.com/didi/LogicFlow/commit/9811e931adcab3e9c4ec5836e40d5ca766eb04e4))
|
|
676
|
-
|
|
677
|
-
|
|
678
|
-
### Features
|
|
679
|
-
|
|
680
|
-
* add node resize maxwidth and maxheight ([e98f575](https://github.com/didi/LogicFlow/commit/e98f575d19c5c7c9a74c7ad3302c1a8cb02bd5e3))
|
|
681
|
-
* optimize drag node behavior ([f88042d](https://github.com/didi/LogicFlow/commit/f88042d5623a0983003bd70098b4e0c12ba60d3d))
|
|
682
|
-
|
|
683
|
-
|
|
684
|
-
|
|
685
|
-
|
|
686
|
-
|
|
687
|
-
## [1.1.7](https://github.com/didi/LogicFlow/compare/@logicflow/extension@1.1.7-alpha.0...@logicflow/extension@1.1.7) (2022-03-07)
|
|
688
|
-
|
|
689
|
-
|
|
690
|
-
### Bug Fixes
|
|
691
|
-
|
|
692
|
-
* node resize can`t set shape attributes ([9811e93](https://github.com/didi/LogicFlow/commit/9811e931adcab3e9c4ec5836e40d5ca766eb04e4))
|
|
693
|
-
|
|
694
|
-
|
|
695
|
-
|
|
696
|
-
|
|
697
|
-
|
|
698
|
-
## [1.1.7-alpha.1](https://github.com/didi/LogicFlow/compare/@logicflow/extension@1.1.7-alpha.0...@logicflow/extension@1.1.7-alpha.1) (2022-03-04)
|
|
699
|
-
|
|
700
|
-
|
|
701
|
-
### Bug Fixes
|
|
702
|
-
|
|
703
|
-
* node resize can`t set shape attributes ([9811e93](https://github.com/didi/LogicFlow/commit/9811e931adcab3e9c4ec5836e40d5ca766eb04e4))
|
|
704
|
-
|
|
705
|
-
|
|
706
|
-
|
|
707
|
-
|
|
708
|
-
|
|
709
|
-
## [1.1.7-alpha.0](https://github.com/didi/LogicFlow/compare/@logicflow/extension@1.1.6...@logicflow/extension@1.1.7-alpha.0) (2022-03-03)
|
|
710
|
-
|
|
711
|
-
|
|
712
|
-
### Performance Improvements
|
|
713
|
-
|
|
714
|
-
* 优化layout trunk ([e261441](https://github.com/didi/LogicFlow/commit/e261441e6b3ab928939bda43101dd5e0348da9f8))
|
|
715
|
-
|
|
716
|
-
|
|
717
|
-
|
|
718
|
-
|
|
719
|
-
|
|
720
|
-
## [1.1.6](https://github.com/didi/LogicFlow/compare/@logicflow/extension@1.1.5...@logicflow/extension@1.1.6) (2022-03-02)
|
|
721
|
-
|
|
722
|
-
**Note:** Version bump only for package @logicflow/extension
|
|
723
|
-
|
|
724
|
-
|
|
725
|
-
|
|
726
|
-
|
|
727
|
-
|
|
728
|
-
## [1.1.5](https://github.com/didi/LogicFlow/compare/@logicflow/extension@1.1.4...@logicflow/extension@1.1.5) (2022-03-02)
|
|
729
|
-
|
|
730
|
-
**Note:** Version bump only for package @logicflow/extension
|
|
731
|
-
|
|
732
|
-
|
|
733
|
-
|
|
734
|
-
|
|
735
|
-
|
|
736
|
-
## [1.1.4](https://github.com/didi/LogicFlow/compare/@logicflow/extension@1.1.3...@logicflow/extension@1.1.4) (2022-02-23)
|
|
737
|
-
|
|
738
|
-
**Note:** Version bump only for package @logicflow/extension
|
|
739
|
-
|
|
740
|
-
|
|
741
|
-
|
|
742
|
-
|
|
743
|
-
|
|
744
|
-
## [1.1.3](https://github.com/didi/LogicFlow/compare/@logicflow/extension@1.1.3-alpha.0...@logicflow/extension@1.1.3) (2022-02-18)
|
|
745
|
-
|
|
746
|
-
**Note:** Version bump only for package @logicflow/extension
|
|
747
|
-
|
|
748
|
-
|
|
749
|
-
|
|
750
|
-
|
|
751
|
-
|
|
752
|
-
## [1.1.3-alpha.0](https://github.com/didi/LogicFlow/compare/@logicflow/extension@1.1.1...@logicflow/extension@1.1.3-alpha.0) (2022-02-18)
|
|
753
|
-
|
|
754
|
-
|
|
755
|
-
### Features
|
|
756
|
-
|
|
757
|
-
* remove console ([7771e65](https://github.com/didi/LogicFlow/commit/7771e6591dd25e51077930da4fe985d5e280d7e9))
|
|
758
|
-
|
|
759
|
-
|
|
760
|
-
|
|
761
|
-
|
|
762
|
-
|
|
763
|
-
## [1.1.2](https://github.com/didi/LogicFlow/compare/@logicflow/extension@1.1.1...@logicflow/extension@1.1.2) (2022-02-10)
|
|
764
|
-
|
|
765
|
-
|
|
766
|
-
### Features
|
|
767
|
-
|
|
768
|
-
* remove console ([7771e65](https://github.com/didi/LogicFlow/commit/7771e6591dd25e51077930da4fe985d5e280d7e9))
|
|
769
|
-
|
|
770
|
-
|
|
771
|
-
|
|
772
|
-
|
|
773
|
-
|
|
774
|
-
## [1.1.1](https://github.com/didi/LogicFlow/compare/@logicflow/extension@1.1.0...@logicflow/extension@1.1.1) (2022-02-10)
|
|
775
|
-
|
|
776
|
-
|
|
777
|
-
### Features
|
|
778
|
-
|
|
779
|
-
* check width and height type ([141c667](https://github.com/didi/LogicFlow/commit/141c6678503870a9d7503864353ad6cc7493fd24))
|
|
780
|
-
|
|
781
|
-
|
|
782
|
-
|
|
783
|
-
|
|
784
|
-
|
|
785
|
-
# [1.1.0](https://github.com/didi/LogicFlow/compare/@logicflow/extension@1.1.0-alpha.7...@logicflow/extension@1.1.0) (2022-02-09)
|
|
786
|
-
|
|
787
|
-
**Note:** Version bump only for package @logicflow/extension
|
|
788
|
-
|
|
789
|
-
|
|
790
|
-
|
|
791
|
-
|
|
792
|
-
|
|
793
|
-
# [1.1.0-alpha.7](https://github.com/didi/LogicFlow/compare/@logicflow/extension@1.1.0-alpha.6...@logicflow/extension@1.1.0-alpha.7) (2022-02-09)
|
|
794
|
-
|
|
795
|
-
|
|
796
|
-
### Features
|
|
797
|
-
|
|
798
|
-
* group listen node:dnd-drag event ([3934d9c](https://github.com/didi/LogicFlow/commit/3934d9cb40dbe38aafccf4f94b0c880204fd1c1d))
|
|
799
|
-
|
|
800
|
-
|
|
801
|
-
|
|
802
|
-
|
|
803
|
-
|
|
804
|
-
# [1.1.0-alpha.6](https://github.com/didi/LogicFlow/compare/@logicflow/extension@1.1.0-alpha.4...@logicflow/extension@1.1.0-alpha.6) (2022-01-27)
|
|
805
|
-
|
|
806
|
-
|
|
807
|
-
### Bug Fixes
|
|
808
|
-
|
|
809
|
-
* not create new edge while edge source and target both in group ([9ec3197](https://github.com/didi/LogicFlow/commit/9ec31975a81f0fc75f13fd54b6624dbd953b04c2))
|
|
810
|
-
|
|
811
|
-
|
|
812
|
-
|
|
813
|
-
|
|
814
|
-
|
|
815
|
-
# [1.1.0-alpha.5](https://github.com/didi/LogicFlow/compare/@logicflow/extension@1.1.0-alpha.4...@logicflow/extension@1.1.0-alpha.5) (2022-01-27)
|
|
816
|
-
|
|
817
|
-
|
|
818
|
-
### Bug Fixes
|
|
819
|
-
|
|
820
|
-
* not create new edge while edge source and target both in group ([9ec3197](https://github.com/didi/LogicFlow/commit/9ec31975a81f0fc75f13fd54b6624dbd953b04c2))
|
|
821
|
-
|
|
822
|
-
|
|
823
|
-
|
|
824
|
-
|
|
825
|
-
|
|
826
|
-
# [1.1.0-alpha.4](https://github.com/didi/LogicFlow/compare/@logicflow/extension@1.1.0-alpha.2...@logicflow/extension@1.1.0-alpha.4) (2022-01-27)
|
|
827
|
-
|
|
828
|
-
|
|
829
|
-
### Bug Fixes
|
|
830
|
-
|
|
831
|
-
* extensition-GroupShrink console->throw error ([c7cf0ef](https://github.com/didi/LogicFlow/commit/c7cf0effc1ba5ac171dfe345400ffe307386f0da))
|
|
832
|
-
* use autoToFront property take node to front ([3a8a7cc](https://github.com/didi/LogicFlow/commit/3a8a7cc6a981f53837f8774aa3130b7e6d5593b9))
|
|
833
|
-
|
|
834
|
-
|
|
835
|
-
### Features
|
|
836
|
-
|
|
837
|
-
* add attribute visible to element ([4676427](https://github.com/didi/LogicFlow/commit/46764279f6667354b1d67186e0f131f764c3eb79))
|
|
838
|
-
* add extension-GroupShrink ([99e5414](https://github.com/didi/LogicFlow/commit/99e5414be5ac0168128320f255eb0882251c7a9c))
|
|
839
|
-
* add graph:rendered event ([a3838c3](https://github.com/didi/LogicFlow/commit/a3838c385328bc9e3a41e39c555736d5f59de573))
|
|
840
|
-
* add group hook ([a955e7c](https://github.com/didi/LogicFlow/commit/a955e7ca151e0dd547a3995bbfed42e68f25183a))
|
|
841
|
-
* group support fold ([c1d8c10](https://github.com/didi/LogicFlow/commit/c1d8c109b25a3145c8c6858c4b6b5f0b6bf072ba))
|
|
842
|
-
* group support getAddableOutlineStyle ([a34f58c](https://github.com/didi/LogicFlow/commit/a34f58c11e9e73ab6dfd9536ac0980368281e62c))
|
|
843
|
-
* group support resize ([d9e2403](https://github.com/didi/LogicFlow/commit/d9e2403e00bce05c65d4d5b018ac3e2b9072cecd))
|
|
844
|
-
|
|
845
|
-
|
|
846
|
-
|
|
847
|
-
|
|
848
|
-
|
|
849
|
-
# [1.1.0-alpha.2](https://github.com/didi/LogicFlow/compare/@logicflow/extension@1.1.0-alpha.1...@logicflow/extension@1.1.0-alpha.2) (2022-01-21)
|
|
850
|
-
|
|
851
|
-
**Note:** Version bump only for package @logicflow/extension
|
|
852
|
-
|
|
853
|
-
|
|
854
|
-
|
|
855
|
-
|
|
856
|
-
|
|
857
|
-
# [1.1.0-alpha.1](https://github.com/didi/LogicFlow/compare/@logicflow/extension@1.1.0-alpha.0...@logicflow/extension@1.1.0-alpha.1) (2022-01-21)
|
|
858
|
-
|
|
859
|
-
**Note:** Version bump only for package @logicflow/extension
|
|
860
|
-
|
|
861
|
-
|
|
862
|
-
|
|
863
|
-
|
|
864
|
-
|
|
865
|
-
# [1.1.0-alpha.0](https://github.com/didi/LogicFlow/compare/@logicflow/extension@1.0.7...@logicflow/extension@1.1.0-alpha.0) (2022-01-20)
|
|
866
|
-
|
|
867
|
-
|
|
868
|
-
### Features
|
|
869
|
-
|
|
870
|
-
* change MiniMap.show -> lf.extension.miniMap.show ([39e1a2f](https://github.com/didi/LogicFlow/commit/39e1a2fb254e480418275641880f454e5101e0c3))
|
|
871
|
-
* **extension:** htmlNode resize ([24209af](https://github.com/didi/LogicFlow/commit/24209afc16f8dd7acf824fd5231ee3e8266d45d7))
|
|
872
|
-
|
|
873
|
-
|
|
874
|
-
|
|
875
|
-
|
|
876
|
-
|
|
877
|
-
## [1.0.7](https://github.com/didi/LogicFlow/compare/@logicflow/extension@1.0.7-alpha.1...@logicflow/extension@1.0.7) (2022-01-18)
|
|
878
|
-
|
|
879
|
-
**Note:** Version bump only for package @logicflow/extension
|
|
880
|
-
|
|
881
|
-
|
|
882
|
-
|
|
883
|
-
|
|
884
|
-
|
|
885
|
-
## [1.0.7-alpha.1](https://github.com/didi/LogicFlow/compare/@logicflow/extension@1.0.7-alpha.0...@logicflow/extension@1.0.7-alpha.1) (2022-01-18)
|
|
886
|
-
|
|
887
|
-
|
|
888
|
-
### Features
|
|
889
|
-
|
|
890
|
-
* add lfJson2Xml and lfXml2Json ([928a0d4](https://github.com/didi/LogicFlow/commit/928a0d42fd7cba383fe4768d1eafd01b59b668c3))
|
|
891
|
-
|
|
892
|
-
|
|
893
|
-
|
|
894
|
-
|
|
895
|
-
|
|
896
|
-
## [1.0.7-alpha.0](https://github.com/didi/LogicFlow/compare/@logicflow/extension@1.0.4...@logicflow/extension@1.0.7-alpha.0) (2022-01-18)
|
|
897
|
-
|
|
898
|
-
|
|
899
|
-
### Bug Fixes
|
|
900
|
-
|
|
901
|
-
* bpmn example use new control ([eb11ffa](https://github.com/didi/LogicFlow/commit/eb11ffa464e563946b58f7e0f18e2bc58383d9c0))
|
|
902
|
-
* dnd-panel render ([26799eb](https://github.com/didi/LogicFlow/commit/26799ebe5ff1f396cb01c14b71ae8482ba4e2f50))
|
|
903
|
-
* graphDownload ([2e94d30](https://github.com/didi/LogicFlow/commit/2e94d300b15784e6b29fde731c1eb87cacb82869))
|
|
904
|
-
* pattern callback ([1d29050](https://github.com/didi/LogicFlow/commit/1d290501712f74b13a1e4f5d3ae2d85109aa55dd))
|
|
905
|
-
* rewrite control extension ([2e70363](https://github.com/didi/LogicFlow/commit/2e70363b7f1ac9fb3e0924f4cc439d412c6e492e))
|
|
906
|
-
* type error ShapeItem ([9551c6d](https://github.com/didi/LogicFlow/commit/9551c6d4cd973e3f8f1dab71cb908b755deb401c))
|
|
907
|
-
* typo ([facccdf](https://github.com/didi/LogicFlow/commit/facccdf3b98d44650c75e34a66ed33f5e0d8f75e))
|
|
908
|
-
|
|
909
|
-
|
|
910
|
-
|
|
911
|
-
|
|
912
|
-
|
|
913
|
-
## [1.0.4](https://github.com/didi/LogicFlow/compare/@logicflow/extension@1.0.0-alpha.12...@logicflow/extension@1.0.4) (2022-01-12)
|
|
914
|
-
|
|
915
|
-
|
|
916
|
-
### Bug Fixes
|
|
917
|
-
|
|
918
|
-
* mini map viewport ([38c2408](https://github.com/didi/LogicFlow/commit/38c2408e0f8a76dd0b49b9271dd259fd8b6fa684))
|
|
919
|
-
|
|
920
|
-
|
|
921
|
-
### Features
|
|
922
|
-
|
|
923
|
-
* release 1.0.0🎉🎉 ([670fed7](https://github.com/didi/LogicFlow/commit/670fed7fa3e0cb0ee39501251d177c693694ef59))
|
|
924
|
-
* remove node selection ([92d4b7a](https://github.com/didi/LogicFlow/commit/92d4b7a88727b8dd213487f09e1117afa5c48310))
|
|
925
|
-
|
|
926
|
-
|
|
927
|
-
|
|
928
|
-
|
|
929
|
-
|
|
930
|
-
## [1.0.1-alpha.0](https://github.com/didi/LogicFlow/compare/@logicflow/extension@1.0.0-alpha.12...@logicflow/extension@1.0.1) (2022-01-07)
|
|
931
|
-
|
|
932
|
-
|
|
933
|
-
### Features
|
|
934
|
-
|
|
935
|
-
* release 1.0.0🎉🎉 ([670fed7](https://github.com/didi/LogicFlow/commit/670fed7fa3e0cb0ee39501251d177c693694ef59))
|
|
936
|
-
* remove node selection ([92d4b7a](https://github.com/didi/LogicFlow/commit/92d4b7a88727b8dd213487f09e1117afa5c48310))
|
|
937
|
-
|
|
938
|
-
|
|
939
|
-
|
|
940
|
-
|
|
941
|
-
|
|
942
|
-
# [1.0.0-alpha.12](https://github.com/didi/LogicFlow/compare/@logicflow/extension@1.0.0-alpha.11...@logicflow/extension@1.0.0-alpha.12) (2021-12-30)
|
|
943
|
-
|
|
944
|
-
**Note:** Version bump only for package @logicflow/extension
|
|
945
|
-
|
|
946
|
-
|
|
947
|
-
|
|
948
|
-
|
|
949
|
-
|
|
950
|
-
# [1.0.0-alpha.11](https://github.com/didi/LogicFlow/compare/@logicflow/extension@1.0.0-alpha.10...@logicflow/extension@1.0.0-alpha.11) (2021-12-29)
|
|
951
|
-
|
|
952
|
-
**Note:** Version bump only for package @logicflow/extension
|
|
953
|
-
|
|
954
|
-
|
|
955
|
-
|
|
956
|
-
|
|
957
|
-
|
|
958
|
-
# [1.0.0-alpha.10](https://github.com/didi/LogicFlow/compare/@logicflow/extension@1.0.0-alpha.9...@logicflow/extension@1.0.0-alpha.10) (2021-12-29)
|
|
959
|
-
|
|
960
|
-
**Note:** Version bump only for package @logicflow/extension
|
|
961
|
-
|
|
962
|
-
|
|
963
|
-
|
|
964
|
-
|
|
965
|
-
|
|
966
|
-
# [1.0.0-alpha.9](https://github.com/didi/LogicFlow/compare/@logicflow/extension@1.0.0-alpha.8...@logicflow/extension@1.0.0-alpha.9) (2021-12-24)
|
|
967
|
-
|
|
968
|
-
|
|
969
|
-
### Features
|
|
970
|
-
|
|
971
|
-
* remove hideOutline ([be86fb1](https://github.com/didi/LogicFlow/commit/be86fb118bd8bb1bd67a999802544eb2d10df0da))
|
|
972
|
-
|
|
973
|
-
|
|
974
|
-
|
|
975
|
-
|
|
976
|
-
|
|
977
|
-
# [1.0.0-alpha.8](https://github.com/didi/LogicFlow/compare/@logicflow/extension@1.0.0-alpha.7...@logicflow/extension@1.0.0-alpha.8) (2021-12-22)
|
|
978
|
-
|
|
979
|
-
**Note:** Version bump only for package @logicflow/extension
|
|
980
|
-
|
|
981
|
-
|
|
982
|
-
|
|
983
|
-
|
|
984
|
-
|
|
985
|
-
# [1.0.0-alpha.7](https://github.com/didi/LogicFlow/compare/@logicflow/extension@1.0.0-alpha.6...@logicflow/extension@1.0.0-alpha.7) (2021-12-22)
|
|
986
|
-
|
|
987
|
-
|
|
988
|
-
### Bug Fixes
|
|
989
|
-
|
|
990
|
-
* node resize set default style ([b9def97](https://github.com/didi/LogicFlow/commit/b9def9763f1fa0464c42adeffebf37fe20543151))
|
|
991
|
-
|
|
992
|
-
|
|
993
|
-
|
|
994
|
-
|
|
995
|
-
|
|
996
|
-
# [1.0.0-alpha.6](https://github.com/didi/LogicFlow/compare/@logicflow/extension@1.0.0-alpha.4...@logicflow/extension@1.0.0-alpha.6) (2021-12-22)
|
|
997
|
-
|
|
998
|
-
|
|
999
|
-
### Bug Fixes
|
|
1000
|
-
|
|
1001
|
-
* edge setProperties in vue ([ecdaf34](https://github.com/didi/LogicFlow/commit/ecdaf34ad170e410ad979af8413e87bf86e8345b))
|
|
1002
|
-
* lf.select -> lf.selectElementById ([f4eea2c](https://github.com/didi/LogicFlow/commit/f4eea2c23ec6ac44acbd404b35d94b74fbb69d00))
|
|
1003
|
-
* mini map ([822adf9](https://github.com/didi/LogicFlow/commit/822adf9bddc53f9c82cd26790e8f83b9eb67f093))
|
|
1004
|
-
|
|
1005
|
-
|
|
1006
|
-
|
|
1007
|
-
|
|
1008
|
-
|
|
1009
|
-
# [1.0.0-alpha.4](https://github.com/didi/LogicFlow/compare/@logicflow/extension@0.7.14...@logicflow/extension@1.0.0-alpha.4) (2021-12-21)
|
|
1010
|
-
|
|
1011
|
-
|
|
1012
|
-
### Bug Fixes
|
|
1013
|
-
|
|
1014
|
-
* use model instead of getAttribute ([0e51cb0](https://github.com/didi/LogicFlow/commit/0e51cb0681c458bf68a69b8459ce0a4b91951ea4))
|
|
1015
|
-
* version typo ([edc73ed](https://github.com/didi/LogicFlow/commit/edc73ede58859412fa1183fb3237013e4c56e9ad))
|
|
1016
|
-
|
|
1017
|
-
|
|
1018
|
-
### Features
|
|
1019
|
-
|
|
1020
|
-
* custom edge ([81cd3be](https://github.com/didi/LogicFlow/commit/81cd3be6a9940553d2eec75b77a3472fdf75eb88))
|
|
1021
|
-
* use loose class properties ([921a09b](https://github.com/didi/LogicFlow/commit/921a09ba4b30a819eb315316e174a7bccfc9ffc8))
|
|
1022
|
-
|
|
1023
|
-
|
|
1024
|
-
|
|
1025
|
-
|
|
1026
|
-
|
|
1027
|
-
# [1.0.0-alpha.3](https://github.com/didi/LogicFlow/compare/@logicflow/extension@1.0.0-alpha.1...@logicflow/extension@1.0.0-alpha.3) (2021-12-09)
|
|
1028
|
-
|
|
1029
|
-
**Note:** Version bump only for package @logicflow/extension
|
|
1030
|
-
|
|
1031
|
-
|
|
1032
|
-
|
|
1033
|
-
|
|
1034
|
-
|
|
1035
|
-
# [1.0.0-alpha.1](https://github.com/didi/LogicFlow/compare/@logicflow/extension@0.7.13...@logicflow/extension@1.0.0-alpha.1) (2021-12-09)
|
|
1036
|
-
|
|
1037
|
-
|
|
1038
|
-
### Bug Fixes
|
|
1039
|
-
|
|
1040
|
-
* version typo ([edc73ed](https://github.com/didi/LogicFlow/commit/edc73ede58859412fa1183fb3237013e4c56e9ad))
|
|
1041
|
-
|
|
1042
|
-
|
|
1043
|
-
### Features
|
|
1044
|
-
|
|
1045
|
-
* use loose class properties ([921a09b](https://github.com/didi/LogicFlow/commit/921a09ba4b30a819eb315316e174a7bccfc9ffc8))
|
|
1046
|
-
|
|
1047
|
-
|
|
1048
|
-
|
|
1049
|
-
|
|
1050
|
-
|
|
1051
|
-
## [0.7.13](https://github.com/didi/LogicFlow/compare/@logicflow/extension@0.7.12...@logicflow/extension@0.7.13) (2021-12-09)
|
|
1052
|
-
|
|
1053
|
-
|
|
1054
|
-
### Bug Fixes
|
|
1055
|
-
|
|
1056
|
-
* add disabled_delete attr in node-selection ([6b103d5](https://github.com/didi/LogicFlow/commit/6b103d56add41d22e35391627588288cadced47b))
|
|
1057
|
-
* add disableNodeSelection callback in node-selection ([de21347](https://github.com/didi/LogicFlow/commit/de21347a9dff06a079ab7fe7ca35dc89f2206538))
|
|
1058
|
-
* fix addNodeSelection methods in node-selection plugin ([f75afd4](https://github.com/didi/LogicFlow/commit/f75afd4678de91c11d97aa1c628a0b8417f01ed9))
|
|
1059
|
-
|
|
1060
|
-
|
|
1061
|
-
### Features
|
|
1062
|
-
|
|
1063
|
-
* babel use loose mode ([7fed1fb](https://github.com/didi/LogicFlow/commit/7fed1fb9557e3ac7f6f7fc11ad3afcc1d3d7bad8))
|
|
1064
|
-
|
|
1065
|
-
|
|
1066
|
-
|
|
1067
|
-
|
|
1068
|
-
|
|
1069
|
-
## [0.7.13-alpha.1](https://github.com/didi/LogicFlow/compare/@logicflow/extension@0.7.13-alpha.0...@logicflow/extension@0.7.13-alpha.1) (2021-12-07)
|
|
1070
|
-
|
|
1071
|
-
|
|
1072
|
-
### Features
|
|
1073
|
-
|
|
1074
|
-
* babel use loose mode ([a48deef](https://github.com/didi/LogicFlow/commit/a48deef1c58e6e8d3f90463082207797fb9b771c))
|
|
1075
|
-
|
|
1076
|
-
|
|
1077
|
-
|
|
1078
|
-
|
|
1079
|
-
|
|
1080
|
-
## [0.7.13-alpha.0](https://github.com/didi/LogicFlow/compare/@logicflow/extension@0.7.12...@logicflow/extension@0.7.13-alpha.0) (2021-12-07)
|
|
1081
|
-
|
|
1082
|
-
|
|
1083
|
-
### Bug Fixes
|
|
1084
|
-
|
|
1085
|
-
* fix addNodeSelection methods in node-selection plugin ([f75afd4](https://github.com/didi/LogicFlow/commit/f75afd4678de91c11d97aa1c628a0b8417f01ed9))
|
|
1086
|
-
|
|
1087
|
-
|
|
1088
|
-
|
|
1089
|
-
|
|
1090
|
-
|
|
1091
|
-
## [0.7.12](https://github.com/didi/LogicFlow/compare/@logicflow/extension@0.7.11...@logicflow/extension@0.7.12) (2021-12-04)
|
|
1092
|
-
|
|
1093
|
-
**Note:** Version bump only for package @logicflow/extension
|
|
1094
|
-
|
|
1095
|
-
|
|
1096
|
-
|
|
1097
|
-
|
|
1098
|
-
|
|
1099
|
-
## [0.7.11](https://github.com/didi/LogicFlow/compare/@logicflow/extension@0.7.10...@logicflow/extension@0.7.11) (2021-11-30)
|
|
1100
|
-
|
|
1101
|
-
|
|
1102
|
-
### Features
|
|
1103
|
-
|
|
1104
|
-
* support disabled tool in core package ([1c7527f](https://github.com/didi/LogicFlow/commit/1c7527fc75929c444d9e5fb4b0b70b87086694c8))
|
|
1105
|
-
|
|
1106
|
-
|
|
1107
|
-
|
|
1108
|
-
|
|
1109
|
-
|
|
1110
|
-
## [0.7.10](https://github.com/didi/LogicFlow/compare/@logicflow/extension@0.7.9...@logicflow/extension@0.7.10) (2021-11-26)
|
|
1111
|
-
|
|
1112
|
-
|
|
1113
|
-
### Features
|
|
1114
|
-
|
|
1115
|
-
* add mind map plugin ([11ae7e0](https://github.com/didi/LogicFlow/commit/11ae7e06f878cb6b8c82f2f73f74e8e4620fecb6))
|
|
1116
|
-
* hide mind map ([2aa1120](https://github.com/didi/LogicFlow/commit/2aa112002023b87188c9b132dbeb6c77e92e17bf))
|
|
1117
|
-
|
|
1118
|
-
|
|
1119
|
-
|
|
1120
|
-
|
|
1121
|
-
|
|
1122
|
-
## [0.7.9](https://github.com/didi/LogicFlow/compare/@logicflow/extension@0.7.8...@logicflow/extension@0.7.9) (2021-11-23)
|
|
1123
|
-
|
|
1124
|
-
|
|
1125
|
-
### Bug Fixes
|
|
1126
|
-
|
|
1127
|
-
* context menu edge icon position ([f06ead4](https://github.com/didi/LogicFlow/commit/f06ead4e687498550012e654765430d1fa1f48a2))
|
|
1128
|
-
* nodeResize outline bugfix ([8e76f5f](https://github.com/didi/LogicFlow/commit/8e76f5f8e79a18189f48339b85904b06d29cfda2))
|
|
1129
|
-
|
|
1130
|
-
|
|
1131
|
-
### Features
|
|
1132
|
-
|
|
1133
|
-
* context-menu use className ([e58eaea](https://github.com/didi/LogicFlow/commit/e58eaea67aaf7c8f420aed849a4f77b753a1bc6c))
|
|
1134
|
-
|
|
1135
|
-
|
|
1136
|
-
|
|
1137
|
-
|
|
1138
|
-
|
|
1139
|
-
## [0.7.8](https://github.com/didi/LogicFlow/compare/@logicflow/extension@0.7.7...@logicflow/extension@0.7.8) (2021-11-22)
|
|
1140
|
-
|
|
1141
|
-
|
|
1142
|
-
### Bug Fixes
|
|
1143
|
-
|
|
1144
|
-
* nodeResize getResizeShape bugfix ([e617013](https://github.com/didi/LogicFlow/commit/e617013f979cd67dbe438dad141f0eef25690aa2))
|
|
1145
|
-
|
|
1146
|
-
|
|
1147
|
-
### Features
|
|
1148
|
-
|
|
1149
|
-
* export context menu ([f0ff960](https://github.com/didi/LogicFlow/commit/f0ff960a2518cfe0e3f9d2a5abb843b87957def6))
|
|
1150
|
-
|
|
1151
|
-
|
|
1152
|
-
|
|
1153
|
-
|
|
1154
|
-
|
|
1155
|
-
## [0.7.7](https://github.com/didi/LogicFlow/compare/@logicflow/extension@0.7.6...@logicflow/extension@0.7.7) (2021-11-19)
|
|
1156
|
-
|
|
1157
|
-
|
|
1158
|
-
### Features
|
|
1159
|
-
|
|
1160
|
-
* add context menu plugin ([8c5d7a8](https://github.com/didi/LogicFlow/commit/8c5d7a84309ba8d07fbbb99dcebcae81b521bd06))
|
|
1161
|
-
|
|
1162
|
-
|
|
1163
|
-
|
|
1164
|
-
|
|
1165
|
-
|
|
1166
|
-
## [0.7.6](https://github.com/didi/LogicFlow/compare/@logicflow/extension@0.7.5...@logicflow/extension@0.7.6) (2021-11-11)
|
|
1167
|
-
|
|
1168
|
-
|
|
1169
|
-
### Bug Fixes
|
|
1170
|
-
|
|
1171
|
-
* minimap become invisible when repeat init ([ad488fd](https://github.com/didi/LogicFlow/commit/ad488fde9041834e9e809eb38904c013751d9cc8))
|
|
1172
|
-
|
|
1173
|
-
|
|
1174
|
-
|
|
1175
|
-
|
|
1176
|
-
|
|
1177
|
-
## [0.7.5](https://github.com/didi/LogicFlow/compare/@logicflow/extension@0.7.4...@logicflow/extension@0.7.5) (2021-11-08)
|
|
1178
|
-
|
|
1179
|
-
**Note:** Version bump only for package @logicflow/extension
|
|
1180
|
-
|
|
1181
|
-
|
|
1182
|
-
|
|
1183
|
-
|
|
1184
|
-
|
|
1185
|
-
## [0.7.4](https://github.com/didi/LogicFlow/compare/@logicflow/extension@0.7.3...@logicflow/extension@0.7.4) (2021-11-04)
|
|
1186
|
-
|
|
1187
|
-
**Note:** Version bump only for package @logicflow/extension
|
|
1188
|
-
|
|
1189
|
-
|
|
1190
|
-
|
|
1191
|
-
|
|
1192
|
-
|
|
1193
|
-
## [0.7.3](https://github.com/didi/LogicFlow/compare/@logicflow/extension@0.7.2...@logicflow/extension@0.7.3) (2021-11-03)
|
|
1194
|
-
|
|
1195
|
-
**Note:** Version bump only for package @logicflow/extension
|
|
1196
|
-
|
|
1197
|
-
|
|
1198
|
-
|
|
1199
|
-
|
|
1200
|
-
|
|
1201
|
-
## [0.7.2](https://github.com/didi/LogicFlow/compare/@logicflow/extension@0.7.1...@logicflow/extension@0.7.2) (2021-10-22)
|
|
1202
|
-
|
|
1203
|
-
**Note:** Version bump only for package @logicflow/extension
|
|
1204
|
-
|
|
1205
|
-
|
|
1206
|
-
|
|
1207
|
-
|
|
1208
|
-
|
|
1209
|
-
## [0.7.1](https://github.com/didi/LogicFlow/compare/@logicflow/extension@0.7.1-alpha.0...@logicflow/extension@0.7.1) (2021-10-21)
|
|
1210
|
-
|
|
1211
|
-
**Note:** Version bump only for package @logicflow/extension
|
|
1212
|
-
|
|
1213
|
-
|
|
1214
|
-
|
|
1215
|
-
|
|
1216
|
-
|
|
1217
|
-
## [0.7.1-alpha.0](https://github.com/didi/LogicFlow/compare/@logicflow/extension@0.6.16...@logicflow/extension@0.7.1-alpha.0) (2021-10-21)
|
|
1218
|
-
|
|
1219
|
-
|
|
1220
|
-
|
|
1221
|
-
## 0.7.1-alpha.0 (2021-10-21)
|
|
1222
|
-
|
|
1223
|
-
|
|
1224
|
-
### Bug Fixes
|
|
1225
|
-
|
|
1226
|
-
* format bpmn xml ([e3c9159](https://github.com/didi/LogicFlow/commit/e3c91599ced342ac64d92f54228bf8145cf52378))
|
|
1227
|
-
|
|
1228
|
-
|
|
1229
|
-
### Features
|
|
1230
|
-
|
|
1231
|
-
* add increase overlap mode ([06068e4](https://github.com/didi/LogicFlow/commit/06068e4caa11544b709697d101063838020dc4d1))
|
|
1232
|
-
* avoid add id in dom ([37cccb6](https://github.com/didi/LogicFlow/commit/37cccb6fc75451b25254c1ccda4c581f2bb5ce51)), closes [#309](https://github.com/didi/LogicFlow/issues/309)
|
|
1233
|
-
* remove object attributes ([a242500](https://github.com/didi/LogicFlow/commit/a242500edf2e2e197cd0a015d2e490e474ff585e))
|
|
1234
|
-
|
|
1235
|
-
|
|
1236
|
-
|
|
1237
|
-
|
|
1238
|
-
|
|
1239
|
-
## [0.6.16](https://github.com/didi/LogicFlow/compare/@logicflow/extension@0.6.13...@logicflow/extension@0.6.16) (2021-09-04)
|
|
1240
|
-
|
|
1241
|
-
|
|
1242
|
-
### Bug Fixes
|
|
1243
|
-
|
|
1244
|
-
* **examples:** modified examples page title ([3a9ae5e](https://github.com/didi/LogicFlow/commit/3a9ae5ed100405378ed468574ca61445bef44035))
|
|
1245
|
-
* **extension:** snapshot bugfix after zooming ([c23c0fa](https://github.com/didi/LogicFlow/commit/c23c0fa2d8ec0825f4319def7b98388cc3a09997))
|
|
1246
|
-
|
|
1247
|
-
|
|
1248
|
-
|
|
1249
|
-
|
|
1250
|
-
|
|
1251
|
-
## [0.6.13](https://github.com/didi/LogicFlow/compare/@logicflow/extension@0.6.12...@logicflow/extension@0.6.13) (2021-08-19)
|
|
1252
|
-
|
|
1253
|
-
|
|
1254
|
-
### Bug Fixes
|
|
1255
|
-
|
|
1256
|
-
* **extension:** init isDefalutStopMoveGraph of SelectionSelect ([88ec07b](https://github.com/didi/LogicFlow/commit/88ec07bb5d4d7ae6e242e68e46e4bc4278f5a17e))
|
|
1257
|
-
|
|
1258
|
-
|
|
1259
|
-
### Features
|
|
1260
|
-
|
|
1261
|
-
* group ([2c75b81](https://github.com/didi/LogicFlow/commit/2c75b810d2bda185e37e029a5fe28503f299e412))
|
|
1262
|
-
* merge master ([cead588](https://github.com/didi/LogicFlow/commit/cead5887df27bd7624c46000966257a73b5a95e0))
|
|
1263
|
-
* mvp demo ([12d5e96](https://github.com/didi/LogicFlow/commit/12d5e9684bad4a465e1b57a1217aceed73453d59))
|
|
1264
|
-
* 增加移动节点跳过校验规则功能 ([659b83e](https://github.com/didi/LogicFlow/commit/659b83eb8ab6c8f3a1f60333e11e24777795a14b))
|
|
1265
|
-
|
|
1266
|
-
|
|
1267
|
-
|
|
1268
|
-
|
|
1269
|
-
|
|
1270
|
-
## [0.6.12](https://github.com/didi/LogicFlow/compare/@logicflow/extension@0.6.5...@logicflow/extension@0.6.12) (2021-08-17)
|
|
1271
|
-
|
|
1272
|
-
|
|
1273
|
-
### Bug Fixes
|
|
1274
|
-
|
|
1275
|
-
* **extension:** snapshot forginObject in svg fix ([ef937a0](https://github.com/didi/LogicFlow/commit/ef937a08f2f4898b99376d06c25ee57c3f81fda2))
|
|
1276
|
-
|
|
1277
|
-
|
|
1278
|
-
### Features
|
|
1279
|
-
|
|
1280
|
-
* add custom TextPosition ([352047d](https://github.com/didi/LogicFlow/commit/352047d942cc505f36272ba1a64bae33c13b5897))
|
|
1281
|
-
* edgemodel support override getTextPosition ([5ede6f2](https://github.com/didi/LogicFlow/commit/5ede6f295c128c5f8c87af789105576f1f04ba57))
|
|
1282
|
-
* increase width and height of snapshot data ([e223510](https://github.com/didi/LogicFlow/commit/e2235105899982a2a63c83d613c0268d111deecd))
|
|
1283
|
-
* set anchors id ([17c4105](https://github.com/didi/LogicFlow/commit/17c4105474084b01c656298b30c28d0cd2908a36))
|
|
1284
|
-
* **extension:** support for obtaining snapshot data ([aac9fe0](https://github.com/didi/LogicFlow/commit/aac9fe0fa62573ae43faa5f7473df3761f10d2cc))
|
|
1285
|
-
|
|
1286
|
-
|
|
1287
|
-
|
|
1288
|
-
|
|
1289
|
-
|
|
1290
|
-
## [0.6.8](https://github.com/didi/LogicFlow/compare/@logicflow/extension@0.6.5...@logicflow/extension@0.6.8) (2021-08-06)
|
|
1291
|
-
|
|
1292
|
-
|
|
1293
|
-
### Bug Fixes
|
|
1294
|
-
|
|
1295
|
-
* **extension:** snapshot forginObject in svg fix ([ef937a0](https://github.com/didi/LogicFlow/commit/ef937a08f2f4898b99376d06c25ee57c3f81fda2))
|
|
1296
|
-
|
|
1297
|
-
|
|
1298
|
-
### Features
|
|
1299
|
-
|
|
1300
|
-
* edgemodel support override getTextPosition ([5ede6f2](https://github.com/didi/LogicFlow/commit/5ede6f295c128c5f8c87af789105576f1f04ba57))
|
|
1301
|
-
* set anchors id ([17c4105](https://github.com/didi/LogicFlow/commit/17c4105474084b01c656298b30c28d0cd2908a36))
|
|
1302
|
-
* **extension:** support for obtaining snapshot data ([aac9fe0](https://github.com/didi/LogicFlow/commit/aac9fe0fa62573ae43faa5f7473df3761f10d2cc))
|
|
1303
|
-
|
|
1304
|
-
|
|
1305
|
-
|
|
1306
|
-
|
|
1307
|
-
|
|
1308
|
-
## [0.6.5](https://github.com/towersxu/logicflow/compare/@logicflow/extension@0.6.4...@logicflow/extension@0.6.5) (2021-07-29)
|
|
1309
|
-
|
|
1310
|
-
**Note:** Version bump only for package @logicflow/extension
|
|
1311
|
-
|
|
1312
|
-
|
|
1313
|
-
|
|
1314
|
-
|
|
1315
|
-
|
|
1316
|
-
## [0.6.4](https://github.com/towersxu/logicflow/compare/@logicflow/extension@0.6.2...@logicflow/extension@0.6.4) (2021-07-28)
|
|
1317
|
-
|
|
1318
|
-
**Note:** Version bump only for package @logicflow/extension
|
|
1319
|
-
|
|
1320
|
-
|
|
1321
|
-
|
|
1322
|
-
|
|
1323
|
-
|
|
1324
|
-
## [0.6.3](https://github.com/towersxu/logicflow/compare/@logicflow/extension@0.6.2...@logicflow/extension@0.6.3) (2021-07-28)
|
|
1325
|
-
|
|
1326
|
-
**Note:** Version bump only for package @logicflow/extension
|
|
1327
|
-
|
|
1328
|
-
|
|
1329
|
-
|
|
1330
|
-
|
|
1331
|
-
|
|
1332
|
-
## [0.6.2](https://github.com/towersxu/logicflow/compare/@logicflow/extension@0.6.1...@logicflow/extension@0.6.2) (2021-07-28)
|
|
1333
|
-
|
|
1334
|
-
**Note:** Version bump only for package @logicflow/extension
|
|
1335
|
-
|
|
1336
|
-
|
|
1337
|
-
|
|
1338
|
-
|
|
1339
|
-
|
|
1340
|
-
## [0.6.1](https://github.com/towersxu/logicflow/compare/@logicflow/extension@0.6.0...@logicflow/extension@0.6.1) (2021-07-19)
|
|
935
|
+
# [1.0.0-alpha.3](https://github.com/didi/LogicFlow/compare/@logicflow/extension@1.0.0-alpha.1...@logicflow/extension@1.0.0-alpha.3) (2021-12-09)
|
|
1341
936
|
|
|
1342
937
|
**Note:** Version bump only for package @logicflow/extension
|
|
1343
938
|
|
|
1344
|
-
|
|
1345
|
-
|
|
1346
|
-
|
|
1347
|
-
|
|
1348
|
-
# [0.6.0](https://github.com/towersxu/logicflow/compare/@logicflow/extension@0.4.11...@logicflow/extension@0.6.0) (2021-07-14)
|
|
1349
|
-
|
|
939
|
+
# [1.0.0-alpha.1](https://github.com/didi/LogicFlow/compare/@logicflow/extension@0.7.13...@logicflow/extension@1.0.0-alpha.1) (2021-12-09)
|
|
1350
940
|
|
|
1351
941
|
### Bug Fixes
|
|
1352
942
|
|
|
1353
|
-
|
|
1354
|
-
* use pluginName replace name ([2b2706a](https://github.com/towersxu/logicflow/commit/2b2706a4596eaee5fb6e88328a219ebc9366505c))
|
|
1355
|
-
* 修复control组件某些情况下无法销毁的问题 ([47fc75d](https://github.com/towersxu/logicflow/commit/47fc75dd942cba1c5cd441110b4d4e2e07ffc7a3))
|
|
1356
|
-
* **textension:** rename function getShapeReise to getResizeShape ([88d6d53](https://github.com/towersxu/logicflow/commit/88d6d531dd6232a2abb952468fae0086813bce78))
|
|
1357
|
-
|
|
943
|
+
- version typo ([edc73ed](https://github.com/didi/LogicFlow/commit/edc73ede58859412fa1183fb3237013e4c56e9ad))
|
|
1358
944
|
|
|
1359
945
|
### Features
|
|
1360
946
|
|
|
1361
|
-
|
|
1362
|
-
* **extension:** node resize update ([5434840](https://github.com/towersxu/logicflow/commit/5434840692f741dfb71e385e07f1fe539f3355b1))
|
|
1363
|
-
|
|
1364
|
-
|
|
1365
|
-
|
|
1366
|
-
|
|
1367
|
-
|
|
1368
|
-
# [0.5.0](https://github.com/towersxu/logicflow/compare/@logicflow/extension@0.4.11...@logicflow/extension@0.5.0) (2021-06-18)
|
|
947
|
+
- use loose class properties ([921a09b](https://github.com/didi/LogicFlow/commit/921a09ba4b30a819eb315316e174a7bccfc9ffc8))
|
|
1369
948
|
|
|
949
|
+
## [0.7.13](https://github.com/didi/LogicFlow/compare/@logicflow/extension@0.7.12...@logicflow/extension@0.7.13) (2021-12-09)
|
|
1370
950
|
|
|
1371
951
|
### Bug Fixes
|
|
1372
952
|
|
|
1373
|
-
|
|
1374
|
-
|
|
1375
|
-
|
|
1376
|
-
|
|
953
|
+
- add disabled_delete attr in node-selection ([6b103d5](https://github.com/didi/LogicFlow/commit/6b103d56add41d22e35391627588288cadced47b))
|
|
954
|
+
- add disableNodeSelection callback in node-selection ([de21347](https://github.com/didi/LogicFlow/commit/de21347a9dff06a079ab7fe7ca35dc89f2206538))
|
|
955
|
+
- fix addNodeSelection methods in node-selection plugin ([f75afd4](https://github.com/didi/LogicFlow/commit/f75afd4678de91c11d97aa1c628a0b8417f01ed9))
|
|
1377
956
|
|
|
1378
957
|
### Features
|
|
1379
958
|
|
|
1380
|
-
|
|
1381
|
-
|
|
1382
|
-
|
|
959
|
+
- babel use loose mode ([7fed1fb](https://github.com/didi/LogicFlow/commit/7fed1fb9557e3ac7f6f7fc11ad3afcc1d3d7bad8))
|
|
1383
960
|
|
|
961
|
+
## [0.7.13-alpha.1](https://github.com/didi/LogicFlow/compare/@logicflow/extension@0.7.13-alpha.0...@logicflow/extension@0.7.13-alpha.1) (2021-12-07)
|
|
1384
962
|
|
|
963
|
+
### Features
|
|
1385
964
|
|
|
1386
|
-
|
|
965
|
+
- babel use loose mode ([a48deef](https://github.com/didi/LogicFlow/commit/a48deef1c58e6e8d3f90463082207797fb9b771c))
|
|
1387
966
|
|
|
967
|
+
## [0.7.13-alpha.0](https://github.com/didi/LogicFlow/compare/@logicflow/extension@0.7.12...@logicflow/extension@0.7.13-alpha.0) (2021-12-07)
|
|
1388
968
|
|
|
1389
969
|
### Bug Fixes
|
|
1390
970
|
|
|
1391
|
-
|
|
1392
|
-
* **textension:** rename function getShapeReise to getResizeShape ([88d6d53](https://github.com/towersxu/logicflow/commit/88d6d531dd6232a2abb952468fae0086813bce78))
|
|
971
|
+
- fix addNodeSelection methods in node-selection plugin ([f75afd4](https://github.com/didi/LogicFlow/commit/f75afd4678de91c11d97aa1c628a0b8417f01ed9))
|
|
1393
972
|
|
|
973
|
+
## [0.7.12](https://github.com/didi/LogicFlow/compare/@logicflow/extension@0.7.11...@logicflow/extension@0.7.12) (2021-12-04)
|
|
1394
974
|
|
|
1395
|
-
|
|
975
|
+
**Note:** Version bump only for package @logicflow/extension
|
|
1396
976
|
|
|
1397
|
-
|
|
977
|
+
## [0.7.11](https://github.com/didi/LogicFlow/compare/@logicflow/extension@0.7.10...@logicflow/extension@0.7.11) (2021-11-30)
|
|
1398
978
|
|
|
979
|
+
### Features
|
|
1399
980
|
|
|
981
|
+
- support disabled tool in core package ([1c7527f](https://github.com/didi/LogicFlow/commit/1c7527fc75929c444d9e5fb4b0b70b87086694c8))
|
|
1400
982
|
|
|
983
|
+
## [0.7.10](https://github.com/didi/LogicFlow/compare/@logicflow/extension@0.7.9...@logicflow/extension@0.7.10) (2021-11-26)
|
|
1401
984
|
|
|
985
|
+
### Features
|
|
1402
986
|
|
|
1403
|
-
|
|
987
|
+
- add mind map plugin ([11ae7e0](https://github.com/didi/LogicFlow/commit/11ae7e06f878cb6b8c82f2f73f74e8e4620fecb6))
|
|
988
|
+
- hide mind map ([2aa1120](https://github.com/didi/LogicFlow/commit/2aa112002023b87188c9b132dbeb6c77e92e17bf))
|
|
1404
989
|
|
|
990
|
+
## [0.7.9](https://github.com/didi/LogicFlow/compare/@logicflow/extension@0.7.8...@logicflow/extension@0.7.9) (2021-11-23)
|
|
1405
991
|
|
|
1406
992
|
### Bug Fixes
|
|
1407
993
|
|
|
1408
|
-
|
|
1409
|
-
|
|
1410
|
-
|
|
994
|
+
- context menu edge icon position ([f06ead4](https://github.com/didi/LogicFlow/commit/f06ead4e687498550012e654765430d1fa1f48a2))
|
|
995
|
+
- nodeResize outline bugfix ([8e76f5f](https://github.com/didi/LogicFlow/commit/8e76f5f8e79a18189f48339b85904b06d29cfda2))
|
|
1411
996
|
|
|
1412
997
|
### Features
|
|
1413
998
|
|
|
1414
|
-
|
|
1415
|
-
|
|
1416
|
-
|
|
1417
|
-
|
|
1418
|
-
|
|
1419
|
-
|
|
1420
|
-
## [0.4.13](https://github.com/towersxu/logicflow/compare/@logicflow/extension@0.4.11...@logicflow/extension@0.4.13) (2021-06-09)
|
|
999
|
+
- context-menu use className ([e58eaea](https://github.com/didi/LogicFlow/commit/e58eaea67aaf7c8f420aed849a4f77b753a1bc6c))
|
|
1421
1000
|
|
|
1001
|
+
## [0.7.8](https://github.com/didi/LogicFlow/compare/@logicflow/extension@0.7.7...@logicflow/extension@0.7.8) (2021-11-22)
|
|
1422
1002
|
|
|
1423
1003
|
### Bug Fixes
|
|
1424
1004
|
|
|
1425
|
-
|
|
1426
|
-
|
|
1005
|
+
- nodeResize getResizeShape bugfix ([e617013](https://github.com/didi/LogicFlow/commit/e617013f979cd67dbe438dad141f0eef25690aa2))
|
|
1427
1006
|
|
|
1428
1007
|
### Features
|
|
1429
1008
|
|
|
1430
|
-
|
|
1009
|
+
- export context menu ([f0ff960](https://github.com/didi/LogicFlow/commit/f0ff960a2518cfe0e3f9d2a5abb843b87957def6))
|
|
1431
1010
|
|
|
1011
|
+
## [0.7.7](https://github.com/didi/LogicFlow/compare/@logicflow/extension@0.7.6...@logicflow/extension@0.7.7) (2021-11-19)
|
|
1432
1012
|
|
|
1013
|
+
### Features
|
|
1433
1014
|
|
|
1015
|
+
- add context menu plugin ([8c5d7a8](https://github.com/didi/LogicFlow/commit/8c5d7a84309ba8d07fbbb99dcebcae81b521bd06))
|
|
1434
1016
|
|
|
1017
|
+
## [0.7.6](https://github.com/didi/LogicFlow/compare/@logicflow/extension@0.7.5...@logicflow/extension@0.7.6) (2021-11-11)
|
|
1435
1018
|
|
|
1436
|
-
|
|
1019
|
+
### Bug Fixes
|
|
1437
1020
|
|
|
1438
|
-
|
|
1021
|
+
- minimap become invisible when repeat init ([ad488fd](https://github.com/didi/LogicFlow/commit/ad488fde9041834e9e809eb38904c013751d9cc8))
|
|
1439
1022
|
|
|
1023
|
+
## [0.7.5](https://github.com/didi/LogicFlow/compare/@logicflow/extension@0.7.4...@logicflow/extension@0.7.5) (2021-11-08)
|
|
1440
1024
|
|
|
1025
|
+
**Note:** Version bump only for package @logicflow/extension
|
|
1441
1026
|
|
|
1027
|
+
## [0.7.4](https://github.com/didi/LogicFlow/compare/@logicflow/extension@0.7.3...@logicflow/extension@0.7.4) (2021-11-04)
|
|
1442
1028
|
|
|
1029
|
+
**Note:** Version bump only for package @logicflow/extension
|
|
1443
1030
|
|
|
1444
|
-
## [0.
|
|
1031
|
+
## [0.7.3](https://github.com/didi/LogicFlow/compare/@logicflow/extension@0.7.2...@logicflow/extension@0.7.3) (2021-11-03)
|
|
1445
1032
|
|
|
1446
1033
|
**Note:** Version bump only for package @logicflow/extension
|
|
1447
1034
|
|
|
1035
|
+
## [0.7.2](https://github.com/didi/LogicFlow/compare/@logicflow/extension@0.7.1...@logicflow/extension@0.7.2) (2021-10-22)
|
|
1448
1036
|
|
|
1037
|
+
**Note:** Version bump only for package @logicflow/extension
|
|
1449
1038
|
|
|
1039
|
+
## [0.7.1](https://github.com/didi/LogicFlow/compare/@logicflow/extension@0.7.1-alpha.0...@logicflow/extension@0.7.1) (2021-10-21)
|
|
1450
1040
|
|
|
1041
|
+
**Note:** Version bump only for package @logicflow/extension
|
|
1451
1042
|
|
|
1452
|
-
## [0.
|
|
1043
|
+
## [0.7.1-alpha.0](https://github.com/didi/LogicFlow/compare/@logicflow/extension@0.6.16...@logicflow/extension@0.7.1-alpha.0) (2021-10-21)
|
|
1453
1044
|
|
|
1045
|
+
## 0.7.1-alpha.0 (2021-10-21)
|
|
1454
1046
|
|
|
1455
1047
|
### Bug Fixes
|
|
1456
1048
|
|
|
1457
|
-
|
|
1049
|
+
- format bpmn xml ([e3c9159](https://github.com/didi/LogicFlow/commit/e3c91599ced342ac64d92f54228bf8145cf52378))
|
|
1458
1050
|
|
|
1051
|
+
### Features
|
|
1459
1052
|
|
|
1053
|
+
- add increase overlap mode ([06068e4](https://github.com/didi/LogicFlow/commit/06068e4caa11544b709697d101063838020dc4d1))
|
|
1054
|
+
- avoid add id in dom ([37cccb6](https://github.com/didi/LogicFlow/commit/37cccb6fc75451b25254c1ccda4c581f2bb5ce51)), closes [#309](https://github.com/didi/LogicFlow/issues/309)
|
|
1055
|
+
- remove object attributes ([a242500](https://github.com/didi/LogicFlow/commit/a242500edf2e2e197cd0a015d2e490e474ff585e))
|
|
1460
1056
|
|
|
1057
|
+
## [0.6.16](https://github.com/didi/LogicFlow/compare/@logicflow/extension@0.6.13...@logicflow/extension@0.6.16) (2021-09-04)
|
|
1461
1058
|
|
|
1059
|
+
### Bug Fixes
|
|
1462
1060
|
|
|
1463
|
-
|
|
1061
|
+
- **examples:** modified examples page title ([3a9ae5e](https://github.com/didi/LogicFlow/commit/3a9ae5ed100405378ed468574ca61445bef44035))
|
|
1062
|
+
- **extension:** snapshot bugfix after zooming ([c23c0fa](https://github.com/didi/LogicFlow/commit/c23c0fa2d8ec0825f4319def7b98388cc3a09997))
|
|
1464
1063
|
|
|
1064
|
+
## [0.6.13](https://github.com/didi/LogicFlow/compare/@logicflow/extension@0.6.12...@logicflow/extension@0.6.13) (2021-08-19)
|
|
1465
1065
|
|
|
1466
1066
|
### Bug Fixes
|
|
1467
1067
|
|
|
1468
|
-
|
|
1469
|
-
|
|
1470
|
-
|
|
1068
|
+
- **extension:** init isDefalutStopMoveGraph of SelectionSelect ([88ec07b](https://github.com/didi/LogicFlow/commit/88ec07bb5d4d7ae6e242e68e46e4bc4278f5a17e))
|
|
1471
1069
|
|
|
1070
|
+
### Features
|
|
1472
1071
|
|
|
1072
|
+
- group ([2c75b81](https://github.com/didi/LogicFlow/commit/2c75b810d2bda185e37e029a5fe28503f299e412))
|
|
1073
|
+
- merge master ([cead588](https://github.com/didi/LogicFlow/commit/cead5887df27bd7624c46000966257a73b5a95e0))
|
|
1074
|
+
- mvp demo ([12d5e96](https://github.com/didi/LogicFlow/commit/12d5e9684bad4a465e1b57a1217aceed73453d59))
|
|
1075
|
+
- 增加移动节点跳过校验规则功能 ([659b83e](https://github.com/didi/LogicFlow/commit/659b83eb8ab6c8f3a1f60333e11e24777795a14b))
|
|
1473
1076
|
|
|
1474
|
-
## [0.
|
|
1077
|
+
## [0.6.12](https://github.com/didi/LogicFlow/compare/@logicflow/extension@0.6.5...@logicflow/extension@0.6.12) (2021-08-17)
|
|
1475
1078
|
|
|
1476
|
-
|
|
1079
|
+
### Bug Fixes
|
|
1477
1080
|
|
|
1081
|
+
- **extension:** snapshot forginObject in svg fix ([ef937a0](https://github.com/didi/LogicFlow/commit/ef937a08f2f4898b99376d06c25ee57c3f81fda2))
|
|
1478
1082
|
|
|
1083
|
+
### Features
|
|
1479
1084
|
|
|
1085
|
+
- add custom TextPosition ([352047d](https://github.com/didi/LogicFlow/commit/352047d942cc505f36272ba1a64bae33c13b5897))
|
|
1086
|
+
- edgemodel support override getTextPosition ([5ede6f2](https://github.com/didi/LogicFlow/commit/5ede6f295c128c5f8c87af789105576f1f04ba57))
|
|
1087
|
+
- increase width and height of snapshot data ([e223510](https://github.com/didi/LogicFlow/commit/e2235105899982a2a63c83d613c0268d111deecd))
|
|
1088
|
+
- set anchors id ([17c4105](https://github.com/didi/LogicFlow/commit/17c4105474084b01c656298b30c28d0cd2908a36))
|
|
1089
|
+
- **extension:** support for obtaining snapshot data ([aac9fe0](https://github.com/didi/LogicFlow/commit/aac9fe0fa62573ae43faa5f7473df3761f10d2cc))
|
|
1480
1090
|
|
|
1091
|
+
## [0.6.8](https://github.com/didi/LogicFlow/compare/@logicflow/extension@0.6.5...@logicflow/extension@0.6.8) (2021-08-06)
|
|
1481
1092
|
|
|
1482
|
-
|
|
1093
|
+
### Bug Fixes
|
|
1483
1094
|
|
|
1095
|
+
- **extension:** snapshot forginObject in svg fix ([ef937a0](https://github.com/didi/LogicFlow/commit/ef937a08f2f4898b99376d06c25ee57c3f81fda2))
|
|
1484
1096
|
|
|
1485
1097
|
### Features
|
|
1486
1098
|
|
|
1487
|
-
|
|
1488
|
-
|
|
1489
|
-
|
|
1099
|
+
- edgemodel support override getTextPosition ([5ede6f2](https://github.com/didi/LogicFlow/commit/5ede6f295c128c5f8c87af789105576f1f04ba57))
|
|
1100
|
+
- set anchors id ([17c4105](https://github.com/didi/LogicFlow/commit/17c4105474084b01c656298b30c28d0cd2908a36))
|
|
1101
|
+
- **extension:** support for obtaining snapshot data ([aac9fe0](https://github.com/didi/LogicFlow/commit/aac9fe0fa62573ae43faa5f7473df3761f10d2cc))
|
|
1490
1102
|
|
|
1103
|
+
## [0.6.5](https://github.com/towersxu/logicflow/compare/@logicflow/extension@0.6.4...@logicflow/extension@0.6.5) (2021-07-29)
|
|
1491
1104
|
|
|
1105
|
+
**Note:** Version bump only for package @logicflow/extension
|
|
1492
1106
|
|
|
1493
|
-
## [0.4
|
|
1107
|
+
## [0.6.4](https://github.com/towersxu/logicflow/compare/@logicflow/extension@0.6.2...@logicflow/extension@0.6.4) (2021-07-28)
|
|
1494
1108
|
|
|
1495
1109
|
**Note:** Version bump only for package @logicflow/extension
|
|
1496
1110
|
|
|
1111
|
+
## [0.6.3](https://github.com/towersxu/logicflow/compare/@logicflow/extension@0.6.2...@logicflow/extension@0.6.3) (2021-07-28)
|
|
1497
1112
|
|
|
1113
|
+
**Note:** Version bump only for package @logicflow/extension
|
|
1498
1114
|
|
|
1115
|
+
## [0.6.2](https://github.com/towersxu/logicflow/compare/@logicflow/extension@0.6.1...@logicflow/extension@0.6.2) (2021-07-28)
|
|
1499
1116
|
|
|
1117
|
+
**Note:** Version bump only for package @logicflow/extension
|
|
1500
1118
|
|
|
1501
|
-
## [0.
|
|
1119
|
+
## [0.6.1](https://github.com/towersxu/logicflow/compare/@logicflow/extension@0.6.0...@logicflow/extension@0.6.1) (2021-07-19)
|
|
1502
1120
|
|
|
1121
|
+
**Note:** Version bump only for package @logicflow/extension
|
|
1503
1122
|
|
|
1504
|
-
|
|
1123
|
+
# [0.6.0](https://github.com/towersxu/logicflow/compare/@logicflow/extension@0.4.11...@logicflow/extension@0.6.0) (2021-07-14)
|
|
1505
1124
|
|
|
1506
|
-
|
|
1125
|
+
### Bug Fixes
|
|
1507
1126
|
|
|
1127
|
+
- new selection select ([4fc34d4](https://github.com/towersxu/logicflow/commit/4fc34d41e1000629362c141a8c6a2eb033ecf17d))
|
|
1128
|
+
- use pluginName replace name ([2b2706a](https://github.com/towersxu/logicflow/commit/2b2706a4596eaee5fb6e88328a219ebc9366505c))
|
|
1129
|
+
- 修复control组件某些情况下无法销毁的问题 ([47fc75d](https://github.com/towersxu/logicflow/commit/47fc75dd942cba1c5cd441110b4d4e2e07ffc7a3))
|
|
1130
|
+
- **textension:** rename function getShapeReise to getResizeShape ([88d6d53](https://github.com/towersxu/logicflow/commit/88d6d531dd6232a2abb952468fae0086813bce78))
|
|
1508
1131
|
|
|
1132
|
+
### Features
|
|
1509
1133
|
|
|
1134
|
+
- 解决bpmn element 导出model和view存在的问题 ([c6a259a](https://github.com/towersxu/logicflow/commit/c6a259af7af307795ab6b07d1a23c5208b6a89e4))
|
|
1135
|
+
- **extension:** node resize update ([5434840](https://github.com/towersxu/logicflow/commit/5434840692f741dfb71e385e07f1fe539f3355b1))
|
|
1510
1136
|
|
|
1137
|
+
# [0.5.0](https://github.com/towersxu/logicflow/compare/@logicflow/extension@0.4.11...@logicflow/extension@0.5.0) (2021-06-18)
|
|
1511
1138
|
|
|
1512
|
-
|
|
1139
|
+
### Bug Fixes
|
|
1513
1140
|
|
|
1141
|
+
- use pluginName replace name ([8bf1a08](https://github.com/towersxu/logicflow/commit/8bf1a0892e61f619204b7b621902f36f9ad3e204))
|
|
1142
|
+
- 修复control组件某些情况下无法销毁的问题 ([47fc75d](https://github.com/towersxu/logicflow/commit/47fc75dd942cba1c5cd441110b4d4e2e07ffc7a3))
|
|
1143
|
+
- **textension:** rename function getShapeReise to getResizeShape ([88d6d53](https://github.com/towersxu/logicflow/commit/88d6d531dd6232a2abb952468fae0086813bce78))
|
|
1514
1144
|
|
|
1515
1145
|
### Features
|
|
1516
1146
|
|
|
1517
|
-
|
|
1518
|
-
* **docs:** add docs for NodeResize ([2a629bc](https://github.com/towersxu/logicflow/commit/2a629bc77641a88d63dbb3263f60b85a26bf227c))
|
|
1147
|
+
- **extension:** node resize update ([5434840](https://github.com/towersxu/logicflow/commit/5434840692f741dfb71e385e07f1fe539f3355b1))
|
|
1519
1148
|
|
|
1149
|
+
## [0.4.15](https://github.com/towersxu/logicflow/compare/@logicflow/extension@0.4.11...@logicflow/extension@0.4.15) (2021-06-17)
|
|
1520
1150
|
|
|
1151
|
+
### Bug Fixes
|
|
1521
1152
|
|
|
1153
|
+
- 修复control组件某些情况下无法销毁的问题 ([47fc75d](https://github.com/towersxu/logicflow/commit/47fc75dd942cba1c5cd441110b4d4e2e07ffc7a3))
|
|
1154
|
+
- **textension:** rename function getShapeReise to getResizeShape ([88d6d53](https://github.com/towersxu/logicflow/commit/88d6d531dd6232a2abb952468fae0086813bce78))
|
|
1522
1155
|
|
|
1156
|
+
### Features
|
|
1523
1157
|
|
|
1524
|
-
|
|
1158
|
+
- **extension:** node resize update ([5434840](https://github.com/towersxu/logicflow/commit/5434840692f741dfb71e385e07f1fe539f3355b1))
|
|
1525
1159
|
|
|
1160
|
+
## [0.4.14](https://github.com/towersxu/logicflow/compare/@logicflow/extension@0.4.11...@logicflow/extension@0.4.14) (2021-06-16)
|
|
1526
1161
|
|
|
1527
1162
|
### Bug Fixes
|
|
1528
1163
|
|
|
1529
|
-
|
|
1530
|
-
|
|
1531
|
-
* typo ([5326634](https://github.com/towersxu/logicflow/commit/5326634b74768b6d630e83279983a68d1265fa83))
|
|
1532
|
-
|
|
1164
|
+
- 修复control组件某些情况下无法销毁的问题 ([4f2875d](https://github.com/towersxu/logicflow/commit/4f2875d601d0c959d70861fc2c901748f7c75616))
|
|
1165
|
+
- **textension:** rename function getShapeReise to getResizeShape ([88d6d53](https://github.com/towersxu/logicflow/commit/88d6d531dd6232a2abb952468fae0086813bce78))
|
|
1533
1166
|
|
|
1534
1167
|
### Features
|
|
1535
1168
|
|
|
1536
|
-
|
|
1537
|
-
|
|
1538
|
-
|
|
1169
|
+
- **extension:** node resize update ([5434840](https://github.com/towersxu/logicflow/commit/5434840692f741dfb71e385e07f1fe539f3355b1))
|
|
1539
1170
|
|
|
1171
|
+
## [0.4.13](https://github.com/towersxu/logicflow/compare/@logicflow/extension@0.4.11...@logicflow/extension@0.4.13) (2021-06-09)
|
|
1540
1172
|
|
|
1173
|
+
### Bug Fixes
|
|
1541
1174
|
|
|
1542
|
-
|
|
1175
|
+
- **textension:** rename function getShapeReise to getResizeShape ([88d6d53](https://github.com/towersxu/logicflow/commit/88d6d531dd6232a2abb952468fae0086813bce78))
|
|
1543
1176
|
|
|
1177
|
+
### Features
|
|
1544
1178
|
|
|
1545
|
-
|
|
1179
|
+
- **extension:** node resize update ([5434840](https://github.com/towersxu/logicflow/commit/5434840692f741dfb71e385e07f1fe539f3355b1))
|
|
1546
1180
|
|
|
1547
|
-
|
|
1548
|
-
* change the points type ([766c34b](https://github.com/towersxu/logicflow/commit/766c34b1276b3c0221bf0aeb6e7b7716e3b362dc))
|
|
1549
|
-
* loop path unique ([dc88286](https://github.com/towersxu/logicflow/commit/dc88286ea09cb00b2b64e5d4ab5a751d2fdae03e))
|
|
1550
|
-
* occasionally read isAllPass of undefined ([dac3d41](https://github.com/towersxu/logicflow/commit/dac3d4118aff2699497512ca799912deaa0b4930))
|
|
1551
|
-
* types ([a49bf16](https://github.com/towersxu/logicflow/commit/a49bf16e8ee994f1bacc4015deb054a9eeb44895))
|
|
1552
|
-
* update registerElement API in extension ([df25d11](https://github.com/towersxu/logicflow/commit/df25d110eee7051ee9357b11f669d80a3de1e0ea))
|
|
1181
|
+
## [0.4.12](https://github.com/towersxu/logicflow/compare/@logicflow/extension@0.4.11...@logicflow/extension@0.4.12) (2021-05-31)
|
|
1553
1182
|
|
|
1183
|
+
**Note:** Version bump only for package @logicflow/extension
|
|
1554
1184
|
|
|
1555
|
-
|
|
1185
|
+
## [0.4.11](https://github.com/towersxu/logicflow/compare/@logicflow/extension@0.4.10...@logicflow/extension@0.4.11) (2021-05-31)
|
|
1556
1186
|
|
|
1557
|
-
|
|
1558
|
-
* auto layout tmp ([ac58232](https://github.com/towersxu/logicflow/commit/ac58232150d58bd655b9e2180df9b545fbf46c0c))
|
|
1559
|
-
* register support config ([074c584](https://github.com/towersxu/logicflow/commit/074c58443df30b8d0a0beeee8deb1d0866f90f66))
|
|
1560
|
-
* support class as extension ([ac66e9f](https://github.com/towersxu/logicflow/commit/ac66e9ffd6709a605c48b61281be102429524b82))
|
|
1561
|
-
* support ie11 ([46df695](https://github.com/towersxu/logicflow/commit/46df6951b1af5b1e46bea4ed084aa6abd5ebddf0))
|
|
1562
|
-
* support keep path id ([65c42e6](https://github.com/towersxu/logicflow/commit/65c42e6820ee512d2527e999304d03a8a5c48713))
|
|
1563
|
-
* **extension:** node resize ([35e3a0a](https://github.com/towersxu/logicflow/commit/35e3a0a4291fea87fe55238d1ca377664b2676ed))
|
|
1564
|
-
* **extension:** rect node resize ([399afb5](https://github.com/towersxu/logicflow/commit/399afb545b421345ca3ea823d60f2d47db1e0d72))
|
|
1187
|
+
**Note:** Version bump only for package @logicflow/extension
|
|
1565
1188
|
|
|
1189
|
+
## [0.4.10](https://github.com/towersxu/logicflow/compare/@logicflow/extension@0.4.9...@logicflow/extension@0.4.10) (2021-05-28)
|
|
1566
1190
|
|
|
1191
|
+
### Bug Fixes
|
|
1567
1192
|
|
|
1193
|
+
- use Control. \_\_tool ([c739586](https://github.com/towersxu/logicflow/commit/c739586dd261ead077b2c86fefb7c6cc726b6f33))
|
|
1568
1194
|
|
|
1195
|
+
## [0.4.9](https://github.com/towersxu/logicflow/compare/@logicflow/extension@0.4.7...@logicflow/extension@0.4.9) (2021-05-28)
|
|
1569
1196
|
|
|
1570
|
-
|
|
1197
|
+
### Bug Fixes
|
|
1571
1198
|
|
|
1199
|
+
- extension destroy domContainer is undefined ([6f8fe13](https://github.com/towersxu/logicflow/commit/6f8fe1379aa5307ef2ba48bfb6d5072dfa132f33))
|
|
1572
1200
|
|
|
1573
|
-
|
|
1201
|
+
## [0.4.8](https://github.com/towersxu/logicflow/compare/@logicflow/extension@0.4.7...@logicflow/extension@0.4.8) (2021-05-25)
|
|
1574
1202
|
|
|
1575
|
-
|
|
1576
|
-
* occasionally read isAllPass of undefined ([e413970](https://github.com/towersxu/logicflow/commit/e41397064f208c8f9daa76399397a69bdf4a133f))
|
|
1577
|
-
* types ([601777a](https://github.com/towersxu/logicflow/commit/601777a2717056e9b2aff48e631d4de4d2aa1718))
|
|
1578
|
-
* **extension:** merge v0.4 ([3ce2a7c](https://github.com/towersxu/logicflow/commit/3ce2a7c13e02828c701b523135c0275011c592c8))
|
|
1203
|
+
**Note:** Version bump only for package @logicflow/extension
|
|
1579
1204
|
|
|
1205
|
+
## [0.4.7](https://github.com/towersxu/logicflow/compare/@logicflow/extension@0.4.4...@logicflow/extension@0.4.7) (2021-05-24)
|
|
1580
1206
|
|
|
1581
1207
|
### Features
|
|
1582
1208
|
|
|
1583
|
-
|
|
1584
|
-
* auto layout tmp ([356214e](https://github.com/towersxu/logicflow/commit/356214e6e202601769b93bb1ead137e3ce674939))
|
|
1585
|
-
* support class as extension ([e3c40d1](https://github.com/towersxu/logicflow/commit/e3c40d1e3e648b58597f33cb8330b42ce6d76079))
|
|
1586
|
-
* support keep path id ([8713aaf](https://github.com/towersxu/logicflow/commit/8713aafc3968601eb2486ca2df6fd95d7986ea52))
|
|
1587
|
-
* **extension:** node resize ([5e2577c](https://github.com/towersxu/logicflow/commit/5e2577cd87d81c036fd5bbff174959b58b6c88ef))
|
|
1588
|
-
* **extension:** rect node resize ([9d25526](https://github.com/towersxu/logicflow/commit/9d25526c8bdbf0a64ecf4b66d5b755e498ccc2cd))
|
|
1209
|
+
- 自定义节点model支持获取graphModel ([4ae15aa](https://github.com/towersxu/logicflow/commit/4ae15aa243ae91184145be0df0cbb42baeb88de4))
|
|
1589
1210
|
|
|
1211
|
+
## [0.4.6](https://github.com/towersxu/logicflow/compare/@logicflow/extension@0.4.5...@logicflow/extension@0.4.6) (2021-05-21)
|
|
1590
1212
|
|
|
1213
|
+
**Note:** Version bump only for package @logicflow/extension
|
|
1591
1214
|
|
|
1215
|
+
## [0.4.5](https://github.com/towersxu/logicflow/compare/@logicflow/extension@0.4.4...@logicflow/extension@0.4.5) (2021-05-21)
|
|
1592
1216
|
|
|
1217
|
+
### Features
|
|
1593
1218
|
|
|
1594
|
-
|
|
1219
|
+
- 自定义节点model支持获取graphModel ([71927f6](https://github.com/towersxu/logicflow/commit/71927f6947d27422bb0157898271d18d9ed2c84b))
|
|
1595
1220
|
|
|
1221
|
+
## [0.4.4](https://github.com/towersxu/logicflow/compare/@logicflow/extension@0.4.3...@logicflow/extension@0.4.4) (2021-05-19)
|
|
1596
1222
|
|
|
1597
1223
|
### Features
|
|
1598
1224
|
|
|
1599
|
-
|
|
1600
|
-
|
|
1601
|
-
* support keep path id ([fc7d3a8](https://github.com/towersxu/logicflow/commit/fc7d3a8917c0871d7e5b55f200a67cd41f0537fc))
|
|
1225
|
+
- dndpanel support properties, related [#181](https://github.com/towersxu/logicflow/issues/181) ([765416c](https://github.com/towersxu/logicflow/commit/765416c6051559f529cb5af1fe9d5d14304f3cf1))
|
|
1226
|
+
- **docs:** add docs for NodeResize ([2a629bc](https://github.com/towersxu/logicflow/commit/2a629bc77641a88d63dbb3263f60b85a26bf227c))
|
|
1602
1227
|
|
|
1228
|
+
## [0.4.3](https://github.com/towersxu/logicflow/compare/@logicflow/extension@0.4.2...@logicflow/extension@0.4.3) (2021-05-16)
|
|
1603
1229
|
|
|
1230
|
+
### Bug Fixes
|
|
1604
1231
|
|
|
1232
|
+
- polygon case error ([6c6e821](https://github.com/towersxu/logicflow/commit/6c6e821fb5fbc2d678235264b8caca42c97f44d2))
|
|
1233
|
+
- remove unnecessary console ([102bd81](https://github.com/towersxu/logicflow/commit/102bd8179d5dd5f84e677ad39b209f49d2ee3a1b))
|
|
1234
|
+
- typo ([5326634](https://github.com/towersxu/logicflow/commit/5326634b74768b6d630e83279983a68d1265fa83))
|
|
1605
1235
|
|
|
1236
|
+
### Features
|
|
1606
1237
|
|
|
1607
|
-
|
|
1238
|
+
- **extension:** endEvent node hide anchor ([6e2333f](https://github.com/towersxu/logicflow/commit/6e2333f2af8a214530a2c2ed3c1dc5597fcd68f1))
|
|
1608
1239
|
|
|
1240
|
+
## [0.4.2](https://github.com/towersxu/logicflow/compare/@logicflow/extension@0.3.6...@logicflow/extension@0.4.2) (2021-05-13)
|
|
1609
1241
|
|
|
1610
1242
|
### Bug Fixes
|
|
1611
1243
|
|
|
1612
|
-
|
|
1613
|
-
|
|
1614
|
-
|
|
1244
|
+
- build support ie ([4a90d5e](https://github.com/towersxu/logicflow/commit/4a90d5e0bb20f8dfd2f4ab88db5c691894521298))
|
|
1245
|
+
- change the points type ([766c34b](https://github.com/towersxu/logicflow/commit/766c34b1276b3c0221bf0aeb6e7b7716e3b362dc))
|
|
1246
|
+
- loop path unique ([dc88286](https://github.com/towersxu/logicflow/commit/dc88286ea09cb00b2b64e5d4ab5a751d2fdae03e))
|
|
1247
|
+
- occasionally read isAllPass of undefined ([dac3d41](https://github.com/towersxu/logicflow/commit/dac3d4118aff2699497512ca799912deaa0b4930))
|
|
1248
|
+
- types ([a49bf16](https://github.com/towersxu/logicflow/commit/a49bf16e8ee994f1bacc4015deb054a9eeb44895))
|
|
1249
|
+
- update registerElement API in extension ([df25d11](https://github.com/towersxu/logicflow/commit/df25d110eee7051ee9357b11f669d80a3de1e0ea))
|
|
1615
1250
|
|
|
1616
1251
|
### Features
|
|
1617
1252
|
|
|
1618
|
-
|
|
1619
|
-
|
|
1253
|
+
- add get flow path extension ([6a15d11](https://github.com/towersxu/logicflow/commit/6a15d110b83f92b0c147cb6935735f5345090f7f))
|
|
1254
|
+
- auto layout tmp ([ac58232](https://github.com/towersxu/logicflow/commit/ac58232150d58bd655b9e2180df9b545fbf46c0c))
|
|
1255
|
+
- register support config ([074c584](https://github.com/towersxu/logicflow/commit/074c58443df30b8d0a0beeee8deb1d0866f90f66))
|
|
1256
|
+
- support class as extension ([ac66e9f](https://github.com/towersxu/logicflow/commit/ac66e9ffd6709a605c48b61281be102429524b82))
|
|
1257
|
+
- support ie11 ([46df695](https://github.com/towersxu/logicflow/commit/46df6951b1af5b1e46bea4ed084aa6abd5ebddf0))
|
|
1258
|
+
- support keep path id ([65c42e6](https://github.com/towersxu/logicflow/commit/65c42e6820ee512d2527e999304d03a8a5c48713))
|
|
1259
|
+
- **extension:** node resize ([35e3a0a](https://github.com/towersxu/logicflow/commit/35e3a0a4291fea87fe55238d1ca377664b2676ed))
|
|
1260
|
+
- **extension:** rect node resize ([399afb5](https://github.com/towersxu/logicflow/commit/399afb545b421345ca3ea823d60f2d47db1e0d72))
|
|
1620
1261
|
|
|
1262
|
+
## [0.4.1-alpha.1](https://github.com/towersxu/logicflow/compare/@logicflow/extension@0.4.0...@logicflow/extension@0.4.1-alpha.1) (2021-05-12)
|
|
1621
1263
|
|
|
1264
|
+
### Bug Fixes
|
|
1622
1265
|
|
|
1266
|
+
- loop path unique ([64d4023](https://github.com/towersxu/logicflow/commit/64d4023ccc822861d5fc4160222d02c0c2e5b814))
|
|
1267
|
+
- occasionally read isAllPass of undefined ([e413970](https://github.com/towersxu/logicflow/commit/e41397064f208c8f9daa76399397a69bdf4a133f))
|
|
1268
|
+
- types ([601777a](https://github.com/towersxu/logicflow/commit/601777a2717056e9b2aff48e631d4de4d2aa1718))
|
|
1269
|
+
- **extension:** merge v0.4 ([3ce2a7c](https://github.com/towersxu/logicflow/commit/3ce2a7c13e02828c701b523135c0275011c592c8))
|
|
1623
1270
|
|
|
1271
|
+
### Features
|
|
1624
1272
|
|
|
1625
|
-
|
|
1273
|
+
- add get flow path extension ([251fc88](https://github.com/towersxu/logicflow/commit/251fc88d801000c5854da8cd1b85d55a52f82c96))
|
|
1274
|
+
- auto layout tmp ([356214e](https://github.com/towersxu/logicflow/commit/356214e6e202601769b93bb1ead137e3ce674939))
|
|
1275
|
+
- support class as extension ([e3c40d1](https://github.com/towersxu/logicflow/commit/e3c40d1e3e648b58597f33cb8330b42ce6d76079))
|
|
1276
|
+
- support keep path id ([8713aaf](https://github.com/towersxu/logicflow/commit/8713aafc3968601eb2486ca2df6fd95d7986ea52))
|
|
1277
|
+
- **extension:** node resize ([5e2577c](https://github.com/towersxu/logicflow/commit/5e2577cd87d81c036fd5bbff174959b58b6c88ef))
|
|
1278
|
+
- **extension:** rect node resize ([9d25526](https://github.com/towersxu/logicflow/commit/9d25526c8bdbf0a64ecf4b66d5b755e498ccc2cd))
|
|
1626
1279
|
|
|
1280
|
+
## [0.4.1-alpha.0](https://github.com/towersxu/logicflow/compare/@logicflow/extension@0.4.0...@logicflow/extension@0.4.1-alpha.0) (2021-05-06)
|
|
1627
1281
|
|
|
1628
1282
|
### Features
|
|
1629
1283
|
|
|
1630
|
-
|
|
1284
|
+
- add get flow path extension ([a56dd9a](https://github.com/towersxu/logicflow/commit/a56dd9a820c06d6c7036f044c643468d3592c336))
|
|
1285
|
+
- support class as extension ([e3c40d1](https://github.com/towersxu/logicflow/commit/e3c40d1e3e648b58597f33cb8330b42ce6d76079))
|
|
1286
|
+
- support keep path id ([fc7d3a8](https://github.com/towersxu/logicflow/commit/fc7d3a8917c0871d7e5b55f200a67cd41f0537fc))
|
|
1631
1287
|
|
|
1288
|
+
# [0.4.0](https://github.com/towersxu/logicflow/compare/@logicflow/extension@0.3.6...@logicflow/extension@0.4.0) (2021-04-30)
|
|
1632
1289
|
|
|
1290
|
+
### Bug Fixes
|
|
1633
1291
|
|
|
1292
|
+
- change the points type ([a845deb](https://github.com/towersxu/logicflow/commit/a845debe66c734ea248718c79379f45af84f2a4b))
|
|
1293
|
+
- update registerElement API in extension ([7798dbb](https://github.com/towersxu/logicflow/commit/7798dbbeef4b4d021d02b5d21d55f81ef7161d1e))
|
|
1634
1294
|
|
|
1295
|
+
### Features
|
|
1635
1296
|
|
|
1636
|
-
|
|
1297
|
+
- register support config ([cae7c98](https://github.com/towersxu/logicflow/commit/cae7c9807eff77fcad9de2907c286c03b01b6aa9))
|
|
1298
|
+
- support ie11 ([902e813](https://github.com/towersxu/logicflow/commit/902e81394a2d5945d7ceecfee58875f57f938fc8))
|
|
1637
1299
|
|
|
1300
|
+
## [0.3.6](https://github.com/towersxu/logicflow/compare/@logicflow/extension@0.3.4...@logicflow/extension@0.3.6) (2021-04-29)
|
|
1638
1301
|
|
|
1639
1302
|
### Features
|
|
1640
1303
|
|
|
1641
|
-
|
|
1642
|
-
|
|
1304
|
+
- **extension:** drop node in polyline ([94480ac](https://github.com/towersxu/logicflow/commit/94480ac5b2b8d989a2310a3b4c25e08abe9d10b6))
|
|
1643
1305
|
|
|
1306
|
+
## [0.3.5](https://github.com/towersxu/logicflow/compare/@logicflow/extension@0.3.4...@logicflow/extension@0.3.5) (2021-04-29)
|
|
1644
1307
|
|
|
1308
|
+
### Features
|
|
1645
1309
|
|
|
1310
|
+
- **extension:** drop node in polyline ([94480ac](https://github.com/towersxu/logicflow/commit/94480ac5b2b8d989a2310a3b4c25e08abe9d10b6))
|
|
1646
1311
|
|
|
1647
1312
|
## [0.3.4](https://github.com/towersxu/logicflow/compare/@logicflow/extension@0.3.3...@logicflow/extension@0.3.4) (2021-04-22)
|
|
1648
1313
|
|
|
1649
|
-
|
|
1650
1314
|
### Bug Fixes
|
|
1651
1315
|
|
|
1652
|
-
|
|
1653
|
-
|
|
1654
|
-
|
|
1655
|
-
|
|
1656
|
-
|
|
1316
|
+
- unexpect text position ([7559183](https://github.com/towersxu/logicflow/commit/7559183b1d218317cfe83396dc065b803362a948))
|
|
1657
1317
|
|
|
1658
1318
|
## [0.3.3](https://github.com/towersxu/logicflow/compare/@logicflow/extension@0.3.2...@logicflow/extension@0.3.3) (2021-04-21)
|
|
1659
1319
|
|
|
1660
|
-
|
|
1661
1320
|
### Bug Fixes
|
|
1662
1321
|
|
|
1663
|
-
|
|
1664
|
-
|
|
1665
|
-
|
|
1666
|
-
|
|
1667
|
-
|
|
1668
|
-
|
|
1669
|
-
|
|
1322
|
+
- avoid reObserver view ([996fd65](https://github.com/towersxu/logicflow/commit/996fd6515d78b5331b08fd84025a148b45026cd9))
|
|
1323
|
+
- bpmn exclusive gateway element text position ([baff6fe](https://github.com/towersxu/logicflow/commit/baff6fe2ffa1822791785470d55fbb49c048f9c6))
|
|
1324
|
+
- types ([37491ca](https://github.com/towersxu/logicflow/commit/37491cab07d7712aa4b94326424af3ded5031f75))
|
|
1670
1325
|
|
|
1671
1326
|
## [0.3.2](https://github.com/towersxu/logicflow/compare/@logicflow/extension@0.3.1...@logicflow/extension@0.3.2) (2021-04-20)
|
|
1672
1327
|
|
|
1673
|
-
|
|
1674
1328
|
### Bug Fixes
|
|
1675
1329
|
|
|
1676
|
-
|
|
1677
|
-
|
|
1678
|
-
|
|
1679
|
-
|
|
1680
|
-
|
|
1330
|
+
- show anchors when extend baseNode ([12bd0db](https://github.com/towersxu/logicflow/commit/12bd0db574b18b19aed8134b9e508f3c0a9ef6f4))
|
|
1681
1331
|
|
|
1682
1332
|
## [0.3.1](https://github.com/towersxu/logicflow/compare/@logicflow/extension@0.3.0...@logicflow/extension@0.3.1) (2021-04-19)
|
|
1683
1333
|
|
|
1684
|
-
|
|
1685
1334
|
### Bug Fixes
|
|
1686
1335
|
|
|
1687
|
-
|
|
1688
|
-
|
|
1689
|
-
|
|
1690
|
-
|
|
1691
|
-
|
|
1692
|
-
|
|
1336
|
+
- Gradient has outdated direction syntax ([48fdc1f](https://github.com/towersxu/logicflow/commit/48fdc1f3663d7f3a2c51563cbe7979332c9def18))
|
|
1337
|
+
- menu error in vue ([4f123a9](https://github.com/towersxu/logicflow/commit/4f123a9e32ab17e3ecf30d5bbfaa773734e28437))
|
|
1693
1338
|
|
|
1694
1339
|
# [0.3.0](https://github.com/towersxu/logicflow/compare/@logicflow/extension@0.3.0-alpha.5...@logicflow/extension@0.3.0) (2021-04-13)
|
|
1695
1340
|
|
|
1696
|
-
|
|
1697
1341
|
### Bug Fixes
|
|
1698
1342
|
|
|
1699
|
-
|
|
1700
|
-
|
|
1701
|
-
|
|
1702
|
-
|
|
1703
|
-
|
|
1343
|
+
- minimap support register node ([3a692e6](https://github.com/towersxu/logicflow/commit/3a692e6448d775ebdbd9c6f26fce79102c77fb3e))
|
|
1344
|
+
- set the start position of selection when mouse is down ([c7d3715](https://github.com/towersxu/logicflow/commit/c7d3715b956ed99e80bcb19a51d2e21432cd1037))
|
|
1345
|
+
- support custom style by class for mini-map ([4c97625](https://github.com/towersxu/logicflow/commit/4c97625774f65ed3d59caefc5c691fabf0adc499))
|
|
1346
|
+
- **all:** add rimraf ([c526ad8](https://github.com/towersxu/logicflow/commit/c526ad840b1e2620a3221d416f7a03e9c6d3583c))
|
|
1704
1347
|
|
|
1705
1348
|
### Features
|
|
1706
1349
|
|
|
1707
|
-
|
|
1708
|
-
|
|
1709
|
-
|
|
1710
|
-
|
|
1711
|
-
|
|
1712
|
-
|
|
1713
|
-
|
|
1714
|
-
|
|
1350
|
+
- **extension:** curved-edge ([1731b10](https://github.com/towersxu/logicflow/commit/1731b10e3e65ccf226b48d4fb572d90d2ad10dec))
|
|
1351
|
+
- add the switch of SelectionSelect in Extension ([35baa89](https://github.com/towersxu/logicflow/commit/35baa89a9ded2be1ce1fe7392fc9e75121f8e0d7))
|
|
1352
|
+
- add the UMD dist of BpmnAdapter and TurboAdapter in extension ([2edac3b](https://github.com/towersxu/logicflow/commit/2edac3b7b7fb6deb873f7268a5fdb9cc116ed8b3))
|
|
1353
|
+
- **extension:** turbo-adapter ([1b4c99e](https://github.com/towersxu/logicflow/commit/1b4c99e1a2d1f996e4e3b65d39d6b586f0f69937))
|
|
1715
1354
|
|
|
1716
1355
|
# [0.3.0-alpha.5](https://github.com/towersxu/logicflow/compare/@logicflow/extension@0.3.0-alpha.4...@logicflow/extension@0.3.0-alpha.5) (2021-03-30)
|
|
1717
1356
|
|
|
1718
|
-
|
|
1719
1357
|
### Features
|
|
1720
1358
|
|
|
1721
|
-
|
|
1722
|
-
|
|
1723
|
-
|
|
1724
|
-
|
|
1725
|
-
|
|
1359
|
+
- edge text support hover style ([ffc75d4](https://github.com/towersxu/logicflow/commit/ffc75d45e0ef42b9dbca1be489fa749186aa81b0))
|
|
1726
1360
|
|
|
1727
1361
|
# [0.3.0-alpha.4](https://github.com/towersxu/logicflow/compare/@logicflow/extension@0.3.0-alpha.2...@logicflow/extension@0.3.0-alpha.4) (2021-03-24)
|
|
1728
1362
|
|
|
1729
|
-
|
|
1730
1363
|
### Bug Fixes
|
|
1731
1364
|
|
|
1732
|
-
|
|
1733
|
-
|
|
1734
|
-
|
|
1735
|
-
|
|
1736
|
-
|
|
1365
|
+
- **extension:** mini-map default disable control & selection-select ([297cecf](https://github.com/towersxu/logicflow/commit/297cecf4637ca7a045619a10cd9298feacc631ea))
|
|
1737
1366
|
|
|
1738
1367
|
# [0.3.0-alpha.3](https://github.com/towersxu/logicflow/compare/@logicflow/extension@0.3.0-alpha.2...@logicflow/extension@0.3.0-alpha.3) (2021-03-23)
|
|
1739
1368
|
|
|
1740
|
-
|
|
1741
1369
|
### Bug Fixes
|
|
1742
1370
|
|
|
1743
|
-
|
|
1744
|
-
|
|
1745
|
-
|
|
1746
|
-
|
|
1747
|
-
|
|
1371
|
+
- **extension:** mini-map default disable control & selection-select ([297cecf](https://github.com/towersxu/logicflow/commit/297cecf4637ca7a045619a10cd9298feacc631ea))
|
|
1748
1372
|
|
|
1749
1373
|
# [0.3.0-alpha.2](https://github.com/towersxu/logicflow/compare/@logicflow/extension@0.3.0-alpha.1...@logicflow/extension@0.3.0-alpha.2) (2021-03-22)
|
|
1750
1374
|
|
|
1751
|
-
|
|
1752
1375
|
### Bug Fixes
|
|
1753
1376
|
|
|
1754
|
-
|
|
1755
|
-
|
|
1756
|
-
|
|
1757
|
-
|
|
1758
|
-
|
|
1377
|
+
- minimap extension custom disabled plugin ([3768d14](https://github.com/towersxu/logicflow/commit/3768d149b6a72e4c251e287432b6070dcbfabce6))
|
|
1759
1378
|
|
|
1760
1379
|
# [0.3.0-alpha.1](https://github.com/didi/LogicFlow/compare/@logicflow/extension@0.3.0-alpha.0...@logicflow/extension@0.3.0-alpha.1) (2021-03-19)
|
|
1761
1380
|
|
|
1762
|
-
|
|
1763
1381
|
### Features
|
|
1764
1382
|
|
|
1765
|
-
|
|
1766
|
-
|
|
1767
|
-
|
|
1768
|
-
|
|
1769
|
-
|
|
1383
|
+
- add getSelectElements function ([d6b5a81](https://github.com/didi/LogicFlow/commit/d6b5a81a76ba59cac319cb01a3187caf0fb216ea))
|
|
1770
1384
|
|
|
1771
1385
|
# [0.3.0-alpha.0](https://github.com/didi/LogicFlow/compare/@logicflow/extension@0.2.9...@logicflow/extension@0.3.0-alpha.0) (2021-03-18)
|
|
1772
1386
|
|
|
1773
|
-
|
|
1774
1387
|
### Bug Fixes
|
|
1775
1388
|
|
|
1776
|
-
|
|
1777
|
-
|
|
1778
|
-
|
|
1779
|
-
|
|
1389
|
+
- 🐛 add the name field for the extension components ([24a2831](https://github.com/didi/LogicFlow/commit/24a28316e90070f48813c29c5d3a95f00b0eb4bc))
|
|
1390
|
+
- mini map import error type ([99767e2](https://github.com/didi/LogicFlow/commit/99767e28f12e96b4181ae281b2ef4ac419719c75))
|
|
1391
|
+
- typo menu ([ad797e3](https://github.com/didi/LogicFlow/commit/ad797e3e6d4a3f8ebd36c044cf3b90865cd0c66d))
|
|
1780
1392
|
|
|
1781
1393
|
### Features
|
|
1782
1394
|
|
|
1783
|
-
|
|
1784
|
-
|
|
1785
|
-
|
|
1786
|
-
|
|
1787
|
-
|
|
1788
|
-
|
|
1789
|
-
|
|
1790
|
-
|
|
1791
|
-
|
|
1792
|
-
|
|
1395
|
+
- add mini map extension ([10d4056](https://github.com/didi/LogicFlow/commit/10d405662c1cefaa8f1172e41f4419e5170807b8))
|
|
1396
|
+
- add mini-map extension ([fa621da](https://github.com/didi/LogicFlow/commit/fa621daf2cc6a05cd5265bfe5245f5424f97ae7e))
|
|
1397
|
+
- extension add destroy property ([23e59e5](https://github.com/didi/LogicFlow/commit/23e59e5902976fced92ad67ddd72f74938113c96))
|
|
1398
|
+
- mini map position required ([907990e](https://github.com/didi/LogicFlow/commit/907990e5b1d10ee7b66ceac1a1104a4f46b00a6c))
|
|
1399
|
+
- resize node ([2bc595e](https://github.com/didi/LogicFlow/commit/2bc595eadea58e1597f730520b830efc41a0dac5))
|
|
1400
|
+
- **core:** add disable extension config & extension need name ([8bd9355](https://github.com/didi/LogicFlow/commit/8bd93555b7f82eb30a4813c986e3e642c86578fb))
|
|
1793
1401
|
|
|
1794
1402
|
## [0.2.9](https://github.com/didi/LogicFlow/compare/@logicflow/extension@0.2.8...@logicflow/extension@0.2.9) (2021-03-10)
|
|
1795
1403
|
|
|
1796
1404
|
**Note:** Version bump only for package @logicflow/extension
|
|
1797
1405
|
|
|
1798
|
-
|
|
1799
|
-
|
|
1800
|
-
|
|
1801
|
-
|
|
1802
1406
|
## [0.2.8](https://github.com/didi/LogicFlow/compare/@logicflow/extension@0.2.7...@logicflow/extension@0.2.8) (2021-03-05)
|
|
1803
1407
|
|
|
1804
1408
|
**Note:** Version bump only for package @logicflow/extension
|
|
1805
1409
|
|
|
1806
|
-
|
|
1807
|
-
|
|
1808
|
-
|
|
1809
|
-
|
|
1810
1410
|
## [0.2.7](https://github.com/didi/LogicFlow/compare/@logicflow/extension@0.2.6...@logicflow/extension@0.2.7) (2021-03-01)
|
|
1811
1411
|
|
|
1812
1412
|
**Note:** Version bump only for package @logicflow/extension
|
|
1813
1413
|
|
|
1814
|
-
|
|
1815
|
-
|
|
1816
|
-
|
|
1817
|
-
|
|
1818
1414
|
## [0.2.6](https://github.com/didi/LogicFlow/compare/@logicflow/extension@0.2.5...@logicflow/extension@0.2.6) (2021-03-01)
|
|
1819
1415
|
|
|
1820
|
-
|
|
1821
1416
|
### Bug Fixes
|
|
1822
1417
|
|
|
1823
|
-
|
|
1824
|
-
|
|
1825
|
-
|
|
1418
|
+
- **extension:** 🐛fix undo error when custom text position ([fc6e7d7](https://github.com/didi/LogicFlow/commit/fc6e7d767889e8bbdd542a3c8006e352a86121c4))
|
|
1419
|
+
- **extension:** fix adapter out data ([3941c4b](https://github.com/didi/LogicFlow/commit/3941c4ba2939ec1bcf452543e1da486fe2f64f9f))
|
|
1826
1420
|
|
|
1827
1421
|
### Features
|
|
1828
1422
|
|
|
1829
|
-
|
|
1830
|
-
|
|
1831
|
-
|
|
1832
|
-
|
|
1833
|
-
|
|
1834
|
-
|
|
1835
|
-
|
|
1423
|
+
- new plugin Selection & example ([2e4b489](https://github.com/didi/LogicFlow/commit/2e4b48958dff21617b6f7b08c9840deac0a178f0))
|
|
1424
|
+
- **core:** copy paste and delete multiple selected elements ([4a5be86](https://github.com/didi/LogicFlow/commit/4a5be86c63c90b7c1c88e08e9d084e708307a80d))
|
|
1425
|
+
- **core:** support use meta key select multiple element ([e137f9f](https://github.com/didi/LogicFlow/commit/e137f9fdbdb6bf3f85c3f7ac9323785e445844c8))
|
|
1836
1426
|
|
|
1837
1427
|
## [0.2.5](https://github.com/didi/LogicFlow/compare/@logicflow/extension@0.2.4...@logicflow/extension@0.2.5) (2021-02-23)
|
|
1838
1428
|
|
|
1839
|
-
|
|
1840
1429
|
### Bug Fixes
|
|
1841
1430
|
|
|
1842
|
-
|
|
1843
|
-
|
|
1844
|
-
|
|
1845
|
-
|
|
1846
|
-
|
|
1847
|
-
|
|
1431
|
+
- 🐛 fix the result of setting menu in model ([74494a5](https://github.com/didi/LogicFlow/commit/74494a5060620b7b2193ae73c1b41697dc36fd9e))
|
|
1432
|
+
- **extension:** 🐛 fix bpmn demo download not work ([6cec577](https://github.com/didi/LogicFlow/commit/6cec57778ee833675176fe957a5a442ec21c1727))
|
|
1848
1433
|
|
|
1849
1434
|
## [0.2.4](https://github.com/didi/LogicFlow/compare/@logicflow/extension@0.2.3...@logicflow/extension@0.2.4) (2021-02-20)
|
|
1850
1435
|
|
|
1851
1436
|
**Note:** Version bump only for package @logicflow/extension
|
|
1852
1437
|
|
|
1853
|
-
|
|
1854
|
-
|
|
1855
|
-
|
|
1856
|
-
|
|
1857
1438
|
## [0.2.3](https://github.com/didi/LogicFlow/compare/@logicflow/extension@0.2.2...@logicflow/extension@0.2.3) (2021-02-19)
|
|
1858
1439
|
|
|
1859
1440
|
**Note:** Version bump only for package @logicflow/extension
|
|
1860
1441
|
|
|
1861
|
-
|
|
1862
|
-
|
|
1863
|
-
|
|
1864
|
-
|
|
1865
1442
|
## [0.2.2](https://github.com/didi/LogicFlow/compare/@logicflow/extension@0.2.1...@logicflow/extension@0.2.2) (2021-02-08)
|
|
1866
1443
|
|
|
1867
|
-
|
|
1868
1444
|
### Bug Fixes
|
|
1869
1445
|
|
|
1870
|
-
|
|
1871
|
-
|
|
1872
|
-
|
|
1873
|
-
|
|
1874
|
-
|
|
1446
|
+
- **core:** change the priority of events ([5373797](https://github.com/didi/LogicFlow/commit/53737978d109088a2aeac1b4492fcbd69d16ec35))
|
|
1875
1447
|
|
|
1876
1448
|
## [0.2.1](https://github.com/didi/LogicFlow/compare/@logicflow/extension@0.1.0...@logicflow/extension@0.2.1) (2021-02-08)
|
|
1877
1449
|
|
|
1878
|
-
|
|
1879
1450
|
### Bug Fixes
|
|
1880
1451
|
|
|
1881
|
-
|
|
1882
|
-
|
|
1452
|
+
- **core:** fix checking repeatedly verification rules ([f0efbf4](https://github.com/didi/LogicFlow/commit/f0efbf481eb254bdaf29fd25b29ee1ee495d439b))
|
|
1883
1453
|
|
|
1884
1454
|
### Features
|
|
1885
1455
|
|
|
1886
|
-
|
|
1887
|
-
|
|
1888
|
-
|
|
1889
|
-
|
|
1890
|
-
|
|
1891
|
-
|
|
1456
|
+
- **extension:** v0.2.0 ([ee67636](https://github.com/didi/LogicFlow/commit/ee676365b82d2d07d40cbc77e955eb3506690804))
|
|
1457
|
+
- 替换文件夹名称 ([9155d8a](https://github.com/didi/LogicFlow/commit/9155d8a7af3cd0aff983f8a036bd3ffafd0d4d56))
|
|
1892
1458
|
|
|
1893
1459
|
# [0.2.0](https://github.com/didichuxing/LogicFlow/compare/@logicflow/extension@0.1.0...@logicflow/extension@0.2.0) (2021-02-01)
|
|
1894
1460
|
|
|
1895
|
-
|
|
1896
1461
|
### Bug Fixes
|
|
1897
1462
|
|
|
1898
|
-
|
|
1899
|
-
|
|
1463
|
+
- **core:** fix checking repeatedly verification rules ([f0efbf4](https://github.com/didichuxing/LogicFlow/commit/f0efbf481eb254bdaf29fd25b29ee1ee495d439b))
|
|
1900
1464
|
|
|
1901
1465
|
### Features
|
|
1902
1466
|
|
|
1903
|
-
|
|
1904
|
-
|
|
1905
|
-
|
|
1906
|
-
|
|
1907
|
-
|
|
1908
|
-
|
|
1467
|
+
- 替换文件夹名称 ([9155d8a](https://github.com/didichuxing/LogicFlow/commit/9155d8a7af3cd0aff983f8a036bd3ffafd0d4d56))
|
|
1468
|
+
- **extension:** v0.2.0 ([ee67636](https://github.com/didichuxing/LogicFlow/commit/ee676365b82d2d07d40cbc77e955eb3506690804))
|
|
1909
1469
|
|
|
1910
1470
|
# 0.1.0 (2020-12-29)
|
|
1911
1471
|
|
|
1912
|
-
|
|
1913
1472
|
### Features
|
|
1914
1473
|
|
|
1915
|
-
|
|
1916
|
-
|
|
1474
|
+
- init ([6ab4c32](https://github.com/didichuxing/LogicFlow/commit/6ab4c326063b9242010c89b6bf92885c3158e6b0))
|
|
1475
|
+
- 更改包名增加scope ([27be341](https://github.com/didichuxing/LogicFlow/commit/27be3410c70f959093f928c792cf40f038e8adcc))
|