Update tests
|
|
@ -393,7 +393,7 @@ func TestSelfEdges(t *testing.T) {
|
||||||
}
|
}
|
||||||
|
|
||||||
ctx := log.WithTB(context.Background(), t, nil)
|
ctx := log.WithTB(context.Background(), t, nil)
|
||||||
Layout(ctx, g, func(ctx context.Context, g *d2graph.Graph) error {
|
d2sequence.Layout(ctx, g, func(ctx context.Context, g *d2graph.Graph) error {
|
||||||
return nil
|
return nil
|
||||||
})
|
})
|
||||||
|
|
||||||
|
|
@ -406,8 +406,8 @@ func TestSelfEdges(t *testing.T) {
|
||||||
t.Fatalf("route does not end at the same actor, start at %.5f, end at %.5f", route[0].X, route[3].X)
|
t.Fatalf("route does not end at the same actor, start at %.5f, end at %.5f", route[0].X, route[3].X)
|
||||||
}
|
}
|
||||||
|
|
||||||
if route[3].Y-route[0].Y != MIN_MESSAGE_DISTANCE {
|
if route[3].Y-route[0].Y != d2sequence.MIN_MESSAGE_DISTANCE {
|
||||||
t.Fatalf("expected route height to be %.f5, got %.5f", MIN_MESSAGE_DISTANCE, route[3].Y-route[0].Y)
|
t.Fatalf("expected route height to be %.f5, got %.5f", d2sequence.MIN_MESSAGE_DISTANCE, route[3].Y-route[0].Y)
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
@ -435,7 +435,7 @@ func TestSequenceToDescendant(t *testing.T) {
|
||||||
}
|
}
|
||||||
|
|
||||||
ctx := log.WithTB(context.Background(), t, nil)
|
ctx := log.WithTB(context.Background(), t, nil)
|
||||||
Layout(ctx, g, func(ctx context.Context, g *d2graph.Graph) error {
|
d2sequence.Layout(ctx, g, func(ctx context.Context, g *d2graph.Graph) error {
|
||||||
return nil
|
return nil
|
||||||
})
|
})
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -1408,6 +1408,18 @@ choo: {
|
||||||
d2exporter.export -> CLI: resulting SVG
|
d2exporter.export -> CLI: resulting SVG
|
||||||
}
|
}
|
||||||
`,
|
`,
|
||||||
|
}, {
|
||||||
|
name: "sequence_diagram_actor_distance",
|
||||||
|
script: `shape: sequence_diagram
|
||||||
|
a: "an actor with a really long label that will break everything"
|
||||||
|
b: "a short one"
|
||||||
|
c: "an\nactor\nwith\na\nreally\nlong\nlabel\nthat\nwill\nbreak\neverything"
|
||||||
|
d: "simple"
|
||||||
|
a -> b -> c: "short"
|
||||||
|
a -> b: "long label for testing purposes and it must be really, really long"
|
||||||
|
b -> c: "long label for testing purposes and it must be really, really long"
|
||||||
|
c -> d: "short"
|
||||||
|
a -> d: "this should span many actors lifelines so we know how it will look like when redering a long label over many actors"`,
|
||||||
},
|
},
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
||||||
553
e2etests/testdata/stable/sequence_diagram_actor_distance/dagre/board.exp.json
generated
vendored
Normal file
|
|
@ -0,0 +1,553 @@
|
||||||
|
{
|
||||||
|
"name": "",
|
||||||
|
"shapes": [
|
||||||
|
{
|
||||||
|
"id": "a",
|
||||||
|
"type": "",
|
||||||
|
"pos": {
|
||||||
|
"x": 0,
|
||||||
|
"y": 210
|
||||||
|
},
|
||||||
|
"width": 514,
|
||||||
|
"height": 126,
|
||||||
|
"opacity": 1,
|
||||||
|
"strokeDash": 0,
|
||||||
|
"strokeWidth": 2,
|
||||||
|
"borderRadius": 0,
|
||||||
|
"fill": "#F7F8FE",
|
||||||
|
"stroke": "#0D32B2",
|
||||||
|
"shadow": false,
|
||||||
|
"3d": false,
|
||||||
|
"multiple": false,
|
||||||
|
"tooltip": "",
|
||||||
|
"link": "",
|
||||||
|
"icon": null,
|
||||||
|
"iconPosition": "",
|
||||||
|
"fields": null,
|
||||||
|
"methods": null,
|
||||||
|
"columns": null,
|
||||||
|
"label": "an actor with a really long label that will break everything",
|
||||||
|
"fontSize": 16,
|
||||||
|
"fontFamily": "DEFAULT",
|
||||||
|
"language": "",
|
||||||
|
"color": "#0A0F25",
|
||||||
|
"italic": false,
|
||||||
|
"bold": true,
|
||||||
|
"underline": false,
|
||||||
|
"labelWidth": 414,
|
||||||
|
"labelHeight": 26,
|
||||||
|
"labelPosition": "INSIDE_MIDDLE_CENTER",
|
||||||
|
"zIndex": 0,
|
||||||
|
"level": 1
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": "b",
|
||||||
|
"type": "",
|
||||||
|
"pos": {
|
||||||
|
"x": 626,
|
||||||
|
"y": 210
|
||||||
|
},
|
||||||
|
"width": 184,
|
||||||
|
"height": 126,
|
||||||
|
"opacity": 1,
|
||||||
|
"strokeDash": 0,
|
||||||
|
"strokeWidth": 2,
|
||||||
|
"borderRadius": 0,
|
||||||
|
"fill": "#F7F8FE",
|
||||||
|
"stroke": "#0D32B2",
|
||||||
|
"shadow": false,
|
||||||
|
"3d": false,
|
||||||
|
"multiple": false,
|
||||||
|
"tooltip": "",
|
||||||
|
"link": "",
|
||||||
|
"icon": null,
|
||||||
|
"iconPosition": "",
|
||||||
|
"fields": null,
|
||||||
|
"methods": null,
|
||||||
|
"columns": null,
|
||||||
|
"label": "a short one",
|
||||||
|
"fontSize": 16,
|
||||||
|
"fontFamily": "DEFAULT",
|
||||||
|
"language": "",
|
||||||
|
"color": "#0A0F25",
|
||||||
|
"italic": false,
|
||||||
|
"bold": true,
|
||||||
|
"underline": false,
|
||||||
|
"labelWidth": 84,
|
||||||
|
"labelHeight": 26,
|
||||||
|
"labelPosition": "INSIDE_MIDDLE_CENTER",
|
||||||
|
"zIndex": 0,
|
||||||
|
"level": 1
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": "c",
|
||||||
|
"type": "",
|
||||||
|
"pos": {
|
||||||
|
"x": 1088,
|
||||||
|
"y": 50
|
||||||
|
},
|
||||||
|
"width": 183,
|
||||||
|
"height": 286,
|
||||||
|
"opacity": 1,
|
||||||
|
"strokeDash": 0,
|
||||||
|
"strokeWidth": 2,
|
||||||
|
"borderRadius": 0,
|
||||||
|
"fill": "#F7F8FE",
|
||||||
|
"stroke": "#0D32B2",
|
||||||
|
"shadow": false,
|
||||||
|
"3d": false,
|
||||||
|
"multiple": false,
|
||||||
|
"tooltip": "",
|
||||||
|
"link": "",
|
||||||
|
"icon": null,
|
||||||
|
"iconPosition": "",
|
||||||
|
"fields": null,
|
||||||
|
"methods": null,
|
||||||
|
"columns": null,
|
||||||
|
"label": "an\nactor\nwith\na\nreally\nlong\nlabel\nthat\nwill\nbreak\neverything",
|
||||||
|
"fontSize": 16,
|
||||||
|
"fontFamily": "DEFAULT",
|
||||||
|
"language": "",
|
||||||
|
"color": "#0A0F25",
|
||||||
|
"italic": false,
|
||||||
|
"bold": true,
|
||||||
|
"underline": false,
|
||||||
|
"labelWidth": 83,
|
||||||
|
"labelHeight": 186,
|
||||||
|
"labelPosition": "INSIDE_MIDDLE_CENTER",
|
||||||
|
"zIndex": 0,
|
||||||
|
"level": 1
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": "d",
|
||||||
|
"type": "",
|
||||||
|
"pos": {
|
||||||
|
"x": 1401,
|
||||||
|
"y": 210
|
||||||
|
},
|
||||||
|
"width": 152,
|
||||||
|
"height": 126,
|
||||||
|
"opacity": 1,
|
||||||
|
"strokeDash": 0,
|
||||||
|
"strokeWidth": 2,
|
||||||
|
"borderRadius": 0,
|
||||||
|
"fill": "#F7F8FE",
|
||||||
|
"stroke": "#0D32B2",
|
||||||
|
"shadow": false,
|
||||||
|
"3d": false,
|
||||||
|
"multiple": false,
|
||||||
|
"tooltip": "",
|
||||||
|
"link": "",
|
||||||
|
"icon": null,
|
||||||
|
"iconPosition": "",
|
||||||
|
"fields": null,
|
||||||
|
"methods": null,
|
||||||
|
"columns": null,
|
||||||
|
"label": "simple",
|
||||||
|
"fontSize": 16,
|
||||||
|
"fontFamily": "DEFAULT",
|
||||||
|
"language": "",
|
||||||
|
"color": "#0A0F25",
|
||||||
|
"italic": false,
|
||||||
|
"bold": true,
|
||||||
|
"underline": false,
|
||||||
|
"labelWidth": 52,
|
||||||
|
"labelHeight": 26,
|
||||||
|
"labelPosition": "INSIDE_MIDDLE_CENTER",
|
||||||
|
"zIndex": 0,
|
||||||
|
"level": 1
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"connections": [
|
||||||
|
{
|
||||||
|
"id": "(a -> b)[0]",
|
||||||
|
"src": "a",
|
||||||
|
"srcArrow": "none",
|
||||||
|
"srcLabel": "",
|
||||||
|
"dst": "b",
|
||||||
|
"dstArrow": "triangle",
|
||||||
|
"dstLabel": "",
|
||||||
|
"opacity": 1,
|
||||||
|
"strokeDash": 0,
|
||||||
|
"strokeWidth": 2,
|
||||||
|
"stroke": "#0D32B2",
|
||||||
|
"label": "short",
|
||||||
|
"fontSize": 16,
|
||||||
|
"fontFamily": "DEFAULT",
|
||||||
|
"language": "",
|
||||||
|
"color": "#676C7E",
|
||||||
|
"italic": true,
|
||||||
|
"bold": false,
|
||||||
|
"underline": false,
|
||||||
|
"labelWidth": 36,
|
||||||
|
"labelHeight": 21,
|
||||||
|
"labelPosition": "INSIDE_MIDDLE_CENTER",
|
||||||
|
"labelPercentage": 0,
|
||||||
|
"route": [
|
||||||
|
{
|
||||||
|
"x": 257,
|
||||||
|
"y": 466
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"x": 718,
|
||||||
|
"y": 466
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"animated": false,
|
||||||
|
"tooltip": "",
|
||||||
|
"icon": null,
|
||||||
|
"zIndex": 2
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": "(b -> c)[0]",
|
||||||
|
"src": "b",
|
||||||
|
"srcArrow": "none",
|
||||||
|
"srcLabel": "",
|
||||||
|
"dst": "c",
|
||||||
|
"dstArrow": "triangle",
|
||||||
|
"dstLabel": "",
|
||||||
|
"opacity": 1,
|
||||||
|
"strokeDash": 0,
|
||||||
|
"strokeWidth": 2,
|
||||||
|
"stroke": "#0D32B2",
|
||||||
|
"label": "short",
|
||||||
|
"fontSize": 16,
|
||||||
|
"fontFamily": "DEFAULT",
|
||||||
|
"language": "",
|
||||||
|
"color": "#676C7E",
|
||||||
|
"italic": true,
|
||||||
|
"bold": false,
|
||||||
|
"underline": false,
|
||||||
|
"labelWidth": 36,
|
||||||
|
"labelHeight": 21,
|
||||||
|
"labelPosition": "INSIDE_MIDDLE_CENTER",
|
||||||
|
"labelPercentage": 0,
|
||||||
|
"route": [
|
||||||
|
{
|
||||||
|
"x": 718,
|
||||||
|
"y": 596
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"x": 1179.5,
|
||||||
|
"y": 596
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"animated": false,
|
||||||
|
"tooltip": "",
|
||||||
|
"icon": null,
|
||||||
|
"zIndex": 2
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": "(a -> b)[1]",
|
||||||
|
"src": "a",
|
||||||
|
"srcArrow": "none",
|
||||||
|
"srcLabel": "",
|
||||||
|
"dst": "b",
|
||||||
|
"dstArrow": "triangle",
|
||||||
|
"dstLabel": "",
|
||||||
|
"opacity": 1,
|
||||||
|
"strokeDash": 0,
|
||||||
|
"strokeWidth": 2,
|
||||||
|
"stroke": "#0D32B2",
|
||||||
|
"label": "long label for testing purposes and it must be really, really long",
|
||||||
|
"fontSize": 16,
|
||||||
|
"fontFamily": "DEFAULT",
|
||||||
|
"language": "",
|
||||||
|
"color": "#676C7E",
|
||||||
|
"italic": true,
|
||||||
|
"bold": false,
|
||||||
|
"underline": false,
|
||||||
|
"labelWidth": 411,
|
||||||
|
"labelHeight": 21,
|
||||||
|
"labelPosition": "INSIDE_MIDDLE_CENTER",
|
||||||
|
"labelPercentage": 0,
|
||||||
|
"route": [
|
||||||
|
{
|
||||||
|
"x": 257,
|
||||||
|
"y": 726
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"x": 718,
|
||||||
|
"y": 726
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"animated": false,
|
||||||
|
"tooltip": "",
|
||||||
|
"icon": null,
|
||||||
|
"zIndex": 2
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": "(b -> c)[1]",
|
||||||
|
"src": "b",
|
||||||
|
"srcArrow": "none",
|
||||||
|
"srcLabel": "",
|
||||||
|
"dst": "c",
|
||||||
|
"dstArrow": "triangle",
|
||||||
|
"dstLabel": "",
|
||||||
|
"opacity": 1,
|
||||||
|
"strokeDash": 0,
|
||||||
|
"strokeWidth": 2,
|
||||||
|
"stroke": "#0D32B2",
|
||||||
|
"label": "long label for testing purposes and it must be really, really long",
|
||||||
|
"fontSize": 16,
|
||||||
|
"fontFamily": "DEFAULT",
|
||||||
|
"language": "",
|
||||||
|
"color": "#676C7E",
|
||||||
|
"italic": true,
|
||||||
|
"bold": false,
|
||||||
|
"underline": false,
|
||||||
|
"labelWidth": 411,
|
||||||
|
"labelHeight": 21,
|
||||||
|
"labelPosition": "INSIDE_MIDDLE_CENTER",
|
||||||
|
"labelPercentage": 0,
|
||||||
|
"route": [
|
||||||
|
{
|
||||||
|
"x": 718,
|
||||||
|
"y": 856
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"x": 1179.5,
|
||||||
|
"y": 856
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"animated": false,
|
||||||
|
"tooltip": "",
|
||||||
|
"icon": null,
|
||||||
|
"zIndex": 2
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": "(c -> d)[0]",
|
||||||
|
"src": "c",
|
||||||
|
"srcArrow": "none",
|
||||||
|
"srcLabel": "",
|
||||||
|
"dst": "d",
|
||||||
|
"dstArrow": "triangle",
|
||||||
|
"dstLabel": "",
|
||||||
|
"opacity": 1,
|
||||||
|
"strokeDash": 0,
|
||||||
|
"strokeWidth": 2,
|
||||||
|
"stroke": "#0D32B2",
|
||||||
|
"label": "short",
|
||||||
|
"fontSize": 16,
|
||||||
|
"fontFamily": "DEFAULT",
|
||||||
|
"language": "",
|
||||||
|
"color": "#676C7E",
|
||||||
|
"italic": true,
|
||||||
|
"bold": false,
|
||||||
|
"underline": false,
|
||||||
|
"labelWidth": 36,
|
||||||
|
"labelHeight": 21,
|
||||||
|
"labelPosition": "INSIDE_MIDDLE_CENTER",
|
||||||
|
"labelPercentage": 0,
|
||||||
|
"route": [
|
||||||
|
{
|
||||||
|
"x": 1179.5,
|
||||||
|
"y": 986
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"x": 1477,
|
||||||
|
"y": 986
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"animated": false,
|
||||||
|
"tooltip": "",
|
||||||
|
"icon": null,
|
||||||
|
"zIndex": 2
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": "(a -> d)[0]",
|
||||||
|
"src": "a",
|
||||||
|
"srcArrow": "none",
|
||||||
|
"srcLabel": "",
|
||||||
|
"dst": "d",
|
||||||
|
"dstArrow": "triangle",
|
||||||
|
"dstLabel": "",
|
||||||
|
"opacity": 1,
|
||||||
|
"strokeDash": 0,
|
||||||
|
"strokeWidth": 2,
|
||||||
|
"stroke": "#0D32B2",
|
||||||
|
"label": "this should span many actors lifelines so we know how it will look like when redering a long label over many actors",
|
||||||
|
"fontSize": 16,
|
||||||
|
"fontFamily": "DEFAULT",
|
||||||
|
"language": "",
|
||||||
|
"color": "#676C7E",
|
||||||
|
"italic": true,
|
||||||
|
"bold": false,
|
||||||
|
"underline": false,
|
||||||
|
"labelWidth": 745,
|
||||||
|
"labelHeight": 21,
|
||||||
|
"labelPosition": "INSIDE_MIDDLE_CENTER",
|
||||||
|
"labelPercentage": 0,
|
||||||
|
"route": [
|
||||||
|
{
|
||||||
|
"x": 257,
|
||||||
|
"y": 1116
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"x": 1477,
|
||||||
|
"y": 1116
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"animated": false,
|
||||||
|
"tooltip": "",
|
||||||
|
"icon": null,
|
||||||
|
"zIndex": 2
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": "(a -- )[0]",
|
||||||
|
"src": "a",
|
||||||
|
"srcArrow": "none",
|
||||||
|
"srcLabel": "",
|
||||||
|
"dst": "a-lifeline-end-2251863791",
|
||||||
|
"dstArrow": "none",
|
||||||
|
"dstLabel": "",
|
||||||
|
"opacity": 1,
|
||||||
|
"strokeDash": 6,
|
||||||
|
"strokeWidth": 2,
|
||||||
|
"stroke": "#0D32B2",
|
||||||
|
"label": "",
|
||||||
|
"fontSize": 16,
|
||||||
|
"fontFamily": "DEFAULT",
|
||||||
|
"language": "",
|
||||||
|
"color": "#676C7E",
|
||||||
|
"italic": true,
|
||||||
|
"bold": false,
|
||||||
|
"underline": false,
|
||||||
|
"labelWidth": 0,
|
||||||
|
"labelHeight": 0,
|
||||||
|
"labelPosition": "",
|
||||||
|
"labelPercentage": 0,
|
||||||
|
"route": [
|
||||||
|
{
|
||||||
|
"x": 257,
|
||||||
|
"y": 336
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"x": 257,
|
||||||
|
"y": 1246
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"animated": false,
|
||||||
|
"tooltip": "",
|
||||||
|
"icon": null,
|
||||||
|
"zIndex": 0
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": "(b -- )[0]",
|
||||||
|
"src": "b",
|
||||||
|
"srcArrow": "none",
|
||||||
|
"srcLabel": "",
|
||||||
|
"dst": "b-lifeline-end-668380428",
|
||||||
|
"dstArrow": "none",
|
||||||
|
"dstLabel": "",
|
||||||
|
"opacity": 1,
|
||||||
|
"strokeDash": 6,
|
||||||
|
"strokeWidth": 2,
|
||||||
|
"stroke": "#0D32B2",
|
||||||
|
"label": "",
|
||||||
|
"fontSize": 16,
|
||||||
|
"fontFamily": "DEFAULT",
|
||||||
|
"language": "",
|
||||||
|
"color": "#676C7E",
|
||||||
|
"italic": true,
|
||||||
|
"bold": false,
|
||||||
|
"underline": false,
|
||||||
|
"labelWidth": 0,
|
||||||
|
"labelHeight": 0,
|
||||||
|
"labelPosition": "",
|
||||||
|
"labelPercentage": 0,
|
||||||
|
"route": [
|
||||||
|
{
|
||||||
|
"x": 718,
|
||||||
|
"y": 336
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"x": 718,
|
||||||
|
"y": 1246
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"animated": false,
|
||||||
|
"tooltip": "",
|
||||||
|
"icon": null,
|
||||||
|
"zIndex": 0
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": "(c -- )[0]",
|
||||||
|
"src": "c",
|
||||||
|
"srcArrow": "none",
|
||||||
|
"srcLabel": "",
|
||||||
|
"dst": "c-lifeline-end-955173837",
|
||||||
|
"dstArrow": "none",
|
||||||
|
"dstLabel": "",
|
||||||
|
"opacity": 1,
|
||||||
|
"strokeDash": 6,
|
||||||
|
"strokeWidth": 2,
|
||||||
|
"stroke": "#0D32B2",
|
||||||
|
"label": "",
|
||||||
|
"fontSize": 16,
|
||||||
|
"fontFamily": "DEFAULT",
|
||||||
|
"language": "",
|
||||||
|
"color": "#676C7E",
|
||||||
|
"italic": true,
|
||||||
|
"bold": false,
|
||||||
|
"underline": false,
|
||||||
|
"labelWidth": 0,
|
||||||
|
"labelHeight": 0,
|
||||||
|
"labelPosition": "",
|
||||||
|
"labelPercentage": 0,
|
||||||
|
"route": [
|
||||||
|
{
|
||||||
|
"x": 1179.5,
|
||||||
|
"y": 336
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"x": 1179.5,
|
||||||
|
"y": 1246
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"animated": false,
|
||||||
|
"tooltip": "",
|
||||||
|
"icon": null,
|
||||||
|
"zIndex": 0
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": "(d -- )[0]",
|
||||||
|
"src": "d",
|
||||||
|
"srcArrow": "none",
|
||||||
|
"srcLabel": "",
|
||||||
|
"dst": "d-lifeline-end-2106864010",
|
||||||
|
"dstArrow": "none",
|
||||||
|
"dstLabel": "",
|
||||||
|
"opacity": 1,
|
||||||
|
"strokeDash": 6,
|
||||||
|
"strokeWidth": 2,
|
||||||
|
"stroke": "#0D32B2",
|
||||||
|
"label": "",
|
||||||
|
"fontSize": 16,
|
||||||
|
"fontFamily": "DEFAULT",
|
||||||
|
"language": "",
|
||||||
|
"color": "#676C7E",
|
||||||
|
"italic": true,
|
||||||
|
"bold": false,
|
||||||
|
"underline": false,
|
||||||
|
"labelWidth": 0,
|
||||||
|
"labelHeight": 0,
|
||||||
|
"labelPosition": "",
|
||||||
|
"labelPercentage": 0,
|
||||||
|
"route": [
|
||||||
|
{
|
||||||
|
"x": 1477,
|
||||||
|
"y": 336
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"x": 1477,
|
||||||
|
"y": 1246
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"animated": false,
|
||||||
|
"tooltip": "",
|
||||||
|
"icon": null,
|
||||||
|
"zIndex": 0
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
||||||
39
e2etests/testdata/stable/sequence_diagram_actor_distance/dagre/sketch.exp.svg
vendored
Normal file
|
After Width: | Height: | Size: 472 KiB |
553
e2etests/testdata/stable/sequence_diagram_actor_distance/elk/board.exp.json
generated
vendored
Normal file
|
|
@ -0,0 +1,553 @@
|
||||||
|
{
|
||||||
|
"name": "",
|
||||||
|
"shapes": [
|
||||||
|
{
|
||||||
|
"id": "a",
|
||||||
|
"type": "",
|
||||||
|
"pos": {
|
||||||
|
"x": 0,
|
||||||
|
"y": 210
|
||||||
|
},
|
||||||
|
"width": 514,
|
||||||
|
"height": 126,
|
||||||
|
"opacity": 1,
|
||||||
|
"strokeDash": 0,
|
||||||
|
"strokeWidth": 2,
|
||||||
|
"borderRadius": 0,
|
||||||
|
"fill": "#F7F8FE",
|
||||||
|
"stroke": "#0D32B2",
|
||||||
|
"shadow": false,
|
||||||
|
"3d": false,
|
||||||
|
"multiple": false,
|
||||||
|
"tooltip": "",
|
||||||
|
"link": "",
|
||||||
|
"icon": null,
|
||||||
|
"iconPosition": "",
|
||||||
|
"fields": null,
|
||||||
|
"methods": null,
|
||||||
|
"columns": null,
|
||||||
|
"label": "an actor with a really long label that will break everything",
|
||||||
|
"fontSize": 16,
|
||||||
|
"fontFamily": "DEFAULT",
|
||||||
|
"language": "",
|
||||||
|
"color": "#0A0F25",
|
||||||
|
"italic": false,
|
||||||
|
"bold": true,
|
||||||
|
"underline": false,
|
||||||
|
"labelWidth": 414,
|
||||||
|
"labelHeight": 26,
|
||||||
|
"labelPosition": "INSIDE_MIDDLE_CENTER",
|
||||||
|
"zIndex": 0,
|
||||||
|
"level": 1
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": "b",
|
||||||
|
"type": "",
|
||||||
|
"pos": {
|
||||||
|
"x": 626,
|
||||||
|
"y": 210
|
||||||
|
},
|
||||||
|
"width": 184,
|
||||||
|
"height": 126,
|
||||||
|
"opacity": 1,
|
||||||
|
"strokeDash": 0,
|
||||||
|
"strokeWidth": 2,
|
||||||
|
"borderRadius": 0,
|
||||||
|
"fill": "#F7F8FE",
|
||||||
|
"stroke": "#0D32B2",
|
||||||
|
"shadow": false,
|
||||||
|
"3d": false,
|
||||||
|
"multiple": false,
|
||||||
|
"tooltip": "",
|
||||||
|
"link": "",
|
||||||
|
"icon": null,
|
||||||
|
"iconPosition": "",
|
||||||
|
"fields": null,
|
||||||
|
"methods": null,
|
||||||
|
"columns": null,
|
||||||
|
"label": "a short one",
|
||||||
|
"fontSize": 16,
|
||||||
|
"fontFamily": "DEFAULT",
|
||||||
|
"language": "",
|
||||||
|
"color": "#0A0F25",
|
||||||
|
"italic": false,
|
||||||
|
"bold": true,
|
||||||
|
"underline": false,
|
||||||
|
"labelWidth": 84,
|
||||||
|
"labelHeight": 26,
|
||||||
|
"labelPosition": "INSIDE_MIDDLE_CENTER",
|
||||||
|
"zIndex": 0,
|
||||||
|
"level": 1
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": "c",
|
||||||
|
"type": "",
|
||||||
|
"pos": {
|
||||||
|
"x": 1088,
|
||||||
|
"y": 50
|
||||||
|
},
|
||||||
|
"width": 183,
|
||||||
|
"height": 286,
|
||||||
|
"opacity": 1,
|
||||||
|
"strokeDash": 0,
|
||||||
|
"strokeWidth": 2,
|
||||||
|
"borderRadius": 0,
|
||||||
|
"fill": "#F7F8FE",
|
||||||
|
"stroke": "#0D32B2",
|
||||||
|
"shadow": false,
|
||||||
|
"3d": false,
|
||||||
|
"multiple": false,
|
||||||
|
"tooltip": "",
|
||||||
|
"link": "",
|
||||||
|
"icon": null,
|
||||||
|
"iconPosition": "",
|
||||||
|
"fields": null,
|
||||||
|
"methods": null,
|
||||||
|
"columns": null,
|
||||||
|
"label": "an\nactor\nwith\na\nreally\nlong\nlabel\nthat\nwill\nbreak\neverything",
|
||||||
|
"fontSize": 16,
|
||||||
|
"fontFamily": "DEFAULT",
|
||||||
|
"language": "",
|
||||||
|
"color": "#0A0F25",
|
||||||
|
"italic": false,
|
||||||
|
"bold": true,
|
||||||
|
"underline": false,
|
||||||
|
"labelWidth": 83,
|
||||||
|
"labelHeight": 186,
|
||||||
|
"labelPosition": "INSIDE_MIDDLE_CENTER",
|
||||||
|
"zIndex": 0,
|
||||||
|
"level": 1
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": "d",
|
||||||
|
"type": "",
|
||||||
|
"pos": {
|
||||||
|
"x": 1401,
|
||||||
|
"y": 210
|
||||||
|
},
|
||||||
|
"width": 152,
|
||||||
|
"height": 126,
|
||||||
|
"opacity": 1,
|
||||||
|
"strokeDash": 0,
|
||||||
|
"strokeWidth": 2,
|
||||||
|
"borderRadius": 0,
|
||||||
|
"fill": "#F7F8FE",
|
||||||
|
"stroke": "#0D32B2",
|
||||||
|
"shadow": false,
|
||||||
|
"3d": false,
|
||||||
|
"multiple": false,
|
||||||
|
"tooltip": "",
|
||||||
|
"link": "",
|
||||||
|
"icon": null,
|
||||||
|
"iconPosition": "",
|
||||||
|
"fields": null,
|
||||||
|
"methods": null,
|
||||||
|
"columns": null,
|
||||||
|
"label": "simple",
|
||||||
|
"fontSize": 16,
|
||||||
|
"fontFamily": "DEFAULT",
|
||||||
|
"language": "",
|
||||||
|
"color": "#0A0F25",
|
||||||
|
"italic": false,
|
||||||
|
"bold": true,
|
||||||
|
"underline": false,
|
||||||
|
"labelWidth": 52,
|
||||||
|
"labelHeight": 26,
|
||||||
|
"labelPosition": "INSIDE_MIDDLE_CENTER",
|
||||||
|
"zIndex": 0,
|
||||||
|
"level": 1
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"connections": [
|
||||||
|
{
|
||||||
|
"id": "(a -> b)[0]",
|
||||||
|
"src": "a",
|
||||||
|
"srcArrow": "none",
|
||||||
|
"srcLabel": "",
|
||||||
|
"dst": "b",
|
||||||
|
"dstArrow": "triangle",
|
||||||
|
"dstLabel": "",
|
||||||
|
"opacity": 1,
|
||||||
|
"strokeDash": 0,
|
||||||
|
"strokeWidth": 2,
|
||||||
|
"stroke": "#0D32B2",
|
||||||
|
"label": "short",
|
||||||
|
"fontSize": 16,
|
||||||
|
"fontFamily": "DEFAULT",
|
||||||
|
"language": "",
|
||||||
|
"color": "#676C7E",
|
||||||
|
"italic": true,
|
||||||
|
"bold": false,
|
||||||
|
"underline": false,
|
||||||
|
"labelWidth": 36,
|
||||||
|
"labelHeight": 21,
|
||||||
|
"labelPosition": "INSIDE_MIDDLE_CENTER",
|
||||||
|
"labelPercentage": 0,
|
||||||
|
"route": [
|
||||||
|
{
|
||||||
|
"x": 257,
|
||||||
|
"y": 466
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"x": 718,
|
||||||
|
"y": 466
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"animated": false,
|
||||||
|
"tooltip": "",
|
||||||
|
"icon": null,
|
||||||
|
"zIndex": 2
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": "(b -> c)[0]",
|
||||||
|
"src": "b",
|
||||||
|
"srcArrow": "none",
|
||||||
|
"srcLabel": "",
|
||||||
|
"dst": "c",
|
||||||
|
"dstArrow": "triangle",
|
||||||
|
"dstLabel": "",
|
||||||
|
"opacity": 1,
|
||||||
|
"strokeDash": 0,
|
||||||
|
"strokeWidth": 2,
|
||||||
|
"stroke": "#0D32B2",
|
||||||
|
"label": "short",
|
||||||
|
"fontSize": 16,
|
||||||
|
"fontFamily": "DEFAULT",
|
||||||
|
"language": "",
|
||||||
|
"color": "#676C7E",
|
||||||
|
"italic": true,
|
||||||
|
"bold": false,
|
||||||
|
"underline": false,
|
||||||
|
"labelWidth": 36,
|
||||||
|
"labelHeight": 21,
|
||||||
|
"labelPosition": "INSIDE_MIDDLE_CENTER",
|
||||||
|
"labelPercentage": 0,
|
||||||
|
"route": [
|
||||||
|
{
|
||||||
|
"x": 718,
|
||||||
|
"y": 596
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"x": 1179.5,
|
||||||
|
"y": 596
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"animated": false,
|
||||||
|
"tooltip": "",
|
||||||
|
"icon": null,
|
||||||
|
"zIndex": 2
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": "(a -> b)[1]",
|
||||||
|
"src": "a",
|
||||||
|
"srcArrow": "none",
|
||||||
|
"srcLabel": "",
|
||||||
|
"dst": "b",
|
||||||
|
"dstArrow": "triangle",
|
||||||
|
"dstLabel": "",
|
||||||
|
"opacity": 1,
|
||||||
|
"strokeDash": 0,
|
||||||
|
"strokeWidth": 2,
|
||||||
|
"stroke": "#0D32B2",
|
||||||
|
"label": "long label for testing purposes and it must be really, really long",
|
||||||
|
"fontSize": 16,
|
||||||
|
"fontFamily": "DEFAULT",
|
||||||
|
"language": "",
|
||||||
|
"color": "#676C7E",
|
||||||
|
"italic": true,
|
||||||
|
"bold": false,
|
||||||
|
"underline": false,
|
||||||
|
"labelWidth": 411,
|
||||||
|
"labelHeight": 21,
|
||||||
|
"labelPosition": "INSIDE_MIDDLE_CENTER",
|
||||||
|
"labelPercentage": 0,
|
||||||
|
"route": [
|
||||||
|
{
|
||||||
|
"x": 257,
|
||||||
|
"y": 726
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"x": 718,
|
||||||
|
"y": 726
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"animated": false,
|
||||||
|
"tooltip": "",
|
||||||
|
"icon": null,
|
||||||
|
"zIndex": 2
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": "(b -> c)[1]",
|
||||||
|
"src": "b",
|
||||||
|
"srcArrow": "none",
|
||||||
|
"srcLabel": "",
|
||||||
|
"dst": "c",
|
||||||
|
"dstArrow": "triangle",
|
||||||
|
"dstLabel": "",
|
||||||
|
"opacity": 1,
|
||||||
|
"strokeDash": 0,
|
||||||
|
"strokeWidth": 2,
|
||||||
|
"stroke": "#0D32B2",
|
||||||
|
"label": "long label for testing purposes and it must be really, really long",
|
||||||
|
"fontSize": 16,
|
||||||
|
"fontFamily": "DEFAULT",
|
||||||
|
"language": "",
|
||||||
|
"color": "#676C7E",
|
||||||
|
"italic": true,
|
||||||
|
"bold": false,
|
||||||
|
"underline": false,
|
||||||
|
"labelWidth": 411,
|
||||||
|
"labelHeight": 21,
|
||||||
|
"labelPosition": "INSIDE_MIDDLE_CENTER",
|
||||||
|
"labelPercentage": 0,
|
||||||
|
"route": [
|
||||||
|
{
|
||||||
|
"x": 718,
|
||||||
|
"y": 856
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"x": 1179.5,
|
||||||
|
"y": 856
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"animated": false,
|
||||||
|
"tooltip": "",
|
||||||
|
"icon": null,
|
||||||
|
"zIndex": 2
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": "(c -> d)[0]",
|
||||||
|
"src": "c",
|
||||||
|
"srcArrow": "none",
|
||||||
|
"srcLabel": "",
|
||||||
|
"dst": "d",
|
||||||
|
"dstArrow": "triangle",
|
||||||
|
"dstLabel": "",
|
||||||
|
"opacity": 1,
|
||||||
|
"strokeDash": 0,
|
||||||
|
"strokeWidth": 2,
|
||||||
|
"stroke": "#0D32B2",
|
||||||
|
"label": "short",
|
||||||
|
"fontSize": 16,
|
||||||
|
"fontFamily": "DEFAULT",
|
||||||
|
"language": "",
|
||||||
|
"color": "#676C7E",
|
||||||
|
"italic": true,
|
||||||
|
"bold": false,
|
||||||
|
"underline": false,
|
||||||
|
"labelWidth": 36,
|
||||||
|
"labelHeight": 21,
|
||||||
|
"labelPosition": "INSIDE_MIDDLE_CENTER",
|
||||||
|
"labelPercentage": 0,
|
||||||
|
"route": [
|
||||||
|
{
|
||||||
|
"x": 1179.5,
|
||||||
|
"y": 986
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"x": 1477,
|
||||||
|
"y": 986
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"animated": false,
|
||||||
|
"tooltip": "",
|
||||||
|
"icon": null,
|
||||||
|
"zIndex": 2
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": "(a -> d)[0]",
|
||||||
|
"src": "a",
|
||||||
|
"srcArrow": "none",
|
||||||
|
"srcLabel": "",
|
||||||
|
"dst": "d",
|
||||||
|
"dstArrow": "triangle",
|
||||||
|
"dstLabel": "",
|
||||||
|
"opacity": 1,
|
||||||
|
"strokeDash": 0,
|
||||||
|
"strokeWidth": 2,
|
||||||
|
"stroke": "#0D32B2",
|
||||||
|
"label": "this should span many actors lifelines so we know how it will look like when redering a long label over many actors",
|
||||||
|
"fontSize": 16,
|
||||||
|
"fontFamily": "DEFAULT",
|
||||||
|
"language": "",
|
||||||
|
"color": "#676C7E",
|
||||||
|
"italic": true,
|
||||||
|
"bold": false,
|
||||||
|
"underline": false,
|
||||||
|
"labelWidth": 745,
|
||||||
|
"labelHeight": 21,
|
||||||
|
"labelPosition": "INSIDE_MIDDLE_CENTER",
|
||||||
|
"labelPercentage": 0,
|
||||||
|
"route": [
|
||||||
|
{
|
||||||
|
"x": 257,
|
||||||
|
"y": 1116
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"x": 1477,
|
||||||
|
"y": 1116
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"animated": false,
|
||||||
|
"tooltip": "",
|
||||||
|
"icon": null,
|
||||||
|
"zIndex": 2
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": "(a -- )[0]",
|
||||||
|
"src": "a",
|
||||||
|
"srcArrow": "none",
|
||||||
|
"srcLabel": "",
|
||||||
|
"dst": "a-lifeline-end-2251863791",
|
||||||
|
"dstArrow": "none",
|
||||||
|
"dstLabel": "",
|
||||||
|
"opacity": 1,
|
||||||
|
"strokeDash": 6,
|
||||||
|
"strokeWidth": 2,
|
||||||
|
"stroke": "#0D32B2",
|
||||||
|
"label": "",
|
||||||
|
"fontSize": 16,
|
||||||
|
"fontFamily": "DEFAULT",
|
||||||
|
"language": "",
|
||||||
|
"color": "#676C7E",
|
||||||
|
"italic": true,
|
||||||
|
"bold": false,
|
||||||
|
"underline": false,
|
||||||
|
"labelWidth": 0,
|
||||||
|
"labelHeight": 0,
|
||||||
|
"labelPosition": "",
|
||||||
|
"labelPercentage": 0,
|
||||||
|
"route": [
|
||||||
|
{
|
||||||
|
"x": 257,
|
||||||
|
"y": 336
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"x": 257,
|
||||||
|
"y": 1246
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"animated": false,
|
||||||
|
"tooltip": "",
|
||||||
|
"icon": null,
|
||||||
|
"zIndex": 0
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": "(b -- )[0]",
|
||||||
|
"src": "b",
|
||||||
|
"srcArrow": "none",
|
||||||
|
"srcLabel": "",
|
||||||
|
"dst": "b-lifeline-end-668380428",
|
||||||
|
"dstArrow": "none",
|
||||||
|
"dstLabel": "",
|
||||||
|
"opacity": 1,
|
||||||
|
"strokeDash": 6,
|
||||||
|
"strokeWidth": 2,
|
||||||
|
"stroke": "#0D32B2",
|
||||||
|
"label": "",
|
||||||
|
"fontSize": 16,
|
||||||
|
"fontFamily": "DEFAULT",
|
||||||
|
"language": "",
|
||||||
|
"color": "#676C7E",
|
||||||
|
"italic": true,
|
||||||
|
"bold": false,
|
||||||
|
"underline": false,
|
||||||
|
"labelWidth": 0,
|
||||||
|
"labelHeight": 0,
|
||||||
|
"labelPosition": "",
|
||||||
|
"labelPercentage": 0,
|
||||||
|
"route": [
|
||||||
|
{
|
||||||
|
"x": 718,
|
||||||
|
"y": 336
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"x": 718,
|
||||||
|
"y": 1246
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"animated": false,
|
||||||
|
"tooltip": "",
|
||||||
|
"icon": null,
|
||||||
|
"zIndex": 0
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": "(c -- )[0]",
|
||||||
|
"src": "c",
|
||||||
|
"srcArrow": "none",
|
||||||
|
"srcLabel": "",
|
||||||
|
"dst": "c-lifeline-end-955173837",
|
||||||
|
"dstArrow": "none",
|
||||||
|
"dstLabel": "",
|
||||||
|
"opacity": 1,
|
||||||
|
"strokeDash": 6,
|
||||||
|
"strokeWidth": 2,
|
||||||
|
"stroke": "#0D32B2",
|
||||||
|
"label": "",
|
||||||
|
"fontSize": 16,
|
||||||
|
"fontFamily": "DEFAULT",
|
||||||
|
"language": "",
|
||||||
|
"color": "#676C7E",
|
||||||
|
"italic": true,
|
||||||
|
"bold": false,
|
||||||
|
"underline": false,
|
||||||
|
"labelWidth": 0,
|
||||||
|
"labelHeight": 0,
|
||||||
|
"labelPosition": "",
|
||||||
|
"labelPercentage": 0,
|
||||||
|
"route": [
|
||||||
|
{
|
||||||
|
"x": 1179.5,
|
||||||
|
"y": 336
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"x": 1179.5,
|
||||||
|
"y": 1246
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"animated": false,
|
||||||
|
"tooltip": "",
|
||||||
|
"icon": null,
|
||||||
|
"zIndex": 0
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": "(d -- )[0]",
|
||||||
|
"src": "d",
|
||||||
|
"srcArrow": "none",
|
||||||
|
"srcLabel": "",
|
||||||
|
"dst": "d-lifeline-end-2106864010",
|
||||||
|
"dstArrow": "none",
|
||||||
|
"dstLabel": "",
|
||||||
|
"opacity": 1,
|
||||||
|
"strokeDash": 6,
|
||||||
|
"strokeWidth": 2,
|
||||||
|
"stroke": "#0D32B2",
|
||||||
|
"label": "",
|
||||||
|
"fontSize": 16,
|
||||||
|
"fontFamily": "DEFAULT",
|
||||||
|
"language": "",
|
||||||
|
"color": "#676C7E",
|
||||||
|
"italic": true,
|
||||||
|
"bold": false,
|
||||||
|
"underline": false,
|
||||||
|
"labelWidth": 0,
|
||||||
|
"labelHeight": 0,
|
||||||
|
"labelPosition": "",
|
||||||
|
"labelPercentage": 0,
|
||||||
|
"route": [
|
||||||
|
{
|
||||||
|
"x": 1477,
|
||||||
|
"y": 336
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"x": 1477,
|
||||||
|
"y": 1246
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"animated": false,
|
||||||
|
"tooltip": "",
|
||||||
|
"icon": null,
|
||||||
|
"zIndex": 0
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
||||||
39
e2etests/testdata/stable/sequence_diagram_actor_distance/elk/sketch.exp.svg
vendored
Normal file
|
After Width: | Height: | Size: 472 KiB |
188
e2etests/testdata/stable/sequence_diagram_all_shapes/dagre/board.exp.json
generated
vendored
|
|
@ -44,7 +44,7 @@
|
||||||
"id": "b",
|
"id": "b",
|
||||||
"type": "oval",
|
"type": "oval",
|
||||||
"pos": {
|
"pos": {
|
||||||
"x": 410,
|
"x": 259,
|
||||||
"y": 84
|
"y": 84
|
||||||
},
|
},
|
||||||
"width": 150,
|
"width": 150,
|
||||||
|
|
@ -83,7 +83,7 @@
|
||||||
"id": "c",
|
"id": "c",
|
||||||
"type": "class",
|
"type": "class",
|
||||||
"pos": {
|
"pos": {
|
||||||
"x": 817,
|
"x": 463,
|
||||||
"y": 50
|
"y": 50
|
||||||
},
|
},
|
||||||
"width": 241,
|
"width": 241,
|
||||||
|
|
@ -133,7 +133,7 @@
|
||||||
"id": "d",
|
"id": "d",
|
||||||
"type": "cloud",
|
"type": "cloud",
|
||||||
"pos": {
|
"pos": {
|
||||||
"x": 1315,
|
"x": 744,
|
||||||
"y": 108
|
"y": 108
|
||||||
},
|
},
|
||||||
"width": 179,
|
"width": 179,
|
||||||
|
|
@ -172,7 +172,7 @@
|
||||||
"id": "e",
|
"id": "e",
|
||||||
"type": "code",
|
"type": "code",
|
||||||
"pos": {
|
"pos": {
|
||||||
"x": 1751,
|
"x": 986,
|
||||||
"y": 164
|
"y": 164
|
||||||
},
|
},
|
||||||
"width": 196,
|
"width": 196,
|
||||||
|
|
@ -211,7 +211,7 @@
|
||||||
"id": "f",
|
"id": "f",
|
||||||
"type": "cylinder",
|
"type": "cylinder",
|
||||||
"pos": {
|
"pos": {
|
||||||
"x": 2204,
|
"x": 1259,
|
||||||
"y": 84
|
"y": 84
|
||||||
},
|
},
|
||||||
"width": 150,
|
"width": 150,
|
||||||
|
|
@ -250,7 +250,7 @@
|
||||||
"id": "g",
|
"id": "g",
|
||||||
"type": "diamond",
|
"type": "diamond",
|
||||||
"pos": {
|
"pos": {
|
||||||
"x": 2611,
|
"x": 1509,
|
||||||
"y": 85
|
"y": 85
|
||||||
},
|
},
|
||||||
"width": 150,
|
"width": 150,
|
||||||
|
|
@ -289,7 +289,7 @@
|
||||||
"id": "h",
|
"id": "h",
|
||||||
"type": "document",
|
"type": "document",
|
||||||
"pos": {
|
"pos": {
|
||||||
"x": 3018,
|
"x": 1759,
|
||||||
"y": 97
|
"y": 97
|
||||||
},
|
},
|
||||||
"width": 150,
|
"width": 150,
|
||||||
|
|
@ -328,7 +328,7 @@
|
||||||
"id": "i",
|
"id": "i",
|
||||||
"type": "hexagon",
|
"type": "hexagon",
|
||||||
"pos": {
|
"pos": {
|
||||||
"x": 3425,
|
"x": 1993,
|
||||||
"y": 108
|
"y": 108
|
||||||
},
|
},
|
||||||
"width": 182,
|
"width": 182,
|
||||||
|
|
@ -367,7 +367,7 @@
|
||||||
"id": "j",
|
"id": "j",
|
||||||
"type": "image",
|
"type": "image",
|
||||||
"pos": {
|
"pos": {
|
||||||
"x": 3864,
|
"x": 2259,
|
||||||
"y": 63
|
"y": 63
|
||||||
},
|
},
|
||||||
"width": 150,
|
"width": 150,
|
||||||
|
|
@ -417,7 +417,7 @@
|
||||||
"id": "k",
|
"id": "k",
|
||||||
"type": "oval",
|
"type": "oval",
|
||||||
"pos": {
|
"pos": {
|
||||||
"x": 4271,
|
"x": 2509,
|
||||||
"y": 97
|
"y": 97
|
||||||
},
|
},
|
||||||
"width": 150,
|
"width": 150,
|
||||||
|
|
@ -456,7 +456,7 @@
|
||||||
"id": "l",
|
"id": "l",
|
||||||
"type": "package",
|
"type": "package",
|
||||||
"pos": {
|
"pos": {
|
||||||
"x": 4678,
|
"x": 2759,
|
||||||
"y": 98
|
"y": 98
|
||||||
},
|
},
|
||||||
"width": 150,
|
"width": 150,
|
||||||
|
|
@ -495,7 +495,7 @@
|
||||||
"id": "m",
|
"id": "m",
|
||||||
"type": "page",
|
"type": "page",
|
||||||
"pos": {
|
"pos": {
|
||||||
"x": 5085,
|
"x": 2996,
|
||||||
"y": 108
|
"y": 108
|
||||||
},
|
},
|
||||||
"width": 175,
|
"width": 175,
|
||||||
|
|
@ -534,7 +534,7 @@
|
||||||
"id": "n",
|
"id": "n",
|
||||||
"type": "parallelogram",
|
"type": "parallelogram",
|
||||||
"pos": {
|
"pos": {
|
||||||
"x": 5517,
|
"x": 3242,
|
||||||
"y": 92
|
"y": 92
|
||||||
},
|
},
|
||||||
"width": 183,
|
"width": 183,
|
||||||
|
|
@ -573,7 +573,7 @@
|
||||||
"id": "o",
|
"id": "o",
|
||||||
"type": "person",
|
"type": "person",
|
||||||
"pos": {
|
"pos": {
|
||||||
"x": 5957,
|
"x": 3507,
|
||||||
"y": 55
|
"y": 55
|
||||||
},
|
},
|
||||||
"width": 154,
|
"width": 154,
|
||||||
|
|
@ -612,7 +612,7 @@
|
||||||
"id": "p",
|
"id": "p",
|
||||||
"type": "queue",
|
"type": "queue",
|
||||||
"pos": {
|
"pos": {
|
||||||
"x": 6368,
|
"x": 3753,
|
||||||
"y": 108
|
"y": 108
|
||||||
},
|
},
|
||||||
"width": 161,
|
"width": 161,
|
||||||
|
|
@ -651,7 +651,7 @@
|
||||||
"id": "q",
|
"id": "q",
|
||||||
"type": "rectangle",
|
"type": "rectangle",
|
||||||
"pos": {
|
"pos": {
|
||||||
"x": 6786,
|
"x": 4001,
|
||||||
"y": 69
|
"y": 69
|
||||||
},
|
},
|
||||||
"width": 165,
|
"width": 165,
|
||||||
|
|
@ -690,7 +690,7 @@
|
||||||
"id": "r",
|
"id": "r",
|
||||||
"type": "step",
|
"type": "step",
|
||||||
"pos": {
|
"pos": {
|
||||||
"x": 7208,
|
"x": 4227,
|
||||||
"y": 108
|
"y": 108
|
||||||
},
|
},
|
||||||
"width": 213,
|
"width": 213,
|
||||||
|
|
@ -729,7 +729,7 @@
|
||||||
"id": "s",
|
"id": "s",
|
||||||
"type": "stored_data",
|
"type": "stored_data",
|
||||||
"pos": {
|
"pos": {
|
||||||
"x": 7678,
|
"x": 4509,
|
||||||
"y": 96
|
"y": 96
|
||||||
},
|
},
|
||||||
"width": 150,
|
"width": 150,
|
||||||
|
|
@ -768,7 +768,7 @@
|
||||||
"id": "t",
|
"id": "t",
|
||||||
"type": "sql_table",
|
"type": "sql_table",
|
||||||
"pos": {
|
"pos": {
|
||||||
"x": 8085,
|
"x": 4729,
|
||||||
"y": 126
|
"y": 126
|
||||||
},
|
},
|
||||||
"width": 210,
|
"width": 210,
|
||||||
|
|
@ -848,7 +848,7 @@
|
||||||
"y": 364
|
"y": 364
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"x": 485,
|
"x": 334,
|
||||||
"y": 364
|
"y": 364
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
|
|
@ -883,11 +883,11 @@
|
||||||
"labelPercentage": 0,
|
"labelPercentage": 0,
|
||||||
"route": [
|
"route": [
|
||||||
{
|
{
|
||||||
"x": 485,
|
"x": 334,
|
||||||
"y": 494
|
"y": 494
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"x": 937.5,
|
"x": 583.5,
|
||||||
"y": 494
|
"y": 494
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
|
|
@ -922,11 +922,11 @@
|
||||||
"labelPercentage": 0,
|
"labelPercentage": 0,
|
||||||
"route": [
|
"route": [
|
||||||
{
|
{
|
||||||
"x": 937.5,
|
"x": 583.5,
|
||||||
"y": 624
|
"y": 624
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"x": 1404.5,
|
"x": 833.5,
|
||||||
"y": 624
|
"y": 624
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
|
|
@ -961,11 +961,11 @@
|
||||||
"labelPercentage": 0,
|
"labelPercentage": 0,
|
||||||
"route": [
|
"route": [
|
||||||
{
|
{
|
||||||
"x": 1404.5,
|
"x": 833.5,
|
||||||
"y": 754
|
"y": 754
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"x": 1849,
|
"x": 1084,
|
||||||
"y": 754
|
"y": 754
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
|
|
@ -1000,11 +1000,11 @@
|
||||||
"labelPercentage": 0,
|
"labelPercentage": 0,
|
||||||
"route": [
|
"route": [
|
||||||
{
|
{
|
||||||
"x": 1849,
|
"x": 1084,
|
||||||
"y": 884
|
"y": 884
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"x": 2279,
|
"x": 1334,
|
||||||
"y": 884
|
"y": 884
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
|
|
@ -1039,11 +1039,11 @@
|
||||||
"labelPercentage": 0,
|
"labelPercentage": 0,
|
||||||
"route": [
|
"route": [
|
||||||
{
|
{
|
||||||
"x": 2279,
|
"x": 1334,
|
||||||
"y": 1014
|
"y": 1014
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"x": 2686,
|
"x": 1584,
|
||||||
"y": 1014
|
"y": 1014
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
|
|
@ -1078,11 +1078,11 @@
|
||||||
"labelPercentage": 0,
|
"labelPercentage": 0,
|
||||||
"route": [
|
"route": [
|
||||||
{
|
{
|
||||||
"x": 2686,
|
"x": 1584,
|
||||||
"y": 1144
|
"y": 1144
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"x": 3093,
|
"x": 1834,
|
||||||
"y": 1144
|
"y": 1144
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
|
|
@ -1117,11 +1117,11 @@
|
||||||
"labelPercentage": 0,
|
"labelPercentage": 0,
|
||||||
"route": [
|
"route": [
|
||||||
{
|
{
|
||||||
"x": 3093,
|
"x": 1834,
|
||||||
"y": 1274
|
"y": 1274
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"x": 3516,
|
"x": 2084,
|
||||||
"y": 1274
|
"y": 1274
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
|
|
@ -1156,11 +1156,11 @@
|
||||||
"labelPercentage": 0,
|
"labelPercentage": 0,
|
||||||
"route": [
|
"route": [
|
||||||
{
|
{
|
||||||
"x": 3516,
|
"x": 2084,
|
||||||
"y": 1404
|
"y": 1404
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"x": 3939,
|
"x": 2334,
|
||||||
"y": 1404
|
"y": 1404
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
|
|
@ -1195,11 +1195,11 @@
|
||||||
"labelPercentage": 0,
|
"labelPercentage": 0,
|
||||||
"route": [
|
"route": [
|
||||||
{
|
{
|
||||||
"x": 3939,
|
"x": 2334,
|
||||||
"y": 1534
|
"y": 1534
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"x": 4346,
|
"x": 2584,
|
||||||
"y": 1534
|
"y": 1534
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
|
|
@ -1234,11 +1234,11 @@
|
||||||
"labelPercentage": 0,
|
"labelPercentage": 0,
|
||||||
"route": [
|
"route": [
|
||||||
{
|
{
|
||||||
"x": 4346,
|
"x": 2584,
|
||||||
"y": 1664
|
"y": 1664
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"x": 4753,
|
"x": 2834,
|
||||||
"y": 1664
|
"y": 1664
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
|
|
@ -1273,11 +1273,11 @@
|
||||||
"labelPercentage": 0,
|
"labelPercentage": 0,
|
||||||
"route": [
|
"route": [
|
||||||
{
|
{
|
||||||
"x": 4753,
|
"x": 2834,
|
||||||
"y": 1794
|
"y": 1794
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"x": 5172.5,
|
"x": 3083.5,
|
||||||
"y": 1794
|
"y": 1794
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
|
|
@ -1312,11 +1312,11 @@
|
||||||
"labelPercentage": 0,
|
"labelPercentage": 0,
|
||||||
"route": [
|
"route": [
|
||||||
{
|
{
|
||||||
"x": 5172.5,
|
"x": 3083.5,
|
||||||
"y": 1924
|
"y": 1924
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"x": 5608.5,
|
"x": 3333.5,
|
||||||
"y": 1924
|
"y": 1924
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
|
|
@ -1351,11 +1351,11 @@
|
||||||
"labelPercentage": 0,
|
"labelPercentage": 0,
|
||||||
"route": [
|
"route": [
|
||||||
{
|
{
|
||||||
"x": 5608.5,
|
"x": 3333.5,
|
||||||
"y": 2054
|
"y": 2054
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"x": 6034,
|
"x": 3584,
|
||||||
"y": 2054
|
"y": 2054
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
|
|
@ -1390,11 +1390,11 @@
|
||||||
"labelPercentage": 0,
|
"labelPercentage": 0,
|
||||||
"route": [
|
"route": [
|
||||||
{
|
{
|
||||||
"x": 6034,
|
"x": 3584,
|
||||||
"y": 2184
|
"y": 2184
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"x": 6448.5,
|
"x": 3833.5,
|
||||||
"y": 2184
|
"y": 2184
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
|
|
@ -1429,11 +1429,11 @@
|
||||||
"labelPercentage": 0,
|
"labelPercentage": 0,
|
||||||
"route": [
|
"route": [
|
||||||
{
|
{
|
||||||
"x": 6448.5,
|
"x": 3833.5,
|
||||||
"y": 2314
|
"y": 2314
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"x": 6868.5,
|
"x": 4083.5,
|
||||||
"y": 2314
|
"y": 2314
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
|
|
@ -1468,11 +1468,11 @@
|
||||||
"labelPercentage": 0,
|
"labelPercentage": 0,
|
||||||
"route": [
|
"route": [
|
||||||
{
|
{
|
||||||
"x": 6868.5,
|
"x": 4083.5,
|
||||||
"y": 2444
|
"y": 2444
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"x": 7314.5,
|
"x": 4333.5,
|
||||||
"y": 2444
|
"y": 2444
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
|
|
@ -1507,11 +1507,11 @@
|
||||||
"labelPercentage": 0,
|
"labelPercentage": 0,
|
||||||
"route": [
|
"route": [
|
||||||
{
|
{
|
||||||
"x": 7314.5,
|
"x": 4333.5,
|
||||||
"y": 2574
|
"y": 2574
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"x": 7753,
|
"x": 4584,
|
||||||
"y": 2574
|
"y": 2574
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
|
|
@ -1546,11 +1546,11 @@
|
||||||
"labelPercentage": 0,
|
"labelPercentage": 0,
|
||||||
"route": [
|
"route": [
|
||||||
{
|
{
|
||||||
"x": 7753,
|
"x": 4584,
|
||||||
"y": 2704
|
"y": 2704
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"x": 8190,
|
"x": 4834,
|
||||||
"y": 2704
|
"y": 2704
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
|
|
@ -1624,11 +1624,11 @@
|
||||||
"labelPercentage": 0,
|
"labelPercentage": 0,
|
||||||
"route": [
|
"route": [
|
||||||
{
|
{
|
||||||
"x": 485,
|
"x": 334,
|
||||||
"y": 234
|
"y": 234
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"x": 485,
|
"x": 334,
|
||||||
"y": 2834
|
"y": 2834
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
|
|
@ -1663,11 +1663,11 @@
|
||||||
"labelPercentage": 0,
|
"labelPercentage": 0,
|
||||||
"route": [
|
"route": [
|
||||||
{
|
{
|
||||||
"x": 937.5,
|
"x": 583.5,
|
||||||
"y": 234
|
"y": 234
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"x": 937.5,
|
"x": 583.5,
|
||||||
"y": 2834
|
"y": 2834
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
|
|
@ -1702,11 +1702,11 @@
|
||||||
"labelPercentage": 0,
|
"labelPercentage": 0,
|
||||||
"route": [
|
"route": [
|
||||||
{
|
{
|
||||||
"x": 1404.5,
|
"x": 833.5,
|
||||||
"y": 234
|
"y": 234
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"x": 1404.5,
|
"x": 833.5,
|
||||||
"y": 2834
|
"y": 2834
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
|
|
@ -1741,11 +1741,11 @@
|
||||||
"labelPercentage": 0,
|
"labelPercentage": 0,
|
||||||
"route": [
|
"route": [
|
||||||
{
|
{
|
||||||
"x": 1849,
|
"x": 1084,
|
||||||
"y": 234
|
"y": 234
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"x": 1849,
|
"x": 1084,
|
||||||
"y": 2834
|
"y": 2834
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
|
|
@ -1780,11 +1780,11 @@
|
||||||
"labelPercentage": 0,
|
"labelPercentage": 0,
|
||||||
"route": [
|
"route": [
|
||||||
{
|
{
|
||||||
"x": 2279,
|
"x": 1334,
|
||||||
"y": 234
|
"y": 234
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"x": 2279,
|
"x": 1334,
|
||||||
"y": 2834
|
"y": 2834
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
|
|
@ -1819,11 +1819,11 @@
|
||||||
"labelPercentage": 0,
|
"labelPercentage": 0,
|
||||||
"route": [
|
"route": [
|
||||||
{
|
{
|
||||||
"x": 2686,
|
"x": 1584,
|
||||||
"y": 234
|
"y": 234
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"x": 2686,
|
"x": 1584,
|
||||||
"y": 2834
|
"y": 2834
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
|
|
@ -1858,11 +1858,11 @@
|
||||||
"labelPercentage": 0,
|
"labelPercentage": 0,
|
||||||
"route": [
|
"route": [
|
||||||
{
|
{
|
||||||
"x": 3093,
|
"x": 1834,
|
||||||
"y": 234
|
"y": 234
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"x": 3093,
|
"x": 1834,
|
||||||
"y": 2834
|
"y": 2834
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
|
|
@ -1897,11 +1897,11 @@
|
||||||
"labelPercentage": 0,
|
"labelPercentage": 0,
|
||||||
"route": [
|
"route": [
|
||||||
{
|
{
|
||||||
"x": 3516,
|
"x": 2084,
|
||||||
"y": 234
|
"y": 234
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"x": 3516,
|
"x": 2084,
|
||||||
"y": 2834
|
"y": 2834
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
|
|
@ -1936,11 +1936,11 @@
|
||||||
"labelPercentage": 0,
|
"labelPercentage": 0,
|
||||||
"route": [
|
"route": [
|
||||||
{
|
{
|
||||||
"x": 3939,
|
"x": 2334,
|
||||||
"y": 239
|
"y": 239
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"x": 3939,
|
"x": 2334,
|
||||||
"y": 2834
|
"y": 2834
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
|
|
@ -1975,11 +1975,11 @@
|
||||||
"labelPercentage": 0,
|
"labelPercentage": 0,
|
||||||
"route": [
|
"route": [
|
||||||
{
|
{
|
||||||
"x": 4346,
|
"x": 2584,
|
||||||
"y": 234
|
"y": 234
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"x": 4346,
|
"x": 2584,
|
||||||
"y": 2834
|
"y": 2834
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
|
|
@ -2014,11 +2014,11 @@
|
||||||
"labelPercentage": 0,
|
"labelPercentage": 0,
|
||||||
"route": [
|
"route": [
|
||||||
{
|
{
|
||||||
"x": 4753,
|
"x": 2834,
|
||||||
"y": 234
|
"y": 234
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"x": 4753,
|
"x": 2834,
|
||||||
"y": 2834
|
"y": 2834
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
|
|
@ -2053,11 +2053,11 @@
|
||||||
"labelPercentage": 0,
|
"labelPercentage": 0,
|
||||||
"route": [
|
"route": [
|
||||||
{
|
{
|
||||||
"x": 5172.5,
|
"x": 3083.5,
|
||||||
"y": 234
|
"y": 234
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"x": 5172.5,
|
"x": 3083.5,
|
||||||
"y": 2834
|
"y": 2834
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
|
|
@ -2092,11 +2092,11 @@
|
||||||
"labelPercentage": 0,
|
"labelPercentage": 0,
|
||||||
"route": [
|
"route": [
|
||||||
{
|
{
|
||||||
"x": 5608.5,
|
"x": 3333.5,
|
||||||
"y": 234
|
"y": 234
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"x": 5608.5,
|
"x": 3333.5,
|
||||||
"y": 2834
|
"y": 2834
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
|
|
@ -2131,11 +2131,11 @@
|
||||||
"labelPercentage": 0,
|
"labelPercentage": 0,
|
||||||
"route": [
|
"route": [
|
||||||
{
|
{
|
||||||
"x": 6034,
|
"x": 3584,
|
||||||
"y": 239
|
"y": 239
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"x": 6034,
|
"x": 3584,
|
||||||
"y": 2834
|
"y": 2834
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
|
|
@ -2170,11 +2170,11 @@
|
||||||
"labelPercentage": 0,
|
"labelPercentage": 0,
|
||||||
"route": [
|
"route": [
|
||||||
{
|
{
|
||||||
"x": 6448.5,
|
"x": 3833.5,
|
||||||
"y": 234
|
"y": 234
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"x": 6448.5,
|
"x": 3833.5,
|
||||||
"y": 2834
|
"y": 2834
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
|
|
@ -2209,11 +2209,11 @@
|
||||||
"labelPercentage": 0,
|
"labelPercentage": 0,
|
||||||
"route": [
|
"route": [
|
||||||
{
|
{
|
||||||
"x": 6868.5,
|
"x": 4083.5,
|
||||||
"y": 234
|
"y": 234
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"x": 6868.5,
|
"x": 4083.5,
|
||||||
"y": 2834
|
"y": 2834
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
|
|
@ -2248,11 +2248,11 @@
|
||||||
"labelPercentage": 0,
|
"labelPercentage": 0,
|
||||||
"route": [
|
"route": [
|
||||||
{
|
{
|
||||||
"x": 7314.5,
|
"x": 4333.5,
|
||||||
"y": 234
|
"y": 234
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"x": 7314.5,
|
"x": 4333.5,
|
||||||
"y": 2834
|
"y": 2834
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
|
|
@ -2287,11 +2287,11 @@
|
||||||
"labelPercentage": 0,
|
"labelPercentage": 0,
|
||||||
"route": [
|
"route": [
|
||||||
{
|
{
|
||||||
"x": 7753,
|
"x": 4584,
|
||||||
"y": 234
|
"y": 234
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"x": 7753,
|
"x": 4584,
|
||||||
"y": 2834
|
"y": 2834
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
|
|
@ -2326,11 +2326,11 @@
|
||||||
"labelPercentage": 0,
|
"labelPercentage": 0,
|
||||||
"route": [
|
"route": [
|
||||||
{
|
{
|
||||||
"x": 8190,
|
"x": 4834,
|
||||||
"y": 234
|
"y": 234
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"x": 8190,
|
"x": 4834,
|
||||||
"y": 2834
|
"y": 2834
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
|
|
|
||||||
|
Before Width: | Height: | Size: 992 KiB After Width: | Height: | Size: 992 KiB |
188
e2etests/testdata/stable/sequence_diagram_all_shapes/elk/board.exp.json
generated
vendored
|
|
@ -44,7 +44,7 @@
|
||||||
"id": "b",
|
"id": "b",
|
||||||
"type": "oval",
|
"type": "oval",
|
||||||
"pos": {
|
"pos": {
|
||||||
"x": 410,
|
"x": 259,
|
||||||
"y": 84
|
"y": 84
|
||||||
},
|
},
|
||||||
"width": 150,
|
"width": 150,
|
||||||
|
|
@ -83,7 +83,7 @@
|
||||||
"id": "c",
|
"id": "c",
|
||||||
"type": "class",
|
"type": "class",
|
||||||
"pos": {
|
"pos": {
|
||||||
"x": 817,
|
"x": 463,
|
||||||
"y": 50
|
"y": 50
|
||||||
},
|
},
|
||||||
"width": 241,
|
"width": 241,
|
||||||
|
|
@ -133,7 +133,7 @@
|
||||||
"id": "d",
|
"id": "d",
|
||||||
"type": "cloud",
|
"type": "cloud",
|
||||||
"pos": {
|
"pos": {
|
||||||
"x": 1315,
|
"x": 744,
|
||||||
"y": 108
|
"y": 108
|
||||||
},
|
},
|
||||||
"width": 179,
|
"width": 179,
|
||||||
|
|
@ -172,7 +172,7 @@
|
||||||
"id": "e",
|
"id": "e",
|
||||||
"type": "code",
|
"type": "code",
|
||||||
"pos": {
|
"pos": {
|
||||||
"x": 1751,
|
"x": 986,
|
||||||
"y": 164
|
"y": 164
|
||||||
},
|
},
|
||||||
"width": 196,
|
"width": 196,
|
||||||
|
|
@ -211,7 +211,7 @@
|
||||||
"id": "f",
|
"id": "f",
|
||||||
"type": "cylinder",
|
"type": "cylinder",
|
||||||
"pos": {
|
"pos": {
|
||||||
"x": 2204,
|
"x": 1259,
|
||||||
"y": 84
|
"y": 84
|
||||||
},
|
},
|
||||||
"width": 150,
|
"width": 150,
|
||||||
|
|
@ -250,7 +250,7 @@
|
||||||
"id": "g",
|
"id": "g",
|
||||||
"type": "diamond",
|
"type": "diamond",
|
||||||
"pos": {
|
"pos": {
|
||||||
"x": 2611,
|
"x": 1509,
|
||||||
"y": 85
|
"y": 85
|
||||||
},
|
},
|
||||||
"width": 150,
|
"width": 150,
|
||||||
|
|
@ -289,7 +289,7 @@
|
||||||
"id": "h",
|
"id": "h",
|
||||||
"type": "document",
|
"type": "document",
|
||||||
"pos": {
|
"pos": {
|
||||||
"x": 3018,
|
"x": 1759,
|
||||||
"y": 97
|
"y": 97
|
||||||
},
|
},
|
||||||
"width": 150,
|
"width": 150,
|
||||||
|
|
@ -328,7 +328,7 @@
|
||||||
"id": "i",
|
"id": "i",
|
||||||
"type": "hexagon",
|
"type": "hexagon",
|
||||||
"pos": {
|
"pos": {
|
||||||
"x": 3425,
|
"x": 1993,
|
||||||
"y": 108
|
"y": 108
|
||||||
},
|
},
|
||||||
"width": 182,
|
"width": 182,
|
||||||
|
|
@ -367,7 +367,7 @@
|
||||||
"id": "j",
|
"id": "j",
|
||||||
"type": "image",
|
"type": "image",
|
||||||
"pos": {
|
"pos": {
|
||||||
"x": 3864,
|
"x": 2259,
|
||||||
"y": 63
|
"y": 63
|
||||||
},
|
},
|
||||||
"width": 150,
|
"width": 150,
|
||||||
|
|
@ -417,7 +417,7 @@
|
||||||
"id": "k",
|
"id": "k",
|
||||||
"type": "oval",
|
"type": "oval",
|
||||||
"pos": {
|
"pos": {
|
||||||
"x": 4271,
|
"x": 2509,
|
||||||
"y": 97
|
"y": 97
|
||||||
},
|
},
|
||||||
"width": 150,
|
"width": 150,
|
||||||
|
|
@ -456,7 +456,7 @@
|
||||||
"id": "l",
|
"id": "l",
|
||||||
"type": "package",
|
"type": "package",
|
||||||
"pos": {
|
"pos": {
|
||||||
"x": 4678,
|
"x": 2759,
|
||||||
"y": 98
|
"y": 98
|
||||||
},
|
},
|
||||||
"width": 150,
|
"width": 150,
|
||||||
|
|
@ -495,7 +495,7 @@
|
||||||
"id": "m",
|
"id": "m",
|
||||||
"type": "page",
|
"type": "page",
|
||||||
"pos": {
|
"pos": {
|
||||||
"x": 5085,
|
"x": 2996,
|
||||||
"y": 108
|
"y": 108
|
||||||
},
|
},
|
||||||
"width": 175,
|
"width": 175,
|
||||||
|
|
@ -534,7 +534,7 @@
|
||||||
"id": "n",
|
"id": "n",
|
||||||
"type": "parallelogram",
|
"type": "parallelogram",
|
||||||
"pos": {
|
"pos": {
|
||||||
"x": 5517,
|
"x": 3242,
|
||||||
"y": 92
|
"y": 92
|
||||||
},
|
},
|
||||||
"width": 183,
|
"width": 183,
|
||||||
|
|
@ -573,7 +573,7 @@
|
||||||
"id": "o",
|
"id": "o",
|
||||||
"type": "person",
|
"type": "person",
|
||||||
"pos": {
|
"pos": {
|
||||||
"x": 5957,
|
"x": 3507,
|
||||||
"y": 55
|
"y": 55
|
||||||
},
|
},
|
||||||
"width": 154,
|
"width": 154,
|
||||||
|
|
@ -612,7 +612,7 @@
|
||||||
"id": "p",
|
"id": "p",
|
||||||
"type": "queue",
|
"type": "queue",
|
||||||
"pos": {
|
"pos": {
|
||||||
"x": 6368,
|
"x": 3753,
|
||||||
"y": 108
|
"y": 108
|
||||||
},
|
},
|
||||||
"width": 161,
|
"width": 161,
|
||||||
|
|
@ -651,7 +651,7 @@
|
||||||
"id": "q",
|
"id": "q",
|
||||||
"type": "rectangle",
|
"type": "rectangle",
|
||||||
"pos": {
|
"pos": {
|
||||||
"x": 6786,
|
"x": 4001,
|
||||||
"y": 69
|
"y": 69
|
||||||
},
|
},
|
||||||
"width": 165,
|
"width": 165,
|
||||||
|
|
@ -690,7 +690,7 @@
|
||||||
"id": "r",
|
"id": "r",
|
||||||
"type": "step",
|
"type": "step",
|
||||||
"pos": {
|
"pos": {
|
||||||
"x": 7208,
|
"x": 4227,
|
||||||
"y": 108
|
"y": 108
|
||||||
},
|
},
|
||||||
"width": 213,
|
"width": 213,
|
||||||
|
|
@ -729,7 +729,7 @@
|
||||||
"id": "s",
|
"id": "s",
|
||||||
"type": "stored_data",
|
"type": "stored_data",
|
||||||
"pos": {
|
"pos": {
|
||||||
"x": 7678,
|
"x": 4509,
|
||||||
"y": 96
|
"y": 96
|
||||||
},
|
},
|
||||||
"width": 150,
|
"width": 150,
|
||||||
|
|
@ -768,7 +768,7 @@
|
||||||
"id": "t",
|
"id": "t",
|
||||||
"type": "sql_table",
|
"type": "sql_table",
|
||||||
"pos": {
|
"pos": {
|
||||||
"x": 8085,
|
"x": 4729,
|
||||||
"y": 126
|
"y": 126
|
||||||
},
|
},
|
||||||
"width": 210,
|
"width": 210,
|
||||||
|
|
@ -848,7 +848,7 @@
|
||||||
"y": 364
|
"y": 364
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"x": 485,
|
"x": 334,
|
||||||
"y": 364
|
"y": 364
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
|
|
@ -883,11 +883,11 @@
|
||||||
"labelPercentage": 0,
|
"labelPercentage": 0,
|
||||||
"route": [
|
"route": [
|
||||||
{
|
{
|
||||||
"x": 485,
|
"x": 334,
|
||||||
"y": 494
|
"y": 494
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"x": 937.5,
|
"x": 583.5,
|
||||||
"y": 494
|
"y": 494
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
|
|
@ -922,11 +922,11 @@
|
||||||
"labelPercentage": 0,
|
"labelPercentage": 0,
|
||||||
"route": [
|
"route": [
|
||||||
{
|
{
|
||||||
"x": 937.5,
|
"x": 583.5,
|
||||||
"y": 624
|
"y": 624
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"x": 1404.5,
|
"x": 833.5,
|
||||||
"y": 624
|
"y": 624
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
|
|
@ -961,11 +961,11 @@
|
||||||
"labelPercentage": 0,
|
"labelPercentage": 0,
|
||||||
"route": [
|
"route": [
|
||||||
{
|
{
|
||||||
"x": 1404.5,
|
"x": 833.5,
|
||||||
"y": 754
|
"y": 754
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"x": 1849,
|
"x": 1084,
|
||||||
"y": 754
|
"y": 754
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
|
|
@ -1000,11 +1000,11 @@
|
||||||
"labelPercentage": 0,
|
"labelPercentage": 0,
|
||||||
"route": [
|
"route": [
|
||||||
{
|
{
|
||||||
"x": 1849,
|
"x": 1084,
|
||||||
"y": 884
|
"y": 884
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"x": 2279,
|
"x": 1334,
|
||||||
"y": 884
|
"y": 884
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
|
|
@ -1039,11 +1039,11 @@
|
||||||
"labelPercentage": 0,
|
"labelPercentage": 0,
|
||||||
"route": [
|
"route": [
|
||||||
{
|
{
|
||||||
"x": 2279,
|
"x": 1334,
|
||||||
"y": 1014
|
"y": 1014
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"x": 2686,
|
"x": 1584,
|
||||||
"y": 1014
|
"y": 1014
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
|
|
@ -1078,11 +1078,11 @@
|
||||||
"labelPercentage": 0,
|
"labelPercentage": 0,
|
||||||
"route": [
|
"route": [
|
||||||
{
|
{
|
||||||
"x": 2686,
|
"x": 1584,
|
||||||
"y": 1144
|
"y": 1144
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"x": 3093,
|
"x": 1834,
|
||||||
"y": 1144
|
"y": 1144
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
|
|
@ -1117,11 +1117,11 @@
|
||||||
"labelPercentage": 0,
|
"labelPercentage": 0,
|
||||||
"route": [
|
"route": [
|
||||||
{
|
{
|
||||||
"x": 3093,
|
"x": 1834,
|
||||||
"y": 1274
|
"y": 1274
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"x": 3516,
|
"x": 2084,
|
||||||
"y": 1274
|
"y": 1274
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
|
|
@ -1156,11 +1156,11 @@
|
||||||
"labelPercentage": 0,
|
"labelPercentage": 0,
|
||||||
"route": [
|
"route": [
|
||||||
{
|
{
|
||||||
"x": 3516,
|
"x": 2084,
|
||||||
"y": 1404
|
"y": 1404
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"x": 3939,
|
"x": 2334,
|
||||||
"y": 1404
|
"y": 1404
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
|
|
@ -1195,11 +1195,11 @@
|
||||||
"labelPercentage": 0,
|
"labelPercentage": 0,
|
||||||
"route": [
|
"route": [
|
||||||
{
|
{
|
||||||
"x": 3939,
|
"x": 2334,
|
||||||
"y": 1534
|
"y": 1534
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"x": 4346,
|
"x": 2584,
|
||||||
"y": 1534
|
"y": 1534
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
|
|
@ -1234,11 +1234,11 @@
|
||||||
"labelPercentage": 0,
|
"labelPercentage": 0,
|
||||||
"route": [
|
"route": [
|
||||||
{
|
{
|
||||||
"x": 4346,
|
"x": 2584,
|
||||||
"y": 1664
|
"y": 1664
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"x": 4753,
|
"x": 2834,
|
||||||
"y": 1664
|
"y": 1664
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
|
|
@ -1273,11 +1273,11 @@
|
||||||
"labelPercentage": 0,
|
"labelPercentage": 0,
|
||||||
"route": [
|
"route": [
|
||||||
{
|
{
|
||||||
"x": 4753,
|
"x": 2834,
|
||||||
"y": 1794
|
"y": 1794
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"x": 5172.5,
|
"x": 3083.5,
|
||||||
"y": 1794
|
"y": 1794
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
|
|
@ -1312,11 +1312,11 @@
|
||||||
"labelPercentage": 0,
|
"labelPercentage": 0,
|
||||||
"route": [
|
"route": [
|
||||||
{
|
{
|
||||||
"x": 5172.5,
|
"x": 3083.5,
|
||||||
"y": 1924
|
"y": 1924
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"x": 5608.5,
|
"x": 3333.5,
|
||||||
"y": 1924
|
"y": 1924
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
|
|
@ -1351,11 +1351,11 @@
|
||||||
"labelPercentage": 0,
|
"labelPercentage": 0,
|
||||||
"route": [
|
"route": [
|
||||||
{
|
{
|
||||||
"x": 5608.5,
|
"x": 3333.5,
|
||||||
"y": 2054
|
"y": 2054
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"x": 6034,
|
"x": 3584,
|
||||||
"y": 2054
|
"y": 2054
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
|
|
@ -1390,11 +1390,11 @@
|
||||||
"labelPercentage": 0,
|
"labelPercentage": 0,
|
||||||
"route": [
|
"route": [
|
||||||
{
|
{
|
||||||
"x": 6034,
|
"x": 3584,
|
||||||
"y": 2184
|
"y": 2184
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"x": 6448.5,
|
"x": 3833.5,
|
||||||
"y": 2184
|
"y": 2184
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
|
|
@ -1429,11 +1429,11 @@
|
||||||
"labelPercentage": 0,
|
"labelPercentage": 0,
|
||||||
"route": [
|
"route": [
|
||||||
{
|
{
|
||||||
"x": 6448.5,
|
"x": 3833.5,
|
||||||
"y": 2314
|
"y": 2314
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"x": 6868.5,
|
"x": 4083.5,
|
||||||
"y": 2314
|
"y": 2314
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
|
|
@ -1468,11 +1468,11 @@
|
||||||
"labelPercentage": 0,
|
"labelPercentage": 0,
|
||||||
"route": [
|
"route": [
|
||||||
{
|
{
|
||||||
"x": 6868.5,
|
"x": 4083.5,
|
||||||
"y": 2444
|
"y": 2444
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"x": 7314.5,
|
"x": 4333.5,
|
||||||
"y": 2444
|
"y": 2444
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
|
|
@ -1507,11 +1507,11 @@
|
||||||
"labelPercentage": 0,
|
"labelPercentage": 0,
|
||||||
"route": [
|
"route": [
|
||||||
{
|
{
|
||||||
"x": 7314.5,
|
"x": 4333.5,
|
||||||
"y": 2574
|
"y": 2574
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"x": 7753,
|
"x": 4584,
|
||||||
"y": 2574
|
"y": 2574
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
|
|
@ -1546,11 +1546,11 @@
|
||||||
"labelPercentage": 0,
|
"labelPercentage": 0,
|
||||||
"route": [
|
"route": [
|
||||||
{
|
{
|
||||||
"x": 7753,
|
"x": 4584,
|
||||||
"y": 2704
|
"y": 2704
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"x": 8190,
|
"x": 4834,
|
||||||
"y": 2704
|
"y": 2704
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
|
|
@ -1624,11 +1624,11 @@
|
||||||
"labelPercentage": 0,
|
"labelPercentage": 0,
|
||||||
"route": [
|
"route": [
|
||||||
{
|
{
|
||||||
"x": 485,
|
"x": 334,
|
||||||
"y": 234
|
"y": 234
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"x": 485,
|
"x": 334,
|
||||||
"y": 2834
|
"y": 2834
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
|
|
@ -1663,11 +1663,11 @@
|
||||||
"labelPercentage": 0,
|
"labelPercentage": 0,
|
||||||
"route": [
|
"route": [
|
||||||
{
|
{
|
||||||
"x": 937.5,
|
"x": 583.5,
|
||||||
"y": 234
|
"y": 234
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"x": 937.5,
|
"x": 583.5,
|
||||||
"y": 2834
|
"y": 2834
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
|
|
@ -1702,11 +1702,11 @@
|
||||||
"labelPercentage": 0,
|
"labelPercentage": 0,
|
||||||
"route": [
|
"route": [
|
||||||
{
|
{
|
||||||
"x": 1404.5,
|
"x": 833.5,
|
||||||
"y": 234
|
"y": 234
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"x": 1404.5,
|
"x": 833.5,
|
||||||
"y": 2834
|
"y": 2834
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
|
|
@ -1741,11 +1741,11 @@
|
||||||
"labelPercentage": 0,
|
"labelPercentage": 0,
|
||||||
"route": [
|
"route": [
|
||||||
{
|
{
|
||||||
"x": 1849,
|
"x": 1084,
|
||||||
"y": 234
|
"y": 234
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"x": 1849,
|
"x": 1084,
|
||||||
"y": 2834
|
"y": 2834
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
|
|
@ -1780,11 +1780,11 @@
|
||||||
"labelPercentage": 0,
|
"labelPercentage": 0,
|
||||||
"route": [
|
"route": [
|
||||||
{
|
{
|
||||||
"x": 2279,
|
"x": 1334,
|
||||||
"y": 234
|
"y": 234
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"x": 2279,
|
"x": 1334,
|
||||||
"y": 2834
|
"y": 2834
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
|
|
@ -1819,11 +1819,11 @@
|
||||||
"labelPercentage": 0,
|
"labelPercentage": 0,
|
||||||
"route": [
|
"route": [
|
||||||
{
|
{
|
||||||
"x": 2686,
|
"x": 1584,
|
||||||
"y": 234
|
"y": 234
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"x": 2686,
|
"x": 1584,
|
||||||
"y": 2834
|
"y": 2834
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
|
|
@ -1858,11 +1858,11 @@
|
||||||
"labelPercentage": 0,
|
"labelPercentage": 0,
|
||||||
"route": [
|
"route": [
|
||||||
{
|
{
|
||||||
"x": 3093,
|
"x": 1834,
|
||||||
"y": 234
|
"y": 234
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"x": 3093,
|
"x": 1834,
|
||||||
"y": 2834
|
"y": 2834
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
|
|
@ -1897,11 +1897,11 @@
|
||||||
"labelPercentage": 0,
|
"labelPercentage": 0,
|
||||||
"route": [
|
"route": [
|
||||||
{
|
{
|
||||||
"x": 3516,
|
"x": 2084,
|
||||||
"y": 234
|
"y": 234
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"x": 3516,
|
"x": 2084,
|
||||||
"y": 2834
|
"y": 2834
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
|
|
@ -1936,11 +1936,11 @@
|
||||||
"labelPercentage": 0,
|
"labelPercentage": 0,
|
||||||
"route": [
|
"route": [
|
||||||
{
|
{
|
||||||
"x": 3939,
|
"x": 2334,
|
||||||
"y": 239
|
"y": 239
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"x": 3939,
|
"x": 2334,
|
||||||
"y": 2834
|
"y": 2834
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
|
|
@ -1975,11 +1975,11 @@
|
||||||
"labelPercentage": 0,
|
"labelPercentage": 0,
|
||||||
"route": [
|
"route": [
|
||||||
{
|
{
|
||||||
"x": 4346,
|
"x": 2584,
|
||||||
"y": 234
|
"y": 234
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"x": 4346,
|
"x": 2584,
|
||||||
"y": 2834
|
"y": 2834
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
|
|
@ -2014,11 +2014,11 @@
|
||||||
"labelPercentage": 0,
|
"labelPercentage": 0,
|
||||||
"route": [
|
"route": [
|
||||||
{
|
{
|
||||||
"x": 4753,
|
"x": 2834,
|
||||||
"y": 234
|
"y": 234
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"x": 4753,
|
"x": 2834,
|
||||||
"y": 2834
|
"y": 2834
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
|
|
@ -2053,11 +2053,11 @@
|
||||||
"labelPercentage": 0,
|
"labelPercentage": 0,
|
||||||
"route": [
|
"route": [
|
||||||
{
|
{
|
||||||
"x": 5172.5,
|
"x": 3083.5,
|
||||||
"y": 234
|
"y": 234
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"x": 5172.5,
|
"x": 3083.5,
|
||||||
"y": 2834
|
"y": 2834
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
|
|
@ -2092,11 +2092,11 @@
|
||||||
"labelPercentage": 0,
|
"labelPercentage": 0,
|
||||||
"route": [
|
"route": [
|
||||||
{
|
{
|
||||||
"x": 5608.5,
|
"x": 3333.5,
|
||||||
"y": 234
|
"y": 234
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"x": 5608.5,
|
"x": 3333.5,
|
||||||
"y": 2834
|
"y": 2834
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
|
|
@ -2131,11 +2131,11 @@
|
||||||
"labelPercentage": 0,
|
"labelPercentage": 0,
|
||||||
"route": [
|
"route": [
|
||||||
{
|
{
|
||||||
"x": 6034,
|
"x": 3584,
|
||||||
"y": 239
|
"y": 239
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"x": 6034,
|
"x": 3584,
|
||||||
"y": 2834
|
"y": 2834
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
|
|
@ -2170,11 +2170,11 @@
|
||||||
"labelPercentage": 0,
|
"labelPercentage": 0,
|
||||||
"route": [
|
"route": [
|
||||||
{
|
{
|
||||||
"x": 6448.5,
|
"x": 3833.5,
|
||||||
"y": 234
|
"y": 234
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"x": 6448.5,
|
"x": 3833.5,
|
||||||
"y": 2834
|
"y": 2834
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
|
|
@ -2209,11 +2209,11 @@
|
||||||
"labelPercentage": 0,
|
"labelPercentage": 0,
|
||||||
"route": [
|
"route": [
|
||||||
{
|
{
|
||||||
"x": 6868.5,
|
"x": 4083.5,
|
||||||
"y": 234
|
"y": 234
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"x": 6868.5,
|
"x": 4083.5,
|
||||||
"y": 2834
|
"y": 2834
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
|
|
@ -2248,11 +2248,11 @@
|
||||||
"labelPercentage": 0,
|
"labelPercentage": 0,
|
||||||
"route": [
|
"route": [
|
||||||
{
|
{
|
||||||
"x": 7314.5,
|
"x": 4333.5,
|
||||||
"y": 234
|
"y": 234
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"x": 7314.5,
|
"x": 4333.5,
|
||||||
"y": 2834
|
"y": 2834
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
|
|
@ -2287,11 +2287,11 @@
|
||||||
"labelPercentage": 0,
|
"labelPercentage": 0,
|
||||||
"route": [
|
"route": [
|
||||||
{
|
{
|
||||||
"x": 7753,
|
"x": 4584,
|
||||||
"y": 234
|
"y": 234
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"x": 7753,
|
"x": 4584,
|
||||||
"y": 2834
|
"y": 2834
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
|
|
@ -2326,11 +2326,11 @@
|
||||||
"labelPercentage": 0,
|
"labelPercentage": 0,
|
||||||
"route": [
|
"route": [
|
||||||
{
|
{
|
||||||
"x": 8190,
|
"x": 4834,
|
||||||
"y": 234
|
"y": 234
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"x": 8190,
|
"x": 4834,
|
||||||
"y": 2834
|
"y": 2834
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
|
|
|
||||||
|
Before Width: | Height: | Size: 992 KiB After Width: | Height: | Size: 992 KiB |
80
e2etests/testdata/stable/sequence_diagram_groups/dagre/board.exp.json
generated
vendored
|
|
@ -44,7 +44,7 @@
|
||||||
"id": "b",
|
"id": "b",
|
||||||
"type": "",
|
"type": "",
|
||||||
"pos": {
|
"pos": {
|
||||||
"x": 400,
|
"x": 250,
|
||||||
"y": 52
|
"y": 52
|
||||||
},
|
},
|
||||||
"width": 150,
|
"width": 150,
|
||||||
|
|
@ -83,7 +83,7 @@
|
||||||
"id": "c",
|
"id": "c",
|
||||||
"type": "",
|
"type": "",
|
||||||
"pos": {
|
"pos": {
|
||||||
"x": 800,
|
"x": 500,
|
||||||
"y": 50
|
"y": 50
|
||||||
},
|
},
|
||||||
"width": 150,
|
"width": 150,
|
||||||
|
|
@ -122,7 +122,7 @@
|
||||||
"id": "d",
|
"id": "d",
|
||||||
"type": "",
|
"type": "",
|
||||||
"pos": {
|
"pos": {
|
||||||
"x": 1200,
|
"x": 750,
|
||||||
"y": 52
|
"y": 52
|
||||||
},
|
},
|
||||||
"width": 150,
|
"width": 150,
|
||||||
|
|
@ -164,7 +164,7 @@
|
||||||
"x": 25,
|
"x": 25,
|
||||||
"y": 439
|
"y": 439
|
||||||
},
|
},
|
||||||
"width": 500,
|
"width": 350,
|
||||||
"height": 80,
|
"height": 80,
|
||||||
"opacity": 1,
|
"opacity": 1,
|
||||||
"strokeDash": 0,
|
"strokeDash": 0,
|
||||||
|
|
@ -199,10 +199,10 @@
|
||||||
"id": "group 1",
|
"id": "group 1",
|
||||||
"type": "",
|
"type": "",
|
||||||
"pos": {
|
"pos": {
|
||||||
"x": 425,
|
"x": 275,
|
||||||
"y": 569
|
"y": 569
|
||||||
},
|
},
|
||||||
"width": 500,
|
"width": 350,
|
||||||
"height": 730,
|
"height": 730,
|
||||||
"opacity": 1,
|
"opacity": 1,
|
||||||
"strokeDash": 0,
|
"strokeDash": 0,
|
||||||
|
|
@ -237,10 +237,10 @@
|
||||||
"id": "group 1.nested guy",
|
"id": "group 1.nested guy",
|
||||||
"type": "",
|
"type": "",
|
||||||
"pos": {
|
"pos": {
|
||||||
"x": 425,
|
"x": 275,
|
||||||
"y": 829
|
"y": 829
|
||||||
},
|
},
|
||||||
"width": 500,
|
"width": 350,
|
||||||
"height": 80,
|
"height": 80,
|
||||||
"opacity": 1,
|
"opacity": 1,
|
||||||
"strokeDash": 0,
|
"strokeDash": 0,
|
||||||
|
|
@ -275,10 +275,10 @@
|
||||||
"id": "group b",
|
"id": "group b",
|
||||||
"type": "",
|
"type": "",
|
||||||
"pos": {
|
"pos": {
|
||||||
"x": 425,
|
"x": 275,
|
||||||
"y": 1349
|
"y": 1349
|
||||||
},
|
},
|
||||||
"width": 633,
|
"width": 483,
|
||||||
"height": 466,
|
"height": 466,
|
||||||
"opacity": 1,
|
"opacity": 1,
|
||||||
"strokeDash": 0,
|
"strokeDash": 0,
|
||||||
|
|
@ -313,7 +313,7 @@
|
||||||
"id": "c.what would arnold say",
|
"id": "c.what would arnold say",
|
||||||
"type": "rectangle",
|
"type": "rectangle",
|
||||||
"pos": {
|
"pos": {
|
||||||
"x": 742,
|
"x": 442,
|
||||||
"y": 1519
|
"y": 1519
|
||||||
},
|
},
|
||||||
"width": 266,
|
"width": 266,
|
||||||
|
|
@ -352,7 +352,7 @@
|
||||||
"id": "choo",
|
"id": "choo",
|
||||||
"type": "",
|
"type": "",
|
||||||
"pos": {
|
"pos": {
|
||||||
"x": 1141,
|
"x": 691,
|
||||||
"y": 1865
|
"y": 1865
|
||||||
},
|
},
|
||||||
"width": 268,
|
"width": 268,
|
||||||
|
|
@ -390,7 +390,7 @@
|
||||||
"id": "d.this note",
|
"id": "d.this note",
|
||||||
"type": "rectangle",
|
"type": "rectangle",
|
||||||
"pos": {
|
"pos": {
|
||||||
"x": 1191,
|
"x": 741,
|
||||||
"y": 1905
|
"y": 1905
|
||||||
},
|
},
|
||||||
"width": 168,
|
"width": 168,
|
||||||
|
|
@ -429,7 +429,7 @@
|
||||||
"id": "b.t1",
|
"id": "b.t1",
|
||||||
"type": "rectangle",
|
"type": "rectangle",
|
||||||
"pos": {
|
"pos": {
|
||||||
"x": 469,
|
"x": 319,
|
||||||
"y": 983
|
"y": 983
|
||||||
},
|
},
|
||||||
"width": 12,
|
"width": 12,
|
||||||
|
|
@ -467,7 +467,7 @@
|
||||||
"id": "c.t1",
|
"id": "c.t1",
|
||||||
"type": "rectangle",
|
"type": "rectangle",
|
||||||
"pos": {
|
"pos": {
|
||||||
"x": 869,
|
"x": 569,
|
||||||
"y": 983
|
"y": 983
|
||||||
},
|
},
|
||||||
"width": 12,
|
"width": 12,
|
||||||
|
|
@ -505,7 +505,7 @@
|
||||||
"id": "b.t1.t2",
|
"id": "b.t1.t2",
|
||||||
"type": "rectangle",
|
"type": "rectangle",
|
||||||
"pos": {
|
"pos": {
|
||||||
"x": 465,
|
"x": 315,
|
||||||
"y": 1113
|
"y": 1113
|
||||||
},
|
},
|
||||||
"width": 20,
|
"width": 20,
|
||||||
|
|
@ -571,7 +571,7 @@
|
||||||
"y": 349
|
"y": 349
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"x": 475,
|
"x": 325,
|
||||||
"y": 349
|
"y": 349
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
|
|
@ -610,7 +610,7 @@
|
||||||
"y": 479
|
"y": 479
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"x": 475,
|
"x": 325,
|
||||||
"y": 479
|
"y": 479
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
|
|
@ -645,11 +645,11 @@
|
||||||
"labelPercentage": 0,
|
"labelPercentage": 0,
|
||||||
"route": [
|
"route": [
|
||||||
{
|
{
|
||||||
"x": 475,
|
"x": 325,
|
||||||
"y": 609
|
"y": 609
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"x": 875,
|
"x": 575,
|
||||||
"y": 609
|
"y": 609
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
|
|
@ -684,11 +684,11 @@
|
||||||
"labelPercentage": 0,
|
"labelPercentage": 0,
|
||||||
"route": [
|
"route": [
|
||||||
{
|
{
|
||||||
"x": 875,
|
"x": 575,
|
||||||
"y": 739
|
"y": 739
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"x": 475,
|
"x": 325,
|
||||||
"y": 739
|
"y": 739
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
|
|
@ -723,11 +723,11 @@
|
||||||
"labelPercentage": 0,
|
"labelPercentage": 0,
|
||||||
"route": [
|
"route": [
|
||||||
{
|
{
|
||||||
"x": 875,
|
"x": 575,
|
||||||
"y": 869
|
"y": 869
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"x": 475,
|
"x": 325,
|
||||||
"y": 869
|
"y": 869
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
|
|
@ -762,11 +762,11 @@
|
||||||
"labelPercentage": 0,
|
"labelPercentage": 0,
|
||||||
"route": [
|
"route": [
|
||||||
{
|
{
|
||||||
"x": 481,
|
"x": 331,
|
||||||
"y": 999
|
"y": 999
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"x": 869,
|
"x": 569,
|
||||||
"y": 999
|
"y": 999
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
|
|
@ -801,11 +801,11 @@
|
||||||
"labelPercentage": 0,
|
"labelPercentage": 0,
|
||||||
"route": [
|
"route": [
|
||||||
{
|
{
|
||||||
"x": 485,
|
"x": 335,
|
||||||
"y": 1129
|
"y": 1129
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"x": 869,
|
"x": 569,
|
||||||
"y": 1129
|
"y": 1129
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
|
|
@ -840,11 +840,11 @@
|
||||||
"labelPercentage": 0,
|
"labelPercentage": 0,
|
||||||
"route": [
|
"route": [
|
||||||
{
|
{
|
||||||
"x": 869,
|
"x": 569,
|
||||||
"y": 1259
|
"y": 1259
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"x": 481,
|
"x": 331,
|
||||||
"y": 1259
|
"y": 1259
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
|
|
@ -879,11 +879,11 @@
|
||||||
"labelPercentage": 0,
|
"labelPercentage": 0,
|
||||||
"route": [
|
"route": [
|
||||||
{
|
{
|
||||||
"x": 475,
|
"x": 325,
|
||||||
"y": 1389
|
"y": 1389
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"x": 875,
|
"x": 575,
|
||||||
"y": 1389
|
"y": 1389
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
|
|
@ -918,11 +918,11 @@
|
||||||
"labelPercentage": 0,
|
"labelPercentage": 0,
|
||||||
"route": [
|
"route": [
|
||||||
{
|
{
|
||||||
"x": 875,
|
"x": 575,
|
||||||
"y": 1775
|
"y": 1775
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"x": 475,
|
"x": 325,
|
||||||
"y": 1775
|
"y": 1775
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
|
|
@ -996,11 +996,11 @@
|
||||||
"labelPercentage": 0,
|
"labelPercentage": 0,
|
||||||
"route": [
|
"route": [
|
||||||
{
|
{
|
||||||
"x": 475,
|
"x": 325,
|
||||||
"y": 219
|
"y": 219
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"x": 475,
|
"x": 325,
|
||||||
"y": 2161
|
"y": 2161
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
|
|
@ -1035,11 +1035,11 @@
|
||||||
"labelPercentage": 0,
|
"labelPercentage": 0,
|
||||||
"route": [
|
"route": [
|
||||||
{
|
{
|
||||||
"x": 875,
|
"x": 575,
|
||||||
"y": 219
|
"y": 219
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"x": 875,
|
"x": 575,
|
||||||
"y": 2161
|
"y": 2161
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
|
|
@ -1074,11 +1074,11 @@
|
||||||
"labelPercentage": 0,
|
"labelPercentage": 0,
|
||||||
"route": [
|
"route": [
|
||||||
{
|
{
|
||||||
"x": 1275,
|
"x": 825,
|
||||||
"y": 219
|
"y": 219
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"x": 1275,
|
"x": 825,
|
||||||
"y": 2161
|
"y": 2161
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
|
|
|
||||||
|
Before Width: | Height: | Size: 474 KiB After Width: | Height: | Size: 474 KiB |
80
e2etests/testdata/stable/sequence_diagram_groups/elk/board.exp.json
generated
vendored
|
|
@ -44,7 +44,7 @@
|
||||||
"id": "b",
|
"id": "b",
|
||||||
"type": "",
|
"type": "",
|
||||||
"pos": {
|
"pos": {
|
||||||
"x": 400,
|
"x": 250,
|
||||||
"y": 52
|
"y": 52
|
||||||
},
|
},
|
||||||
"width": 150,
|
"width": 150,
|
||||||
|
|
@ -83,7 +83,7 @@
|
||||||
"id": "c",
|
"id": "c",
|
||||||
"type": "",
|
"type": "",
|
||||||
"pos": {
|
"pos": {
|
||||||
"x": 800,
|
"x": 500,
|
||||||
"y": 50
|
"y": 50
|
||||||
},
|
},
|
||||||
"width": 150,
|
"width": 150,
|
||||||
|
|
@ -122,7 +122,7 @@
|
||||||
"id": "d",
|
"id": "d",
|
||||||
"type": "",
|
"type": "",
|
||||||
"pos": {
|
"pos": {
|
||||||
"x": 1200,
|
"x": 750,
|
||||||
"y": 52
|
"y": 52
|
||||||
},
|
},
|
||||||
"width": 150,
|
"width": 150,
|
||||||
|
|
@ -164,7 +164,7 @@
|
||||||
"x": 25,
|
"x": 25,
|
||||||
"y": 439
|
"y": 439
|
||||||
},
|
},
|
||||||
"width": 500,
|
"width": 350,
|
||||||
"height": 80,
|
"height": 80,
|
||||||
"opacity": 1,
|
"opacity": 1,
|
||||||
"strokeDash": 0,
|
"strokeDash": 0,
|
||||||
|
|
@ -199,10 +199,10 @@
|
||||||
"id": "group 1",
|
"id": "group 1",
|
||||||
"type": "",
|
"type": "",
|
||||||
"pos": {
|
"pos": {
|
||||||
"x": 425,
|
"x": 275,
|
||||||
"y": 569
|
"y": 569
|
||||||
},
|
},
|
||||||
"width": 500,
|
"width": 350,
|
||||||
"height": 730,
|
"height": 730,
|
||||||
"opacity": 1,
|
"opacity": 1,
|
||||||
"strokeDash": 0,
|
"strokeDash": 0,
|
||||||
|
|
@ -237,10 +237,10 @@
|
||||||
"id": "group 1.nested guy",
|
"id": "group 1.nested guy",
|
||||||
"type": "",
|
"type": "",
|
||||||
"pos": {
|
"pos": {
|
||||||
"x": 425,
|
"x": 275,
|
||||||
"y": 829
|
"y": 829
|
||||||
},
|
},
|
||||||
"width": 500,
|
"width": 350,
|
||||||
"height": 80,
|
"height": 80,
|
||||||
"opacity": 1,
|
"opacity": 1,
|
||||||
"strokeDash": 0,
|
"strokeDash": 0,
|
||||||
|
|
@ -275,10 +275,10 @@
|
||||||
"id": "group b",
|
"id": "group b",
|
||||||
"type": "",
|
"type": "",
|
||||||
"pos": {
|
"pos": {
|
||||||
"x": 425,
|
"x": 275,
|
||||||
"y": 1349
|
"y": 1349
|
||||||
},
|
},
|
||||||
"width": 633,
|
"width": 483,
|
||||||
"height": 466,
|
"height": 466,
|
||||||
"opacity": 1,
|
"opacity": 1,
|
||||||
"strokeDash": 0,
|
"strokeDash": 0,
|
||||||
|
|
@ -313,7 +313,7 @@
|
||||||
"id": "c.what would arnold say",
|
"id": "c.what would arnold say",
|
||||||
"type": "rectangle",
|
"type": "rectangle",
|
||||||
"pos": {
|
"pos": {
|
||||||
"x": 742,
|
"x": 442,
|
||||||
"y": 1519
|
"y": 1519
|
||||||
},
|
},
|
||||||
"width": 266,
|
"width": 266,
|
||||||
|
|
@ -352,7 +352,7 @@
|
||||||
"id": "choo",
|
"id": "choo",
|
||||||
"type": "",
|
"type": "",
|
||||||
"pos": {
|
"pos": {
|
||||||
"x": 1141,
|
"x": 691,
|
||||||
"y": 1865
|
"y": 1865
|
||||||
},
|
},
|
||||||
"width": 268,
|
"width": 268,
|
||||||
|
|
@ -390,7 +390,7 @@
|
||||||
"id": "d.this note",
|
"id": "d.this note",
|
||||||
"type": "rectangle",
|
"type": "rectangle",
|
||||||
"pos": {
|
"pos": {
|
||||||
"x": 1191,
|
"x": 741,
|
||||||
"y": 1905
|
"y": 1905
|
||||||
},
|
},
|
||||||
"width": 168,
|
"width": 168,
|
||||||
|
|
@ -429,7 +429,7 @@
|
||||||
"id": "b.t1",
|
"id": "b.t1",
|
||||||
"type": "rectangle",
|
"type": "rectangle",
|
||||||
"pos": {
|
"pos": {
|
||||||
"x": 469,
|
"x": 319,
|
||||||
"y": 983
|
"y": 983
|
||||||
},
|
},
|
||||||
"width": 12,
|
"width": 12,
|
||||||
|
|
@ -467,7 +467,7 @@
|
||||||
"id": "c.t1",
|
"id": "c.t1",
|
||||||
"type": "rectangle",
|
"type": "rectangle",
|
||||||
"pos": {
|
"pos": {
|
||||||
"x": 869,
|
"x": 569,
|
||||||
"y": 983
|
"y": 983
|
||||||
},
|
},
|
||||||
"width": 12,
|
"width": 12,
|
||||||
|
|
@ -505,7 +505,7 @@
|
||||||
"id": "b.t1.t2",
|
"id": "b.t1.t2",
|
||||||
"type": "rectangle",
|
"type": "rectangle",
|
||||||
"pos": {
|
"pos": {
|
||||||
"x": 465,
|
"x": 315,
|
||||||
"y": 1113
|
"y": 1113
|
||||||
},
|
},
|
||||||
"width": 20,
|
"width": 20,
|
||||||
|
|
@ -571,7 +571,7 @@
|
||||||
"y": 349
|
"y": 349
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"x": 475,
|
"x": 325,
|
||||||
"y": 349
|
"y": 349
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
|
|
@ -610,7 +610,7 @@
|
||||||
"y": 479
|
"y": 479
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"x": 475,
|
"x": 325,
|
||||||
"y": 479
|
"y": 479
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
|
|
@ -645,11 +645,11 @@
|
||||||
"labelPercentage": 0,
|
"labelPercentage": 0,
|
||||||
"route": [
|
"route": [
|
||||||
{
|
{
|
||||||
"x": 475,
|
"x": 325,
|
||||||
"y": 609
|
"y": 609
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"x": 875,
|
"x": 575,
|
||||||
"y": 609
|
"y": 609
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
|
|
@ -684,11 +684,11 @@
|
||||||
"labelPercentage": 0,
|
"labelPercentage": 0,
|
||||||
"route": [
|
"route": [
|
||||||
{
|
{
|
||||||
"x": 875,
|
"x": 575,
|
||||||
"y": 739
|
"y": 739
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"x": 475,
|
"x": 325,
|
||||||
"y": 739
|
"y": 739
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
|
|
@ -723,11 +723,11 @@
|
||||||
"labelPercentage": 0,
|
"labelPercentage": 0,
|
||||||
"route": [
|
"route": [
|
||||||
{
|
{
|
||||||
"x": 875,
|
"x": 575,
|
||||||
"y": 869
|
"y": 869
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"x": 475,
|
"x": 325,
|
||||||
"y": 869
|
"y": 869
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
|
|
@ -762,11 +762,11 @@
|
||||||
"labelPercentage": 0,
|
"labelPercentage": 0,
|
||||||
"route": [
|
"route": [
|
||||||
{
|
{
|
||||||
"x": 481,
|
"x": 331,
|
||||||
"y": 999
|
"y": 999
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"x": 869,
|
"x": 569,
|
||||||
"y": 999
|
"y": 999
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
|
|
@ -801,11 +801,11 @@
|
||||||
"labelPercentage": 0,
|
"labelPercentage": 0,
|
||||||
"route": [
|
"route": [
|
||||||
{
|
{
|
||||||
"x": 485,
|
"x": 335,
|
||||||
"y": 1129
|
"y": 1129
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"x": 869,
|
"x": 569,
|
||||||
"y": 1129
|
"y": 1129
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
|
|
@ -840,11 +840,11 @@
|
||||||
"labelPercentage": 0,
|
"labelPercentage": 0,
|
||||||
"route": [
|
"route": [
|
||||||
{
|
{
|
||||||
"x": 869,
|
"x": 569,
|
||||||
"y": 1259
|
"y": 1259
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"x": 481,
|
"x": 331,
|
||||||
"y": 1259
|
"y": 1259
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
|
|
@ -879,11 +879,11 @@
|
||||||
"labelPercentage": 0,
|
"labelPercentage": 0,
|
||||||
"route": [
|
"route": [
|
||||||
{
|
{
|
||||||
"x": 475,
|
"x": 325,
|
||||||
"y": 1389
|
"y": 1389
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"x": 875,
|
"x": 575,
|
||||||
"y": 1389
|
"y": 1389
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
|
|
@ -918,11 +918,11 @@
|
||||||
"labelPercentage": 0,
|
"labelPercentage": 0,
|
||||||
"route": [
|
"route": [
|
||||||
{
|
{
|
||||||
"x": 875,
|
"x": 575,
|
||||||
"y": 1775
|
"y": 1775
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"x": 475,
|
"x": 325,
|
||||||
"y": 1775
|
"y": 1775
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
|
|
@ -996,11 +996,11 @@
|
||||||
"labelPercentage": 0,
|
"labelPercentage": 0,
|
||||||
"route": [
|
"route": [
|
||||||
{
|
{
|
||||||
"x": 475,
|
"x": 325,
|
||||||
"y": 219
|
"y": 219
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"x": 475,
|
"x": 325,
|
||||||
"y": 2161
|
"y": 2161
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
|
|
@ -1035,11 +1035,11 @@
|
||||||
"labelPercentage": 0,
|
"labelPercentage": 0,
|
||||||
"route": [
|
"route": [
|
||||||
{
|
{
|
||||||
"x": 875,
|
"x": 575,
|
||||||
"y": 219
|
"y": 219
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"x": 875,
|
"x": 575,
|
||||||
"y": 2161
|
"y": 2161
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
|
|
@ -1074,11 +1074,11 @@
|
||||||
"labelPercentage": 0,
|
"labelPercentage": 0,
|
||||||
"route": [
|
"route": [
|
||||||
{
|
{
|
||||||
"x": 1275,
|
"x": 825,
|
||||||
"y": 219
|
"y": 219
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"x": 1275,
|
"x": 825,
|
||||||
"y": 2161
|
"y": 2161
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
|
|
|
||||||
|
Before Width: | Height: | Size: 474 KiB After Width: | Height: | Size: 474 KiB |
90
e2etests/testdata/stable/sequence_diagram_nested_span/dagre/board.exp.json
generated
vendored
|
|
@ -82,7 +82,7 @@
|
||||||
"id": "itemResponse",
|
"id": "itemResponse",
|
||||||
"type": "",
|
"type": "",
|
||||||
"pos": {
|
"pos": {
|
||||||
"x": 400,
|
"x": 225,
|
||||||
"y": 64
|
"y": 64
|
||||||
},
|
},
|
||||||
"width": 200,
|
"width": 200,
|
||||||
|
|
@ -121,7 +121,7 @@
|
||||||
"id": "itemResponse.a",
|
"id": "itemResponse.a",
|
||||||
"type": "rectangle",
|
"type": "rectangle",
|
||||||
"pos": {
|
"pos": {
|
||||||
"x": 494,
|
"x": 319,
|
||||||
"y": 304
|
"y": 304
|
||||||
},
|
},
|
||||||
"width": 12,
|
"width": 12,
|
||||||
|
|
@ -159,7 +159,7 @@
|
||||||
"id": "item",
|
"id": "item",
|
||||||
"type": "",
|
"type": "",
|
||||||
"pos": {
|
"pos": {
|
||||||
"x": 850,
|
"x": 500,
|
||||||
"y": 50
|
"y": 50
|
||||||
},
|
},
|
||||||
"width": 150,
|
"width": 150,
|
||||||
|
|
@ -198,7 +198,7 @@
|
||||||
"id": "item.a",
|
"id": "item.a",
|
||||||
"type": "rectangle",
|
"type": "rectangle",
|
||||||
"pos": {
|
"pos": {
|
||||||
"x": 919,
|
"x": 569,
|
||||||
"y": 418
|
"y": 418
|
||||||
},
|
},
|
||||||
"width": 12,
|
"width": 12,
|
||||||
|
|
@ -236,7 +236,7 @@
|
||||||
"id": "item.a.b",
|
"id": "item.a.b",
|
||||||
"type": "rectangle",
|
"type": "rectangle",
|
||||||
"pos": {
|
"pos": {
|
||||||
"x": 915,
|
"x": 565,
|
||||||
"y": 434
|
"y": 434
|
||||||
},
|
},
|
||||||
"width": 20,
|
"width": 20,
|
||||||
|
|
@ -274,7 +274,7 @@
|
||||||
"id": "essayRubric",
|
"id": "essayRubric",
|
||||||
"type": "",
|
"type": "",
|
||||||
"pos": {
|
"pos": {
|
||||||
"x": 1250,
|
"x": 732,
|
||||||
"y": 64
|
"y": 64
|
||||||
},
|
},
|
||||||
"width": 186,
|
"width": 186,
|
||||||
|
|
@ -313,7 +313,7 @@
|
||||||
"id": "essayRubric.a",
|
"id": "essayRubric.a",
|
||||||
"type": "rectangle",
|
"type": "rectangle",
|
||||||
"pos": {
|
"pos": {
|
||||||
"x": 1337,
|
"x": 819,
|
||||||
"y": 532
|
"y": 532
|
||||||
},
|
},
|
||||||
"width": 12,
|
"width": 12,
|
||||||
|
|
@ -351,7 +351,7 @@
|
||||||
"id": "essayRubric.a.b",
|
"id": "essayRubric.a.b",
|
||||||
"type": "rectangle",
|
"type": "rectangle",
|
||||||
"pos": {
|
"pos": {
|
||||||
"x": 1333,
|
"x": 815,
|
||||||
"y": 548
|
"y": 548
|
||||||
},
|
},
|
||||||
"width": 20,
|
"width": 20,
|
||||||
|
|
@ -389,7 +389,7 @@
|
||||||
"id": "essayRubric.a.b.c",
|
"id": "essayRubric.a.b.c",
|
||||||
"type": "rectangle",
|
"type": "rectangle",
|
||||||
"pos": {
|
"pos": {
|
||||||
"x": 1329,
|
"x": 811,
|
||||||
"y": 564
|
"y": 564
|
||||||
},
|
},
|
||||||
"width": 28,
|
"width": 28,
|
||||||
|
|
@ -427,7 +427,7 @@
|
||||||
"id": "concept",
|
"id": "concept",
|
||||||
"type": "",
|
"type": "",
|
||||||
"pos": {
|
"pos": {
|
||||||
"x": 1686,
|
"x": 995,
|
||||||
"y": 64
|
"y": 64
|
||||||
},
|
},
|
||||||
"width": 160,
|
"width": 160,
|
||||||
|
|
@ -466,7 +466,7 @@
|
||||||
"id": "concept.a",
|
"id": "concept.a",
|
||||||
"type": "rectangle",
|
"type": "rectangle",
|
||||||
"pos": {
|
"pos": {
|
||||||
"x": 1760,
|
"x": 1069,
|
||||||
"y": 646
|
"y": 646
|
||||||
},
|
},
|
||||||
"width": 12,
|
"width": 12,
|
||||||
|
|
@ -504,7 +504,7 @@
|
||||||
"id": "concept.a.b",
|
"id": "concept.a.b",
|
||||||
"type": "rectangle",
|
"type": "rectangle",
|
||||||
"pos": {
|
"pos": {
|
||||||
"x": 1756,
|
"x": 1065,
|
||||||
"y": 662
|
"y": 662
|
||||||
},
|
},
|
||||||
"width": 20,
|
"width": 20,
|
||||||
|
|
@ -542,7 +542,7 @@
|
||||||
"id": "concept.a.b.c",
|
"id": "concept.a.b.c",
|
||||||
"type": "rectangle",
|
"type": "rectangle",
|
||||||
"pos": {
|
"pos": {
|
||||||
"x": 1752,
|
"x": 1061,
|
||||||
"y": 678
|
"y": 678
|
||||||
},
|
},
|
||||||
"width": 28,
|
"width": 28,
|
||||||
|
|
@ -580,7 +580,7 @@
|
||||||
"id": "concept.a.b.c.d",
|
"id": "concept.a.b.c.d",
|
||||||
"type": "rectangle",
|
"type": "rectangle",
|
||||||
"pos": {
|
"pos": {
|
||||||
"x": 1748,
|
"x": 1057,
|
||||||
"y": 694
|
"y": 694
|
||||||
},
|
},
|
||||||
"width": 36,
|
"width": 36,
|
||||||
|
|
@ -618,7 +618,7 @@
|
||||||
"id": "itemOutcome",
|
"id": "itemOutcome",
|
||||||
"type": "",
|
"type": "",
|
||||||
"pos": {
|
"pos": {
|
||||||
"x": 2096,
|
"x": 1227,
|
||||||
"y": 64
|
"y": 64
|
||||||
},
|
},
|
||||||
"width": 197,
|
"width": 197,
|
||||||
|
|
@ -657,7 +657,7 @@
|
||||||
"id": "itemOutcome.a",
|
"id": "itemOutcome.a",
|
||||||
"type": "rectangle",
|
"type": "rectangle",
|
||||||
"pos": {
|
"pos": {
|
||||||
"x": 2188,
|
"x": 1319,
|
||||||
"y": 890
|
"y": 890
|
||||||
},
|
},
|
||||||
"width": 12,
|
"width": 12,
|
||||||
|
|
@ -695,7 +695,7 @@
|
||||||
"id": "itemOutcome.a.b",
|
"id": "itemOutcome.a.b",
|
||||||
"type": "rectangle",
|
"type": "rectangle",
|
||||||
"pos": {
|
"pos": {
|
||||||
"x": 2184,
|
"x": 1315,
|
||||||
"y": 906
|
"y": 906
|
||||||
},
|
},
|
||||||
"width": 20,
|
"width": 20,
|
||||||
|
|
@ -733,7 +733,7 @@
|
||||||
"id": "itemOutcome.a.b.c",
|
"id": "itemOutcome.a.b.c",
|
||||||
"type": "rectangle",
|
"type": "rectangle",
|
||||||
"pos": {
|
"pos": {
|
||||||
"x": 2180,
|
"x": 1311,
|
||||||
"y": 922
|
"y": 922
|
||||||
},
|
},
|
||||||
"width": 28,
|
"width": 28,
|
||||||
|
|
@ -771,7 +771,7 @@
|
||||||
"id": "itemOutcome.a.b.c.d",
|
"id": "itemOutcome.a.b.c.d",
|
||||||
"type": "rectangle",
|
"type": "rectangle",
|
||||||
"pos": {
|
"pos": {
|
||||||
"x": 2176,
|
"x": 1307,
|
||||||
"y": 938
|
"y": 938
|
||||||
},
|
},
|
||||||
"width": 36,
|
"width": 36,
|
||||||
|
|
@ -809,7 +809,7 @@
|
||||||
"id": "itemOutcome.a.b.c.d.e",
|
"id": "itemOutcome.a.b.c.d.e",
|
||||||
"type": "rectangle",
|
"type": "rectangle",
|
||||||
"pos": {
|
"pos": {
|
||||||
"x": 2172,
|
"x": 1303,
|
||||||
"y": 954
|
"y": 954
|
||||||
},
|
},
|
||||||
"width": 44,
|
"width": 44,
|
||||||
|
|
@ -847,7 +847,7 @@
|
||||||
"id": "itemResponse.c",
|
"id": "itemResponse.c",
|
||||||
"type": "rectangle",
|
"type": "rectangle",
|
||||||
"pos": {
|
"pos": {
|
||||||
"x": 494,
|
"x": 319,
|
||||||
"y": 1344
|
"y": 1344
|
||||||
},
|
},
|
||||||
"width": 12,
|
"width": 12,
|
||||||
|
|
@ -913,7 +913,7 @@
|
||||||
"y": 320
|
"y": 320
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"x": 494,
|
"x": 319,
|
||||||
"y": 320
|
"y": 320
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
|
|
@ -948,11 +948,11 @@
|
||||||
"labelPercentage": 0,
|
"labelPercentage": 0,
|
||||||
"route": [
|
"route": [
|
||||||
{
|
{
|
||||||
"x": 506,
|
"x": 331,
|
||||||
"y": 450
|
"y": 450
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"x": 915,
|
"x": 565,
|
||||||
"y": 450
|
"y": 450
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
|
|
@ -987,11 +987,11 @@
|
||||||
"labelPercentage": 0,
|
"labelPercentage": 0,
|
||||||
"route": [
|
"route": [
|
||||||
{
|
{
|
||||||
"x": 935,
|
"x": 585,
|
||||||
"y": 580
|
"y": 580
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"x": 1329,
|
"x": 811,
|
||||||
"y": 580
|
"y": 580
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
|
|
@ -1026,11 +1026,11 @@
|
||||||
"labelPercentage": 0,
|
"labelPercentage": 0,
|
||||||
"route": [
|
"route": [
|
||||||
{
|
{
|
||||||
"x": 1357,
|
"x": 839,
|
||||||
"y": 710
|
"y": 710
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"x": 1748,
|
"x": 1057,
|
||||||
"y": 710
|
"y": 710
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
|
|
@ -1065,11 +1065,11 @@
|
||||||
"labelPercentage": 0,
|
"labelPercentage": 0,
|
||||||
"route": [
|
"route": [
|
||||||
{
|
{
|
||||||
"x": 931,
|
"x": 581,
|
||||||
"y": 840
|
"y": 840
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"x": 1333,
|
"x": 815,
|
||||||
"y": 840
|
"y": 840
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
|
|
@ -1104,11 +1104,11 @@
|
||||||
"labelPercentage": 0,
|
"labelPercentage": 0,
|
||||||
"route": [
|
"route": [
|
||||||
{
|
{
|
||||||
"x": 1784,
|
"x": 1093,
|
||||||
"y": 970
|
"y": 970
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"x": 2172.5,
|
"x": 1303.5,
|
||||||
"y": 970
|
"y": 970
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
|
|
@ -1147,7 +1147,7 @@
|
||||||
"y": 1100
|
"y": 1100
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"x": 919,
|
"x": 569,
|
||||||
"y": 1100
|
"y": 1100
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
|
|
@ -1182,7 +1182,7 @@
|
||||||
"labelPercentage": 0,
|
"labelPercentage": 0,
|
||||||
"route": [
|
"route": [
|
||||||
{
|
{
|
||||||
"x": 2172.5,
|
"x": 1303.5,
|
||||||
"y": 1230
|
"y": 1230
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
|
|
@ -1225,7 +1225,7 @@
|
||||||
"y": 1360
|
"y": 1360
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"x": 494,
|
"x": 319,
|
||||||
"y": 1360
|
"y": 1360
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
|
|
@ -1299,11 +1299,11 @@
|
||||||
"labelPercentage": 0,
|
"labelPercentage": 0,
|
||||||
"route": [
|
"route": [
|
||||||
{
|
{
|
||||||
"x": 500,
|
"x": 325,
|
||||||
"y": 190
|
"y": 190
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"x": 500,
|
"x": 325,
|
||||||
"y": 1490
|
"y": 1490
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
|
|
@ -1338,11 +1338,11 @@
|
||||||
"labelPercentage": 0,
|
"labelPercentage": 0,
|
||||||
"route": [
|
"route": [
|
||||||
{
|
{
|
||||||
"x": 925,
|
"x": 575,
|
||||||
"y": 190
|
"y": 190
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"x": 925,
|
"x": 575,
|
||||||
"y": 1490
|
"y": 1490
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
|
|
@ -1377,11 +1377,11 @@
|
||||||
"labelPercentage": 0,
|
"labelPercentage": 0,
|
||||||
"route": [
|
"route": [
|
||||||
{
|
{
|
||||||
"x": 1343,
|
"x": 825,
|
||||||
"y": 190
|
"y": 190
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"x": 1343,
|
"x": 825,
|
||||||
"y": 1490
|
"y": 1490
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
|
|
@ -1416,11 +1416,11 @@
|
||||||
"labelPercentage": 0,
|
"labelPercentage": 0,
|
||||||
"route": [
|
"route": [
|
||||||
{
|
{
|
||||||
"x": 1766,
|
"x": 1075,
|
||||||
"y": 190
|
"y": 190
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"x": 1766,
|
"x": 1075,
|
||||||
"y": 1490
|
"y": 1490
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
|
|
@ -1455,11 +1455,11 @@
|
||||||
"labelPercentage": 0,
|
"labelPercentage": 0,
|
||||||
"route": [
|
"route": [
|
||||||
{
|
{
|
||||||
"x": 2194.5,
|
"x": 1325.5,
|
||||||
"y": 190
|
"y": 190
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"x": 2194.5,
|
"x": 1325.5,
|
||||||
"y": 1490
|
"y": 1490
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
|
|
|
||||||
|
Before Width: | Height: | Size: 332 KiB After Width: | Height: | Size: 332 KiB |
90
e2etests/testdata/stable/sequence_diagram_nested_span/elk/board.exp.json
generated
vendored
|
|
@ -82,7 +82,7 @@
|
||||||
"id": "itemResponse",
|
"id": "itemResponse",
|
||||||
"type": "",
|
"type": "",
|
||||||
"pos": {
|
"pos": {
|
||||||
"x": 400,
|
"x": 225,
|
||||||
"y": 64
|
"y": 64
|
||||||
},
|
},
|
||||||
"width": 200,
|
"width": 200,
|
||||||
|
|
@ -121,7 +121,7 @@
|
||||||
"id": "itemResponse.a",
|
"id": "itemResponse.a",
|
||||||
"type": "rectangle",
|
"type": "rectangle",
|
||||||
"pos": {
|
"pos": {
|
||||||
"x": 494,
|
"x": 319,
|
||||||
"y": 304
|
"y": 304
|
||||||
},
|
},
|
||||||
"width": 12,
|
"width": 12,
|
||||||
|
|
@ -159,7 +159,7 @@
|
||||||
"id": "item",
|
"id": "item",
|
||||||
"type": "",
|
"type": "",
|
||||||
"pos": {
|
"pos": {
|
||||||
"x": 850,
|
"x": 500,
|
||||||
"y": 50
|
"y": 50
|
||||||
},
|
},
|
||||||
"width": 150,
|
"width": 150,
|
||||||
|
|
@ -198,7 +198,7 @@
|
||||||
"id": "item.a",
|
"id": "item.a",
|
||||||
"type": "rectangle",
|
"type": "rectangle",
|
||||||
"pos": {
|
"pos": {
|
||||||
"x": 919,
|
"x": 569,
|
||||||
"y": 418
|
"y": 418
|
||||||
},
|
},
|
||||||
"width": 12,
|
"width": 12,
|
||||||
|
|
@ -236,7 +236,7 @@
|
||||||
"id": "item.a.b",
|
"id": "item.a.b",
|
||||||
"type": "rectangle",
|
"type": "rectangle",
|
||||||
"pos": {
|
"pos": {
|
||||||
"x": 915,
|
"x": 565,
|
||||||
"y": 434
|
"y": 434
|
||||||
},
|
},
|
||||||
"width": 20,
|
"width": 20,
|
||||||
|
|
@ -274,7 +274,7 @@
|
||||||
"id": "essayRubric",
|
"id": "essayRubric",
|
||||||
"type": "",
|
"type": "",
|
||||||
"pos": {
|
"pos": {
|
||||||
"x": 1250,
|
"x": 732,
|
||||||
"y": 64
|
"y": 64
|
||||||
},
|
},
|
||||||
"width": 186,
|
"width": 186,
|
||||||
|
|
@ -313,7 +313,7 @@
|
||||||
"id": "essayRubric.a",
|
"id": "essayRubric.a",
|
||||||
"type": "rectangle",
|
"type": "rectangle",
|
||||||
"pos": {
|
"pos": {
|
||||||
"x": 1337,
|
"x": 819,
|
||||||
"y": 532
|
"y": 532
|
||||||
},
|
},
|
||||||
"width": 12,
|
"width": 12,
|
||||||
|
|
@ -351,7 +351,7 @@
|
||||||
"id": "essayRubric.a.b",
|
"id": "essayRubric.a.b",
|
||||||
"type": "rectangle",
|
"type": "rectangle",
|
||||||
"pos": {
|
"pos": {
|
||||||
"x": 1333,
|
"x": 815,
|
||||||
"y": 548
|
"y": 548
|
||||||
},
|
},
|
||||||
"width": 20,
|
"width": 20,
|
||||||
|
|
@ -389,7 +389,7 @@
|
||||||
"id": "essayRubric.a.b.c",
|
"id": "essayRubric.a.b.c",
|
||||||
"type": "rectangle",
|
"type": "rectangle",
|
||||||
"pos": {
|
"pos": {
|
||||||
"x": 1329,
|
"x": 811,
|
||||||
"y": 564
|
"y": 564
|
||||||
},
|
},
|
||||||
"width": 28,
|
"width": 28,
|
||||||
|
|
@ -427,7 +427,7 @@
|
||||||
"id": "concept",
|
"id": "concept",
|
||||||
"type": "",
|
"type": "",
|
||||||
"pos": {
|
"pos": {
|
||||||
"x": 1686,
|
"x": 995,
|
||||||
"y": 64
|
"y": 64
|
||||||
},
|
},
|
||||||
"width": 160,
|
"width": 160,
|
||||||
|
|
@ -466,7 +466,7 @@
|
||||||
"id": "concept.a",
|
"id": "concept.a",
|
||||||
"type": "rectangle",
|
"type": "rectangle",
|
||||||
"pos": {
|
"pos": {
|
||||||
"x": 1760,
|
"x": 1069,
|
||||||
"y": 646
|
"y": 646
|
||||||
},
|
},
|
||||||
"width": 12,
|
"width": 12,
|
||||||
|
|
@ -504,7 +504,7 @@
|
||||||
"id": "concept.a.b",
|
"id": "concept.a.b",
|
||||||
"type": "rectangle",
|
"type": "rectangle",
|
||||||
"pos": {
|
"pos": {
|
||||||
"x": 1756,
|
"x": 1065,
|
||||||
"y": 662
|
"y": 662
|
||||||
},
|
},
|
||||||
"width": 20,
|
"width": 20,
|
||||||
|
|
@ -542,7 +542,7 @@
|
||||||
"id": "concept.a.b.c",
|
"id": "concept.a.b.c",
|
||||||
"type": "rectangle",
|
"type": "rectangle",
|
||||||
"pos": {
|
"pos": {
|
||||||
"x": 1752,
|
"x": 1061,
|
||||||
"y": 678
|
"y": 678
|
||||||
},
|
},
|
||||||
"width": 28,
|
"width": 28,
|
||||||
|
|
@ -580,7 +580,7 @@
|
||||||
"id": "concept.a.b.c.d",
|
"id": "concept.a.b.c.d",
|
||||||
"type": "rectangle",
|
"type": "rectangle",
|
||||||
"pos": {
|
"pos": {
|
||||||
"x": 1748,
|
"x": 1057,
|
||||||
"y": 694
|
"y": 694
|
||||||
},
|
},
|
||||||
"width": 36,
|
"width": 36,
|
||||||
|
|
@ -618,7 +618,7 @@
|
||||||
"id": "itemOutcome",
|
"id": "itemOutcome",
|
||||||
"type": "",
|
"type": "",
|
||||||
"pos": {
|
"pos": {
|
||||||
"x": 2096,
|
"x": 1227,
|
||||||
"y": 64
|
"y": 64
|
||||||
},
|
},
|
||||||
"width": 197,
|
"width": 197,
|
||||||
|
|
@ -657,7 +657,7 @@
|
||||||
"id": "itemOutcome.a",
|
"id": "itemOutcome.a",
|
||||||
"type": "rectangle",
|
"type": "rectangle",
|
||||||
"pos": {
|
"pos": {
|
||||||
"x": 2188,
|
"x": 1319,
|
||||||
"y": 890
|
"y": 890
|
||||||
},
|
},
|
||||||
"width": 12,
|
"width": 12,
|
||||||
|
|
@ -695,7 +695,7 @@
|
||||||
"id": "itemOutcome.a.b",
|
"id": "itemOutcome.a.b",
|
||||||
"type": "rectangle",
|
"type": "rectangle",
|
||||||
"pos": {
|
"pos": {
|
||||||
"x": 2184,
|
"x": 1315,
|
||||||
"y": 906
|
"y": 906
|
||||||
},
|
},
|
||||||
"width": 20,
|
"width": 20,
|
||||||
|
|
@ -733,7 +733,7 @@
|
||||||
"id": "itemOutcome.a.b.c",
|
"id": "itemOutcome.a.b.c",
|
||||||
"type": "rectangle",
|
"type": "rectangle",
|
||||||
"pos": {
|
"pos": {
|
||||||
"x": 2180,
|
"x": 1311,
|
||||||
"y": 922
|
"y": 922
|
||||||
},
|
},
|
||||||
"width": 28,
|
"width": 28,
|
||||||
|
|
@ -771,7 +771,7 @@
|
||||||
"id": "itemOutcome.a.b.c.d",
|
"id": "itemOutcome.a.b.c.d",
|
||||||
"type": "rectangle",
|
"type": "rectangle",
|
||||||
"pos": {
|
"pos": {
|
||||||
"x": 2176,
|
"x": 1307,
|
||||||
"y": 938
|
"y": 938
|
||||||
},
|
},
|
||||||
"width": 36,
|
"width": 36,
|
||||||
|
|
@ -809,7 +809,7 @@
|
||||||
"id": "itemOutcome.a.b.c.d.e",
|
"id": "itemOutcome.a.b.c.d.e",
|
||||||
"type": "rectangle",
|
"type": "rectangle",
|
||||||
"pos": {
|
"pos": {
|
||||||
"x": 2172,
|
"x": 1303,
|
||||||
"y": 954
|
"y": 954
|
||||||
},
|
},
|
||||||
"width": 44,
|
"width": 44,
|
||||||
|
|
@ -847,7 +847,7 @@
|
||||||
"id": "itemResponse.c",
|
"id": "itemResponse.c",
|
||||||
"type": "rectangle",
|
"type": "rectangle",
|
||||||
"pos": {
|
"pos": {
|
||||||
"x": 494,
|
"x": 319,
|
||||||
"y": 1344
|
"y": 1344
|
||||||
},
|
},
|
||||||
"width": 12,
|
"width": 12,
|
||||||
|
|
@ -913,7 +913,7 @@
|
||||||
"y": 320
|
"y": 320
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"x": 494,
|
"x": 319,
|
||||||
"y": 320
|
"y": 320
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
|
|
@ -948,11 +948,11 @@
|
||||||
"labelPercentage": 0,
|
"labelPercentage": 0,
|
||||||
"route": [
|
"route": [
|
||||||
{
|
{
|
||||||
"x": 506,
|
"x": 331,
|
||||||
"y": 450
|
"y": 450
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"x": 915,
|
"x": 565,
|
||||||
"y": 450
|
"y": 450
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
|
|
@ -987,11 +987,11 @@
|
||||||
"labelPercentage": 0,
|
"labelPercentage": 0,
|
||||||
"route": [
|
"route": [
|
||||||
{
|
{
|
||||||
"x": 935,
|
"x": 585,
|
||||||
"y": 580
|
"y": 580
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"x": 1329,
|
"x": 811,
|
||||||
"y": 580
|
"y": 580
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
|
|
@ -1026,11 +1026,11 @@
|
||||||
"labelPercentage": 0,
|
"labelPercentage": 0,
|
||||||
"route": [
|
"route": [
|
||||||
{
|
{
|
||||||
"x": 1357,
|
"x": 839,
|
||||||
"y": 710
|
"y": 710
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"x": 1748,
|
"x": 1057,
|
||||||
"y": 710
|
"y": 710
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
|
|
@ -1065,11 +1065,11 @@
|
||||||
"labelPercentage": 0,
|
"labelPercentage": 0,
|
||||||
"route": [
|
"route": [
|
||||||
{
|
{
|
||||||
"x": 931,
|
"x": 581,
|
||||||
"y": 840
|
"y": 840
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"x": 1333,
|
"x": 815,
|
||||||
"y": 840
|
"y": 840
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
|
|
@ -1104,11 +1104,11 @@
|
||||||
"labelPercentage": 0,
|
"labelPercentage": 0,
|
||||||
"route": [
|
"route": [
|
||||||
{
|
{
|
||||||
"x": 1784,
|
"x": 1093,
|
||||||
"y": 970
|
"y": 970
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"x": 2172.5,
|
"x": 1303.5,
|
||||||
"y": 970
|
"y": 970
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
|
|
@ -1147,7 +1147,7 @@
|
||||||
"y": 1100
|
"y": 1100
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"x": 919,
|
"x": 569,
|
||||||
"y": 1100
|
"y": 1100
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
|
|
@ -1182,7 +1182,7 @@
|
||||||
"labelPercentage": 0,
|
"labelPercentage": 0,
|
||||||
"route": [
|
"route": [
|
||||||
{
|
{
|
||||||
"x": 2172.5,
|
"x": 1303.5,
|
||||||
"y": 1230
|
"y": 1230
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
|
|
@ -1225,7 +1225,7 @@
|
||||||
"y": 1360
|
"y": 1360
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"x": 494,
|
"x": 319,
|
||||||
"y": 1360
|
"y": 1360
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
|
|
@ -1299,11 +1299,11 @@
|
||||||
"labelPercentage": 0,
|
"labelPercentage": 0,
|
||||||
"route": [
|
"route": [
|
||||||
{
|
{
|
||||||
"x": 500,
|
"x": 325,
|
||||||
"y": 190
|
"y": 190
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"x": 500,
|
"x": 325,
|
||||||
"y": 1490
|
"y": 1490
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
|
|
@ -1338,11 +1338,11 @@
|
||||||
"labelPercentage": 0,
|
"labelPercentage": 0,
|
||||||
"route": [
|
"route": [
|
||||||
{
|
{
|
||||||
"x": 925,
|
"x": 575,
|
||||||
"y": 190
|
"y": 190
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"x": 925,
|
"x": 575,
|
||||||
"y": 1490
|
"y": 1490
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
|
|
@ -1377,11 +1377,11 @@
|
||||||
"labelPercentage": 0,
|
"labelPercentage": 0,
|
||||||
"route": [
|
"route": [
|
||||||
{
|
{
|
||||||
"x": 1343,
|
"x": 825,
|
||||||
"y": 190
|
"y": 190
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"x": 1343,
|
"x": 825,
|
||||||
"y": 1490
|
"y": 1490
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
|
|
@ -1416,11 +1416,11 @@
|
||||||
"labelPercentage": 0,
|
"labelPercentage": 0,
|
||||||
"route": [
|
"route": [
|
||||||
{
|
{
|
||||||
"x": 1766,
|
"x": 1075,
|
||||||
"y": 190
|
"y": 190
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"x": 1766,
|
"x": 1075,
|
||||||
"y": 1490
|
"y": 1490
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
|
|
@ -1455,11 +1455,11 @@
|
||||||
"labelPercentage": 0,
|
"labelPercentage": 0,
|
||||||
"route": [
|
"route": [
|
||||||
{
|
{
|
||||||
"x": 2194.5,
|
"x": 1325.5,
|
||||||
"y": 190
|
"y": 190
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"x": 2194.5,
|
"x": 1325.5,
|
||||||
"y": 1490
|
"y": 1490
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
|
|
|
||||||
|
Before Width: | Height: | Size: 332 KiB After Width: | Height: | Size: 332 KiB |
32
e2etests/testdata/stable/sequence_diagram_note/dagre/board.exp.json
generated
vendored
|
|
@ -44,7 +44,7 @@
|
||||||
"id": "b",
|
"id": "b",
|
||||||
"type": "",
|
"type": "",
|
||||||
"pos": {
|
"pos": {
|
||||||
"x": 400,
|
"x": 250,
|
||||||
"y": 52
|
"y": 52
|
||||||
},
|
},
|
||||||
"width": 150,
|
"width": 150,
|
||||||
|
|
@ -83,7 +83,7 @@
|
||||||
"id": "c",
|
"id": "c",
|
||||||
"type": "",
|
"type": "",
|
||||||
"pos": {
|
"pos": {
|
||||||
"x": 800,
|
"x": 500,
|
||||||
"y": 52
|
"y": 52
|
||||||
},
|
},
|
||||||
"width": 150,
|
"width": 150,
|
||||||
|
|
@ -122,7 +122,7 @@
|
||||||
"id": "d",
|
"id": "d",
|
||||||
"type": "",
|
"type": "",
|
||||||
"pos": {
|
"pos": {
|
||||||
"x": 1200,
|
"x": 750,
|
||||||
"y": 52
|
"y": 52
|
||||||
},
|
},
|
||||||
"width": 150,
|
"width": 150,
|
||||||
|
|
@ -239,7 +239,7 @@
|
||||||
"id": "b.\"Some one who believes imaginary things\\n appear right before your i's.\"",
|
"id": "b.\"Some one who believes imaginary things\\n appear right before your i's.\"",
|
||||||
"type": "rectangle",
|
"type": "rectangle",
|
||||||
"pos": {
|
"pos": {
|
||||||
"x": 278,
|
"x": 128,
|
||||||
"y": 1121
|
"y": 1121
|
||||||
},
|
},
|
||||||
"width": 393,
|
"width": 393,
|
||||||
|
|
@ -278,7 +278,7 @@
|
||||||
"id": "d.The earth is like a tiny grain of sand, only much, much heavier",
|
"id": "d.The earth is like a tiny grain of sand, only much, much heavier",
|
||||||
"type": "rectangle",
|
"type": "rectangle",
|
||||||
"pos": {
|
"pos": {
|
||||||
"x": 1004,
|
"x": 554,
|
||||||
"y": 1523
|
"y": 1523
|
||||||
},
|
},
|
||||||
"width": 541,
|
"width": 541,
|
||||||
|
|
@ -345,7 +345,7 @@
|
||||||
"y": 349
|
"y": 349
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"x": 475,
|
"x": 325,
|
||||||
"y": 349
|
"y": 349
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
|
|
@ -380,11 +380,11 @@
|
||||||
"labelPercentage": 0,
|
"labelPercentage": 0,
|
||||||
"route": [
|
"route": [
|
||||||
{
|
{
|
||||||
"x": 475,
|
"x": 325,
|
||||||
"y": 991
|
"y": 991
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"x": 875,
|
"x": 575,
|
||||||
"y": 991
|
"y": 991
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
|
|
@ -419,11 +419,11 @@
|
||||||
"labelPercentage": 0,
|
"labelPercentage": 0,
|
||||||
"route": [
|
"route": [
|
||||||
{
|
{
|
||||||
"x": 875,
|
"x": 575,
|
||||||
"y": 1393
|
"y": 1393
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"x": 475,
|
"x": 325,
|
||||||
"y": 1393
|
"y": 1393
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
|
|
@ -497,11 +497,11 @@
|
||||||
"labelPercentage": 0,
|
"labelPercentage": 0,
|
||||||
"route": [
|
"route": [
|
||||||
{
|
{
|
||||||
"x": 475,
|
"x": 325,
|
||||||
"y": 219
|
"y": 219
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"x": 475,
|
"x": 325,
|
||||||
"y": 1779
|
"y": 1779
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
|
|
@ -536,11 +536,11 @@
|
||||||
"labelPercentage": 0,
|
"labelPercentage": 0,
|
||||||
"route": [
|
"route": [
|
||||||
{
|
{
|
||||||
"x": 875,
|
"x": 575,
|
||||||
"y": 219
|
"y": 219
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"x": 875,
|
"x": 575,
|
||||||
"y": 1779
|
"y": 1779
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
|
|
@ -575,11 +575,11 @@
|
||||||
"labelPercentage": 0,
|
"labelPercentage": 0,
|
||||||
"route": [
|
"route": [
|
||||||
{
|
{
|
||||||
"x": 1275,
|
"x": 825,
|
||||||
"y": 219
|
"y": 219
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"x": 1275,
|
"x": 825,
|
||||||
"y": 1779
|
"y": 1779
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
|
|
|
||||||
|
|
@ -2,7 +2,7 @@
|
||||||
<svg
|
<svg
|
||||||
style="background: white;"
|
style="background: white;"
|
||||||
xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink"
|
xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink"
|
||||||
width="1795" height="1929" viewBox="-150 -50 1795 1929"><style type="text/css">
|
width="1345" height="1929" viewBox="-150 -50 1345 1929"><style type="text/css">
|
||||||
<![CDATA[
|
<![CDATA[
|
||||||
.shape {
|
.shape {
|
||||||
shape-rendering: geometricPrecision;
|
shape-rendering: geometricPrecision;
|
||||||
|
|
@ -14,9 +14,9 @@ width="1795" height="1929" viewBox="-150 -50 1795 1929"><style type="text/css">
|
||||||
}
|
}
|
||||||
|
|
||||||
]]>
|
]]>
|
||||||
</style><g id="a"><g class="shape" ><rect x="0" y="50" width="150" height="169" style="fill:#E3E9FD;stroke:#0D32B2;opacity:1.000000;stroke-width:2;" /></g><text class="text-bold" x="75.000000" y="137.500000" style="text-anchor:middle;font-size:16px;fill:#0A0F25">a</text></g><g id="b"><g class="shape" ><rect x="400" y="52" width="150" height="167" style="fill:#E3E9FD;stroke:#0D32B2;opacity:1.000000;stroke-width:2;" /></g><text class="text-bold" x="475.000000" y="138.500000" style="text-anchor:middle;font-size:16px;fill:#0A0F25">b</text></g><g id="c"><g class="shape" ><rect x="800" y="52" width="150" height="167" style="fill:#F7F8FE;stroke:#0D32B2;opacity:1.000000;stroke-width:2;" /></g><text class="text-bold" x="875.000000" y="138.500000" style="text-anchor:middle;font-size:16px;fill:#0A0F25">c</text></g><g id="d"><g class="shape" ><rect x="1200" y="52" width="150" height="167" style="fill:#E3E9FD;stroke:#0D32B2;opacity:1.000000;stroke-width:2;" /></g><text class="text-bold" x="1275.000000" y="138.500000" style="text-anchor:middle;font-size:16px;fill:#0A0F25">d</text></g><g id="(a -- )[0]"><path d="M 75.000000 221.000000 L 75.000000 1778.000000" class="connection" style="fill:none;stroke:#0D32B2;opacity:1.000000;stroke-width:2;stroke-dasharray:12.000000,11.838767;" mask="url(#labels)"/></g><g id="(b -- )[0]"><path d="M 475.000000 221.000000 L 475.000000 1778.000000" class="connection" style="fill:none;stroke:#0D32B2;opacity:1.000000;stroke-width:2;stroke-dasharray:12.000000,11.838767;" mask="url(#labels)"/></g><g id="(c -- )[0]"><path d="M 875.000000 221.000000 L 875.000000 1778.000000" class="connection" style="fill:none;stroke:#0D32B2;opacity:1.000000;stroke-width:2;stroke-dasharray:12.000000,11.838767;" mask="url(#labels)"/></g><g id="(d -- )[0]"><path d="M 1275.000000 221.000000 L 1275.000000 1778.000000" class="connection" style="fill:none;stroke:#0D32B2;opacity:1.000000;stroke-width:2;stroke-dasharray:12.000000,11.838767;" mask="url(#labels)"/></g><g id="a.explanation"><g class="shape" ><rect x="-20" y="479" width="190" height="126" style="fill:#EDF0FD;stroke:#0D32B2;opacity:1.000000;stroke-width:2;" /></g><text class="text-bold" x="75.000000" y="545.000000" style="text-anchor:middle;font-size:16px;fill:#0A0F25">explanation</text></g><g id="a.another explanation"><g class="shape" ><rect x="-50" y="735" width="250" height="126" style="fill:#EDF0FD;stroke:#0D32B2;opacity:1.000000;stroke-width:2;" /></g><text class="text-bold" x="75.000000" y="801.000000" style="text-anchor:middle;font-size:16px;fill:#0A0F25">another explanation</text></g><g id="b."Some one who believes imaginary things\n appear right before your i's.""><g class="shape" ><rect x="278" y="1121" width="393" height="142" style="fill:#EDF0FD;stroke:#0D32B2;opacity:1.000000;stroke-width:2;" /></g><text class="text-bold" x="474.500000" y="1187.000000" style="text-anchor:middle;font-size:16px;fill:#0A0F25"><tspan x="474.500000" dy="0.000000">Some one who believes imaginary things</tspan><tspan x="474.500000" dy="21.000000"> appear right before your i's.</tspan></text></g><g id="d.The earth is like a tiny grain of sand, only much, much heavier"><g class="shape" ><rect x="1004" y="1523" width="541" height="126" style="fill:#EDF0FD;stroke:#0D32B2;opacity:1.000000;stroke-width:2;" /></g><text class="text-bold" x="1274.500000" y="1589.000000" style="text-anchor:middle;font-size:16px;fill:#0A0F25">The earth is like a tiny grain of sand, only much, much heavier</text></g><g id="(a -> b)[0]"><marker id="mk-3990223579" markerWidth="10.000000" markerHeight="12.000000" refX="7.000000" refY="6.000000" viewBox="0.000000 0.000000 10.000000 12.000000" orient="auto" markerUnits="userSpaceOnUse"> <polygon class="connection" fill="#0D32B2" stroke-width="2" points="0.000000,0.000000 10.000000,6.000000 0.000000,12.000000" /> </marker><path d="M 77.000000 349.000000 L 471.000000 349.000000" class="connection" style="fill:none;stroke:#0D32B2;opacity:1.000000;stroke-width:2;" marker-end="url(#mk-3990223579)" mask="url(#labels)"/></g><g id="(b -> c)[0]"><path d="M 477.000000 991.000000 L 871.000000 991.000000" class="connection" style="fill:none;stroke:#0D32B2;opacity:1.000000;stroke-width:2;" marker-end="url(#mk-3990223579)" mask="url(#labels)"/></g><g id="(c -> b)[0]"><path d="M 873.000000 1393.000000 L 479.000000 1393.000000" class="connection" style="fill:none;stroke:#0D32B2;opacity:1.000000;stroke-width:2;" marker-end="url(#mk-3990223579)" mask="url(#labels)"/><text class="text-italic" x="675.500000" y="1399.000000" style="text-anchor:middle;font-size:16px;fill:#676C7E">okay</text></g><mask id="labels" maskUnits="userSpaceOnUse" x="0" y="0" width="1795" height="1929">
|
</style><g id="a"><g class="shape" ><rect x="0" y="50" width="150" height="169" style="fill:#E3E9FD;stroke:#0D32B2;opacity:1.000000;stroke-width:2;" /></g><text class="text-bold" x="75.000000" y="137.500000" style="text-anchor:middle;font-size:16px;fill:#0A0F25">a</text></g><g id="b"><g class="shape" ><rect x="250" y="52" width="150" height="167" style="fill:#E3E9FD;stroke:#0D32B2;opacity:1.000000;stroke-width:2;" /></g><text class="text-bold" x="325.000000" y="138.500000" style="text-anchor:middle;font-size:16px;fill:#0A0F25">b</text></g><g id="c"><g class="shape" ><rect x="500" y="52" width="150" height="167" style="fill:#F7F8FE;stroke:#0D32B2;opacity:1.000000;stroke-width:2;" /></g><text class="text-bold" x="575.000000" y="138.500000" style="text-anchor:middle;font-size:16px;fill:#0A0F25">c</text></g><g id="d"><g class="shape" ><rect x="750" y="52" width="150" height="167" style="fill:#E3E9FD;stroke:#0D32B2;opacity:1.000000;stroke-width:2;" /></g><text class="text-bold" x="825.000000" y="138.500000" style="text-anchor:middle;font-size:16px;fill:#0A0F25">d</text></g><g id="(a -- )[0]"><path d="M 75.000000 221.000000 L 75.000000 1778.000000" class="connection" style="fill:none;stroke:#0D32B2;opacity:1.000000;stroke-width:2;stroke-dasharray:12.000000,11.838767;" mask="url(#labels)"/></g><g id="(b -- )[0]"><path d="M 325.000000 221.000000 L 325.000000 1778.000000" class="connection" style="fill:none;stroke:#0D32B2;opacity:1.000000;stroke-width:2;stroke-dasharray:12.000000,11.838767;" mask="url(#labels)"/></g><g id="(c -- )[0]"><path d="M 575.000000 221.000000 L 575.000000 1778.000000" class="connection" style="fill:none;stroke:#0D32B2;opacity:1.000000;stroke-width:2;stroke-dasharray:12.000000,11.838767;" mask="url(#labels)"/></g><g id="(d -- )[0]"><path d="M 825.000000 221.000000 L 825.000000 1778.000000" class="connection" style="fill:none;stroke:#0D32B2;opacity:1.000000;stroke-width:2;stroke-dasharray:12.000000,11.838767;" mask="url(#labels)"/></g><g id="a.explanation"><g class="shape" ><rect x="-20" y="479" width="190" height="126" style="fill:#EDF0FD;stroke:#0D32B2;opacity:1.000000;stroke-width:2;" /></g><text class="text-bold" x="75.000000" y="545.000000" style="text-anchor:middle;font-size:16px;fill:#0A0F25">explanation</text></g><g id="a.another explanation"><g class="shape" ><rect x="-50" y="735" width="250" height="126" style="fill:#EDF0FD;stroke:#0D32B2;opacity:1.000000;stroke-width:2;" /></g><text class="text-bold" x="75.000000" y="801.000000" style="text-anchor:middle;font-size:16px;fill:#0A0F25">another explanation</text></g><g id="b."Some one who believes imaginary things\n appear right before your i's.""><g class="shape" ><rect x="128" y="1121" width="393" height="142" style="fill:#EDF0FD;stroke:#0D32B2;opacity:1.000000;stroke-width:2;" /></g><text class="text-bold" x="324.500000" y="1187.000000" style="text-anchor:middle;font-size:16px;fill:#0A0F25"><tspan x="324.500000" dy="0.000000">Some one who believes imaginary things</tspan><tspan x="324.500000" dy="21.000000"> appear right before your i's.</tspan></text></g><g id="d.The earth is like a tiny grain of sand, only much, much heavier"><g class="shape" ><rect x="554" y="1523" width="541" height="126" style="fill:#EDF0FD;stroke:#0D32B2;opacity:1.000000;stroke-width:2;" /></g><text class="text-bold" x="824.500000" y="1589.000000" style="text-anchor:middle;font-size:16px;fill:#0A0F25">The earth is like a tiny grain of sand, only much, much heavier</text></g><g id="(a -> b)[0]"><marker id="mk-3990223579" markerWidth="10.000000" markerHeight="12.000000" refX="7.000000" refY="6.000000" viewBox="0.000000 0.000000 10.000000 12.000000" orient="auto" markerUnits="userSpaceOnUse"> <polygon class="connection" fill="#0D32B2" stroke-width="2" points="0.000000,0.000000 10.000000,6.000000 0.000000,12.000000" /> </marker><path d="M 77.000000 349.000000 L 321.000000 349.000000" class="connection" style="fill:none;stroke:#0D32B2;opacity:1.000000;stroke-width:2;" marker-end="url(#mk-3990223579)" mask="url(#labels)"/></g><g id="(b -> c)[0]"><path d="M 327.000000 991.000000 L 571.000000 991.000000" class="connection" style="fill:none;stroke:#0D32B2;opacity:1.000000;stroke-width:2;" marker-end="url(#mk-3990223579)" mask="url(#labels)"/></g><g id="(c -> b)[0]"><path d="M 573.000000 1393.000000 L 329.000000 1393.000000" class="connection" style="fill:none;stroke:#0D32B2;opacity:1.000000;stroke-width:2;" marker-end="url(#mk-3990223579)" mask="url(#labels)"/><text class="text-italic" x="450.500000" y="1399.000000" style="text-anchor:middle;font-size:16px;fill:#676C7E">okay</text></g><mask id="labels" maskUnits="userSpaceOnUse" x="0" y="0" width="1345" height="1929">
|
||||||
<rect x="0" y="0" width="1795" height="1929" fill="white"></rect>
|
<rect x="0" y="0" width="1345" height="1929" fill="white"></rect>
|
||||||
<rect x="659.000000" y="1383.000000" width="33" height="21" fill="black"></rect>
|
<rect x="434.000000" y="1383.000000" width="33" height="21" fill="black"></rect>
|
||||||
</mask><style type="text/css"><![CDATA[
|
</mask><style type="text/css"><![CDATA[
|
||||||
.text-bold {
|
.text-bold {
|
||||||
font-family: "font-bold";
|
font-family: "font-bold";
|
||||||
|
|
|
||||||
|
Before Width: | Height: | Size: 471 KiB After Width: | Height: | Size: 471 KiB |
32
e2etests/testdata/stable/sequence_diagram_note/elk/board.exp.json
generated
vendored
|
|
@ -44,7 +44,7 @@
|
||||||
"id": "b",
|
"id": "b",
|
||||||
"type": "",
|
"type": "",
|
||||||
"pos": {
|
"pos": {
|
||||||
"x": 400,
|
"x": 250,
|
||||||
"y": 52
|
"y": 52
|
||||||
},
|
},
|
||||||
"width": 150,
|
"width": 150,
|
||||||
|
|
@ -83,7 +83,7 @@
|
||||||
"id": "c",
|
"id": "c",
|
||||||
"type": "",
|
"type": "",
|
||||||
"pos": {
|
"pos": {
|
||||||
"x": 800,
|
"x": 500,
|
||||||
"y": 52
|
"y": 52
|
||||||
},
|
},
|
||||||
"width": 150,
|
"width": 150,
|
||||||
|
|
@ -122,7 +122,7 @@
|
||||||
"id": "d",
|
"id": "d",
|
||||||
"type": "",
|
"type": "",
|
||||||
"pos": {
|
"pos": {
|
||||||
"x": 1200,
|
"x": 750,
|
||||||
"y": 52
|
"y": 52
|
||||||
},
|
},
|
||||||
"width": 150,
|
"width": 150,
|
||||||
|
|
@ -239,7 +239,7 @@
|
||||||
"id": "b.\"Some one who believes imaginary things\\n appear right before your i's.\"",
|
"id": "b.\"Some one who believes imaginary things\\n appear right before your i's.\"",
|
||||||
"type": "rectangle",
|
"type": "rectangle",
|
||||||
"pos": {
|
"pos": {
|
||||||
"x": 278,
|
"x": 128,
|
||||||
"y": 1121
|
"y": 1121
|
||||||
},
|
},
|
||||||
"width": 393,
|
"width": 393,
|
||||||
|
|
@ -278,7 +278,7 @@
|
||||||
"id": "d.The earth is like a tiny grain of sand, only much, much heavier",
|
"id": "d.The earth is like a tiny grain of sand, only much, much heavier",
|
||||||
"type": "rectangle",
|
"type": "rectangle",
|
||||||
"pos": {
|
"pos": {
|
||||||
"x": 1004,
|
"x": 554,
|
||||||
"y": 1523
|
"y": 1523
|
||||||
},
|
},
|
||||||
"width": 541,
|
"width": 541,
|
||||||
|
|
@ -345,7 +345,7 @@
|
||||||
"y": 349
|
"y": 349
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"x": 475,
|
"x": 325,
|
||||||
"y": 349
|
"y": 349
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
|
|
@ -380,11 +380,11 @@
|
||||||
"labelPercentage": 0,
|
"labelPercentage": 0,
|
||||||
"route": [
|
"route": [
|
||||||
{
|
{
|
||||||
"x": 475,
|
"x": 325,
|
||||||
"y": 991
|
"y": 991
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"x": 875,
|
"x": 575,
|
||||||
"y": 991
|
"y": 991
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
|
|
@ -419,11 +419,11 @@
|
||||||
"labelPercentage": 0,
|
"labelPercentage": 0,
|
||||||
"route": [
|
"route": [
|
||||||
{
|
{
|
||||||
"x": 875,
|
"x": 575,
|
||||||
"y": 1393
|
"y": 1393
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"x": 475,
|
"x": 325,
|
||||||
"y": 1393
|
"y": 1393
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
|
|
@ -497,11 +497,11 @@
|
||||||
"labelPercentage": 0,
|
"labelPercentage": 0,
|
||||||
"route": [
|
"route": [
|
||||||
{
|
{
|
||||||
"x": 475,
|
"x": 325,
|
||||||
"y": 219
|
"y": 219
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"x": 475,
|
"x": 325,
|
||||||
"y": 1779
|
"y": 1779
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
|
|
@ -536,11 +536,11 @@
|
||||||
"labelPercentage": 0,
|
"labelPercentage": 0,
|
||||||
"route": [
|
"route": [
|
||||||
{
|
{
|
||||||
"x": 875,
|
"x": 575,
|
||||||
"y": 219
|
"y": 219
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"x": 875,
|
"x": 575,
|
||||||
"y": 1779
|
"y": 1779
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
|
|
@ -575,11 +575,11 @@
|
||||||
"labelPercentage": 0,
|
"labelPercentage": 0,
|
||||||
"route": [
|
"route": [
|
||||||
{
|
{
|
||||||
"x": 1275,
|
"x": 825,
|
||||||
"y": 219
|
"y": 219
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"x": 1275,
|
"x": 825,
|
||||||
"y": 1779
|
"y": 1779
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
|
|
|
||||||
|
|
@ -2,7 +2,7 @@
|
||||||
<svg
|
<svg
|
||||||
style="background: white;"
|
style="background: white;"
|
||||||
xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink"
|
xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink"
|
||||||
width="1795" height="1929" viewBox="-150 -50 1795 1929"><style type="text/css">
|
width="1345" height="1929" viewBox="-150 -50 1345 1929"><style type="text/css">
|
||||||
<![CDATA[
|
<![CDATA[
|
||||||
.shape {
|
.shape {
|
||||||
shape-rendering: geometricPrecision;
|
shape-rendering: geometricPrecision;
|
||||||
|
|
@ -14,9 +14,9 @@ width="1795" height="1929" viewBox="-150 -50 1795 1929"><style type="text/css">
|
||||||
}
|
}
|
||||||
|
|
||||||
]]>
|
]]>
|
||||||
</style><g id="a"><g class="shape" ><rect x="0" y="50" width="150" height="169" style="fill:#E3E9FD;stroke:#0D32B2;opacity:1.000000;stroke-width:2;" /></g><text class="text-bold" x="75.000000" y="137.500000" style="text-anchor:middle;font-size:16px;fill:#0A0F25">a</text></g><g id="b"><g class="shape" ><rect x="400" y="52" width="150" height="167" style="fill:#E3E9FD;stroke:#0D32B2;opacity:1.000000;stroke-width:2;" /></g><text class="text-bold" x="475.000000" y="138.500000" style="text-anchor:middle;font-size:16px;fill:#0A0F25">b</text></g><g id="c"><g class="shape" ><rect x="800" y="52" width="150" height="167" style="fill:#F7F8FE;stroke:#0D32B2;opacity:1.000000;stroke-width:2;" /></g><text class="text-bold" x="875.000000" y="138.500000" style="text-anchor:middle;font-size:16px;fill:#0A0F25">c</text></g><g id="d"><g class="shape" ><rect x="1200" y="52" width="150" height="167" style="fill:#E3E9FD;stroke:#0D32B2;opacity:1.000000;stroke-width:2;" /></g><text class="text-bold" x="1275.000000" y="138.500000" style="text-anchor:middle;font-size:16px;fill:#0A0F25">d</text></g><g id="(a -- )[0]"><path d="M 75.000000 221.000000 L 75.000000 1778.000000" class="connection" style="fill:none;stroke:#0D32B2;opacity:1.000000;stroke-width:2;stroke-dasharray:12.000000,11.838767;" mask="url(#labels)"/></g><g id="(b -- )[0]"><path d="M 475.000000 221.000000 L 475.000000 1778.000000" class="connection" style="fill:none;stroke:#0D32B2;opacity:1.000000;stroke-width:2;stroke-dasharray:12.000000,11.838767;" mask="url(#labels)"/></g><g id="(c -- )[0]"><path d="M 875.000000 221.000000 L 875.000000 1778.000000" class="connection" style="fill:none;stroke:#0D32B2;opacity:1.000000;stroke-width:2;stroke-dasharray:12.000000,11.838767;" mask="url(#labels)"/></g><g id="(d -- )[0]"><path d="M 1275.000000 221.000000 L 1275.000000 1778.000000" class="connection" style="fill:none;stroke:#0D32B2;opacity:1.000000;stroke-width:2;stroke-dasharray:12.000000,11.838767;" mask="url(#labels)"/></g><g id="a.explanation"><g class="shape" ><rect x="-20" y="479" width="190" height="126" style="fill:#EDF0FD;stroke:#0D32B2;opacity:1.000000;stroke-width:2;" /></g><text class="text-bold" x="75.000000" y="545.000000" style="text-anchor:middle;font-size:16px;fill:#0A0F25">explanation</text></g><g id="a.another explanation"><g class="shape" ><rect x="-50" y="735" width="250" height="126" style="fill:#EDF0FD;stroke:#0D32B2;opacity:1.000000;stroke-width:2;" /></g><text class="text-bold" x="75.000000" y="801.000000" style="text-anchor:middle;font-size:16px;fill:#0A0F25">another explanation</text></g><g id="b."Some one who believes imaginary things\n appear right before your i's.""><g class="shape" ><rect x="278" y="1121" width="393" height="142" style="fill:#EDF0FD;stroke:#0D32B2;opacity:1.000000;stroke-width:2;" /></g><text class="text-bold" x="474.500000" y="1187.000000" style="text-anchor:middle;font-size:16px;fill:#0A0F25"><tspan x="474.500000" dy="0.000000">Some one who believes imaginary things</tspan><tspan x="474.500000" dy="21.000000"> appear right before your i's.</tspan></text></g><g id="d.The earth is like a tiny grain of sand, only much, much heavier"><g class="shape" ><rect x="1004" y="1523" width="541" height="126" style="fill:#EDF0FD;stroke:#0D32B2;opacity:1.000000;stroke-width:2;" /></g><text class="text-bold" x="1274.500000" y="1589.000000" style="text-anchor:middle;font-size:16px;fill:#0A0F25">The earth is like a tiny grain of sand, only much, much heavier</text></g><g id="(a -> b)[0]"><marker id="mk-3990223579" markerWidth="10.000000" markerHeight="12.000000" refX="7.000000" refY="6.000000" viewBox="0.000000 0.000000 10.000000 12.000000" orient="auto" markerUnits="userSpaceOnUse"> <polygon class="connection" fill="#0D32B2" stroke-width="2" points="0.000000,0.000000 10.000000,6.000000 0.000000,12.000000" /> </marker><path d="M 77.000000 349.000000 L 471.000000 349.000000" class="connection" style="fill:none;stroke:#0D32B2;opacity:1.000000;stroke-width:2;" marker-end="url(#mk-3990223579)" mask="url(#labels)"/></g><g id="(b -> c)[0]"><path d="M 477.000000 991.000000 L 871.000000 991.000000" class="connection" style="fill:none;stroke:#0D32B2;opacity:1.000000;stroke-width:2;" marker-end="url(#mk-3990223579)" mask="url(#labels)"/></g><g id="(c -> b)[0]"><path d="M 873.000000 1393.000000 L 479.000000 1393.000000" class="connection" style="fill:none;stroke:#0D32B2;opacity:1.000000;stroke-width:2;" marker-end="url(#mk-3990223579)" mask="url(#labels)"/><text class="text-italic" x="675.500000" y="1399.000000" style="text-anchor:middle;font-size:16px;fill:#676C7E">okay</text></g><mask id="labels" maskUnits="userSpaceOnUse" x="0" y="0" width="1795" height="1929">
|
</style><g id="a"><g class="shape" ><rect x="0" y="50" width="150" height="169" style="fill:#E3E9FD;stroke:#0D32B2;opacity:1.000000;stroke-width:2;" /></g><text class="text-bold" x="75.000000" y="137.500000" style="text-anchor:middle;font-size:16px;fill:#0A0F25">a</text></g><g id="b"><g class="shape" ><rect x="250" y="52" width="150" height="167" style="fill:#E3E9FD;stroke:#0D32B2;opacity:1.000000;stroke-width:2;" /></g><text class="text-bold" x="325.000000" y="138.500000" style="text-anchor:middle;font-size:16px;fill:#0A0F25">b</text></g><g id="c"><g class="shape" ><rect x="500" y="52" width="150" height="167" style="fill:#F7F8FE;stroke:#0D32B2;opacity:1.000000;stroke-width:2;" /></g><text class="text-bold" x="575.000000" y="138.500000" style="text-anchor:middle;font-size:16px;fill:#0A0F25">c</text></g><g id="d"><g class="shape" ><rect x="750" y="52" width="150" height="167" style="fill:#E3E9FD;stroke:#0D32B2;opacity:1.000000;stroke-width:2;" /></g><text class="text-bold" x="825.000000" y="138.500000" style="text-anchor:middle;font-size:16px;fill:#0A0F25">d</text></g><g id="(a -- )[0]"><path d="M 75.000000 221.000000 L 75.000000 1778.000000" class="connection" style="fill:none;stroke:#0D32B2;opacity:1.000000;stroke-width:2;stroke-dasharray:12.000000,11.838767;" mask="url(#labels)"/></g><g id="(b -- )[0]"><path d="M 325.000000 221.000000 L 325.000000 1778.000000" class="connection" style="fill:none;stroke:#0D32B2;opacity:1.000000;stroke-width:2;stroke-dasharray:12.000000,11.838767;" mask="url(#labels)"/></g><g id="(c -- )[0]"><path d="M 575.000000 221.000000 L 575.000000 1778.000000" class="connection" style="fill:none;stroke:#0D32B2;opacity:1.000000;stroke-width:2;stroke-dasharray:12.000000,11.838767;" mask="url(#labels)"/></g><g id="(d -- )[0]"><path d="M 825.000000 221.000000 L 825.000000 1778.000000" class="connection" style="fill:none;stroke:#0D32B2;opacity:1.000000;stroke-width:2;stroke-dasharray:12.000000,11.838767;" mask="url(#labels)"/></g><g id="a.explanation"><g class="shape" ><rect x="-20" y="479" width="190" height="126" style="fill:#EDF0FD;stroke:#0D32B2;opacity:1.000000;stroke-width:2;" /></g><text class="text-bold" x="75.000000" y="545.000000" style="text-anchor:middle;font-size:16px;fill:#0A0F25">explanation</text></g><g id="a.another explanation"><g class="shape" ><rect x="-50" y="735" width="250" height="126" style="fill:#EDF0FD;stroke:#0D32B2;opacity:1.000000;stroke-width:2;" /></g><text class="text-bold" x="75.000000" y="801.000000" style="text-anchor:middle;font-size:16px;fill:#0A0F25">another explanation</text></g><g id="b."Some one who believes imaginary things\n appear right before your i's.""><g class="shape" ><rect x="128" y="1121" width="393" height="142" style="fill:#EDF0FD;stroke:#0D32B2;opacity:1.000000;stroke-width:2;" /></g><text class="text-bold" x="324.500000" y="1187.000000" style="text-anchor:middle;font-size:16px;fill:#0A0F25"><tspan x="324.500000" dy="0.000000">Some one who believes imaginary things</tspan><tspan x="324.500000" dy="21.000000"> appear right before your i's.</tspan></text></g><g id="d.The earth is like a tiny grain of sand, only much, much heavier"><g class="shape" ><rect x="554" y="1523" width="541" height="126" style="fill:#EDF0FD;stroke:#0D32B2;opacity:1.000000;stroke-width:2;" /></g><text class="text-bold" x="824.500000" y="1589.000000" style="text-anchor:middle;font-size:16px;fill:#0A0F25">The earth is like a tiny grain of sand, only much, much heavier</text></g><g id="(a -> b)[0]"><marker id="mk-3990223579" markerWidth="10.000000" markerHeight="12.000000" refX="7.000000" refY="6.000000" viewBox="0.000000 0.000000 10.000000 12.000000" orient="auto" markerUnits="userSpaceOnUse"> <polygon class="connection" fill="#0D32B2" stroke-width="2" points="0.000000,0.000000 10.000000,6.000000 0.000000,12.000000" /> </marker><path d="M 77.000000 349.000000 L 321.000000 349.000000" class="connection" style="fill:none;stroke:#0D32B2;opacity:1.000000;stroke-width:2;" marker-end="url(#mk-3990223579)" mask="url(#labels)"/></g><g id="(b -> c)[0]"><path d="M 327.000000 991.000000 L 571.000000 991.000000" class="connection" style="fill:none;stroke:#0D32B2;opacity:1.000000;stroke-width:2;" marker-end="url(#mk-3990223579)" mask="url(#labels)"/></g><g id="(c -> b)[0]"><path d="M 573.000000 1393.000000 L 329.000000 1393.000000" class="connection" style="fill:none;stroke:#0D32B2;opacity:1.000000;stroke-width:2;" marker-end="url(#mk-3990223579)" mask="url(#labels)"/><text class="text-italic" x="450.500000" y="1399.000000" style="text-anchor:middle;font-size:16px;fill:#676C7E">okay</text></g><mask id="labels" maskUnits="userSpaceOnUse" x="0" y="0" width="1345" height="1929">
|
||||||
<rect x="0" y="0" width="1795" height="1929" fill="white"></rect>
|
<rect x="0" y="0" width="1345" height="1929" fill="white"></rect>
|
||||||
<rect x="659.000000" y="1383.000000" width="33" height="21" fill="black"></rect>
|
<rect x="434.000000" y="1383.000000" width="33" height="21" fill="black"></rect>
|
||||||
</mask><style type="text/css"><![CDATA[
|
</mask><style type="text/css"><![CDATA[
|
||||||
.text-bold {
|
.text-bold {
|
||||||
font-family: "font-bold";
|
font-family: "font-bold";
|
||||||
|
|
|
||||||
|
Before Width: | Height: | Size: 471 KiB After Width: | Height: | Size: 471 KiB |
92
e2etests/testdata/stable/sequence_diagram_real/dagre/board.exp.json
generated
vendored
|
|
@ -8,7 +8,7 @@
|
||||||
"x": 0,
|
"x": 0,
|
||||||
"y": 0
|
"y": 0
|
||||||
},
|
},
|
||||||
"width": 3633,
|
"width": 2180,
|
||||||
"height": 2311,
|
"height": 2311,
|
||||||
"opacity": 1,
|
"opacity": 1,
|
||||||
"strokeDash": 0,
|
"strokeDash": 0,
|
||||||
|
|
@ -83,7 +83,7 @@
|
||||||
"id": "How this is rendered.d2ast",
|
"id": "How this is rendered.d2ast",
|
||||||
"type": "",
|
"type": "",
|
||||||
"pos": {
|
"pos": {
|
||||||
"x": 400,
|
"x": 250,
|
||||||
"y": 105
|
"y": 105
|
||||||
},
|
},
|
||||||
"width": 150,
|
"width": 150,
|
||||||
|
|
@ -122,7 +122,7 @@
|
||||||
"id": "How this is rendered.d2compiler",
|
"id": "How this is rendered.d2compiler",
|
||||||
"type": "",
|
"type": "",
|
||||||
"pos": {
|
"pos": {
|
||||||
"x": 800,
|
"x": 484,
|
||||||
"y": 109
|
"y": 109
|
||||||
},
|
},
|
||||||
"width": 182,
|
"width": 182,
|
||||||
|
|
@ -161,7 +161,7 @@
|
||||||
"id": "How this is rendered.d2layout",
|
"id": "How this is rendered.d2layout",
|
||||||
"type": "",
|
"type": "",
|
||||||
"pos": {
|
"pos": {
|
||||||
"x": 1232,
|
"x": 743,
|
||||||
"y": 109
|
"y": 109
|
||||||
},
|
},
|
||||||
"width": 165,
|
"width": 165,
|
||||||
|
|
@ -200,7 +200,7 @@
|
||||||
"id": "How this is rendered.d2exporter",
|
"id": "How this is rendered.d2exporter",
|
||||||
"type": "",
|
"type": "",
|
||||||
"pos": {
|
"pos": {
|
||||||
"x": 1647,
|
"x": 985,
|
||||||
"y": 109
|
"y": 109
|
||||||
},
|
},
|
||||||
"width": 180,
|
"width": 180,
|
||||||
|
|
@ -239,7 +239,7 @@
|
||||||
"id": "How this is rendered.d2themes",
|
"id": "How this is rendered.d2themes",
|
||||||
"type": "",
|
"type": "",
|
||||||
"pos": {
|
"pos": {
|
||||||
"x": 2077,
|
"x": 1237,
|
||||||
"y": 109
|
"y": 109
|
||||||
},
|
},
|
||||||
"width": 176,
|
"width": 176,
|
||||||
|
|
@ -278,7 +278,7 @@
|
||||||
"id": "How this is rendered.d2renderer",
|
"id": "How this is rendered.d2renderer",
|
||||||
"type": "",
|
"type": "",
|
||||||
"pos": {
|
"pos": {
|
||||||
"x": 2503,
|
"x": 1482,
|
||||||
"y": 109
|
"y": 109
|
||||||
},
|
},
|
||||||
"width": 186,
|
"width": 186,
|
||||||
|
|
@ -317,7 +317,7 @@
|
||||||
"id": "How this is rendered.d2compiler.measurements also take place",
|
"id": "How this is rendered.d2compiler.measurements also take place",
|
||||||
"type": "rectangle",
|
"type": "rectangle",
|
||||||
"pos": {
|
"pos": {
|
||||||
"x": 732,
|
"x": 416,
|
||||||
"y": 755
|
"y": 755
|
||||||
},
|
},
|
||||||
"width": 318,
|
"width": 318,
|
||||||
|
|
@ -356,7 +356,7 @@
|
||||||
"id": "How this is rendered.d2layout.layout",
|
"id": "How this is rendered.d2layout.layout",
|
||||||
"type": "rectangle",
|
"type": "rectangle",
|
||||||
"pos": {
|
"pos": {
|
||||||
"x": 1304,
|
"x": 815,
|
||||||
"y": 1125
|
"y": 1125
|
||||||
},
|
},
|
||||||
"width": 20,
|
"width": 20,
|
||||||
|
|
@ -394,7 +394,7 @@
|
||||||
"id": "How this is rendered.d2sequencelayout",
|
"id": "How this is rendered.d2sequencelayout",
|
||||||
"type": "",
|
"type": "",
|
||||||
"pos": {
|
"pos": {
|
||||||
"x": 2939,
|
"x": 1708,
|
||||||
"y": 109
|
"y": 109
|
||||||
},
|
},
|
||||||
"width": 235,
|
"width": 235,
|
||||||
|
|
@ -433,7 +433,7 @@
|
||||||
"id": "How this is rendered.d2dagrelayout",
|
"id": "How this is rendered.d2dagrelayout",
|
||||||
"type": "",
|
"type": "",
|
||||||
"pos": {
|
"pos": {
|
||||||
"x": 3424,
|
"x": 1971,
|
||||||
"y": 109
|
"y": 109
|
||||||
},
|
},
|
||||||
"width": 209,
|
"width": 209,
|
||||||
|
|
@ -472,7 +472,7 @@
|
||||||
"id": "How this is rendered.d2exporter.export",
|
"id": "How this is rendered.d2exporter.export",
|
||||||
"type": "rectangle",
|
"type": "rectangle",
|
||||||
"pos": {
|
"pos": {
|
||||||
"x": 1727,
|
"x": 1065,
|
||||||
"y": 1905
|
"y": 1905
|
||||||
},
|
},
|
||||||
"width": 20,
|
"width": 20,
|
||||||
|
|
@ -538,7 +538,7 @@
|
||||||
"y": 365
|
"y": 365
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"x": 475,
|
"x": 325,
|
||||||
"y": 365
|
"y": 365
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
|
|
@ -573,7 +573,7 @@
|
||||||
"labelPercentage": 0,
|
"labelPercentage": 0,
|
||||||
"route": [
|
"route": [
|
||||||
{
|
{
|
||||||
"x": 475,
|
"x": 325,
|
||||||
"y": 495
|
"y": 495
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
|
|
@ -616,7 +616,7 @@
|
||||||
"y": 625
|
"y": 625
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"x": 891,
|
"x": 575,
|
||||||
"y": 625
|
"y": 625
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
|
|
@ -651,7 +651,7 @@
|
||||||
"labelPercentage": 0,
|
"labelPercentage": 0,
|
||||||
"route": [
|
"route": [
|
||||||
{
|
{
|
||||||
"x": 891,
|
"x": 575,
|
||||||
"y": 1011
|
"y": 1011
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
|
|
@ -694,7 +694,7 @@
|
||||||
"y": 1141
|
"y": 1141
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"x": 1304.5,
|
"x": 815.5,
|
||||||
"y": 1141
|
"y": 1141
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
|
|
@ -729,11 +729,11 @@
|
||||||
"labelPercentage": 0,
|
"labelPercentage": 0,
|
||||||
"route": [
|
"route": [
|
||||||
{
|
{
|
||||||
"x": 1324.5,
|
"x": 835.5,
|
||||||
"y": 1271
|
"y": 1271
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"x": 3056.5,
|
"x": 1825.5,
|
||||||
"y": 1271
|
"y": 1271
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
|
|
@ -768,11 +768,11 @@
|
||||||
"labelPercentage": 0,
|
"labelPercentage": 0,
|
||||||
"route": [
|
"route": [
|
||||||
{
|
{
|
||||||
"x": 1324.5,
|
"x": 835.5,
|
||||||
"y": 1401
|
"y": 1401
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"x": 3528.5,
|
"x": 2075.5,
|
||||||
"y": 1401
|
"y": 1401
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
|
|
@ -807,11 +807,11 @@
|
||||||
"labelPercentage": 0,
|
"labelPercentage": 0,
|
||||||
"route": [
|
"route": [
|
||||||
{
|
{
|
||||||
"x": 1324.5,
|
"x": 835.5,
|
||||||
"y": 1531
|
"y": 1531
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"x": 3056.5,
|
"x": 1825.5,
|
||||||
"y": 1531
|
"y": 1531
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
|
|
@ -846,7 +846,7 @@
|
||||||
"labelPercentage": 0,
|
"labelPercentage": 0,
|
||||||
"route": [
|
"route": [
|
||||||
{
|
{
|
||||||
"x": 1314.5,
|
"x": 825.5,
|
||||||
"y": 1661
|
"y": 1661
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
|
|
@ -889,7 +889,7 @@
|
||||||
"y": 1791
|
"y": 1791
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"x": 1737,
|
"x": 1075,
|
||||||
"y": 1791
|
"y": 1791
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
|
|
@ -924,11 +924,11 @@
|
||||||
"labelPercentage": 0,
|
"labelPercentage": 0,
|
||||||
"route": [
|
"route": [
|
||||||
{
|
{
|
||||||
"x": 1747,
|
"x": 1085,
|
||||||
"y": 1921
|
"y": 1921
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"x": 2165,
|
"x": 1325,
|
||||||
"y": 1921
|
"y": 1921
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
|
|
@ -963,11 +963,11 @@
|
||||||
"labelPercentage": 0,
|
"labelPercentage": 0,
|
||||||
"route": [
|
"route": [
|
||||||
{
|
{
|
||||||
"x": 1747,
|
"x": 1085,
|
||||||
"y": 2051
|
"y": 2051
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"x": 2596,
|
"x": 1575,
|
||||||
"y": 2051
|
"y": 2051
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
|
|
@ -1002,7 +1002,7 @@
|
||||||
"labelPercentage": 0,
|
"labelPercentage": 0,
|
||||||
"route": [
|
"route": [
|
||||||
{
|
{
|
||||||
"x": 1727,
|
"x": 1065,
|
||||||
"y": 2181
|
"y": 2181
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
|
|
@ -1080,11 +1080,11 @@
|
||||||
"labelPercentage": 0,
|
"labelPercentage": 0,
|
||||||
"route": [
|
"route": [
|
||||||
{
|
{
|
||||||
"x": 475,
|
"x": 325,
|
||||||
"y": 235
|
"y": 235
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"x": 475,
|
"x": 325,
|
||||||
"y": 2311
|
"y": 2311
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
|
|
@ -1119,11 +1119,11 @@
|
||||||
"labelPercentage": 0,
|
"labelPercentage": 0,
|
||||||
"route": [
|
"route": [
|
||||||
{
|
{
|
||||||
"x": 891,
|
"x": 575,
|
||||||
"y": 235
|
"y": 235
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"x": 891,
|
"x": 575,
|
||||||
"y": 2311
|
"y": 2311
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
|
|
@ -1158,11 +1158,11 @@
|
||||||
"labelPercentage": 0,
|
"labelPercentage": 0,
|
||||||
"route": [
|
"route": [
|
||||||
{
|
{
|
||||||
"x": 1314.5,
|
"x": 825.5,
|
||||||
"y": 235
|
"y": 235
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"x": 1314.5,
|
"x": 825.5,
|
||||||
"y": 2311
|
"y": 2311
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
|
|
@ -1197,11 +1197,11 @@
|
||||||
"labelPercentage": 0,
|
"labelPercentage": 0,
|
||||||
"route": [
|
"route": [
|
||||||
{
|
{
|
||||||
"x": 1737,
|
"x": 1075,
|
||||||
"y": 235
|
"y": 235
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"x": 1737,
|
"x": 1075,
|
||||||
"y": 2311
|
"y": 2311
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
|
|
@ -1236,11 +1236,11 @@
|
||||||
"labelPercentage": 0,
|
"labelPercentage": 0,
|
||||||
"route": [
|
"route": [
|
||||||
{
|
{
|
||||||
"x": 2165,
|
"x": 1325,
|
||||||
"y": 235
|
"y": 235
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"x": 2165,
|
"x": 1325,
|
||||||
"y": 2311
|
"y": 2311
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
|
|
@ -1275,11 +1275,11 @@
|
||||||
"labelPercentage": 0,
|
"labelPercentage": 0,
|
||||||
"route": [
|
"route": [
|
||||||
{
|
{
|
||||||
"x": 2596,
|
"x": 1575,
|
||||||
"y": 235
|
"y": 235
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"x": 2596,
|
"x": 1575,
|
||||||
"y": 2311
|
"y": 2311
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
|
|
@ -1314,11 +1314,11 @@
|
||||||
"labelPercentage": 0,
|
"labelPercentage": 0,
|
||||||
"route": [
|
"route": [
|
||||||
{
|
{
|
||||||
"x": 3056.5,
|
"x": 1825.5,
|
||||||
"y": 235
|
"y": 235
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"x": 3056.5,
|
"x": 1825.5,
|
||||||
"y": 2311
|
"y": 2311
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
|
|
@ -1353,11 +1353,11 @@
|
||||||
"labelPercentage": 0,
|
"labelPercentage": 0,
|
||||||
"route": [
|
"route": [
|
||||||
{
|
{
|
||||||
"x": 3528.5,
|
"x": 2075.5,
|
||||||
"y": 235
|
"y": 235
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"x": 3528.5,
|
"x": 2075.5,
|
||||||
"y": 2311
|
"y": 2311
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
|
|
|
||||||
|
Before Width: | Height: | Size: 479 KiB After Width: | Height: | Size: 479 KiB |
92
e2etests/testdata/stable/sequence_diagram_real/elk/board.exp.json
generated
vendored
|
|
@ -8,7 +8,7 @@
|
||||||
"x": 12,
|
"x": 12,
|
||||||
"y": 12
|
"y": 12
|
||||||
},
|
},
|
||||||
"width": 3633,
|
"width": 2180,
|
||||||
"height": 2311,
|
"height": 2311,
|
||||||
"opacity": 1,
|
"opacity": 1,
|
||||||
"strokeDash": 0,
|
"strokeDash": 0,
|
||||||
|
|
@ -83,7 +83,7 @@
|
||||||
"id": "How this is rendered.d2ast",
|
"id": "How this is rendered.d2ast",
|
||||||
"type": "",
|
"type": "",
|
||||||
"pos": {
|
"pos": {
|
||||||
"x": 412,
|
"x": 262,
|
||||||
"y": 117
|
"y": 117
|
||||||
},
|
},
|
||||||
"width": 150,
|
"width": 150,
|
||||||
|
|
@ -122,7 +122,7 @@
|
||||||
"id": "How this is rendered.d2compiler",
|
"id": "How this is rendered.d2compiler",
|
||||||
"type": "",
|
"type": "",
|
||||||
"pos": {
|
"pos": {
|
||||||
"x": 812,
|
"x": 496,
|
||||||
"y": 121
|
"y": 121
|
||||||
},
|
},
|
||||||
"width": 182,
|
"width": 182,
|
||||||
|
|
@ -161,7 +161,7 @@
|
||||||
"id": "How this is rendered.d2layout",
|
"id": "How this is rendered.d2layout",
|
||||||
"type": "",
|
"type": "",
|
||||||
"pos": {
|
"pos": {
|
||||||
"x": 1244,
|
"x": 755,
|
||||||
"y": 121
|
"y": 121
|
||||||
},
|
},
|
||||||
"width": 165,
|
"width": 165,
|
||||||
|
|
@ -200,7 +200,7 @@
|
||||||
"id": "How this is rendered.d2exporter",
|
"id": "How this is rendered.d2exporter",
|
||||||
"type": "",
|
"type": "",
|
||||||
"pos": {
|
"pos": {
|
||||||
"x": 1659,
|
"x": 997,
|
||||||
"y": 121
|
"y": 121
|
||||||
},
|
},
|
||||||
"width": 180,
|
"width": 180,
|
||||||
|
|
@ -239,7 +239,7 @@
|
||||||
"id": "How this is rendered.d2themes",
|
"id": "How this is rendered.d2themes",
|
||||||
"type": "",
|
"type": "",
|
||||||
"pos": {
|
"pos": {
|
||||||
"x": 2089,
|
"x": 1249,
|
||||||
"y": 121
|
"y": 121
|
||||||
},
|
},
|
||||||
"width": 176,
|
"width": 176,
|
||||||
|
|
@ -278,7 +278,7 @@
|
||||||
"id": "How this is rendered.d2renderer",
|
"id": "How this is rendered.d2renderer",
|
||||||
"type": "",
|
"type": "",
|
||||||
"pos": {
|
"pos": {
|
||||||
"x": 2515,
|
"x": 1494,
|
||||||
"y": 121
|
"y": 121
|
||||||
},
|
},
|
||||||
"width": 186,
|
"width": 186,
|
||||||
|
|
@ -317,7 +317,7 @@
|
||||||
"id": "How this is rendered.d2compiler.measurements also take place",
|
"id": "How this is rendered.d2compiler.measurements also take place",
|
||||||
"type": "rectangle",
|
"type": "rectangle",
|
||||||
"pos": {
|
"pos": {
|
||||||
"x": 732,
|
"x": 416,
|
||||||
"y": 755
|
"y": 755
|
||||||
},
|
},
|
||||||
"width": 318,
|
"width": 318,
|
||||||
|
|
@ -356,7 +356,7 @@
|
||||||
"id": "How this is rendered.d2layout.layout",
|
"id": "How this is rendered.d2layout.layout",
|
||||||
"type": "rectangle",
|
"type": "rectangle",
|
||||||
"pos": {
|
"pos": {
|
||||||
"x": 1316,
|
"x": 827,
|
||||||
"y": 1137
|
"y": 1137
|
||||||
},
|
},
|
||||||
"width": 20,
|
"width": 20,
|
||||||
|
|
@ -394,7 +394,7 @@
|
||||||
"id": "How this is rendered.d2sequencelayout",
|
"id": "How this is rendered.d2sequencelayout",
|
||||||
"type": "",
|
"type": "",
|
||||||
"pos": {
|
"pos": {
|
||||||
"x": 2951,
|
"x": 1720,
|
||||||
"y": 121
|
"y": 121
|
||||||
},
|
},
|
||||||
"width": 235,
|
"width": 235,
|
||||||
|
|
@ -433,7 +433,7 @@
|
||||||
"id": "How this is rendered.d2dagrelayout",
|
"id": "How this is rendered.d2dagrelayout",
|
||||||
"type": "",
|
"type": "",
|
||||||
"pos": {
|
"pos": {
|
||||||
"x": 3436,
|
"x": 1983,
|
||||||
"y": 121
|
"y": 121
|
||||||
},
|
},
|
||||||
"width": 209,
|
"width": 209,
|
||||||
|
|
@ -472,7 +472,7 @@
|
||||||
"id": "How this is rendered.d2exporter.export",
|
"id": "How this is rendered.d2exporter.export",
|
||||||
"type": "rectangle",
|
"type": "rectangle",
|
||||||
"pos": {
|
"pos": {
|
||||||
"x": 1739,
|
"x": 1077,
|
||||||
"y": 1917
|
"y": 1917
|
||||||
},
|
},
|
||||||
"width": 20,
|
"width": 20,
|
||||||
|
|
@ -538,7 +538,7 @@
|
||||||
"y": 377
|
"y": 377
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"x": 487,
|
"x": 337,
|
||||||
"y": 377
|
"y": 377
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
|
|
@ -573,7 +573,7 @@
|
||||||
"labelPercentage": 0,
|
"labelPercentage": 0,
|
||||||
"route": [
|
"route": [
|
||||||
{
|
{
|
||||||
"x": 487,
|
"x": 337,
|
||||||
"y": 507
|
"y": 507
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
|
|
@ -616,7 +616,7 @@
|
||||||
"y": 637
|
"y": 637
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"x": 903,
|
"x": 587,
|
||||||
"y": 637
|
"y": 637
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
|
|
@ -651,7 +651,7 @@
|
||||||
"labelPercentage": 0,
|
"labelPercentage": 0,
|
||||||
"route": [
|
"route": [
|
||||||
{
|
{
|
||||||
"x": 903,
|
"x": 587,
|
||||||
"y": 1023
|
"y": 1023
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
|
|
@ -694,7 +694,7 @@
|
||||||
"y": 1153
|
"y": 1153
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"x": 1316.5,
|
"x": 827.5,
|
||||||
"y": 1153
|
"y": 1153
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
|
|
@ -729,11 +729,11 @@
|
||||||
"labelPercentage": 0,
|
"labelPercentage": 0,
|
||||||
"route": [
|
"route": [
|
||||||
{
|
{
|
||||||
"x": 1336.5,
|
"x": 847.5,
|
||||||
"y": 1283
|
"y": 1283
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"x": 3068.5,
|
"x": 1837.5,
|
||||||
"y": 1283
|
"y": 1283
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
|
|
@ -768,11 +768,11 @@
|
||||||
"labelPercentage": 0,
|
"labelPercentage": 0,
|
||||||
"route": [
|
"route": [
|
||||||
{
|
{
|
||||||
"x": 1336.5,
|
"x": 847.5,
|
||||||
"y": 1413
|
"y": 1413
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"x": 3540.5,
|
"x": 2087.5,
|
||||||
"y": 1413
|
"y": 1413
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
|
|
@ -807,11 +807,11 @@
|
||||||
"labelPercentage": 0,
|
"labelPercentage": 0,
|
||||||
"route": [
|
"route": [
|
||||||
{
|
{
|
||||||
"x": 1336.5,
|
"x": 847.5,
|
||||||
"y": 1543
|
"y": 1543
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"x": 3068.5,
|
"x": 1837.5,
|
||||||
"y": 1543
|
"y": 1543
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
|
|
@ -846,7 +846,7 @@
|
||||||
"labelPercentage": 0,
|
"labelPercentage": 0,
|
||||||
"route": [
|
"route": [
|
||||||
{
|
{
|
||||||
"x": 1326.5,
|
"x": 837.5,
|
||||||
"y": 1673
|
"y": 1673
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
|
|
@ -889,7 +889,7 @@
|
||||||
"y": 1803
|
"y": 1803
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"x": 1749,
|
"x": 1087,
|
||||||
"y": 1803
|
"y": 1803
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
|
|
@ -924,11 +924,11 @@
|
||||||
"labelPercentage": 0,
|
"labelPercentage": 0,
|
||||||
"route": [
|
"route": [
|
||||||
{
|
{
|
||||||
"x": 1759,
|
"x": 1097,
|
||||||
"y": 1933
|
"y": 1933
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"x": 2177,
|
"x": 1337,
|
||||||
"y": 1933
|
"y": 1933
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
|
|
@ -963,11 +963,11 @@
|
||||||
"labelPercentage": 0,
|
"labelPercentage": 0,
|
||||||
"route": [
|
"route": [
|
||||||
{
|
{
|
||||||
"x": 1759,
|
"x": 1097,
|
||||||
"y": 2063
|
"y": 2063
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"x": 2608,
|
"x": 1587,
|
||||||
"y": 2063
|
"y": 2063
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
|
|
@ -1002,7 +1002,7 @@
|
||||||
"labelPercentage": 0,
|
"labelPercentage": 0,
|
||||||
"route": [
|
"route": [
|
||||||
{
|
{
|
||||||
"x": 1739,
|
"x": 1077,
|
||||||
"y": 2193
|
"y": 2193
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
|
|
@ -1080,11 +1080,11 @@
|
||||||
"labelPercentage": 0,
|
"labelPercentage": 0,
|
||||||
"route": [
|
"route": [
|
||||||
{
|
{
|
||||||
"x": 487,
|
"x": 337,
|
||||||
"y": 247
|
"y": 247
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"x": 487,
|
"x": 337,
|
||||||
"y": 2323
|
"y": 2323
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
|
|
@ -1119,11 +1119,11 @@
|
||||||
"labelPercentage": 0,
|
"labelPercentage": 0,
|
||||||
"route": [
|
"route": [
|
||||||
{
|
{
|
||||||
"x": 903,
|
"x": 587,
|
||||||
"y": 247
|
"y": 247
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"x": 903,
|
"x": 587,
|
||||||
"y": 2323
|
"y": 2323
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
|
|
@ -1158,11 +1158,11 @@
|
||||||
"labelPercentage": 0,
|
"labelPercentage": 0,
|
||||||
"route": [
|
"route": [
|
||||||
{
|
{
|
||||||
"x": 1326.5,
|
"x": 837.5,
|
||||||
"y": 247
|
"y": 247
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"x": 1326.5,
|
"x": 837.5,
|
||||||
"y": 2323
|
"y": 2323
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
|
|
@ -1197,11 +1197,11 @@
|
||||||
"labelPercentage": 0,
|
"labelPercentage": 0,
|
||||||
"route": [
|
"route": [
|
||||||
{
|
{
|
||||||
"x": 1749,
|
"x": 1087,
|
||||||
"y": 247
|
"y": 247
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"x": 1749,
|
"x": 1087,
|
||||||
"y": 2323
|
"y": 2323
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
|
|
@ -1236,11 +1236,11 @@
|
||||||
"labelPercentage": 0,
|
"labelPercentage": 0,
|
||||||
"route": [
|
"route": [
|
||||||
{
|
{
|
||||||
"x": 2177,
|
"x": 1337,
|
||||||
"y": 247
|
"y": 247
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"x": 2177,
|
"x": 1337,
|
||||||
"y": 2323
|
"y": 2323
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
|
|
@ -1275,11 +1275,11 @@
|
||||||
"labelPercentage": 0,
|
"labelPercentage": 0,
|
||||||
"route": [
|
"route": [
|
||||||
{
|
{
|
||||||
"x": 2608,
|
"x": 1587,
|
||||||
"y": 247
|
"y": 247
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"x": 2608,
|
"x": 1587,
|
||||||
"y": 2323
|
"y": 2323
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
|
|
@ -1314,11 +1314,11 @@
|
||||||
"labelPercentage": 0,
|
"labelPercentage": 0,
|
||||||
"route": [
|
"route": [
|
||||||
{
|
{
|
||||||
"x": 3068.5,
|
"x": 1837.5,
|
||||||
"y": 247
|
"y": 247
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"x": 3068.5,
|
"x": 1837.5,
|
||||||
"y": 2323
|
"y": 2323
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
|
|
@ -1353,11 +1353,11 @@
|
||||||
"labelPercentage": 0,
|
"labelPercentage": 0,
|
||||||
"route": [
|
"route": [
|
||||||
{
|
{
|
||||||
"x": 3540.5,
|
"x": 2087.5,
|
||||||
"y": 247
|
"y": 247
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"x": 3540.5,
|
"x": 2087.5,
|
||||||
"y": 2323
|
"y": 2323
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
|
|
|
||||||
|
Before Width: | Height: | Size: 479 KiB After Width: | Height: | Size: 479 KiB |
42
e2etests/testdata/stable/sequence_diagram_self_edges/dagre/board.exp.json
generated
vendored
|
|
@ -44,7 +44,7 @@
|
||||||
"id": "b",
|
"id": "b",
|
||||||
"type": "",
|
"type": "",
|
||||||
"pos": {
|
"pos": {
|
||||||
"x": 400,
|
"x": 250,
|
||||||
"y": 52
|
"y": 52
|
||||||
},
|
},
|
||||||
"width": 150,
|
"width": 150,
|
||||||
|
|
@ -83,7 +83,7 @@
|
||||||
"id": "b.1",
|
"id": "b.1",
|
||||||
"type": "rectangle",
|
"type": "rectangle",
|
||||||
"pos": {
|
"pos": {
|
||||||
"x": 469,
|
"x": 319,
|
||||||
"y": 673
|
"y": 673
|
||||||
},
|
},
|
||||||
"width": 12,
|
"width": 12,
|
||||||
|
|
@ -121,7 +121,7 @@
|
||||||
"id": "b.1.2",
|
"id": "b.1.2",
|
||||||
"type": "rectangle",
|
"type": "rectangle",
|
||||||
"pos": {
|
"pos": {
|
||||||
"x": 465,
|
"x": 315,
|
||||||
"y": 803
|
"y": 803
|
||||||
},
|
},
|
||||||
"width": 20,
|
"width": 20,
|
||||||
|
|
@ -235,7 +235,7 @@
|
||||||
"id": "b.3",
|
"id": "b.3",
|
||||||
"type": "rectangle",
|
"type": "rectangle",
|
||||||
"pos": {
|
"pos": {
|
||||||
"x": 469,
|
"x": 319,
|
||||||
"y": 1113
|
"y": 1113
|
||||||
},
|
},
|
||||||
"width": 12,
|
"width": 12,
|
||||||
|
|
@ -348,7 +348,7 @@
|
||||||
"y": 479
|
"y": 479
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"x": 475,
|
"x": 325,
|
||||||
"y": 479
|
"y": 479
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
|
|
@ -383,19 +383,19 @@
|
||||||
"labelPercentage": 0,
|
"labelPercentage": 0,
|
||||||
"route": [
|
"route": [
|
||||||
{
|
{
|
||||||
"x": 475,
|
"x": 325,
|
||||||
"y": 609
|
"y": 609
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"x": 555,
|
"x": 405,
|
||||||
"y": 609
|
"y": 609
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"x": 555,
|
"x": 405,
|
||||||
"y": 689
|
"y": 689
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"x": 481,
|
"x": 331,
|
||||||
"y": 689
|
"y": 689
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
|
|
@ -430,19 +430,19 @@
|
||||||
"labelPercentage": 0,
|
"labelPercentage": 0,
|
||||||
"route": [
|
"route": [
|
||||||
{
|
{
|
||||||
"x": 481,
|
"x": 331,
|
||||||
"y": 739
|
"y": 739
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"x": 555,
|
"x": 405,
|
||||||
"y": 739
|
"y": 739
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"x": 555,
|
"x": 405,
|
||||||
"y": 819
|
"y": 819
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"x": 485,
|
"x": 335,
|
||||||
"y": 819
|
"y": 819
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
|
|
@ -477,19 +477,19 @@
|
||||||
"labelPercentage": 0,
|
"labelPercentage": 0,
|
||||||
"route": [
|
"route": [
|
||||||
{
|
{
|
||||||
"x": 485,
|
"x": 335,
|
||||||
"y": 869
|
"y": 869
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"x": 555,
|
"x": 405,
|
||||||
"y": 869
|
"y": 869
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"x": 555,
|
"x": 405,
|
||||||
"y": 949
|
"y": 949
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"x": 475,
|
"x": 325,
|
||||||
"y": 949
|
"y": 949
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
|
|
@ -524,7 +524,7 @@
|
||||||
"labelPercentage": 0,
|
"labelPercentage": 0,
|
||||||
"route": [
|
"route": [
|
||||||
{
|
{
|
||||||
"x": 475,
|
"x": 325,
|
||||||
"y": 999
|
"y": 999
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
|
|
@ -567,7 +567,7 @@
|
||||||
"y": 1129
|
"y": 1129
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"x": 469,
|
"x": 319,
|
||||||
"y": 1129
|
"y": 1129
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
|
|
@ -641,11 +641,11 @@
|
||||||
"labelPercentage": 0,
|
"labelPercentage": 0,
|
||||||
"route": [
|
"route": [
|
||||||
{
|
{
|
||||||
"x": 475,
|
"x": 325,
|
||||||
"y": 219
|
"y": 219
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"x": 475,
|
"x": 325,
|
||||||
"y": 1259
|
"y": 1259
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
|
|
|
||||||
|
Before Width: | Height: | Size: 472 KiB After Width: | Height: | Size: 472 KiB |
42
e2etests/testdata/stable/sequence_diagram_self_edges/elk/board.exp.json
generated
vendored
|
|
@ -44,7 +44,7 @@
|
||||||
"id": "b",
|
"id": "b",
|
||||||
"type": "",
|
"type": "",
|
||||||
"pos": {
|
"pos": {
|
||||||
"x": 400,
|
"x": 250,
|
||||||
"y": 52
|
"y": 52
|
||||||
},
|
},
|
||||||
"width": 150,
|
"width": 150,
|
||||||
|
|
@ -83,7 +83,7 @@
|
||||||
"id": "b.1",
|
"id": "b.1",
|
||||||
"type": "rectangle",
|
"type": "rectangle",
|
||||||
"pos": {
|
"pos": {
|
||||||
"x": 469,
|
"x": 319,
|
||||||
"y": 673
|
"y": 673
|
||||||
},
|
},
|
||||||
"width": 12,
|
"width": 12,
|
||||||
|
|
@ -121,7 +121,7 @@
|
||||||
"id": "b.1.2",
|
"id": "b.1.2",
|
||||||
"type": "rectangle",
|
"type": "rectangle",
|
||||||
"pos": {
|
"pos": {
|
||||||
"x": 465,
|
"x": 315,
|
||||||
"y": 803
|
"y": 803
|
||||||
},
|
},
|
||||||
"width": 20,
|
"width": 20,
|
||||||
|
|
@ -235,7 +235,7 @@
|
||||||
"id": "b.3",
|
"id": "b.3",
|
||||||
"type": "rectangle",
|
"type": "rectangle",
|
||||||
"pos": {
|
"pos": {
|
||||||
"x": 469,
|
"x": 319,
|
||||||
"y": 1113
|
"y": 1113
|
||||||
},
|
},
|
||||||
"width": 12,
|
"width": 12,
|
||||||
|
|
@ -348,7 +348,7 @@
|
||||||
"y": 479
|
"y": 479
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"x": 475,
|
"x": 325,
|
||||||
"y": 479
|
"y": 479
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
|
|
@ -383,19 +383,19 @@
|
||||||
"labelPercentage": 0,
|
"labelPercentage": 0,
|
||||||
"route": [
|
"route": [
|
||||||
{
|
{
|
||||||
"x": 475,
|
"x": 325,
|
||||||
"y": 609
|
"y": 609
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"x": 555,
|
"x": 405,
|
||||||
"y": 609
|
"y": 609
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"x": 555,
|
"x": 405,
|
||||||
"y": 689
|
"y": 689
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"x": 481,
|
"x": 331,
|
||||||
"y": 689
|
"y": 689
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
|
|
@ -430,19 +430,19 @@
|
||||||
"labelPercentage": 0,
|
"labelPercentage": 0,
|
||||||
"route": [
|
"route": [
|
||||||
{
|
{
|
||||||
"x": 481,
|
"x": 331,
|
||||||
"y": 739
|
"y": 739
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"x": 555,
|
"x": 405,
|
||||||
"y": 739
|
"y": 739
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"x": 555,
|
"x": 405,
|
||||||
"y": 819
|
"y": 819
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"x": 485,
|
"x": 335,
|
||||||
"y": 819
|
"y": 819
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
|
|
@ -477,19 +477,19 @@
|
||||||
"labelPercentage": 0,
|
"labelPercentage": 0,
|
||||||
"route": [
|
"route": [
|
||||||
{
|
{
|
||||||
"x": 485,
|
"x": 335,
|
||||||
"y": 869
|
"y": 869
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"x": 555,
|
"x": 405,
|
||||||
"y": 869
|
"y": 869
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"x": 555,
|
"x": 405,
|
||||||
"y": 949
|
"y": 949
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"x": 475,
|
"x": 325,
|
||||||
"y": 949
|
"y": 949
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
|
|
@ -524,7 +524,7 @@
|
||||||
"labelPercentage": 0,
|
"labelPercentage": 0,
|
||||||
"route": [
|
"route": [
|
||||||
{
|
{
|
||||||
"x": 475,
|
"x": 325,
|
||||||
"y": 999
|
"y": 999
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
|
|
@ -567,7 +567,7 @@
|
||||||
"y": 1129
|
"y": 1129
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"x": 469,
|
"x": 319,
|
||||||
"y": 1129
|
"y": 1129
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
|
|
@ -641,11 +641,11 @@
|
||||||
"labelPercentage": 0,
|
"labelPercentage": 0,
|
||||||
"route": [
|
"route": [
|
||||||
{
|
{
|
||||||
"x": 475,
|
"x": 325,
|
||||||
"y": 219
|
"y": 219
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"x": 475,
|
"x": 325,
|
||||||
"y": 1259
|
"y": 1259
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
|
|
|
||||||
|
Before Width: | Height: | Size: 472 KiB After Width: | Height: | Size: 472 KiB |
56
e2etests/testdata/stable/sequence_diagram_simple/dagre/board.exp.json
generated
vendored
|
|
@ -44,7 +44,7 @@
|
||||||
"id": "bob",
|
"id": "bob",
|
||||||
"type": "person",
|
"type": "person",
|
||||||
"pos": {
|
"pos": {
|
||||||
"x": 480,
|
"x": 267,
|
||||||
"y": 124
|
"y": 124
|
||||||
},
|
},
|
||||||
"width": 150,
|
"width": 150,
|
||||||
|
|
@ -83,7 +83,7 @@
|
||||||
"id": "db",
|
"id": "db",
|
||||||
"type": "cylinder",
|
"type": "cylinder",
|
||||||
"pos": {
|
"pos": {
|
||||||
"x": 947,
|
"x": 584,
|
||||||
"y": 136
|
"y": 136
|
||||||
},
|
},
|
||||||
"width": 150,
|
"width": 150,
|
||||||
|
|
@ -122,7 +122,7 @@
|
||||||
"id": "queue",
|
"id": "queue",
|
||||||
"type": "queue",
|
"type": "queue",
|
||||||
"pos": {
|
"pos": {
|
||||||
"x": 1414,
|
"x": 901,
|
||||||
"y": 161
|
"y": 161
|
||||||
},
|
},
|
||||||
"width": 150,
|
"width": 150,
|
||||||
|
|
@ -161,7 +161,7 @@
|
||||||
"id": "service",
|
"id": "service",
|
||||||
"type": "",
|
"type": "",
|
||||||
"pos": {
|
"pos": {
|
||||||
"x": 1881,
|
"x": 1192,
|
||||||
"y": 50
|
"y": 50
|
||||||
},
|
},
|
||||||
"width": 202,
|
"width": 202,
|
||||||
|
|
@ -228,7 +228,7 @@
|
||||||
"y": 418
|
"y": 418
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"x": 555,
|
"x": 342,
|
||||||
"y": 418
|
"y": 418
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
|
|
@ -263,11 +263,11 @@
|
||||||
"labelPercentage": 0,
|
"labelPercentage": 0,
|
||||||
"route": [
|
"route": [
|
||||||
{
|
{
|
||||||
"x": 555,
|
"x": 342,
|
||||||
"y": 548
|
"y": 548
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"x": 1982,
|
"x": 1293,
|
||||||
"y": 548
|
"y": 548
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
|
|
@ -302,11 +302,11 @@
|
||||||
"labelPercentage": 0,
|
"labelPercentage": 0,
|
||||||
"route": [
|
"route": [
|
||||||
{
|
{
|
||||||
"x": 1982,
|
"x": 1293,
|
||||||
"y": 678
|
"y": 678
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"x": 1022,
|
"x": 659,
|
||||||
"y": 678
|
"y": 678
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
|
|
@ -341,11 +341,11 @@
|
||||||
"labelPercentage": 0,
|
"labelPercentage": 0,
|
||||||
"route": [
|
"route": [
|
||||||
{
|
{
|
||||||
"x": 1022,
|
"x": 659,
|
||||||
"y": 808
|
"y": 808
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"x": 1982,
|
"x": 1293,
|
||||||
"y": 808
|
"y": 808
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
|
|
@ -380,11 +380,11 @@
|
||||||
"labelPercentage": 0,
|
"labelPercentage": 0,
|
||||||
"route": [
|
"route": [
|
||||||
{
|
{
|
||||||
"x": 1982,
|
"x": 1293,
|
||||||
"y": 938
|
"y": 938
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"x": 555,
|
"x": 342,
|
||||||
"y": 938
|
"y": 938
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
|
|
@ -419,7 +419,7 @@
|
||||||
"labelPercentage": 0,
|
"labelPercentage": 0,
|
||||||
"route": [
|
"route": [
|
||||||
{
|
{
|
||||||
"x": 555,
|
"x": 342,
|
||||||
"y": 1068
|
"y": 1068
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
|
|
@ -462,7 +462,7 @@
|
||||||
"y": 1198
|
"y": 1198
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"x": 555,
|
"x": 342,
|
||||||
"y": 1198
|
"y": 1198
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
|
|
@ -497,11 +497,11 @@
|
||||||
"labelPercentage": 0,
|
"labelPercentage": 0,
|
||||||
"route": [
|
"route": [
|
||||||
{
|
{
|
||||||
"x": 555,
|
"x": 342,
|
||||||
"y": 1328
|
"y": 1328
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"x": 1489,
|
"x": 976,
|
||||||
"y": 1328
|
"y": 1328
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
|
|
@ -536,11 +536,11 @@
|
||||||
"labelPercentage": 0,
|
"labelPercentage": 0,
|
||||||
"route": [
|
"route": [
|
||||||
{
|
{
|
||||||
"x": 1489,
|
"x": 976,
|
||||||
"y": 1458
|
"y": 1458
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"x": 555,
|
"x": 342,
|
||||||
"y": 1458
|
"y": 1458
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
|
|
@ -575,7 +575,7 @@
|
||||||
"labelPercentage": 0,
|
"labelPercentage": 0,
|
||||||
"route": [
|
"route": [
|
||||||
{
|
{
|
||||||
"x": 555,
|
"x": 342,
|
||||||
"y": 1588
|
"y": 1588
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
|
|
@ -653,11 +653,11 @@
|
||||||
"labelPercentage": 0,
|
"labelPercentage": 0,
|
||||||
"route": [
|
"route": [
|
||||||
{
|
{
|
||||||
"x": 555,
|
"x": 342,
|
||||||
"y": 293
|
"y": 293
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"x": 555,
|
"x": 342,
|
||||||
"y": 1718
|
"y": 1718
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
|
|
@ -692,11 +692,11 @@
|
||||||
"labelPercentage": 0,
|
"labelPercentage": 0,
|
||||||
"route": [
|
"route": [
|
||||||
{
|
{
|
||||||
"x": 1022,
|
"x": 659,
|
||||||
"y": 288
|
"y": 288
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"x": 1022,
|
"x": 659,
|
||||||
"y": 1718
|
"y": 1718
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
|
|
@ -731,11 +731,11 @@
|
||||||
"labelPercentage": 0,
|
"labelPercentage": 0,
|
||||||
"route": [
|
"route": [
|
||||||
{
|
{
|
||||||
"x": 1489,
|
"x": 976,
|
||||||
"y": 288
|
"y": 288
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"x": 1489,
|
"x": 976,
|
||||||
"y": 1718
|
"y": 1718
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
|
|
@ -770,11 +770,11 @@
|
||||||
"labelPercentage": 0,
|
"labelPercentage": 0,
|
||||||
"route": [
|
"route": [
|
||||||
{
|
{
|
||||||
"x": 1982,
|
"x": 1293,
|
||||||
"y": 288
|
"y": 288
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"x": 1982,
|
"x": 1293,
|
||||||
"y": 1718
|
"y": 1718
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
|
|
|
||||||
|
Before Width: | Height: | Size: 475 KiB After Width: | Height: | Size: 475 KiB |
56
e2etests/testdata/stable/sequence_diagram_simple/elk/board.exp.json
generated
vendored
|
|
@ -44,7 +44,7 @@
|
||||||
"id": "bob",
|
"id": "bob",
|
||||||
"type": "person",
|
"type": "person",
|
||||||
"pos": {
|
"pos": {
|
||||||
"x": 480,
|
"x": 267,
|
||||||
"y": 124
|
"y": 124
|
||||||
},
|
},
|
||||||
"width": 150,
|
"width": 150,
|
||||||
|
|
@ -83,7 +83,7 @@
|
||||||
"id": "db",
|
"id": "db",
|
||||||
"type": "cylinder",
|
"type": "cylinder",
|
||||||
"pos": {
|
"pos": {
|
||||||
"x": 947,
|
"x": 584,
|
||||||
"y": 136
|
"y": 136
|
||||||
},
|
},
|
||||||
"width": 150,
|
"width": 150,
|
||||||
|
|
@ -122,7 +122,7 @@
|
||||||
"id": "queue",
|
"id": "queue",
|
||||||
"type": "queue",
|
"type": "queue",
|
||||||
"pos": {
|
"pos": {
|
||||||
"x": 1414,
|
"x": 901,
|
||||||
"y": 161
|
"y": 161
|
||||||
},
|
},
|
||||||
"width": 150,
|
"width": 150,
|
||||||
|
|
@ -161,7 +161,7 @@
|
||||||
"id": "service",
|
"id": "service",
|
||||||
"type": "",
|
"type": "",
|
||||||
"pos": {
|
"pos": {
|
||||||
"x": 1881,
|
"x": 1192,
|
||||||
"y": 50
|
"y": 50
|
||||||
},
|
},
|
||||||
"width": 202,
|
"width": 202,
|
||||||
|
|
@ -228,7 +228,7 @@
|
||||||
"y": 418
|
"y": 418
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"x": 555,
|
"x": 342,
|
||||||
"y": 418
|
"y": 418
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
|
|
@ -263,11 +263,11 @@
|
||||||
"labelPercentage": 0,
|
"labelPercentage": 0,
|
||||||
"route": [
|
"route": [
|
||||||
{
|
{
|
||||||
"x": 555,
|
"x": 342,
|
||||||
"y": 548
|
"y": 548
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"x": 1982,
|
"x": 1293,
|
||||||
"y": 548
|
"y": 548
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
|
|
@ -302,11 +302,11 @@
|
||||||
"labelPercentage": 0,
|
"labelPercentage": 0,
|
||||||
"route": [
|
"route": [
|
||||||
{
|
{
|
||||||
"x": 1982,
|
"x": 1293,
|
||||||
"y": 678
|
"y": 678
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"x": 1022,
|
"x": 659,
|
||||||
"y": 678
|
"y": 678
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
|
|
@ -341,11 +341,11 @@
|
||||||
"labelPercentage": 0,
|
"labelPercentage": 0,
|
||||||
"route": [
|
"route": [
|
||||||
{
|
{
|
||||||
"x": 1022,
|
"x": 659,
|
||||||
"y": 808
|
"y": 808
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"x": 1982,
|
"x": 1293,
|
||||||
"y": 808
|
"y": 808
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
|
|
@ -380,11 +380,11 @@
|
||||||
"labelPercentage": 0,
|
"labelPercentage": 0,
|
||||||
"route": [
|
"route": [
|
||||||
{
|
{
|
||||||
"x": 1982,
|
"x": 1293,
|
||||||
"y": 938
|
"y": 938
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"x": 555,
|
"x": 342,
|
||||||
"y": 938
|
"y": 938
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
|
|
@ -419,7 +419,7 @@
|
||||||
"labelPercentage": 0,
|
"labelPercentage": 0,
|
||||||
"route": [
|
"route": [
|
||||||
{
|
{
|
||||||
"x": 555,
|
"x": 342,
|
||||||
"y": 1068
|
"y": 1068
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
|
|
@ -462,7 +462,7 @@
|
||||||
"y": 1198
|
"y": 1198
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"x": 555,
|
"x": 342,
|
||||||
"y": 1198
|
"y": 1198
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
|
|
@ -497,11 +497,11 @@
|
||||||
"labelPercentage": 0,
|
"labelPercentage": 0,
|
||||||
"route": [
|
"route": [
|
||||||
{
|
{
|
||||||
"x": 555,
|
"x": 342,
|
||||||
"y": 1328
|
"y": 1328
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"x": 1489,
|
"x": 976,
|
||||||
"y": 1328
|
"y": 1328
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
|
|
@ -536,11 +536,11 @@
|
||||||
"labelPercentage": 0,
|
"labelPercentage": 0,
|
||||||
"route": [
|
"route": [
|
||||||
{
|
{
|
||||||
"x": 1489,
|
"x": 976,
|
||||||
"y": 1458
|
"y": 1458
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"x": 555,
|
"x": 342,
|
||||||
"y": 1458
|
"y": 1458
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
|
|
@ -575,7 +575,7 @@
|
||||||
"labelPercentage": 0,
|
"labelPercentage": 0,
|
||||||
"route": [
|
"route": [
|
||||||
{
|
{
|
||||||
"x": 555,
|
"x": 342,
|
||||||
"y": 1588
|
"y": 1588
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
|
|
@ -653,11 +653,11 @@
|
||||||
"labelPercentage": 0,
|
"labelPercentage": 0,
|
||||||
"route": [
|
"route": [
|
||||||
{
|
{
|
||||||
"x": 555,
|
"x": 342,
|
||||||
"y": 293
|
"y": 293
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"x": 555,
|
"x": 342,
|
||||||
"y": 1718
|
"y": 1718
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
|
|
@ -692,11 +692,11 @@
|
||||||
"labelPercentage": 0,
|
"labelPercentage": 0,
|
||||||
"route": [
|
"route": [
|
||||||
{
|
{
|
||||||
"x": 1022,
|
"x": 659,
|
||||||
"y": 288
|
"y": 288
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"x": 1022,
|
"x": 659,
|
||||||
"y": 1718
|
"y": 1718
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
|
|
@ -731,11 +731,11 @@
|
||||||
"labelPercentage": 0,
|
"labelPercentage": 0,
|
||||||
"route": [
|
"route": [
|
||||||
{
|
{
|
||||||
"x": 1489,
|
"x": 976,
|
||||||
"y": 288
|
"y": 288
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"x": 1489,
|
"x": 976,
|
||||||
"y": 1718
|
"y": 1718
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
|
|
@ -770,11 +770,11 @@
|
||||||
"labelPercentage": 0,
|
"labelPercentage": 0,
|
||||||
"route": [
|
"route": [
|
||||||
{
|
{
|
||||||
"x": 1982,
|
"x": 1293,
|
||||||
"y": 288
|
"y": 288
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"x": 1982,
|
"x": 1293,
|
||||||
"y": 1718
|
"y": 1718
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
|
|
|
||||||
|
Before Width: | Height: | Size: 475 KiB After Width: | Height: | Size: 475 KiB |
80
e2etests/testdata/stable/sequence_diagram_span/dagre/board.exp.json
generated
vendored
|
|
@ -82,7 +82,7 @@
|
||||||
"id": "itemResponse",
|
"id": "itemResponse",
|
||||||
"type": "",
|
"type": "",
|
||||||
"pos": {
|
"pos": {
|
||||||
"x": 400,
|
"x": 225,
|
||||||
"y": 64
|
"y": 64
|
||||||
},
|
},
|
||||||
"width": 200,
|
"width": 200,
|
||||||
|
|
@ -121,7 +121,7 @@
|
||||||
"id": "itemResponse.t",
|
"id": "itemResponse.t",
|
||||||
"type": "rectangle",
|
"type": "rectangle",
|
||||||
"pos": {
|
"pos": {
|
||||||
"x": 494,
|
"x": 319,
|
||||||
"y": 304
|
"y": 304
|
||||||
},
|
},
|
||||||
"width": 12,
|
"width": 12,
|
||||||
|
|
@ -159,7 +159,7 @@
|
||||||
"id": "item",
|
"id": "item",
|
||||||
"type": "",
|
"type": "",
|
||||||
"pos": {
|
"pos": {
|
||||||
"x": 850,
|
"x": 500,
|
||||||
"y": 50
|
"y": 50
|
||||||
},
|
},
|
||||||
"width": 150,
|
"width": 150,
|
||||||
|
|
@ -198,7 +198,7 @@
|
||||||
"id": "item.t1",
|
"id": "item.t1",
|
||||||
"type": "rectangle",
|
"type": "rectangle",
|
||||||
"pos": {
|
"pos": {
|
||||||
"x": 919,
|
"x": 569,
|
||||||
"y": 564
|
"y": 564
|
||||||
},
|
},
|
||||||
"width": 12,
|
"width": 12,
|
||||||
|
|
@ -236,7 +236,7 @@
|
||||||
"id": "essayRubric",
|
"id": "essayRubric",
|
||||||
"type": "",
|
"type": "",
|
||||||
"pos": {
|
"pos": {
|
||||||
"x": 1250,
|
"x": 732,
|
||||||
"y": 64
|
"y": 64
|
||||||
},
|
},
|
||||||
"width": 186,
|
"width": 186,
|
||||||
|
|
@ -275,7 +275,7 @@
|
||||||
"id": "essayRubric.t",
|
"id": "essayRubric.t",
|
||||||
"type": "rectangle",
|
"type": "rectangle",
|
||||||
"pos": {
|
"pos": {
|
||||||
"x": 1337,
|
"x": 819,
|
||||||
"y": 824
|
"y": 824
|
||||||
},
|
},
|
||||||
"width": 12,
|
"width": 12,
|
||||||
|
|
@ -313,7 +313,7 @@
|
||||||
"id": "essayRubric.t.c",
|
"id": "essayRubric.t.c",
|
||||||
"type": "rectangle",
|
"type": "rectangle",
|
||||||
"pos": {
|
"pos": {
|
||||||
"x": 1333,
|
"x": 815,
|
||||||
"y": 954
|
"y": 954
|
||||||
},
|
},
|
||||||
"width": 20,
|
"width": 20,
|
||||||
|
|
@ -351,7 +351,7 @@
|
||||||
"id": "concept",
|
"id": "concept",
|
||||||
"type": "",
|
"type": "",
|
||||||
"pos": {
|
"pos": {
|
||||||
"x": 1686,
|
"x": 995,
|
||||||
"y": 64
|
"y": 64
|
||||||
},
|
},
|
||||||
"width": 160,
|
"width": 160,
|
||||||
|
|
@ -390,7 +390,7 @@
|
||||||
"id": "concept.t",
|
"id": "concept.t",
|
||||||
"type": "rectangle",
|
"type": "rectangle",
|
||||||
"pos": {
|
"pos": {
|
||||||
"x": 1760,
|
"x": 1069,
|
||||||
"y": 1084
|
"y": 1084
|
||||||
},
|
},
|
||||||
"width": 12,
|
"width": 12,
|
||||||
|
|
@ -428,7 +428,7 @@
|
||||||
"id": "itemOutcome",
|
"id": "itemOutcome",
|
||||||
"type": "",
|
"type": "",
|
||||||
"pos": {
|
"pos": {
|
||||||
"x": 2096,
|
"x": 1227,
|
||||||
"y": 64
|
"y": 64
|
||||||
},
|
},
|
||||||
"width": 197,
|
"width": 197,
|
||||||
|
|
@ -467,7 +467,7 @@
|
||||||
"id": "itemOutcome.t1",
|
"id": "itemOutcome.t1",
|
||||||
"type": "rectangle",
|
"type": "rectangle",
|
||||||
"pos": {
|
"pos": {
|
||||||
"x": 2188,
|
"x": 1319,
|
||||||
"y": 1344
|
"y": 1344
|
||||||
},
|
},
|
||||||
"width": 12,
|
"width": 12,
|
||||||
|
|
@ -505,7 +505,7 @@
|
||||||
"id": "item.t2",
|
"id": "item.t2",
|
||||||
"type": "rectangle",
|
"type": "rectangle",
|
||||||
"pos": {
|
"pos": {
|
||||||
"x": 919,
|
"x": 569,
|
||||||
"y": 1474
|
"y": 1474
|
||||||
},
|
},
|
||||||
"width": 12,
|
"width": 12,
|
||||||
|
|
@ -543,7 +543,7 @@
|
||||||
"id": "item.t3",
|
"id": "item.t3",
|
||||||
"type": "rectangle",
|
"type": "rectangle",
|
||||||
"pos": {
|
"pos": {
|
||||||
"x": 919,
|
"x": 569,
|
||||||
"y": 1604
|
"y": 1604
|
||||||
},
|
},
|
||||||
"width": 12,
|
"width": 12,
|
||||||
|
|
@ -581,7 +581,7 @@
|
||||||
"id": "itemOutcome.t2",
|
"id": "itemOutcome.t2",
|
||||||
"type": "rectangle",
|
"type": "rectangle",
|
||||||
"pos": {
|
"pos": {
|
||||||
"x": 2188,
|
"x": 1319,
|
||||||
"y": 1734
|
"y": 1734
|
||||||
},
|
},
|
||||||
"width": 12,
|
"width": 12,
|
||||||
|
|
@ -619,7 +619,7 @@
|
||||||
"id": "itemOutcome.t3",
|
"id": "itemOutcome.t3",
|
||||||
"type": "rectangle",
|
"type": "rectangle",
|
||||||
"pos": {
|
"pos": {
|
||||||
"x": 2188,
|
"x": 1319,
|
||||||
"y": 1864
|
"y": 1864
|
||||||
},
|
},
|
||||||
"width": 12,
|
"width": 12,
|
||||||
|
|
@ -685,7 +685,7 @@
|
||||||
"y": 320
|
"y": 320
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"x": 494,
|
"x": 319,
|
||||||
"y": 320
|
"y": 320
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
|
|
@ -724,7 +724,7 @@
|
||||||
"y": 450
|
"y": 450
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"x": 494,
|
"x": 319,
|
||||||
"y": 450
|
"y": 450
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
|
|
@ -763,7 +763,7 @@
|
||||||
"y": 580
|
"y": 580
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"x": 919,
|
"x": 569,
|
||||||
"y": 580
|
"y": 580
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
|
|
@ -802,7 +802,7 @@
|
||||||
"y": 710
|
"y": 710
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"x": 919,
|
"x": 569,
|
||||||
"y": 710
|
"y": 710
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
|
|
@ -841,7 +841,7 @@
|
||||||
"y": 840
|
"y": 840
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"x": 1337,
|
"x": 819,
|
||||||
"y": 840
|
"y": 840
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
|
|
@ -876,11 +876,11 @@
|
||||||
"labelPercentage": 0,
|
"labelPercentage": 0,
|
||||||
"route": [
|
"route": [
|
||||||
{
|
{
|
||||||
"x": 500,
|
"x": 325,
|
||||||
"y": 970
|
"y": 970
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"x": 1333,
|
"x": 815,
|
||||||
"y": 970
|
"y": 970
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
|
|
@ -915,11 +915,11 @@
|
||||||
"labelPercentage": 0,
|
"labelPercentage": 0,
|
||||||
"route": [
|
"route": [
|
||||||
{
|
{
|
||||||
"x": 1353,
|
"x": 835,
|
||||||
"y": 1100
|
"y": 1100
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"x": 1760,
|
"x": 1069,
|
||||||
"y": 1100
|
"y": 1100
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
|
|
@ -958,7 +958,7 @@
|
||||||
"y": 1230
|
"y": 1230
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"x": 1337,
|
"x": 819,
|
||||||
"y": 1230
|
"y": 1230
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
|
|
@ -997,7 +997,7 @@
|
||||||
"y": 1360
|
"y": 1360
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"x": 2188.5,
|
"x": 1319.5,
|
||||||
"y": 1360
|
"y": 1360
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
|
|
@ -1036,7 +1036,7 @@
|
||||||
"y": 1490
|
"y": 1490
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"x": 919,
|
"x": 569,
|
||||||
"y": 1490
|
"y": 1490
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
|
|
@ -1075,7 +1075,7 @@
|
||||||
"y": 1620
|
"y": 1620
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"x": 919,
|
"x": 569,
|
||||||
"y": 1620
|
"y": 1620
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
|
|
@ -1114,7 +1114,7 @@
|
||||||
"y": 1750
|
"y": 1750
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"x": 2188.5,
|
"x": 1319.5,
|
||||||
"y": 1750
|
"y": 1750
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
|
|
@ -1153,7 +1153,7 @@
|
||||||
"y": 1880
|
"y": 1880
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"x": 2188.5,
|
"x": 1319.5,
|
||||||
"y": 1880
|
"y": 1880
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
|
|
@ -1227,11 +1227,11 @@
|
||||||
"labelPercentage": 0,
|
"labelPercentage": 0,
|
||||||
"route": [
|
"route": [
|
||||||
{
|
{
|
||||||
"x": 500,
|
"x": 325,
|
||||||
"y": 190
|
"y": 190
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"x": 500,
|
"x": 325,
|
||||||
"y": 2010
|
"y": 2010
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
|
|
@ -1266,11 +1266,11 @@
|
||||||
"labelPercentage": 0,
|
"labelPercentage": 0,
|
||||||
"route": [
|
"route": [
|
||||||
{
|
{
|
||||||
"x": 925,
|
"x": 575,
|
||||||
"y": 190
|
"y": 190
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"x": 925,
|
"x": 575,
|
||||||
"y": 2010
|
"y": 2010
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
|
|
@ -1305,11 +1305,11 @@
|
||||||
"labelPercentage": 0,
|
"labelPercentage": 0,
|
||||||
"route": [
|
"route": [
|
||||||
{
|
{
|
||||||
"x": 1343,
|
"x": 825,
|
||||||
"y": 190
|
"y": 190
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"x": 1343,
|
"x": 825,
|
||||||
"y": 2010
|
"y": 2010
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
|
|
@ -1344,11 +1344,11 @@
|
||||||
"labelPercentage": 0,
|
"labelPercentage": 0,
|
||||||
"route": [
|
"route": [
|
||||||
{
|
{
|
||||||
"x": 1766,
|
"x": 1075,
|
||||||
"y": 190
|
"y": 190
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"x": 1766,
|
"x": 1075,
|
||||||
"y": 2010
|
"y": 2010
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
|
|
@ -1383,11 +1383,11 @@
|
||||||
"labelPercentage": 0,
|
"labelPercentage": 0,
|
||||||
"route": [
|
"route": [
|
||||||
{
|
{
|
||||||
"x": 2194.5,
|
"x": 1325.5,
|
||||||
"y": 190
|
"y": 190
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"x": 2194.5,
|
"x": 1325.5,
|
||||||
"y": 2010
|
"y": 2010
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
|
|
|
||||||
|
Before Width: | Height: | Size: 477 KiB After Width: | Height: | Size: 477 KiB |
80
e2etests/testdata/stable/sequence_diagram_span/elk/board.exp.json
generated
vendored
|
|
@ -82,7 +82,7 @@
|
||||||
"id": "itemResponse",
|
"id": "itemResponse",
|
||||||
"type": "",
|
"type": "",
|
||||||
"pos": {
|
"pos": {
|
||||||
"x": 400,
|
"x": 225,
|
||||||
"y": 64
|
"y": 64
|
||||||
},
|
},
|
||||||
"width": 200,
|
"width": 200,
|
||||||
|
|
@ -121,7 +121,7 @@
|
||||||
"id": "itemResponse.t",
|
"id": "itemResponse.t",
|
||||||
"type": "rectangle",
|
"type": "rectangle",
|
||||||
"pos": {
|
"pos": {
|
||||||
"x": 494,
|
"x": 319,
|
||||||
"y": 304
|
"y": 304
|
||||||
},
|
},
|
||||||
"width": 12,
|
"width": 12,
|
||||||
|
|
@ -159,7 +159,7 @@
|
||||||
"id": "item",
|
"id": "item",
|
||||||
"type": "",
|
"type": "",
|
||||||
"pos": {
|
"pos": {
|
||||||
"x": 850,
|
"x": 500,
|
||||||
"y": 50
|
"y": 50
|
||||||
},
|
},
|
||||||
"width": 150,
|
"width": 150,
|
||||||
|
|
@ -198,7 +198,7 @@
|
||||||
"id": "item.t1",
|
"id": "item.t1",
|
||||||
"type": "rectangle",
|
"type": "rectangle",
|
||||||
"pos": {
|
"pos": {
|
||||||
"x": 919,
|
"x": 569,
|
||||||
"y": 564
|
"y": 564
|
||||||
},
|
},
|
||||||
"width": 12,
|
"width": 12,
|
||||||
|
|
@ -236,7 +236,7 @@
|
||||||
"id": "essayRubric",
|
"id": "essayRubric",
|
||||||
"type": "",
|
"type": "",
|
||||||
"pos": {
|
"pos": {
|
||||||
"x": 1250,
|
"x": 732,
|
||||||
"y": 64
|
"y": 64
|
||||||
},
|
},
|
||||||
"width": 186,
|
"width": 186,
|
||||||
|
|
@ -275,7 +275,7 @@
|
||||||
"id": "essayRubric.t",
|
"id": "essayRubric.t",
|
||||||
"type": "rectangle",
|
"type": "rectangle",
|
||||||
"pos": {
|
"pos": {
|
||||||
"x": 1337,
|
"x": 819,
|
||||||
"y": 824
|
"y": 824
|
||||||
},
|
},
|
||||||
"width": 12,
|
"width": 12,
|
||||||
|
|
@ -313,7 +313,7 @@
|
||||||
"id": "essayRubric.t.c",
|
"id": "essayRubric.t.c",
|
||||||
"type": "rectangle",
|
"type": "rectangle",
|
||||||
"pos": {
|
"pos": {
|
||||||
"x": 1333,
|
"x": 815,
|
||||||
"y": 954
|
"y": 954
|
||||||
},
|
},
|
||||||
"width": 20,
|
"width": 20,
|
||||||
|
|
@ -351,7 +351,7 @@
|
||||||
"id": "concept",
|
"id": "concept",
|
||||||
"type": "",
|
"type": "",
|
||||||
"pos": {
|
"pos": {
|
||||||
"x": 1686,
|
"x": 995,
|
||||||
"y": 64
|
"y": 64
|
||||||
},
|
},
|
||||||
"width": 160,
|
"width": 160,
|
||||||
|
|
@ -390,7 +390,7 @@
|
||||||
"id": "concept.t",
|
"id": "concept.t",
|
||||||
"type": "rectangle",
|
"type": "rectangle",
|
||||||
"pos": {
|
"pos": {
|
||||||
"x": 1760,
|
"x": 1069,
|
||||||
"y": 1084
|
"y": 1084
|
||||||
},
|
},
|
||||||
"width": 12,
|
"width": 12,
|
||||||
|
|
@ -428,7 +428,7 @@
|
||||||
"id": "itemOutcome",
|
"id": "itemOutcome",
|
||||||
"type": "",
|
"type": "",
|
||||||
"pos": {
|
"pos": {
|
||||||
"x": 2096,
|
"x": 1227,
|
||||||
"y": 64
|
"y": 64
|
||||||
},
|
},
|
||||||
"width": 197,
|
"width": 197,
|
||||||
|
|
@ -467,7 +467,7 @@
|
||||||
"id": "itemOutcome.t1",
|
"id": "itemOutcome.t1",
|
||||||
"type": "rectangle",
|
"type": "rectangle",
|
||||||
"pos": {
|
"pos": {
|
||||||
"x": 2188,
|
"x": 1319,
|
||||||
"y": 1344
|
"y": 1344
|
||||||
},
|
},
|
||||||
"width": 12,
|
"width": 12,
|
||||||
|
|
@ -505,7 +505,7 @@
|
||||||
"id": "item.t2",
|
"id": "item.t2",
|
||||||
"type": "rectangle",
|
"type": "rectangle",
|
||||||
"pos": {
|
"pos": {
|
||||||
"x": 919,
|
"x": 569,
|
||||||
"y": 1474
|
"y": 1474
|
||||||
},
|
},
|
||||||
"width": 12,
|
"width": 12,
|
||||||
|
|
@ -543,7 +543,7 @@
|
||||||
"id": "item.t3",
|
"id": "item.t3",
|
||||||
"type": "rectangle",
|
"type": "rectangle",
|
||||||
"pos": {
|
"pos": {
|
||||||
"x": 919,
|
"x": 569,
|
||||||
"y": 1604
|
"y": 1604
|
||||||
},
|
},
|
||||||
"width": 12,
|
"width": 12,
|
||||||
|
|
@ -581,7 +581,7 @@
|
||||||
"id": "itemOutcome.t2",
|
"id": "itemOutcome.t2",
|
||||||
"type": "rectangle",
|
"type": "rectangle",
|
||||||
"pos": {
|
"pos": {
|
||||||
"x": 2188,
|
"x": 1319,
|
||||||
"y": 1734
|
"y": 1734
|
||||||
},
|
},
|
||||||
"width": 12,
|
"width": 12,
|
||||||
|
|
@ -619,7 +619,7 @@
|
||||||
"id": "itemOutcome.t3",
|
"id": "itemOutcome.t3",
|
||||||
"type": "rectangle",
|
"type": "rectangle",
|
||||||
"pos": {
|
"pos": {
|
||||||
"x": 2188,
|
"x": 1319,
|
||||||
"y": 1864
|
"y": 1864
|
||||||
},
|
},
|
||||||
"width": 12,
|
"width": 12,
|
||||||
|
|
@ -685,7 +685,7 @@
|
||||||
"y": 320
|
"y": 320
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"x": 494,
|
"x": 319,
|
||||||
"y": 320
|
"y": 320
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
|
|
@ -724,7 +724,7 @@
|
||||||
"y": 450
|
"y": 450
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"x": 494,
|
"x": 319,
|
||||||
"y": 450
|
"y": 450
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
|
|
@ -763,7 +763,7 @@
|
||||||
"y": 580
|
"y": 580
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"x": 919,
|
"x": 569,
|
||||||
"y": 580
|
"y": 580
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
|
|
@ -802,7 +802,7 @@
|
||||||
"y": 710
|
"y": 710
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"x": 919,
|
"x": 569,
|
||||||
"y": 710
|
"y": 710
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
|
|
@ -841,7 +841,7 @@
|
||||||
"y": 840
|
"y": 840
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"x": 1337,
|
"x": 819,
|
||||||
"y": 840
|
"y": 840
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
|
|
@ -876,11 +876,11 @@
|
||||||
"labelPercentage": 0,
|
"labelPercentage": 0,
|
||||||
"route": [
|
"route": [
|
||||||
{
|
{
|
||||||
"x": 500,
|
"x": 325,
|
||||||
"y": 970
|
"y": 970
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"x": 1333,
|
"x": 815,
|
||||||
"y": 970
|
"y": 970
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
|
|
@ -915,11 +915,11 @@
|
||||||
"labelPercentage": 0,
|
"labelPercentage": 0,
|
||||||
"route": [
|
"route": [
|
||||||
{
|
{
|
||||||
"x": 1353,
|
"x": 835,
|
||||||
"y": 1100
|
"y": 1100
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"x": 1760,
|
"x": 1069,
|
||||||
"y": 1100
|
"y": 1100
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
|
|
@ -958,7 +958,7 @@
|
||||||
"y": 1230
|
"y": 1230
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"x": 1337,
|
"x": 819,
|
||||||
"y": 1230
|
"y": 1230
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
|
|
@ -997,7 +997,7 @@
|
||||||
"y": 1360
|
"y": 1360
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"x": 2188.5,
|
"x": 1319.5,
|
||||||
"y": 1360
|
"y": 1360
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
|
|
@ -1036,7 +1036,7 @@
|
||||||
"y": 1490
|
"y": 1490
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"x": 919,
|
"x": 569,
|
||||||
"y": 1490
|
"y": 1490
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
|
|
@ -1075,7 +1075,7 @@
|
||||||
"y": 1620
|
"y": 1620
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"x": 919,
|
"x": 569,
|
||||||
"y": 1620
|
"y": 1620
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
|
|
@ -1114,7 +1114,7 @@
|
||||||
"y": 1750
|
"y": 1750
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"x": 2188.5,
|
"x": 1319.5,
|
||||||
"y": 1750
|
"y": 1750
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
|
|
@ -1153,7 +1153,7 @@
|
||||||
"y": 1880
|
"y": 1880
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"x": 2188.5,
|
"x": 1319.5,
|
||||||
"y": 1880
|
"y": 1880
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
|
|
@ -1227,11 +1227,11 @@
|
||||||
"labelPercentage": 0,
|
"labelPercentage": 0,
|
||||||
"route": [
|
"route": [
|
||||||
{
|
{
|
||||||
"x": 500,
|
"x": 325,
|
||||||
"y": 190
|
"y": 190
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"x": 500,
|
"x": 325,
|
||||||
"y": 2010
|
"y": 2010
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
|
|
@ -1266,11 +1266,11 @@
|
||||||
"labelPercentage": 0,
|
"labelPercentage": 0,
|
||||||
"route": [
|
"route": [
|
||||||
{
|
{
|
||||||
"x": 925,
|
"x": 575,
|
||||||
"y": 190
|
"y": 190
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"x": 925,
|
"x": 575,
|
||||||
"y": 2010
|
"y": 2010
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
|
|
@ -1305,11 +1305,11 @@
|
||||||
"labelPercentage": 0,
|
"labelPercentage": 0,
|
||||||
"route": [
|
"route": [
|
||||||
{
|
{
|
||||||
"x": 1343,
|
"x": 825,
|
||||||
"y": 190
|
"y": 190
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"x": 1343,
|
"x": 825,
|
||||||
"y": 2010
|
"y": 2010
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
|
|
@ -1344,11 +1344,11 @@
|
||||||
"labelPercentage": 0,
|
"labelPercentage": 0,
|
||||||
"route": [
|
"route": [
|
||||||
{
|
{
|
||||||
"x": 1766,
|
"x": 1075,
|
||||||
"y": 190
|
"y": 190
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"x": 1766,
|
"x": 1075,
|
||||||
"y": 2010
|
"y": 2010
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
|
|
@ -1383,11 +1383,11 @@
|
||||||
"labelPercentage": 0,
|
"labelPercentage": 0,
|
||||||
"route": [
|
"route": [
|
||||||
{
|
{
|
||||||
"x": 2194.5,
|
"x": 1325.5,
|
||||||
"y": 190
|
"y": 190
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"x": 2194.5,
|
"x": 1325.5,
|
||||||
"y": 2010
|
"y": 2010
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
|
|
|
||||||
|
Before Width: | Height: | Size: 477 KiB After Width: | Height: | Size: 477 KiB |
390
e2etests/testdata/stable/sequence_diagrams/dagre/board.exp.json
generated
vendored
|
Before Width: | Height: | Size: 501 KiB After Width: | Height: | Size: 501 KiB |
346
e2etests/testdata/stable/sequence_diagrams/elk/board.exp.json
generated
vendored
|
Before Width: | Height: | Size: 501 KiB After Width: | Height: | Size: 501 KiB |