@logicflow/core 1.0.0-alpha.8 → 1.0.0-alpha.9

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@logicflow/core",
3
- "version": "1.0.0-alpha.8",
3
+ "version": "1.0.0-alpha.9",
4
4
  "description": "LogicFlow core, to quickly build flowchart editor",
5
5
  "main": "dist/logic-flow.js",
6
6
  "unpkg": "dist/logic-flow.js",
@@ -28,10 +28,6 @@ declare class BaseEdgeModel implements IBaseModel {
28
28
  targetNodeId: string;
29
29
  startPoint: any;
30
30
  endPoint: any;
31
- strokeWidth: number;
32
- stroke: string;
33
- hideOutline: boolean;
34
- strokeOpacity: number;
35
31
  zIndex: number;
36
32
  isSelected: boolean;
37
33
  isHovered: boolean;
@@ -68,10 +68,6 @@ export declare type Definition = {
68
68
  * todo: 目前不完善,仅支持同步
69
69
  */
70
70
  guards?: GuardsTypes;
71
- /**
72
- * 是否不启用outline显示选中和hover效果
73
- */
74
- hideOutline?: boolean;
75
71
  /**
76
72
  * 表示节点在上,边在下,点击元素时选择元素显示在最顶部。
77
73
  * 表示安装元素创建顺序排序,点击元素也不会将其置顶。要置顶需要调用置顶API。
@@ -156,10 +152,6 @@ export declare function get(options: Definition): {
156
152
  * todo: 目前不完善,仅支持同步
157
153
  */
158
154
  guards?: GuardsTypes;
159
- /**
160
- * 是否不启用outline显示选中和hover效果
161
- */
162
- hideOutline?: boolean;
163
155
  /**
164
156
  * 表示节点在上,边在下,点击元素时选择元素显示在最顶部。
165
157
  * 表示安装元素创建顺序排序,点击元素也不会将其置顶。要置顶需要调用置顶API。