lucid-extension-sdk 0.0.369 → 0.0.370
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.
|
@@ -17,6 +17,8 @@ export interface BlockEndpointDefinition extends EndpointStyle {
|
|
|
17
17
|
inside?: boolean;
|
|
18
18
|
/** If true, this endpoint may move around the target block in order to make the line less complex */
|
|
19
19
|
autoLink?: boolean;
|
|
20
|
+
/** If true, this endpoint will use multiple ports on the same side of the block when auto-linking */
|
|
21
|
+
autoLinkMultiPort?: boolean;
|
|
20
22
|
/** If set, the distance from the connected block this endpoint should be */
|
|
21
23
|
padding?: number;
|
|
22
24
|
}
|
package/document/lineproxy.js
CHANGED
|
@@ -53,6 +53,7 @@ class LineProxy extends itemproxy_1.ItemProxy {
|
|
|
53
53
|
linkY: raw['LinkY'],
|
|
54
54
|
inside: raw['Inside'],
|
|
55
55
|
autoLink: raw['AutoLink'],
|
|
56
|
+
autoLinkMultiPort: raw['AutoLink'],
|
|
56
57
|
padding: raw['Padding'],
|
|
57
58
|
x: raw['x'],
|
|
58
59
|
y: raw['y'],
|
|
@@ -78,6 +79,7 @@ class LineProxy extends itemproxy_1.ItemProxy {
|
|
|
78
79
|
'LinkY': ep.linkY,
|
|
79
80
|
'Inside': ep.inside,
|
|
80
81
|
'AutoLink': ep.autoLink,
|
|
82
|
+
'AutoLinkMultiPort': ep.autoLinkMultiPort,
|
|
81
83
|
'Padding': ep.padding,
|
|
82
84
|
};
|
|
83
85
|
}
|