@rxflow/bloodline 0.0.1-alpha.2 → 0.0.1-alpha.4

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.
@@ -267,7 +267,7 @@ const layoutCells = config => {
267
267
  const targetHandle = (0, _keys.getConnectorId)(_constants.BloodlineDirection.upstream, targetHandleNode);
268
268
  edges.push({
269
269
  id: `source.${sourceHandle}_target.${targetHandle}`,
270
- type: 'smoothstep',
270
+ type: 'manhattan',
271
271
  source: sourceNode,
272
272
  target: targetNode,
273
273
  sourceHandle: sourceHandle,
@@ -286,7 +286,7 @@ const layoutCells = config => {
286
286
  const targetHandle = (0, _keys.getConnectorId)(_constants.BloodlineDirection.upstream, targetHandleNode);
287
287
  edges.push({
288
288
  id: `source.${sourceHandle}_target.${targetHandle}`,
289
- type: 'smoothstep',
289
+ type: 'manhattan',
290
290
  source: sourceNode,
291
291
  target: targetNode,
292
292
  sourceHandle: sourceHandle,
@@ -265,7 +265,7 @@ export var layoutCells = function layoutCells(config) {
265
265
  var targetHandle = getConnectorId(BloodlineDirection.upstream, targetHandleNode);
266
266
  edges.push({
267
267
  id: "source.".concat(sourceHandle, "_target.").concat(targetHandle),
268
- type: 'smoothstep',
268
+ type: 'manhattan',
269
269
  source: sourceNode,
270
270
  target: targetNode,
271
271
  sourceHandle: sourceHandle,
@@ -284,7 +284,7 @@ export var layoutCells = function layoutCells(config) {
284
284
  var targetHandle = getConnectorId(BloodlineDirection.upstream, targetHandleNode);
285
285
  edges.push({
286
286
  id: "source.".concat(sourceHandle, "_target.").concat(targetHandle),
287
- type: 'smoothstep',
287
+ type: 'manhattan',
288
288
  source: sourceNode,
289
289
  target: targetNode,
290
290
  sourceHandle: sourceHandle,
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@rxflow/bloodline",
3
- "version": "0.0.1-alpha.2",
3
+ "version": "0.0.1-alpha.4",
4
4
  "description": "通用血缘关系图",
5
5
  "homepage": "https://tree-graph.publib.cn/packages/bloodline",
6
6
  "repository": {
@@ -31,7 +31,7 @@
31
31
  "build": "father build"
32
32
  },
33
33
  "dependencies": {
34
- "@rxflow/base": "^0.0.1-alpha.2"
34
+ "@rxflow/base": "^0.0.1-alpha.4"
35
35
  },
36
36
  "peerDependencies": {
37
37
  "@antv/hierarchy": ">=0.6.14",