Handle case without edges between actors
|
|
@ -6,7 +6,7 @@ const HORIZONTAL_PAD = 50.
|
|||
// leaves at least 25 units of space on the top/bottom when computing the space required between messages
|
||||
const VERTICAL_PAD = 50.
|
||||
|
||||
const MIN_ACTOR_DISTANCE = 70.
|
||||
const MIN_ACTOR_DISTANCE = 250.
|
||||
|
||||
const MIN_ACTOR_WIDTH = 150.
|
||||
|
||||
|
|
|
|||
|
|
@ -76,9 +76,7 @@ func newSequenceDiagram(objects []*d2graph.Object, messages []*d2graph.Edge) *se
|
|||
curr := queue[0]
|
||||
groups = append(groups, curr)
|
||||
queue = queue[1:]
|
||||
for _, c := range curr.ChildrenArray {
|
||||
queue = append(queue, c)
|
||||
}
|
||||
queue = append(queue, curr.ChildrenArray...)
|
||||
}
|
||||
} else {
|
||||
actors = append(actors, obj)
|
||||
|
|
@ -138,7 +136,9 @@ func newSequenceDiagram(objects []*d2graph.Object, messages []*d2graph.Edge) *se
|
|||
}
|
||||
|
||||
if rank != len(actors)-1 {
|
||||
sd.actorXStep[rank] = math.Max(actor.Width/2., MIN_ACTOR_DISTANCE)
|
||||
actorHW := actor.Width / 2.
|
||||
nextActorHW := actors[rank+1].Width / 2.
|
||||
sd.actorXStep[rank] = math.Max(actorHW+nextActorHW+HORIZONTAL_PAD, MIN_ACTOR_DISTANCE)
|
||||
}
|
||||
}
|
||||
|
||||
|
|
|
|||
|
|
@ -1414,14 +1414,17 @@ choo: {
|
|||
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"
|
||||
e: "a short one"
|
||||
b: "far away"
|
||||
f: "what if there were no labels between this actor and the previous one"
|
||||
a -> b: "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"`,
|
||||
a -> d: "this should span many actors lifelines so we know how it will look like when redering a long label over many actors"
|
||||
d -> e: "long label for testing purposes and it must be really, really long"
|
||||
a -> f`,
|
||||
},
|
||||
}
|
||||
|
||||
|
|
|
|||
498
e2etests/testdata/stable/sequence_diagram_actor_distance/dagre/board.exp.json
generated
vendored
|
|
@ -40,50 +40,11 @@
|
|||
"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": "#EDF0FD",
|
||||
"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,
|
||||
"x": 588,
|
||||
"y": 50
|
||||
},
|
||||
"width": 183,
|
||||
|
|
@ -122,7 +83,7 @@
|
|||
"id": "d",
|
||||
"type": "",
|
||||
"pos": {
|
||||
"x": 1401,
|
||||
"x": 1026,
|
||||
"y": 210
|
||||
},
|
||||
"width": 152,
|
||||
|
|
@ -156,6 +117,123 @@
|
|||
"labelPosition": "INSIDE_MIDDLE_CENTER",
|
||||
"zIndex": 0,
|
||||
"level": 1
|
||||
},
|
||||
{
|
||||
"id": "e",
|
||||
"type": "",
|
||||
"pos": {
|
||||
"x": 1471,
|
||||
"y": 210
|
||||
},
|
||||
"width": 184,
|
||||
"height": 126,
|
||||
"opacity": 1,
|
||||
"strokeDash": 0,
|
||||
"strokeWidth": 2,
|
||||
"borderRadius": 0,
|
||||
"fill": "#EDF0FD",
|
||||
"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": "b",
|
||||
"type": "",
|
||||
"pos": {
|
||||
"x": 1730,
|
||||
"y": 210
|
||||
},
|
||||
"width": 167,
|
||||
"height": 126,
|
||||
"opacity": 1,
|
||||
"strokeDash": 0,
|
||||
"strokeWidth": 2,
|
||||
"borderRadius": 0,
|
||||
"fill": "#EDF0FD",
|
||||
"stroke": "#0D32B2",
|
||||
"shadow": false,
|
||||
"3d": false,
|
||||
"multiple": false,
|
||||
"tooltip": "",
|
||||
"link": "",
|
||||
"icon": null,
|
||||
"iconPosition": "",
|
||||
"fields": null,
|
||||
"methods": null,
|
||||
"columns": null,
|
||||
"label": "far away",
|
||||
"fontSize": 16,
|
||||
"fontFamily": "DEFAULT",
|
||||
"language": "",
|
||||
"color": "#0A0F25",
|
||||
"italic": false,
|
||||
"bold": true,
|
||||
"underline": false,
|
||||
"labelWidth": 67,
|
||||
"labelHeight": 26,
|
||||
"labelPosition": "INSIDE_MIDDLE_CENTER",
|
||||
"zIndex": 0,
|
||||
"level": 1
|
||||
},
|
||||
{
|
||||
"id": "f",
|
||||
"type": "",
|
||||
"pos": {
|
||||
"x": 1947,
|
||||
"y": 210
|
||||
},
|
||||
"width": 587,
|
||||
"height": 126,
|
||||
"opacity": 1,
|
||||
"strokeDash": 0,
|
||||
"strokeWidth": 2,
|
||||
"borderRadius": 0,
|
||||
"fill": "#EDF0FD",
|
||||
"stroke": "#0D32B2",
|
||||
"shadow": false,
|
||||
"3d": false,
|
||||
"multiple": false,
|
||||
"tooltip": "",
|
||||
"link": "",
|
||||
"icon": null,
|
||||
"iconPosition": "",
|
||||
"fields": null,
|
||||
"methods": null,
|
||||
"columns": null,
|
||||
"label": "what if there were no labels between this actor and the previous one",
|
||||
"fontSize": 16,
|
||||
"fontFamily": "DEFAULT",
|
||||
"language": "",
|
||||
"color": "#0A0F25",
|
||||
"italic": false,
|
||||
"bold": true,
|
||||
"underline": false,
|
||||
"labelWidth": 487,
|
||||
"labelHeight": 26,
|
||||
"labelPosition": "INSIDE_MIDDLE_CENTER",
|
||||
"zIndex": 0,
|
||||
"level": 1
|
||||
}
|
||||
],
|
||||
"connections": [
|
||||
|
|
@ -189,7 +267,7 @@
|
|||
"y": 466
|
||||
},
|
||||
{
|
||||
"x": 718,
|
||||
"x": 1813.5,
|
||||
"y": 466
|
||||
}
|
||||
],
|
||||
|
|
@ -198,45 +276,6 @@
|
|||
"icon": null,
|
||||
"zIndex": 4
|
||||
},
|
||||
{
|
||||
"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": 4
|
||||
},
|
||||
{
|
||||
"id": "(a -> b)[1]",
|
||||
"src": "a",
|
||||
|
|
@ -264,50 +303,11 @@
|
|||
"route": [
|
||||
{
|
||||
"x": 257,
|
||||
"y": 726
|
||||
"y": 596
|
||||
},
|
||||
{
|
||||
"x": 718,
|
||||
"y": 726
|
||||
}
|
||||
],
|
||||
"animated": false,
|
||||
"tooltip": "",
|
||||
"icon": null,
|
||||
"zIndex": 4
|
||||
},
|
||||
{
|
||||
"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
|
||||
"x": 1813.5,
|
||||
"y": 596
|
||||
}
|
||||
],
|
||||
"animated": false,
|
||||
|
|
@ -341,12 +341,12 @@
|
|||
"labelPercentage": 0,
|
||||
"route": [
|
||||
{
|
||||
"x": 1179.5,
|
||||
"y": 986
|
||||
"x": 679.5,
|
||||
"y": 726
|
||||
},
|
||||
{
|
||||
"x": 1477,
|
||||
"y": 986
|
||||
"x": 1102,
|
||||
"y": 726
|
||||
}
|
||||
],
|
||||
"animated": false,
|
||||
|
|
@ -378,13 +378,91 @@
|
|||
"labelHeight": 21,
|
||||
"labelPosition": "INSIDE_MIDDLE_CENTER",
|
||||
"labelPercentage": 0,
|
||||
"route": [
|
||||
{
|
||||
"x": 257,
|
||||
"y": 856
|
||||
},
|
||||
{
|
||||
"x": 1102,
|
||||
"y": 856
|
||||
}
|
||||
],
|
||||
"animated": false,
|
||||
"tooltip": "",
|
||||
"icon": null,
|
||||
"zIndex": 4
|
||||
},
|
||||
{
|
||||
"id": "(d -> e)[0]",
|
||||
"src": "d",
|
||||
"srcArrow": "none",
|
||||
"srcLabel": "",
|
||||
"dst": "e",
|
||||
"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": 1102,
|
||||
"y": 986
|
||||
},
|
||||
{
|
||||
"x": 1563,
|
||||
"y": 986
|
||||
}
|
||||
],
|
||||
"animated": false,
|
||||
"tooltip": "",
|
||||
"icon": null,
|
||||
"zIndex": 4
|
||||
},
|
||||
{
|
||||
"id": "(a -> f)[0]",
|
||||
"src": "a",
|
||||
"srcArrow": "none",
|
||||
"srcLabel": "",
|
||||
"dst": "f",
|
||||
"dstArrow": "triangle",
|
||||
"dstLabel": "",
|
||||
"opacity": 1,
|
||||
"strokeDash": 0,
|
||||
"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": 1116
|
||||
},
|
||||
{
|
||||
"x": 1477,
|
||||
"x": 2240.5,
|
||||
"y": 1116
|
||||
}
|
||||
],
|
||||
|
|
@ -432,45 +510,6 @@
|
|||
"icon": null,
|
||||
"zIndex": 2
|
||||
},
|
||||
{
|
||||
"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": 2
|
||||
},
|
||||
{
|
||||
"id": "(c -- )[0]",
|
||||
"src": "c",
|
||||
|
|
@ -497,11 +536,11 @@
|
|||
"labelPercentage": 0,
|
||||
"route": [
|
||||
{
|
||||
"x": 1179.5,
|
||||
"x": 679.5,
|
||||
"y": 336
|
||||
},
|
||||
{
|
||||
"x": 1179.5,
|
||||
"x": 679.5,
|
||||
"y": 1246
|
||||
}
|
||||
],
|
||||
|
|
@ -536,11 +575,128 @@
|
|||
"labelPercentage": 0,
|
||||
"route": [
|
||||
{
|
||||
"x": 1477,
|
||||
"x": 1102,
|
||||
"y": 336
|
||||
},
|
||||
{
|
||||
"x": 1477,
|
||||
"x": 1102,
|
||||
"y": 1246
|
||||
}
|
||||
],
|
||||
"animated": false,
|
||||
"tooltip": "",
|
||||
"icon": null,
|
||||
"zIndex": 2
|
||||
},
|
||||
{
|
||||
"id": "(e -- )[0]",
|
||||
"src": "e",
|
||||
"srcArrow": "none",
|
||||
"srcLabel": "",
|
||||
"dst": "e-lifeline-end-2214352275",
|
||||
"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": 1563,
|
||||
"y": 336
|
||||
},
|
||||
{
|
||||
"x": 1563,
|
||||
"y": 1246
|
||||
}
|
||||
],
|
||||
"animated": false,
|
||||
"tooltip": "",
|
||||
"icon": null,
|
||||
"zIndex": 2
|
||||
},
|
||||
{
|
||||
"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": 1813.5,
|
||||
"y": 336
|
||||
},
|
||||
{
|
||||
"x": 1813.5,
|
||||
"y": 1246
|
||||
}
|
||||
],
|
||||
"animated": false,
|
||||
"tooltip": "",
|
||||
"icon": null,
|
||||
"zIndex": 2
|
||||
},
|
||||
{
|
||||
"id": "(f -- )[0]",
|
||||
"src": "f",
|
||||
"srcArrow": "none",
|
||||
"srcLabel": "",
|
||||
"dst": "f-lifeline-end-865917984",
|
||||
"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": 2240.5,
|
||||
"y": 336
|
||||
},
|
||||
{
|
||||
"x": 2240.5,
|
||||
"y": 1246
|
||||
}
|
||||
],
|
||||
|
|
|
|||
|
Before Width: | Height: | Size: 472 KiB After Width: | Height: | Size: 473 KiB |
498
e2etests/testdata/stable/sequence_diagram_actor_distance/elk/board.exp.json
generated
vendored
|
|
@ -40,50 +40,11 @@
|
|||
"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": "#EDF0FD",
|
||||
"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,
|
||||
"x": 588,
|
||||
"y": 50
|
||||
},
|
||||
"width": 183,
|
||||
|
|
@ -122,7 +83,7 @@
|
|||
"id": "d",
|
||||
"type": "",
|
||||
"pos": {
|
||||
"x": 1401,
|
||||
"x": 1026,
|
||||
"y": 210
|
||||
},
|
||||
"width": 152,
|
||||
|
|
@ -156,6 +117,123 @@
|
|||
"labelPosition": "INSIDE_MIDDLE_CENTER",
|
||||
"zIndex": 0,
|
||||
"level": 1
|
||||
},
|
||||
{
|
||||
"id": "e",
|
||||
"type": "",
|
||||
"pos": {
|
||||
"x": 1471,
|
||||
"y": 210
|
||||
},
|
||||
"width": 184,
|
||||
"height": 126,
|
||||
"opacity": 1,
|
||||
"strokeDash": 0,
|
||||
"strokeWidth": 2,
|
||||
"borderRadius": 0,
|
||||
"fill": "#EDF0FD",
|
||||
"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": "b",
|
||||
"type": "",
|
||||
"pos": {
|
||||
"x": 1730,
|
||||
"y": 210
|
||||
},
|
||||
"width": 167,
|
||||
"height": 126,
|
||||
"opacity": 1,
|
||||
"strokeDash": 0,
|
||||
"strokeWidth": 2,
|
||||
"borderRadius": 0,
|
||||
"fill": "#EDF0FD",
|
||||
"stroke": "#0D32B2",
|
||||
"shadow": false,
|
||||
"3d": false,
|
||||
"multiple": false,
|
||||
"tooltip": "",
|
||||
"link": "",
|
||||
"icon": null,
|
||||
"iconPosition": "",
|
||||
"fields": null,
|
||||
"methods": null,
|
||||
"columns": null,
|
||||
"label": "far away",
|
||||
"fontSize": 16,
|
||||
"fontFamily": "DEFAULT",
|
||||
"language": "",
|
||||
"color": "#0A0F25",
|
||||
"italic": false,
|
||||
"bold": true,
|
||||
"underline": false,
|
||||
"labelWidth": 67,
|
||||
"labelHeight": 26,
|
||||
"labelPosition": "INSIDE_MIDDLE_CENTER",
|
||||
"zIndex": 0,
|
||||
"level": 1
|
||||
},
|
||||
{
|
||||
"id": "f",
|
||||
"type": "",
|
||||
"pos": {
|
||||
"x": 1947,
|
||||
"y": 210
|
||||
},
|
||||
"width": 587,
|
||||
"height": 126,
|
||||
"opacity": 1,
|
||||
"strokeDash": 0,
|
||||
"strokeWidth": 2,
|
||||
"borderRadius": 0,
|
||||
"fill": "#EDF0FD",
|
||||
"stroke": "#0D32B2",
|
||||
"shadow": false,
|
||||
"3d": false,
|
||||
"multiple": false,
|
||||
"tooltip": "",
|
||||
"link": "",
|
||||
"icon": null,
|
||||
"iconPosition": "",
|
||||
"fields": null,
|
||||
"methods": null,
|
||||
"columns": null,
|
||||
"label": "what if there were no labels between this actor and the previous one",
|
||||
"fontSize": 16,
|
||||
"fontFamily": "DEFAULT",
|
||||
"language": "",
|
||||
"color": "#0A0F25",
|
||||
"italic": false,
|
||||
"bold": true,
|
||||
"underline": false,
|
||||
"labelWidth": 487,
|
||||
"labelHeight": 26,
|
||||
"labelPosition": "INSIDE_MIDDLE_CENTER",
|
||||
"zIndex": 0,
|
||||
"level": 1
|
||||
}
|
||||
],
|
||||
"connections": [
|
||||
|
|
@ -189,7 +267,7 @@
|
|||
"y": 466
|
||||
},
|
||||
{
|
||||
"x": 718,
|
||||
"x": 1813.5,
|
||||
"y": 466
|
||||
}
|
||||
],
|
||||
|
|
@ -198,45 +276,6 @@
|
|||
"icon": null,
|
||||
"zIndex": 4
|
||||
},
|
||||
{
|
||||
"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": 4
|
||||
},
|
||||
{
|
||||
"id": "(a -> b)[1]",
|
||||
"src": "a",
|
||||
|
|
@ -264,50 +303,11 @@
|
|||
"route": [
|
||||
{
|
||||
"x": 257,
|
||||
"y": 726
|
||||
"y": 596
|
||||
},
|
||||
{
|
||||
"x": 718,
|
||||
"y": 726
|
||||
}
|
||||
],
|
||||
"animated": false,
|
||||
"tooltip": "",
|
||||
"icon": null,
|
||||
"zIndex": 4
|
||||
},
|
||||
{
|
||||
"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
|
||||
"x": 1813.5,
|
||||
"y": 596
|
||||
}
|
||||
],
|
||||
"animated": false,
|
||||
|
|
@ -341,12 +341,12 @@
|
|||
"labelPercentage": 0,
|
||||
"route": [
|
||||
{
|
||||
"x": 1179.5,
|
||||
"y": 986
|
||||
"x": 679.5,
|
||||
"y": 726
|
||||
},
|
||||
{
|
||||
"x": 1477,
|
||||
"y": 986
|
||||
"x": 1102,
|
||||
"y": 726
|
||||
}
|
||||
],
|
||||
"animated": false,
|
||||
|
|
@ -378,13 +378,91 @@
|
|||
"labelHeight": 21,
|
||||
"labelPosition": "INSIDE_MIDDLE_CENTER",
|
||||
"labelPercentage": 0,
|
||||
"route": [
|
||||
{
|
||||
"x": 257,
|
||||
"y": 856
|
||||
},
|
||||
{
|
||||
"x": 1102,
|
||||
"y": 856
|
||||
}
|
||||
],
|
||||
"animated": false,
|
||||
"tooltip": "",
|
||||
"icon": null,
|
||||
"zIndex": 4
|
||||
},
|
||||
{
|
||||
"id": "(d -> e)[0]",
|
||||
"src": "d",
|
||||
"srcArrow": "none",
|
||||
"srcLabel": "",
|
||||
"dst": "e",
|
||||
"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": 1102,
|
||||
"y": 986
|
||||
},
|
||||
{
|
||||
"x": 1563,
|
||||
"y": 986
|
||||
}
|
||||
],
|
||||
"animated": false,
|
||||
"tooltip": "",
|
||||
"icon": null,
|
||||
"zIndex": 4
|
||||
},
|
||||
{
|
||||
"id": "(a -> f)[0]",
|
||||
"src": "a",
|
||||
"srcArrow": "none",
|
||||
"srcLabel": "",
|
||||
"dst": "f",
|
||||
"dstArrow": "triangle",
|
||||
"dstLabel": "",
|
||||
"opacity": 1,
|
||||
"strokeDash": 0,
|
||||
"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": 1116
|
||||
},
|
||||
{
|
||||
"x": 1477,
|
||||
"x": 2240.5,
|
||||
"y": 1116
|
||||
}
|
||||
],
|
||||
|
|
@ -432,45 +510,6 @@
|
|||
"icon": null,
|
||||
"zIndex": 2
|
||||
},
|
||||
{
|
||||
"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": 2
|
||||
},
|
||||
{
|
||||
"id": "(c -- )[0]",
|
||||
"src": "c",
|
||||
|
|
@ -497,11 +536,11 @@
|
|||
"labelPercentage": 0,
|
||||
"route": [
|
||||
{
|
||||
"x": 1179.5,
|
||||
"x": 679.5,
|
||||
"y": 336
|
||||
},
|
||||
{
|
||||
"x": 1179.5,
|
||||
"x": 679.5,
|
||||
"y": 1246
|
||||
}
|
||||
],
|
||||
|
|
@ -536,11 +575,128 @@
|
|||
"labelPercentage": 0,
|
||||
"route": [
|
||||
{
|
||||
"x": 1477,
|
||||
"x": 1102,
|
||||
"y": 336
|
||||
},
|
||||
{
|
||||
"x": 1477,
|
||||
"x": 1102,
|
||||
"y": 1246
|
||||
}
|
||||
],
|
||||
"animated": false,
|
||||
"tooltip": "",
|
||||
"icon": null,
|
||||
"zIndex": 2
|
||||
},
|
||||
{
|
||||
"id": "(e -- )[0]",
|
||||
"src": "e",
|
||||
"srcArrow": "none",
|
||||
"srcLabel": "",
|
||||
"dst": "e-lifeline-end-2214352275",
|
||||
"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": 1563,
|
||||
"y": 336
|
||||
},
|
||||
{
|
||||
"x": 1563,
|
||||
"y": 1246
|
||||
}
|
||||
],
|
||||
"animated": false,
|
||||
"tooltip": "",
|
||||
"icon": null,
|
||||
"zIndex": 2
|
||||
},
|
||||
{
|
||||
"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": 1813.5,
|
||||
"y": 336
|
||||
},
|
||||
{
|
||||
"x": 1813.5,
|
||||
"y": 1246
|
||||
}
|
||||
],
|
||||
"animated": false,
|
||||
"tooltip": "",
|
||||
"icon": null,
|
||||
"zIndex": 2
|
||||
},
|
||||
{
|
||||
"id": "(f -- )[0]",
|
||||
"src": "f",
|
||||
"srcArrow": "none",
|
||||
"srcLabel": "",
|
||||
"dst": "f-lifeline-end-865917984",
|
||||
"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": 2240.5,
|
||||
"y": 336
|
||||
},
|
||||
{
|
||||
"x": 2240.5,
|
||||
"y": 1246
|
||||
}
|
||||
],
|
||||
|
|
|
|||
|
Before Width: | Height: | Size: 472 KiB After Width: | Height: | Size: 473 KiB |
178
e2etests/testdata/stable/sequence_diagram_all_shapes/dagre/board.exp.json
generated
vendored
|
|
@ -83,7 +83,7 @@
|
|||
"id": "c",
|
||||
"type": "class",
|
||||
"pos": {
|
||||
"x": 289,
|
||||
"x": 463,
|
||||
"y": 50
|
||||
},
|
||||
"width": 241,
|
||||
|
|
@ -133,7 +133,7 @@
|
|||
"id": "d",
|
||||
"type": "cloud",
|
||||
"pos": {
|
||||
"x": 441,
|
||||
"x": 754,
|
||||
"y": 108
|
||||
},
|
||||
"width": 179,
|
||||
|
|
@ -172,7 +172,7 @@
|
|||
"id": "e",
|
||||
"type": "code",
|
||||
"pos": {
|
||||
"x": 522,
|
||||
"x": 996,
|
||||
"y": 164
|
||||
},
|
||||
"width": 196,
|
||||
|
|
@ -211,7 +211,7 @@
|
|||
"id": "f",
|
||||
"type": "cylinder",
|
||||
"pos": {
|
||||
"x": 643,
|
||||
"x": 1269,
|
||||
"y": 108
|
||||
},
|
||||
"width": 150,
|
||||
|
|
@ -250,7 +250,7 @@
|
|||
"id": "g",
|
||||
"type": "diamond",
|
||||
"pos": {
|
||||
"x": 718,
|
||||
"x": 1519,
|
||||
"y": 108
|
||||
},
|
||||
"width": 150,
|
||||
|
|
@ -289,7 +289,7 @@
|
|||
"id": "h",
|
||||
"type": "document",
|
||||
"pos": {
|
||||
"x": 793,
|
||||
"x": 1769,
|
||||
"y": 108
|
||||
},
|
||||
"width": 150,
|
||||
|
|
@ -328,7 +328,7 @@
|
|||
"id": "i",
|
||||
"type": "hexagon",
|
||||
"pos": {
|
||||
"x": 852,
|
||||
"x": 2003,
|
||||
"y": 108
|
||||
},
|
||||
"width": 182,
|
||||
|
|
@ -367,7 +367,7 @@
|
|||
"id": "j",
|
||||
"type": "image",
|
||||
"pos": {
|
||||
"x": 959,
|
||||
"x": 2269,
|
||||
"y": 85
|
||||
},
|
||||
"width": 150,
|
||||
|
|
@ -417,7 +417,7 @@
|
|||
"id": "k",
|
||||
"type": "oval",
|
||||
"pos": {
|
||||
"x": 1034,
|
||||
"x": 2519,
|
||||
"y": 108
|
||||
},
|
||||
"width": 150,
|
||||
|
|
@ -456,7 +456,7 @@
|
|||
"id": "l",
|
||||
"type": "package",
|
||||
"pos": {
|
||||
"x": 1109,
|
||||
"x": 2769,
|
||||
"y": 108
|
||||
},
|
||||
"width": 150,
|
||||
|
|
@ -495,7 +495,7 @@
|
|||
"id": "m",
|
||||
"type": "page",
|
||||
"pos": {
|
||||
"x": 1171,
|
||||
"x": 3006,
|
||||
"y": 108
|
||||
},
|
||||
"width": 175,
|
||||
|
|
@ -534,7 +534,7 @@
|
|||
"id": "n",
|
||||
"type": "parallelogram",
|
||||
"pos": {
|
||||
"x": 1255,
|
||||
"x": 3252,
|
||||
"y": 92
|
||||
},
|
||||
"width": 183,
|
||||
|
|
@ -573,7 +573,7 @@
|
|||
"id": "o",
|
||||
"type": "person",
|
||||
"pos": {
|
||||
"x": 1361,
|
||||
"x": 3517,
|
||||
"y": 55
|
||||
},
|
||||
"width": 154,
|
||||
|
|
@ -612,7 +612,7 @@
|
|||
"id": "p",
|
||||
"type": "queue",
|
||||
"pos": {
|
||||
"x": 1434,
|
||||
"x": 3763,
|
||||
"y": 108
|
||||
},
|
||||
"width": 161,
|
||||
|
|
@ -651,7 +651,7 @@
|
|||
"id": "q",
|
||||
"type": "rectangle",
|
||||
"pos": {
|
||||
"x": 1513,
|
||||
"x": 4011,
|
||||
"y": 69
|
||||
},
|
||||
"width": 165,
|
||||
|
|
@ -690,7 +690,7 @@
|
|||
"id": "r",
|
||||
"type": "step",
|
||||
"pos": {
|
||||
"x": 1571,
|
||||
"x": 4237,
|
||||
"y": 108
|
||||
},
|
||||
"width": 213,
|
||||
|
|
@ -729,7 +729,7 @@
|
|||
"id": "s",
|
||||
"type": "stored_data",
|
||||
"pos": {
|
||||
"x": 1709,
|
||||
"x": 4519,
|
||||
"y": 108
|
||||
},
|
||||
"width": 150,
|
||||
|
|
@ -768,7 +768,7 @@
|
|||
"id": "t",
|
||||
"type": "sql_table",
|
||||
"pos": {
|
||||
"x": 1754,
|
||||
"x": 4739,
|
||||
"y": 126
|
||||
},
|
||||
"width": 210,
|
||||
|
|
@ -887,7 +887,7 @@
|
|||
"y": 494
|
||||
},
|
||||
{
|
||||
"x": 409.5,
|
||||
"x": 583.5,
|
||||
"y": 494
|
||||
}
|
||||
],
|
||||
|
|
@ -922,11 +922,11 @@
|
|||
"labelPercentage": 0,
|
||||
"route": [
|
||||
{
|
||||
"x": 409.5,
|
||||
"x": 583.5,
|
||||
"y": 624
|
||||
},
|
||||
{
|
||||
"x": 530.5,
|
||||
"x": 843.5,
|
||||
"y": 624
|
||||
}
|
||||
],
|
||||
|
|
@ -961,11 +961,11 @@
|
|||
"labelPercentage": 0,
|
||||
"route": [
|
||||
{
|
||||
"x": 530.5,
|
||||
"x": 843.5,
|
||||
"y": 754
|
||||
},
|
||||
{
|
||||
"x": 620,
|
||||
"x": 1094,
|
||||
"y": 754
|
||||
}
|
||||
],
|
||||
|
|
@ -1000,11 +1000,11 @@
|
|||
"labelPercentage": 0,
|
||||
"route": [
|
||||
{
|
||||
"x": 620,
|
||||
"x": 1094,
|
||||
"y": 884
|
||||
},
|
||||
{
|
||||
"x": 718,
|
||||
"x": 1344,
|
||||
"y": 884
|
||||
}
|
||||
],
|
||||
|
|
@ -1039,11 +1039,11 @@
|
|||
"labelPercentage": 0,
|
||||
"route": [
|
||||
{
|
||||
"x": 718,
|
||||
"x": 1344,
|
||||
"y": 1014
|
||||
},
|
||||
{
|
||||
"x": 793,
|
||||
"x": 1594,
|
||||
"y": 1014
|
||||
}
|
||||
],
|
||||
|
|
@ -1078,11 +1078,11 @@
|
|||
"labelPercentage": 0,
|
||||
"route": [
|
||||
{
|
||||
"x": 793,
|
||||
"x": 1594,
|
||||
"y": 1144
|
||||
},
|
||||
{
|
||||
"x": 868,
|
||||
"x": 1844,
|
||||
"y": 1144
|
||||
}
|
||||
],
|
||||
|
|
@ -1117,11 +1117,11 @@
|
|||
"labelPercentage": 0,
|
||||
"route": [
|
||||
{
|
||||
"x": 868,
|
||||
"x": 1844,
|
||||
"y": 1274
|
||||
},
|
||||
{
|
||||
"x": 943,
|
||||
"x": 2094,
|
||||
"y": 1274
|
||||
}
|
||||
],
|
||||
|
|
@ -1156,11 +1156,11 @@
|
|||
"labelPercentage": 0,
|
||||
"route": [
|
||||
{
|
||||
"x": 943,
|
||||
"x": 2094,
|
||||
"y": 1404
|
||||
},
|
||||
{
|
||||
"x": 1034,
|
||||
"x": 2344,
|
||||
"y": 1404
|
||||
}
|
||||
],
|
||||
|
|
@ -1195,11 +1195,11 @@
|
|||
"labelPercentage": 0,
|
||||
"route": [
|
||||
{
|
||||
"x": 1034,
|
||||
"x": 2344,
|
||||
"y": 1534
|
||||
},
|
||||
{
|
||||
"x": 1109,
|
||||
"x": 2594,
|
||||
"y": 1534
|
||||
}
|
||||
],
|
||||
|
|
@ -1234,11 +1234,11 @@
|
|||
"labelPercentage": 0,
|
||||
"route": [
|
||||
{
|
||||
"x": 1109,
|
||||
"x": 2594,
|
||||
"y": 1664
|
||||
},
|
||||
{
|
||||
"x": 1184,
|
||||
"x": 2844,
|
||||
"y": 1664
|
||||
}
|
||||
],
|
||||
|
|
@ -1273,11 +1273,11 @@
|
|||
"labelPercentage": 0,
|
||||
"route": [
|
||||
{
|
||||
"x": 1184,
|
||||
"x": 2844,
|
||||
"y": 1794
|
||||
},
|
||||
{
|
||||
"x": 1258.5,
|
||||
"x": 3093.5,
|
||||
"y": 1794
|
||||
}
|
||||
],
|
||||
|
|
@ -1312,11 +1312,11 @@
|
|||
"labelPercentage": 0,
|
||||
"route": [
|
||||
{
|
||||
"x": 1258.5,
|
||||
"x": 3093.5,
|
||||
"y": 1924
|
||||
},
|
||||
{
|
||||
"x": 1346.5,
|
||||
"x": 3343.5,
|
||||
"y": 1924
|
||||
}
|
||||
],
|
||||
|
|
@ -1351,11 +1351,11 @@
|
|||
"labelPercentage": 0,
|
||||
"route": [
|
||||
{
|
||||
"x": 1346.5,
|
||||
"x": 3343.5,
|
||||
"y": 2054
|
||||
},
|
||||
{
|
||||
"x": 1438,
|
||||
"x": 3594,
|
||||
"y": 2054
|
||||
}
|
||||
],
|
||||
|
|
@ -1390,11 +1390,11 @@
|
|||
"labelPercentage": 0,
|
||||
"route": [
|
||||
{
|
||||
"x": 1438,
|
||||
"x": 3594,
|
||||
"y": 2184
|
||||
},
|
||||
{
|
||||
"x": 1514.5,
|
||||
"x": 3843.5,
|
||||
"y": 2184
|
||||
}
|
||||
],
|
||||
|
|
@ -1429,11 +1429,11 @@
|
|||
"labelPercentage": 0,
|
||||
"route": [
|
||||
{
|
||||
"x": 1514.5,
|
||||
"x": 3843.5,
|
||||
"y": 2314
|
||||
},
|
||||
{
|
||||
"x": 1595.5,
|
||||
"x": 4093.5,
|
||||
"y": 2314
|
||||
}
|
||||
],
|
||||
|
|
@ -1468,11 +1468,11 @@
|
|||
"labelPercentage": 0,
|
||||
"route": [
|
||||
{
|
||||
"x": 1595.5,
|
||||
"x": 4093.5,
|
||||
"y": 2444
|
||||
},
|
||||
{
|
||||
"x": 1677.5,
|
||||
"x": 4343.5,
|
||||
"y": 2444
|
||||
}
|
||||
],
|
||||
|
|
@ -1507,11 +1507,11 @@
|
|||
"labelPercentage": 0,
|
||||
"route": [
|
||||
{
|
||||
"x": 1677.5,
|
||||
"x": 4343.5,
|
||||
"y": 2574
|
||||
},
|
||||
{
|
||||
"x": 1784,
|
||||
"x": 4594,
|
||||
"y": 2574
|
||||
}
|
||||
],
|
||||
|
|
@ -1546,11 +1546,11 @@
|
|||
"labelPercentage": 0,
|
||||
"route": [
|
||||
{
|
||||
"x": 1784,
|
||||
"x": 4594,
|
||||
"y": 2704
|
||||
},
|
||||
{
|
||||
"x": 1859,
|
||||
"x": 4844,
|
||||
"y": 2704
|
||||
}
|
||||
],
|
||||
|
|
@ -1663,11 +1663,11 @@
|
|||
"labelPercentage": 0,
|
||||
"route": [
|
||||
{
|
||||
"x": 409.5,
|
||||
"x": 583.5,
|
||||
"y": 234
|
||||
},
|
||||
{
|
||||
"x": 409.5,
|
||||
"x": 583.5,
|
||||
"y": 2834
|
||||
}
|
||||
],
|
||||
|
|
@ -1702,11 +1702,11 @@
|
|||
"labelPercentage": 0,
|
||||
"route": [
|
||||
{
|
||||
"x": 530.5,
|
||||
"x": 843.5,
|
||||
"y": 234
|
||||
},
|
||||
{
|
||||
"x": 530.5,
|
||||
"x": 843.5,
|
||||
"y": 2834
|
||||
}
|
||||
],
|
||||
|
|
@ -1741,11 +1741,11 @@
|
|||
"labelPercentage": 0,
|
||||
"route": [
|
||||
{
|
||||
"x": 620,
|
||||
"x": 1094,
|
||||
"y": 234
|
||||
},
|
||||
{
|
||||
"x": 620,
|
||||
"x": 1094,
|
||||
"y": 2834
|
||||
}
|
||||
],
|
||||
|
|
@ -1780,11 +1780,11 @@
|
|||
"labelPercentage": 0,
|
||||
"route": [
|
||||
{
|
||||
"x": 718,
|
||||
"x": 1344,
|
||||
"y": 234
|
||||
},
|
||||
{
|
||||
"x": 718,
|
||||
"x": 1344,
|
||||
"y": 2834
|
||||
}
|
||||
],
|
||||
|
|
@ -1819,11 +1819,11 @@
|
|||
"labelPercentage": 0,
|
||||
"route": [
|
||||
{
|
||||
"x": 793,
|
||||
"x": 1594,
|
||||
"y": 234
|
||||
},
|
||||
{
|
||||
"x": 793,
|
||||
"x": 1594,
|
||||
"y": 2834
|
||||
}
|
||||
],
|
||||
|
|
@ -1858,11 +1858,11 @@
|
|||
"labelPercentage": 0,
|
||||
"route": [
|
||||
{
|
||||
"x": 868,
|
||||
"x": 1844,
|
||||
"y": 234
|
||||
},
|
||||
{
|
||||
"x": 868,
|
||||
"x": 1844,
|
||||
"y": 2834
|
||||
}
|
||||
],
|
||||
|
|
@ -1897,11 +1897,11 @@
|
|||
"labelPercentage": 0,
|
||||
"route": [
|
||||
{
|
||||
"x": 943,
|
||||
"x": 2094,
|
||||
"y": 234
|
||||
},
|
||||
{
|
||||
"x": 943,
|
||||
"x": 2094,
|
||||
"y": 2834
|
||||
}
|
||||
],
|
||||
|
|
@ -1936,11 +1936,11 @@
|
|||
"labelPercentage": 0,
|
||||
"route": [
|
||||
{
|
||||
"x": 1034,
|
||||
"x": 2344,
|
||||
"y": 239
|
||||
},
|
||||
{
|
||||
"x": 1034,
|
||||
"x": 2344,
|
||||
"y": 2834
|
||||
}
|
||||
],
|
||||
|
|
@ -1975,11 +1975,11 @@
|
|||
"labelPercentage": 0,
|
||||
"route": [
|
||||
{
|
||||
"x": 1109,
|
||||
"x": 2594,
|
||||
"y": 234
|
||||
},
|
||||
{
|
||||
"x": 1109,
|
||||
"x": 2594,
|
||||
"y": 2834
|
||||
}
|
||||
],
|
||||
|
|
@ -2014,11 +2014,11 @@
|
|||
"labelPercentage": 0,
|
||||
"route": [
|
||||
{
|
||||
"x": 1184,
|
||||
"x": 2844,
|
||||
"y": 234
|
||||
},
|
||||
{
|
||||
"x": 1184,
|
||||
"x": 2844,
|
||||
"y": 2834
|
||||
}
|
||||
],
|
||||
|
|
@ -2053,11 +2053,11 @@
|
|||
"labelPercentage": 0,
|
||||
"route": [
|
||||
{
|
||||
"x": 1258.5,
|
||||
"x": 3093.5,
|
||||
"y": 234
|
||||
},
|
||||
{
|
||||
"x": 1258.5,
|
||||
"x": 3093.5,
|
||||
"y": 2834
|
||||
}
|
||||
],
|
||||
|
|
@ -2092,11 +2092,11 @@
|
|||
"labelPercentage": 0,
|
||||
"route": [
|
||||
{
|
||||
"x": 1346.5,
|
||||
"x": 3343.5,
|
||||
"y": 234
|
||||
},
|
||||
{
|
||||
"x": 1346.5,
|
||||
"x": 3343.5,
|
||||
"y": 2834
|
||||
}
|
||||
],
|
||||
|
|
@ -2131,11 +2131,11 @@
|
|||
"labelPercentage": 0,
|
||||
"route": [
|
||||
{
|
||||
"x": 1438,
|
||||
"x": 3594,
|
||||
"y": 239
|
||||
},
|
||||
{
|
||||
"x": 1438,
|
||||
"x": 3594,
|
||||
"y": 2834
|
||||
}
|
||||
],
|
||||
|
|
@ -2170,11 +2170,11 @@
|
|||
"labelPercentage": 0,
|
||||
"route": [
|
||||
{
|
||||
"x": 1514.5,
|
||||
"x": 3843.5,
|
||||
"y": 234
|
||||
},
|
||||
{
|
||||
"x": 1514.5,
|
||||
"x": 3843.5,
|
||||
"y": 2834
|
||||
}
|
||||
],
|
||||
|
|
@ -2209,11 +2209,11 @@
|
|||
"labelPercentage": 0,
|
||||
"route": [
|
||||
{
|
||||
"x": 1595.5,
|
||||
"x": 4093.5,
|
||||
"y": 234
|
||||
},
|
||||
{
|
||||
"x": 1595.5,
|
||||
"x": 4093.5,
|
||||
"y": 2834
|
||||
}
|
||||
],
|
||||
|
|
@ -2248,11 +2248,11 @@
|
|||
"labelPercentage": 0,
|
||||
"route": [
|
||||
{
|
||||
"x": 1677.5,
|
||||
"x": 4343.5,
|
||||
"y": 234
|
||||
},
|
||||
{
|
||||
"x": 1677.5,
|
||||
"x": 4343.5,
|
||||
"y": 2834
|
||||
}
|
||||
],
|
||||
|
|
@ -2287,11 +2287,11 @@
|
|||
"labelPercentage": 0,
|
||||
"route": [
|
||||
{
|
||||
"x": 1784,
|
||||
"x": 4594,
|
||||
"y": 234
|
||||
},
|
||||
{
|
||||
"x": 1784,
|
||||
"x": 4594,
|
||||
"y": 2834
|
||||
}
|
||||
],
|
||||
|
|
@ -2326,11 +2326,11 @@
|
|||
"labelPercentage": 0,
|
||||
"route": [
|
||||
{
|
||||
"x": 1859,
|
||||
"x": 4844,
|
||||
"y": 234
|
||||
},
|
||||
{
|
||||
"x": 1859,
|
||||
"x": 4844,
|
||||
"y": 2834
|
||||
}
|
||||
],
|
||||
|
|
|
|||
|
Before Width: | Height: | Size: 992 KiB After Width: | Height: | Size: 992 KiB |
178
e2etests/testdata/stable/sequence_diagram_all_shapes/elk/board.exp.json
generated
vendored
|
|
@ -83,7 +83,7 @@
|
|||
"id": "c",
|
||||
"type": "class",
|
||||
"pos": {
|
||||
"x": 289,
|
||||
"x": 463,
|
||||
"y": 50
|
||||
},
|
||||
"width": 241,
|
||||
|
|
@ -133,7 +133,7 @@
|
|||
"id": "d",
|
||||
"type": "cloud",
|
||||
"pos": {
|
||||
"x": 441,
|
||||
"x": 754,
|
||||
"y": 108
|
||||
},
|
||||
"width": 179,
|
||||
|
|
@ -172,7 +172,7 @@
|
|||
"id": "e",
|
||||
"type": "code",
|
||||
"pos": {
|
||||
"x": 522,
|
||||
"x": 996,
|
||||
"y": 164
|
||||
},
|
||||
"width": 196,
|
||||
|
|
@ -211,7 +211,7 @@
|
|||
"id": "f",
|
||||
"type": "cylinder",
|
||||
"pos": {
|
||||
"x": 643,
|
||||
"x": 1269,
|
||||
"y": 108
|
||||
},
|
||||
"width": 150,
|
||||
|
|
@ -250,7 +250,7 @@
|
|||
"id": "g",
|
||||
"type": "diamond",
|
||||
"pos": {
|
||||
"x": 718,
|
||||
"x": 1519,
|
||||
"y": 108
|
||||
},
|
||||
"width": 150,
|
||||
|
|
@ -289,7 +289,7 @@
|
|||
"id": "h",
|
||||
"type": "document",
|
||||
"pos": {
|
||||
"x": 793,
|
||||
"x": 1769,
|
||||
"y": 108
|
||||
},
|
||||
"width": 150,
|
||||
|
|
@ -328,7 +328,7 @@
|
|||
"id": "i",
|
||||
"type": "hexagon",
|
||||
"pos": {
|
||||
"x": 852,
|
||||
"x": 2003,
|
||||
"y": 108
|
||||
},
|
||||
"width": 182,
|
||||
|
|
@ -367,7 +367,7 @@
|
|||
"id": "j",
|
||||
"type": "image",
|
||||
"pos": {
|
||||
"x": 959,
|
||||
"x": 2269,
|
||||
"y": 85
|
||||
},
|
||||
"width": 150,
|
||||
|
|
@ -417,7 +417,7 @@
|
|||
"id": "k",
|
||||
"type": "oval",
|
||||
"pos": {
|
||||
"x": 1034,
|
||||
"x": 2519,
|
||||
"y": 108
|
||||
},
|
||||
"width": 150,
|
||||
|
|
@ -456,7 +456,7 @@
|
|||
"id": "l",
|
||||
"type": "package",
|
||||
"pos": {
|
||||
"x": 1109,
|
||||
"x": 2769,
|
||||
"y": 108
|
||||
},
|
||||
"width": 150,
|
||||
|
|
@ -495,7 +495,7 @@
|
|||
"id": "m",
|
||||
"type": "page",
|
||||
"pos": {
|
||||
"x": 1171,
|
||||
"x": 3006,
|
||||
"y": 108
|
||||
},
|
||||
"width": 175,
|
||||
|
|
@ -534,7 +534,7 @@
|
|||
"id": "n",
|
||||
"type": "parallelogram",
|
||||
"pos": {
|
||||
"x": 1255,
|
||||
"x": 3252,
|
||||
"y": 92
|
||||
},
|
||||
"width": 183,
|
||||
|
|
@ -573,7 +573,7 @@
|
|||
"id": "o",
|
||||
"type": "person",
|
||||
"pos": {
|
||||
"x": 1361,
|
||||
"x": 3517,
|
||||
"y": 55
|
||||
},
|
||||
"width": 154,
|
||||
|
|
@ -612,7 +612,7 @@
|
|||
"id": "p",
|
||||
"type": "queue",
|
||||
"pos": {
|
||||
"x": 1434,
|
||||
"x": 3763,
|
||||
"y": 108
|
||||
},
|
||||
"width": 161,
|
||||
|
|
@ -651,7 +651,7 @@
|
|||
"id": "q",
|
||||
"type": "rectangle",
|
||||
"pos": {
|
||||
"x": 1513,
|
||||
"x": 4011,
|
||||
"y": 69
|
||||
},
|
||||
"width": 165,
|
||||
|
|
@ -690,7 +690,7 @@
|
|||
"id": "r",
|
||||
"type": "step",
|
||||
"pos": {
|
||||
"x": 1571,
|
||||
"x": 4237,
|
||||
"y": 108
|
||||
},
|
||||
"width": 213,
|
||||
|
|
@ -729,7 +729,7 @@
|
|||
"id": "s",
|
||||
"type": "stored_data",
|
||||
"pos": {
|
||||
"x": 1709,
|
||||
"x": 4519,
|
||||
"y": 108
|
||||
},
|
||||
"width": 150,
|
||||
|
|
@ -768,7 +768,7 @@
|
|||
"id": "t",
|
||||
"type": "sql_table",
|
||||
"pos": {
|
||||
"x": 1754,
|
||||
"x": 4739,
|
||||
"y": 126
|
||||
},
|
||||
"width": 210,
|
||||
|
|
@ -887,7 +887,7 @@
|
|||
"y": 494
|
||||
},
|
||||
{
|
||||
"x": 409.5,
|
||||
"x": 583.5,
|
||||
"y": 494
|
||||
}
|
||||
],
|
||||
|
|
@ -922,11 +922,11 @@
|
|||
"labelPercentage": 0,
|
||||
"route": [
|
||||
{
|
||||
"x": 409.5,
|
||||
"x": 583.5,
|
||||
"y": 624
|
||||
},
|
||||
{
|
||||
"x": 530.5,
|
||||
"x": 843.5,
|
||||
"y": 624
|
||||
}
|
||||
],
|
||||
|
|
@ -961,11 +961,11 @@
|
|||
"labelPercentage": 0,
|
||||
"route": [
|
||||
{
|
||||
"x": 530.5,
|
||||
"x": 843.5,
|
||||
"y": 754
|
||||
},
|
||||
{
|
||||
"x": 620,
|
||||
"x": 1094,
|
||||
"y": 754
|
||||
}
|
||||
],
|
||||
|
|
@ -1000,11 +1000,11 @@
|
|||
"labelPercentage": 0,
|
||||
"route": [
|
||||
{
|
||||
"x": 620,
|
||||
"x": 1094,
|
||||
"y": 884
|
||||
},
|
||||
{
|
||||
"x": 718,
|
||||
"x": 1344,
|
||||
"y": 884
|
||||
}
|
||||
],
|
||||
|
|
@ -1039,11 +1039,11 @@
|
|||
"labelPercentage": 0,
|
||||
"route": [
|
||||
{
|
||||
"x": 718,
|
||||
"x": 1344,
|
||||
"y": 1014
|
||||
},
|
||||
{
|
||||
"x": 793,
|
||||
"x": 1594,
|
||||
"y": 1014
|
||||
}
|
||||
],
|
||||
|
|
@ -1078,11 +1078,11 @@
|
|||
"labelPercentage": 0,
|
||||
"route": [
|
||||
{
|
||||
"x": 793,
|
||||
"x": 1594,
|
||||
"y": 1144
|
||||
},
|
||||
{
|
||||
"x": 868,
|
||||
"x": 1844,
|
||||
"y": 1144
|
||||
}
|
||||
],
|
||||
|
|
@ -1117,11 +1117,11 @@
|
|||
"labelPercentage": 0,
|
||||
"route": [
|
||||
{
|
||||
"x": 868,
|
||||
"x": 1844,
|
||||
"y": 1274
|
||||
},
|
||||
{
|
||||
"x": 943,
|
||||
"x": 2094,
|
||||
"y": 1274
|
||||
}
|
||||
],
|
||||
|
|
@ -1156,11 +1156,11 @@
|
|||
"labelPercentage": 0,
|
||||
"route": [
|
||||
{
|
||||
"x": 943,
|
||||
"x": 2094,
|
||||
"y": 1404
|
||||
},
|
||||
{
|
||||
"x": 1034,
|
||||
"x": 2344,
|
||||
"y": 1404
|
||||
}
|
||||
],
|
||||
|
|
@ -1195,11 +1195,11 @@
|
|||
"labelPercentage": 0,
|
||||
"route": [
|
||||
{
|
||||
"x": 1034,
|
||||
"x": 2344,
|
||||
"y": 1534
|
||||
},
|
||||
{
|
||||
"x": 1109,
|
||||
"x": 2594,
|
||||
"y": 1534
|
||||
}
|
||||
],
|
||||
|
|
@ -1234,11 +1234,11 @@
|
|||
"labelPercentage": 0,
|
||||
"route": [
|
||||
{
|
||||
"x": 1109,
|
||||
"x": 2594,
|
||||
"y": 1664
|
||||
},
|
||||
{
|
||||
"x": 1184,
|
||||
"x": 2844,
|
||||
"y": 1664
|
||||
}
|
||||
],
|
||||
|
|
@ -1273,11 +1273,11 @@
|
|||
"labelPercentage": 0,
|
||||
"route": [
|
||||
{
|
||||
"x": 1184,
|
||||
"x": 2844,
|
||||
"y": 1794
|
||||
},
|
||||
{
|
||||
"x": 1258.5,
|
||||
"x": 3093.5,
|
||||
"y": 1794
|
||||
}
|
||||
],
|
||||
|
|
@ -1312,11 +1312,11 @@
|
|||
"labelPercentage": 0,
|
||||
"route": [
|
||||
{
|
||||
"x": 1258.5,
|
||||
"x": 3093.5,
|
||||
"y": 1924
|
||||
},
|
||||
{
|
||||
"x": 1346.5,
|
||||
"x": 3343.5,
|
||||
"y": 1924
|
||||
}
|
||||
],
|
||||
|
|
@ -1351,11 +1351,11 @@
|
|||
"labelPercentage": 0,
|
||||
"route": [
|
||||
{
|
||||
"x": 1346.5,
|
||||
"x": 3343.5,
|
||||
"y": 2054
|
||||
},
|
||||
{
|
||||
"x": 1438,
|
||||
"x": 3594,
|
||||
"y": 2054
|
||||
}
|
||||
],
|
||||
|
|
@ -1390,11 +1390,11 @@
|
|||
"labelPercentage": 0,
|
||||
"route": [
|
||||
{
|
||||
"x": 1438,
|
||||
"x": 3594,
|
||||
"y": 2184
|
||||
},
|
||||
{
|
||||
"x": 1514.5,
|
||||
"x": 3843.5,
|
||||
"y": 2184
|
||||
}
|
||||
],
|
||||
|
|
@ -1429,11 +1429,11 @@
|
|||
"labelPercentage": 0,
|
||||
"route": [
|
||||
{
|
||||
"x": 1514.5,
|
||||
"x": 3843.5,
|
||||
"y": 2314
|
||||
},
|
||||
{
|
||||
"x": 1595.5,
|
||||
"x": 4093.5,
|
||||
"y": 2314
|
||||
}
|
||||
],
|
||||
|
|
@ -1468,11 +1468,11 @@
|
|||
"labelPercentage": 0,
|
||||
"route": [
|
||||
{
|
||||
"x": 1595.5,
|
||||
"x": 4093.5,
|
||||
"y": 2444
|
||||
},
|
||||
{
|
||||
"x": 1677.5,
|
||||
"x": 4343.5,
|
||||
"y": 2444
|
||||
}
|
||||
],
|
||||
|
|
@ -1507,11 +1507,11 @@
|
|||
"labelPercentage": 0,
|
||||
"route": [
|
||||
{
|
||||
"x": 1677.5,
|
||||
"x": 4343.5,
|
||||
"y": 2574
|
||||
},
|
||||
{
|
||||
"x": 1784,
|
||||
"x": 4594,
|
||||
"y": 2574
|
||||
}
|
||||
],
|
||||
|
|
@ -1546,11 +1546,11 @@
|
|||
"labelPercentage": 0,
|
||||
"route": [
|
||||
{
|
||||
"x": 1784,
|
||||
"x": 4594,
|
||||
"y": 2704
|
||||
},
|
||||
{
|
||||
"x": 1859,
|
||||
"x": 4844,
|
||||
"y": 2704
|
||||
}
|
||||
],
|
||||
|
|
@ -1663,11 +1663,11 @@
|
|||
"labelPercentage": 0,
|
||||
"route": [
|
||||
{
|
||||
"x": 409.5,
|
||||
"x": 583.5,
|
||||
"y": 234
|
||||
},
|
||||
{
|
||||
"x": 409.5,
|
||||
"x": 583.5,
|
||||
"y": 2834
|
||||
}
|
||||
],
|
||||
|
|
@ -1702,11 +1702,11 @@
|
|||
"labelPercentage": 0,
|
||||
"route": [
|
||||
{
|
||||
"x": 530.5,
|
||||
"x": 843.5,
|
||||
"y": 234
|
||||
},
|
||||
{
|
||||
"x": 530.5,
|
||||
"x": 843.5,
|
||||
"y": 2834
|
||||
}
|
||||
],
|
||||
|
|
@ -1741,11 +1741,11 @@
|
|||
"labelPercentage": 0,
|
||||
"route": [
|
||||
{
|
||||
"x": 620,
|
||||
"x": 1094,
|
||||
"y": 234
|
||||
},
|
||||
{
|
||||
"x": 620,
|
||||
"x": 1094,
|
||||
"y": 2834
|
||||
}
|
||||
],
|
||||
|
|
@ -1780,11 +1780,11 @@
|
|||
"labelPercentage": 0,
|
||||
"route": [
|
||||
{
|
||||
"x": 718,
|
||||
"x": 1344,
|
||||
"y": 234
|
||||
},
|
||||
{
|
||||
"x": 718,
|
||||
"x": 1344,
|
||||
"y": 2834
|
||||
}
|
||||
],
|
||||
|
|
@ -1819,11 +1819,11 @@
|
|||
"labelPercentage": 0,
|
||||
"route": [
|
||||
{
|
||||
"x": 793,
|
||||
"x": 1594,
|
||||
"y": 234
|
||||
},
|
||||
{
|
||||
"x": 793,
|
||||
"x": 1594,
|
||||
"y": 2834
|
||||
}
|
||||
],
|
||||
|
|
@ -1858,11 +1858,11 @@
|
|||
"labelPercentage": 0,
|
||||
"route": [
|
||||
{
|
||||
"x": 868,
|
||||
"x": 1844,
|
||||
"y": 234
|
||||
},
|
||||
{
|
||||
"x": 868,
|
||||
"x": 1844,
|
||||
"y": 2834
|
||||
}
|
||||
],
|
||||
|
|
@ -1897,11 +1897,11 @@
|
|||
"labelPercentage": 0,
|
||||
"route": [
|
||||
{
|
||||
"x": 943,
|
||||
"x": 2094,
|
||||
"y": 234
|
||||
},
|
||||
{
|
||||
"x": 943,
|
||||
"x": 2094,
|
||||
"y": 2834
|
||||
}
|
||||
],
|
||||
|
|
@ -1936,11 +1936,11 @@
|
|||
"labelPercentage": 0,
|
||||
"route": [
|
||||
{
|
||||
"x": 1034,
|
||||
"x": 2344,
|
||||
"y": 239
|
||||
},
|
||||
{
|
||||
"x": 1034,
|
||||
"x": 2344,
|
||||
"y": 2834
|
||||
}
|
||||
],
|
||||
|
|
@ -1975,11 +1975,11 @@
|
|||
"labelPercentage": 0,
|
||||
"route": [
|
||||
{
|
||||
"x": 1109,
|
||||
"x": 2594,
|
||||
"y": 234
|
||||
},
|
||||
{
|
||||
"x": 1109,
|
||||
"x": 2594,
|
||||
"y": 2834
|
||||
}
|
||||
],
|
||||
|
|
@ -2014,11 +2014,11 @@
|
|||
"labelPercentage": 0,
|
||||
"route": [
|
||||
{
|
||||
"x": 1184,
|
||||
"x": 2844,
|
||||
"y": 234
|
||||
},
|
||||
{
|
||||
"x": 1184,
|
||||
"x": 2844,
|
||||
"y": 2834
|
||||
}
|
||||
],
|
||||
|
|
@ -2053,11 +2053,11 @@
|
|||
"labelPercentage": 0,
|
||||
"route": [
|
||||
{
|
||||
"x": 1258.5,
|
||||
"x": 3093.5,
|
||||
"y": 234
|
||||
},
|
||||
{
|
||||
"x": 1258.5,
|
||||
"x": 3093.5,
|
||||
"y": 2834
|
||||
}
|
||||
],
|
||||
|
|
@ -2092,11 +2092,11 @@
|
|||
"labelPercentage": 0,
|
||||
"route": [
|
||||
{
|
||||
"x": 1346.5,
|
||||
"x": 3343.5,
|
||||
"y": 234
|
||||
},
|
||||
{
|
||||
"x": 1346.5,
|
||||
"x": 3343.5,
|
||||
"y": 2834
|
||||
}
|
||||
],
|
||||
|
|
@ -2131,11 +2131,11 @@
|
|||
"labelPercentage": 0,
|
||||
"route": [
|
||||
{
|
||||
"x": 1438,
|
||||
"x": 3594,
|
||||
"y": 239
|
||||
},
|
||||
{
|
||||
"x": 1438,
|
||||
"x": 3594,
|
||||
"y": 2834
|
||||
}
|
||||
],
|
||||
|
|
@ -2170,11 +2170,11 @@
|
|||
"labelPercentage": 0,
|
||||
"route": [
|
||||
{
|
||||
"x": 1514.5,
|
||||
"x": 3843.5,
|
||||
"y": 234
|
||||
},
|
||||
{
|
||||
"x": 1514.5,
|
||||
"x": 3843.5,
|
||||
"y": 2834
|
||||
}
|
||||
],
|
||||
|
|
@ -2209,11 +2209,11 @@
|
|||
"labelPercentage": 0,
|
||||
"route": [
|
||||
{
|
||||
"x": 1595.5,
|
||||
"x": 4093.5,
|
||||
"y": 234
|
||||
},
|
||||
{
|
||||
"x": 1595.5,
|
||||
"x": 4093.5,
|
||||
"y": 2834
|
||||
}
|
||||
],
|
||||
|
|
@ -2248,11 +2248,11 @@
|
|||
"labelPercentage": 0,
|
||||
"route": [
|
||||
{
|
||||
"x": 1677.5,
|
||||
"x": 4343.5,
|
||||
"y": 234
|
||||
},
|
||||
{
|
||||
"x": 1677.5,
|
||||
"x": 4343.5,
|
||||
"y": 2834
|
||||
}
|
||||
],
|
||||
|
|
@ -2287,11 +2287,11 @@
|
|||
"labelPercentage": 0,
|
||||
"route": [
|
||||
{
|
||||
"x": 1784,
|
||||
"x": 4594,
|
||||
"y": 234
|
||||
},
|
||||
{
|
||||
"x": 1784,
|
||||
"x": 4594,
|
||||
"y": 2834
|
||||
}
|
||||
],
|
||||
|
|
@ -2326,11 +2326,11 @@
|
|||
"labelPercentage": 0,
|
||||
"route": [
|
||||
{
|
||||
"x": 1859,
|
||||
"x": 4844,
|
||||
"y": 234
|
||||
},
|
||||
{
|
||||
"x": 1859,
|
||||
"x": 4844,
|
||||
"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",
|
||||
"type": "",
|
||||
"pos": {
|
||||
"x": 76,
|
||||
"x": 250,
|
||||
"y": 50
|
||||
},
|
||||
"width": 150,
|
||||
|
|
@ -83,7 +83,7 @@
|
|||
"id": "c",
|
||||
"type": "",
|
||||
"pos": {
|
||||
"x": 151,
|
||||
"x": 500,
|
||||
"y": 50
|
||||
},
|
||||
"width": 150,
|
||||
|
|
@ -122,7 +122,7 @@
|
|||
"id": "d",
|
||||
"type": "",
|
||||
"pos": {
|
||||
"x": 226,
|
||||
"x": 750,
|
||||
"y": 50
|
||||
},
|
||||
"width": 150,
|
||||
|
|
@ -164,7 +164,7 @@
|
|||
"x": 25,
|
||||
"y": 396
|
||||
},
|
||||
"width": 176,
|
||||
"width": 350,
|
||||
"height": 80,
|
||||
"opacity": 1,
|
||||
"strokeDash": 0,
|
||||
|
|
@ -199,10 +199,10 @@
|
|||
"id": "group 1",
|
||||
"type": "",
|
||||
"pos": {
|
||||
"x": 77,
|
||||
"x": 251,
|
||||
"y": 526
|
||||
},
|
||||
"width": 223,
|
||||
"width": 398,
|
||||
"height": 730,
|
||||
"opacity": 1,
|
||||
"strokeDash": 0,
|
||||
|
|
@ -237,10 +237,10 @@
|
|||
"id": "group 1.nested guy",
|
||||
"type": "",
|
||||
"pos": {
|
||||
"x": 101,
|
||||
"x": 275,
|
||||
"y": 786
|
||||
},
|
||||
"width": 175,
|
||||
"width": 350,
|
||||
"height": 80,
|
||||
"opacity": 1,
|
||||
"strokeDash": 0,
|
||||
|
|
@ -275,10 +275,10 @@
|
|||
"id": "group b",
|
||||
"type": "",
|
||||
"pos": {
|
||||
"x": 43,
|
||||
"x": 275,
|
||||
"y": 1306
|
||||
},
|
||||
"width": 356,
|
||||
"width": 473,
|
||||
"height": 466,
|
||||
"opacity": 1,
|
||||
"strokeDash": 0,
|
||||
|
|
@ -313,7 +313,7 @@
|
|||
"id": "c.what would arnold say",
|
||||
"type": "rectangle",
|
||||
"pos": {
|
||||
"x": 93,
|
||||
"x": 442,
|
||||
"y": 1476
|
||||
},
|
||||
"width": 266,
|
||||
|
|
@ -352,7 +352,7 @@
|
|||
"id": "choo",
|
||||
"type": "",
|
||||
"pos": {
|
||||
"x": 167,
|
||||
"x": 691,
|
||||
"y": 1822
|
||||
},
|
||||
"width": 258,
|
||||
|
|
@ -390,7 +390,7 @@
|
|||
"id": "d.this note",
|
||||
"type": "rectangle",
|
||||
"pos": {
|
||||
"x": 217,
|
||||
"x": 741,
|
||||
"y": 1862
|
||||
},
|
||||
"width": 168,
|
||||
|
|
@ -429,7 +429,7 @@
|
|||
"id": "b.t1",
|
||||
"type": "rectangle",
|
||||
"pos": {
|
||||
"x": 145,
|
||||
"x": 319,
|
||||
"y": 940
|
||||
},
|
||||
"width": 12,
|
||||
|
|
@ -467,7 +467,7 @@
|
|||
"id": "c.t1",
|
||||
"type": "rectangle",
|
||||
"pos": {
|
||||
"x": 220,
|
||||
"x": 569,
|
||||
"y": 940
|
||||
},
|
||||
"width": 12,
|
||||
|
|
@ -505,7 +505,7 @@
|
|||
"id": "b.t1.t2",
|
||||
"type": "rectangle",
|
||||
"pos": {
|
||||
"x": 141,
|
||||
"x": 315,
|
||||
"y": 1070
|
||||
},
|
||||
"width": 20,
|
||||
|
|
@ -571,7 +571,7 @@
|
|||
"y": 306
|
||||
},
|
||||
{
|
||||
"x": 151,
|
||||
"x": 325,
|
||||
"y": 306
|
||||
}
|
||||
],
|
||||
|
|
@ -610,7 +610,7 @@
|
|||
"y": 436
|
||||
},
|
||||
{
|
||||
"x": 151,
|
||||
"x": 325,
|
||||
"y": 436
|
||||
}
|
||||
],
|
||||
|
|
@ -645,11 +645,11 @@
|
|||
"labelPercentage": 0,
|
||||
"route": [
|
||||
{
|
||||
"x": 151,
|
||||
"x": 325,
|
||||
"y": 566
|
||||
},
|
||||
{
|
||||
"x": 226,
|
||||
"x": 575,
|
||||
"y": 566
|
||||
}
|
||||
],
|
||||
|
|
@ -684,11 +684,11 @@
|
|||
"labelPercentage": 0,
|
||||
"route": [
|
||||
{
|
||||
"x": 226,
|
||||
"x": 575,
|
||||
"y": 696
|
||||
},
|
||||
{
|
||||
"x": 151,
|
||||
"x": 325,
|
||||
"y": 696
|
||||
}
|
||||
],
|
||||
|
|
@ -723,11 +723,11 @@
|
|||
"labelPercentage": 0,
|
||||
"route": [
|
||||
{
|
||||
"x": 226,
|
||||
"x": 575,
|
||||
"y": 826
|
||||
},
|
||||
{
|
||||
"x": 151,
|
||||
"x": 325,
|
||||
"y": 826
|
||||
}
|
||||
],
|
||||
|
|
@ -762,11 +762,11 @@
|
|||
"labelPercentage": 0,
|
||||
"route": [
|
||||
{
|
||||
"x": 157,
|
||||
"x": 331,
|
||||
"y": 956
|
||||
},
|
||||
{
|
||||
"x": 220,
|
||||
"x": 569,
|
||||
"y": 956
|
||||
}
|
||||
],
|
||||
|
|
@ -801,11 +801,11 @@
|
|||
"labelPercentage": 0,
|
||||
"route": [
|
||||
{
|
||||
"x": 161,
|
||||
"x": 335,
|
||||
"y": 1086
|
||||
},
|
||||
{
|
||||
"x": 220,
|
||||
"x": 569,
|
||||
"y": 1086
|
||||
}
|
||||
],
|
||||
|
|
@ -840,11 +840,11 @@
|
|||
"labelPercentage": 0,
|
||||
"route": [
|
||||
{
|
||||
"x": 220,
|
||||
"x": 569,
|
||||
"y": 1216
|
||||
},
|
||||
{
|
||||
"x": 157,
|
||||
"x": 331,
|
||||
"y": 1216
|
||||
}
|
||||
],
|
||||
|
|
@ -879,11 +879,11 @@
|
|||
"labelPercentage": 0,
|
||||
"route": [
|
||||
{
|
||||
"x": 151,
|
||||
"x": 325,
|
||||
"y": 1346
|
||||
},
|
||||
{
|
||||
"x": 226,
|
||||
"x": 575,
|
||||
"y": 1346
|
||||
}
|
||||
],
|
||||
|
|
@ -918,11 +918,11 @@
|
|||
"labelPercentage": 0,
|
||||
"route": [
|
||||
{
|
||||
"x": 226,
|
||||
"x": 575,
|
||||
"y": 1732
|
||||
},
|
||||
{
|
||||
"x": 151,
|
||||
"x": 325,
|
||||
"y": 1732
|
||||
}
|
||||
],
|
||||
|
|
@ -996,11 +996,11 @@
|
|||
"labelPercentage": 0,
|
||||
"route": [
|
||||
{
|
||||
"x": 151,
|
||||
"x": 325,
|
||||
"y": 176
|
||||
},
|
||||
{
|
||||
"x": 151,
|
||||
"x": 325,
|
||||
"y": 2118
|
||||
}
|
||||
],
|
||||
|
|
@ -1035,11 +1035,11 @@
|
|||
"labelPercentage": 0,
|
||||
"route": [
|
||||
{
|
||||
"x": 226,
|
||||
"x": 575,
|
||||
"y": 176
|
||||
},
|
||||
{
|
||||
"x": 226,
|
||||
"x": 575,
|
||||
"y": 2118
|
||||
}
|
||||
],
|
||||
|
|
@ -1074,11 +1074,11 @@
|
|||
"labelPercentage": 0,
|
||||
"route": [
|
||||
{
|
||||
"x": 301,
|
||||
"x": 825,
|
||||
"y": 176
|
||||
},
|
||||
{
|
||||
"x": 301,
|
||||
"x": 825,
|
||||
"y": 2118
|
||||
}
|
||||
],
|
||||
|
|
|
|||
|
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",
|
||||
"type": "",
|
||||
"pos": {
|
||||
"x": 76,
|
||||
"x": 250,
|
||||
"y": 50
|
||||
},
|
||||
"width": 150,
|
||||
|
|
@ -83,7 +83,7 @@
|
|||
"id": "c",
|
||||
"type": "",
|
||||
"pos": {
|
||||
"x": 151,
|
||||
"x": 500,
|
||||
"y": 50
|
||||
},
|
||||
"width": 150,
|
||||
|
|
@ -122,7 +122,7 @@
|
|||
"id": "d",
|
||||
"type": "",
|
||||
"pos": {
|
||||
"x": 226,
|
||||
"x": 750,
|
||||
"y": 50
|
||||
},
|
||||
"width": 150,
|
||||
|
|
@ -164,7 +164,7 @@
|
|||
"x": 25,
|
||||
"y": 396
|
||||
},
|
||||
"width": 176,
|
||||
"width": 350,
|
||||
"height": 80,
|
||||
"opacity": 1,
|
||||
"strokeDash": 0,
|
||||
|
|
@ -199,10 +199,10 @@
|
|||
"id": "group 1",
|
||||
"type": "",
|
||||
"pos": {
|
||||
"x": 77,
|
||||
"x": 251,
|
||||
"y": 526
|
||||
},
|
||||
"width": 223,
|
||||
"width": 398,
|
||||
"height": 730,
|
||||
"opacity": 1,
|
||||
"strokeDash": 0,
|
||||
|
|
@ -237,10 +237,10 @@
|
|||
"id": "group 1.nested guy",
|
||||
"type": "",
|
||||
"pos": {
|
||||
"x": 101,
|
||||
"x": 275,
|
||||
"y": 786
|
||||
},
|
||||
"width": 175,
|
||||
"width": 350,
|
||||
"height": 80,
|
||||
"opacity": 1,
|
||||
"strokeDash": 0,
|
||||
|
|
@ -275,10 +275,10 @@
|
|||
"id": "group b",
|
||||
"type": "",
|
||||
"pos": {
|
||||
"x": 43,
|
||||
"x": 275,
|
||||
"y": 1306
|
||||
},
|
||||
"width": 356,
|
||||
"width": 473,
|
||||
"height": 466,
|
||||
"opacity": 1,
|
||||
"strokeDash": 0,
|
||||
|
|
@ -313,7 +313,7 @@
|
|||
"id": "c.what would arnold say",
|
||||
"type": "rectangle",
|
||||
"pos": {
|
||||
"x": 93,
|
||||
"x": 442,
|
||||
"y": 1476
|
||||
},
|
||||
"width": 266,
|
||||
|
|
@ -352,7 +352,7 @@
|
|||
"id": "choo",
|
||||
"type": "",
|
||||
"pos": {
|
||||
"x": 167,
|
||||
"x": 691,
|
||||
"y": 1822
|
||||
},
|
||||
"width": 258,
|
||||
|
|
@ -390,7 +390,7 @@
|
|||
"id": "d.this note",
|
||||
"type": "rectangle",
|
||||
"pos": {
|
||||
"x": 217,
|
||||
"x": 741,
|
||||
"y": 1862
|
||||
},
|
||||
"width": 168,
|
||||
|
|
@ -429,7 +429,7 @@
|
|||
"id": "b.t1",
|
||||
"type": "rectangle",
|
||||
"pos": {
|
||||
"x": 145,
|
||||
"x": 319,
|
||||
"y": 940
|
||||
},
|
||||
"width": 12,
|
||||
|
|
@ -467,7 +467,7 @@
|
|||
"id": "c.t1",
|
||||
"type": "rectangle",
|
||||
"pos": {
|
||||
"x": 220,
|
||||
"x": 569,
|
||||
"y": 940
|
||||
},
|
||||
"width": 12,
|
||||
|
|
@ -505,7 +505,7 @@
|
|||
"id": "b.t1.t2",
|
||||
"type": "rectangle",
|
||||
"pos": {
|
||||
"x": 141,
|
||||
"x": 315,
|
||||
"y": 1070
|
||||
},
|
||||
"width": 20,
|
||||
|
|
@ -571,7 +571,7 @@
|
|||
"y": 306
|
||||
},
|
||||
{
|
||||
"x": 151,
|
||||
"x": 325,
|
||||
"y": 306
|
||||
}
|
||||
],
|
||||
|
|
@ -610,7 +610,7 @@
|
|||
"y": 436
|
||||
},
|
||||
{
|
||||
"x": 151,
|
||||
"x": 325,
|
||||
"y": 436
|
||||
}
|
||||
],
|
||||
|
|
@ -645,11 +645,11 @@
|
|||
"labelPercentage": 0,
|
||||
"route": [
|
||||
{
|
||||
"x": 151,
|
||||
"x": 325,
|
||||
"y": 566
|
||||
},
|
||||
{
|
||||
"x": 226,
|
||||
"x": 575,
|
||||
"y": 566
|
||||
}
|
||||
],
|
||||
|
|
@ -684,11 +684,11 @@
|
|||
"labelPercentage": 0,
|
||||
"route": [
|
||||
{
|
||||
"x": 226,
|
||||
"x": 575,
|
||||
"y": 696
|
||||
},
|
||||
{
|
||||
"x": 151,
|
||||
"x": 325,
|
||||
"y": 696
|
||||
}
|
||||
],
|
||||
|
|
@ -723,11 +723,11 @@
|
|||
"labelPercentage": 0,
|
||||
"route": [
|
||||
{
|
||||
"x": 226,
|
||||
"x": 575,
|
||||
"y": 826
|
||||
},
|
||||
{
|
||||
"x": 151,
|
||||
"x": 325,
|
||||
"y": 826
|
||||
}
|
||||
],
|
||||
|
|
@ -762,11 +762,11 @@
|
|||
"labelPercentage": 0,
|
||||
"route": [
|
||||
{
|
||||
"x": 157,
|
||||
"x": 331,
|
||||
"y": 956
|
||||
},
|
||||
{
|
||||
"x": 220,
|
||||
"x": 569,
|
||||
"y": 956
|
||||
}
|
||||
],
|
||||
|
|
@ -801,11 +801,11 @@
|
|||
"labelPercentage": 0,
|
||||
"route": [
|
||||
{
|
||||
"x": 161,
|
||||
"x": 335,
|
||||
"y": 1086
|
||||
},
|
||||
{
|
||||
"x": 220,
|
||||
"x": 569,
|
||||
"y": 1086
|
||||
}
|
||||
],
|
||||
|
|
@ -840,11 +840,11 @@
|
|||
"labelPercentage": 0,
|
||||
"route": [
|
||||
{
|
||||
"x": 220,
|
||||
"x": 569,
|
||||
"y": 1216
|
||||
},
|
||||
{
|
||||
"x": 157,
|
||||
"x": 331,
|
||||
"y": 1216
|
||||
}
|
||||
],
|
||||
|
|
@ -879,11 +879,11 @@
|
|||
"labelPercentage": 0,
|
||||
"route": [
|
||||
{
|
||||
"x": 151,
|
||||
"x": 325,
|
||||
"y": 1346
|
||||
},
|
||||
{
|
||||
"x": 226,
|
||||
"x": 575,
|
||||
"y": 1346
|
||||
}
|
||||
],
|
||||
|
|
@ -918,11 +918,11 @@
|
|||
"labelPercentage": 0,
|
||||
"route": [
|
||||
{
|
||||
"x": 226,
|
||||
"x": 575,
|
||||
"y": 1732
|
||||
},
|
||||
{
|
||||
"x": 151,
|
||||
"x": 325,
|
||||
"y": 1732
|
||||
}
|
||||
],
|
||||
|
|
@ -996,11 +996,11 @@
|
|||
"labelPercentage": 0,
|
||||
"route": [
|
||||
{
|
||||
"x": 151,
|
||||
"x": 325,
|
||||
"y": 176
|
||||
},
|
||||
{
|
||||
"x": 151,
|
||||
"x": 325,
|
||||
"y": 2118
|
||||
}
|
||||
],
|
||||
|
|
@ -1035,11 +1035,11 @@
|
|||
"labelPercentage": 0,
|
||||
"route": [
|
||||
{
|
||||
"x": 226,
|
||||
"x": 575,
|
||||
"y": 176
|
||||
},
|
||||
{
|
||||
"x": 226,
|
||||
"x": 575,
|
||||
"y": 2118
|
||||
}
|
||||
],
|
||||
|
|
@ -1074,11 +1074,11 @@
|
|||
"labelPercentage": 0,
|
||||
"route": [
|
||||
{
|
||||
"x": 301,
|
||||
"x": 825,
|
||||
"y": 176
|
||||
},
|
||||
{
|
||||
"x": 301,
|
||||
"x": 825,
|
||||
"y": 2118
|
||||
}
|
||||
],
|
||||
|
|
|
|||
|
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",
|
||||
"type": "",
|
||||
"pos": {
|
||||
"x": 50,
|
||||
"x": 225,
|
||||
"y": 50
|
||||
},
|
||||
"width": 200,
|
||||
|
|
@ -121,7 +121,7 @@
|
|||
"id": "itemResponse.a",
|
||||
"type": "rectangle",
|
||||
"pos": {
|
||||
"x": 144,
|
||||
"x": 319,
|
||||
"y": 290
|
||||
},
|
||||
"width": 12,
|
||||
|
|
@ -159,7 +159,7 @@
|
|||
"id": "item",
|
||||
"type": "",
|
||||
"pos": {
|
||||
"x": 175,
|
||||
"x": 500,
|
||||
"y": 50
|
||||
},
|
||||
"width": 150,
|
||||
|
|
@ -198,7 +198,7 @@
|
|||
"id": "item.a",
|
||||
"type": "rectangle",
|
||||
"pos": {
|
||||
"x": 244,
|
||||
"x": 569,
|
||||
"y": 404
|
||||
},
|
||||
"width": 12,
|
||||
|
|
@ -236,7 +236,7 @@
|
|||
"id": "item.a.b",
|
||||
"type": "rectangle",
|
||||
"pos": {
|
||||
"x": 240,
|
||||
"x": 565,
|
||||
"y": 420
|
||||
},
|
||||
"width": 20,
|
||||
|
|
@ -274,7 +274,7 @@
|
|||
"id": "essayRubric",
|
||||
"type": "",
|
||||
"pos": {
|
||||
"x": 232,
|
||||
"x": 732,
|
||||
"y": 50
|
||||
},
|
||||
"width": 186,
|
||||
|
|
@ -313,7 +313,7 @@
|
|||
"id": "essayRubric.a",
|
||||
"type": "rectangle",
|
||||
"pos": {
|
||||
"x": 319,
|
||||
"x": 819,
|
||||
"y": 518
|
||||
},
|
||||
"width": 12,
|
||||
|
|
@ -351,7 +351,7 @@
|
|||
"id": "essayRubric.a.b",
|
||||
"type": "rectangle",
|
||||
"pos": {
|
||||
"x": 315,
|
||||
"x": 815,
|
||||
"y": 534
|
||||
},
|
||||
"width": 20,
|
||||
|
|
@ -389,7 +389,7 @@
|
|||
"id": "essayRubric.a.b.c",
|
||||
"type": "rectangle",
|
||||
"pos": {
|
||||
"x": 311,
|
||||
"x": 811,
|
||||
"y": 550
|
||||
},
|
||||
"width": 28,
|
||||
|
|
@ -427,7 +427,7 @@
|
|||
"id": "concept",
|
||||
"type": "",
|
||||
"pos": {
|
||||
"x": 338,
|
||||
"x": 995,
|
||||
"y": 50
|
||||
},
|
||||
"width": 160,
|
||||
|
|
@ -466,7 +466,7 @@
|
|||
"id": "concept.a",
|
||||
"type": "rectangle",
|
||||
"pos": {
|
||||
"x": 412,
|
||||
"x": 1069,
|
||||
"y": 632
|
||||
},
|
||||
"width": 12,
|
||||
|
|
@ -504,7 +504,7 @@
|
|||
"id": "concept.a.b",
|
||||
"type": "rectangle",
|
||||
"pos": {
|
||||
"x": 408,
|
||||
"x": 1065,
|
||||
"y": 648
|
||||
},
|
||||
"width": 20,
|
||||
|
|
@ -542,7 +542,7 @@
|
|||
"id": "concept.a.b.c",
|
||||
"type": "rectangle",
|
||||
"pos": {
|
||||
"x": 404,
|
||||
"x": 1061,
|
||||
"y": 664
|
||||
},
|
||||
"width": 28,
|
||||
|
|
@ -580,7 +580,7 @@
|
|||
"id": "concept.a.b.c.d",
|
||||
"type": "rectangle",
|
||||
"pos": {
|
||||
"x": 400,
|
||||
"x": 1057,
|
||||
"y": 680
|
||||
},
|
||||
"width": 36,
|
||||
|
|
@ -618,7 +618,7 @@
|
|||
"id": "itemOutcome",
|
||||
"type": "",
|
||||
"pos": {
|
||||
"x": 400,
|
||||
"x": 1227,
|
||||
"y": 50
|
||||
},
|
||||
"width": 197,
|
||||
|
|
@ -657,7 +657,7 @@
|
|||
"id": "itemOutcome.a",
|
||||
"type": "rectangle",
|
||||
"pos": {
|
||||
"x": 492,
|
||||
"x": 1319,
|
||||
"y": 876
|
||||
},
|
||||
"width": 12,
|
||||
|
|
@ -695,7 +695,7 @@
|
|||
"id": "itemOutcome.a.b",
|
||||
"type": "rectangle",
|
||||
"pos": {
|
||||
"x": 488,
|
||||
"x": 1315,
|
||||
"y": 892
|
||||
},
|
||||
"width": 20,
|
||||
|
|
@ -733,7 +733,7 @@
|
|||
"id": "itemOutcome.a.b.c",
|
||||
"type": "rectangle",
|
||||
"pos": {
|
||||
"x": 484,
|
||||
"x": 1311,
|
||||
"y": 908
|
||||
},
|
||||
"width": 28,
|
||||
|
|
@ -771,7 +771,7 @@
|
|||
"id": "itemOutcome.a.b.c.d",
|
||||
"type": "rectangle",
|
||||
"pos": {
|
||||
"x": 480,
|
||||
"x": 1307,
|
||||
"y": 924
|
||||
},
|
||||
"width": 36,
|
||||
|
|
@ -809,7 +809,7 @@
|
|||
"id": "itemOutcome.a.b.c.d.e",
|
||||
"type": "rectangle",
|
||||
"pos": {
|
||||
"x": 476,
|
||||
"x": 1303,
|
||||
"y": 940
|
||||
},
|
||||
"width": 44,
|
||||
|
|
@ -847,7 +847,7 @@
|
|||
"id": "itemResponse.c",
|
||||
"type": "rectangle",
|
||||
"pos": {
|
||||
"x": 144,
|
||||
"x": 319,
|
||||
"y": 1330
|
||||
},
|
||||
"width": 12,
|
||||
|
|
@ -913,7 +913,7 @@
|
|||
"y": 306
|
||||
},
|
||||
{
|
||||
"x": 144,
|
||||
"x": 319,
|
||||
"y": 306
|
||||
}
|
||||
],
|
||||
|
|
@ -948,11 +948,11 @@
|
|||
"labelPercentage": 0,
|
||||
"route": [
|
||||
{
|
||||
"x": 156,
|
||||
"x": 331,
|
||||
"y": 436
|
||||
},
|
||||
{
|
||||
"x": 240,
|
||||
"x": 565,
|
||||
"y": 436
|
||||
}
|
||||
],
|
||||
|
|
@ -987,11 +987,11 @@
|
|||
"labelPercentage": 0,
|
||||
"route": [
|
||||
{
|
||||
"x": 260,
|
||||
"x": 585,
|
||||
"y": 566
|
||||
},
|
||||
{
|
||||
"x": 311,
|
||||
"x": 811,
|
||||
"y": 566
|
||||
}
|
||||
],
|
||||
|
|
@ -1026,11 +1026,11 @@
|
|||
"labelPercentage": 0,
|
||||
"route": [
|
||||
{
|
||||
"x": 339,
|
||||
"x": 839,
|
||||
"y": 696
|
||||
},
|
||||
{
|
||||
"x": 400,
|
||||
"x": 1057,
|
||||
"y": 696
|
||||
}
|
||||
],
|
||||
|
|
@ -1065,11 +1065,11 @@
|
|||
"labelPercentage": 0,
|
||||
"route": [
|
||||
{
|
||||
"x": 256,
|
||||
"x": 581,
|
||||
"y": 826
|
||||
},
|
||||
{
|
||||
"x": 315,
|
||||
"x": 815,
|
||||
"y": 826
|
||||
}
|
||||
],
|
||||
|
|
@ -1104,11 +1104,11 @@
|
|||
"labelPercentage": 0,
|
||||
"route": [
|
||||
{
|
||||
"x": 436,
|
||||
"x": 1093,
|
||||
"y": 956
|
||||
},
|
||||
{
|
||||
"x": 476.5,
|
||||
"x": 1303.5,
|
||||
"y": 956
|
||||
}
|
||||
],
|
||||
|
|
@ -1147,7 +1147,7 @@
|
|||
"y": 1086
|
||||
},
|
||||
{
|
||||
"x": 244,
|
||||
"x": 569,
|
||||
"y": 1086
|
||||
}
|
||||
],
|
||||
|
|
@ -1182,7 +1182,7 @@
|
|||
"labelPercentage": 0,
|
||||
"route": [
|
||||
{
|
||||
"x": 476.5,
|
||||
"x": 1303.5,
|
||||
"y": 1216
|
||||
},
|
||||
{
|
||||
|
|
@ -1225,7 +1225,7 @@
|
|||
"y": 1346
|
||||
},
|
||||
{
|
||||
"x": 144,
|
||||
"x": 319,
|
||||
"y": 1346
|
||||
}
|
||||
],
|
||||
|
|
@ -1299,11 +1299,11 @@
|
|||
"labelPercentage": 0,
|
||||
"route": [
|
||||
{
|
||||
"x": 150,
|
||||
"x": 325,
|
||||
"y": 176
|
||||
},
|
||||
{
|
||||
"x": 150,
|
||||
"x": 325,
|
||||
"y": 1476
|
||||
}
|
||||
],
|
||||
|
|
@ -1338,11 +1338,11 @@
|
|||
"labelPercentage": 0,
|
||||
"route": [
|
||||
{
|
||||
"x": 250,
|
||||
"x": 575,
|
||||
"y": 176
|
||||
},
|
||||
{
|
||||
"x": 250,
|
||||
"x": 575,
|
||||
"y": 1476
|
||||
}
|
||||
],
|
||||
|
|
@ -1377,11 +1377,11 @@
|
|||
"labelPercentage": 0,
|
||||
"route": [
|
||||
{
|
||||
"x": 325,
|
||||
"x": 825,
|
||||
"y": 176
|
||||
},
|
||||
{
|
||||
"x": 325,
|
||||
"x": 825,
|
||||
"y": 1476
|
||||
}
|
||||
],
|
||||
|
|
@ -1416,11 +1416,11 @@
|
|||
"labelPercentage": 0,
|
||||
"route": [
|
||||
{
|
||||
"x": 418,
|
||||
"x": 1075,
|
||||
"y": 176
|
||||
},
|
||||
{
|
||||
"x": 418,
|
||||
"x": 1075,
|
||||
"y": 1476
|
||||
}
|
||||
],
|
||||
|
|
@ -1455,11 +1455,11 @@
|
|||
"labelPercentage": 0,
|
||||
"route": [
|
||||
{
|
||||
"x": 498.5,
|
||||
"x": 1325.5,
|
||||
"y": 176
|
||||
},
|
||||
{
|
||||
"x": 498.5,
|
||||
"x": 1325.5,
|
||||
"y": 1476
|
||||
}
|
||||
],
|
||||
|
|
|
|||
|
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",
|
||||
"type": "",
|
||||
"pos": {
|
||||
"x": 50,
|
||||
"x": 225,
|
||||
"y": 50
|
||||
},
|
||||
"width": 200,
|
||||
|
|
@ -121,7 +121,7 @@
|
|||
"id": "itemResponse.a",
|
||||
"type": "rectangle",
|
||||
"pos": {
|
||||
"x": 144,
|
||||
"x": 319,
|
||||
"y": 290
|
||||
},
|
||||
"width": 12,
|
||||
|
|
@ -159,7 +159,7 @@
|
|||
"id": "item",
|
||||
"type": "",
|
||||
"pos": {
|
||||
"x": 175,
|
||||
"x": 500,
|
||||
"y": 50
|
||||
},
|
||||
"width": 150,
|
||||
|
|
@ -198,7 +198,7 @@
|
|||
"id": "item.a",
|
||||
"type": "rectangle",
|
||||
"pos": {
|
||||
"x": 244,
|
||||
"x": 569,
|
||||
"y": 404
|
||||
},
|
||||
"width": 12,
|
||||
|
|
@ -236,7 +236,7 @@
|
|||
"id": "item.a.b",
|
||||
"type": "rectangle",
|
||||
"pos": {
|
||||
"x": 240,
|
||||
"x": 565,
|
||||
"y": 420
|
||||
},
|
||||
"width": 20,
|
||||
|
|
@ -274,7 +274,7 @@
|
|||
"id": "essayRubric",
|
||||
"type": "",
|
||||
"pos": {
|
||||
"x": 232,
|
||||
"x": 732,
|
||||
"y": 50
|
||||
},
|
||||
"width": 186,
|
||||
|
|
@ -313,7 +313,7 @@
|
|||
"id": "essayRubric.a",
|
||||
"type": "rectangle",
|
||||
"pos": {
|
||||
"x": 319,
|
||||
"x": 819,
|
||||
"y": 518
|
||||
},
|
||||
"width": 12,
|
||||
|
|
@ -351,7 +351,7 @@
|
|||
"id": "essayRubric.a.b",
|
||||
"type": "rectangle",
|
||||
"pos": {
|
||||
"x": 315,
|
||||
"x": 815,
|
||||
"y": 534
|
||||
},
|
||||
"width": 20,
|
||||
|
|
@ -389,7 +389,7 @@
|
|||
"id": "essayRubric.a.b.c",
|
||||
"type": "rectangle",
|
||||
"pos": {
|
||||
"x": 311,
|
||||
"x": 811,
|
||||
"y": 550
|
||||
},
|
||||
"width": 28,
|
||||
|
|
@ -427,7 +427,7 @@
|
|||
"id": "concept",
|
||||
"type": "",
|
||||
"pos": {
|
||||
"x": 338,
|
||||
"x": 995,
|
||||
"y": 50
|
||||
},
|
||||
"width": 160,
|
||||
|
|
@ -466,7 +466,7 @@
|
|||
"id": "concept.a",
|
||||
"type": "rectangle",
|
||||
"pos": {
|
||||
"x": 412,
|
||||
"x": 1069,
|
||||
"y": 632
|
||||
},
|
||||
"width": 12,
|
||||
|
|
@ -504,7 +504,7 @@
|
|||
"id": "concept.a.b",
|
||||
"type": "rectangle",
|
||||
"pos": {
|
||||
"x": 408,
|
||||
"x": 1065,
|
||||
"y": 648
|
||||
},
|
||||
"width": 20,
|
||||
|
|
@ -542,7 +542,7 @@
|
|||
"id": "concept.a.b.c",
|
||||
"type": "rectangle",
|
||||
"pos": {
|
||||
"x": 404,
|
||||
"x": 1061,
|
||||
"y": 664
|
||||
},
|
||||
"width": 28,
|
||||
|
|
@ -580,7 +580,7 @@
|
|||
"id": "concept.a.b.c.d",
|
||||
"type": "rectangle",
|
||||
"pos": {
|
||||
"x": 400,
|
||||
"x": 1057,
|
||||
"y": 680
|
||||
},
|
||||
"width": 36,
|
||||
|
|
@ -618,7 +618,7 @@
|
|||
"id": "itemOutcome",
|
||||
"type": "",
|
||||
"pos": {
|
||||
"x": 400,
|
||||
"x": 1227,
|
||||
"y": 50
|
||||
},
|
||||
"width": 197,
|
||||
|
|
@ -657,7 +657,7 @@
|
|||
"id": "itemOutcome.a",
|
||||
"type": "rectangle",
|
||||
"pos": {
|
||||
"x": 492,
|
||||
"x": 1319,
|
||||
"y": 876
|
||||
},
|
||||
"width": 12,
|
||||
|
|
@ -695,7 +695,7 @@
|
|||
"id": "itemOutcome.a.b",
|
||||
"type": "rectangle",
|
||||
"pos": {
|
||||
"x": 488,
|
||||
"x": 1315,
|
||||
"y": 892
|
||||
},
|
||||
"width": 20,
|
||||
|
|
@ -733,7 +733,7 @@
|
|||
"id": "itemOutcome.a.b.c",
|
||||
"type": "rectangle",
|
||||
"pos": {
|
||||
"x": 484,
|
||||
"x": 1311,
|
||||
"y": 908
|
||||
},
|
||||
"width": 28,
|
||||
|
|
@ -771,7 +771,7 @@
|
|||
"id": "itemOutcome.a.b.c.d",
|
||||
"type": "rectangle",
|
||||
"pos": {
|
||||
"x": 480,
|
||||
"x": 1307,
|
||||
"y": 924
|
||||
},
|
||||
"width": 36,
|
||||
|
|
@ -809,7 +809,7 @@
|
|||
"id": "itemOutcome.a.b.c.d.e",
|
||||
"type": "rectangle",
|
||||
"pos": {
|
||||
"x": 476,
|
||||
"x": 1303,
|
||||
"y": 940
|
||||
},
|
||||
"width": 44,
|
||||
|
|
@ -847,7 +847,7 @@
|
|||
"id": "itemResponse.c",
|
||||
"type": "rectangle",
|
||||
"pos": {
|
||||
"x": 144,
|
||||
"x": 319,
|
||||
"y": 1330
|
||||
},
|
||||
"width": 12,
|
||||
|
|
@ -913,7 +913,7 @@
|
|||
"y": 306
|
||||
},
|
||||
{
|
||||
"x": 144,
|
||||
"x": 319,
|
||||
"y": 306
|
||||
}
|
||||
],
|
||||
|
|
@ -948,11 +948,11 @@
|
|||
"labelPercentage": 0,
|
||||
"route": [
|
||||
{
|
||||
"x": 156,
|
||||
"x": 331,
|
||||
"y": 436
|
||||
},
|
||||
{
|
||||
"x": 240,
|
||||
"x": 565,
|
||||
"y": 436
|
||||
}
|
||||
],
|
||||
|
|
@ -987,11 +987,11 @@
|
|||
"labelPercentage": 0,
|
||||
"route": [
|
||||
{
|
||||
"x": 260,
|
||||
"x": 585,
|
||||
"y": 566
|
||||
},
|
||||
{
|
||||
"x": 311,
|
||||
"x": 811,
|
||||
"y": 566
|
||||
}
|
||||
],
|
||||
|
|
@ -1026,11 +1026,11 @@
|
|||
"labelPercentage": 0,
|
||||
"route": [
|
||||
{
|
||||
"x": 339,
|
||||
"x": 839,
|
||||
"y": 696
|
||||
},
|
||||
{
|
||||
"x": 400,
|
||||
"x": 1057,
|
||||
"y": 696
|
||||
}
|
||||
],
|
||||
|
|
@ -1065,11 +1065,11 @@
|
|||
"labelPercentage": 0,
|
||||
"route": [
|
||||
{
|
||||
"x": 256,
|
||||
"x": 581,
|
||||
"y": 826
|
||||
},
|
||||
{
|
||||
"x": 315,
|
||||
"x": 815,
|
||||
"y": 826
|
||||
}
|
||||
],
|
||||
|
|
@ -1104,11 +1104,11 @@
|
|||
"labelPercentage": 0,
|
||||
"route": [
|
||||
{
|
||||
"x": 436,
|
||||
"x": 1093,
|
||||
"y": 956
|
||||
},
|
||||
{
|
||||
"x": 476.5,
|
||||
"x": 1303.5,
|
||||
"y": 956
|
||||
}
|
||||
],
|
||||
|
|
@ -1147,7 +1147,7 @@
|
|||
"y": 1086
|
||||
},
|
||||
{
|
||||
"x": 244,
|
||||
"x": 569,
|
||||
"y": 1086
|
||||
}
|
||||
],
|
||||
|
|
@ -1182,7 +1182,7 @@
|
|||
"labelPercentage": 0,
|
||||
"route": [
|
||||
{
|
||||
"x": 476.5,
|
||||
"x": 1303.5,
|
||||
"y": 1216
|
||||
},
|
||||
{
|
||||
|
|
@ -1225,7 +1225,7 @@
|
|||
"y": 1346
|
||||
},
|
||||
{
|
||||
"x": 144,
|
||||
"x": 319,
|
||||
"y": 1346
|
||||
}
|
||||
],
|
||||
|
|
@ -1299,11 +1299,11 @@
|
|||
"labelPercentage": 0,
|
||||
"route": [
|
||||
{
|
||||
"x": 150,
|
||||
"x": 325,
|
||||
"y": 176
|
||||
},
|
||||
{
|
||||
"x": 150,
|
||||
"x": 325,
|
||||
"y": 1476
|
||||
}
|
||||
],
|
||||
|
|
@ -1338,11 +1338,11 @@
|
|||
"labelPercentage": 0,
|
||||
"route": [
|
||||
{
|
||||
"x": 250,
|
||||
"x": 575,
|
||||
"y": 176
|
||||
},
|
||||
{
|
||||
"x": 250,
|
||||
"x": 575,
|
||||
"y": 1476
|
||||
}
|
||||
],
|
||||
|
|
@ -1377,11 +1377,11 @@
|
|||
"labelPercentage": 0,
|
||||
"route": [
|
||||
{
|
||||
"x": 325,
|
||||
"x": 825,
|
||||
"y": 176
|
||||
},
|
||||
{
|
||||
"x": 325,
|
||||
"x": 825,
|
||||
"y": 1476
|
||||
}
|
||||
],
|
||||
|
|
@ -1416,11 +1416,11 @@
|
|||
"labelPercentage": 0,
|
||||
"route": [
|
||||
{
|
||||
"x": 418,
|
||||
"x": 1075,
|
||||
"y": 176
|
||||
},
|
||||
{
|
||||
"x": 418,
|
||||
"x": 1075,
|
||||
"y": 1476
|
||||
}
|
||||
],
|
||||
|
|
@ -1455,11 +1455,11 @@
|
|||
"labelPercentage": 0,
|
||||
"route": [
|
||||
{
|
||||
"x": 498.5,
|
||||
"x": 1325.5,
|
||||
"y": 176
|
||||
},
|
||||
{
|
||||
"x": 498.5,
|
||||
"x": 1325.5,
|
||||
"y": 1476
|
||||
}
|
||||
],
|
||||
|
|
|
|||
|
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",
|
||||
"type": "",
|
||||
"pos": {
|
||||
"x": 75,
|
||||
"x": 250,
|
||||
"y": 50
|
||||
},
|
||||
"width": 150,
|
||||
|
|
@ -83,7 +83,7 @@
|
|||
"id": "c",
|
||||
"type": "",
|
||||
"pos": {
|
||||
"x": 150,
|
||||
"x": 500,
|
||||
"y": 50
|
||||
},
|
||||
"width": 150,
|
||||
|
|
@ -122,7 +122,7 @@
|
|||
"id": "d",
|
||||
"type": "",
|
||||
"pos": {
|
||||
"x": 225,
|
||||
"x": 750,
|
||||
"y": 50
|
||||
},
|
||||
"width": 150,
|
||||
|
|
@ -239,7 +239,7 @@
|
|||
"id": "b.\"Some one who believes imaginary things\\n appear right before your i's.\"",
|
||||
"type": "rectangle",
|
||||
"pos": {
|
||||
"x": -46,
|
||||
"x": 128,
|
||||
"y": 1078
|
||||
},
|
||||
"width": 393,
|
||||
|
|
@ -278,7 +278,7 @@
|
|||
"id": "d.The earth is like a tiny grain of sand, only much, much heavier",
|
||||
"type": "rectangle",
|
||||
"pos": {
|
||||
"x": 29,
|
||||
"x": 554,
|
||||
"y": 1480
|
||||
},
|
||||
"width": 541,
|
||||
|
|
@ -345,7 +345,7 @@
|
|||
"y": 306
|
||||
},
|
||||
{
|
||||
"x": 150,
|
||||
"x": 325,
|
||||
"y": 306
|
||||
}
|
||||
],
|
||||
|
|
@ -380,11 +380,11 @@
|
|||
"labelPercentage": 0,
|
||||
"route": [
|
||||
{
|
||||
"x": 150,
|
||||
"x": 325,
|
||||
"y": 948
|
||||
},
|
||||
{
|
||||
"x": 225,
|
||||
"x": 575,
|
||||
"y": 948
|
||||
}
|
||||
],
|
||||
|
|
@ -419,11 +419,11 @@
|
|||
"labelPercentage": 0,
|
||||
"route": [
|
||||
{
|
||||
"x": 225,
|
||||
"x": 575,
|
||||
"y": 1350
|
||||
},
|
||||
{
|
||||
"x": 150,
|
||||
"x": 325,
|
||||
"y": 1350
|
||||
}
|
||||
],
|
||||
|
|
@ -497,11 +497,11 @@
|
|||
"labelPercentage": 0,
|
||||
"route": [
|
||||
{
|
||||
"x": 150,
|
||||
"x": 325,
|
||||
"y": 176
|
||||
},
|
||||
{
|
||||
"x": 150,
|
||||
"x": 325,
|
||||
"y": 1736
|
||||
}
|
||||
],
|
||||
|
|
@ -536,11 +536,11 @@
|
|||
"labelPercentage": 0,
|
||||
"route": [
|
||||
{
|
||||
"x": 225,
|
||||
"x": 575,
|
||||
"y": 176
|
||||
},
|
||||
{
|
||||
"x": 225,
|
||||
"x": 575,
|
||||
"y": 1736
|
||||
}
|
||||
],
|
||||
|
|
@ -575,11 +575,11 @@
|
|||
"labelPercentage": 0,
|
||||
"route": [
|
||||
{
|
||||
"x": 300,
|
||||
"x": 825,
|
||||
"y": 176
|
||||
},
|
||||
{
|
||||
"x": 300,
|
||||
"x": 825,
|
||||
"y": 1736
|
||||
}
|
||||
],
|
||||
|
|
|
|||
|
|
@ -2,7 +2,7 @@
|
|||
<svg
|
||||
style="background: white;"
|
||||
xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink"
|
||||
width="820" height="1886" viewBox="-150 -50 820 1886"><style type="text/css">
|
||||
width="1345" height="1886" viewBox="-150 -50 1345 1886"><style type="text/css">
|
||||
<![CDATA[
|
||||
.shape {
|
||||
shape-rendering: geometricPrecision;
|
||||
|
|
@ -14,9 +14,9 @@ width="820" height="1886" viewBox="-150 -50 820 1886"><style type="text/css">
|
|||
}
|
||||
|
||||
]]>
|
||||
</style><g id="a"><g class="shape" ><rect x="0" y="50" width="150" height="126" style="fill:#EDF0FD;stroke:#0D32B2;opacity:1.000000;stroke-width:2;" /></g><text class="text-bold" x="75.000000" y="116.000000" style="text-anchor:middle;font-size:16px;fill:#0A0F25">a</text></g><g id="b"><g class="shape" ><rect x="75" y="50" width="150" height="126" style="fill:#EDF0FD;stroke:#0D32B2;opacity:1.000000;stroke-width:2;" /></g><text class="text-bold" x="150.000000" y="116.000000" style="text-anchor:middle;font-size:16px;fill:#0A0F25">b</text></g><g id="c"><g class="shape" ><rect x="150" y="50" width="150" height="126" style="fill:#EDF0FD;stroke:#0D32B2;opacity:1.000000;stroke-width:2;" /></g><text class="text-bold" x="225.000000" y="116.000000" style="text-anchor:middle;font-size:16px;fill:#0A0F25">c</text></g><g id="d"><g class="shape" ><rect x="225" y="50" width="150" height="126" style="fill:#EDF0FD;stroke:#0D32B2;opacity:1.000000;stroke-width:2;" /></g><text class="text-bold" x="300.000000" y="116.000000" style="text-anchor:middle;font-size:16px;fill:#0A0F25">d</text></g><g id="(a -- )[0]"><path d="M 75.000000 178.000000 L 75.000000 1735.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 150.000000 178.000000 L 150.000000 1735.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 225.000000 178.000000 L 225.000000 1735.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 300.000000 178.000000 L 300.000000 1735.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 -> 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 306.000000 L 146.000000 306.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 152.000000 948.000000 L 221.000000 948.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 223.000000 1350.000000 L 154.000000 1350.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="187.500000" y="1356.000000" style="text-anchor:middle;font-size:16px;fill:#676C7E">okay</text></g><g id="a.explanation"><g class="shape" ><rect x="-20" y="436" width="190" height="126" style="fill:#FFFFFF;stroke:#0D32B2;opacity:1.000000;stroke-width:2;" /></g><text class="text-bold" x="75.000000" y="502.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="692" width="250" height="126" style="fill:#FFFFFF;stroke:#0D32B2;opacity:1.000000;stroke-width:2;" /></g><text class="text-bold" x="75.000000" y="758.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="-46" y="1078" width="393" height="142" style="fill:#FFFFFF;stroke:#0D32B2;opacity:1.000000;stroke-width:2;" /></g><text class="text-bold" x="150.500000" y="1144.000000" style="text-anchor:middle;font-size:16px;fill:#0A0F25"><tspan x="150.500000" dy="0.000000">Some one who believes imaginary things</tspan><tspan x="150.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="29" y="1480" width="541" height="126" style="fill:#FFFFFF;stroke:#0D32B2;opacity:1.000000;stroke-width:2;" /></g><text class="text-bold" x="299.500000" y="1546.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><mask id="labels" maskUnits="userSpaceOnUse" x="0" y="0" width="820" height="1886">
|
||||
<rect x="0" y="0" width="820" height="1886" fill="white"></rect>
|
||||
<rect x="171.000000" y="1340.000000" width="33" height="21" fill="black"></rect>
|
||||
</style><g id="a"><g class="shape" ><rect x="0" y="50" width="150" height="126" style="fill:#EDF0FD;stroke:#0D32B2;opacity:1.000000;stroke-width:2;" /></g><text class="text-bold" x="75.000000" y="116.000000" style="text-anchor:middle;font-size:16px;fill:#0A0F25">a</text></g><g id="b"><g class="shape" ><rect x="250" y="50" width="150" height="126" style="fill:#EDF0FD;stroke:#0D32B2;opacity:1.000000;stroke-width:2;" /></g><text class="text-bold" x="325.000000" y="116.000000" style="text-anchor:middle;font-size:16px;fill:#0A0F25">b</text></g><g id="c"><g class="shape" ><rect x="500" y="50" width="150" height="126" style="fill:#EDF0FD;stroke:#0D32B2;opacity:1.000000;stroke-width:2;" /></g><text class="text-bold" x="575.000000" y="116.000000" style="text-anchor:middle;font-size:16px;fill:#0A0F25">c</text></g><g id="d"><g class="shape" ><rect x="750" y="50" width="150" height="126" style="fill:#EDF0FD;stroke:#0D32B2;opacity:1.000000;stroke-width:2;" /></g><text class="text-bold" x="825.000000" y="116.000000" style="text-anchor:middle;font-size:16px;fill:#0A0F25">d</text></g><g id="(a -- )[0]"><path d="M 75.000000 178.000000 L 75.000000 1735.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 178.000000 L 325.000000 1735.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 178.000000 L 575.000000 1735.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 178.000000 L 825.000000 1735.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 -> 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 306.000000 L 321.000000 306.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 948.000000 L 571.000000 948.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 1350.000000 L 329.000000 1350.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="1356.000000" style="text-anchor:middle;font-size:16px;fill:#676C7E">okay</text></g><g id="a.explanation"><g class="shape" ><rect x="-20" y="436" width="190" height="126" style="fill:#FFFFFF;stroke:#0D32B2;opacity:1.000000;stroke-width:2;" /></g><text class="text-bold" x="75.000000" y="502.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="692" width="250" height="126" style="fill:#FFFFFF;stroke:#0D32B2;opacity:1.000000;stroke-width:2;" /></g><text class="text-bold" x="75.000000" y="758.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="1078" width="393" height="142" style="fill:#FFFFFF;stroke:#0D32B2;opacity:1.000000;stroke-width:2;" /></g><text class="text-bold" x="324.500000" y="1144.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="1480" width="541" height="126" style="fill:#FFFFFF;stroke:#0D32B2;opacity:1.000000;stroke-width:2;" /></g><text class="text-bold" x="824.500000" y="1546.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><mask id="labels" maskUnits="userSpaceOnUse" x="0" y="0" width="1345" height="1886">
|
||||
<rect x="0" y="0" width="1345" height="1886" fill="white"></rect>
|
||||
<rect x="434.000000" y="1340.000000" width="33" height="21" fill="black"></rect>
|
||||
</mask><style type="text/css"><![CDATA[
|
||||
.text-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",
|
||||
"type": "",
|
||||
"pos": {
|
||||
"x": 75,
|
||||
"x": 250,
|
||||
"y": 50
|
||||
},
|
||||
"width": 150,
|
||||
|
|
@ -83,7 +83,7 @@
|
|||
"id": "c",
|
||||
"type": "",
|
||||
"pos": {
|
||||
"x": 150,
|
||||
"x": 500,
|
||||
"y": 50
|
||||
},
|
||||
"width": 150,
|
||||
|
|
@ -122,7 +122,7 @@
|
|||
"id": "d",
|
||||
"type": "",
|
||||
"pos": {
|
||||
"x": 225,
|
||||
"x": 750,
|
||||
"y": 50
|
||||
},
|
||||
"width": 150,
|
||||
|
|
@ -239,7 +239,7 @@
|
|||
"id": "b.\"Some one who believes imaginary things\\n appear right before your i's.\"",
|
||||
"type": "rectangle",
|
||||
"pos": {
|
||||
"x": -46,
|
||||
"x": 128,
|
||||
"y": 1078
|
||||
},
|
||||
"width": 393,
|
||||
|
|
@ -278,7 +278,7 @@
|
|||
"id": "d.The earth is like a tiny grain of sand, only much, much heavier",
|
||||
"type": "rectangle",
|
||||
"pos": {
|
||||
"x": 29,
|
||||
"x": 554,
|
||||
"y": 1480
|
||||
},
|
||||
"width": 541,
|
||||
|
|
@ -345,7 +345,7 @@
|
|||
"y": 306
|
||||
},
|
||||
{
|
||||
"x": 150,
|
||||
"x": 325,
|
||||
"y": 306
|
||||
}
|
||||
],
|
||||
|
|
@ -380,11 +380,11 @@
|
|||
"labelPercentage": 0,
|
||||
"route": [
|
||||
{
|
||||
"x": 150,
|
||||
"x": 325,
|
||||
"y": 948
|
||||
},
|
||||
{
|
||||
"x": 225,
|
||||
"x": 575,
|
||||
"y": 948
|
||||
}
|
||||
],
|
||||
|
|
@ -419,11 +419,11 @@
|
|||
"labelPercentage": 0,
|
||||
"route": [
|
||||
{
|
||||
"x": 225,
|
||||
"x": 575,
|
||||
"y": 1350
|
||||
},
|
||||
{
|
||||
"x": 150,
|
||||
"x": 325,
|
||||
"y": 1350
|
||||
}
|
||||
],
|
||||
|
|
@ -497,11 +497,11 @@
|
|||
"labelPercentage": 0,
|
||||
"route": [
|
||||
{
|
||||
"x": 150,
|
||||
"x": 325,
|
||||
"y": 176
|
||||
},
|
||||
{
|
||||
"x": 150,
|
||||
"x": 325,
|
||||
"y": 1736
|
||||
}
|
||||
],
|
||||
|
|
@ -536,11 +536,11 @@
|
|||
"labelPercentage": 0,
|
||||
"route": [
|
||||
{
|
||||
"x": 225,
|
||||
"x": 575,
|
||||
"y": 176
|
||||
},
|
||||
{
|
||||
"x": 225,
|
||||
"x": 575,
|
||||
"y": 1736
|
||||
}
|
||||
],
|
||||
|
|
@ -575,11 +575,11 @@
|
|||
"labelPercentage": 0,
|
||||
"route": [
|
||||
{
|
||||
"x": 300,
|
||||
"x": 825,
|
||||
"y": 176
|
||||
},
|
||||
{
|
||||
"x": 300,
|
||||
"x": 825,
|
||||
"y": 1736
|
||||
}
|
||||
],
|
||||
|
|
|
|||
|
|
@ -2,7 +2,7 @@
|
|||
<svg
|
||||
style="background: white;"
|
||||
xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink"
|
||||
width="820" height="1886" viewBox="-150 -50 820 1886"><style type="text/css">
|
||||
width="1345" height="1886" viewBox="-150 -50 1345 1886"><style type="text/css">
|
||||
<![CDATA[
|
||||
.shape {
|
||||
shape-rendering: geometricPrecision;
|
||||
|
|
@ -14,9 +14,9 @@ width="820" height="1886" viewBox="-150 -50 820 1886"><style type="text/css">
|
|||
}
|
||||
|
||||
]]>
|
||||
</style><g id="a"><g class="shape" ><rect x="0" y="50" width="150" height="126" style="fill:#EDF0FD;stroke:#0D32B2;opacity:1.000000;stroke-width:2;" /></g><text class="text-bold" x="75.000000" y="116.000000" style="text-anchor:middle;font-size:16px;fill:#0A0F25">a</text></g><g id="b"><g class="shape" ><rect x="75" y="50" width="150" height="126" style="fill:#EDF0FD;stroke:#0D32B2;opacity:1.000000;stroke-width:2;" /></g><text class="text-bold" x="150.000000" y="116.000000" style="text-anchor:middle;font-size:16px;fill:#0A0F25">b</text></g><g id="c"><g class="shape" ><rect x="150" y="50" width="150" height="126" style="fill:#EDF0FD;stroke:#0D32B2;opacity:1.000000;stroke-width:2;" /></g><text class="text-bold" x="225.000000" y="116.000000" style="text-anchor:middle;font-size:16px;fill:#0A0F25">c</text></g><g id="d"><g class="shape" ><rect x="225" y="50" width="150" height="126" style="fill:#EDF0FD;stroke:#0D32B2;opacity:1.000000;stroke-width:2;" /></g><text class="text-bold" x="300.000000" y="116.000000" style="text-anchor:middle;font-size:16px;fill:#0A0F25">d</text></g><g id="(a -- )[0]"><path d="M 75.000000 178.000000 L 75.000000 1735.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 150.000000 178.000000 L 150.000000 1735.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 225.000000 178.000000 L 225.000000 1735.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 300.000000 178.000000 L 300.000000 1735.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 -> 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 306.000000 L 146.000000 306.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 152.000000 948.000000 L 221.000000 948.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 223.000000 1350.000000 L 154.000000 1350.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="187.500000" y="1356.000000" style="text-anchor:middle;font-size:16px;fill:#676C7E">okay</text></g><g id="a.explanation"><g class="shape" ><rect x="-20" y="436" width="190" height="126" style="fill:#FFFFFF;stroke:#0D32B2;opacity:1.000000;stroke-width:2;" /></g><text class="text-bold" x="75.000000" y="502.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="692" width="250" height="126" style="fill:#FFFFFF;stroke:#0D32B2;opacity:1.000000;stroke-width:2;" /></g><text class="text-bold" x="75.000000" y="758.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="-46" y="1078" width="393" height="142" style="fill:#FFFFFF;stroke:#0D32B2;opacity:1.000000;stroke-width:2;" /></g><text class="text-bold" x="150.500000" y="1144.000000" style="text-anchor:middle;font-size:16px;fill:#0A0F25"><tspan x="150.500000" dy="0.000000">Some one who believes imaginary things</tspan><tspan x="150.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="29" y="1480" width="541" height="126" style="fill:#FFFFFF;stroke:#0D32B2;opacity:1.000000;stroke-width:2;" /></g><text class="text-bold" x="299.500000" y="1546.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><mask id="labels" maskUnits="userSpaceOnUse" x="0" y="0" width="820" height="1886">
|
||||
<rect x="0" y="0" width="820" height="1886" fill="white"></rect>
|
||||
<rect x="171.000000" y="1340.000000" width="33" height="21" fill="black"></rect>
|
||||
</style><g id="a"><g class="shape" ><rect x="0" y="50" width="150" height="126" style="fill:#EDF0FD;stroke:#0D32B2;opacity:1.000000;stroke-width:2;" /></g><text class="text-bold" x="75.000000" y="116.000000" style="text-anchor:middle;font-size:16px;fill:#0A0F25">a</text></g><g id="b"><g class="shape" ><rect x="250" y="50" width="150" height="126" style="fill:#EDF0FD;stroke:#0D32B2;opacity:1.000000;stroke-width:2;" /></g><text class="text-bold" x="325.000000" y="116.000000" style="text-anchor:middle;font-size:16px;fill:#0A0F25">b</text></g><g id="c"><g class="shape" ><rect x="500" y="50" width="150" height="126" style="fill:#EDF0FD;stroke:#0D32B2;opacity:1.000000;stroke-width:2;" /></g><text class="text-bold" x="575.000000" y="116.000000" style="text-anchor:middle;font-size:16px;fill:#0A0F25">c</text></g><g id="d"><g class="shape" ><rect x="750" y="50" width="150" height="126" style="fill:#EDF0FD;stroke:#0D32B2;opacity:1.000000;stroke-width:2;" /></g><text class="text-bold" x="825.000000" y="116.000000" style="text-anchor:middle;font-size:16px;fill:#0A0F25">d</text></g><g id="(a -- )[0]"><path d="M 75.000000 178.000000 L 75.000000 1735.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 178.000000 L 325.000000 1735.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 178.000000 L 575.000000 1735.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 178.000000 L 825.000000 1735.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 -> 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 306.000000 L 321.000000 306.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 948.000000 L 571.000000 948.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 1350.000000 L 329.000000 1350.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="1356.000000" style="text-anchor:middle;font-size:16px;fill:#676C7E">okay</text></g><g id="a.explanation"><g class="shape" ><rect x="-20" y="436" width="190" height="126" style="fill:#FFFFFF;stroke:#0D32B2;opacity:1.000000;stroke-width:2;" /></g><text class="text-bold" x="75.000000" y="502.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="692" width="250" height="126" style="fill:#FFFFFF;stroke:#0D32B2;opacity:1.000000;stroke-width:2;" /></g><text class="text-bold" x="75.000000" y="758.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="1078" width="393" height="142" style="fill:#FFFFFF;stroke:#0D32B2;opacity:1.000000;stroke-width:2;" /></g><text class="text-bold" x="324.500000" y="1144.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="1480" width="541" height="126" style="fill:#FFFFFF;stroke:#0D32B2;opacity:1.000000;stroke-width:2;" /></g><text class="text-bold" x="824.500000" y="1546.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><mask id="labels" maskUnits="userSpaceOnUse" x="0" y="0" width="1345" height="1886">
|
||||
<rect x="0" y="0" width="1345" height="1886" fill="white"></rect>
|
||||
<rect x="434.000000" y="1340.000000" width="33" height="21" fill="black"></rect>
|
||||
</mask><style type="text/css"><![CDATA[
|
||||
.text-bold {
|
||||
font-family: "font-bold";
|
||||
|
|
|
|||
|
Before Width: | Height: | Size: 471 KiB After Width: | Height: | Size: 471 KiB |
96
e2etests/testdata/stable/sequence_diagram_real/dagre/board.exp.json
generated
vendored
|
|
@ -8,7 +8,7 @@
|
|||
"x": 0,
|
||||
"y": 0
|
||||
},
|
||||
"width": 1383,
|
||||
"width": 2212,
|
||||
"height": 2288,
|
||||
"opacity": 1,
|
||||
"strokeDash": 0,
|
||||
|
|
@ -83,7 +83,7 @@
|
|||
"id": "How this is rendered.d2ast",
|
||||
"type": "",
|
||||
"pos": {
|
||||
"x": 217,
|
||||
"x": 250,
|
||||
"y": 86
|
||||
},
|
||||
"width": 150,
|
||||
|
|
@ -122,7 +122,7 @@
|
|||
"id": "How this is rendered.d2compiler",
|
||||
"type": "",
|
||||
"pos": {
|
||||
"x": 331,
|
||||
"x": 484,
|
||||
"y": 86
|
||||
},
|
||||
"width": 182,
|
||||
|
|
@ -161,7 +161,7 @@
|
|||
"id": "How this is rendered.d2layout",
|
||||
"type": "",
|
||||
"pos": {
|
||||
"x": 469,
|
||||
"x": 743,
|
||||
"y": 86
|
||||
},
|
||||
"width": 165,
|
||||
|
|
@ -200,7 +200,7 @@
|
|||
"id": "How this is rendered.d2exporter",
|
||||
"type": "",
|
||||
"pos": {
|
||||
"x": 612,
|
||||
"x": 985,
|
||||
"y": 86
|
||||
},
|
||||
"width": 180,
|
||||
|
|
@ -239,7 +239,7 @@
|
|||
"id": "How this is rendered.d2themes",
|
||||
"type": "",
|
||||
"pos": {
|
||||
"x": 772,
|
||||
"x": 1237,
|
||||
"y": 86
|
||||
},
|
||||
"width": 176,
|
||||
|
|
@ -278,7 +278,7 @@
|
|||
"id": "How this is rendered.d2renderer",
|
||||
"type": "",
|
||||
"pos": {
|
||||
"x": 918,
|
||||
"x": 1482,
|
||||
"y": 86
|
||||
},
|
||||
"width": 186,
|
||||
|
|
@ -317,7 +317,7 @@
|
|||
"id": "How this is rendered.d2compiler.measurements also take place",
|
||||
"type": "rectangle",
|
||||
"pos": {
|
||||
"x": 263,
|
||||
"x": 416,
|
||||
"y": 732
|
||||
},
|
||||
"width": 318,
|
||||
|
|
@ -356,10 +356,10 @@
|
|||
"id": "How this is rendered.only if root is not sequence",
|
||||
"type": "",
|
||||
"pos": {
|
||||
"x": 507,
|
||||
"x": 781,
|
||||
"y": 1338
|
||||
},
|
||||
"width": 821,
|
||||
"width": 1376,
|
||||
"height": 80,
|
||||
"opacity": 1,
|
||||
"strokeDash": 0,
|
||||
|
|
@ -394,7 +394,7 @@
|
|||
"id": "How this is rendered.d2layout.layout",
|
||||
"type": "rectangle",
|
||||
"pos": {
|
||||
"x": 545,
|
||||
"x": 819,
|
||||
"y": 1102
|
||||
},
|
||||
"width": 12,
|
||||
|
|
@ -432,7 +432,7 @@
|
|||
"id": "How this is rendered.d2sequencelayout",
|
||||
"type": "",
|
||||
"pos": {
|
||||
"x": 1044,
|
||||
"x": 1718,
|
||||
"y": 86
|
||||
},
|
||||
"width": 235,
|
||||
|
|
@ -471,7 +471,7 @@
|
|||
"id": "How this is rendered.d2dagrelayout",
|
||||
"type": "",
|
||||
"pos": {
|
||||
"x": 1174,
|
||||
"x": 2003,
|
||||
"y": 86
|
||||
},
|
||||
"width": 209,
|
||||
|
|
@ -510,7 +510,7 @@
|
|||
"id": "How this is rendered.d2exporter.export",
|
||||
"type": "rectangle",
|
||||
"pos": {
|
||||
"x": 696,
|
||||
"x": 1069,
|
||||
"y": 1882
|
||||
},
|
||||
"width": 12,
|
||||
|
|
@ -576,7 +576,7 @@
|
|||
"y": 342
|
||||
},
|
||||
{
|
||||
"x": 292,
|
||||
"x": 325,
|
||||
"y": 342
|
||||
}
|
||||
],
|
||||
|
|
@ -611,7 +611,7 @@
|
|||
"labelPercentage": 0,
|
||||
"route": [
|
||||
{
|
||||
"x": 292,
|
||||
"x": 325,
|
||||
"y": 472
|
||||
},
|
||||
{
|
||||
|
|
@ -654,7 +654,7 @@
|
|||
"y": 602
|
||||
},
|
||||
{
|
||||
"x": 422,
|
||||
"x": 575,
|
||||
"y": 602
|
||||
}
|
||||
],
|
||||
|
|
@ -689,7 +689,7 @@
|
|||
"labelPercentage": 0,
|
||||
"route": [
|
||||
{
|
||||
"x": 422,
|
||||
"x": 575,
|
||||
"y": 988
|
||||
},
|
||||
{
|
||||
|
|
@ -732,7 +732,7 @@
|
|||
"y": 1118
|
||||
},
|
||||
{
|
||||
"x": 545.5,
|
||||
"x": 819.5,
|
||||
"y": 1118
|
||||
}
|
||||
],
|
||||
|
|
@ -767,11 +767,11 @@
|
|||
"labelPercentage": 0,
|
||||
"route": [
|
||||
{
|
||||
"x": 557.5,
|
||||
"x": 831.5,
|
||||
"y": 1248
|
||||
},
|
||||
{
|
||||
"x": 1161.5,
|
||||
"x": 1835.5,
|
||||
"y": 1248
|
||||
}
|
||||
],
|
||||
|
|
@ -806,11 +806,11 @@
|
|||
"labelPercentage": 0,
|
||||
"route": [
|
||||
{
|
||||
"x": 557.5,
|
||||
"x": 831.5,
|
||||
"y": 1378
|
||||
},
|
||||
{
|
||||
"x": 1278.5,
|
||||
"x": 2107.5,
|
||||
"y": 1378
|
||||
}
|
||||
],
|
||||
|
|
@ -845,11 +845,11 @@
|
|||
"labelPercentage": 0,
|
||||
"route": [
|
||||
{
|
||||
"x": 557.5,
|
||||
"x": 831.5,
|
||||
"y": 1508
|
||||
},
|
||||
{
|
||||
"x": 1161.5,
|
||||
"x": 1835.5,
|
||||
"y": 1508
|
||||
}
|
||||
],
|
||||
|
|
@ -884,7 +884,7 @@
|
|||
"labelPercentage": 0,
|
||||
"route": [
|
||||
{
|
||||
"x": 551.5,
|
||||
"x": 825.5,
|
||||
"y": 1638
|
||||
},
|
||||
{
|
||||
|
|
@ -927,7 +927,7 @@
|
|||
"y": 1768
|
||||
},
|
||||
{
|
||||
"x": 702,
|
||||
"x": 1075,
|
||||
"y": 1768
|
||||
}
|
||||
],
|
||||
|
|
@ -962,11 +962,11 @@
|
|||
"labelPercentage": 0,
|
||||
"route": [
|
||||
{
|
||||
"x": 708,
|
||||
"x": 1081,
|
||||
"y": 1898
|
||||
},
|
||||
{
|
||||
"x": 860,
|
||||
"x": 1325,
|
||||
"y": 1898
|
||||
}
|
||||
],
|
||||
|
|
@ -1001,11 +1001,11 @@
|
|||
"labelPercentage": 0,
|
||||
"route": [
|
||||
{
|
||||
"x": 708,
|
||||
"x": 1081,
|
||||
"y": 2028
|
||||
},
|
||||
{
|
||||
"x": 1011,
|
||||
"x": 1575,
|
||||
"y": 2028
|
||||
}
|
||||
],
|
||||
|
|
@ -1040,7 +1040,7 @@
|
|||
"labelPercentage": 0,
|
||||
"route": [
|
||||
{
|
||||
"x": 696,
|
||||
"x": 1069,
|
||||
"y": 2158
|
||||
},
|
||||
{
|
||||
|
|
@ -1118,11 +1118,11 @@
|
|||
"labelPercentage": 0,
|
||||
"route": [
|
||||
{
|
||||
"x": 292,
|
||||
"x": 325,
|
||||
"y": 212
|
||||
},
|
||||
{
|
||||
"x": 292,
|
||||
"x": 325,
|
||||
"y": 2288
|
||||
}
|
||||
],
|
||||
|
|
@ -1157,11 +1157,11 @@
|
|||
"labelPercentage": 0,
|
||||
"route": [
|
||||
{
|
||||
"x": 422,
|
||||
"x": 575,
|
||||
"y": 212
|
||||
},
|
||||
{
|
||||
"x": 422,
|
||||
"x": 575,
|
||||
"y": 2288
|
||||
}
|
||||
],
|
||||
|
|
@ -1196,11 +1196,11 @@
|
|||
"labelPercentage": 0,
|
||||
"route": [
|
||||
{
|
||||
"x": 551.5,
|
||||
"x": 825.5,
|
||||
"y": 212
|
||||
},
|
||||
{
|
||||
"x": 551.5,
|
||||
"x": 825.5,
|
||||
"y": 2288
|
||||
}
|
||||
],
|
||||
|
|
@ -1235,11 +1235,11 @@
|
|||
"labelPercentage": 0,
|
||||
"route": [
|
||||
{
|
||||
"x": 702,
|
||||
"x": 1075,
|
||||
"y": 212
|
||||
},
|
||||
{
|
||||
"x": 702,
|
||||
"x": 1075,
|
||||
"y": 2288
|
||||
}
|
||||
],
|
||||
|
|
@ -1274,11 +1274,11 @@
|
|||
"labelPercentage": 0,
|
||||
"route": [
|
||||
{
|
||||
"x": 860,
|
||||
"x": 1325,
|
||||
"y": 212
|
||||
},
|
||||
{
|
||||
"x": 860,
|
||||
"x": 1325,
|
||||
"y": 2288
|
||||
}
|
||||
],
|
||||
|
|
@ -1313,11 +1313,11 @@
|
|||
"labelPercentage": 0,
|
||||
"route": [
|
||||
{
|
||||
"x": 1011,
|
||||
"x": 1575,
|
||||
"y": 212
|
||||
},
|
||||
{
|
||||
"x": 1011,
|
||||
"x": 1575,
|
||||
"y": 2288
|
||||
}
|
||||
],
|
||||
|
|
@ -1352,11 +1352,11 @@
|
|||
"labelPercentage": 0,
|
||||
"route": [
|
||||
{
|
||||
"x": 1161.5,
|
||||
"x": 1835.5,
|
||||
"y": 212
|
||||
},
|
||||
{
|
||||
"x": 1161.5,
|
||||
"x": 1835.5,
|
||||
"y": 2288
|
||||
}
|
||||
],
|
||||
|
|
@ -1391,11 +1391,11 @@
|
|||
"labelPercentage": 0,
|
||||
"route": [
|
||||
{
|
||||
"x": 1278.5,
|
||||
"x": 2107.5,
|
||||
"y": 212
|
||||
},
|
||||
{
|
||||
"x": 1278.5,
|
||||
"x": 2107.5,
|
||||
"y": 2288
|
||||
}
|
||||
],
|
||||
|
|
|
|||
|
Before Width: | Height: | Size: 479 KiB After Width: | Height: | Size: 479 KiB |
96
e2etests/testdata/stable/sequence_diagram_real/elk/board.exp.json
generated
vendored
|
|
@ -8,7 +8,7 @@
|
|||
"x": 12,
|
||||
"y": 12
|
||||
},
|
||||
"width": 1383,
|
||||
"width": 2212,
|
||||
"height": 2288,
|
||||
"opacity": 1,
|
||||
"strokeDash": 0,
|
||||
|
|
@ -83,7 +83,7 @@
|
|||
"id": "How this is rendered.d2ast",
|
||||
"type": "",
|
||||
"pos": {
|
||||
"x": 229,
|
||||
"x": 262,
|
||||
"y": 98
|
||||
},
|
||||
"width": 150,
|
||||
|
|
@ -122,7 +122,7 @@
|
|||
"id": "How this is rendered.d2compiler",
|
||||
"type": "",
|
||||
"pos": {
|
||||
"x": 343,
|
||||
"x": 496,
|
||||
"y": 98
|
||||
},
|
||||
"width": 182,
|
||||
|
|
@ -161,7 +161,7 @@
|
|||
"id": "How this is rendered.d2layout",
|
||||
"type": "",
|
||||
"pos": {
|
||||
"x": 481,
|
||||
"x": 755,
|
||||
"y": 98
|
||||
},
|
||||
"width": 165,
|
||||
|
|
@ -200,7 +200,7 @@
|
|||
"id": "How this is rendered.d2exporter",
|
||||
"type": "",
|
||||
"pos": {
|
||||
"x": 624,
|
||||
"x": 997,
|
||||
"y": 98
|
||||
},
|
||||
"width": 180,
|
||||
|
|
@ -239,7 +239,7 @@
|
|||
"id": "How this is rendered.d2themes",
|
||||
"type": "",
|
||||
"pos": {
|
||||
"x": 784,
|
||||
"x": 1249,
|
||||
"y": 98
|
||||
},
|
||||
"width": 176,
|
||||
|
|
@ -278,7 +278,7 @@
|
|||
"id": "How this is rendered.d2renderer",
|
||||
"type": "",
|
||||
"pos": {
|
||||
"x": 930,
|
||||
"x": 1494,
|
||||
"y": 98
|
||||
},
|
||||
"width": 186,
|
||||
|
|
@ -317,7 +317,7 @@
|
|||
"id": "How this is rendered.d2compiler.measurements also take place",
|
||||
"type": "rectangle",
|
||||
"pos": {
|
||||
"x": 263,
|
||||
"x": 416,
|
||||
"y": 732
|
||||
},
|
||||
"width": 318,
|
||||
|
|
@ -356,10 +356,10 @@
|
|||
"id": "How this is rendered.only if root is not sequence",
|
||||
"type": "",
|
||||
"pos": {
|
||||
"x": 507,
|
||||
"x": 781,
|
||||
"y": 1338
|
||||
},
|
||||
"width": 821,
|
||||
"width": 1376,
|
||||
"height": 80,
|
||||
"opacity": 1,
|
||||
"strokeDash": 0,
|
||||
|
|
@ -394,7 +394,7 @@
|
|||
"id": "How this is rendered.d2layout.layout",
|
||||
"type": "rectangle",
|
||||
"pos": {
|
||||
"x": 557,
|
||||
"x": 831,
|
||||
"y": 1114
|
||||
},
|
||||
"width": 12,
|
||||
|
|
@ -432,7 +432,7 @@
|
|||
"id": "How this is rendered.d2sequencelayout",
|
||||
"type": "",
|
||||
"pos": {
|
||||
"x": 1056,
|
||||
"x": 1730,
|
||||
"y": 98
|
||||
},
|
||||
"width": 235,
|
||||
|
|
@ -471,7 +471,7 @@
|
|||
"id": "How this is rendered.d2dagrelayout",
|
||||
"type": "",
|
||||
"pos": {
|
||||
"x": 1186,
|
||||
"x": 2015,
|
||||
"y": 98
|
||||
},
|
||||
"width": 209,
|
||||
|
|
@ -510,7 +510,7 @@
|
|||
"id": "How this is rendered.d2exporter.export",
|
||||
"type": "rectangle",
|
||||
"pos": {
|
||||
"x": 708,
|
||||
"x": 1081,
|
||||
"y": 1894
|
||||
},
|
||||
"width": 12,
|
||||
|
|
@ -576,7 +576,7 @@
|
|||
"y": 354
|
||||
},
|
||||
{
|
||||
"x": 304,
|
||||
"x": 337,
|
||||
"y": 354
|
||||
}
|
||||
],
|
||||
|
|
@ -611,7 +611,7 @@
|
|||
"labelPercentage": 0,
|
||||
"route": [
|
||||
{
|
||||
"x": 304,
|
||||
"x": 337,
|
||||
"y": 484
|
||||
},
|
||||
{
|
||||
|
|
@ -654,7 +654,7 @@
|
|||
"y": 614
|
||||
},
|
||||
{
|
||||
"x": 434,
|
||||
"x": 587,
|
||||
"y": 614
|
||||
}
|
||||
],
|
||||
|
|
@ -689,7 +689,7 @@
|
|||
"labelPercentage": 0,
|
||||
"route": [
|
||||
{
|
||||
"x": 434,
|
||||
"x": 587,
|
||||
"y": 1000
|
||||
},
|
||||
{
|
||||
|
|
@ -732,7 +732,7 @@
|
|||
"y": 1130
|
||||
},
|
||||
{
|
||||
"x": 557.5,
|
||||
"x": 831.5,
|
||||
"y": 1130
|
||||
}
|
||||
],
|
||||
|
|
@ -767,11 +767,11 @@
|
|||
"labelPercentage": 0,
|
||||
"route": [
|
||||
{
|
||||
"x": 569.5,
|
||||
"x": 843.5,
|
||||
"y": 1260
|
||||
},
|
||||
{
|
||||
"x": 1173.5,
|
||||
"x": 1847.5,
|
||||
"y": 1260
|
||||
}
|
||||
],
|
||||
|
|
@ -806,11 +806,11 @@
|
|||
"labelPercentage": 0,
|
||||
"route": [
|
||||
{
|
||||
"x": 569.5,
|
||||
"x": 843.5,
|
||||
"y": 1390
|
||||
},
|
||||
{
|
||||
"x": 1290.5,
|
||||
"x": 2119.5,
|
||||
"y": 1390
|
||||
}
|
||||
],
|
||||
|
|
@ -845,11 +845,11 @@
|
|||
"labelPercentage": 0,
|
||||
"route": [
|
||||
{
|
||||
"x": 569.5,
|
||||
"x": 843.5,
|
||||
"y": 1520
|
||||
},
|
||||
{
|
||||
"x": 1173.5,
|
||||
"x": 1847.5,
|
||||
"y": 1520
|
||||
}
|
||||
],
|
||||
|
|
@ -884,7 +884,7 @@
|
|||
"labelPercentage": 0,
|
||||
"route": [
|
||||
{
|
||||
"x": 563.5,
|
||||
"x": 837.5,
|
||||
"y": 1650
|
||||
},
|
||||
{
|
||||
|
|
@ -927,7 +927,7 @@
|
|||
"y": 1780
|
||||
},
|
||||
{
|
||||
"x": 714,
|
||||
"x": 1087,
|
||||
"y": 1780
|
||||
}
|
||||
],
|
||||
|
|
@ -962,11 +962,11 @@
|
|||
"labelPercentage": 0,
|
||||
"route": [
|
||||
{
|
||||
"x": 720,
|
||||
"x": 1093,
|
||||
"y": 1910
|
||||
},
|
||||
{
|
||||
"x": 872,
|
||||
"x": 1337,
|
||||
"y": 1910
|
||||
}
|
||||
],
|
||||
|
|
@ -1001,11 +1001,11 @@
|
|||
"labelPercentage": 0,
|
||||
"route": [
|
||||
{
|
||||
"x": 720,
|
||||
"x": 1093,
|
||||
"y": 2040
|
||||
},
|
||||
{
|
||||
"x": 1023,
|
||||
"x": 1587,
|
||||
"y": 2040
|
||||
}
|
||||
],
|
||||
|
|
@ -1040,7 +1040,7 @@
|
|||
"labelPercentage": 0,
|
||||
"route": [
|
||||
{
|
||||
"x": 708,
|
||||
"x": 1081,
|
||||
"y": 2170
|
||||
},
|
||||
{
|
||||
|
|
@ -1118,11 +1118,11 @@
|
|||
"labelPercentage": 0,
|
||||
"route": [
|
||||
{
|
||||
"x": 304,
|
||||
"x": 337,
|
||||
"y": 224
|
||||
},
|
||||
{
|
||||
"x": 304,
|
||||
"x": 337,
|
||||
"y": 2300
|
||||
}
|
||||
],
|
||||
|
|
@ -1157,11 +1157,11 @@
|
|||
"labelPercentage": 0,
|
||||
"route": [
|
||||
{
|
||||
"x": 434,
|
||||
"x": 587,
|
||||
"y": 224
|
||||
},
|
||||
{
|
||||
"x": 434,
|
||||
"x": 587,
|
||||
"y": 2300
|
||||
}
|
||||
],
|
||||
|
|
@ -1196,11 +1196,11 @@
|
|||
"labelPercentage": 0,
|
||||
"route": [
|
||||
{
|
||||
"x": 563.5,
|
||||
"x": 837.5,
|
||||
"y": 224
|
||||
},
|
||||
{
|
||||
"x": 563.5,
|
||||
"x": 837.5,
|
||||
"y": 2300
|
||||
}
|
||||
],
|
||||
|
|
@ -1235,11 +1235,11 @@
|
|||
"labelPercentage": 0,
|
||||
"route": [
|
||||
{
|
||||
"x": 714,
|
||||
"x": 1087,
|
||||
"y": 224
|
||||
},
|
||||
{
|
||||
"x": 714,
|
||||
"x": 1087,
|
||||
"y": 2300
|
||||
}
|
||||
],
|
||||
|
|
@ -1274,11 +1274,11 @@
|
|||
"labelPercentage": 0,
|
||||
"route": [
|
||||
{
|
||||
"x": 872,
|
||||
"x": 1337,
|
||||
"y": 224
|
||||
},
|
||||
{
|
||||
"x": 872,
|
||||
"x": 1337,
|
||||
"y": 2300
|
||||
}
|
||||
],
|
||||
|
|
@ -1313,11 +1313,11 @@
|
|||
"labelPercentage": 0,
|
||||
"route": [
|
||||
{
|
||||
"x": 1023,
|
||||
"x": 1587,
|
||||
"y": 224
|
||||
},
|
||||
{
|
||||
"x": 1023,
|
||||
"x": 1587,
|
||||
"y": 2300
|
||||
}
|
||||
],
|
||||
|
|
@ -1352,11 +1352,11 @@
|
|||
"labelPercentage": 0,
|
||||
"route": [
|
||||
{
|
||||
"x": 1173.5,
|
||||
"x": 1847.5,
|
||||
"y": 224
|
||||
},
|
||||
{
|
||||
"x": 1173.5,
|
||||
"x": 1847.5,
|
||||
"y": 2300
|
||||
}
|
||||
],
|
||||
|
|
@ -1391,11 +1391,11 @@
|
|||
"labelPercentage": 0,
|
||||
"route": [
|
||||
{
|
||||
"x": 1290.5,
|
||||
"x": 2119.5,
|
||||
"y": 224
|
||||
},
|
||||
{
|
||||
"x": 1290.5,
|
||||
"x": 2119.5,
|
||||
"y": 2300
|
||||
}
|
||||
],
|
||||
|
|
|
|||
|
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",
|
||||
"type": "",
|
||||
"pos": {
|
||||
"x": 152,
|
||||
"x": 250,
|
||||
"y": 50
|
||||
},
|
||||
"width": 150,
|
||||
|
|
@ -83,7 +83,7 @@
|
|||
"id": "b.1",
|
||||
"type": "rectangle",
|
||||
"pos": {
|
||||
"x": 221,
|
||||
"x": 319,
|
||||
"y": 630
|
||||
},
|
||||
"width": 12,
|
||||
|
|
@ -121,7 +121,7 @@
|
|||
"id": "b.1.2",
|
||||
"type": "rectangle",
|
||||
"pos": {
|
||||
"x": 217,
|
||||
"x": 315,
|
||||
"y": 760
|
||||
},
|
||||
"width": 20,
|
||||
|
|
@ -235,7 +235,7 @@
|
|||
"id": "b.3",
|
||||
"type": "rectangle",
|
||||
"pos": {
|
||||
"x": 221,
|
||||
"x": 319,
|
||||
"y": 1070
|
||||
},
|
||||
"width": 12,
|
||||
|
|
@ -348,7 +348,7 @@
|
|||
"y": 436
|
||||
},
|
||||
{
|
||||
"x": 227,
|
||||
"x": 325,
|
||||
"y": 436
|
||||
}
|
||||
],
|
||||
|
|
@ -383,19 +383,19 @@
|
|||
"labelPercentage": 0,
|
||||
"route": [
|
||||
{
|
||||
"x": 227,
|
||||
"x": 325,
|
||||
"y": 566
|
||||
},
|
||||
{
|
||||
"x": 327,
|
||||
"x": 425,
|
||||
"y": 566
|
||||
},
|
||||
{
|
||||
"x": 327,
|
||||
"x": 425,
|
||||
"y": 646
|
||||
},
|
||||
{
|
||||
"x": 233,
|
||||
"x": 331,
|
||||
"y": 646
|
||||
}
|
||||
],
|
||||
|
|
@ -430,19 +430,19 @@
|
|||
"labelPercentage": 0,
|
||||
"route": [
|
||||
{
|
||||
"x": 233,
|
||||
"x": 331,
|
||||
"y": 696
|
||||
},
|
||||
{
|
||||
"x": 327,
|
||||
"x": 425,
|
||||
"y": 696
|
||||
},
|
||||
{
|
||||
"x": 327,
|
||||
"x": 425,
|
||||
"y": 776
|
||||
},
|
||||
{
|
||||
"x": 237,
|
||||
"x": 335,
|
||||
"y": 776
|
||||
}
|
||||
],
|
||||
|
|
@ -477,19 +477,19 @@
|
|||
"labelPercentage": 0,
|
||||
"route": [
|
||||
{
|
||||
"x": 237,
|
||||
"x": 335,
|
||||
"y": 826
|
||||
},
|
||||
{
|
||||
"x": 327,
|
||||
"x": 425,
|
||||
"y": 826
|
||||
},
|
||||
{
|
||||
"x": 327,
|
||||
"x": 425,
|
||||
"y": 906
|
||||
},
|
||||
{
|
||||
"x": 227,
|
||||
"x": 325,
|
||||
"y": 906
|
||||
}
|
||||
],
|
||||
|
|
@ -524,7 +524,7 @@
|
|||
"labelPercentage": 0,
|
||||
"route": [
|
||||
{
|
||||
"x": 227,
|
||||
"x": 325,
|
||||
"y": 956
|
||||
},
|
||||
{
|
||||
|
|
@ -567,7 +567,7 @@
|
|||
"y": 1086
|
||||
},
|
||||
{
|
||||
"x": 221,
|
||||
"x": 319,
|
||||
"y": 1086
|
||||
}
|
||||
],
|
||||
|
|
@ -641,11 +641,11 @@
|
|||
"labelPercentage": 0,
|
||||
"route": [
|
||||
{
|
||||
"x": 227,
|
||||
"x": 325,
|
||||
"y": 176
|
||||
},
|
||||
{
|
||||
"x": 227,
|
||||
"x": 325,
|
||||
"y": 1216
|
||||
}
|
||||
],
|
||||
|
|
|
|||
|
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",
|
||||
"type": "",
|
||||
"pos": {
|
||||
"x": 152,
|
||||
"x": 250,
|
||||
"y": 50
|
||||
},
|
||||
"width": 150,
|
||||
|
|
@ -83,7 +83,7 @@
|
|||
"id": "b.1",
|
||||
"type": "rectangle",
|
||||
"pos": {
|
||||
"x": 221,
|
||||
"x": 319,
|
||||
"y": 630
|
||||
},
|
||||
"width": 12,
|
||||
|
|
@ -121,7 +121,7 @@
|
|||
"id": "b.1.2",
|
||||
"type": "rectangle",
|
||||
"pos": {
|
||||
"x": 217,
|
||||
"x": 315,
|
||||
"y": 760
|
||||
},
|
||||
"width": 20,
|
||||
|
|
@ -235,7 +235,7 @@
|
|||
"id": "b.3",
|
||||
"type": "rectangle",
|
||||
"pos": {
|
||||
"x": 221,
|
||||
"x": 319,
|
||||
"y": 1070
|
||||
},
|
||||
"width": 12,
|
||||
|
|
@ -348,7 +348,7 @@
|
|||
"y": 436
|
||||
},
|
||||
{
|
||||
"x": 227,
|
||||
"x": 325,
|
||||
"y": 436
|
||||
}
|
||||
],
|
||||
|
|
@ -383,19 +383,19 @@
|
|||
"labelPercentage": 0,
|
||||
"route": [
|
||||
{
|
||||
"x": 227,
|
||||
"x": 325,
|
||||
"y": 566
|
||||
},
|
||||
{
|
||||
"x": 327,
|
||||
"x": 425,
|
||||
"y": 566
|
||||
},
|
||||
{
|
||||
"x": 327,
|
||||
"x": 425,
|
||||
"y": 646
|
||||
},
|
||||
{
|
||||
"x": 233,
|
||||
"x": 331,
|
||||
"y": 646
|
||||
}
|
||||
],
|
||||
|
|
@ -430,19 +430,19 @@
|
|||
"labelPercentage": 0,
|
||||
"route": [
|
||||
{
|
||||
"x": 233,
|
||||
"x": 331,
|
||||
"y": 696
|
||||
},
|
||||
{
|
||||
"x": 327,
|
||||
"x": 425,
|
||||
"y": 696
|
||||
},
|
||||
{
|
||||
"x": 327,
|
||||
"x": 425,
|
||||
"y": 776
|
||||
},
|
||||
{
|
||||
"x": 237,
|
||||
"x": 335,
|
||||
"y": 776
|
||||
}
|
||||
],
|
||||
|
|
@ -477,19 +477,19 @@
|
|||
"labelPercentage": 0,
|
||||
"route": [
|
||||
{
|
||||
"x": 237,
|
||||
"x": 335,
|
||||
"y": 826
|
||||
},
|
||||
{
|
||||
"x": 327,
|
||||
"x": 425,
|
||||
"y": 826
|
||||
},
|
||||
{
|
||||
"x": 327,
|
||||
"x": 425,
|
||||
"y": 906
|
||||
},
|
||||
{
|
||||
"x": 227,
|
||||
"x": 325,
|
||||
"y": 906
|
||||
}
|
||||
],
|
||||
|
|
@ -524,7 +524,7 @@
|
|||
"labelPercentage": 0,
|
||||
"route": [
|
||||
{
|
||||
"x": 227,
|
||||
"x": 325,
|
||||
"y": 956
|
||||
},
|
||||
{
|
||||
|
|
@ -567,7 +567,7 @@
|
|||
"y": 1086
|
||||
},
|
||||
{
|
||||
"x": 221,
|
||||
"x": 319,
|
||||
"y": 1086
|
||||
}
|
||||
],
|
||||
|
|
@ -641,11 +641,11 @@
|
|||
"labelPercentage": 0,
|
||||
"route": [
|
||||
{
|
||||
"x": 227,
|
||||
"x": 325,
|
||||
"y": 176
|
||||
},
|
||||
{
|
||||
"x": 227,
|
||||
"x": 325,
|
||||
"y": 1216
|
||||
}
|
||||
],
|
||||
|
|
|
|||
|
Before Width: | Height: | Size: 472 KiB After Width: | Height: | Size: 472 KiB |
80
e2etests/testdata/stable/sequence_diagram_span/dagre/board.exp.json
generated
vendored
|
|
@ -82,7 +82,7 @@
|
|||
"id": "itemResponse",
|
||||
"type": "",
|
||||
"pos": {
|
||||
"x": 97,
|
||||
"x": 225,
|
||||
"y": 50
|
||||
},
|
||||
"width": 200,
|
||||
|
|
@ -121,7 +121,7 @@
|
|||
"id": "itemResponse.t",
|
||||
"type": "rectangle",
|
||||
"pos": {
|
||||
"x": 191,
|
||||
"x": 319,
|
||||
"y": 290
|
||||
},
|
||||
"width": 12,
|
||||
|
|
@ -159,7 +159,7 @@
|
|||
"id": "item",
|
||||
"type": "",
|
||||
"pos": {
|
||||
"x": 244,
|
||||
"x": 500,
|
||||
"y": 50
|
||||
},
|
||||
"width": 150,
|
||||
|
|
@ -198,7 +198,7 @@
|
|||
"id": "item.t1",
|
||||
"type": "rectangle",
|
||||
"pos": {
|
||||
"x": 313,
|
||||
"x": 569,
|
||||
"y": 550
|
||||
},
|
||||
"width": 12,
|
||||
|
|
@ -236,7 +236,7 @@
|
|||
"id": "essayRubric",
|
||||
"type": "",
|
||||
"pos": {
|
||||
"x": 319,
|
||||
"x": 732,
|
||||
"y": 50
|
||||
},
|
||||
"width": 186,
|
||||
|
|
@ -275,7 +275,7 @@
|
|||
"id": "essayRubric.t",
|
||||
"type": "rectangle",
|
||||
"pos": {
|
||||
"x": 406,
|
||||
"x": 819,
|
||||
"y": 810
|
||||
},
|
||||
"width": 12,
|
||||
|
|
@ -313,7 +313,7 @@
|
|||
"id": "essayRubric.t.c",
|
||||
"type": "rectangle",
|
||||
"pos": {
|
||||
"x": 402,
|
||||
"x": 815,
|
||||
"y": 940
|
||||
},
|
||||
"width": 20,
|
||||
|
|
@ -351,7 +351,7 @@
|
|||
"id": "concept",
|
||||
"type": "",
|
||||
"pos": {
|
||||
"x": 532,
|
||||
"x": 995,
|
||||
"y": 50
|
||||
},
|
||||
"width": 160,
|
||||
|
|
@ -390,7 +390,7 @@
|
|||
"id": "concept.t",
|
||||
"type": "rectangle",
|
||||
"pos": {
|
||||
"x": 606,
|
||||
"x": 1069,
|
||||
"y": 1070
|
||||
},
|
||||
"width": 12,
|
||||
|
|
@ -428,7 +428,7 @@
|
|||
"id": "itemOutcome",
|
||||
"type": "",
|
||||
"pos": {
|
||||
"x": 604,
|
||||
"x": 1227,
|
||||
"y": 50
|
||||
},
|
||||
"width": 197,
|
||||
|
|
@ -467,7 +467,7 @@
|
|||
"id": "itemOutcome.t1",
|
||||
"type": "rectangle",
|
||||
"pos": {
|
||||
"x": 696,
|
||||
"x": 1319,
|
||||
"y": 1330
|
||||
},
|
||||
"width": 12,
|
||||
|
|
@ -505,7 +505,7 @@
|
|||
"id": "item.t2",
|
||||
"type": "rectangle",
|
||||
"pos": {
|
||||
"x": 313,
|
||||
"x": 569,
|
||||
"y": 1460
|
||||
},
|
||||
"width": 12,
|
||||
|
|
@ -543,7 +543,7 @@
|
|||
"id": "item.t3",
|
||||
"type": "rectangle",
|
||||
"pos": {
|
||||
"x": 313,
|
||||
"x": 569,
|
||||
"y": 1590
|
||||
},
|
||||
"width": 12,
|
||||
|
|
@ -581,7 +581,7 @@
|
|||
"id": "itemOutcome.t2",
|
||||
"type": "rectangle",
|
||||
"pos": {
|
||||
"x": 696,
|
||||
"x": 1319,
|
||||
"y": 1720
|
||||
},
|
||||
"width": 12,
|
||||
|
|
@ -619,7 +619,7 @@
|
|||
"id": "itemOutcome.t3",
|
||||
"type": "rectangle",
|
||||
"pos": {
|
||||
"x": 696,
|
||||
"x": 1319,
|
||||
"y": 1850
|
||||
},
|
||||
"width": 12,
|
||||
|
|
@ -685,7 +685,7 @@
|
|||
"y": 306
|
||||
},
|
||||
{
|
||||
"x": 191,
|
||||
"x": 319,
|
||||
"y": 306
|
||||
}
|
||||
],
|
||||
|
|
@ -724,7 +724,7 @@
|
|||
"y": 436
|
||||
},
|
||||
{
|
||||
"x": 191,
|
||||
"x": 319,
|
||||
"y": 436
|
||||
}
|
||||
],
|
||||
|
|
@ -763,7 +763,7 @@
|
|||
"y": 566
|
||||
},
|
||||
{
|
||||
"x": 313,
|
||||
"x": 569,
|
||||
"y": 566
|
||||
}
|
||||
],
|
||||
|
|
@ -802,7 +802,7 @@
|
|||
"y": 696
|
||||
},
|
||||
{
|
||||
"x": 313,
|
||||
"x": 569,
|
||||
"y": 696
|
||||
}
|
||||
],
|
||||
|
|
@ -841,7 +841,7 @@
|
|||
"y": 826
|
||||
},
|
||||
{
|
||||
"x": 406,
|
||||
"x": 819,
|
||||
"y": 826
|
||||
}
|
||||
],
|
||||
|
|
@ -876,11 +876,11 @@
|
|||
"labelPercentage": 0,
|
||||
"route": [
|
||||
{
|
||||
"x": 197,
|
||||
"x": 325,
|
||||
"y": 956
|
||||
},
|
||||
{
|
||||
"x": 402,
|
||||
"x": 815,
|
||||
"y": 956
|
||||
}
|
||||
],
|
||||
|
|
@ -915,11 +915,11 @@
|
|||
"labelPercentage": 0,
|
||||
"route": [
|
||||
{
|
||||
"x": 422,
|
||||
"x": 835,
|
||||
"y": 1086
|
||||
},
|
||||
{
|
||||
"x": 606,
|
||||
"x": 1069,
|
||||
"y": 1086
|
||||
}
|
||||
],
|
||||
|
|
@ -958,7 +958,7 @@
|
|||
"y": 1216
|
||||
},
|
||||
{
|
||||
"x": 406,
|
||||
"x": 819,
|
||||
"y": 1216
|
||||
}
|
||||
],
|
||||
|
|
@ -997,7 +997,7 @@
|
|||
"y": 1346
|
||||
},
|
||||
{
|
||||
"x": 696.5,
|
||||
"x": 1319.5,
|
||||
"y": 1346
|
||||
}
|
||||
],
|
||||
|
|
@ -1036,7 +1036,7 @@
|
|||
"y": 1476
|
||||
},
|
||||
{
|
||||
"x": 313,
|
||||
"x": 569,
|
||||
"y": 1476
|
||||
}
|
||||
],
|
||||
|
|
@ -1075,7 +1075,7 @@
|
|||
"y": 1606
|
||||
},
|
||||
{
|
||||
"x": 313,
|
||||
"x": 569,
|
||||
"y": 1606
|
||||
}
|
||||
],
|
||||
|
|
@ -1114,7 +1114,7 @@
|
|||
"y": 1736
|
||||
},
|
||||
{
|
||||
"x": 696.5,
|
||||
"x": 1319.5,
|
||||
"y": 1736
|
||||
}
|
||||
],
|
||||
|
|
@ -1153,7 +1153,7 @@
|
|||
"y": 1866
|
||||
},
|
||||
{
|
||||
"x": 696.5,
|
||||
"x": 1319.5,
|
||||
"y": 1866
|
||||
}
|
||||
],
|
||||
|
|
@ -1227,11 +1227,11 @@
|
|||
"labelPercentage": 0,
|
||||
"route": [
|
||||
{
|
||||
"x": 197,
|
||||
"x": 325,
|
||||
"y": 176
|
||||
},
|
||||
{
|
||||
"x": 197,
|
||||
"x": 325,
|
||||
"y": 1996
|
||||
}
|
||||
],
|
||||
|
|
@ -1266,11 +1266,11 @@
|
|||
"labelPercentage": 0,
|
||||
"route": [
|
||||
{
|
||||
"x": 319,
|
||||
"x": 575,
|
||||
"y": 176
|
||||
},
|
||||
{
|
||||
"x": 319,
|
||||
"x": 575,
|
||||
"y": 1996
|
||||
}
|
||||
],
|
||||
|
|
@ -1305,11 +1305,11 @@
|
|||
"labelPercentage": 0,
|
||||
"route": [
|
||||
{
|
||||
"x": 412,
|
||||
"x": 825,
|
||||
"y": 176
|
||||
},
|
||||
{
|
||||
"x": 412,
|
||||
"x": 825,
|
||||
"y": 1996
|
||||
}
|
||||
],
|
||||
|
|
@ -1344,11 +1344,11 @@
|
|||
"labelPercentage": 0,
|
||||
"route": [
|
||||
{
|
||||
"x": 612,
|
||||
"x": 1075,
|
||||
"y": 176
|
||||
},
|
||||
{
|
||||
"x": 612,
|
||||
"x": 1075,
|
||||
"y": 1996
|
||||
}
|
||||
],
|
||||
|
|
@ -1383,11 +1383,11 @@
|
|||
"labelPercentage": 0,
|
||||
"route": [
|
||||
{
|
||||
"x": 702.5,
|
||||
"x": 1325.5,
|
||||
"y": 176
|
||||
},
|
||||
{
|
||||
"x": 702.5,
|
||||
"x": 1325.5,
|
||||
"y": 1996
|
||||
}
|
||||
],
|
||||
|
|
|
|||
|
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",
|
||||
"type": "",
|
||||
"pos": {
|
||||
"x": 97,
|
||||
"x": 225,
|
||||
"y": 50
|
||||
},
|
||||
"width": 200,
|
||||
|
|
@ -121,7 +121,7 @@
|
|||
"id": "itemResponse.t",
|
||||
"type": "rectangle",
|
||||
"pos": {
|
||||
"x": 191,
|
||||
"x": 319,
|
||||
"y": 290
|
||||
},
|
||||
"width": 12,
|
||||
|
|
@ -159,7 +159,7 @@
|
|||
"id": "item",
|
||||
"type": "",
|
||||
"pos": {
|
||||
"x": 244,
|
||||
"x": 500,
|
||||
"y": 50
|
||||
},
|
||||
"width": 150,
|
||||
|
|
@ -198,7 +198,7 @@
|
|||
"id": "item.t1",
|
||||
"type": "rectangle",
|
||||
"pos": {
|
||||
"x": 313,
|
||||
"x": 569,
|
||||
"y": 550
|
||||
},
|
||||
"width": 12,
|
||||
|
|
@ -236,7 +236,7 @@
|
|||
"id": "essayRubric",
|
||||
"type": "",
|
||||
"pos": {
|
||||
"x": 319,
|
||||
"x": 732,
|
||||
"y": 50
|
||||
},
|
||||
"width": 186,
|
||||
|
|
@ -275,7 +275,7 @@
|
|||
"id": "essayRubric.t",
|
||||
"type": "rectangle",
|
||||
"pos": {
|
||||
"x": 406,
|
||||
"x": 819,
|
||||
"y": 810
|
||||
},
|
||||
"width": 12,
|
||||
|
|
@ -313,7 +313,7 @@
|
|||
"id": "essayRubric.t.c",
|
||||
"type": "rectangle",
|
||||
"pos": {
|
||||
"x": 402,
|
||||
"x": 815,
|
||||
"y": 940
|
||||
},
|
||||
"width": 20,
|
||||
|
|
@ -351,7 +351,7 @@
|
|||
"id": "concept",
|
||||
"type": "",
|
||||
"pos": {
|
||||
"x": 532,
|
||||
"x": 995,
|
||||
"y": 50
|
||||
},
|
||||
"width": 160,
|
||||
|
|
@ -390,7 +390,7 @@
|
|||
"id": "concept.t",
|
||||
"type": "rectangle",
|
||||
"pos": {
|
||||
"x": 606,
|
||||
"x": 1069,
|
||||
"y": 1070
|
||||
},
|
||||
"width": 12,
|
||||
|
|
@ -428,7 +428,7 @@
|
|||
"id": "itemOutcome",
|
||||
"type": "",
|
||||
"pos": {
|
||||
"x": 604,
|
||||
"x": 1227,
|
||||
"y": 50
|
||||
},
|
||||
"width": 197,
|
||||
|
|
@ -467,7 +467,7 @@
|
|||
"id": "itemOutcome.t1",
|
||||
"type": "rectangle",
|
||||
"pos": {
|
||||
"x": 696,
|
||||
"x": 1319,
|
||||
"y": 1330
|
||||
},
|
||||
"width": 12,
|
||||
|
|
@ -505,7 +505,7 @@
|
|||
"id": "item.t2",
|
||||
"type": "rectangle",
|
||||
"pos": {
|
||||
"x": 313,
|
||||
"x": 569,
|
||||
"y": 1460
|
||||
},
|
||||
"width": 12,
|
||||
|
|
@ -543,7 +543,7 @@
|
|||
"id": "item.t3",
|
||||
"type": "rectangle",
|
||||
"pos": {
|
||||
"x": 313,
|
||||
"x": 569,
|
||||
"y": 1590
|
||||
},
|
||||
"width": 12,
|
||||
|
|
@ -581,7 +581,7 @@
|
|||
"id": "itemOutcome.t2",
|
||||
"type": "rectangle",
|
||||
"pos": {
|
||||
"x": 696,
|
||||
"x": 1319,
|
||||
"y": 1720
|
||||
},
|
||||
"width": 12,
|
||||
|
|
@ -619,7 +619,7 @@
|
|||
"id": "itemOutcome.t3",
|
||||
"type": "rectangle",
|
||||
"pos": {
|
||||
"x": 696,
|
||||
"x": 1319,
|
||||
"y": 1850
|
||||
},
|
||||
"width": 12,
|
||||
|
|
@ -685,7 +685,7 @@
|
|||
"y": 306
|
||||
},
|
||||
{
|
||||
"x": 191,
|
||||
"x": 319,
|
||||
"y": 306
|
||||
}
|
||||
],
|
||||
|
|
@ -724,7 +724,7 @@
|
|||
"y": 436
|
||||
},
|
||||
{
|
||||
"x": 191,
|
||||
"x": 319,
|
||||
"y": 436
|
||||
}
|
||||
],
|
||||
|
|
@ -763,7 +763,7 @@
|
|||
"y": 566
|
||||
},
|
||||
{
|
||||
"x": 313,
|
||||
"x": 569,
|
||||
"y": 566
|
||||
}
|
||||
],
|
||||
|
|
@ -802,7 +802,7 @@
|
|||
"y": 696
|
||||
},
|
||||
{
|
||||
"x": 313,
|
||||
"x": 569,
|
||||
"y": 696
|
||||
}
|
||||
],
|
||||
|
|
@ -841,7 +841,7 @@
|
|||
"y": 826
|
||||
},
|
||||
{
|
||||
"x": 406,
|
||||
"x": 819,
|
||||
"y": 826
|
||||
}
|
||||
],
|
||||
|
|
@ -876,11 +876,11 @@
|
|||
"labelPercentage": 0,
|
||||
"route": [
|
||||
{
|
||||
"x": 197,
|
||||
"x": 325,
|
||||
"y": 956
|
||||
},
|
||||
{
|
||||
"x": 402,
|
||||
"x": 815,
|
||||
"y": 956
|
||||
}
|
||||
],
|
||||
|
|
@ -915,11 +915,11 @@
|
|||
"labelPercentage": 0,
|
||||
"route": [
|
||||
{
|
||||
"x": 422,
|
||||
"x": 835,
|
||||
"y": 1086
|
||||
},
|
||||
{
|
||||
"x": 606,
|
||||
"x": 1069,
|
||||
"y": 1086
|
||||
}
|
||||
],
|
||||
|
|
@ -958,7 +958,7 @@
|
|||
"y": 1216
|
||||
},
|
||||
{
|
||||
"x": 406,
|
||||
"x": 819,
|
||||
"y": 1216
|
||||
}
|
||||
],
|
||||
|
|
@ -997,7 +997,7 @@
|
|||
"y": 1346
|
||||
},
|
||||
{
|
||||
"x": 696.5,
|
||||
"x": 1319.5,
|
||||
"y": 1346
|
||||
}
|
||||
],
|
||||
|
|
@ -1036,7 +1036,7 @@
|
|||
"y": 1476
|
||||
},
|
||||
{
|
||||
"x": 313,
|
||||
"x": 569,
|
||||
"y": 1476
|
||||
}
|
||||
],
|
||||
|
|
@ -1075,7 +1075,7 @@
|
|||
"y": 1606
|
||||
},
|
||||
{
|
||||
"x": 313,
|
||||
"x": 569,
|
||||
"y": 1606
|
||||
}
|
||||
],
|
||||
|
|
@ -1114,7 +1114,7 @@
|
|||
"y": 1736
|
||||
},
|
||||
{
|
||||
"x": 696.5,
|
||||
"x": 1319.5,
|
||||
"y": 1736
|
||||
}
|
||||
],
|
||||
|
|
@ -1153,7 +1153,7 @@
|
|||
"y": 1866
|
||||
},
|
||||
{
|
||||
"x": 696.5,
|
||||
"x": 1319.5,
|
||||
"y": 1866
|
||||
}
|
||||
],
|
||||
|
|
@ -1227,11 +1227,11 @@
|
|||
"labelPercentage": 0,
|
||||
"route": [
|
||||
{
|
||||
"x": 197,
|
||||
"x": 325,
|
||||
"y": 176
|
||||
},
|
||||
{
|
||||
"x": 197,
|
||||
"x": 325,
|
||||
"y": 1996
|
||||
}
|
||||
],
|
||||
|
|
@ -1266,11 +1266,11 @@
|
|||
"labelPercentage": 0,
|
||||
"route": [
|
||||
{
|
||||
"x": 319,
|
||||
"x": 575,
|
||||
"y": 176
|
||||
},
|
||||
{
|
||||
"x": 319,
|
||||
"x": 575,
|
||||
"y": 1996
|
||||
}
|
||||
],
|
||||
|
|
@ -1305,11 +1305,11 @@
|
|||
"labelPercentage": 0,
|
||||
"route": [
|
||||
{
|
||||
"x": 412,
|
||||
"x": 825,
|
||||
"y": 176
|
||||
},
|
||||
{
|
||||
"x": 412,
|
||||
"x": 825,
|
||||
"y": 1996
|
||||
}
|
||||
],
|
||||
|
|
@ -1344,11 +1344,11 @@
|
|||
"labelPercentage": 0,
|
||||
"route": [
|
||||
{
|
||||
"x": 612,
|
||||
"x": 1075,
|
||||
"y": 176
|
||||
},
|
||||
{
|
||||
"x": 612,
|
||||
"x": 1075,
|
||||
"y": 1996
|
||||
}
|
||||
],
|
||||
|
|
@ -1383,11 +1383,11 @@
|
|||
"labelPercentage": 0,
|
||||
"route": [
|
||||
{
|
||||
"x": 702.5,
|
||||
"x": 1325.5,
|
||||
"y": 176
|
||||
},
|
||||
{
|
||||
"x": 702.5,
|
||||
"x": 1325.5,
|
||||
"y": 1996
|
||||
}
|
||||
],
|
||||
|
|
|
|||
|
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 |