@logicflow/core 1.0.0-alpha.8 → 1.0.2
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/README.md +10 -16
- package/dist/logic-flow.js +2 -11
- package/package.json +1 -1
- package/types/LogicFlow.d.ts +1 -1
- package/types/constant/DefaultTheme.d.ts +1 -12
- package/types/model/BaseModel.d.ts +1 -1
- package/types/model/GraphModel.d.ts +26 -16
- package/types/model/edge/BaseEdgeModel.d.ts +77 -31
- package/types/model/edge/BezierEdgeModel.d.ts +1 -3
- package/types/model/edge/LineEdgeModel.d.ts +0 -1
- package/types/model/edge/PolylineEdgeModel.d.ts +1 -4
- package/types/model/node/BaseNodeModel.d.ts +54 -40
- package/types/model/node/TextNodeModel.d.ts +3 -2
- package/types/options.d.ts +1 -9
- package/types/view/node/BaseNode.d.ts +1 -1
- package/types/view/node/HtmlNode.d.ts +1 -0
- package/types/view/node/TextNode.d.ts +0 -1
- package/types/view/text/BaseText.d.ts +0 -2
package/README.md
CHANGED
|
@@ -20,21 +20,22 @@
|
|
|
20
20
|
</a>
|
|
21
21
|
</p>
|
|
22
22
|
|
|
23
|
-
LogicFlow
|
|
23
|
+
LogicFlow 是一款流程图编辑框架,提供了一系列流程图交互、编辑所必需的功能和简单灵活的节点自定义、插件等拓展机制,方便我们快速在业务系统内满足类流程图的需求。
|
|
24
24
|
|
|
25
25
|
## 特性
|
|
26
26
|
|
|
27
|
-
- 🎯 专业
|
|
28
|
-
|
|
29
|
-
专注于业务流程可视化的解决方案
|
|
30
|
-
|
|
31
|
-
- 🚀 快速搭建
|
|
32
|
-
|
|
33
|
-
提供配套能力(undo/对齐线/键盘)快速搭建流程图编辑器,提升研发效率
|
|
34
27
|
|
|
35
28
|
- 🛠 高拓展性
|
|
29
|
+
|
|
30
|
+
兼容各种产品自定义的流程编辑需求,绝大部分模块以插件的形式实现,支持各模块自由插拔。
|
|
31
|
+
|
|
32
|
+
- 🚀 重执行
|
|
33
|
+
|
|
34
|
+
流程图能完备的表达业务逻辑,不受流程引擎限制。
|
|
36
35
|
|
|
37
|
-
|
|
36
|
+
- 🎯 专业
|
|
37
|
+
|
|
38
|
+
专注于业务流程图编辑的框架
|
|
38
39
|
|
|
39
40
|
## 使用
|
|
40
41
|
|
|
@@ -153,13 +154,6 @@ lf.render(data);
|
|
|
153
154
|
<image src="https://dpubstatic.udache.com/static/dpubimg/e35cef10-bb7c-4662-a494-f5aac024c092.gif"/>
|
|
154
155
|
|
|
155
156
|
[代码地址](https://github.com/xinxin93/logicflow_vue_demo)
|
|
156
|
-
|
|
157
|
-
## 整体架构
|
|
158
|
-
|
|
159
|
-

|
|
160
|
-
|
|
161
|
-
[详细介绍](https://github.com/didi/LogicFlow/wiki)
|
|
162
|
-
|
|
163
157
|
## 联系我们
|
|
164
158
|
|
|
165
159
|
### 加入微信群
|