Merge pull request #1028 from alixander/elk-tune-again
elk: favor balance over straight edges, margins
|
|
@ -7,6 +7,8 @@
|
||||||
#### Improvements 🧹
|
#### Improvements 🧹
|
||||||
|
|
||||||
- `dagre` layouts that have a connection where one endpoint is a container is much improved. [#1011](https://github.com/terrastruct/d2/pull/1011)
|
- `dagre` layouts that have a connection where one endpoint is a container is much improved. [#1011](https://github.com/terrastruct/d2/pull/1011)
|
||||||
|
- `elk` layouts favor balance over straight edges. [#1028](https://github.com/terrastruct/d2/pull/1028)
|
||||||
|
- `elk` layouts have nicer margins between node boundaries and edges. [#1028](https://github.com/terrastruct/d2/pull/1028)
|
||||||
- `sketch` draws connections with less roughness, which especially improves look of corner bends in ELK. [#1014](https://github.com/terrastruct/d2/pull/1014)
|
- `sketch` draws connections with less roughness, which especially improves look of corner bends in ELK. [#1014](https://github.com/terrastruct/d2/pull/1014)
|
||||||
- CSS in SVGs are diagram-specific, which means you can embed multiple D2 diagrams on a web page without fear of style conflicts. [#1016](https://github.com/terrastruct/d2/pull/1016)
|
- CSS in SVGs are diagram-specific, which means you can embed multiple D2 diagrams on a web page without fear of style conflicts. [#1016](https://github.com/terrastruct/d2/pull/1016)
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -8,6 +8,7 @@ import (
|
||||||
"context"
|
"context"
|
||||||
_ "embed"
|
_ "embed"
|
||||||
"encoding/json"
|
"encoding/json"
|
||||||
|
"errors"
|
||||||
"fmt"
|
"fmt"
|
||||||
"math"
|
"math"
|
||||||
"strings"
|
"strings"
|
||||||
|
|
@ -97,6 +98,8 @@ var DefaultOpts = ConfigurableOpts{
|
||||||
var port_spacing = 40.
|
var port_spacing = 40.
|
||||||
|
|
||||||
type elkOpts struct {
|
type elkOpts struct {
|
||||||
|
EdgeNode int `json:"elk.spacing.edgeNode,omitempty"`
|
||||||
|
FixedAlignment string `json:"elk.layered.nodePlacement.bk.fixedAlignment,omitempty"`
|
||||||
Thoroughness int `json:"elk.layered.thoroughness,omitempty"`
|
Thoroughness int `json:"elk.layered.thoroughness,omitempty"`
|
||||||
EdgeEdgeBetweenLayersSpacing int `json:"elk.layered.spacing.edgeEdgeBetweenLayers,omitempty"`
|
EdgeEdgeBetweenLayersSpacing int `json:"elk.layered.spacing.edgeEdgeBetweenLayers,omitempty"`
|
||||||
Direction string `json:"elk.direction"`
|
Direction string `json:"elk.direction"`
|
||||||
|
|
@ -140,7 +143,9 @@ func Layout(ctx context.Context, g *d2graph.Graph, opts *ConfigurableOpts) (err
|
||||||
LayoutOptions: &elkOpts{
|
LayoutOptions: &elkOpts{
|
||||||
Thoroughness: 8,
|
Thoroughness: 8,
|
||||||
EdgeEdgeBetweenLayersSpacing: 50,
|
EdgeEdgeBetweenLayersSpacing: 50,
|
||||||
|
EdgeNode: 40,
|
||||||
HierarchyHandling: "INCLUDE_CHILDREN",
|
HierarchyHandling: "INCLUDE_CHILDREN",
|
||||||
|
FixedAlignment: "BALANCED",
|
||||||
ConsiderModelOrder: "NODES_AND_EDGES",
|
ConsiderModelOrder: "NODES_AND_EDGES",
|
||||||
ConfigurableOpts: ConfigurableOpts{
|
ConfigurableOpts: ConfigurableOpts{
|
||||||
Algorithm: opts.Algorithm,
|
Algorithm: opts.Algorithm,
|
||||||
|
|
@ -218,6 +223,8 @@ func Layout(ctx context.Context, g *d2graph.Graph, opts *ConfigurableOpts) (err
|
||||||
Thoroughness: 8,
|
Thoroughness: 8,
|
||||||
EdgeEdgeBetweenLayersSpacing: 50,
|
EdgeEdgeBetweenLayersSpacing: 50,
|
||||||
HierarchyHandling: "INCLUDE_CHILDREN",
|
HierarchyHandling: "INCLUDE_CHILDREN",
|
||||||
|
FixedAlignment: "BALANCED",
|
||||||
|
EdgeNode: 40,
|
||||||
ConsiderModelOrder: "NODES_AND_EDGES",
|
ConsiderModelOrder: "NODES_AND_EDGES",
|
||||||
// Why is it (height, width)? I have no clue, but it works.
|
// Why is it (height, width)? I have no clue, but it works.
|
||||||
NodeSizeMinimum: fmt.Sprintf("(%d, %d)", int(math.Ceil(height)), int(math.Ceil(width))),
|
NodeSizeMinimum: fmt.Sprintf("(%d, %d)", int(math.Ceil(height)), int(math.Ceil(width))),
|
||||||
|
|
@ -252,6 +259,10 @@ func Layout(ctx context.Context, g *d2graph.Graph, opts *ConfigurableOpts) (err
|
||||||
paddingTop,
|
paddingTop,
|
||||||
)
|
)
|
||||||
}
|
}
|
||||||
|
} else {
|
||||||
|
n.LayoutOptions = &elkOpts{
|
||||||
|
// Margins: "[top=100,left=100,bottom=100,right=100]",
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
if obj.LabelWidth != nil && obj.LabelHeight != nil {
|
if obj.LabelWidth != nil && obj.LabelHeight != nil {
|
||||||
|
|
@ -303,7 +314,7 @@ func Layout(ctx context.Context, g *d2graph.Graph, opts *ConfigurableOpts) (err
|
||||||
|
|
||||||
val, err := vm.RunString(`elk.layout(graph)
|
val, err := vm.RunString(`elk.layout(graph)
|
||||||
.then(s => s)
|
.then(s => s)
|
||||||
.catch(s => s)
|
.catch(err => err.message)
|
||||||
`)
|
`)
|
||||||
|
|
||||||
if err != nil {
|
if err != nil {
|
||||||
|
|
@ -324,7 +335,21 @@ func Layout(ctx context.Context, g *d2graph.Graph, opts *ConfigurableOpts) (err
|
||||||
continue
|
continue
|
||||||
}
|
}
|
||||||
|
|
||||||
jsonOut := promise.Result().Export().(map[string]interface{})
|
if promise.State() == goja.PromiseStateRejected {
|
||||||
|
return errors.New("ELK: something went wrong")
|
||||||
|
}
|
||||||
|
|
||||||
|
result := promise.Result().Export()
|
||||||
|
|
||||||
|
var jsonOut map[string]interface{}
|
||||||
|
switch out := result.(type) {
|
||||||
|
case string:
|
||||||
|
return fmt.Errorf("ELK layout error: %s", out)
|
||||||
|
case map[string]interface{}:
|
||||||
|
jsonOut = out
|
||||||
|
default:
|
||||||
|
return fmt.Errorf("ELK unexpected return: %v", out)
|
||||||
|
}
|
||||||
|
|
||||||
jsonBytes, err := json.Marshal(jsonOut)
|
jsonBytes, err := json.Marshal(jsonOut)
|
||||||
if err != nil {
|
if err != nil {
|
||||||
|
|
|
||||||
|
Before Width: | Height: | Size: 234 KiB After Width: | Height: | Size: 235 KiB |
108
e2etests/testdata/regression/dagre-disconnect/elk/board.exp.json
generated
vendored
|
|
@ -10,7 +10,7 @@
|
||||||
"x": 184,
|
"x": 184,
|
||||||
"y": 373
|
"y": 373
|
||||||
},
|
},
|
||||||
"width": 421,
|
"width": 481,
|
||||||
"height": 527,
|
"height": 527,
|
||||||
"opacity": 1,
|
"opacity": 1,
|
||||||
"strokeDash": 0,
|
"strokeDash": 0,
|
||||||
|
|
@ -130,7 +130,7 @@
|
||||||
"id": "a.f",
|
"id": "a.f",
|
||||||
"type": "rectangle",
|
"type": "rectangle",
|
||||||
"pos": {
|
"pos": {
|
||||||
"x": 235,
|
"x": 257,
|
||||||
"y": 679
|
"y": 679
|
||||||
},
|
},
|
||||||
"width": 293,
|
"width": 293,
|
||||||
|
|
@ -171,7 +171,7 @@
|
||||||
"id": "a.f.i",
|
"id": "a.f.i",
|
||||||
"type": "rectangle",
|
"type": "rectangle",
|
||||||
"pos": {
|
"pos": {
|
||||||
"x": 285,
|
"x": 307,
|
||||||
"y": 729
|
"y": 729
|
||||||
},
|
},
|
||||||
"width": 49,
|
"width": 49,
|
||||||
|
|
@ -212,7 +212,7 @@
|
||||||
"id": "a.f.g",
|
"id": "a.f.g",
|
||||||
"type": "rectangle",
|
"type": "rectangle",
|
||||||
"pos": {
|
"pos": {
|
||||||
"x": 354,
|
"x": 376,
|
||||||
"y": 729
|
"y": 729
|
||||||
},
|
},
|
||||||
"width": 54,
|
"width": 54,
|
||||||
|
|
@ -253,7 +253,7 @@
|
||||||
"id": "s",
|
"id": "s",
|
||||||
"type": "rectangle",
|
"type": "rectangle",
|
||||||
"pos": {
|
"pos": {
|
||||||
"x": 277,
|
"x": 288,
|
||||||
"y": 1401
|
"y": 1401
|
||||||
},
|
},
|
||||||
"width": 424,
|
"width": 424,
|
||||||
|
|
@ -294,7 +294,7 @@
|
||||||
"id": "s.n",
|
"id": "s.n",
|
||||||
"type": "rectangle",
|
"type": "rectangle",
|
||||||
"pos": {
|
"pos": {
|
||||||
"x": 327,
|
"x": 338,
|
||||||
"y": 1453
|
"y": 1453
|
||||||
},
|
},
|
||||||
"width": 151,
|
"width": 151,
|
||||||
|
|
@ -417,7 +417,7 @@
|
||||||
"id": "u",
|
"id": "u",
|
||||||
"type": "rectangle",
|
"type": "rectangle",
|
||||||
"pos": {
|
"pos": {
|
||||||
"x": 254,
|
"x": 276,
|
||||||
"y": 1040
|
"y": 1040
|
||||||
},
|
},
|
||||||
"width": 397,
|
"width": 397,
|
||||||
|
|
@ -458,7 +458,7 @@
|
||||||
"id": "u.o",
|
"id": "u.o",
|
||||||
"type": "rectangle",
|
"type": "rectangle",
|
||||||
"pos": {
|
"pos": {
|
||||||
"x": 304,
|
"x": 326,
|
||||||
"y": 1095
|
"y": 1095
|
||||||
},
|
},
|
||||||
"width": 54,
|
"width": 54,
|
||||||
|
|
@ -499,7 +499,7 @@
|
||||||
"id": "h",
|
"id": "h",
|
||||||
"type": "rectangle",
|
"type": "rectangle",
|
||||||
"pos": {
|
"pos": {
|
||||||
"x": 269,
|
"x": 299,
|
||||||
"y": 12
|
"y": 12
|
||||||
},
|
},
|
||||||
"width": 252,
|
"width": 252,
|
||||||
|
|
@ -540,7 +540,7 @@
|
||||||
"id": "h.m",
|
"id": "h.m",
|
||||||
"type": "rectangle",
|
"type": "rectangle",
|
||||||
"pos": {
|
"pos": {
|
||||||
"x": 319,
|
"x": 349,
|
||||||
"y": 62
|
"y": 62
|
||||||
},
|
},
|
||||||
"width": 152,
|
"width": 152,
|
||||||
|
|
@ -581,7 +581,7 @@
|
||||||
"id": "h.m.s",
|
"id": "h.m.s",
|
||||||
"type": "rectangle",
|
"type": "rectangle",
|
||||||
"pos": {
|
"pos": {
|
||||||
"x": 369,
|
"x": 399,
|
||||||
"y": 112
|
"y": 112
|
||||||
},
|
},
|
||||||
"width": 52,
|
"width": 52,
|
||||||
|
|
@ -622,7 +622,7 @@
|
||||||
"id": "a.f.j",
|
"id": "a.f.j",
|
||||||
"type": "rectangle",
|
"type": "rectangle",
|
||||||
"pos": {
|
"pos": {
|
||||||
"x": 428,
|
"x": 450,
|
||||||
"y": 729
|
"y": 729
|
||||||
},
|
},
|
||||||
"width": 50,
|
"width": 50,
|
||||||
|
|
@ -663,7 +663,7 @@
|
||||||
"id": "u.s",
|
"id": "u.s",
|
||||||
"type": "rectangle",
|
"type": "rectangle",
|
||||||
"pos": {
|
"pos": {
|
||||||
"x": 378,
|
"x": 400,
|
||||||
"y": 1095
|
"y": 1095
|
||||||
},
|
},
|
||||||
"width": 150,
|
"width": 150,
|
||||||
|
|
@ -704,7 +704,7 @@
|
||||||
"id": "u.s.j",
|
"id": "u.s.j",
|
||||||
"type": "rectangle",
|
"type": "rectangle",
|
||||||
"pos": {
|
"pos": {
|
||||||
"x": 428,
|
"x": 450,
|
||||||
"y": 1145
|
"y": 1145
|
||||||
},
|
},
|
||||||
"width": 50,
|
"width": 50,
|
||||||
|
|
@ -745,7 +745,7 @@
|
||||||
"id": "u.c",
|
"id": "u.c",
|
||||||
"type": "rectangle",
|
"type": "rectangle",
|
||||||
"pos": {
|
"pos": {
|
||||||
"x": 548,
|
"x": 570,
|
||||||
"y": 1195
|
"y": 1195
|
||||||
},
|
},
|
||||||
"width": 53,
|
"width": 53,
|
||||||
|
|
@ -786,7 +786,7 @@
|
||||||
"id": "s.z",
|
"id": "s.z",
|
||||||
"type": "rectangle",
|
"type": "rectangle",
|
||||||
"pos": {
|
"pos": {
|
||||||
"x": 498,
|
"x": 509,
|
||||||
"y": 1456
|
"y": 1456
|
||||||
},
|
},
|
||||||
"width": 153,
|
"width": 153,
|
||||||
|
|
@ -827,7 +827,7 @@
|
||||||
"id": "s.z.c",
|
"id": "s.z.c",
|
||||||
"type": "rectangle",
|
"type": "rectangle",
|
||||||
"pos": {
|
"pos": {
|
||||||
"x": 548,
|
"x": 559,
|
||||||
"y": 1506
|
"y": 1506
|
||||||
},
|
},
|
||||||
"width": 53,
|
"width": 53,
|
||||||
|
|
@ -868,7 +868,7 @@
|
||||||
"id": "s.n.f",
|
"id": "s.n.f",
|
||||||
"type": "rectangle",
|
"type": "rectangle",
|
||||||
"pos": {
|
"pos": {
|
||||||
"x": 377,
|
"x": 388,
|
||||||
"y": 1503
|
"y": 1503
|
||||||
},
|
},
|
||||||
"width": 51,
|
"width": 51,
|
||||||
|
|
@ -909,7 +909,7 @@
|
||||||
"id": "y",
|
"id": "y",
|
||||||
"type": "rectangle",
|
"type": "rectangle",
|
||||||
"pos": {
|
"pos": {
|
||||||
"x": 327,
|
"x": 338,
|
||||||
"y": 1752
|
"y": 1752
|
||||||
},
|
},
|
||||||
"width": 151,
|
"width": 151,
|
||||||
|
|
@ -950,7 +950,7 @@
|
||||||
"id": "y.r",
|
"id": "y.r",
|
||||||
"type": "rectangle",
|
"type": "rectangle",
|
||||||
"pos": {
|
"pos": {
|
||||||
"x": 377,
|
"x": 388,
|
||||||
"y": 1802
|
"y": 1802
|
||||||
},
|
},
|
||||||
"width": 51,
|
"width": 51,
|
||||||
|
|
@ -991,7 +991,7 @@
|
||||||
"id": "a.g",
|
"id": "a.g",
|
||||||
"type": "rectangle",
|
"type": "rectangle",
|
||||||
"pos": {
|
"pos": {
|
||||||
"x": 406,
|
"x": 466,
|
||||||
"y": 428
|
"y": 428
|
||||||
},
|
},
|
||||||
"width": 149,
|
"width": 149,
|
||||||
|
|
@ -1032,7 +1032,7 @@
|
||||||
"id": "a.g.i",
|
"id": "a.g.i",
|
||||||
"type": "rectangle",
|
"type": "rectangle",
|
||||||
"pos": {
|
"pos": {
|
||||||
"x": 456,
|
"x": 516,
|
||||||
"y": 478
|
"y": 478
|
||||||
},
|
},
|
||||||
"width": 49,
|
"width": 49,
|
||||||
|
|
@ -1103,6 +1103,14 @@
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"x": 309.5,
|
"x": 309.5,
|
||||||
|
"y": 634
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"x": 331.5,
|
||||||
|
"y": 634
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"x": 331.5,
|
||||||
"y": 729
|
"y": 729
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
|
|
@ -1138,27 +1146,27 @@
|
||||||
"labelPercentage": 0,
|
"labelPercentage": 0,
|
||||||
"route": [
|
"route": [
|
||||||
{
|
{
|
||||||
"x": 381,
|
"x": 403,
|
||||||
"y": 795
|
"y": 795
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"x": 381,
|
"x": 403,
|
||||||
"y": 945
|
"y": 945
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"x": 243,
|
"x": 235,
|
||||||
"y": 945
|
"y": 945
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"x": 243,
|
"x": 235,
|
||||||
"y": 1356
|
"y": 1356
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"x": 402.5,
|
"x": 413.75,
|
||||||
"y": 1356
|
"y": 1356
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"x": 402.5,
|
"x": 413.75,
|
||||||
"y": 1453.5
|
"y": 1453.5
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
|
|
@ -1202,11 +1210,11 @@
|
||||||
"y": 995
|
"y": 995
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"x": 331,
|
"x": 353,
|
||||||
"y": 995
|
"y": 995
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"x": 331,
|
"x": 353,
|
||||||
"y": 1095
|
"y": 1095
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
|
|
@ -1242,19 +1250,19 @@
|
||||||
"labelPercentage": 0,
|
"labelPercentage": 0,
|
||||||
"route": [
|
"route": [
|
||||||
{
|
{
|
||||||
"x": 395,
|
"x": 425,
|
||||||
"y": 178
|
"y": 178
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"x": 395,
|
"x": 425,
|
||||||
"y": 634
|
"y": 634
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"x": 381,
|
"x": 403,
|
||||||
"y": 634
|
"y": 634
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"x": 381,
|
"x": 403,
|
||||||
"y": 729
|
"y": 729
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
|
|
@ -1290,11 +1298,11 @@
|
||||||
"labelPercentage": 0,
|
"labelPercentage": 0,
|
||||||
"route": [
|
"route": [
|
||||||
{
|
{
|
||||||
"x": 453,
|
"x": 475,
|
||||||
"y": 795
|
"y": 795
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"x": 453,
|
"x": 475,
|
||||||
"y": 1145
|
"y": 1145
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
|
|
@ -1330,11 +1338,19 @@
|
||||||
"labelPercentage": 0,
|
"labelPercentage": 0,
|
||||||
"route": [
|
"route": [
|
||||||
{
|
{
|
||||||
"x": 574.5,
|
"x": 596.5,
|
||||||
"y": 1261
|
"y": 1261
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"x": 574.5,
|
"x": 596.5,
|
||||||
|
"y": 1356
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"x": 585.75,
|
||||||
|
"y": 1356
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"x": 585.75,
|
||||||
"y": 1506
|
"y": 1506
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
|
|
@ -1370,11 +1386,11 @@
|
||||||
"labelPercentage": 0,
|
"labelPercentage": 0,
|
||||||
"route": [
|
"route": [
|
||||||
{
|
{
|
||||||
"x": 402.5,
|
"x": 413.75,
|
||||||
"y": 1619.5
|
"y": 1619.5
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"x": 402.5,
|
"x": 413.75,
|
||||||
"y": 1802
|
"y": 1802
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
|
|
@ -1410,27 +1426,27 @@
|
||||||
"labelPercentage": 0,
|
"labelPercentage": 0,
|
||||||
"route": [
|
"route": [
|
||||||
{
|
{
|
||||||
"x": 402.5,
|
"x": 413.75,
|
||||||
"y": 1868
|
"y": 1868
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"x": 402.5,
|
"x": 413.75,
|
||||||
"y": 1963
|
"y": 1963
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"x": 711,
|
"x": 814.25,
|
||||||
"y": 1963
|
"y": 1963
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"x": 711,
|
"x": 814.25,
|
||||||
"y": 328
|
"y": 328
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"x": 480.5,
|
"x": 540.5,
|
||||||
"y": 328
|
"y": 328
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"x": 480.5,
|
"x": 540.5,
|
||||||
"y": 478
|
"y": 478
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
|
|
|
||||||
|
Before Width: | Height: | Size: 806 KiB After Width: | Height: | Size: 806 KiB |
18
e2etests/testdata/regression/elk_order/elk/board.exp.json
generated
vendored
|
|
@ -414,7 +414,7 @@
|
||||||
"id": "m5_desc",
|
"id": "m5_desc",
|
||||||
"type": "text",
|
"type": "text",
|
||||||
"pos": {
|
"pos": {
|
||||||
"x": 425,
|
"x": 456,
|
||||||
"y": 36
|
"y": 36
|
||||||
},
|
},
|
||||||
"width": 90,
|
"width": 90,
|
||||||
|
|
@ -454,7 +454,7 @@
|
||||||
"id": "m6_desc",
|
"id": "m6_desc",
|
||||||
"type": "text",
|
"type": "text",
|
||||||
"pos": {
|
"pos": {
|
||||||
"x": 535,
|
"x": 566,
|
||||||
"y": 12
|
"y": 12
|
||||||
},
|
},
|
||||||
"width": 140,
|
"width": 140,
|
||||||
|
|
@ -599,11 +599,11 @@
|
||||||
"labelPercentage": 0,
|
"labelPercentage": 0,
|
||||||
"route": [
|
"route": [
|
||||||
{
|
{
|
||||||
"x": 470.5,
|
"x": 501.75,
|
||||||
"y": 60
|
"y": 60
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"x": 470.5,
|
"x": 501.75,
|
||||||
"y": 100
|
"y": 100
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
|
|
@ -647,9 +647,17 @@
|
||||||
"labelPercentage": 0,
|
"labelPercentage": 0,
|
||||||
"route": [
|
"route": [
|
||||||
{
|
{
|
||||||
"x": 605.5,
|
"x": 636.75,
|
||||||
"y": 60
|
"y": 60
|
||||||
},
|
},
|
||||||
|
{
|
||||||
|
"x": 636.75,
|
||||||
|
"y": 100
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"x": 605.5,
|
||||||
|
"y": 100
|
||||||
|
},
|
||||||
{
|
{
|
||||||
"x": 605.5,
|
"x": 605.5,
|
||||||
"y": 195
|
"y": 195
|
||||||
|
|
|
||||||
|
Before Width: | Height: | Size: 668 KiB After Width: | Height: | Size: 668 KiB |
68
e2etests/testdata/regression/overlapping-edge-label/elk/board.exp.json
generated
vendored
|
|
@ -294,8 +294,8 @@
|
||||||
"id": "osvc",
|
"id": "osvc",
|
||||||
"type": "rectangle",
|
"type": "rectangle",
|
||||||
"pos": {
|
"pos": {
|
||||||
"x": 301,
|
"x": 373,
|
||||||
"y": 399
|
"y": 409
|
||||||
},
|
},
|
||||||
"width": 272,
|
"width": 272,
|
||||||
"height": 166,
|
"height": 166,
|
||||||
|
|
@ -335,8 +335,8 @@
|
||||||
"id": "osvc.vm1",
|
"id": "osvc.vm1",
|
||||||
"type": "rectangle",
|
"type": "rectangle",
|
||||||
"pos": {
|
"pos": {
|
||||||
"x": 351,
|
"x": 423,
|
||||||
"y": 449
|
"y": 459
|
||||||
},
|
},
|
||||||
"width": 76,
|
"width": 76,
|
||||||
"height": 66,
|
"height": 66,
|
||||||
|
|
@ -376,8 +376,8 @@
|
||||||
"id": "osvc.vm2",
|
"id": "osvc.vm2",
|
||||||
"type": "rectangle",
|
"type": "rectangle",
|
||||||
"pos": {
|
"pos": {
|
||||||
"x": 447,
|
"x": 519,
|
||||||
"y": 449
|
"y": 459
|
||||||
},
|
},
|
||||||
"width": 76,
|
"width": 76,
|
||||||
"height": 66,
|
"height": 66,
|
||||||
|
|
@ -447,15 +447,23 @@
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"x": 211,
|
"x": 211,
|
||||||
"y": 309
|
"y": 218
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"x": 355.59999999999997,
|
"x": 274,
|
||||||
"y": 309
|
"y": 218
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"x": 355.59999999999997,
|
"x": 274,
|
||||||
"y": 399
|
"y": 369
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"x": 427.9,
|
||||||
|
"y": 369
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"x": 427.9,
|
||||||
|
"y": 409
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
"animated": false,
|
"animated": false,
|
||||||
|
|
@ -495,7 +503,15 @@
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"x": 410,
|
"x": 410,
|
||||||
"y": 399
|
"y": 319
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"x": 482.3,
|
||||||
|
"y": 319
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"x": 482.3,
|
||||||
|
"y": 409
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
"animated": false,
|
"animated": false,
|
||||||
|
|
@ -535,15 +551,15 @@
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"x": 609,
|
"x": 609,
|
||||||
"y": 309
|
"y": 319
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"x": 464.4,
|
"x": 536.7,
|
||||||
"y": 309
|
"y": 319
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"x": 464.4,
|
"x": 536.7,
|
||||||
"y": 399
|
"y": 409
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
"animated": false,
|
"animated": false,
|
||||||
|
|
@ -583,15 +599,23 @@
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"x": 808,
|
"x": 808,
|
||||||
"y": 359
|
"y": 218
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"x": 518.8,
|
"x": 735.7,
|
||||||
"y": 359
|
"y": 218
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"x": 518.8,
|
"x": 735.7,
|
||||||
"y": 399
|
"y": 369
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"x": 591.1,
|
||||||
|
"y": 369
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"x": 591.1,
|
||||||
|
"y": 409
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
"animated": false,
|
"animated": false,
|
||||||
|
|
|
||||||
|
Before Width: | Height: | Size: 800 KiB After Width: | Height: | Size: 801 KiB |
152
e2etests/testdata/regression/straight_hierarchy_container_direction_right/elk/board.exp.json
generated
vendored
|
|
@ -8,7 +8,7 @@
|
||||||
"type": "rectangle",
|
"type": "rectangle",
|
||||||
"pos": {
|
"pos": {
|
||||||
"x": 12,
|
"x": 12,
|
||||||
"y": 148
|
"y": 267
|
||||||
},
|
},
|
||||||
"width": 53,
|
"width": 53,
|
||||||
"height": 66,
|
"height": 66,
|
||||||
|
|
@ -49,7 +49,7 @@
|
||||||
"type": "rectangle",
|
"type": "rectangle",
|
||||||
"pos": {
|
"pos": {
|
||||||
"x": 12,
|
"x": 12,
|
||||||
"y": 234
|
"y": 353
|
||||||
},
|
},
|
||||||
"width": 53,
|
"width": 53,
|
||||||
"height": 66,
|
"height": 66,
|
||||||
|
|
@ -90,7 +90,7 @@
|
||||||
"type": "rectangle",
|
"type": "rectangle",
|
||||||
"pos": {
|
"pos": {
|
||||||
"x": 12,
|
"x": 12,
|
||||||
"y": 62
|
"y": 181
|
||||||
},
|
},
|
||||||
"width": 53,
|
"width": 53,
|
||||||
"height": 66,
|
"height": 66,
|
||||||
|
|
@ -131,9 +131,9 @@
|
||||||
"type": "rectangle",
|
"type": "rectangle",
|
||||||
"pos": {
|
"pos": {
|
||||||
"x": 140,
|
"x": 140,
|
||||||
"y": 12
|
"y": 131
|
||||||
},
|
},
|
||||||
"width": 233,
|
"width": 283,
|
||||||
"height": 338,
|
"height": 338,
|
||||||
"opacity": 1,
|
"opacity": 1,
|
||||||
"strokeDash": 0,
|
"strokeDash": 0,
|
||||||
|
|
@ -172,7 +172,7 @@
|
||||||
"type": "rectangle",
|
"type": "rectangle",
|
||||||
"pos": {
|
"pos": {
|
||||||
"x": 190,
|
"x": 190,
|
||||||
"y": 62
|
"y": 181
|
||||||
},
|
},
|
||||||
"width": 53,
|
"width": 53,
|
||||||
"height": 66,
|
"height": 66,
|
||||||
|
|
@ -213,7 +213,7 @@
|
||||||
"type": "rectangle",
|
"type": "rectangle",
|
||||||
"pos": {
|
"pos": {
|
||||||
"x": 190,
|
"x": 190,
|
||||||
"y": 148
|
"y": 267
|
||||||
},
|
},
|
||||||
"width": 53,
|
"width": 53,
|
||||||
"height": 66,
|
"height": 66,
|
||||||
|
|
@ -254,7 +254,7 @@
|
||||||
"type": "rectangle",
|
"type": "rectangle",
|
||||||
"pos": {
|
"pos": {
|
||||||
"x": 190,
|
"x": 190,
|
||||||
"y": 234
|
"y": 353
|
||||||
},
|
},
|
||||||
"width": 53,
|
"width": 53,
|
||||||
"height": 66,
|
"height": 66,
|
||||||
|
|
@ -295,7 +295,7 @@
|
||||||
"type": "rectangle",
|
"type": "rectangle",
|
||||||
"pos": {
|
"pos": {
|
||||||
"x": 513,
|
"x": 513,
|
||||||
"y": 98
|
"y": 12
|
||||||
},
|
},
|
||||||
"width": 153,
|
"width": 153,
|
||||||
"height": 166,
|
"height": 166,
|
||||||
|
|
@ -336,7 +336,7 @@
|
||||||
"type": "rectangle",
|
"type": "rectangle",
|
||||||
"pos": {
|
"pos": {
|
||||||
"x": 563,
|
"x": 563,
|
||||||
"y": 148
|
"y": 62
|
||||||
},
|
},
|
||||||
"width": 53,
|
"width": 53,
|
||||||
"height": 66,
|
"height": 66,
|
||||||
|
|
@ -377,7 +377,7 @@
|
||||||
"type": "rectangle",
|
"type": "rectangle",
|
||||||
"pos": {
|
"pos": {
|
||||||
"x": 513,
|
"x": 513,
|
||||||
"y": 470
|
"y": 434
|
||||||
},
|
},
|
||||||
"width": 153,
|
"width": 153,
|
||||||
"height": 166,
|
"height": 166,
|
||||||
|
|
@ -418,7 +418,7 @@
|
||||||
"type": "rectangle",
|
"type": "rectangle",
|
||||||
"pos": {
|
"pos": {
|
||||||
"x": 563,
|
"x": 563,
|
||||||
"y": 520
|
"y": 484
|
||||||
},
|
},
|
||||||
"width": 53,
|
"width": 53,
|
||||||
"height": 66,
|
"height": 66,
|
||||||
|
|
@ -459,7 +459,7 @@
|
||||||
"type": "rectangle",
|
"type": "rectangle",
|
||||||
"pos": {
|
"pos": {
|
||||||
"x": 513,
|
"x": 513,
|
||||||
"y": 284
|
"y": 198
|
||||||
},
|
},
|
||||||
"width": 153,
|
"width": 153,
|
||||||
"height": 166,
|
"height": 166,
|
||||||
|
|
@ -500,7 +500,7 @@
|
||||||
"type": "rectangle",
|
"type": "rectangle",
|
||||||
"pos": {
|
"pos": {
|
||||||
"x": 563,
|
"x": 563,
|
||||||
"y": 334
|
"y": 248
|
||||||
},
|
},
|
||||||
"width": 53,
|
"width": 53,
|
||||||
"height": 66,
|
"height": 66,
|
||||||
|
|
@ -541,7 +541,7 @@
|
||||||
"type": "rectangle",
|
"type": "rectangle",
|
||||||
"pos": {
|
"pos": {
|
||||||
"x": 756,
|
"x": 756,
|
||||||
"y": 98
|
"y": 62
|
||||||
},
|
},
|
||||||
"width": 153,
|
"width": 153,
|
||||||
"height": 252,
|
"height": 252,
|
||||||
|
|
@ -582,7 +582,7 @@
|
||||||
"type": "rectangle",
|
"type": "rectangle",
|
||||||
"pos": {
|
"pos": {
|
||||||
"x": 806,
|
"x": 806,
|
||||||
"y": 148
|
"y": 112
|
||||||
},
|
},
|
||||||
"width": 53,
|
"width": 53,
|
||||||
"height": 66,
|
"height": 66,
|
||||||
|
|
@ -623,7 +623,7 @@
|
||||||
"type": "rectangle",
|
"type": "rectangle",
|
||||||
"pos": {
|
"pos": {
|
||||||
"x": 806,
|
"x": 806,
|
||||||
"y": 234
|
"y": 198
|
||||||
},
|
},
|
||||||
"width": 53,
|
"width": 53,
|
||||||
"height": 66,
|
"height": 66,
|
||||||
|
|
@ -664,7 +664,7 @@
|
||||||
"type": "rectangle",
|
"type": "rectangle",
|
||||||
"pos": {
|
"pos": {
|
||||||
"x": 756,
|
"x": 756,
|
||||||
"y": 470
|
"y": 434
|
||||||
},
|
},
|
||||||
"width": 153,
|
"width": 153,
|
||||||
"height": 166,
|
"height": 166,
|
||||||
|
|
@ -705,7 +705,7 @@
|
||||||
"type": "rectangle",
|
"type": "rectangle",
|
||||||
"pos": {
|
"pos": {
|
||||||
"x": 806,
|
"x": 806,
|
||||||
"y": 520
|
"y": 484
|
||||||
},
|
},
|
||||||
"width": 53,
|
"width": 53,
|
||||||
"height": 66,
|
"height": 66,
|
||||||
|
|
@ -746,7 +746,7 @@
|
||||||
"type": "rectangle",
|
"type": "rectangle",
|
||||||
"pos": {
|
"pos": {
|
||||||
"x": 999,
|
"x": 999,
|
||||||
"y": 48
|
"y": 12
|
||||||
},
|
},
|
||||||
"width": 258,
|
"width": 258,
|
||||||
"height": 638,
|
"height": 638,
|
||||||
|
|
@ -787,7 +787,7 @@
|
||||||
"type": "rectangle",
|
"type": "rectangle",
|
||||||
"pos": {
|
"pos": {
|
||||||
"x": 1054,
|
"x": 1054,
|
||||||
"y": 98
|
"y": 62
|
||||||
},
|
},
|
||||||
"width": 153,
|
"width": 153,
|
||||||
"height": 166,
|
"height": 166,
|
||||||
|
|
@ -828,7 +828,7 @@
|
||||||
"type": "rectangle",
|
"type": "rectangle",
|
||||||
"pos": {
|
"pos": {
|
||||||
"x": 1104,
|
"x": 1104,
|
||||||
"y": 148
|
"y": 112
|
||||||
},
|
},
|
||||||
"width": 53,
|
"width": 53,
|
||||||
"height": 66,
|
"height": 66,
|
||||||
|
|
@ -869,7 +869,7 @@
|
||||||
"type": "rectangle",
|
"type": "rectangle",
|
||||||
"pos": {
|
"pos": {
|
||||||
"x": 1054,
|
"x": 1054,
|
||||||
"y": 284
|
"y": 248
|
||||||
},
|
},
|
||||||
"width": 153,
|
"width": 153,
|
||||||
"height": 166,
|
"height": 166,
|
||||||
|
|
@ -910,7 +910,7 @@
|
||||||
"type": "rectangle",
|
"type": "rectangle",
|
||||||
"pos": {
|
"pos": {
|
||||||
"x": 1104,
|
"x": 1104,
|
||||||
"y": 334
|
"y": 298
|
||||||
},
|
},
|
||||||
"width": 53,
|
"width": 53,
|
||||||
"height": 66,
|
"height": 66,
|
||||||
|
|
@ -951,7 +951,7 @@
|
||||||
"type": "rectangle",
|
"type": "rectangle",
|
||||||
"pos": {
|
"pos": {
|
||||||
"x": 1054,
|
"x": 1054,
|
||||||
"y": 470
|
"y": 434
|
||||||
},
|
},
|
||||||
"width": 153,
|
"width": 153,
|
||||||
"height": 166,
|
"height": 166,
|
||||||
|
|
@ -992,7 +992,7 @@
|
||||||
"type": "rectangle",
|
"type": "rectangle",
|
||||||
"pos": {
|
"pos": {
|
||||||
"x": 1104,
|
"x": 1104,
|
||||||
"y": 520
|
"y": 484
|
||||||
},
|
},
|
||||||
"width": 53,
|
"width": 53,
|
||||||
"height": 66,
|
"height": 66,
|
||||||
|
|
@ -1058,11 +1058,11 @@
|
||||||
"route": [
|
"route": [
|
||||||
{
|
{
|
||||||
"x": 65,
|
"x": 65,
|
||||||
"y": 95
|
"y": 214
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"x": 190,
|
"x": 190,
|
||||||
"y": 95
|
"y": 214
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
"animated": false,
|
"animated": false,
|
||||||
|
|
@ -1098,11 +1098,11 @@
|
||||||
"route": [
|
"route": [
|
||||||
{
|
{
|
||||||
"x": 65,
|
"x": 65,
|
||||||
"y": 181
|
"y": 300
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"x": 190,
|
"x": 190,
|
||||||
"y": 181
|
"y": 300
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
"animated": false,
|
"animated": false,
|
||||||
|
|
@ -1138,11 +1138,11 @@
|
||||||
"route": [
|
"route": [
|
||||||
{
|
{
|
||||||
"x": 65,
|
"x": 65,
|
||||||
"y": 267
|
"y": 386
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"x": 190,
|
"x": 190,
|
||||||
"y": 267
|
"y": 386
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
"animated": false,
|
"animated": false,
|
||||||
|
|
@ -1178,11 +1178,27 @@
|
||||||
"route": [
|
"route": [
|
||||||
{
|
{
|
||||||
"x": 243,
|
"x": 243,
|
||||||
"y": 181
|
"y": 300
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"x": 283,
|
||||||
|
"y": 300
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"x": 283,
|
||||||
|
"y": 252
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"x": 468,
|
||||||
|
"y": 252
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"x": 468,
|
||||||
|
"y": 95
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"x": 563,
|
"x": 563,
|
||||||
"y": 181
|
"y": 95
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
"animated": false,
|
"animated": false,
|
||||||
|
|
@ -1218,19 +1234,19 @@
|
||||||
"route": [
|
"route": [
|
||||||
{
|
{
|
||||||
"x": 243,
|
"x": 243,
|
||||||
"y": 267
|
"y": 386
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"x": 418,
|
"x": 468,
|
||||||
"y": 267
|
"y": 386
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"x": 418,
|
"x": 468,
|
||||||
"y": 553
|
"y": 517
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"x": 563,
|
"x": 563,
|
||||||
"y": 553
|
"y": 517
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
"animated": false,
|
"animated": false,
|
||||||
|
|
@ -1266,27 +1282,27 @@
|
||||||
"route": [
|
"route": [
|
||||||
{
|
{
|
||||||
"x": 243,
|
"x": 243,
|
||||||
"y": 95
|
"y": 214
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"x": 283,
|
"x": 333,
|
||||||
"y": 95
|
"y": 214
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"x": 283,
|
"x": 333,
|
||||||
"y": 191
|
"y": 262
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"x": 468,
|
"x": 468,
|
||||||
"y": 191
|
"y": 262
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"x": 468,
|
"x": 468,
|
||||||
"y": 367
|
"y": 281
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"x": 563,
|
"x": 563,
|
||||||
"y": 367
|
"y": 281
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
"animated": false,
|
"animated": false,
|
||||||
|
|
@ -1322,11 +1338,19 @@
|
||||||
"route": [
|
"route": [
|
||||||
{
|
{
|
||||||
"x": 616,
|
"x": 616,
|
||||||
"y": 181
|
"y": 95
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"x": 711,
|
||||||
|
"y": 95
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"x": 711,
|
||||||
|
"y": 145
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"x": 806,
|
"x": 806,
|
||||||
"y": 181
|
"y": 145
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
"animated": false,
|
"animated": false,
|
||||||
|
|
@ -1362,19 +1386,19 @@
|
||||||
"route": [
|
"route": [
|
||||||
{
|
{
|
||||||
"x": 616,
|
"x": 616,
|
||||||
"y": 367
|
"y": 281
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"x": 711,
|
"x": 711,
|
||||||
"y": 367
|
"y": 281
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"x": 711,
|
"x": 711,
|
||||||
"y": 267
|
"y": 231
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"x": 806,
|
"x": 806,
|
||||||
"y": 267
|
"y": 231
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
"animated": false,
|
"animated": false,
|
||||||
|
|
@ -1410,11 +1434,11 @@
|
||||||
"route": [
|
"route": [
|
||||||
{
|
{
|
||||||
"x": 616,
|
"x": 616,
|
||||||
"y": 553
|
"y": 517
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"x": 806,
|
"x": 806,
|
||||||
"y": 553
|
"y": 517
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
"animated": false,
|
"animated": false,
|
||||||
|
|
@ -1450,11 +1474,11 @@
|
||||||
"route": [
|
"route": [
|
||||||
{
|
{
|
||||||
"x": 859,
|
"x": 859,
|
||||||
"y": 181
|
"y": 145
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"x": 1104,
|
"x": 1104,
|
||||||
"y": 181
|
"y": 145
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
"animated": false,
|
"animated": false,
|
||||||
|
|
@ -1490,19 +1514,19 @@
|
||||||
"route": [
|
"route": [
|
||||||
{
|
{
|
||||||
"x": 859,
|
"x": 859,
|
||||||
"y": 267
|
"y": 231
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"x": 954,
|
"x": 954,
|
||||||
"y": 267
|
"y": 231
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"x": 954,
|
"x": 954,
|
||||||
"y": 367
|
"y": 331
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"x": 1104,
|
"x": 1104,
|
||||||
"y": 367
|
"y": 331
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
"animated": false,
|
"animated": false,
|
||||||
|
|
@ -1538,11 +1562,11 @@
|
||||||
"route": [
|
"route": [
|
||||||
{
|
{
|
||||||
"x": 859,
|
"x": 859,
|
||||||
"y": 553
|
"y": 517
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"x": 1104,
|
"x": 1104,
|
||||||
"y": 553
|
"y": 517
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
"animated": false,
|
"animated": false,
|
||||||
|
|
|
||||||
|
Before Width: | Height: | Size: 663 KiB After Width: | Height: | Size: 663 KiB |
144
e2etests/testdata/regression/unconnected/elk/board.exp.json
generated
vendored
|
|
@ -8,7 +8,7 @@
|
||||||
"type": "rectangle",
|
"type": "rectangle",
|
||||||
"pos": {
|
"pos": {
|
||||||
"x": 103,
|
"x": 103,
|
||||||
"y": 75
|
"y": 115
|
||||||
},
|
},
|
||||||
"width": 135,
|
"width": 135,
|
||||||
"height": 120,
|
"height": 120,
|
||||||
|
|
@ -49,7 +49,7 @@
|
||||||
"type": "rectangle",
|
"type": "rectangle",
|
||||||
"pos": {
|
"pos": {
|
||||||
"x": 390,
|
"x": 390,
|
||||||
"y": 72
|
"y": 74
|
||||||
},
|
},
|
||||||
"width": 159,
|
"width": 159,
|
||||||
"height": 66,
|
"height": 66,
|
||||||
|
|
@ -90,7 +90,7 @@
|
||||||
"type": "rectangle",
|
"type": "rectangle",
|
||||||
"pos": {
|
"pos": {
|
||||||
"x": 368,
|
"x": 368,
|
||||||
"y": 158
|
"y": 170
|
||||||
},
|
},
|
||||||
"width": 204,
|
"width": 204,
|
||||||
"height": 66,
|
"height": 66,
|
||||||
|
|
@ -133,8 +133,8 @@
|
||||||
"x": 652,
|
"x": 652,
|
||||||
"y": 12
|
"y": 12
|
||||||
},
|
},
|
||||||
"width": 890,
|
"width": 940,
|
||||||
"height": 358,
|
"height": 383,
|
||||||
"opacity": 1,
|
"opacity": 1,
|
||||||
"strokeDash": 0,
|
"strokeDash": 0,
|
||||||
"strokeWidth": 2,
|
"strokeWidth": 2,
|
||||||
|
|
@ -172,7 +172,7 @@
|
||||||
"type": "rectangle",
|
"type": "rectangle",
|
||||||
"pos": {
|
"pos": {
|
||||||
"x": 746,
|
"x": 746,
|
||||||
"y": 72
|
"y": 97
|
||||||
},
|
},
|
||||||
"width": 94,
|
"width": 94,
|
||||||
"height": 120,
|
"height": 120,
|
||||||
|
|
@ -213,7 +213,7 @@
|
||||||
"type": "rectangle",
|
"type": "rectangle",
|
||||||
"pos": {
|
"pos": {
|
||||||
"x": 970,
|
"x": 970,
|
||||||
"y": 62
|
"y": 61
|
||||||
},
|
},
|
||||||
"width": 120,
|
"width": 120,
|
||||||
"height": 80,
|
"height": 80,
|
||||||
|
|
@ -254,7 +254,7 @@
|
||||||
"type": "rectangle",
|
"type": "rectangle",
|
||||||
"pos": {
|
"pos": {
|
||||||
"x": 1170,
|
"x": 1170,
|
||||||
"y": 99
|
"y": 129
|
||||||
},
|
},
|
||||||
"width": 120,
|
"width": 120,
|
||||||
"height": 80,
|
"height": 80,
|
||||||
|
|
@ -294,8 +294,8 @@
|
||||||
"id": "Gos Warehouse.Regional-N",
|
"id": "Gos Warehouse.Regional-N",
|
||||||
"type": "rectangle",
|
"type": "rectangle",
|
||||||
"pos": {
|
"pos": {
|
||||||
"x": 1370,
|
"x": 1420,
|
||||||
"y": 99
|
"y": 124
|
||||||
},
|
},
|
||||||
"width": 122,
|
"width": 122,
|
||||||
"height": 80,
|
"height": 80,
|
||||||
|
|
@ -336,7 +336,7 @@
|
||||||
"type": "text",
|
"type": "text",
|
||||||
"pos": {
|
"pos": {
|
||||||
"x": 702,
|
"x": 702,
|
||||||
"y": 212
|
"y": 237
|
||||||
},
|
},
|
||||||
"width": 138,
|
"width": 138,
|
||||||
"height": 108,
|
"height": 108,
|
||||||
|
|
@ -376,7 +376,7 @@
|
||||||
"type": "rectangle",
|
"type": "rectangle",
|
||||||
"pos": {
|
"pos": {
|
||||||
"x": 12,
|
"x": 12,
|
||||||
"y": 215
|
"y": 255
|
||||||
},
|
},
|
||||||
"width": 226,
|
"width": 226,
|
||||||
"height": 252,
|
"height": 252,
|
||||||
|
|
@ -417,7 +417,7 @@
|
||||||
"type": "rectangle",
|
"type": "rectangle",
|
||||||
"pos": {
|
"pos": {
|
||||||
"x": 62,
|
"x": 62,
|
||||||
"y": 265
|
"y": 305
|
||||||
},
|
},
|
||||||
"width": 126,
|
"width": 126,
|
||||||
"height": 66,
|
"height": 66,
|
||||||
|
|
@ -458,7 +458,7 @@
|
||||||
"type": "rectangle",
|
"type": "rectangle",
|
||||||
"pos": {
|
"pos": {
|
||||||
"x": 73,
|
"x": 73,
|
||||||
"y": 351
|
"y": 391
|
||||||
},
|
},
|
||||||
"width": 103,
|
"width": 103,
|
||||||
"height": 66,
|
"height": 66,
|
||||||
|
|
@ -498,7 +498,7 @@
|
||||||
"id": "title",
|
"id": "title",
|
||||||
"type": "text",
|
"type": "text",
|
||||||
"pos": {
|
"pos": {
|
||||||
"x": 457,
|
"x": 482,
|
||||||
"y": -59
|
"y": -59
|
||||||
},
|
},
|
||||||
"width": 639,
|
"width": 639,
|
||||||
|
|
@ -565,11 +565,19 @@
|
||||||
"route": [
|
"route": [
|
||||||
{
|
{
|
||||||
"x": 238,
|
"x": 238,
|
||||||
"y": 105
|
"y": 145.75
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"x": 278,
|
||||||
|
"y": 145.75
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"x": 278,
|
||||||
|
"y": 107.875
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"x": 390.5,
|
"x": 390.5,
|
||||||
"y": 105
|
"y": 107.875
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
"animated": false,
|
"animated": false,
|
||||||
|
|
@ -605,19 +613,19 @@
|
||||||
"route": [
|
"route": [
|
||||||
{
|
{
|
||||||
"x": 238,
|
"x": 238,
|
||||||
"y": 135
|
"y": 175.75
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"x": 328,
|
"x": 328,
|
||||||
"y": 135
|
"y": 175.75
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"x": 328,
|
"x": 328,
|
||||||
"y": 191
|
"y": 203.75
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"x": 368,
|
"x": 368,
|
||||||
"y": 191
|
"y": 203.75
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
"animated": false,
|
"animated": false,
|
||||||
|
|
@ -653,27 +661,27 @@
|
||||||
"route": [
|
"route": [
|
||||||
{
|
{
|
||||||
"x": 238,
|
"x": 238,
|
||||||
"y": 165
|
"y": 205.75
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"x": 278,
|
"x": 278,
|
||||||
"y": 165
|
"y": 205.75
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"x": 278,
|
"x": 278,
|
||||||
"y": 234
|
"y": 288.1875
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"x": 612,
|
"x": 612,
|
||||||
"y": 234
|
"y": 288.1875
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"x": 612,
|
"x": 612,
|
||||||
"y": 280.5
|
"y": 299.625
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"x": 652,
|
"x": 652,
|
||||||
"y": 280.5
|
"y": 299.625
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
"animated": false,
|
"animated": false,
|
||||||
|
|
@ -709,6 +717,14 @@
|
||||||
"route": [
|
"route": [
|
||||||
{
|
{
|
||||||
"x": 840,
|
"x": 840,
|
||||||
|
"y": 127.5
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"x": 880,
|
||||||
|
"y": 127.5
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"x": 880,
|
||||||
"y": 102
|
"y": 102
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
|
|
@ -749,19 +765,19 @@
|
||||||
"route": [
|
"route": [
|
||||||
{
|
{
|
||||||
"x": 840,
|
"x": 840,
|
||||||
"y": 132
|
"y": 157.5
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"x": 930,
|
"x": 930,
|
||||||
"y": 132
|
"y": 157.5
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"x": 930,
|
"x": 930,
|
||||||
"y": 153
|
"y": 183
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"x": 1170,
|
"x": 1170,
|
||||||
"y": 153
|
"y": 183
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
"animated": false,
|
"animated": false,
|
||||||
|
|
@ -797,27 +813,27 @@
|
||||||
"route": [
|
"route": [
|
||||||
{
|
{
|
||||||
"x": 840,
|
"x": 840,
|
||||||
"y": 162
|
"y": 187.5
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"x": 880,
|
"x": 880,
|
||||||
"y": 162
|
"y": 187.5
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"x": 880,
|
"x": 880,
|
||||||
"y": 189.66666666666669
|
"y": 249.66666666666669
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"x": 1330,
|
"x": 1380,
|
||||||
"y": 189.66666666666669
|
"y": 249.66666666666669
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"x": 1330,
|
"x": 1380,
|
||||||
"y": 159.66666666666669
|
"y": 184.66666666666669
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"x": 1370,
|
"x": 1420,
|
||||||
"y": 159.66666666666669
|
"y": 184.66666666666669
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
"animated": false,
|
"animated": false,
|
||||||
|
|
@ -853,19 +869,19 @@
|
||||||
"route": [
|
"route": [
|
||||||
{
|
{
|
||||||
"x": 1090,
|
"x": 1090,
|
||||||
"y": 115.33333333333334
|
"y": 115.33333333333333
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"x": 1130,
|
"x": 1130,
|
||||||
"y": 115.33333333333334
|
"y": 115.33333333333333
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"x": 1130,
|
"x": 1130,
|
||||||
"y": 126.33333333333334
|
"y": 156.33333333333334
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"x": 1170,
|
"x": 1170,
|
||||||
"y": 126.33333333333334
|
"y": 156.33333333333334
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
"animated": false,
|
"animated": false,
|
||||||
|
|
@ -901,11 +917,19 @@
|
||||||
"route": [
|
"route": [
|
||||||
{
|
{
|
||||||
"x": 1290,
|
"x": 1290,
|
||||||
"y": 139.66666666666669
|
"y": 169.66666666666669
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"x": 1370,
|
"x": 1330,
|
||||||
"y": 139.66666666666669
|
"y": 169.66666666666669
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"x": 1330,
|
||||||
|
"y": 164.66666666666669
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"x": 1420,
|
||||||
|
"y": 164.66666666666669
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
"animated": false,
|
"animated": false,
|
||||||
|
|
@ -940,20 +964,20 @@
|
||||||
"labelPercentage": 0,
|
"labelPercentage": 0,
|
||||||
"route": [
|
"route": [
|
||||||
{
|
{
|
||||||
"x": 1370,
|
"x": 1420,
|
||||||
"y": 119.66666666666667
|
"y": 144.66666666666669
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"x": 1330,
|
"x": 1330,
|
||||||
"y": 119.66666666666667
|
"y": 144.66666666666669
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"x": 1330,
|
"x": 1330,
|
||||||
"y": 88.66666666666667
|
"y": 88.66666666666666
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"x": 1090,
|
"x": 1090,
|
||||||
"y": 88.66666666666667
|
"y": 88.66666666666666
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
"animated": false,
|
"animated": false,
|
||||||
|
|
@ -989,19 +1013,11 @@
|
||||||
"route": [
|
"route": [
|
||||||
{
|
{
|
||||||
"x": 549.5,
|
"x": 549.5,
|
||||||
"y": 105
|
"y": 107.875
|
||||||
},
|
|
||||||
{
|
|
||||||
"x": 612,
|
|
||||||
"y": 105
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"x": 612,
|
|
||||||
"y": 101.5
|
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"x": 652,
|
"x": 652,
|
||||||
"y": 101.5
|
"y": 107.875
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
"animated": false,
|
"animated": false,
|
||||||
|
|
@ -1037,11 +1053,11 @@
|
||||||
"route": [
|
"route": [
|
||||||
{
|
{
|
||||||
"x": 572,
|
"x": 572,
|
||||||
"y": 191
|
"y": 203.75
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"x": 652,
|
"x": 652,
|
||||||
"y": 191
|
"y": 203.75
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
"animated": false,
|
"animated": false,
|
||||||
|
|
|
||||||
|
Before Width: | Height: | Size: 671 KiB After Width: | Height: | Size: 671 KiB |
16
e2etests/testdata/sanity/1_to_2/elk/board.exp.json
generated
vendored
|
|
@ -7,7 +7,7 @@
|
||||||
"id": "a",
|
"id": "a",
|
||||||
"type": "rectangle",
|
"type": "rectangle",
|
||||||
"pos": {
|
"pos": {
|
||||||
"x": 58,
|
"x": 35,
|
||||||
"y": 12
|
"y": 12
|
||||||
},
|
},
|
||||||
"width": 80,
|
"width": 80,
|
||||||
|
|
@ -155,11 +155,11 @@
|
||||||
"labelPercentage": 0,
|
"labelPercentage": 0,
|
||||||
"route": [
|
"route": [
|
||||||
{
|
{
|
||||||
"x": 84.83333333333333,
|
"x": 61.666666666666664,
|
||||||
"y": 78
|
"y": 78
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"x": 84.83333333333333,
|
"x": 61.666666666666664,
|
||||||
"y": 118
|
"y": 118
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
|
|
@ -203,9 +203,17 @@
|
||||||
"labelPercentage": 0,
|
"labelPercentage": 0,
|
||||||
"route": [
|
"route": [
|
||||||
{
|
{
|
||||||
"x": 111.5,
|
"x": 88.33333333333333,
|
||||||
"y": 78
|
"y": 78
|
||||||
},
|
},
|
||||||
|
{
|
||||||
|
"x": 88.33333333333333,
|
||||||
|
"y": 118
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"x": 111.5,
|
||||||
|
"y": 118
|
||||||
|
},
|
||||||
{
|
{
|
||||||
"x": 111.5,
|
"x": 111.5,
|
||||||
"y": 158
|
"y": 158
|
||||||
|
|
|
||||||
152
e2etests/testdata/sanity/1_to_2/elk/sketch.exp.svg
vendored
|
Before Width: | Height: | Size: 330 KiB After Width: | Height: | Size: 330 KiB |
22
e2etests/testdata/stable/animated/elk/board.exp.json
generated
vendored
|
|
@ -7,7 +7,7 @@
|
||||||
"id": "your love life will be",
|
"id": "your love life will be",
|
||||||
"type": "rectangle",
|
"type": "rectangle",
|
||||||
"pos": {
|
"pos": {
|
||||||
"x": 61,
|
"x": 21,
|
||||||
"y": 12
|
"y": 12
|
||||||
},
|
},
|
||||||
"width": 187,
|
"width": 187,
|
||||||
|
|
@ -253,7 +253,7 @@
|
||||||
"id": "Monday",
|
"id": "Monday",
|
||||||
"type": "rectangle",
|
"type": "rectangle",
|
||||||
"pos": {
|
"pos": {
|
||||||
"x": 422,
|
"x": 421,
|
||||||
"y": 158
|
"y": 158
|
||||||
},
|
},
|
||||||
"width": 101,
|
"width": 101,
|
||||||
|
|
@ -565,11 +565,11 @@
|
||||||
"labelPercentage": 0,
|
"labelPercentage": 0,
|
||||||
"route": [
|
"route": [
|
||||||
{
|
{
|
||||||
"x": 123.66666666666674,
|
"x": 83.83333333333337,
|
||||||
"y": 78
|
"y": 78
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"x": 123.66666666666674,
|
"x": 83.83333333333337,
|
||||||
"y": 118
|
"y": 118
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
|
|
@ -613,9 +613,17 @@
|
||||||
"labelPercentage": 0,
|
"labelPercentage": 0,
|
||||||
"route": [
|
"route": [
|
||||||
{
|
{
|
||||||
"x": 186,
|
"x": 146.16666666666663,
|
||||||
"y": 78
|
"y": 78
|
||||||
},
|
},
|
||||||
|
{
|
||||||
|
"x": 146.16666666666663,
|
||||||
|
"y": 118
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"x": 186,
|
||||||
|
"y": 118
|
||||||
|
},
|
||||||
{
|
{
|
||||||
"x": 186,
|
"x": 186,
|
||||||
"y": 158
|
"y": 158
|
||||||
|
|
@ -693,11 +701,11 @@
|
||||||
"labelPercentage": 0,
|
"labelPercentage": 0,
|
||||||
"route": [
|
"route": [
|
||||||
{
|
{
|
||||||
"x": 472.5,
|
"x": 472.49999999999994,
|
||||||
"y": 78
|
"y": 78
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"x": 472.5,
|
"x": 472.49999999999994,
|
||||||
"y": 158
|
"y": 158
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
|
|
|
||||||
158
e2etests/testdata/stable/animated/elk/sketch.exp.svg
vendored
|
Before Width: | Height: | Size: 480 KiB After Width: | Height: | Size: 480 KiB |
96
e2etests/testdata/stable/arrowhead_adjustment/elk/board.exp.json
generated
vendored
|
|
@ -7,7 +7,7 @@
|
||||||
"id": "a",
|
"id": "a",
|
||||||
"type": "rectangle",
|
"type": "rectangle",
|
||||||
"pos": {
|
"pos": {
|
||||||
"x": 73,
|
"x": 63,
|
||||||
"y": 12
|
"y": 12
|
||||||
},
|
},
|
||||||
"width": 80,
|
"width": 80,
|
||||||
|
|
@ -48,8 +48,8 @@
|
||||||
"id": "b",
|
"id": "b",
|
||||||
"type": "rectangle",
|
"type": "rectangle",
|
||||||
"pos": {
|
"pos": {
|
||||||
"x": 66,
|
"x": 55,
|
||||||
"y": 544
|
"y": 494
|
||||||
},
|
},
|
||||||
"width": 80,
|
"width": 80,
|
||||||
"height": 66,
|
"height": 66,
|
||||||
|
|
@ -89,8 +89,8 @@
|
||||||
"id": "c",
|
"id": "c",
|
||||||
"type": "document",
|
"type": "document",
|
||||||
"pos": {
|
"pos": {
|
||||||
"x": 79,
|
"x": 108,
|
||||||
"y": 388
|
"y": 338
|
||||||
},
|
},
|
||||||
"width": 80,
|
"width": 80,
|
||||||
"height": 76,
|
"height": 76,
|
||||||
|
|
@ -130,8 +130,8 @@
|
||||||
"id": "Oval",
|
"id": "Oval",
|
||||||
"type": "oval",
|
"type": "oval",
|
||||||
"pos": {
|
"pos": {
|
||||||
"x": 23,
|
"x": 53,
|
||||||
"y": 208
|
"y": 158
|
||||||
},
|
},
|
||||||
"width": 100,
|
"width": 100,
|
||||||
"height": 100,
|
"height": 100,
|
||||||
|
|
@ -195,11 +195,11 @@
|
||||||
"labelPercentage": 0,
|
"labelPercentage": 0,
|
||||||
"route": [
|
"route": [
|
||||||
{
|
{
|
||||||
"x": 93,
|
"x": 83,
|
||||||
"y": 78
|
"y": 78
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"x": 93,
|
"x": 83,
|
||||||
"y": 118
|
"y": 118
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
|
|
@ -208,15 +208,15 @@
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"x": 12,
|
"x": 12,
|
||||||
"y": 504
|
"y": 454
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"x": 93,
|
"x": 82.5,
|
||||||
"y": 504
|
"y": 454
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"x": 93,
|
"x": 82.5,
|
||||||
"y": 544
|
"y": 494
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
"animated": false,
|
"animated": false,
|
||||||
|
|
@ -251,12 +251,20 @@
|
||||||
"labelPercentage": 0,
|
"labelPercentage": 0,
|
||||||
"route": [
|
"route": [
|
||||||
{
|
{
|
||||||
"x": 120,
|
"x": 148,
|
||||||
"y": 453
|
"y": 403
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"x": 119.66666666666666,
|
"x": 148,
|
||||||
"y": 544
|
"y": 454
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"x": 109.16666666666667,
|
||||||
|
"y": 454
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"x": 109.16666666666667,
|
||||||
|
"y": 494
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
"animated": false,
|
"animated": false,
|
||||||
|
|
@ -291,20 +299,12 @@
|
||||||
"labelPercentage": 0,
|
"labelPercentage": 0,
|
||||||
"route": [
|
"route": [
|
||||||
{
|
{
|
||||||
"x": 113,
|
"x": 103,
|
||||||
"y": 78
|
"y": 78
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"x": 113,
|
"x": 103,
|
||||||
"y": 168
|
"y": 158
|
||||||
},
|
|
||||||
{
|
|
||||||
"x": 73,
|
|
||||||
"y": 168
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"x": 73,
|
|
||||||
"y": 208
|
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
"animated": false,
|
"animated": false,
|
||||||
|
|
@ -339,11 +339,27 @@
|
||||||
"labelPercentage": 0,
|
"labelPercentage": 0,
|
||||||
"route": [
|
"route": [
|
||||||
{
|
{
|
||||||
"x": 133,
|
"x": 161,
|
||||||
"y": 388
|
"y": 338
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"x": 133,
|
"x": 161.33333333333334,
|
||||||
|
"y": 298
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"x": 193,
|
||||||
|
"y": 298
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"x": 193,
|
||||||
|
"y": 118
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"x": 123,
|
||||||
|
"y": 118
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"x": 123,
|
||||||
"y": 78
|
"y": 78
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
|
|
@ -379,20 +395,20 @@
|
||||||
"labelPercentage": 0,
|
"labelPercentage": 0,
|
||||||
"route": [
|
"route": [
|
||||||
{
|
{
|
||||||
"x": 73,
|
"x": 103,
|
||||||
"y": 308
|
"y": 258
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"x": 73,
|
"x": 103,
|
||||||
"y": 348
|
"y": 298
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"x": 106.33333333333333,
|
"x": 134.66666666666669,
|
||||||
"y": 348
|
"y": 298
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"x": 106,
|
"x": 135,
|
||||||
"y": 388
|
"y": 338
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
"animated": false,
|
"animated": false,
|
||||||
|
|
|
||||||
|
Before Width: | Height: | Size: 477 KiB After Width: | Height: | Size: 477 KiB |
134
e2etests/testdata/stable/binary_tree/elk/board.exp.json
generated
vendored
|
|
@ -7,7 +7,7 @@
|
||||||
"id": "a",
|
"id": "a",
|
||||||
"type": "rectangle",
|
"type": "rectangle",
|
||||||
"pos": {
|
"pos": {
|
||||||
"x": 463,
|
"x": 250,
|
||||||
"y": 12
|
"y": 12
|
||||||
},
|
},
|
||||||
"width": 80,
|
"width": 80,
|
||||||
|
|
@ -48,7 +48,7 @@
|
||||||
"id": "b",
|
"id": "b",
|
||||||
"type": "rectangle",
|
"type": "rectangle",
|
||||||
"pos": {
|
"pos": {
|
||||||
"x": 183,
|
"x": 104,
|
||||||
"y": 158
|
"y": 158
|
||||||
},
|
},
|
||||||
"width": 80,
|
"width": 80,
|
||||||
|
|
@ -89,7 +89,7 @@
|
||||||
"id": "c",
|
"id": "c",
|
||||||
"type": "rectangle",
|
"type": "rectangle",
|
||||||
"pos": {
|
"pos": {
|
||||||
"x": 476,
|
"x": 392,
|
||||||
"y": 158
|
"y": 158
|
||||||
},
|
},
|
||||||
"width": 80,
|
"width": 80,
|
||||||
|
|
@ -130,7 +130,7 @@
|
||||||
"id": "d",
|
"id": "d",
|
||||||
"type": "rectangle",
|
"type": "rectangle",
|
||||||
"pos": {
|
"pos": {
|
||||||
"x": 56,
|
"x": 34,
|
||||||
"y": 304
|
"y": 304
|
||||||
},
|
},
|
||||||
"width": 80,
|
"width": 80,
|
||||||
|
|
@ -171,7 +171,7 @@
|
||||||
"id": "e",
|
"id": "e",
|
||||||
"type": "rectangle",
|
"type": "rectangle",
|
||||||
"pos": {
|
"pos": {
|
||||||
"x": 197,
|
"x": 174,
|
||||||
"y": 304
|
"y": 304
|
||||||
},
|
},
|
||||||
"width": 80,
|
"width": 80,
|
||||||
|
|
@ -212,7 +212,7 @@
|
||||||
"id": "f",
|
"id": "f",
|
||||||
"type": "rectangle",
|
"type": "rectangle",
|
||||||
"pos": {
|
"pos": {
|
||||||
"x": 341,
|
"x": 317,
|
||||||
"y": 304
|
"y": 304
|
||||||
},
|
},
|
||||||
"width": 80,
|
"width": 80,
|
||||||
|
|
@ -253,7 +253,7 @@
|
||||||
"id": "g",
|
"id": "g",
|
||||||
"type": "rectangle",
|
"type": "rectangle",
|
||||||
"pos": {
|
"pos": {
|
||||||
"x": 489,
|
"x": 466,
|
||||||
"y": 304
|
"y": 304
|
||||||
},
|
},
|
||||||
"width": 80,
|
"width": 80,
|
||||||
|
|
@ -417,7 +417,7 @@
|
||||||
"id": "k",
|
"id": "k",
|
||||||
"type": "rectangle",
|
"type": "rectangle",
|
||||||
"pos": {
|
"pos": {
|
||||||
"x": 224,
|
"x": 223,
|
||||||
"y": 450
|
"y": 450
|
||||||
},
|
},
|
||||||
"width": 53,
|
"width": 53,
|
||||||
|
|
@ -647,19 +647,19 @@
|
||||||
"labelPercentage": 0,
|
"labelPercentage": 0,
|
||||||
"route": [
|
"route": [
|
||||||
{
|
{
|
||||||
"x": 489.6666666666667,
|
"x": 277.41666666666663,
|
||||||
"y": 78
|
"y": 78
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"x": 489.6666666666667,
|
"x": 277.41666666666663,
|
||||||
"y": 118
|
"y": 118
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"x": 223.83333333333331,
|
"x": 144.49999999999994,
|
||||||
"y": 118
|
"y": 118
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"x": 223.83333333333331,
|
"x": 144.49999999999994,
|
||||||
"y": 158
|
"y": 158
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
|
|
@ -695,11 +695,19 @@
|
||||||
"labelPercentage": 0,
|
"labelPercentage": 0,
|
||||||
"route": [
|
"route": [
|
||||||
{
|
{
|
||||||
"x": 516.3333333333334,
|
"x": 304.0833333333333,
|
||||||
"y": 78
|
"y": 78
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"x": 516.3333333333334,
|
"x": 304.0833333333333,
|
||||||
|
"y": 118
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"x": 432.24999999999994,
|
||||||
|
"y": 118
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"x": 432.24999999999994,
|
||||||
"y": 158
|
"y": 158
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
|
|
@ -735,19 +743,19 @@
|
||||||
"labelPercentage": 0,
|
"labelPercentage": 0,
|
||||||
"route": [
|
"route": [
|
||||||
{
|
{
|
||||||
"x": 210.49999999999997,
|
"x": 131.16666666666663,
|
||||||
"y": 224
|
"y": 224
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"x": 210.49999999999997,
|
"x": 131.16666666666663,
|
||||||
"y": 264
|
"y": 264
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"x": 96.16666666666669,
|
"x": 74,
|
||||||
"y": 264
|
"y": 264
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"x": 96.16666666666669,
|
"x": 74,
|
||||||
"y": 304
|
"y": 304
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
|
|
@ -783,11 +791,19 @@
|
||||||
"labelPercentage": 0,
|
"labelPercentage": 0,
|
||||||
"route": [
|
"route": [
|
||||||
{
|
{
|
||||||
"x": 237.16666666666666,
|
"x": 157.83333333333326,
|
||||||
"y": 224
|
"y": 224
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"x": 237.16666666666663,
|
"x": 157.83333333333326,
|
||||||
|
"y": 264
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"x": 214.74999999999994,
|
||||||
|
"y": 264
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"x": 214.74999999999994,
|
||||||
"y": 304
|
"y": 304
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
|
|
@ -823,19 +839,19 @@
|
||||||
"labelPercentage": 0,
|
"labelPercentage": 0,
|
||||||
"route": [
|
"route": [
|
||||||
{
|
{
|
||||||
"x": 503,
|
"x": 418.91666666666663,
|
||||||
"y": 224
|
"y": 224
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"x": 503,
|
"x": 418.91666666666663,
|
||||||
"y": 264
|
"y": 264
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"x": 381.16666666666663,
|
"x": 357.99999999999994,
|
||||||
"y": 264
|
"y": 264
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"x": 381.16666666666663,
|
"x": 357.99999999999994,
|
||||||
"y": 304
|
"y": 304
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
|
|
@ -871,11 +887,19 @@
|
||||||
"labelPercentage": 0,
|
"labelPercentage": 0,
|
||||||
"route": [
|
"route": [
|
||||||
{
|
{
|
||||||
"x": 529.6666666666666,
|
"x": 445.5833333333333,
|
||||||
"y": 224
|
"y": 224
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"x": 529.6666666666666,
|
"x": 445.5833333333333,
|
||||||
|
"y": 264
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"x": 506.24999999999994,
|
||||||
|
"y": 264
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"x": 506.24999999999994,
|
||||||
"y": 304
|
"y": 304
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
|
|
@ -911,11 +935,11 @@
|
||||||
"labelPercentage": 0,
|
"labelPercentage": 0,
|
||||||
"route": [
|
"route": [
|
||||||
{
|
{
|
||||||
"x": 82.83333333333337,
|
"x": 60.666666666666686,
|
||||||
"y": 370
|
"y": 370
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"x": 82.83333333333337,
|
"x": 60.666666666666686,
|
||||||
"y": 410
|
"y": 410
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
|
|
@ -959,9 +983,17 @@
|
||||||
"labelPercentage": 0,
|
"labelPercentage": 0,
|
||||||
"route": [
|
"route": [
|
||||||
{
|
{
|
||||||
"x": 109.5,
|
"x": 87.33333333333331,
|
||||||
"y": 370
|
"y": 370
|
||||||
},
|
},
|
||||||
|
{
|
||||||
|
"x": 87.33333333333331,
|
||||||
|
"y": 410
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"x": 109.5,
|
||||||
|
"y": 410
|
||||||
|
},
|
||||||
{
|
{
|
||||||
"x": 109.5,
|
"x": 109.5,
|
||||||
"y": 450
|
"y": 450
|
||||||
|
|
@ -999,11 +1031,11 @@
|
||||||
"labelPercentage": 0,
|
"labelPercentage": 0,
|
||||||
"route": [
|
"route": [
|
||||||
{
|
{
|
||||||
"x": 223.8333333333333,
|
"x": 201.41666666666663,
|
||||||
"y": 370
|
"y": 370
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"x": 223.8333333333333,
|
"x": 201.41666666666663,
|
||||||
"y": 410
|
"y": 410
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
|
|
@ -1047,11 +1079,19 @@
|
||||||
"labelPercentage": 0,
|
"labelPercentage": 0,
|
||||||
"route": [
|
"route": [
|
||||||
{
|
{
|
||||||
"x": 250.49999999999997,
|
"x": 228.0833333333333,
|
||||||
"y": 370
|
"y": 370
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"x": 250.5,
|
"x": 228.0833333333333,
|
||||||
|
"y": 410
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"x": 250.49999999999997,
|
||||||
|
"y": 410
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"x": 250.49999999999997,
|
||||||
"y": 450
|
"y": 450
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
|
|
@ -1087,11 +1127,11 @@
|
||||||
"labelPercentage": 0,
|
"labelPercentage": 0,
|
||||||
"route": [
|
"route": [
|
||||||
{
|
{
|
||||||
"x": 367.8333333333333,
|
"x": 344.66666666666663,
|
||||||
"y": 370
|
"y": 370
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"x": 367.8333333333333,
|
"x": 344.66666666666663,
|
||||||
"y": 410
|
"y": 410
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
|
|
@ -1135,9 +1175,17 @@
|
||||||
"labelPercentage": 0,
|
"labelPercentage": 0,
|
||||||
"route": [
|
"route": [
|
||||||
{
|
{
|
||||||
"x": 394.5,
|
"x": 371.33333333333326,
|
||||||
"y": 370
|
"y": 370
|
||||||
},
|
},
|
||||||
|
{
|
||||||
|
"x": 371.33333333333326,
|
||||||
|
"y": 410
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"x": 394.5,
|
||||||
|
"y": 410
|
||||||
|
},
|
||||||
{
|
{
|
||||||
"x": 394.5,
|
"x": 394.5,
|
||||||
"y": 450
|
"y": 450
|
||||||
|
|
@ -1175,11 +1223,11 @@
|
||||||
"labelPercentage": 0,
|
"labelPercentage": 0,
|
||||||
"route": [
|
"route": [
|
||||||
{
|
{
|
||||||
"x": 516.3333333333334,
|
"x": 492.91666666666663,
|
||||||
"y": 370
|
"y": 370
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"x": 516.3333333333334,
|
"x": 492.91666666666663,
|
||||||
"y": 410
|
"y": 410
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
|
|
@ -1223,9 +1271,17 @@
|
||||||
"labelPercentage": 0,
|
"labelPercentage": 0,
|
||||||
"route": [
|
"route": [
|
||||||
{
|
{
|
||||||
"x": 543,
|
"x": 519.5833333333333,
|
||||||
"y": 370
|
"y": 370
|
||||||
},
|
},
|
||||||
|
{
|
||||||
|
"x": 519.5833333333333,
|
||||||
|
"y": 410
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"x": 543,
|
||||||
|
"y": 410
|
||||||
|
},
|
||||||
{
|
{
|
||||||
"x": 543,
|
"x": 543,
|
||||||
"y": 450
|
"y": 450
|
||||||
|
|
|
||||||
|
Before Width: | Height: | Size: 337 KiB After Width: | Height: | Size: 338 KiB |
180
e2etests/testdata/stable/chaos2/elk/board.exp.json
generated
vendored
|
|
@ -10,7 +10,7 @@
|
||||||
"x": 12,
|
"x": 12,
|
||||||
"y": 12
|
"y": 12
|
||||||
},
|
},
|
||||||
"width": 694,
|
"width": 701,
|
||||||
"height": 1812,
|
"height": 1812,
|
||||||
"opacity": 1,
|
"opacity": 1,
|
||||||
"strokeDash": 0,
|
"strokeDash": 0,
|
||||||
|
|
@ -51,7 +51,7 @@
|
||||||
"x": 62,
|
"x": 62,
|
||||||
"y": 612
|
"y": 612
|
||||||
},
|
},
|
||||||
"width": 548,
|
"width": 525,
|
||||||
"height": 1067,
|
"height": 1067,
|
||||||
"opacity": 1,
|
"opacity": 1,
|
||||||
"strokeDash": 0,
|
"strokeDash": 0,
|
||||||
|
|
@ -89,10 +89,10 @@
|
||||||
"id": "aa.bb.cc",
|
"id": "aa.bb.cc",
|
||||||
"type": "rectangle",
|
"type": "rectangle",
|
||||||
"pos": {
|
"pos": {
|
||||||
"x": 256,
|
"x": 203,
|
||||||
"y": 939
|
"y": 939
|
||||||
},
|
},
|
||||||
"width": 304,
|
"width": 334,
|
||||||
"height": 690,
|
"height": 690,
|
||||||
"opacity": 1,
|
"opacity": 1,
|
||||||
"strokeDash": 0,
|
"strokeDash": 0,
|
||||||
|
|
@ -130,7 +130,7 @@
|
||||||
"id": "aa.bb.cc.dd",
|
"id": "aa.bb.cc.dd",
|
||||||
"type": "rectangle",
|
"type": "rectangle",
|
||||||
"pos": {
|
"pos": {
|
||||||
"x": 306,
|
"x": 253,
|
||||||
"y": 989
|
"y": 989
|
||||||
},
|
},
|
||||||
"width": 193,
|
"width": 193,
|
||||||
|
|
@ -171,7 +171,7 @@
|
||||||
"id": "aa.bb.cc.dd.ee",
|
"id": "aa.bb.cc.dd.ee",
|
||||||
"type": "text",
|
"type": "text",
|
||||||
"pos": {
|
"pos": {
|
||||||
"x": 356,
|
"x": 303,
|
||||||
"y": 1084
|
"y": 1084
|
||||||
},
|
},
|
||||||
"width": 16,
|
"width": 16,
|
||||||
|
|
@ -211,7 +211,7 @@
|
||||||
"id": "aa.bb.cc.dd.ff",
|
"id": "aa.bb.cc.dd.ff",
|
||||||
"type": "rectangle",
|
"type": "rectangle",
|
||||||
"pos": {
|
"pos": {
|
||||||
"x": 392,
|
"x": 339,
|
||||||
"y": 1039
|
"y": 1039
|
||||||
},
|
},
|
||||||
"width": 57,
|
"width": 57,
|
||||||
|
|
@ -252,7 +252,7 @@
|
||||||
"id": "aa.bb.cc.gg",
|
"id": "aa.bb.cc.gg",
|
||||||
"type": "text",
|
"type": "text",
|
||||||
"pos": {
|
"pos": {
|
||||||
"x": 337,
|
"x": 358,
|
||||||
"y": 1331
|
"y": 1331
|
||||||
},
|
},
|
||||||
"width": 80,
|
"width": 80,
|
||||||
|
|
@ -292,7 +292,7 @@
|
||||||
"id": "aa.bb.cc.hh",
|
"id": "aa.bb.cc.hh",
|
||||||
"type": "rectangle",
|
"type": "rectangle",
|
||||||
"pos": {
|
"pos": {
|
||||||
"x": 345,
|
"x": 367,
|
||||||
"y": 1513
|
"y": 1513
|
||||||
},
|
},
|
||||||
"width": 63,
|
"width": 63,
|
||||||
|
|
@ -415,7 +415,7 @@
|
||||||
"id": "aa.bb.kk",
|
"id": "aa.bb.kk",
|
||||||
"type": "oval",
|
"type": "oval",
|
||||||
"pos": {
|
"pos": {
|
||||||
"x": 282,
|
"x": 285,
|
||||||
"y": 721
|
"y": 721
|
||||||
},
|
},
|
||||||
"width": 74,
|
"width": 74,
|
||||||
|
|
@ -456,8 +456,8 @@
|
||||||
"id": "aa.ll",
|
"id": "aa.ll",
|
||||||
"type": "rectangle",
|
"type": "rectangle",
|
||||||
"pos": {
|
"pos": {
|
||||||
"x": 395,
|
"x": 459,
|
||||||
"y": 260
|
"y": 310
|
||||||
},
|
},
|
||||||
"width": 120,
|
"width": 120,
|
||||||
"height": 66,
|
"height": 66,
|
||||||
|
|
@ -497,7 +497,7 @@
|
||||||
"id": "aa.mm",
|
"id": "aa.mm",
|
||||||
"type": "cylinder",
|
"type": "cylinder",
|
||||||
"pos": {
|
"pos": {
|
||||||
"x": 270,
|
"x": 287,
|
||||||
"y": 62
|
"y": 62
|
||||||
},
|
},
|
||||||
"width": 160,
|
"width": 160,
|
||||||
|
|
@ -538,7 +538,7 @@
|
||||||
"id": "aa.nn",
|
"id": "aa.nn",
|
||||||
"type": "text",
|
"type": "text",
|
||||||
"pos": {
|
"pos": {
|
||||||
"x": 450,
|
"x": 467,
|
||||||
"y": 110
|
"y": 110
|
||||||
},
|
},
|
||||||
"width": 16,
|
"width": 16,
|
||||||
|
|
@ -578,7 +578,7 @@
|
||||||
"id": "aa.oo",
|
"id": "aa.oo",
|
||||||
"type": "rectangle",
|
"type": "rectangle",
|
||||||
"pos": {
|
"pos": {
|
||||||
"x": 486,
|
"x": 503,
|
||||||
"y": 88
|
"y": 88
|
||||||
},
|
},
|
||||||
"width": 63,
|
"width": 63,
|
||||||
|
|
@ -644,11 +644,19 @@
|
||||||
"labelPercentage": 0,
|
"labelPercentage": 0,
|
||||||
"route": [
|
"route": [
|
||||||
{
|
{
|
||||||
"x": 364,
|
"x": 311,
|
||||||
"y": 1105
|
"y": 1105
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"x": 364,
|
"x": 311,
|
||||||
|
"y": 1291
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"x": 385.16666666666663,
|
||||||
|
"y": 1291
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"x": 385.16666666666663,
|
||||||
"y": 1331
|
"y": 1331
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
|
|
@ -684,11 +692,11 @@
|
||||||
"labelPercentage": 0,
|
"labelPercentage": 0,
|
||||||
"route": [
|
"route": [
|
||||||
{
|
{
|
||||||
"x": 377.3333333333333,
|
"x": 398.5,
|
||||||
"y": 1352
|
"y": 1352
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"x": 377.3333333333333,
|
"x": 398.5,
|
||||||
"y": 1513
|
"y": 1513
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
|
|
@ -732,11 +740,11 @@
|
||||||
"y": 894
|
"y": 894
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"x": 356,
|
"x": 321,
|
||||||
"y": 894
|
"y": 894
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"x": 356,
|
"x": 321,
|
||||||
"y": 989
|
"y": 989
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
|
|
@ -772,19 +780,27 @@
|
||||||
"labelPercentage": 0,
|
"labelPercentage": 0,
|
||||||
"route": [
|
"route": [
|
||||||
{
|
{
|
||||||
"x": 419,
|
"x": 483.25,
|
||||||
"y": 326
|
"y": 376
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"x": 419,
|
"x": 483.25,
|
||||||
"y": 517
|
"y": 416
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"x": 376,
|
"x": 443.75,
|
||||||
"y": 517
|
"y": 416
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"x": 376,
|
"x": 443.75,
|
||||||
|
"y": 567
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"x": 413.5,
|
||||||
|
"y": 567
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"x": 413.5,
|
||||||
"y": 612
|
"y": 612
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
|
|
@ -820,11 +836,19 @@
|
||||||
"labelPercentage": 0,
|
"labelPercentage": 0,
|
||||||
"route": [
|
"route": [
|
||||||
{
|
{
|
||||||
"x": 366,
|
"x": 384,
|
||||||
"y": 180
|
"y": 180
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"x": 366,
|
"x": 383.75,
|
||||||
|
"y": 567
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"x": 403.5,
|
||||||
|
"y": 567
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"x": 403.5,
|
||||||
"y": 939
|
"y": 939
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
|
|
@ -860,20 +884,20 @@
|
||||||
"labelPercentage": 0,
|
"labelPercentage": 0,
|
||||||
"route": [
|
"route": [
|
||||||
{
|
{
|
||||||
"x": 398,
|
"x": 416,
|
||||||
"y": 176
|
"y": 176
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"x": 398,
|
"x": 415.75,
|
||||||
"y": 220
|
"y": 220
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"x": 455,
|
"x": 519.25,
|
||||||
"y": 220
|
"y": 220
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"x": 455,
|
"x": 519.25,
|
||||||
"y": 260
|
"y": 310
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
"animated": false,
|
"animated": false,
|
||||||
|
|
@ -908,19 +932,19 @@
|
||||||
"labelPercentage": 0,
|
"labelPercentage": 0,
|
||||||
"route": [
|
"route": [
|
||||||
{
|
{
|
||||||
"x": 334,
|
"x": 352,
|
||||||
"y": 180
|
"y": 180
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"x": 334,
|
"x": 351.75,
|
||||||
"y": 567
|
"y": 270
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"x": 197,
|
"x": 295.25,
|
||||||
"y": 567
|
"y": 270
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"x": 197,
|
"x": 295.25,
|
||||||
"y": 612
|
"y": 612
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
|
|
@ -956,27 +980,35 @@
|
||||||
"labelPercentage": 0,
|
"labelPercentage": 0,
|
||||||
"route": [
|
"route": [
|
||||||
{
|
{
|
||||||
"x": 443,
|
"x": 507.25,
|
||||||
"y": 326
|
"y": 376
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"x": 443,
|
"x": 507.25,
|
||||||
"y": 517
|
"y": 466
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"x": 509,
|
"x": 494.25,
|
||||||
"y": 517
|
"y": 466
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"x": 509,
|
"x": 494.25,
|
||||||
|
"y": 567
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"x": 486,
|
||||||
|
"y": 567
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"x": 486,
|
||||||
"y": 1291
|
"y": 1291
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"x": 390.6666666666667,
|
"x": 411.8333333333333,
|
||||||
"y": 1291
|
"y": 1291
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"x": 390.6666666666667,
|
"x": 411.8333333333333,
|
||||||
"y": 1331
|
"y": 1331
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
|
|
@ -1012,16 +1044,24 @@
|
||||||
"labelPercentage": 0,
|
"labelPercentage": 0,
|
||||||
"route": [
|
"route": [
|
||||||
{
|
{
|
||||||
"x": 302,
|
"x": 320,
|
||||||
"y": 176
|
"y": 176
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"x": 302,
|
"x": 319.75,
|
||||||
"y": 517
|
"y": 220
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"x": 221.25,
|
||||||
|
"y": 220
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"x": 221.25,
|
||||||
|
"y": 567
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"x": 187,
|
"x": 187,
|
||||||
"y": 517
|
"y": 567
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"x": 187,
|
"x": 187,
|
||||||
|
|
@ -1060,28 +1100,28 @@
|
||||||
"labelPercentage": 0,
|
"labelPercentage": 0,
|
||||||
"route": [
|
"route": [
|
||||||
{
|
{
|
||||||
"x": 306,
|
"x": 342.8333333333333,
|
||||||
"y": 1629
|
"y": 1629
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"x": 306,
|
"x": 342.8333333333333,
|
||||||
"y": 1724
|
"y": 1724
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"x": 620,
|
"x": 627,
|
||||||
"y": 1724
|
"y": 1724
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"x": 620,
|
"x": 627,
|
||||||
"y": 416
|
"y": 466
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"x": 467,
|
"x": 531.25,
|
||||||
"y": 416
|
"y": 466
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"x": 467,
|
"x": 531.25,
|
||||||
"y": 326
|
"y": 376
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
"animated": false,
|
"animated": false,
|
||||||
|
|
@ -1124,20 +1164,20 @@
|
||||||
"y": 1774
|
"y": 1774
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"x": 647,
|
"x": 654,
|
||||||
"y": 1774
|
"y": 1774
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"x": 647,
|
"x": 654,
|
||||||
"y": 366
|
"y": 416
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"x": 491,
|
"x": 555.25,
|
||||||
"y": 366
|
"y": 416
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"x": 491,
|
"x": 555.25,
|
||||||
"y": 326
|
"y": 376
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
"animated": false,
|
"animated": false,
|
||||||
|
|
|
||||||
194
e2etests/testdata/stable/chaos2/elk/sketch.exp.svg
vendored
|
Before Width: | Height: | Size: 816 KiB After Width: | Height: | Size: 817 KiB |
50
e2etests/testdata/stable/circular_dependency/elk/board.exp.json
generated
vendored
|
|
@ -7,7 +7,7 @@
|
||||||
"id": "a",
|
"id": "a",
|
||||||
"type": "rectangle",
|
"type": "rectangle",
|
||||||
"pos": {
|
"pos": {
|
||||||
"x": 21,
|
"x": 25,
|
||||||
"y": 12
|
"y": 12
|
||||||
},
|
},
|
||||||
"width": 53,
|
"width": 53,
|
||||||
|
|
@ -49,7 +49,7 @@
|
||||||
"type": "rectangle",
|
"type": "rectangle",
|
||||||
"pos": {
|
"pos": {
|
||||||
"x": 12,
|
"x": 12,
|
||||||
"y": 158
|
"y": 208
|
||||||
},
|
},
|
||||||
"width": 80,
|
"width": 80,
|
||||||
"height": 66,
|
"height": 66,
|
||||||
|
|
@ -89,8 +89,8 @@
|
||||||
"id": "c",
|
"id": "c",
|
||||||
"type": "rectangle",
|
"type": "rectangle",
|
||||||
"pos": {
|
"pos": {
|
||||||
"x": 21,
|
"x": 25,
|
||||||
"y": 304
|
"y": 404
|
||||||
},
|
},
|
||||||
"width": 53,
|
"width": 53,
|
||||||
"height": 66,
|
"height": 66,
|
||||||
|
|
@ -155,12 +155,20 @@
|
||||||
"labelPercentage": 0,
|
"labelPercentage": 0,
|
||||||
"route": [
|
"route": [
|
||||||
{
|
{
|
||||||
"x": 38.66666666666667,
|
"x": 43.16666666666667,
|
||||||
"y": 78
|
"y": 78
|
||||||
},
|
},
|
||||||
|
{
|
||||||
|
"x": 43.16666666666667,
|
||||||
|
"y": 168
|
||||||
|
},
|
||||||
{
|
{
|
||||||
"x": 38.66666666666667,
|
"x": 38.66666666666667,
|
||||||
"y": 158
|
"y": 168
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"x": 38.66666666666667,
|
||||||
|
"y": 208
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
"animated": false,
|
"animated": false,
|
||||||
|
|
@ -196,11 +204,19 @@
|
||||||
"route": [
|
"route": [
|
||||||
{
|
{
|
||||||
"x": 38.66666666666667,
|
"x": 38.66666666666667,
|
||||||
"y": 224
|
"y": 274
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"x": 38.66666666666667,
|
"x": 38.66666666666667,
|
||||||
"y": 304
|
"y": 364
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"x": 43.16666666666667,
|
||||||
|
"y": 364
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"x": 43.16666666666667,
|
||||||
|
"y": 404
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
"animated": false,
|
"animated": false,
|
||||||
|
|
@ -235,20 +251,20 @@
|
||||||
"labelPercentage": 0,
|
"labelPercentage": 0,
|
||||||
"route": [
|
"route": [
|
||||||
{
|
{
|
||||||
"x": 56.333333333333336,
|
"x": 60.833333333333336,
|
||||||
"y": 304
|
"y": 404
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"x": 56.333333333333336,
|
"x": 60.833333333333336,
|
||||||
"y": 264
|
"y": 314
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"x": 65.33333333333334,
|
"x": 65.33333333333334,
|
||||||
"y": 264
|
"y": 314
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"x": 65.33333333333334,
|
"x": 65.33333333333334,
|
||||||
"y": 224
|
"y": 274
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
"animated": false,
|
"animated": false,
|
||||||
|
|
@ -284,18 +300,18 @@
|
||||||
"route": [
|
"route": [
|
||||||
{
|
{
|
||||||
"x": 65.33333333333334,
|
"x": 65.33333333333334,
|
||||||
"y": 158
|
"y": 208
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"x": 65.33333333333334,
|
"x": 65.33333333333334,
|
||||||
"y": 118
|
"y": 118
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"x": 56.333333333333336,
|
"x": 60.833333333333336,
|
||||||
"y": 118
|
"y": 118
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"x": 56.333333333333336,
|
"x": 60.833333333333336,
|
||||||
"y": 78
|
"y": 78
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
|
|
|
||||||
|
Before Width: | Height: | Size: 331 KiB After Width: | Height: | Size: 331 KiB |
18
e2etests/testdata/stable/constant_near_title/elk/board.exp.json
generated
vendored
|
|
@ -7,7 +7,7 @@
|
||||||
"id": "poll the people",
|
"id": "poll the people",
|
||||||
"type": "rectangle",
|
"type": "rectangle",
|
||||||
"pos": {
|
"pos": {
|
||||||
"x": 61,
|
"x": 110,
|
||||||
"y": 12
|
"y": 12
|
||||||
},
|
},
|
||||||
"width": 150,
|
"width": 150,
|
||||||
|
|
@ -278,9 +278,17 @@
|
||||||
"labelPercentage": 0,
|
"labelPercentage": 0,
|
||||||
"route": [
|
"route": [
|
||||||
{
|
{
|
||||||
"x": 111,
|
"x": 160.16666666666666,
|
||||||
"y": 78
|
"y": 78
|
||||||
},
|
},
|
||||||
|
{
|
||||||
|
"x": 160.16666666666666,
|
||||||
|
"y": 118
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"x": 111,
|
||||||
|
"y": 118
|
||||||
|
},
|
||||||
{
|
{
|
||||||
"x": 111,
|
"x": 111,
|
||||||
"y": 158
|
"y": 158
|
||||||
|
|
@ -366,7 +374,7 @@
|
||||||
"labelPercentage": 0,
|
"labelPercentage": 0,
|
||||||
"route": [
|
"route": [
|
||||||
{
|
{
|
||||||
"x": 259.3333333333333,
|
"x": 259.33333333333337,
|
||||||
"y": 304
|
"y": 304
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
|
|
@ -374,11 +382,11 @@
|
||||||
"y": 118
|
"y": 118
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"x": 161,
|
"x": 210.16666666666666,
|
||||||
"y": 118
|
"y": 118
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"x": 161,
|
"x": 210.16666666666666,
|
||||||
"y": 78
|
"y": 78
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
|
|
|
||||||
|
Before Width: | Height: | Size: 667 KiB After Width: | Height: | Size: 667 KiB |
70
e2etests/testdata/stable/container_edges/elk/board.exp.json
generated
vendored
|
|
@ -7,7 +7,7 @@
|
||||||
"id": "a",
|
"id": "a",
|
||||||
"type": "rectangle",
|
"type": "rectangle",
|
||||||
"pos": {
|
"pos": {
|
||||||
"x": 112,
|
"x": 94,
|
||||||
"y": 12
|
"y": 12
|
||||||
},
|
},
|
||||||
"width": 53,
|
"width": 53,
|
||||||
|
|
@ -48,7 +48,7 @@
|
||||||
"id": "g",
|
"id": "g",
|
||||||
"type": "rectangle",
|
"type": "rectangle",
|
||||||
"pos": {
|
"pos": {
|
||||||
"x": 62,
|
"x": 44,
|
||||||
"y": 213
|
"y": 213
|
||||||
},
|
},
|
||||||
"width": 226,
|
"width": 226,
|
||||||
|
|
@ -89,7 +89,7 @@
|
||||||
"id": "g.b",
|
"id": "g.b",
|
||||||
"type": "rectangle",
|
"type": "rectangle",
|
||||||
"pos": {
|
"pos": {
|
||||||
"x": 112,
|
"x": 94,
|
||||||
"y": 263
|
"y": 263
|
||||||
},
|
},
|
||||||
"width": 53,
|
"width": 53,
|
||||||
|
|
@ -131,7 +131,7 @@
|
||||||
"type": "rectangle",
|
"type": "rectangle",
|
||||||
"pos": {
|
"pos": {
|
||||||
"x": 12,
|
"x": 12,
|
||||||
"y": 469
|
"y": 519
|
||||||
},
|
},
|
||||||
"width": 253,
|
"width": 253,
|
||||||
"height": 271,
|
"height": 271,
|
||||||
|
|
@ -172,7 +172,7 @@
|
||||||
"type": "rectangle",
|
"type": "rectangle",
|
||||||
"pos": {
|
"pos": {
|
||||||
"x": 62,
|
"x": 62,
|
||||||
"y": 524
|
"y": 574
|
||||||
},
|
},
|
||||||
"width": 153,
|
"width": 153,
|
||||||
"height": 166,
|
"height": 166,
|
||||||
|
|
@ -213,7 +213,7 @@
|
||||||
"type": "rectangle",
|
"type": "rectangle",
|
||||||
"pos": {
|
"pos": {
|
||||||
"x": 112,
|
"x": 112,
|
||||||
"y": 574
|
"y": 624
|
||||||
},
|
},
|
||||||
"width": 53,
|
"width": 53,
|
||||||
"height": 66,
|
"height": 66,
|
||||||
|
|
@ -253,7 +253,7 @@
|
||||||
"id": "g.e",
|
"id": "g.e",
|
||||||
"type": "rectangle",
|
"type": "rectangle",
|
||||||
"pos": {
|
"pos": {
|
||||||
"x": 185,
|
"x": 167,
|
||||||
"y": 263
|
"y": 263
|
||||||
},
|
},
|
||||||
"width": 53,
|
"width": 53,
|
||||||
|
|
@ -295,7 +295,7 @@
|
||||||
"type": "rectangle",
|
"type": "rectangle",
|
||||||
"pos": {
|
"pos": {
|
||||||
"x": 285,
|
"x": 285,
|
||||||
"y": 469
|
"y": 519
|
||||||
},
|
},
|
||||||
"width": 51,
|
"width": 51,
|
||||||
"height": 66,
|
"height": 66,
|
||||||
|
|
@ -360,11 +360,11 @@
|
||||||
"labelPercentage": 0,
|
"labelPercentage": 0,
|
||||||
"route": [
|
"route": [
|
||||||
{
|
{
|
||||||
"x": 138.5,
|
"x": 120.75,
|
||||||
"y": 78
|
"y": 78
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"x": 138.5,
|
"x": 120.75,
|
||||||
"y": 263
|
"y": 263
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
|
|
@ -400,12 +400,20 @@
|
||||||
"labelPercentage": 0,
|
"labelPercentage": 0,
|
||||||
"route": [
|
"route": [
|
||||||
{
|
{
|
||||||
"x": 138.5,
|
"x": 120.75,
|
||||||
"y": 329
|
"y": 329
|
||||||
},
|
},
|
||||||
|
{
|
||||||
|
"x": 120.75,
|
||||||
|
"y": 474
|
||||||
|
},
|
||||||
{
|
{
|
||||||
"x": 138.5,
|
"x": 138.5,
|
||||||
"y": 574
|
"y": 474
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"x": 138.5,
|
||||||
|
"y": 624
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
"animated": false,
|
"animated": false,
|
||||||
|
|
@ -441,26 +449,26 @@
|
||||||
"route": [
|
"route": [
|
||||||
{
|
{
|
||||||
"x": 62,
|
"x": 62,
|
||||||
"y": 740
|
"y": 790
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"x": 62,
|
"x": 62,
|
||||||
"y": 780
|
"y": 830
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"x": 346,
|
"x": 376,
|
||||||
"y": 780
|
"y": 830
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"x": 346,
|
"x": 376,
|
||||||
"y": 118
|
"y": 118
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"x": 211.5,
|
"x": 193.75,
|
||||||
"y": 118
|
"y": 118
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"x": 211.5,
|
"x": 193.75,
|
||||||
"y": 263
|
"y": 263
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
|
|
@ -496,11 +504,11 @@
|
||||||
"labelPercentage": 0,
|
"labelPercentage": 0,
|
||||||
"route": [
|
"route": [
|
||||||
{
|
{
|
||||||
"x": 211.5,
|
"x": 193.75,
|
||||||
"y": 329
|
"y": 329
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"x": 211.5,
|
"x": 193.75,
|
||||||
"y": 424
|
"y": 424
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
|
|
@ -509,7 +517,7 @@
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"x": 302,
|
"x": 302,
|
||||||
"y": 469
|
"y": 519
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
"animated": false,
|
"animated": false,
|
||||||
|
|
@ -545,18 +553,18 @@
|
||||||
"route": [
|
"route": [
|
||||||
{
|
{
|
||||||
"x": 319,
|
"x": 319,
|
||||||
"y": 469
|
"y": 519
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"x": 319,
|
"x": 319,
|
||||||
"y": 168
|
"y": 168
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"x": 221.5,
|
"x": 203.75,
|
||||||
"y": 168
|
"y": 168
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"x": 221.5,
|
"x": 203.75,
|
||||||
"y": 213
|
"y": 213
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
|
|
@ -592,12 +600,20 @@
|
||||||
"labelPercentage": 0,
|
"labelPercentage": 0,
|
||||||
"route": [
|
"route": [
|
||||||
{
|
{
|
||||||
"x": 148.5,
|
"x": 157.25,
|
||||||
"y": 379
|
"y": 379
|
||||||
},
|
},
|
||||||
|
{
|
||||||
|
"x": 157.25,
|
||||||
|
"y": 424
|
||||||
|
},
|
||||||
{
|
{
|
||||||
"x": 148.5,
|
"x": 148.5,
|
||||||
"y": 524
|
"y": 424
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"x": 148.5,
|
||||||
|
"y": 574
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
"animated": false,
|
"animated": false,
|
||||||
|
|
|
||||||
|
Before Width: | Height: | Size: 657 KiB After Width: | Height: | Size: 657 KiB |
452
e2etests/testdata/stable/dense/elk/board.exp.json
generated
vendored
|
|
@ -7,8 +7,8 @@
|
||||||
"id": "a",
|
"id": "a",
|
||||||
"type": "rectangle",
|
"type": "rectangle",
|
||||||
"pos": {
|
"pos": {
|
||||||
"x": 359,
|
"x": 155,
|
||||||
"y": 208
|
"y": 158
|
||||||
},
|
},
|
||||||
"width": 53,
|
"width": 53,
|
||||||
"height": 66,
|
"height": 66,
|
||||||
|
|
@ -48,8 +48,8 @@
|
||||||
"id": "b",
|
"id": "b",
|
||||||
"type": "rectangle",
|
"type": "rectangle",
|
||||||
"pos": {
|
"pos": {
|
||||||
"x": 245,
|
"x": 40,
|
||||||
"y": 354
|
"y": 304
|
||||||
},
|
},
|
||||||
"width": 280,
|
"width": 280,
|
||||||
"height": 66,
|
"height": 66,
|
||||||
|
|
@ -89,8 +89,8 @@
|
||||||
"id": "c",
|
"id": "c",
|
||||||
"type": "rectangle",
|
"type": "rectangle",
|
||||||
"pos": {
|
"pos": {
|
||||||
"x": 286,
|
"x": 82,
|
||||||
"y": 208
|
"y": 158
|
||||||
},
|
},
|
||||||
"width": 53,
|
"width": 53,
|
||||||
"height": 66,
|
"height": 66,
|
||||||
|
|
@ -130,8 +130,8 @@
|
||||||
"id": "d",
|
"id": "d",
|
||||||
"type": "rectangle",
|
"type": "rectangle",
|
||||||
"pos": {
|
"pos": {
|
||||||
"x": 318,
|
"x": 362,
|
||||||
"y": 700
|
"y": 500
|
||||||
},
|
},
|
||||||
"width": 120,
|
"width": 120,
|
||||||
"height": 66,
|
"height": 66,
|
||||||
|
|
@ -171,8 +171,8 @@
|
||||||
"id": "e",
|
"id": "e",
|
||||||
"type": "rectangle",
|
"type": "rectangle",
|
||||||
"pos": {
|
"pos": {
|
||||||
"x": 277,
|
"x": 384,
|
||||||
"y": 1192
|
"y": 942
|
||||||
},
|
},
|
||||||
"width": 120,
|
"width": 120,
|
||||||
"height": 66,
|
"height": 66,
|
||||||
|
|
@ -212,8 +212,8 @@
|
||||||
"id": "f",
|
"id": "f",
|
||||||
"type": "rectangle",
|
"type": "rectangle",
|
||||||
"pos": {
|
"pos": {
|
||||||
"x": 70,
|
"x": 139,
|
||||||
"y": 946
|
"y": 696
|
||||||
},
|
},
|
||||||
"width": 80,
|
"width": 80,
|
||||||
"height": 66,
|
"height": 66,
|
||||||
|
|
@ -253,8 +253,8 @@
|
||||||
"id": "g",
|
"id": "g",
|
||||||
"type": "rectangle",
|
"type": "rectangle",
|
||||||
"pos": {
|
"pos": {
|
||||||
"x": 97,
|
"x": 187,
|
||||||
"y": 700
|
"y": 500
|
||||||
},
|
},
|
||||||
"width": 54,
|
"width": 54,
|
||||||
"height": 66,
|
"height": 66,
|
||||||
|
|
@ -294,8 +294,8 @@
|
||||||
"id": "h",
|
"id": "h",
|
||||||
"type": "rectangle",
|
"type": "rectangle",
|
||||||
"pos": {
|
"pos": {
|
||||||
"x": 23,
|
"x": 53,
|
||||||
"y": 700
|
"y": 500
|
||||||
},
|
},
|
||||||
"width": 53,
|
"width": 53,
|
||||||
"height": 66,
|
"height": 66,
|
||||||
|
|
@ -335,8 +335,8 @@
|
||||||
"id": "i",
|
"id": "i",
|
||||||
"type": "rectangle",
|
"type": "rectangle",
|
||||||
"pos": {
|
"pos": {
|
||||||
"x": 144,
|
"x": 79,
|
||||||
"y": 1338
|
"y": 1088
|
||||||
},
|
},
|
||||||
"width": 80,
|
"width": 80,
|
||||||
"height": 66,
|
"height": 66,
|
||||||
|
|
@ -376,7 +376,7 @@
|
||||||
"id": "j",
|
"id": "j",
|
||||||
"type": "rectangle",
|
"type": "rectangle",
|
||||||
"pos": {
|
"pos": {
|
||||||
"x": 362,
|
"x": 141,
|
||||||
"y": 12
|
"y": 12
|
||||||
},
|
},
|
||||||
"width": 80,
|
"width": 80,
|
||||||
|
|
@ -417,8 +417,8 @@
|
||||||
"id": "k",
|
"id": "k",
|
||||||
"type": "rectangle",
|
"type": "rectangle",
|
||||||
"pos": {
|
"pos": {
|
||||||
"x": 157,
|
"x": 92,
|
||||||
"y": 1474
|
"y": 1224
|
||||||
},
|
},
|
||||||
"width": 53,
|
"width": 53,
|
||||||
"height": 66,
|
"height": 66,
|
||||||
|
|
@ -458,8 +458,8 @@
|
||||||
"id": "l",
|
"id": "l",
|
||||||
"type": "rectangle",
|
"type": "rectangle",
|
||||||
"pos": {
|
"pos": {
|
||||||
"x": 348,
|
"x": 511,
|
||||||
"y": 946
|
"y": 696
|
||||||
},
|
},
|
||||||
"width": 120,
|
"width": 120,
|
||||||
"height": 66,
|
"height": 66,
|
||||||
|
|
@ -499,8 +499,8 @@
|
||||||
"id": "m",
|
"id": "m",
|
||||||
"type": "rectangle",
|
"type": "rectangle",
|
||||||
"pos": {
|
"pos": {
|
||||||
"x": 171,
|
"x": 261,
|
||||||
"y": 700
|
"y": 500
|
||||||
},
|
},
|
||||||
"width": 80,
|
"width": 80,
|
||||||
"height": 66,
|
"height": 66,
|
||||||
|
|
@ -540,8 +540,8 @@
|
||||||
"id": "n",
|
"id": "n",
|
||||||
"type": "rectangle",
|
"type": "rectangle",
|
||||||
"pos": {
|
"pos": {
|
||||||
"x": 137,
|
"x": 197,
|
||||||
"y": 1192
|
"y": 942
|
||||||
},
|
},
|
||||||
"width": 120,
|
"width": 120,
|
||||||
"height": 66,
|
"height": 66,
|
||||||
|
|
@ -581,8 +581,8 @@
|
||||||
"id": "o",
|
"id": "o",
|
||||||
"type": "rectangle",
|
"type": "rectangle",
|
||||||
"pos": {
|
"pos": {
|
||||||
"x": 458,
|
"x": 502,
|
||||||
"y": 700
|
"y": 500
|
||||||
},
|
},
|
||||||
"width": 54,
|
"width": 54,
|
||||||
"height": 66,
|
"height": 66,
|
||||||
|
|
@ -622,8 +622,8 @@
|
||||||
"id": "p",
|
"id": "p",
|
||||||
"type": "rectangle",
|
"type": "rectangle",
|
||||||
"pos": {
|
"pos": {
|
||||||
"x": 532,
|
"x": 576,
|
||||||
"y": 700
|
"y": 500
|
||||||
},
|
},
|
||||||
"width": 53,
|
"width": 53,
|
||||||
"height": 66,
|
"height": 66,
|
||||||
|
|
@ -663,8 +663,8 @@
|
||||||
"id": "q",
|
"id": "q",
|
||||||
"type": "rectangle",
|
"type": "rectangle",
|
||||||
"pos": {
|
"pos": {
|
||||||
"x": 310,
|
"x": 417,
|
||||||
"y": 1338
|
"y": 1088
|
||||||
},
|
},
|
||||||
"width": 54,
|
"width": 54,
|
||||||
"height": 66,
|
"height": 66,
|
||||||
|
|
@ -729,12 +729,20 @@
|
||||||
"labelPercentage": 0,
|
"labelPercentage": 0,
|
||||||
"route": [
|
"route": [
|
||||||
{
|
{
|
||||||
"x": 385.6666666666667,
|
"x": 181.5,
|
||||||
"y": 274
|
"y": 224
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"x": 385.6666666666667,
|
"x": 181.5,
|
||||||
"y": 354
|
"y": 264
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"x": 180,
|
||||||
|
"y": 264
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"x": 180,
|
||||||
|
"y": 304
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
"animated": false,
|
"animated": false,
|
||||||
|
|
@ -769,20 +777,20 @@
|
||||||
"labelPercentage": 0,
|
"labelPercentage": 0,
|
||||||
"route": [
|
"route": [
|
||||||
{
|
{
|
||||||
"x": 312.6666666666667,
|
"x": 108.5,
|
||||||
"y": 274
|
"y": 224
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"x": 312.6666666666667,
|
"x": 108.5,
|
||||||
"y": 314
|
"y": 264
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"x": 315.6666666666667,
|
"x": 110,
|
||||||
"y": 314
|
"y": 264
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"x": 315.6666666666667,
|
"x": 110,
|
||||||
"y": 354
|
"y": 304
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
"animated": false,
|
"animated": false,
|
||||||
|
|
@ -817,20 +825,28 @@
|
||||||
"labelPercentage": 0,
|
"labelPercentage": 0,
|
||||||
"route": [
|
"route": [
|
||||||
{
|
{
|
||||||
"x": 378.6666666666667,
|
"x": 422.75,
|
||||||
"y": 766
|
"y": 566
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"x": 378.6666666666667,
|
"x": 422.75,
|
||||||
"y": 856
|
"y": 606
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"x": 337.6666666666667,
|
"x": 421,
|
||||||
"y": 856
|
"y": 606
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"x": 337.6666666666667,
|
"x": 421,
|
||||||
"y": 1192
|
"y": 802
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"x": 444.3333333333333,
|
||||||
|
"y": 802
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"x": 444.3333333333333,
|
||||||
|
"y": 942
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
"animated": false,
|
"animated": false,
|
||||||
|
|
@ -865,20 +881,20 @@
|
||||||
"labelPercentage": 0,
|
"labelPercentage": 0,
|
||||||
"route": [
|
"route": [
|
||||||
{
|
{
|
||||||
"x": 124.00000000000003,
|
"x": 192.66666666666657,
|
||||||
"y": 1012
|
"y": 762
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"x": 124.00000000000003,
|
"x": 192.66666666666657,
|
||||||
"y": 1102
|
"y": 852
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"x": 307.6666666666667,
|
"x": 414.3333333333333,
|
||||||
"y": 1102
|
"y": 852
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"x": 307.6666666666667,
|
"x": 414.3333333333333,
|
||||||
"y": 1192
|
"y": 942
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
"animated": false,
|
"animated": false,
|
||||||
|
|
@ -913,28 +929,28 @@
|
||||||
"labelPercentage": 0,
|
"labelPercentage": 0,
|
||||||
"route": [
|
"route": [
|
||||||
{
|
{
|
||||||
"x": 365.6666666666667,
|
"x": 160,
|
||||||
"y": 420
|
"y": 370
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"x": 365.6666666666667,
|
"x": 160,
|
||||||
"y": 560
|
"y": 410
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"x": 86,
|
"x": 146,
|
||||||
"y": 560
|
"y": 410
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"x": 86,
|
"x": 146,
|
||||||
"y": 806
|
"y": 606
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"x": 97.33333333333337,
|
"x": 165.99999999999994,
|
||||||
"y": 806
|
"y": 606
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"x": 97.33333333333337,
|
"x": 165.99999999999994,
|
||||||
"y": 946
|
"y": 696
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
"animated": false,
|
"animated": false,
|
||||||
|
|
@ -969,20 +985,20 @@
|
||||||
"labelPercentage": 0,
|
"labelPercentage": 0,
|
||||||
"route": [
|
"route": [
|
||||||
{
|
{
|
||||||
"x": 405.6666666666667,
|
"x": 200,
|
||||||
"y": 420
|
"y": 370
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"x": 405.6666666666667,
|
"x": 200,
|
||||||
"y": 610
|
"y": 410
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"x": 124,
|
"x": 214,
|
||||||
"y": 610
|
"y": 410
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"x": 124,
|
"x": 214,
|
||||||
"y": 700
|
"y": 500
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
"animated": false,
|
"animated": false,
|
||||||
|
|
@ -1017,12 +1033,20 @@
|
||||||
"labelPercentage": 0,
|
"labelPercentage": 0,
|
||||||
"route": [
|
"route": [
|
||||||
{
|
{
|
||||||
"x": 124,
|
"x": 214,
|
||||||
"y": 766
|
"y": 566
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"x": 124.00000000000003,
|
"x": 214,
|
||||||
"y": 946
|
"y": 606
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"x": 192.66666666666657,
|
||||||
|
"y": 606
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"x": 192.66666666666657,
|
||||||
|
"y": 696
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
"animated": false,
|
"animated": false,
|
||||||
|
|
@ -1057,20 +1081,20 @@
|
||||||
"labelPercentage": 0,
|
"labelPercentage": 0,
|
||||||
"route": [
|
"route": [
|
||||||
{
|
{
|
||||||
"x": 325.6666666666667,
|
"x": 120,
|
||||||
"y": 420
|
"y": 370
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"x": 325.6666666666667,
|
"x": 120,
|
||||||
"y": 510
|
"y": 460
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"x": 49.5,
|
"x": 79.5,
|
||||||
"y": 510
|
"y": 460
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"x": 49.5,
|
"x": 79.5,
|
||||||
"y": 700
|
"y": 500
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
"animated": false,
|
"animated": false,
|
||||||
|
|
@ -1105,28 +1129,28 @@
|
||||||
"labelPercentage": 0,
|
"labelPercentage": 0,
|
||||||
"route": [
|
"route": [
|
||||||
{
|
{
|
||||||
"x": 285.6666666666667,
|
"x": 80,
|
||||||
"y": 420
|
"y": 370
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"x": 285.6666666666667,
|
"x": 80,
|
||||||
"y": 460
|
"y": 410
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"x": 12,
|
"x": 12,
|
||||||
"y": 460
|
"y": 410
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"x": 12,
|
"x": 12,
|
||||||
"y": 1298
|
"y": 1048
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"x": 171,
|
"x": 106.08333333333331,
|
||||||
"y": 1298
|
"y": 1048
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"x": 171,
|
"x": 106.08333333333331,
|
||||||
"y": 1338
|
"y": 1088
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
"animated": false,
|
"animated": false,
|
||||||
|
|
@ -1161,20 +1185,20 @@
|
||||||
"labelPercentage": 0,
|
"labelPercentage": 0,
|
||||||
"route": [
|
"route": [
|
||||||
{
|
{
|
||||||
"x": 445.6666666666667,
|
"x": 240,
|
||||||
"y": 420
|
"y": 370
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"x": 445.6666666666667,
|
"x": 240,
|
||||||
"y": 660
|
"y": 460
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"x": 378.6666666666667,
|
"x": 422.75,
|
||||||
"y": 660
|
"y": 460
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"x": 378.6666666666667,
|
"x": 422.75,
|
||||||
"y": 700
|
"y": 500
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
"animated": false,
|
"animated": false,
|
||||||
|
|
@ -1209,20 +1233,20 @@
|
||||||
"labelPercentage": 0,
|
"labelPercentage": 0,
|
||||||
"route": [
|
"route": [
|
||||||
{
|
{
|
||||||
"x": 382.1666666666667,
|
"x": 161.5,
|
||||||
"y": 78
|
"y": 78
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"x": 382.1666666666667,
|
"x": 161.5,
|
||||||
"y": 118
|
"y": 118
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"x": 312.6666666666667,
|
"x": 108.5,
|
||||||
"y": 118
|
"y": 118
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"x": 312.6666666666667,
|
"x": 108.5,
|
||||||
"y": 208
|
"y": 158
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
"animated": false,
|
"animated": false,
|
||||||
|
|
@ -1257,20 +1281,12 @@
|
||||||
"labelPercentage": 0,
|
"labelPercentage": 0,
|
||||||
"route": [
|
"route": [
|
||||||
{
|
{
|
||||||
"x": 402.1666666666667,
|
"x": 181.5,
|
||||||
"y": 78
|
"y": 78
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"x": 402.1666666666667,
|
"x": 181.5,
|
||||||
"y": 168
|
"y": 158
|
||||||
},
|
|
||||||
{
|
|
||||||
"x": 385.6666666666667,
|
|
||||||
"y": 168
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"x": 385.6666666666667,
|
|
||||||
"y": 208
|
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
"animated": false,
|
"animated": false,
|
||||||
|
|
@ -1305,19 +1321,19 @@
|
||||||
"labelPercentage": 0,
|
"labelPercentage": 0,
|
||||||
"route": [
|
"route": [
|
||||||
{
|
{
|
||||||
"x": 455.6666666666667,
|
"x": 250,
|
||||||
"y": 354
|
"y": 304
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"x": 455.6666666666667,
|
"x": 249.99999999999997,
|
||||||
"y": 314
|
"y": 118
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"x": 422.1666666666667,
|
"x": 201.5,
|
||||||
"y": 314
|
"y": 118
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"x": 422.1666666666667,
|
"x": 201.5,
|
||||||
"y": 78
|
"y": 78
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
|
|
@ -1353,12 +1369,12 @@
|
||||||
"labelPercentage": 0,
|
"labelPercentage": 0,
|
||||||
"route": [
|
"route": [
|
||||||
{
|
{
|
||||||
"x": 184.33333333333334,
|
"x": 119.41666666666663,
|
||||||
"y": 1404
|
"y": 1154
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"x": 184.33333333333334,
|
"x": 119.41666666666663,
|
||||||
"y": 1474
|
"y": 1224
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
"animated": false,
|
"animated": false,
|
||||||
|
|
@ -1393,12 +1409,20 @@
|
||||||
"labelPercentage": 0,
|
"labelPercentage": 0,
|
||||||
"route": [
|
"route": [
|
||||||
{
|
{
|
||||||
"x": 408.6666666666667,
|
"x": 452.75,
|
||||||
"y": 766
|
"y": 566
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"x": 408.6666666666667,
|
"x": 452.75,
|
||||||
"y": 946
|
"y": 606
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"x": 571.5,
|
||||||
|
"y": 606
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"x": 571.5,
|
||||||
|
"y": 696
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
"animated": false,
|
"animated": false,
|
||||||
|
|
@ -1433,20 +1457,20 @@
|
||||||
"labelPercentage": 0,
|
"labelPercentage": 0,
|
||||||
"route": [
|
"route": [
|
||||||
{
|
{
|
||||||
"x": 408.6666666666667,
|
"x": 571.5,
|
||||||
"y": 1012
|
"y": 762
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"x": 408.6666666666667,
|
"x": 571.5,
|
||||||
"y": 1052
|
"y": 802
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"x": 367.6666666666667,
|
"x": 474.3333333333333,
|
||||||
"y": 1052
|
"y": 802
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"x": 367.6666666666667,
|
"x": 474.3333333333333,
|
||||||
"y": 1192
|
"y": 942
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
"animated": false,
|
"animated": false,
|
||||||
|
|
@ -1481,20 +1505,20 @@
|
||||||
"labelPercentage": 0,
|
"labelPercentage": 0,
|
||||||
"route": [
|
"route": [
|
||||||
{
|
{
|
||||||
"x": 224.33333333333334,
|
"x": 314.3333333333333,
|
||||||
"y": 766
|
"y": 566
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"x": 224.33333333333334,
|
"x": 314.3333333333333,
|
||||||
"y": 906
|
"y": 656
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"x": 378.6666666666667,
|
"x": 541.5,
|
||||||
"y": 906
|
"y": 656
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"x": 378.6666666666667,
|
"x": 541.5,
|
||||||
"y": 946
|
"y": 696
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
"animated": false,
|
"animated": false,
|
||||||
|
|
@ -1529,12 +1553,20 @@
|
||||||
"labelPercentage": 0,
|
"labelPercentage": 0,
|
||||||
"route": [
|
"route": [
|
||||||
{
|
{
|
||||||
"x": 197.66666666666666,
|
"x": 287.66666666666663,
|
||||||
"y": 766
|
"y": 566
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"x": 197.66666666666669,
|
"x": 287.66666666666663,
|
||||||
"y": 1192
|
"y": 802
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"x": 257.25,
|
||||||
|
"y": 802
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"x": 257.25,
|
||||||
|
"y": 942
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
"animated": false,
|
"animated": false,
|
||||||
|
|
@ -1569,12 +1601,20 @@
|
||||||
"labelPercentage": 0,
|
"labelPercentage": 0,
|
||||||
"route": [
|
"route": [
|
||||||
{
|
{
|
||||||
"x": 197.66666666666669,
|
"x": 257.25,
|
||||||
"y": 1258
|
"y": 1008
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"x": 197.66666666666669,
|
"x": 257.25,
|
||||||
"y": 1338
|
"y": 1048
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"x": 132.74999999999994,
|
||||||
|
"y": 1048
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"x": 132.74999999999994,
|
||||||
|
"y": 1088
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
"animated": false,
|
"animated": false,
|
||||||
|
|
@ -1609,28 +1649,28 @@
|
||||||
"labelPercentage": 0,
|
"labelPercentage": 0,
|
||||||
"route": [
|
"route": [
|
||||||
{
|
{
|
||||||
"x": 348.6666666666667,
|
"x": 392.75,
|
||||||
"y": 766
|
"y": 566
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"x": 348.6666666666667,
|
"x": 392.75,
|
||||||
"y": 806
|
"y": 606
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"x": 326.6666666666667,
|
"x": 353.41666666666663,
|
||||||
"y": 806
|
"y": 606
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"x": 326.6666666666667,
|
"x": 353.41666666666663,
|
||||||
"y": 1052
|
"y": 902
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"x": 227.66666666666669,
|
"x": 287.25,
|
||||||
"y": 1052
|
"y": 902
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"x": 227.66666666666669,
|
"x": 287.25,
|
||||||
"y": 1192
|
"y": 942
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
"animated": false,
|
"animated": false,
|
||||||
|
|
@ -1665,20 +1705,20 @@
|
||||||
"labelPercentage": 0,
|
"labelPercentage": 0,
|
||||||
"route": [
|
"route": [
|
||||||
{
|
{
|
||||||
"x": 97.33333333333337,
|
"x": 165.99999999999994,
|
||||||
"y": 1012
|
"y": 762
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"x": 97.33333333333337,
|
"x": 165.99999999999994,
|
||||||
"y": 1152
|
"y": 902
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"x": 167.66666666666669,
|
"x": 227.25,
|
||||||
"y": 1152
|
"y": 902
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"x": 167.66666666666669,
|
"x": 227.25,
|
||||||
"y": 1192
|
"y": 942
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
"animated": false,
|
"animated": false,
|
||||||
|
|
@ -1713,12 +1753,20 @@
|
||||||
"labelPercentage": 0,
|
"labelPercentage": 0,
|
||||||
"route": [
|
"route": [
|
||||||
{
|
{
|
||||||
"x": 485.6666666666667,
|
"x": 280,
|
||||||
"y": 420
|
"y": 370
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"x": 485.6666666666667,
|
"x": 280,
|
||||||
"y": 700
|
"y": 410
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"x": 529.75,
|
||||||
|
"y": 410
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"x": 529.75,
|
||||||
|
"y": 500
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
"animated": false,
|
"animated": false,
|
||||||
|
|
@ -1753,20 +1801,20 @@
|
||||||
"labelPercentage": 0,
|
"labelPercentage": 0,
|
||||||
"route": [
|
"route": [
|
||||||
{
|
{
|
||||||
"x": 559.1666666666667,
|
"x": 603.25,
|
||||||
"y": 766
|
"y": 566
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"x": 559.1666666666667,
|
"x": 603.25,
|
||||||
"y": 806
|
"y": 606
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"x": 438.6666666666667,
|
"x": 601.5,
|
||||||
"y": 806
|
"y": 606
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"x": 438.6666666666667,
|
"x": 601.5,
|
||||||
"y": 946
|
"y": 696
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
"animated": false,
|
"animated": false,
|
||||||
|
|
@ -1801,12 +1849,12 @@
|
||||||
"labelPercentage": 0,
|
"labelPercentage": 0,
|
||||||
"route": [
|
"route": [
|
||||||
{
|
{
|
||||||
"x": 337.6666666666667,
|
"x": 444.3333333333333,
|
||||||
"y": 1258
|
"y": 1008
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"x": 337.6666666666667,
|
"x": 444.3333333333333,
|
||||||
"y": 1338
|
"y": 1088
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
"animated": false,
|
"animated": false,
|
||||||
|
|
|
||||||
154
e2etests/testdata/stable/dense/elk/sketch.exp.svg
vendored
|
Before Width: | Height: | Size: 341 KiB After Width: | Height: | Size: 342 KiB |
152
e2etests/testdata/stable/different_subgraphs/elk/board.exp.json
generated
vendored
|
|
@ -7,7 +7,7 @@
|
||||||
"id": "a",
|
"id": "a",
|
||||||
"type": "rectangle",
|
"type": "rectangle",
|
||||||
"pos": {
|
"pos": {
|
||||||
"x": 269,
|
"x": 199,
|
||||||
"y": 530
|
"y": 530
|
||||||
},
|
},
|
||||||
"width": 120,
|
"width": 120,
|
||||||
|
|
@ -48,8 +48,8 @@
|
||||||
"id": "tree",
|
"id": "tree",
|
||||||
"type": "rectangle",
|
"type": "rectangle",
|
||||||
"pos": {
|
"pos": {
|
||||||
"x": 102,
|
"x": 64,
|
||||||
"y": 726
|
"y": 676
|
||||||
},
|
},
|
||||||
"width": 80,
|
"width": 80,
|
||||||
"height": 66,
|
"height": 66,
|
||||||
|
|
@ -90,7 +90,7 @@
|
||||||
"type": "rectangle",
|
"type": "rectangle",
|
||||||
"pos": {
|
"pos": {
|
||||||
"x": 223,
|
"x": 223,
|
||||||
"y": 726
|
"y": 676
|
||||||
},
|
},
|
||||||
"width": 72,
|
"width": 72,
|
||||||
"height": 66,
|
"height": 66,
|
||||||
|
|
@ -131,7 +131,7 @@
|
||||||
"type": "rectangle",
|
"type": "rectangle",
|
||||||
"pos": {
|
"pos": {
|
||||||
"x": 315,
|
"x": 315,
|
||||||
"y": 726
|
"y": 676
|
||||||
},
|
},
|
||||||
"width": 87,
|
"width": 87,
|
||||||
"height": 66,
|
"height": 66,
|
||||||
|
|
@ -172,7 +172,7 @@
|
||||||
"type": "rectangle",
|
"type": "rectangle",
|
||||||
"pos": {
|
"pos": {
|
||||||
"x": 218,
|
"x": 218,
|
||||||
"y": 872
|
"y": 822
|
||||||
},
|
},
|
||||||
"width": 83,
|
"width": 83,
|
||||||
"height": 66,
|
"height": 66,
|
||||||
|
|
@ -213,7 +213,7 @@
|
||||||
"type": "rectangle",
|
"type": "rectangle",
|
||||||
"pos": {
|
"pos": {
|
||||||
"x": 12,
|
"x": 12,
|
||||||
"y": 872
|
"y": 822
|
||||||
},
|
},
|
||||||
"width": 81,
|
"width": 81,
|
||||||
"height": 66,
|
"height": 66,
|
||||||
|
|
@ -254,7 +254,7 @@
|
||||||
"type": "rectangle",
|
"type": "rectangle",
|
||||||
"pos": {
|
"pos": {
|
||||||
"x": 113,
|
"x": 113,
|
||||||
"y": 872
|
"y": 822
|
||||||
},
|
},
|
||||||
"width": 85,
|
"width": 85,
|
||||||
"height": 66,
|
"height": 66,
|
||||||
|
|
@ -336,7 +336,7 @@
|
||||||
"type": "rectangle",
|
"type": "rectangle",
|
||||||
"pos": {
|
"pos": {
|
||||||
"x": 422,
|
"x": 422,
|
||||||
"y": 726
|
"y": 676
|
||||||
},
|
},
|
||||||
"width": 76,
|
"width": 76,
|
||||||
"height": 66,
|
"height": 66,
|
||||||
|
|
@ -377,7 +377,7 @@
|
||||||
"type": "rectangle",
|
"type": "rectangle",
|
||||||
"pos": {
|
"pos": {
|
||||||
"x": 424,
|
"x": 424,
|
||||||
"y": 872
|
"y": 822
|
||||||
},
|
},
|
||||||
"width": 72,
|
"width": 72,
|
||||||
"height": 66,
|
"height": 66,
|
||||||
|
|
@ -459,7 +459,7 @@
|
||||||
"type": "rectangle",
|
"type": "rectangle",
|
||||||
"pos": {
|
"pos": {
|
||||||
"x": 518,
|
"x": 518,
|
||||||
"y": 726
|
"y": 676
|
||||||
},
|
},
|
||||||
"width": 113,
|
"width": 113,
|
||||||
"height": 66,
|
"height": 66,
|
||||||
|
|
@ -541,7 +541,7 @@
|
||||||
"type": "rectangle",
|
"type": "rectangle",
|
||||||
"pos": {
|
"pos": {
|
||||||
"x": 697,
|
"x": 697,
|
||||||
"y": 726
|
"y": 676
|
||||||
},
|
},
|
||||||
"width": 103,
|
"width": 103,
|
||||||
"height": 66,
|
"height": 66,
|
||||||
|
|
@ -582,7 +582,7 @@
|
||||||
"type": "rectangle",
|
"type": "rectangle",
|
||||||
"pos": {
|
"pos": {
|
||||||
"x": 719,
|
"x": 719,
|
||||||
"y": 872
|
"y": 822
|
||||||
},
|
},
|
||||||
"width": 60,
|
"width": 60,
|
||||||
"height": 66,
|
"height": 66,
|
||||||
|
|
@ -664,7 +664,7 @@
|
||||||
"type": "rectangle",
|
"type": "rectangle",
|
||||||
"pos": {
|
"pos": {
|
||||||
"x": 955,
|
"x": 955,
|
||||||
"y": 726
|
"y": 676
|
||||||
},
|
},
|
||||||
"width": 82,
|
"width": 82,
|
||||||
"height": 66,
|
"height": 66,
|
||||||
|
|
@ -704,7 +704,7 @@
|
||||||
"id": "finally.a",
|
"id": "finally.a",
|
||||||
"type": "rectangle",
|
"type": "rectangle",
|
||||||
"pos": {
|
"pos": {
|
||||||
"x": 732,
|
"x": 766,
|
||||||
"y": 198
|
"y": 198
|
||||||
},
|
},
|
||||||
"width": 80,
|
"width": 80,
|
||||||
|
|
@ -786,7 +786,7 @@
|
||||||
"id": "finally.inside",
|
"id": "finally.inside",
|
||||||
"type": "rectangle",
|
"type": "rectangle",
|
||||||
"pos": {
|
"pos": {
|
||||||
"x": 728,
|
"x": 762,
|
||||||
"y": 62
|
"y": 62
|
||||||
},
|
},
|
||||||
"width": 88,
|
"width": 88,
|
||||||
|
|
@ -934,20 +934,20 @@
|
||||||
"labelPercentage": 0,
|
"labelPercentage": 0,
|
||||||
"route": [
|
"route": [
|
||||||
{
|
{
|
||||||
"x": 299,
|
"x": 229.5,
|
||||||
"y": 596
|
"y": 596
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"x": 299,
|
"x": 229.5,
|
||||||
"y": 636
|
"y": 636
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"x": 142.16666666666663,
|
"x": 104,
|
||||||
"y": 636
|
"y": 636
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"x": 142.16666666666663,
|
"x": 104,
|
||||||
"y": 726
|
"y": 676
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
"animated": false,
|
"animated": false,
|
||||||
|
|
@ -982,20 +982,12 @@
|
||||||
"labelPercentage": 0,
|
"labelPercentage": 0,
|
||||||
"route": [
|
"route": [
|
||||||
{
|
{
|
||||||
"x": 329,
|
"x": 259.5,
|
||||||
"y": 596
|
"y": 596
|
||||||
},
|
},
|
||||||
{
|
|
||||||
"x": 329,
|
|
||||||
"y": 686
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
"x": 259.5,
|
"x": 259.5,
|
||||||
"y": 686
|
"y": 676
|
||||||
},
|
|
||||||
{
|
|
||||||
"x": 259.5,
|
|
||||||
"y": 726
|
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
"animated": false,
|
"animated": false,
|
||||||
|
|
@ -1030,12 +1022,20 @@
|
||||||
"labelPercentage": 0,
|
"labelPercentage": 0,
|
||||||
"route": [
|
"route": [
|
||||||
{
|
{
|
||||||
"x": 359,
|
"x": 289.5,
|
||||||
"y": 596
|
"y": 596
|
||||||
},
|
},
|
||||||
|
{
|
||||||
|
"x": 289.5,
|
||||||
|
"y": 636
|
||||||
|
},
|
||||||
{
|
{
|
||||||
"x": 359,
|
"x": 359,
|
||||||
"y": 726
|
"y": 636
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"x": 359,
|
||||||
|
"y": 676
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
"animated": false,
|
"animated": false,
|
||||||
|
|
@ -1071,11 +1071,11 @@
|
||||||
"route": [
|
"route": [
|
||||||
{
|
{
|
||||||
"x": 259.5,
|
"x": 259.5,
|
||||||
"y": 792
|
"y": 742
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"x": 259.5,
|
"x": 259.5,
|
||||||
"y": 872
|
"y": 822
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
"animated": false,
|
"animated": false,
|
||||||
|
|
@ -1110,20 +1110,20 @@
|
||||||
"labelPercentage": 0,
|
"labelPercentage": 0,
|
||||||
"route": [
|
"route": [
|
||||||
{
|
{
|
||||||
"x": 128.83333333333326,
|
"x": 90.66666666666663,
|
||||||
"y": 792
|
"y": 742
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"x": 128.83333333333326,
|
"x": 90.66666666666663,
|
||||||
"y": 832
|
"y": 782
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"x": 52.5,
|
"x": 52.5,
|
||||||
"y": 832
|
"y": 782
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"x": 52.5,
|
"x": 52.5,
|
||||||
"y": 872
|
"y": 822
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
"animated": false,
|
"animated": false,
|
||||||
|
|
@ -1158,12 +1158,20 @@
|
||||||
"labelPercentage": 0,
|
"labelPercentage": 0,
|
||||||
"route": [
|
"route": [
|
||||||
{
|
{
|
||||||
"x": 155.5,
|
"x": 117.33333333333337,
|
||||||
"y": 792
|
"y": 742
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"x": 117.33333333333337,
|
||||||
|
"y": 782
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"x": 155.5,
|
"x": 155.5,
|
||||||
"y": 872
|
"y": 782
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"x": 155.5,
|
||||||
|
"y": 822
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
"animated": false,
|
"animated": false,
|
||||||
|
|
@ -1203,7 +1211,7 @@
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"x": 460.5,
|
"x": 460.5,
|
||||||
"y": 726
|
"y": 676
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
"animated": false,
|
"animated": false,
|
||||||
|
|
@ -1239,11 +1247,11 @@
|
||||||
"route": [
|
"route": [
|
||||||
{
|
{
|
||||||
"x": 460.5,
|
"x": 460.5,
|
||||||
"y": 792
|
"y": 742
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"x": 460.5,
|
"x": 460.5,
|
||||||
"y": 872
|
"y": 822
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
"animated": false,
|
"animated": false,
|
||||||
|
|
@ -1283,7 +1291,7 @@
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"x": 593.8333333333334,
|
"x": 593.8333333333334,
|
||||||
"y": 726
|
"y": 676
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
"animated": false,
|
"animated": false,
|
||||||
|
|
@ -1331,7 +1339,7 @@
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"x": 556.1666666666667,
|
"x": 556.1666666666667,
|
||||||
"y": 726
|
"y": 676
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
"animated": false,
|
"animated": false,
|
||||||
|
|
@ -1371,7 +1379,7 @@
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"x": 749,
|
"x": 749,
|
||||||
"y": 726
|
"y": 676
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
"animated": false,
|
"animated": false,
|
||||||
|
|
@ -1407,11 +1415,11 @@
|
||||||
"route": [
|
"route": [
|
||||||
{
|
{
|
||||||
"x": 749,
|
"x": 749,
|
||||||
"y": 792
|
"y": 742
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"x": 749,
|
"x": 749,
|
||||||
"y": 872
|
"y": 822
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
"animated": false,
|
"animated": false,
|
||||||
|
|
@ -1446,12 +1454,12 @@
|
||||||
"labelPercentage": 0,
|
"labelPercentage": 0,
|
||||||
"route": [
|
"route": [
|
||||||
{
|
{
|
||||||
"x": 1010.3333333333333,
|
"x": 1010.3333333333334,
|
||||||
"y": 596
|
"y": 596
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"x": 1010.3333333333333,
|
"x": 1010.3333333333334,
|
||||||
"y": 726
|
"y": 676
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
"animated": false,
|
"animated": false,
|
||||||
|
|
@ -1486,11 +1494,11 @@
|
||||||
"labelPercentage": 0,
|
"labelPercentage": 0,
|
||||||
"route": [
|
"route": [
|
||||||
{
|
{
|
||||||
"x": 845.1666666666666,
|
"x": 845.1666666666667,
|
||||||
"y": 596
|
"y": 596
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"x": 845.1666666666666,
|
"x": 845.1666666666667,
|
||||||
"y": 636
|
"y": 636
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
|
|
@ -1499,7 +1507,7 @@
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"x": 983,
|
"x": 983,
|
||||||
"y": 726
|
"y": 676
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
"animated": false,
|
"animated": false,
|
||||||
|
|
@ -1534,11 +1542,19 @@
|
||||||
"labelPercentage": 0,
|
"labelPercentage": 0,
|
||||||
"route": [
|
"route": [
|
||||||
{
|
{
|
||||||
"x": 759.3333333333333,
|
"x": 793.25,
|
||||||
"y": 264
|
"y": 264
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"x": 759.3333333333333,
|
"x": 793.25,
|
||||||
|
"y": 304
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"x": 759.3333333333334,
|
||||||
|
"y": 304
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"x": 759.3333333333334,
|
||||||
"y": 344
|
"y": 344
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
|
|
@ -1574,11 +1590,11 @@
|
||||||
"labelPercentage": 0,
|
"labelPercentage": 0,
|
||||||
"route": [
|
"route": [
|
||||||
{
|
{
|
||||||
"x": 772.6666666666666,
|
"x": 806.5833333333334,
|
||||||
"y": 128
|
"y": 128
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"x": 772.6666666666666,
|
"x": 806.5833333333334,
|
||||||
"y": 198
|
"y": 198
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
|
|
@ -1614,11 +1630,11 @@
|
||||||
"labelPercentage": 0,
|
"labelPercentage": 0,
|
||||||
"route": [
|
"route": [
|
||||||
{
|
{
|
||||||
"x": 759.3333333333333,
|
"x": 759.3333333333334,
|
||||||
"y": 410
|
"y": 410
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"x": 759.3333333333333,
|
"x": 759.3333333333334,
|
||||||
"y": 480
|
"y": 480
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
|
|
@ -1654,19 +1670,19 @@
|
||||||
"labelPercentage": 0,
|
"labelPercentage": 0,
|
||||||
"route": [
|
"route": [
|
||||||
{
|
{
|
||||||
"x": 786,
|
"x": 819.9166666666667,
|
||||||
"y": 264
|
"y": 264
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"x": 786,
|
"x": 819.9166666666667,
|
||||||
"y": 304
|
"y": 304
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"x": 853.8333333333333,
|
"x": 853.8333333333334,
|
||||||
"y": 304
|
"y": 304
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"x": 853.8333333333333,
|
"x": 853.8333333333334,
|
||||||
"y": 344
|
"y": 344
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
|
|
|
||||||
|
Before Width: | Height: | Size: 664 KiB After Width: | Height: | Size: 664 KiB |
8
e2etests/testdata/stable/elk_border_radius/elk/board.exp.json
generated
vendored
|
|
@ -278,11 +278,11 @@
|
||||||
"labelPercentage": 0,
|
"labelPercentage": 0,
|
||||||
"route": [
|
"route": [
|
||||||
{
|
{
|
||||||
"x": 117.83333333333334,
|
"x": 117.83333333333333,
|
||||||
"y": 78
|
"y": 78
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"x": 117.83333333333334,
|
"x": 117.83333333333333,
|
||||||
"y": 118
|
"y": 118
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
|
|
@ -325,11 +325,11 @@
|
||||||
"labelPercentage": 0,
|
"labelPercentage": 0,
|
||||||
"route": [
|
"route": [
|
||||||
{
|
{
|
||||||
"x": 151.16666666666669,
|
"x": 151.16666666666666,
|
||||||
"y": 78
|
"y": 78
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"x": 151.16666666666669,
|
"x": 151.16666666666666,
|
||||||
"y": 168
|
"y": 168
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
|
|
|
||||||
|
Before Width: | Height: | Size: 332 KiB After Width: | Height: | Size: 332 KiB |
498
e2etests/testdata/stable/investigate/elk/board.exp.json
generated
vendored
|
|
@ -7,7 +7,7 @@
|
||||||
"id": "aa",
|
"id": "aa",
|
||||||
"type": "step",
|
"type": "step",
|
||||||
"pos": {
|
"pos": {
|
||||||
"x": 70,
|
"x": 195,
|
||||||
"y": 12
|
"y": 12
|
||||||
},
|
},
|
||||||
"width": 102,
|
"width": 102,
|
||||||
|
|
@ -48,7 +48,7 @@
|
||||||
"id": "bb",
|
"id": "bb",
|
||||||
"type": "step",
|
"type": "step",
|
||||||
"pos": {
|
"pos": {
|
||||||
"x": 155,
|
"x": 245,
|
||||||
"y": 193
|
"y": 193
|
||||||
},
|
},
|
||||||
"width": 103,
|
"width": 103,
|
||||||
|
|
@ -89,7 +89,7 @@
|
||||||
"id": "cc",
|
"id": "cc",
|
||||||
"type": "step",
|
"type": "step",
|
||||||
"pos": {
|
"pos": {
|
||||||
"x": 138,
|
"x": 185,
|
||||||
"y": 374
|
"y": 374
|
||||||
},
|
},
|
||||||
"width": 101,
|
"width": 101,
|
||||||
|
|
@ -130,11 +130,11 @@
|
||||||
"id": "dd",
|
"id": "dd",
|
||||||
"type": "rectangle",
|
"type": "rectangle",
|
||||||
"pos": {
|
"pos": {
|
||||||
"x": 22,
|
"x": 68,
|
||||||
"y": 641
|
"y": 641
|
||||||
},
|
},
|
||||||
"width": 250,
|
"width": 250,
|
||||||
"height": 272,
|
"height": 322,
|
||||||
"opacity": 1,
|
"opacity": 1,
|
||||||
"strokeDash": 0,
|
"strokeDash": 0,
|
||||||
"strokeWidth": 2,
|
"strokeWidth": 2,
|
||||||
|
|
@ -171,7 +171,7 @@
|
||||||
"id": "dd.ee",
|
"id": "dd.ee",
|
||||||
"type": "diamond",
|
"type": "diamond",
|
||||||
"pos": {
|
"pos": {
|
||||||
"x": 72,
|
"x": 118,
|
||||||
"y": 691
|
"y": 691
|
||||||
},
|
},
|
||||||
"width": 64,
|
"width": 64,
|
||||||
|
|
@ -212,11 +212,11 @@
|
||||||
"id": "ff",
|
"id": "ff",
|
||||||
"type": "rectangle",
|
"type": "rectangle",
|
||||||
"pos": {
|
"pos": {
|
||||||
"x": 289,
|
"x": 273,
|
||||||
"y": 1839
|
"y": 1889
|
||||||
},
|
},
|
||||||
"width": 283,
|
"width": 281,
|
||||||
"height": 338,
|
"height": 388,
|
||||||
"opacity": 1,
|
"opacity": 1,
|
||||||
"strokeDash": 0,
|
"strokeDash": 0,
|
||||||
"strokeWidth": 2,
|
"strokeWidth": 2,
|
||||||
|
|
@ -253,8 +253,8 @@
|
||||||
"id": "ff.gg",
|
"id": "ff.gg",
|
||||||
"type": "diamond",
|
"type": "diamond",
|
||||||
"pos": {
|
"pos": {
|
||||||
"x": 342,
|
"x": 323,
|
||||||
"y": 1889
|
"y": 1939
|
||||||
},
|
},
|
||||||
"width": 80,
|
"width": 80,
|
||||||
"height": 92,
|
"height": 92,
|
||||||
|
|
@ -294,7 +294,7 @@
|
||||||
"id": "dd.hh",
|
"id": "dd.hh",
|
||||||
"type": "diamond",
|
"type": "diamond",
|
||||||
"pos": {
|
"pos": {
|
||||||
"x": 156,
|
"x": 202,
|
||||||
"y": 691
|
"y": 691
|
||||||
},
|
},
|
||||||
"width": 66,
|
"width": 66,
|
||||||
|
|
@ -335,8 +335,8 @@
|
||||||
"id": "ii",
|
"id": "ii",
|
||||||
"type": "rectangle",
|
"type": "rectangle",
|
||||||
"pos": {
|
"pos": {
|
||||||
"x": 303,
|
"x": 208,
|
||||||
"y": 998
|
"y": 1048
|
||||||
},
|
},
|
||||||
"width": 54,
|
"width": 54,
|
||||||
"height": 66,
|
"height": 66,
|
||||||
|
|
@ -376,8 +376,8 @@
|
||||||
"id": "jj",
|
"id": "jj",
|
||||||
"type": "rectangle",
|
"type": "rectangle",
|
||||||
"pos": {
|
"pos": {
|
||||||
"x": 303,
|
"x": 207,
|
||||||
"y": 1189
|
"y": 1239
|
||||||
},
|
},
|
||||||
"width": 55,
|
"width": 55,
|
||||||
"height": 66,
|
"height": 66,
|
||||||
|
|
@ -417,8 +417,8 @@
|
||||||
"id": "kk",
|
"id": "kk",
|
||||||
"type": "rectangle",
|
"type": "rectangle",
|
||||||
"pos": {
|
"pos": {
|
||||||
"x": 290,
|
"x": 195,
|
||||||
"y": 1451
|
"y": 1501
|
||||||
},
|
},
|
||||||
"width": 80,
|
"width": 80,
|
||||||
"height": 66,
|
"height": 66,
|
||||||
|
|
@ -458,8 +458,8 @@
|
||||||
"id": "ll",
|
"id": "ll",
|
||||||
"type": "rectangle",
|
"type": "rectangle",
|
||||||
"pos": {
|
"pos": {
|
||||||
"x": 249,
|
"x": 251,
|
||||||
"y": 2358
|
"y": 2468
|
||||||
},
|
},
|
||||||
"width": 265,
|
"width": 265,
|
||||||
"height": 317,
|
"height": 317,
|
||||||
|
|
@ -499,8 +499,8 @@
|
||||||
"id": "ll.mm",
|
"id": "ll.mm",
|
||||||
"type": "oval",
|
"type": "oval",
|
||||||
"pos": {
|
"pos": {
|
||||||
"x": 299,
|
"x": 301,
|
||||||
"y": 2408
|
"y": 2518
|
||||||
},
|
},
|
||||||
"width": 81,
|
"width": 81,
|
||||||
"height": 81,
|
"height": 81,
|
||||||
|
|
@ -540,8 +540,8 @@
|
||||||
"id": "ff.mm",
|
"id": "ff.mm",
|
||||||
"type": "oval",
|
"type": "oval",
|
||||||
"pos": {
|
"pos": {
|
||||||
"x": 442,
|
"x": 423,
|
||||||
"y": 1894
|
"y": 1944
|
||||||
},
|
},
|
||||||
"width": 81,
|
"width": 81,
|
||||||
"height": 81,
|
"height": 81,
|
||||||
|
|
@ -581,8 +581,8 @@
|
||||||
"id": "nn",
|
"id": "nn",
|
||||||
"type": "cylinder",
|
"type": "cylinder",
|
||||||
"pos": {
|
"pos": {
|
||||||
"x": 12,
|
"x": 79,
|
||||||
"y": 3259
|
"y": 3469
|
||||||
},
|
},
|
||||||
"width": 327,
|
"width": 327,
|
||||||
"height": 166,
|
"height": 166,
|
||||||
|
|
@ -622,8 +622,8 @@
|
||||||
"id": "nn.oo",
|
"id": "nn.oo",
|
||||||
"type": "rectangle",
|
"type": "rectangle",
|
||||||
"pos": {
|
"pos": {
|
||||||
"x": 62,
|
"x": 129,
|
||||||
"y": 3309
|
"y": 3519
|
||||||
},
|
},
|
||||||
"width": 63,
|
"width": 63,
|
||||||
"height": 66,
|
"height": 66,
|
||||||
|
|
@ -663,8 +663,8 @@
|
||||||
"id": "ff.pp",
|
"id": "ff.pp",
|
||||||
"type": "rectangle",
|
"type": "rectangle",
|
||||||
"pos": {
|
"pos": {
|
||||||
"x": 350,
|
"x": 402,
|
||||||
"y": 2061
|
"y": 2161
|
||||||
},
|
},
|
||||||
"width": 63,
|
"width": 63,
|
||||||
"height": 66,
|
"height": 66,
|
||||||
|
|
@ -704,8 +704,8 @@
|
||||||
"id": "ll.qq",
|
"id": "ll.qq",
|
||||||
"type": "rectangle",
|
"type": "rectangle",
|
||||||
"pos": {
|
"pos": {
|
||||||
"x": 400,
|
"x": 402,
|
||||||
"y": 2415
|
"y": 2525
|
||||||
},
|
},
|
||||||
"width": 64,
|
"width": 64,
|
||||||
"height": 66,
|
"height": 66,
|
||||||
|
|
@ -745,8 +745,8 @@
|
||||||
"id": "ll.rr",
|
"id": "ll.rr",
|
||||||
"type": "rectangle",
|
"type": "rectangle",
|
||||||
"pos": {
|
"pos": {
|
||||||
"x": 403,
|
"x": 405,
|
||||||
"y": 2559
|
"y": 2669
|
||||||
},
|
},
|
||||||
"width": 58,
|
"width": 58,
|
||||||
"height": 66,
|
"height": 66,
|
||||||
|
|
@ -786,8 +786,8 @@
|
||||||
"id": "ss",
|
"id": "ss",
|
||||||
"type": "rectangle",
|
"type": "rectangle",
|
||||||
"pos": {
|
"pos": {
|
||||||
"x": 110,
|
"x": 14,
|
||||||
"y": 1139
|
"y": 1189
|
||||||
},
|
},
|
||||||
"width": 158,
|
"width": 158,
|
||||||
"height": 166,
|
"height": 166,
|
||||||
|
|
@ -827,8 +827,8 @@
|
||||||
"id": "ss.tt",
|
"id": "ss.tt",
|
||||||
"type": "rectangle",
|
"type": "rectangle",
|
||||||
"pos": {
|
"pos": {
|
||||||
"x": 160,
|
"x": 64,
|
||||||
"y": 1189
|
"y": 1239
|
||||||
},
|
},
|
||||||
"width": 58,
|
"width": 58,
|
||||||
"height": 66,
|
"height": 66,
|
||||||
|
|
@ -868,8 +868,8 @@
|
||||||
"id": "uu",
|
"id": "uu",
|
||||||
"type": "rectangle",
|
"type": "rectangle",
|
||||||
"pos": {
|
"pos": {
|
||||||
"x": 107,
|
"x": 12,
|
||||||
"y": 1385
|
"y": 1435
|
||||||
},
|
},
|
||||||
"width": 163,
|
"width": 163,
|
||||||
"height": 166,
|
"height": 166,
|
||||||
|
|
@ -909,8 +909,8 @@
|
||||||
"id": "uu.vv",
|
"id": "uu.vv",
|
||||||
"type": "rectangle",
|
"type": "rectangle",
|
||||||
"pos": {
|
"pos": {
|
||||||
"x": 157,
|
"x": 62,
|
||||||
"y": 1435
|
"y": 1485
|
||||||
},
|
},
|
||||||
"width": 63,
|
"width": 63,
|
||||||
"height": 66,
|
"height": 66,
|
||||||
|
|
@ -950,8 +950,8 @@
|
||||||
"id": "ww",
|
"id": "ww",
|
||||||
"type": "queue",
|
"type": "queue",
|
||||||
"pos": {
|
"pos": {
|
||||||
"x": 139,
|
"x": 103,
|
||||||
"y": 1636
|
"y": 1686
|
||||||
},
|
},
|
||||||
"width": 149,
|
"width": 149,
|
||||||
"height": 118,
|
"height": 118,
|
||||||
|
|
@ -1003,8 +1003,8 @@
|
||||||
"id": "rm",
|
"id": "rm",
|
||||||
"type": "rectangle",
|
"type": "rectangle",
|
||||||
"pos": {
|
"pos": {
|
||||||
"x": 149,
|
"x": 113,
|
||||||
"y": 2525
|
"y": 2635
|
||||||
},
|
},
|
||||||
"width": 80,
|
"width": 80,
|
||||||
"height": 66,
|
"height": 66,
|
||||||
|
|
@ -1044,8 +1044,8 @@
|
||||||
"id": "nn.xx",
|
"id": "nn.xx",
|
||||||
"type": "rectangle",
|
"type": "rectangle",
|
||||||
"pos": {
|
"pos": {
|
||||||
"x": 145,
|
"x": 212,
|
||||||
"y": 3309
|
"y": 3519
|
||||||
},
|
},
|
||||||
"width": 62,
|
"width": 62,
|
||||||
"height": 66,
|
"height": 66,
|
||||||
|
|
@ -1085,8 +1085,8 @@
|
||||||
"id": "yy",
|
"id": "yy",
|
||||||
"type": "rectangle",
|
"type": "rectangle",
|
||||||
"pos": {
|
"pos": {
|
||||||
"x": 290,
|
"x": 309,
|
||||||
"y": 2815
|
"y": 2975
|
||||||
},
|
},
|
||||||
"width": 238,
|
"width": 238,
|
||||||
"height": 354,
|
"height": 354,
|
||||||
|
|
@ -1126,8 +1126,8 @@
|
||||||
"id": "yy.zz",
|
"id": "yy.zz",
|
||||||
"type": "queue",
|
"type": "queue",
|
||||||
"pos": {
|
"pos": {
|
||||||
"x": 340,
|
"x": 359,
|
||||||
"y": 2865
|
"y": 3025
|
||||||
},
|
},
|
||||||
"width": 138,
|
"width": 138,
|
||||||
"height": 118,
|
"height": 118,
|
||||||
|
|
@ -1179,8 +1179,8 @@
|
||||||
"id": "yy.ab",
|
"id": "yy.ab",
|
||||||
"type": "rectangle",
|
"type": "rectangle",
|
||||||
"pos": {
|
"pos": {
|
||||||
"x": 377,
|
"x": 397,
|
||||||
"y": 3053
|
"y": 3213
|
||||||
},
|
},
|
||||||
"width": 63,
|
"width": 63,
|
||||||
"height": 66,
|
"height": 66,
|
||||||
|
|
@ -1220,8 +1220,8 @@
|
||||||
"id": "nn.ac",
|
"id": "nn.ac",
|
||||||
"type": "rectangle",
|
"type": "rectangle",
|
||||||
"pos": {
|
"pos": {
|
||||||
"x": 227,
|
"x": 294,
|
||||||
"y": 3309
|
"y": 3519
|
||||||
},
|
},
|
||||||
"width": 62,
|
"width": 62,
|
||||||
"height": 66,
|
"height": 66,
|
||||||
|
|
@ -1261,8 +1261,8 @@
|
||||||
"id": "ad",
|
"id": "ad",
|
||||||
"type": "parallelogram",
|
"type": "parallelogram",
|
||||||
"pos": {
|
"pos": {
|
||||||
"x": 200,
|
"x": 267,
|
||||||
"y": 3500
|
"y": 3710
|
||||||
},
|
},
|
||||||
"width": 115,
|
"width": 115,
|
||||||
"height": 66,
|
"height": 66,
|
||||||
|
|
@ -1327,19 +1327,19 @@
|
||||||
"labelPercentage": 0,
|
"labelPercentage": 0,
|
||||||
"route": [
|
"route": [
|
||||||
{
|
{
|
||||||
"x": 138,
|
"x": 263,
|
||||||
"y": 111
|
"y": 111
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"x": 138.33333333333334,
|
"x": 263.08333333333337,
|
||||||
"y": 153
|
"y": 153
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"x": 206.5,
|
"x": 297.16666666666663,
|
||||||
"y": 153
|
"y": 153
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"x": 207,
|
"x": 297,
|
||||||
"y": 193
|
"y": 193
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
|
|
@ -1375,11 +1375,19 @@
|
||||||
"labelPercentage": 0,
|
"labelPercentage": 0,
|
||||||
"route": [
|
"route": [
|
||||||
{
|
{
|
||||||
"x": 189,
|
"x": 280,
|
||||||
"y": 294
|
"y": 294
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"x": 189,
|
"x": 280,
|
||||||
|
"y": 334
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"x": 235.66666666666669,
|
||||||
|
"y": 334
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"x": 236,
|
||||||
"y": 374
|
"y": 374
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
|
|
@ -1415,11 +1423,19 @@
|
||||||
"labelPercentage": 0,
|
"labelPercentage": 0,
|
||||||
"route": [
|
"route": [
|
||||||
{
|
{
|
||||||
"x": 104,
|
"x": 229,
|
||||||
"y": 113
|
"y": 113
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"x": 104,
|
"x": 229.08333333333334,
|
||||||
|
"y": 153
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"x": 150.66666666666669,
|
||||||
|
"y": 153
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"x": 151,
|
||||||
"y": 691
|
"y": 691
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
|
|
@ -1455,20 +1471,20 @@
|
||||||
"labelPercentage": 0,
|
"labelPercentage": 0,
|
||||||
"route": [
|
"route": [
|
||||||
{
|
{
|
||||||
"x": 224,
|
"x": 314,
|
||||||
"y": 293
|
"y": 294
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"x": 223.66666666666666,
|
"x": 314.33333333333337,
|
||||||
"y": 334
|
"y": 334
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"x": 395.66666666666663,
|
"x": 376.5,
|
||||||
"y": 334
|
"y": 334
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"x": 396,
|
"x": 377,
|
||||||
"y": 1904
|
"y": 1955
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
"animated": false,
|
"animated": false,
|
||||||
|
|
@ -1503,11 +1519,11 @@
|
||||||
"labelPercentage": 0,
|
"labelPercentage": 0,
|
||||||
"route": [
|
"route": [
|
||||||
{
|
{
|
||||||
"x": 189,
|
"x": 236,
|
||||||
"y": 475
|
"y": 475
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"x": 189,
|
"x": 236,
|
||||||
"y": 691
|
"y": 691
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
|
|
@ -1543,28 +1559,28 @@
|
||||||
"labelPercentage": 0,
|
"labelPercentage": 0,
|
||||||
"route": [
|
"route": [
|
||||||
{
|
{
|
||||||
"x": 104,
|
"x": 151,
|
||||||
"y": 783
|
"y": 783
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"x": 104.33333333333334,
|
"x": 150.66666666666669,
|
||||||
"y": 823
|
"y": 873
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"x": 199.33333333333334,
|
"x": 198.16666666666669,
|
||||||
"y": 823
|
"y": 873
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"x": 199.33333333333334,
|
"x": 198.16666666666666,
|
||||||
"y": 958
|
"y": 1008
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"x": 330.83333333333337,
|
"x": 235,
|
||||||
"y": 958
|
"y": 1008
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"x": 330.83333333333337,
|
"x": 235,
|
||||||
"y": 998
|
"y": 1048
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
"animated": false,
|
"animated": false,
|
||||||
|
|
@ -1599,12 +1615,12 @@
|
||||||
"labelPercentage": 0,
|
"labelPercentage": 0,
|
||||||
"route": [
|
"route": [
|
||||||
{
|
{
|
||||||
"x": 330.83333333333337,
|
"x": 235,
|
||||||
"y": 1064
|
"y": 1114
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"x": 330.83333333333337,
|
"x": 235,
|
||||||
"y": 1189
|
"y": 1239
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
"animated": false,
|
"animated": false,
|
||||||
|
|
@ -1639,12 +1655,12 @@
|
||||||
"labelPercentage": 0,
|
"labelPercentage": 0,
|
||||||
"route": [
|
"route": [
|
||||||
{
|
{
|
||||||
"x": 330.83333333333337,
|
"x": 235,
|
||||||
"y": 1255
|
"y": 1305
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"x": 330.83333333333337,
|
"x": 235,
|
||||||
"y": 1451.6666666666667
|
"y": 1501.6666666666667
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
"animated": false,
|
"animated": false,
|
||||||
|
|
@ -1679,20 +1695,28 @@
|
||||||
"labelPercentage": 0,
|
"labelPercentage": 0,
|
||||||
"route": [
|
"route": [
|
||||||
{
|
{
|
||||||
"x": 344.1666666666667,
|
"x": 248.33333333333334,
|
||||||
"y": 1517.6666666666667
|
"y": 1567.6666666666667
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"x": 344.1666666666667,
|
"x": 248.33333333333334,
|
||||||
"y": 1596
|
"y": 1646
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"x": 482.8333333333333,
|
"x": 442.58333333333337,
|
||||||
"y": 1596
|
"y": 1646
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"x": 483,
|
"x": 442.58333333333337,
|
||||||
"y": 1895
|
"y": 1844
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"x": 463.66666666666663,
|
||||||
|
"y": 1844
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"x": 464,
|
||||||
|
"y": 1945
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
"animated": false,
|
"animated": false,
|
||||||
|
|
@ -1727,20 +1751,36 @@
|
||||||
"labelPercentage": 0,
|
"labelPercentage": 0,
|
||||||
"route": [
|
"route": [
|
||||||
{
|
{
|
||||||
"x": 483,
|
"x": 464,
|
||||||
"y": 1976
|
"y": 2026
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"x": 482.8333333333333,
|
"x": 463.66666666666663,
|
||||||
"y": 2021
|
"y": 2121
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"x": 339.8333333333333,
|
"x": 361.66666666666663,
|
||||||
"y": 2021
|
"y": 2121
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"x": 340,
|
"x": 361.66666666666663,
|
||||||
"y": 2408
|
"y": 2322
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"x": 351.66666666666663,
|
||||||
|
"y": 2322
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"x": 351.66666666666663,
|
||||||
|
"y": 2423
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"x": 341.66666666666663,
|
||||||
|
"y": 2423
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"x": 342,
|
||||||
|
"y": 2518
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
"animated": false,
|
"animated": false,
|
||||||
|
|
@ -1775,20 +1815,28 @@
|
||||||
"labelPercentage": 0,
|
"labelPercentage": 0,
|
||||||
"route": [
|
"route": [
|
||||||
{
|
{
|
||||||
"x": 340,
|
"x": 342,
|
||||||
"y": 2489
|
"y": 2599
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"x": 339.8333333333333,
|
"x": 341.66666666666663,
|
||||||
"y": 2720
|
"y": 2880
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"x": 93.5,
|
"x": 94.66666666666666,
|
||||||
"y": 2720
|
"y": 2880
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"x": 93.5,
|
"x": 94.66666666666666,
|
||||||
"y": 3309
|
"y": 3424
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"x": 160.58333333333331,
|
||||||
|
"y": 3424
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"x": 160.58333333333331,
|
||||||
|
"y": 3519
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
"animated": false,
|
"animated": false,
|
||||||
|
|
@ -1823,12 +1871,20 @@
|
||||||
"labelPercentage": 0,
|
"labelPercentage": 0,
|
||||||
"route": [
|
"route": [
|
||||||
{
|
{
|
||||||
"x": 382,
|
"x": 363,
|
||||||
"y": 1981
|
"y": 2031
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"x": 382.3333333333333,
|
"x": 363.16666666666663,
|
||||||
"y": 2061
|
"y": 2071
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"x": 434.16666666666663,
|
||||||
|
"y": 2071
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"x": 434.16666666666663,
|
||||||
|
"y": 2161
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
"animated": false,
|
"animated": false,
|
||||||
|
|
@ -1863,20 +1919,12 @@
|
||||||
"labelPercentage": 0,
|
"labelPercentage": 0,
|
||||||
"route": [
|
"route": [
|
||||||
{
|
{
|
||||||
"x": 382.3333333333333,
|
"x": 434.16666666666663,
|
||||||
"y": 2127
|
"y": 2227
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"x": 382.3333333333333,
|
"x": 434.16666666666663,
|
||||||
"y": 2222
|
"y": 2525.5
|
||||||
},
|
|
||||||
{
|
|
||||||
"x": 432.3333333333333,
|
|
||||||
"y": 2222
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"x": 432.3333333333333,
|
|
||||||
"y": 2415.5
|
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
"animated": false,
|
"animated": false,
|
||||||
|
|
@ -1911,12 +1959,12 @@
|
||||||
"labelPercentage": 0,
|
"labelPercentage": 0,
|
||||||
"route": [
|
"route": [
|
||||||
{
|
{
|
||||||
"x": 432.3333333333333,
|
"x": 434.16666666666663,
|
||||||
"y": 2481.5
|
"y": 2591.5
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"x": 432.3333333333333,
|
"x": 434.16666666666663,
|
||||||
"y": 2559
|
"y": 2669
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
"animated": false,
|
"animated": false,
|
||||||
|
|
@ -1951,12 +1999,28 @@
|
||||||
"labelPercentage": 0,
|
"labelPercentage": 0,
|
||||||
"route": [
|
"route": [
|
||||||
{
|
{
|
||||||
"x": 189,
|
"x": 236,
|
||||||
"y": 783
|
"y": 783
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"x": 189.33333333333334,
|
"x": 235.66666666666669,
|
||||||
"y": 1189
|
"y": 823
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"x": 188.16666666666669,
|
||||||
|
"y": 823
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"x": 188.16666666666666,
|
||||||
|
"y": 1008
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"x": 93.49999999999999,
|
||||||
|
"y": 1008
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"x": 93.5,
|
||||||
|
"y": 1239
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
"animated": false,
|
"animated": false,
|
||||||
|
|
@ -1991,12 +2055,12 @@
|
||||||
"labelPercentage": 0,
|
"labelPercentage": 0,
|
||||||
"route": [
|
"route": [
|
||||||
{
|
{
|
||||||
"x": 189.33333333333334,
|
"x": 93.5,
|
||||||
"y": 1255
|
"y": 1305
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"x": 189.33333333333334,
|
"x": 93.5,
|
||||||
"y": 1435
|
"y": 1485
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
"animated": false,
|
"animated": false,
|
||||||
|
|
@ -2031,20 +2095,20 @@
|
||||||
"labelPercentage": 0,
|
"labelPercentage": 0,
|
||||||
"route": [
|
"route": [
|
||||||
{
|
{
|
||||||
"x": 317.50000000000006,
|
"x": 221.66666666666669,
|
||||||
"y": 1517.6666666666667
|
"y": 1567.6666666666667
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"x": 317.50000000000006,
|
"x": 221.66666666666669,
|
||||||
"y": 1596
|
"y": 1646
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"x": 239,
|
"x": 202.66666666666669,
|
||||||
"y": 1596
|
"y": 1646
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"x": 239,
|
"x": 203,
|
||||||
"y": 1636
|
"y": 1686
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
"animated": false,
|
"animated": false,
|
||||||
|
|
@ -2079,12 +2143,20 @@
|
||||||
"labelPercentage": 0,
|
"labelPercentage": 0,
|
||||||
"route": [
|
"route": [
|
||||||
{
|
{
|
||||||
"x": 189.33333333333334,
|
"x": 93.5,
|
||||||
"y": 1501
|
"y": 1551
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"x": 189,
|
"x": 93.5,
|
||||||
"y": 1636
|
"y": 1646
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"x": 153.00000000000003,
|
||||||
|
"y": 1646
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"x": 153,
|
||||||
|
"y": 1686
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
"animated": false,
|
"animated": false,
|
||||||
|
|
@ -2119,12 +2191,12 @@
|
||||||
"labelPercentage": 0,
|
"labelPercentage": 0,
|
||||||
"route": [
|
"route": [
|
||||||
{
|
{
|
||||||
"x": 189,
|
"x": 153,
|
||||||
"y": 1754
|
"y": 1804
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"x": 189.33333333333331,
|
"x": 153,
|
||||||
"y": 2525.3333333333335
|
"y": 2635.3333333333335
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
"animated": false,
|
"animated": false,
|
||||||
|
|
@ -2159,12 +2231,28 @@
|
||||||
"labelPercentage": 0,
|
"labelPercentage": 0,
|
||||||
"route": [
|
"route": [
|
||||||
{
|
{
|
||||||
"x": 175.99999999999997,
|
"x": 139.66666666666666,
|
||||||
"y": 2591.3333333333335
|
"y": 2701.3333333333335
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"x": 176,
|
"x": 139.66666666666666,
|
||||||
"y": 3309
|
"y": 2930
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"x": 148.33333333333334,
|
||||||
|
"y": 2930
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"x": 148.33333333333334,
|
||||||
|
"y": 3374
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"x": 243.08333333333331,
|
||||||
|
"y": 3374
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"x": 243.08333333333331,
|
||||||
|
"y": 3519
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
"animated": false,
|
"animated": false,
|
||||||
|
|
@ -2199,12 +2287,20 @@
|
||||||
"labelPercentage": 0,
|
"labelPercentage": 0,
|
||||||
"route": [
|
"route": [
|
||||||
{
|
{
|
||||||
"x": 432.3333333333333,
|
"x": 434.16666666666663,
|
||||||
"y": 2625
|
"y": 2735
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"x": 432,
|
"x": 434.16666666666663,
|
||||||
"y": 2865
|
"y": 2830
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"x": 451.8333333333333,
|
||||||
|
"y": 2830
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"x": 452,
|
||||||
|
"y": 3025
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
"animated": false,
|
"animated": false,
|
||||||
|
|
@ -2239,20 +2335,20 @@
|
||||||
"labelPercentage": 0,
|
"labelPercentage": 0,
|
||||||
"route": [
|
"route": [
|
||||||
{
|
{
|
||||||
"x": 202.66666666666666,
|
"x": 166.33333333333334,
|
||||||
"y": 2591.3333333333335
|
"y": 2701.3333333333335
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"x": 202.66666666666666,
|
"x": 166.33333333333334,
|
||||||
"y": 2770
|
"y": 2830
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"x": 386.3333333333333,
|
"x": 405.83333333333337,
|
||||||
"y": 2770
|
"y": 2830
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"x": 386,
|
"x": 406,
|
||||||
"y": 2865
|
"y": 3025
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
"animated": false,
|
"animated": false,
|
||||||
|
|
@ -2287,12 +2383,12 @@
|
||||||
"labelPercentage": 0,
|
"labelPercentage": 0,
|
||||||
"route": [
|
"route": [
|
||||||
{
|
{
|
||||||
"x": 409,
|
"x": 429,
|
||||||
"y": 2983
|
"y": 3143
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"x": 409.3333333333333,
|
"x": 428.83333333333337,
|
||||||
"y": 3053
|
"y": 3213
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
"animated": false,
|
"animated": false,
|
||||||
|
|
@ -2327,20 +2423,20 @@
|
||||||
"labelPercentage": 0,
|
"labelPercentage": 0,
|
||||||
"route": [
|
"route": [
|
||||||
{
|
{
|
||||||
"x": 409.3333333333333,
|
"x": 428.83333333333337,
|
||||||
"y": 3119
|
"y": 3279
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"x": 409.3333333333333,
|
"x": 428.83333333333337,
|
||||||
"y": 3214
|
"y": 3374
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"x": 258,
|
"x": 325.08333333333337,
|
||||||
"y": 3214
|
"y": 3374
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"x": 258,
|
"x": 325.08333333333337,
|
||||||
"y": 3309
|
"y": 3519
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
"animated": false,
|
"animated": false,
|
||||||
|
|
@ -2375,12 +2471,12 @@
|
||||||
"labelPercentage": 0,
|
"labelPercentage": 0,
|
||||||
"route": [
|
"route": [
|
||||||
{
|
{
|
||||||
"x": 258,
|
"x": 325.0833333333333,
|
||||||
"y": 3375
|
"y": 3585
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"x": 258,
|
"x": 325,
|
||||||
"y": 3500
|
"y": 3710
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
"animated": false,
|
"animated": false,
|
||||||
|
|
@ -2415,20 +2511,20 @@
|
||||||
"labelPercentage": 0,
|
"labelPercentage": 0,
|
||||||
"route": [
|
"route": [
|
||||||
{
|
{
|
||||||
"x": 239,
|
"x": 203,
|
||||||
"y": 1754
|
"y": 1804
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"x": 239,
|
"x": 202.66666666666669,
|
||||||
"y": 1794
|
"y": 1844
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"x": 369,
|
"x": 349.83333333333337,
|
||||||
"y": 1794
|
"y": 1844
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"x": 369,
|
"x": 350,
|
||||||
"y": 1904
|
"y": 1953
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
"animated": false,
|
"animated": false,
|
||||||
|
|
|
||||||
|
Before Width: | Height: | Size: 814 KiB After Width: | Height: | Size: 815 KiB |
228
e2etests/testdata/stable/large_arch/elk/board.exp.json
generated
vendored
|
|
@ -89,8 +89,8 @@
|
||||||
"id": "c",
|
"id": "c",
|
||||||
"type": "rectangle",
|
"type": "rectangle",
|
||||||
"pos": {
|
"pos": {
|
||||||
"x": 322,
|
"x": 417,
|
||||||
"y": 1768
|
"y": 1718
|
||||||
},
|
},
|
||||||
"width": 53,
|
"width": 53,
|
||||||
"height": 66,
|
"height": 66,
|
||||||
|
|
@ -130,8 +130,8 @@
|
||||||
"id": "d",
|
"id": "d",
|
||||||
"type": "rectangle",
|
"type": "rectangle",
|
||||||
"pos": {
|
"pos": {
|
||||||
"x": 395,
|
"x": 490,
|
||||||
"y": 1768
|
"y": 1718
|
||||||
},
|
},
|
||||||
"width": 54,
|
"width": 54,
|
||||||
"height": 66,
|
"height": 66,
|
||||||
|
|
@ -171,8 +171,8 @@
|
||||||
"id": "e",
|
"id": "e",
|
||||||
"type": "rectangle",
|
"type": "rectangle",
|
||||||
"pos": {
|
"pos": {
|
||||||
"x": 395,
|
"x": 490,
|
||||||
"y": 1904
|
"y": 1854
|
||||||
},
|
},
|
||||||
"width": 53,
|
"width": 53,
|
||||||
"height": 66,
|
"height": 66,
|
||||||
|
|
@ -212,8 +212,8 @@
|
||||||
"id": "f",
|
"id": "f",
|
||||||
"type": "rectangle",
|
"type": "rectangle",
|
||||||
"pos": {
|
"pos": {
|
||||||
"x": 469,
|
"x": 564,
|
||||||
"y": 1768
|
"y": 1718
|
||||||
},
|
},
|
||||||
"width": 51,
|
"width": 51,
|
||||||
"height": 66,
|
"height": 66,
|
||||||
|
|
@ -253,8 +253,8 @@
|
||||||
"id": "g",
|
"id": "g",
|
||||||
"type": "rectangle",
|
"type": "rectangle",
|
||||||
"pos": {
|
"pos": {
|
||||||
"x": 198,
|
"x": 170,
|
||||||
"y": 1768
|
"y": 1718
|
||||||
},
|
},
|
||||||
"width": 80,
|
"width": 80,
|
||||||
"height": 66,
|
"height": 66,
|
||||||
|
|
@ -295,7 +295,7 @@
|
||||||
"type": "rectangle",
|
"type": "rectangle",
|
||||||
"pos": {
|
"pos": {
|
||||||
"x": 238,
|
"x": 238,
|
||||||
"y": 1061
|
"y": 1011
|
||||||
},
|
},
|
||||||
"width": 53,
|
"width": 53,
|
||||||
"height": 66,
|
"height": 66,
|
||||||
|
|
@ -335,8 +335,8 @@
|
||||||
"id": "i",
|
"id": "i",
|
||||||
"type": "rectangle",
|
"type": "rectangle",
|
||||||
"pos": {
|
"pos": {
|
||||||
"x": 311,
|
"x": 403,
|
||||||
"y": 1061
|
"y": 1011
|
||||||
},
|
},
|
||||||
"width": 546,
|
"width": 546,
|
||||||
"height": 522,
|
"height": 522,
|
||||||
|
|
@ -376,8 +376,8 @@
|
||||||
"id": "i.j",
|
"id": "i.j",
|
||||||
"type": "rectangle",
|
"type": "rectangle",
|
||||||
"pos": {
|
"pos": {
|
||||||
"x": 583,
|
"x": 675,
|
||||||
"y": 1111
|
"y": 1061
|
||||||
},
|
},
|
||||||
"width": 222,
|
"width": 222,
|
||||||
"height": 166,
|
"height": 166,
|
||||||
|
|
@ -417,8 +417,8 @@
|
||||||
"id": "i.j.k",
|
"id": "i.j.k",
|
||||||
"type": "rectangle",
|
"type": "rectangle",
|
||||||
"pos": {
|
"pos": {
|
||||||
"x": 633,
|
"x": 725,
|
||||||
"y": 1161
|
"y": 1111
|
||||||
},
|
},
|
||||||
"width": 53,
|
"width": 53,
|
||||||
"height": 66,
|
"height": 66,
|
||||||
|
|
@ -458,8 +458,8 @@
|
||||||
"id": "i.j.l",
|
"id": "i.j.l",
|
||||||
"type": "rectangle",
|
"type": "rectangle",
|
||||||
"pos": {
|
"pos": {
|
||||||
"x": 706,
|
"x": 798,
|
||||||
"y": 1161
|
"y": 1111
|
||||||
},
|
},
|
||||||
"width": 49,
|
"width": 49,
|
||||||
"height": 66,
|
"height": 66,
|
||||||
|
|
@ -499,8 +499,8 @@
|
||||||
"id": "i.m",
|
"id": "i.m",
|
||||||
"type": "rectangle",
|
"type": "rectangle",
|
||||||
"pos": {
|
"pos": {
|
||||||
"x": 361,
|
"x": 453,
|
||||||
"y": 1427
|
"y": 1377
|
||||||
},
|
},
|
||||||
"width": 200,
|
"width": 200,
|
||||||
"height": 66,
|
"height": 66,
|
||||||
|
|
@ -540,8 +540,8 @@
|
||||||
"id": "i.n",
|
"id": "i.n",
|
||||||
"type": "rectangle",
|
"type": "rectangle",
|
||||||
"pos": {
|
"pos": {
|
||||||
"x": 581,
|
"x": 673,
|
||||||
"y": 1467
|
"y": 1417
|
||||||
},
|
},
|
||||||
"width": 53,
|
"width": 53,
|
||||||
"height": 66,
|
"height": 66,
|
||||||
|
|
@ -581,8 +581,8 @@
|
||||||
"id": "i.o",
|
"id": "i.o",
|
||||||
"type": "rectangle",
|
"type": "rectangle",
|
||||||
"pos": {
|
"pos": {
|
||||||
"x": 654,
|
"x": 746,
|
||||||
"y": 1367
|
"y": 1317
|
||||||
},
|
},
|
||||||
"width": 153,
|
"width": 153,
|
||||||
"height": 166,
|
"height": 166,
|
||||||
|
|
@ -622,8 +622,8 @@
|
||||||
"id": "i.o.p",
|
"id": "i.o.p",
|
||||||
"type": "rectangle",
|
"type": "rectangle",
|
||||||
"pos": {
|
"pos": {
|
||||||
"x": 704,
|
"x": 796,
|
||||||
"y": 1417
|
"y": 1367
|
||||||
},
|
},
|
||||||
"width": 53,
|
"width": 53,
|
||||||
"height": 66,
|
"height": 66,
|
||||||
|
|
@ -663,8 +663,8 @@
|
||||||
"id": "q",
|
"id": "q",
|
||||||
"type": "rectangle",
|
"type": "rectangle",
|
||||||
"pos": {
|
"pos": {
|
||||||
"x": 807,
|
"x": 895,
|
||||||
"y": 1768
|
"y": 1718
|
||||||
},
|
},
|
||||||
"width": 80,
|
"width": 80,
|
||||||
"height": 66,
|
"height": 66,
|
||||||
|
|
@ -1385,20 +1385,20 @@
|
||||||
"labelPercentage": 0,
|
"labelPercentage": 0,
|
||||||
"route": [
|
"route": [
|
||||||
{
|
{
|
||||||
"x": 660,
|
"x": 751.5833333333333,
|
||||||
"y": 1227
|
"y": 1177
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"x": 660,
|
"x": 751.5833333333333,
|
||||||
"y": 1322
|
"y": 1272
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"x": 511.5,
|
"x": 603.0833333333333,
|
||||||
"y": 1322
|
"y": 1272
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"x": 511.5,
|
"x": 603.0833333333333,
|
||||||
"y": 1427.625
|
"y": 1377.625
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
"animated": false,
|
"animated": false,
|
||||||
|
|
@ -1433,12 +1433,12 @@
|
||||||
"labelPercentage": 0,
|
"labelPercentage": 0,
|
||||||
"route": [
|
"route": [
|
||||||
{
|
{
|
||||||
"x": 731,
|
"x": 822.5833333333333,
|
||||||
"y": 1227
|
"y": 1177
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"x": 731,
|
"x": 822.5833333333333,
|
||||||
"y": 1417
|
"y": 1367
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
"animated": false,
|
"animated": false,
|
||||||
|
|
@ -1473,20 +1473,28 @@
|
||||||
"labelPercentage": 0,
|
"labelPercentage": 0,
|
||||||
"route": [
|
"route": [
|
||||||
{
|
{
|
||||||
"x": 867.5,
|
"x": 955.75,
|
||||||
"y": 1768
|
"y": 1718
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"x": 867.5,
|
"x": 955.75,
|
||||||
"y": 1016
|
"y": 1578
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"x": 461.5,
|
"x": 989.0833333333333,
|
||||||
"y": 1016
|
"y": 1578
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"x": 461.5,
|
"x": 989.0833333333333,
|
||||||
"y": 1427.625
|
"y": 966
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"x": 553.0833333333333,
|
||||||
|
"y": 966
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"x": 553.0833333333333,
|
||||||
|
"y": 1377.625
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
"animated": false,
|
"animated": false,
|
||||||
|
|
@ -1521,20 +1529,20 @@
|
||||||
"labelPercentage": 0,
|
"labelPercentage": 0,
|
||||||
"route": [
|
"route": [
|
||||||
{
|
{
|
||||||
"x": 528.1666666666666,
|
"x": 619.7499999999999,
|
||||||
"y": 1493.625
|
"y": 1443.625
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"x": 528.1666666666666,
|
"x": 619.7499999999999,
|
||||||
"y": 1678
|
"y": 1628
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"x": 827.5,
|
"x": 915.75,
|
||||||
"y": 1678
|
"y": 1628
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"x": 827.5,
|
"x": 915.75,
|
||||||
"y": 1768
|
"y": 1718
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
"animated": false,
|
"animated": false,
|
||||||
|
|
@ -1569,20 +1577,20 @@
|
||||||
"labelPercentage": 0,
|
"labelPercentage": 0,
|
||||||
"route": [
|
"route": [
|
||||||
{
|
{
|
||||||
"x": 608,
|
"x": 699.5833333333333,
|
||||||
"y": 1533
|
"y": 1483
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"x": 608,
|
"x": 699.5833333333333,
|
||||||
"y": 1628
|
"y": 1578
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"x": 847.5,
|
"x": 935.75,
|
||||||
"y": 1628
|
"y": 1578
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"x": 847.5,
|
"x": 935.75,
|
||||||
"y": 1768
|
"y": 1718
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
"animated": false,
|
"animated": false,
|
||||||
|
|
@ -1617,20 +1625,20 @@
|
||||||
"labelPercentage": 0,
|
"labelPercentage": 0,
|
||||||
"route": [
|
"route": [
|
||||||
{
|
{
|
||||||
"x": 428.16666666666663,
|
"x": 519.7499999999999,
|
||||||
"y": 1493.625
|
"y": 1443.625
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"x": 428.16666666666663,
|
"x": 519.7499999999999,
|
||||||
"y": 1678
|
"y": 1628
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"x": 348.8333333333333,
|
"x": 443.91666666666663,
|
||||||
"y": 1678
|
"y": 1628
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"x": 348.8333333333333,
|
"x": 443.91666666666663,
|
||||||
"y": 1768
|
"y": 1718
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
"animated": false,
|
"animated": false,
|
||||||
|
|
@ -1665,20 +1673,20 @@
|
||||||
"labelPercentage": 0,
|
"labelPercentage": 0,
|
||||||
"route": [
|
"route": [
|
||||||
{
|
{
|
||||||
"x": 461.5,
|
"x": 553.0833333333333,
|
||||||
"y": 1493.625
|
"y": 1443.625
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"x": 461.5,
|
"x": 553.0833333333333,
|
||||||
"y": 1728
|
"y": 1678
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"x": 422.3333333333333,
|
"x": 517.4166666666666,
|
||||||
"y": 1728
|
"y": 1678
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"x": 422.3333333333333,
|
"x": 517.4166666666666,
|
||||||
"y": 1768
|
"y": 1718
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
"animated": false,
|
"animated": false,
|
||||||
|
|
@ -1713,20 +1721,20 @@
|
||||||
"labelPercentage": 0,
|
"labelPercentage": 0,
|
||||||
"route": [
|
"route": [
|
||||||
{
|
{
|
||||||
"x": 394.8333333333333,
|
"x": 486.4166666666666,
|
||||||
"y": 1493.625
|
"y": 1443.625
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"x": 394.8333333333333,
|
"x": 486.4166666666666,
|
||||||
"y": 1628
|
"y": 1578
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"x": 251.66666666666674,
|
"x": 224.16666666666663,
|
||||||
"y": 1628
|
"y": 1578
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"x": 251.66666666666674,
|
"x": 224.16666666666663,
|
||||||
"y": 1768
|
"y": 1718
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
"animated": false,
|
"animated": false,
|
||||||
|
|
@ -1761,12 +1769,20 @@
|
||||||
"labelPercentage": 0,
|
"labelPercentage": 0,
|
||||||
"route": [
|
"route": [
|
||||||
{
|
{
|
||||||
"x": 494.8333333333333,
|
"x": 586.4166666666665,
|
||||||
"y": 1493.625
|
"y": 1443.625
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"x": 494.8333333333333,
|
"x": 586.4166666666665,
|
||||||
"y": 1768
|
"y": 1578
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"x": 589.9166666666666,
|
||||||
|
"y": 1578
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"x": 589.9166666666666,
|
||||||
|
"y": 1718
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
"animated": false,
|
"animated": false,
|
||||||
|
|
@ -1801,12 +1817,12 @@
|
||||||
"labelPercentage": 0,
|
"labelPercentage": 0,
|
||||||
"route": [
|
"route": [
|
||||||
{
|
{
|
||||||
"x": 422.3333333333333,
|
"x": 517.4166666666666,
|
||||||
"y": 1834
|
"y": 1784
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"x": 422.3333333333333,
|
"x": 517.4166666666666,
|
||||||
"y": 1904
|
"y": 1854
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
"animated": false,
|
"animated": false,
|
||||||
|
|
@ -2065,12 +2081,12 @@
|
||||||
"y": 966
|
"y": 966
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"x": 411.5,
|
"x": 503.08333333333326,
|
||||||
"y": 966
|
"y": 966
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"x": 411.5,
|
"x": 503.08333333333326,
|
||||||
"y": 1427.625
|
"y": 1377.625
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
"animated": false,
|
"animated": false,
|
||||||
|
|
@ -2110,7 +2126,15 @@
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"x": 225,
|
"x": 225,
|
||||||
"y": 1768
|
"y": 966
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"x": 197.5,
|
||||||
|
"y": 966
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"x": 197.4999999999999,
|
||||||
|
"y": 1718
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
"animated": false,
|
"animated": false,
|
||||||
|
|
@ -2150,7 +2174,7 @@
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"x": 265,
|
"x": 265,
|
||||||
"y": 1061
|
"y": 1011
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
"animated": false,
|
"animated": false,
|
||||||
|
|
|
||||||
|
Before Width: | Height: | Size: 667 KiB After Width: | Height: | Size: 668 KiB |
16
e2etests/testdata/stable/latex/elk/board.exp.json
generated
vendored
|
|
@ -87,7 +87,7 @@
|
||||||
"id": "z",
|
"id": "z",
|
||||||
"type": "text",
|
"type": "text",
|
||||||
"pos": {
|
"pos": {
|
||||||
"x": 143,
|
"x": 235,
|
||||||
"y": 12
|
"y": 12
|
||||||
},
|
},
|
||||||
"width": 179,
|
"width": 179,
|
||||||
|
|
@ -275,9 +275,17 @@
|
||||||
"labelPercentage": 0,
|
"labelPercentage": 0,
|
||||||
"route": [
|
"route": [
|
||||||
{
|
{
|
||||||
"x": 203,
|
"x": 294.9166666666667,
|
||||||
"y": 63
|
"y": 63
|
||||||
},
|
},
|
||||||
|
{
|
||||||
|
"x": 294.9166666666667,
|
||||||
|
"y": 103
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"x": 203,
|
||||||
|
"y": 103
|
||||||
|
},
|
||||||
{
|
{
|
||||||
"x": 203,
|
"x": 203,
|
||||||
"y": 143
|
"y": 143
|
||||||
|
|
@ -315,11 +323,11 @@
|
||||||
"labelPercentage": 0,
|
"labelPercentage": 0,
|
||||||
"route": [
|
"route": [
|
||||||
{
|
{
|
||||||
"x": 262.6666666666667,
|
"x": 354.5833333333333,
|
||||||
"y": 63
|
"y": 63
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"x": 262.6666666666667,
|
"x": 354.5833333333333,
|
||||||
"y": 103
|
"y": 103
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
|
|
|
||||||
170
e2etests/testdata/stable/latex/elk/sketch.exp.svg
vendored
|
Before Width: | Height: | Size: 511 KiB After Width: | Height: | Size: 511 KiB |
30
e2etests/testdata/stable/mono-font/elk/board.exp.json
generated
vendored
|
|
@ -48,7 +48,7 @@
|
||||||
"id": "transmitter",
|
"id": "transmitter",
|
||||||
"type": "rectangle",
|
"type": "rectangle",
|
||||||
"pos": {
|
"pos": {
|
||||||
"x": 24,
|
"x": 17,
|
||||||
"y": 259
|
"y": 259
|
||||||
},
|
},
|
||||||
"width": 151,
|
"width": 151,
|
||||||
|
|
@ -119,14 +119,22 @@
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"x": 52.25,
|
"x": 52.25,
|
||||||
|
"y": 118
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"x": 44.5,
|
||||||
|
"y": 118
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"x": 44.5,
|
||||||
"y": 219
|
"y": 219
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"x": 62.5,
|
"x": 54.75,
|
||||||
"y": 219
|
"y": 219
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"x": 62.5,
|
"x": 54.75,
|
||||||
"y": 259
|
"y": 259
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
|
|
@ -167,14 +175,6 @@
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"x": 92.5,
|
"x": 92.5,
|
||||||
"y": 118
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"x": 100.25,
|
|
||||||
"y": 118
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"x": 100.25,
|
|
||||||
"y": 259
|
"y": 259
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
|
|
@ -218,19 +218,19 @@
|
||||||
"y": 118
|
"y": 118
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"x": 148.25,
|
"x": 140.5,
|
||||||
"y": 118
|
"y": 118
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"x": 148.25,
|
"x": 140.5,
|
||||||
"y": 219
|
"y": 219
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"x": 138,
|
"x": 130.25,
|
||||||
"y": 219
|
"y": 219
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"x": 138,
|
"x": 130.25,
|
||||||
"y": 259
|
"y": 259
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
|
|
|
||||||
|
Before Width: | Height: | Size: 266 KiB After Width: | Height: | Size: 266 KiB |
348
e2etests/testdata/stable/multiple_trees/elk/board.exp.json
generated
vendored
|
|
@ -7,7 +7,7 @@
|
||||||
"id": "a",
|
"id": "a",
|
||||||
"type": "rectangle",
|
"type": "rectangle",
|
||||||
"pos": {
|
"pos": {
|
||||||
"x": 382,
|
"x": 310,
|
||||||
"y": 294
|
"y": 294
|
||||||
},
|
},
|
||||||
"width": 240,
|
"width": 240,
|
||||||
|
|
@ -48,8 +48,8 @@
|
||||||
"id": "b",
|
"id": "b",
|
||||||
"type": "rectangle",
|
"type": "rectangle",
|
||||||
"pos": {
|
"pos": {
|
||||||
"x": 46,
|
"x": 29,
|
||||||
"y": 540
|
"y": 590
|
||||||
},
|
},
|
||||||
"width": 120,
|
"width": 120,
|
||||||
"height": 66,
|
"height": 66,
|
||||||
|
|
@ -89,8 +89,8 @@
|
||||||
"id": "c",
|
"id": "c",
|
||||||
"type": "rectangle",
|
"type": "rectangle",
|
||||||
"pos": {
|
"pos": {
|
||||||
"x": 186,
|
"x": 169,
|
||||||
"y": 540
|
"y": 590
|
||||||
},
|
},
|
||||||
"width": 80,
|
"width": 80,
|
||||||
"height": 66,
|
"height": 66,
|
||||||
|
|
@ -130,8 +130,8 @@
|
||||||
"id": "d",
|
"id": "d",
|
||||||
"type": "rectangle",
|
"type": "rectangle",
|
||||||
"pos": {
|
"pos": {
|
||||||
"x": 333,
|
"x": 317,
|
||||||
"y": 540
|
"y": 590
|
||||||
},
|
},
|
||||||
"width": 80,
|
"width": 80,
|
||||||
"height": 66,
|
"height": 66,
|
||||||
|
|
@ -171,8 +171,8 @@
|
||||||
"id": "e",
|
"id": "e",
|
||||||
"type": "rectangle",
|
"type": "rectangle",
|
||||||
"pos": {
|
"pos": {
|
||||||
"x": 479,
|
"x": 463,
|
||||||
"y": 540
|
"y": 590
|
||||||
},
|
},
|
||||||
"width": 80,
|
"width": 80,
|
||||||
"height": 66,
|
"height": 66,
|
||||||
|
|
@ -212,8 +212,8 @@
|
||||||
"id": "f",
|
"id": "f",
|
||||||
"type": "rectangle",
|
"type": "rectangle",
|
||||||
"pos": {
|
"pos": {
|
||||||
"x": 623,
|
"x": 607,
|
||||||
"y": 540
|
"y": 590
|
||||||
},
|
},
|
||||||
"width": 80,
|
"width": 80,
|
||||||
"height": 66,
|
"height": 66,
|
||||||
|
|
@ -253,7 +253,7 @@
|
||||||
"id": "g",
|
"id": "g",
|
||||||
"type": "rectangle",
|
"type": "rectangle",
|
||||||
"pos": {
|
"pos": {
|
||||||
"x": 462,
|
"x": 390,
|
||||||
"y": 158
|
"y": 158
|
||||||
},
|
},
|
||||||
"width": 80,
|
"width": 80,
|
||||||
|
|
@ -294,8 +294,8 @@
|
||||||
"id": "h",
|
"id": "h",
|
||||||
"type": "rectangle",
|
"type": "rectangle",
|
||||||
"pos": {
|
"pos": {
|
||||||
"x": 723,
|
"x": 707,
|
||||||
"y": 540
|
"y": 590
|
||||||
},
|
},
|
||||||
"width": 120,
|
"width": 120,
|
||||||
"height": 66,
|
"height": 66,
|
||||||
|
|
@ -417,7 +417,7 @@
|
||||||
"id": "k",
|
"id": "k",
|
||||||
"type": "rectangle",
|
"type": "rectangle",
|
||||||
"pos": {
|
"pos": {
|
||||||
"x": 489,
|
"x": 439,
|
||||||
"y": 12
|
"y": 12
|
||||||
},
|
},
|
||||||
"width": 53,
|
"width": 53,
|
||||||
|
|
@ -458,7 +458,7 @@
|
||||||
"id": "l",
|
"id": "l",
|
||||||
"type": "rectangle",
|
"type": "rectangle",
|
||||||
"pos": {
|
"pos": {
|
||||||
"x": 420,
|
"x": 370,
|
||||||
"y": 12
|
"y": 12
|
||||||
},
|
},
|
||||||
"width": 49,
|
"width": 49,
|
||||||
|
|
@ -499,8 +499,8 @@
|
||||||
"id": "m",
|
"id": "m",
|
||||||
"type": "rectangle",
|
"type": "rectangle",
|
||||||
"pos": {
|
"pos": {
|
||||||
"x": 136,
|
"x": 143,
|
||||||
"y": 686
|
"y": 736
|
||||||
},
|
},
|
||||||
"width": 57,
|
"width": 57,
|
||||||
"height": 66,
|
"height": 66,
|
||||||
|
|
@ -540,8 +540,8 @@
|
||||||
"id": "n",
|
"id": "n",
|
||||||
"type": "rectangle",
|
"type": "rectangle",
|
||||||
"pos": {
|
"pos": {
|
||||||
"x": 213,
|
"x": 220,
|
||||||
"y": 686
|
"y": 736
|
||||||
},
|
},
|
||||||
"width": 53,
|
"width": 53,
|
||||||
"height": 66,
|
"height": 66,
|
||||||
|
|
@ -581,8 +581,8 @@
|
||||||
"id": "o",
|
"id": "o",
|
||||||
"type": "rectangle",
|
"type": "rectangle",
|
||||||
"pos": {
|
"pos": {
|
||||||
"x": 286,
|
"x": 293,
|
||||||
"y": 686
|
"y": 736
|
||||||
},
|
},
|
||||||
"width": 54,
|
"width": 54,
|
||||||
"height": 66,
|
"height": 66,
|
||||||
|
|
@ -622,8 +622,8 @@
|
||||||
"id": "p",
|
"id": "p",
|
||||||
"type": "rectangle",
|
"type": "rectangle",
|
||||||
"pos": {
|
"pos": {
|
||||||
"x": 360,
|
"x": 367,
|
||||||
"y": 686
|
"y": 736
|
||||||
},
|
},
|
||||||
"width": 53,
|
"width": 53,
|
||||||
"height": 66,
|
"height": 66,
|
||||||
|
|
@ -663,8 +663,8 @@
|
||||||
"id": "q",
|
"id": "q",
|
||||||
"type": "rectangle",
|
"type": "rectangle",
|
||||||
"pos": {
|
"pos": {
|
||||||
"x": 433,
|
"x": 440,
|
||||||
"y": 686
|
"y": 736
|
||||||
},
|
},
|
||||||
"width": 54,
|
"width": 54,
|
||||||
"height": 66,
|
"height": 66,
|
||||||
|
|
@ -704,8 +704,8 @@
|
||||||
"id": "r",
|
"id": "r",
|
||||||
"type": "rectangle",
|
"type": "rectangle",
|
||||||
"pos": {
|
"pos": {
|
||||||
"x": 507,
|
"x": 514,
|
||||||
"y": 686
|
"y": 736
|
||||||
},
|
},
|
||||||
"width": 51,
|
"width": 51,
|
||||||
"height": 66,
|
"height": 66,
|
||||||
|
|
@ -745,8 +745,8 @@
|
||||||
"id": "s",
|
"id": "s",
|
||||||
"type": "rectangle",
|
"type": "rectangle",
|
||||||
"pos": {
|
"pos": {
|
||||||
"x": 360,
|
"x": 367,
|
||||||
"y": 822
|
"y": 872
|
||||||
},
|
},
|
||||||
"width": 52,
|
"width": 52,
|
||||||
"height": 66,
|
"height": 66,
|
||||||
|
|
@ -786,8 +786,8 @@
|
||||||
"id": "t",
|
"id": "t",
|
||||||
"type": "rectangle",
|
"type": "rectangle",
|
||||||
"pos": {
|
"pos": {
|
||||||
"x": 578,
|
"x": 585,
|
||||||
"y": 686
|
"y": 736
|
||||||
},
|
},
|
||||||
"width": 51,
|
"width": 51,
|
||||||
"height": 66,
|
"height": 66,
|
||||||
|
|
@ -827,8 +827,8 @@
|
||||||
"id": "u",
|
"id": "u",
|
||||||
"type": "rectangle",
|
"type": "rectangle",
|
||||||
"pos": {
|
"pos": {
|
||||||
"x": 649,
|
"x": 656,
|
||||||
"y": 686
|
"y": 736
|
||||||
},
|
},
|
||||||
"width": 54,
|
"width": 54,
|
||||||
"height": 66,
|
"height": 66,
|
||||||
|
|
@ -868,7 +868,7 @@
|
||||||
"id": "v",
|
"id": "v",
|
||||||
"type": "rectangle",
|
"type": "rectangle",
|
||||||
"pos": {
|
"pos": {
|
||||||
"x": 710,
|
"x": 717,
|
||||||
"y": 294
|
"y": 294
|
||||||
},
|
},
|
||||||
"width": 54,
|
"width": 54,
|
||||||
|
|
@ -909,7 +909,7 @@
|
||||||
"id": "w",
|
"id": "w",
|
||||||
"type": "rectangle",
|
"type": "rectangle",
|
||||||
"pos": {
|
"pos": {
|
||||||
"x": 784,
|
"x": 791,
|
||||||
"y": 294
|
"y": 294
|
||||||
},
|
},
|
||||||
"width": 58,
|
"width": 58,
|
||||||
|
|
@ -975,20 +975,20 @@
|
||||||
"labelPercentage": 0,
|
"labelPercentage": 0,
|
||||||
"route": [
|
"route": [
|
||||||
{
|
{
|
||||||
"x": 416.64285714285717,
|
"x": 344.2857142857143,
|
||||||
"y": 360
|
"y": 360
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"x": 416.64285714285717,
|
"x": 344.2857142857143,
|
||||||
"y": 400
|
"y": 450
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"x": 136.5,
|
"x": 119.25,
|
||||||
"y": 400
|
"y": 450
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"x": 136.5,
|
"x": 119.25,
|
||||||
"y": 540
|
"y": 590
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
"animated": false,
|
"animated": false,
|
||||||
|
|
@ -1023,20 +1023,20 @@
|
||||||
"labelPercentage": 0,
|
"labelPercentage": 0,
|
||||||
"route": [
|
"route": [
|
||||||
{
|
{
|
||||||
"x": 450.92857142857144,
|
"x": 378.57142857142856,
|
||||||
"y": 360
|
"y": 360
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"x": 450.92857142857144,
|
"x": 378.57142857142856,
|
||||||
"y": 450
|
"y": 500
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"x": 226.5,
|
"x": 209.25,
|
||||||
"y": 450
|
"y": 500
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"x": 226.5,
|
"x": 209.25,
|
||||||
"y": 540
|
"y": 590
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
"animated": false,
|
"animated": false,
|
||||||
|
|
@ -1071,20 +1071,20 @@
|
||||||
"labelPercentage": 0,
|
"labelPercentage": 0,
|
||||||
"route": [
|
"route": [
|
||||||
{
|
{
|
||||||
"x": 485.2142857142858,
|
"x": 412.8571428571429,
|
||||||
"y": 360
|
"y": 360
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"x": 485.2142857142858,
|
"x": 412.8571428571429,
|
||||||
"y": 500
|
"y": 550
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"x": 373.50000000000006,
|
"x": 357,
|
||||||
"y": 500
|
"y": 550
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"x": 373.50000000000006,
|
"x": 357,
|
||||||
"y": 540
|
"y": 590
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
"animated": false,
|
"animated": false,
|
||||||
|
|
@ -1119,12 +1119,20 @@
|
||||||
"labelPercentage": 0,
|
"labelPercentage": 0,
|
||||||
"route": [
|
"route": [
|
||||||
{
|
{
|
||||||
"x": 519.5,
|
"x": 447.1428571428571,
|
||||||
"y": 360
|
"y": 360
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"x": 519.5,
|
"x": 447.1428571428571,
|
||||||
"y": 540
|
"y": 550
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"x": 503.5,
|
||||||
|
"y": 550
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"x": 503.5,
|
||||||
|
"y": 590
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
"animated": false,
|
"animated": false,
|
||||||
|
|
@ -1159,20 +1167,20 @@
|
||||||
"labelPercentage": 0,
|
"labelPercentage": 0,
|
||||||
"route": [
|
"route": [
|
||||||
{
|
{
|
||||||
"x": 553.7857142857143,
|
"x": 481.42857142857144,
|
||||||
"y": 360
|
"y": 360
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"x": 553.7857142857143,
|
"x": 481.42857142857144,
|
||||||
"y": 500
|
"y": 500
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"x": 663,
|
"x": 647,
|
||||||
"y": 500
|
"y": 500
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"x": 663,
|
"x": 647,
|
||||||
"y": 540
|
"y": 590
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
"animated": false,
|
"animated": false,
|
||||||
|
|
@ -1207,11 +1215,11 @@
|
||||||
"labelPercentage": 0,
|
"labelPercentage": 0,
|
||||||
"route": [
|
"route": [
|
||||||
{
|
{
|
||||||
"x": 502.3571428571429,
|
"x": 430,
|
||||||
"y": 224
|
"y": 224
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"x": 502.3571428571429,
|
"x": 430,
|
||||||
"y": 294
|
"y": 294
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
|
|
@ -1247,20 +1255,20 @@
|
||||||
"labelPercentage": 0,
|
"labelPercentage": 0,
|
||||||
"route": [
|
"route": [
|
||||||
{
|
{
|
||||||
"x": 588.0714285714286,
|
"x": 515.7142857142857,
|
||||||
"y": 360
|
"y": 360
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"x": 588.0714285714286,
|
"x": 515.7142857142857,
|
||||||
"y": 450
|
"y": 450
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"x": 753,
|
"x": 737,
|
||||||
"y": 450
|
"y": 450
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"x": 753,
|
"x": 737,
|
||||||
"y": 540
|
"y": 590
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
"animated": false,
|
"animated": false,
|
||||||
|
|
@ -1300,7 +1308,15 @@
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"x": 106.5,
|
"x": 106.5,
|
||||||
"y": 540
|
"y": 400
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"x": 89.25,
|
||||||
|
"y": 400
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"x": 89.25,
|
||||||
|
"y": 590
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
"animated": false,
|
"animated": false,
|
||||||
|
|
@ -1343,12 +1359,12 @@
|
||||||
"y": 400
|
"y": 400
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"x": 76.5,
|
"x": 59.25,
|
||||||
"y": 400
|
"y": 400
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"x": 76.5,
|
"x": 59.25,
|
||||||
"y": 540
|
"y": 590
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
"animated": false,
|
"animated": false,
|
||||||
|
|
@ -1383,11 +1399,19 @@
|
||||||
"labelPercentage": 0,
|
"labelPercentage": 0,
|
||||||
"route": [
|
"route": [
|
||||||
{
|
{
|
||||||
"x": 515.6904761904763,
|
"x": 465.5,
|
||||||
"y": 78
|
"y": 78
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"x": 515.6904761904763,
|
"x": 465.5,
|
||||||
|
"y": 118
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"x": 443.3333333333333,
|
||||||
|
"y": 118
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"x": 443.3333333333333,
|
||||||
"y": 158
|
"y": 158
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
|
|
@ -1423,19 +1447,19 @@
|
||||||
"labelPercentage": 0,
|
"labelPercentage": 0,
|
||||||
"route": [
|
"route": [
|
||||||
{
|
{
|
||||||
"x": 444.69047619047626,
|
"x": 394.5,
|
||||||
"y": 78
|
"y": 78
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"x": 444.69047619047626,
|
"x": 394.5,
|
||||||
"y": 118
|
"y": 118
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"x": 489.0238095238095,
|
"x": 416.6666666666667,
|
||||||
"y": 118
|
"y": 118
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"x": 489.0238095238095,
|
"x": 416.6666666666667,
|
||||||
"y": 158
|
"y": 158
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
|
|
@ -1471,20 +1495,20 @@
|
||||||
"labelPercentage": 0,
|
"labelPercentage": 0,
|
||||||
"route": [
|
"route": [
|
||||||
{
|
{
|
||||||
"x": 213.16666666666669,
|
"x": 195.91666666666663,
|
||||||
"y": 606
|
"y": 656
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"x": 213.16666666666669,
|
"x": 195.91666666666663,
|
||||||
"y": 646
|
"y": 696
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"x": 164.83333333333326,
|
"x": 171.75,
|
||||||
"y": 646
|
"y": 696
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"x": 164.83333333333326,
|
"x": 171.75,
|
||||||
"y": 686
|
"y": 736
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
"animated": false,
|
"animated": false,
|
||||||
|
|
@ -1519,12 +1543,20 @@
|
||||||
"labelPercentage": 0,
|
"labelPercentage": 0,
|
||||||
"route": [
|
"route": [
|
||||||
{
|
{
|
||||||
"x": 239.83333333333331,
|
"x": 222.58333333333331,
|
||||||
"y": 606
|
"y": 656
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"x": 239.83333333333331,
|
"x": 222.58333333333331,
|
||||||
"y": 686
|
"y": 696
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"x": 246.75,
|
||||||
|
"y": 696
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"x": 246.75,
|
||||||
|
"y": 736
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
"animated": false,
|
"animated": false,
|
||||||
|
|
@ -1559,20 +1591,20 @@
|
||||||
"labelPercentage": 0,
|
"labelPercentage": 0,
|
||||||
"route": [
|
"route": [
|
||||||
{
|
{
|
||||||
"x": 360.16666666666674,
|
"x": 343.6666666666667,
|
||||||
"y": 606
|
"y": 656
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"x": 360.16666666666674,
|
"x": 343.6666666666667,
|
||||||
"y": 646
|
"y": 696
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"x": 313.33333333333337,
|
"x": 320.25,
|
||||||
"y": 646
|
"y": 696
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"x": 313.33333333333337,
|
"x": 320.25,
|
||||||
"y": 686
|
"y": 736
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
"animated": false,
|
"animated": false,
|
||||||
|
|
@ -1607,12 +1639,20 @@
|
||||||
"labelPercentage": 0,
|
"labelPercentage": 0,
|
||||||
"route": [
|
"route": [
|
||||||
{
|
{
|
||||||
"x": 386.83333333333337,
|
"x": 370.3333333333333,
|
||||||
"y": 606
|
"y": 656
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"x": 386.83333333333337,
|
"x": 370.3333333333333,
|
||||||
"y": 686
|
"y": 696
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"x": 393.75,
|
||||||
|
"y": 696
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"x": 393.75,
|
||||||
|
"y": 736
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
"animated": false,
|
"animated": false,
|
||||||
|
|
@ -1647,20 +1687,20 @@
|
||||||
"labelPercentage": 0,
|
"labelPercentage": 0,
|
||||||
"route": [
|
"route": [
|
||||||
{
|
{
|
||||||
"x": 506.1666666666667,
|
"x": 490.16666666666663,
|
||||||
"y": 606
|
"y": 656
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"x": 506.1666666666667,
|
"x": 490.16666666666663,
|
||||||
"y": 646
|
"y": 696
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"x": 460.33333333333337,
|
"x": 467.25,
|
||||||
"y": 646
|
"y": 696
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"x": 460.33333333333337,
|
"x": 467.25,
|
||||||
"y": 686
|
"y": 736
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
"animated": false,
|
"animated": false,
|
||||||
|
|
@ -1695,12 +1735,20 @@
|
||||||
"labelPercentage": 0,
|
"labelPercentage": 0,
|
||||||
"route": [
|
"route": [
|
||||||
{
|
{
|
||||||
"x": 532.8333333333334,
|
"x": 516.8333333333334,
|
||||||
"y": 606
|
"y": 656
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"x": 532.8333333333334,
|
"x": 516.8333333333334,
|
||||||
"y": 686
|
"y": 696
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"x": 539.75,
|
||||||
|
"y": 696
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"x": 539.75,
|
||||||
|
"y": 736
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
"animated": false,
|
"animated": false,
|
||||||
|
|
@ -1735,12 +1783,12 @@
|
||||||
"labelPercentage": 0,
|
"labelPercentage": 0,
|
||||||
"route": [
|
"route": [
|
||||||
{
|
{
|
||||||
"x": 386.83333333333337,
|
"x": 393.75,
|
||||||
"y": 752
|
"y": 802
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"x": 386.83333333333337,
|
"x": 393.75,
|
||||||
"y": 822
|
"y": 872
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
"animated": false,
|
"animated": false,
|
||||||
|
|
@ -1775,20 +1823,20 @@
|
||||||
"labelPercentage": 0,
|
"labelPercentage": 0,
|
||||||
"route": [
|
"route": [
|
||||||
{
|
{
|
||||||
"x": 649.6666666666666,
|
"x": 633.6666666666666,
|
||||||
"y": 606
|
"y": 656
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"x": 649.6666666666666,
|
"x": 633.6666666666666,
|
||||||
"y": 646
|
"y": 696
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"x": 603.8333333333334,
|
"x": 610.75,
|
||||||
"y": 646
|
"y": 696
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"x": 603.8333333333334,
|
"x": 610.75,
|
||||||
"y": 686
|
"y": 736
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
"animated": false,
|
"animated": false,
|
||||||
|
|
@ -1823,12 +1871,20 @@
|
||||||
"labelPercentage": 0,
|
"labelPercentage": 0,
|
||||||
"route": [
|
"route": [
|
||||||
{
|
{
|
||||||
"x": 676.3333333333334,
|
"x": 660.3333333333334,
|
||||||
"y": 606
|
"y": 656
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"x": 676.3333333333334,
|
"x": 660.3333333333334,
|
||||||
"y": 686
|
"y": 696
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"x": 683.25,
|
||||||
|
"y": 696
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"x": 683.25,
|
||||||
|
"y": 736
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
"animated": false,
|
"animated": false,
|
||||||
|
|
@ -1863,20 +1919,20 @@
|
||||||
"labelPercentage": 0,
|
"labelPercentage": 0,
|
||||||
"route": [
|
"route": [
|
||||||
{
|
{
|
||||||
"x": 737,
|
"x": 744.5,
|
||||||
"y": 360
|
"y": 360
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"x": 737,
|
"x": 744.5,
|
||||||
"y": 400
|
"y": 400
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"x": 783,
|
"x": 767,
|
||||||
"y": 400
|
"y": 400
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"x": 783,
|
"x": 767,
|
||||||
"y": 540
|
"y": 590
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
"animated": false,
|
"animated": false,
|
||||||
|
|
@ -1911,12 +1967,20 @@
|
||||||
"labelPercentage": 0,
|
"labelPercentage": 0,
|
||||||
"route": [
|
"route": [
|
||||||
{
|
{
|
||||||
"x": 813,
|
"x": 820.5,
|
||||||
"y": 360
|
"y": 360
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"x": 813,
|
"x": 820.5,
|
||||||
"y": 540
|
"y": 400
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"x": 797,
|
||||||
|
"y": 400
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"x": 797,
|
||||||
|
"y": 590
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
"animated": false,
|
"animated": false,
|
||||||
|
|
|
||||||
|
Before Width: | Height: | Size: 341 KiB After Width: | Height: | Size: 342 KiB |
454
e2etests/testdata/stable/n22_e32/elk/board.exp.json
generated
vendored
|
|
@ -7,8 +7,8 @@
|
||||||
"id": "a",
|
"id": "a",
|
||||||
"type": "rectangle",
|
"type": "rectangle",
|
||||||
"pos": {
|
"pos": {
|
||||||
"x": 283,
|
"x": 413,
|
||||||
"y": 832
|
"y": 882
|
||||||
},
|
},
|
||||||
"width": 160,
|
"width": 160,
|
||||||
"height": 66,
|
"height": 66,
|
||||||
|
|
@ -48,8 +48,8 @@
|
||||||
"id": "b",
|
"id": "b",
|
||||||
"type": "rectangle",
|
"type": "rectangle",
|
||||||
"pos": {
|
"pos": {
|
||||||
"x": 393,
|
"x": 553,
|
||||||
"y": 1124
|
"y": 1174
|
||||||
},
|
},
|
||||||
"width": 120,
|
"width": 120,
|
||||||
"height": 66,
|
"height": 66,
|
||||||
|
|
@ -89,7 +89,7 @@
|
||||||
"id": "c",
|
"id": "c",
|
||||||
"type": "rectangle",
|
"type": "rectangle",
|
||||||
"pos": {
|
"pos": {
|
||||||
"x": 319,
|
"x": 464,
|
||||||
"y": 294
|
"y": 294
|
||||||
},
|
},
|
||||||
"width": 120,
|
"width": 120,
|
||||||
|
|
@ -130,7 +130,7 @@
|
||||||
"id": "d",
|
"id": "d",
|
||||||
"type": "rectangle",
|
"type": "rectangle",
|
||||||
"pos": {
|
"pos": {
|
||||||
"x": 393,
|
"x": 553,
|
||||||
"y": 686
|
"y": 686
|
||||||
},
|
},
|
||||||
"width": 120,
|
"width": 120,
|
||||||
|
|
@ -171,8 +171,8 @@
|
||||||
"id": "e",
|
"id": "e",
|
||||||
"type": "rectangle",
|
"type": "rectangle",
|
||||||
"pos": {
|
"pos": {
|
||||||
"x": 506,
|
"x": 666,
|
||||||
"y": 832
|
"y": 882
|
||||||
},
|
},
|
||||||
"width": 80,
|
"width": 80,
|
||||||
"height": 66,
|
"height": 66,
|
||||||
|
|
@ -212,8 +212,8 @@
|
||||||
"id": "f",
|
"id": "f",
|
||||||
"type": "rectangle",
|
"type": "rectangle",
|
||||||
"pos": {
|
"pos": {
|
||||||
"x": 536,
|
"x": 726,
|
||||||
"y": 978
|
"y": 1028
|
||||||
},
|
},
|
||||||
"width": 120,
|
"width": 120,
|
||||||
"height": 66,
|
"height": 66,
|
||||||
|
|
@ -253,7 +253,7 @@
|
||||||
"id": "g",
|
"id": "g",
|
||||||
"type": "rectangle",
|
"type": "rectangle",
|
||||||
"pos": {
|
"pos": {
|
||||||
"x": 352,
|
"x": 658,
|
||||||
"y": 12
|
"y": 12
|
||||||
},
|
},
|
||||||
"width": 80,
|
"width": 80,
|
||||||
|
|
@ -294,7 +294,7 @@
|
||||||
"id": "h",
|
"id": "h",
|
||||||
"type": "rectangle",
|
"type": "rectangle",
|
||||||
"pos": {
|
"pos": {
|
||||||
"x": 621,
|
"x": 840,
|
||||||
"y": 158
|
"y": 158
|
||||||
},
|
},
|
||||||
"width": 53,
|
"width": 53,
|
||||||
|
|
@ -335,7 +335,7 @@
|
||||||
"id": "i",
|
"id": "i",
|
||||||
"type": "rectangle",
|
"type": "rectangle",
|
||||||
"pos": {
|
"pos": {
|
||||||
"x": 623,
|
"x": 842,
|
||||||
"y": 294
|
"y": 294
|
||||||
},
|
},
|
||||||
"width": 49,
|
"width": 49,
|
||||||
|
|
@ -376,7 +376,7 @@
|
||||||
"id": "j",
|
"id": "j",
|
||||||
"type": "rectangle",
|
"type": "rectangle",
|
||||||
"pos": {
|
"pos": {
|
||||||
"x": 607,
|
"x": 827,
|
||||||
"y": 540
|
"y": 540
|
||||||
},
|
},
|
||||||
"width": 80,
|
"width": 80,
|
||||||
|
|
@ -417,7 +417,7 @@
|
||||||
"id": "k",
|
"id": "k",
|
||||||
"type": "rectangle",
|
"type": "rectangle",
|
||||||
"pos": {
|
"pos": {
|
||||||
"x": 533,
|
"x": 693,
|
||||||
"y": 686
|
"y": 686
|
||||||
},
|
},
|
||||||
"width": 53,
|
"width": 53,
|
||||||
|
|
@ -458,8 +458,8 @@
|
||||||
"id": "l",
|
"id": "l",
|
||||||
"type": "rectangle",
|
"type": "rectangle",
|
||||||
"pos": {
|
"pos": {
|
||||||
"x": 18,
|
"x": 12,
|
||||||
"y": 832
|
"y": 882
|
||||||
},
|
},
|
||||||
"width": 80,
|
"width": 80,
|
||||||
"height": 66,
|
"height": 66,
|
||||||
|
|
@ -499,8 +499,8 @@
|
||||||
"id": "m",
|
"id": "m",
|
||||||
"type": "rectangle",
|
"type": "rectangle",
|
||||||
"pos": {
|
"pos": {
|
||||||
"x": 51,
|
"x": 75,
|
||||||
"y": 1124
|
"y": 1174
|
||||||
},
|
},
|
||||||
"width": 120,
|
"width": 120,
|
||||||
"height": 66,
|
"height": 66,
|
||||||
|
|
@ -540,7 +540,7 @@
|
||||||
"id": "n",
|
"id": "n",
|
||||||
"type": "rectangle",
|
"type": "rectangle",
|
||||||
"pos": {
|
"pos": {
|
||||||
"x": 12,
|
"x": 22,
|
||||||
"y": 686
|
"y": 686
|
||||||
},
|
},
|
||||||
"width": 200,
|
"width": 200,
|
||||||
|
|
@ -581,8 +581,8 @@
|
||||||
"id": "o",
|
"id": "o",
|
||||||
"type": "rectangle",
|
"type": "rectangle",
|
||||||
"pos": {
|
"pos": {
|
||||||
"x": 156,
|
"x": 196,
|
||||||
"y": 832
|
"y": 882
|
||||||
},
|
},
|
||||||
"width": 80,
|
"width": 80,
|
||||||
"height": 66,
|
"height": 66,
|
||||||
|
|
@ -622,8 +622,8 @@
|
||||||
"id": "p",
|
"id": "p",
|
||||||
"type": "rectangle",
|
"type": "rectangle",
|
||||||
"pos": {
|
"pos": {
|
||||||
"x": 136,
|
"x": 173,
|
||||||
"y": 978
|
"y": 1028
|
||||||
},
|
},
|
||||||
"width": 120,
|
"width": 120,
|
||||||
"height": 66,
|
"height": 66,
|
||||||
|
|
@ -663,7 +663,7 @@
|
||||||
"id": "q",
|
"id": "q",
|
||||||
"type": "rectangle",
|
"type": "rectangle",
|
||||||
"pos": {
|
"pos": {
|
||||||
"x": 85,
|
"x": 217,
|
||||||
"y": 12
|
"y": 12
|
||||||
},
|
},
|
||||||
"width": 80,
|
"width": 80,
|
||||||
|
|
@ -704,7 +704,7 @@
|
||||||
"id": "r",
|
"id": "r",
|
||||||
"type": "rectangle",
|
"type": "rectangle",
|
||||||
"pos": {
|
"pos": {
|
||||||
"x": 234,
|
"x": 354,
|
||||||
"y": 158
|
"y": 158
|
||||||
},
|
},
|
||||||
"width": 51,
|
"width": 51,
|
||||||
|
|
@ -745,7 +745,7 @@
|
||||||
"id": "s",
|
"id": "s",
|
||||||
"type": "rectangle",
|
"type": "rectangle",
|
||||||
"pos": {
|
"pos": {
|
||||||
"x": 219,
|
"x": 340,
|
||||||
"y": 294
|
"y": 294
|
||||||
},
|
},
|
||||||
"width": 80,
|
"width": 80,
|
||||||
|
|
@ -786,7 +786,7 @@
|
||||||
"id": "t",
|
"id": "t",
|
||||||
"type": "rectangle",
|
"type": "rectangle",
|
||||||
"pos": {
|
"pos": {
|
||||||
"x": 219,
|
"x": 315,
|
||||||
"y": 540
|
"y": 540
|
||||||
},
|
},
|
||||||
"width": 80,
|
"width": 80,
|
||||||
|
|
@ -827,7 +827,7 @@
|
||||||
"id": "u",
|
"id": "u",
|
||||||
"type": "rectangle",
|
"type": "rectangle",
|
||||||
"pos": {
|
"pos": {
|
||||||
"x": 257,
|
"x": 357,
|
||||||
"y": 686
|
"y": 686
|
||||||
},
|
},
|
||||||
"width": 80,
|
"width": 80,
|
||||||
|
|
@ -893,20 +893,20 @@
|
||||||
"labelPercentage": 0,
|
"labelPercentage": 0,
|
||||||
"route": [
|
"route": [
|
||||||
{
|
{
|
||||||
"x": 363.3333333333333,
|
"x": 493.33333333333326,
|
||||||
"y": 898
|
"y": 948
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"x": 363.3333333333333,
|
"x": 493.33333333333326,
|
||||||
"y": 1084
|
"y": 1134
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"x": 423.3333333333333,
|
"x": 583.3333333333333,
|
||||||
"y": 1084
|
"y": 1134
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"x": 423.3333333333333,
|
"x": 583.3333333333333,
|
||||||
"y": 1124
|
"y": 1174
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
"animated": false,
|
"animated": false,
|
||||||
|
|
@ -941,20 +941,20 @@
|
||||||
"labelPercentage": 0,
|
"labelPercentage": 0,
|
||||||
"route": [
|
"route": [
|
||||||
{
|
{
|
||||||
"x": 379.66666666666663,
|
"x": 524.3333333333333,
|
||||||
"y": 360
|
"y": 360
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"x": 379.66666666666663,
|
"x": 524.3333333333333,
|
||||||
"y": 792
|
"y": 500
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"x": 379.3333333333333,
|
"x": 509.33333333333326,
|
||||||
"y": 792
|
"y": 500
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"x": 379.3333333333333,
|
"x": 509.33333333333326,
|
||||||
"y": 832
|
"y": 882
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
"animated": false,
|
"animated": false,
|
||||||
|
|
@ -989,20 +989,20 @@
|
||||||
"labelPercentage": 0,
|
"labelPercentage": 0,
|
||||||
"route": [
|
"route": [
|
||||||
{
|
{
|
||||||
"x": 423.3333333333333,
|
"x": 583.3333333333333,
|
||||||
"y": 752
|
"y": 752
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"x": 423.3333333333333,
|
"x": 583.3333333333333,
|
||||||
"y": 792
|
"y": 792
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"x": 411.3333333333333,
|
"x": 541.3333333333333,
|
||||||
"y": 792
|
"y": 792
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"x": 411.3333333333333,
|
"x": 541.3333333333333,
|
||||||
"y": 832
|
"y": 882
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
"animated": false,
|
"animated": false,
|
||||||
|
|
@ -1037,12 +1037,12 @@
|
||||||
"labelPercentage": 0,
|
"labelPercentage": 0,
|
||||||
"route": [
|
"route": [
|
||||||
{
|
{
|
||||||
"x": 453.3333333333333,
|
"x": 613.3333333333333,
|
||||||
"y": 752
|
"y": 752
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"x": 453.3333333333333,
|
"x": 613.3333333333333,
|
||||||
"y": 1124
|
"y": 1174
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
"animated": false,
|
"animated": false,
|
||||||
|
|
@ -1077,20 +1077,20 @@
|
||||||
"labelPercentage": 0,
|
"labelPercentage": 0,
|
||||||
"route": [
|
"route": [
|
||||||
{
|
{
|
||||||
"x": 483.3333333333333,
|
"x": 643.3333333333333,
|
||||||
"y": 752
|
"y": 752
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"x": 483.3333333333333,
|
"x": 643.3333333333333,
|
||||||
"y": 792
|
"y": 792
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"x": 533.1666666666666,
|
"x": 693.1666666666666,
|
||||||
"y": 792
|
"y": 792
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"x": 533.1666666666666,
|
"x": 693.1666666666666,
|
||||||
"y": 832
|
"y": 882
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
"animated": false,
|
"animated": false,
|
||||||
|
|
@ -1125,20 +1125,20 @@
|
||||||
"labelPercentage": 0,
|
"labelPercentage": 0,
|
||||||
"route": [
|
"route": [
|
||||||
{
|
{
|
||||||
"x": 546.5,
|
"x": 706.5,
|
||||||
"y": 898
|
"y": 948
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"x": 546.5,
|
"x": 706.5,
|
||||||
"y": 938
|
"y": 988
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"x": 566.5,
|
"x": 756.4999999999999,
|
||||||
"y": 938
|
"y": 988
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"x": 566.5,
|
"x": 756.4999999999999,
|
||||||
"y": 978
|
"y": 1028
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
"animated": false,
|
"animated": false,
|
||||||
|
|
@ -1173,20 +1173,20 @@
|
||||||
"labelPercentage": 0,
|
"labelPercentage": 0,
|
||||||
"route": [
|
"route": [
|
||||||
{
|
{
|
||||||
"x": 596.5,
|
"x": 786.4999999999999,
|
||||||
"y": 1044
|
"y": 1094
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"x": 596.5,
|
"x": 786.4999999999999,
|
||||||
"y": 1084
|
"y": 1134
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"x": 483.3333333333333,
|
"x": 643.3333333333333,
|
||||||
"y": 1084
|
"y": 1134
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"x": 483.3333333333333,
|
"x": 643.3333333333333,
|
||||||
"y": 1124
|
"y": 1174
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
"animated": false,
|
"animated": false,
|
||||||
|
|
@ -1221,20 +1221,20 @@
|
||||||
"labelPercentage": 0,
|
"labelPercentage": 0,
|
||||||
"route": [
|
"route": [
|
||||||
{
|
{
|
||||||
"x": 409.66666666666663,
|
"x": 554.3333333333333,
|
||||||
"y": 360
|
"y": 360
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"x": 409.66666666666663,
|
"x": 554.3333333333333,
|
||||||
"y": 400
|
"y": 400
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"x": 596.5,
|
"x": 786.4999999999999,
|
||||||
"y": 400
|
"y": 400
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"x": 596.5,
|
"x": 786.4999999999999,
|
||||||
"y": 978
|
"y": 1028
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
"animated": false,
|
"animated": false,
|
||||||
|
|
@ -1269,11 +1269,19 @@
|
||||||
"labelPercentage": 0,
|
"labelPercentage": 0,
|
||||||
"route": [
|
"route": [
|
||||||
{
|
{
|
||||||
"x": 379.66666666666663,
|
"x": 685.0833333333333,
|
||||||
"y": 78
|
"y": 78
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"x": 379.66666666666663,
|
"x": 685.0833333333333,
|
||||||
|
"y": 118
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"x": 524.3333333333333,
|
||||||
|
"y": 118
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"x": 524.3333333333333,
|
||||||
"y": 294
|
"y": 294
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
|
|
@ -1309,19 +1317,19 @@
|
||||||
"labelPercentage": 0,
|
"labelPercentage": 0,
|
||||||
"route": [
|
"route": [
|
||||||
{
|
{
|
||||||
"x": 406.33333333333326,
|
"x": 711.75,
|
||||||
"y": 78
|
"y": 78
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"x": 406.33333333333326,
|
"x": 711.75,
|
||||||
"y": 118
|
"y": 118
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"x": 647.5,
|
"x": 867.4999999999999,
|
||||||
"y": 118
|
"y": 118
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"x": 647.5,
|
"x": 867.4999999999999,
|
||||||
"y": 158
|
"y": 158
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
|
|
@ -1357,11 +1365,11 @@
|
||||||
"labelPercentage": 0,
|
"labelPercentage": 0,
|
||||||
"route": [
|
"route": [
|
||||||
{
|
{
|
||||||
"x": 647.5,
|
"x": 867.4999999999999,
|
||||||
"y": 224
|
"y": 224
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"x": 647.5,
|
"x": 867.4999999999999,
|
||||||
"y": 294
|
"y": 294
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
|
|
@ -1397,11 +1405,11 @@
|
||||||
"labelPercentage": 0,
|
"labelPercentage": 0,
|
||||||
"route": [
|
"route": [
|
||||||
{
|
{
|
||||||
"x": 647.5,
|
"x": 867.4999999999999,
|
||||||
"y": 360
|
"y": 360
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"x": 647.5,
|
"x": 867.4999999999999,
|
||||||
"y": 540
|
"y": 540
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
|
|
@ -1437,19 +1445,19 @@
|
||||||
"labelPercentage": 0,
|
"labelPercentage": 0,
|
||||||
"route": [
|
"route": [
|
||||||
{
|
{
|
||||||
"x": 634.1666666666666,
|
"x": 854.1666666666666,
|
||||||
"y": 606
|
"y": 606
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"x": 634.1666666666666,
|
"x": 854.1666666666666,
|
||||||
"y": 646
|
"y": 646
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"x": 559.8333333333333,
|
"x": 719.8333333333333,
|
||||||
"y": 646
|
"y": 646
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"x": 559.8333333333333,
|
"x": 719.8333333333333,
|
||||||
"y": 686
|
"y": 686
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
|
|
@ -1485,12 +1493,12 @@
|
||||||
"labelPercentage": 0,
|
"labelPercentage": 0,
|
||||||
"route": [
|
"route": [
|
||||||
{
|
{
|
||||||
"x": 559.8333333333333,
|
"x": 719.8333333333333,
|
||||||
"y": 752
|
"y": 752
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"x": 559.8333333333333,
|
"x": 719.8333333333333,
|
||||||
"y": 832
|
"y": 882
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
"animated": false,
|
"animated": false,
|
||||||
|
|
@ -1525,20 +1533,20 @@
|
||||||
"labelPercentage": 0,
|
"labelPercentage": 0,
|
||||||
"route": [
|
"route": [
|
||||||
{
|
{
|
||||||
"x": 660.8333333333334,
|
"x": 880.8333333333333,
|
||||||
"y": 606
|
"y": 606
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"x": 660.8333333333334,
|
"x": 880.8333333333333,
|
||||||
"y": 938
|
"y": 988
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"x": 626.5,
|
"x": 816.4999999999999,
|
||||||
"y": 938
|
"y": 988
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"x": 626.5,
|
"x": 816.4999999999999,
|
||||||
"y": 978
|
"y": 1028
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
"animated": false,
|
"animated": false,
|
||||||
|
|
@ -1573,20 +1581,20 @@
|
||||||
"labelPercentage": 0,
|
"labelPercentage": 0,
|
||||||
"route": [
|
"route": [
|
||||||
{
|
{
|
||||||
"x": 58.66666666666666,
|
"x": 52,
|
||||||
"y": 898
|
"y": 948
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"x": 58.66666666666666,
|
"x": 52,
|
||||||
"y": 1084
|
"y": 1134
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"x": 81.99999999999999,
|
"x": 105.33333333333326,
|
||||||
"y": 1084
|
"y": 1134
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"x": 81.99999999999999,
|
"x": 105.33333333333326,
|
||||||
"y": 1124
|
"y": 1174
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
"animated": false,
|
"animated": false,
|
||||||
|
|
@ -1621,12 +1629,20 @@
|
||||||
"labelPercentage": 0,
|
"labelPercentage": 0,
|
||||||
"route": [
|
"route": [
|
||||||
{
|
{
|
||||||
"x": 45.33333333333333,
|
"x": 55.33333333333337,
|
||||||
"y": 752
|
"y": 752
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"x": 45.33333333333333,
|
"x": 55.33333333333337,
|
||||||
"y": 832
|
"y": 792
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"x": 38.66666666666663,
|
||||||
|
"y": 792
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"x": 38.66666666666663,
|
||||||
|
"y": 882
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
"animated": false,
|
"animated": false,
|
||||||
|
|
@ -1661,20 +1677,20 @@
|
||||||
"labelPercentage": 0,
|
"labelPercentage": 0,
|
||||||
"route": [
|
"route": [
|
||||||
{
|
{
|
||||||
"x": 78.66666666666666,
|
"x": 88.66666666666663,
|
||||||
"y": 752
|
"y": 752
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"x": 78.66666666666666,
|
"x": 88.66666666666663,
|
||||||
"y": 792
|
"y": 842
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"x": 72,
|
"x": 65.33333333333337,
|
||||||
"y": 792
|
"y": 842
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"x": 72,
|
"x": 65.33333333333337,
|
||||||
"y": 832
|
"y": 882
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
"animated": false,
|
"animated": false,
|
||||||
|
|
@ -1709,12 +1725,28 @@
|
||||||
"labelPercentage": 0,
|
"labelPercentage": 0,
|
||||||
"route": [
|
"route": [
|
||||||
{
|
{
|
||||||
"x": 111.99999999999999,
|
"x": 122,
|
||||||
"y": 752
|
"y": 752
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"x": 111.99999999999999,
|
"x": 122,
|
||||||
"y": 1124
|
"y": 842
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"x": 132,
|
||||||
|
"y": 842
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"x": 132,
|
||||||
|
"y": 1134
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"x": 135.33333333333326,
|
||||||
|
"y": 1134
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"x": 135.33333333333326,
|
||||||
|
"y": 1174
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
"animated": false,
|
"animated": false,
|
||||||
|
|
@ -1749,20 +1781,20 @@
|
||||||
"labelPercentage": 0,
|
"labelPercentage": 0,
|
||||||
"route": [
|
"route": [
|
||||||
{
|
{
|
||||||
"x": 178.66666666666663,
|
"x": 188.66666666666663,
|
||||||
"y": 752
|
"y": 752
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"x": 178.66666666666663,
|
"x": 188.66666666666663,
|
||||||
"y": 792
|
"y": 792
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"x": 182.99999999999997,
|
"x": 222.9999999999999,
|
||||||
"y": 792
|
"y": 792
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"x": 182.99999999999997,
|
"x": 222.9999999999999,
|
||||||
"y": 832
|
"y": 882
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
"animated": false,
|
"animated": false,
|
||||||
|
|
@ -1797,12 +1829,20 @@
|
||||||
"labelPercentage": 0,
|
"labelPercentage": 0,
|
||||||
"route": [
|
"route": [
|
||||||
{
|
{
|
||||||
"x": 196.33333333333331,
|
"x": 236.33333333333326,
|
||||||
"y": 898
|
"y": 948
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"x": 196.33333333333331,
|
"x": 236.33333333333326,
|
||||||
"y": 978
|
"y": 988
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"x": 233,
|
||||||
|
"y": 988
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"x": 233,
|
||||||
|
"y": 1028
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
"animated": false,
|
"animated": false,
|
||||||
|
|
@ -1837,20 +1877,20 @@
|
||||||
"labelPercentage": 0,
|
"labelPercentage": 0,
|
||||||
"route": [
|
"route": [
|
||||||
{
|
{
|
||||||
"x": 196.33333333333331,
|
"x": 233,
|
||||||
"y": 1044
|
"y": 1094
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"x": 196.33333333333331,
|
"x": 233,
|
||||||
"y": 1084
|
"y": 1134
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"x": 142,
|
"x": 165.33333333333326,
|
||||||
"y": 1084
|
"y": 1134
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"x": 142,
|
"x": 165.33333333333326,
|
||||||
"y": 1124
|
"y": 1174
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
"animated": false,
|
"animated": false,
|
||||||
|
|
@ -1885,20 +1925,28 @@
|
||||||
"labelPercentage": 0,
|
"labelPercentage": 0,
|
||||||
"route": [
|
"route": [
|
||||||
{
|
{
|
||||||
"x": 145.33333333333331,
|
"x": 155.33333333333326,
|
||||||
"y": 752
|
"y": 752
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"x": 145.33333333333331,
|
"x": 155.33333333333326,
|
||||||
"y": 938
|
"y": 792
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"x": 166.33333333333331,
|
"x": 150.83333333333326,
|
||||||
"y": 938
|
"y": 792
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"x": 166.33333333333331,
|
"x": 150.83333333333326,
|
||||||
"y": 978
|
"y": 988
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"x": 203,
|
||||||
|
"y": 988
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"x": 203,
|
||||||
|
"y": 1028
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
"animated": false,
|
"animated": false,
|
||||||
|
|
@ -1933,11 +1981,19 @@
|
||||||
"labelPercentage": 0,
|
"labelPercentage": 0,
|
||||||
"route": [
|
"route": [
|
||||||
{
|
{
|
||||||
"x": 112,
|
"x": 243.9999999999999,
|
||||||
"y": 78
|
"y": 78
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"x": 112,
|
"x": 243.9999999999999,
|
||||||
|
"y": 118
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"x": 122,
|
||||||
|
"y": 118
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"x": 122,
|
||||||
"y": 686
|
"y": 686
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
|
|
@ -1973,19 +2029,19 @@
|
||||||
"labelPercentage": 0,
|
"labelPercentage": 0,
|
||||||
"route": [
|
"route": [
|
||||||
{
|
{
|
||||||
"x": 138.66666666666666,
|
"x": 270.66666666666663,
|
||||||
"y": 78
|
"y": 78
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"x": 138.66666666666666,
|
"x": 270.66666666666663,
|
||||||
"y": 118
|
"y": 118
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"x": 259.66666666666663,
|
"x": 380,
|
||||||
"y": 118
|
"y": 118
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"x": 259.66666666666663,
|
"x": 380,
|
||||||
"y": 158
|
"y": 158
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
|
|
@ -2021,11 +2077,11 @@
|
||||||
"labelPercentage": 0,
|
"labelPercentage": 0,
|
||||||
"route": [
|
"route": [
|
||||||
{
|
{
|
||||||
"x": 259.66666666666663,
|
"x": 380,
|
||||||
"y": 224
|
"y": 224
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"x": 259.66666666666663,
|
"x": 380,
|
||||||
"y": 294
|
"y": 294
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
|
|
@ -2061,11 +2117,19 @@
|
||||||
"labelPercentage": 0,
|
"labelPercentage": 0,
|
||||||
"route": [
|
"route": [
|
||||||
{
|
{
|
||||||
"x": 246.33333333333331,
|
"x": 366.6666666666667,
|
||||||
"y": 360
|
"y": 360
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"x": 246.33333333333331,
|
"x": 366.6666666666667,
|
||||||
|
"y": 400
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"x": 341.8333333333333,
|
||||||
|
"y": 400
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"x": 341.8333333333333,
|
||||||
"y": 540
|
"y": 540
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
|
|
@ -2101,19 +2165,19 @@
|
||||||
"labelPercentage": 0,
|
"labelPercentage": 0,
|
||||||
"route": [
|
"route": [
|
||||||
{
|
{
|
||||||
"x": 273,
|
"x": 368.49999999999994,
|
||||||
"y": 606
|
"y": 606
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"x": 273,
|
"x": 368.49999999999994,
|
||||||
"y": 646
|
"y": 646
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"x": 297.3333333333333,
|
"x": 397.33333333333326,
|
||||||
"y": 646
|
"y": 646
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"x": 297.3333333333333,
|
"x": 397.33333333333326,
|
||||||
"y": 686
|
"y": 686
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
|
|
@ -2149,20 +2213,20 @@
|
||||||
"labelPercentage": 0,
|
"labelPercentage": 0,
|
||||||
"route": [
|
"route": [
|
||||||
{
|
{
|
||||||
"x": 284,
|
"x": 383.99999999999994,
|
||||||
"y": 752
|
"y": 752
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"x": 284,
|
"x": 383.99999999999994,
|
||||||
"y": 792
|
"y": 792
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"x": 209.66666666666666,
|
"x": 249.66666666666663,
|
||||||
"y": 792
|
"y": 792
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"x": 209.66666666666666,
|
"x": 249.66666666666663,
|
||||||
"y": 832
|
"y": 882
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
"animated": false,
|
"animated": false,
|
||||||
|
|
@ -2197,20 +2261,28 @@
|
||||||
"labelPercentage": 0,
|
"labelPercentage": 0,
|
||||||
"route": [
|
"route": [
|
||||||
{
|
{
|
||||||
"x": 246.33333333333331,
|
"x": 341.8333333333333,
|
||||||
"y": 606
|
"y": 606
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"x": 246.33333333333331,
|
"x": 341.8333333333333,
|
||||||
"y": 938
|
"y": 646
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"x": 226.33333333333331,
|
"x": 316.33333333333326,
|
||||||
"y": 938
|
"y": 646
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"x": 226.33333333333331,
|
"x": 316.33333333333326,
|
||||||
"y": 978
|
"y": 988
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"x": 263,
|
||||||
|
"y": 988
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"x": 263,
|
||||||
|
"y": 1028
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
"animated": false,
|
"animated": false,
|
||||||
|
|
@ -2245,19 +2317,19 @@
|
||||||
"labelPercentage": 0,
|
"labelPercentage": 0,
|
||||||
"route": [
|
"route": [
|
||||||
{
|
{
|
||||||
"x": 349.66666666666663,
|
"x": 494.3333333333333,
|
||||||
"y": 360
|
"y": 360
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"x": 349.66666666666663,
|
"x": 494.3333333333333,
|
||||||
"y": 450
|
"y": 450
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"x": 273,
|
"x": 368.49999999999994,
|
||||||
"y": 450
|
"y": 450
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"x": 273,
|
"x": 368.49999999999994,
|
||||||
"y": 540
|
"y": 540
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
|
|
@ -2293,28 +2365,20 @@
|
||||||
"labelPercentage": 0,
|
"labelPercentage": 0,
|
||||||
"route": [
|
"route": [
|
||||||
{
|
{
|
||||||
"x": 273,
|
"x": 393.3333333333333,
|
||||||
"y": 360
|
"y": 360
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"x": 273,
|
"x": 393.3333333333333,
|
||||||
"y": 400
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"x": 310.16666666666663,
|
|
||||||
"y": 400
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"x": 310.16666666666663,
|
|
||||||
"y": 500
|
"y": 500
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"x": 347.3333333333333,
|
"x": 477.33333333333326,
|
||||||
"y": 500
|
"y": 500
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"x": 347.3333333333333,
|
"x": 477.33333333333326,
|
||||||
"y": 832
|
"y": 882
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
"animated": false,
|
"animated": false,
|
||||||
|
|
@ -2349,20 +2413,20 @@
|
||||||
"labelPercentage": 0,
|
"labelPercentage": 0,
|
||||||
"route": [
|
"route": [
|
||||||
{
|
{
|
||||||
"x": 310.66666666666663,
|
"x": 410.6666666666666,
|
||||||
"y": 752
|
"y": 752
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"x": 310.66666666666663,
|
"x": 410.6666666666666,
|
||||||
"y": 792
|
"y": 792
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"x": 315.3333333333333,
|
"x": 445.33333333333326,
|
||||||
"y": 792
|
"y": 792
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"x": 315.3333333333333,
|
"x": 445.33333333333326,
|
||||||
"y": 832
|
"y": 882
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
"animated": false,
|
"animated": false,
|
||||||
|
|
|
||||||
154
e2etests/testdata/stable/n22_e32/elk/sketch.exp.svg
vendored
|
Before Width: | Height: | Size: 344 KiB After Width: | Height: | Size: 346 KiB |
70
e2etests/testdata/stable/one_container_loop/elk/board.exp.json
generated
vendored
|
|
@ -89,8 +89,8 @@
|
||||||
"id": "c",
|
"id": "c",
|
||||||
"type": "rectangle",
|
"type": "rectangle",
|
||||||
"pos": {
|
"pos": {
|
||||||
"x": 39,
|
"x": 82,
|
||||||
"y": 731
|
"y": 781
|
||||||
},
|
},
|
||||||
"width": 120,
|
"width": 120,
|
||||||
"height": 66,
|
"height": 66,
|
||||||
|
|
@ -130,7 +130,7 @@
|
||||||
"id": "d",
|
"id": "d",
|
||||||
"type": "rectangle",
|
"type": "rectangle",
|
||||||
"pos": {
|
"pos": {
|
||||||
"x": 72,
|
"x": 121,
|
||||||
"y": 585
|
"y": 585
|
||||||
},
|
},
|
||||||
"width": 54,
|
"width": 54,
|
||||||
|
|
@ -171,7 +171,7 @@
|
||||||
"id": "e",
|
"id": "e",
|
||||||
"type": "rectangle",
|
"type": "rectangle",
|
||||||
"pos": {
|
"pos": {
|
||||||
"x": 145,
|
"x": 194,
|
||||||
"y": 449
|
"y": 449
|
||||||
},
|
},
|
||||||
"width": 53,
|
"width": 53,
|
||||||
|
|
@ -212,7 +212,7 @@
|
||||||
"id": "f",
|
"id": "f",
|
||||||
"type": "rectangle",
|
"type": "rectangle",
|
||||||
"pos": {
|
"pos": {
|
||||||
"x": 74,
|
"x": 123,
|
||||||
"y": 449
|
"y": 449
|
||||||
},
|
},
|
||||||
"width": 51,
|
"width": 51,
|
||||||
|
|
@ -253,7 +253,7 @@
|
||||||
"id": "g",
|
"id": "g",
|
||||||
"type": "rectangle",
|
"type": "rectangle",
|
||||||
"pos": {
|
"pos": {
|
||||||
"x": 72,
|
"x": 121,
|
||||||
"y": 313
|
"y": 313
|
||||||
},
|
},
|
||||||
"width": 54,
|
"width": 54,
|
||||||
|
|
@ -368,20 +368,20 @@
|
||||||
"y": 223
|
"y": 223
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"x": 61.5,
|
"x": 78.25,
|
||||||
"y": 223
|
"y": 223
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"x": 61.5,
|
"x": 78.25,
|
||||||
"y": 691
|
"y": 691
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"x": 69.5,
|
"x": 112.5,
|
||||||
"y": 691
|
"y": 691
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"x": 69.5,
|
"x": 112.5,
|
||||||
"y": 731
|
"y": 781
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
"animated": false,
|
"animated": false,
|
||||||
|
|
@ -416,12 +416,20 @@
|
||||||
"labelPercentage": 0,
|
"labelPercentage": 0,
|
||||||
"route": [
|
"route": [
|
||||||
{
|
{
|
||||||
"x": 99.5,
|
"x": 148.75,
|
||||||
"y": 651
|
"y": 651
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"x": 99.5,
|
"x": 148.75,
|
||||||
"y": 731
|
"y": 691
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"x": 142.5,
|
||||||
|
"y": 691
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"x": 142.5,
|
||||||
|
"y": 781
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
"animated": false,
|
"animated": false,
|
||||||
|
|
@ -456,20 +464,20 @@
|
||||||
"labelPercentage": 0,
|
"labelPercentage": 0,
|
||||||
"route": [
|
"route": [
|
||||||
{
|
{
|
||||||
"x": 171.5,
|
"x": 220.75,
|
||||||
"y": 515
|
"y": 515
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"x": 171.5,
|
"x": 220.75,
|
||||||
"y": 691
|
"y": 741
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"x": 129.5,
|
"x": 172.5,
|
||||||
"y": 691
|
"y": 741
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"x": 129.5,
|
"x": 172.5,
|
||||||
"y": 731
|
"y": 781
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
"animated": false,
|
"animated": false,
|
||||||
|
|
@ -504,11 +512,11 @@
|
||||||
"labelPercentage": 0,
|
"labelPercentage": 0,
|
||||||
"route": [
|
"route": [
|
||||||
{
|
{
|
||||||
"x": 99.5,
|
"x": 148.75,
|
||||||
"y": 515
|
"y": 515
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"x": 99.5,
|
"x": 148.75,
|
||||||
"y": 585
|
"y": 585
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
|
|
@ -549,6 +557,14 @@
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"x": 171.5,
|
"x": 171.5,
|
||||||
|
"y": 223
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"x": 220.75,
|
||||||
|
"y": 223
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"x": 220.75,
|
||||||
"y": 449
|
"y": 449
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
|
|
@ -584,11 +600,11 @@
|
||||||
"labelPercentage": 0,
|
"labelPercentage": 0,
|
||||||
"route": [
|
"route": [
|
||||||
{
|
{
|
||||||
"x": 99.5,
|
"x": 148.75,
|
||||||
"y": 379
|
"y": 379
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"x": 99.5,
|
"x": 148.75,
|
||||||
"y": 449
|
"y": 449
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
|
|
@ -632,11 +648,11 @@
|
||||||
"y": 273
|
"y": 273
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"x": 99.5,
|
"x": 148.75,
|
||||||
"y": 273
|
"y": 273
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"x": 99.5,
|
"x": 148.75,
|
||||||
"y": 313
|
"y": 313
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
|
|
|
||||||
|
Before Width: | Height: | Size: 657 KiB After Width: | Height: | Size: 657 KiB |
90
e2etests/testdata/stable/one_three_one_container/elk/board.exp.json
generated
vendored
|
|
@ -89,8 +89,8 @@
|
||||||
"id": "a",
|
"id": "a",
|
||||||
"type": "rectangle",
|
"type": "rectangle",
|
||||||
"pos": {
|
"pos": {
|
||||||
"x": 65,
|
"x": 22,
|
||||||
"y": 313
|
"y": 263
|
||||||
},
|
},
|
||||||
"width": 53,
|
"width": 53,
|
||||||
"height": 66,
|
"height": 66,
|
||||||
|
|
@ -130,8 +130,8 @@
|
||||||
"id": "b",
|
"id": "b",
|
||||||
"type": "rectangle",
|
"type": "rectangle",
|
||||||
"pos": {
|
"pos": {
|
||||||
"x": 138,
|
"x": 95,
|
||||||
"y": 313
|
"y": 263
|
||||||
},
|
},
|
||||||
"width": 53,
|
"width": 53,
|
||||||
"height": 66,
|
"height": 66,
|
||||||
|
|
@ -171,8 +171,8 @@
|
||||||
"id": "c",
|
"id": "c",
|
||||||
"type": "rectangle",
|
"type": "rectangle",
|
||||||
"pos": {
|
"pos": {
|
||||||
"x": 211,
|
"x": 168,
|
||||||
"y": 313
|
"y": 263
|
||||||
},
|
},
|
||||||
"width": 53,
|
"width": 53,
|
||||||
"height": 66,
|
"height": 66,
|
||||||
|
|
@ -212,8 +212,8 @@
|
||||||
"id": "bottom",
|
"id": "bottom",
|
||||||
"type": "rectangle",
|
"type": "rectangle",
|
||||||
"pos": {
|
"pos": {
|
||||||
"x": 55,
|
"x": 12,
|
||||||
"y": 464
|
"y": 414
|
||||||
},
|
},
|
||||||
"width": 220,
|
"width": 220,
|
||||||
"height": 166,
|
"height": 166,
|
||||||
|
|
@ -253,8 +253,8 @@
|
||||||
"id": "bottom.end",
|
"id": "bottom.end",
|
||||||
"type": "rectangle",
|
"type": "rectangle",
|
||||||
"pos": {
|
"pos": {
|
||||||
"x": 105,
|
"x": 62,
|
||||||
"y": 514
|
"y": 464
|
||||||
},
|
},
|
||||||
"width": 120,
|
"width": 120,
|
||||||
"height": 66,
|
"height": 66,
|
||||||
|
|
@ -324,7 +324,15 @@
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"x": 92,
|
"x": 92,
|
||||||
"y": 313
|
"y": 223
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"x": 49,
|
||||||
|
"y": 223
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"x": 49,
|
||||||
|
"y": 263
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
"animated": false,
|
"animated": false,
|
||||||
|
|
@ -364,15 +372,7 @@
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"x": 122,
|
"x": 122,
|
||||||
"y": 273
|
"y": 263
|
||||||
},
|
|
||||||
{
|
|
||||||
"x": 165,
|
|
||||||
"y": 273
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"x": 165,
|
|
||||||
"y": 313
|
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
"animated": false,
|
"animated": false,
|
||||||
|
|
@ -415,12 +415,12 @@
|
||||||
"y": 223
|
"y": 223
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"x": 238,
|
"x": 195,
|
||||||
"y": 223
|
"y": 223
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"x": 238,
|
"x": 195,
|
||||||
"y": 313
|
"y": 263
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
"animated": false,
|
"animated": false,
|
||||||
|
|
@ -455,20 +455,20 @@
|
||||||
"labelPercentage": 0,
|
"labelPercentage": 0,
|
||||||
"route": [
|
"route": [
|
||||||
{
|
{
|
||||||
"x": 92,
|
"x": 49,
|
||||||
"y": 379
|
"y": 329
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"x": 49,
|
||||||
|
"y": 369
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"x": 92,
|
"x": 92,
|
||||||
"y": 419
|
"y": 369
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"x": 135,
|
"x": 92,
|
||||||
"y": 419
|
"y": 464
|
||||||
},
|
|
||||||
{
|
|
||||||
"x": 135,
|
|
||||||
"y": 514
|
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
"animated": false,
|
"animated": false,
|
||||||
|
|
@ -503,12 +503,12 @@
|
||||||
"labelPercentage": 0,
|
"labelPercentage": 0,
|
||||||
"route": [
|
"route": [
|
||||||
{
|
{
|
||||||
"x": 165,
|
"x": 122,
|
||||||
"y": 379
|
"y": 329
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"x": 165,
|
"x": 122,
|
||||||
"y": 514
|
"y": 464
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
"animated": false,
|
"animated": false,
|
||||||
|
|
@ -543,20 +543,20 @@
|
||||||
"labelPercentage": 0,
|
"labelPercentage": 0,
|
||||||
"route": [
|
"route": [
|
||||||
{
|
{
|
||||||
"x": 238,
|
"x": 195,
|
||||||
"y": 379
|
"y": 329
|
||||||
},
|
|
||||||
{
|
|
||||||
"x": 238,
|
|
||||||
"y": 419
|
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"x": 195,
|
"x": 195,
|
||||||
"y": 419
|
"y": 369
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"x": 195,
|
"x": 152,
|
||||||
"y": 514
|
"y": 369
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"x": 152,
|
||||||
|
"y": 464
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
"animated": false,
|
"animated": false,
|
||||||
|
|
|
||||||
|
Before Width: | Height: | Size: 656 KiB After Width: | Height: | Size: 656 KiB |
106
e2etests/testdata/stable/overlapping_image_container_labels/elk/board.exp.json
generated
vendored
|
|
@ -7,7 +7,7 @@
|
||||||
"id": "root",
|
"id": "root",
|
||||||
"type": "image",
|
"type": "image",
|
||||||
"pos": {
|
"pos": {
|
||||||
"x": 204,
|
"x": 484,
|
||||||
"y": 12
|
"y": 12
|
||||||
},
|
},
|
||||||
"width": 128,
|
"width": 128,
|
||||||
|
|
@ -64,7 +64,7 @@
|
||||||
"y": 241
|
"y": 241
|
||||||
},
|
},
|
||||||
"width": 1072,
|
"width": 1072,
|
||||||
"height": 1124,
|
"height": 1114,
|
||||||
"opacity": 1,
|
"opacity": 1,
|
||||||
"strokeDash": 0,
|
"strokeDash": 0,
|
||||||
"strokeWidth": 2,
|
"strokeWidth": 2,
|
||||||
|
|
@ -101,7 +101,7 @@
|
||||||
"id": "container.root",
|
"id": "container.root",
|
||||||
"type": "image",
|
"type": "image",
|
||||||
"pos": {
|
"pos": {
|
||||||
"x": 204,
|
"x": 484,
|
||||||
"y": 291
|
"y": 291
|
||||||
},
|
},
|
||||||
"width": 128,
|
"width": 128,
|
||||||
|
|
@ -158,7 +158,7 @@
|
||||||
"y": 621
|
"y": 621
|
||||||
},
|
},
|
||||||
"width": 476,
|
"width": 476,
|
||||||
"height": 694,
|
"height": 684,
|
||||||
"opacity": 1,
|
"opacity": 1,
|
||||||
"strokeDash": 0,
|
"strokeDash": 0,
|
||||||
"strokeWidth": 2,
|
"strokeWidth": 2,
|
||||||
|
|
@ -195,7 +195,7 @@
|
||||||
"id": "container.left2.root",
|
"id": "container.left2.root",
|
||||||
"type": "image",
|
"type": "image",
|
||||||
"pos": {
|
"pos": {
|
||||||
"x": 183,
|
"x": 236,
|
||||||
"y": 671
|
"y": 671
|
||||||
},
|
},
|
||||||
"width": 128,
|
"width": 128,
|
||||||
|
|
@ -249,7 +249,7 @@
|
||||||
"type": "rectangle",
|
"type": "rectangle",
|
||||||
"pos": {
|
"pos": {
|
||||||
"x": 112,
|
"x": 112,
|
||||||
"y": 1011
|
"y": 1001
|
||||||
},
|
},
|
||||||
"width": 376,
|
"width": 376,
|
||||||
"height": 254,
|
"height": 254,
|
||||||
|
|
@ -290,7 +290,7 @@
|
||||||
"type": "image",
|
"type": "image",
|
||||||
"pos": {
|
"pos": {
|
||||||
"x": 162,
|
"x": 162,
|
||||||
"y": 1061
|
"y": 1051
|
||||||
},
|
},
|
||||||
"width": 128,
|
"width": 128,
|
||||||
"height": 128,
|
"height": 128,
|
||||||
|
|
@ -343,7 +343,7 @@
|
||||||
"type": "image",
|
"type": "image",
|
||||||
"pos": {
|
"pos": {
|
||||||
"x": 310,
|
"x": 310,
|
||||||
"y": 1061
|
"y": 1051
|
||||||
},
|
},
|
||||||
"width": 128,
|
"width": 128,
|
||||||
"height": 128,
|
"height": 128,
|
||||||
|
|
@ -399,7 +399,7 @@
|
||||||
"y": 621
|
"y": 621
|
||||||
},
|
},
|
||||||
"width": 476,
|
"width": 476,
|
||||||
"height": 694,
|
"height": 684,
|
||||||
"opacity": 1,
|
"opacity": 1,
|
||||||
"strokeDash": 0,
|
"strokeDash": 0,
|
||||||
"strokeWidth": 2,
|
"strokeWidth": 2,
|
||||||
|
|
@ -436,7 +436,7 @@
|
||||||
"id": "container.right.root",
|
"id": "container.right.root",
|
||||||
"type": "image",
|
"type": "image",
|
||||||
"pos": {
|
"pos": {
|
||||||
"x": 679,
|
"x": 732,
|
||||||
"y": 671
|
"y": 671
|
||||||
},
|
},
|
||||||
"width": 128,
|
"width": 128,
|
||||||
|
|
@ -490,7 +490,7 @@
|
||||||
"type": "rectangle",
|
"type": "rectangle",
|
||||||
"pos": {
|
"pos": {
|
||||||
"x": 608,
|
"x": 608,
|
||||||
"y": 1011
|
"y": 1001
|
||||||
},
|
},
|
||||||
"width": 376,
|
"width": 376,
|
||||||
"height": 254,
|
"height": 254,
|
||||||
|
|
@ -531,7 +531,7 @@
|
||||||
"type": "image",
|
"type": "image",
|
||||||
"pos": {
|
"pos": {
|
||||||
"x": 658,
|
"x": 658,
|
||||||
"y": 1061
|
"y": 1051
|
||||||
},
|
},
|
||||||
"width": 128,
|
"width": 128,
|
||||||
"height": 128,
|
"height": 128,
|
||||||
|
|
@ -584,7 +584,7 @@
|
||||||
"type": "image",
|
"type": "image",
|
||||||
"pos": {
|
"pos": {
|
||||||
"x": 806,
|
"x": 806,
|
||||||
"y": 1061
|
"y": 1051
|
||||||
},
|
},
|
||||||
"width": 128,
|
"width": 128,
|
||||||
"height": 128,
|
"height": 128,
|
||||||
|
|
@ -661,11 +661,11 @@
|
||||||
"labelPercentage": 0,
|
"labelPercentage": 0,
|
||||||
"route": [
|
"route": [
|
||||||
{
|
{
|
||||||
"x": 268.6666666666667,
|
"x": 548,
|
||||||
"y": 166
|
"y": 166
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"x": 268.6666666666667,
|
"x": 548,
|
||||||
"y": 291
|
"y": 291
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
|
|
@ -701,12 +701,20 @@
|
||||||
"labelPercentage": 0,
|
"labelPercentage": 0,
|
||||||
"route": [
|
"route": [
|
||||||
{
|
{
|
||||||
"x": 226,
|
"x": 278.6666666666667,
|
||||||
"y": 825
|
"y": 825
|
||||||
},
|
},
|
||||||
|
{
|
||||||
|
"x": 278.6666666666667,
|
||||||
|
"y": 865
|
||||||
|
},
|
||||||
{
|
{
|
||||||
"x": 226,
|
"x": 226,
|
||||||
"y": 1061
|
"y": 865
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"x": 226,
|
||||||
|
"y": 1051
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
"animated": false,
|
"animated": false,
|
||||||
|
|
@ -741,28 +749,20 @@
|
||||||
"labelPercentage": 0,
|
"labelPercentage": 0,
|
||||||
"route": [
|
"route": [
|
||||||
{
|
{
|
||||||
"x": 268.6666666666667,
|
"x": 321.33333333333337,
|
||||||
"y": 825
|
"y": 825
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"x": 268.6666666666667,
|
"x": 321.33333333333337,
|
||||||
"y": 865
|
"y": 865
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"x": 322,
|
"x": 374,
|
||||||
"y": 865
|
"y": 865
|
||||||
},
|
},
|
||||||
{
|
|
||||||
"x": 322,
|
|
||||||
"y": 966
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
"x": 374,
|
"x": 374,
|
||||||
"y": 966
|
"y": 1051
|
||||||
},
|
|
||||||
{
|
|
||||||
"x": 374,
|
|
||||||
"y": 1061
|
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
"animated": false,
|
"animated": false,
|
||||||
|
|
@ -797,12 +797,20 @@
|
||||||
"labelPercentage": 0,
|
"labelPercentage": 0,
|
||||||
"route": [
|
"route": [
|
||||||
{
|
{
|
||||||
"x": 722,
|
"x": 774.6666666666667,
|
||||||
"y": 825
|
"y": 825
|
||||||
},
|
},
|
||||||
|
{
|
||||||
|
"x": 774.6666666666667,
|
||||||
|
"y": 865
|
||||||
|
},
|
||||||
{
|
{
|
||||||
"x": 722,
|
"x": 722,
|
||||||
"y": 1061
|
"y": 865
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"x": 722,
|
||||||
|
"y": 1051
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
"animated": false,
|
"animated": false,
|
||||||
|
|
@ -837,28 +845,20 @@
|
||||||
"labelPercentage": 0,
|
"labelPercentage": 0,
|
||||||
"route": [
|
"route": [
|
||||||
{
|
{
|
||||||
"x": 764.6666666666667,
|
"x": 817.3333333333334,
|
||||||
"y": 825
|
"y": 825
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"x": 764.6666666666667,
|
"x": 817.3333333333334,
|
||||||
"y": 865
|
"y": 865
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"x": 818,
|
"x": 870,
|
||||||
"y": 865
|
"y": 865
|
||||||
},
|
},
|
||||||
{
|
|
||||||
"x": 818,
|
|
||||||
"y": 966
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
"x": 870,
|
"x": 870,
|
||||||
"y": 966
|
"y": 1051
|
||||||
},
|
|
||||||
{
|
|
||||||
"x": 870,
|
|
||||||
"y": 1061
|
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
"animated": false,
|
"animated": false,
|
||||||
|
|
@ -893,11 +893,19 @@
|
||||||
"labelPercentage": 0,
|
"labelPercentage": 0,
|
||||||
"route": [
|
"route": [
|
||||||
{
|
{
|
||||||
"x": 247.33333333333334,
|
"x": 526.6666666666667,
|
||||||
"y": 445
|
"y": 445
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"x": 247.33333333333334,
|
"x": 526.6666666666667,
|
||||||
|
"y": 485
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"x": 300,
|
||||||
|
"y": 485
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"x": 300,
|
||||||
"y": 671
|
"y": 671
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
|
|
@ -933,19 +941,19 @@
|
||||||
"labelPercentage": 0,
|
"labelPercentage": 0,
|
||||||
"route": [
|
"route": [
|
||||||
{
|
{
|
||||||
"x": 290,
|
"x": 569.3333333333334,
|
||||||
"y": 445
|
"y": 445
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"x": 290,
|
"x": 569.3333333333334,
|
||||||
"y": 485
|
"y": 485
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"x": 743.3333333333334,
|
"x": 796,
|
||||||
"y": 485
|
"y": 485
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"x": 743.3333333333334,
|
"x": 796,
|
||||||
"y": 671
|
"y": 671
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
|
|
|
||||||
|
Before Width: | Height: | Size: 804 KiB After Width: | Height: | Size: 804 KiB |
14
e2etests/testdata/stable/self-referencing/elk/board.exp.json
generated
vendored
|
|
@ -48,7 +48,7 @@
|
||||||
"id": "y",
|
"id": "y",
|
||||||
"type": "rectangle",
|
"type": "rectangle",
|
||||||
"pos": {
|
"pos": {
|
||||||
"x": 105,
|
"x": 194,
|
||||||
"y": 158
|
"y": 158
|
||||||
},
|
},
|
||||||
"width": 80,
|
"width": 80,
|
||||||
|
|
@ -256,6 +256,14 @@
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"x": 132,
|
"x": 132,
|
||||||
|
"y": 118
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"x": 221.16666666666663,
|
||||||
|
"y": 118
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"x": 221.16666666666663,
|
||||||
"y": 158
|
"y": 158
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
|
|
@ -299,11 +307,11 @@
|
||||||
"y": 118
|
"y": 118
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"x": 158.66666666666666,
|
"x": 247.83333333333331,
|
||||||
"y": 118
|
"y": 118
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"x": 158.66666666666666,
|
"x": 247.83333333333331,
|
||||||
"y": 158
|
"y": 158
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
|
|
|
||||||
|
Before Width: | Height: | Size: 474 KiB After Width: | Height: | Size: 474 KiB |
500
e2etests/testdata/stable/sequence_diagrams/elk/board.exp.json
generated
vendored
|
Before Width: | Height: | Size: 829 KiB After Width: | Height: | Size: 830 KiB |
152
e2etests/testdata/stable/straight_hierarchy_container/elk/board.exp.json
generated
vendored
|
|
@ -7,7 +7,7 @@
|
||||||
"id": "a",
|
"id": "a",
|
||||||
"type": "rectangle",
|
"type": "rectangle",
|
||||||
"pos": {
|
"pos": {
|
||||||
"x": 135,
|
"x": 250,
|
||||||
"y": 12
|
"y": 12
|
||||||
},
|
},
|
||||||
"width": 53,
|
"width": 53,
|
||||||
|
|
@ -48,7 +48,7 @@
|
||||||
"id": "c",
|
"id": "c",
|
||||||
"type": "rectangle",
|
"type": "rectangle",
|
||||||
"pos": {
|
"pos": {
|
||||||
"x": 208,
|
"x": 323,
|
||||||
"y": 12
|
"y": 12
|
||||||
},
|
},
|
||||||
"width": 53,
|
"width": 53,
|
||||||
|
|
@ -89,7 +89,7 @@
|
||||||
"id": "b",
|
"id": "b",
|
||||||
"type": "rectangle",
|
"type": "rectangle",
|
||||||
"pos": {
|
"pos": {
|
||||||
"x": 62,
|
"x": 177,
|
||||||
"y": 12
|
"y": 12
|
||||||
},
|
},
|
||||||
"width": 53,
|
"width": 53,
|
||||||
|
|
@ -130,11 +130,11 @@
|
||||||
"id": "l1",
|
"id": "l1",
|
||||||
"type": "rectangle",
|
"type": "rectangle",
|
||||||
"pos": {
|
"pos": {
|
||||||
"x": 12,
|
"x": 127,
|
||||||
"y": 153
|
"y": 153
|
||||||
},
|
},
|
||||||
"width": 299,
|
"width": 299,
|
||||||
"height": 246,
|
"height": 296,
|
||||||
"opacity": 1,
|
"opacity": 1,
|
||||||
"strokeDash": 0,
|
"strokeDash": 0,
|
||||||
"strokeWidth": 2,
|
"strokeWidth": 2,
|
||||||
|
|
@ -171,7 +171,7 @@
|
||||||
"id": "l1.b",
|
"id": "l1.b",
|
||||||
"type": "rectangle",
|
"type": "rectangle",
|
||||||
"pos": {
|
"pos": {
|
||||||
"x": 62,
|
"x": 177,
|
||||||
"y": 203
|
"y": 203
|
||||||
},
|
},
|
||||||
"width": 53,
|
"width": 53,
|
||||||
|
|
@ -212,7 +212,7 @@
|
||||||
"id": "l1.a",
|
"id": "l1.a",
|
||||||
"type": "rectangle",
|
"type": "rectangle",
|
||||||
"pos": {
|
"pos": {
|
||||||
"x": 135,
|
"x": 250,
|
||||||
"y": 203
|
"y": 203
|
||||||
},
|
},
|
||||||
"width": 53,
|
"width": 53,
|
||||||
|
|
@ -253,7 +253,7 @@
|
||||||
"id": "l1.c",
|
"id": "l1.c",
|
||||||
"type": "rectangle",
|
"type": "rectangle",
|
||||||
"pos": {
|
"pos": {
|
||||||
"x": 208,
|
"x": 323,
|
||||||
"y": 203
|
"y": 203
|
||||||
},
|
},
|
||||||
"width": 53,
|
"width": 53,
|
||||||
|
|
@ -294,7 +294,7 @@
|
||||||
"id": "l2c1",
|
"id": "l2c1",
|
||||||
"type": "rectangle",
|
"type": "rectangle",
|
||||||
"pos": {
|
"pos": {
|
||||||
"x": 85,
|
"x": 12,
|
||||||
"y": 539
|
"y": 539
|
||||||
},
|
},
|
||||||
"width": 153,
|
"width": 153,
|
||||||
|
|
@ -335,7 +335,7 @@
|
||||||
"id": "l2c1.a",
|
"id": "l2c1.a",
|
||||||
"type": "rectangle",
|
"type": "rectangle",
|
||||||
"pos": {
|
"pos": {
|
||||||
"x": 135,
|
"x": 62,
|
||||||
"y": 589
|
"y": 589
|
||||||
},
|
},
|
||||||
"width": 53,
|
"width": 53,
|
||||||
|
|
@ -376,7 +376,7 @@
|
||||||
"id": "l2c3",
|
"id": "l2c3",
|
||||||
"type": "rectangle",
|
"type": "rectangle",
|
||||||
"pos": {
|
"pos": {
|
||||||
"x": 431,
|
"x": 408,
|
||||||
"y": 539
|
"y": 539
|
||||||
},
|
},
|
||||||
"width": 153,
|
"width": 153,
|
||||||
|
|
@ -417,7 +417,7 @@
|
||||||
"id": "l2c3.c",
|
"id": "l2c3.c",
|
||||||
"type": "rectangle",
|
"type": "rectangle",
|
||||||
"pos": {
|
"pos": {
|
||||||
"x": 481,
|
"x": 458,
|
||||||
"y": 589
|
"y": 589
|
||||||
},
|
},
|
||||||
"width": 53,
|
"width": 53,
|
||||||
|
|
@ -458,7 +458,7 @@
|
||||||
"id": "l2c2",
|
"id": "l2c2",
|
||||||
"type": "rectangle",
|
"type": "rectangle",
|
||||||
"pos": {
|
"pos": {
|
||||||
"x": 258,
|
"x": 185,
|
||||||
"y": 539
|
"y": 539
|
||||||
},
|
},
|
||||||
"width": 153,
|
"width": 153,
|
||||||
|
|
@ -499,7 +499,7 @@
|
||||||
"id": "l2c2.b",
|
"id": "l2c2.b",
|
||||||
"type": "rectangle",
|
"type": "rectangle",
|
||||||
"pos": {
|
"pos": {
|
||||||
"x": 308,
|
"x": 235,
|
||||||
"y": 589
|
"y": 589
|
||||||
},
|
},
|
||||||
"width": 53,
|
"width": 53,
|
||||||
|
|
@ -540,7 +540,7 @@
|
||||||
"id": "l3c1",
|
"id": "l3c1",
|
||||||
"type": "rectangle",
|
"type": "rectangle",
|
||||||
"pos": {
|
"pos": {
|
||||||
"x": 85,
|
"x": 62,
|
||||||
"y": 795
|
"y": 795
|
||||||
},
|
},
|
||||||
"width": 226,
|
"width": 226,
|
||||||
|
|
@ -581,7 +581,7 @@
|
||||||
"id": "l3c1.a",
|
"id": "l3c1.a",
|
||||||
"type": "rectangle",
|
"type": "rectangle",
|
||||||
"pos": {
|
"pos": {
|
||||||
"x": 135,
|
"x": 112,
|
||||||
"y": 845
|
"y": 845
|
||||||
},
|
},
|
||||||
"width": 53,
|
"width": 53,
|
||||||
|
|
@ -622,7 +622,7 @@
|
||||||
"id": "l3c1.b",
|
"id": "l3c1.b",
|
||||||
"type": "rectangle",
|
"type": "rectangle",
|
||||||
"pos": {
|
"pos": {
|
||||||
"x": 208,
|
"x": 185,
|
||||||
"y": 845
|
"y": 845
|
||||||
},
|
},
|
||||||
"width": 53,
|
"width": 53,
|
||||||
|
|
@ -663,7 +663,7 @@
|
||||||
"id": "l3c2",
|
"id": "l3c2",
|
||||||
"type": "rectangle",
|
"type": "rectangle",
|
||||||
"pos": {
|
"pos": {
|
||||||
"x": 431,
|
"x": 408,
|
||||||
"y": 795
|
"y": 795
|
||||||
},
|
},
|
||||||
"width": 153,
|
"width": 153,
|
||||||
|
|
@ -704,7 +704,7 @@
|
||||||
"id": "l3c2.c",
|
"id": "l3c2.c",
|
||||||
"type": "rectangle",
|
"type": "rectangle",
|
||||||
"pos": {
|
"pos": {
|
||||||
"x": 481,
|
"x": 458,
|
||||||
"y": 845
|
"y": 845
|
||||||
},
|
},
|
||||||
"width": 53,
|
"width": 53,
|
||||||
|
|
@ -745,7 +745,7 @@
|
||||||
"id": "l4",
|
"id": "l4",
|
||||||
"type": "rectangle",
|
"type": "rectangle",
|
||||||
"pos": {
|
"pos": {
|
||||||
"x": 35,
|
"x": 12,
|
||||||
"y": 1051
|
"y": 1051
|
||||||
},
|
},
|
||||||
"width": 599,
|
"width": 599,
|
||||||
|
|
@ -786,7 +786,7 @@
|
||||||
"id": "l4.c1",
|
"id": "l4.c1",
|
||||||
"type": "rectangle",
|
"type": "rectangle",
|
||||||
"pos": {
|
"pos": {
|
||||||
"x": 85,
|
"x": 62,
|
||||||
"y": 1106
|
"y": 1106
|
||||||
},
|
},
|
||||||
"width": 153,
|
"width": 153,
|
||||||
|
|
@ -827,7 +827,7 @@
|
||||||
"id": "l4.c1.a",
|
"id": "l4.c1.a",
|
||||||
"type": "rectangle",
|
"type": "rectangle",
|
||||||
"pos": {
|
"pos": {
|
||||||
"x": 135,
|
"x": 112,
|
||||||
"y": 1156
|
"y": 1156
|
||||||
},
|
},
|
||||||
"width": 53,
|
"width": 53,
|
||||||
|
|
@ -868,7 +868,7 @@
|
||||||
"id": "l4.c2",
|
"id": "l4.c2",
|
||||||
"type": "rectangle",
|
"type": "rectangle",
|
||||||
"pos": {
|
"pos": {
|
||||||
"x": 258,
|
"x": 235,
|
||||||
"y": 1106
|
"y": 1106
|
||||||
},
|
},
|
||||||
"width": 153,
|
"width": 153,
|
||||||
|
|
@ -909,7 +909,7 @@
|
||||||
"id": "l4.c2.b",
|
"id": "l4.c2.b",
|
||||||
"type": "rectangle",
|
"type": "rectangle",
|
||||||
"pos": {
|
"pos": {
|
||||||
"x": 308,
|
"x": 285,
|
||||||
"y": 1156
|
"y": 1156
|
||||||
},
|
},
|
||||||
"width": 53,
|
"width": 53,
|
||||||
|
|
@ -950,7 +950,7 @@
|
||||||
"id": "l4.c3",
|
"id": "l4.c3",
|
||||||
"type": "rectangle",
|
"type": "rectangle",
|
||||||
"pos": {
|
"pos": {
|
||||||
"x": 431,
|
"x": 408,
|
||||||
"y": 1106
|
"y": 1106
|
||||||
},
|
},
|
||||||
"width": 153,
|
"width": 153,
|
||||||
|
|
@ -991,7 +991,7 @@
|
||||||
"id": "l4.c3.c",
|
"id": "l4.c3.c",
|
||||||
"type": "rectangle",
|
"type": "rectangle",
|
||||||
"pos": {
|
"pos": {
|
||||||
"x": 481,
|
"x": 458,
|
||||||
"y": 1156
|
"y": 1156
|
||||||
},
|
},
|
||||||
"width": 53,
|
"width": 53,
|
||||||
|
|
@ -1057,11 +1057,11 @@
|
||||||
"labelPercentage": 0,
|
"labelPercentage": 0,
|
||||||
"route": [
|
"route": [
|
||||||
{
|
{
|
||||||
"x": 88.5,
|
"x": 204.25,
|
||||||
"y": 78
|
"y": 78
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"x": 88.5,
|
"x": 204.25,
|
||||||
"y": 203
|
"y": 203
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
|
|
@ -1097,11 +1097,11 @@
|
||||||
"labelPercentage": 0,
|
"labelPercentage": 0,
|
||||||
"route": [
|
"route": [
|
||||||
{
|
{
|
||||||
"x": 161.5,
|
"x": 277.25,
|
||||||
"y": 78
|
"y": 78
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"x": 161.5,
|
"x": 277.25,
|
||||||
"y": 203
|
"y": 203
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
|
|
@ -1137,11 +1137,11 @@
|
||||||
"labelPercentage": 0,
|
"labelPercentage": 0,
|
||||||
"route": [
|
"route": [
|
||||||
{
|
{
|
||||||
"x": 234.5,
|
"x": 350.25,
|
||||||
"y": 78
|
"y": 78
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"x": 234.5,
|
"x": 350.25,
|
||||||
"y": 203
|
"y": 203
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
|
|
@ -1177,11 +1177,27 @@
|
||||||
"labelPercentage": 0,
|
"labelPercentage": 0,
|
||||||
"route": [
|
"route": [
|
||||||
{
|
{
|
||||||
"x": 161.5,
|
"x": 277.25,
|
||||||
"y": 269
|
"y": 269
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"x": 161.5,
|
"x": 277.25,
|
||||||
|
"y": 309
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"x": 235.75,
|
||||||
|
"y": 309
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"x": 235.75,
|
||||||
|
"y": 494
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"x": 88.5,
|
||||||
|
"y": 494
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"x": 88.5,
|
||||||
"y": 589
|
"y": 589
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
|
|
@ -1217,19 +1233,19 @@
|
||||||
"labelPercentage": 0,
|
"labelPercentage": 0,
|
||||||
"route": [
|
"route": [
|
||||||
{
|
{
|
||||||
"x": 234.5,
|
"x": 350.25,
|
||||||
"y": 269
|
"y": 269
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"x": 234.5,
|
"x": 350.25,
|
||||||
"y": 444
|
"y": 494
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"x": 507.5,
|
"x": 484.5,
|
||||||
"y": 444
|
"y": 494
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"x": 507.5,
|
"x": 484.5,
|
||||||
"y": 589
|
"y": 589
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
|
|
@ -1265,27 +1281,27 @@
|
||||||
"labelPercentage": 0,
|
"labelPercentage": 0,
|
||||||
"route": [
|
"route": [
|
||||||
{
|
{
|
||||||
"x": 88.5,
|
"x": 204.25,
|
||||||
"y": 269
|
"y": 269
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"x": 88.5,
|
"x": 204.25,
|
||||||
"y": 309
|
"y": 359
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"x": 171.5,
|
"x": 245.75,
|
||||||
"y": 309
|
"y": 359
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"x": 171.5,
|
"x": 245.75,
|
||||||
"y": 494
|
"y": 494
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"x": 334.5,
|
"x": 261.5,
|
||||||
"y": 494
|
"y": 494
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"x": 334.5,
|
"x": 261.5,
|
||||||
"y": 589
|
"y": 589
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
|
|
@ -1321,11 +1337,19 @@
|
||||||
"labelPercentage": 0,
|
"labelPercentage": 0,
|
||||||
"route": [
|
"route": [
|
||||||
{
|
{
|
||||||
"x": 161.5,
|
"x": 88.5,
|
||||||
"y": 655
|
"y": 655
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"x": 161.5,
|
"x": 88.5,
|
||||||
|
"y": 750
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"x": 138.5,
|
||||||
|
"y": 750
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"x": 138.5,
|
||||||
"y": 845
|
"y": 845
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
|
|
@ -1361,19 +1385,19 @@
|
||||||
"labelPercentage": 0,
|
"labelPercentage": 0,
|
||||||
"route": [
|
"route": [
|
||||||
{
|
{
|
||||||
"x": 334.5,
|
"x": 261.5,
|
||||||
"y": 655
|
"y": 655
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"x": 334.5,
|
"x": 261.5,
|
||||||
"y": 750
|
"y": 750
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"x": 234.5,
|
"x": 211.5,
|
||||||
"y": 750
|
"y": 750
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"x": 234.5,
|
"x": 211.5,
|
||||||
"y": 845
|
"y": 845
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
|
|
@ -1409,11 +1433,11 @@
|
||||||
"labelPercentage": 0,
|
"labelPercentage": 0,
|
||||||
"route": [
|
"route": [
|
||||||
{
|
{
|
||||||
"x": 507.5,
|
"x": 484.5,
|
||||||
"y": 655
|
"y": 655
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"x": 507.5,
|
"x": 484.5,
|
||||||
"y": 845
|
"y": 845
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
|
|
@ -1449,11 +1473,11 @@
|
||||||
"labelPercentage": 0,
|
"labelPercentage": 0,
|
||||||
"route": [
|
"route": [
|
||||||
{
|
{
|
||||||
"x": 161.5,
|
"x": 138.5,
|
||||||
"y": 911
|
"y": 911
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"x": 161.5,
|
"x": 138.5,
|
||||||
"y": 1156
|
"y": 1156
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
|
|
@ -1489,19 +1513,19 @@
|
||||||
"labelPercentage": 0,
|
"labelPercentage": 0,
|
||||||
"route": [
|
"route": [
|
||||||
{
|
{
|
||||||
"x": 234.5,
|
"x": 211.5,
|
||||||
"y": 911
|
"y": 911
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"x": 234.5,
|
"x": 211.5,
|
||||||
"y": 1006
|
"y": 1006
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"x": 334.5,
|
"x": 311.5,
|
||||||
"y": 1006
|
"y": 1006
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"x": 334.5,
|
"x": 311.5,
|
||||||
"y": 1156
|
"y": 1156
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
|
|
@ -1537,11 +1561,11 @@
|
||||||
"labelPercentage": 0,
|
"labelPercentage": 0,
|
||||||
"route": [
|
"route": [
|
||||||
{
|
{
|
||||||
"x": 507.5,
|
"x": 484.5,
|
||||||
"y": 911
|
"y": 911
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"x": 507.5,
|
"x": 484.5,
|
||||||
"y": 1156
|
"y": 1156
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
|
|
|
||||||
|
Before Width: | Height: | Size: 663 KiB After Width: | Height: | Size: 663 KiB |
14
e2etests/testdata/stable/text_font_sizes/elk/board.exp.json
generated
vendored
|
|
@ -7,7 +7,7 @@
|
||||||
"id": "bear",
|
"id": "bear",
|
||||||
"type": "text",
|
"type": "text",
|
||||||
"pos": {
|
"pos": {
|
||||||
"x": 52,
|
"x": 116,
|
||||||
"y": 133
|
"y": 133
|
||||||
},
|
},
|
||||||
"width": 80,
|
"width": 80,
|
||||||
|
|
@ -157,6 +157,14 @@
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"x": 79.5,
|
"x": 79.5,
|
||||||
|
"y": 93
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"x": 143.41666666666666,
|
||||||
|
"y": 93
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"x": 143.41666666666666,
|
||||||
"y": 133
|
"y": 133
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
|
|
@ -200,11 +208,11 @@
|
||||||
"y": 93
|
"y": 93
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"x": 106.16666666666666,
|
"x": 170.08333333333334,
|
||||||
"y": 93
|
"y": 93
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"x": 106.16666666666666,
|
"x": 170.08333333333334,
|
||||||
"y": 133
|
"y": 133
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
|
|
|
||||||
|
Before Width: | Height: | Size: 808 KiB After Width: | Height: | Size: 808 KiB |
1844
e2etests/testdata/stable/us_map/elk/board.exp.json
generated
vendored
154
e2etests/testdata/stable/us_map/elk/sketch.exp.svg
vendored
|
Before Width: | Height: | Size: 373 KiB After Width: | Height: | Size: 376 KiB |
36
e2etests/testdata/todo/container_label_edge_adjustment/elk/board.exp.json
generated
vendored
|
|
@ -48,7 +48,7 @@
|
||||||
"id": "b",
|
"id": "b",
|
||||||
"type": "cloud",
|
"type": "cloud",
|
||||||
"pos": {
|
"pos": {
|
||||||
"x": 70,
|
"x": 39,
|
||||||
"y": 213
|
"y": 213
|
||||||
},
|
},
|
||||||
"width": 180,
|
"width": 180,
|
||||||
|
|
@ -89,7 +89,7 @@
|
||||||
"id": "b.c",
|
"id": "b.c",
|
||||||
"type": "rectangle",
|
"type": "rectangle",
|
||||||
"pos": {
|
"pos": {
|
||||||
"x": 120,
|
"x": 89,
|
||||||
"y": 263
|
"y": 263
|
||||||
},
|
},
|
||||||
"width": 80,
|
"width": 80,
|
||||||
|
|
@ -130,7 +130,7 @@
|
||||||
"id": "d",
|
"id": "d",
|
||||||
"type": "rectangle",
|
"type": "rectangle",
|
||||||
"pos": {
|
"pos": {
|
||||||
"x": 133,
|
"x": 102,
|
||||||
"y": 454
|
"y": 454
|
||||||
},
|
},
|
||||||
"width": 54,
|
"width": 54,
|
||||||
|
|
@ -327,11 +327,11 @@
|
||||||
"y": 168
|
"y": 168
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"x": 146.83333333333331,
|
"x": 115.8333333333333,
|
||||||
"y": 168
|
"y": 168
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"x": 146.83333333333331,
|
"x": 115.8333333333333,
|
||||||
"y": 263
|
"y": 263
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
|
|
@ -367,11 +367,11 @@
|
||||||
"labelPercentage": 0,
|
"labelPercentage": 0,
|
||||||
"route": [
|
"route": [
|
||||||
{
|
{
|
||||||
"x": 160.16666666666666,
|
"x": 129.16666666666663,
|
||||||
"y": 329
|
"y": 329
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"x": 160.16666666666669,
|
"x": 129.16666666666663,
|
||||||
"y": 454
|
"y": 454
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
|
|
@ -415,11 +415,11 @@
|
||||||
"y": 118
|
"y": 118
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"x": 173.5,
|
"x": 142.49999999999997,
|
||||||
"y": 118
|
"y": 118
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"x": 173.5,
|
"x": 142.49999999999997,
|
||||||
"y": 263
|
"y": 263
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
|
|
@ -459,7 +459,15 @@
|
||||||
"y": 78
|
"y": 78
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"x": 184,
|
"x": 183.5,
|
||||||
|
"y": 118
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"x": 152.49999999999997,
|
||||||
|
"y": 118
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"x": 153,
|
||||||
"y": 214
|
"y": 214
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
|
|
@ -500,14 +508,14 @@
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"x": 256,
|
"x": 256,
|
||||||
"y": 118
|
"y": 168
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"x": 193.5,
|
"x": 162.49999999999997,
|
||||||
"y": 118
|
"y": 168
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"x": 194,
|
"x": 163,
|
||||||
"y": 219
|
"y": 219
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
|
|
|
||||||
|
Before Width: | Height: | Size: 657 KiB After Width: | Height: | Size: 657 KiB |
16
e2etests/testdata/unicode/mixed-language/elk/board.exp.json
generated
vendored
|
|
@ -7,7 +7,7 @@
|
||||||
"id": "a",
|
"id": "a",
|
||||||
"type": "rectangle",
|
"type": "rectangle",
|
||||||
"pos": {
|
"pos": {
|
||||||
"x": 93,
|
"x": 267,
|
||||||
"y": 12
|
"y": 12
|
||||||
},
|
},
|
||||||
"width": 428,
|
"width": 428,
|
||||||
|
|
@ -154,9 +154,17 @@
|
||||||
"labelPercentage": 0,
|
"labelPercentage": 0,
|
||||||
"route": [
|
"route": [
|
||||||
{
|
{
|
||||||
"x": 236,
|
"x": 409.66666666666674,
|
||||||
"y": 110
|
"y": 110
|
||||||
},
|
},
|
||||||
|
{
|
||||||
|
"x": 409.66666666666674,
|
||||||
|
"y": 150
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"x": 236,
|
||||||
|
"y": 150
|
||||||
|
},
|
||||||
{
|
{
|
||||||
"x": 236,
|
"x": 236,
|
||||||
"y": 190
|
"y": 190
|
||||||
|
|
@ -194,11 +202,11 @@
|
||||||
"labelPercentage": 0,
|
"labelPercentage": 0,
|
||||||
"route": [
|
"route": [
|
||||||
{
|
{
|
||||||
"x": 378.66666666666663,
|
"x": 552.3333333333334,
|
||||||
"y": 110
|
"y": 110
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"x": 378.66666666666663,
|
"x": 552.3333333333334,
|
||||||
"y": 150
|
"y": 150
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
|
|
|
||||||
|
Before Width: | Height: | Size: 665 KiB After Width: | Height: | Size: 666 KiB |