ronds-metadata 1.3.16 → 1.3.18

Sign up to get free protection for your applications and to get access to all the features.
@@ -13,7 +13,7 @@ import _getPrototypeOf from "@babel/runtime/helpers/esm/getPrototypeOf";
13
13
  /*
14
14
  * @Author: wangxian
15
15
  * @Date: 2022-05-24 14:31:01
16
- * @LastEditTime: 2023-09-15 15:58:12
16
+ * @LastEditTime: 2023-09-21 15:45:12
17
17
  */
18
18
  import _regeneratorRuntime from "@babel/runtime/regenerator";
19
19
  import produce from 'immer';
@@ -116,7 +116,7 @@ var DPGraph = /*#__PURE__*/function (_GraphCore) {
116
116
  var targetPort = targetNode.getPort(targetPortId);
117
117
  // 如果设置输出port类型,则需要校验类型是否相等
118
118
  // 只有类型相等才可以联线
119
- if ((sourcePort === null || sourcePort === void 0 ? void 0 : sourcePort.type) && (targetPort === null || targetPort === void 0 ? void 0 : targetPort.type) && sourcePort.type !== targetPort.type) {
119
+ if ((sourcePort === null || sourcePort === void 0 ? void 0 : sourcePort.type) !== '-1' && (sourcePort === null || sourcePort === void 0 ? void 0 : sourcePort.type) && (targetPort === null || targetPort === void 0 ? void 0 : targetPort.type) && sourcePort.type !== targetPort.type) {
120
120
  return false;
121
121
  }
122
122
  // 判断目标链接桩是否可连接
@@ -6,7 +6,7 @@ var _excluded = ["wrapper", "container", "nodes", "edges"];
6
6
  /*
7
7
  * @Author: wangxian
8
8
  * @Date: 2022-05-24 13:55:44
9
- * @LastEditTime: 2023-08-25 16:03:45
9
+ * @LastEditTime: 2023-09-20 08:04:16
10
10
  */
11
11
  import { Graph } from '@antv/x6';
12
12
  import { debounceTime, fromEventPattern, map, merge, scan, tap } from 'rxjs';
@@ -340,7 +340,8 @@ export var GraphCore = /*#__PURE__*/function () {
340
340
  var height = wrapper.clientHeight;
341
341
  var graph = new Graph(_objectSpread(_objectSpread({}, options), {}, {
342
342
  width: width,
343
- height: height
343
+ height: height,
344
+ snapline: true
344
345
  }));
345
346
  this.graph = graph;
346
347
  nodeMetas.forEach(function (nodeMeta) {
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "public": true,
3
3
  "name": "ronds-metadata",
4
- "version": "1.3.16",
4
+ "version": "1.3.18",
5
5
  "scripts": {
6
6
  "start": "dumi dev",
7
7
  "docs:build": "dumi build",