pro-flow icon indicating copy to clipboard operation
pro-flow copied to clipboard

🪢 A React based Flow Framework, include Flow View and Flow Editor

Results 7 pro-flow issues
Sort by recently updated
recently updated
newest added

### 🧐 问题描述 第一次设置edge没问题,后续添加边报错,页面上无法正常显示该边 ![image](https://github.com/ant-design/pro-flow/assets/22002343/00a8a1c0-3f11-4364-99ea-957ca36ba260) ### 💻 示例代码 ![image](https://github.com/ant-design/pro-flow/assets/22002343/adc4ed19-53d4-454f-90fc-0ffa24164827) ### 🚑 其他信息

### 🧐 问题描述 > https://pro-flow.antdigital.dev/guide/brief-intro 如图,官网示例里的拖拽插入能力。 pro-flow对该能力是否有封装?如果没有,请问示例里是否使用第三方的拖拽库?

### 🧐 问题描述 ### 💻 示例代码 ### 🚑 其他信息

### 🧐 问题描述 如a》b》c》d 我想删除a与b之间的连接后,在a与b之间新增一个节点在重新连接,改怎么做

### 🧐 问题描述 我希望实现一个可自定义的编辑节点,比如:我定义了几种不同类型的基础节点,然后用户点击画布点击 sidebar 出现的是我定义的几个基础节点,然后可拖拽到画布中,同时这些节点都是可编辑的,并可修改基础节点上自带的一些属性信息。这个我看节点类型 type 只能是 customNode 或者 editorNode 这种二选一吗? ### 💻 示例代码 ### 🚑 其他信息

### 🧐 问题描述 想和flowable流程框架结合,请问可以吗?

### 🥰 需求描述 flowEditor 自定义连线需要修改 onConnect 的参数,现在的封装``` updateEdgesOnConnection: (connection) => { const { source, target, sourceHandle, targetHandle } = connection; if (!source || !target) return; const edgeId = generateEdgeId(source, target,...