Merge pull request #981 from alixander/elk-port-spacing
improve elk port spacing
|
|
@ -2,6 +2,8 @@
|
|||
|
||||
#### Improvements 🧹
|
||||
|
||||
- ELK nodes with > 1 connection grow to ensure padding around ports [#981](https://github.com/terrastruct/d2/pull/981)
|
||||
|
||||
#### Bugfixes ⛑️
|
||||
|
||||
- Accept absolute paths again on the CLI. [#979](https://github.com/terrastruct/d2/pull/979)
|
||||
|
|
|
|||
|
|
@ -94,6 +94,8 @@ var DefaultOpts = ConfigurableOpts{
|
|||
SelfLoopSpacing: 50.0,
|
||||
}
|
||||
|
||||
var port_spacing = 40.
|
||||
|
||||
type elkOpts struct {
|
||||
Thoroughness int `json:"elk.layered.thoroughness,omitempty"`
|
||||
EdgeEdgeBetweenLayersSpacing int `json:"elk.layered.spacing.edgeEdgeBetweenLayers,omitempty"`
|
||||
|
|
@ -176,6 +178,25 @@ func Layout(ctx context.Context, g *d2graph.Graph, opts *ConfigurableOpts) (err
|
|||
}
|
||||
|
||||
walk(g.Root, nil, func(obj, parent *d2graph.Object) {
|
||||
incoming := 0.
|
||||
outgoing := 0.
|
||||
for _, e := range g.Edges {
|
||||
if e.Src == obj {
|
||||
outgoing++
|
||||
}
|
||||
if e.Dst == obj {
|
||||
incoming++
|
||||
}
|
||||
}
|
||||
if incoming >= 2 || outgoing >= 2 {
|
||||
switch g.Root.Attributes.Direction.Value {
|
||||
case "right", "left":
|
||||
obj.Height = math.Max(obj.Height, math.Max(incoming, outgoing)*port_spacing)
|
||||
default:
|
||||
obj.Width = math.Max(obj.Width, math.Max(incoming, outgoing)*port_spacing)
|
||||
}
|
||||
}
|
||||
|
||||
height := obj.Height
|
||||
width := obj.Width
|
||||
if obj.LabelWidth != nil && obj.LabelHeight != nil {
|
||||
|
|
|
|||
12
e2etests/testdata/regression/dagre_special_ids/elk/board.exp.json
generated
vendored
|
|
@ -171,10 +171,10 @@
|
|||
"id": "there",
|
||||
"type": "rectangle",
|
||||
"pos": {
|
||||
"x": 475,
|
||||
"x": 457,
|
||||
"y": 174
|
||||
},
|
||||
"width": 83,
|
||||
"width": 120,
|
||||
"height": 66,
|
||||
"opacity": 1,
|
||||
"strokeDash": 0,
|
||||
|
|
@ -327,11 +327,11 @@
|
|||
"y": 134
|
||||
},
|
||||
{
|
||||
"x": 496.25,
|
||||
"x": 487,
|
||||
"y": 134
|
||||
},
|
||||
{
|
||||
"x": 496.25,
|
||||
"x": 487,
|
||||
"y": 174
|
||||
}
|
||||
],
|
||||
|
|
@ -415,11 +415,11 @@
|
|||
"y": 134
|
||||
},
|
||||
{
|
||||
"x": 537.75,
|
||||
"x": 547,
|
||||
"y": 134
|
||||
},
|
||||
{
|
||||
"x": 537.75,
|
||||
"x": 547,
|
||||
"y": 174
|
||||
}
|
||||
],
|
||||
|
|
|
|||
|
Before Width: | Height: | Size: 331 KiB After Width: | Height: | Size: 331 KiB |
112
e2etests/testdata/regression/unconnected/elk/board.exp.json
generated
vendored
|
|
@ -8,10 +8,10 @@
|
|||
"type": "rectangle",
|
||||
"pos": {
|
||||
"x": 103,
|
||||
"y": 64
|
||||
"y": 75
|
||||
},
|
||||
"width": 135,
|
||||
"height": 66,
|
||||
"height": 120,
|
||||
"opacity": 1,
|
||||
"strokeDash": 0,
|
||||
"strokeWidth": 2,
|
||||
|
|
@ -49,7 +49,7 @@
|
|||
"type": "rectangle",
|
||||
"pos": {
|
||||
"x": 390,
|
||||
"y": 48
|
||||
"y": 72
|
||||
},
|
||||
"width": 159,
|
||||
"height": 66,
|
||||
|
|
@ -90,7 +90,7 @@
|
|||
"type": "rectangle",
|
||||
"pos": {
|
||||
"x": 368,
|
||||
"y": 134
|
||||
"y": 158
|
||||
},
|
||||
"width": 204,
|
||||
"height": 66,
|
||||
|
|
@ -134,7 +134,7 @@
|
|||
"y": 12
|
||||
},
|
||||
"width": 890,
|
||||
"height": 310,
|
||||
"height": 358,
|
||||
"opacity": 1,
|
||||
"strokeDash": 0,
|
||||
"strokeWidth": 2,
|
||||
|
|
@ -172,10 +172,10 @@
|
|||
"type": "rectangle",
|
||||
"pos": {
|
||||
"x": 746,
|
||||
"y": 78
|
||||
"y": 72
|
||||
},
|
||||
"width": 94,
|
||||
"height": 66,
|
||||
"height": 120,
|
||||
"opacity": 1,
|
||||
"strokeDash": 0,
|
||||
"strokeWidth": 2,
|
||||
|
|
@ -216,7 +216,7 @@
|
|||
"y": 62
|
||||
},
|
||||
"width": 120,
|
||||
"height": 66,
|
||||
"height": 80,
|
||||
"opacity": 1,
|
||||
"strokeDash": 0,
|
||||
"strokeWidth": 2,
|
||||
|
|
@ -254,10 +254,10 @@
|
|||
"type": "rectangle",
|
||||
"pos": {
|
||||
"x": 1170,
|
||||
"y": 95
|
||||
"y": 99
|
||||
},
|
||||
"width": 120,
|
||||
"height": 66,
|
||||
"height": 80,
|
||||
"opacity": 1,
|
||||
"strokeDash": 0,
|
||||
"strokeWidth": 2,
|
||||
|
|
@ -295,10 +295,10 @@
|
|||
"type": "rectangle",
|
||||
"pos": {
|
||||
"x": 1370,
|
||||
"y": 95
|
||||
"y": 99
|
||||
},
|
||||
"width": 122,
|
||||
"height": 66,
|
||||
"height": 80,
|
||||
"opacity": 1,
|
||||
"strokeDash": 0,
|
||||
"strokeWidth": 2,
|
||||
|
|
@ -336,7 +336,7 @@
|
|||
"type": "text",
|
||||
"pos": {
|
||||
"x": 702,
|
||||
"y": 164
|
||||
"y": 212
|
||||
},
|
||||
"width": 138,
|
||||
"height": 108,
|
||||
|
|
@ -376,7 +376,7 @@
|
|||
"type": "rectangle",
|
||||
"pos": {
|
||||
"x": 12,
|
||||
"y": 150
|
||||
"y": 215
|
||||
},
|
||||
"width": 226,
|
||||
"height": 252,
|
||||
|
|
@ -417,7 +417,7 @@
|
|||
"type": "rectangle",
|
||||
"pos": {
|
||||
"x": 62,
|
||||
"y": 200
|
||||
"y": 265
|
||||
},
|
||||
"width": 126,
|
||||
"height": 66,
|
||||
|
|
@ -458,7 +458,7 @@
|
|||
"type": "rectangle",
|
||||
"pos": {
|
||||
"x": 73,
|
||||
"y": 286
|
||||
"y": 351
|
||||
},
|
||||
"width": 103,
|
||||
"height": 66,
|
||||
|
|
@ -565,11 +565,11 @@
|
|||
"route": [
|
||||
{
|
||||
"x": 238,
|
||||
"y": 81.25
|
||||
"y": 105
|
||||
},
|
||||
{
|
||||
"x": 390.5,
|
||||
"y": 81.25
|
||||
"y": 105
|
||||
}
|
||||
],
|
||||
"animated": false,
|
||||
|
|
@ -605,19 +605,19 @@
|
|||
"route": [
|
||||
{
|
||||
"x": 238,
|
||||
"y": 97.75
|
||||
"y": 135
|
||||
},
|
||||
{
|
||||
"x": 328,
|
||||
"y": 97.75
|
||||
"y": 135
|
||||
},
|
||||
{
|
||||
"x": 328,
|
||||
"y": 167.25
|
||||
"y": 191
|
||||
},
|
||||
{
|
||||
"x": 368,
|
||||
"y": 167.25
|
||||
"y": 191
|
||||
}
|
||||
],
|
||||
"animated": false,
|
||||
|
|
@ -653,27 +653,27 @@
|
|||
"route": [
|
||||
{
|
||||
"x": 238,
|
||||
"y": 114.25
|
||||
"y": 165
|
||||
},
|
||||
{
|
||||
"x": 278,
|
||||
"y": 114.25
|
||||
"y": 165
|
||||
},
|
||||
{
|
||||
"x": 278,
|
||||
"y": 210.25
|
||||
"y": 234
|
||||
},
|
||||
{
|
||||
"x": 612,
|
||||
"y": 210.25
|
||||
"y": 234
|
||||
},
|
||||
{
|
||||
"x": 612,
|
||||
"y": 244.875
|
||||
"y": 280.5
|
||||
},
|
||||
{
|
||||
"x": 652,
|
||||
"y": 244.875
|
||||
"y": 280.5
|
||||
}
|
||||
],
|
||||
"animated": false,
|
||||
|
|
@ -709,11 +709,11 @@
|
|||
"route": [
|
||||
{
|
||||
"x": 840,
|
||||
"y": 95
|
||||
"y": 102
|
||||
},
|
||||
{
|
||||
"x": 970,
|
||||
"y": 95
|
||||
"y": 102
|
||||
}
|
||||
],
|
||||
"animated": false,
|
||||
|
|
@ -749,19 +749,19 @@
|
|||
"route": [
|
||||
{
|
||||
"x": 840,
|
||||
"y": 111.5
|
||||
"y": 132
|
||||
},
|
||||
{
|
||||
"x": 930,
|
||||
"y": 111.5
|
||||
"y": 132
|
||||
},
|
||||
{
|
||||
"x": 930,
|
||||
"y": 139
|
||||
"y": 153
|
||||
},
|
||||
{
|
||||
"x": 1170,
|
||||
"y": 139
|
||||
"y": 153
|
||||
}
|
||||
],
|
||||
"animated": false,
|
||||
|
|
@ -797,27 +797,27 @@
|
|||
"route": [
|
||||
{
|
||||
"x": 840,
|
||||
"y": 128
|
||||
"y": 162
|
||||
},
|
||||
{
|
||||
"x": 880,
|
||||
"y": 128
|
||||
"y": 162
|
||||
},
|
||||
{
|
||||
"x": 880,
|
||||
"y": 171
|
||||
"y": 189.66666666666669
|
||||
},
|
||||
{
|
||||
"x": 1330,
|
||||
"y": 171
|
||||
"y": 189.66666666666669
|
||||
},
|
||||
{
|
||||
"x": 1330,
|
||||
"y": 144.5
|
||||
"y": 159.66666666666669
|
||||
},
|
||||
{
|
||||
"x": 1370,
|
||||
"y": 144.5
|
||||
"y": 159.66666666666669
|
||||
}
|
||||
],
|
||||
"animated": false,
|
||||
|
|
@ -853,19 +853,19 @@
|
|||
"route": [
|
||||
{
|
||||
"x": 1090,
|
||||
"y": 106
|
||||
"y": 115.33333333333334
|
||||
},
|
||||
{
|
||||
"x": 1130,
|
||||
"y": 106
|
||||
"y": 115.33333333333334
|
||||
},
|
||||
{
|
||||
"x": 1130,
|
||||
"y": 117
|
||||
"y": 126.33333333333334
|
||||
},
|
||||
{
|
||||
"x": 1170,
|
||||
"y": 117
|
||||
"y": 126.33333333333334
|
||||
}
|
||||
],
|
||||
"animated": false,
|
||||
|
|
@ -901,11 +901,11 @@
|
|||
"route": [
|
||||
{
|
||||
"x": 1290,
|
||||
"y": 128
|
||||
"y": 139.66666666666669
|
||||
},
|
||||
{
|
||||
"x": 1370,
|
||||
"y": 128
|
||||
"y": 139.66666666666669
|
||||
}
|
||||
],
|
||||
"animated": false,
|
||||
|
|
@ -941,19 +941,19 @@
|
|||
"route": [
|
||||
{
|
||||
"x": 1370,
|
||||
"y": 111.5
|
||||
"y": 119.66666666666667
|
||||
},
|
||||
{
|
||||
"x": 1330,
|
||||
"y": 111.5
|
||||
"y": 119.66666666666667
|
||||
},
|
||||
{
|
||||
"x": 1330,
|
||||
"y": 84
|
||||
"y": 88.66666666666667
|
||||
},
|
||||
{
|
||||
"x": 1090,
|
||||
"y": 84
|
||||
"y": 88.66666666666667
|
||||
}
|
||||
],
|
||||
"animated": false,
|
||||
|
|
@ -989,19 +989,19 @@
|
|||
"route": [
|
||||
{
|
||||
"x": 549.5,
|
||||
"y": 81.25
|
||||
"y": 105
|
||||
},
|
||||
{
|
||||
"x": 612,
|
||||
"y": 81.25
|
||||
"y": 105
|
||||
},
|
||||
{
|
||||
"x": 612,
|
||||
"y": 89.625
|
||||
"y": 101.5
|
||||
},
|
||||
{
|
||||
"x": 652,
|
||||
"y": 89.625
|
||||
"y": 101.5
|
||||
}
|
||||
],
|
||||
"animated": false,
|
||||
|
|
@ -1037,11 +1037,11 @@
|
|||
"route": [
|
||||
{
|
||||
"x": 572,
|
||||
"y": 167.25
|
||||
"y": 191
|
||||
},
|
||||
{
|
||||
"x": 652,
|
||||
"y": 167.25
|
||||
"y": 191
|
||||
}
|
||||
],
|
||||
"animated": false,
|
||||
|
|
|
|||
|
|
@ -1,4 +1,4 @@
|
|||
<?xml version="1.0" encoding="utf-8"?><svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" preserveAspectRatio="xMinYMin meet" viewBox="0 0 1532 463"><svg id="d2-svg" width="1532" height="463" viewBox="11 -60 1532 463"><rect x="11.000000" y="-60.000000" width="1532.000000" height="463.000000" rx="0.000000" class=" fill-N7" stroke-width="0" /><style type="text/css"><![CDATA[
|
||||
<?xml version="1.0" encoding="utf-8"?><svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" preserveAspectRatio="xMinYMin meet" viewBox="0 0 1532 528"><svg id="d2-svg" width="1532" height="528" viewBox="11 -60 1532 528"><rect x="11.000000" y="-60.000000" width="1532.000000" height="528.000000" rx="0.000000" class=" fill-N7" stroke-width="0" /><style type="text/css"><![CDATA[
|
||||
.text {
|
||||
font-family: "font-regular";
|
||||
}
|
||||
|
|
@ -766,13 +766,13 @@
|
|||
.md .contains-task-list:dir(rtl) .task-list-item-checkbox {
|
||||
margin: 0 -1.6em 0.25em 0.2em;
|
||||
}
|
||||
</style><g id="OEM Factory"><g class="shape" ><rect x="103.000000" y="64.000000" width="135.000000" height="66.000000" class=" stroke-B1 fill-B6" style="stroke-width:2;" /></g><text x="170.500000" y="102.500000" class="text-bold fill-N1" style="text-anchor:middle;font-size:16px">OEM Factory</text></g><g id="OEM Warehouse"><g class="shape" ><rect x="390.000000" y="48.000000" width="159.000000" height="66.000000" class=" stroke-B1 fill-B6" style="stroke-width:2;" /></g><text x="469.500000" y="86.500000" class="text-bold fill-N1" style="text-anchor:middle;font-size:16px">OEM Warehouse</text></g><g id="Distributor Warehouse"><g class="shape" ><rect x="368.000000" y="134.000000" width="204.000000" height="66.000000" class=" stroke-B1 fill-B6" style="stroke-width:2;" /></g><text x="470.000000" y="172.500000" class="text-bold fill-N1" style="text-anchor:middle;font-size:16px">Distributor Warehouse</text></g><g id="Gos Warehouse"><g class="shape" ><rect x="652.000000" y="12.000000" width="890.000000" height="310.000000" class=" stroke-B1 fill-B4" style="stroke-width:2;" /></g><text x="1097.000000" y="45.000000" class="text fill-N1" style="text-anchor:middle;font-size:28px">Gos Warehouse</text></g><g id="Customer Site"><g class="shape" ><rect x="12.000000" y="150.000000" width="226.000000" height="252.000000" class=" stroke-B1 fill-B4" style="stroke-width:2;" /></g><text x="125.000000" y="183.000000" class="text fill-N1" style="text-anchor:middle;font-size:28px">Customer Site</text></g><g id="title"><g class="shape" ></g><text x="776.500000" y="-19.000000" class="text fill-N1" style="text-anchor:middle;font-size:40px">Workflow-I (Warehousing, Installation)</text></g><g id="Gos Warehouse.Master"><g class="shape" ><rect x="746.000000" y="78.000000" width="94.000000" height="66.000000" class=" stroke-B1 fill-B5" style="stroke-width:2;" /></g><text x="793.000000" y="116.500000" class="text-bold fill-N1" style="text-anchor:middle;font-size:16px">Master</text></g><g id="Gos Warehouse.Regional-1"><g class="shape" ><rect x="970.000000" y="62.000000" width="120.000000" height="66.000000" class=" stroke-B1 fill-B5" style="stroke-width:2;" /></g><text x="1030.000000" y="100.500000" class="text-bold fill-N1" style="text-anchor:middle;font-size:16px">Regional-1</text></g><g id="Gos Warehouse.Regional-2"><g class="shape" ><rect x="1170.000000" y="95.000000" width="120.000000" height="66.000000" class=" stroke-B1 fill-B5" style="stroke-width:2;" /></g><text x="1230.000000" y="133.500000" class="text-bold fill-N1" style="text-anchor:middle;font-size:16px">Regional-2</text></g><g id="Gos Warehouse.Regional-N"><g class="shape" ><rect x="1370.000000" y="95.000000" width="122.000000" height="66.000000" class=" stroke-B1 fill-B5" style="stroke-width:2;" /></g><text x="1431.000000" y="133.500000" class="text-bold fill-N1" style="text-anchor:middle;font-size:16px">Regional-N</text></g><g id="Gos Warehouse.explaination"><g class="shape" ></g><g><foreignObject requiredFeatures="http://www.w3.org/TR/SVG11/feature#Extensibility" x="702.000000" y="164.000000" width="138" height="108"><div xmlns="http://www.w3.org/1999/xhtml" class="md"><ul>
|
||||
</style><g id="OEM Factory"><g class="shape" ><rect x="103.000000" y="75.000000" width="135.000000" height="120.000000" class=" stroke-B1 fill-B6" style="stroke-width:2;" /></g><text x="170.500000" y="140.500000" class="text-bold fill-N1" style="text-anchor:middle;font-size:16px">OEM Factory</text></g><g id="OEM Warehouse"><g class="shape" ><rect x="390.000000" y="72.000000" width="159.000000" height="66.000000" class=" stroke-B1 fill-B6" style="stroke-width:2;" /></g><text x="469.500000" y="110.500000" class="text-bold fill-N1" style="text-anchor:middle;font-size:16px">OEM Warehouse</text></g><g id="Distributor Warehouse"><g class="shape" ><rect x="368.000000" y="158.000000" width="204.000000" height="66.000000" class=" stroke-B1 fill-B6" style="stroke-width:2;" /></g><text x="470.000000" y="196.500000" class="text-bold fill-N1" style="text-anchor:middle;font-size:16px">Distributor Warehouse</text></g><g id="Gos Warehouse"><g class="shape" ><rect x="652.000000" y="12.000000" width="890.000000" height="358.000000" class=" stroke-B1 fill-B4" style="stroke-width:2;" /></g><text x="1097.000000" y="45.000000" class="text fill-N1" style="text-anchor:middle;font-size:28px">Gos Warehouse</text></g><g id="Customer Site"><g class="shape" ><rect x="12.000000" y="215.000000" width="226.000000" height="252.000000" class=" stroke-B1 fill-B4" style="stroke-width:2;" /></g><text x="125.000000" y="248.000000" class="text fill-N1" style="text-anchor:middle;font-size:28px">Customer Site</text></g><g id="title"><g class="shape" ></g><text x="776.500000" y="-19.000000" class="text fill-N1" style="text-anchor:middle;font-size:40px">Workflow-I (Warehousing, Installation)</text></g><g id="Gos Warehouse.Master"><g class="shape" ><rect x="746.000000" y="72.000000" width="94.000000" height="120.000000" class=" stroke-B1 fill-B5" style="stroke-width:2;" /></g><text x="793.000000" y="137.500000" class="text-bold fill-N1" style="text-anchor:middle;font-size:16px">Master</text></g><g id="Gos Warehouse.Regional-1"><g class="shape" ><rect x="970.000000" y="62.000000" width="120.000000" height="80.000000" class=" stroke-B1 fill-B5" style="stroke-width:2;" /></g><text x="1030.000000" y="107.500000" class="text-bold fill-N1" style="text-anchor:middle;font-size:16px">Regional-1</text></g><g id="Gos Warehouse.Regional-2"><g class="shape" ><rect x="1170.000000" y="99.000000" width="120.000000" height="80.000000" class=" stroke-B1 fill-B5" style="stroke-width:2;" /></g><text x="1230.000000" y="144.500000" class="text-bold fill-N1" style="text-anchor:middle;font-size:16px">Regional-2</text></g><g id="Gos Warehouse.Regional-N"><g class="shape" ><rect x="1370.000000" y="99.000000" width="122.000000" height="80.000000" class=" stroke-B1 fill-B5" style="stroke-width:2;" /></g><text x="1431.000000" y="144.500000" class="text-bold fill-N1" style="text-anchor:middle;font-size:16px">Regional-N</text></g><g id="Gos Warehouse.explaination"><g class="shape" ></g><g><foreignObject requiredFeatures="http://www.w3.org/TR/SVG11/feature#Extensibility" x="702.000000" y="212.000000" width="138" height="108"><div xmlns="http://www.w3.org/1999/xhtml" class="md"><ul>
|
||||
<li>Asset Tagging</li>
|
||||
<li>Inventory</li>
|
||||
<li>Staging</li>
|
||||
<li>Dispatch to Site</li>
|
||||
</ul>
|
||||
</div></foreignObject></g></g><g id="Customer Site.Installation"><g class="shape" ><rect x="62.000000" y="200.000000" width="126.000000" height="66.000000" class=" stroke-B1 fill-B5" style="stroke-width:2;" /></g><text x="125.000000" y="238.500000" class="text-bold fill-N1" style="text-anchor:middle;font-size:16px">Installation</text></g><g id="Customer Site.Support"><g class="shape" ><rect x="73.000000" y="286.000000" width="103.000000" height="66.000000" class=" stroke-B1 fill-B5" style="stroke-width:2;" /></g><text x="124.500000" y="324.500000" class="text-bold fill-N1" style="text-anchor:middle;font-size:16px">Support</text></g><g id="(OEM Factory -> OEM Warehouse)[0]"><marker id="mk-3488378134" markerWidth="10.000000" markerHeight="12.000000" refX="7.000000" refY="6.000000" viewBox="0.000000 0.000000 10.000000 12.000000" orient="auto" markerUnits="userSpaceOnUse"> <polygon points="0.000000,0.000000 10.000000,6.000000 0.000000,12.000000" class="connection fill-B1" stroke-width="2" /> </marker><path d="M 240.000000 81.250000 L 386.500000 81.250000" fill="none" class="connection stroke-B1" style="stroke-width:2;" marker-end="url(#mk-3488378134)" mask="url(#2338137157)" /></g><g id="(OEM Factory -> Distributor Warehouse)[0]"><path d="M 240.000000 97.750000 L 318.000000 97.750000 S 328.000000 97.750000 328.000000 107.750000 L 328.000000 157.250000 S 328.000000 167.250000 338.000000 167.250000 L 364.000000 167.250000" fill="none" class="connection stroke-B1" style="stroke-width:2;" marker-end="url(#mk-3488378134)" mask="url(#2338137157)" /></g><g id="(OEM Factory -> Gos Warehouse)[0]"><path d="M 240.000000 114.250000 L 268.000000 114.250000 S 278.000000 114.250000 278.000000 124.250000 L 278.000000 200.250000 S 278.000000 210.250000 288.000000 210.250000 L 602.000000 210.250000 S 612.000000 210.250000 612.000000 220.250000 L 612.000000 234.875000 S 612.000000 244.875000 622.000000 244.875000 L 648.000000 244.875000" fill="none" class="connection stroke-B1" style="stroke-width:2;" marker-end="url(#mk-3488378134)" mask="url(#2338137157)" /></g><g id="Gos Warehouse.(Master -> Regional-1)[0]"><path d="M 842.000000 95.000000 L 966.000000 95.000000" fill="none" class="connection stroke-B1" style="stroke-width:2;" marker-end="url(#mk-3488378134)" mask="url(#2338137157)" /></g><g id="Gos Warehouse.(Master -> Regional-2)[0]"><path d="M 842.000000 111.500000 L 920.000000 111.500000 S 930.000000 111.500000 930.000000 121.500000 L 930.000000 129.000000 S 930.000000 139.000000 940.000000 139.000000 L 1166.000000 139.000000" fill="none" class="connection stroke-B1" style="stroke-width:2;" marker-end="url(#mk-3488378134)" mask="url(#2338137157)" /></g><g id="Gos Warehouse.(Master -> Regional-N)[0]"><path d="M 842.000000 128.000000 L 870.000000 128.000000 S 880.000000 128.000000 880.000000 138.000000 L 880.000000 161.000000 S 880.000000 171.000000 890.000000 171.000000 L 1320.000000 171.000000 S 1330.000000 171.000000 1330.000000 161.000000 L 1330.000000 154.500000 S 1330.000000 144.500000 1340.000000 144.500000 L 1366.000000 144.500000" fill="none" class="connection stroke-B1" style="stroke-width:2;" marker-end="url(#mk-3488378134)" mask="url(#2338137157)" /></g><g id="Gos Warehouse.(Regional-1 -> Regional-2)[0]"><path d="M 1092.000000 106.000000 L 1124.500000 106.000000 C 1135.500000 106.000000 1124.500000 117.000000 1135.500000 117.000000 L 1166.000000 117.000000" fill="none" class="connection stroke-B1" style="stroke-width:2;" marker-end="url(#mk-3488378134)" mask="url(#2338137157)" /></g><g id="Gos Warehouse.(Regional-2 -> Regional-N)[0]"><path d="M 1292.000000 128.000000 L 1366.000000 128.000000" fill="none" class="connection stroke-B1" style="stroke-width:2;" marker-end="url(#mk-3488378134)" mask="url(#2338137157)" /></g><g id="Gos Warehouse.(Regional-N -> Regional-1)[0]"><path d="M 1368.000000 111.500000 L 1340.000000 111.500000 S 1330.000000 111.500000 1330.000000 101.500000 L 1330.000000 94.000000 S 1330.000000 84.000000 1320.000000 84.000000 L 1094.000000 84.000000" fill="none" class="connection stroke-B1" style="stroke-width:2;" marker-end="url(#mk-3488378134)" mask="url(#2338137157)" /></g><g id="(OEM Warehouse -> Gos Warehouse)[0]"><path d="M 551.500000 81.250000 L 607.812500 81.250000 C 616.187500 81.250000 607.812500 89.625000 616.187500 89.625000 L 648.000000 89.625000" fill="none" class="connection stroke-B1" style="stroke-width:2;" marker-end="url(#mk-3488378134)" mask="url(#2338137157)" /></g><g id="(Distributor Warehouse -> Gos Warehouse)[0]"><path d="M 574.000000 167.250000 L 648.000000 167.250000" fill="none" class="connection stroke-B1" style="stroke-width:2;" marker-end="url(#mk-3488378134)" mask="url(#2338137157)" /></g><mask id="2338137157" maskUnits="userSpaceOnUse" x="11" y="-60" width="1532" height="463">
|
||||
<rect x="11" y="-60" width="1532" height="463" fill="white"></rect>
|
||||
</div></foreignObject></g></g><g id="Customer Site.Installation"><g class="shape" ><rect x="62.000000" y="265.000000" width="126.000000" height="66.000000" class=" stroke-B1 fill-B5" style="stroke-width:2;" /></g><text x="125.000000" y="303.500000" class="text-bold fill-N1" style="text-anchor:middle;font-size:16px">Installation</text></g><g id="Customer Site.Support"><g class="shape" ><rect x="73.000000" y="351.000000" width="103.000000" height="66.000000" class=" stroke-B1 fill-B5" style="stroke-width:2;" /></g><text x="124.500000" y="389.500000" class="text-bold fill-N1" style="text-anchor:middle;font-size:16px">Support</text></g><g id="(OEM Factory -> OEM Warehouse)[0]"><marker id="mk-3488378134" markerWidth="10.000000" markerHeight="12.000000" refX="7.000000" refY="6.000000" viewBox="0.000000 0.000000 10.000000 12.000000" orient="auto" markerUnits="userSpaceOnUse"> <polygon points="0.000000,0.000000 10.000000,6.000000 0.000000,12.000000" class="connection fill-B1" stroke-width="2" /> </marker><path d="M 240.000000 105.000000 L 386.500000 105.000000" fill="none" class="connection stroke-B1" style="stroke-width:2;" marker-end="url(#mk-3488378134)" mask="url(#1454531620)" /></g><g id="(OEM Factory -> Distributor Warehouse)[0]"><path d="M 240.000000 135.000000 L 318.000000 135.000000 S 328.000000 135.000000 328.000000 145.000000 L 328.000000 181.000000 S 328.000000 191.000000 338.000000 191.000000 L 364.000000 191.000000" fill="none" class="connection stroke-B1" style="stroke-width:2;" marker-end="url(#mk-3488378134)" mask="url(#1454531620)" /></g><g id="(OEM Factory -> Gos Warehouse)[0]"><path d="M 240.000000 165.000000 L 268.000000 165.000000 S 278.000000 165.000000 278.000000 175.000000 L 278.000000 224.000000 S 278.000000 234.000000 288.000000 234.000000 L 602.000000 234.000000 S 612.000000 234.000000 612.000000 244.000000 L 612.000000 270.500000 S 612.000000 280.500000 622.000000 280.500000 L 648.000000 280.500000" fill="none" class="connection stroke-B1" style="stroke-width:2;" marker-end="url(#mk-3488378134)" mask="url(#1454531620)" /></g><g id="Gos Warehouse.(Master -> Regional-1)[0]"><path d="M 842.000000 102.000000 L 966.000000 102.000000" fill="none" class="connection stroke-B1" style="stroke-width:2;" marker-end="url(#mk-3488378134)" mask="url(#1454531620)" /></g><g id="Gos Warehouse.(Master -> Regional-2)[0]"><path d="M 842.000000 132.000000 L 920.000000 132.000000 S 930.000000 132.000000 930.000000 142.000000 L 930.000000 143.000000 S 930.000000 153.000000 940.000000 153.000000 L 1166.000000 153.000000" fill="none" class="connection stroke-B1" style="stroke-width:2;" marker-end="url(#mk-3488378134)" mask="url(#1454531620)" /></g><g id="Gos Warehouse.(Master -> Regional-N)[0]"><path d="M 842.000000 162.000000 L 870.000000 162.000000 S 880.000000 162.000000 880.000000 172.000000 L 880.000000 179.666667 S 880.000000 189.666667 890.000000 189.666667 L 1320.000000 189.666667 S 1330.000000 189.666667 1330.000000 179.666667 L 1330.000000 169.666667 S 1330.000000 159.666667 1340.000000 159.666667 L 1366.000000 159.666667" fill="none" class="connection stroke-B1" style="stroke-width:2;" marker-end="url(#mk-3488378134)" mask="url(#1454531620)" /></g><g id="Gos Warehouse.(Regional-1 -> Regional-2)[0]"><path d="M 1092.000000 115.333333 L 1124.500000 115.333333 C 1135.500000 115.333333 1124.500000 126.333333 1135.500000 126.333333 L 1166.000000 126.333333" fill="none" class="connection stroke-B1" style="stroke-width:2;" marker-end="url(#mk-3488378134)" mask="url(#1454531620)" /></g><g id="Gos Warehouse.(Regional-2 -> Regional-N)[0]"><path d="M 1292.000000 139.666667 L 1366.000000 139.666667" fill="none" class="connection stroke-B1" style="stroke-width:2;" marker-end="url(#mk-3488378134)" mask="url(#1454531620)" /></g><g id="Gos Warehouse.(Regional-N -> Regional-1)[0]"><path d="M 1368.000000 119.666667 L 1340.000000 119.666667 S 1330.000000 119.666667 1330.000000 109.666667 L 1330.000000 98.666667 S 1330.000000 88.666667 1320.000000 88.666667 L 1094.000000 88.666667" fill="none" class="connection stroke-B1" style="stroke-width:2;" marker-end="url(#mk-3488378134)" mask="url(#1454531620)" /></g><g id="(OEM Warehouse -> Gos Warehouse)[0]"><path d="M 551.500000 105.000000 L 610.250000 105.000000 C 613.750000 105.000000 610.250000 101.500000 613.750000 101.500000 L 648.000000 101.500000" fill="none" class="connection stroke-B1" style="stroke-width:2;" marker-end="url(#mk-3488378134)" mask="url(#1454531620)" /></g><g id="(Distributor Warehouse -> Gos Warehouse)[0]"><path d="M 574.000000 191.000000 L 648.000000 191.000000" fill="none" class="connection stroke-B1" style="stroke-width:2;" marker-end="url(#mk-3488378134)" mask="url(#1454531620)" /></g><mask id="1454531620" maskUnits="userSpaceOnUse" x="11" y="-60" width="1532" height="528">
|
||||
<rect x="11" y="-60" width="1532" height="528" fill="white"></rect>
|
||||
|
||||
</mask></svg></svg>
|
||||
|
Before Width: | Height: | Size: 670 KiB After Width: | Height: | Size: 670 KiB |
24
e2etests/testdata/sanity/1_to_2/elk/board.exp.json
generated
vendored
|
|
@ -7,10 +7,10 @@
|
|||
"id": "a",
|
||||
"type": "rectangle",
|
||||
"pos": {
|
||||
"x": 20,
|
||||
"x": 58,
|
||||
"y": 12
|
||||
},
|
||||
"width": 53,
|
||||
"width": 80,
|
||||
"height": 66,
|
||||
"opacity": 1,
|
||||
"strokeDash": 0,
|
||||
|
|
@ -155,9 +155,17 @@
|
|||
"labelPercentage": 0,
|
||||
"route": [
|
||||
{
|
||||
"x": 38.5,
|
||||
"x": 84.83333333333333,
|
||||
"y": 78
|
||||
},
|
||||
{
|
||||
"x": 84.83333333333333,
|
||||
"y": 118
|
||||
},
|
||||
{
|
||||
"x": 38.5,
|
||||
"y": 118
|
||||
},
|
||||
{
|
||||
"x": 38.5,
|
||||
"y": 158
|
||||
|
|
@ -194,17 +202,9 @@
|
|||
"labelPosition": "",
|
||||
"labelPercentage": 0,
|
||||
"route": [
|
||||
{
|
||||
"x": 56.16666666666667,
|
||||
"y": 78
|
||||
},
|
||||
{
|
||||
"x": 56.16666666666667,
|
||||
"y": 118
|
||||
},
|
||||
{
|
||||
"x": 111.5,
|
||||
"y": 118
|
||||
"y": 78
|
||||
},
|
||||
{
|
||||
"x": 111.5,
|
||||
|
|
|
|||
|
Before Width: | Height: | Size: 329 KiB After Width: | Height: | Size: 329 KiB |
12
e2etests/testdata/stable/animated/elk/board.exp.json
generated
vendored
|
|
@ -294,10 +294,10 @@
|
|||
"id": "Insomnia",
|
||||
"type": "rectangle",
|
||||
"pos": {
|
||||
"x": 635,
|
||||
"x": 630,
|
||||
"y": 12
|
||||
},
|
||||
"width": 110,
|
||||
"width": 120,
|
||||
"height": 66,
|
||||
"opacity": 1,
|
||||
"strokeDash": 0,
|
||||
|
|
@ -733,11 +733,11 @@
|
|||
"labelPercentage": 0,
|
||||
"route": [
|
||||
{
|
||||
"x": 662.5,
|
||||
"x": 660,
|
||||
"y": 78
|
||||
},
|
||||
{
|
||||
"x": 662.5,
|
||||
"x": 660,
|
||||
"y": 118
|
||||
},
|
||||
{
|
||||
|
|
@ -821,11 +821,11 @@
|
|||
"labelPercentage": 0,
|
||||
"route": [
|
||||
{
|
||||
"x": 717.5,
|
||||
"x": 720,
|
||||
"y": 78
|
||||
},
|
||||
{
|
||||
"x": 717.5,
|
||||
"x": 720,
|
||||
"y": 118
|
||||
},
|
||||
{
|
||||
|
|
|
|||
|
Before Width: | Height: | Size: 479 KiB After Width: | Height: | Size: 479 KiB |
32
e2etests/testdata/stable/arrowhead_adjustment/elk/board.exp.json
generated
vendored
|
|
@ -7,10 +7,10 @@
|
|||
"id": "a",
|
||||
"type": "rectangle",
|
||||
"pos": {
|
||||
"x": 93,
|
||||
"x": 73,
|
||||
"y": 12
|
||||
},
|
||||
"width": 53,
|
||||
"width": 80,
|
||||
"height": 66,
|
||||
"opacity": 1,
|
||||
"strokeDash": 0,
|
||||
|
|
@ -48,10 +48,10 @@
|
|||
"id": "b",
|
||||
"type": "rectangle",
|
||||
"pos": {
|
||||
"x": 88,
|
||||
"x": 66,
|
||||
"y": 544
|
||||
},
|
||||
"width": 53,
|
||||
"width": 80,
|
||||
"height": 66,
|
||||
"opacity": 1,
|
||||
"strokeDash": 0,
|
||||
|
|
@ -89,10 +89,10 @@
|
|||
"id": "c",
|
||||
"type": "document",
|
||||
"pos": {
|
||||
"x": 97,
|
||||
"x": 79,
|
||||
"y": 388
|
||||
},
|
||||
"width": 53,
|
||||
"width": 80,
|
||||
"height": 76,
|
||||
"opacity": 1,
|
||||
"strokeDash": 0,
|
||||
|
|
@ -195,11 +195,11 @@
|
|||
"labelPercentage": 0,
|
||||
"route": [
|
||||
{
|
||||
"x": 106.5,
|
||||
"x": 93,
|
||||
"y": 78
|
||||
},
|
||||
{
|
||||
"x": 106.5,
|
||||
"x": 93,
|
||||
"y": 118
|
||||
},
|
||||
{
|
||||
|
|
@ -211,11 +211,11 @@
|
|||
"y": 504
|
||||
},
|
||||
{
|
||||
"x": 106.5,
|
||||
"x": 93,
|
||||
"y": 504
|
||||
},
|
||||
{
|
||||
"x": 106.5,
|
||||
"x": 93,
|
||||
"y": 544
|
||||
}
|
||||
],
|
||||
|
|
@ -251,11 +251,11 @@
|
|||
"labelPercentage": 0,
|
||||
"route": [
|
||||
{
|
||||
"x": 124,
|
||||
"x": 120,
|
||||
"y": 453
|
||||
},
|
||||
{
|
||||
"x": 124.16666666666666,
|
||||
"x": 119.66666666666666,
|
||||
"y": 544
|
||||
}
|
||||
],
|
||||
|
|
@ -291,11 +291,11 @@
|
|||
"labelPercentage": 0,
|
||||
"route": [
|
||||
{
|
||||
"x": 119.75,
|
||||
"x": 113,
|
||||
"y": 78
|
||||
},
|
||||
{
|
||||
"x": 119.75,
|
||||
"x": 113,
|
||||
"y": 168
|
||||
},
|
||||
{
|
||||
|
|
@ -387,11 +387,11 @@
|
|||
"y": 348
|
||||
},
|
||||
{
|
||||
"x": 115.33333333333333,
|
||||
"x": 106.33333333333333,
|
||||
"y": 348
|
||||
},
|
||||
{
|
||||
"x": 115,
|
||||
"x": 106,
|
||||
"y": 388
|
||||
}
|
||||
],
|
||||
|
|
|
|||
|
Before Width: | Height: | Size: 475 KiB After Width: | Height: | Size: 475 KiB |
180
e2etests/testdata/stable/binary_tree/elk/board.exp.json
generated
vendored
|
|
@ -7,10 +7,10 @@
|
|||
"id": "a",
|
||||
"type": "rectangle",
|
||||
"pos": {
|
||||
"x": 38,
|
||||
"x": 463,
|
||||
"y": 12
|
||||
},
|
||||
"width": 53,
|
||||
"width": 80,
|
||||
"height": 66,
|
||||
"opacity": 1,
|
||||
"strokeDash": 0,
|
||||
|
|
@ -48,10 +48,10 @@
|
|||
"id": "b",
|
||||
"type": "rectangle",
|
||||
"pos": {
|
||||
"x": 29,
|
||||
"x": 183,
|
||||
"y": 158
|
||||
},
|
||||
"width": 53,
|
||||
"width": 80,
|
||||
"height": 66,
|
||||
"opacity": 1,
|
||||
"strokeDash": 0,
|
||||
|
|
@ -89,10 +89,10 @@
|
|||
"id": "c",
|
||||
"type": "rectangle",
|
||||
"pos": {
|
||||
"x": 312,
|
||||
"x": 476,
|
||||
"y": 158
|
||||
},
|
||||
"width": 53,
|
||||
"width": 80,
|
||||
"height": 66,
|
||||
"opacity": 1,
|
||||
"strokeDash": 0,
|
||||
|
|
@ -130,10 +130,10 @@
|
|||
"id": "d",
|
||||
"type": "rectangle",
|
||||
"pos": {
|
||||
"x": 20,
|
||||
"x": 56,
|
||||
"y": 304
|
||||
},
|
||||
"width": 54,
|
||||
"width": 80,
|
||||
"height": 66,
|
||||
"opacity": 1,
|
||||
"strokeDash": 0,
|
||||
|
|
@ -171,10 +171,10 @@
|
|||
"id": "e",
|
||||
"type": "rectangle",
|
||||
"pos": {
|
||||
"x": 161,
|
||||
"x": 197,
|
||||
"y": 304
|
||||
},
|
||||
"width": 53,
|
||||
"width": 80,
|
||||
"height": 66,
|
||||
"opacity": 1,
|
||||
"strokeDash": 0,
|
||||
|
|
@ -212,10 +212,10 @@
|
|||
"id": "f",
|
||||
"type": "rectangle",
|
||||
"pos": {
|
||||
"x": 304,
|
||||
"x": 341,
|
||||
"y": 304
|
||||
},
|
||||
"width": 51,
|
||||
"width": 80,
|
||||
"height": 66,
|
||||
"opacity": 1,
|
||||
"strokeDash": 0,
|
||||
|
|
@ -253,10 +253,10 @@
|
|||
"id": "g",
|
||||
"type": "rectangle",
|
||||
"pos": {
|
||||
"x": 451,
|
||||
"x": 489,
|
||||
"y": 304
|
||||
},
|
||||
"width": 54,
|
||||
"width": 80,
|
||||
"height": 66,
|
||||
"opacity": 1,
|
||||
"strokeDash": 0,
|
||||
|
|
@ -647,11 +647,19 @@
|
|||
"labelPercentage": 0,
|
||||
"route": [
|
||||
{
|
||||
"x": 56.33333333333333,
|
||||
"x": 489.6666666666667,
|
||||
"y": 78
|
||||
},
|
||||
{
|
||||
"x": 56.33333333333333,
|
||||
"x": 489.6666666666667,
|
||||
"y": 118
|
||||
},
|
||||
{
|
||||
"x": 223.83333333333331,
|
||||
"y": 118
|
||||
},
|
||||
{
|
||||
"x": 223.83333333333331,
|
||||
"y": 158
|
||||
}
|
||||
],
|
||||
|
|
@ -687,19 +695,11 @@
|
|||
"labelPercentage": 0,
|
||||
"route": [
|
||||
{
|
||||
"x": 74,
|
||||
"x": 516.3333333333334,
|
||||
"y": 78
|
||||
},
|
||||
{
|
||||
"x": 74,
|
||||
"y": 118
|
||||
},
|
||||
{
|
||||
"x": 338.8333333333333,
|
||||
"y": 118
|
||||
},
|
||||
{
|
||||
"x": 338.8333333333333,
|
||||
"x": 516.3333333333334,
|
||||
"y": 158
|
||||
}
|
||||
],
|
||||
|
|
@ -735,11 +735,19 @@
|
|||
"labelPercentage": 0,
|
||||
"route": [
|
||||
{
|
||||
"x": 47.5,
|
||||
"x": 210.49999999999997,
|
||||
"y": 224
|
||||
},
|
||||
{
|
||||
"x": 47.5,
|
||||
"x": 210.49999999999997,
|
||||
"y": 264
|
||||
},
|
||||
{
|
||||
"x": 96.16666666666669,
|
||||
"y": 264
|
||||
},
|
||||
{
|
||||
"x": 96.16666666666669,
|
||||
"y": 304
|
||||
}
|
||||
],
|
||||
|
|
@ -775,19 +783,11 @@
|
|||
"labelPercentage": 0,
|
||||
"route": [
|
||||
{
|
||||
"x": 65.16666666666667,
|
||||
"x": 237.16666666666666,
|
||||
"y": 224
|
||||
},
|
||||
{
|
||||
"x": 65.16666666666667,
|
||||
"y": 264
|
||||
},
|
||||
{
|
||||
"x": 187.83333333333334,
|
||||
"y": 264
|
||||
},
|
||||
{
|
||||
"x": 187.83333333333334,
|
||||
"x": 237.16666666666663,
|
||||
"y": 304
|
||||
}
|
||||
],
|
||||
|
|
@ -823,11 +823,19 @@
|
|||
"labelPercentage": 0,
|
||||
"route": [
|
||||
{
|
||||
"x": 330,
|
||||
"x": 503,
|
||||
"y": 224
|
||||
},
|
||||
{
|
||||
"x": 330,
|
||||
"x": 503,
|
||||
"y": 264
|
||||
},
|
||||
{
|
||||
"x": 381.16666666666663,
|
||||
"y": 264
|
||||
},
|
||||
{
|
||||
"x": 381.16666666666663,
|
||||
"y": 304
|
||||
}
|
||||
],
|
||||
|
|
@ -863,19 +871,11 @@
|
|||
"labelPercentage": 0,
|
||||
"route": [
|
||||
{
|
||||
"x": 347.66666666666663,
|
||||
"x": 529.6666666666666,
|
||||
"y": 224
|
||||
},
|
||||
{
|
||||
"x": 347.66666666666663,
|
||||
"y": 264
|
||||
},
|
||||
{
|
||||
"x": 478.5,
|
||||
"y": 264
|
||||
},
|
||||
{
|
||||
"x": 478.5,
|
||||
"x": 529.6666666666666,
|
||||
"y": 304
|
||||
}
|
||||
],
|
||||
|
|
@ -911,9 +911,17 @@
|
|||
"labelPercentage": 0,
|
||||
"route": [
|
||||
{
|
||||
"x": 38.5,
|
||||
"x": 82.83333333333337,
|
||||
"y": 370
|
||||
},
|
||||
{
|
||||
"x": 82.83333333333337,
|
||||
"y": 410
|
||||
},
|
||||
{
|
||||
"x": 38.5,
|
||||
"y": 410
|
||||
},
|
||||
{
|
||||
"x": 38.5,
|
||||
"y": 450
|
||||
|
|
@ -950,17 +958,9 @@
|
|||
"labelPosition": "",
|
||||
"labelPercentage": 0,
|
||||
"route": [
|
||||
{
|
||||
"x": 56.5,
|
||||
"y": 370
|
||||
},
|
||||
{
|
||||
"x": 56.5,
|
||||
"y": 410
|
||||
},
|
||||
{
|
||||
"x": 109.5,
|
||||
"y": 410
|
||||
"y": 370
|
||||
},
|
||||
{
|
||||
"x": 109.5,
|
||||
|
|
@ -999,9 +999,17 @@
|
|||
"labelPercentage": 0,
|
||||
"route": [
|
||||
{
|
||||
"x": 179,
|
||||
"x": 223.8333333333333,
|
||||
"y": 370
|
||||
},
|
||||
{
|
||||
"x": 223.8333333333333,
|
||||
"y": 410
|
||||
},
|
||||
{
|
||||
"x": 179,
|
||||
"y": 410
|
||||
},
|
||||
{
|
||||
"x": 179,
|
||||
"y": 450
|
||||
|
|
@ -1039,17 +1047,9 @@
|
|||
"labelPercentage": 0,
|
||||
"route": [
|
||||
{
|
||||
"x": 196.66666666666669,
|
||||
"x": 250.49999999999997,
|
||||
"y": 370
|
||||
},
|
||||
{
|
||||
"x": 196.66666666666669,
|
||||
"y": 410
|
||||
},
|
||||
{
|
||||
"x": 250.5,
|
||||
"y": 410
|
||||
},
|
||||
{
|
||||
"x": 250.5,
|
||||
"y": 450
|
||||
|
|
@ -1087,9 +1087,17 @@
|
|||
"labelPercentage": 0,
|
||||
"route": [
|
||||
{
|
||||
"x": 321.5,
|
||||
"x": 367.8333333333333,
|
||||
"y": 370
|
||||
},
|
||||
{
|
||||
"x": 367.8333333333333,
|
||||
"y": 410
|
||||
},
|
||||
{
|
||||
"x": 321.5,
|
||||
"y": 410
|
||||
},
|
||||
{
|
||||
"x": 321.5,
|
||||
"y": 450
|
||||
|
|
@ -1126,17 +1134,9 @@
|
|||
"labelPosition": "",
|
||||
"labelPercentage": 0,
|
||||
"route": [
|
||||
{
|
||||
"x": 338.5,
|
||||
"y": 370
|
||||
},
|
||||
{
|
||||
"x": 338.5,
|
||||
"y": 410
|
||||
},
|
||||
{
|
||||
"x": 394.5,
|
||||
"y": 410
|
||||
"y": 370
|
||||
},
|
||||
{
|
||||
"x": 394.5,
|
||||
|
|
@ -1175,9 +1175,17 @@
|
|||
"labelPercentage": 0,
|
||||
"route": [
|
||||
{
|
||||
"x": 469.5,
|
||||
"x": 516.3333333333334,
|
||||
"y": 370
|
||||
},
|
||||
{
|
||||
"x": 516.3333333333334,
|
||||
"y": 410
|
||||
},
|
||||
{
|
||||
"x": 469.5,
|
||||
"y": 410
|
||||
},
|
||||
{
|
||||
"x": 469.5,
|
||||
"y": 450
|
||||
|
|
@ -1214,17 +1222,9 @@
|
|||
"labelPosition": "",
|
||||
"labelPercentage": 0,
|
||||
"route": [
|
||||
{
|
||||
"x": 487.5,
|
||||
"y": 370
|
||||
},
|
||||
{
|
||||
"x": 487.5,
|
||||
"y": 410
|
||||
},
|
||||
{
|
||||
"x": 543,
|
||||
"y": 410
|
||||
"y": 370
|
||||
},
|
||||
{
|
||||
"x": 543,
|
||||
|
|
|
|||
|
Before Width: | Height: | Size: 336 KiB After Width: | Height: | Size: 336 KiB |
182
e2etests/testdata/stable/chaos2/elk/board.exp.json
generated
vendored
|
|
@ -11,7 +11,7 @@
|
|||
"y": 12
|
||||
},
|
||||
"width": 694,
|
||||
"height": 1962,
|
||||
"height": 1812,
|
||||
"opacity": 1,
|
||||
"strokeDash": 0,
|
||||
"strokeWidth": 2,
|
||||
|
|
@ -49,7 +49,7 @@
|
|||
"type": "rectangle",
|
||||
"pos": {
|
||||
"x": 62,
|
||||
"y": 762
|
||||
"y": 612
|
||||
},
|
||||
"width": 548,
|
||||
"height": 1067,
|
||||
|
|
@ -90,7 +90,7 @@
|
|||
"type": "rectangle",
|
||||
"pos": {
|
||||
"x": 256,
|
||||
"y": 1089
|
||||
"y": 939
|
||||
},
|
||||
"width": 304,
|
||||
"height": 690,
|
||||
|
|
@ -131,7 +131,7 @@
|
|||
"type": "rectangle",
|
||||
"pos": {
|
||||
"x": 306,
|
||||
"y": 1139
|
||||
"y": 989
|
||||
},
|
||||
"width": 193,
|
||||
"height": 166,
|
||||
|
|
@ -172,7 +172,7 @@
|
|||
"type": "text",
|
||||
"pos": {
|
||||
"x": 356,
|
||||
"y": 1234
|
||||
"y": 1084
|
||||
},
|
||||
"width": 16,
|
||||
"height": 21,
|
||||
|
|
@ -212,7 +212,7 @@
|
|||
"type": "rectangle",
|
||||
"pos": {
|
||||
"x": 392,
|
||||
"y": 1189
|
||||
"y": 1039
|
||||
},
|
||||
"width": 57,
|
||||
"height": 66,
|
||||
|
|
@ -252,10 +252,10 @@
|
|||
"id": "aa.bb.cc.gg",
|
||||
"type": "text",
|
||||
"pos": {
|
||||
"x": 358,
|
||||
"y": 1481
|
||||
"x": 337,
|
||||
"y": 1331
|
||||
},
|
||||
"width": 17,
|
||||
"width": 80,
|
||||
"height": 21,
|
||||
"opacity": 1,
|
||||
"strokeDash": 0,
|
||||
|
|
@ -292,8 +292,8 @@
|
|||
"id": "aa.bb.cc.hh",
|
||||
"type": "rectangle",
|
||||
"pos": {
|
||||
"x": 335,
|
||||
"y": 1663
|
||||
"x": 345,
|
||||
"y": 1513
|
||||
},
|
||||
"width": 63,
|
||||
"height": 66,
|
||||
|
|
@ -334,7 +334,7 @@
|
|||
"type": "package",
|
||||
"pos": {
|
||||
"x": 112,
|
||||
"y": 812
|
||||
"y": 662
|
||||
},
|
||||
"width": 150,
|
||||
"height": 192,
|
||||
|
|
@ -375,7 +375,7 @@
|
|||
"type": "diamond",
|
||||
"pos": {
|
||||
"x": 162,
|
||||
"y": 862
|
||||
"y": 712
|
||||
},
|
||||
"width": 50,
|
||||
"height": 92,
|
||||
|
|
@ -416,7 +416,7 @@
|
|||
"type": "oval",
|
||||
"pos": {
|
||||
"x": 282,
|
||||
"y": 871
|
||||
"y": 721
|
||||
},
|
||||
"width": 74,
|
||||
"height": 74,
|
||||
|
|
@ -457,9 +457,9 @@
|
|||
"type": "rectangle",
|
||||
"pos": {
|
||||
"x": 395,
|
||||
"y": 360
|
||||
"y": 260
|
||||
},
|
||||
"width": 54,
|
||||
"width": 120,
|
||||
"height": 66,
|
||||
"opacity": 1,
|
||||
"strokeDash": 0,
|
||||
|
|
@ -497,10 +497,10 @@
|
|||
"id": "aa.mm",
|
||||
"type": "cylinder",
|
||||
"pos": {
|
||||
"x": 297,
|
||||
"x": 270,
|
||||
"y": 62
|
||||
},
|
||||
"width": 71,
|
||||
"width": 160,
|
||||
"height": 118,
|
||||
"opacity": 1,
|
||||
"strokeDash": 0,
|
||||
|
|
@ -538,7 +538,7 @@
|
|||
"id": "aa.nn",
|
||||
"type": "text",
|
||||
"pos": {
|
||||
"x": 388,
|
||||
"x": 450,
|
||||
"y": 110
|
||||
},
|
||||
"width": 16,
|
||||
|
|
@ -578,7 +578,7 @@
|
|||
"id": "aa.oo",
|
||||
"type": "rectangle",
|
||||
"pos": {
|
||||
"x": 424,
|
||||
"x": 486,
|
||||
"y": 88
|
||||
},
|
||||
"width": 63,
|
||||
|
|
@ -645,11 +645,11 @@
|
|||
"route": [
|
||||
{
|
||||
"x": 364,
|
||||
"y": 1255
|
||||
"y": 1105
|
||||
},
|
||||
{
|
||||
"x": 364,
|
||||
"y": 1481
|
||||
"y": 1331
|
||||
}
|
||||
],
|
||||
"animated": false,
|
||||
|
|
@ -684,12 +684,12 @@
|
|||
"labelPercentage": 0,
|
||||
"route": [
|
||||
{
|
||||
"x": 366.83333333333337,
|
||||
"y": 1502
|
||||
"x": 377.3333333333333,
|
||||
"y": 1352
|
||||
},
|
||||
{
|
||||
"x": 366.8333333333333,
|
||||
"y": 1663
|
||||
"x": 377.3333333333333,
|
||||
"y": 1513
|
||||
}
|
||||
],
|
||||
"animated": false,
|
||||
|
|
@ -725,19 +725,19 @@
|
|||
"route": [
|
||||
{
|
||||
"x": 212,
|
||||
"y": 1004
|
||||
"y": 854
|
||||
},
|
||||
{
|
||||
"x": 212,
|
||||
"y": 1044
|
||||
"y": 894
|
||||
},
|
||||
{
|
||||
"x": 356,
|
||||
"y": 1044
|
||||
"y": 894
|
||||
},
|
||||
{
|
||||
"x": 356,
|
||||
"y": 1139
|
||||
"y": 989
|
||||
}
|
||||
],
|
||||
"animated": false,
|
||||
|
|
@ -772,20 +772,20 @@
|
|||
"labelPercentage": 0,
|
||||
"route": [
|
||||
{
|
||||
"x": 405.8,
|
||||
"y": 426
|
||||
"x": 419,
|
||||
"y": 326
|
||||
},
|
||||
{
|
||||
"x": 405.8,
|
||||
"y": 667
|
||||
"x": 419,
|
||||
"y": 517
|
||||
},
|
||||
{
|
||||
"x": 376,
|
||||
"y": 667
|
||||
"y": 517
|
||||
},
|
||||
{
|
||||
"x": 376,
|
||||
"y": 762
|
||||
"y": 612
|
||||
}
|
||||
],
|
||||
"animated": false,
|
||||
|
|
@ -820,20 +820,12 @@
|
|||
"labelPercentage": 0,
|
||||
"route": [
|
||||
{
|
||||
"x": 340,
|
||||
"x": 366,
|
||||
"y": 180
|
||||
},
|
||||
{
|
||||
"x": 340.4,
|
||||
"y": 270
|
||||
},
|
||||
{
|
||||
"x": 366,
|
||||
"y": 270
|
||||
},
|
||||
{
|
||||
"x": 366,
|
||||
"y": 1089
|
||||
"y": 939
|
||||
}
|
||||
],
|
||||
"animated": false,
|
||||
|
|
@ -868,20 +860,20 @@
|
|||
"labelPercentage": 0,
|
||||
"route": [
|
||||
{
|
||||
"x": 355,
|
||||
"x": 398,
|
||||
"y": 176
|
||||
},
|
||||
{
|
||||
"x": 354.6,
|
||||
"x": 398,
|
||||
"y": 220
|
||||
},
|
||||
{
|
||||
"x": 422,
|
||||
"x": 455,
|
||||
"y": 220
|
||||
},
|
||||
{
|
||||
"x": 422,
|
||||
"y": 360
|
||||
"x": 455,
|
||||
"y": 260
|
||||
}
|
||||
],
|
||||
"animated": false,
|
||||
|
|
@ -916,28 +908,20 @@
|
|||
"labelPercentage": 0,
|
||||
"route": [
|
||||
{
|
||||
"x": 326,
|
||||
"x": 334,
|
||||
"y": 180
|
||||
},
|
||||
{
|
||||
"x": 326.2,
|
||||
"y": 320
|
||||
},
|
||||
{
|
||||
"x": 339,
|
||||
"y": 320
|
||||
},
|
||||
{
|
||||
"x": 339,
|
||||
"y": 717
|
||||
"x": 334,
|
||||
"y": 567
|
||||
},
|
||||
{
|
||||
"x": 197,
|
||||
"y": 717
|
||||
"y": 567
|
||||
},
|
||||
{
|
||||
"x": 197,
|
||||
"y": 762
|
||||
"y": 612
|
||||
}
|
||||
],
|
||||
"animated": false,
|
||||
|
|
@ -972,36 +956,28 @@
|
|||
"labelPercentage": 0,
|
||||
"route": [
|
||||
{
|
||||
"x": 416.6,
|
||||
"y": 426
|
||||
"x": 443,
|
||||
"y": 326
|
||||
},
|
||||
{
|
||||
"x": 416.6,
|
||||
"y": 566
|
||||
},
|
||||
{
|
||||
"x": 425.3,
|
||||
"y": 566
|
||||
},
|
||||
{
|
||||
"x": 425.3,
|
||||
"y": 667
|
||||
"x": 443,
|
||||
"y": 517
|
||||
},
|
||||
{
|
||||
"x": 509,
|
||||
"y": 667
|
||||
"y": 517
|
||||
},
|
||||
{
|
||||
"x": 509,
|
||||
"y": 1441
|
||||
"y": 1291
|
||||
},
|
||||
{
|
||||
"x": 369.6666666666667,
|
||||
"y": 1441
|
||||
"x": 390.6666666666667,
|
||||
"y": 1291
|
||||
},
|
||||
{
|
||||
"x": 369.6666666666667,
|
||||
"y": 1481
|
||||
"x": 390.6666666666667,
|
||||
"y": 1331
|
||||
}
|
||||
],
|
||||
"animated": false,
|
||||
|
|
@ -1036,20 +1012,20 @@
|
|||
"labelPercentage": 0,
|
||||
"route": [
|
||||
{
|
||||
"x": 312,
|
||||
"x": 302,
|
||||
"y": 176
|
||||
},
|
||||
{
|
||||
"x": 312,
|
||||
"y": 667
|
||||
"x": 302,
|
||||
"y": 517
|
||||
},
|
||||
{
|
||||
"x": 187,
|
||||
"y": 667
|
||||
"y": 517
|
||||
},
|
||||
{
|
||||
"x": 187,
|
||||
"y": 812
|
||||
"y": 662
|
||||
}
|
||||
],
|
||||
"animated": false,
|
||||
|
|
@ -1085,27 +1061,27 @@
|
|||
"route": [
|
||||
{
|
||||
"x": 306,
|
||||
"y": 1779
|
||||
"y": 1629
|
||||
},
|
||||
{
|
||||
"x": 306,
|
||||
"y": 1874
|
||||
"y": 1724
|
||||
},
|
||||
{
|
||||
"x": 620,
|
||||
"y": 1874
|
||||
"y": 1724
|
||||
},
|
||||
{
|
||||
"x": 620,
|
||||
"y": 516
|
||||
"y": 416
|
||||
},
|
||||
{
|
||||
"x": 427.4,
|
||||
"y": 516
|
||||
"x": 467,
|
||||
"y": 416
|
||||
},
|
||||
{
|
||||
"x": 427.4,
|
||||
"y": 426
|
||||
"x": 467,
|
||||
"y": 326
|
||||
}
|
||||
],
|
||||
"animated": false,
|
||||
|
|
@ -1141,27 +1117,27 @@
|
|||
"route": [
|
||||
{
|
||||
"x": 162,
|
||||
"y": 1004
|
||||
"y": 854
|
||||
},
|
||||
{
|
||||
"x": 162,
|
||||
"y": 1924
|
||||
"y": 1774
|
||||
},
|
||||
{
|
||||
"x": 647,
|
||||
"y": 1924
|
||||
"y": 1774
|
||||
},
|
||||
{
|
||||
"x": 647,
|
||||
"y": 466
|
||||
"y": 366
|
||||
},
|
||||
{
|
||||
"x": 438.2,
|
||||
"y": 466
|
||||
"x": 491,
|
||||
"y": 366
|
||||
},
|
||||
{
|
||||
"x": 438.2,
|
||||
"y": 426
|
||||
"x": 491,
|
||||
"y": 326
|
||||
}
|
||||
],
|
||||
"animated": false,
|
||||
|
|
|
|||
|
Before Width: | Height: | Size: 815 KiB After Width: | Height: | Size: 815 KiB |
54
e2etests/testdata/stable/circular_dependency/elk/board.exp.json
generated
vendored
|
|
@ -7,7 +7,7 @@
|
|||
"id": "a",
|
||||
"type": "rectangle",
|
||||
"pos": {
|
||||
"x": 12,
|
||||
"x": 21,
|
||||
"y": 12
|
||||
},
|
||||
"width": 53,
|
||||
|
|
@ -49,9 +49,9 @@
|
|||
"type": "rectangle",
|
||||
"pos": {
|
||||
"x": 12,
|
||||
"y": 148
|
||||
"y": 158
|
||||
},
|
||||
"width": 53,
|
||||
"width": 80,
|
||||
"height": 66,
|
||||
"opacity": 1,
|
||||
"strokeDash": 0,
|
||||
|
|
@ -89,8 +89,8 @@
|
|||
"id": "c",
|
||||
"type": "rectangle",
|
||||
"pos": {
|
||||
"x": 12,
|
||||
"y": 284
|
||||
"x": 21,
|
||||
"y": 304
|
||||
},
|
||||
"width": 53,
|
||||
"height": 66,
|
||||
|
|
@ -155,12 +155,12 @@
|
|||
"labelPercentage": 0,
|
||||
"route": [
|
||||
{
|
||||
"x": 29.666666666666668,
|
||||
"x": 38.66666666666667,
|
||||
"y": 78
|
||||
},
|
||||
{
|
||||
"x": 29.666666666666668,
|
||||
"y": 148
|
||||
"x": 38.66666666666667,
|
||||
"y": 158
|
||||
}
|
||||
],
|
||||
"animated": false,
|
||||
|
|
@ -195,12 +195,12 @@
|
|||
"labelPercentage": 0,
|
||||
"route": [
|
||||
{
|
||||
"x": 29.666666666666668,
|
||||
"y": 214
|
||||
"x": 38.66666666666667,
|
||||
"y": 224
|
||||
},
|
||||
{
|
||||
"x": 29.666666666666668,
|
||||
"y": 284
|
||||
"x": 38.66666666666667,
|
||||
"y": 304
|
||||
}
|
||||
],
|
||||
"animated": false,
|
||||
|
|
@ -235,12 +235,20 @@
|
|||
"labelPercentage": 0,
|
||||
"route": [
|
||||
{
|
||||
"x": 47.333333333333336,
|
||||
"y": 284
|
||||
"x": 56.333333333333336,
|
||||
"y": 304
|
||||
},
|
||||
{
|
||||
"x": 47.333333333333336,
|
||||
"y": 214
|
||||
"x": 56.333333333333336,
|
||||
"y": 264
|
||||
},
|
||||
{
|
||||
"x": 65.33333333333334,
|
||||
"y": 264
|
||||
},
|
||||
{
|
||||
"x": 65.33333333333334,
|
||||
"y": 224
|
||||
}
|
||||
],
|
||||
"animated": false,
|
||||
|
|
@ -275,11 +283,19 @@
|
|||
"labelPercentage": 0,
|
||||
"route": [
|
||||
{
|
||||
"x": 47.333333333333336,
|
||||
"y": 148
|
||||
"x": 65.33333333333334,
|
||||
"y": 158
|
||||
},
|
||||
{
|
||||
"x": 47.333333333333336,
|
||||
"x": 65.33333333333334,
|
||||
"y": 118
|
||||
},
|
||||
{
|
||||
"x": 56.333333333333336,
|
||||
"y": 118
|
||||
},
|
||||
{
|
||||
"x": 56.333333333333336,
|
||||
"y": 78
|
||||
}
|
||||
],
|
||||
|
|
|
|||
|
Before Width: | Height: | Size: 329 KiB After Width: | Height: | Size: 329 KiB |
218
e2etests/testdata/stable/dense/elk/board.exp.json
generated
vendored
|
|
@ -7,7 +7,7 @@
|
|||
"id": "a",
|
||||
"type": "rectangle",
|
||||
"pos": {
|
||||
"x": 313,
|
||||
"x": 359,
|
||||
"y": 208
|
||||
},
|
||||
"width": 53,
|
||||
|
|
@ -48,10 +48,10 @@
|
|||
"id": "b",
|
||||
"type": "rectangle",
|
||||
"pos": {
|
||||
"x": 313,
|
||||
"x": 245,
|
||||
"y": 354
|
||||
},
|
||||
"width": 53,
|
||||
"width": 280,
|
||||
"height": 66,
|
||||
"opacity": 1,
|
||||
"strokeDash": 0,
|
||||
|
|
@ -89,7 +89,7 @@
|
|||
"id": "c",
|
||||
"type": "rectangle",
|
||||
"pos": {
|
||||
"x": 240,
|
||||
"x": 286,
|
||||
"y": 208
|
||||
},
|
||||
"width": 53,
|
||||
|
|
@ -130,10 +130,10 @@
|
|||
"id": "d",
|
||||
"type": "rectangle",
|
||||
"pos": {
|
||||
"x": 258,
|
||||
"x": 318,
|
||||
"y": 700
|
||||
},
|
||||
"width": 54,
|
||||
"width": 120,
|
||||
"height": 66,
|
||||
"opacity": 1,
|
||||
"strokeDash": 0,
|
||||
|
|
@ -171,10 +171,10 @@
|
|||
"id": "e",
|
||||
"type": "rectangle",
|
||||
"pos": {
|
||||
"x": 236,
|
||||
"x": 277,
|
||||
"y": 1192
|
||||
},
|
||||
"width": 53,
|
||||
"width": 120,
|
||||
"height": 66,
|
||||
"opacity": 1,
|
||||
"strokeDash": 0,
|
||||
|
|
@ -212,10 +212,10 @@
|
|||
"id": "f",
|
||||
"type": "rectangle",
|
||||
"pos": {
|
||||
"x": 89,
|
||||
"x": 70,
|
||||
"y": 946
|
||||
},
|
||||
"width": 51,
|
||||
"width": 80,
|
||||
"height": 66,
|
||||
"opacity": 1,
|
||||
"strokeDash": 0,
|
||||
|
|
@ -253,7 +253,7 @@
|
|||
"id": "g",
|
||||
"type": "rectangle",
|
||||
"pos": {
|
||||
"x": 96,
|
||||
"x": 97,
|
||||
"y": 700
|
||||
},
|
||||
"width": 54,
|
||||
|
|
@ -335,10 +335,10 @@
|
|||
"id": "i",
|
||||
"type": "rectangle",
|
||||
"pos": {
|
||||
"x": 157,
|
||||
"x": 144,
|
||||
"y": 1338
|
||||
},
|
||||
"width": 49,
|
||||
"width": 80,
|
||||
"height": 66,
|
||||
"opacity": 1,
|
||||
"strokeDash": 0,
|
||||
|
|
@ -376,10 +376,10 @@
|
|||
"id": "j",
|
||||
"type": "rectangle",
|
||||
"pos": {
|
||||
"x": 339,
|
||||
"x": 362,
|
||||
"y": 12
|
||||
},
|
||||
"width": 50,
|
||||
"width": 80,
|
||||
"height": 66,
|
||||
"opacity": 1,
|
||||
"strokeDash": 0,
|
||||
|
|
@ -417,7 +417,7 @@
|
|||
"id": "k",
|
||||
"type": "rectangle",
|
||||
"pos": {
|
||||
"x": 155,
|
||||
"x": 157,
|
||||
"y": 1474
|
||||
},
|
||||
"width": 53,
|
||||
|
|
@ -458,10 +458,10 @@
|
|||
"id": "l",
|
||||
"type": "rectangle",
|
||||
"pos": {
|
||||
"x": 274,
|
||||
"x": 348,
|
||||
"y": 946
|
||||
},
|
||||
"width": 49,
|
||||
"width": 120,
|
||||
"height": 66,
|
||||
"opacity": 1,
|
||||
"strokeDash": 0,
|
||||
|
|
@ -499,10 +499,10 @@
|
|||
"id": "m",
|
||||
"type": "rectangle",
|
||||
"pos": {
|
||||
"x": 170,
|
||||
"x": 171,
|
||||
"y": 700
|
||||
},
|
||||
"width": 57,
|
||||
"width": 80,
|
||||
"height": 66,
|
||||
"opacity": 1,
|
||||
"strokeDash": 0,
|
||||
|
|
@ -540,10 +540,10 @@
|
|||
"id": "n",
|
||||
"type": "rectangle",
|
||||
"pos": {
|
||||
"x": 163,
|
||||
"x": 137,
|
||||
"y": 1192
|
||||
},
|
||||
"width": 53,
|
||||
"width": 120,
|
||||
"height": 66,
|
||||
"opacity": 1,
|
||||
"strokeDash": 0,
|
||||
|
|
@ -581,7 +581,7 @@
|
|||
"id": "o",
|
||||
"type": "rectangle",
|
||||
"pos": {
|
||||
"x": 332,
|
||||
"x": 458,
|
||||
"y": 700
|
||||
},
|
||||
"width": 54,
|
||||
|
|
@ -622,7 +622,7 @@
|
|||
"id": "p",
|
||||
"type": "rectangle",
|
||||
"pos": {
|
||||
"x": 406,
|
||||
"x": 532,
|
||||
"y": 700
|
||||
},
|
||||
"width": 53,
|
||||
|
|
@ -663,7 +663,7 @@
|
|||
"id": "q",
|
||||
"type": "rectangle",
|
||||
"pos": {
|
||||
"x": 235,
|
||||
"x": 310,
|
||||
"y": 1338
|
||||
},
|
||||
"width": 54,
|
||||
|
|
@ -729,11 +729,11 @@
|
|||
"labelPercentage": 0,
|
||||
"route": [
|
||||
{
|
||||
"x": 340.07142857142856,
|
||||
"x": 385.6666666666667,
|
||||
"y": 274
|
||||
},
|
||||
{
|
||||
"x": 340.07142857142856,
|
||||
"x": 385.6666666666667,
|
||||
"y": 354
|
||||
}
|
||||
],
|
||||
|
|
@ -769,19 +769,19 @@
|
|||
"labelPercentage": 0,
|
||||
"route": [
|
||||
{
|
||||
"x": 267.07142857142856,
|
||||
"x": 312.6666666666667,
|
||||
"y": 274
|
||||
},
|
||||
{
|
||||
"x": 267.07142857142856,
|
||||
"x": 312.6666666666667,
|
||||
"y": 314
|
||||
},
|
||||
{
|
||||
"x": 326.82142857142856,
|
||||
"x": 315.6666666666667,
|
||||
"y": 314
|
||||
},
|
||||
{
|
||||
"x": 326.82142857142856,
|
||||
"x": 315.6666666666667,
|
||||
"y": 354
|
||||
}
|
||||
],
|
||||
|
|
@ -817,19 +817,19 @@
|
|||
"labelPercentage": 0,
|
||||
"route": [
|
||||
{
|
||||
"x": 285,
|
||||
"x": 378.6666666666667,
|
||||
"y": 766
|
||||
},
|
||||
{
|
||||
"x": 285,
|
||||
"x": 378.6666666666667,
|
||||
"y": 856
|
||||
},
|
||||
{
|
||||
"x": 263,
|
||||
"x": 337.6666666666667,
|
||||
"y": 856
|
||||
},
|
||||
{
|
||||
"x": 263,
|
||||
"x": 337.6666666666667,
|
||||
"y": 1192
|
||||
}
|
||||
],
|
||||
|
|
@ -865,19 +865,19 @@
|
|||
"labelPercentage": 0,
|
||||
"route": [
|
||||
{
|
||||
"x": 123.99999999999997,
|
||||
"x": 124.00000000000003,
|
||||
"y": 1012
|
||||
},
|
||||
{
|
||||
"x": 123.99999999999997,
|
||||
"x": 124.00000000000003,
|
||||
"y": 1102
|
||||
},
|
||||
{
|
||||
"x": 249.74999999999997,
|
||||
"x": 307.6666666666667,
|
||||
"y": 1102
|
||||
},
|
||||
{
|
||||
"x": 249.74999999999997,
|
||||
"x": 307.6666666666667,
|
||||
"y": 1192
|
||||
}
|
||||
],
|
||||
|
|
@ -913,27 +913,27 @@
|
|||
"labelPercentage": 0,
|
||||
"route": [
|
||||
{
|
||||
"x": 336.2857142857143,
|
||||
"x": 365.6666666666667,
|
||||
"y": 420
|
||||
},
|
||||
{
|
||||
"x": 336.2857142857143,
|
||||
"x": 365.6666666666667,
|
||||
"y": 560
|
||||
},
|
||||
{
|
||||
"x": 85.99999999999997,
|
||||
"x": 86,
|
||||
"y": 560
|
||||
},
|
||||
{
|
||||
"x": 85.99999999999997,
|
||||
"x": 86,
|
||||
"y": 806
|
||||
},
|
||||
{
|
||||
"x": 106.99999999999997,
|
||||
"x": 97.33333333333337,
|
||||
"y": 806
|
||||
},
|
||||
{
|
||||
"x": 106.99999999999997,
|
||||
"x": 97.33333333333337,
|
||||
"y": 946
|
||||
}
|
||||
],
|
||||
|
|
@ -969,19 +969,19 @@
|
|||
"labelPercentage": 0,
|
||||
"route": [
|
||||
{
|
||||
"x": 343.85714285714283,
|
||||
"x": 405.6666666666667,
|
||||
"y": 420
|
||||
},
|
||||
{
|
||||
"x": 343.85714285714283,
|
||||
"x": 405.6666666666667,
|
||||
"y": 610
|
||||
},
|
||||
{
|
||||
"x": 123.99999999999997,
|
||||
"x": 124,
|
||||
"y": 610
|
||||
},
|
||||
{
|
||||
"x": 123.99999999999997,
|
||||
"x": 124,
|
||||
"y": 700
|
||||
}
|
||||
],
|
||||
|
|
@ -1017,11 +1017,11 @@
|
|||
"labelPercentage": 0,
|
||||
"route": [
|
||||
{
|
||||
"x": 123.99999999999997,
|
||||
"x": 124,
|
||||
"y": 766
|
||||
},
|
||||
{
|
||||
"x": 123.99999999999997,
|
||||
"x": 124.00000000000003,
|
||||
"y": 946
|
||||
}
|
||||
],
|
||||
|
|
@ -1057,11 +1057,11 @@
|
|||
"labelPercentage": 0,
|
||||
"route": [
|
||||
{
|
||||
"x": 328.7142857142857,
|
||||
"x": 325.6666666666667,
|
||||
"y": 420
|
||||
},
|
||||
{
|
||||
"x": 328.7142857142857,
|
||||
"x": 325.6666666666667,
|
||||
"y": 510
|
||||
},
|
||||
{
|
||||
|
|
@ -1105,11 +1105,11 @@
|
|||
"labelPercentage": 0,
|
||||
"route": [
|
||||
{
|
||||
"x": 321.1428571428571,
|
||||
"x": 285.6666666666667,
|
||||
"y": 420
|
||||
},
|
||||
{
|
||||
"x": 321.1428571428571,
|
||||
"x": 285.6666666666667,
|
||||
"y": 460
|
||||
},
|
||||
{
|
||||
|
|
@ -1121,11 +1121,11 @@
|
|||
"y": 1298
|
||||
},
|
||||
{
|
||||
"x": 173.66666666666666,
|
||||
"x": 171,
|
||||
"y": 1298
|
||||
},
|
||||
{
|
||||
"x": 173.66666666666666,
|
||||
"x": 171,
|
||||
"y": 1338
|
||||
}
|
||||
],
|
||||
|
|
@ -1161,19 +1161,19 @@
|
|||
"labelPercentage": 0,
|
||||
"route": [
|
||||
{
|
||||
"x": 351.4285714285714,
|
||||
"x": 445.6666666666667,
|
||||
"y": 420
|
||||
},
|
||||
{
|
||||
"x": 351.4285714285714,
|
||||
"x": 445.6666666666667,
|
||||
"y": 660
|
||||
},
|
||||
{
|
||||
"x": 285,
|
||||
"x": 378.6666666666667,
|
||||
"y": 660
|
||||
},
|
||||
{
|
||||
"x": 285,
|
||||
"x": 378.6666666666667,
|
||||
"y": 700
|
||||
}
|
||||
],
|
||||
|
|
@ -1209,19 +1209,19 @@
|
|||
"labelPercentage": 0,
|
||||
"route": [
|
||||
{
|
||||
"x": 351.57142857142856,
|
||||
"x": 382.1666666666667,
|
||||
"y": 78
|
||||
},
|
||||
{
|
||||
"x": 351.57142857142856,
|
||||
"x": 382.1666666666667,
|
||||
"y": 118
|
||||
},
|
||||
{
|
||||
"x": 267.07142857142856,
|
||||
"x": 312.6666666666667,
|
||||
"y": 118
|
||||
},
|
||||
{
|
||||
"x": 267.07142857142856,
|
||||
"x": 312.6666666666667,
|
||||
"y": 208
|
||||
}
|
||||
],
|
||||
|
|
@ -1257,19 +1257,19 @@
|
|||
"labelPercentage": 0,
|
||||
"route": [
|
||||
{
|
||||
"x": 364.07142857142856,
|
||||
"x": 402.1666666666667,
|
||||
"y": 78
|
||||
},
|
||||
{
|
||||
"x": 364.07142857142856,
|
||||
"x": 402.1666666666667,
|
||||
"y": 168
|
||||
},
|
||||
{
|
||||
"x": 340.07142857142856,
|
||||
"x": 385.6666666666667,
|
||||
"y": 168
|
||||
},
|
||||
{
|
||||
"x": 340.07142857142856,
|
||||
"x": 385.6666666666667,
|
||||
"y": 208
|
||||
}
|
||||
],
|
||||
|
|
@ -1305,19 +1305,19 @@
|
|||
"labelPercentage": 0,
|
||||
"route": [
|
||||
{
|
||||
"x": 353.32142857142856,
|
||||
"x": 455.6666666666667,
|
||||
"y": 354
|
||||
},
|
||||
{
|
||||
"x": 353.32142857142856,
|
||||
"x": 455.6666666666667,
|
||||
"y": 314
|
||||
},
|
||||
{
|
||||
"x": 376.57142857142856,
|
||||
"x": 422.1666666666667,
|
||||
"y": 314
|
||||
},
|
||||
{
|
||||
"x": 376.57142857142856,
|
||||
"x": 422.1666666666667,
|
||||
"y": 78
|
||||
}
|
||||
],
|
||||
|
|
@ -1353,11 +1353,11 @@
|
|||
"labelPercentage": 0,
|
||||
"route": [
|
||||
{
|
||||
"x": 181.83333333333331,
|
||||
"x": 184.33333333333334,
|
||||
"y": 1404
|
||||
},
|
||||
{
|
||||
"x": 181.83333333333331,
|
||||
"x": 184.33333333333334,
|
||||
"y": 1474
|
||||
}
|
||||
],
|
||||
|
|
@ -1393,11 +1393,11 @@
|
|||
"labelPercentage": 0,
|
||||
"route": [
|
||||
{
|
||||
"x": 298.5,
|
||||
"x": 408.6666666666667,
|
||||
"y": 766
|
||||
},
|
||||
{
|
||||
"x": 298.5,
|
||||
"x": 408.6666666666667,
|
||||
"y": 946
|
||||
}
|
||||
],
|
||||
|
|
@ -1433,19 +1433,19 @@
|
|||
"labelPercentage": 0,
|
||||
"route": [
|
||||
{
|
||||
"x": 298.5,
|
||||
"x": 408.6666666666667,
|
||||
"y": 1012
|
||||
},
|
||||
{
|
||||
"x": 298.5,
|
||||
"y": 1102
|
||||
"x": 408.6666666666667,
|
||||
"y": 1052
|
||||
},
|
||||
{
|
||||
"x": 276.25,
|
||||
"y": 1102
|
||||
"x": 367.6666666666667,
|
||||
"y": 1052
|
||||
},
|
||||
{
|
||||
"x": 276.25,
|
||||
"x": 367.6666666666667,
|
||||
"y": 1192
|
||||
}
|
||||
],
|
||||
|
|
@ -1481,19 +1481,19 @@
|
|||
"labelPercentage": 0,
|
||||
"route": [
|
||||
{
|
||||
"x": 208.99999999999997,
|
||||
"x": 224.33333333333334,
|
||||
"y": 766
|
||||
},
|
||||
{
|
||||
"x": 208.99999999999997,
|
||||
"x": 224.33333333333334,
|
||||
"y": 906
|
||||
},
|
||||
{
|
||||
"x": 286.25,
|
||||
"x": 378.6666666666667,
|
||||
"y": 906
|
||||
},
|
||||
{
|
||||
"x": 286.25,
|
||||
"x": 378.6666666666667,
|
||||
"y": 946
|
||||
}
|
||||
],
|
||||
|
|
@ -1529,11 +1529,11 @@
|
|||
"labelPercentage": 0,
|
||||
"route": [
|
||||
{
|
||||
"x": 189.99999999999997,
|
||||
"x": 197.66666666666666,
|
||||
"y": 766
|
||||
},
|
||||
{
|
||||
"x": 189.99999999999997,
|
||||
"x": 197.66666666666669,
|
||||
"y": 1192
|
||||
}
|
||||
],
|
||||
|
|
@ -1569,11 +1569,11 @@
|
|||
"labelPercentage": 0,
|
||||
"route": [
|
||||
{
|
||||
"x": 189.99999999999997,
|
||||
"x": 197.66666666666669,
|
||||
"y": 1258
|
||||
},
|
||||
{
|
||||
"x": 189.99999999999997,
|
||||
"x": 197.66666666666669,
|
||||
"y": 1338
|
||||
}
|
||||
],
|
||||
|
|
@ -1609,27 +1609,27 @@
|
|||
"labelPercentage": 0,
|
||||
"route": [
|
||||
{
|
||||
"x": 271.5,
|
||||
"x": 348.6666666666667,
|
||||
"y": 766
|
||||
},
|
||||
{
|
||||
"x": 271.5,
|
||||
"x": 348.6666666666667,
|
||||
"y": 806
|
||||
},
|
||||
{
|
||||
"x": 251.99999999999997,
|
||||
"x": 326.6666666666667,
|
||||
"y": 806
|
||||
},
|
||||
{
|
||||
"x": 251.99999999999997,
|
||||
"x": 326.6666666666667,
|
||||
"y": 1052
|
||||
},
|
||||
{
|
||||
"x": 203.24999999999997,
|
||||
"x": 227.66666666666669,
|
||||
"y": 1052
|
||||
},
|
||||
{
|
||||
"x": 203.24999999999997,
|
||||
"x": 227.66666666666669,
|
||||
"y": 1192
|
||||
}
|
||||
],
|
||||
|
|
@ -1665,19 +1665,19 @@
|
|||
"labelPercentage": 0,
|
||||
"route": [
|
||||
{
|
||||
"x": 106.99999999999997,
|
||||
"x": 97.33333333333337,
|
||||
"y": 1012
|
||||
},
|
||||
{
|
||||
"x": 106.99999999999997,
|
||||
"x": 97.33333333333337,
|
||||
"y": 1152
|
||||
},
|
||||
{
|
||||
"x": 176.74999999999997,
|
||||
"x": 167.66666666666669,
|
||||
"y": 1152
|
||||
},
|
||||
{
|
||||
"x": 176.74999999999997,
|
||||
"x": 167.66666666666669,
|
||||
"y": 1192
|
||||
}
|
||||
],
|
||||
|
|
@ -1713,11 +1713,11 @@
|
|||
"labelPercentage": 0,
|
||||
"route": [
|
||||
{
|
||||
"x": 359,
|
||||
"x": 485.6666666666667,
|
||||
"y": 420
|
||||
},
|
||||
{
|
||||
"x": 359,
|
||||
"x": 485.6666666666667,
|
||||
"y": 700
|
||||
}
|
||||
],
|
||||
|
|
@ -1753,19 +1753,19 @@
|
|||
"labelPercentage": 0,
|
||||
"route": [
|
||||
{
|
||||
"x": 432.5,
|
||||
"x": 559.1666666666667,
|
||||
"y": 766
|
||||
},
|
||||
{
|
||||
"x": 432.5,
|
||||
"x": 559.1666666666667,
|
||||
"y": 806
|
||||
},
|
||||
{
|
||||
"x": 310.75,
|
||||
"x": 438.6666666666667,
|
||||
"y": 806
|
||||
},
|
||||
{
|
||||
"x": 310.75,
|
||||
"x": 438.6666666666667,
|
||||
"y": 946
|
||||
}
|
||||
],
|
||||
|
|
@ -1801,11 +1801,11 @@
|
|||
"labelPercentage": 0,
|
||||
"route": [
|
||||
{
|
||||
"x": 263,
|
||||
"x": 337.6666666666667,
|
||||
"y": 1258
|
||||
},
|
||||
{
|
||||
"x": 263,
|
||||
"x": 337.6666666666667,
|
||||
"y": 1338
|
||||
}
|
||||
],
|
||||
|
|
|
|||
|
Before Width: | Height: | Size: 340 KiB After Width: | Height: | Size: 340 KiB |
48
e2etests/testdata/stable/different_subgraphs/elk/board.exp.json
generated
vendored
|
|
@ -7,10 +7,10 @@
|
|||
"id": "a",
|
||||
"type": "rectangle",
|
||||
"pos": {
|
||||
"x": 319,
|
||||
"x": 269,
|
||||
"y": 530
|
||||
},
|
||||
"width": 53,
|
||||
"width": 120,
|
||||
"height": 66,
|
||||
"opacity": 1,
|
||||
"strokeDash": 0,
|
||||
|
|
@ -48,10 +48,10 @@
|
|||
"id": "tree",
|
||||
"type": "rectangle",
|
||||
"pos": {
|
||||
"x": 106,
|
||||
"x": 102,
|
||||
"y": 726
|
||||
},
|
||||
"width": 74,
|
||||
"width": 80,
|
||||
"height": 66,
|
||||
"opacity": 1,
|
||||
"strokeDash": 0,
|
||||
|
|
@ -294,10 +294,10 @@
|
|||
"id": "then",
|
||||
"type": "rectangle",
|
||||
"pos": {
|
||||
"x": 434,
|
||||
"x": 433,
|
||||
"y": 530
|
||||
},
|
||||
"width": 78,
|
||||
"width": 80,
|
||||
"height": 66,
|
||||
"opacity": 1,
|
||||
"strokeDash": 0,
|
||||
|
|
@ -704,10 +704,10 @@
|
|||
"id": "finally.a",
|
||||
"type": "rectangle",
|
||||
"pos": {
|
||||
"x": 741,
|
||||
"x": 732,
|
||||
"y": 198
|
||||
},
|
||||
"width": 53,
|
||||
"width": 80,
|
||||
"height": 66,
|
||||
"opacity": 1,
|
||||
"strokeDash": 0,
|
||||
|
|
@ -786,7 +786,7 @@
|
|||
"id": "finally.inside",
|
||||
"type": "rectangle",
|
||||
"pos": {
|
||||
"x": 724,
|
||||
"x": 728,
|
||||
"y": 62
|
||||
},
|
||||
"width": 88,
|
||||
|
|
@ -934,19 +934,19 @@
|
|||
"labelPercentage": 0,
|
||||
"route": [
|
||||
{
|
||||
"x": 332.5,
|
||||
"x": 299,
|
||||
"y": 596
|
||||
},
|
||||
{
|
||||
"x": 332.5,
|
||||
"x": 299,
|
||||
"y": 636
|
||||
},
|
||||
{
|
||||
"x": 143.16666666666663,
|
||||
"x": 142.16666666666663,
|
||||
"y": 636
|
||||
},
|
||||
{
|
||||
"x": 143.16666666666663,
|
||||
"x": 142.16666666666663,
|
||||
"y": 726
|
||||
}
|
||||
],
|
||||
|
|
@ -982,11 +982,11 @@
|
|||
"labelPercentage": 0,
|
||||
"route": [
|
||||
{
|
||||
"x": 345.75,
|
||||
"x": 329,
|
||||
"y": 596
|
||||
},
|
||||
{
|
||||
"x": 345.75,
|
||||
"x": 329,
|
||||
"y": 686
|
||||
},
|
||||
{
|
||||
|
|
@ -1110,11 +1110,11 @@
|
|||
"labelPercentage": 0,
|
||||
"route": [
|
||||
{
|
||||
"x": 130.83333333333326,
|
||||
"x": 128.83333333333326,
|
||||
"y": 792
|
||||
},
|
||||
{
|
||||
"x": 130.83333333333326,
|
||||
"x": 128.83333333333326,
|
||||
"y": 832
|
||||
},
|
||||
{
|
||||
|
|
@ -1198,7 +1198,7 @@
|
|||
"labelPercentage": 0,
|
||||
"route": [
|
||||
{
|
||||
"x": 460.5,
|
||||
"x": 460.50000000000006,
|
||||
"y": 596
|
||||
},
|
||||
{
|
||||
|
|
@ -1318,11 +1318,11 @@
|
|||
"labelPercentage": 0,
|
||||
"route": [
|
||||
{
|
||||
"x": 486.5,
|
||||
"x": 487.1666666666667,
|
||||
"y": 596
|
||||
},
|
||||
{
|
||||
"x": 486.5,
|
||||
"x": 487.1666666666667,
|
||||
"y": 636
|
||||
},
|
||||
{
|
||||
|
|
@ -1574,11 +1574,11 @@
|
|||
"labelPercentage": 0,
|
||||
"route": [
|
||||
{
|
||||
"x": 768.1666666666666,
|
||||
"x": 772.6666666666666,
|
||||
"y": 128
|
||||
},
|
||||
{
|
||||
"x": 768.1666666666666,
|
||||
"x": 772.6666666666666,
|
||||
"y": 198
|
||||
}
|
||||
],
|
||||
|
|
@ -1654,11 +1654,11 @@
|
|||
"labelPercentage": 0,
|
||||
"route": [
|
||||
{
|
||||
"x": 776.9999999999999,
|
||||
"x": 786,
|
||||
"y": 264
|
||||
},
|
||||
{
|
||||
"x": 776.9999999999999,
|
||||
"x": 786,
|
||||
"y": 304
|
||||
},
|
||||
{
|
||||
|
|
|
|||
|
Before Width: | Height: | Size: 662 KiB After Width: | Height: | Size: 662 KiB |
60
e2etests/testdata/stable/elk_border_radius/elk/board.exp.json
generated
vendored
|
|
@ -7,10 +7,10 @@
|
|||
"id": "a",
|
||||
"type": "rectangle",
|
||||
"pos": {
|
||||
"x": 29,
|
||||
"x": 84,
|
||||
"y": 12
|
||||
},
|
||||
"width": 53,
|
||||
"width": 200,
|
||||
"height": 66,
|
||||
"opacity": 1,
|
||||
"strokeDash": 0,
|
||||
|
|
@ -49,7 +49,7 @@
|
|||
"type": "rectangle",
|
||||
"pos": {
|
||||
"x": 12,
|
||||
"y": 308
|
||||
"y": 208
|
||||
},
|
||||
"width": 53,
|
||||
"height": 66,
|
||||
|
|
@ -90,7 +90,7 @@
|
|||
"type": "rectangle",
|
||||
"pos": {
|
||||
"x": 85,
|
||||
"y": 308
|
||||
"y": 208
|
||||
},
|
||||
"width": 53,
|
||||
"height": 66,
|
||||
|
|
@ -131,7 +131,7 @@
|
|||
"type": "rectangle",
|
||||
"pos": {
|
||||
"x": 158,
|
||||
"y": 308
|
||||
"y": 208
|
||||
},
|
||||
"width": 53,
|
||||
"height": 66,
|
||||
|
|
@ -172,7 +172,7 @@
|
|||
"type": "rectangle",
|
||||
"pos": {
|
||||
"x": 231,
|
||||
"y": 308
|
||||
"y": 208
|
||||
},
|
||||
"width": 51,
|
||||
"height": 66,
|
||||
|
|
@ -213,7 +213,7 @@
|
|||
"type": "rectangle",
|
||||
"pos": {
|
||||
"x": 302,
|
||||
"y": 308
|
||||
"y": 208
|
||||
},
|
||||
"width": 54,
|
||||
"height": 66,
|
||||
|
|
@ -278,12 +278,20 @@
|
|||
"labelPercentage": 0,
|
||||
"route": [
|
||||
{
|
||||
"x": 38.5,
|
||||
"x": 117.83333333333334,
|
||||
"y": 78
|
||||
},
|
||||
{
|
||||
"x": 117.83333333333334,
|
||||
"y": 118
|
||||
},
|
||||
{
|
||||
"x": 38.5,
|
||||
"y": 308
|
||||
"y": 118
|
||||
},
|
||||
{
|
||||
"x": 38.5,
|
||||
"y": 208
|
||||
}
|
||||
],
|
||||
"animated": false,
|
||||
|
|
@ -317,20 +325,20 @@
|
|||
"labelPercentage": 0,
|
||||
"route": [
|
||||
{
|
||||
"x": 47.33333333333333,
|
||||
"x": 151.16666666666669,
|
||||
"y": 78
|
||||
},
|
||||
{
|
||||
"x": 47.33333333333333,
|
||||
"y": 268
|
||||
"x": 151.16666666666669,
|
||||
"y": 168
|
||||
},
|
||||
{
|
||||
"x": 111.5,
|
||||
"y": 268
|
||||
"y": 168
|
||||
},
|
||||
{
|
||||
"x": 111.5,
|
||||
"y": 308
|
||||
"y": 208
|
||||
}
|
||||
],
|
||||
"animated": false,
|
||||
|
|
@ -365,20 +373,12 @@
|
|||
"labelPercentage": 0,
|
||||
"route": [
|
||||
{
|
||||
"x": 56.166666666666664,
|
||||
"x": 184.5,
|
||||
"y": 78
|
||||
},
|
||||
{
|
||||
"x": 56.166666666666664,
|
||||
"y": 218
|
||||
},
|
||||
{
|
||||
"x": 184.5,
|
||||
"y": 218
|
||||
},
|
||||
{
|
||||
"x": 184.5,
|
||||
"y": 308
|
||||
"y": 208
|
||||
}
|
||||
],
|
||||
"animated": false,
|
||||
|
|
@ -413,11 +413,11 @@
|
|||
"labelPercentage": 0,
|
||||
"route": [
|
||||
{
|
||||
"x": 65,
|
||||
"x": 217.83333333333331,
|
||||
"y": 78
|
||||
},
|
||||
{
|
||||
"x": 65,
|
||||
"x": 217.83333333333331,
|
||||
"y": 168
|
||||
},
|
||||
{
|
||||
|
|
@ -426,7 +426,7 @@
|
|||
},
|
||||
{
|
||||
"x": 256.5,
|
||||
"y": 308
|
||||
"y": 208
|
||||
}
|
||||
],
|
||||
"animated": false,
|
||||
|
|
@ -461,11 +461,11 @@
|
|||
"labelPercentage": 0,
|
||||
"route": [
|
||||
{
|
||||
"x": 73.83333333333334,
|
||||
"x": 251.16666666666663,
|
||||
"y": 78
|
||||
},
|
||||
{
|
||||
"x": 73.83333333333334,
|
||||
"x": 251.16666666666663,
|
||||
"y": 118
|
||||
},
|
||||
{
|
||||
|
|
@ -474,7 +474,7 @@
|
|||
},
|
||||
{
|
||||
"x": 329,
|
||||
"y": 308
|
||||
"y": 208
|
||||
}
|
||||
],
|
||||
"animated": false,
|
||||
|
|
|
|||
|
Before Width: | Height: | Size: 331 KiB After Width: | Height: | Size: 331 KiB |
202
e2etests/testdata/stable/investigate/elk/board.exp.json
generated
vendored
|
|
@ -7,7 +7,7 @@
|
|||
"id": "aa",
|
||||
"type": "step",
|
||||
"pos": {
|
||||
"x": 67,
|
||||
"x": 70,
|
||||
"y": 12
|
||||
},
|
||||
"width": 102,
|
||||
|
|
@ -48,7 +48,7 @@
|
|||
"id": "bb",
|
||||
"type": "step",
|
||||
"pos": {
|
||||
"x": 152,
|
||||
"x": 155,
|
||||
"y": 193
|
||||
},
|
||||
"width": 103,
|
||||
|
|
@ -89,7 +89,7 @@
|
|||
"id": "cc",
|
||||
"type": "step",
|
||||
"pos": {
|
||||
"x": 136,
|
||||
"x": 138,
|
||||
"y": 374
|
||||
},
|
||||
"width": 101,
|
||||
|
|
@ -130,7 +130,7 @@
|
|||
"id": "dd",
|
||||
"type": "rectangle",
|
||||
"pos": {
|
||||
"x": 19,
|
||||
"x": 22,
|
||||
"y": 641
|
||||
},
|
||||
"width": 250,
|
||||
|
|
@ -171,7 +171,7 @@
|
|||
"id": "dd.ee",
|
||||
"type": "diamond",
|
||||
"pos": {
|
||||
"x": 69,
|
||||
"x": 72,
|
||||
"y": 691
|
||||
},
|
||||
"width": 64,
|
||||
|
|
@ -212,10 +212,10 @@
|
|||
"id": "ff",
|
||||
"type": "rectangle",
|
||||
"pos": {
|
||||
"x": 279,
|
||||
"x": 289,
|
||||
"y": 1839
|
||||
},
|
||||
"width": 276,
|
||||
"width": 283,
|
||||
"height": 338,
|
||||
"opacity": 1,
|
||||
"strokeDash": 0,
|
||||
|
|
@ -253,10 +253,10 @@
|
|||
"id": "ff.gg",
|
||||
"type": "diamond",
|
||||
"pos": {
|
||||
"x": 338,
|
||||
"x": 342,
|
||||
"y": 1889
|
||||
},
|
||||
"width": 66,
|
||||
"width": 80,
|
||||
"height": 92,
|
||||
"opacity": 1,
|
||||
"strokeDash": 0,
|
||||
|
|
@ -294,7 +294,7 @@
|
|||
"id": "dd.hh",
|
||||
"type": "diamond",
|
||||
"pos": {
|
||||
"x": 153,
|
||||
"x": 156,
|
||||
"y": 691
|
||||
},
|
||||
"width": 66,
|
||||
|
|
@ -335,7 +335,7 @@
|
|||
"id": "ii",
|
||||
"type": "rectangle",
|
||||
"pos": {
|
||||
"x": 292,
|
||||
"x": 303,
|
||||
"y": 998
|
||||
},
|
||||
"width": 54,
|
||||
|
|
@ -376,7 +376,7 @@
|
|||
"id": "jj",
|
||||
"type": "rectangle",
|
||||
"pos": {
|
||||
"x": 291,
|
||||
"x": 303,
|
||||
"y": 1189
|
||||
},
|
||||
"width": 55,
|
||||
|
|
@ -417,10 +417,10 @@
|
|||
"id": "kk",
|
||||
"type": "rectangle",
|
||||
"pos": {
|
||||
"x": 288,
|
||||
"x": 290,
|
||||
"y": 1451
|
||||
},
|
||||
"width": 62,
|
||||
"width": 80,
|
||||
"height": 66,
|
||||
"opacity": 1,
|
||||
"strokeDash": 0,
|
||||
|
|
@ -458,7 +458,7 @@
|
|||
"id": "ll",
|
||||
"type": "rectangle",
|
||||
"pos": {
|
||||
"x": 238,
|
||||
"x": 249,
|
||||
"y": 2358
|
||||
},
|
||||
"width": 265,
|
||||
|
|
@ -499,7 +499,7 @@
|
|||
"id": "ll.mm",
|
||||
"type": "oval",
|
||||
"pos": {
|
||||
"x": 288,
|
||||
"x": 299,
|
||||
"y": 2408
|
||||
},
|
||||
"width": 81,
|
||||
|
|
@ -540,7 +540,7 @@
|
|||
"id": "ff.mm",
|
||||
"type": "oval",
|
||||
"pos": {
|
||||
"x": 424,
|
||||
"x": 442,
|
||||
"y": 1894
|
||||
},
|
||||
"width": 81,
|
||||
|
|
@ -663,7 +663,7 @@
|
|||
"id": "ff.pp",
|
||||
"type": "rectangle",
|
||||
"pos": {
|
||||
"x": 340,
|
||||
"x": 350,
|
||||
"y": 2061
|
||||
},
|
||||
"width": 63,
|
||||
|
|
@ -704,7 +704,7 @@
|
|||
"id": "ll.qq",
|
||||
"type": "rectangle",
|
||||
"pos": {
|
||||
"x": 389,
|
||||
"x": 400,
|
||||
"y": 2415
|
||||
},
|
||||
"width": 64,
|
||||
|
|
@ -745,7 +745,7 @@
|
|||
"id": "ll.rr",
|
||||
"type": "rectangle",
|
||||
"pos": {
|
||||
"x": 392,
|
||||
"x": 403,
|
||||
"y": 2559
|
||||
},
|
||||
"width": 58,
|
||||
|
|
@ -786,7 +786,7 @@
|
|||
"id": "ss",
|
||||
"type": "rectangle",
|
||||
"pos": {
|
||||
"x": 107,
|
||||
"x": 110,
|
||||
"y": 1139
|
||||
},
|
||||
"width": 158,
|
||||
|
|
@ -827,7 +827,7 @@
|
|||
"id": "ss.tt",
|
||||
"type": "rectangle",
|
||||
"pos": {
|
||||
"x": 157,
|
||||
"x": 160,
|
||||
"y": 1189
|
||||
},
|
||||
"width": 58,
|
||||
|
|
@ -868,7 +868,7 @@
|
|||
"id": "uu",
|
||||
"type": "rectangle",
|
||||
"pos": {
|
||||
"x": 105,
|
||||
"x": 107,
|
||||
"y": 1385
|
||||
},
|
||||
"width": 163,
|
||||
|
|
@ -909,7 +909,7 @@
|
|||
"id": "uu.vv",
|
||||
"type": "rectangle",
|
||||
"pos": {
|
||||
"x": 155,
|
||||
"x": 157,
|
||||
"y": 1435
|
||||
},
|
||||
"width": 63,
|
||||
|
|
@ -950,7 +950,7 @@
|
|||
"id": "ww",
|
||||
"type": "queue",
|
||||
"pos": {
|
||||
"x": 137,
|
||||
"x": 139,
|
||||
"y": 1636
|
||||
},
|
||||
"width": 149,
|
||||
|
|
@ -1002,10 +1002,10 @@
|
|||
"id": "rm",
|
||||
"type": "rectangle",
|
||||
"pos": {
|
||||
"x": 154,
|
||||
"x": 149,
|
||||
"y": 2525
|
||||
},
|
||||
"width": 64,
|
||||
"width": 80,
|
||||
"height": 66,
|
||||
"opacity": 1,
|
||||
"strokeDash": 0,
|
||||
|
|
@ -1084,7 +1084,7 @@
|
|||
"id": "yy",
|
||||
"type": "rectangle",
|
||||
"pos": {
|
||||
"x": 279,
|
||||
"x": 290,
|
||||
"y": 2815
|
||||
},
|
||||
"width": 238,
|
||||
|
|
@ -1125,7 +1125,7 @@
|
|||
"id": "yy.zz",
|
||||
"type": "queue",
|
||||
"pos": {
|
||||
"x": 329,
|
||||
"x": 340,
|
||||
"y": 2865
|
||||
},
|
||||
"width": 138,
|
||||
|
|
@ -1177,7 +1177,7 @@
|
|||
"id": "yy.ab",
|
||||
"type": "rectangle",
|
||||
"pos": {
|
||||
"x": 367,
|
||||
"x": 377,
|
||||
"y": 3053
|
||||
},
|
||||
"width": 63,
|
||||
|
|
@ -1325,19 +1325,19 @@
|
|||
"labelPercentage": 0,
|
||||
"route": [
|
||||
{
|
||||
"x": 136,
|
||||
"y": 112
|
||||
"x": 138,
|
||||
"y": 111
|
||||
},
|
||||
{
|
||||
"x": 135.66666666666666,
|
||||
"x": 138.33333333333334,
|
||||
"y": 153
|
||||
},
|
||||
{
|
||||
"x": 203.83333333333331,
|
||||
"x": 206.5,
|
||||
"y": 153
|
||||
},
|
||||
{
|
||||
"x": 204,
|
||||
"x": 207,
|
||||
"y": 193
|
||||
}
|
||||
],
|
||||
|
|
@ -1373,11 +1373,11 @@
|
|||
"labelPercentage": 0,
|
||||
"route": [
|
||||
{
|
||||
"x": 187,
|
||||
"x": 189,
|
||||
"y": 294
|
||||
},
|
||||
{
|
||||
"x": 187,
|
||||
"x": 189,
|
||||
"y": 374
|
||||
}
|
||||
],
|
||||
|
|
@ -1413,11 +1413,11 @@
|
|||
"labelPercentage": 0,
|
||||
"route": [
|
||||
{
|
||||
"x": 102,
|
||||
"x": 104,
|
||||
"y": 113
|
||||
},
|
||||
{
|
||||
"x": 102,
|
||||
"x": 104,
|
||||
"y": 691
|
||||
}
|
||||
],
|
||||
|
|
@ -1453,19 +1453,19 @@
|
|||
"labelPercentage": 0,
|
||||
"route": [
|
||||
{
|
||||
"x": 221,
|
||||
"x": 224,
|
||||
"y": 293
|
||||
},
|
||||
{
|
||||
"x": 220.99999999999997,
|
||||
"x": 223.66666666666666,
|
||||
"y": 334
|
||||
},
|
||||
{
|
||||
"x": 382.66666666666663,
|
||||
"x": 395.66666666666663,
|
||||
"y": 334
|
||||
},
|
||||
{
|
||||
"x": 383,
|
||||
"x": 396,
|
||||
"y": 1904
|
||||
}
|
||||
],
|
||||
|
|
@ -1501,11 +1501,11 @@
|
|||
"labelPercentage": 0,
|
||||
"route": [
|
||||
{
|
||||
"x": 187,
|
||||
"x": 189,
|
||||
"y": 475
|
||||
},
|
||||
{
|
||||
"x": 187,
|
||||
"x": 189,
|
||||
"y": 691
|
||||
}
|
||||
],
|
||||
|
|
@ -1541,27 +1541,27 @@
|
|||
"labelPercentage": 0,
|
||||
"route": [
|
||||
{
|
||||
"x": 102,
|
||||
"x": 104,
|
||||
"y": 783
|
||||
},
|
||||
{
|
||||
"x": 101.66666666666666,
|
||||
"x": 104.33333333333334,
|
||||
"y": 823
|
||||
},
|
||||
{
|
||||
"x": 196.66666666666666,
|
||||
"x": 199.33333333333334,
|
||||
"y": 823
|
||||
},
|
||||
{
|
||||
"x": 196.66666666666666,
|
||||
"x": 199.33333333333334,
|
||||
"y": 958
|
||||
},
|
||||
{
|
||||
"x": 319.16666666666663,
|
||||
"x": 330.83333333333337,
|
||||
"y": 958
|
||||
},
|
||||
{
|
||||
"x": 319.16666666666663,
|
||||
"x": 330.83333333333337,
|
||||
"y": 998
|
||||
}
|
||||
],
|
||||
|
|
@ -1597,11 +1597,11 @@
|
|||
"labelPercentage": 0,
|
||||
"route": [
|
||||
{
|
||||
"x": 319.16666666666663,
|
||||
"x": 330.83333333333337,
|
||||
"y": 1064
|
||||
},
|
||||
{
|
||||
"x": 319.16666666666663,
|
||||
"x": 330.83333333333337,
|
||||
"y": 1189
|
||||
}
|
||||
],
|
||||
|
|
@ -1637,11 +1637,11 @@
|
|||
"labelPercentage": 0,
|
||||
"route": [
|
||||
{
|
||||
"x": 319.16666666666663,
|
||||
"x": 330.83333333333337,
|
||||
"y": 1255
|
||||
},
|
||||
{
|
||||
"x": 319.16666666666663,
|
||||
"x": 330.83333333333337,
|
||||
"y": 1451.6666666666667
|
||||
}
|
||||
],
|
||||
|
|
@ -1677,19 +1677,19 @@
|
|||
"labelPercentage": 0,
|
||||
"route": [
|
||||
{
|
||||
"x": 329.49999999999994,
|
||||
"x": 344.1666666666667,
|
||||
"y": 1517.6666666666667
|
||||
},
|
||||
{
|
||||
"x": 329.49999999999994,
|
||||
"x": 344.1666666666667,
|
||||
"y": 1596
|
||||
},
|
||||
{
|
||||
"x": 465.16666666666663,
|
||||
"x": 482.8333333333333,
|
||||
"y": 1596
|
||||
},
|
||||
{
|
||||
"x": 465,
|
||||
"x": 483,
|
||||
"y": 1895
|
||||
}
|
||||
],
|
||||
|
|
@ -1725,19 +1725,19 @@
|
|||
"labelPercentage": 0,
|
||||
"route": [
|
||||
{
|
||||
"x": 465,
|
||||
"x": 483,
|
||||
"y": 1976
|
||||
},
|
||||
{
|
||||
"x": 465.16666666666663,
|
||||
"x": 482.8333333333333,
|
||||
"y": 2021
|
||||
},
|
||||
{
|
||||
"x": 329.16666666666663,
|
||||
"x": 339.8333333333333,
|
||||
"y": 2021
|
||||
},
|
||||
{
|
||||
"x": 329,
|
||||
"x": 340,
|
||||
"y": 2408
|
||||
}
|
||||
],
|
||||
|
|
@ -1773,11 +1773,11 @@
|
|||
"labelPercentage": 0,
|
||||
"route": [
|
||||
{
|
||||
"x": 329,
|
||||
"x": 340,
|
||||
"y": 2489
|
||||
},
|
||||
{
|
||||
"x": 329.16666666666663,
|
||||
"x": 339.8333333333333,
|
||||
"y": 2720
|
||||
},
|
||||
{
|
||||
|
|
@ -1785,7 +1785,7 @@
|
|||
"y": 2720
|
||||
},
|
||||
{
|
||||
"x": 93.49999999999997,
|
||||
"x": 93.5,
|
||||
"y": 3309
|
||||
}
|
||||
],
|
||||
|
|
@ -1821,11 +1821,11 @@
|
|||
"labelPercentage": 0,
|
||||
"route": [
|
||||
{
|
||||
"x": 372,
|
||||
"x": 382,
|
||||
"y": 1981
|
||||
},
|
||||
{
|
||||
"x": 371.66666666666663,
|
||||
"x": 382.3333333333333,
|
||||
"y": 2061
|
||||
}
|
||||
],
|
||||
|
|
@ -1861,19 +1861,19 @@
|
|||
"labelPercentage": 0,
|
||||
"route": [
|
||||
{
|
||||
"x": 371.66666666666663,
|
||||
"x": 382.3333333333333,
|
||||
"y": 2127
|
||||
},
|
||||
{
|
||||
"x": 371.66666666666663,
|
||||
"x": 382.3333333333333,
|
||||
"y": 2222
|
||||
},
|
||||
{
|
||||
"x": 421.66666666666663,
|
||||
"x": 432.3333333333333,
|
||||
"y": 2222
|
||||
},
|
||||
{
|
||||
"x": 421.66666666666663,
|
||||
"x": 432.3333333333333,
|
||||
"y": 2415.5
|
||||
}
|
||||
],
|
||||
|
|
@ -1909,11 +1909,11 @@
|
|||
"labelPercentage": 0,
|
||||
"route": [
|
||||
{
|
||||
"x": 421.66666666666663,
|
||||
"x": 432.3333333333333,
|
||||
"y": 2481.5
|
||||
},
|
||||
{
|
||||
"x": 421.66666666666663,
|
||||
"x": 432.3333333333333,
|
||||
"y": 2559
|
||||
}
|
||||
],
|
||||
|
|
@ -1949,11 +1949,11 @@
|
|||
"labelPercentage": 0,
|
||||
"route": [
|
||||
{
|
||||
"x": 187,
|
||||
"x": 189,
|
||||
"y": 783
|
||||
},
|
||||
{
|
||||
"x": 186.66666666666666,
|
||||
"x": 189.33333333333334,
|
||||
"y": 1189
|
||||
}
|
||||
],
|
||||
|
|
@ -1989,11 +1989,11 @@
|
|||
"labelPercentage": 0,
|
||||
"route": [
|
||||
{
|
||||
"x": 186.66666666666666,
|
||||
"x": 189.33333333333334,
|
||||
"y": 1255
|
||||
},
|
||||
{
|
||||
"x": 186.66666666666666,
|
||||
"x": 189.33333333333334,
|
||||
"y": 1435
|
||||
}
|
||||
],
|
||||
|
|
@ -2029,19 +2029,19 @@
|
|||
"labelPercentage": 0,
|
||||
"route": [
|
||||
{
|
||||
"x": 308.8333333333333,
|
||||
"x": 317.50000000000006,
|
||||
"y": 1517.6666666666667
|
||||
},
|
||||
{
|
||||
"x": 308.8333333333333,
|
||||
"x": 317.50000000000006,
|
||||
"y": 1596
|
||||
},
|
||||
{
|
||||
"x": 236.33333333333331,
|
||||
"x": 239,
|
||||
"y": 1596
|
||||
},
|
||||
{
|
||||
"x": 236,
|
||||
"x": 239,
|
||||
"y": 1636
|
||||
}
|
||||
],
|
||||
|
|
@ -2077,11 +2077,11 @@
|
|||
"labelPercentage": 0,
|
||||
"route": [
|
||||
{
|
||||
"x": 186.66666666666666,
|
||||
"x": 189.33333333333334,
|
||||
"y": 1501
|
||||
},
|
||||
{
|
||||
"x": 187,
|
||||
"x": 189,
|
||||
"y": 1636
|
||||
}
|
||||
],
|
||||
|
|
@ -2117,11 +2117,11 @@
|
|||
"labelPercentage": 0,
|
||||
"route": [
|
||||
{
|
||||
"x": 187,
|
||||
"x": 189,
|
||||
"y": 1754
|
||||
},
|
||||
{
|
||||
"x": 186.66666666666666,
|
||||
"x": 189.33333333333331,
|
||||
"y": 2525.3333333333335
|
||||
}
|
||||
],
|
||||
|
|
@ -2157,7 +2157,7 @@
|
|||
"labelPercentage": 0,
|
||||
"route": [
|
||||
{
|
||||
"x": 176,
|
||||
"x": 175.99999999999997,
|
||||
"y": 2591.3333333333335
|
||||
},
|
||||
{
|
||||
|
|
@ -2197,11 +2197,11 @@
|
|||
"labelPercentage": 0,
|
||||
"route": [
|
||||
{
|
||||
"x": 421.66666666666663,
|
||||
"x": 432.3333333333333,
|
||||
"y": 2625
|
||||
},
|
||||
{
|
||||
"x": 422,
|
||||
"x": 432,
|
||||
"y": 2865
|
||||
}
|
||||
],
|
||||
|
|
@ -2237,19 +2237,19 @@
|
|||
"labelPercentage": 0,
|
||||
"route": [
|
||||
{
|
||||
"x": 197.33333333333331,
|
||||
"x": 202.66666666666666,
|
||||
"y": 2591.3333333333335
|
||||
},
|
||||
{
|
||||
"x": 197.33333333333331,
|
||||
"x": 202.66666666666666,
|
||||
"y": 2770
|
||||
},
|
||||
{
|
||||
"x": 375.66666666666663,
|
||||
"x": 386.3333333333333,
|
||||
"y": 2770
|
||||
},
|
||||
{
|
||||
"x": 376,
|
||||
"x": 386,
|
||||
"y": 2865
|
||||
}
|
||||
],
|
||||
|
|
@ -2285,11 +2285,11 @@
|
|||
"labelPercentage": 0,
|
||||
"route": [
|
||||
{
|
||||
"x": 399,
|
||||
"x": 409,
|
||||
"y": 2983
|
||||
},
|
||||
{
|
||||
"x": 398.66666666666663,
|
||||
"x": 409.3333333333333,
|
||||
"y": 3053
|
||||
}
|
||||
],
|
||||
|
|
@ -2325,11 +2325,11 @@
|
|||
"labelPercentage": 0,
|
||||
"route": [
|
||||
{
|
||||
"x": 398.66666666666663,
|
||||
"x": 409.3333333333333,
|
||||
"y": 3119
|
||||
},
|
||||
{
|
||||
"x": 398.66666666666663,
|
||||
"x": 409.3333333333333,
|
||||
"y": 3214
|
||||
},
|
||||
{
|
||||
|
|
@ -2413,19 +2413,19 @@
|
|||
"labelPercentage": 0,
|
||||
"route": [
|
||||
{
|
||||
"x": 236,
|
||||
"x": 239,
|
||||
"y": 1754
|
||||
},
|
||||
{
|
||||
"x": 236.33333333333331,
|
||||
"x": 239,
|
||||
"y": 1794
|
||||
},
|
||||
{
|
||||
"x": 360.66666666666663,
|
||||
"x": 369,
|
||||
"y": 1794
|
||||
},
|
||||
{
|
||||
"x": 361,
|
||||
"x": 369,
|
||||
"y": 1904
|
||||
}
|
||||
],
|
||||
|
|
|
|||
|
Before Width: | Height: | Size: 812 KiB After Width: | Height: | Size: 812 KiB |
340
e2etests/testdata/stable/large_arch/elk/board.exp.json
generated
vendored
|
|
@ -48,7 +48,7 @@
|
|||
"id": "b",
|
||||
"type": "rectangle",
|
||||
"pos": {
|
||||
"x": 833,
|
||||
"x": 911,
|
||||
"y": 436
|
||||
},
|
||||
"width": 53,
|
||||
|
|
@ -89,8 +89,8 @@
|
|||
"id": "c",
|
||||
"type": "rectangle",
|
||||
"pos": {
|
||||
"x": 437,
|
||||
"y": 1998
|
||||
"x": 322,
|
||||
"y": 1768
|
||||
},
|
||||
"width": 53,
|
||||
"height": 66,
|
||||
|
|
@ -130,8 +130,8 @@
|
|||
"id": "d",
|
||||
"type": "rectangle",
|
||||
"pos": {
|
||||
"x": 510,
|
||||
"y": 1998
|
||||
"x": 395,
|
||||
"y": 1768
|
||||
},
|
||||
"width": 54,
|
||||
"height": 66,
|
||||
|
|
@ -171,8 +171,8 @@
|
|||
"id": "e",
|
||||
"type": "rectangle",
|
||||
"pos": {
|
||||
"x": 511,
|
||||
"y": 2134
|
||||
"x": 395,
|
||||
"y": 1904
|
||||
},
|
||||
"width": 53,
|
||||
"height": 66,
|
||||
|
|
@ -212,8 +212,8 @@
|
|||
"id": "f",
|
||||
"type": "rectangle",
|
||||
"pos": {
|
||||
"x": 584,
|
||||
"y": 1998
|
||||
"x": 469,
|
||||
"y": 1768
|
||||
},
|
||||
"width": 51,
|
||||
"height": 66,
|
||||
|
|
@ -253,10 +253,10 @@
|
|||
"id": "g",
|
||||
"type": "rectangle",
|
||||
"pos": {
|
||||
"x": 184,
|
||||
"y": 1998
|
||||
"x": 198,
|
||||
"y": 1768
|
||||
},
|
||||
"width": 54,
|
||||
"width": 80,
|
||||
"height": 66,
|
||||
"opacity": 1,
|
||||
"strokeDash": 0,
|
||||
|
|
@ -294,8 +294,8 @@
|
|||
"id": "h",
|
||||
"type": "rectangle",
|
||||
"pos": {
|
||||
"x": 213,
|
||||
"y": 1011
|
||||
"x": 238,
|
||||
"y": 1061
|
||||
},
|
||||
"width": 53,
|
||||
"height": 66,
|
||||
|
|
@ -335,11 +335,11 @@
|
|||
"id": "i",
|
||||
"type": "rectangle",
|
||||
"pos": {
|
||||
"x": 394,
|
||||
"y": 1011
|
||||
"x": 311,
|
||||
"y": 1061
|
||||
},
|
||||
"width": 403,
|
||||
"height": 752,
|
||||
"width": 546,
|
||||
"height": 522,
|
||||
"opacity": 1,
|
||||
"strokeDash": 0,
|
||||
"strokeWidth": 2,
|
||||
|
|
@ -376,8 +376,8 @@
|
|||
"id": "i.j",
|
||||
"type": "rectangle",
|
||||
"pos": {
|
||||
"x": 523,
|
||||
"y": 1061
|
||||
"x": 583,
|
||||
"y": 1111
|
||||
},
|
||||
"width": 222,
|
||||
"height": 166,
|
||||
|
|
@ -417,8 +417,8 @@
|
|||
"id": "i.j.k",
|
||||
"type": "rectangle",
|
||||
"pos": {
|
||||
"x": 573,
|
||||
"y": 1111
|
||||
"x": 633,
|
||||
"y": 1161
|
||||
},
|
||||
"width": 53,
|
||||
"height": 66,
|
||||
|
|
@ -458,8 +458,8 @@
|
|||
"id": "i.j.l",
|
||||
"type": "rectangle",
|
||||
"pos": {
|
||||
"x": 646,
|
||||
"y": 1111
|
||||
"x": 706,
|
||||
"y": 1161
|
||||
},
|
||||
"width": 49,
|
||||
"height": 66,
|
||||
|
|
@ -499,10 +499,10 @@
|
|||
"id": "i.m",
|
||||
"type": "rectangle",
|
||||
"pos": {
|
||||
"x": 444,
|
||||
"y": 1377
|
||||
"x": 361,
|
||||
"y": 1427
|
||||
},
|
||||
"width": 57,
|
||||
"width": 200,
|
||||
"height": 66,
|
||||
"opacity": 1,
|
||||
"strokeDash": 0,
|
||||
|
|
@ -540,8 +540,8 @@
|
|||
"id": "i.n",
|
||||
"type": "rectangle",
|
||||
"pos": {
|
||||
"x": 521,
|
||||
"y": 1417
|
||||
"x": 581,
|
||||
"y": 1467
|
||||
},
|
||||
"width": 53,
|
||||
"height": 66,
|
||||
|
|
@ -581,8 +581,8 @@
|
|||
"id": "i.o",
|
||||
"type": "rectangle",
|
||||
"pos": {
|
||||
"x": 594,
|
||||
"y": 1317
|
||||
"x": 654,
|
||||
"y": 1367
|
||||
},
|
||||
"width": 153,
|
||||
"height": 166,
|
||||
|
|
@ -622,8 +622,8 @@
|
|||
"id": "i.o.p",
|
||||
"type": "rectangle",
|
||||
"pos": {
|
||||
"x": 644,
|
||||
"y": 1367
|
||||
"x": 704,
|
||||
"y": 1417
|
||||
},
|
||||
"width": 53,
|
||||
"height": 66,
|
||||
|
|
@ -663,10 +663,10 @@
|
|||
"id": "q",
|
||||
"type": "rectangle",
|
||||
"pos": {
|
||||
"x": 767,
|
||||
"y": 1998
|
||||
"x": 807,
|
||||
"y": 1768
|
||||
},
|
||||
"width": 54,
|
||||
"width": 80,
|
||||
"height": 66,
|
||||
"opacity": 1,
|
||||
"strokeDash": 0,
|
||||
|
|
@ -707,7 +707,7 @@
|
|||
"x": 85,
|
||||
"y": 12
|
||||
},
|
||||
"width": 728,
|
||||
"width": 806,
|
||||
"height": 909,
|
||||
"opacity": 1,
|
||||
"strokeDash": 0,
|
||||
|
|
@ -748,7 +748,7 @@
|
|||
"x": 135,
|
||||
"y": 313
|
||||
},
|
||||
"width": 465,
|
||||
"width": 543,
|
||||
"height": 417,
|
||||
"opacity": 1,
|
||||
"strokeDash": 0,
|
||||
|
|
@ -789,7 +789,7 @@
|
|||
"x": 185,
|
||||
"y": 551
|
||||
},
|
||||
"width": 51,
|
||||
"width": 120,
|
||||
"height": 66,
|
||||
"opacity": 1,
|
||||
"strokeDash": 0,
|
||||
|
|
@ -827,7 +827,7 @@
|
|||
"id": "r.s.u",
|
||||
"type": "rectangle",
|
||||
"pos": {
|
||||
"x": 256,
|
||||
"x": 325,
|
||||
"y": 509
|
||||
},
|
||||
"width": 154,
|
||||
|
|
@ -868,7 +868,7 @@
|
|||
"id": "r.s.u.v",
|
||||
"type": "rectangle",
|
||||
"pos": {
|
||||
"x": 306,
|
||||
"x": 375,
|
||||
"y": 559
|
||||
},
|
||||
"width": 54,
|
||||
|
|
@ -909,7 +909,7 @@
|
|||
"id": "r.s.w",
|
||||
"type": "rectangle",
|
||||
"pos": {
|
||||
"x": 430,
|
||||
"x": 499,
|
||||
"y": 561
|
||||
},
|
||||
"width": 58,
|
||||
|
|
@ -950,10 +950,10 @@
|
|||
"id": "r.s.x",
|
||||
"type": "rectangle",
|
||||
"pos": {
|
||||
"x": 423,
|
||||
"x": 474,
|
||||
"y": 363
|
||||
},
|
||||
"width": 53,
|
||||
"width": 80,
|
||||
"height": 66,
|
||||
"opacity": 1,
|
||||
"strokeDash": 0,
|
||||
|
|
@ -991,7 +991,7 @@
|
|||
"id": "r.s.y",
|
||||
"type": "rectangle",
|
||||
"pos": {
|
||||
"x": 496,
|
||||
"x": 574,
|
||||
"y": 363
|
||||
},
|
||||
"width": 54,
|
||||
|
|
@ -1032,7 +1032,7 @@
|
|||
"id": "r.z",
|
||||
"type": "rectangle",
|
||||
"pos": {
|
||||
"x": 307,
|
||||
"x": 376,
|
||||
"y": 805
|
||||
},
|
||||
"width": 52,
|
||||
|
|
@ -1073,7 +1073,7 @@
|
|||
"id": "r.aa",
|
||||
"type": "rectangle",
|
||||
"pos": {
|
||||
"x": 166,
|
||||
"x": 184,
|
||||
"y": 162
|
||||
},
|
||||
"width": 62,
|
||||
|
|
@ -1114,7 +1114,7 @@
|
|||
"id": "r.bb",
|
||||
"type": "rectangle",
|
||||
"pos": {
|
||||
"x": 248,
|
||||
"x": 266,
|
||||
"y": 62
|
||||
},
|
||||
"width": 245,
|
||||
|
|
@ -1155,7 +1155,7 @@
|
|||
"id": "r.bb.cc",
|
||||
"type": "rectangle",
|
||||
"pos": {
|
||||
"x": 298,
|
||||
"x": 316,
|
||||
"y": 112
|
||||
},
|
||||
"width": 61,
|
||||
|
|
@ -1196,7 +1196,7 @@
|
|||
"id": "r.bb.dd",
|
||||
"type": "rectangle",
|
||||
"pos": {
|
||||
"x": 379,
|
||||
"x": 397,
|
||||
"y": 112
|
||||
},
|
||||
"width": 64,
|
||||
|
|
@ -1237,7 +1237,7 @@
|
|||
"id": "r.ee",
|
||||
"type": "rectangle",
|
||||
"pos": {
|
||||
"x": 618,
|
||||
"x": 696,
|
||||
"y": 162
|
||||
},
|
||||
"width": 62,
|
||||
|
|
@ -1278,7 +1278,7 @@
|
|||
"id": "r.ff",
|
||||
"type": "rectangle",
|
||||
"pos": {
|
||||
"x": 620,
|
||||
"x": 698,
|
||||
"y": 313
|
||||
},
|
||||
"width": 57,
|
||||
|
|
@ -1319,7 +1319,7 @@
|
|||
"id": "r.gg",
|
||||
"type": "rectangle",
|
||||
"pos": {
|
||||
"x": 700,
|
||||
"x": 778,
|
||||
"y": 162
|
||||
},
|
||||
"width": 63,
|
||||
|
|
@ -1385,20 +1385,20 @@
|
|||
"labelPercentage": 0,
|
||||
"route": [
|
||||
{
|
||||
"x": 600.25,
|
||||
"y": 1177
|
||||
"x": 660,
|
||||
"y": 1227
|
||||
},
|
||||
{
|
||||
"x": 600.25,
|
||||
"y": 1272
|
||||
"x": 660,
|
||||
"y": 1322
|
||||
},
|
||||
{
|
||||
"x": 487.5,
|
||||
"y": 1272
|
||||
"x": 511.5,
|
||||
"y": 1322
|
||||
},
|
||||
{
|
||||
"x": 487.5,
|
||||
"y": 1377.625
|
||||
"x": 511.5,
|
||||
"y": 1427.625
|
||||
}
|
||||
],
|
||||
"animated": false,
|
||||
|
|
@ -1433,12 +1433,12 @@
|
|||
"labelPercentage": 0,
|
||||
"route": [
|
||||
{
|
||||
"x": 671.25,
|
||||
"y": 1177
|
||||
"x": 731,
|
||||
"y": 1227
|
||||
},
|
||||
{
|
||||
"x": 671.25,
|
||||
"y": 1367
|
||||
"x": 731,
|
||||
"y": 1417
|
||||
}
|
||||
],
|
||||
"animated": false,
|
||||
|
|
@ -1473,20 +1473,20 @@
|
|||
"labelPercentage": 0,
|
||||
"route": [
|
||||
{
|
||||
"x": 807.75,
|
||||
"y": 1998
|
||||
"x": 867.5,
|
||||
"y": 1768
|
||||
},
|
||||
{
|
||||
"x": 807.75,
|
||||
"y": 966
|
||||
"x": 867.5,
|
||||
"y": 1016
|
||||
},
|
||||
{
|
||||
"x": 473.25,
|
||||
"y": 966
|
||||
"x": 461.5,
|
||||
"y": 1016
|
||||
},
|
||||
{
|
||||
"x": 473.25,
|
||||
"y": 1377.625
|
||||
"x": 461.5,
|
||||
"y": 1427.625
|
||||
}
|
||||
],
|
||||
"animated": false,
|
||||
|
|
@ -1521,28 +1521,20 @@
|
|||
"labelPercentage": 0,
|
||||
"route": [
|
||||
{
|
||||
"x": 492.25,
|
||||
"y": 1443.625
|
||||
"x": 528.1666666666666,
|
||||
"y": 1493.625
|
||||
},
|
||||
{
|
||||
"x": 492.25,
|
||||
"y": 1523
|
||||
"x": 528.1666666666666,
|
||||
"y": 1678
|
||||
},
|
||||
{
|
||||
"x": 494.25,
|
||||
"y": 1523
|
||||
"x": 827.5,
|
||||
"y": 1678
|
||||
},
|
||||
{
|
||||
"x": 494.25,
|
||||
"y": 1858
|
||||
},
|
||||
{
|
||||
"x": 780.75,
|
||||
"y": 1858
|
||||
},
|
||||
{
|
||||
"x": 780.75,
|
||||
"y": 1998
|
||||
"x": 827.5,
|
||||
"y": 1768
|
||||
}
|
||||
],
|
||||
"animated": false,
|
||||
|
|
@ -1577,20 +1569,20 @@
|
|||
"labelPercentage": 0,
|
||||
"route": [
|
||||
{
|
||||
"x": 548.25,
|
||||
"y": 1483
|
||||
"x": 608,
|
||||
"y": 1533
|
||||
},
|
||||
{
|
||||
"x": 548.25,
|
||||
"y": 1808
|
||||
"x": 608,
|
||||
"y": 1628
|
||||
},
|
||||
{
|
||||
"x": 794.25,
|
||||
"y": 1808
|
||||
"x": 847.5,
|
||||
"y": 1628
|
||||
},
|
||||
{
|
||||
"x": 794.25,
|
||||
"y": 1998
|
||||
"x": 847.5,
|
||||
"y": 1768
|
||||
}
|
||||
],
|
||||
"animated": false,
|
||||
|
|
@ -1625,20 +1617,20 @@
|
|||
"labelPercentage": 0,
|
||||
"route": [
|
||||
{
|
||||
"x": 463.75,
|
||||
"y": 1443.625
|
||||
"x": 428.16666666666663,
|
||||
"y": 1493.625
|
||||
},
|
||||
{
|
||||
"x": 463.75,
|
||||
"y": 1673
|
||||
"x": 428.16666666666663,
|
||||
"y": 1678
|
||||
},
|
||||
{
|
||||
"x": 464.25,
|
||||
"y": 1673
|
||||
"x": 348.8333333333333,
|
||||
"y": 1678
|
||||
},
|
||||
{
|
||||
"x": 464.25,
|
||||
"y": 1998
|
||||
"x": 348.8333333333333,
|
||||
"y": 1768
|
||||
}
|
||||
],
|
||||
"animated": false,
|
||||
|
|
@ -1673,28 +1665,20 @@
|
|||
"labelPercentage": 0,
|
||||
"route": [
|
||||
{
|
||||
"x": 473.25,
|
||||
"y": 1443.625
|
||||
"x": 461.5,
|
||||
"y": 1493.625
|
||||
},
|
||||
{
|
||||
"x": 473.25,
|
||||
"y": 1623
|
||||
"x": 461.5,
|
||||
"y": 1728
|
||||
},
|
||||
{
|
||||
"x": 474.25,
|
||||
"y": 1623
|
||||
"x": 422.3333333333333,
|
||||
"y": 1728
|
||||
},
|
||||
{
|
||||
"x": 474.25,
|
||||
"y": 1958
|
||||
},
|
||||
{
|
||||
"x": 537.75,
|
||||
"y": 1958
|
||||
},
|
||||
{
|
||||
"x": 537.75,
|
||||
"y": 1998
|
||||
"x": 422.3333333333333,
|
||||
"y": 1768
|
||||
}
|
||||
],
|
||||
"animated": false,
|
||||
|
|
@ -1729,20 +1713,20 @@
|
|||
"labelPercentage": 0,
|
||||
"route": [
|
||||
{
|
||||
"x": 454.25,
|
||||
"y": 1443.625
|
||||
"x": 394.8333333333333,
|
||||
"y": 1493.625
|
||||
},
|
||||
{
|
||||
"x": 454.25,
|
||||
"y": 1808
|
||||
"x": 394.8333333333333,
|
||||
"y": 1628
|
||||
},
|
||||
{
|
||||
"x": 220,
|
||||
"y": 1808
|
||||
"x": 251.66666666666674,
|
||||
"y": 1628
|
||||
},
|
||||
{
|
||||
"x": 220,
|
||||
"y": 1998
|
||||
"x": 251.66666666666674,
|
||||
"y": 1768
|
||||
}
|
||||
],
|
||||
"animated": false,
|
||||
|
|
@ -1777,28 +1761,12 @@
|
|||
"labelPercentage": 0,
|
||||
"route": [
|
||||
{
|
||||
"x": 482.75,
|
||||
"y": 1443.625
|
||||
"x": 494.8333333333333,
|
||||
"y": 1493.625
|
||||
},
|
||||
{
|
||||
"x": 482.75,
|
||||
"y": 1573
|
||||
},
|
||||
{
|
||||
"x": 484.25,
|
||||
"y": 1573
|
||||
},
|
||||
{
|
||||
"x": 484.25,
|
||||
"y": 1908
|
||||
},
|
||||
{
|
||||
"x": 610.25,
|
||||
"y": 1908
|
||||
},
|
||||
{
|
||||
"x": 610.25,
|
||||
"y": 1998
|
||||
"x": 494.8333333333333,
|
||||
"y": 1768
|
||||
}
|
||||
],
|
||||
"animated": false,
|
||||
|
|
@ -1833,12 +1801,12 @@
|
|||
"labelPercentage": 0,
|
||||
"route": [
|
||||
{
|
||||
"x": 537.75,
|
||||
"y": 2064
|
||||
"x": 422.3333333333333,
|
||||
"y": 1834
|
||||
},
|
||||
{
|
||||
"x": 537.75,
|
||||
"y": 2134
|
||||
"x": 422.3333333333333,
|
||||
"y": 1904
|
||||
}
|
||||
],
|
||||
"animated": false,
|
||||
|
|
@ -1873,19 +1841,19 @@
|
|||
"labelPercentage": 0,
|
||||
"route": [
|
||||
{
|
||||
"x": 441.3333333333333,
|
||||
"x": 501.3333333333333,
|
||||
"y": 429
|
||||
},
|
||||
{
|
||||
"x": 441.3333333333333,
|
||||
"x": 501.3333333333333,
|
||||
"y": 469
|
||||
},
|
||||
{
|
||||
"x": 223.25,
|
||||
"x": 275,
|
||||
"y": 469
|
||||
},
|
||||
{
|
||||
"x": 223.25,
|
||||
"x": 275,
|
||||
"y": 551
|
||||
}
|
||||
],
|
||||
|
|
@ -1921,11 +1889,11 @@
|
|||
"labelPercentage": 0,
|
||||
"route": [
|
||||
{
|
||||
"x": 459,
|
||||
"x": 528,
|
||||
"y": 429
|
||||
},
|
||||
{
|
||||
"x": 459,
|
||||
"x": 528,
|
||||
"y": 561.5
|
||||
}
|
||||
],
|
||||
|
|
@ -1961,19 +1929,19 @@
|
|||
"labelPercentage": 0,
|
||||
"route": [
|
||||
{
|
||||
"x": 731.6666666666666,
|
||||
"x": 809.6666666666666,
|
||||
"y": 228
|
||||
},
|
||||
{
|
||||
"x": 731.6666666666666,
|
||||
"x": 809.6666666666666,
|
||||
"y": 268
|
||||
},
|
||||
{
|
||||
"x": 210.5,
|
||||
"x": 245,
|
||||
"y": 268
|
||||
},
|
||||
{
|
||||
"x": 210.5,
|
||||
"x": 245,
|
||||
"y": 551
|
||||
}
|
||||
],
|
||||
|
|
@ -2009,11 +1977,11 @@
|
|||
"labelPercentage": 0,
|
||||
"route": [
|
||||
{
|
||||
"x": 333,
|
||||
"x": 402,
|
||||
"y": 625
|
||||
},
|
||||
{
|
||||
"x": 333,
|
||||
"x": 402,
|
||||
"y": 805
|
||||
}
|
||||
],
|
||||
|
|
@ -2049,11 +2017,11 @@
|
|||
"labelPercentage": 0,
|
||||
"route": [
|
||||
{
|
||||
"x": 197.75,
|
||||
"x": 215,
|
||||
"y": 228
|
||||
},
|
||||
{
|
||||
"x": 197.75,
|
||||
"x": 215,
|
||||
"y": 551
|
||||
}
|
||||
],
|
||||
|
|
@ -2089,12 +2057,20 @@
|
|||
"labelPercentage": 0,
|
||||
"route": [
|
||||
{
|
||||
"x": 459,
|
||||
"x": 528,
|
||||
"y": 627.5
|
||||
},
|
||||
{
|
||||
"x": 459,
|
||||
"y": 1377.625
|
||||
"x": 528,
|
||||
"y": 966
|
||||
},
|
||||
{
|
||||
"x": 411.5,
|
||||
"y": 966
|
||||
},
|
||||
{
|
||||
"x": 411.5,
|
||||
"y": 1427.625
|
||||
}
|
||||
],
|
||||
"animated": false,
|
||||
|
|
@ -2129,12 +2105,12 @@
|
|||
"labelPercentage": 0,
|
||||
"route": [
|
||||
{
|
||||
"x": 202,
|
||||
"x": 225,
|
||||
"y": 617
|
||||
},
|
||||
{
|
||||
"x": 202,
|
||||
"y": 1998
|
||||
"x": 225,
|
||||
"y": 1768
|
||||
}
|
||||
],
|
||||
"animated": false,
|
||||
|
|
@ -2169,20 +2145,12 @@
|
|||
"labelPercentage": 0,
|
||||
"route": [
|
||||
{
|
||||
"x": 219,
|
||||
"x": 265,
|
||||
"y": 617
|
||||
},
|
||||
{
|
||||
"x": 219,
|
||||
"y": 966
|
||||
},
|
||||
{
|
||||
"x": 239.5,
|
||||
"y": 966
|
||||
},
|
||||
{
|
||||
"x": 239.5,
|
||||
"y": 1011
|
||||
"x": 265,
|
||||
"y": 1061
|
||||
}
|
||||
],
|
||||
"animated": false,
|
||||
|
|
@ -2217,11 +2185,11 @@
|
|||
"labelPercentage": 0,
|
||||
"route": [
|
||||
{
|
||||
"x": 649.1666666666666,
|
||||
"x": 727.1666666666666,
|
||||
"y": 228
|
||||
},
|
||||
{
|
||||
"x": 649.1666666666666,
|
||||
"x": 727.1666666666666,
|
||||
"y": 313
|
||||
}
|
||||
],
|
||||
|
|
|
|||
|
Before Width: | Height: | Size: 666 KiB After Width: | Height: | Size: 666 KiB |
186
e2etests/testdata/stable/multiple_trees/elk/board.exp.json
generated
vendored
|
|
@ -7,10 +7,10 @@
|
|||
"id": "a",
|
||||
"type": "rectangle",
|
||||
"pos": {
|
||||
"x": 442,
|
||||
"x": 382,
|
||||
"y": 294
|
||||
},
|
||||
"width": 53,
|
||||
"width": 240,
|
||||
"height": 66,
|
||||
"opacity": 1,
|
||||
"strokeDash": 0,
|
||||
|
|
@ -48,10 +48,10 @@
|
|||
"id": "b",
|
||||
"type": "rectangle",
|
||||
"pos": {
|
||||
"x": 80,
|
||||
"x": 46,
|
||||
"y": 540
|
||||
},
|
||||
"width": 53,
|
||||
"width": 120,
|
||||
"height": 66,
|
||||
"opacity": 1,
|
||||
"strokeDash": 0,
|
||||
|
|
@ -89,10 +89,10 @@
|
|||
"id": "c",
|
||||
"type": "rectangle",
|
||||
"pos": {
|
||||
"x": 152,
|
||||
"x": 186,
|
||||
"y": 540
|
||||
},
|
||||
"width": 53,
|
||||
"width": 80,
|
||||
"height": 66,
|
||||
"opacity": 1,
|
||||
"strokeDash": 0,
|
||||
|
|
@ -130,10 +130,10 @@
|
|||
"id": "d",
|
||||
"type": "rectangle",
|
||||
"pos": {
|
||||
"x": 299,
|
||||
"x": 333,
|
||||
"y": 540
|
||||
},
|
||||
"width": 54,
|
||||
"width": 80,
|
||||
"height": 66,
|
||||
"opacity": 1,
|
||||
"strokeDash": 0,
|
||||
|
|
@ -171,10 +171,10 @@
|
|||
"id": "e",
|
||||
"type": "rectangle",
|
||||
"pos": {
|
||||
"x": 445,
|
||||
"x": 479,
|
||||
"y": 540
|
||||
},
|
||||
"width": 53,
|
||||
"width": 80,
|
||||
"height": 66,
|
||||
"opacity": 1,
|
||||
"strokeDash": 0,
|
||||
|
|
@ -212,10 +212,10 @@
|
|||
"id": "f",
|
||||
"type": "rectangle",
|
||||
"pos": {
|
||||
"x": 590,
|
||||
"x": 623,
|
||||
"y": 540
|
||||
},
|
||||
"width": 51,
|
||||
"width": 80,
|
||||
"height": 66,
|
||||
"opacity": 1,
|
||||
"strokeDash": 0,
|
||||
|
|
@ -253,10 +253,10 @@
|
|||
"id": "g",
|
||||
"type": "rectangle",
|
||||
"pos": {
|
||||
"x": 441,
|
||||
"x": 462,
|
||||
"y": 158
|
||||
},
|
||||
"width": 54,
|
||||
"width": 80,
|
||||
"height": 66,
|
||||
"opacity": 1,
|
||||
"strokeDash": 0,
|
||||
|
|
@ -294,10 +294,10 @@
|
|||
"id": "h",
|
||||
"type": "rectangle",
|
||||
"pos": {
|
||||
"x": 661,
|
||||
"x": 723,
|
||||
"y": 540
|
||||
},
|
||||
"width": 53,
|
||||
"width": 120,
|
||||
"height": 66,
|
||||
"opacity": 1,
|
||||
"strokeDash": 0,
|
||||
|
|
@ -417,7 +417,7 @@
|
|||
"id": "k",
|
||||
"type": "rectangle",
|
||||
"pos": {
|
||||
"x": 451,
|
||||
"x": 489,
|
||||
"y": 12
|
||||
},
|
||||
"width": 53,
|
||||
|
|
@ -458,7 +458,7 @@
|
|||
"id": "l",
|
||||
"type": "rectangle",
|
||||
"pos": {
|
||||
"x": 382,
|
||||
"x": 420,
|
||||
"y": 12
|
||||
},
|
||||
"width": 49,
|
||||
|
|
@ -499,7 +499,7 @@
|
|||
"id": "m",
|
||||
"type": "rectangle",
|
||||
"pos": {
|
||||
"x": 84,
|
||||
"x": 136,
|
||||
"y": 686
|
||||
},
|
||||
"width": 57,
|
||||
|
|
@ -540,7 +540,7 @@
|
|||
"id": "n",
|
||||
"type": "rectangle",
|
||||
"pos": {
|
||||
"x": 161,
|
||||
"x": 213,
|
||||
"y": 686
|
||||
},
|
||||
"width": 53,
|
||||
|
|
@ -581,7 +581,7 @@
|
|||
"id": "o",
|
||||
"type": "rectangle",
|
||||
"pos": {
|
||||
"x": 234,
|
||||
"x": 286,
|
||||
"y": 686
|
||||
},
|
||||
"width": 54,
|
||||
|
|
@ -622,7 +622,7 @@
|
|||
"id": "p",
|
||||
"type": "rectangle",
|
||||
"pos": {
|
||||
"x": 308,
|
||||
"x": 360,
|
||||
"y": 686
|
||||
},
|
||||
"width": 53,
|
||||
|
|
@ -663,7 +663,7 @@
|
|||
"id": "q",
|
||||
"type": "rectangle",
|
||||
"pos": {
|
||||
"x": 381,
|
||||
"x": 433,
|
||||
"y": 686
|
||||
},
|
||||
"width": 54,
|
||||
|
|
@ -704,7 +704,7 @@
|
|||
"id": "r",
|
||||
"type": "rectangle",
|
||||
"pos": {
|
||||
"x": 455,
|
||||
"x": 507,
|
||||
"y": 686
|
||||
},
|
||||
"width": 51,
|
||||
|
|
@ -745,7 +745,7 @@
|
|||
"id": "s",
|
||||
"type": "rectangle",
|
||||
"pos": {
|
||||
"x": 309,
|
||||
"x": 360,
|
||||
"y": 822
|
||||
},
|
||||
"width": 52,
|
||||
|
|
@ -786,7 +786,7 @@
|
|||
"id": "t",
|
||||
"type": "rectangle",
|
||||
"pos": {
|
||||
"x": 526,
|
||||
"x": 578,
|
||||
"y": 686
|
||||
},
|
||||
"width": 51,
|
||||
|
|
@ -827,7 +827,7 @@
|
|||
"id": "u",
|
||||
"type": "rectangle",
|
||||
"pos": {
|
||||
"x": 597,
|
||||
"x": 649,
|
||||
"y": 686
|
||||
},
|
||||
"width": 54,
|
||||
|
|
@ -868,7 +868,7 @@
|
|||
"id": "v",
|
||||
"type": "rectangle",
|
||||
"pos": {
|
||||
"x": 598,
|
||||
"x": 710,
|
||||
"y": 294
|
||||
},
|
||||
"width": 54,
|
||||
|
|
@ -909,7 +909,7 @@
|
|||
"id": "w",
|
||||
"type": "rectangle",
|
||||
"pos": {
|
||||
"x": 672,
|
||||
"x": 784,
|
||||
"y": 294
|
||||
},
|
||||
"width": 58,
|
||||
|
|
@ -975,19 +975,19 @@
|
|||
"labelPercentage": 0,
|
||||
"route": [
|
||||
{
|
||||
"x": 449.7857142857142,
|
||||
"x": 416.64285714285717,
|
||||
"y": 360
|
||||
},
|
||||
{
|
||||
"x": 449.7857142857142,
|
||||
"x": 416.64285714285717,
|
||||
"y": 400
|
||||
},
|
||||
{
|
||||
"x": 119.75,
|
||||
"x": 136.5,
|
||||
"y": 400
|
||||
},
|
||||
{
|
||||
"x": 119.75,
|
||||
"x": 136.5,
|
||||
"y": 540
|
||||
}
|
||||
],
|
||||
|
|
@ -1023,19 +1023,19 @@
|
|||
"labelPercentage": 0,
|
||||
"route": [
|
||||
{
|
||||
"x": 457.3571428571428,
|
||||
"x": 450.92857142857144,
|
||||
"y": 360
|
||||
},
|
||||
{
|
||||
"x": 457.3571428571428,
|
||||
"x": 450.92857142857144,
|
||||
"y": 450
|
||||
},
|
||||
{
|
||||
"x": 179.49999999999994,
|
||||
"x": 226.5,
|
||||
"y": 450
|
||||
},
|
||||
{
|
||||
"x": 179.49999999999994,
|
||||
"x": 226.5,
|
||||
"y": 540
|
||||
}
|
||||
],
|
||||
|
|
@ -1071,19 +1071,19 @@
|
|||
"labelPercentage": 0,
|
||||
"route": [
|
||||
{
|
||||
"x": 464.92857142857133,
|
||||
"x": 485.2142857142858,
|
||||
"y": 360
|
||||
},
|
||||
{
|
||||
"x": 464.92857142857133,
|
||||
"x": 485.2142857142858,
|
||||
"y": 500
|
||||
},
|
||||
{
|
||||
"x": 326.33333333333326,
|
||||
"x": 373.50000000000006,
|
||||
"y": 500
|
||||
},
|
||||
{
|
||||
"x": 326.33333333333326,
|
||||
"x": 373.50000000000006,
|
||||
"y": 540
|
||||
}
|
||||
],
|
||||
|
|
@ -1119,11 +1119,11 @@
|
|||
"labelPercentage": 0,
|
||||
"route": [
|
||||
{
|
||||
"x": 472.4999999999999,
|
||||
"x": 519.5,
|
||||
"y": 360
|
||||
},
|
||||
{
|
||||
"x": 472.4999999999999,
|
||||
"x": 519.5,
|
||||
"y": 540
|
||||
}
|
||||
],
|
||||
|
|
@ -1159,19 +1159,19 @@
|
|||
"labelPercentage": 0,
|
||||
"route": [
|
||||
{
|
||||
"x": 480.0714285714285,
|
||||
"x": 553.7857142857143,
|
||||
"y": 360
|
||||
},
|
||||
{
|
||||
"x": 480.0714285714285,
|
||||
"x": 553.7857142857143,
|
||||
"y": 500
|
||||
},
|
||||
{
|
||||
"x": 616.3333333333333,
|
||||
"x": 663,
|
||||
"y": 500
|
||||
},
|
||||
{
|
||||
"x": 616.3333333333333,
|
||||
"x": 663,
|
||||
"y": 540
|
||||
}
|
||||
],
|
||||
|
|
@ -1207,11 +1207,11 @@
|
|||
"labelPercentage": 0,
|
||||
"route": [
|
||||
{
|
||||
"x": 468.71428571428567,
|
||||
"x": 502.3571428571429,
|
||||
"y": 224
|
||||
},
|
||||
{
|
||||
"x": 468.71428571428567,
|
||||
"x": 502.3571428571429,
|
||||
"y": 294
|
||||
}
|
||||
],
|
||||
|
|
@ -1247,19 +1247,19 @@
|
|||
"labelPercentage": 0,
|
||||
"route": [
|
||||
{
|
||||
"x": 487.64285714285705,
|
||||
"x": 588.0714285714286,
|
||||
"y": 360
|
||||
},
|
||||
{
|
||||
"x": 487.64285714285705,
|
||||
"x": 588.0714285714286,
|
||||
"y": 450
|
||||
},
|
||||
{
|
||||
"x": 675.0833333333333,
|
||||
"x": 753,
|
||||
"y": 450
|
||||
},
|
||||
{
|
||||
"x": 675.0833333333333,
|
||||
"x": 753,
|
||||
"y": 540
|
||||
}
|
||||
],
|
||||
|
|
@ -1343,11 +1343,11 @@
|
|||
"y": 400
|
||||
},
|
||||
{
|
||||
"x": 93.25,
|
||||
"x": 76.5,
|
||||
"y": 400
|
||||
},
|
||||
{
|
||||
"x": 93.25,
|
||||
"x": 76.5,
|
||||
"y": 540
|
||||
}
|
||||
],
|
||||
|
|
@ -1383,11 +1383,11 @@
|
|||
"labelPercentage": 0,
|
||||
"route": [
|
||||
{
|
||||
"x": 477.71428571428567,
|
||||
"x": 515.6904761904763,
|
||||
"y": 78
|
||||
},
|
||||
{
|
||||
"x": 477.71428571428567,
|
||||
"x": 515.6904761904763,
|
||||
"y": 158
|
||||
}
|
||||
],
|
||||
|
|
@ -1423,19 +1423,19 @@
|
|||
"labelPercentage": 0,
|
||||
"route": [
|
||||
{
|
||||
"x": 406.71428571428567,
|
||||
"x": 444.69047619047626,
|
||||
"y": 78
|
||||
},
|
||||
{
|
||||
"x": 406.71428571428567,
|
||||
"x": 444.69047619047626,
|
||||
"y": 118
|
||||
},
|
||||
{
|
||||
"x": 459.71428571428567,
|
||||
"x": 489.0238095238095,
|
||||
"y": 118
|
||||
},
|
||||
{
|
||||
"x": 459.71428571428567,
|
||||
"x": 489.0238095238095,
|
||||
"y": 158
|
||||
}
|
||||
],
|
||||
|
|
@ -1471,19 +1471,19 @@
|
|||
"labelPercentage": 0,
|
||||
"route": [
|
||||
{
|
||||
"x": 170.66666666666663,
|
||||
"x": 213.16666666666669,
|
||||
"y": 606
|
||||
},
|
||||
{
|
||||
"x": 170.66666666666663,
|
||||
"x": 213.16666666666669,
|
||||
"y": 646
|
||||
},
|
||||
{
|
||||
"x": 113.33333333333326,
|
||||
"x": 164.83333333333326,
|
||||
"y": 646
|
||||
},
|
||||
{
|
||||
"x": 113.33333333333326,
|
||||
"x": 164.83333333333326,
|
||||
"y": 686
|
||||
}
|
||||
],
|
||||
|
|
@ -1519,11 +1519,11 @@
|
|||
"labelPercentage": 0,
|
||||
"route": [
|
||||
{
|
||||
"x": 188.33333333333326,
|
||||
"x": 239.83333333333331,
|
||||
"y": 606
|
||||
},
|
||||
{
|
||||
"x": 188.33333333333326,
|
||||
"x": 239.83333333333331,
|
||||
"y": 686
|
||||
}
|
||||
],
|
||||
|
|
@ -1559,19 +1559,19 @@
|
|||
"labelPercentage": 0,
|
||||
"route": [
|
||||
{
|
||||
"x": 317.33333333333326,
|
||||
"x": 360.16666666666674,
|
||||
"y": 606
|
||||
},
|
||||
{
|
||||
"x": 317.33333333333326,
|
||||
"x": 360.16666666666674,
|
||||
"y": 646
|
||||
},
|
||||
{
|
||||
"x": 261.83333333333326,
|
||||
"x": 313.33333333333337,
|
||||
"y": 646
|
||||
},
|
||||
{
|
||||
"x": 261.83333333333326,
|
||||
"x": 313.33333333333337,
|
||||
"y": 686
|
||||
}
|
||||
],
|
||||
|
|
@ -1607,11 +1607,11 @@
|
|||
"labelPercentage": 0,
|
||||
"route": [
|
||||
{
|
||||
"x": 335.33333333333326,
|
||||
"x": 386.83333333333337,
|
||||
"y": 606
|
||||
},
|
||||
{
|
||||
"x": 335.33333333333326,
|
||||
"x": 386.83333333333337,
|
||||
"y": 686
|
||||
}
|
||||
],
|
||||
|
|
@ -1647,19 +1647,19 @@
|
|||
"labelPercentage": 0,
|
||||
"route": [
|
||||
{
|
||||
"x": 463.6666666666666,
|
||||
"x": 506.1666666666667,
|
||||
"y": 606
|
||||
},
|
||||
{
|
||||
"x": 463.6666666666666,
|
||||
"x": 506.1666666666667,
|
||||
"y": 646
|
||||
},
|
||||
{
|
||||
"x": 408.83333333333326,
|
||||
"x": 460.33333333333337,
|
||||
"y": 646
|
||||
},
|
||||
{
|
||||
"x": 408.83333333333326,
|
||||
"x": 460.33333333333337,
|
||||
"y": 686
|
||||
}
|
||||
],
|
||||
|
|
@ -1695,11 +1695,11 @@
|
|||
"labelPercentage": 0,
|
||||
"route": [
|
||||
{
|
||||
"x": 481.33333333333326,
|
||||
"x": 532.8333333333334,
|
||||
"y": 606
|
||||
},
|
||||
{
|
||||
"x": 481.33333333333326,
|
||||
"x": 532.8333333333334,
|
||||
"y": 686
|
||||
}
|
||||
],
|
||||
|
|
@ -1735,11 +1735,11 @@
|
|||
"labelPercentage": 0,
|
||||
"route": [
|
||||
{
|
||||
"x": 335.33333333333326,
|
||||
"x": 386.83333333333337,
|
||||
"y": 752
|
||||
},
|
||||
{
|
||||
"x": 335.33333333333326,
|
||||
"x": 386.83333333333337,
|
||||
"y": 822
|
||||
}
|
||||
],
|
||||
|
|
@ -1775,19 +1775,19 @@
|
|||
"labelPercentage": 0,
|
||||
"route": [
|
||||
{
|
||||
"x": 607.8333333333333,
|
||||
"x": 649.6666666666666,
|
||||
"y": 606
|
||||
},
|
||||
{
|
||||
"x": 607.8333333333333,
|
||||
"x": 649.6666666666666,
|
||||
"y": 646
|
||||
},
|
||||
{
|
||||
"x": 552.3333333333333,
|
||||
"x": 603.8333333333334,
|
||||
"y": 646
|
||||
},
|
||||
{
|
||||
"x": 552.3333333333333,
|
||||
"x": 603.8333333333334,
|
||||
"y": 686
|
||||
}
|
||||
],
|
||||
|
|
@ -1823,11 +1823,11 @@
|
|||
"labelPercentage": 0,
|
||||
"route": [
|
||||
{
|
||||
"x": 624.8333333333333,
|
||||
"x": 676.3333333333334,
|
||||
"y": 606
|
||||
},
|
||||
{
|
||||
"x": 624.8333333333333,
|
||||
"x": 676.3333333333334,
|
||||
"y": 686
|
||||
}
|
||||
],
|
||||
|
|
@ -1863,19 +1863,19 @@
|
|||
"labelPercentage": 0,
|
||||
"route": [
|
||||
{
|
||||
"x": 625.5833333333333,
|
||||
"x": 737,
|
||||
"y": 360
|
||||
},
|
||||
{
|
||||
"x": 625.5833333333333,
|
||||
"x": 737,
|
||||
"y": 400
|
||||
},
|
||||
{
|
||||
"x": 688.3333333333333,
|
||||
"x": 783,
|
||||
"y": 400
|
||||
},
|
||||
{
|
||||
"x": 688.3333333333333,
|
||||
"x": 783,
|
||||
"y": 540
|
||||
}
|
||||
],
|
||||
|
|
@ -1911,11 +1911,11 @@
|
|||
"labelPercentage": 0,
|
||||
"route": [
|
||||
{
|
||||
"x": 701.5833333333333,
|
||||
"x": 813,
|
||||
"y": 360
|
||||
},
|
||||
{
|
||||
"x": 701.5833333333333,
|
||||
"x": 813,
|
||||
"y": 540
|
||||
}
|
||||
],
|
||||
|
|
|
|||
|
Before Width: | Height: | Size: 340 KiB After Width: | Height: | Size: 340 KiB |
444
e2etests/testdata/stable/n22_e32/elk/board.exp.json
generated
vendored
|
|
@ -7,10 +7,10 @@
|
|||
"id": "a",
|
||||
"type": "rectangle",
|
||||
"pos": {
|
||||
"x": 210,
|
||||
"y": 982
|
||||
"x": 283,
|
||||
"y": 832
|
||||
},
|
||||
"width": 53,
|
||||
"width": 160,
|
||||
"height": 66,
|
||||
"opacity": 1,
|
||||
"strokeDash": 0,
|
||||
|
|
@ -48,10 +48,10 @@
|
|||
"id": "b",
|
||||
"type": "rectangle",
|
||||
"pos": {
|
||||
"x": 254,
|
||||
"y": 1274
|
||||
"x": 393,
|
||||
"y": 1124
|
||||
},
|
||||
"width": 53,
|
||||
"width": 120,
|
||||
"height": 66,
|
||||
"opacity": 1,
|
||||
"strokeDash": 0,
|
||||
|
|
@ -89,10 +89,10 @@
|
|||
"id": "c",
|
||||
"type": "rectangle",
|
||||
"pos": {
|
||||
"x": 216,
|
||||
"x": 319,
|
||||
"y": 294
|
||||
},
|
||||
"width": 53,
|
||||
"width": 120,
|
||||
"height": 66,
|
||||
"opacity": 1,
|
||||
"strokeDash": 0,
|
||||
|
|
@ -130,10 +130,10 @@
|
|||
"id": "d",
|
||||
"type": "rectangle",
|
||||
"pos": {
|
||||
"x": 254,
|
||||
"x": 393,
|
||||
"y": 686
|
||||
},
|
||||
"width": 54,
|
||||
"width": 120,
|
||||
"height": 66,
|
||||
"opacity": 1,
|
||||
"strokeDash": 0,
|
||||
|
|
@ -171,10 +171,10 @@
|
|||
"id": "e",
|
||||
"type": "rectangle",
|
||||
"pos": {
|
||||
"x": 319,
|
||||
"y": 982
|
||||
"x": 506,
|
||||
"y": 832
|
||||
},
|
||||
"width": 53,
|
||||
"width": 80,
|
||||
"height": 66,
|
||||
"opacity": 1,
|
||||
"strokeDash": 0,
|
||||
|
|
@ -212,10 +212,10 @@
|
|||
"id": "f",
|
||||
"type": "rectangle",
|
||||
"pos": {
|
||||
"x": 365,
|
||||
"y": 1128
|
||||
"x": 536,
|
||||
"y": 978
|
||||
},
|
||||
"width": 51,
|
||||
"width": 120,
|
||||
"height": 66,
|
||||
"opacity": 1,
|
||||
"strokeDash": 0,
|
||||
|
|
@ -253,10 +253,10 @@
|
|||
"id": "g",
|
||||
"type": "rectangle",
|
||||
"pos": {
|
||||
"x": 225,
|
||||
"x": 352,
|
||||
"y": 12
|
||||
},
|
||||
"width": 54,
|
||||
"width": 80,
|
||||
"height": 66,
|
||||
"opacity": 1,
|
||||
"strokeDash": 0,
|
||||
|
|
@ -294,7 +294,7 @@
|
|||
"id": "h",
|
||||
"type": "rectangle",
|
||||
"pos": {
|
||||
"x": 400,
|
||||
"x": 621,
|
||||
"y": 158
|
||||
},
|
||||
"width": 53,
|
||||
|
|
@ -335,7 +335,7 @@
|
|||
"id": "i",
|
||||
"type": "rectangle",
|
||||
"pos": {
|
||||
"x": 402,
|
||||
"x": 623,
|
||||
"y": 294
|
||||
},
|
||||
"width": 49,
|
||||
|
|
@ -376,10 +376,10 @@
|
|||
"id": "j",
|
||||
"type": "rectangle",
|
||||
"pos": {
|
||||
"x": 402,
|
||||
"x": 607,
|
||||
"y": 540
|
||||
},
|
||||
"width": 50,
|
||||
"width": 80,
|
||||
"height": 66,
|
||||
"opacity": 1,
|
||||
"strokeDash": 0,
|
||||
|
|
@ -417,7 +417,7 @@
|
|||
"id": "k",
|
||||
"type": "rectangle",
|
||||
"pos": {
|
||||
"x": 328,
|
||||
"x": 533,
|
||||
"y": 686
|
||||
},
|
||||
"width": 53,
|
||||
|
|
@ -458,10 +458,10 @@
|
|||
"id": "l",
|
||||
"type": "rectangle",
|
||||
"pos": {
|
||||
"x": 12,
|
||||
"y": 982
|
||||
"x": 18,
|
||||
"y": 832
|
||||
},
|
||||
"width": 49,
|
||||
"width": 80,
|
||||
"height": 66,
|
||||
"opacity": 1,
|
||||
"strokeDash": 0,
|
||||
|
|
@ -499,10 +499,10 @@
|
|||
"id": "m",
|
||||
"type": "rectangle",
|
||||
"pos": {
|
||||
"x": 42,
|
||||
"y": 1274
|
||||
"x": 51,
|
||||
"y": 1124
|
||||
},
|
||||
"width": 57,
|
||||
"width": 120,
|
||||
"height": 66,
|
||||
"opacity": 1,
|
||||
"strokeDash": 0,
|
||||
|
|
@ -540,10 +540,10 @@
|
|||
"id": "n",
|
||||
"type": "rectangle",
|
||||
"pos": {
|
||||
"x": 19,
|
||||
"x": 12,
|
||||
"y": 686
|
||||
},
|
||||
"width": 53,
|
||||
"width": 200,
|
||||
"height": 66,
|
||||
"opacity": 1,
|
||||
"strokeDash": 0,
|
||||
|
|
@ -581,10 +581,10 @@
|
|||
"id": "o",
|
||||
"type": "rectangle",
|
||||
"pos": {
|
||||
"x": 93,
|
||||
"y": 982
|
||||
"x": 156,
|
||||
"y": 832
|
||||
},
|
||||
"width": 54,
|
||||
"width": 80,
|
||||
"height": 66,
|
||||
"opacity": 1,
|
||||
"strokeDash": 0,
|
||||
|
|
@ -622,10 +622,10 @@
|
|||
"id": "p",
|
||||
"type": "rectangle",
|
||||
"pos": {
|
||||
"x": 93,
|
||||
"y": 1128
|
||||
"x": 136,
|
||||
"y": 978
|
||||
},
|
||||
"width": 53,
|
||||
"width": 120,
|
||||
"height": 66,
|
||||
"opacity": 1,
|
||||
"strokeDash": 0,
|
||||
|
|
@ -663,10 +663,10 @@
|
|||
"id": "q",
|
||||
"type": "rectangle",
|
||||
"pos": {
|
||||
"x": 28,
|
||||
"x": 85,
|
||||
"y": 12
|
||||
},
|
||||
"width": 54,
|
||||
"width": 80,
|
||||
"height": 66,
|
||||
"opacity": 1,
|
||||
"strokeDash": 0,
|
||||
|
|
@ -704,7 +704,7 @@
|
|||
"id": "r",
|
||||
"type": "rectangle",
|
||||
"pos": {
|
||||
"x": 140,
|
||||
"x": 234,
|
||||
"y": 158
|
||||
},
|
||||
"width": 51,
|
||||
|
|
@ -745,10 +745,10 @@
|
|||
"id": "s",
|
||||
"type": "rectangle",
|
||||
"pos": {
|
||||
"x": 139,
|
||||
"x": 219,
|
||||
"y": 294
|
||||
},
|
||||
"width": 52,
|
||||
"width": 80,
|
||||
"height": 66,
|
||||
"opacity": 1,
|
||||
"strokeDash": 0,
|
||||
|
|
@ -786,10 +786,10 @@
|
|||
"id": "t",
|
||||
"type": "rectangle",
|
||||
"pos": {
|
||||
"x": 140,
|
||||
"x": 219,
|
||||
"y": 540
|
||||
},
|
||||
"width": 51,
|
||||
"width": 80,
|
||||
"height": 66,
|
||||
"opacity": 1,
|
||||
"strokeDash": 0,
|
||||
|
|
@ -827,10 +827,10 @@
|
|||
"id": "u",
|
||||
"type": "rectangle",
|
||||
"pos": {
|
||||
"x": 168,
|
||||
"x": 257,
|
||||
"y": 686
|
||||
},
|
||||
"width": 54,
|
||||
"width": 80,
|
||||
"height": 66,
|
||||
"opacity": 1,
|
||||
"strokeDash": 0,
|
||||
|
|
@ -893,20 +893,20 @@
|
|||
"labelPercentage": 0,
|
||||
"route": [
|
||||
{
|
||||
"x": 237.3,
|
||||
"y": 1048
|
||||
"x": 363.3333333333333,
|
||||
"y": 898
|
||||
},
|
||||
{
|
||||
"x": 237.3,
|
||||
"y": 1234
|
||||
"x": 363.3333333333333,
|
||||
"y": 1084
|
||||
},
|
||||
{
|
||||
"x": 267.75,
|
||||
"y": 1234
|
||||
"x": 423.3333333333333,
|
||||
"y": 1084
|
||||
},
|
||||
{
|
||||
"x": 267.75,
|
||||
"y": 1274
|
||||
"x": 423.3333333333333,
|
||||
"y": 1124
|
||||
}
|
||||
],
|
||||
"animated": false,
|
||||
|
|
@ -941,20 +941,20 @@
|
|||
"labelPercentage": 0,
|
||||
"route": [
|
||||
{
|
||||
"x": 243,
|
||||
"x": 379.66666666666663,
|
||||
"y": 360
|
||||
},
|
||||
{
|
||||
"x": 243,
|
||||
"x": 379.66666666666663,
|
||||
"y": 792
|
||||
},
|
||||
{
|
||||
"x": 242.60000000000002,
|
||||
"x": 379.3333333333333,
|
||||
"y": 792
|
||||
},
|
||||
{
|
||||
"x": 242.60000000000002,
|
||||
"y": 982
|
||||
"x": 379.3333333333333,
|
||||
"y": 832
|
||||
}
|
||||
],
|
||||
"animated": false,
|
||||
|
|
@ -989,20 +989,20 @@
|
|||
"labelPercentage": 0,
|
||||
"route": [
|
||||
{
|
||||
"x": 267.5,
|
||||
"x": 423.3333333333333,
|
||||
"y": 752
|
||||
},
|
||||
{
|
||||
"x": 267.5,
|
||||
"y": 842
|
||||
"x": 423.3333333333333,
|
||||
"y": 792
|
||||
},
|
||||
{
|
||||
"x": 253.20000000000002,
|
||||
"y": 842
|
||||
"x": 411.3333333333333,
|
||||
"y": 792
|
||||
},
|
||||
{
|
||||
"x": 253.20000000000002,
|
||||
"y": 982
|
||||
"x": 411.3333333333333,
|
||||
"y": 832
|
||||
}
|
||||
],
|
||||
"animated": false,
|
||||
|
|
@ -1037,12 +1037,12 @@
|
|||
"labelPercentage": 0,
|
||||
"route": [
|
||||
{
|
||||
"x": 281,
|
||||
"x": 453.3333333333333,
|
||||
"y": 752
|
||||
},
|
||||
{
|
||||
"x": 281,
|
||||
"y": 1274
|
||||
"x": 453.3333333333333,
|
||||
"y": 1124
|
||||
}
|
||||
],
|
||||
"animated": false,
|
||||
|
|
@ -1077,20 +1077,20 @@
|
|||
"labelPercentage": 0,
|
||||
"route": [
|
||||
{
|
||||
"x": 294.5,
|
||||
"x": 483.3333333333333,
|
||||
"y": 752
|
||||
},
|
||||
{
|
||||
"x": 294.5,
|
||||
"x": 483.3333333333333,
|
||||
"y": 792
|
||||
},
|
||||
{
|
||||
"x": 336.83333333333337,
|
||||
"x": 533.1666666666666,
|
||||
"y": 792
|
||||
},
|
||||
{
|
||||
"x": 336.83333333333337,
|
||||
"y": 982
|
||||
"x": 533.1666666666666,
|
||||
"y": 832
|
||||
}
|
||||
],
|
||||
"animated": false,
|
||||
|
|
@ -1125,20 +1125,20 @@
|
|||
"labelPercentage": 0,
|
||||
"route": [
|
||||
{
|
||||
"x": 345.6666666666667,
|
||||
"y": 1048
|
||||
"x": 546.5,
|
||||
"y": 898
|
||||
},
|
||||
{
|
||||
"x": 345.6666666666667,
|
||||
"y": 1088
|
||||
"x": 546.5,
|
||||
"y": 938
|
||||
},
|
||||
{
|
||||
"x": 378.25,
|
||||
"y": 1088
|
||||
"x": 566.5,
|
||||
"y": 938
|
||||
},
|
||||
{
|
||||
"x": 378.25,
|
||||
"y": 1128
|
||||
"x": 566.5,
|
||||
"y": 978
|
||||
}
|
||||
],
|
||||
"animated": false,
|
||||
|
|
@ -1173,20 +1173,20 @@
|
|||
"labelPercentage": 0,
|
||||
"route": [
|
||||
{
|
||||
"x": 391,
|
||||
"y": 1194
|
||||
"x": 596.5,
|
||||
"y": 1044
|
||||
},
|
||||
{
|
||||
"x": 391,
|
||||
"y": 1234
|
||||
"x": 596.5,
|
||||
"y": 1084
|
||||
},
|
||||
{
|
||||
"x": 294.25,
|
||||
"y": 1234
|
||||
"x": 483.3333333333333,
|
||||
"y": 1084
|
||||
},
|
||||
{
|
||||
"x": 294.25,
|
||||
"y": 1274
|
||||
"x": 483.3333333333333,
|
||||
"y": 1124
|
||||
}
|
||||
],
|
||||
"animated": false,
|
||||
|
|
@ -1221,20 +1221,20 @@
|
|||
"labelPercentage": 0,
|
||||
"route": [
|
||||
{
|
||||
"x": 256.25,
|
||||
"x": 409.66666666666663,
|
||||
"y": 360
|
||||
},
|
||||
{
|
||||
"x": 256.25,
|
||||
"x": 409.66666666666663,
|
||||
"y": 400
|
||||
},
|
||||
{
|
||||
"x": 391,
|
||||
"x": 596.5,
|
||||
"y": 400
|
||||
},
|
||||
{
|
||||
"x": 391,
|
||||
"y": 1128
|
||||
"x": 596.5,
|
||||
"y": 978
|
||||
}
|
||||
],
|
||||
"animated": false,
|
||||
|
|
@ -1269,11 +1269,11 @@
|
|||
"labelPercentage": 0,
|
||||
"route": [
|
||||
{
|
||||
"x": 243,
|
||||
"x": 379.66666666666663,
|
||||
"y": 78
|
||||
},
|
||||
{
|
||||
"x": 243,
|
||||
"x": 379.66666666666663,
|
||||
"y": 294
|
||||
}
|
||||
],
|
||||
|
|
@ -1309,19 +1309,19 @@
|
|||
"labelPercentage": 0,
|
||||
"route": [
|
||||
{
|
||||
"x": 261,
|
||||
"x": 406.33333333333326,
|
||||
"y": 78
|
||||
},
|
||||
{
|
||||
"x": 261,
|
||||
"x": 406.33333333333326,
|
||||
"y": 118
|
||||
},
|
||||
{
|
||||
"x": 427,
|
||||
"x": 647.5,
|
||||
"y": 118
|
||||
},
|
||||
{
|
||||
"x": 427,
|
||||
"x": 647.5,
|
||||
"y": 158
|
||||
}
|
||||
],
|
||||
|
|
@ -1357,11 +1357,11 @@
|
|||
"labelPercentage": 0,
|
||||
"route": [
|
||||
{
|
||||
"x": 427,
|
||||
"x": 647.5,
|
||||
"y": 224
|
||||
},
|
||||
{
|
||||
"x": 427,
|
||||
"x": 647.5,
|
||||
"y": 294
|
||||
}
|
||||
],
|
||||
|
|
@ -1397,11 +1397,11 @@
|
|||
"labelPercentage": 0,
|
||||
"route": [
|
||||
{
|
||||
"x": 427,
|
||||
"x": 647.5,
|
||||
"y": 360
|
||||
},
|
||||
{
|
||||
"x": 427,
|
||||
"x": 647.5,
|
||||
"y": 540
|
||||
}
|
||||
],
|
||||
|
|
@ -1437,19 +1437,19 @@
|
|||
"labelPercentage": 0,
|
||||
"route": [
|
||||
{
|
||||
"x": 418.6666666666667,
|
||||
"x": 634.1666666666666,
|
||||
"y": 606
|
||||
},
|
||||
{
|
||||
"x": 418.6666666666667,
|
||||
"x": 634.1666666666666,
|
||||
"y": 646
|
||||
},
|
||||
{
|
||||
"x": 354.5,
|
||||
"x": 559.8333333333333,
|
||||
"y": 646
|
||||
},
|
||||
{
|
||||
"x": 354.5,
|
||||
"x": 559.8333333333333,
|
||||
"y": 686
|
||||
}
|
||||
],
|
||||
|
|
@ -1485,12 +1485,12 @@
|
|||
"labelPercentage": 0,
|
||||
"route": [
|
||||
{
|
||||
"x": 354.5,
|
||||
"x": 559.8333333333333,
|
||||
"y": 752
|
||||
},
|
||||
{
|
||||
"x": 354.5,
|
||||
"y": 982
|
||||
"x": 559.8333333333333,
|
||||
"y": 832
|
||||
}
|
||||
],
|
||||
"animated": false,
|
||||
|
|
@ -1525,20 +1525,20 @@
|
|||
"labelPercentage": 0,
|
||||
"route": [
|
||||
{
|
||||
"x": 435.3333333333333,
|
||||
"x": 660.8333333333334,
|
||||
"y": 606
|
||||
},
|
||||
{
|
||||
"x": 435.3333333333333,
|
||||
"y": 1088
|
||||
"x": 660.8333333333334,
|
||||
"y": 938
|
||||
},
|
||||
{
|
||||
"x": 403.75,
|
||||
"y": 1088
|
||||
"x": 626.5,
|
||||
"y": 938
|
||||
},
|
||||
{
|
||||
"x": 403.75,
|
||||
"y": 1128
|
||||
"x": 626.5,
|
||||
"y": 978
|
||||
}
|
||||
],
|
||||
"animated": false,
|
||||
|
|
@ -1573,20 +1573,20 @@
|
|||
"labelPercentage": 0,
|
||||
"route": [
|
||||
{
|
||||
"x": 36.5,
|
||||
"y": 1048
|
||||
"x": 58.66666666666666,
|
||||
"y": 898
|
||||
},
|
||||
{
|
||||
"x": 36.5,
|
||||
"y": 1234
|
||||
"x": 58.66666666666666,
|
||||
"y": 1084
|
||||
},
|
||||
{
|
||||
"x": 56.75,
|
||||
"y": 1234
|
||||
"x": 81.99999999999999,
|
||||
"y": 1084
|
||||
},
|
||||
{
|
||||
"x": 56.75,
|
||||
"y": 1274
|
||||
"x": 81.99999999999999,
|
||||
"y": 1124
|
||||
}
|
||||
],
|
||||
"animated": false,
|
||||
|
|
@ -1621,12 +1621,12 @@
|
|||
"labelPercentage": 0,
|
||||
"route": [
|
||||
{
|
||||
"x": 28.333333333333332,
|
||||
"x": 45.33333333333333,
|
||||
"y": 752
|
||||
},
|
||||
{
|
||||
"x": 28.333333333333332,
|
||||
"y": 982
|
||||
"x": 45.33333333333333,
|
||||
"y": 832
|
||||
}
|
||||
],
|
||||
"animated": false,
|
||||
|
|
@ -1661,20 +1661,20 @@
|
|||
"labelPercentage": 0,
|
||||
"route": [
|
||||
{
|
||||
"x": 37.166666666666664,
|
||||
"x": 78.66666666666666,
|
||||
"y": 752
|
||||
},
|
||||
{
|
||||
"x": 37.166666666666664,
|
||||
"y": 942
|
||||
"x": 78.66666666666666,
|
||||
"y": 792
|
||||
},
|
||||
{
|
||||
"x": 44.666666666666664,
|
||||
"y": 942
|
||||
"x": 72,
|
||||
"y": 792
|
||||
},
|
||||
{
|
||||
"x": 44.666666666666664,
|
||||
"y": 982
|
||||
"x": 72,
|
||||
"y": 832
|
||||
}
|
||||
],
|
||||
"animated": false,
|
||||
|
|
@ -1709,20 +1709,12 @@
|
|||
"labelPercentage": 0,
|
||||
"route": [
|
||||
{
|
||||
"x": 46,
|
||||
"x": 111.99999999999999,
|
||||
"y": 752
|
||||
},
|
||||
{
|
||||
"x": 46,
|
||||
"y": 892
|
||||
},
|
||||
{
|
||||
"x": 71,
|
||||
"y": 892
|
||||
},
|
||||
{
|
||||
"x": 71,
|
||||
"y": 1274
|
||||
"x": 111.99999999999999,
|
||||
"y": 1124
|
||||
}
|
||||
],
|
||||
"animated": false,
|
||||
|
|
@ -1757,20 +1749,20 @@
|
|||
"labelPercentage": 0,
|
||||
"route": [
|
||||
{
|
||||
"x": 63.66666666666667,
|
||||
"x": 178.66666666666663,
|
||||
"y": 752
|
||||
},
|
||||
{
|
||||
"x": 63.66666666666667,
|
||||
"x": 178.66666666666663,
|
||||
"y": 792
|
||||
},
|
||||
{
|
||||
"x": 111,
|
||||
"x": 182.99999999999997,
|
||||
"y": 792
|
||||
},
|
||||
{
|
||||
"x": 111,
|
||||
"y": 982
|
||||
"x": 182.99999999999997,
|
||||
"y": 832
|
||||
}
|
||||
],
|
||||
"animated": false,
|
||||
|
|
@ -1805,12 +1797,12 @@
|
|||
"labelPercentage": 0,
|
||||
"route": [
|
||||
{
|
||||
"x": 120,
|
||||
"y": 1048
|
||||
"x": 196.33333333333331,
|
||||
"y": 898
|
||||
},
|
||||
{
|
||||
"x": 120,
|
||||
"y": 1128
|
||||
"x": 196.33333333333331,
|
||||
"y": 978
|
||||
}
|
||||
],
|
||||
"animated": false,
|
||||
|
|
@ -1845,20 +1837,20 @@
|
|||
"labelPercentage": 0,
|
||||
"route": [
|
||||
{
|
||||
"x": 120,
|
||||
"y": 1194
|
||||
"x": 196.33333333333331,
|
||||
"y": 1044
|
||||
},
|
||||
{
|
||||
"x": 120,
|
||||
"y": 1234
|
||||
"x": 196.33333333333331,
|
||||
"y": 1084
|
||||
},
|
||||
{
|
||||
"x": 85.25,
|
||||
"y": 1234
|
||||
"x": 142,
|
||||
"y": 1084
|
||||
},
|
||||
{
|
||||
"x": 85.25,
|
||||
"y": 1274
|
||||
"x": 142,
|
||||
"y": 1124
|
||||
}
|
||||
],
|
||||
"animated": false,
|
||||
|
|
@ -1893,28 +1885,20 @@
|
|||
"labelPercentage": 0,
|
||||
"route": [
|
||||
{
|
||||
"x": 54.833333333333336,
|
||||
"x": 145.33333333333331,
|
||||
"y": 752
|
||||
},
|
||||
{
|
||||
"x": 54.833333333333336,
|
||||
"y": 842
|
||||
"x": 145.33333333333331,
|
||||
"y": 938
|
||||
},
|
||||
{
|
||||
"x": 82,
|
||||
"y": 842
|
||||
"x": 166.33333333333331,
|
||||
"y": 938
|
||||
},
|
||||
{
|
||||
"x": 82,
|
||||
"y": 1088
|
||||
},
|
||||
{
|
||||
"x": 106.75,
|
||||
"y": 1088
|
||||
},
|
||||
{
|
||||
"x": 106.75,
|
||||
"y": 1128
|
||||
"x": 166.33333333333331,
|
||||
"y": 978
|
||||
}
|
||||
],
|
||||
"animated": false,
|
||||
|
|
@ -1949,11 +1933,11 @@
|
|||
"labelPercentage": 0,
|
||||
"route": [
|
||||
{
|
||||
"x": 46,
|
||||
"x": 112,
|
||||
"y": 78
|
||||
},
|
||||
{
|
||||
"x": 46,
|
||||
"x": 112,
|
||||
"y": 686
|
||||
}
|
||||
],
|
||||
|
|
@ -1989,19 +1973,19 @@
|
|||
"labelPercentage": 0,
|
||||
"route": [
|
||||
{
|
||||
"x": 64,
|
||||
"x": 138.66666666666666,
|
||||
"y": 78
|
||||
},
|
||||
{
|
||||
"x": 64,
|
||||
"x": 138.66666666666666,
|
||||
"y": 118
|
||||
},
|
||||
{
|
||||
"x": 165.66666666666669,
|
||||
"x": 259.66666666666663,
|
||||
"y": 118
|
||||
},
|
||||
{
|
||||
"x": 165.66666666666669,
|
||||
"x": 259.66666666666663,
|
||||
"y": 158
|
||||
}
|
||||
],
|
||||
|
|
@ -2037,11 +2021,11 @@
|
|||
"labelPercentage": 0,
|
||||
"route": [
|
||||
{
|
||||
"x": 165.66666666666669,
|
||||
"x": 259.66666666666663,
|
||||
"y": 224
|
||||
},
|
||||
{
|
||||
"x": 165.66666666666669,
|
||||
"x": 259.66666666666663,
|
||||
"y": 294
|
||||
}
|
||||
],
|
||||
|
|
@ -2077,11 +2061,11 @@
|
|||
"labelPercentage": 0,
|
||||
"route": [
|
||||
{
|
||||
"x": 157,
|
||||
"x": 246.33333333333331,
|
||||
"y": 360
|
||||
},
|
||||
{
|
||||
"x": 157,
|
||||
"x": 246.33333333333331,
|
||||
"y": 540
|
||||
}
|
||||
],
|
||||
|
|
@ -2117,19 +2101,19 @@
|
|||
"labelPercentage": 0,
|
||||
"route": [
|
||||
{
|
||||
"x": 174,
|
||||
"x": 273,
|
||||
"y": 606
|
||||
},
|
||||
{
|
||||
"x": 174,
|
||||
"x": 273,
|
||||
"y": 646
|
||||
},
|
||||
{
|
||||
"x": 195,
|
||||
"x": 297.3333333333333,
|
||||
"y": 646
|
||||
},
|
||||
{
|
||||
"x": 195,
|
||||
"x": 297.3333333333333,
|
||||
"y": 686
|
||||
}
|
||||
],
|
||||
|
|
@ -2165,20 +2149,20 @@
|
|||
"labelPercentage": 0,
|
||||
"route": [
|
||||
{
|
||||
"x": 186,
|
||||
"x": 284,
|
||||
"y": 752
|
||||
},
|
||||
{
|
||||
"x": 186,
|
||||
"x": 284,
|
||||
"y": 792
|
||||
},
|
||||
{
|
||||
"x": 129,
|
||||
"x": 209.66666666666666,
|
||||
"y": 792
|
||||
},
|
||||
{
|
||||
"x": 129,
|
||||
"y": 982
|
||||
"x": 209.66666666666666,
|
||||
"y": 832
|
||||
}
|
||||
],
|
||||
"animated": false,
|
||||
|
|
@ -2213,20 +2197,20 @@
|
|||
"labelPercentage": 0,
|
||||
"route": [
|
||||
{
|
||||
"x": 157,
|
||||
"x": 246.33333333333331,
|
||||
"y": 606
|
||||
},
|
||||
{
|
||||
"x": 157,
|
||||
"y": 1088
|
||||
"x": 246.33333333333331,
|
||||
"y": 938
|
||||
},
|
||||
{
|
||||
"x": 133.25,
|
||||
"y": 1088
|
||||
"x": 226.33333333333331,
|
||||
"y": 938
|
||||
},
|
||||
{
|
||||
"x": 133.25,
|
||||
"y": 1128
|
||||
"x": 226.33333333333331,
|
||||
"y": 978
|
||||
}
|
||||
],
|
||||
"animated": false,
|
||||
|
|
@ -2261,19 +2245,19 @@
|
|||
"labelPercentage": 0,
|
||||
"route": [
|
||||
{
|
||||
"x": 229.75,
|
||||
"x": 349.66666666666663,
|
||||
"y": 360
|
||||
},
|
||||
{
|
||||
"x": 229.75,
|
||||
"y": 500
|
||||
"x": 349.66666666666663,
|
||||
"y": 450
|
||||
},
|
||||
{
|
||||
"x": 174,
|
||||
"y": 500
|
||||
"x": 273,
|
||||
"y": 450
|
||||
},
|
||||
{
|
||||
"x": 174,
|
||||
"x": 273,
|
||||
"y": 540
|
||||
}
|
||||
],
|
||||
|
|
@ -2309,20 +2293,28 @@
|
|||
"labelPercentage": 0,
|
||||
"route": [
|
||||
{
|
||||
"x": 174.33333333333334,
|
||||
"x": 273,
|
||||
"y": 360
|
||||
},
|
||||
{
|
||||
"x": 174.33333333333334,
|
||||
"y": 450
|
||||
"x": 273,
|
||||
"y": 400
|
||||
},
|
||||
{
|
||||
"x": 232,
|
||||
"y": 450
|
||||
"x": 310.16666666666663,
|
||||
"y": 400
|
||||
},
|
||||
{
|
||||
"x": 232,
|
||||
"y": 982
|
||||
"x": 310.16666666666663,
|
||||
"y": 500
|
||||
},
|
||||
{
|
||||
"x": 347.3333333333333,
|
||||
"y": 500
|
||||
},
|
||||
{
|
||||
"x": 347.3333333333333,
|
||||
"y": 832
|
||||
}
|
||||
],
|
||||
"animated": false,
|
||||
|
|
@ -2357,20 +2349,20 @@
|
|||
"labelPercentage": 0,
|
||||
"route": [
|
||||
{
|
||||
"x": 204,
|
||||
"x": 310.66666666666663,
|
||||
"y": 752
|
||||
},
|
||||
{
|
||||
"x": 204,
|
||||
"y": 842
|
||||
"x": 310.66666666666663,
|
||||
"y": 792
|
||||
},
|
||||
{
|
||||
"x": 221.4,
|
||||
"y": 842
|
||||
"x": 315.3333333333333,
|
||||
"y": 792
|
||||
},
|
||||
{
|
||||
"x": 221.4,
|
||||
"y": 982
|
||||
"x": 315.3333333333333,
|
||||
"y": 832
|
||||
}
|
||||
],
|
||||
"animated": false,
|
||||
|
|
|
|||
|
Before Width: | Height: | Size: 343 KiB After Width: | Height: | Size: 343 KiB |
12
e2etests/testdata/stable/one_container_loop/elk/board.exp.json
generated
vendored
|
|
@ -89,10 +89,10 @@
|
|||
"id": "c",
|
||||
"type": "rectangle",
|
||||
"pos": {
|
||||
"x": 73,
|
||||
"x": 39,
|
||||
"y": 731
|
||||
},
|
||||
"width": 53,
|
||||
"width": 120,
|
||||
"height": 66,
|
||||
"opacity": 1,
|
||||
"strokeDash": 0,
|
||||
|
|
@ -376,11 +376,11 @@
|
|||
"y": 691
|
||||
},
|
||||
{
|
||||
"x": 86.25,
|
||||
"x": 69.5,
|
||||
"y": 691
|
||||
},
|
||||
{
|
||||
"x": 86.25,
|
||||
"x": 69.5,
|
||||
"y": 731
|
||||
}
|
||||
],
|
||||
|
|
@ -464,11 +464,11 @@
|
|||
"y": 691
|
||||
},
|
||||
{
|
||||
"x": 112.75,
|
||||
"x": 129.5,
|
||||
"y": 691
|
||||
},
|
||||
{
|
||||
"x": 112.75,
|
||||
"x": 129.5,
|
||||
"y": 731
|
||||
}
|
||||
],
|
||||
|
|
|
|||
|
Before Width: | Height: | Size: 656 KiB After Width: | Height: | Size: 655 KiB |
104
e2etests/testdata/stable/one_three_one_container/elk/board.exp.json
generated
vendored
|
|
@ -7,10 +7,10 @@
|
|||
"id": "top2",
|
||||
"type": "rectangle",
|
||||
"pos": {
|
||||
"x": 63,
|
||||
"x": 12,
|
||||
"y": 12
|
||||
},
|
||||
"width": 180,
|
||||
"width": 220,
|
||||
"height": 166,
|
||||
"opacity": 1,
|
||||
"strokeDash": 0,
|
||||
|
|
@ -48,10 +48,10 @@
|
|||
"id": "top2.start",
|
||||
"type": "rectangle",
|
||||
"pos": {
|
||||
"x": 113,
|
||||
"x": 62,
|
||||
"y": 62
|
||||
},
|
||||
"width": 80,
|
||||
"width": 120,
|
||||
"height": 66,
|
||||
"opacity": 1,
|
||||
"strokeDash": 0,
|
||||
|
|
@ -89,8 +89,8 @@
|
|||
"id": "a",
|
||||
"type": "rectangle",
|
||||
"pos": {
|
||||
"x": 53,
|
||||
"y": 263
|
||||
"x": 65,
|
||||
"y": 313
|
||||
},
|
||||
"width": 53,
|
||||
"height": 66,
|
||||
|
|
@ -130,8 +130,8 @@
|
|||
"id": "b",
|
||||
"type": "rectangle",
|
||||
"pos": {
|
||||
"x": 126,
|
||||
"y": 263
|
||||
"x": 138,
|
||||
"y": 313
|
||||
},
|
||||
"width": 53,
|
||||
"height": 66,
|
||||
|
|
@ -171,8 +171,8 @@
|
|||
"id": "c",
|
||||
"type": "rectangle",
|
||||
"pos": {
|
||||
"x": 199,
|
||||
"y": 263
|
||||
"x": 211,
|
||||
"y": 313
|
||||
},
|
||||
"width": 53,
|
||||
"height": 66,
|
||||
|
|
@ -212,10 +212,10 @@
|
|||
"id": "bottom",
|
||||
"type": "rectangle",
|
||||
"pos": {
|
||||
"x": 12,
|
||||
"x": 55,
|
||||
"y": 464
|
||||
},
|
||||
"width": 172,
|
||||
"width": 220,
|
||||
"height": 166,
|
||||
"opacity": 1,
|
||||
"strokeDash": 0,
|
||||
|
|
@ -253,10 +253,10 @@
|
|||
"id": "bottom.end",
|
||||
"type": "rectangle",
|
||||
"pos": {
|
||||
"x": 62,
|
||||
"x": 105,
|
||||
"y": 514
|
||||
},
|
||||
"width": 72,
|
||||
"width": 120,
|
||||
"height": 66,
|
||||
"opacity": 1,
|
||||
"strokeDash": 0,
|
||||
|
|
@ -319,20 +319,12 @@
|
|||
"labelPercentage": 0,
|
||||
"route": [
|
||||
{
|
||||
"x": 133,
|
||||
"x": 92,
|
||||
"y": 128
|
||||
},
|
||||
{
|
||||
"x": 133,
|
||||
"y": 223
|
||||
},
|
||||
{
|
||||
"x": 80,
|
||||
"y": 223
|
||||
},
|
||||
{
|
||||
"x": 80,
|
||||
"y": 263
|
||||
"x": 92,
|
||||
"y": 313
|
||||
}
|
||||
],
|
||||
"animated": false,
|
||||
|
|
@ -367,12 +359,20 @@
|
|||
"labelPercentage": 0,
|
||||
"route": [
|
||||
{
|
||||
"x": 153,
|
||||
"x": 122,
|
||||
"y": 128
|
||||
},
|
||||
{
|
||||
"x": 153,
|
||||
"y": 263
|
||||
"x": 122,
|
||||
"y": 273
|
||||
},
|
||||
{
|
||||
"x": 165,
|
||||
"y": 273
|
||||
},
|
||||
{
|
||||
"x": 165,
|
||||
"y": 313
|
||||
}
|
||||
],
|
||||
"animated": false,
|
||||
|
|
@ -407,20 +407,20 @@
|
|||
"labelPercentage": 0,
|
||||
"route": [
|
||||
{
|
||||
"x": 173,
|
||||
"x": 152,
|
||||
"y": 128
|
||||
},
|
||||
{
|
||||
"x": 173,
|
||||
"x": 152,
|
||||
"y": 223
|
||||
},
|
||||
{
|
||||
"x": 226,
|
||||
"x": 238,
|
||||
"y": 223
|
||||
},
|
||||
{
|
||||
"x": 226,
|
||||
"y": 263
|
||||
"x": 238,
|
||||
"y": 313
|
||||
}
|
||||
],
|
||||
"animated": false,
|
||||
|
|
@ -455,11 +455,19 @@
|
|||
"labelPercentage": 0,
|
||||
"route": [
|
||||
{
|
||||
"x": 80,
|
||||
"y": 329
|
||||
"x": 92,
|
||||
"y": 379
|
||||
},
|
||||
{
|
||||
"x": 80,
|
||||
"x": 92,
|
||||
"y": 419
|
||||
},
|
||||
{
|
||||
"x": 135,
|
||||
"y": 419
|
||||
},
|
||||
{
|
||||
"x": 135,
|
||||
"y": 514
|
||||
}
|
||||
],
|
||||
|
|
@ -495,19 +503,11 @@
|
|||
"labelPercentage": 0,
|
||||
"route": [
|
||||
{
|
||||
"x": 153,
|
||||
"y": 329
|
||||
"x": 165,
|
||||
"y": 379
|
||||
},
|
||||
{
|
||||
"x": 153,
|
||||
"y": 369
|
||||
},
|
||||
{
|
||||
"x": 98,
|
||||
"y": 369
|
||||
},
|
||||
{
|
||||
"x": 98,
|
||||
"x": 165,
|
||||
"y": 514
|
||||
}
|
||||
],
|
||||
|
|
@ -543,19 +543,19 @@
|
|||
"labelPercentage": 0,
|
||||
"route": [
|
||||
{
|
||||
"x": 226,
|
||||
"y": 329
|
||||
"x": 238,
|
||||
"y": 379
|
||||
},
|
||||
{
|
||||
"x": 226,
|
||||
"x": 238,
|
||||
"y": 419
|
||||
},
|
||||
{
|
||||
"x": 116,
|
||||
"x": 195,
|
||||
"y": 419
|
||||
},
|
||||
{
|
||||
"x": 116,
|
||||
"x": 195,
|
||||
"y": 514
|
||||
}
|
||||
],
|
||||
|
|
|
|||
|
Before Width: | Height: | Size: 655 KiB After Width: | Height: | Size: 655 KiB |
30
e2etests/testdata/stable/self-referencing/elk/board.exp.json
generated
vendored
|
|
@ -10,7 +10,7 @@
|
|||
"x": 72,
|
||||
"y": 12
|
||||
},
|
||||
"width": 53,
|
||||
"width": 120,
|
||||
"height": 66,
|
||||
"opacity": 1,
|
||||
"strokeDash": 0,
|
||||
|
|
@ -48,10 +48,10 @@
|
|||
"id": "y",
|
||||
"type": "rectangle",
|
||||
"pos": {
|
||||
"x": 80,
|
||||
"x": 105,
|
||||
"y": 158
|
||||
},
|
||||
"width": 54,
|
||||
"width": 80,
|
||||
"height": 66,
|
||||
"opacity": 1,
|
||||
"strokeDash": 0,
|
||||
|
|
@ -89,10 +89,10 @@
|
|||
"id": "z",
|
||||
"type": "rectangle",
|
||||
"pos": {
|
||||
"x": 230,
|
||||
"x": 297,
|
||||
"y": 12
|
||||
},
|
||||
"width": 52,
|
||||
"width": 80,
|
||||
"height": 66,
|
||||
"opacity": 1,
|
||||
"strokeDash": 0,
|
||||
|
|
@ -251,11 +251,11 @@
|
|||
"labelPercentage": 0,
|
||||
"route": [
|
||||
{
|
||||
"x": 98.5,
|
||||
"x": 132,
|
||||
"y": 78
|
||||
},
|
||||
{
|
||||
"x": 98.5,
|
||||
"x": 132,
|
||||
"y": 158
|
||||
}
|
||||
],
|
||||
|
|
@ -291,19 +291,19 @@
|
|||
"labelPercentage": 0,
|
||||
"route": [
|
||||
{
|
||||
"x": 256,
|
||||
"x": 337,
|
||||
"y": 78
|
||||
},
|
||||
{
|
||||
"x": 256,
|
||||
"x": 337,
|
||||
"y": 118
|
||||
},
|
||||
{
|
||||
"x": 116.5,
|
||||
"x": 158.66666666666666,
|
||||
"y": 118
|
||||
},
|
||||
{
|
||||
"x": 116.5,
|
||||
"x": 158.66666666666666,
|
||||
"y": 158
|
||||
}
|
||||
],
|
||||
|
|
@ -339,19 +339,19 @@
|
|||
"labelPercentage": 0,
|
||||
"route": [
|
||||
{
|
||||
"x": 230,
|
||||
"x": 297,
|
||||
"y": 34
|
||||
},
|
||||
{
|
||||
"x": 180,
|
||||
"x": 247,
|
||||
"y": 34
|
||||
},
|
||||
{
|
||||
"x": 180,
|
||||
"x": 247,
|
||||
"y": 56
|
||||
},
|
||||
{
|
||||
"x": 230,
|
||||
"x": 297,
|
||||
"y": 56
|
||||
}
|
||||
],
|
||||
|
|
|
|||
|
Before Width: | Height: | Size: 473 KiB After Width: | Height: | Size: 473 KiB |
12
e2etests/testdata/stable/sequence_diagrams/elk/board.exp.json
generated
vendored
|
|
@ -7,10 +7,10 @@
|
|||
"id": "a_shape",
|
||||
"type": "oval",
|
||||
"pos": {
|
||||
"x": 462,
|
||||
"x": 459,
|
||||
"y": 12
|
||||
},
|
||||
"width": 108,
|
||||
"width": 120,
|
||||
"height": 108,
|
||||
"opacity": 1,
|
||||
"strokeDash": 0,
|
||||
|
|
@ -3697,11 +3697,11 @@
|
|||
"labelPercentage": 0,
|
||||
"route": [
|
||||
{
|
||||
"x": 516,
|
||||
"x": 519,
|
||||
"y": 120
|
||||
},
|
||||
{
|
||||
"x": 516,
|
||||
"x": 519,
|
||||
"y": 210
|
||||
},
|
||||
{
|
||||
|
|
@ -3825,11 +3825,11 @@
|
|||
"labelPercentage": 0,
|
||||
"route": [
|
||||
{
|
||||
"x": 543,
|
||||
"x": 549,
|
||||
"y": 113
|
||||
},
|
||||
{
|
||||
"x": 543,
|
||||
"x": 549,
|
||||
"y": 160
|
||||
},
|
||||
{
|
||||
|
|
|
|||
|
Before Width: | Height: | Size: 828 KiB After Width: | Height: | Size: 828 KiB |
8
e2etests/testdata/stable/text_font_sizes/elk/board.exp.json
generated
vendored
|
|
@ -7,10 +7,10 @@
|
|||
"id": "bear",
|
||||
"type": "text",
|
||||
"pos": {
|
||||
"x": 64,
|
||||
"x": 52,
|
||||
"y": 133
|
||||
},
|
||||
"width": 44,
|
||||
"width": 80,
|
||||
"height": 28,
|
||||
"opacity": 1,
|
||||
"strokeDash": 0,
|
||||
|
|
@ -200,11 +200,11 @@
|
|||
"y": 93
|
||||
},
|
||||
{
|
||||
"x": 94.16666666666666,
|
||||
"x": 106.16666666666666,
|
||||
"y": 93
|
||||
},
|
||||
{
|
||||
"x": 94.16666666666666,
|
||||
"x": 106.16666666666666,
|
||||
"y": 133
|
||||
}
|
||||
],
|
||||
|
|
|
|||
|
|
@ -776,7 +776,7 @@
|
|||
.md .contains-task-list:dir(rtl) .task-list-item-checkbox {
|
||||
margin: 0 -1.6em 0.25em 0.2em;
|
||||
}
|
||||
</style><g id="bear"><g class="shape" ></g><text x="86.000000" y="155.000000" class="text-bold fill-N1" style="text-anchor:middle;font-size:22px">bear</text></g><g id="mama bear"><g class="shape" ></g><text x="79.500000" y="45.000000" class="text-italic fill-N2" style="text-anchor:middle;font-size:28px">mama bear</text></g><g id="papa bear"><g class="shape" ></g><text x="234.000000" y="44.000000" class="text text-underline fill-N1" style="text-anchor:middle;font-size:32px">papa bear</text></g><g id="(mama bear -> bear)[0]"><marker id="mk-3488378134" markerWidth="10.000000" markerHeight="12.000000" refX="7.000000" refY="6.000000" viewBox="0.000000 0.000000 10.000000 12.000000" orient="auto" markerUnits="userSpaceOnUse"> <polygon points="0.000000,0.000000 10.000000,6.000000 0.000000,12.000000" class="connection fill-B1" stroke-width="2" /> </marker><path d="M 79.500000 55.000000 L 79.500000 129.000000" fill="none" class="connection stroke-B1" style="stroke-width:2;" marker-end="url(#mk-3488378134)" mask="url(#260478598)" /></g><g id="(papa bear -> bear)[0]"><path d="M 234.000000 55.000000 L 234.000000 83.000000 S 234.000000 93.000000 224.000000 93.000000 L 104.166667 93.000000 S 94.166667 93.000000 94.166667 103.000000 L 94.166667 129.000000" fill="none" class="connection stroke-B1" style="stroke-width:2;" marker-end="url(#mk-3488378134)" mask="url(#260478598)" /></g><mask id="260478598" maskUnits="userSpaceOnUse" x="11" y="11" width="291" height="151">
|
||||
</style><g id="bear"><g class="shape" ></g><text x="74.000000" y="155.000000" class="text-bold fill-N1" style="text-anchor:middle;font-size:22px">bear</text></g><g id="mama bear"><g class="shape" ></g><text x="79.500000" y="45.000000" class="text-italic fill-N2" style="text-anchor:middle;font-size:28px">mama bear</text></g><g id="papa bear"><g class="shape" ></g><text x="234.000000" y="44.000000" class="text text-underline fill-N1" style="text-anchor:middle;font-size:32px">papa bear</text></g><g id="(mama bear -> bear)[0]"><marker id="mk-3488378134" markerWidth="10.000000" markerHeight="12.000000" refX="7.000000" refY="6.000000" viewBox="0.000000 0.000000 10.000000 12.000000" orient="auto" markerUnits="userSpaceOnUse"> <polygon points="0.000000,0.000000 10.000000,6.000000 0.000000,12.000000" class="connection fill-B1" stroke-width="2" /> </marker><path d="M 79.500000 55.000000 L 79.500000 129.000000" fill="none" class="connection stroke-B1" style="stroke-width:2;" marker-end="url(#mk-3488378134)" mask="url(#1672137039)" /></g><g id="(papa bear -> bear)[0]"><path d="M 234.000000 55.000000 L 234.000000 83.000000 S 234.000000 93.000000 224.000000 93.000000 L 116.166667 93.000000 S 106.166667 93.000000 106.166667 103.000000 L 106.166667 129.000000" fill="none" class="connection stroke-B1" style="stroke-width:2;" marker-end="url(#mk-3488378134)" mask="url(#1672137039)" /></g><mask id="1672137039" maskUnits="userSpaceOnUse" x="11" y="11" width="291" height="151">
|
||||
<rect x="11" y="11" width="291" height="151" fill="white"></rect>
|
||||
|
||||
</mask></svg></svg>
|
||||
|
Before Width: | Height: | Size: 806 KiB After Width: | Height: | Size: 806 KiB |
1736
e2etests/testdata/stable/us_map/elk/board.exp.json
generated
vendored
|
Before Width: | Height: | Size: 371 KiB After Width: | Height: | Size: 372 KiB |
52
e2etests/testdata/todo/container_label_edge_adjustment/elk/board.exp.json
generated
vendored
|
|
@ -48,10 +48,10 @@
|
|||
"id": "b",
|
||||
"type": "cloud",
|
||||
"pos": {
|
||||
"x": 26,
|
||||
"x": 70,
|
||||
"y": 213
|
||||
},
|
||||
"width": 155,
|
||||
"width": 180,
|
||||
"height": 166,
|
||||
"opacity": 1,
|
||||
"strokeDash": 0,
|
||||
|
|
@ -89,10 +89,10 @@
|
|||
"id": "b.c",
|
||||
"type": "rectangle",
|
||||
"pos": {
|
||||
"x": 76,
|
||||
"x": 120,
|
||||
"y": 263
|
||||
},
|
||||
"width": 53,
|
||||
"width": 80,
|
||||
"height": 66,
|
||||
"opacity": 1,
|
||||
"strokeDash": 0,
|
||||
|
|
@ -130,7 +130,7 @@
|
|||
"id": "d",
|
||||
"type": "rectangle",
|
||||
"pos": {
|
||||
"x": 75,
|
||||
"x": 133,
|
||||
"y": 454
|
||||
},
|
||||
"width": 54,
|
||||
|
|
@ -324,14 +324,14 @@
|
|||
},
|
||||
{
|
||||
"x": 38.5,
|
||||
"y": 118
|
||||
"y": 168
|
||||
},
|
||||
{
|
||||
"x": 93.83333333333333,
|
||||
"y": 118
|
||||
"x": 146.83333333333331,
|
||||
"y": 168
|
||||
},
|
||||
{
|
||||
"x": 93.83333333333333,
|
||||
"x": 146.83333333333331,
|
||||
"y": 263
|
||||
}
|
||||
],
|
||||
|
|
@ -367,11 +367,11 @@
|
|||
"labelPercentage": 0,
|
||||
"route": [
|
||||
{
|
||||
"x": 102.66666666666666,
|
||||
"x": 160.16666666666666,
|
||||
"y": 329
|
||||
},
|
||||
{
|
||||
"x": 102.66666666666666,
|
||||
"x": 160.16666666666669,
|
||||
"y": 454
|
||||
}
|
||||
],
|
||||
|
|
@ -412,6 +412,14 @@
|
|||
},
|
||||
{
|
||||
"x": 111.5,
|
||||
"y": 118
|
||||
},
|
||||
{
|
||||
"x": 173.5,
|
||||
"y": 118
|
||||
},
|
||||
{
|
||||
"x": 173.5,
|
||||
"y": 263
|
||||
}
|
||||
],
|
||||
|
|
@ -451,16 +459,8 @@
|
|||
"y": 78
|
||||
},
|
||||
{
|
||||
"x": 183.5,
|
||||
"y": 118
|
||||
},
|
||||
{
|
||||
"x": 121.5,
|
||||
"y": 118
|
||||
},
|
||||
{
|
||||
"x": 122,
|
||||
"y": 213
|
||||
"x": 184,
|
||||
"y": 214
|
||||
}
|
||||
],
|
||||
"animated": false,
|
||||
|
|
@ -500,15 +500,15 @@
|
|||
},
|
||||
{
|
||||
"x": 256,
|
||||
"y": 168
|
||||
"y": 118
|
||||
},
|
||||
{
|
||||
"x": 131.5,
|
||||
"y": 168
|
||||
"x": 193.5,
|
||||
"y": 118
|
||||
},
|
||||
{
|
||||
"x": 131,
|
||||
"y": 218
|
||||
"x": 194,
|
||||
"y": 219
|
||||
}
|
||||
],
|
||||
"animated": false,
|
||||
|
|
|
|||
|
Before Width: | Height: | Size: 655 KiB After Width: | Height: | Size: 655 KiB |