Merge pull request #359 from ejulio-ts/actors-distance
sequence diagrams: Actors distance
|
|
@ -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.
|
||||
|
||||
|
|
|
|||
|
|
@ -32,6 +32,10 @@ type sequenceDiagram struct {
|
|||
firstMessage map[*d2graph.Object]*d2graph.Edge
|
||||
lastMessage map[*d2graph.Object]*d2graph.Edge
|
||||
|
||||
// the distance from actor[i] center to actor[i+1] center
|
||||
// every neighbor actors need different distances depending on the message labels between them
|
||||
actorXStep []float64
|
||||
|
||||
yStep float64
|
||||
maxActorHeight float64
|
||||
|
||||
|
|
@ -72,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)
|
||||
|
|
@ -91,6 +93,7 @@ func newSequenceDiagram(objects []*d2graph.Object, messages []*d2graph.Edge) *se
|
|||
objectRank: make(map[*d2graph.Object]int),
|
||||
firstMessage: make(map[*d2graph.Object]*d2graph.Edge),
|
||||
lastMessage: make(map[*d2graph.Object]*d2graph.Edge),
|
||||
actorXStep: make([]float64, len(actors)-1),
|
||||
yStep: MIN_MESSAGE_DISTANCE,
|
||||
maxActorHeight: 0.,
|
||||
verticalIndices: make(map[string]int),
|
||||
|
|
@ -107,6 +110,7 @@ func newSequenceDiagram(objects []*d2graph.Object, messages []*d2graph.Edge) *se
|
|||
|
||||
queue := make([]*d2graph.Object, len(actor.ChildrenArray))
|
||||
copy(queue, actor.ChildrenArray)
|
||||
maxNoteWidth := 0.
|
||||
for len(queue) > 0 {
|
||||
child := queue[0]
|
||||
queue = queue[1:]
|
||||
|
|
@ -120,6 +124,7 @@ func newSequenceDiagram(objects []*d2graph.Object, messages []*d2graph.Edge) *se
|
|||
sd.notes = append(sd.notes, child)
|
||||
sd.objectRank[child] = rank
|
||||
child.LabelPosition = go2.Pointer(string(label.InsideMiddleCenter))
|
||||
maxNoteWidth = math.Max(maxNoteWidth, child.Width)
|
||||
} else {
|
||||
// spans have no labels
|
||||
// TODO why not? Spans should be able to
|
||||
|
|
@ -131,12 +136,29 @@ func newSequenceDiagram(objects []*d2graph.Object, messages []*d2graph.Edge) *se
|
|||
|
||||
queue = append(queue, child.ChildrenArray...)
|
||||
}
|
||||
|
||||
if rank != len(actors)-1 {
|
||||
actorHW := actor.Width / 2.
|
||||
nextActorHW := actors[rank+1].Width / 2.
|
||||
sd.actorXStep[rank] = math.Max(actorHW+nextActorHW+HORIZONTAL_PAD, MIN_ACTOR_DISTANCE)
|
||||
sd.actorXStep[rank] = math.Max(maxNoteWidth/2.+HORIZONTAL_PAD, sd.actorXStep[rank])
|
||||
}
|
||||
}
|
||||
|
||||
for _, message := range sd.messages {
|
||||
sd.verticalIndices[message.AbsID()] = getEdgeEarliestLineNum(message)
|
||||
sd.yStep = math.Max(sd.yStep, float64(message.LabelDimensions.Height))
|
||||
|
||||
// ensures that long labels, spanning over multiple actors, don't make for large gaps between actors
|
||||
// by distributing the label length across the actors rank difference
|
||||
rankDiff := math.Abs(float64(sd.objectRank[message.Src]) - float64(sd.objectRank[message.Dst]))
|
||||
if rankDiff != 0 {
|
||||
// rankDiff = 0 for self edges
|
||||
distributedLabelWidth := float64(message.LabelDimensions.Width) / rankDiff
|
||||
for rank := sd.objectRank[message.Src]; rank <= sd.objectRank[message.Dst]-1; rank++ {
|
||||
sd.actorXStep[rank] = math.Max(sd.actorXStep[rank], distributedLabelWidth+HORIZONTAL_PAD)
|
||||
}
|
||||
}
|
||||
sd.lastMessage[message.Src] = message
|
||||
if _, exists := sd.firstMessage[message.Src]; !exists {
|
||||
sd.firstMessage[message.Src] = message
|
||||
|
|
@ -242,10 +264,10 @@ func (sd *sequenceDiagram) placeGroup(group *d2graph.Object) {
|
|||
)
|
||||
}
|
||||
|
||||
// placeActors places actors bottom aligned, side by side
|
||||
// placeActors places actors bottom aligned, side by side with centers spaced by sd.actorXStep
|
||||
func (sd *sequenceDiagram) placeActors() {
|
||||
x := 0.
|
||||
for _, actor := range sd.actors {
|
||||
centerX := sd.actors[0].Width / 2.
|
||||
for rank, actor := range sd.actors {
|
||||
shape := actor.Attributes.Shape.Value
|
||||
var yOffset float64
|
||||
if shape == d2target.ShapeImage || shape == d2target.ShapePerson {
|
||||
|
|
@ -258,8 +280,11 @@ func (sd *sequenceDiagram) placeActors() {
|
|||
actor.LabelPosition = go2.Pointer(string(label.InsideMiddleCenter))
|
||||
yOffset = sd.maxActorHeight - actor.Height
|
||||
}
|
||||
actor.TopLeft = geo.NewPoint(x, yOffset)
|
||||
x += actor.Width + MIN_ACTOR_DISTANCE
|
||||
halfWidth := actor.Width / 2.
|
||||
actor.TopLeft = geo.NewPoint(math.Round(centerX-halfWidth), yOffset)
|
||||
if rank != len(sd.actors)-1 {
|
||||
centerX += sd.actorXStep[rank]
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
|
|
|
|||
|
|
@ -1451,6 +1451,27 @@ c: "just an actor"
|
|||
d2exporter.export -> CLI: resulting SVG
|
||||
}
|
||||
`,
|
||||
}, {
|
||||
name: "sequence_diagram_actor_distance",
|
||||
script: `shape: sequence_diagram
|
||||
a: "an actor with a really long label that will break everything"
|
||||
c: "an\nactor\nwith\na\nreally\nlong\nlabel\nthat\nwill\nbreak\neverything"
|
||||
d: "simple"
|
||||
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"
|
||||
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"
|
||||
d -> e: "long label for testing purposes and it must be really, really long"
|
||||
a -> f`,
|
||||
}, {
|
||||
name: "sequence_diagram_long_note",
|
||||
script: `shape: sequence_diagram
|
||||
a -> b
|
||||
b.note: "a note here to remember that padding must consider notes too"
|
||||
a.note: "just\na\nlong\nnote\nhere"`,
|
||||
},
|
||||
}
|
||||
|
||||
|
|
|
|||
715
e2etests/testdata/stable/sequence_diagram_actor_distance/dagre/board.exp.json
generated
vendored
Normal file
|
|
@ -0,0 +1,715 @@
|
|||
{
|
||||
"name": "",
|
||||
"shapes": [
|
||||
{
|
||||
"id": "a",
|
||||
"type": "",
|
||||
"pos": {
|
||||
"x": 0,
|
||||
"y": 210
|
||||
},
|
||||
"width": 487,
|
||||
"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": "",
|
||||
"blend": false,
|
||||
"fields": null,
|
||||
"methods": null,
|
||||
"columns": null,
|
||||
"label": "an actor with a really long label that will break everything",
|
||||
"fontSize": 16,
|
||||
"fontFamily": "DEFAULT",
|
||||
"language": "",
|
||||
"color": "#0A0F25",
|
||||
"italic": false,
|
||||
"bold": false,
|
||||
"underline": false,
|
||||
"labelWidth": 387,
|
||||
"labelHeight": 26,
|
||||
"labelPosition": "INSIDE_MIDDLE_CENTER",
|
||||
"zIndex": 0,
|
||||
"level": 1
|
||||
},
|
||||
{
|
||||
"id": "c",
|
||||
"type": "",
|
||||
"pos": {
|
||||
"x": 578,
|
||||
"y": 50
|
||||
},
|
||||
"width": 177,
|
||||
"height": 286,
|
||||
"opacity": 1,
|
||||
"strokeDash": 0,
|
||||
"strokeWidth": 2,
|
||||
"borderRadius": 0,
|
||||
"fill": "#EDF0FD",
|
||||
"stroke": "#0D32B2",
|
||||
"shadow": false,
|
||||
"3d": false,
|
||||
"multiple": false,
|
||||
"tooltip": "",
|
||||
"link": "",
|
||||
"icon": null,
|
||||
"iconPosition": "",
|
||||
"blend": false,
|
||||
"fields": null,
|
||||
"methods": null,
|
||||
"columns": null,
|
||||
"label": "an\nactor\nwith\na\nreally\nlong\nlabel\nthat\nwill\nbreak\neverything",
|
||||
"fontSize": 16,
|
||||
"fontFamily": "DEFAULT",
|
||||
"language": "",
|
||||
"color": "#0A0F25",
|
||||
"italic": false,
|
||||
"bold": false,
|
||||
"underline": false,
|
||||
"labelWidth": 77,
|
||||
"labelHeight": 186,
|
||||
"labelPosition": "INSIDE_MIDDLE_CENTER",
|
||||
"zIndex": 0,
|
||||
"level": 1
|
||||
},
|
||||
{
|
||||
"id": "d",
|
||||
"type": "",
|
||||
"pos": {
|
||||
"x": 1014,
|
||||
"y": 210
|
||||
},
|
||||
"width": 150,
|
||||
"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": "",
|
||||
"blend": false,
|
||||
"fields": null,
|
||||
"methods": null,
|
||||
"columns": null,
|
||||
"label": "simple",
|
||||
"fontSize": 16,
|
||||
"fontFamily": "DEFAULT",
|
||||
"language": "",
|
||||
"color": "#0A0F25",
|
||||
"italic": false,
|
||||
"bold": false,
|
||||
"underline": false,
|
||||
"labelWidth": 50,
|
||||
"labelHeight": 26,
|
||||
"labelPosition": "INSIDE_MIDDLE_CENTER",
|
||||
"zIndex": 0,
|
||||
"level": 1
|
||||
},
|
||||
{
|
||||
"id": "e",
|
||||
"type": "",
|
||||
"pos": {
|
||||
"x": 1460,
|
||||
"y": 210
|
||||
},
|
||||
"width": 180,
|
||||
"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": "",
|
||||
"blend": false,
|
||||
"fields": null,
|
||||
"methods": null,
|
||||
"columns": null,
|
||||
"label": "a short one",
|
||||
"fontSize": 16,
|
||||
"fontFamily": "DEFAULT",
|
||||
"language": "",
|
||||
"color": "#0A0F25",
|
||||
"italic": false,
|
||||
"bold": false,
|
||||
"underline": false,
|
||||
"labelWidth": 80,
|
||||
"labelHeight": 26,
|
||||
"labelPosition": "INSIDE_MIDDLE_CENTER",
|
||||
"zIndex": 0,
|
||||
"level": 1
|
||||
},
|
||||
{
|
||||
"id": "b",
|
||||
"type": "",
|
||||
"pos": {
|
||||
"x": 1718,
|
||||
"y": 210
|
||||
},
|
||||
"width": 163,
|
||||
"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": "",
|
||||
"blend": false,
|
||||
"fields": null,
|
||||
"methods": null,
|
||||
"columns": null,
|
||||
"label": "far away",
|
||||
"fontSize": 16,
|
||||
"fontFamily": "DEFAULT",
|
||||
"language": "",
|
||||
"color": "#0A0F25",
|
||||
"italic": false,
|
||||
"bold": false,
|
||||
"underline": false,
|
||||
"labelWidth": 63,
|
||||
"labelHeight": 26,
|
||||
"labelPosition": "INSIDE_MIDDLE_CENTER",
|
||||
"zIndex": 0,
|
||||
"level": 1
|
||||
},
|
||||
{
|
||||
"id": "f",
|
||||
"type": "",
|
||||
"pos": {
|
||||
"x": 1931,
|
||||
"y": 210
|
||||
},
|
||||
"width": 561,
|
||||
"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": "",
|
||||
"blend": false,
|
||||
"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": false,
|
||||
"underline": false,
|
||||
"labelWidth": 461,
|
||||
"labelHeight": 26,
|
||||
"labelPosition": "INSIDE_MIDDLE_CENTER",
|
||||
"zIndex": 0,
|
||||
"level": 1
|
||||
}
|
||||
],
|
||||
"connections": [
|
||||
{
|
||||
"id": "(a -> b)[0]",
|
||||
"src": "a",
|
||||
"srcArrow": "none",
|
||||
"srcLabel": "",
|
||||
"dst": "b",
|
||||
"dstArrow": "triangle",
|
||||
"dstLabel": "",
|
||||
"opacity": 1,
|
||||
"strokeDash": 0,
|
||||
"strokeWidth": 2,
|
||||
"stroke": "#0D32B2",
|
||||
"label": "short",
|
||||
"fontSize": 16,
|
||||
"fontFamily": "DEFAULT",
|
||||
"language": "",
|
||||
"color": "#676C7E",
|
||||
"italic": true,
|
||||
"bold": false,
|
||||
"underline": false,
|
||||
"labelWidth": 36,
|
||||
"labelHeight": 21,
|
||||
"labelPosition": "INSIDE_MIDDLE_CENTER",
|
||||
"labelPercentage": 0,
|
||||
"route": [
|
||||
{
|
||||
"x": 243.5,
|
||||
"y": 466
|
||||
},
|
||||
{
|
||||
"x": 1799.5,
|
||||
"y": 466
|
||||
}
|
||||
],
|
||||
"animated": false,
|
||||
"tooltip": "",
|
||||
"icon": null,
|
||||
"zIndex": 4
|
||||
},
|
||||
{
|
||||
"id": "(a -> b)[1]",
|
||||
"src": "a",
|
||||
"srcArrow": "none",
|
||||
"srcLabel": "",
|
||||
"dst": "b",
|
||||
"dstArrow": "triangle",
|
||||
"dstLabel": "",
|
||||
"opacity": 1,
|
||||
"strokeDash": 0,
|
||||
"strokeWidth": 2,
|
||||
"stroke": "#0D32B2",
|
||||
"label": "long label for testing purposes and it must be really, really long",
|
||||
"fontSize": 16,
|
||||
"fontFamily": "DEFAULT",
|
||||
"language": "",
|
||||
"color": "#676C7E",
|
||||
"italic": true,
|
||||
"bold": false,
|
||||
"underline": false,
|
||||
"labelWidth": 411,
|
||||
"labelHeight": 21,
|
||||
"labelPosition": "INSIDE_MIDDLE_CENTER",
|
||||
"labelPercentage": 0,
|
||||
"route": [
|
||||
{
|
||||
"x": 243.5,
|
||||
"y": 596
|
||||
},
|
||||
{
|
||||
"x": 1799.5,
|
||||
"y": 596
|
||||
}
|
||||
],
|
||||
"animated": false,
|
||||
"tooltip": "",
|
||||
"icon": null,
|
||||
"zIndex": 4
|
||||
},
|
||||
{
|
||||
"id": "(c -> d)[0]",
|
||||
"src": "c",
|
||||
"srcArrow": "none",
|
||||
"srcLabel": "",
|
||||
"dst": "d",
|
||||
"dstArrow": "triangle",
|
||||
"dstLabel": "",
|
||||
"opacity": 1,
|
||||
"strokeDash": 0,
|
||||
"strokeWidth": 2,
|
||||
"stroke": "#0D32B2",
|
||||
"label": "short",
|
||||
"fontSize": 16,
|
||||
"fontFamily": "DEFAULT",
|
||||
"language": "",
|
||||
"color": "#676C7E",
|
||||
"italic": true,
|
||||
"bold": false,
|
||||
"underline": false,
|
||||
"labelWidth": 36,
|
||||
"labelHeight": 21,
|
||||
"labelPosition": "INSIDE_MIDDLE_CENTER",
|
||||
"labelPercentage": 0,
|
||||
"route": [
|
||||
{
|
||||
"x": 666.5,
|
||||
"y": 726
|
||||
},
|
||||
{
|
||||
"x": 1089,
|
||||
"y": 726
|
||||
}
|
||||
],
|
||||
"animated": false,
|
||||
"tooltip": "",
|
||||
"icon": null,
|
||||
"zIndex": 4
|
||||
},
|
||||
{
|
||||
"id": "(a -> d)[0]",
|
||||
"src": "a",
|
||||
"srcArrow": "none",
|
||||
"srcLabel": "",
|
||||
"dst": "d",
|
||||
"dstArrow": "triangle",
|
||||
"dstLabel": "",
|
||||
"opacity": 1,
|
||||
"strokeDash": 0,
|
||||
"strokeWidth": 2,
|
||||
"stroke": "#0D32B2",
|
||||
"label": "this should span many actors lifelines so we know how it will look like when redering a long label over many actors",
|
||||
"fontSize": 16,
|
||||
"fontFamily": "DEFAULT",
|
||||
"language": "",
|
||||
"color": "#676C7E",
|
||||
"italic": true,
|
||||
"bold": false,
|
||||
"underline": false,
|
||||
"labelWidth": 745,
|
||||
"labelHeight": 21,
|
||||
"labelPosition": "INSIDE_MIDDLE_CENTER",
|
||||
"labelPercentage": 0,
|
||||
"route": [
|
||||
{
|
||||
"x": 243.5,
|
||||
"y": 856
|
||||
},
|
||||
{
|
||||
"x": 1089,
|
||||
"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": 1089,
|
||||
"y": 986
|
||||
},
|
||||
{
|
||||
"x": 1550,
|
||||
"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": 243.5,
|
||||
"y": 1116
|
||||
},
|
||||
{
|
||||
"x": 2211.5,
|
||||
"y": 1116
|
||||
}
|
||||
],
|
||||
"animated": false,
|
||||
"tooltip": "",
|
||||
"icon": null,
|
||||
"zIndex": 4
|
||||
},
|
||||
{
|
||||
"id": "(a -- )[0]",
|
||||
"src": "a",
|
||||
"srcArrow": "none",
|
||||
"srcLabel": "",
|
||||
"dst": "a-lifeline-end-2251863791",
|
||||
"dstArrow": "none",
|
||||
"dstLabel": "",
|
||||
"opacity": 1,
|
||||
"strokeDash": 6,
|
||||
"strokeWidth": 2,
|
||||
"stroke": "#0D32B2",
|
||||
"label": "",
|
||||
"fontSize": 16,
|
||||
"fontFamily": "DEFAULT",
|
||||
"language": "",
|
||||
"color": "#676C7E",
|
||||
"italic": true,
|
||||
"bold": false,
|
||||
"underline": false,
|
||||
"labelWidth": 0,
|
||||
"labelHeight": 0,
|
||||
"labelPosition": "",
|
||||
"labelPercentage": 0,
|
||||
"route": [
|
||||
{
|
||||
"x": 243.5,
|
||||
"y": 336
|
||||
},
|
||||
{
|
||||
"x": 243.5,
|
||||
"y": 1246
|
||||
}
|
||||
],
|
||||
"animated": false,
|
||||
"tooltip": "",
|
||||
"icon": null,
|
||||
"zIndex": 1
|
||||
},
|
||||
{
|
||||
"id": "(c -- )[0]",
|
||||
"src": "c",
|
||||
"srcArrow": "none",
|
||||
"srcLabel": "",
|
||||
"dst": "c-lifeline-end-955173837",
|
||||
"dstArrow": "none",
|
||||
"dstLabel": "",
|
||||
"opacity": 1,
|
||||
"strokeDash": 6,
|
||||
"strokeWidth": 2,
|
||||
"stroke": "#0D32B2",
|
||||
"label": "",
|
||||
"fontSize": 16,
|
||||
"fontFamily": "DEFAULT",
|
||||
"language": "",
|
||||
"color": "#676C7E",
|
||||
"italic": true,
|
||||
"bold": false,
|
||||
"underline": false,
|
||||
"labelWidth": 0,
|
||||
"labelHeight": 0,
|
||||
"labelPosition": "",
|
||||
"labelPercentage": 0,
|
||||
"route": [
|
||||
{
|
||||
"x": 666.5,
|
||||
"y": 336
|
||||
},
|
||||
{
|
||||
"x": 666.5,
|
||||
"y": 1246
|
||||
}
|
||||
],
|
||||
"animated": false,
|
||||
"tooltip": "",
|
||||
"icon": null,
|
||||
"zIndex": 1
|
||||
},
|
||||
{
|
||||
"id": "(d -- )[0]",
|
||||
"src": "d",
|
||||
"srcArrow": "none",
|
||||
"srcLabel": "",
|
||||
"dst": "d-lifeline-end-2106864010",
|
||||
"dstArrow": "none",
|
||||
"dstLabel": "",
|
||||
"opacity": 1,
|
||||
"strokeDash": 6,
|
||||
"strokeWidth": 2,
|
||||
"stroke": "#0D32B2",
|
||||
"label": "",
|
||||
"fontSize": 16,
|
||||
"fontFamily": "DEFAULT",
|
||||
"language": "",
|
||||
"color": "#676C7E",
|
||||
"italic": true,
|
||||
"bold": false,
|
||||
"underline": false,
|
||||
"labelWidth": 0,
|
||||
"labelHeight": 0,
|
||||
"labelPosition": "",
|
||||
"labelPercentage": 0,
|
||||
"route": [
|
||||
{
|
||||
"x": 1089,
|
||||
"y": 336
|
||||
},
|
||||
{
|
||||
"x": 1089,
|
||||
"y": 1246
|
||||
}
|
||||
],
|
||||
"animated": false,
|
||||
"tooltip": "",
|
||||
"icon": null,
|
||||
"zIndex": 1
|
||||
},
|
||||
{
|
||||
"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": 1550,
|
||||
"y": 336
|
||||
},
|
||||
{
|
||||
"x": 1550,
|
||||
"y": 1246
|
||||
}
|
||||
],
|
||||
"animated": false,
|
||||
"tooltip": "",
|
||||
"icon": null,
|
||||
"zIndex": 1
|
||||
},
|
||||
{
|
||||
"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": 1799.5,
|
||||
"y": 336
|
||||
},
|
||||
{
|
||||
"x": 1799.5,
|
||||
"y": 1246
|
||||
}
|
||||
],
|
||||
"animated": false,
|
||||
"tooltip": "",
|
||||
"icon": null,
|
||||
"zIndex": 1
|
||||
},
|
||||
{
|
||||
"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": 2211.5,
|
||||
"y": 336
|
||||
},
|
||||
{
|
||||
"x": 2211.5,
|
||||
"y": 1246
|
||||
}
|
||||
],
|
||||
"animated": false,
|
||||
"tooltip": "",
|
||||
"icon": null,
|
||||
"zIndex": 1
|
||||
}
|
||||
]
|
||||
}
|
||||
42
e2etests/testdata/stable/sequence_diagram_actor_distance/dagre/sketch.exp.svg
vendored
Normal file
|
After Width: | Height: | Size: 474 KiB |
715
e2etests/testdata/stable/sequence_diagram_actor_distance/elk/board.exp.json
generated
vendored
Normal file
|
|
@ -0,0 +1,715 @@
|
|||
{
|
||||
"name": "",
|
||||
"shapes": [
|
||||
{
|
||||
"id": "a",
|
||||
"type": "",
|
||||
"pos": {
|
||||
"x": 0,
|
||||
"y": 210
|
||||
},
|
||||
"width": 487,
|
||||
"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": "",
|
||||
"blend": false,
|
||||
"fields": null,
|
||||
"methods": null,
|
||||
"columns": null,
|
||||
"label": "an actor with a really long label that will break everything",
|
||||
"fontSize": 16,
|
||||
"fontFamily": "DEFAULT",
|
||||
"language": "",
|
||||
"color": "#0A0F25",
|
||||
"italic": false,
|
||||
"bold": false,
|
||||
"underline": false,
|
||||
"labelWidth": 387,
|
||||
"labelHeight": 26,
|
||||
"labelPosition": "INSIDE_MIDDLE_CENTER",
|
||||
"zIndex": 0,
|
||||
"level": 1
|
||||
},
|
||||
{
|
||||
"id": "c",
|
||||
"type": "",
|
||||
"pos": {
|
||||
"x": 578,
|
||||
"y": 50
|
||||
},
|
||||
"width": 177,
|
||||
"height": 286,
|
||||
"opacity": 1,
|
||||
"strokeDash": 0,
|
||||
"strokeWidth": 2,
|
||||
"borderRadius": 0,
|
||||
"fill": "#EDF0FD",
|
||||
"stroke": "#0D32B2",
|
||||
"shadow": false,
|
||||
"3d": false,
|
||||
"multiple": false,
|
||||
"tooltip": "",
|
||||
"link": "",
|
||||
"icon": null,
|
||||
"iconPosition": "",
|
||||
"blend": false,
|
||||
"fields": null,
|
||||
"methods": null,
|
||||
"columns": null,
|
||||
"label": "an\nactor\nwith\na\nreally\nlong\nlabel\nthat\nwill\nbreak\neverything",
|
||||
"fontSize": 16,
|
||||
"fontFamily": "DEFAULT",
|
||||
"language": "",
|
||||
"color": "#0A0F25",
|
||||
"italic": false,
|
||||
"bold": false,
|
||||
"underline": false,
|
||||
"labelWidth": 77,
|
||||
"labelHeight": 186,
|
||||
"labelPosition": "INSIDE_MIDDLE_CENTER",
|
||||
"zIndex": 0,
|
||||
"level": 1
|
||||
},
|
||||
{
|
||||
"id": "d",
|
||||
"type": "",
|
||||
"pos": {
|
||||
"x": 1014,
|
||||
"y": 210
|
||||
},
|
||||
"width": 150,
|
||||
"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": "",
|
||||
"blend": false,
|
||||
"fields": null,
|
||||
"methods": null,
|
||||
"columns": null,
|
||||
"label": "simple",
|
||||
"fontSize": 16,
|
||||
"fontFamily": "DEFAULT",
|
||||
"language": "",
|
||||
"color": "#0A0F25",
|
||||
"italic": false,
|
||||
"bold": false,
|
||||
"underline": false,
|
||||
"labelWidth": 50,
|
||||
"labelHeight": 26,
|
||||
"labelPosition": "INSIDE_MIDDLE_CENTER",
|
||||
"zIndex": 0,
|
||||
"level": 1
|
||||
},
|
||||
{
|
||||
"id": "e",
|
||||
"type": "",
|
||||
"pos": {
|
||||
"x": 1460,
|
||||
"y": 210
|
||||
},
|
||||
"width": 180,
|
||||
"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": "",
|
||||
"blend": false,
|
||||
"fields": null,
|
||||
"methods": null,
|
||||
"columns": null,
|
||||
"label": "a short one",
|
||||
"fontSize": 16,
|
||||
"fontFamily": "DEFAULT",
|
||||
"language": "",
|
||||
"color": "#0A0F25",
|
||||
"italic": false,
|
||||
"bold": false,
|
||||
"underline": false,
|
||||
"labelWidth": 80,
|
||||
"labelHeight": 26,
|
||||
"labelPosition": "INSIDE_MIDDLE_CENTER",
|
||||
"zIndex": 0,
|
||||
"level": 1
|
||||
},
|
||||
{
|
||||
"id": "b",
|
||||
"type": "",
|
||||
"pos": {
|
||||
"x": 1718,
|
||||
"y": 210
|
||||
},
|
||||
"width": 163,
|
||||
"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": "",
|
||||
"blend": false,
|
||||
"fields": null,
|
||||
"methods": null,
|
||||
"columns": null,
|
||||
"label": "far away",
|
||||
"fontSize": 16,
|
||||
"fontFamily": "DEFAULT",
|
||||
"language": "",
|
||||
"color": "#0A0F25",
|
||||
"italic": false,
|
||||
"bold": false,
|
||||
"underline": false,
|
||||
"labelWidth": 63,
|
||||
"labelHeight": 26,
|
||||
"labelPosition": "INSIDE_MIDDLE_CENTER",
|
||||
"zIndex": 0,
|
||||
"level": 1
|
||||
},
|
||||
{
|
||||
"id": "f",
|
||||
"type": "",
|
||||
"pos": {
|
||||
"x": 1931,
|
||||
"y": 210
|
||||
},
|
||||
"width": 561,
|
||||
"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": "",
|
||||
"blend": false,
|
||||
"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": false,
|
||||
"underline": false,
|
||||
"labelWidth": 461,
|
||||
"labelHeight": 26,
|
||||
"labelPosition": "INSIDE_MIDDLE_CENTER",
|
||||
"zIndex": 0,
|
||||
"level": 1
|
||||
}
|
||||
],
|
||||
"connections": [
|
||||
{
|
||||
"id": "(a -> b)[0]",
|
||||
"src": "a",
|
||||
"srcArrow": "none",
|
||||
"srcLabel": "",
|
||||
"dst": "b",
|
||||
"dstArrow": "triangle",
|
||||
"dstLabel": "",
|
||||
"opacity": 1,
|
||||
"strokeDash": 0,
|
||||
"strokeWidth": 2,
|
||||
"stroke": "#0D32B2",
|
||||
"label": "short",
|
||||
"fontSize": 16,
|
||||
"fontFamily": "DEFAULT",
|
||||
"language": "",
|
||||
"color": "#676C7E",
|
||||
"italic": true,
|
||||
"bold": false,
|
||||
"underline": false,
|
||||
"labelWidth": 36,
|
||||
"labelHeight": 21,
|
||||
"labelPosition": "INSIDE_MIDDLE_CENTER",
|
||||
"labelPercentage": 0,
|
||||
"route": [
|
||||
{
|
||||
"x": 243.5,
|
||||
"y": 466
|
||||
},
|
||||
{
|
||||
"x": 1799.5,
|
||||
"y": 466
|
||||
}
|
||||
],
|
||||
"animated": false,
|
||||
"tooltip": "",
|
||||
"icon": null,
|
||||
"zIndex": 4
|
||||
},
|
||||
{
|
||||
"id": "(a -> b)[1]",
|
||||
"src": "a",
|
||||
"srcArrow": "none",
|
||||
"srcLabel": "",
|
||||
"dst": "b",
|
||||
"dstArrow": "triangle",
|
||||
"dstLabel": "",
|
||||
"opacity": 1,
|
||||
"strokeDash": 0,
|
||||
"strokeWidth": 2,
|
||||
"stroke": "#0D32B2",
|
||||
"label": "long label for testing purposes and it must be really, really long",
|
||||
"fontSize": 16,
|
||||
"fontFamily": "DEFAULT",
|
||||
"language": "",
|
||||
"color": "#676C7E",
|
||||
"italic": true,
|
||||
"bold": false,
|
||||
"underline": false,
|
||||
"labelWidth": 411,
|
||||
"labelHeight": 21,
|
||||
"labelPosition": "INSIDE_MIDDLE_CENTER",
|
||||
"labelPercentage": 0,
|
||||
"route": [
|
||||
{
|
||||
"x": 243.5,
|
||||
"y": 596
|
||||
},
|
||||
{
|
||||
"x": 1799.5,
|
||||
"y": 596
|
||||
}
|
||||
],
|
||||
"animated": false,
|
||||
"tooltip": "",
|
||||
"icon": null,
|
||||
"zIndex": 4
|
||||
},
|
||||
{
|
||||
"id": "(c -> d)[0]",
|
||||
"src": "c",
|
||||
"srcArrow": "none",
|
||||
"srcLabel": "",
|
||||
"dst": "d",
|
||||
"dstArrow": "triangle",
|
||||
"dstLabel": "",
|
||||
"opacity": 1,
|
||||
"strokeDash": 0,
|
||||
"strokeWidth": 2,
|
||||
"stroke": "#0D32B2",
|
||||
"label": "short",
|
||||
"fontSize": 16,
|
||||
"fontFamily": "DEFAULT",
|
||||
"language": "",
|
||||
"color": "#676C7E",
|
||||
"italic": true,
|
||||
"bold": false,
|
||||
"underline": false,
|
||||
"labelWidth": 36,
|
||||
"labelHeight": 21,
|
||||
"labelPosition": "INSIDE_MIDDLE_CENTER",
|
||||
"labelPercentage": 0,
|
||||
"route": [
|
||||
{
|
||||
"x": 666.5,
|
||||
"y": 726
|
||||
},
|
||||
{
|
||||
"x": 1089,
|
||||
"y": 726
|
||||
}
|
||||
],
|
||||
"animated": false,
|
||||
"tooltip": "",
|
||||
"icon": null,
|
||||
"zIndex": 4
|
||||
},
|
||||
{
|
||||
"id": "(a -> d)[0]",
|
||||
"src": "a",
|
||||
"srcArrow": "none",
|
||||
"srcLabel": "",
|
||||
"dst": "d",
|
||||
"dstArrow": "triangle",
|
||||
"dstLabel": "",
|
||||
"opacity": 1,
|
||||
"strokeDash": 0,
|
||||
"strokeWidth": 2,
|
||||
"stroke": "#0D32B2",
|
||||
"label": "this should span many actors lifelines so we know how it will look like when redering a long label over many actors",
|
||||
"fontSize": 16,
|
||||
"fontFamily": "DEFAULT",
|
||||
"language": "",
|
||||
"color": "#676C7E",
|
||||
"italic": true,
|
||||
"bold": false,
|
||||
"underline": false,
|
||||
"labelWidth": 745,
|
||||
"labelHeight": 21,
|
||||
"labelPosition": "INSIDE_MIDDLE_CENTER",
|
||||
"labelPercentage": 0,
|
||||
"route": [
|
||||
{
|
||||
"x": 243.5,
|
||||
"y": 856
|
||||
},
|
||||
{
|
||||
"x": 1089,
|
||||
"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": 1089,
|
||||
"y": 986
|
||||
},
|
||||
{
|
||||
"x": 1550,
|
||||
"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": 243.5,
|
||||
"y": 1116
|
||||
},
|
||||
{
|
||||
"x": 2211.5,
|
||||
"y": 1116
|
||||
}
|
||||
],
|
||||
"animated": false,
|
||||
"tooltip": "",
|
||||
"icon": null,
|
||||
"zIndex": 4
|
||||
},
|
||||
{
|
||||
"id": "(a -- )[0]",
|
||||
"src": "a",
|
||||
"srcArrow": "none",
|
||||
"srcLabel": "",
|
||||
"dst": "a-lifeline-end-2251863791",
|
||||
"dstArrow": "none",
|
||||
"dstLabel": "",
|
||||
"opacity": 1,
|
||||
"strokeDash": 6,
|
||||
"strokeWidth": 2,
|
||||
"stroke": "#0D32B2",
|
||||
"label": "",
|
||||
"fontSize": 16,
|
||||
"fontFamily": "DEFAULT",
|
||||
"language": "",
|
||||
"color": "#676C7E",
|
||||
"italic": true,
|
||||
"bold": false,
|
||||
"underline": false,
|
||||
"labelWidth": 0,
|
||||
"labelHeight": 0,
|
||||
"labelPosition": "",
|
||||
"labelPercentage": 0,
|
||||
"route": [
|
||||
{
|
||||
"x": 243.5,
|
||||
"y": 336
|
||||
},
|
||||
{
|
||||
"x": 243.5,
|
||||
"y": 1246
|
||||
}
|
||||
],
|
||||
"animated": false,
|
||||
"tooltip": "",
|
||||
"icon": null,
|
||||
"zIndex": 1
|
||||
},
|
||||
{
|
||||
"id": "(c -- )[0]",
|
||||
"src": "c",
|
||||
"srcArrow": "none",
|
||||
"srcLabel": "",
|
||||
"dst": "c-lifeline-end-955173837",
|
||||
"dstArrow": "none",
|
||||
"dstLabel": "",
|
||||
"opacity": 1,
|
||||
"strokeDash": 6,
|
||||
"strokeWidth": 2,
|
||||
"stroke": "#0D32B2",
|
||||
"label": "",
|
||||
"fontSize": 16,
|
||||
"fontFamily": "DEFAULT",
|
||||
"language": "",
|
||||
"color": "#676C7E",
|
||||
"italic": true,
|
||||
"bold": false,
|
||||
"underline": false,
|
||||
"labelWidth": 0,
|
||||
"labelHeight": 0,
|
||||
"labelPosition": "",
|
||||
"labelPercentage": 0,
|
||||
"route": [
|
||||
{
|
||||
"x": 666.5,
|
||||
"y": 336
|
||||
},
|
||||
{
|
||||
"x": 666.5,
|
||||
"y": 1246
|
||||
}
|
||||
],
|
||||
"animated": false,
|
||||
"tooltip": "",
|
||||
"icon": null,
|
||||
"zIndex": 1
|
||||
},
|
||||
{
|
||||
"id": "(d -- )[0]",
|
||||
"src": "d",
|
||||
"srcArrow": "none",
|
||||
"srcLabel": "",
|
||||
"dst": "d-lifeline-end-2106864010",
|
||||
"dstArrow": "none",
|
||||
"dstLabel": "",
|
||||
"opacity": 1,
|
||||
"strokeDash": 6,
|
||||
"strokeWidth": 2,
|
||||
"stroke": "#0D32B2",
|
||||
"label": "",
|
||||
"fontSize": 16,
|
||||
"fontFamily": "DEFAULT",
|
||||
"language": "",
|
||||
"color": "#676C7E",
|
||||
"italic": true,
|
||||
"bold": false,
|
||||
"underline": false,
|
||||
"labelWidth": 0,
|
||||
"labelHeight": 0,
|
||||
"labelPosition": "",
|
||||
"labelPercentage": 0,
|
||||
"route": [
|
||||
{
|
||||
"x": 1089,
|
||||
"y": 336
|
||||
},
|
||||
{
|
||||
"x": 1089,
|
||||
"y": 1246
|
||||
}
|
||||
],
|
||||
"animated": false,
|
||||
"tooltip": "",
|
||||
"icon": null,
|
||||
"zIndex": 1
|
||||
},
|
||||
{
|
||||
"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": 1550,
|
||||
"y": 336
|
||||
},
|
||||
{
|
||||
"x": 1550,
|
||||
"y": 1246
|
||||
}
|
||||
],
|
||||
"animated": false,
|
||||
"tooltip": "",
|
||||
"icon": null,
|
||||
"zIndex": 1
|
||||
},
|
||||
{
|
||||
"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": 1799.5,
|
||||
"y": 336
|
||||
},
|
||||
{
|
||||
"x": 1799.5,
|
||||
"y": 1246
|
||||
}
|
||||
],
|
||||
"animated": false,
|
||||
"tooltip": "",
|
||||
"icon": null,
|
||||
"zIndex": 1
|
||||
},
|
||||
{
|
||||
"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": 2211.5,
|
||||
"y": 336
|
||||
},
|
||||
{
|
||||
"x": 2211.5,
|
||||
"y": 1246
|
||||
}
|
||||
],
|
||||
"animated": false,
|
||||
"tooltip": "",
|
||||
"icon": null,
|
||||
"zIndex": 1
|
||||
}
|
||||
]
|
||||
}
|
||||
42
e2etests/testdata/stable/sequence_diagram_actor_distance/elk/sketch.exp.svg
vendored
Normal file
|
After Width: | Height: | Size: 474 KiB |
188
e2etests/testdata/stable/sequence_diagram_all_shapes/dagre/board.exp.json
generated
vendored
|
|
@ -45,7 +45,7 @@
|
|||
"id": "b",
|
||||
"type": "oval",
|
||||
"pos": {
|
||||
"x": 220,
|
||||
"x": 257,
|
||||
"y": 90
|
||||
},
|
||||
"width": 150,
|
||||
|
|
@ -85,7 +85,7 @@
|
|||
"id": "c",
|
||||
"type": "class",
|
||||
"pos": {
|
||||
"x": 440,
|
||||
"x": 462,
|
||||
"y": 50
|
||||
},
|
||||
"width": 241,
|
||||
|
|
@ -136,7 +136,7 @@
|
|||
"id": "d",
|
||||
"type": "cloud",
|
||||
"pos": {
|
||||
"x": 751,
|
||||
"x": 753,
|
||||
"y": 108
|
||||
},
|
||||
"width": 174,
|
||||
|
|
@ -176,7 +176,7 @@
|
|||
"id": "e",
|
||||
"type": "code",
|
||||
"pos": {
|
||||
"x": 995,
|
||||
"x": 992,
|
||||
"y": 164
|
||||
},
|
||||
"width": 196,
|
||||
|
|
@ -216,7 +216,7 @@
|
|||
"id": "f",
|
||||
"type": "cylinder",
|
||||
"pos": {
|
||||
"x": 1261,
|
||||
"x": 1265,
|
||||
"y": 108
|
||||
},
|
||||
"width": 150,
|
||||
|
|
@ -256,7 +256,7 @@
|
|||
"id": "g",
|
||||
"type": "diamond",
|
||||
"pos": {
|
||||
"x": 1481,
|
||||
"x": 1515,
|
||||
"y": 108
|
||||
},
|
||||
"width": 150,
|
||||
|
|
@ -296,7 +296,7 @@
|
|||
"id": "h",
|
||||
"type": "document",
|
||||
"pos": {
|
||||
"x": 1701,
|
||||
"x": 1765,
|
||||
"y": 108
|
||||
},
|
||||
"width": 150,
|
||||
|
|
@ -336,7 +336,7 @@
|
|||
"id": "i",
|
||||
"type": "hexagon",
|
||||
"pos": {
|
||||
"x": 1921,
|
||||
"x": 2001,
|
||||
"y": 108
|
||||
},
|
||||
"width": 177,
|
||||
|
|
@ -376,7 +376,7 @@
|
|||
"id": "j",
|
||||
"type": "image",
|
||||
"pos": {
|
||||
"x": 2168,
|
||||
"x": 2265,
|
||||
"y": 85
|
||||
},
|
||||
"width": 150,
|
||||
|
|
@ -427,7 +427,7 @@
|
|||
"id": "k",
|
||||
"type": "oval",
|
||||
"pos": {
|
||||
"x": 2388,
|
||||
"x": 2515,
|
||||
"y": 108
|
||||
},
|
||||
"width": 150,
|
||||
|
|
@ -467,7 +467,7 @@
|
|||
"id": "l",
|
||||
"type": "package",
|
||||
"pos": {
|
||||
"x": 2608,
|
||||
"x": 2765,
|
||||
"y": 108
|
||||
},
|
||||
"width": 150,
|
||||
|
|
@ -507,7 +507,7 @@
|
|||
"id": "m",
|
||||
"type": "page",
|
||||
"pos": {
|
||||
"x": 2828,
|
||||
"x": 3003,
|
||||
"y": 108
|
||||
},
|
||||
"width": 173,
|
||||
|
|
@ -547,7 +547,7 @@
|
|||
"id": "n",
|
||||
"type": "parallelogram",
|
||||
"pos": {
|
||||
"x": 3071,
|
||||
"x": 3251,
|
||||
"y": 92
|
||||
},
|
||||
"width": 177,
|
||||
|
|
@ -587,7 +587,7 @@
|
|||
"id": "o",
|
||||
"type": "person",
|
||||
"pos": {
|
||||
"x": 3318,
|
||||
"x": 3514,
|
||||
"y": 55
|
||||
},
|
||||
"width": 151,
|
||||
|
|
@ -627,7 +627,7 @@
|
|||
"id": "p",
|
||||
"type": "queue",
|
||||
"pos": {
|
||||
"x": 3539,
|
||||
"x": 3760,
|
||||
"y": 108
|
||||
},
|
||||
"width": 159,
|
||||
|
|
@ -667,7 +667,7 @@
|
|||
"id": "q",
|
||||
"type": "rectangle",
|
||||
"pos": {
|
||||
"x": 3768,
|
||||
"x": 4008,
|
||||
"y": 71
|
||||
},
|
||||
"width": 163,
|
||||
|
|
@ -707,7 +707,7 @@
|
|||
"id": "r",
|
||||
"type": "step",
|
||||
"pos": {
|
||||
"x": 4001,
|
||||
"x": 4236,
|
||||
"y": 108
|
||||
},
|
||||
"width": 207,
|
||||
|
|
@ -747,7 +747,7 @@
|
|||
"id": "s",
|
||||
"type": "stored_data",
|
||||
"pos": {
|
||||
"x": 4278,
|
||||
"x": 4515,
|
||||
"y": 108
|
||||
},
|
||||
"width": 150,
|
||||
|
|
@ -787,7 +787,7 @@
|
|||
"id": "t",
|
||||
"type": "sql_table",
|
||||
"pos": {
|
||||
"x": 4498,
|
||||
"x": 4735,
|
||||
"y": 126
|
||||
},
|
||||
"width": 210,
|
||||
|
|
@ -868,7 +868,7 @@
|
|||
"y": 364
|
||||
},
|
||||
{
|
||||
"x": 295,
|
||||
"x": 332,
|
||||
"y": 364
|
||||
}
|
||||
],
|
||||
|
|
@ -903,11 +903,11 @@
|
|||
"labelPercentage": 0,
|
||||
"route": [
|
||||
{
|
||||
"x": 295,
|
||||
"x": 332,
|
||||
"y": 494
|
||||
},
|
||||
{
|
||||
"x": 560.5,
|
||||
"x": 582.5,
|
||||
"y": 494
|
||||
}
|
||||
],
|
||||
|
|
@ -942,11 +942,11 @@
|
|||
"labelPercentage": 0,
|
||||
"route": [
|
||||
{
|
||||
"x": 560.5,
|
||||
"x": 582.5,
|
||||
"y": 624
|
||||
},
|
||||
{
|
||||
"x": 838,
|
||||
"x": 840,
|
||||
"y": 624
|
||||
}
|
||||
],
|
||||
|
|
@ -981,11 +981,11 @@
|
|||
"labelPercentage": 0,
|
||||
"route": [
|
||||
{
|
||||
"x": 838,
|
||||
"x": 840,
|
||||
"y": 754
|
||||
},
|
||||
{
|
||||
"x": 1093,
|
||||
"x": 1090,
|
||||
"y": 754
|
||||
}
|
||||
],
|
||||
|
|
@ -1020,11 +1020,11 @@
|
|||
"labelPercentage": 0,
|
||||
"route": [
|
||||
{
|
||||
"x": 1093,
|
||||
"x": 1090,
|
||||
"y": 884
|
||||
},
|
||||
{
|
||||
"x": 1336,
|
||||
"x": 1340,
|
||||
"y": 884
|
||||
}
|
||||
],
|
||||
|
|
@ -1059,11 +1059,11 @@
|
|||
"labelPercentage": 0,
|
||||
"route": [
|
||||
{
|
||||
"x": 1336,
|
||||
"x": 1340,
|
||||
"y": 1014
|
||||
},
|
||||
{
|
||||
"x": 1556,
|
||||
"x": 1590,
|
||||
"y": 1014
|
||||
}
|
||||
],
|
||||
|
|
@ -1098,11 +1098,11 @@
|
|||
"labelPercentage": 0,
|
||||
"route": [
|
||||
{
|
||||
"x": 1556,
|
||||
"x": 1590,
|
||||
"y": 1144
|
||||
},
|
||||
{
|
||||
"x": 1776,
|
||||
"x": 1840,
|
||||
"y": 1144
|
||||
}
|
||||
],
|
||||
|
|
@ -1137,11 +1137,11 @@
|
|||
"labelPercentage": 0,
|
||||
"route": [
|
||||
{
|
||||
"x": 1776,
|
||||
"x": 1840,
|
||||
"y": 1274
|
||||
},
|
||||
{
|
||||
"x": 2009.5,
|
||||
"x": 2089.5,
|
||||
"y": 1274
|
||||
}
|
||||
],
|
||||
|
|
@ -1176,11 +1176,11 @@
|
|||
"labelPercentage": 0,
|
||||
"route": [
|
||||
{
|
||||
"x": 2009.5,
|
||||
"x": 2089.5,
|
||||
"y": 1404
|
||||
},
|
||||
{
|
||||
"x": 2243,
|
||||
"x": 2340,
|
||||
"y": 1404
|
||||
}
|
||||
],
|
||||
|
|
@ -1215,11 +1215,11 @@
|
|||
"labelPercentage": 0,
|
||||
"route": [
|
||||
{
|
||||
"x": 2243,
|
||||
"x": 2340,
|
||||
"y": 1534
|
||||
},
|
||||
{
|
||||
"x": 2463,
|
||||
"x": 2590,
|
||||
"y": 1534
|
||||
}
|
||||
],
|
||||
|
|
@ -1254,11 +1254,11 @@
|
|||
"labelPercentage": 0,
|
||||
"route": [
|
||||
{
|
||||
"x": 2463,
|
||||
"x": 2590,
|
||||
"y": 1664
|
||||
},
|
||||
{
|
||||
"x": 2683,
|
||||
"x": 2840,
|
||||
"y": 1664
|
||||
}
|
||||
],
|
||||
|
|
@ -1293,11 +1293,11 @@
|
|||
"labelPercentage": 0,
|
||||
"route": [
|
||||
{
|
||||
"x": 2683,
|
||||
"x": 2840,
|
||||
"y": 1794
|
||||
},
|
||||
{
|
||||
"x": 2914.5,
|
||||
"x": 3089.5,
|
||||
"y": 1794
|
||||
}
|
||||
],
|
||||
|
|
@ -1332,11 +1332,11 @@
|
|||
"labelPercentage": 0,
|
||||
"route": [
|
||||
{
|
||||
"x": 2914.5,
|
||||
"x": 3089.5,
|
||||
"y": 1924
|
||||
},
|
||||
{
|
||||
"x": 3159.5,
|
||||
"x": 3339.5,
|
||||
"y": 1924
|
||||
}
|
||||
],
|
||||
|
|
@ -1371,11 +1371,11 @@
|
|||
"labelPercentage": 0,
|
||||
"route": [
|
||||
{
|
||||
"x": 3159.5,
|
||||
"x": 3339.5,
|
||||
"y": 2054
|
||||
},
|
||||
{
|
||||
"x": 3393.5,
|
||||
"x": 3589.5,
|
||||
"y": 2054
|
||||
}
|
||||
],
|
||||
|
|
@ -1410,11 +1410,11 @@
|
|||
"labelPercentage": 0,
|
||||
"route": [
|
||||
{
|
||||
"x": 3393.5,
|
||||
"x": 3589.5,
|
||||
"y": 2184
|
||||
},
|
||||
{
|
||||
"x": 3618.5,
|
||||
"x": 3839.5,
|
||||
"y": 2184
|
||||
}
|
||||
],
|
||||
|
|
@ -1449,11 +1449,11 @@
|
|||
"labelPercentage": 0,
|
||||
"route": [
|
||||
{
|
||||
"x": 3618.5,
|
||||
"x": 3839.5,
|
||||
"y": 2314
|
||||
},
|
||||
{
|
||||
"x": 3849.5,
|
||||
"x": 4089.5,
|
||||
"y": 2314
|
||||
}
|
||||
],
|
||||
|
|
@ -1488,11 +1488,11 @@
|
|||
"labelPercentage": 0,
|
||||
"route": [
|
||||
{
|
||||
"x": 3849.5,
|
||||
"x": 4089.5,
|
||||
"y": 2444
|
||||
},
|
||||
{
|
||||
"x": 4104.5,
|
||||
"x": 4339.5,
|
||||
"y": 2444
|
||||
}
|
||||
],
|
||||
|
|
@ -1527,11 +1527,11 @@
|
|||
"labelPercentage": 0,
|
||||
"route": [
|
||||
{
|
||||
"x": 4104.5,
|
||||
"x": 4339.5,
|
||||
"y": 2574
|
||||
},
|
||||
{
|
||||
"x": 4353,
|
||||
"x": 4590,
|
||||
"y": 2574
|
||||
}
|
||||
],
|
||||
|
|
@ -1566,11 +1566,11 @@
|
|||
"labelPercentage": 0,
|
||||
"route": [
|
||||
{
|
||||
"x": 4353,
|
||||
"x": 4590,
|
||||
"y": 2704
|
||||
},
|
||||
{
|
||||
"x": 4603,
|
||||
"x": 4840,
|
||||
"y": 2704
|
||||
}
|
||||
],
|
||||
|
|
@ -1644,11 +1644,11 @@
|
|||
"labelPercentage": 0,
|
||||
"route": [
|
||||
{
|
||||
"x": 295,
|
||||
"x": 332,
|
||||
"y": 234
|
||||
},
|
||||
{
|
||||
"x": 295,
|
||||
"x": 332,
|
||||
"y": 2834
|
||||
}
|
||||
],
|
||||
|
|
@ -1683,11 +1683,11 @@
|
|||
"labelPercentage": 0,
|
||||
"route": [
|
||||
{
|
||||
"x": 560.5,
|
||||
"x": 582.5,
|
||||
"y": 234
|
||||
},
|
||||
{
|
||||
"x": 560.5,
|
||||
"x": 582.5,
|
||||
"y": 2834
|
||||
}
|
||||
],
|
||||
|
|
@ -1722,11 +1722,11 @@
|
|||
"labelPercentage": 0,
|
||||
"route": [
|
||||
{
|
||||
"x": 838,
|
||||
"x": 840,
|
||||
"y": 234
|
||||
},
|
||||
{
|
||||
"x": 838,
|
||||
"x": 840,
|
||||
"y": 2834
|
||||
}
|
||||
],
|
||||
|
|
@ -1761,11 +1761,11 @@
|
|||
"labelPercentage": 0,
|
||||
"route": [
|
||||
{
|
||||
"x": 1093,
|
||||
"x": 1090,
|
||||
"y": 234
|
||||
},
|
||||
{
|
||||
"x": 1093,
|
||||
"x": 1090,
|
||||
"y": 2834
|
||||
}
|
||||
],
|
||||
|
|
@ -1800,11 +1800,11 @@
|
|||
"labelPercentage": 0,
|
||||
"route": [
|
||||
{
|
||||
"x": 1336,
|
||||
"x": 1340,
|
||||
"y": 234
|
||||
},
|
||||
{
|
||||
"x": 1336,
|
||||
"x": 1340,
|
||||
"y": 2834
|
||||
}
|
||||
],
|
||||
|
|
@ -1839,11 +1839,11 @@
|
|||
"labelPercentage": 0,
|
||||
"route": [
|
||||
{
|
||||
"x": 1556,
|
||||
"x": 1590,
|
||||
"y": 234
|
||||
},
|
||||
{
|
||||
"x": 1556,
|
||||
"x": 1590,
|
||||
"y": 2834
|
||||
}
|
||||
],
|
||||
|
|
@ -1878,11 +1878,11 @@
|
|||
"labelPercentage": 0,
|
||||
"route": [
|
||||
{
|
||||
"x": 1776,
|
||||
"x": 1840,
|
||||
"y": 234
|
||||
},
|
||||
{
|
||||
"x": 1776,
|
||||
"x": 1840,
|
||||
"y": 2834
|
||||
}
|
||||
],
|
||||
|
|
@ -1917,11 +1917,11 @@
|
|||
"labelPercentage": 0,
|
||||
"route": [
|
||||
{
|
||||
"x": 2009.5,
|
||||
"x": 2089.5,
|
||||
"y": 234
|
||||
},
|
||||
{
|
||||
"x": 2009.5,
|
||||
"x": 2089.5,
|
||||
"y": 2834
|
||||
}
|
||||
],
|
||||
|
|
@ -1956,11 +1956,11 @@
|
|||
"labelPercentage": 0,
|
||||
"route": [
|
||||
{
|
||||
"x": 2243,
|
||||
"x": 2340,
|
||||
"y": 239
|
||||
},
|
||||
{
|
||||
"x": 2243,
|
||||
"x": 2340,
|
||||
"y": 2834
|
||||
}
|
||||
],
|
||||
|
|
@ -1995,11 +1995,11 @@
|
|||
"labelPercentage": 0,
|
||||
"route": [
|
||||
{
|
||||
"x": 2463,
|
||||
"x": 2590,
|
||||
"y": 234
|
||||
},
|
||||
{
|
||||
"x": 2463,
|
||||
"x": 2590,
|
||||
"y": 2834
|
||||
}
|
||||
],
|
||||
|
|
@ -2034,11 +2034,11 @@
|
|||
"labelPercentage": 0,
|
||||
"route": [
|
||||
{
|
||||
"x": 2683,
|
||||
"x": 2840,
|
||||
"y": 234
|
||||
},
|
||||
{
|
||||
"x": 2683,
|
||||
"x": 2840,
|
||||
"y": 2834
|
||||
}
|
||||
],
|
||||
|
|
@ -2073,11 +2073,11 @@
|
|||
"labelPercentage": 0,
|
||||
"route": [
|
||||
{
|
||||
"x": 2914.5,
|
||||
"x": 3089.5,
|
||||
"y": 234
|
||||
},
|
||||
{
|
||||
"x": 2914.5,
|
||||
"x": 3089.5,
|
||||
"y": 2834
|
||||
}
|
||||
],
|
||||
|
|
@ -2112,11 +2112,11 @@
|
|||
"labelPercentage": 0,
|
||||
"route": [
|
||||
{
|
||||
"x": 3159.5,
|
||||
"x": 3339.5,
|
||||
"y": 234
|
||||
},
|
||||
{
|
||||
"x": 3159.5,
|
||||
"x": 3339.5,
|
||||
"y": 2834
|
||||
}
|
||||
],
|
||||
|
|
@ -2151,11 +2151,11 @@
|
|||
"labelPercentage": 0,
|
||||
"route": [
|
||||
{
|
||||
"x": 3393.5,
|
||||
"x": 3589.5,
|
||||
"y": 239
|
||||
},
|
||||
{
|
||||
"x": 3393.5,
|
||||
"x": 3589.5,
|
||||
"y": 2834
|
||||
}
|
||||
],
|
||||
|
|
@ -2190,11 +2190,11 @@
|
|||
"labelPercentage": 0,
|
||||
"route": [
|
||||
{
|
||||
"x": 3618.5,
|
||||
"x": 3839.5,
|
||||
"y": 234
|
||||
},
|
||||
{
|
||||
"x": 3618.5,
|
||||
"x": 3839.5,
|
||||
"y": 2834
|
||||
}
|
||||
],
|
||||
|
|
@ -2229,11 +2229,11 @@
|
|||
"labelPercentage": 0,
|
||||
"route": [
|
||||
{
|
||||
"x": 3849.5,
|
||||
"x": 4089.5,
|
||||
"y": 234
|
||||
},
|
||||
{
|
||||
"x": 3849.5,
|
||||
"x": 4089.5,
|
||||
"y": 2834
|
||||
}
|
||||
],
|
||||
|
|
@ -2268,11 +2268,11 @@
|
|||
"labelPercentage": 0,
|
||||
"route": [
|
||||
{
|
||||
"x": 4104.5,
|
||||
"x": 4339.5,
|
||||
"y": 234
|
||||
},
|
||||
{
|
||||
"x": 4104.5,
|
||||
"x": 4339.5,
|
||||
"y": 2834
|
||||
}
|
||||
],
|
||||
|
|
@ -2307,11 +2307,11 @@
|
|||
"labelPercentage": 0,
|
||||
"route": [
|
||||
{
|
||||
"x": 4353,
|
||||
"x": 4590,
|
||||
"y": 234
|
||||
},
|
||||
{
|
||||
"x": 4353,
|
||||
"x": 4590,
|
||||
"y": 2834
|
||||
}
|
||||
],
|
||||
|
|
@ -2346,11 +2346,11 @@
|
|||
"labelPercentage": 0,
|
||||
"route": [
|
||||
{
|
||||
"x": 4603,
|
||||
"x": 4840,
|
||||
"y": 234
|
||||
},
|
||||
{
|
||||
"x": 4603,
|
||||
"x": 4840,
|
||||
"y": 2834
|
||||
}
|
||||
],
|
||||
|
|
|
|||
|
Before Width: | Height: | Size: 669 KiB After Width: | Height: | Size: 669 KiB |
188
e2etests/testdata/stable/sequence_diagram_all_shapes/elk/board.exp.json
generated
vendored
|
|
@ -45,7 +45,7 @@
|
|||
"id": "b",
|
||||
"type": "oval",
|
||||
"pos": {
|
||||
"x": 220,
|
||||
"x": 257,
|
||||
"y": 90
|
||||
},
|
||||
"width": 150,
|
||||
|
|
@ -85,7 +85,7 @@
|
|||
"id": "c",
|
||||
"type": "class",
|
||||
"pos": {
|
||||
"x": 440,
|
||||
"x": 462,
|
||||
"y": 50
|
||||
},
|
||||
"width": 241,
|
||||
|
|
@ -136,7 +136,7 @@
|
|||
"id": "d",
|
||||
"type": "cloud",
|
||||
"pos": {
|
||||
"x": 751,
|
||||
"x": 753,
|
||||
"y": 108
|
||||
},
|
||||
"width": 174,
|
||||
|
|
@ -176,7 +176,7 @@
|
|||
"id": "e",
|
||||
"type": "code",
|
||||
"pos": {
|
||||
"x": 995,
|
||||
"x": 992,
|
||||
"y": 164
|
||||
},
|
||||
"width": 196,
|
||||
|
|
@ -216,7 +216,7 @@
|
|||
"id": "f",
|
||||
"type": "cylinder",
|
||||
"pos": {
|
||||
"x": 1261,
|
||||
"x": 1265,
|
||||
"y": 108
|
||||
},
|
||||
"width": 150,
|
||||
|
|
@ -256,7 +256,7 @@
|
|||
"id": "g",
|
||||
"type": "diamond",
|
||||
"pos": {
|
||||
"x": 1481,
|
||||
"x": 1515,
|
||||
"y": 108
|
||||
},
|
||||
"width": 150,
|
||||
|
|
@ -296,7 +296,7 @@
|
|||
"id": "h",
|
||||
"type": "document",
|
||||
"pos": {
|
||||
"x": 1701,
|
||||
"x": 1765,
|
||||
"y": 108
|
||||
},
|
||||
"width": 150,
|
||||
|
|
@ -336,7 +336,7 @@
|
|||
"id": "i",
|
||||
"type": "hexagon",
|
||||
"pos": {
|
||||
"x": 1921,
|
||||
"x": 2001,
|
||||
"y": 108
|
||||
},
|
||||
"width": 177,
|
||||
|
|
@ -376,7 +376,7 @@
|
|||
"id": "j",
|
||||
"type": "image",
|
||||
"pos": {
|
||||
"x": 2168,
|
||||
"x": 2265,
|
||||
"y": 85
|
||||
},
|
||||
"width": 150,
|
||||
|
|
@ -427,7 +427,7 @@
|
|||
"id": "k",
|
||||
"type": "oval",
|
||||
"pos": {
|
||||
"x": 2388,
|
||||
"x": 2515,
|
||||
"y": 108
|
||||
},
|
||||
"width": 150,
|
||||
|
|
@ -467,7 +467,7 @@
|
|||
"id": "l",
|
||||
"type": "package",
|
||||
"pos": {
|
||||
"x": 2608,
|
||||
"x": 2765,
|
||||
"y": 108
|
||||
},
|
||||
"width": 150,
|
||||
|
|
@ -507,7 +507,7 @@
|
|||
"id": "m",
|
||||
"type": "page",
|
||||
"pos": {
|
||||
"x": 2828,
|
||||
"x": 3003,
|
||||
"y": 108
|
||||
},
|
||||
"width": 173,
|
||||
|
|
@ -547,7 +547,7 @@
|
|||
"id": "n",
|
||||
"type": "parallelogram",
|
||||
"pos": {
|
||||
"x": 3071,
|
||||
"x": 3251,
|
||||
"y": 92
|
||||
},
|
||||
"width": 177,
|
||||
|
|
@ -587,7 +587,7 @@
|
|||
"id": "o",
|
||||
"type": "person",
|
||||
"pos": {
|
||||
"x": 3318,
|
||||
"x": 3514,
|
||||
"y": 55
|
||||
},
|
||||
"width": 151,
|
||||
|
|
@ -627,7 +627,7 @@
|
|||
"id": "p",
|
||||
"type": "queue",
|
||||
"pos": {
|
||||
"x": 3539,
|
||||
"x": 3760,
|
||||
"y": 108
|
||||
},
|
||||
"width": 159,
|
||||
|
|
@ -667,7 +667,7 @@
|
|||
"id": "q",
|
||||
"type": "rectangle",
|
||||
"pos": {
|
||||
"x": 3768,
|
||||
"x": 4008,
|
||||
"y": 71
|
||||
},
|
||||
"width": 163,
|
||||
|
|
@ -707,7 +707,7 @@
|
|||
"id": "r",
|
||||
"type": "step",
|
||||
"pos": {
|
||||
"x": 4001,
|
||||
"x": 4236,
|
||||
"y": 108
|
||||
},
|
||||
"width": 207,
|
||||
|
|
@ -747,7 +747,7 @@
|
|||
"id": "s",
|
||||
"type": "stored_data",
|
||||
"pos": {
|
||||
"x": 4278,
|
||||
"x": 4515,
|
||||
"y": 108
|
||||
},
|
||||
"width": 150,
|
||||
|
|
@ -787,7 +787,7 @@
|
|||
"id": "t",
|
||||
"type": "sql_table",
|
||||
"pos": {
|
||||
"x": 4498,
|
||||
"x": 4735,
|
||||
"y": 126
|
||||
},
|
||||
"width": 210,
|
||||
|
|
@ -868,7 +868,7 @@
|
|||
"y": 364
|
||||
},
|
||||
{
|
||||
"x": 295,
|
||||
"x": 332,
|
||||
"y": 364
|
||||
}
|
||||
],
|
||||
|
|
@ -903,11 +903,11 @@
|
|||
"labelPercentage": 0,
|
||||
"route": [
|
||||
{
|
||||
"x": 295,
|
||||
"x": 332,
|
||||
"y": 494
|
||||
},
|
||||
{
|
||||
"x": 560.5,
|
||||
"x": 582.5,
|
||||
"y": 494
|
||||
}
|
||||
],
|
||||
|
|
@ -942,11 +942,11 @@
|
|||
"labelPercentage": 0,
|
||||
"route": [
|
||||
{
|
||||
"x": 560.5,
|
||||
"x": 582.5,
|
||||
"y": 624
|
||||
},
|
||||
{
|
||||
"x": 838,
|
||||
"x": 840,
|
||||
"y": 624
|
||||
}
|
||||
],
|
||||
|
|
@ -981,11 +981,11 @@
|
|||
"labelPercentage": 0,
|
||||
"route": [
|
||||
{
|
||||
"x": 838,
|
||||
"x": 840,
|
||||
"y": 754
|
||||
},
|
||||
{
|
||||
"x": 1093,
|
||||
"x": 1090,
|
||||
"y": 754
|
||||
}
|
||||
],
|
||||
|
|
@ -1020,11 +1020,11 @@
|
|||
"labelPercentage": 0,
|
||||
"route": [
|
||||
{
|
||||
"x": 1093,
|
||||
"x": 1090,
|
||||
"y": 884
|
||||
},
|
||||
{
|
||||
"x": 1336,
|
||||
"x": 1340,
|
||||
"y": 884
|
||||
}
|
||||
],
|
||||
|
|
@ -1059,11 +1059,11 @@
|
|||
"labelPercentage": 0,
|
||||
"route": [
|
||||
{
|
||||
"x": 1336,
|
||||
"x": 1340,
|
||||
"y": 1014
|
||||
},
|
||||
{
|
||||
"x": 1556,
|
||||
"x": 1590,
|
||||
"y": 1014
|
||||
}
|
||||
],
|
||||
|
|
@ -1098,11 +1098,11 @@
|
|||
"labelPercentage": 0,
|
||||
"route": [
|
||||
{
|
||||
"x": 1556,
|
||||
"x": 1590,
|
||||
"y": 1144
|
||||
},
|
||||
{
|
||||
"x": 1776,
|
||||
"x": 1840,
|
||||
"y": 1144
|
||||
}
|
||||
],
|
||||
|
|
@ -1137,11 +1137,11 @@
|
|||
"labelPercentage": 0,
|
||||
"route": [
|
||||
{
|
||||
"x": 1776,
|
||||
"x": 1840,
|
||||
"y": 1274
|
||||
},
|
||||
{
|
||||
"x": 2009.5,
|
||||
"x": 2089.5,
|
||||
"y": 1274
|
||||
}
|
||||
],
|
||||
|
|
@ -1176,11 +1176,11 @@
|
|||
"labelPercentage": 0,
|
||||
"route": [
|
||||
{
|
||||
"x": 2009.5,
|
||||
"x": 2089.5,
|
||||
"y": 1404
|
||||
},
|
||||
{
|
||||
"x": 2243,
|
||||
"x": 2340,
|
||||
"y": 1404
|
||||
}
|
||||
],
|
||||
|
|
@ -1215,11 +1215,11 @@
|
|||
"labelPercentage": 0,
|
||||
"route": [
|
||||
{
|
||||
"x": 2243,
|
||||
"x": 2340,
|
||||
"y": 1534
|
||||
},
|
||||
{
|
||||
"x": 2463,
|
||||
"x": 2590,
|
||||
"y": 1534
|
||||
}
|
||||
],
|
||||
|
|
@ -1254,11 +1254,11 @@
|
|||
"labelPercentage": 0,
|
||||
"route": [
|
||||
{
|
||||
"x": 2463,
|
||||
"x": 2590,
|
||||
"y": 1664
|
||||
},
|
||||
{
|
||||
"x": 2683,
|
||||
"x": 2840,
|
||||
"y": 1664
|
||||
}
|
||||
],
|
||||
|
|
@ -1293,11 +1293,11 @@
|
|||
"labelPercentage": 0,
|
||||
"route": [
|
||||
{
|
||||
"x": 2683,
|
||||
"x": 2840,
|
||||
"y": 1794
|
||||
},
|
||||
{
|
||||
"x": 2914.5,
|
||||
"x": 3089.5,
|
||||
"y": 1794
|
||||
}
|
||||
],
|
||||
|
|
@ -1332,11 +1332,11 @@
|
|||
"labelPercentage": 0,
|
||||
"route": [
|
||||
{
|
||||
"x": 2914.5,
|
||||
"x": 3089.5,
|
||||
"y": 1924
|
||||
},
|
||||
{
|
||||
"x": 3159.5,
|
||||
"x": 3339.5,
|
||||
"y": 1924
|
||||
}
|
||||
],
|
||||
|
|
@ -1371,11 +1371,11 @@
|
|||
"labelPercentage": 0,
|
||||
"route": [
|
||||
{
|
||||
"x": 3159.5,
|
||||
"x": 3339.5,
|
||||
"y": 2054
|
||||
},
|
||||
{
|
||||
"x": 3393.5,
|
||||
"x": 3589.5,
|
||||
"y": 2054
|
||||
}
|
||||
],
|
||||
|
|
@ -1410,11 +1410,11 @@
|
|||
"labelPercentage": 0,
|
||||
"route": [
|
||||
{
|
||||
"x": 3393.5,
|
||||
"x": 3589.5,
|
||||
"y": 2184
|
||||
},
|
||||
{
|
||||
"x": 3618.5,
|
||||
"x": 3839.5,
|
||||
"y": 2184
|
||||
}
|
||||
],
|
||||
|
|
@ -1449,11 +1449,11 @@
|
|||
"labelPercentage": 0,
|
||||
"route": [
|
||||
{
|
||||
"x": 3618.5,
|
||||
"x": 3839.5,
|
||||
"y": 2314
|
||||
},
|
||||
{
|
||||
"x": 3849.5,
|
||||
"x": 4089.5,
|
||||
"y": 2314
|
||||
}
|
||||
],
|
||||
|
|
@ -1488,11 +1488,11 @@
|
|||
"labelPercentage": 0,
|
||||
"route": [
|
||||
{
|
||||
"x": 3849.5,
|
||||
"x": 4089.5,
|
||||
"y": 2444
|
||||
},
|
||||
{
|
||||
"x": 4104.5,
|
||||
"x": 4339.5,
|
||||
"y": 2444
|
||||
}
|
||||
],
|
||||
|
|
@ -1527,11 +1527,11 @@
|
|||
"labelPercentage": 0,
|
||||
"route": [
|
||||
{
|
||||
"x": 4104.5,
|
||||
"x": 4339.5,
|
||||
"y": 2574
|
||||
},
|
||||
{
|
||||
"x": 4353,
|
||||
"x": 4590,
|
||||
"y": 2574
|
||||
}
|
||||
],
|
||||
|
|
@ -1566,11 +1566,11 @@
|
|||
"labelPercentage": 0,
|
||||
"route": [
|
||||
{
|
||||
"x": 4353,
|
||||
"x": 4590,
|
||||
"y": 2704
|
||||
},
|
||||
{
|
||||
"x": 4603,
|
||||
"x": 4840,
|
||||
"y": 2704
|
||||
}
|
||||
],
|
||||
|
|
@ -1644,11 +1644,11 @@
|
|||
"labelPercentage": 0,
|
||||
"route": [
|
||||
{
|
||||
"x": 295,
|
||||
"x": 332,
|
||||
"y": 234
|
||||
},
|
||||
{
|
||||
"x": 295,
|
||||
"x": 332,
|
||||
"y": 2834
|
||||
}
|
||||
],
|
||||
|
|
@ -1683,11 +1683,11 @@
|
|||
"labelPercentage": 0,
|
||||
"route": [
|
||||
{
|
||||
"x": 560.5,
|
||||
"x": 582.5,
|
||||
"y": 234
|
||||
},
|
||||
{
|
||||
"x": 560.5,
|
||||
"x": 582.5,
|
||||
"y": 2834
|
||||
}
|
||||
],
|
||||
|
|
@ -1722,11 +1722,11 @@
|
|||
"labelPercentage": 0,
|
||||
"route": [
|
||||
{
|
||||
"x": 838,
|
||||
"x": 840,
|
||||
"y": 234
|
||||
},
|
||||
{
|
||||
"x": 838,
|
||||
"x": 840,
|
||||
"y": 2834
|
||||
}
|
||||
],
|
||||
|
|
@ -1761,11 +1761,11 @@
|
|||
"labelPercentage": 0,
|
||||
"route": [
|
||||
{
|
||||
"x": 1093,
|
||||
"x": 1090,
|
||||
"y": 234
|
||||
},
|
||||
{
|
||||
"x": 1093,
|
||||
"x": 1090,
|
||||
"y": 2834
|
||||
}
|
||||
],
|
||||
|
|
@ -1800,11 +1800,11 @@
|
|||
"labelPercentage": 0,
|
||||
"route": [
|
||||
{
|
||||
"x": 1336,
|
||||
"x": 1340,
|
||||
"y": 234
|
||||
},
|
||||
{
|
||||
"x": 1336,
|
||||
"x": 1340,
|
||||
"y": 2834
|
||||
}
|
||||
],
|
||||
|
|
@ -1839,11 +1839,11 @@
|
|||
"labelPercentage": 0,
|
||||
"route": [
|
||||
{
|
||||
"x": 1556,
|
||||
"x": 1590,
|
||||
"y": 234
|
||||
},
|
||||
{
|
||||
"x": 1556,
|
||||
"x": 1590,
|
||||
"y": 2834
|
||||
}
|
||||
],
|
||||
|
|
@ -1878,11 +1878,11 @@
|
|||
"labelPercentage": 0,
|
||||
"route": [
|
||||
{
|
||||
"x": 1776,
|
||||
"x": 1840,
|
||||
"y": 234
|
||||
},
|
||||
{
|
||||
"x": 1776,
|
||||
"x": 1840,
|
||||
"y": 2834
|
||||
}
|
||||
],
|
||||
|
|
@ -1917,11 +1917,11 @@
|
|||
"labelPercentage": 0,
|
||||
"route": [
|
||||
{
|
||||
"x": 2009.5,
|
||||
"x": 2089.5,
|
||||
"y": 234
|
||||
},
|
||||
{
|
||||
"x": 2009.5,
|
||||
"x": 2089.5,
|
||||
"y": 2834
|
||||
}
|
||||
],
|
||||
|
|
@ -1956,11 +1956,11 @@
|
|||
"labelPercentage": 0,
|
||||
"route": [
|
||||
{
|
||||
"x": 2243,
|
||||
"x": 2340,
|
||||
"y": 239
|
||||
},
|
||||
{
|
||||
"x": 2243,
|
||||
"x": 2340,
|
||||
"y": 2834
|
||||
}
|
||||
],
|
||||
|
|
@ -1995,11 +1995,11 @@
|
|||
"labelPercentage": 0,
|
||||
"route": [
|
||||
{
|
||||
"x": 2463,
|
||||
"x": 2590,
|
||||
"y": 234
|
||||
},
|
||||
{
|
||||
"x": 2463,
|
||||
"x": 2590,
|
||||
"y": 2834
|
||||
}
|
||||
],
|
||||
|
|
@ -2034,11 +2034,11 @@
|
|||
"labelPercentage": 0,
|
||||
"route": [
|
||||
{
|
||||
"x": 2683,
|
||||
"x": 2840,
|
||||
"y": 234
|
||||
},
|
||||
{
|
||||
"x": 2683,
|
||||
"x": 2840,
|
||||
"y": 2834
|
||||
}
|
||||
],
|
||||
|
|
@ -2073,11 +2073,11 @@
|
|||
"labelPercentage": 0,
|
||||
"route": [
|
||||
{
|
||||
"x": 2914.5,
|
||||
"x": 3089.5,
|
||||
"y": 234
|
||||
},
|
||||
{
|
||||
"x": 2914.5,
|
||||
"x": 3089.5,
|
||||
"y": 2834
|
||||
}
|
||||
],
|
||||
|
|
@ -2112,11 +2112,11 @@
|
|||
"labelPercentage": 0,
|
||||
"route": [
|
||||
{
|
||||
"x": 3159.5,
|
||||
"x": 3339.5,
|
||||
"y": 234
|
||||
},
|
||||
{
|
||||
"x": 3159.5,
|
||||
"x": 3339.5,
|
||||
"y": 2834
|
||||
}
|
||||
],
|
||||
|
|
@ -2151,11 +2151,11 @@
|
|||
"labelPercentage": 0,
|
||||
"route": [
|
||||
{
|
||||
"x": 3393.5,
|
||||
"x": 3589.5,
|
||||
"y": 239
|
||||
},
|
||||
{
|
||||
"x": 3393.5,
|
||||
"x": 3589.5,
|
||||
"y": 2834
|
||||
}
|
||||
],
|
||||
|
|
@ -2190,11 +2190,11 @@
|
|||
"labelPercentage": 0,
|
||||
"route": [
|
||||
{
|
||||
"x": 3618.5,
|
||||
"x": 3839.5,
|
||||
"y": 234
|
||||
},
|
||||
{
|
||||
"x": 3618.5,
|
||||
"x": 3839.5,
|
||||
"y": 2834
|
||||
}
|
||||
],
|
||||
|
|
@ -2229,11 +2229,11 @@
|
|||
"labelPercentage": 0,
|
||||
"route": [
|
||||
{
|
||||
"x": 3849.5,
|
||||
"x": 4089.5,
|
||||
"y": 234
|
||||
},
|
||||
{
|
||||
"x": 3849.5,
|
||||
"x": 4089.5,
|
||||
"y": 2834
|
||||
}
|
||||
],
|
||||
|
|
@ -2268,11 +2268,11 @@
|
|||
"labelPercentage": 0,
|
||||
"route": [
|
||||
{
|
||||
"x": 4104.5,
|
||||
"x": 4339.5,
|
||||
"y": 234
|
||||
},
|
||||
{
|
||||
"x": 4104.5,
|
||||
"x": 4339.5,
|
||||
"y": 2834
|
||||
}
|
||||
],
|
||||
|
|
@ -2307,11 +2307,11 @@
|
|||
"labelPercentage": 0,
|
||||
"route": [
|
||||
{
|
||||
"x": 4353,
|
||||
"x": 4590,
|
||||
"y": 234
|
||||
},
|
||||
{
|
||||
"x": 4353,
|
||||
"x": 4590,
|
||||
"y": 2834
|
||||
}
|
||||
],
|
||||
|
|
@ -2346,11 +2346,11 @@
|
|||
"labelPercentage": 0,
|
||||
"route": [
|
||||
{
|
||||
"x": 4603,
|
||||
"x": 4840,
|
||||
"y": 234
|
||||
},
|
||||
{
|
||||
"x": 4603,
|
||||
"x": 4840,
|
||||
"y": 2834
|
||||
}
|
||||
],
|
||||
|
|
|
|||
|
Before Width: | Height: | Size: 669 KiB After Width: | Height: | Size: 669 KiB |
80
e2etests/testdata/stable/sequence_diagram_groups/dagre/board.exp.json
generated
vendored
|
|
@ -45,7 +45,7 @@
|
|||
"id": "b",
|
||||
"type": "",
|
||||
"pos": {
|
||||
"x": 220,
|
||||
"x": 250,
|
||||
"y": 50
|
||||
},
|
||||
"width": 150,
|
||||
|
|
@ -85,7 +85,7 @@
|
|||
"id": "c",
|
||||
"type": "",
|
||||
"pos": {
|
||||
"x": 440,
|
||||
"x": 500,
|
||||
"y": 50
|
||||
},
|
||||
"width": 150,
|
||||
|
|
@ -125,7 +125,7 @@
|
|||
"id": "d",
|
||||
"type": "",
|
||||
"pos": {
|
||||
"x": 660,
|
||||
"x": 750,
|
||||
"y": 50
|
||||
},
|
||||
"width": 150,
|
||||
|
|
@ -168,7 +168,7 @@
|
|||
"x": 25,
|
||||
"y": 396
|
||||
},
|
||||
"width": 320,
|
||||
"width": 350,
|
||||
"height": 80,
|
||||
"opacity": 1,
|
||||
"strokeDash": 0,
|
||||
|
|
@ -204,10 +204,10 @@
|
|||
"id": "group 1",
|
||||
"type": "",
|
||||
"pos": {
|
||||
"x": 221,
|
||||
"x": 251,
|
||||
"y": 526
|
||||
},
|
||||
"width": 368,
|
||||
"width": 398,
|
||||
"height": 730,
|
||||
"opacity": 1,
|
||||
"strokeDash": 0,
|
||||
|
|
@ -243,10 +243,10 @@
|
|||
"id": "group 1.nested guy",
|
||||
"type": "",
|
||||
"pos": {
|
||||
"x": 245,
|
||||
"x": 275,
|
||||
"y": 786
|
||||
},
|
||||
"width": 320,
|
||||
"width": 350,
|
||||
"height": 80,
|
||||
"opacity": 1,
|
||||
"strokeDash": 0,
|
||||
|
|
@ -282,10 +282,10 @@
|
|||
"id": "group b",
|
||||
"type": "",
|
||||
"pos": {
|
||||
"x": 245,
|
||||
"x": 275,
|
||||
"y": 1306
|
||||
},
|
||||
"width": 438,
|
||||
"width": 468,
|
||||
"height": 466,
|
||||
"opacity": 1,
|
||||
"strokeDash": 0,
|
||||
|
|
@ -321,7 +321,7 @@
|
|||
"id": "c.what would arnold say",
|
||||
"type": "rectangle",
|
||||
"pos": {
|
||||
"x": 386,
|
||||
"x": 446,
|
||||
"y": 1476
|
||||
},
|
||||
"width": 257,
|
||||
|
|
@ -361,7 +361,7 @@
|
|||
"id": "choo",
|
||||
"type": "",
|
||||
"pos": {
|
||||
"x": 603,
|
||||
"x": 693,
|
||||
"y": 1822
|
||||
},
|
||||
"width": 254,
|
||||
|
|
@ -400,7 +400,7 @@
|
|||
"id": "d.this note",
|
||||
"type": "rectangle",
|
||||
"pos": {
|
||||
"x": 653,
|
||||
"x": 743,
|
||||
"y": 1862
|
||||
},
|
||||
"width": 164,
|
||||
|
|
@ -440,7 +440,7 @@
|
|||
"id": "b.t1",
|
||||
"type": "rectangle",
|
||||
"pos": {
|
||||
"x": 289,
|
||||
"x": 319,
|
||||
"y": 940
|
||||
},
|
||||
"width": 12,
|
||||
|
|
@ -479,7 +479,7 @@
|
|||
"id": "c.t1",
|
||||
"type": "rectangle",
|
||||
"pos": {
|
||||
"x": 509,
|
||||
"x": 569,
|
||||
"y": 940
|
||||
},
|
||||
"width": 12,
|
||||
|
|
@ -518,7 +518,7 @@
|
|||
"id": "b.t1.t2",
|
||||
"type": "rectangle",
|
||||
"pos": {
|
||||
"x": 285,
|
||||
"x": 315,
|
||||
"y": 1070
|
||||
},
|
||||
"width": 20,
|
||||
|
|
@ -585,7 +585,7 @@
|
|||
"y": 306
|
||||
},
|
||||
{
|
||||
"x": 295,
|
||||
"x": 325,
|
||||
"y": 306
|
||||
}
|
||||
],
|
||||
|
|
@ -624,7 +624,7 @@
|
|||
"y": 436
|
||||
},
|
||||
{
|
||||
"x": 295,
|
||||
"x": 325,
|
||||
"y": 436
|
||||
}
|
||||
],
|
||||
|
|
@ -659,11 +659,11 @@
|
|||
"labelPercentage": 0,
|
||||
"route": [
|
||||
{
|
||||
"x": 295,
|
||||
"x": 325,
|
||||
"y": 566
|
||||
},
|
||||
{
|
||||
"x": 515,
|
||||
"x": 575,
|
||||
"y": 566
|
||||
}
|
||||
],
|
||||
|
|
@ -698,11 +698,11 @@
|
|||
"labelPercentage": 0,
|
||||
"route": [
|
||||
{
|
||||
"x": 515,
|
||||
"x": 575,
|
||||
"y": 696
|
||||
},
|
||||
{
|
||||
"x": 295,
|
||||
"x": 325,
|
||||
"y": 696
|
||||
}
|
||||
],
|
||||
|
|
@ -737,11 +737,11 @@
|
|||
"labelPercentage": 0,
|
||||
"route": [
|
||||
{
|
||||
"x": 515,
|
||||
"x": 575,
|
||||
"y": 826
|
||||
},
|
||||
{
|
||||
"x": 295,
|
||||
"x": 325,
|
||||
"y": 826
|
||||
}
|
||||
],
|
||||
|
|
@ -776,11 +776,11 @@
|
|||
"labelPercentage": 0,
|
||||
"route": [
|
||||
{
|
||||
"x": 301,
|
||||
"x": 331,
|
||||
"y": 956
|
||||
},
|
||||
{
|
||||
"x": 509,
|
||||
"x": 569,
|
||||
"y": 956
|
||||
}
|
||||
],
|
||||
|
|
@ -815,11 +815,11 @@
|
|||
"labelPercentage": 0,
|
||||
"route": [
|
||||
{
|
||||
"x": 305,
|
||||
"x": 335,
|
||||
"y": 1086
|
||||
},
|
||||
{
|
||||
"x": 509,
|
||||
"x": 569,
|
||||
"y": 1086
|
||||
}
|
||||
],
|
||||
|
|
@ -854,11 +854,11 @@
|
|||
"labelPercentage": 0,
|
||||
"route": [
|
||||
{
|
||||
"x": 509,
|
||||
"x": 569,
|
||||
"y": 1216
|
||||
},
|
||||
{
|
||||
"x": 301,
|
||||
"x": 331,
|
||||
"y": 1216
|
||||
}
|
||||
],
|
||||
|
|
@ -893,11 +893,11 @@
|
|||
"labelPercentage": 0,
|
||||
"route": [
|
||||
{
|
||||
"x": 295,
|
||||
"x": 325,
|
||||
"y": 1346
|
||||
},
|
||||
{
|
||||
"x": 515,
|
||||
"x": 575,
|
||||
"y": 1346
|
||||
}
|
||||
],
|
||||
|
|
@ -932,11 +932,11 @@
|
|||
"labelPercentage": 0,
|
||||
"route": [
|
||||
{
|
||||
"x": 515,
|
||||
"x": 575,
|
||||
"y": 1732
|
||||
},
|
||||
{
|
||||
"x": 295,
|
||||
"x": 325,
|
||||
"y": 1732
|
||||
}
|
||||
],
|
||||
|
|
@ -1010,11 +1010,11 @@
|
|||
"labelPercentage": 0,
|
||||
"route": [
|
||||
{
|
||||
"x": 295,
|
||||
"x": 325,
|
||||
"y": 176
|
||||
},
|
||||
{
|
||||
"x": 295,
|
||||
"x": 325,
|
||||
"y": 2118
|
||||
}
|
||||
],
|
||||
|
|
@ -1049,11 +1049,11 @@
|
|||
"labelPercentage": 0,
|
||||
"route": [
|
||||
{
|
||||
"x": 515,
|
||||
"x": 575,
|
||||
"y": 176
|
||||
},
|
||||
{
|
||||
"x": 515,
|
||||
"x": 575,
|
||||
"y": 2118
|
||||
}
|
||||
],
|
||||
|
|
@ -1088,11 +1088,11 @@
|
|||
"labelPercentage": 0,
|
||||
"route": [
|
||||
{
|
||||
"x": 735,
|
||||
"x": 825,
|
||||
"y": 176
|
||||
},
|
||||
{
|
||||
"x": 735,
|
||||
"x": 825,
|
||||
"y": 2118
|
||||
}
|
||||
],
|
||||
|
|
|
|||
|
Before Width: | Height: | Size: 475 KiB After Width: | Height: | Size: 475 KiB |
80
e2etests/testdata/stable/sequence_diagram_groups/elk/board.exp.json
generated
vendored
|
|
@ -45,7 +45,7 @@
|
|||
"id": "b",
|
||||
"type": "",
|
||||
"pos": {
|
||||
"x": 220,
|
||||
"x": 250,
|
||||
"y": 50
|
||||
},
|
||||
"width": 150,
|
||||
|
|
@ -85,7 +85,7 @@
|
|||
"id": "c",
|
||||
"type": "",
|
||||
"pos": {
|
||||
"x": 440,
|
||||
"x": 500,
|
||||
"y": 50
|
||||
},
|
||||
"width": 150,
|
||||
|
|
@ -125,7 +125,7 @@
|
|||
"id": "d",
|
||||
"type": "",
|
||||
"pos": {
|
||||
"x": 660,
|
||||
"x": 750,
|
||||
"y": 50
|
||||
},
|
||||
"width": 150,
|
||||
|
|
@ -168,7 +168,7 @@
|
|||
"x": 25,
|
||||
"y": 396
|
||||
},
|
||||
"width": 320,
|
||||
"width": 350,
|
||||
"height": 80,
|
||||
"opacity": 1,
|
||||
"strokeDash": 0,
|
||||
|
|
@ -204,10 +204,10 @@
|
|||
"id": "group 1",
|
||||
"type": "",
|
||||
"pos": {
|
||||
"x": 221,
|
||||
"x": 251,
|
||||
"y": 526
|
||||
},
|
||||
"width": 368,
|
||||
"width": 398,
|
||||
"height": 730,
|
||||
"opacity": 1,
|
||||
"strokeDash": 0,
|
||||
|
|
@ -243,10 +243,10 @@
|
|||
"id": "group 1.nested guy",
|
||||
"type": "",
|
||||
"pos": {
|
||||
"x": 245,
|
||||
"x": 275,
|
||||
"y": 786
|
||||
},
|
||||
"width": 320,
|
||||
"width": 350,
|
||||
"height": 80,
|
||||
"opacity": 1,
|
||||
"strokeDash": 0,
|
||||
|
|
@ -282,10 +282,10 @@
|
|||
"id": "group b",
|
||||
"type": "",
|
||||
"pos": {
|
||||
"x": 245,
|
||||
"x": 275,
|
||||
"y": 1306
|
||||
},
|
||||
"width": 438,
|
||||
"width": 468,
|
||||
"height": 466,
|
||||
"opacity": 1,
|
||||
"strokeDash": 0,
|
||||
|
|
@ -321,7 +321,7 @@
|
|||
"id": "c.what would arnold say",
|
||||
"type": "rectangle",
|
||||
"pos": {
|
||||
"x": 386,
|
||||
"x": 446,
|
||||
"y": 1476
|
||||
},
|
||||
"width": 257,
|
||||
|
|
@ -361,7 +361,7 @@
|
|||
"id": "choo",
|
||||
"type": "",
|
||||
"pos": {
|
||||
"x": 603,
|
||||
"x": 693,
|
||||
"y": 1822
|
||||
},
|
||||
"width": 254,
|
||||
|
|
@ -400,7 +400,7 @@
|
|||
"id": "d.this note",
|
||||
"type": "rectangle",
|
||||
"pos": {
|
||||
"x": 653,
|
||||
"x": 743,
|
||||
"y": 1862
|
||||
},
|
||||
"width": 164,
|
||||
|
|
@ -440,7 +440,7 @@
|
|||
"id": "b.t1",
|
||||
"type": "rectangle",
|
||||
"pos": {
|
||||
"x": 289,
|
||||
"x": 319,
|
||||
"y": 940
|
||||
},
|
||||
"width": 12,
|
||||
|
|
@ -479,7 +479,7 @@
|
|||
"id": "c.t1",
|
||||
"type": "rectangle",
|
||||
"pos": {
|
||||
"x": 509,
|
||||
"x": 569,
|
||||
"y": 940
|
||||
},
|
||||
"width": 12,
|
||||
|
|
@ -518,7 +518,7 @@
|
|||
"id": "b.t1.t2",
|
||||
"type": "rectangle",
|
||||
"pos": {
|
||||
"x": 285,
|
||||
"x": 315,
|
||||
"y": 1070
|
||||
},
|
||||
"width": 20,
|
||||
|
|
@ -585,7 +585,7 @@
|
|||
"y": 306
|
||||
},
|
||||
{
|
||||
"x": 295,
|
||||
"x": 325,
|
||||
"y": 306
|
||||
}
|
||||
],
|
||||
|
|
@ -624,7 +624,7 @@
|
|||
"y": 436
|
||||
},
|
||||
{
|
||||
"x": 295,
|
||||
"x": 325,
|
||||
"y": 436
|
||||
}
|
||||
],
|
||||
|
|
@ -659,11 +659,11 @@
|
|||
"labelPercentage": 0,
|
||||
"route": [
|
||||
{
|
||||
"x": 295,
|
||||
"x": 325,
|
||||
"y": 566
|
||||
},
|
||||
{
|
||||
"x": 515,
|
||||
"x": 575,
|
||||
"y": 566
|
||||
}
|
||||
],
|
||||
|
|
@ -698,11 +698,11 @@
|
|||
"labelPercentage": 0,
|
||||
"route": [
|
||||
{
|
||||
"x": 515,
|
||||
"x": 575,
|
||||
"y": 696
|
||||
},
|
||||
{
|
||||
"x": 295,
|
||||
"x": 325,
|
||||
"y": 696
|
||||
}
|
||||
],
|
||||
|
|
@ -737,11 +737,11 @@
|
|||
"labelPercentage": 0,
|
||||
"route": [
|
||||
{
|
||||
"x": 515,
|
||||
"x": 575,
|
||||
"y": 826
|
||||
},
|
||||
{
|
||||
"x": 295,
|
||||
"x": 325,
|
||||
"y": 826
|
||||
}
|
||||
],
|
||||
|
|
@ -776,11 +776,11 @@
|
|||
"labelPercentage": 0,
|
||||
"route": [
|
||||
{
|
||||
"x": 301,
|
||||
"x": 331,
|
||||
"y": 956
|
||||
},
|
||||
{
|
||||
"x": 509,
|
||||
"x": 569,
|
||||
"y": 956
|
||||
}
|
||||
],
|
||||
|
|
@ -815,11 +815,11 @@
|
|||
"labelPercentage": 0,
|
||||
"route": [
|
||||
{
|
||||
"x": 305,
|
||||
"x": 335,
|
||||
"y": 1086
|
||||
},
|
||||
{
|
||||
"x": 509,
|
||||
"x": 569,
|
||||
"y": 1086
|
||||
}
|
||||
],
|
||||
|
|
@ -854,11 +854,11 @@
|
|||
"labelPercentage": 0,
|
||||
"route": [
|
||||
{
|
||||
"x": 509,
|
||||
"x": 569,
|
||||
"y": 1216
|
||||
},
|
||||
{
|
||||
"x": 301,
|
||||
"x": 331,
|
||||
"y": 1216
|
||||
}
|
||||
],
|
||||
|
|
@ -893,11 +893,11 @@
|
|||
"labelPercentage": 0,
|
||||
"route": [
|
||||
{
|
||||
"x": 295,
|
||||
"x": 325,
|
||||
"y": 1346
|
||||
},
|
||||
{
|
||||
"x": 515,
|
||||
"x": 575,
|
||||
"y": 1346
|
||||
}
|
||||
],
|
||||
|
|
@ -932,11 +932,11 @@
|
|||
"labelPercentage": 0,
|
||||
"route": [
|
||||
{
|
||||
"x": 515,
|
||||
"x": 575,
|
||||
"y": 1732
|
||||
},
|
||||
{
|
||||
"x": 295,
|
||||
"x": 325,
|
||||
"y": 1732
|
||||
}
|
||||
],
|
||||
|
|
@ -1010,11 +1010,11 @@
|
|||
"labelPercentage": 0,
|
||||
"route": [
|
||||
{
|
||||
"x": 295,
|
||||
"x": 325,
|
||||
"y": 176
|
||||
},
|
||||
{
|
||||
"x": 295,
|
||||
"x": 325,
|
||||
"y": 2118
|
||||
}
|
||||
],
|
||||
|
|
@ -1049,11 +1049,11 @@
|
|||
"labelPercentage": 0,
|
||||
"route": [
|
||||
{
|
||||
"x": 515,
|
||||
"x": 575,
|
||||
"y": 176
|
||||
},
|
||||
{
|
||||
"x": 515,
|
||||
"x": 575,
|
||||
"y": 2118
|
||||
}
|
||||
],
|
||||
|
|
@ -1088,11 +1088,11 @@
|
|||
"labelPercentage": 0,
|
||||
"route": [
|
||||
{
|
||||
"x": 735,
|
||||
"x": 825,
|
||||
"y": 176
|
||||
},
|
||||
{
|
||||
"x": 735,
|
||||
"x": 825,
|
||||
"y": 2118
|
||||
}
|
||||
],
|
||||
|
|
|
|||
|
Before Width: | Height: | Size: 475 KiB After Width: | Height: | Size: 475 KiB |
284
e2etests/testdata/stable/sequence_diagram_long_note/dagre/board.exp.json
generated
vendored
Normal file
|
|
@ -0,0 +1,284 @@
|
|||
{
|
||||
"name": "",
|
||||
"shapes": [
|
||||
{
|
||||
"id": "b",
|
||||
"type": "",
|
||||
"pos": {
|
||||
"x": 0,
|
||||
"y": 50
|
||||
},
|
||||
"width": 150,
|
||||
"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": "",
|
||||
"blend": false,
|
||||
"fields": null,
|
||||
"methods": null,
|
||||
"columns": null,
|
||||
"label": "b",
|
||||
"fontSize": 16,
|
||||
"fontFamily": "DEFAULT",
|
||||
"language": "",
|
||||
"color": "#0A0F25",
|
||||
"italic": false,
|
||||
"bold": false,
|
||||
"underline": false,
|
||||
"labelWidth": 13,
|
||||
"labelHeight": 26,
|
||||
"labelPosition": "INSIDE_MIDDLE_CENTER",
|
||||
"zIndex": 0,
|
||||
"level": 1
|
||||
},
|
||||
{
|
||||
"id": "b.note",
|
||||
"type": "rectangle",
|
||||
"pos": {
|
||||
"x": -187,
|
||||
"y": 436
|
||||
},
|
||||
"width": 525,
|
||||
"height": 126,
|
||||
"opacity": 1,
|
||||
"strokeDash": 0,
|
||||
"strokeWidth": 2,
|
||||
"borderRadius": 0,
|
||||
"fill": "#FFFFFF",
|
||||
"stroke": "#0D32B2",
|
||||
"shadow": false,
|
||||
"3d": false,
|
||||
"multiple": false,
|
||||
"tooltip": "",
|
||||
"link": "",
|
||||
"icon": null,
|
||||
"iconPosition": "",
|
||||
"blend": false,
|
||||
"fields": null,
|
||||
"methods": null,
|
||||
"columns": null,
|
||||
"label": "a note here to remember that padding must consider notes too",
|
||||
"fontSize": 16,
|
||||
"fontFamily": "DEFAULT",
|
||||
"language": "",
|
||||
"color": "#0A0F25",
|
||||
"italic": false,
|
||||
"bold": false,
|
||||
"underline": false,
|
||||
"labelWidth": 425,
|
||||
"labelHeight": 26,
|
||||
"labelPosition": "INSIDE_MIDDLE_CENTER",
|
||||
"zIndex": 5,
|
||||
"level": 2
|
||||
},
|
||||
{
|
||||
"id": "a",
|
||||
"type": "",
|
||||
"pos": {
|
||||
"x": 313,
|
||||
"y": 50
|
||||
},
|
||||
"width": 150,
|
||||
"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": "",
|
||||
"blend": false,
|
||||
"fields": null,
|
||||
"methods": null,
|
||||
"columns": null,
|
||||
"label": "a",
|
||||
"fontSize": 16,
|
||||
"fontFamily": "DEFAULT",
|
||||
"language": "",
|
||||
"color": "#0A0F25",
|
||||
"italic": false,
|
||||
"bold": false,
|
||||
"underline": false,
|
||||
"labelWidth": 12,
|
||||
"labelHeight": 26,
|
||||
"labelPosition": "INSIDE_MIDDLE_CENTER",
|
||||
"zIndex": 0,
|
||||
"level": 1
|
||||
},
|
||||
{
|
||||
"id": "a.note",
|
||||
"type": "rectangle",
|
||||
"pos": {
|
||||
"x": 319,
|
||||
"y": 692
|
||||
},
|
||||
"width": 137,
|
||||
"height": 190,
|
||||
"opacity": 1,
|
||||
"strokeDash": 0,
|
||||
"strokeWidth": 2,
|
||||
"borderRadius": 0,
|
||||
"fill": "#FFFFFF",
|
||||
"stroke": "#0D32B2",
|
||||
"shadow": false,
|
||||
"3d": false,
|
||||
"multiple": false,
|
||||
"tooltip": "",
|
||||
"link": "",
|
||||
"icon": null,
|
||||
"iconPosition": "",
|
||||
"blend": false,
|
||||
"fields": null,
|
||||
"methods": null,
|
||||
"columns": null,
|
||||
"label": "just\na\nlong\nnote\nhere",
|
||||
"fontSize": 16,
|
||||
"fontFamily": "DEFAULT",
|
||||
"language": "",
|
||||
"color": "#0A0F25",
|
||||
"italic": false,
|
||||
"bold": false,
|
||||
"underline": false,
|
||||
"labelWidth": 37,
|
||||
"labelHeight": 90,
|
||||
"labelPosition": "INSIDE_MIDDLE_CENTER",
|
||||
"zIndex": 5,
|
||||
"level": 2
|
||||
}
|
||||
],
|
||||
"connections": [
|
||||
{
|
||||
"id": "(a -> b)[0]",
|
||||
"src": "a",
|
||||
"srcArrow": "none",
|
||||
"srcLabel": "",
|
||||
"dst": "b",
|
||||
"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": 388,
|
||||
"y": 306
|
||||
},
|
||||
{
|
||||
"x": 75,
|
||||
"y": 306
|
||||
}
|
||||
],
|
||||
"animated": false,
|
||||
"tooltip": "",
|
||||
"icon": null,
|
||||
"zIndex": 4
|
||||
},
|
||||
{
|
||||
"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": 75,
|
||||
"y": 176
|
||||
},
|
||||
{
|
||||
"x": 75,
|
||||
"y": 1012
|
||||
}
|
||||
],
|
||||
"animated": false,
|
||||
"tooltip": "",
|
||||
"icon": null,
|
||||
"zIndex": 1
|
||||
},
|
||||
{
|
||||
"id": "(a -- )[0]",
|
||||
"src": "a",
|
||||
"srcArrow": "none",
|
||||
"srcLabel": "",
|
||||
"dst": "a-lifeline-end-2251863791",
|
||||
"dstArrow": "none",
|
||||
"dstLabel": "",
|
||||
"opacity": 1,
|
||||
"strokeDash": 6,
|
||||
"strokeWidth": 2,
|
||||
"stroke": "#0D32B2",
|
||||
"label": "",
|
||||
"fontSize": 16,
|
||||
"fontFamily": "DEFAULT",
|
||||
"language": "",
|
||||
"color": "#676C7E",
|
||||
"italic": true,
|
||||
"bold": false,
|
||||
"underline": false,
|
||||
"labelWidth": 0,
|
||||
"labelHeight": 0,
|
||||
"labelPosition": "",
|
||||
"labelPercentage": 0,
|
||||
"route": [
|
||||
{
|
||||
"x": 388,
|
||||
"y": 176
|
||||
},
|
||||
{
|
||||
"x": 388,
|
||||
"y": 1012
|
||||
}
|
||||
],
|
||||
"animated": false,
|
||||
"tooltip": "",
|
||||
"icon": null,
|
||||
"zIndex": 1
|
||||
}
|
||||
]
|
||||
}
|
||||
28
e2etests/testdata/stable/sequence_diagram_long_note/dagre/sketch.exp.svg
vendored
Normal file
|
After Width: | Height: | Size: 326 KiB |
284
e2etests/testdata/stable/sequence_diagram_long_note/elk/board.exp.json
generated
vendored
Normal file
|
|
@ -0,0 +1,284 @@
|
|||
{
|
||||
"name": "",
|
||||
"shapes": [
|
||||
{
|
||||
"id": "b",
|
||||
"type": "",
|
||||
"pos": {
|
||||
"x": 0,
|
||||
"y": 50
|
||||
},
|
||||
"width": 150,
|
||||
"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": "",
|
||||
"blend": false,
|
||||
"fields": null,
|
||||
"methods": null,
|
||||
"columns": null,
|
||||
"label": "b",
|
||||
"fontSize": 16,
|
||||
"fontFamily": "DEFAULT",
|
||||
"language": "",
|
||||
"color": "#0A0F25",
|
||||
"italic": false,
|
||||
"bold": false,
|
||||
"underline": false,
|
||||
"labelWidth": 13,
|
||||
"labelHeight": 26,
|
||||
"labelPosition": "INSIDE_MIDDLE_CENTER",
|
||||
"zIndex": 0,
|
||||
"level": 1
|
||||
},
|
||||
{
|
||||
"id": "b.note",
|
||||
"type": "rectangle",
|
||||
"pos": {
|
||||
"x": -187,
|
||||
"y": 436
|
||||
},
|
||||
"width": 525,
|
||||
"height": 126,
|
||||
"opacity": 1,
|
||||
"strokeDash": 0,
|
||||
"strokeWidth": 2,
|
||||
"borderRadius": 0,
|
||||
"fill": "#FFFFFF",
|
||||
"stroke": "#0D32B2",
|
||||
"shadow": false,
|
||||
"3d": false,
|
||||
"multiple": false,
|
||||
"tooltip": "",
|
||||
"link": "",
|
||||
"icon": null,
|
||||
"iconPosition": "",
|
||||
"blend": false,
|
||||
"fields": null,
|
||||
"methods": null,
|
||||
"columns": null,
|
||||
"label": "a note here to remember that padding must consider notes too",
|
||||
"fontSize": 16,
|
||||
"fontFamily": "DEFAULT",
|
||||
"language": "",
|
||||
"color": "#0A0F25",
|
||||
"italic": false,
|
||||
"bold": false,
|
||||
"underline": false,
|
||||
"labelWidth": 425,
|
||||
"labelHeight": 26,
|
||||
"labelPosition": "INSIDE_MIDDLE_CENTER",
|
||||
"zIndex": 5,
|
||||
"level": 2
|
||||
},
|
||||
{
|
||||
"id": "a",
|
||||
"type": "",
|
||||
"pos": {
|
||||
"x": 313,
|
||||
"y": 50
|
||||
},
|
||||
"width": 150,
|
||||
"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": "",
|
||||
"blend": false,
|
||||
"fields": null,
|
||||
"methods": null,
|
||||
"columns": null,
|
||||
"label": "a",
|
||||
"fontSize": 16,
|
||||
"fontFamily": "DEFAULT",
|
||||
"language": "",
|
||||
"color": "#0A0F25",
|
||||
"italic": false,
|
||||
"bold": false,
|
||||
"underline": false,
|
||||
"labelWidth": 12,
|
||||
"labelHeight": 26,
|
||||
"labelPosition": "INSIDE_MIDDLE_CENTER",
|
||||
"zIndex": 0,
|
||||
"level": 1
|
||||
},
|
||||
{
|
||||
"id": "a.note",
|
||||
"type": "rectangle",
|
||||
"pos": {
|
||||
"x": 319,
|
||||
"y": 692
|
||||
},
|
||||
"width": 137,
|
||||
"height": 190,
|
||||
"opacity": 1,
|
||||
"strokeDash": 0,
|
||||
"strokeWidth": 2,
|
||||
"borderRadius": 0,
|
||||
"fill": "#FFFFFF",
|
||||
"stroke": "#0D32B2",
|
||||
"shadow": false,
|
||||
"3d": false,
|
||||
"multiple": false,
|
||||
"tooltip": "",
|
||||
"link": "",
|
||||
"icon": null,
|
||||
"iconPosition": "",
|
||||
"blend": false,
|
||||
"fields": null,
|
||||
"methods": null,
|
||||
"columns": null,
|
||||
"label": "just\na\nlong\nnote\nhere",
|
||||
"fontSize": 16,
|
||||
"fontFamily": "DEFAULT",
|
||||
"language": "",
|
||||
"color": "#0A0F25",
|
||||
"italic": false,
|
||||
"bold": false,
|
||||
"underline": false,
|
||||
"labelWidth": 37,
|
||||
"labelHeight": 90,
|
||||
"labelPosition": "INSIDE_MIDDLE_CENTER",
|
||||
"zIndex": 5,
|
||||
"level": 2
|
||||
}
|
||||
],
|
||||
"connections": [
|
||||
{
|
||||
"id": "(a -> b)[0]",
|
||||
"src": "a",
|
||||
"srcArrow": "none",
|
||||
"srcLabel": "",
|
||||
"dst": "b",
|
||||
"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": 388,
|
||||
"y": 306
|
||||
},
|
||||
{
|
||||
"x": 75,
|
||||
"y": 306
|
||||
}
|
||||
],
|
||||
"animated": false,
|
||||
"tooltip": "",
|
||||
"icon": null,
|
||||
"zIndex": 4
|
||||
},
|
||||
{
|
||||
"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": 75,
|
||||
"y": 176
|
||||
},
|
||||
{
|
||||
"x": 75,
|
||||
"y": 1012
|
||||
}
|
||||
],
|
||||
"animated": false,
|
||||
"tooltip": "",
|
||||
"icon": null,
|
||||
"zIndex": 1
|
||||
},
|
||||
{
|
||||
"id": "(a -- )[0]",
|
||||
"src": "a",
|
||||
"srcArrow": "none",
|
||||
"srcLabel": "",
|
||||
"dst": "a-lifeline-end-2251863791",
|
||||
"dstArrow": "none",
|
||||
"dstLabel": "",
|
||||
"opacity": 1,
|
||||
"strokeDash": 6,
|
||||
"strokeWidth": 2,
|
||||
"stroke": "#0D32B2",
|
||||
"label": "",
|
||||
"fontSize": 16,
|
||||
"fontFamily": "DEFAULT",
|
||||
"language": "",
|
||||
"color": "#676C7E",
|
||||
"italic": true,
|
||||
"bold": false,
|
||||
"underline": false,
|
||||
"labelWidth": 0,
|
||||
"labelHeight": 0,
|
||||
"labelPosition": "",
|
||||
"labelPercentage": 0,
|
||||
"route": [
|
||||
{
|
||||
"x": 388,
|
||||
"y": 176
|
||||
},
|
||||
{
|
||||
"x": 388,
|
||||
"y": 1012
|
||||
}
|
||||
],
|
||||
"animated": false,
|
||||
"tooltip": "",
|
||||
"icon": null,
|
||||
"zIndex": 1
|
||||
}
|
||||
]
|
||||
}
|
||||
28
e2etests/testdata/stable/sequence_diagram_long_note/elk/sketch.exp.svg
vendored
Normal file
|
After Width: | Height: | Size: 326 KiB |
70
e2etests/testdata/stable/sequence_diagram_nested_groups/dagre/board.exp.json
generated
vendored
|
|
@ -8,7 +8,7 @@
|
|||
"x": -121,
|
||||
"y": 266
|
||||
},
|
||||
"width": 562,
|
||||
"width": 592,
|
||||
"height": 952,
|
||||
"opacity": 1,
|
||||
"strokeDash": 0,
|
||||
|
|
@ -47,7 +47,7 @@
|
|||
"x": -97,
|
||||
"y": 396
|
||||
},
|
||||
"width": 514,
|
||||
"width": 544,
|
||||
"height": 798,
|
||||
"opacity": 1,
|
||||
"strokeDash": 0,
|
||||
|
|
@ -86,7 +86,7 @@
|
|||
"x": -73,
|
||||
"y": 526
|
||||
},
|
||||
"width": 466,
|
||||
"width": 496,
|
||||
"height": 644,
|
||||
"opacity": 1,
|
||||
"strokeDash": 0,
|
||||
|
|
@ -125,7 +125,7 @@
|
|||
"x": -49,
|
||||
"y": 656
|
||||
},
|
||||
"width": 418,
|
||||
"width": 448,
|
||||
"height": 490,
|
||||
"opacity": 1,
|
||||
"strokeDash": 0,
|
||||
|
|
@ -244,7 +244,7 @@
|
|||
"x": 25,
|
||||
"y": 1042
|
||||
},
|
||||
"width": 320,
|
||||
"width": 350,
|
||||
"height": 80,
|
||||
"opacity": 1,
|
||||
"strokeDash": 0,
|
||||
|
|
@ -280,10 +280,10 @@
|
|||
"id": "alt",
|
||||
"type": "",
|
||||
"pos": {
|
||||
"x": 221,
|
||||
"x": 251,
|
||||
"y": 1148
|
||||
},
|
||||
"width": 388,
|
||||
"width": 461,
|
||||
"height": 518,
|
||||
"opacity": 1,
|
||||
"strokeDash": 0,
|
||||
|
|
@ -319,10 +319,10 @@
|
|||
"id": "alt.case 1",
|
||||
"type": "",
|
||||
"pos": {
|
||||
"x": 245,
|
||||
"x": 275,
|
||||
"y": 1172
|
||||
},
|
||||
"width": 340,
|
||||
"width": 413,
|
||||
"height": 80,
|
||||
"opacity": 1,
|
||||
"strokeDash": 0,
|
||||
|
|
@ -358,10 +358,10 @@
|
|||
"id": "alt.case 2",
|
||||
"type": "",
|
||||
"pos": {
|
||||
"x": 245,
|
||||
"x": 275,
|
||||
"y": 1302
|
||||
},
|
||||
"width": 340,
|
||||
"width": 413,
|
||||
"height": 80,
|
||||
"opacity": 1,
|
||||
"strokeDash": 0,
|
||||
|
|
@ -397,10 +397,10 @@
|
|||
"id": "alt.case 3",
|
||||
"type": "",
|
||||
"pos": {
|
||||
"x": 245,
|
||||
"x": 275,
|
||||
"y": 1432
|
||||
},
|
||||
"width": 340,
|
||||
"width": 413,
|
||||
"height": 80,
|
||||
"opacity": 1,
|
||||
"strokeDash": 0,
|
||||
|
|
@ -436,10 +436,10 @@
|
|||
"id": "alt.case 4",
|
||||
"type": "",
|
||||
"pos": {
|
||||
"x": 245,
|
||||
"x": 275,
|
||||
"y": 1562
|
||||
},
|
||||
"width": 340,
|
||||
"width": 413,
|
||||
"height": 80,
|
||||
"opacity": 1,
|
||||
"strokeDash": 0,
|
||||
|
|
@ -475,7 +475,7 @@
|
|||
"id": "b",
|
||||
"type": "",
|
||||
"pos": {
|
||||
"x": 220,
|
||||
"x": 250,
|
||||
"y": 50
|
||||
},
|
||||
"width": 150,
|
||||
|
|
@ -515,7 +515,7 @@
|
|||
"id": "b.note",
|
||||
"type": "rectangle",
|
||||
"pos": {
|
||||
"x": 32,
|
||||
"x": 62,
|
||||
"y": 2052
|
||||
},
|
||||
"width": 525,
|
||||
|
|
@ -595,7 +595,7 @@
|
|||
"id": "c",
|
||||
"type": "",
|
||||
"pos": {
|
||||
"x": 440,
|
||||
"x": 543,
|
||||
"y": 50
|
||||
},
|
||||
"width": 190,
|
||||
|
|
@ -663,7 +663,7 @@
|
|||
"y": 306
|
||||
},
|
||||
{
|
||||
"x": 295,
|
||||
"x": 325,
|
||||
"y": 306
|
||||
}
|
||||
],
|
||||
|
|
@ -702,7 +702,7 @@
|
|||
"y": 436
|
||||
},
|
||||
{
|
||||
"x": 295,
|
||||
"x": 325,
|
||||
"y": 436
|
||||
}
|
||||
],
|
||||
|
|
@ -741,7 +741,7 @@
|
|||
"y": 566
|
||||
},
|
||||
{
|
||||
"x": 295,
|
||||
"x": 325,
|
||||
"y": 566
|
||||
}
|
||||
],
|
||||
|
|
@ -780,7 +780,7 @@
|
|||
"y": 952
|
||||
},
|
||||
{
|
||||
"x": 295,
|
||||
"x": 325,
|
||||
"y": 952
|
||||
}
|
||||
],
|
||||
|
|
@ -819,7 +819,7 @@
|
|||
"y": 1082
|
||||
},
|
||||
{
|
||||
"x": 295,
|
||||
"x": 325,
|
||||
"y": 1082
|
||||
}
|
||||
],
|
||||
|
|
@ -854,11 +854,11 @@
|
|||
"labelPercentage": 0,
|
||||
"route": [
|
||||
{
|
||||
"x": 295,
|
||||
"x": 325,
|
||||
"y": 1212
|
||||
},
|
||||
{
|
||||
"x": 535,
|
||||
"x": 638,
|
||||
"y": 1212
|
||||
}
|
||||
],
|
||||
|
|
@ -893,11 +893,11 @@
|
|||
"labelPercentage": 0,
|
||||
"route": [
|
||||
{
|
||||
"x": 295,
|
||||
"x": 325,
|
||||
"y": 1342
|
||||
},
|
||||
{
|
||||
"x": 535,
|
||||
"x": 638,
|
||||
"y": 1342
|
||||
}
|
||||
],
|
||||
|
|
@ -932,11 +932,11 @@
|
|||
"labelPercentage": 0,
|
||||
"route": [
|
||||
{
|
||||
"x": 295,
|
||||
"x": 325,
|
||||
"y": 1472
|
||||
},
|
||||
{
|
||||
"x": 535,
|
||||
"x": 638,
|
||||
"y": 1472
|
||||
}
|
||||
],
|
||||
|
|
@ -971,11 +971,11 @@
|
|||
"labelPercentage": 0,
|
||||
"route": [
|
||||
{
|
||||
"x": 295,
|
||||
"x": 325,
|
||||
"y": 1602
|
||||
},
|
||||
{
|
||||
"x": 535,
|
||||
"x": 638,
|
||||
"y": 1602
|
||||
}
|
||||
],
|
||||
|
|
@ -1049,11 +1049,11 @@
|
|||
"labelPercentage": 0,
|
||||
"route": [
|
||||
{
|
||||
"x": 295,
|
||||
"x": 325,
|
||||
"y": 176
|
||||
},
|
||||
{
|
||||
"x": 295,
|
||||
"x": 325,
|
||||
"y": 2308
|
||||
}
|
||||
],
|
||||
|
|
@ -1088,11 +1088,11 @@
|
|||
"labelPercentage": 0,
|
||||
"route": [
|
||||
{
|
||||
"x": 535,
|
||||
"x": 638,
|
||||
"y": 176
|
||||
},
|
||||
{
|
||||
"x": 535,
|
||||
"x": 638,
|
||||
"y": 2308
|
||||
}
|
||||
],
|
||||
|
|
|
|||
|
Before Width: | Height: | Size: 332 KiB After Width: | Height: | Size: 332 KiB |
70
e2etests/testdata/stable/sequence_diagram_nested_groups/elk/board.exp.json
generated
vendored
|
|
@ -8,7 +8,7 @@
|
|||
"x": -121,
|
||||
"y": 266
|
||||
},
|
||||
"width": 562,
|
||||
"width": 592,
|
||||
"height": 952,
|
||||
"opacity": 1,
|
||||
"strokeDash": 0,
|
||||
|
|
@ -47,7 +47,7 @@
|
|||
"x": -97,
|
||||
"y": 396
|
||||
},
|
||||
"width": 514,
|
||||
"width": 544,
|
||||
"height": 798,
|
||||
"opacity": 1,
|
||||
"strokeDash": 0,
|
||||
|
|
@ -86,7 +86,7 @@
|
|||
"x": -73,
|
||||
"y": 526
|
||||
},
|
||||
"width": 466,
|
||||
"width": 496,
|
||||
"height": 644,
|
||||
"opacity": 1,
|
||||
"strokeDash": 0,
|
||||
|
|
@ -125,7 +125,7 @@
|
|||
"x": -49,
|
||||
"y": 656
|
||||
},
|
||||
"width": 418,
|
||||
"width": 448,
|
||||
"height": 490,
|
||||
"opacity": 1,
|
||||
"strokeDash": 0,
|
||||
|
|
@ -244,7 +244,7 @@
|
|||
"x": 25,
|
||||
"y": 1042
|
||||
},
|
||||
"width": 320,
|
||||
"width": 350,
|
||||
"height": 80,
|
||||
"opacity": 1,
|
||||
"strokeDash": 0,
|
||||
|
|
@ -280,10 +280,10 @@
|
|||
"id": "alt",
|
||||
"type": "",
|
||||
"pos": {
|
||||
"x": 221,
|
||||
"x": 251,
|
||||
"y": 1148
|
||||
},
|
||||
"width": 388,
|
||||
"width": 461,
|
||||
"height": 518,
|
||||
"opacity": 1,
|
||||
"strokeDash": 0,
|
||||
|
|
@ -319,10 +319,10 @@
|
|||
"id": "alt.case 1",
|
||||
"type": "",
|
||||
"pos": {
|
||||
"x": 245,
|
||||
"x": 275,
|
||||
"y": 1172
|
||||
},
|
||||
"width": 340,
|
||||
"width": 413,
|
||||
"height": 80,
|
||||
"opacity": 1,
|
||||
"strokeDash": 0,
|
||||
|
|
@ -358,10 +358,10 @@
|
|||
"id": "alt.case 2",
|
||||
"type": "",
|
||||
"pos": {
|
||||
"x": 245,
|
||||
"x": 275,
|
||||
"y": 1302
|
||||
},
|
||||
"width": 340,
|
||||
"width": 413,
|
||||
"height": 80,
|
||||
"opacity": 1,
|
||||
"strokeDash": 0,
|
||||
|
|
@ -397,10 +397,10 @@
|
|||
"id": "alt.case 3",
|
||||
"type": "",
|
||||
"pos": {
|
||||
"x": 245,
|
||||
"x": 275,
|
||||
"y": 1432
|
||||
},
|
||||
"width": 340,
|
||||
"width": 413,
|
||||
"height": 80,
|
||||
"opacity": 1,
|
||||
"strokeDash": 0,
|
||||
|
|
@ -436,10 +436,10 @@
|
|||
"id": "alt.case 4",
|
||||
"type": "",
|
||||
"pos": {
|
||||
"x": 245,
|
||||
"x": 275,
|
||||
"y": 1562
|
||||
},
|
||||
"width": 340,
|
||||
"width": 413,
|
||||
"height": 80,
|
||||
"opacity": 1,
|
||||
"strokeDash": 0,
|
||||
|
|
@ -475,7 +475,7 @@
|
|||
"id": "b",
|
||||
"type": "",
|
||||
"pos": {
|
||||
"x": 220,
|
||||
"x": 250,
|
||||
"y": 50
|
||||
},
|
||||
"width": 150,
|
||||
|
|
@ -515,7 +515,7 @@
|
|||
"id": "b.note",
|
||||
"type": "rectangle",
|
||||
"pos": {
|
||||
"x": 32,
|
||||
"x": 62,
|
||||
"y": 2052
|
||||
},
|
||||
"width": 525,
|
||||
|
|
@ -595,7 +595,7 @@
|
|||
"id": "c",
|
||||
"type": "",
|
||||
"pos": {
|
||||
"x": 440,
|
||||
"x": 543,
|
||||
"y": 50
|
||||
},
|
||||
"width": 190,
|
||||
|
|
@ -663,7 +663,7 @@
|
|||
"y": 306
|
||||
},
|
||||
{
|
||||
"x": 295,
|
||||
"x": 325,
|
||||
"y": 306
|
||||
}
|
||||
],
|
||||
|
|
@ -702,7 +702,7 @@
|
|||
"y": 436
|
||||
},
|
||||
{
|
||||
"x": 295,
|
||||
"x": 325,
|
||||
"y": 436
|
||||
}
|
||||
],
|
||||
|
|
@ -741,7 +741,7 @@
|
|||
"y": 566
|
||||
},
|
||||
{
|
||||
"x": 295,
|
||||
"x": 325,
|
||||
"y": 566
|
||||
}
|
||||
],
|
||||
|
|
@ -780,7 +780,7 @@
|
|||
"y": 952
|
||||
},
|
||||
{
|
||||
"x": 295,
|
||||
"x": 325,
|
||||
"y": 952
|
||||
}
|
||||
],
|
||||
|
|
@ -819,7 +819,7 @@
|
|||
"y": 1082
|
||||
},
|
||||
{
|
||||
"x": 295,
|
||||
"x": 325,
|
||||
"y": 1082
|
||||
}
|
||||
],
|
||||
|
|
@ -854,11 +854,11 @@
|
|||
"labelPercentage": 0,
|
||||
"route": [
|
||||
{
|
||||
"x": 295,
|
||||
"x": 325,
|
||||
"y": 1212
|
||||
},
|
||||
{
|
||||
"x": 535,
|
||||
"x": 638,
|
||||
"y": 1212
|
||||
}
|
||||
],
|
||||
|
|
@ -893,11 +893,11 @@
|
|||
"labelPercentage": 0,
|
||||
"route": [
|
||||
{
|
||||
"x": 295,
|
||||
"x": 325,
|
||||
"y": 1342
|
||||
},
|
||||
{
|
||||
"x": 535,
|
||||
"x": 638,
|
||||
"y": 1342
|
||||
}
|
||||
],
|
||||
|
|
@ -932,11 +932,11 @@
|
|||
"labelPercentage": 0,
|
||||
"route": [
|
||||
{
|
||||
"x": 295,
|
||||
"x": 325,
|
||||
"y": 1472
|
||||
},
|
||||
{
|
||||
"x": 535,
|
||||
"x": 638,
|
||||
"y": 1472
|
||||
}
|
||||
],
|
||||
|
|
@ -971,11 +971,11 @@
|
|||
"labelPercentage": 0,
|
||||
"route": [
|
||||
{
|
||||
"x": 295,
|
||||
"x": 325,
|
||||
"y": 1602
|
||||
},
|
||||
{
|
||||
"x": 535,
|
||||
"x": 638,
|
||||
"y": 1602
|
||||
}
|
||||
],
|
||||
|
|
@ -1049,11 +1049,11 @@
|
|||
"labelPercentage": 0,
|
||||
"route": [
|
||||
{
|
||||
"x": 295,
|
||||
"x": 325,
|
||||
"y": 176
|
||||
},
|
||||
{
|
||||
"x": 295,
|
||||
"x": 325,
|
||||
"y": 2308
|
||||
}
|
||||
],
|
||||
|
|
@ -1088,11 +1088,11 @@
|
|||
"labelPercentage": 0,
|
||||
"route": [
|
||||
{
|
||||
"x": 535,
|
||||
"x": 638,
|
||||
"y": 176
|
||||
},
|
||||
{
|
||||
"x": 535,
|
||||
"x": 638,
|
||||
"y": 2308
|
||||
}
|
||||
],
|
||||
|
|
|
|||
|
Before Width: | Height: | Size: 332 KiB After Width: | Height: | Size: 332 KiB |
90
e2etests/testdata/stable/sequence_diagram_nested_span/dagre/board.exp.json
generated
vendored
|
|
@ -84,7 +84,7 @@
|
|||
"id": "itemResponse",
|
||||
"type": "",
|
||||
"pos": {
|
||||
"x": 220,
|
||||
"x": 225,
|
||||
"y": 50
|
||||
},
|
||||
"width": 200,
|
||||
|
|
@ -124,7 +124,7 @@
|
|||
"id": "itemResponse.a",
|
||||
"type": "rectangle",
|
||||
"pos": {
|
||||
"x": 314,
|
||||
"x": 319,
|
||||
"y": 290
|
||||
},
|
||||
"width": 12,
|
||||
|
|
@ -163,7 +163,7 @@
|
|||
"id": "item",
|
||||
"type": "",
|
||||
"pos": {
|
||||
"x": 490,
|
||||
"x": 500,
|
||||
"y": 50
|
||||
},
|
||||
"width": 150,
|
||||
|
|
@ -203,7 +203,7 @@
|
|||
"id": "item.a",
|
||||
"type": "rectangle",
|
||||
"pos": {
|
||||
"x": 559,
|
||||
"x": 569,
|
||||
"y": 404
|
||||
},
|
||||
"width": 12,
|
||||
|
|
@ -242,7 +242,7 @@
|
|||
"id": "item.a.b",
|
||||
"type": "rectangle",
|
||||
"pos": {
|
||||
"x": 555,
|
||||
"x": 565,
|
||||
"y": 420
|
||||
},
|
||||
"width": 20,
|
||||
|
|
@ -281,7 +281,7 @@
|
|||
"id": "essayRubric",
|
||||
"type": "",
|
||||
"pos": {
|
||||
"x": 710,
|
||||
"x": 732,
|
||||
"y": 50
|
||||
},
|
||||
"width": 186,
|
||||
|
|
@ -321,7 +321,7 @@
|
|||
"id": "essayRubric.a",
|
||||
"type": "rectangle",
|
||||
"pos": {
|
||||
"x": 797,
|
||||
"x": 819,
|
||||
"y": 518
|
||||
},
|
||||
"width": 12,
|
||||
|
|
@ -360,7 +360,7 @@
|
|||
"id": "essayRubric.a.b",
|
||||
"type": "rectangle",
|
||||
"pos": {
|
||||
"x": 793,
|
||||
"x": 815,
|
||||
"y": 534
|
||||
},
|
||||
"width": 20,
|
||||
|
|
@ -399,7 +399,7 @@
|
|||
"id": "essayRubric.a.b.c",
|
||||
"type": "rectangle",
|
||||
"pos": {
|
||||
"x": 789,
|
||||
"x": 811,
|
||||
"y": 550
|
||||
},
|
||||
"width": 28,
|
||||
|
|
@ -438,7 +438,7 @@
|
|||
"id": "concept",
|
||||
"type": "",
|
||||
"pos": {
|
||||
"x": 966,
|
||||
"x": 995,
|
||||
"y": 50
|
||||
},
|
||||
"width": 160,
|
||||
|
|
@ -478,7 +478,7 @@
|
|||
"id": "concept.a",
|
||||
"type": "rectangle",
|
||||
"pos": {
|
||||
"x": 1040,
|
||||
"x": 1069,
|
||||
"y": 632
|
||||
},
|
||||
"width": 12,
|
||||
|
|
@ -517,7 +517,7 @@
|
|||
"id": "concept.a.b",
|
||||
"type": "rectangle",
|
||||
"pos": {
|
||||
"x": 1036,
|
||||
"x": 1065,
|
||||
"y": 648
|
||||
},
|
||||
"width": 20,
|
||||
|
|
@ -556,7 +556,7 @@
|
|||
"id": "concept.a.b.c",
|
||||
"type": "rectangle",
|
||||
"pos": {
|
||||
"x": 1032,
|
||||
"x": 1061,
|
||||
"y": 664
|
||||
},
|
||||
"width": 28,
|
||||
|
|
@ -595,7 +595,7 @@
|
|||
"id": "concept.a.b.c.d",
|
||||
"type": "rectangle",
|
||||
"pos": {
|
||||
"x": 1028,
|
||||
"x": 1057,
|
||||
"y": 680
|
||||
},
|
||||
"width": 36,
|
||||
|
|
@ -634,7 +634,7 @@
|
|||
"id": "itemOutcome",
|
||||
"type": "",
|
||||
"pos": {
|
||||
"x": 1196,
|
||||
"x": 1227,
|
||||
"y": 50
|
||||
},
|
||||
"width": 197,
|
||||
|
|
@ -674,7 +674,7 @@
|
|||
"id": "itemOutcome.a",
|
||||
"type": "rectangle",
|
||||
"pos": {
|
||||
"x": 1288,
|
||||
"x": 1319,
|
||||
"y": 876
|
||||
},
|
||||
"width": 12,
|
||||
|
|
@ -713,7 +713,7 @@
|
|||
"id": "itemOutcome.a.b",
|
||||
"type": "rectangle",
|
||||
"pos": {
|
||||
"x": 1284,
|
||||
"x": 1315,
|
||||
"y": 892
|
||||
},
|
||||
"width": 20,
|
||||
|
|
@ -752,7 +752,7 @@
|
|||
"id": "itemOutcome.a.b.c",
|
||||
"type": "rectangle",
|
||||
"pos": {
|
||||
"x": 1280,
|
||||
"x": 1311,
|
||||
"y": 908
|
||||
},
|
||||
"width": 28,
|
||||
|
|
@ -791,7 +791,7 @@
|
|||
"id": "itemOutcome.a.b.c.d",
|
||||
"type": "rectangle",
|
||||
"pos": {
|
||||
"x": 1276,
|
||||
"x": 1307,
|
||||
"y": 924
|
||||
},
|
||||
"width": 36,
|
||||
|
|
@ -830,7 +830,7 @@
|
|||
"id": "itemOutcome.a.b.c.d.e",
|
||||
"type": "rectangle",
|
||||
"pos": {
|
||||
"x": 1272,
|
||||
"x": 1303,
|
||||
"y": 940
|
||||
},
|
||||
"width": 44,
|
||||
|
|
@ -869,7 +869,7 @@
|
|||
"id": "itemResponse.c",
|
||||
"type": "rectangle",
|
||||
"pos": {
|
||||
"x": 314,
|
||||
"x": 319,
|
||||
"y": 1330
|
||||
},
|
||||
"width": 12,
|
||||
|
|
@ -936,7 +936,7 @@
|
|||
"y": 306
|
||||
},
|
||||
{
|
||||
"x": 314,
|
||||
"x": 319,
|
||||
"y": 306
|
||||
}
|
||||
],
|
||||
|
|
@ -971,11 +971,11 @@
|
|||
"labelPercentage": 0,
|
||||
"route": [
|
||||
{
|
||||
"x": 326,
|
||||
"x": 331,
|
||||
"y": 436
|
||||
},
|
||||
{
|
||||
"x": 555,
|
||||
"x": 565,
|
||||
"y": 436
|
||||
}
|
||||
],
|
||||
|
|
@ -1010,11 +1010,11 @@
|
|||
"labelPercentage": 0,
|
||||
"route": [
|
||||
{
|
||||
"x": 575,
|
||||
"x": 585,
|
||||
"y": 566
|
||||
},
|
||||
{
|
||||
"x": 789,
|
||||
"x": 811,
|
||||
"y": 566
|
||||
}
|
||||
],
|
||||
|
|
@ -1049,11 +1049,11 @@
|
|||
"labelPercentage": 0,
|
||||
"route": [
|
||||
{
|
||||
"x": 817,
|
||||
"x": 839,
|
||||
"y": 696
|
||||
},
|
||||
{
|
||||
"x": 1028,
|
||||
"x": 1057,
|
||||
"y": 696
|
||||
}
|
||||
],
|
||||
|
|
@ -1088,11 +1088,11 @@
|
|||
"labelPercentage": 0,
|
||||
"route": [
|
||||
{
|
||||
"x": 571,
|
||||
"x": 581,
|
||||
"y": 826
|
||||
},
|
||||
{
|
||||
"x": 793,
|
||||
"x": 815,
|
||||
"y": 826
|
||||
}
|
||||
],
|
||||
|
|
@ -1127,11 +1127,11 @@
|
|||
"labelPercentage": 0,
|
||||
"route": [
|
||||
{
|
||||
"x": 1064,
|
||||
"x": 1093,
|
||||
"y": 956
|
||||
},
|
||||
{
|
||||
"x": 1272.5,
|
||||
"x": 1303.5,
|
||||
"y": 956
|
||||
}
|
||||
],
|
||||
|
|
@ -1170,7 +1170,7 @@
|
|||
"y": 1086
|
||||
},
|
||||
{
|
||||
"x": 559,
|
||||
"x": 569,
|
||||
"y": 1086
|
||||
}
|
||||
],
|
||||
|
|
@ -1205,7 +1205,7 @@
|
|||
"labelPercentage": 0,
|
||||
"route": [
|
||||
{
|
||||
"x": 1272.5,
|
||||
"x": 1303.5,
|
||||
"y": 1216
|
||||
},
|
||||
{
|
||||
|
|
@ -1248,7 +1248,7 @@
|
|||
"y": 1346
|
||||
},
|
||||
{
|
||||
"x": 314,
|
||||
"x": 319,
|
||||
"y": 1346
|
||||
}
|
||||
],
|
||||
|
|
@ -1322,11 +1322,11 @@
|
|||
"labelPercentage": 0,
|
||||
"route": [
|
||||
{
|
||||
"x": 320,
|
||||
"x": 325,
|
||||
"y": 176
|
||||
},
|
||||
{
|
||||
"x": 320,
|
||||
"x": 325,
|
||||
"y": 1476
|
||||
}
|
||||
],
|
||||
|
|
@ -1361,11 +1361,11 @@
|
|||
"labelPercentage": 0,
|
||||
"route": [
|
||||
{
|
||||
"x": 565,
|
||||
"x": 575,
|
||||
"y": 176
|
||||
},
|
||||
{
|
||||
"x": 565,
|
||||
"x": 575,
|
||||
"y": 1476
|
||||
}
|
||||
],
|
||||
|
|
@ -1400,11 +1400,11 @@
|
|||
"labelPercentage": 0,
|
||||
"route": [
|
||||
{
|
||||
"x": 803,
|
||||
"x": 825,
|
||||
"y": 176
|
||||
},
|
||||
{
|
||||
"x": 803,
|
||||
"x": 825,
|
||||
"y": 1476
|
||||
}
|
||||
],
|
||||
|
|
@ -1439,11 +1439,11 @@
|
|||
"labelPercentage": 0,
|
||||
"route": [
|
||||
{
|
||||
"x": 1046,
|
||||
"x": 1075,
|
||||
"y": 176
|
||||
},
|
||||
{
|
||||
"x": 1046,
|
||||
"x": 1075,
|
||||
"y": 1476
|
||||
}
|
||||
],
|
||||
|
|
@ -1478,11 +1478,11 @@
|
|||
"labelPercentage": 0,
|
||||
"route": [
|
||||
{
|
||||
"x": 1294.5,
|
||||
"x": 1325.5,
|
||||
"y": 176
|
||||
},
|
||||
{
|
||||
"x": 1294.5,
|
||||
"x": 1325.5,
|
||||
"y": 1476
|
||||
}
|
||||
],
|
||||
|
|
|
|||
|
Before Width: | Height: | Size: 333 KiB After Width: | Height: | Size: 333 KiB |
90
e2etests/testdata/stable/sequence_diagram_nested_span/elk/board.exp.json
generated
vendored
|
|
@ -84,7 +84,7 @@
|
|||
"id": "itemResponse",
|
||||
"type": "",
|
||||
"pos": {
|
||||
"x": 220,
|
||||
"x": 225,
|
||||
"y": 50
|
||||
},
|
||||
"width": 200,
|
||||
|
|
@ -124,7 +124,7 @@
|
|||
"id": "itemResponse.a",
|
||||
"type": "rectangle",
|
||||
"pos": {
|
||||
"x": 314,
|
||||
"x": 319,
|
||||
"y": 290
|
||||
},
|
||||
"width": 12,
|
||||
|
|
@ -163,7 +163,7 @@
|
|||
"id": "item",
|
||||
"type": "",
|
||||
"pos": {
|
||||
"x": 490,
|
||||
"x": 500,
|
||||
"y": 50
|
||||
},
|
||||
"width": 150,
|
||||
|
|
@ -203,7 +203,7 @@
|
|||
"id": "item.a",
|
||||
"type": "rectangle",
|
||||
"pos": {
|
||||
"x": 559,
|
||||
"x": 569,
|
||||
"y": 404
|
||||
},
|
||||
"width": 12,
|
||||
|
|
@ -242,7 +242,7 @@
|
|||
"id": "item.a.b",
|
||||
"type": "rectangle",
|
||||
"pos": {
|
||||
"x": 555,
|
||||
"x": 565,
|
||||
"y": 420
|
||||
},
|
||||
"width": 20,
|
||||
|
|
@ -281,7 +281,7 @@
|
|||
"id": "essayRubric",
|
||||
"type": "",
|
||||
"pos": {
|
||||
"x": 710,
|
||||
"x": 732,
|
||||
"y": 50
|
||||
},
|
||||
"width": 186,
|
||||
|
|
@ -321,7 +321,7 @@
|
|||
"id": "essayRubric.a",
|
||||
"type": "rectangle",
|
||||
"pos": {
|
||||
"x": 797,
|
||||
"x": 819,
|
||||
"y": 518
|
||||
},
|
||||
"width": 12,
|
||||
|
|
@ -360,7 +360,7 @@
|
|||
"id": "essayRubric.a.b",
|
||||
"type": "rectangle",
|
||||
"pos": {
|
||||
"x": 793,
|
||||
"x": 815,
|
||||
"y": 534
|
||||
},
|
||||
"width": 20,
|
||||
|
|
@ -399,7 +399,7 @@
|
|||
"id": "essayRubric.a.b.c",
|
||||
"type": "rectangle",
|
||||
"pos": {
|
||||
"x": 789,
|
||||
"x": 811,
|
||||
"y": 550
|
||||
},
|
||||
"width": 28,
|
||||
|
|
@ -438,7 +438,7 @@
|
|||
"id": "concept",
|
||||
"type": "",
|
||||
"pos": {
|
||||
"x": 966,
|
||||
"x": 995,
|
||||
"y": 50
|
||||
},
|
||||
"width": 160,
|
||||
|
|
@ -478,7 +478,7 @@
|
|||
"id": "concept.a",
|
||||
"type": "rectangle",
|
||||
"pos": {
|
||||
"x": 1040,
|
||||
"x": 1069,
|
||||
"y": 632
|
||||
},
|
||||
"width": 12,
|
||||
|
|
@ -517,7 +517,7 @@
|
|||
"id": "concept.a.b",
|
||||
"type": "rectangle",
|
||||
"pos": {
|
||||
"x": 1036,
|
||||
"x": 1065,
|
||||
"y": 648
|
||||
},
|
||||
"width": 20,
|
||||
|
|
@ -556,7 +556,7 @@
|
|||
"id": "concept.a.b.c",
|
||||
"type": "rectangle",
|
||||
"pos": {
|
||||
"x": 1032,
|
||||
"x": 1061,
|
||||
"y": 664
|
||||
},
|
||||
"width": 28,
|
||||
|
|
@ -595,7 +595,7 @@
|
|||
"id": "concept.a.b.c.d",
|
||||
"type": "rectangle",
|
||||
"pos": {
|
||||
"x": 1028,
|
||||
"x": 1057,
|
||||
"y": 680
|
||||
},
|
||||
"width": 36,
|
||||
|
|
@ -634,7 +634,7 @@
|
|||
"id": "itemOutcome",
|
||||
"type": "",
|
||||
"pos": {
|
||||
"x": 1196,
|
||||
"x": 1227,
|
||||
"y": 50
|
||||
},
|
||||
"width": 197,
|
||||
|
|
@ -674,7 +674,7 @@
|
|||
"id": "itemOutcome.a",
|
||||
"type": "rectangle",
|
||||
"pos": {
|
||||
"x": 1288,
|
||||
"x": 1319,
|
||||
"y": 876
|
||||
},
|
||||
"width": 12,
|
||||
|
|
@ -713,7 +713,7 @@
|
|||
"id": "itemOutcome.a.b",
|
||||
"type": "rectangle",
|
||||
"pos": {
|
||||
"x": 1284,
|
||||
"x": 1315,
|
||||
"y": 892
|
||||
},
|
||||
"width": 20,
|
||||
|
|
@ -752,7 +752,7 @@
|
|||
"id": "itemOutcome.a.b.c",
|
||||
"type": "rectangle",
|
||||
"pos": {
|
||||
"x": 1280,
|
||||
"x": 1311,
|
||||
"y": 908
|
||||
},
|
||||
"width": 28,
|
||||
|
|
@ -791,7 +791,7 @@
|
|||
"id": "itemOutcome.a.b.c.d",
|
||||
"type": "rectangle",
|
||||
"pos": {
|
||||
"x": 1276,
|
||||
"x": 1307,
|
||||
"y": 924
|
||||
},
|
||||
"width": 36,
|
||||
|
|
@ -830,7 +830,7 @@
|
|||
"id": "itemOutcome.a.b.c.d.e",
|
||||
"type": "rectangle",
|
||||
"pos": {
|
||||
"x": 1272,
|
||||
"x": 1303,
|
||||
"y": 940
|
||||
},
|
||||
"width": 44,
|
||||
|
|
@ -869,7 +869,7 @@
|
|||
"id": "itemResponse.c",
|
||||
"type": "rectangle",
|
||||
"pos": {
|
||||
"x": 314,
|
||||
"x": 319,
|
||||
"y": 1330
|
||||
},
|
||||
"width": 12,
|
||||
|
|
@ -936,7 +936,7 @@
|
|||
"y": 306
|
||||
},
|
||||
{
|
||||
"x": 314,
|
||||
"x": 319,
|
||||
"y": 306
|
||||
}
|
||||
],
|
||||
|
|
@ -971,11 +971,11 @@
|
|||
"labelPercentage": 0,
|
||||
"route": [
|
||||
{
|
||||
"x": 326,
|
||||
"x": 331,
|
||||
"y": 436
|
||||
},
|
||||
{
|
||||
"x": 555,
|
||||
"x": 565,
|
||||
"y": 436
|
||||
}
|
||||
],
|
||||
|
|
@ -1010,11 +1010,11 @@
|
|||
"labelPercentage": 0,
|
||||
"route": [
|
||||
{
|
||||
"x": 575,
|
||||
"x": 585,
|
||||
"y": 566
|
||||
},
|
||||
{
|
||||
"x": 789,
|
||||
"x": 811,
|
||||
"y": 566
|
||||
}
|
||||
],
|
||||
|
|
@ -1049,11 +1049,11 @@
|
|||
"labelPercentage": 0,
|
||||
"route": [
|
||||
{
|
||||
"x": 817,
|
||||
"x": 839,
|
||||
"y": 696
|
||||
},
|
||||
{
|
||||
"x": 1028,
|
||||
"x": 1057,
|
||||
"y": 696
|
||||
}
|
||||
],
|
||||
|
|
@ -1088,11 +1088,11 @@
|
|||
"labelPercentage": 0,
|
||||
"route": [
|
||||
{
|
||||
"x": 571,
|
||||
"x": 581,
|
||||
"y": 826
|
||||
},
|
||||
{
|
||||
"x": 793,
|
||||
"x": 815,
|
||||
"y": 826
|
||||
}
|
||||
],
|
||||
|
|
@ -1127,11 +1127,11 @@
|
|||
"labelPercentage": 0,
|
||||
"route": [
|
||||
{
|
||||
"x": 1064,
|
||||
"x": 1093,
|
||||
"y": 956
|
||||
},
|
||||
{
|
||||
"x": 1272.5,
|
||||
"x": 1303.5,
|
||||
"y": 956
|
||||
}
|
||||
],
|
||||
|
|
@ -1170,7 +1170,7 @@
|
|||
"y": 1086
|
||||
},
|
||||
{
|
||||
"x": 559,
|
||||
"x": 569,
|
||||
"y": 1086
|
||||
}
|
||||
],
|
||||
|
|
@ -1205,7 +1205,7 @@
|
|||
"labelPercentage": 0,
|
||||
"route": [
|
||||
{
|
||||
"x": 1272.5,
|
||||
"x": 1303.5,
|
||||
"y": 1216
|
||||
},
|
||||
{
|
||||
|
|
@ -1248,7 +1248,7 @@
|
|||
"y": 1346
|
||||
},
|
||||
{
|
||||
"x": 314,
|
||||
"x": 319,
|
||||
"y": 1346
|
||||
}
|
||||
],
|
||||
|
|
@ -1322,11 +1322,11 @@
|
|||
"labelPercentage": 0,
|
||||
"route": [
|
||||
{
|
||||
"x": 320,
|
||||
"x": 325,
|
||||
"y": 176
|
||||
},
|
||||
{
|
||||
"x": 320,
|
||||
"x": 325,
|
||||
"y": 1476
|
||||
}
|
||||
],
|
||||
|
|
@ -1361,11 +1361,11 @@
|
|||
"labelPercentage": 0,
|
||||
"route": [
|
||||
{
|
||||
"x": 565,
|
||||
"x": 575,
|
||||
"y": 176
|
||||
},
|
||||
{
|
||||
"x": 565,
|
||||
"x": 575,
|
||||
"y": 1476
|
||||
}
|
||||
],
|
||||
|
|
@ -1400,11 +1400,11 @@
|
|||
"labelPercentage": 0,
|
||||
"route": [
|
||||
{
|
||||
"x": 803,
|
||||
"x": 825,
|
||||
"y": 176
|
||||
},
|
||||
{
|
||||
"x": 803,
|
||||
"x": 825,
|
||||
"y": 1476
|
||||
}
|
||||
],
|
||||
|
|
@ -1439,11 +1439,11 @@
|
|||
"labelPercentage": 0,
|
||||
"route": [
|
||||
{
|
||||
"x": 1046,
|
||||
"x": 1075,
|
||||
"y": 176
|
||||
},
|
||||
{
|
||||
"x": 1046,
|
||||
"x": 1075,
|
||||
"y": 1476
|
||||
}
|
||||
],
|
||||
|
|
@ -1478,11 +1478,11 @@
|
|||
"labelPercentage": 0,
|
||||
"route": [
|
||||
{
|
||||
"x": 1294.5,
|
||||
"x": 1325.5,
|
||||
"y": 176
|
||||
},
|
||||
{
|
||||
"x": 1294.5,
|
||||
"x": 1325.5,
|
||||
"y": 1476
|
||||
}
|
||||
],
|
||||
|
|
|
|||
|
Before Width: | Height: | Size: 333 KiB After Width: | Height: | Size: 333 KiB |
32
e2etests/testdata/stable/sequence_diagram_note/dagre/board.exp.json
generated
vendored
|
|
@ -45,7 +45,7 @@
|
|||
"id": "b",
|
||||
"type": "",
|
||||
"pos": {
|
||||
"x": 220,
|
||||
"x": 250,
|
||||
"y": 50
|
||||
},
|
||||
"width": 150,
|
||||
|
|
@ -85,7 +85,7 @@
|
|||
"id": "c",
|
||||
"type": "",
|
||||
"pos": {
|
||||
"x": 440,
|
||||
"x": 500,
|
||||
"y": 50
|
||||
},
|
||||
"width": 150,
|
||||
|
|
@ -125,7 +125,7 @@
|
|||
"id": "d",
|
||||
"type": "",
|
||||
"pos": {
|
||||
"x": 660,
|
||||
"x": 750,
|
||||
"y": 50
|
||||
},
|
||||
"width": 150,
|
||||
|
|
@ -245,7 +245,7 @@
|
|||
"id": "b.\"Some one who believes imaginary things\\n appear right before your i's.\"",
|
||||
"type": "rectangle",
|
||||
"pos": {
|
||||
"x": 106,
|
||||
"x": 136,
|
||||
"y": 1078
|
||||
},
|
||||
"width": 378,
|
||||
|
|
@ -285,7 +285,7 @@
|
|||
"id": "d.The earth is like a tiny grain of sand, only much, much heavier",
|
||||
"type": "rectangle",
|
||||
"pos": {
|
||||
"x": 477,
|
||||
"x": 567,
|
||||
"y": 1480
|
||||
},
|
||||
"width": 516,
|
||||
|
|
@ -353,7 +353,7 @@
|
|||
"y": 306
|
||||
},
|
||||
{
|
||||
"x": 295,
|
||||
"x": 325,
|
||||
"y": 306
|
||||
}
|
||||
],
|
||||
|
|
@ -388,11 +388,11 @@
|
|||
"labelPercentage": 0,
|
||||
"route": [
|
||||
{
|
||||
"x": 295,
|
||||
"x": 325,
|
||||
"y": 948
|
||||
},
|
||||
{
|
||||
"x": 515,
|
||||
"x": 575,
|
||||
"y": 948
|
||||
}
|
||||
],
|
||||
|
|
@ -427,11 +427,11 @@
|
|||
"labelPercentage": 0,
|
||||
"route": [
|
||||
{
|
||||
"x": 515,
|
||||
"x": 575,
|
||||
"y": 1350
|
||||
},
|
||||
{
|
||||
"x": 295,
|
||||
"x": 325,
|
||||
"y": 1350
|
||||
}
|
||||
],
|
||||
|
|
@ -505,11 +505,11 @@
|
|||
"labelPercentage": 0,
|
||||
"route": [
|
||||
{
|
||||
"x": 295,
|
||||
"x": 325,
|
||||
"y": 176
|
||||
},
|
||||
{
|
||||
"x": 295,
|
||||
"x": 325,
|
||||
"y": 1736
|
||||
}
|
||||
],
|
||||
|
|
@ -544,11 +544,11 @@
|
|||
"labelPercentage": 0,
|
||||
"route": [
|
||||
{
|
||||
"x": 515,
|
||||
"x": 575,
|
||||
"y": 176
|
||||
},
|
||||
{
|
||||
"x": 515,
|
||||
"x": 575,
|
||||
"y": 1736
|
||||
}
|
||||
],
|
||||
|
|
@ -583,11 +583,11 @@
|
|||
"labelPercentage": 0,
|
||||
"route": [
|
||||
{
|
||||
"x": 735,
|
||||
"x": 825,
|
||||
"y": 176
|
||||
},
|
||||
{
|
||||
"x": 735,
|
||||
"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="1238" height="1886" viewBox="-145 -50 1238 1886"><style type="text/css">
|
||||
width="1328" height="1886" viewBox="-145 -50 1328 1886"><style type="text/css">
|
||||
<![CDATA[
|
||||
.shape {
|
||||
shape-rendering: geometricPrecision;
|
||||
|
|
@ -18,9 +18,9 @@ width="1238" height="1886" viewBox="-145 -50 1238 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" 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="220" y="50" width="150" height="126" style="fill:#EDF0FD;stroke:#0D32B2;opacity:1.000000;stroke-width:2;" /></g><text class="text" x="295.000000" y="116.000000" style="text-anchor:middle;font-size:16px;fill:#0A0F25">b</text></g><g id="c"><g class="shape" ><rect x="440" y="50" width="150" height="126" style="fill:#EDF0FD;stroke:#0D32B2;opacity:1.000000;stroke-width:2;" /></g><text class="text" x="515.000000" y="116.000000" style="text-anchor:middle;font-size:16px;fill:#0A0F25">c</text></g><g id="d"><g class="shape" ><rect x="660" y="50" width="150" height="126" style="fill:#EDF0FD;stroke:#0D32B2;opacity:1.000000;stroke-width:2;" /></g><text class="text" x="735.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 295.000000 178.000000 L 295.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 515.000000 178.000000 L 515.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 735.000000 178.000000 L 735.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 291.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 297.000000 948.000000 L 511.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 513.000000 1350.000000 L 299.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="405.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="-17" y="436" width="184" height="126" style="fill:#FFFFFF;stroke:#0D32B2;opacity:1.000000;stroke-width:2;" /></g><text class="text" 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="-45" y="692" width="241" height="126" style="fill:#FFFFFF;stroke:#0D32B2;opacity:1.000000;stroke-width:2;" /></g><text class="text" x="75.500000" 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="106" y="1078" width="378" height="142" style="fill:#FFFFFF;stroke:#0D32B2;opacity:1.000000;stroke-width:2;" /></g><text class="text" x="295.000000" y="1144.000000" style="text-anchor:middle;font-size:16px;fill:#0A0F25"><tspan x="295.000000" dy="0.000000">Some one who believes imaginary things</tspan><tspan x="295.000000" 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="477" y="1480" width="516" height="126" style="fill:#FFFFFF;stroke:#0D32B2;opacity:1.000000;stroke-width:2;" /></g><text class="text" x="735.000000" 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="1238" height="1886">
|
||||
<rect x="0" y="0" width="1238" height="1886" fill="white"></rect>
|
||||
<rect x="389.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" 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" 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" 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" 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="-17" y="436" width="184" height="126" style="fill:#FFFFFF;stroke:#0D32B2;opacity:1.000000;stroke-width:2;" /></g><text class="text" 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="-45" y="692" width="241" height="126" style="fill:#FFFFFF;stroke:#0D32B2;opacity:1.000000;stroke-width:2;" /></g><text class="text" x="75.500000" 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="136" y="1078" width="378" height="142" style="fill:#FFFFFF;stroke:#0D32B2;opacity:1.000000;stroke-width:2;" /></g><text class="text" x="325.000000" y="1144.000000" style="text-anchor:middle;font-size:16px;fill:#0A0F25"><tspan x="325.000000" dy="0.000000">Some one who believes imaginary things</tspan><tspan x="325.000000" 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="567" y="1480" width="516" height="126" style="fill:#FFFFFF;stroke:#0D32B2;opacity:1.000000;stroke-width:2;" /></g><text class="text" x="825.000000" 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="1328" height="1886">
|
||||
<rect x="0" y="0" width="1328" 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 {
|
||||
font-family: "font-regular";
|
||||
|
|
|
|||
|
Before Width: | Height: | Size: 472 KiB After Width: | Height: | Size: 472 KiB |
32
e2etests/testdata/stable/sequence_diagram_note/elk/board.exp.json
generated
vendored
|
|
@ -45,7 +45,7 @@
|
|||
"id": "b",
|
||||
"type": "",
|
||||
"pos": {
|
||||
"x": 220,
|
||||
"x": 250,
|
||||
"y": 50
|
||||
},
|
||||
"width": 150,
|
||||
|
|
@ -85,7 +85,7 @@
|
|||
"id": "c",
|
||||
"type": "",
|
||||
"pos": {
|
||||
"x": 440,
|
||||
"x": 500,
|
||||
"y": 50
|
||||
},
|
||||
"width": 150,
|
||||
|
|
@ -125,7 +125,7 @@
|
|||
"id": "d",
|
||||
"type": "",
|
||||
"pos": {
|
||||
"x": 660,
|
||||
"x": 750,
|
||||
"y": 50
|
||||
},
|
||||
"width": 150,
|
||||
|
|
@ -245,7 +245,7 @@
|
|||
"id": "b.\"Some one who believes imaginary things\\n appear right before your i's.\"",
|
||||
"type": "rectangle",
|
||||
"pos": {
|
||||
"x": 106,
|
||||
"x": 136,
|
||||
"y": 1078
|
||||
},
|
||||
"width": 378,
|
||||
|
|
@ -285,7 +285,7 @@
|
|||
"id": "d.The earth is like a tiny grain of sand, only much, much heavier",
|
||||
"type": "rectangle",
|
||||
"pos": {
|
||||
"x": 477,
|
||||
"x": 567,
|
||||
"y": 1480
|
||||
},
|
||||
"width": 516,
|
||||
|
|
@ -353,7 +353,7 @@
|
|||
"y": 306
|
||||
},
|
||||
{
|
||||
"x": 295,
|
||||
"x": 325,
|
||||
"y": 306
|
||||
}
|
||||
],
|
||||
|
|
@ -388,11 +388,11 @@
|
|||
"labelPercentage": 0,
|
||||
"route": [
|
||||
{
|
||||
"x": 295,
|
||||
"x": 325,
|
||||
"y": 948
|
||||
},
|
||||
{
|
||||
"x": 515,
|
||||
"x": 575,
|
||||
"y": 948
|
||||
}
|
||||
],
|
||||
|
|
@ -427,11 +427,11 @@
|
|||
"labelPercentage": 0,
|
||||
"route": [
|
||||
{
|
||||
"x": 515,
|
||||
"x": 575,
|
||||
"y": 1350
|
||||
},
|
||||
{
|
||||
"x": 295,
|
||||
"x": 325,
|
||||
"y": 1350
|
||||
}
|
||||
],
|
||||
|
|
@ -505,11 +505,11 @@
|
|||
"labelPercentage": 0,
|
||||
"route": [
|
||||
{
|
||||
"x": 295,
|
||||
"x": 325,
|
||||
"y": 176
|
||||
},
|
||||
{
|
||||
"x": 295,
|
||||
"x": 325,
|
||||
"y": 1736
|
||||
}
|
||||
],
|
||||
|
|
@ -544,11 +544,11 @@
|
|||
"labelPercentage": 0,
|
||||
"route": [
|
||||
{
|
||||
"x": 515,
|
||||
"x": 575,
|
||||
"y": 176
|
||||
},
|
||||
{
|
||||
"x": 515,
|
||||
"x": 575,
|
||||
"y": 1736
|
||||
}
|
||||
],
|
||||
|
|
@ -583,11 +583,11 @@
|
|||
"labelPercentage": 0,
|
||||
"route": [
|
||||
{
|
||||
"x": 735,
|
||||
"x": 825,
|
||||
"y": 176
|
||||
},
|
||||
{
|
||||
"x": 735,
|
||||
"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="1238" height="1886" viewBox="-145 -50 1238 1886"><style type="text/css">
|
||||
width="1328" height="1886" viewBox="-145 -50 1328 1886"><style type="text/css">
|
||||
<![CDATA[
|
||||
.shape {
|
||||
shape-rendering: geometricPrecision;
|
||||
|
|
@ -18,9 +18,9 @@ width="1238" height="1886" viewBox="-145 -50 1238 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" 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="220" y="50" width="150" height="126" style="fill:#EDF0FD;stroke:#0D32B2;opacity:1.000000;stroke-width:2;" /></g><text class="text" x="295.000000" y="116.000000" style="text-anchor:middle;font-size:16px;fill:#0A0F25">b</text></g><g id="c"><g class="shape" ><rect x="440" y="50" width="150" height="126" style="fill:#EDF0FD;stroke:#0D32B2;opacity:1.000000;stroke-width:2;" /></g><text class="text" x="515.000000" y="116.000000" style="text-anchor:middle;font-size:16px;fill:#0A0F25">c</text></g><g id="d"><g class="shape" ><rect x="660" y="50" width="150" height="126" style="fill:#EDF0FD;stroke:#0D32B2;opacity:1.000000;stroke-width:2;" /></g><text class="text" x="735.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 295.000000 178.000000 L 295.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 515.000000 178.000000 L 515.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 735.000000 178.000000 L 735.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 291.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 297.000000 948.000000 L 511.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 513.000000 1350.000000 L 299.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="405.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="-17" y="436" width="184" height="126" style="fill:#FFFFFF;stroke:#0D32B2;opacity:1.000000;stroke-width:2;" /></g><text class="text" 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="-45" y="692" width="241" height="126" style="fill:#FFFFFF;stroke:#0D32B2;opacity:1.000000;stroke-width:2;" /></g><text class="text" x="75.500000" 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="106" y="1078" width="378" height="142" style="fill:#FFFFFF;stroke:#0D32B2;opacity:1.000000;stroke-width:2;" /></g><text class="text" x="295.000000" y="1144.000000" style="text-anchor:middle;font-size:16px;fill:#0A0F25"><tspan x="295.000000" dy="0.000000">Some one who believes imaginary things</tspan><tspan x="295.000000" 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="477" y="1480" width="516" height="126" style="fill:#FFFFFF;stroke:#0D32B2;opacity:1.000000;stroke-width:2;" /></g><text class="text" x="735.000000" 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="1238" height="1886">
|
||||
<rect x="0" y="0" width="1238" height="1886" fill="white"></rect>
|
||||
<rect x="389.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" 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" 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" 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" 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="-17" y="436" width="184" height="126" style="fill:#FFFFFF;stroke:#0D32B2;opacity:1.000000;stroke-width:2;" /></g><text class="text" 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="-45" y="692" width="241" height="126" style="fill:#FFFFFF;stroke:#0D32B2;opacity:1.000000;stroke-width:2;" /></g><text class="text" x="75.500000" 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="136" y="1078" width="378" height="142" style="fill:#FFFFFF;stroke:#0D32B2;opacity:1.000000;stroke-width:2;" /></g><text class="text" x="325.000000" y="1144.000000" style="text-anchor:middle;font-size:16px;fill:#0A0F25"><tspan x="325.000000" dy="0.000000">Some one who believes imaginary things</tspan><tspan x="325.000000" 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="567" y="1480" width="516" height="126" style="fill:#FFFFFF;stroke:#0D32B2;opacity:1.000000;stroke-width:2;" /></g><text class="text" x="825.000000" 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="1328" height="1886">
|
||||
<rect x="0" y="0" width="1328" 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 {
|
||||
font-family: "font-regular";
|
||||
|
|
|
|||
|
Before Width: | Height: | Size: 472 KiB After Width: | Height: | Size: 472 KiB |
96
e2etests/testdata/stable/sequence_diagram_real/dagre/board.exp.json
generated
vendored
|
|
@ -8,7 +8,7 @@
|
|||
"x": 0,
|
||||
"y": 0
|
||||
},
|
||||
"width": 2174,
|
||||
"width": 2199,
|
||||
"height": 2288,
|
||||
"opacity": 1,
|
||||
"strokeDash": 0,
|
||||
|
|
@ -85,7 +85,7 @@
|
|||
"id": "How this is rendered.d2ast",
|
||||
"type": "",
|
||||
"pos": {
|
||||
"x": 220,
|
||||
"x": 250,
|
||||
"y": 86
|
||||
},
|
||||
"width": 150,
|
||||
|
|
@ -125,7 +125,7 @@
|
|||
"id": "How this is rendered.d2compiler",
|
||||
"type": "",
|
||||
"pos": {
|
||||
"x": 440,
|
||||
"x": 484,
|
||||
"y": 86
|
||||
},
|
||||
"width": 182,
|
||||
|
|
@ -165,7 +165,7 @@
|
|||
"id": "How this is rendered.d2layout",
|
||||
"type": "",
|
||||
"pos": {
|
||||
"x": 692,
|
||||
"x": 743,
|
||||
"y": 86
|
||||
},
|
||||
"width": 165,
|
||||
|
|
@ -205,7 +205,7 @@
|
|||
"id": "How this is rendered.d2exporter",
|
||||
"type": "",
|
||||
"pos": {
|
||||
"x": 927,
|
||||
"x": 985,
|
||||
"y": 86
|
||||
},
|
||||
"width": 180,
|
||||
|
|
@ -245,7 +245,7 @@
|
|||
"id": "How this is rendered.d2themes",
|
||||
"type": "",
|
||||
"pos": {
|
||||
"x": 1177,
|
||||
"x": 1239,
|
||||
"y": 86
|
||||
},
|
||||
"width": 173,
|
||||
|
|
@ -285,7 +285,7 @@
|
|||
"id": "How this is rendered.d2renderer",
|
||||
"type": "",
|
||||
"pos": {
|
||||
"x": 1420,
|
||||
"x": 1485,
|
||||
"y": 86
|
||||
},
|
||||
"width": 181,
|
||||
|
|
@ -325,7 +325,7 @@
|
|||
"id": "How this is rendered.d2compiler.measurements also take place",
|
||||
"type": "rectangle",
|
||||
"pos": {
|
||||
"x": 377,
|
||||
"x": 421,
|
||||
"y": 732
|
||||
},
|
||||
"width": 307,
|
||||
|
|
@ -365,10 +365,10 @@
|
|||
"id": "How this is rendered.only if root is not sequence",
|
||||
"type": "",
|
||||
"pos": {
|
||||
"x": 730,
|
||||
"x": 781,
|
||||
"y": 1338
|
||||
},
|
||||
"width": 1391,
|
||||
"width": 1365,
|
||||
"height": 80,
|
||||
"opacity": 1,
|
||||
"strokeDash": 0,
|
||||
|
|
@ -404,7 +404,7 @@
|
|||
"id": "How this is rendered.d2layout.layout",
|
||||
"type": "rectangle",
|
||||
"pos": {
|
||||
"x": 768,
|
||||
"x": 819,
|
||||
"y": 1102
|
||||
},
|
||||
"width": 12,
|
||||
|
|
@ -443,7 +443,7 @@
|
|||
"id": "How this is rendered.d2sequencelayout",
|
||||
"type": "",
|
||||
"pos": {
|
||||
"x": 1671,
|
||||
"x": 1716,
|
||||
"y": 86
|
||||
},
|
||||
"width": 229,
|
||||
|
|
@ -483,7 +483,7 @@
|
|||
"id": "How this is rendered.d2dagrelayout",
|
||||
"type": "",
|
||||
"pos": {
|
||||
"x": 1970,
|
||||
"x": 1995,
|
||||
"y": 86
|
||||
},
|
||||
"width": 204,
|
||||
|
|
@ -523,7 +523,7 @@
|
|||
"id": "How this is rendered.d2exporter.export",
|
||||
"type": "rectangle",
|
||||
"pos": {
|
||||
"x": 1011,
|
||||
"x": 1069,
|
||||
"y": 1882
|
||||
},
|
||||
"width": 12,
|
||||
|
|
@ -590,7 +590,7 @@
|
|||
"y": 342
|
||||
},
|
||||
{
|
||||
"x": 295,
|
||||
"x": 325,
|
||||
"y": 342
|
||||
}
|
||||
],
|
||||
|
|
@ -625,7 +625,7 @@
|
|||
"labelPercentage": 0,
|
||||
"route": [
|
||||
{
|
||||
"x": 295,
|
||||
"x": 325,
|
||||
"y": 472
|
||||
},
|
||||
{
|
||||
|
|
@ -668,7 +668,7 @@
|
|||
"y": 602
|
||||
},
|
||||
{
|
||||
"x": 531,
|
||||
"x": 575,
|
||||
"y": 602
|
||||
}
|
||||
],
|
||||
|
|
@ -703,7 +703,7 @@
|
|||
"labelPercentage": 0,
|
||||
"route": [
|
||||
{
|
||||
"x": 531,
|
||||
"x": 575,
|
||||
"y": 988
|
||||
},
|
||||
{
|
||||
|
|
@ -746,7 +746,7 @@
|
|||
"y": 1118
|
||||
},
|
||||
{
|
||||
"x": 768.5,
|
||||
"x": 819.5,
|
||||
"y": 1118
|
||||
}
|
||||
],
|
||||
|
|
@ -781,11 +781,11 @@
|
|||
"labelPercentage": 0,
|
||||
"route": [
|
||||
{
|
||||
"x": 780.5,
|
||||
"x": 831.5,
|
||||
"y": 1248
|
||||
},
|
||||
{
|
||||
"x": 1785.5,
|
||||
"x": 1830.5,
|
||||
"y": 1248
|
||||
}
|
||||
],
|
||||
|
|
@ -820,11 +820,11 @@
|
|||
"labelPercentage": 0,
|
||||
"route": [
|
||||
{
|
||||
"x": 780.5,
|
||||
"x": 831.5,
|
||||
"y": 1378
|
||||
},
|
||||
{
|
||||
"x": 2072,
|
||||
"x": 2097,
|
||||
"y": 1378
|
||||
}
|
||||
],
|
||||
|
|
@ -859,11 +859,11 @@
|
|||
"labelPercentage": 0,
|
||||
"route": [
|
||||
{
|
||||
"x": 780.5,
|
||||
"x": 831.5,
|
||||
"y": 1508
|
||||
},
|
||||
{
|
||||
"x": 1785.5,
|
||||
"x": 1830.5,
|
||||
"y": 1508
|
||||
}
|
||||
],
|
||||
|
|
@ -898,7 +898,7 @@
|
|||
"labelPercentage": 0,
|
||||
"route": [
|
||||
{
|
||||
"x": 774.5,
|
||||
"x": 825.5,
|
||||
"y": 1638
|
||||
},
|
||||
{
|
||||
|
|
@ -941,7 +941,7 @@
|
|||
"y": 1768
|
||||
},
|
||||
{
|
||||
"x": 1017,
|
||||
"x": 1075,
|
||||
"y": 1768
|
||||
}
|
||||
],
|
||||
|
|
@ -976,11 +976,11 @@
|
|||
"labelPercentage": 0,
|
||||
"route": [
|
||||
{
|
||||
"x": 1023,
|
||||
"x": 1081,
|
||||
"y": 1898
|
||||
},
|
||||
{
|
||||
"x": 1263.5,
|
||||
"x": 1325.5,
|
||||
"y": 1898
|
||||
}
|
||||
],
|
||||
|
|
@ -1015,11 +1015,11 @@
|
|||
"labelPercentage": 0,
|
||||
"route": [
|
||||
{
|
||||
"x": 1023,
|
||||
"x": 1081,
|
||||
"y": 2028
|
||||
},
|
||||
{
|
||||
"x": 1510.5,
|
||||
"x": 1575.5,
|
||||
"y": 2028
|
||||
}
|
||||
],
|
||||
|
|
@ -1054,7 +1054,7 @@
|
|||
"labelPercentage": 0,
|
||||
"route": [
|
||||
{
|
||||
"x": 1011,
|
||||
"x": 1069,
|
||||
"y": 2158
|
||||
},
|
||||
{
|
||||
|
|
@ -1132,11 +1132,11 @@
|
|||
"labelPercentage": 0,
|
||||
"route": [
|
||||
{
|
||||
"x": 295,
|
||||
"x": 325,
|
||||
"y": 212
|
||||
},
|
||||
{
|
||||
"x": 295,
|
||||
"x": 325,
|
||||
"y": 2288
|
||||
}
|
||||
],
|
||||
|
|
@ -1171,11 +1171,11 @@
|
|||
"labelPercentage": 0,
|
||||
"route": [
|
||||
{
|
||||
"x": 531,
|
||||
"x": 575,
|
||||
"y": 212
|
||||
},
|
||||
{
|
||||
"x": 531,
|
||||
"x": 575,
|
||||
"y": 2288
|
||||
}
|
||||
],
|
||||
|
|
@ -1210,11 +1210,11 @@
|
|||
"labelPercentage": 0,
|
||||
"route": [
|
||||
{
|
||||
"x": 774.5,
|
||||
"x": 825.5,
|
||||
"y": 212
|
||||
},
|
||||
{
|
||||
"x": 774.5,
|
||||
"x": 825.5,
|
||||
"y": 2288
|
||||
}
|
||||
],
|
||||
|
|
@ -1249,11 +1249,11 @@
|
|||
"labelPercentage": 0,
|
||||
"route": [
|
||||
{
|
||||
"x": 1017,
|
||||
"x": 1075,
|
||||
"y": 212
|
||||
},
|
||||
{
|
||||
"x": 1017,
|
||||
"x": 1075,
|
||||
"y": 2288
|
||||
}
|
||||
],
|
||||
|
|
@ -1288,11 +1288,11 @@
|
|||
"labelPercentage": 0,
|
||||
"route": [
|
||||
{
|
||||
"x": 1263.5,
|
||||
"x": 1325.5,
|
||||
"y": 212
|
||||
},
|
||||
{
|
||||
"x": 1263.5,
|
||||
"x": 1325.5,
|
||||
"y": 2288
|
||||
}
|
||||
],
|
||||
|
|
@ -1327,11 +1327,11 @@
|
|||
"labelPercentage": 0,
|
||||
"route": [
|
||||
{
|
||||
"x": 1510.5,
|
||||
"x": 1575.5,
|
||||
"y": 212
|
||||
},
|
||||
{
|
||||
"x": 1510.5,
|
||||
"x": 1575.5,
|
||||
"y": 2288
|
||||
}
|
||||
],
|
||||
|
|
@ -1366,11 +1366,11 @@
|
|||
"labelPercentage": 0,
|
||||
"route": [
|
||||
{
|
||||
"x": 1785.5,
|
||||
"x": 1830.5,
|
||||
"y": 212
|
||||
},
|
||||
{
|
||||
"x": 1785.5,
|
||||
"x": 1830.5,
|
||||
"y": 2288
|
||||
}
|
||||
],
|
||||
|
|
@ -1405,11 +1405,11 @@
|
|||
"labelPercentage": 0,
|
||||
"route": [
|
||||
{
|
||||
"x": 2072,
|
||||
"x": 2097,
|
||||
"y": 212
|
||||
},
|
||||
{
|
||||
"x": 2072,
|
||||
"x": 2097,
|
||||
"y": 2288
|
||||
}
|
||||
],
|
||||
|
|
|
|||
|
Before Width: | Height: | Size: 480 KiB After Width: | Height: | Size: 480 KiB |
96
e2etests/testdata/stable/sequence_diagram_real/elk/board.exp.json
generated
vendored
|
|
@ -8,7 +8,7 @@
|
|||
"x": 12,
|
||||
"y": 12
|
||||
},
|
||||
"width": 2174,
|
||||
"width": 2199,
|
||||
"height": 2288,
|
||||
"opacity": 1,
|
||||
"strokeDash": 0,
|
||||
|
|
@ -85,7 +85,7 @@
|
|||
"id": "How this is rendered.d2ast",
|
||||
"type": "",
|
||||
"pos": {
|
||||
"x": 232,
|
||||
"x": 262,
|
||||
"y": 98
|
||||
},
|
||||
"width": 150,
|
||||
|
|
@ -125,7 +125,7 @@
|
|||
"id": "How this is rendered.d2compiler",
|
||||
"type": "",
|
||||
"pos": {
|
||||
"x": 452,
|
||||
"x": 496,
|
||||
"y": 98
|
||||
},
|
||||
"width": 182,
|
||||
|
|
@ -165,7 +165,7 @@
|
|||
"id": "How this is rendered.d2layout",
|
||||
"type": "",
|
||||
"pos": {
|
||||
"x": 704,
|
||||
"x": 755,
|
||||
"y": 98
|
||||
},
|
||||
"width": 165,
|
||||
|
|
@ -205,7 +205,7 @@
|
|||
"id": "How this is rendered.d2exporter",
|
||||
"type": "",
|
||||
"pos": {
|
||||
"x": 939,
|
||||
"x": 997,
|
||||
"y": 98
|
||||
},
|
||||
"width": 180,
|
||||
|
|
@ -245,7 +245,7 @@
|
|||
"id": "How this is rendered.d2themes",
|
||||
"type": "",
|
||||
"pos": {
|
||||
"x": 1189,
|
||||
"x": 1251,
|
||||
"y": 98
|
||||
},
|
||||
"width": 173,
|
||||
|
|
@ -285,7 +285,7 @@
|
|||
"id": "How this is rendered.d2renderer",
|
||||
"type": "",
|
||||
"pos": {
|
||||
"x": 1432,
|
||||
"x": 1497,
|
||||
"y": 98
|
||||
},
|
||||
"width": 181,
|
||||
|
|
@ -325,7 +325,7 @@
|
|||
"id": "How this is rendered.d2compiler.measurements also take place",
|
||||
"type": "rectangle",
|
||||
"pos": {
|
||||
"x": 377,
|
||||
"x": 421,
|
||||
"y": 732
|
||||
},
|
||||
"width": 307,
|
||||
|
|
@ -365,10 +365,10 @@
|
|||
"id": "How this is rendered.only if root is not sequence",
|
||||
"type": "",
|
||||
"pos": {
|
||||
"x": 730,
|
||||
"x": 781,
|
||||
"y": 1338
|
||||
},
|
||||
"width": 1391,
|
||||
"width": 1365,
|
||||
"height": 80,
|
||||
"opacity": 1,
|
||||
"strokeDash": 0,
|
||||
|
|
@ -404,7 +404,7 @@
|
|||
"id": "How this is rendered.d2layout.layout",
|
||||
"type": "rectangle",
|
||||
"pos": {
|
||||
"x": 780,
|
||||
"x": 831,
|
||||
"y": 1114
|
||||
},
|
||||
"width": 12,
|
||||
|
|
@ -443,7 +443,7 @@
|
|||
"id": "How this is rendered.d2sequencelayout",
|
||||
"type": "",
|
||||
"pos": {
|
||||
"x": 1683,
|
||||
"x": 1728,
|
||||
"y": 98
|
||||
},
|
||||
"width": 229,
|
||||
|
|
@ -483,7 +483,7 @@
|
|||
"id": "How this is rendered.d2dagrelayout",
|
||||
"type": "",
|
||||
"pos": {
|
||||
"x": 1982,
|
||||
"x": 2007,
|
||||
"y": 98
|
||||
},
|
||||
"width": 204,
|
||||
|
|
@ -523,7 +523,7 @@
|
|||
"id": "How this is rendered.d2exporter.export",
|
||||
"type": "rectangle",
|
||||
"pos": {
|
||||
"x": 1023,
|
||||
"x": 1081,
|
||||
"y": 1894
|
||||
},
|
||||
"width": 12,
|
||||
|
|
@ -590,7 +590,7 @@
|
|||
"y": 354
|
||||
},
|
||||
{
|
||||
"x": 307,
|
||||
"x": 337,
|
||||
"y": 354
|
||||
}
|
||||
],
|
||||
|
|
@ -625,7 +625,7 @@
|
|||
"labelPercentage": 0,
|
||||
"route": [
|
||||
{
|
||||
"x": 307,
|
||||
"x": 337,
|
||||
"y": 484
|
||||
},
|
||||
{
|
||||
|
|
@ -668,7 +668,7 @@
|
|||
"y": 614
|
||||
},
|
||||
{
|
||||
"x": 543,
|
||||
"x": 587,
|
||||
"y": 614
|
||||
}
|
||||
],
|
||||
|
|
@ -703,7 +703,7 @@
|
|||
"labelPercentage": 0,
|
||||
"route": [
|
||||
{
|
||||
"x": 543,
|
||||
"x": 587,
|
||||
"y": 1000
|
||||
},
|
||||
{
|
||||
|
|
@ -746,7 +746,7 @@
|
|||
"y": 1130
|
||||
},
|
||||
{
|
||||
"x": 780.5,
|
||||
"x": 831.5,
|
||||
"y": 1130
|
||||
}
|
||||
],
|
||||
|
|
@ -781,11 +781,11 @@
|
|||
"labelPercentage": 0,
|
||||
"route": [
|
||||
{
|
||||
"x": 792.5,
|
||||
"x": 843.5,
|
||||
"y": 1260
|
||||
},
|
||||
{
|
||||
"x": 1797.5,
|
||||
"x": 1842.5,
|
||||
"y": 1260
|
||||
}
|
||||
],
|
||||
|
|
@ -820,11 +820,11 @@
|
|||
"labelPercentage": 0,
|
||||
"route": [
|
||||
{
|
||||
"x": 792.5,
|
||||
"x": 843.5,
|
||||
"y": 1390
|
||||
},
|
||||
{
|
||||
"x": 2084,
|
||||
"x": 2109,
|
||||
"y": 1390
|
||||
}
|
||||
],
|
||||
|
|
@ -859,11 +859,11 @@
|
|||
"labelPercentage": 0,
|
||||
"route": [
|
||||
{
|
||||
"x": 792.5,
|
||||
"x": 843.5,
|
||||
"y": 1520
|
||||
},
|
||||
{
|
||||
"x": 1797.5,
|
||||
"x": 1842.5,
|
||||
"y": 1520
|
||||
}
|
||||
],
|
||||
|
|
@ -898,7 +898,7 @@
|
|||
"labelPercentage": 0,
|
||||
"route": [
|
||||
{
|
||||
"x": 786.5,
|
||||
"x": 837.5,
|
||||
"y": 1650
|
||||
},
|
||||
{
|
||||
|
|
@ -941,7 +941,7 @@
|
|||
"y": 1780
|
||||
},
|
||||
{
|
||||
"x": 1029,
|
||||
"x": 1087,
|
||||
"y": 1780
|
||||
}
|
||||
],
|
||||
|
|
@ -976,11 +976,11 @@
|
|||
"labelPercentage": 0,
|
||||
"route": [
|
||||
{
|
||||
"x": 1035,
|
||||
"x": 1093,
|
||||
"y": 1910
|
||||
},
|
||||
{
|
||||
"x": 1275.5,
|
||||
"x": 1337.5,
|
||||
"y": 1910
|
||||
}
|
||||
],
|
||||
|
|
@ -1015,11 +1015,11 @@
|
|||
"labelPercentage": 0,
|
||||
"route": [
|
||||
{
|
||||
"x": 1035,
|
||||
"x": 1093,
|
||||
"y": 2040
|
||||
},
|
||||
{
|
||||
"x": 1522.5,
|
||||
"x": 1587.5,
|
||||
"y": 2040
|
||||
}
|
||||
],
|
||||
|
|
@ -1054,7 +1054,7 @@
|
|||
"labelPercentage": 0,
|
||||
"route": [
|
||||
{
|
||||
"x": 1023,
|
||||
"x": 1081,
|
||||
"y": 2170
|
||||
},
|
||||
{
|
||||
|
|
@ -1132,11 +1132,11 @@
|
|||
"labelPercentage": 0,
|
||||
"route": [
|
||||
{
|
||||
"x": 307,
|
||||
"x": 337,
|
||||
"y": 224
|
||||
},
|
||||
{
|
||||
"x": 307,
|
||||
"x": 337,
|
||||
"y": 2300
|
||||
}
|
||||
],
|
||||
|
|
@ -1171,11 +1171,11 @@
|
|||
"labelPercentage": 0,
|
||||
"route": [
|
||||
{
|
||||
"x": 543,
|
||||
"x": 587,
|
||||
"y": 224
|
||||
},
|
||||
{
|
||||
"x": 543,
|
||||
"x": 587,
|
||||
"y": 2300
|
||||
}
|
||||
],
|
||||
|
|
@ -1210,11 +1210,11 @@
|
|||
"labelPercentage": 0,
|
||||
"route": [
|
||||
{
|
||||
"x": 786.5,
|
||||
"x": 837.5,
|
||||
"y": 224
|
||||
},
|
||||
{
|
||||
"x": 786.5,
|
||||
"x": 837.5,
|
||||
"y": 2300
|
||||
}
|
||||
],
|
||||
|
|
@ -1249,11 +1249,11 @@
|
|||
"labelPercentage": 0,
|
||||
"route": [
|
||||
{
|
||||
"x": 1029,
|
||||
"x": 1087,
|
||||
"y": 224
|
||||
},
|
||||
{
|
||||
"x": 1029,
|
||||
"x": 1087,
|
||||
"y": 2300
|
||||
}
|
||||
],
|
||||
|
|
@ -1288,11 +1288,11 @@
|
|||
"labelPercentage": 0,
|
||||
"route": [
|
||||
{
|
||||
"x": 1275.5,
|
||||
"x": 1337.5,
|
||||
"y": 224
|
||||
},
|
||||
{
|
||||
"x": 1275.5,
|
||||
"x": 1337.5,
|
||||
"y": 2300
|
||||
}
|
||||
],
|
||||
|
|
@ -1327,11 +1327,11 @@
|
|||
"labelPercentage": 0,
|
||||
"route": [
|
||||
{
|
||||
"x": 1522.5,
|
||||
"x": 1587.5,
|
||||
"y": 224
|
||||
},
|
||||
{
|
||||
"x": 1522.5,
|
||||
"x": 1587.5,
|
||||
"y": 2300
|
||||
}
|
||||
],
|
||||
|
|
@ -1366,11 +1366,11 @@
|
|||
"labelPercentage": 0,
|
||||
"route": [
|
||||
{
|
||||
"x": 1797.5,
|
||||
"x": 1842.5,
|
||||
"y": 224
|
||||
},
|
||||
{
|
||||
"x": 1797.5,
|
||||
"x": 1842.5,
|
||||
"y": 2300
|
||||
}
|
||||
],
|
||||
|
|
@ -1405,11 +1405,11 @@
|
|||
"labelPercentage": 0,
|
||||
"route": [
|
||||
{
|
||||
"x": 2084,
|
||||
"x": 2109,
|
||||
"y": 224
|
||||
},
|
||||
{
|
||||
"x": 2084,
|
||||
"x": 2109,
|
||||
"y": 2300
|
||||
}
|
||||
],
|
||||
|
|
|
|||
|
Before Width: | Height: | Size: 480 KiB After Width: | Height: | Size: 480 KiB |
42
e2etests/testdata/stable/sequence_diagram_self_edges/dagre/board.exp.json
generated
vendored
|
|
@ -45,7 +45,7 @@
|
|||
"id": "b",
|
||||
"type": "",
|
||||
"pos": {
|
||||
"x": 220,
|
||||
"x": 250,
|
||||
"y": 50
|
||||
},
|
||||
"width": 150,
|
||||
|
|
@ -85,7 +85,7 @@
|
|||
"id": "b.1",
|
||||
"type": "rectangle",
|
||||
"pos": {
|
||||
"x": 289,
|
||||
"x": 319,
|
||||
"y": 630
|
||||
},
|
||||
"width": 12,
|
||||
|
|
@ -124,7 +124,7 @@
|
|||
"id": "b.1.2",
|
||||
"type": "rectangle",
|
||||
"pos": {
|
||||
"x": 285,
|
||||
"x": 315,
|
||||
"y": 760
|
||||
},
|
||||
"width": 20,
|
||||
|
|
@ -241,7 +241,7 @@
|
|||
"id": "b.3",
|
||||
"type": "rectangle",
|
||||
"pos": {
|
||||
"x": 289,
|
||||
"x": 319,
|
||||
"y": 1070
|
||||
},
|
||||
"width": 12,
|
||||
|
|
@ -355,7 +355,7 @@
|
|||
"y": 436
|
||||
},
|
||||
{
|
||||
"x": 295,
|
||||
"x": 325,
|
||||
"y": 436
|
||||
}
|
||||
],
|
||||
|
|
@ -390,19 +390,19 @@
|
|||
"labelPercentage": 0,
|
||||
"route": [
|
||||
{
|
||||
"x": 295,
|
||||
"x": 325,
|
||||
"y": 566
|
||||
},
|
||||
{
|
||||
"x": 395,
|
||||
"x": 425,
|
||||
"y": 566
|
||||
},
|
||||
{
|
||||
"x": 395,
|
||||
"x": 425,
|
||||
"y": 646
|
||||
},
|
||||
{
|
||||
"x": 301,
|
||||
"x": 331,
|
||||
"y": 646
|
||||
}
|
||||
],
|
||||
|
|
@ -437,19 +437,19 @@
|
|||
"labelPercentage": 0,
|
||||
"route": [
|
||||
{
|
||||
"x": 301,
|
||||
"x": 331,
|
||||
"y": 696
|
||||
},
|
||||
{
|
||||
"x": 395,
|
||||
"x": 425,
|
||||
"y": 696
|
||||
},
|
||||
{
|
||||
"x": 395,
|
||||
"x": 425,
|
||||
"y": 776
|
||||
},
|
||||
{
|
||||
"x": 305,
|
||||
"x": 335,
|
||||
"y": 776
|
||||
}
|
||||
],
|
||||
|
|
@ -484,19 +484,19 @@
|
|||
"labelPercentage": 0,
|
||||
"route": [
|
||||
{
|
||||
"x": 305,
|
||||
"x": 335,
|
||||
"y": 826
|
||||
},
|
||||
{
|
||||
"x": 395,
|
||||
"x": 425,
|
||||
"y": 826
|
||||
},
|
||||
{
|
||||
"x": 395,
|
||||
"x": 425,
|
||||
"y": 906
|
||||
},
|
||||
{
|
||||
"x": 295,
|
||||
"x": 325,
|
||||
"y": 906
|
||||
}
|
||||
],
|
||||
|
|
@ -531,7 +531,7 @@
|
|||
"labelPercentage": 0,
|
||||
"route": [
|
||||
{
|
||||
"x": 295,
|
||||
"x": 325,
|
||||
"y": 956
|
||||
},
|
||||
{
|
||||
|
|
@ -574,7 +574,7 @@
|
|||
"y": 1086
|
||||
},
|
||||
{
|
||||
"x": 289,
|
||||
"x": 319,
|
||||
"y": 1086
|
||||
}
|
||||
],
|
||||
|
|
@ -648,11 +648,11 @@
|
|||
"labelPercentage": 0,
|
||||
"route": [
|
||||
{
|
||||
"x": 295,
|
||||
"x": 325,
|
||||
"y": 176
|
||||
},
|
||||
{
|
||||
"x": 295,
|
||||
"x": 325,
|
||||
"y": 1216
|
||||
}
|
||||
],
|
||||
|
|
|
|||
|
Before Width: | Height: | Size: 473 KiB After Width: | Height: | Size: 473 KiB |
42
e2etests/testdata/stable/sequence_diagram_self_edges/elk/board.exp.json
generated
vendored
|
|
@ -45,7 +45,7 @@
|
|||
"id": "b",
|
||||
"type": "",
|
||||
"pos": {
|
||||
"x": 220,
|
||||
"x": 250,
|
||||
"y": 50
|
||||
},
|
||||
"width": 150,
|
||||
|
|
@ -85,7 +85,7 @@
|
|||
"id": "b.1",
|
||||
"type": "rectangle",
|
||||
"pos": {
|
||||
"x": 289,
|
||||
"x": 319,
|
||||
"y": 630
|
||||
},
|
||||
"width": 12,
|
||||
|
|
@ -124,7 +124,7 @@
|
|||
"id": "b.1.2",
|
||||
"type": "rectangle",
|
||||
"pos": {
|
||||
"x": 285,
|
||||
"x": 315,
|
||||
"y": 760
|
||||
},
|
||||
"width": 20,
|
||||
|
|
@ -241,7 +241,7 @@
|
|||
"id": "b.3",
|
||||
"type": "rectangle",
|
||||
"pos": {
|
||||
"x": 289,
|
||||
"x": 319,
|
||||
"y": 1070
|
||||
},
|
||||
"width": 12,
|
||||
|
|
@ -355,7 +355,7 @@
|
|||
"y": 436
|
||||
},
|
||||
{
|
||||
"x": 295,
|
||||
"x": 325,
|
||||
"y": 436
|
||||
}
|
||||
],
|
||||
|
|
@ -390,19 +390,19 @@
|
|||
"labelPercentage": 0,
|
||||
"route": [
|
||||
{
|
||||
"x": 295,
|
||||
"x": 325,
|
||||
"y": 566
|
||||
},
|
||||
{
|
||||
"x": 395,
|
||||
"x": 425,
|
||||
"y": 566
|
||||
},
|
||||
{
|
||||
"x": 395,
|
||||
"x": 425,
|
||||
"y": 646
|
||||
},
|
||||
{
|
||||
"x": 301,
|
||||
"x": 331,
|
||||
"y": 646
|
||||
}
|
||||
],
|
||||
|
|
@ -437,19 +437,19 @@
|
|||
"labelPercentage": 0,
|
||||
"route": [
|
||||
{
|
||||
"x": 301,
|
||||
"x": 331,
|
||||
"y": 696
|
||||
},
|
||||
{
|
||||
"x": 395,
|
||||
"x": 425,
|
||||
"y": 696
|
||||
},
|
||||
{
|
||||
"x": 395,
|
||||
"x": 425,
|
||||
"y": 776
|
||||
},
|
||||
{
|
||||
"x": 305,
|
||||
"x": 335,
|
||||
"y": 776
|
||||
}
|
||||
],
|
||||
|
|
@ -484,19 +484,19 @@
|
|||
"labelPercentage": 0,
|
||||
"route": [
|
||||
{
|
||||
"x": 305,
|
||||
"x": 335,
|
||||
"y": 826
|
||||
},
|
||||
{
|
||||
"x": 395,
|
||||
"x": 425,
|
||||
"y": 826
|
||||
},
|
||||
{
|
||||
"x": 395,
|
||||
"x": 425,
|
||||
"y": 906
|
||||
},
|
||||
{
|
||||
"x": 295,
|
||||
"x": 325,
|
||||
"y": 906
|
||||
}
|
||||
],
|
||||
|
|
@ -531,7 +531,7 @@
|
|||
"labelPercentage": 0,
|
||||
"route": [
|
||||
{
|
||||
"x": 295,
|
||||
"x": 325,
|
||||
"y": 956
|
||||
},
|
||||
{
|
||||
|
|
@ -574,7 +574,7 @@
|
|||
"y": 1086
|
||||
},
|
||||
{
|
||||
"x": 289,
|
||||
"x": 319,
|
||||
"y": 1086
|
||||
}
|
||||
],
|
||||
|
|
@ -648,11 +648,11 @@
|
|||
"labelPercentage": 0,
|
||||
"route": [
|
||||
{
|
||||
"x": 295,
|
||||
"x": 325,
|
||||
"y": 176
|
||||
},
|
||||
{
|
||||
"x": 295,
|
||||
"x": 325,
|
||||
"y": 1216
|
||||
}
|
||||
],
|
||||
|
|
|
|||
|
Before Width: | Height: | Size: 473 KiB After Width: | Height: | Size: 473 KiB |
56
e2etests/testdata/stable/sequence_diagram_simple/dagre/board.exp.json
generated
vendored
|
|
@ -45,7 +45,7 @@
|
|||
"id": "bob",
|
||||
"type": "person",
|
||||
"pos": {
|
||||
"x": 228,
|
||||
"x": 264,
|
||||
"y": 141
|
||||
},
|
||||
"width": 150,
|
||||
|
|
@ -85,7 +85,7 @@
|
|||
"id": "db",
|
||||
"type": "cylinder",
|
||||
"pos": {
|
||||
"x": 448,
|
||||
"x": 581,
|
||||
"y": 162
|
||||
},
|
||||
"width": 150,
|
||||
|
|
@ -125,7 +125,7 @@
|
|||
"id": "queue",
|
||||
"type": "queue",
|
||||
"pos": {
|
||||
"x": 668,
|
||||
"x": 898,
|
||||
"y": 162
|
||||
},
|
||||
"width": 150,
|
||||
|
|
@ -165,7 +165,7 @@
|
|||
"id": "service",
|
||||
"type": "",
|
||||
"pos": {
|
||||
"x": 888,
|
||||
"x": 1192,
|
||||
"y": 50
|
||||
},
|
||||
"width": 197,
|
||||
|
|
@ -233,7 +233,7 @@
|
|||
"y": 418
|
||||
},
|
||||
{
|
||||
"x": 303,
|
||||
"x": 339,
|
||||
"y": 418
|
||||
}
|
||||
],
|
||||
|
|
@ -268,11 +268,11 @@
|
|||
"labelPercentage": 0,
|
||||
"route": [
|
||||
{
|
||||
"x": 303,
|
||||
"x": 339,
|
||||
"y": 548
|
||||
},
|
||||
{
|
||||
"x": 986.5,
|
||||
"x": 1290.5,
|
||||
"y": 548
|
||||
}
|
||||
],
|
||||
|
|
@ -307,11 +307,11 @@
|
|||
"labelPercentage": 0,
|
||||
"route": [
|
||||
{
|
||||
"x": 986.5,
|
||||
"x": 1290.5,
|
||||
"y": 678
|
||||
},
|
||||
{
|
||||
"x": 523,
|
||||
"x": 656,
|
||||
"y": 678
|
||||
}
|
||||
],
|
||||
|
|
@ -346,11 +346,11 @@
|
|||
"labelPercentage": 0,
|
||||
"route": [
|
||||
{
|
||||
"x": 523,
|
||||
"x": 656,
|
||||
"y": 808
|
||||
},
|
||||
{
|
||||
"x": 986.5,
|
||||
"x": 1290.5,
|
||||
"y": 808
|
||||
}
|
||||
],
|
||||
|
|
@ -385,11 +385,11 @@
|
|||
"labelPercentage": 0,
|
||||
"route": [
|
||||
{
|
||||
"x": 986.5,
|
||||
"x": 1290.5,
|
||||
"y": 938
|
||||
},
|
||||
{
|
||||
"x": 303,
|
||||
"x": 339,
|
||||
"y": 938
|
||||
}
|
||||
],
|
||||
|
|
@ -424,7 +424,7 @@
|
|||
"labelPercentage": 0,
|
||||
"route": [
|
||||
{
|
||||
"x": 303,
|
||||
"x": 339,
|
||||
"y": 1068
|
||||
},
|
||||
{
|
||||
|
|
@ -467,7 +467,7 @@
|
|||
"y": 1198
|
||||
},
|
||||
{
|
||||
"x": 303,
|
||||
"x": 339,
|
||||
"y": 1198
|
||||
}
|
||||
],
|
||||
|
|
@ -502,11 +502,11 @@
|
|||
"labelPercentage": 0,
|
||||
"route": [
|
||||
{
|
||||
"x": 303,
|
||||
"x": 339,
|
||||
"y": 1328
|
||||
},
|
||||
{
|
||||
"x": 743,
|
||||
"x": 973,
|
||||
"y": 1328
|
||||
}
|
||||
],
|
||||
|
|
@ -541,11 +541,11 @@
|
|||
"labelPercentage": 0,
|
||||
"route": [
|
||||
{
|
||||
"x": 743,
|
||||
"x": 973,
|
||||
"y": 1458
|
||||
},
|
||||
{
|
||||
"x": 303,
|
||||
"x": 339,
|
||||
"y": 1458
|
||||
}
|
||||
],
|
||||
|
|
@ -580,7 +580,7 @@
|
|||
"labelPercentage": 0,
|
||||
"route": [
|
||||
{
|
||||
"x": 303,
|
||||
"x": 339,
|
||||
"y": 1588
|
||||
},
|
||||
{
|
||||
|
|
@ -658,11 +658,11 @@
|
|||
"labelPercentage": 0,
|
||||
"route": [
|
||||
{
|
||||
"x": 303,
|
||||
"x": 339,
|
||||
"y": 293
|
||||
},
|
||||
{
|
||||
"x": 303,
|
||||
"x": 339,
|
||||
"y": 1718
|
||||
}
|
||||
],
|
||||
|
|
@ -697,11 +697,11 @@
|
|||
"labelPercentage": 0,
|
||||
"route": [
|
||||
{
|
||||
"x": 523,
|
||||
"x": 656,
|
||||
"y": 288
|
||||
},
|
||||
{
|
||||
"x": 523,
|
||||
"x": 656,
|
||||
"y": 1718
|
||||
}
|
||||
],
|
||||
|
|
@ -736,11 +736,11 @@
|
|||
"labelPercentage": 0,
|
||||
"route": [
|
||||
{
|
||||
"x": 743,
|
||||
"x": 973,
|
||||
"y": 288
|
||||
},
|
||||
{
|
||||
"x": 743,
|
||||
"x": 973,
|
||||
"y": 1718
|
||||
}
|
||||
],
|
||||
|
|
@ -775,11 +775,11 @@
|
|||
"labelPercentage": 0,
|
||||
"route": [
|
||||
{
|
||||
"x": 986.5,
|
||||
"x": 1290.5,
|
||||
"y": 288
|
||||
},
|
||||
{
|
||||
"x": 986.5,
|
||||
"x": 1290.5,
|
||||
"y": 1718
|
||||
}
|
||||
],
|
||||
|
|
|
|||
|
Before Width: | Height: | Size: 476 KiB After Width: | Height: | Size: 476 KiB |
56
e2etests/testdata/stable/sequence_diagram_simple/elk/board.exp.json
generated
vendored
|
|
@ -45,7 +45,7 @@
|
|||
"id": "bob",
|
||||
"type": "person",
|
||||
"pos": {
|
||||
"x": 228,
|
||||
"x": 264,
|
||||
"y": 141
|
||||
},
|
||||
"width": 150,
|
||||
|
|
@ -85,7 +85,7 @@
|
|||
"id": "db",
|
||||
"type": "cylinder",
|
||||
"pos": {
|
||||
"x": 448,
|
||||
"x": 581,
|
||||
"y": 162
|
||||
},
|
||||
"width": 150,
|
||||
|
|
@ -125,7 +125,7 @@
|
|||
"id": "queue",
|
||||
"type": "queue",
|
||||
"pos": {
|
||||
"x": 668,
|
||||
"x": 898,
|
||||
"y": 162
|
||||
},
|
||||
"width": 150,
|
||||
|
|
@ -165,7 +165,7 @@
|
|||
"id": "service",
|
||||
"type": "",
|
||||
"pos": {
|
||||
"x": 888,
|
||||
"x": 1192,
|
||||
"y": 50
|
||||
},
|
||||
"width": 197,
|
||||
|
|
@ -233,7 +233,7 @@
|
|||
"y": 418
|
||||
},
|
||||
{
|
||||
"x": 303,
|
||||
"x": 339,
|
||||
"y": 418
|
||||
}
|
||||
],
|
||||
|
|
@ -268,11 +268,11 @@
|
|||
"labelPercentage": 0,
|
||||
"route": [
|
||||
{
|
||||
"x": 303,
|
||||
"x": 339,
|
||||
"y": 548
|
||||
},
|
||||
{
|
||||
"x": 986.5,
|
||||
"x": 1290.5,
|
||||
"y": 548
|
||||
}
|
||||
],
|
||||
|
|
@ -307,11 +307,11 @@
|
|||
"labelPercentage": 0,
|
||||
"route": [
|
||||
{
|
||||
"x": 986.5,
|
||||
"x": 1290.5,
|
||||
"y": 678
|
||||
},
|
||||
{
|
||||
"x": 523,
|
||||
"x": 656,
|
||||
"y": 678
|
||||
}
|
||||
],
|
||||
|
|
@ -346,11 +346,11 @@
|
|||
"labelPercentage": 0,
|
||||
"route": [
|
||||
{
|
||||
"x": 523,
|
||||
"x": 656,
|
||||
"y": 808
|
||||
},
|
||||
{
|
||||
"x": 986.5,
|
||||
"x": 1290.5,
|
||||
"y": 808
|
||||
}
|
||||
],
|
||||
|
|
@ -385,11 +385,11 @@
|
|||
"labelPercentage": 0,
|
||||
"route": [
|
||||
{
|
||||
"x": 986.5,
|
||||
"x": 1290.5,
|
||||
"y": 938
|
||||
},
|
||||
{
|
||||
"x": 303,
|
||||
"x": 339,
|
||||
"y": 938
|
||||
}
|
||||
],
|
||||
|
|
@ -424,7 +424,7 @@
|
|||
"labelPercentage": 0,
|
||||
"route": [
|
||||
{
|
||||
"x": 303,
|
||||
"x": 339,
|
||||
"y": 1068
|
||||
},
|
||||
{
|
||||
|
|
@ -467,7 +467,7 @@
|
|||
"y": 1198
|
||||
},
|
||||
{
|
||||
"x": 303,
|
||||
"x": 339,
|
||||
"y": 1198
|
||||
}
|
||||
],
|
||||
|
|
@ -502,11 +502,11 @@
|
|||
"labelPercentage": 0,
|
||||
"route": [
|
||||
{
|
||||
"x": 303,
|
||||
"x": 339,
|
||||
"y": 1328
|
||||
},
|
||||
{
|
||||
"x": 743,
|
||||
"x": 973,
|
||||
"y": 1328
|
||||
}
|
||||
],
|
||||
|
|
@ -541,11 +541,11 @@
|
|||
"labelPercentage": 0,
|
||||
"route": [
|
||||
{
|
||||
"x": 743,
|
||||
"x": 973,
|
||||
"y": 1458
|
||||
},
|
||||
{
|
||||
"x": 303,
|
||||
"x": 339,
|
||||
"y": 1458
|
||||
}
|
||||
],
|
||||
|
|
@ -580,7 +580,7 @@
|
|||
"labelPercentage": 0,
|
||||
"route": [
|
||||
{
|
||||
"x": 303,
|
||||
"x": 339,
|
||||
"y": 1588
|
||||
},
|
||||
{
|
||||
|
|
@ -658,11 +658,11 @@
|
|||
"labelPercentage": 0,
|
||||
"route": [
|
||||
{
|
||||
"x": 303,
|
||||
"x": 339,
|
||||
"y": 293
|
||||
},
|
||||
{
|
||||
"x": 303,
|
||||
"x": 339,
|
||||
"y": 1718
|
||||
}
|
||||
],
|
||||
|
|
@ -697,11 +697,11 @@
|
|||
"labelPercentage": 0,
|
||||
"route": [
|
||||
{
|
||||
"x": 523,
|
||||
"x": 656,
|
||||
"y": 288
|
||||
},
|
||||
{
|
||||
"x": 523,
|
||||
"x": 656,
|
||||
"y": 1718
|
||||
}
|
||||
],
|
||||
|
|
@ -736,11 +736,11 @@
|
|||
"labelPercentage": 0,
|
||||
"route": [
|
||||
{
|
||||
"x": 743,
|
||||
"x": 973,
|
||||
"y": 288
|
||||
},
|
||||
{
|
||||
"x": 743,
|
||||
"x": 973,
|
||||
"y": 1718
|
||||
}
|
||||
],
|
||||
|
|
@ -775,11 +775,11 @@
|
|||
"labelPercentage": 0,
|
||||
"route": [
|
||||
{
|
||||
"x": 986.5,
|
||||
"x": 1290.5,
|
||||
"y": 288
|
||||
},
|
||||
{
|
||||
"x": 986.5,
|
||||
"x": 1290.5,
|
||||
"y": 1718
|
||||
}
|
||||
],
|
||||
|
|
|
|||
|
Before Width: | Height: | Size: 476 KiB After Width: | Height: | Size: 476 KiB |
80
e2etests/testdata/stable/sequence_diagram_span/dagre/board.exp.json
generated
vendored
|
|
@ -84,7 +84,7 @@
|
|||
"id": "itemResponse",
|
||||
"type": "",
|
||||
"pos": {
|
||||
"x": 220,
|
||||
"x": 225,
|
||||
"y": 50
|
||||
},
|
||||
"width": 200,
|
||||
|
|
@ -124,7 +124,7 @@
|
|||
"id": "itemResponse.t",
|
||||
"type": "rectangle",
|
||||
"pos": {
|
||||
"x": 314,
|
||||
"x": 319,
|
||||
"y": 290
|
||||
},
|
||||
"width": 12,
|
||||
|
|
@ -163,7 +163,7 @@
|
|||
"id": "item",
|
||||
"type": "",
|
||||
"pos": {
|
||||
"x": 490,
|
||||
"x": 500,
|
||||
"y": 50
|
||||
},
|
||||
"width": 150,
|
||||
|
|
@ -203,7 +203,7 @@
|
|||
"id": "item.t1",
|
||||
"type": "rectangle",
|
||||
"pos": {
|
||||
"x": 559,
|
||||
"x": 569,
|
||||
"y": 550
|
||||
},
|
||||
"width": 12,
|
||||
|
|
@ -242,7 +242,7 @@
|
|||
"id": "essayRubric",
|
||||
"type": "",
|
||||
"pos": {
|
||||
"x": 710,
|
||||
"x": 732,
|
||||
"y": 50
|
||||
},
|
||||
"width": 186,
|
||||
|
|
@ -282,7 +282,7 @@
|
|||
"id": "essayRubric.t",
|
||||
"type": "rectangle",
|
||||
"pos": {
|
||||
"x": 797,
|
||||
"x": 819,
|
||||
"y": 810
|
||||
},
|
||||
"width": 12,
|
||||
|
|
@ -321,7 +321,7 @@
|
|||
"id": "essayRubric.t.c",
|
||||
"type": "rectangle",
|
||||
"pos": {
|
||||
"x": 793,
|
||||
"x": 815,
|
||||
"y": 940
|
||||
},
|
||||
"width": 20,
|
||||
|
|
@ -360,7 +360,7 @@
|
|||
"id": "concept",
|
||||
"type": "",
|
||||
"pos": {
|
||||
"x": 966,
|
||||
"x": 995,
|
||||
"y": 50
|
||||
},
|
||||
"width": 160,
|
||||
|
|
@ -400,7 +400,7 @@
|
|||
"id": "concept.t",
|
||||
"type": "rectangle",
|
||||
"pos": {
|
||||
"x": 1040,
|
||||
"x": 1069,
|
||||
"y": 1070
|
||||
},
|
||||
"width": 12,
|
||||
|
|
@ -439,7 +439,7 @@
|
|||
"id": "itemOutcome",
|
||||
"type": "",
|
||||
"pos": {
|
||||
"x": 1196,
|
||||
"x": 1227,
|
||||
"y": 50
|
||||
},
|
||||
"width": 197,
|
||||
|
|
@ -479,7 +479,7 @@
|
|||
"id": "itemOutcome.t1",
|
||||
"type": "rectangle",
|
||||
"pos": {
|
||||
"x": 1288,
|
||||
"x": 1319,
|
||||
"y": 1330
|
||||
},
|
||||
"width": 12,
|
||||
|
|
@ -518,7 +518,7 @@
|
|||
"id": "item.t2",
|
||||
"type": "rectangle",
|
||||
"pos": {
|
||||
"x": 559,
|
||||
"x": 569,
|
||||
"y": 1460
|
||||
},
|
||||
"width": 12,
|
||||
|
|
@ -557,7 +557,7 @@
|
|||
"id": "item.t3",
|
||||
"type": "rectangle",
|
||||
"pos": {
|
||||
"x": 559,
|
||||
"x": 569,
|
||||
"y": 1590
|
||||
},
|
||||
"width": 12,
|
||||
|
|
@ -596,7 +596,7 @@
|
|||
"id": "itemOutcome.t2",
|
||||
"type": "rectangle",
|
||||
"pos": {
|
||||
"x": 1288,
|
||||
"x": 1319,
|
||||
"y": 1720
|
||||
},
|
||||
"width": 12,
|
||||
|
|
@ -635,7 +635,7 @@
|
|||
"id": "itemOutcome.t3",
|
||||
"type": "rectangle",
|
||||
"pos": {
|
||||
"x": 1288,
|
||||
"x": 1319,
|
||||
"y": 1850
|
||||
},
|
||||
"width": 12,
|
||||
|
|
@ -702,7 +702,7 @@
|
|||
"y": 306
|
||||
},
|
||||
{
|
||||
"x": 314,
|
||||
"x": 319,
|
||||
"y": 306
|
||||
}
|
||||
],
|
||||
|
|
@ -741,7 +741,7 @@
|
|||
"y": 436
|
||||
},
|
||||
{
|
||||
"x": 314,
|
||||
"x": 319,
|
||||
"y": 436
|
||||
}
|
||||
],
|
||||
|
|
@ -780,7 +780,7 @@
|
|||
"y": 566
|
||||
},
|
||||
{
|
||||
"x": 559,
|
||||
"x": 569,
|
||||
"y": 566
|
||||
}
|
||||
],
|
||||
|
|
@ -819,7 +819,7 @@
|
|||
"y": 696
|
||||
},
|
||||
{
|
||||
"x": 559,
|
||||
"x": 569,
|
||||
"y": 696
|
||||
}
|
||||
],
|
||||
|
|
@ -858,7 +858,7 @@
|
|||
"y": 826
|
||||
},
|
||||
{
|
||||
"x": 797,
|
||||
"x": 819,
|
||||
"y": 826
|
||||
}
|
||||
],
|
||||
|
|
@ -893,11 +893,11 @@
|
|||
"labelPercentage": 0,
|
||||
"route": [
|
||||
{
|
||||
"x": 320,
|
||||
"x": 325,
|
||||
"y": 956
|
||||
},
|
||||
{
|
||||
"x": 793,
|
||||
"x": 815,
|
||||
"y": 956
|
||||
}
|
||||
],
|
||||
|
|
@ -932,11 +932,11 @@
|
|||
"labelPercentage": 0,
|
||||
"route": [
|
||||
{
|
||||
"x": 813,
|
||||
"x": 835,
|
||||
"y": 1086
|
||||
},
|
||||
{
|
||||
"x": 1040,
|
||||
"x": 1069,
|
||||
"y": 1086
|
||||
}
|
||||
],
|
||||
|
|
@ -975,7 +975,7 @@
|
|||
"y": 1216
|
||||
},
|
||||
{
|
||||
"x": 797,
|
||||
"x": 819,
|
||||
"y": 1216
|
||||
}
|
||||
],
|
||||
|
|
@ -1014,7 +1014,7 @@
|
|||
"y": 1346
|
||||
},
|
||||
{
|
||||
"x": 1288.5,
|
||||
"x": 1319.5,
|
||||
"y": 1346
|
||||
}
|
||||
],
|
||||
|
|
@ -1053,7 +1053,7 @@
|
|||
"y": 1476
|
||||
},
|
||||
{
|
||||
"x": 559,
|
||||
"x": 569,
|
||||
"y": 1476
|
||||
}
|
||||
],
|
||||
|
|
@ -1092,7 +1092,7 @@
|
|||
"y": 1606
|
||||
},
|
||||
{
|
||||
"x": 559,
|
||||
"x": 569,
|
||||
"y": 1606
|
||||
}
|
||||
],
|
||||
|
|
@ -1131,7 +1131,7 @@
|
|||
"y": 1736
|
||||
},
|
||||
{
|
||||
"x": 1288.5,
|
||||
"x": 1319.5,
|
||||
"y": 1736
|
||||
}
|
||||
],
|
||||
|
|
@ -1170,7 +1170,7 @@
|
|||
"y": 1866
|
||||
},
|
||||
{
|
||||
"x": 1288.5,
|
||||
"x": 1319.5,
|
||||
"y": 1866
|
||||
}
|
||||
],
|
||||
|
|
@ -1244,11 +1244,11 @@
|
|||
"labelPercentage": 0,
|
||||
"route": [
|
||||
{
|
||||
"x": 320,
|
||||
"x": 325,
|
||||
"y": 176
|
||||
},
|
||||
{
|
||||
"x": 320,
|
||||
"x": 325,
|
||||
"y": 1996
|
||||
}
|
||||
],
|
||||
|
|
@ -1283,11 +1283,11 @@
|
|||
"labelPercentage": 0,
|
||||
"route": [
|
||||
{
|
||||
"x": 565,
|
||||
"x": 575,
|
||||
"y": 176
|
||||
},
|
||||
{
|
||||
"x": 565,
|
||||
"x": 575,
|
||||
"y": 1996
|
||||
}
|
||||
],
|
||||
|
|
@ -1322,11 +1322,11 @@
|
|||
"labelPercentage": 0,
|
||||
"route": [
|
||||
{
|
||||
"x": 803,
|
||||
"x": 825,
|
||||
"y": 176
|
||||
},
|
||||
{
|
||||
"x": 803,
|
||||
"x": 825,
|
||||
"y": 1996
|
||||
}
|
||||
],
|
||||
|
|
@ -1361,11 +1361,11 @@
|
|||
"labelPercentage": 0,
|
||||
"route": [
|
||||
{
|
||||
"x": 1046,
|
||||
"x": 1075,
|
||||
"y": 176
|
||||
},
|
||||
{
|
||||
"x": 1046,
|
||||
"x": 1075,
|
||||
"y": 1996
|
||||
}
|
||||
],
|
||||
|
|
@ -1400,11 +1400,11 @@
|
|||
"labelPercentage": 0,
|
||||
"route": [
|
||||
{
|
||||
"x": 1294.5,
|
||||
"x": 1325.5,
|
||||
"y": 176
|
||||
},
|
||||
{
|
||||
"x": 1294.5,
|
||||
"x": 1325.5,
|
||||
"y": 1996
|
||||
}
|
||||
],
|
||||
|
|
|
|||
|
Before Width: | Height: | Size: 478 KiB After Width: | Height: | Size: 478 KiB |
80
e2etests/testdata/stable/sequence_diagram_span/elk/board.exp.json
generated
vendored
|
|
@ -84,7 +84,7 @@
|
|||
"id": "itemResponse",
|
||||
"type": "",
|
||||
"pos": {
|
||||
"x": 220,
|
||||
"x": 225,
|
||||
"y": 50
|
||||
},
|
||||
"width": 200,
|
||||
|
|
@ -124,7 +124,7 @@
|
|||
"id": "itemResponse.t",
|
||||
"type": "rectangle",
|
||||
"pos": {
|
||||
"x": 314,
|
||||
"x": 319,
|
||||
"y": 290
|
||||
},
|
||||
"width": 12,
|
||||
|
|
@ -163,7 +163,7 @@
|
|||
"id": "item",
|
||||
"type": "",
|
||||
"pos": {
|
||||
"x": 490,
|
||||
"x": 500,
|
||||
"y": 50
|
||||
},
|
||||
"width": 150,
|
||||
|
|
@ -203,7 +203,7 @@
|
|||
"id": "item.t1",
|
||||
"type": "rectangle",
|
||||
"pos": {
|
||||
"x": 559,
|
||||
"x": 569,
|
||||
"y": 550
|
||||
},
|
||||
"width": 12,
|
||||
|
|
@ -242,7 +242,7 @@
|
|||
"id": "essayRubric",
|
||||
"type": "",
|
||||
"pos": {
|
||||
"x": 710,
|
||||
"x": 732,
|
||||
"y": 50
|
||||
},
|
||||
"width": 186,
|
||||
|
|
@ -282,7 +282,7 @@
|
|||
"id": "essayRubric.t",
|
||||
"type": "rectangle",
|
||||
"pos": {
|
||||
"x": 797,
|
||||
"x": 819,
|
||||
"y": 810
|
||||
},
|
||||
"width": 12,
|
||||
|
|
@ -321,7 +321,7 @@
|
|||
"id": "essayRubric.t.c",
|
||||
"type": "rectangle",
|
||||
"pos": {
|
||||
"x": 793,
|
||||
"x": 815,
|
||||
"y": 940
|
||||
},
|
||||
"width": 20,
|
||||
|
|
@ -360,7 +360,7 @@
|
|||
"id": "concept",
|
||||
"type": "",
|
||||
"pos": {
|
||||
"x": 966,
|
||||
"x": 995,
|
||||
"y": 50
|
||||
},
|
||||
"width": 160,
|
||||
|
|
@ -400,7 +400,7 @@
|
|||
"id": "concept.t",
|
||||
"type": "rectangle",
|
||||
"pos": {
|
||||
"x": 1040,
|
||||
"x": 1069,
|
||||
"y": 1070
|
||||
},
|
||||
"width": 12,
|
||||
|
|
@ -439,7 +439,7 @@
|
|||
"id": "itemOutcome",
|
||||
"type": "",
|
||||
"pos": {
|
||||
"x": 1196,
|
||||
"x": 1227,
|
||||
"y": 50
|
||||
},
|
||||
"width": 197,
|
||||
|
|
@ -479,7 +479,7 @@
|
|||
"id": "itemOutcome.t1",
|
||||
"type": "rectangle",
|
||||
"pos": {
|
||||
"x": 1288,
|
||||
"x": 1319,
|
||||
"y": 1330
|
||||
},
|
||||
"width": 12,
|
||||
|
|
@ -518,7 +518,7 @@
|
|||
"id": "item.t2",
|
||||
"type": "rectangle",
|
||||
"pos": {
|
||||
"x": 559,
|
||||
"x": 569,
|
||||
"y": 1460
|
||||
},
|
||||
"width": 12,
|
||||
|
|
@ -557,7 +557,7 @@
|
|||
"id": "item.t3",
|
||||
"type": "rectangle",
|
||||
"pos": {
|
||||
"x": 559,
|
||||
"x": 569,
|
||||
"y": 1590
|
||||
},
|
||||
"width": 12,
|
||||
|
|
@ -596,7 +596,7 @@
|
|||
"id": "itemOutcome.t2",
|
||||
"type": "rectangle",
|
||||
"pos": {
|
||||
"x": 1288,
|
||||
"x": 1319,
|
||||
"y": 1720
|
||||
},
|
||||
"width": 12,
|
||||
|
|
@ -635,7 +635,7 @@
|
|||
"id": "itemOutcome.t3",
|
||||
"type": "rectangle",
|
||||
"pos": {
|
||||
"x": 1288,
|
||||
"x": 1319,
|
||||
"y": 1850
|
||||
},
|
||||
"width": 12,
|
||||
|
|
@ -702,7 +702,7 @@
|
|||
"y": 306
|
||||
},
|
||||
{
|
||||
"x": 314,
|
||||
"x": 319,
|
||||
"y": 306
|
||||
}
|
||||
],
|
||||
|
|
@ -741,7 +741,7 @@
|
|||
"y": 436
|
||||
},
|
||||
{
|
||||
"x": 314,
|
||||
"x": 319,
|
||||
"y": 436
|
||||
}
|
||||
],
|
||||
|
|
@ -780,7 +780,7 @@
|
|||
"y": 566
|
||||
},
|
||||
{
|
||||
"x": 559,
|
||||
"x": 569,
|
||||
"y": 566
|
||||
}
|
||||
],
|
||||
|
|
@ -819,7 +819,7 @@
|
|||
"y": 696
|
||||
},
|
||||
{
|
||||
"x": 559,
|
||||
"x": 569,
|
||||
"y": 696
|
||||
}
|
||||
],
|
||||
|
|
@ -858,7 +858,7 @@
|
|||
"y": 826
|
||||
},
|
||||
{
|
||||
"x": 797,
|
||||
"x": 819,
|
||||
"y": 826
|
||||
}
|
||||
],
|
||||
|
|
@ -893,11 +893,11 @@
|
|||
"labelPercentage": 0,
|
||||
"route": [
|
||||
{
|
||||
"x": 320,
|
||||
"x": 325,
|
||||
"y": 956
|
||||
},
|
||||
{
|
||||
"x": 793,
|
||||
"x": 815,
|
||||
"y": 956
|
||||
}
|
||||
],
|
||||
|
|
@ -932,11 +932,11 @@
|
|||
"labelPercentage": 0,
|
||||
"route": [
|
||||
{
|
||||
"x": 813,
|
||||
"x": 835,
|
||||
"y": 1086
|
||||
},
|
||||
{
|
||||
"x": 1040,
|
||||
"x": 1069,
|
||||
"y": 1086
|
||||
}
|
||||
],
|
||||
|
|
@ -975,7 +975,7 @@
|
|||
"y": 1216
|
||||
},
|
||||
{
|
||||
"x": 797,
|
||||
"x": 819,
|
||||
"y": 1216
|
||||
}
|
||||
],
|
||||
|
|
@ -1014,7 +1014,7 @@
|
|||
"y": 1346
|
||||
},
|
||||
{
|
||||
"x": 1288.5,
|
||||
"x": 1319.5,
|
||||
"y": 1346
|
||||
}
|
||||
],
|
||||
|
|
@ -1053,7 +1053,7 @@
|
|||
"y": 1476
|
||||
},
|
||||
{
|
||||
"x": 559,
|
||||
"x": 569,
|
||||
"y": 1476
|
||||
}
|
||||
],
|
||||
|
|
@ -1092,7 +1092,7 @@
|
|||
"y": 1606
|
||||
},
|
||||
{
|
||||
"x": 559,
|
||||
"x": 569,
|
||||
"y": 1606
|
||||
}
|
||||
],
|
||||
|
|
@ -1131,7 +1131,7 @@
|
|||
"y": 1736
|
||||
},
|
||||
{
|
||||
"x": 1288.5,
|
||||
"x": 1319.5,
|
||||
"y": 1736
|
||||
}
|
||||
],
|
||||
|
|
@ -1170,7 +1170,7 @@
|
|||
"y": 1866
|
||||
},
|
||||
{
|
||||
"x": 1288.5,
|
||||
"x": 1319.5,
|
||||
"y": 1866
|
||||
}
|
||||
],
|
||||
|
|
@ -1244,11 +1244,11 @@
|
|||
"labelPercentage": 0,
|
||||
"route": [
|
||||
{
|
||||
"x": 320,
|
||||
"x": 325,
|
||||
"y": 176
|
||||
},
|
||||
{
|
||||
"x": 320,
|
||||
"x": 325,
|
||||
"y": 1996
|
||||
}
|
||||
],
|
||||
|
|
@ -1283,11 +1283,11 @@
|
|||
"labelPercentage": 0,
|
||||
"route": [
|
||||
{
|
||||
"x": 565,
|
||||
"x": 575,
|
||||
"y": 176
|
||||
},
|
||||
{
|
||||
"x": 565,
|
||||
"x": 575,
|
||||
"y": 1996
|
||||
}
|
||||
],
|
||||
|
|
@ -1322,11 +1322,11 @@
|
|||
"labelPercentage": 0,
|
||||
"route": [
|
||||
{
|
||||
"x": 803,
|
||||
"x": 825,
|
||||
"y": 176
|
||||
},
|
||||
{
|
||||
"x": 803,
|
||||
"x": 825,
|
||||
"y": 1996
|
||||
}
|
||||
],
|
||||
|
|
@ -1361,11 +1361,11 @@
|
|||
"labelPercentage": 0,
|
||||
"route": [
|
||||
{
|
||||
"x": 1046,
|
||||
"x": 1075,
|
||||
"y": 176
|
||||
},
|
||||
{
|
||||
"x": 1046,
|
||||
"x": 1075,
|
||||
"y": 1996
|
||||
}
|
||||
],
|
||||
|
|
@ -1400,11 +1400,11 @@
|
|||
"labelPercentage": 0,
|
||||
"route": [
|
||||
{
|
||||
"x": 1294.5,
|
||||
"x": 1325.5,
|
||||
"y": 176
|
||||
},
|
||||
{
|
||||
"x": 1294.5,
|
||||
"x": 1325.5,
|
||||
"y": 1996
|
||||
}
|
||||
],
|
||||
|
|
|
|||
|
Before Width: | Height: | Size: 478 KiB After Width: | Height: | Size: 478 KiB |
386
e2etests/testdata/stable/sequence_diagrams/dagre/board.exp.json
generated
vendored
|
Before Width: | Height: | Size: 824 KiB After Width: | Height: | Size: 824 KiB |
346
e2etests/testdata/stable/sequence_diagrams/elk/board.exp.json
generated
vendored
|
Before Width: | Height: | Size: 824 KiB After Width: | Height: | Size: 824 KiB |
673
e2etests/testdata/todo/sequence_diagram_actor_padding_nested_groups/dagre/board.exp.json
generated
vendored
Normal file
|
|
@ -0,0 +1,673 @@
|
|||
{
|
||||
"name": "",
|
||||
"shapes": [
|
||||
{
|
||||
"id": "b",
|
||||
"type": "",
|
||||
"pos": {
|
||||
"x": 0,
|
||||
"y": 50
|
||||
},
|
||||
"width": 150,
|
||||
"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": "",
|
||||
"blend": false,
|
||||
"fields": null,
|
||||
"methods": null,
|
||||
"columns": null,
|
||||
"label": "b",
|
||||
"fontSize": 16,
|
||||
"fontFamily": "DEFAULT",
|
||||
"language": "",
|
||||
"color": "#0A0F25",
|
||||
"italic": false,
|
||||
"bold": false,
|
||||
"underline": false,
|
||||
"labelWidth": 13,
|
||||
"labelHeight": 26,
|
||||
"labelPosition": "INSIDE_MIDDLE_CENTER",
|
||||
"zIndex": 0,
|
||||
"level": 1
|
||||
},
|
||||
{
|
||||
"id": "a",
|
||||
"type": "",
|
||||
"pos": {
|
||||
"x": 250,
|
||||
"y": 50
|
||||
},
|
||||
"width": 150,
|
||||
"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": "",
|
||||
"blend": false,
|
||||
"fields": null,
|
||||
"methods": null,
|
||||
"columns": null,
|
||||
"label": "a",
|
||||
"fontSize": 16,
|
||||
"fontFamily": "DEFAULT",
|
||||
"language": "",
|
||||
"color": "#0A0F25",
|
||||
"italic": false,
|
||||
"bold": false,
|
||||
"underline": false,
|
||||
"labelWidth": 12,
|
||||
"labelHeight": 26,
|
||||
"labelPosition": "INSIDE_MIDDLE_CENTER",
|
||||
"zIndex": 0,
|
||||
"level": 1
|
||||
},
|
||||
{
|
||||
"id": "c",
|
||||
"type": "",
|
||||
"pos": {
|
||||
"x": 500,
|
||||
"y": 50
|
||||
},
|
||||
"width": 150,
|
||||
"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": "",
|
||||
"blend": false,
|
||||
"fields": null,
|
||||
"methods": null,
|
||||
"columns": null,
|
||||
"label": "c",
|
||||
"fontSize": 16,
|
||||
"fontFamily": "DEFAULT",
|
||||
"language": "",
|
||||
"color": "#0A0F25",
|
||||
"italic": false,
|
||||
"bold": false,
|
||||
"underline": false,
|
||||
"labelWidth": 12,
|
||||
"labelHeight": 26,
|
||||
"labelPosition": "INSIDE_MIDDLE_CENTER",
|
||||
"zIndex": 0,
|
||||
"level": 1
|
||||
},
|
||||
{
|
||||
"id": "this is a message group",
|
||||
"type": "",
|
||||
"pos": {
|
||||
"x": -71,
|
||||
"y": 396
|
||||
},
|
||||
"width": 542,
|
||||
"height": 696,
|
||||
"opacity": 1,
|
||||
"strokeDash": 0,
|
||||
"strokeWidth": 0,
|
||||
"borderRadius": 0,
|
||||
"fill": "#DEE1EB",
|
||||
"stroke": "#0D32B2",
|
||||
"shadow": false,
|
||||
"3d": false,
|
||||
"multiple": false,
|
||||
"tooltip": "",
|
||||
"link": "",
|
||||
"icon": null,
|
||||
"iconPosition": "",
|
||||
"blend": true,
|
||||
"fields": null,
|
||||
"methods": null,
|
||||
"columns": null,
|
||||
"label": "this is a message group",
|
||||
"fontSize": 16,
|
||||
"fontFamily": "DEFAULT",
|
||||
"language": "",
|
||||
"color": "#0A0F25",
|
||||
"italic": false,
|
||||
"bold": false,
|
||||
"underline": false,
|
||||
"labelWidth": 160,
|
||||
"labelHeight": 26,
|
||||
"zIndex": 3,
|
||||
"level": 1
|
||||
},
|
||||
{
|
||||
"id": "this is a message group.and this is a nested message group",
|
||||
"type": "",
|
||||
"pos": {
|
||||
"x": -47,
|
||||
"y": 526
|
||||
},
|
||||
"width": 494,
|
||||
"height": 542,
|
||||
"opacity": 1,
|
||||
"strokeDash": 0,
|
||||
"strokeWidth": 0,
|
||||
"borderRadius": 0,
|
||||
"fill": "#DEE1EB",
|
||||
"stroke": "#0D32B2",
|
||||
"shadow": false,
|
||||
"3d": false,
|
||||
"multiple": false,
|
||||
"tooltip": "",
|
||||
"link": "",
|
||||
"icon": null,
|
||||
"iconPosition": "",
|
||||
"blend": true,
|
||||
"fields": null,
|
||||
"methods": null,
|
||||
"columns": null,
|
||||
"label": "and this is a nested message group",
|
||||
"fontSize": 16,
|
||||
"fontFamily": "DEFAULT",
|
||||
"language": "",
|
||||
"color": "#0A0F25",
|
||||
"italic": false,
|
||||
"bold": false,
|
||||
"underline": false,
|
||||
"labelWidth": 238,
|
||||
"labelHeight": 26,
|
||||
"zIndex": 3,
|
||||
"level": 2
|
||||
},
|
||||
{
|
||||
"id": "this is a message group.and this is a nested message group.what about more nesting",
|
||||
"type": "",
|
||||
"pos": {
|
||||
"x": -23,
|
||||
"y": 656
|
||||
},
|
||||
"width": 446,
|
||||
"height": 388,
|
||||
"opacity": 1,
|
||||
"strokeDash": 0,
|
||||
"strokeWidth": 0,
|
||||
"borderRadius": 0,
|
||||
"fill": "#DEE1EB",
|
||||
"stroke": "#0D32B2",
|
||||
"shadow": false,
|
||||
"3d": false,
|
||||
"multiple": false,
|
||||
"tooltip": "",
|
||||
"link": "",
|
||||
"icon": null,
|
||||
"iconPosition": "",
|
||||
"blend": true,
|
||||
"fields": null,
|
||||
"methods": null,
|
||||
"columns": null,
|
||||
"label": "what about more nesting",
|
||||
"fontSize": 16,
|
||||
"fontFamily": "DEFAULT",
|
||||
"language": "",
|
||||
"color": "#0A0F25",
|
||||
"italic": false,
|
||||
"bold": false,
|
||||
"underline": false,
|
||||
"labelWidth": 173,
|
||||
"labelHeight": 26,
|
||||
"zIndex": 3,
|
||||
"level": 3
|
||||
},
|
||||
{
|
||||
"id": "this is a message group.and this is a nested message group.what about more nesting.yo",
|
||||
"type": "",
|
||||
"pos": {
|
||||
"x": 1,
|
||||
"y": 786
|
||||
},
|
||||
"width": 398,
|
||||
"height": 234,
|
||||
"opacity": 1,
|
||||
"strokeDash": 0,
|
||||
"strokeWidth": 0,
|
||||
"borderRadius": 0,
|
||||
"fill": "#DEE1EB",
|
||||
"stroke": "#0D32B2",
|
||||
"shadow": false,
|
||||
"3d": false,
|
||||
"multiple": false,
|
||||
"tooltip": "",
|
||||
"link": "",
|
||||
"icon": null,
|
||||
"iconPosition": "",
|
||||
"blend": true,
|
||||
"fields": null,
|
||||
"methods": null,
|
||||
"columns": null,
|
||||
"label": "yo",
|
||||
"fontSize": 16,
|
||||
"fontFamily": "DEFAULT",
|
||||
"language": "",
|
||||
"color": "#0A0F25",
|
||||
"italic": false,
|
||||
"bold": false,
|
||||
"underline": false,
|
||||
"labelWidth": 21,
|
||||
"labelHeight": 26,
|
||||
"zIndex": 3,
|
||||
"level": 4
|
||||
},
|
||||
{
|
||||
"id": "this is a message group.and this is a nested message group.what about more nesting.yo.yo",
|
||||
"type": "",
|
||||
"pos": {
|
||||
"x": 25,
|
||||
"y": 916
|
||||
},
|
||||
"width": 350,
|
||||
"height": 80,
|
||||
"opacity": 1,
|
||||
"strokeDash": 0,
|
||||
"strokeWidth": 0,
|
||||
"borderRadius": 0,
|
||||
"fill": "#DEE1EB",
|
||||
"stroke": "#0D32B2",
|
||||
"shadow": false,
|
||||
"3d": false,
|
||||
"multiple": false,
|
||||
"tooltip": "",
|
||||
"link": "",
|
||||
"icon": null,
|
||||
"iconPosition": "",
|
||||
"blend": true,
|
||||
"fields": null,
|
||||
"methods": null,
|
||||
"columns": null,
|
||||
"label": "yo",
|
||||
"fontSize": 16,
|
||||
"fontFamily": "DEFAULT",
|
||||
"language": "",
|
||||
"color": "#0A0F25",
|
||||
"italic": false,
|
||||
"bold": false,
|
||||
"underline": false,
|
||||
"labelWidth": 21,
|
||||
"labelHeight": 26,
|
||||
"zIndex": 3,
|
||||
"level": 5
|
||||
}
|
||||
],
|
||||
"connections": [
|
||||
{
|
||||
"id": "(b -> c)[0]",
|
||||
"src": "b",
|
||||
"srcArrow": "none",
|
||||
"srcLabel": "",
|
||||
"dst": "c",
|
||||
"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": 75,
|
||||
"y": 306
|
||||
},
|
||||
{
|
||||
"x": 575,
|
||||
"y": 306
|
||||
}
|
||||
],
|
||||
"animated": false,
|
||||
"tooltip": "",
|
||||
"icon": null,
|
||||
"zIndex": 4
|
||||
},
|
||||
{
|
||||
"id": "(a -> b)[0]",
|
||||
"src": "a",
|
||||
"srcArrow": "none",
|
||||
"srcLabel": "",
|
||||
"dst": "b",
|
||||
"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": 325,
|
||||
"y": 436
|
||||
},
|
||||
{
|
||||
"x": 75,
|
||||
"y": 436
|
||||
}
|
||||
],
|
||||
"animated": false,
|
||||
"tooltip": "",
|
||||
"icon": null,
|
||||
"zIndex": 4
|
||||
},
|
||||
{
|
||||
"id": "(a -> b)[1]",
|
||||
"src": "a",
|
||||
"srcArrow": "none",
|
||||
"srcLabel": "",
|
||||
"dst": "b",
|
||||
"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": 325,
|
||||
"y": 566
|
||||
},
|
||||
{
|
||||
"x": 75,
|
||||
"y": 566
|
||||
}
|
||||
],
|
||||
"animated": false,
|
||||
"tooltip": "",
|
||||
"icon": null,
|
||||
"zIndex": 4
|
||||
},
|
||||
{
|
||||
"id": "(a -> b)[2]",
|
||||
"src": "a",
|
||||
"srcArrow": "none",
|
||||
"srcLabel": "",
|
||||
"dst": "b",
|
||||
"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": 325,
|
||||
"y": 696
|
||||
},
|
||||
{
|
||||
"x": 75,
|
||||
"y": 696
|
||||
}
|
||||
],
|
||||
"animated": false,
|
||||
"tooltip": "",
|
||||
"icon": null,
|
||||
"zIndex": 4
|
||||
},
|
||||
{
|
||||
"id": "(a -> b)[3]",
|
||||
"src": "a",
|
||||
"srcArrow": "none",
|
||||
"srcLabel": "",
|
||||
"dst": "b",
|
||||
"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": 325,
|
||||
"y": 826
|
||||
},
|
||||
{
|
||||
"x": 75,
|
||||
"y": 826
|
||||
}
|
||||
],
|
||||
"animated": false,
|
||||
"tooltip": "",
|
||||
"icon": null,
|
||||
"zIndex": 4
|
||||
},
|
||||
{
|
||||
"id": "(a -> b)[4]",
|
||||
"src": "a",
|
||||
"srcArrow": "none",
|
||||
"srcLabel": "",
|
||||
"dst": "b",
|
||||
"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": 325,
|
||||
"y": 956
|
||||
},
|
||||
{
|
||||
"x": 75,
|
||||
"y": 956
|
||||
}
|
||||
],
|
||||
"animated": false,
|
||||
"tooltip": "",
|
||||
"icon": null,
|
||||
"zIndex": 4
|
||||
},
|
||||
{
|
||||
"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": 75,
|
||||
"y": 176
|
||||
},
|
||||
{
|
||||
"x": 75,
|
||||
"y": 1086
|
||||
}
|
||||
],
|
||||
"animated": false,
|
||||
"tooltip": "",
|
||||
"icon": null,
|
||||
"zIndex": 1
|
||||
},
|
||||
{
|
||||
"id": "(a -- )[0]",
|
||||
"src": "a",
|
||||
"srcArrow": "none",
|
||||
"srcLabel": "",
|
||||
"dst": "a-lifeline-end-2251863791",
|
||||
"dstArrow": "none",
|
||||
"dstLabel": "",
|
||||
"opacity": 1,
|
||||
"strokeDash": 6,
|
||||
"strokeWidth": 2,
|
||||
"stroke": "#0D32B2",
|
||||
"label": "",
|
||||
"fontSize": 16,
|
||||
"fontFamily": "DEFAULT",
|
||||
"language": "",
|
||||
"color": "#676C7E",
|
||||
"italic": true,
|
||||
"bold": false,
|
||||
"underline": false,
|
||||
"labelWidth": 0,
|
||||
"labelHeight": 0,
|
||||
"labelPosition": "",
|
||||
"labelPercentage": 0,
|
||||
"route": [
|
||||
{
|
||||
"x": 325,
|
||||
"y": 176
|
||||
},
|
||||
{
|
||||
"x": 325,
|
||||
"y": 1086
|
||||
}
|
||||
],
|
||||
"animated": false,
|
||||
"tooltip": "",
|
||||
"icon": null,
|
||||
"zIndex": 1
|
||||
},
|
||||
{
|
||||
"id": "(c -- )[0]",
|
||||
"src": "c",
|
||||
"srcArrow": "none",
|
||||
"srcLabel": "",
|
||||
"dst": "c-lifeline-end-955173837",
|
||||
"dstArrow": "none",
|
||||
"dstLabel": "",
|
||||
"opacity": 1,
|
||||
"strokeDash": 6,
|
||||
"strokeWidth": 2,
|
||||
"stroke": "#0D32B2",
|
||||
"label": "",
|
||||
"fontSize": 16,
|
||||
"fontFamily": "DEFAULT",
|
||||
"language": "",
|
||||
"color": "#676C7E",
|
||||
"italic": true,
|
||||
"bold": false,
|
||||
"underline": false,
|
||||
"labelWidth": 0,
|
||||
"labelHeight": 0,
|
||||
"labelPosition": "",
|
||||
"labelPercentage": 0,
|
||||
"route": [
|
||||
{
|
||||
"x": 575,
|
||||
"y": 176
|
||||
},
|
||||
{
|
||||
"x": 575,
|
||||
"y": 1086
|
||||
}
|
||||
],
|
||||
"animated": false,
|
||||
"tooltip": "",
|
||||
"icon": null,
|
||||
"zIndex": 1
|
||||
}
|
||||
]
|
||||
}
|
||||
28
e2etests/testdata/todo/sequence_diagram_actor_padding_nested_groups/dagre/sketch.exp.svg
vendored
Normal file
|
After Width: | Height: | Size: 329 KiB |
673
e2etests/testdata/todo/sequence_diagram_actor_padding_nested_groups/elk/board.exp.json
generated
vendored
Normal file
|
|
@ -0,0 +1,673 @@
|
|||
{
|
||||
"name": "",
|
||||
"shapes": [
|
||||
{
|
||||
"id": "b",
|
||||
"type": "",
|
||||
"pos": {
|
||||
"x": 0,
|
||||
"y": 50
|
||||
},
|
||||
"width": 150,
|
||||
"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": "",
|
||||
"blend": false,
|
||||
"fields": null,
|
||||
"methods": null,
|
||||
"columns": null,
|
||||
"label": "b",
|
||||
"fontSize": 16,
|
||||
"fontFamily": "DEFAULT",
|
||||
"language": "",
|
||||
"color": "#0A0F25",
|
||||
"italic": false,
|
||||
"bold": false,
|
||||
"underline": false,
|
||||
"labelWidth": 13,
|
||||
"labelHeight": 26,
|
||||
"labelPosition": "INSIDE_MIDDLE_CENTER",
|
||||
"zIndex": 0,
|
||||
"level": 1
|
||||
},
|
||||
{
|
||||
"id": "a",
|
||||
"type": "",
|
||||
"pos": {
|
||||
"x": 250,
|
||||
"y": 50
|
||||
},
|
||||
"width": 150,
|
||||
"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": "",
|
||||
"blend": false,
|
||||
"fields": null,
|
||||
"methods": null,
|
||||
"columns": null,
|
||||
"label": "a",
|
||||
"fontSize": 16,
|
||||
"fontFamily": "DEFAULT",
|
||||
"language": "",
|
||||
"color": "#0A0F25",
|
||||
"italic": false,
|
||||
"bold": false,
|
||||
"underline": false,
|
||||
"labelWidth": 12,
|
||||
"labelHeight": 26,
|
||||
"labelPosition": "INSIDE_MIDDLE_CENTER",
|
||||
"zIndex": 0,
|
||||
"level": 1
|
||||
},
|
||||
{
|
||||
"id": "c",
|
||||
"type": "",
|
||||
"pos": {
|
||||
"x": 500,
|
||||
"y": 50
|
||||
},
|
||||
"width": 150,
|
||||
"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": "",
|
||||
"blend": false,
|
||||
"fields": null,
|
||||
"methods": null,
|
||||
"columns": null,
|
||||
"label": "c",
|
||||
"fontSize": 16,
|
||||
"fontFamily": "DEFAULT",
|
||||
"language": "",
|
||||
"color": "#0A0F25",
|
||||
"italic": false,
|
||||
"bold": false,
|
||||
"underline": false,
|
||||
"labelWidth": 12,
|
||||
"labelHeight": 26,
|
||||
"labelPosition": "INSIDE_MIDDLE_CENTER",
|
||||
"zIndex": 0,
|
||||
"level": 1
|
||||
},
|
||||
{
|
||||
"id": "this is a message group",
|
||||
"type": "",
|
||||
"pos": {
|
||||
"x": -71,
|
||||
"y": 396
|
||||
},
|
||||
"width": 542,
|
||||
"height": 696,
|
||||
"opacity": 1,
|
||||
"strokeDash": 0,
|
||||
"strokeWidth": 0,
|
||||
"borderRadius": 0,
|
||||
"fill": "#DEE1EB",
|
||||
"stroke": "#0D32B2",
|
||||
"shadow": false,
|
||||
"3d": false,
|
||||
"multiple": false,
|
||||
"tooltip": "",
|
||||
"link": "",
|
||||
"icon": null,
|
||||
"iconPosition": "",
|
||||
"blend": true,
|
||||
"fields": null,
|
||||
"methods": null,
|
||||
"columns": null,
|
||||
"label": "this is a message group",
|
||||
"fontSize": 16,
|
||||
"fontFamily": "DEFAULT",
|
||||
"language": "",
|
||||
"color": "#0A0F25",
|
||||
"italic": false,
|
||||
"bold": false,
|
||||
"underline": false,
|
||||
"labelWidth": 160,
|
||||
"labelHeight": 26,
|
||||
"zIndex": 3,
|
||||
"level": 1
|
||||
},
|
||||
{
|
||||
"id": "this is a message group.and this is a nested message group",
|
||||
"type": "",
|
||||
"pos": {
|
||||
"x": -47,
|
||||
"y": 526
|
||||
},
|
||||
"width": 494,
|
||||
"height": 542,
|
||||
"opacity": 1,
|
||||
"strokeDash": 0,
|
||||
"strokeWidth": 0,
|
||||
"borderRadius": 0,
|
||||
"fill": "#DEE1EB",
|
||||
"stroke": "#0D32B2",
|
||||
"shadow": false,
|
||||
"3d": false,
|
||||
"multiple": false,
|
||||
"tooltip": "",
|
||||
"link": "",
|
||||
"icon": null,
|
||||
"iconPosition": "",
|
||||
"blend": true,
|
||||
"fields": null,
|
||||
"methods": null,
|
||||
"columns": null,
|
||||
"label": "and this is a nested message group",
|
||||
"fontSize": 16,
|
||||
"fontFamily": "DEFAULT",
|
||||
"language": "",
|
||||
"color": "#0A0F25",
|
||||
"italic": false,
|
||||
"bold": false,
|
||||
"underline": false,
|
||||
"labelWidth": 238,
|
||||
"labelHeight": 26,
|
||||
"zIndex": 3,
|
||||
"level": 2
|
||||
},
|
||||
{
|
||||
"id": "this is a message group.and this is a nested message group.what about more nesting",
|
||||
"type": "",
|
||||
"pos": {
|
||||
"x": -23,
|
||||
"y": 656
|
||||
},
|
||||
"width": 446,
|
||||
"height": 388,
|
||||
"opacity": 1,
|
||||
"strokeDash": 0,
|
||||
"strokeWidth": 0,
|
||||
"borderRadius": 0,
|
||||
"fill": "#DEE1EB",
|
||||
"stroke": "#0D32B2",
|
||||
"shadow": false,
|
||||
"3d": false,
|
||||
"multiple": false,
|
||||
"tooltip": "",
|
||||
"link": "",
|
||||
"icon": null,
|
||||
"iconPosition": "",
|
||||
"blend": true,
|
||||
"fields": null,
|
||||
"methods": null,
|
||||
"columns": null,
|
||||
"label": "what about more nesting",
|
||||
"fontSize": 16,
|
||||
"fontFamily": "DEFAULT",
|
||||
"language": "",
|
||||
"color": "#0A0F25",
|
||||
"italic": false,
|
||||
"bold": false,
|
||||
"underline": false,
|
||||
"labelWidth": 173,
|
||||
"labelHeight": 26,
|
||||
"zIndex": 3,
|
||||
"level": 3
|
||||
},
|
||||
{
|
||||
"id": "this is a message group.and this is a nested message group.what about more nesting.yo",
|
||||
"type": "",
|
||||
"pos": {
|
||||
"x": 1,
|
||||
"y": 786
|
||||
},
|
||||
"width": 398,
|
||||
"height": 234,
|
||||
"opacity": 1,
|
||||
"strokeDash": 0,
|
||||
"strokeWidth": 0,
|
||||
"borderRadius": 0,
|
||||
"fill": "#DEE1EB",
|
||||
"stroke": "#0D32B2",
|
||||
"shadow": false,
|
||||
"3d": false,
|
||||
"multiple": false,
|
||||
"tooltip": "",
|
||||
"link": "",
|
||||
"icon": null,
|
||||
"iconPosition": "",
|
||||
"blend": true,
|
||||
"fields": null,
|
||||
"methods": null,
|
||||
"columns": null,
|
||||
"label": "yo",
|
||||
"fontSize": 16,
|
||||
"fontFamily": "DEFAULT",
|
||||
"language": "",
|
||||
"color": "#0A0F25",
|
||||
"italic": false,
|
||||
"bold": false,
|
||||
"underline": false,
|
||||
"labelWidth": 21,
|
||||
"labelHeight": 26,
|
||||
"zIndex": 3,
|
||||
"level": 4
|
||||
},
|
||||
{
|
||||
"id": "this is a message group.and this is a nested message group.what about more nesting.yo.yo",
|
||||
"type": "",
|
||||
"pos": {
|
||||
"x": 25,
|
||||
"y": 916
|
||||
},
|
||||
"width": 350,
|
||||
"height": 80,
|
||||
"opacity": 1,
|
||||
"strokeDash": 0,
|
||||
"strokeWidth": 0,
|
||||
"borderRadius": 0,
|
||||
"fill": "#DEE1EB",
|
||||
"stroke": "#0D32B2",
|
||||
"shadow": false,
|
||||
"3d": false,
|
||||
"multiple": false,
|
||||
"tooltip": "",
|
||||
"link": "",
|
||||
"icon": null,
|
||||
"iconPosition": "",
|
||||
"blend": true,
|
||||
"fields": null,
|
||||
"methods": null,
|
||||
"columns": null,
|
||||
"label": "yo",
|
||||
"fontSize": 16,
|
||||
"fontFamily": "DEFAULT",
|
||||
"language": "",
|
||||
"color": "#0A0F25",
|
||||
"italic": false,
|
||||
"bold": false,
|
||||
"underline": false,
|
||||
"labelWidth": 21,
|
||||
"labelHeight": 26,
|
||||
"zIndex": 3,
|
||||
"level": 5
|
||||
}
|
||||
],
|
||||
"connections": [
|
||||
{
|
||||
"id": "(b -> c)[0]",
|
||||
"src": "b",
|
||||
"srcArrow": "none",
|
||||
"srcLabel": "",
|
||||
"dst": "c",
|
||||
"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": 75,
|
||||
"y": 306
|
||||
},
|
||||
{
|
||||
"x": 575,
|
||||
"y": 306
|
||||
}
|
||||
],
|
||||
"animated": false,
|
||||
"tooltip": "",
|
||||
"icon": null,
|
||||
"zIndex": 4
|
||||
},
|
||||
{
|
||||
"id": "(a -> b)[0]",
|
||||
"src": "a",
|
||||
"srcArrow": "none",
|
||||
"srcLabel": "",
|
||||
"dst": "b",
|
||||
"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": 325,
|
||||
"y": 436
|
||||
},
|
||||
{
|
||||
"x": 75,
|
||||
"y": 436
|
||||
}
|
||||
],
|
||||
"animated": false,
|
||||
"tooltip": "",
|
||||
"icon": null,
|
||||
"zIndex": 4
|
||||
},
|
||||
{
|
||||
"id": "(a -> b)[1]",
|
||||
"src": "a",
|
||||
"srcArrow": "none",
|
||||
"srcLabel": "",
|
||||
"dst": "b",
|
||||
"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": 325,
|
||||
"y": 566
|
||||
},
|
||||
{
|
||||
"x": 75,
|
||||
"y": 566
|
||||
}
|
||||
],
|
||||
"animated": false,
|
||||
"tooltip": "",
|
||||
"icon": null,
|
||||
"zIndex": 4
|
||||
},
|
||||
{
|
||||
"id": "(a -> b)[2]",
|
||||
"src": "a",
|
||||
"srcArrow": "none",
|
||||
"srcLabel": "",
|
||||
"dst": "b",
|
||||
"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": 325,
|
||||
"y": 696
|
||||
},
|
||||
{
|
||||
"x": 75,
|
||||
"y": 696
|
||||
}
|
||||
],
|
||||
"animated": false,
|
||||
"tooltip": "",
|
||||
"icon": null,
|
||||
"zIndex": 4
|
||||
},
|
||||
{
|
||||
"id": "(a -> b)[3]",
|
||||
"src": "a",
|
||||
"srcArrow": "none",
|
||||
"srcLabel": "",
|
||||
"dst": "b",
|
||||
"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": 325,
|
||||
"y": 826
|
||||
},
|
||||
{
|
||||
"x": 75,
|
||||
"y": 826
|
||||
}
|
||||
],
|
||||
"animated": false,
|
||||
"tooltip": "",
|
||||
"icon": null,
|
||||
"zIndex": 4
|
||||
},
|
||||
{
|
||||
"id": "(a -> b)[4]",
|
||||
"src": "a",
|
||||
"srcArrow": "none",
|
||||
"srcLabel": "",
|
||||
"dst": "b",
|
||||
"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": 325,
|
||||
"y": 956
|
||||
},
|
||||
{
|
||||
"x": 75,
|
||||
"y": 956
|
||||
}
|
||||
],
|
||||
"animated": false,
|
||||
"tooltip": "",
|
||||
"icon": null,
|
||||
"zIndex": 4
|
||||
},
|
||||
{
|
||||
"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": 75,
|
||||
"y": 176
|
||||
},
|
||||
{
|
||||
"x": 75,
|
||||
"y": 1086
|
||||
}
|
||||
],
|
||||
"animated": false,
|
||||
"tooltip": "",
|
||||
"icon": null,
|
||||
"zIndex": 1
|
||||
},
|
||||
{
|
||||
"id": "(a -- )[0]",
|
||||
"src": "a",
|
||||
"srcArrow": "none",
|
||||
"srcLabel": "",
|
||||
"dst": "a-lifeline-end-2251863791",
|
||||
"dstArrow": "none",
|
||||
"dstLabel": "",
|
||||
"opacity": 1,
|
||||
"strokeDash": 6,
|
||||
"strokeWidth": 2,
|
||||
"stroke": "#0D32B2",
|
||||
"label": "",
|
||||
"fontSize": 16,
|
||||
"fontFamily": "DEFAULT",
|
||||
"language": "",
|
||||
"color": "#676C7E",
|
||||
"italic": true,
|
||||
"bold": false,
|
||||
"underline": false,
|
||||
"labelWidth": 0,
|
||||
"labelHeight": 0,
|
||||
"labelPosition": "",
|
||||
"labelPercentage": 0,
|
||||
"route": [
|
||||
{
|
||||
"x": 325,
|
||||
"y": 176
|
||||
},
|
||||
{
|
||||
"x": 325,
|
||||
"y": 1086
|
||||
}
|
||||
],
|
||||
"animated": false,
|
||||
"tooltip": "",
|
||||
"icon": null,
|
||||
"zIndex": 1
|
||||
},
|
||||
{
|
||||
"id": "(c -- )[0]",
|
||||
"src": "c",
|
||||
"srcArrow": "none",
|
||||
"srcLabel": "",
|
||||
"dst": "c-lifeline-end-955173837",
|
||||
"dstArrow": "none",
|
||||
"dstLabel": "",
|
||||
"opacity": 1,
|
||||
"strokeDash": 6,
|
||||
"strokeWidth": 2,
|
||||
"stroke": "#0D32B2",
|
||||
"label": "",
|
||||
"fontSize": 16,
|
||||
"fontFamily": "DEFAULT",
|
||||
"language": "",
|
||||
"color": "#676C7E",
|
||||
"italic": true,
|
||||
"bold": false,
|
||||
"underline": false,
|
||||
"labelWidth": 0,
|
||||
"labelHeight": 0,
|
||||
"labelPosition": "",
|
||||
"labelPercentage": 0,
|
||||
"route": [
|
||||
{
|
||||
"x": 575,
|
||||
"y": 176
|
||||
},
|
||||
{
|
||||
"x": 575,
|
||||
"y": 1086
|
||||
}
|
||||
],
|
||||
"animated": false,
|
||||
"tooltip": "",
|
||||
"icon": null,
|
||||
"zIndex": 1
|
||||
}
|
||||
]
|
||||
}
|
||||
28
e2etests/testdata/todo/sequence_diagram_actor_padding_nested_groups/elk/sketch.exp.svg
vendored
Normal file
|
After Width: | Height: | Size: 329 KiB |
|
|
@ -66,6 +66,29 @@ ninety nine: {
|
|||
}
|
||||
}
|
||||
`,
|
||||
}, {
|
||||
// as nesting gets deeper, the groups advance towards `c` and may overlap its lifeline
|
||||
// needs to consider the group size when computing the distance from `a` to `c`
|
||||
// a similar effect can be seen for spans
|
||||
name: "sequence_diagram_actor_padding_nested_groups",
|
||||
script: `shape: sequence_diagram
|
||||
b;a;c
|
||||
b -> c
|
||||
this is a message group: {
|
||||
_.a -> _.b
|
||||
and this is a nested message group: {
|
||||
_._.a -> _._.b
|
||||
what about more nesting: {
|
||||
_._._.a -> _._._.b
|
||||
yo: {
|
||||
_._._._.a -> _._._._.b
|
||||
yo: {
|
||||
_._._._._.a -> _._._._._.b
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}`,
|
||||
},
|
||||
}
|
||||
|
||||
|
|
|
|||
2
testdata/d2exporter/TestExport/connection/arrowhead.exp.json
generated
vendored
|
|
@ -23,6 +23,7 @@
|
|||
"link": "",
|
||||
"icon": null,
|
||||
"iconPosition": "",
|
||||
"blend": false,
|
||||
"fields": null,
|
||||
"methods": null,
|
||||
"columns": null,
|
||||
|
|
@ -61,6 +62,7 @@
|
|||
"link": "",
|
||||
"icon": null,
|
||||
"iconPosition": "",
|
||||
"blend": false,
|
||||
"fields": null,
|
||||
"methods": null,
|
||||
"columns": null,
|
||||
|
|
|
|||
2
testdata/d2exporter/TestExport/connection/basic.exp.json
generated
vendored
|
|
@ -23,6 +23,7 @@
|
|||
"link": "",
|
||||
"icon": null,
|
||||
"iconPosition": "",
|
||||
"blend": false,
|
||||
"fields": null,
|
||||
"methods": null,
|
||||
"columns": null,
|
||||
|
|
@ -61,6 +62,7 @@
|
|||
"link": "",
|
||||
"icon": null,
|
||||
"iconPosition": "",
|
||||
"blend": false,
|
||||
"fields": null,
|
||||
"methods": null,
|
||||
"columns": null,
|
||||
|
|
|
|||
2
testdata/d2exporter/TestExport/connection/stroke-dash.exp.json
generated
vendored
|
|
@ -23,6 +23,7 @@
|
|||
"link": "",
|
||||
"icon": null,
|
||||
"iconPosition": "",
|
||||
"blend": false,
|
||||
"fields": null,
|
||||
"methods": null,
|
||||
"columns": null,
|
||||
|
|
@ -61,6 +62,7 @@
|
|||
"link": "",
|
||||
"icon": null,
|
||||
"iconPosition": "",
|
||||
"blend": false,
|
||||
"fields": null,
|
||||
"methods": null,
|
||||
"columns": null,
|
||||
|
|
|
|||
2
testdata/d2exporter/TestExport/connection/theme_stroke-dash.exp.json
generated
vendored
|
|
@ -23,6 +23,7 @@
|
|||
"link": "",
|
||||
"icon": null,
|
||||
"iconPosition": "",
|
||||
"blend": false,
|
||||
"fields": null,
|
||||
"methods": null,
|
||||
"columns": null,
|
||||
|
|
@ -61,6 +62,7 @@
|
|||
"link": "",
|
||||
"icon": null,
|
||||
"iconPosition": "",
|
||||
"blend": false,
|
||||
"fields": null,
|
||||
"methods": null,
|
||||
"columns": null,
|
||||
|
|
|
|||
1
testdata/d2exporter/TestExport/label/basic_shape.exp.json
generated
vendored
|
|
@ -23,6 +23,7 @@
|
|||
"link": "",
|
||||
"icon": null,
|
||||
"iconPosition": "",
|
||||
"blend": false,
|
||||
"fields": null,
|
||||
"methods": null,
|
||||
"columns": null,
|
||||
|
|
|
|||
2
testdata/d2exporter/TestExport/label/connection_font_color.exp.json
generated
vendored
|
|
@ -23,6 +23,7 @@
|
|||
"link": "",
|
||||
"icon": null,
|
||||
"iconPosition": "",
|
||||
"blend": false,
|
||||
"fields": null,
|
||||
"methods": null,
|
||||
"columns": null,
|
||||
|
|
@ -61,6 +62,7 @@
|
|||
"link": "",
|
||||
"icon": null,
|
||||
"iconPosition": "",
|
||||
"blend": false,
|
||||
"fields": null,
|
||||
"methods": null,
|
||||
"columns": null,
|
||||
|
|
|
|||
1
testdata/d2exporter/TestExport/label/shape_font_color.exp.json
generated
vendored
|
|
@ -23,6 +23,7 @@
|
|||
"link": "",
|
||||
"icon": null,
|
||||
"iconPosition": "",
|
||||
"blend": false,
|
||||
"fields": null,
|
||||
"methods": null,
|
||||
"columns": null,
|
||||
|
|
|
|||
1
testdata/d2exporter/TestExport/shape/basic.exp.json
generated
vendored
|
|
@ -23,6 +23,7 @@
|
|||
"link": "",
|
||||
"icon": null,
|
||||
"iconPosition": "",
|
||||
"blend": false,
|
||||
"fields": null,
|
||||
"methods": null,
|
||||
"columns": null,
|
||||
|
|
|
|||
1
testdata/d2exporter/TestExport/shape/border-radius.exp.json
generated
vendored
|
|
@ -23,6 +23,7 @@
|
|||
"link": "",
|
||||
"icon": null,
|
||||
"iconPosition": "",
|
||||
"blend": false,
|
||||
"fields": null,
|
||||
"methods": null,
|
||||
"columns": null,
|
||||
|
|
|
|||
1
testdata/d2exporter/TestExport/shape/image_dimensions.exp.json
generated
vendored
|
|
@ -34,6 +34,7 @@
|
|||
"RawFragment": ""
|
||||
},
|
||||
"iconPosition": "INSIDE_MIDDLE_CENTER",
|
||||
"blend": false,
|
||||
"fields": null,
|
||||
"methods": null,
|
||||
"columns": null,
|
||||
|
|
|
|||
2
testdata/d2exporter/TestExport/shape/synonyms.exp.json
generated
vendored
|
|
@ -23,6 +23,7 @@
|
|||
"link": "",
|
||||
"icon": null,
|
||||
"iconPosition": "",
|
||||
"blend": false,
|
||||
"fields": null,
|
||||
"methods": null,
|
||||
"columns": null,
|
||||
|
|
@ -61,6 +62,7 @@
|
|||
"link": "",
|
||||
"icon": null,
|
||||
"iconPosition": "",
|
||||
"blend": false,
|
||||
"fields": null,
|
||||
"methods": null,
|
||||
"columns": null,
|
||||
|
|
|
|||
1
testdata/d2exporter/TestExport/shape/text_color.exp.json
generated
vendored
|
|
@ -23,6 +23,7 @@
|
|||
"link": "",
|
||||
"icon": null,
|
||||
"iconPosition": "",
|
||||
"blend": false,
|
||||
"fields": null,
|
||||
"methods": null,
|
||||
"columns": null,
|
||||
|
|
|
|||
2
testdata/d2exporter/TestExport/theme/connection_with_bold.exp.json
generated
vendored
|
|
@ -23,6 +23,7 @@
|
|||
"link": "",
|
||||
"icon": null,
|
||||
"iconPosition": "",
|
||||
"blend": false,
|
||||
"fields": null,
|
||||
"methods": null,
|
||||
"columns": null,
|
||||
|
|
@ -61,6 +62,7 @@
|
|||
"link": "",
|
||||
"icon": null,
|
||||
"iconPosition": "",
|
||||
"blend": false,
|
||||
"fields": null,
|
||||
"methods": null,
|
||||
"columns": null,
|
||||
|
|
|
|||
2
testdata/d2exporter/TestExport/theme/connection_with_italic.exp.json
generated
vendored
|
|
@ -23,6 +23,7 @@
|
|||
"link": "",
|
||||
"icon": null,
|
||||
"iconPosition": "",
|
||||
"blend": false,
|
||||
"fields": null,
|
||||
"methods": null,
|
||||
"columns": null,
|
||||
|
|
@ -61,6 +62,7 @@
|
|||
"link": "",
|
||||
"icon": null,
|
||||
"iconPosition": "",
|
||||
"blend": false,
|
||||
"fields": null,
|
||||
"methods": null,
|
||||
"columns": null,
|
||||
|
|
|
|||
2
testdata/d2exporter/TestExport/theme/connection_without_italic.exp.json
generated
vendored
|
|
@ -23,6 +23,7 @@
|
|||
"link": "",
|
||||
"icon": null,
|
||||
"iconPosition": "",
|
||||
"blend": false,
|
||||
"fields": null,
|
||||
"methods": null,
|
||||
"columns": null,
|
||||
|
|
@ -61,6 +62,7 @@
|
|||
"link": "",
|
||||
"icon": null,
|
||||
"iconPosition": "",
|
||||
"blend": false,
|
||||
"fields": null,
|
||||
"methods": null,
|
||||
"columns": null,
|
||||
|
|
|
|||
1
testdata/d2exporter/TestExport/theme/shape_with_italic.exp.json
generated
vendored
|
|
@ -23,6 +23,7 @@
|
|||
"link": "",
|
||||
"icon": null,
|
||||
"iconPosition": "",
|
||||
"blend": false,
|
||||
"fields": null,
|
||||
"methods": null,
|
||||
"columns": null,
|
||||
|
|
|
|||
1
testdata/d2exporter/TestExport/theme/shape_without_bold.exp.json
generated
vendored
|
|
@ -23,6 +23,7 @@
|
|||
"link": "",
|
||||
"icon": null,
|
||||
"iconPosition": "",
|
||||
"blend": false,
|
||||
"fields": null,
|
||||
"methods": null,
|
||||
"columns": null,
|
||||
|
|
|
|||