Fix actor font size
|
|
@ -399,6 +399,10 @@ func (obj *Object) IsContainer() bool {
|
|||
return len(obj.Children) > 0
|
||||
}
|
||||
|
||||
func (obj *Object) IsSequenceDiagram() bool {
|
||||
return obj != nil && obj.Attributes.Shape.Value == d2target.ShapeSequenceDiagram
|
||||
}
|
||||
|
||||
func (obj *Object) AbsID() string {
|
||||
if obj.Parent != nil && obj.Parent.ID != "" {
|
||||
return obj.Parent.AbsID() + "." + obj.ID
|
||||
|
|
@ -415,7 +419,8 @@ func (obj *Object) AbsIDArray() []string {
|
|||
|
||||
func (obj *Object) Text() *d2target.MText {
|
||||
fontSize := d2fonts.FONT_SIZE_M
|
||||
if obj.IsContainer() {
|
||||
if obj.IsContainer() && !obj.Parent.IsSequenceDiagram() {
|
||||
// sequence diagram children (aka, actors) shouldn't have the container font size
|
||||
fontSize = obj.Level().LabelSize()
|
||||
}
|
||||
if obj.Attributes.Style.FontSize != nil {
|
||||
|
|
|
|||
|
|
@ -60,7 +60,7 @@ func Layout(ctx context.Context, g *d2graph.Graph, layout func(ctx context.Conte
|
|||
layoutObjects, objectOrder := getLayoutObjects(g, objectsToRemove)
|
||||
g.Objects = layoutObjects
|
||||
|
||||
if isRootSequenceDiagram(g) {
|
||||
if g.Root.IsSequenceDiagram() {
|
||||
// the sequence diagram is the only layout engine if the whole diagram is
|
||||
// shape: sequence_diagram
|
||||
g.Root.TopLeft = geo.NewPoint(0, 0)
|
||||
|
|
@ -72,10 +72,6 @@ func Layout(ctx context.Context, g *d2graph.Graph, layout func(ctx context.Conte
|
|||
return nil
|
||||
}
|
||||
|
||||
func isRootSequenceDiagram(g *d2graph.Graph) bool {
|
||||
return g.Root.Attributes.Shape.Value == d2target.ShapeSequenceDiagram
|
||||
}
|
||||
|
||||
// layoutSequenceDiagram finds the edges inside the sequence diagram and performs the layout on the object descendants
|
||||
func layoutSequenceDiagram(g *d2graph.Graph, obj *d2graph.Object) *sequenceDiagram {
|
||||
var edges []*d2graph.Edge
|
||||
|
|
@ -124,7 +120,7 @@ func getLayoutObjects(g *d2graph.Graph, toRemove map[*d2graph.Object]struct{}) (
|
|||
// - sorts edges and objects to their original graph order
|
||||
func cleanup(g *d2graph.Graph, sequenceDiagrams map[string]*sequenceDiagram, objectsOrder, edgesOrder map[string]int) {
|
||||
var objects []*d2graph.Object
|
||||
if isRootSequenceDiagram(g) {
|
||||
if g.Root.IsSequenceDiagram() {
|
||||
objects = []*d2graph.Object{g.Root}
|
||||
} else {
|
||||
objects = g.Objects
|
||||
|
|
|
|||
268
e2etests/testdata/stable/sequence_diagram_nested_span/dagre/board.exp.json
generated
vendored
|
|
@ -6,10 +6,10 @@
|
|||
"type": "",
|
||||
"pos": {
|
||||
"x": 0,
|
||||
"y": 50
|
||||
"y": 62
|
||||
},
|
||||
"width": 179,
|
||||
"height": 141,
|
||||
"width": 150,
|
||||
"height": 128,
|
||||
"opacity": 1,
|
||||
"strokeDash": 0,
|
||||
"strokeWidth": 5,
|
||||
|
|
@ -27,15 +27,15 @@
|
|||
"methods": null,
|
||||
"columns": null,
|
||||
"label": "scorer",
|
||||
"fontSize": 28,
|
||||
"fontSize": 16,
|
||||
"fontFamily": "DEFAULT",
|
||||
"language": "",
|
||||
"color": "#0A0F25",
|
||||
"italic": false,
|
||||
"bold": true,
|
||||
"underline": false,
|
||||
"labelWidth": 79,
|
||||
"labelHeight": 41,
|
||||
"labelWidth": 48,
|
||||
"labelHeight": 26,
|
||||
"labelPosition": "INSIDE_MIDDLE_CENTER",
|
||||
"zIndex": 0,
|
||||
"level": 1
|
||||
|
|
@ -44,8 +44,8 @@
|
|||
"id": "scorer.abc",
|
||||
"type": "rectangle",
|
||||
"pos": {
|
||||
"x": 83,
|
||||
"y": 1085
|
||||
"x": 69,
|
||||
"y": 1084
|
||||
},
|
||||
"width": 12,
|
||||
"height": 80,
|
||||
|
|
@ -82,11 +82,11 @@
|
|||
"id": "itemResponse",
|
||||
"type": "",
|
||||
"pos": {
|
||||
"x": 429,
|
||||
"y": 50
|
||||
"x": 400,
|
||||
"y": 64
|
||||
},
|
||||
"width": 270,
|
||||
"height": 141,
|
||||
"width": 200,
|
||||
"height": 126,
|
||||
"opacity": 1,
|
||||
"strokeDash": 0,
|
||||
"strokeWidth": 2,
|
||||
|
|
@ -104,15 +104,15 @@
|
|||
"methods": null,
|
||||
"columns": null,
|
||||
"label": "itemResponse",
|
||||
"fontSize": 28,
|
||||
"fontSize": 16,
|
||||
"fontFamily": "DEFAULT",
|
||||
"language": "",
|
||||
"color": "#0A0F25",
|
||||
"italic": false,
|
||||
"bold": true,
|
||||
"underline": false,
|
||||
"labelWidth": 170,
|
||||
"labelHeight": 41,
|
||||
"labelWidth": 100,
|
||||
"labelHeight": 26,
|
||||
"labelPosition": "INSIDE_MIDDLE_CENTER",
|
||||
"zIndex": 0,
|
||||
"level": 1
|
||||
|
|
@ -121,8 +121,8 @@
|
|||
"id": "itemResponse.a",
|
||||
"type": "rectangle",
|
||||
"pos": {
|
||||
"x": 558,
|
||||
"y": 305
|
||||
"x": 494,
|
||||
"y": 304
|
||||
},
|
||||
"width": 12,
|
||||
"height": 162,
|
||||
|
|
@ -159,11 +159,11 @@
|
|||
"id": "item",
|
||||
"type": "",
|
||||
"pos": {
|
||||
"x": 949,
|
||||
"x": 850,
|
||||
"y": 50
|
||||
},
|
||||
"width": 157,
|
||||
"height": 141,
|
||||
"width": 150,
|
||||
"height": 140,
|
||||
"opacity": 1,
|
||||
"strokeDash": 0,
|
||||
"strokeWidth": 2,
|
||||
|
|
@ -181,15 +181,15 @@
|
|||
"methods": null,
|
||||
"columns": null,
|
||||
"label": "item",
|
||||
"fontSize": 28,
|
||||
"fontSize": 16,
|
||||
"fontFamily": "DEFAULT",
|
||||
"language": "",
|
||||
"color": "#0A0F25",
|
||||
"italic": false,
|
||||
"bold": true,
|
||||
"underline": false,
|
||||
"labelWidth": 57,
|
||||
"labelHeight": 41,
|
||||
"labelWidth": 35,
|
||||
"labelHeight": 26,
|
||||
"labelPosition": "INSIDE_MIDDLE_CENTER",
|
||||
"zIndex": 0,
|
||||
"level": 1
|
||||
|
|
@ -198,8 +198,8 @@
|
|||
"id": "item.a",
|
||||
"type": "rectangle",
|
||||
"pos": {
|
||||
"x": 1021,
|
||||
"y": 419
|
||||
"x": 919,
|
||||
"y": 418
|
||||
},
|
||||
"width": 12,
|
||||
"height": 698,
|
||||
|
|
@ -236,8 +236,8 @@
|
|||
"id": "item.a.b",
|
||||
"type": "rectangle",
|
||||
"pos": {
|
||||
"x": 1017,
|
||||
"y": 435
|
||||
"x": 915,
|
||||
"y": 434
|
||||
},
|
||||
"width": 20,
|
||||
"height": 162,
|
||||
|
|
@ -274,11 +274,11 @@
|
|||
"id": "essayRubric",
|
||||
"type": "",
|
||||
"pos": {
|
||||
"x": 1356,
|
||||
"y": 50
|
||||
"x": 1250,
|
||||
"y": 64
|
||||
},
|
||||
"width": 245,
|
||||
"height": 141,
|
||||
"width": 186,
|
||||
"height": 126,
|
||||
"opacity": 1,
|
||||
"strokeDash": 0,
|
||||
"strokeWidth": 2,
|
||||
|
|
@ -296,15 +296,15 @@
|
|||
"methods": null,
|
||||
"columns": null,
|
||||
"label": "essayRubric",
|
||||
"fontSize": 28,
|
||||
"fontSize": 16,
|
||||
"fontFamily": "DEFAULT",
|
||||
"language": "",
|
||||
"color": "#0A0F25",
|
||||
"italic": false,
|
||||
"bold": true,
|
||||
"underline": false,
|
||||
"labelWidth": 145,
|
||||
"labelHeight": 41,
|
||||
"labelWidth": 86,
|
||||
"labelHeight": 26,
|
||||
"labelPosition": "INSIDE_MIDDLE_CENTER",
|
||||
"zIndex": 0,
|
||||
"level": 1
|
||||
|
|
@ -313,8 +313,8 @@
|
|||
"id": "essayRubric.a",
|
||||
"type": "rectangle",
|
||||
"pos": {
|
||||
"x": 1472,
|
||||
"y": 533
|
||||
"x": 1337,
|
||||
"y": 532
|
||||
},
|
||||
"width": 12,
|
||||
"height": 340,
|
||||
|
|
@ -351,8 +351,8 @@
|
|||
"id": "essayRubric.a.b",
|
||||
"type": "rectangle",
|
||||
"pos": {
|
||||
"x": 1468,
|
||||
"y": 549
|
||||
"x": 1333,
|
||||
"y": 548
|
||||
},
|
||||
"width": 20,
|
||||
"height": 308,
|
||||
|
|
@ -389,8 +389,8 @@
|
|||
"id": "essayRubric.a.b.c",
|
||||
"type": "rectangle",
|
||||
"pos": {
|
||||
"x": 1464,
|
||||
"y": 565
|
||||
"x": 1329,
|
||||
"y": 564
|
||||
},
|
||||
"width": 28,
|
||||
"height": 162,
|
||||
|
|
@ -427,11 +427,11 @@
|
|||
"id": "concept",
|
||||
"type": "",
|
||||
"pos": {
|
||||
"x": 1851,
|
||||
"y": 50
|
||||
"x": 1686,
|
||||
"y": 64
|
||||
},
|
||||
"width": 200,
|
||||
"height": 141,
|
||||
"width": 160,
|
||||
"height": 126,
|
||||
"opacity": 1,
|
||||
"strokeDash": 0,
|
||||
"strokeWidth": 2,
|
||||
|
|
@ -449,15 +449,15 @@
|
|||
"methods": null,
|
||||
"columns": null,
|
||||
"label": "concept",
|
||||
"fontSize": 28,
|
||||
"fontSize": 16,
|
||||
"fontFamily": "DEFAULT",
|
||||
"language": "",
|
||||
"color": "#0A0F25",
|
||||
"italic": false,
|
||||
"bold": true,
|
||||
"underline": false,
|
||||
"labelWidth": 100,
|
||||
"labelHeight": 41,
|
||||
"labelWidth": 60,
|
||||
"labelHeight": 26,
|
||||
"labelPosition": "INSIDE_MIDDLE_CENTER",
|
||||
"zIndex": 0,
|
||||
"level": 1
|
||||
|
|
@ -466,8 +466,8 @@
|
|||
"id": "concept.a",
|
||||
"type": "rectangle",
|
||||
"pos": {
|
||||
"x": 1945,
|
||||
"y": 647
|
||||
"x": 1760,
|
||||
"y": 646
|
||||
},
|
||||
"width": 12,
|
||||
"height": 388,
|
||||
|
|
@ -504,8 +504,8 @@
|
|||
"id": "concept.a.b",
|
||||
"type": "rectangle",
|
||||
"pos": {
|
||||
"x": 1941,
|
||||
"y": 663
|
||||
"x": 1756,
|
||||
"y": 662
|
||||
},
|
||||
"width": 20,
|
||||
"height": 356,
|
||||
|
|
@ -542,8 +542,8 @@
|
|||
"id": "concept.a.b.c",
|
||||
"type": "rectangle",
|
||||
"pos": {
|
||||
"x": 1937,
|
||||
"y": 679
|
||||
"x": 1752,
|
||||
"y": 678
|
||||
},
|
||||
"width": 28,
|
||||
"height": 324,
|
||||
|
|
@ -580,8 +580,8 @@
|
|||
"id": "concept.a.b.c.d",
|
||||
"type": "rectangle",
|
||||
"pos": {
|
||||
"x": 1933,
|
||||
"y": 695
|
||||
"x": 1748,
|
||||
"y": 694
|
||||
},
|
||||
"width": 36,
|
||||
"height": 292,
|
||||
|
|
@ -618,11 +618,11 @@
|
|||
"id": "itemOutcome",
|
||||
"type": "",
|
||||
"pos": {
|
||||
"x": 2301,
|
||||
"y": 50
|
||||
"x": 2096,
|
||||
"y": 64
|
||||
},
|
||||
"width": 265,
|
||||
"height": 141,
|
||||
"width": 197,
|
||||
"height": 126,
|
||||
"opacity": 1,
|
||||
"strokeDash": 0,
|
||||
"strokeWidth": 2,
|
||||
|
|
@ -640,15 +640,15 @@
|
|||
"methods": null,
|
||||
"columns": null,
|
||||
"label": "itemOutcome",
|
||||
"fontSize": 28,
|
||||
"fontSize": 16,
|
||||
"fontFamily": "DEFAULT",
|
||||
"language": "",
|
||||
"color": "#0A0F25",
|
||||
"italic": false,
|
||||
"bold": true,
|
||||
"underline": false,
|
||||
"labelWidth": 165,
|
||||
"labelHeight": 41,
|
||||
"labelWidth": 97,
|
||||
"labelHeight": 26,
|
||||
"labelPosition": "INSIDE_MIDDLE_CENTER",
|
||||
"zIndex": 0,
|
||||
"level": 1
|
||||
|
|
@ -657,8 +657,8 @@
|
|||
"id": "itemOutcome.a",
|
||||
"type": "rectangle",
|
||||
"pos": {
|
||||
"x": 2427,
|
||||
"y": 891
|
||||
"x": 2188,
|
||||
"y": 890
|
||||
},
|
||||
"width": 12,
|
||||
"height": 420,
|
||||
|
|
@ -695,8 +695,8 @@
|
|||
"id": "itemOutcome.a.b",
|
||||
"type": "rectangle",
|
||||
"pos": {
|
||||
"x": 2423,
|
||||
"y": 907
|
||||
"x": 2184,
|
||||
"y": 906
|
||||
},
|
||||
"width": 20,
|
||||
"height": 388,
|
||||
|
|
@ -733,8 +733,8 @@
|
|||
"id": "itemOutcome.a.b.c",
|
||||
"type": "rectangle",
|
||||
"pos": {
|
||||
"x": 2419,
|
||||
"y": 923
|
||||
"x": 2180,
|
||||
"y": 922
|
||||
},
|
||||
"width": 28,
|
||||
"height": 356,
|
||||
|
|
@ -771,8 +771,8 @@
|
|||
"id": "itemOutcome.a.b.c.d",
|
||||
"type": "rectangle",
|
||||
"pos": {
|
||||
"x": 2415,
|
||||
"y": 939
|
||||
"x": 2176,
|
||||
"y": 938
|
||||
},
|
||||
"width": 36,
|
||||
"height": 324,
|
||||
|
|
@ -809,8 +809,8 @@
|
|||
"id": "itemOutcome.a.b.c.d.e",
|
||||
"type": "rectangle",
|
||||
"pos": {
|
||||
"x": 2411,
|
||||
"y": 955
|
||||
"x": 2172,
|
||||
"y": 954
|
||||
},
|
||||
"width": 44,
|
||||
"height": 292,
|
||||
|
|
@ -847,8 +847,8 @@
|
|||
"id": "itemResponse.c",
|
||||
"type": "rectangle",
|
||||
"pos": {
|
||||
"x": 558,
|
||||
"y": 1345
|
||||
"x": 494,
|
||||
"y": 1344
|
||||
},
|
||||
"width": 12,
|
||||
"height": 80,
|
||||
|
|
@ -909,12 +909,12 @@
|
|||
"labelPercentage": 0,
|
||||
"route": [
|
||||
{
|
||||
"x": 89.5,
|
||||
"y": 321
|
||||
"x": 75,
|
||||
"y": 320
|
||||
},
|
||||
{
|
||||
"x": 558,
|
||||
"y": 321
|
||||
"x": 494,
|
||||
"y": 320
|
||||
}
|
||||
],
|
||||
"animated": false,
|
||||
|
|
@ -948,12 +948,12 @@
|
|||
"labelPercentage": 0,
|
||||
"route": [
|
||||
{
|
||||
"x": 570,
|
||||
"y": 451
|
||||
"x": 506,
|
||||
"y": 450
|
||||
},
|
||||
{
|
||||
"x": 1017.5,
|
||||
"y": 451
|
||||
"x": 915,
|
||||
"y": 450
|
||||
}
|
||||
],
|
||||
"animated": false,
|
||||
|
|
@ -987,12 +987,12 @@
|
|||
"labelPercentage": 0,
|
||||
"route": [
|
||||
{
|
||||
"x": 1037.5,
|
||||
"y": 581
|
||||
"x": 935,
|
||||
"y": 580
|
||||
},
|
||||
{
|
||||
"x": 1464.5,
|
||||
"y": 581
|
||||
"x": 1329,
|
||||
"y": 580
|
||||
}
|
||||
],
|
||||
"animated": false,
|
||||
|
|
@ -1026,12 +1026,12 @@
|
|||
"labelPercentage": 0,
|
||||
"route": [
|
||||
{
|
||||
"x": 1492.5,
|
||||
"y": 711
|
||||
"x": 1357,
|
||||
"y": 710
|
||||
},
|
||||
{
|
||||
"x": 1933,
|
||||
"y": 711
|
||||
"x": 1748,
|
||||
"y": 710
|
||||
}
|
||||
],
|
||||
"animated": false,
|
||||
|
|
@ -1065,12 +1065,12 @@
|
|||
"labelPercentage": 0,
|
||||
"route": [
|
||||
{
|
||||
"x": 1033.5,
|
||||
"y": 841
|
||||
"x": 931,
|
||||
"y": 840
|
||||
},
|
||||
{
|
||||
"x": 1468.5,
|
||||
"y": 841
|
||||
"x": 1333,
|
||||
"y": 840
|
||||
}
|
||||
],
|
||||
"animated": false,
|
||||
|
|
@ -1104,12 +1104,12 @@
|
|||
"labelPercentage": 0,
|
||||
"route": [
|
||||
{
|
||||
"x": 1969,
|
||||
"y": 971
|
||||
"x": 1784,
|
||||
"y": 970
|
||||
},
|
||||
{
|
||||
"x": 2411.5,
|
||||
"y": 971
|
||||
"x": 2172.5,
|
||||
"y": 970
|
||||
}
|
||||
],
|
||||
"animated": false,
|
||||
|
|
@ -1143,12 +1143,12 @@
|
|||
"labelPercentage": 0,
|
||||
"route": [
|
||||
{
|
||||
"x": 95.5,
|
||||
"y": 1101
|
||||
"x": 81,
|
||||
"y": 1100
|
||||
},
|
||||
{
|
||||
"x": 1021.5,
|
||||
"y": 1101
|
||||
"x": 919,
|
||||
"y": 1100
|
||||
}
|
||||
],
|
||||
"animated": false,
|
||||
|
|
@ -1182,12 +1182,12 @@
|
|||
"labelPercentage": 0,
|
||||
"route": [
|
||||
{
|
||||
"x": 2411.5,
|
||||
"y": 1231
|
||||
"x": 2172.5,
|
||||
"y": 1230
|
||||
},
|
||||
{
|
||||
"x": 89.5,
|
||||
"y": 1231
|
||||
"x": 75,
|
||||
"y": 1230
|
||||
}
|
||||
],
|
||||
"animated": false,
|
||||
|
|
@ -1221,12 +1221,12 @@
|
|||
"labelPercentage": 0,
|
||||
"route": [
|
||||
{
|
||||
"x": 89.5,
|
||||
"y": 1361
|
||||
"x": 75,
|
||||
"y": 1360
|
||||
},
|
||||
{
|
||||
"x": 558,
|
||||
"y": 1361
|
||||
"x": 494,
|
||||
"y": 1360
|
||||
}
|
||||
],
|
||||
"animated": false,
|
||||
|
|
@ -1260,12 +1260,12 @@
|
|||
"labelPercentage": 0,
|
||||
"route": [
|
||||
{
|
||||
"x": 89.5,
|
||||
"y": 191
|
||||
"x": 75,
|
||||
"y": 190
|
||||
},
|
||||
{
|
||||
"x": 89.5,
|
||||
"y": 1491
|
||||
"x": 75,
|
||||
"y": 1490
|
||||
}
|
||||
],
|
||||
"animated": false,
|
||||
|
|
@ -1299,12 +1299,12 @@
|
|||
"labelPercentage": 0,
|
||||
"route": [
|
||||
{
|
||||
"x": 564,
|
||||
"y": 191
|
||||
"x": 500,
|
||||
"y": 190
|
||||
},
|
||||
{
|
||||
"x": 564,
|
||||
"y": 1491
|
||||
"x": 500,
|
||||
"y": 1490
|
||||
}
|
||||
],
|
||||
"animated": false,
|
||||
|
|
@ -1338,12 +1338,12 @@
|
|||
"labelPercentage": 0,
|
||||
"route": [
|
||||
{
|
||||
"x": 1027.5,
|
||||
"y": 191
|
||||
"x": 925,
|
||||
"y": 190
|
||||
},
|
||||
{
|
||||
"x": 1027.5,
|
||||
"y": 1491
|
||||
"x": 925,
|
||||
"y": 1490
|
||||
}
|
||||
],
|
||||
"animated": false,
|
||||
|
|
@ -1377,12 +1377,12 @@
|
|||
"labelPercentage": 0,
|
||||
"route": [
|
||||
{
|
||||
"x": 1478.5,
|
||||
"y": 191
|
||||
"x": 1343,
|
||||
"y": 190
|
||||
},
|
||||
{
|
||||
"x": 1478.5,
|
||||
"y": 1491
|
||||
"x": 1343,
|
||||
"y": 1490
|
||||
}
|
||||
],
|
||||
"animated": false,
|
||||
|
|
@ -1416,12 +1416,12 @@
|
|||
"labelPercentage": 0,
|
||||
"route": [
|
||||
{
|
||||
"x": 1951,
|
||||
"y": 191
|
||||
"x": 1766,
|
||||
"y": 190
|
||||
},
|
||||
{
|
||||
"x": 1951,
|
||||
"y": 1491
|
||||
"x": 1766,
|
||||
"y": 1490
|
||||
}
|
||||
],
|
||||
"animated": false,
|
||||
|
|
@ -1455,12 +1455,12 @@
|
|||
"labelPercentage": 0,
|
||||
"route": [
|
||||
{
|
||||
"x": 2433.5,
|
||||
"y": 191
|
||||
"x": 2194.5,
|
||||
"y": 190
|
||||
},
|
||||
{
|
||||
"x": 2433.5,
|
||||
"y": 1491
|
||||
"x": 2194.5,
|
||||
"y": 1490
|
||||
}
|
||||
],
|
||||
"animated": false,
|
||||
|
|
|
|||
|
Before Width: | Height: | Size: 332 KiB After Width: | Height: | Size: 332 KiB |
268
e2etests/testdata/stable/sequence_diagram_nested_span/elk/board.exp.json
generated
vendored
|
|
@ -6,10 +6,10 @@
|
|||
"type": "",
|
||||
"pos": {
|
||||
"x": 0,
|
||||
"y": 50
|
||||
"y": 62
|
||||
},
|
||||
"width": 179,
|
||||
"height": 141,
|
||||
"width": 150,
|
||||
"height": 128,
|
||||
"opacity": 1,
|
||||
"strokeDash": 0,
|
||||
"strokeWidth": 5,
|
||||
|
|
@ -27,15 +27,15 @@
|
|||
"methods": null,
|
||||
"columns": null,
|
||||
"label": "scorer",
|
||||
"fontSize": 28,
|
||||
"fontSize": 16,
|
||||
"fontFamily": "DEFAULT",
|
||||
"language": "",
|
||||
"color": "#0A0F25",
|
||||
"italic": false,
|
||||
"bold": true,
|
||||
"underline": false,
|
||||
"labelWidth": 79,
|
||||
"labelHeight": 41,
|
||||
"labelWidth": 48,
|
||||
"labelHeight": 26,
|
||||
"labelPosition": "INSIDE_MIDDLE_CENTER",
|
||||
"zIndex": 0,
|
||||
"level": 1
|
||||
|
|
@ -44,8 +44,8 @@
|
|||
"id": "scorer.abc",
|
||||
"type": "rectangle",
|
||||
"pos": {
|
||||
"x": 83,
|
||||
"y": 1085
|
||||
"x": 69,
|
||||
"y": 1084
|
||||
},
|
||||
"width": 12,
|
||||
"height": 80,
|
||||
|
|
@ -82,11 +82,11 @@
|
|||
"id": "itemResponse",
|
||||
"type": "",
|
||||
"pos": {
|
||||
"x": 429,
|
||||
"y": 50
|
||||
"x": 400,
|
||||
"y": 64
|
||||
},
|
||||
"width": 270,
|
||||
"height": 141,
|
||||
"width": 200,
|
||||
"height": 126,
|
||||
"opacity": 1,
|
||||
"strokeDash": 0,
|
||||
"strokeWidth": 2,
|
||||
|
|
@ -104,15 +104,15 @@
|
|||
"methods": null,
|
||||
"columns": null,
|
||||
"label": "itemResponse",
|
||||
"fontSize": 28,
|
||||
"fontSize": 16,
|
||||
"fontFamily": "DEFAULT",
|
||||
"language": "",
|
||||
"color": "#0A0F25",
|
||||
"italic": false,
|
||||
"bold": true,
|
||||
"underline": false,
|
||||
"labelWidth": 170,
|
||||
"labelHeight": 41,
|
||||
"labelWidth": 100,
|
||||
"labelHeight": 26,
|
||||
"labelPosition": "INSIDE_MIDDLE_CENTER",
|
||||
"zIndex": 0,
|
||||
"level": 1
|
||||
|
|
@ -121,8 +121,8 @@
|
|||
"id": "itemResponse.a",
|
||||
"type": "rectangle",
|
||||
"pos": {
|
||||
"x": 558,
|
||||
"y": 305
|
||||
"x": 494,
|
||||
"y": 304
|
||||
},
|
||||
"width": 12,
|
||||
"height": 162,
|
||||
|
|
@ -159,11 +159,11 @@
|
|||
"id": "item",
|
||||
"type": "",
|
||||
"pos": {
|
||||
"x": 949,
|
||||
"x": 850,
|
||||
"y": 50
|
||||
},
|
||||
"width": 157,
|
||||
"height": 141,
|
||||
"width": 150,
|
||||
"height": 140,
|
||||
"opacity": 1,
|
||||
"strokeDash": 0,
|
||||
"strokeWidth": 2,
|
||||
|
|
@ -181,15 +181,15 @@
|
|||
"methods": null,
|
||||
"columns": null,
|
||||
"label": "item",
|
||||
"fontSize": 28,
|
||||
"fontSize": 16,
|
||||
"fontFamily": "DEFAULT",
|
||||
"language": "",
|
||||
"color": "#0A0F25",
|
||||
"italic": false,
|
||||
"bold": true,
|
||||
"underline": false,
|
||||
"labelWidth": 57,
|
||||
"labelHeight": 41,
|
||||
"labelWidth": 35,
|
||||
"labelHeight": 26,
|
||||
"labelPosition": "INSIDE_MIDDLE_CENTER",
|
||||
"zIndex": 0,
|
||||
"level": 1
|
||||
|
|
@ -198,8 +198,8 @@
|
|||
"id": "item.a",
|
||||
"type": "rectangle",
|
||||
"pos": {
|
||||
"x": 1021,
|
||||
"y": 419
|
||||
"x": 919,
|
||||
"y": 418
|
||||
},
|
||||
"width": 12,
|
||||
"height": 698,
|
||||
|
|
@ -236,8 +236,8 @@
|
|||
"id": "item.a.b",
|
||||
"type": "rectangle",
|
||||
"pos": {
|
||||
"x": 1017,
|
||||
"y": 435
|
||||
"x": 915,
|
||||
"y": 434
|
||||
},
|
||||
"width": 20,
|
||||
"height": 162,
|
||||
|
|
@ -274,11 +274,11 @@
|
|||
"id": "essayRubric",
|
||||
"type": "",
|
||||
"pos": {
|
||||
"x": 1356,
|
||||
"y": 50
|
||||
"x": 1250,
|
||||
"y": 64
|
||||
},
|
||||
"width": 245,
|
||||
"height": 141,
|
||||
"width": 186,
|
||||
"height": 126,
|
||||
"opacity": 1,
|
||||
"strokeDash": 0,
|
||||
"strokeWidth": 2,
|
||||
|
|
@ -296,15 +296,15 @@
|
|||
"methods": null,
|
||||
"columns": null,
|
||||
"label": "essayRubric",
|
||||
"fontSize": 28,
|
||||
"fontSize": 16,
|
||||
"fontFamily": "DEFAULT",
|
||||
"language": "",
|
||||
"color": "#0A0F25",
|
||||
"italic": false,
|
||||
"bold": true,
|
||||
"underline": false,
|
||||
"labelWidth": 145,
|
||||
"labelHeight": 41,
|
||||
"labelWidth": 86,
|
||||
"labelHeight": 26,
|
||||
"labelPosition": "INSIDE_MIDDLE_CENTER",
|
||||
"zIndex": 0,
|
||||
"level": 1
|
||||
|
|
@ -313,8 +313,8 @@
|
|||
"id": "essayRubric.a",
|
||||
"type": "rectangle",
|
||||
"pos": {
|
||||
"x": 1472,
|
||||
"y": 533
|
||||
"x": 1337,
|
||||
"y": 532
|
||||
},
|
||||
"width": 12,
|
||||
"height": 340,
|
||||
|
|
@ -351,8 +351,8 @@
|
|||
"id": "essayRubric.a.b",
|
||||
"type": "rectangle",
|
||||
"pos": {
|
||||
"x": 1468,
|
||||
"y": 549
|
||||
"x": 1333,
|
||||
"y": 548
|
||||
},
|
||||
"width": 20,
|
||||
"height": 308,
|
||||
|
|
@ -389,8 +389,8 @@
|
|||
"id": "essayRubric.a.b.c",
|
||||
"type": "rectangle",
|
||||
"pos": {
|
||||
"x": 1464,
|
||||
"y": 565
|
||||
"x": 1329,
|
||||
"y": 564
|
||||
},
|
||||
"width": 28,
|
||||
"height": 162,
|
||||
|
|
@ -427,11 +427,11 @@
|
|||
"id": "concept",
|
||||
"type": "",
|
||||
"pos": {
|
||||
"x": 1851,
|
||||
"y": 50
|
||||
"x": 1686,
|
||||
"y": 64
|
||||
},
|
||||
"width": 200,
|
||||
"height": 141,
|
||||
"width": 160,
|
||||
"height": 126,
|
||||
"opacity": 1,
|
||||
"strokeDash": 0,
|
||||
"strokeWidth": 2,
|
||||
|
|
@ -449,15 +449,15 @@
|
|||
"methods": null,
|
||||
"columns": null,
|
||||
"label": "concept",
|
||||
"fontSize": 28,
|
||||
"fontSize": 16,
|
||||
"fontFamily": "DEFAULT",
|
||||
"language": "",
|
||||
"color": "#0A0F25",
|
||||
"italic": false,
|
||||
"bold": true,
|
||||
"underline": false,
|
||||
"labelWidth": 100,
|
||||
"labelHeight": 41,
|
||||
"labelWidth": 60,
|
||||
"labelHeight": 26,
|
||||
"labelPosition": "INSIDE_MIDDLE_CENTER",
|
||||
"zIndex": 0,
|
||||
"level": 1
|
||||
|
|
@ -466,8 +466,8 @@
|
|||
"id": "concept.a",
|
||||
"type": "rectangle",
|
||||
"pos": {
|
||||
"x": 1945,
|
||||
"y": 647
|
||||
"x": 1760,
|
||||
"y": 646
|
||||
},
|
||||
"width": 12,
|
||||
"height": 388,
|
||||
|
|
@ -504,8 +504,8 @@
|
|||
"id": "concept.a.b",
|
||||
"type": "rectangle",
|
||||
"pos": {
|
||||
"x": 1941,
|
||||
"y": 663
|
||||
"x": 1756,
|
||||
"y": 662
|
||||
},
|
||||
"width": 20,
|
||||
"height": 356,
|
||||
|
|
@ -542,8 +542,8 @@
|
|||
"id": "concept.a.b.c",
|
||||
"type": "rectangle",
|
||||
"pos": {
|
||||
"x": 1937,
|
||||
"y": 679
|
||||
"x": 1752,
|
||||
"y": 678
|
||||
},
|
||||
"width": 28,
|
||||
"height": 324,
|
||||
|
|
@ -580,8 +580,8 @@
|
|||
"id": "concept.a.b.c.d",
|
||||
"type": "rectangle",
|
||||
"pos": {
|
||||
"x": 1933,
|
||||
"y": 695
|
||||
"x": 1748,
|
||||
"y": 694
|
||||
},
|
||||
"width": 36,
|
||||
"height": 292,
|
||||
|
|
@ -618,11 +618,11 @@
|
|||
"id": "itemOutcome",
|
||||
"type": "",
|
||||
"pos": {
|
||||
"x": 2301,
|
||||
"y": 50
|
||||
"x": 2096,
|
||||
"y": 64
|
||||
},
|
||||
"width": 265,
|
||||
"height": 141,
|
||||
"width": 197,
|
||||
"height": 126,
|
||||
"opacity": 1,
|
||||
"strokeDash": 0,
|
||||
"strokeWidth": 2,
|
||||
|
|
@ -640,15 +640,15 @@
|
|||
"methods": null,
|
||||
"columns": null,
|
||||
"label": "itemOutcome",
|
||||
"fontSize": 28,
|
||||
"fontSize": 16,
|
||||
"fontFamily": "DEFAULT",
|
||||
"language": "",
|
||||
"color": "#0A0F25",
|
||||
"italic": false,
|
||||
"bold": true,
|
||||
"underline": false,
|
||||
"labelWidth": 165,
|
||||
"labelHeight": 41,
|
||||
"labelWidth": 97,
|
||||
"labelHeight": 26,
|
||||
"labelPosition": "INSIDE_MIDDLE_CENTER",
|
||||
"zIndex": 0,
|
||||
"level": 1
|
||||
|
|
@ -657,8 +657,8 @@
|
|||
"id": "itemOutcome.a",
|
||||
"type": "rectangle",
|
||||
"pos": {
|
||||
"x": 2427,
|
||||
"y": 891
|
||||
"x": 2188,
|
||||
"y": 890
|
||||
},
|
||||
"width": 12,
|
||||
"height": 420,
|
||||
|
|
@ -695,8 +695,8 @@
|
|||
"id": "itemOutcome.a.b",
|
||||
"type": "rectangle",
|
||||
"pos": {
|
||||
"x": 2423,
|
||||
"y": 907
|
||||
"x": 2184,
|
||||
"y": 906
|
||||
},
|
||||
"width": 20,
|
||||
"height": 388,
|
||||
|
|
@ -733,8 +733,8 @@
|
|||
"id": "itemOutcome.a.b.c",
|
||||
"type": "rectangle",
|
||||
"pos": {
|
||||
"x": 2419,
|
||||
"y": 923
|
||||
"x": 2180,
|
||||
"y": 922
|
||||
},
|
||||
"width": 28,
|
||||
"height": 356,
|
||||
|
|
@ -771,8 +771,8 @@
|
|||
"id": "itemOutcome.a.b.c.d",
|
||||
"type": "rectangle",
|
||||
"pos": {
|
||||
"x": 2415,
|
||||
"y": 939
|
||||
"x": 2176,
|
||||
"y": 938
|
||||
},
|
||||
"width": 36,
|
||||
"height": 324,
|
||||
|
|
@ -809,8 +809,8 @@
|
|||
"id": "itemOutcome.a.b.c.d.e",
|
||||
"type": "rectangle",
|
||||
"pos": {
|
||||
"x": 2411,
|
||||
"y": 955
|
||||
"x": 2172,
|
||||
"y": 954
|
||||
},
|
||||
"width": 44,
|
||||
"height": 292,
|
||||
|
|
@ -847,8 +847,8 @@
|
|||
"id": "itemResponse.c",
|
||||
"type": "rectangle",
|
||||
"pos": {
|
||||
"x": 558,
|
||||
"y": 1345
|
||||
"x": 494,
|
||||
"y": 1344
|
||||
},
|
||||
"width": 12,
|
||||
"height": 80,
|
||||
|
|
@ -909,12 +909,12 @@
|
|||
"labelPercentage": 0,
|
||||
"route": [
|
||||
{
|
||||
"x": 89.5,
|
||||
"y": 321
|
||||
"x": 75,
|
||||
"y": 320
|
||||
},
|
||||
{
|
||||
"x": 558,
|
||||
"y": 321
|
||||
"x": 494,
|
||||
"y": 320
|
||||
}
|
||||
],
|
||||
"animated": false,
|
||||
|
|
@ -948,12 +948,12 @@
|
|||
"labelPercentage": 0,
|
||||
"route": [
|
||||
{
|
||||
"x": 570,
|
||||
"y": 451
|
||||
"x": 506,
|
||||
"y": 450
|
||||
},
|
||||
{
|
||||
"x": 1017.5,
|
||||
"y": 451
|
||||
"x": 915,
|
||||
"y": 450
|
||||
}
|
||||
],
|
||||
"animated": false,
|
||||
|
|
@ -987,12 +987,12 @@
|
|||
"labelPercentage": 0,
|
||||
"route": [
|
||||
{
|
||||
"x": 1037.5,
|
||||
"y": 581
|
||||
"x": 935,
|
||||
"y": 580
|
||||
},
|
||||
{
|
||||
"x": 1464.5,
|
||||
"y": 581
|
||||
"x": 1329,
|
||||
"y": 580
|
||||
}
|
||||
],
|
||||
"animated": false,
|
||||
|
|
@ -1026,12 +1026,12 @@
|
|||
"labelPercentage": 0,
|
||||
"route": [
|
||||
{
|
||||
"x": 1492.5,
|
||||
"y": 711
|
||||
"x": 1357,
|
||||
"y": 710
|
||||
},
|
||||
{
|
||||
"x": 1933,
|
||||
"y": 711
|
||||
"x": 1748,
|
||||
"y": 710
|
||||
}
|
||||
],
|
||||
"animated": false,
|
||||
|
|
@ -1065,12 +1065,12 @@
|
|||
"labelPercentage": 0,
|
||||
"route": [
|
||||
{
|
||||
"x": 1033.5,
|
||||
"y": 841
|
||||
"x": 931,
|
||||
"y": 840
|
||||
},
|
||||
{
|
||||
"x": 1468.5,
|
||||
"y": 841
|
||||
"x": 1333,
|
||||
"y": 840
|
||||
}
|
||||
],
|
||||
"animated": false,
|
||||
|
|
@ -1104,12 +1104,12 @@
|
|||
"labelPercentage": 0,
|
||||
"route": [
|
||||
{
|
||||
"x": 1969,
|
||||
"y": 971
|
||||
"x": 1784,
|
||||
"y": 970
|
||||
},
|
||||
{
|
||||
"x": 2411.5,
|
||||
"y": 971
|
||||
"x": 2172.5,
|
||||
"y": 970
|
||||
}
|
||||
],
|
||||
"animated": false,
|
||||
|
|
@ -1143,12 +1143,12 @@
|
|||
"labelPercentage": 0,
|
||||
"route": [
|
||||
{
|
||||
"x": 95.5,
|
||||
"y": 1101
|
||||
"x": 81,
|
||||
"y": 1100
|
||||
},
|
||||
{
|
||||
"x": 1021.5,
|
||||
"y": 1101
|
||||
"x": 919,
|
||||
"y": 1100
|
||||
}
|
||||
],
|
||||
"animated": false,
|
||||
|
|
@ -1182,12 +1182,12 @@
|
|||
"labelPercentage": 0,
|
||||
"route": [
|
||||
{
|
||||
"x": 2411.5,
|
||||
"y": 1231
|
||||
"x": 2172.5,
|
||||
"y": 1230
|
||||
},
|
||||
{
|
||||
"x": 89.5,
|
||||
"y": 1231
|
||||
"x": 75,
|
||||
"y": 1230
|
||||
}
|
||||
],
|
||||
"animated": false,
|
||||
|
|
@ -1221,12 +1221,12 @@
|
|||
"labelPercentage": 0,
|
||||
"route": [
|
||||
{
|
||||
"x": 89.5,
|
||||
"y": 1361
|
||||
"x": 75,
|
||||
"y": 1360
|
||||
},
|
||||
{
|
||||
"x": 558,
|
||||
"y": 1361
|
||||
"x": 494,
|
||||
"y": 1360
|
||||
}
|
||||
],
|
||||
"animated": false,
|
||||
|
|
@ -1260,12 +1260,12 @@
|
|||
"labelPercentage": 0,
|
||||
"route": [
|
||||
{
|
||||
"x": 89.5,
|
||||
"y": 191
|
||||
"x": 75,
|
||||
"y": 190
|
||||
},
|
||||
{
|
||||
"x": 89.5,
|
||||
"y": 1491
|
||||
"x": 75,
|
||||
"y": 1490
|
||||
}
|
||||
],
|
||||
"animated": false,
|
||||
|
|
@ -1299,12 +1299,12 @@
|
|||
"labelPercentage": 0,
|
||||
"route": [
|
||||
{
|
||||
"x": 564,
|
||||
"y": 191
|
||||
"x": 500,
|
||||
"y": 190
|
||||
},
|
||||
{
|
||||
"x": 564,
|
||||
"y": 1491
|
||||
"x": 500,
|
||||
"y": 1490
|
||||
}
|
||||
],
|
||||
"animated": false,
|
||||
|
|
@ -1338,12 +1338,12 @@
|
|||
"labelPercentage": 0,
|
||||
"route": [
|
||||
{
|
||||
"x": 1027.5,
|
||||
"y": 191
|
||||
"x": 925,
|
||||
"y": 190
|
||||
},
|
||||
{
|
||||
"x": 1027.5,
|
||||
"y": 1491
|
||||
"x": 925,
|
||||
"y": 1490
|
||||
}
|
||||
],
|
||||
"animated": false,
|
||||
|
|
@ -1377,12 +1377,12 @@
|
|||
"labelPercentage": 0,
|
||||
"route": [
|
||||
{
|
||||
"x": 1478.5,
|
||||
"y": 191
|
||||
"x": 1343,
|
||||
"y": 190
|
||||
},
|
||||
{
|
||||
"x": 1478.5,
|
||||
"y": 1491
|
||||
"x": 1343,
|
||||
"y": 1490
|
||||
}
|
||||
],
|
||||
"animated": false,
|
||||
|
|
@ -1416,12 +1416,12 @@
|
|||
"labelPercentage": 0,
|
||||
"route": [
|
||||
{
|
||||
"x": 1951,
|
||||
"y": 191
|
||||
"x": 1766,
|
||||
"y": 190
|
||||
},
|
||||
{
|
||||
"x": 1951,
|
||||
"y": 1491
|
||||
"x": 1766,
|
||||
"y": 1490
|
||||
}
|
||||
],
|
||||
"animated": false,
|
||||
|
|
@ -1455,12 +1455,12 @@
|
|||
"labelPercentage": 0,
|
||||
"route": [
|
||||
{
|
||||
"x": 2433.5,
|
||||
"y": 191
|
||||
"x": 2194.5,
|
||||
"y": 190
|
||||
},
|
||||
{
|
||||
"x": 2433.5,
|
||||
"y": 1491
|
||||
"x": 2194.5,
|
||||
"y": 1490
|
||||
}
|
||||
],
|
||||
"animated": false,
|
||||
|
|
|
|||
|
Before Width: | Height: | Size: 332 KiB After Width: | Height: | Size: 332 KiB |
276
e2etests/testdata/stable/sequence_diagram_span/dagre/board.exp.json
generated
vendored
|
|
@ -6,10 +6,10 @@
|
|||
"type": "",
|
||||
"pos": {
|
||||
"x": 0,
|
||||
"y": 50
|
||||
"y": 62
|
||||
},
|
||||
"width": 179,
|
||||
"height": 141,
|
||||
"width": 150,
|
||||
"height": 128,
|
||||
"opacity": 1,
|
||||
"strokeDash": 0,
|
||||
"strokeWidth": 2,
|
||||
|
|
@ -27,15 +27,15 @@
|
|||
"methods": null,
|
||||
"columns": null,
|
||||
"label": "scorer",
|
||||
"fontSize": 28,
|
||||
"fontSize": 16,
|
||||
"fontFamily": "DEFAULT",
|
||||
"language": "",
|
||||
"color": "#0A0F25",
|
||||
"italic": false,
|
||||
"bold": true,
|
||||
"underline": false,
|
||||
"labelWidth": 79,
|
||||
"labelHeight": 41,
|
||||
"labelWidth": 48,
|
||||
"labelHeight": 26,
|
||||
"labelPosition": "INSIDE_MIDDLE_CENTER",
|
||||
"zIndex": 0,
|
||||
"level": 1
|
||||
|
|
@ -44,8 +44,8 @@
|
|||
"id": "scorer.t",
|
||||
"type": "rectangle",
|
||||
"pos": {
|
||||
"x": 83,
|
||||
"y": 305
|
||||
"x": 69,
|
||||
"y": 304
|
||||
},
|
||||
"width": 12,
|
||||
"height": 1592,
|
||||
|
|
@ -82,11 +82,11 @@
|
|||
"id": "itemResponse",
|
||||
"type": "",
|
||||
"pos": {
|
||||
"x": 429,
|
||||
"y": 50
|
||||
"x": 400,
|
||||
"y": 64
|
||||
},
|
||||
"width": 270,
|
||||
"height": 141,
|
||||
"width": 200,
|
||||
"height": 126,
|
||||
"opacity": 1,
|
||||
"strokeDash": 0,
|
||||
"strokeWidth": 2,
|
||||
|
|
@ -104,15 +104,15 @@
|
|||
"methods": null,
|
||||
"columns": null,
|
||||
"label": "itemResponse",
|
||||
"fontSize": 28,
|
||||
"fontSize": 16,
|
||||
"fontFamily": "DEFAULT",
|
||||
"language": "",
|
||||
"color": "#0A0F25",
|
||||
"italic": false,
|
||||
"bold": true,
|
||||
"underline": false,
|
||||
"labelWidth": 170,
|
||||
"labelHeight": 41,
|
||||
"labelWidth": 100,
|
||||
"labelHeight": 26,
|
||||
"labelPosition": "INSIDE_MIDDLE_CENTER",
|
||||
"zIndex": 0,
|
||||
"level": 1
|
||||
|
|
@ -121,8 +121,8 @@
|
|||
"id": "itemResponse.t",
|
||||
"type": "rectangle",
|
||||
"pos": {
|
||||
"x": 558,
|
||||
"y": 305
|
||||
"x": 494,
|
||||
"y": 304
|
||||
},
|
||||
"width": 12,
|
||||
"height": 162,
|
||||
|
|
@ -159,11 +159,11 @@
|
|||
"id": "item",
|
||||
"type": "",
|
||||
"pos": {
|
||||
"x": 949,
|
||||
"x": 850,
|
||||
"y": 50
|
||||
},
|
||||
"width": 157,
|
||||
"height": 141,
|
||||
"width": 150,
|
||||
"height": 140,
|
||||
"opacity": 1,
|
||||
"strokeDash": 0,
|
||||
"strokeWidth": 2,
|
||||
|
|
@ -181,15 +181,15 @@
|
|||
"methods": null,
|
||||
"columns": null,
|
||||
"label": "item",
|
||||
"fontSize": 28,
|
||||
"fontSize": 16,
|
||||
"fontFamily": "DEFAULT",
|
||||
"language": "",
|
||||
"color": "#0A0F25",
|
||||
"italic": false,
|
||||
"bold": true,
|
||||
"underline": false,
|
||||
"labelWidth": 57,
|
||||
"labelHeight": 41,
|
||||
"labelWidth": 35,
|
||||
"labelHeight": 26,
|
||||
"labelPosition": "INSIDE_MIDDLE_CENTER",
|
||||
"zIndex": 0,
|
||||
"level": 1
|
||||
|
|
@ -198,8 +198,8 @@
|
|||
"id": "item.t1",
|
||||
"type": "rectangle",
|
||||
"pos": {
|
||||
"x": 1021,
|
||||
"y": 565
|
||||
"x": 919,
|
||||
"y": 564
|
||||
},
|
||||
"width": 12,
|
||||
"height": 162,
|
||||
|
|
@ -236,11 +236,11 @@
|
|||
"id": "essayRubric",
|
||||
"type": "",
|
||||
"pos": {
|
||||
"x": 1356,
|
||||
"y": 50
|
||||
"x": 1250,
|
||||
"y": 64
|
||||
},
|
||||
"width": 245,
|
||||
"height": 141,
|
||||
"width": 186,
|
||||
"height": 126,
|
||||
"opacity": 1,
|
||||
"strokeDash": 0,
|
||||
"strokeWidth": 2,
|
||||
|
|
@ -258,15 +258,15 @@
|
|||
"methods": null,
|
||||
"columns": null,
|
||||
"label": "essayRubric",
|
||||
"fontSize": 28,
|
||||
"fontSize": 16,
|
||||
"fontFamily": "DEFAULT",
|
||||
"language": "",
|
||||
"color": "#0A0F25",
|
||||
"italic": false,
|
||||
"bold": true,
|
||||
"underline": false,
|
||||
"labelWidth": 145,
|
||||
"labelHeight": 41,
|
||||
"labelWidth": 86,
|
||||
"labelHeight": 26,
|
||||
"labelPosition": "INSIDE_MIDDLE_CENTER",
|
||||
"zIndex": 0,
|
||||
"level": 1
|
||||
|
|
@ -275,8 +275,8 @@
|
|||
"id": "essayRubric.t",
|
||||
"type": "rectangle",
|
||||
"pos": {
|
||||
"x": 1472,
|
||||
"y": 825
|
||||
"x": 1337,
|
||||
"y": 824
|
||||
},
|
||||
"width": 12,
|
||||
"height": 422,
|
||||
|
|
@ -313,8 +313,8 @@
|
|||
"id": "essayRubric.t.c",
|
||||
"type": "rectangle",
|
||||
"pos": {
|
||||
"x": 1468,
|
||||
"y": 955
|
||||
"x": 1333,
|
||||
"y": 954
|
||||
},
|
||||
"width": 20,
|
||||
"height": 162,
|
||||
|
|
@ -351,11 +351,11 @@
|
|||
"id": "concept",
|
||||
"type": "",
|
||||
"pos": {
|
||||
"x": 1851,
|
||||
"y": 50
|
||||
"x": 1686,
|
||||
"y": 64
|
||||
},
|
||||
"width": 200,
|
||||
"height": 141,
|
||||
"width": 160,
|
||||
"height": 126,
|
||||
"opacity": 1,
|
||||
"strokeDash": 0,
|
||||
"strokeWidth": 2,
|
||||
|
|
@ -373,15 +373,15 @@
|
|||
"methods": null,
|
||||
"columns": null,
|
||||
"label": "concept",
|
||||
"fontSize": 28,
|
||||
"fontSize": 16,
|
||||
"fontFamily": "DEFAULT",
|
||||
"language": "",
|
||||
"color": "#0A0F25",
|
||||
"italic": false,
|
||||
"bold": true,
|
||||
"underline": false,
|
||||
"labelWidth": 100,
|
||||
"labelHeight": 41,
|
||||
"labelWidth": 60,
|
||||
"labelHeight": 26,
|
||||
"labelPosition": "INSIDE_MIDDLE_CENTER",
|
||||
"zIndex": 0,
|
||||
"level": 1
|
||||
|
|
@ -390,8 +390,8 @@
|
|||
"id": "concept.t",
|
||||
"type": "rectangle",
|
||||
"pos": {
|
||||
"x": 1945,
|
||||
"y": 1085
|
||||
"x": 1760,
|
||||
"y": 1084
|
||||
},
|
||||
"width": 12,
|
||||
"height": 80,
|
||||
|
|
@ -428,11 +428,11 @@
|
|||
"id": "itemOutcome",
|
||||
"type": "",
|
||||
"pos": {
|
||||
"x": 2301,
|
||||
"y": 50
|
||||
"x": 2096,
|
||||
"y": 64
|
||||
},
|
||||
"width": 265,
|
||||
"height": 141,
|
||||
"width": 197,
|
||||
"height": 126,
|
||||
"opacity": 1,
|
||||
"strokeDash": 0,
|
||||
"strokeWidth": 2,
|
||||
|
|
@ -450,15 +450,15 @@
|
|||
"methods": null,
|
||||
"columns": null,
|
||||
"label": "itemOutcome",
|
||||
"fontSize": 28,
|
||||
"fontSize": 16,
|
||||
"fontFamily": "DEFAULT",
|
||||
"language": "",
|
||||
"color": "#0A0F25",
|
||||
"italic": false,
|
||||
"bold": true,
|
||||
"underline": false,
|
||||
"labelWidth": 165,
|
||||
"labelHeight": 41,
|
||||
"labelWidth": 97,
|
||||
"labelHeight": 26,
|
||||
"labelPosition": "INSIDE_MIDDLE_CENTER",
|
||||
"zIndex": 0,
|
||||
"level": 1
|
||||
|
|
@ -467,8 +467,8 @@
|
|||
"id": "itemOutcome.t1",
|
||||
"type": "rectangle",
|
||||
"pos": {
|
||||
"x": 2427,
|
||||
"y": 1345
|
||||
"x": 2188,
|
||||
"y": 1344
|
||||
},
|
||||
"width": 12,
|
||||
"height": 80,
|
||||
|
|
@ -505,8 +505,8 @@
|
|||
"id": "item.t2",
|
||||
"type": "rectangle",
|
||||
"pos": {
|
||||
"x": 1021,
|
||||
"y": 1475
|
||||
"x": 919,
|
||||
"y": 1474
|
||||
},
|
||||
"width": 12,
|
||||
"height": 80,
|
||||
|
|
@ -543,8 +543,8 @@
|
|||
"id": "item.t3",
|
||||
"type": "rectangle",
|
||||
"pos": {
|
||||
"x": 1021,
|
||||
"y": 1605
|
||||
"x": 919,
|
||||
"y": 1604
|
||||
},
|
||||
"width": 12,
|
||||
"height": 80,
|
||||
|
|
@ -581,8 +581,8 @@
|
|||
"id": "itemOutcome.t2",
|
||||
"type": "rectangle",
|
||||
"pos": {
|
||||
"x": 2427,
|
||||
"y": 1735
|
||||
"x": 2188,
|
||||
"y": 1734
|
||||
},
|
||||
"width": 12,
|
||||
"height": 80,
|
||||
|
|
@ -619,8 +619,8 @@
|
|||
"id": "itemOutcome.t3",
|
||||
"type": "rectangle",
|
||||
"pos": {
|
||||
"x": 2427,
|
||||
"y": 1865
|
||||
"x": 2188,
|
||||
"y": 1864
|
||||
},
|
||||
"width": 12,
|
||||
"height": 80,
|
||||
|
|
@ -681,12 +681,12 @@
|
|||
"labelPercentage": 0,
|
||||
"route": [
|
||||
{
|
||||
"x": 95.5,
|
||||
"y": 321
|
||||
"x": 81,
|
||||
"y": 320
|
||||
},
|
||||
{
|
||||
"x": 558,
|
||||
"y": 321
|
||||
"x": 494,
|
||||
"y": 320
|
||||
}
|
||||
],
|
||||
"animated": false,
|
||||
|
|
@ -720,12 +720,12 @@
|
|||
"labelPercentage": 0,
|
||||
"route": [
|
||||
{
|
||||
"x": 95.5,
|
||||
"y": 451
|
||||
"x": 81,
|
||||
"y": 450
|
||||
},
|
||||
{
|
||||
"x": 558,
|
||||
"y": 451
|
||||
"x": 494,
|
||||
"y": 450
|
||||
}
|
||||
],
|
||||
"animated": false,
|
||||
|
|
@ -759,12 +759,12 @@
|
|||
"labelPercentage": 0,
|
||||
"route": [
|
||||
{
|
||||
"x": 95.5,
|
||||
"y": 581
|
||||
"x": 81,
|
||||
"y": 580
|
||||
},
|
||||
{
|
||||
"x": 1021.5,
|
||||
"y": 581
|
||||
"x": 919,
|
||||
"y": 580
|
||||
}
|
||||
],
|
||||
"animated": false,
|
||||
|
|
@ -798,12 +798,12 @@
|
|||
"labelPercentage": 0,
|
||||
"route": [
|
||||
{
|
||||
"x": 95.5,
|
||||
"y": 711
|
||||
"x": 81,
|
||||
"y": 710
|
||||
},
|
||||
{
|
||||
"x": 1021.5,
|
||||
"y": 711
|
||||
"x": 919,
|
||||
"y": 710
|
||||
}
|
||||
],
|
||||
"animated": false,
|
||||
|
|
@ -837,12 +837,12 @@
|
|||
"labelPercentage": 0,
|
||||
"route": [
|
||||
{
|
||||
"x": 95.5,
|
||||
"y": 841
|
||||
"x": 81,
|
||||
"y": 840
|
||||
},
|
||||
{
|
||||
"x": 1472.5,
|
||||
"y": 841
|
||||
"x": 1337,
|
||||
"y": 840
|
||||
}
|
||||
],
|
||||
"animated": false,
|
||||
|
|
@ -876,12 +876,12 @@
|
|||
"labelPercentage": 0,
|
||||
"route": [
|
||||
{
|
||||
"x": 564,
|
||||
"y": 971
|
||||
"x": 500,
|
||||
"y": 970
|
||||
},
|
||||
{
|
||||
"x": 1468.5,
|
||||
"y": 971
|
||||
"x": 1333,
|
||||
"y": 970
|
||||
}
|
||||
],
|
||||
"animated": false,
|
||||
|
|
@ -915,12 +915,12 @@
|
|||
"labelPercentage": 0,
|
||||
"route": [
|
||||
{
|
||||
"x": 1488.5,
|
||||
"y": 1101
|
||||
"x": 1353,
|
||||
"y": 1100
|
||||
},
|
||||
{
|
||||
"x": 1945,
|
||||
"y": 1101
|
||||
"x": 1760,
|
||||
"y": 1100
|
||||
}
|
||||
],
|
||||
"animated": false,
|
||||
|
|
@ -954,12 +954,12 @@
|
|||
"labelPercentage": 0,
|
||||
"route": [
|
||||
{
|
||||
"x": 89.5,
|
||||
"y": 1231
|
||||
"x": 75,
|
||||
"y": 1230
|
||||
},
|
||||
{
|
||||
"x": 1472.5,
|
||||
"y": 1231
|
||||
"x": 1337,
|
||||
"y": 1230
|
||||
}
|
||||
],
|
||||
"animated": false,
|
||||
|
|
@ -993,12 +993,12 @@
|
|||
"labelPercentage": 0,
|
||||
"route": [
|
||||
{
|
||||
"x": 95.5,
|
||||
"y": 1361
|
||||
"x": 81,
|
||||
"y": 1360
|
||||
},
|
||||
{
|
||||
"x": 2427.5,
|
||||
"y": 1361
|
||||
"x": 2188.5,
|
||||
"y": 1360
|
||||
}
|
||||
],
|
||||
"animated": false,
|
||||
|
|
@ -1032,12 +1032,12 @@
|
|||
"labelPercentage": 0,
|
||||
"route": [
|
||||
{
|
||||
"x": 95.5,
|
||||
"y": 1491
|
||||
"x": 81,
|
||||
"y": 1490
|
||||
},
|
||||
{
|
||||
"x": 1021.5,
|
||||
"y": 1491
|
||||
"x": 919,
|
||||
"y": 1490
|
||||
}
|
||||
],
|
||||
"animated": false,
|
||||
|
|
@ -1071,12 +1071,12 @@
|
|||
"labelPercentage": 0,
|
||||
"route": [
|
||||
{
|
||||
"x": 95.5,
|
||||
"y": 1621
|
||||
"x": 81,
|
||||
"y": 1620
|
||||
},
|
||||
{
|
||||
"x": 1021.5,
|
||||
"y": 1621
|
||||
"x": 919,
|
||||
"y": 1620
|
||||
}
|
||||
],
|
||||
"animated": false,
|
||||
|
|
@ -1110,12 +1110,12 @@
|
|||
"labelPercentage": 0,
|
||||
"route": [
|
||||
{
|
||||
"x": 95.5,
|
||||
"y": 1751
|
||||
"x": 81,
|
||||
"y": 1750
|
||||
},
|
||||
{
|
||||
"x": 2427.5,
|
||||
"y": 1751
|
||||
"x": 2188.5,
|
||||
"y": 1750
|
||||
}
|
||||
],
|
||||
"animated": false,
|
||||
|
|
@ -1149,12 +1149,12 @@
|
|||
"labelPercentage": 0,
|
||||
"route": [
|
||||
{
|
||||
"x": 95.5,
|
||||
"y": 1881
|
||||
"x": 81,
|
||||
"y": 1880
|
||||
},
|
||||
{
|
||||
"x": 2427.5,
|
||||
"y": 1881
|
||||
"x": 2188.5,
|
||||
"y": 1880
|
||||
}
|
||||
],
|
||||
"animated": false,
|
||||
|
|
@ -1188,12 +1188,12 @@
|
|||
"labelPercentage": 0,
|
||||
"route": [
|
||||
{
|
||||
"x": 89.5,
|
||||
"y": 191
|
||||
"x": 75,
|
||||
"y": 190
|
||||
},
|
||||
{
|
||||
"x": 89.5,
|
||||
"y": 2011
|
||||
"x": 75,
|
||||
"y": 2010
|
||||
}
|
||||
],
|
||||
"animated": false,
|
||||
|
|
@ -1227,12 +1227,12 @@
|
|||
"labelPercentage": 0,
|
||||
"route": [
|
||||
{
|
||||
"x": 564,
|
||||
"y": 191
|
||||
"x": 500,
|
||||
"y": 190
|
||||
},
|
||||
{
|
||||
"x": 564,
|
||||
"y": 2011
|
||||
"x": 500,
|
||||
"y": 2010
|
||||
}
|
||||
],
|
||||
"animated": false,
|
||||
|
|
@ -1266,12 +1266,12 @@
|
|||
"labelPercentage": 0,
|
||||
"route": [
|
||||
{
|
||||
"x": 1027.5,
|
||||
"y": 191
|
||||
"x": 925,
|
||||
"y": 190
|
||||
},
|
||||
{
|
||||
"x": 1027.5,
|
||||
"y": 2011
|
||||
"x": 925,
|
||||
"y": 2010
|
||||
}
|
||||
],
|
||||
"animated": false,
|
||||
|
|
@ -1305,12 +1305,12 @@
|
|||
"labelPercentage": 0,
|
||||
"route": [
|
||||
{
|
||||
"x": 1478.5,
|
||||
"y": 191
|
||||
"x": 1343,
|
||||
"y": 190
|
||||
},
|
||||
{
|
||||
"x": 1478.5,
|
||||
"y": 2011
|
||||
"x": 1343,
|
||||
"y": 2010
|
||||
}
|
||||
],
|
||||
"animated": false,
|
||||
|
|
@ -1344,12 +1344,12 @@
|
|||
"labelPercentage": 0,
|
||||
"route": [
|
||||
{
|
||||
"x": 1951,
|
||||
"y": 191
|
||||
"x": 1766,
|
||||
"y": 190
|
||||
},
|
||||
{
|
||||
"x": 1951,
|
||||
"y": 2011
|
||||
"x": 1766,
|
||||
"y": 2010
|
||||
}
|
||||
],
|
||||
"animated": false,
|
||||
|
|
@ -1383,12 +1383,12 @@
|
|||
"labelPercentage": 0,
|
||||
"route": [
|
||||
{
|
||||
"x": 2433.5,
|
||||
"y": 191
|
||||
"x": 2194.5,
|
||||
"y": 190
|
||||
},
|
||||
{
|
||||
"x": 2433.5,
|
||||
"y": 2011
|
||||
"x": 2194.5,
|
||||
"y": 2010
|
||||
}
|
||||
],
|
||||
"animated": false,
|
||||
|
|
|
|||
|
Before Width: | Height: | Size: 476 KiB After Width: | Height: | Size: 476 KiB |
276
e2etests/testdata/stable/sequence_diagram_span/elk/board.exp.json
generated
vendored
|
|
@ -6,10 +6,10 @@
|
|||
"type": "",
|
||||
"pos": {
|
||||
"x": 0,
|
||||
"y": 50
|
||||
"y": 62
|
||||
},
|
||||
"width": 179,
|
||||
"height": 141,
|
||||
"width": 150,
|
||||
"height": 128,
|
||||
"opacity": 1,
|
||||
"strokeDash": 0,
|
||||
"strokeWidth": 2,
|
||||
|
|
@ -27,15 +27,15 @@
|
|||
"methods": null,
|
||||
"columns": null,
|
||||
"label": "scorer",
|
||||
"fontSize": 28,
|
||||
"fontSize": 16,
|
||||
"fontFamily": "DEFAULT",
|
||||
"language": "",
|
||||
"color": "#0A0F25",
|
||||
"italic": false,
|
||||
"bold": true,
|
||||
"underline": false,
|
||||
"labelWidth": 79,
|
||||
"labelHeight": 41,
|
||||
"labelWidth": 48,
|
||||
"labelHeight": 26,
|
||||
"labelPosition": "INSIDE_MIDDLE_CENTER",
|
||||
"zIndex": 0,
|
||||
"level": 1
|
||||
|
|
@ -44,8 +44,8 @@
|
|||
"id": "scorer.t",
|
||||
"type": "rectangle",
|
||||
"pos": {
|
||||
"x": 83,
|
||||
"y": 305
|
||||
"x": 69,
|
||||
"y": 304
|
||||
},
|
||||
"width": 12,
|
||||
"height": 1592,
|
||||
|
|
@ -82,11 +82,11 @@
|
|||
"id": "itemResponse",
|
||||
"type": "",
|
||||
"pos": {
|
||||
"x": 429,
|
||||
"y": 50
|
||||
"x": 400,
|
||||
"y": 64
|
||||
},
|
||||
"width": 270,
|
||||
"height": 141,
|
||||
"width": 200,
|
||||
"height": 126,
|
||||
"opacity": 1,
|
||||
"strokeDash": 0,
|
||||
"strokeWidth": 2,
|
||||
|
|
@ -104,15 +104,15 @@
|
|||
"methods": null,
|
||||
"columns": null,
|
||||
"label": "itemResponse",
|
||||
"fontSize": 28,
|
||||
"fontSize": 16,
|
||||
"fontFamily": "DEFAULT",
|
||||
"language": "",
|
||||
"color": "#0A0F25",
|
||||
"italic": false,
|
||||
"bold": true,
|
||||
"underline": false,
|
||||
"labelWidth": 170,
|
||||
"labelHeight": 41,
|
||||
"labelWidth": 100,
|
||||
"labelHeight": 26,
|
||||
"labelPosition": "INSIDE_MIDDLE_CENTER",
|
||||
"zIndex": 0,
|
||||
"level": 1
|
||||
|
|
@ -121,8 +121,8 @@
|
|||
"id": "itemResponse.t",
|
||||
"type": "rectangle",
|
||||
"pos": {
|
||||
"x": 558,
|
||||
"y": 305
|
||||
"x": 494,
|
||||
"y": 304
|
||||
},
|
||||
"width": 12,
|
||||
"height": 162,
|
||||
|
|
@ -159,11 +159,11 @@
|
|||
"id": "item",
|
||||
"type": "",
|
||||
"pos": {
|
||||
"x": 949,
|
||||
"x": 850,
|
||||
"y": 50
|
||||
},
|
||||
"width": 157,
|
||||
"height": 141,
|
||||
"width": 150,
|
||||
"height": 140,
|
||||
"opacity": 1,
|
||||
"strokeDash": 0,
|
||||
"strokeWidth": 2,
|
||||
|
|
@ -181,15 +181,15 @@
|
|||
"methods": null,
|
||||
"columns": null,
|
||||
"label": "item",
|
||||
"fontSize": 28,
|
||||
"fontSize": 16,
|
||||
"fontFamily": "DEFAULT",
|
||||
"language": "",
|
||||
"color": "#0A0F25",
|
||||
"italic": false,
|
||||
"bold": true,
|
||||
"underline": false,
|
||||
"labelWidth": 57,
|
||||
"labelHeight": 41,
|
||||
"labelWidth": 35,
|
||||
"labelHeight": 26,
|
||||
"labelPosition": "INSIDE_MIDDLE_CENTER",
|
||||
"zIndex": 0,
|
||||
"level": 1
|
||||
|
|
@ -198,8 +198,8 @@
|
|||
"id": "item.t1",
|
||||
"type": "rectangle",
|
||||
"pos": {
|
||||
"x": 1021,
|
||||
"y": 565
|
||||
"x": 919,
|
||||
"y": 564
|
||||
},
|
||||
"width": 12,
|
||||
"height": 162,
|
||||
|
|
@ -236,11 +236,11 @@
|
|||
"id": "essayRubric",
|
||||
"type": "",
|
||||
"pos": {
|
||||
"x": 1356,
|
||||
"y": 50
|
||||
"x": 1250,
|
||||
"y": 64
|
||||
},
|
||||
"width": 245,
|
||||
"height": 141,
|
||||
"width": 186,
|
||||
"height": 126,
|
||||
"opacity": 1,
|
||||
"strokeDash": 0,
|
||||
"strokeWidth": 2,
|
||||
|
|
@ -258,15 +258,15 @@
|
|||
"methods": null,
|
||||
"columns": null,
|
||||
"label": "essayRubric",
|
||||
"fontSize": 28,
|
||||
"fontSize": 16,
|
||||
"fontFamily": "DEFAULT",
|
||||
"language": "",
|
||||
"color": "#0A0F25",
|
||||
"italic": false,
|
||||
"bold": true,
|
||||
"underline": false,
|
||||
"labelWidth": 145,
|
||||
"labelHeight": 41,
|
||||
"labelWidth": 86,
|
||||
"labelHeight": 26,
|
||||
"labelPosition": "INSIDE_MIDDLE_CENTER",
|
||||
"zIndex": 0,
|
||||
"level": 1
|
||||
|
|
@ -275,8 +275,8 @@
|
|||
"id": "essayRubric.t",
|
||||
"type": "rectangle",
|
||||
"pos": {
|
||||
"x": 1472,
|
||||
"y": 825
|
||||
"x": 1337,
|
||||
"y": 824
|
||||
},
|
||||
"width": 12,
|
||||
"height": 422,
|
||||
|
|
@ -313,8 +313,8 @@
|
|||
"id": "essayRubric.t.c",
|
||||
"type": "rectangle",
|
||||
"pos": {
|
||||
"x": 1468,
|
||||
"y": 955
|
||||
"x": 1333,
|
||||
"y": 954
|
||||
},
|
||||
"width": 20,
|
||||
"height": 162,
|
||||
|
|
@ -351,11 +351,11 @@
|
|||
"id": "concept",
|
||||
"type": "",
|
||||
"pos": {
|
||||
"x": 1851,
|
||||
"y": 50
|
||||
"x": 1686,
|
||||
"y": 64
|
||||
},
|
||||
"width": 200,
|
||||
"height": 141,
|
||||
"width": 160,
|
||||
"height": 126,
|
||||
"opacity": 1,
|
||||
"strokeDash": 0,
|
||||
"strokeWidth": 2,
|
||||
|
|
@ -373,15 +373,15 @@
|
|||
"methods": null,
|
||||
"columns": null,
|
||||
"label": "concept",
|
||||
"fontSize": 28,
|
||||
"fontSize": 16,
|
||||
"fontFamily": "DEFAULT",
|
||||
"language": "",
|
||||
"color": "#0A0F25",
|
||||
"italic": false,
|
||||
"bold": true,
|
||||
"underline": false,
|
||||
"labelWidth": 100,
|
||||
"labelHeight": 41,
|
||||
"labelWidth": 60,
|
||||
"labelHeight": 26,
|
||||
"labelPosition": "INSIDE_MIDDLE_CENTER",
|
||||
"zIndex": 0,
|
||||
"level": 1
|
||||
|
|
@ -390,8 +390,8 @@
|
|||
"id": "concept.t",
|
||||
"type": "rectangle",
|
||||
"pos": {
|
||||
"x": 1945,
|
||||
"y": 1085
|
||||
"x": 1760,
|
||||
"y": 1084
|
||||
},
|
||||
"width": 12,
|
||||
"height": 80,
|
||||
|
|
@ -428,11 +428,11 @@
|
|||
"id": "itemOutcome",
|
||||
"type": "",
|
||||
"pos": {
|
||||
"x": 2301,
|
||||
"y": 50
|
||||
"x": 2096,
|
||||
"y": 64
|
||||
},
|
||||
"width": 265,
|
||||
"height": 141,
|
||||
"width": 197,
|
||||
"height": 126,
|
||||
"opacity": 1,
|
||||
"strokeDash": 0,
|
||||
"strokeWidth": 2,
|
||||
|
|
@ -450,15 +450,15 @@
|
|||
"methods": null,
|
||||
"columns": null,
|
||||
"label": "itemOutcome",
|
||||
"fontSize": 28,
|
||||
"fontSize": 16,
|
||||
"fontFamily": "DEFAULT",
|
||||
"language": "",
|
||||
"color": "#0A0F25",
|
||||
"italic": false,
|
||||
"bold": true,
|
||||
"underline": false,
|
||||
"labelWidth": 165,
|
||||
"labelHeight": 41,
|
||||
"labelWidth": 97,
|
||||
"labelHeight": 26,
|
||||
"labelPosition": "INSIDE_MIDDLE_CENTER",
|
||||
"zIndex": 0,
|
||||
"level": 1
|
||||
|
|
@ -467,8 +467,8 @@
|
|||
"id": "itemOutcome.t1",
|
||||
"type": "rectangle",
|
||||
"pos": {
|
||||
"x": 2427,
|
||||
"y": 1345
|
||||
"x": 2188,
|
||||
"y": 1344
|
||||
},
|
||||
"width": 12,
|
||||
"height": 80,
|
||||
|
|
@ -505,8 +505,8 @@
|
|||
"id": "item.t2",
|
||||
"type": "rectangle",
|
||||
"pos": {
|
||||
"x": 1021,
|
||||
"y": 1475
|
||||
"x": 919,
|
||||
"y": 1474
|
||||
},
|
||||
"width": 12,
|
||||
"height": 80,
|
||||
|
|
@ -543,8 +543,8 @@
|
|||
"id": "item.t3",
|
||||
"type": "rectangle",
|
||||
"pos": {
|
||||
"x": 1021,
|
||||
"y": 1605
|
||||
"x": 919,
|
||||
"y": 1604
|
||||
},
|
||||
"width": 12,
|
||||
"height": 80,
|
||||
|
|
@ -581,8 +581,8 @@
|
|||
"id": "itemOutcome.t2",
|
||||
"type": "rectangle",
|
||||
"pos": {
|
||||
"x": 2427,
|
||||
"y": 1735
|
||||
"x": 2188,
|
||||
"y": 1734
|
||||
},
|
||||
"width": 12,
|
||||
"height": 80,
|
||||
|
|
@ -619,8 +619,8 @@
|
|||
"id": "itemOutcome.t3",
|
||||
"type": "rectangle",
|
||||
"pos": {
|
||||
"x": 2427,
|
||||
"y": 1865
|
||||
"x": 2188,
|
||||
"y": 1864
|
||||
},
|
||||
"width": 12,
|
||||
"height": 80,
|
||||
|
|
@ -681,12 +681,12 @@
|
|||
"labelPercentage": 0,
|
||||
"route": [
|
||||
{
|
||||
"x": 95.5,
|
||||
"y": 321
|
||||
"x": 81,
|
||||
"y": 320
|
||||
},
|
||||
{
|
||||
"x": 558,
|
||||
"y": 321
|
||||
"x": 494,
|
||||
"y": 320
|
||||
}
|
||||
],
|
||||
"animated": false,
|
||||
|
|
@ -720,12 +720,12 @@
|
|||
"labelPercentage": 0,
|
||||
"route": [
|
||||
{
|
||||
"x": 95.5,
|
||||
"y": 451
|
||||
"x": 81,
|
||||
"y": 450
|
||||
},
|
||||
{
|
||||
"x": 558,
|
||||
"y": 451
|
||||
"x": 494,
|
||||
"y": 450
|
||||
}
|
||||
],
|
||||
"animated": false,
|
||||
|
|
@ -759,12 +759,12 @@
|
|||
"labelPercentage": 0,
|
||||
"route": [
|
||||
{
|
||||
"x": 95.5,
|
||||
"y": 581
|
||||
"x": 81,
|
||||
"y": 580
|
||||
},
|
||||
{
|
||||
"x": 1021.5,
|
||||
"y": 581
|
||||
"x": 919,
|
||||
"y": 580
|
||||
}
|
||||
],
|
||||
"animated": false,
|
||||
|
|
@ -798,12 +798,12 @@
|
|||
"labelPercentage": 0,
|
||||
"route": [
|
||||
{
|
||||
"x": 95.5,
|
||||
"y": 711
|
||||
"x": 81,
|
||||
"y": 710
|
||||
},
|
||||
{
|
||||
"x": 1021.5,
|
||||
"y": 711
|
||||
"x": 919,
|
||||
"y": 710
|
||||
}
|
||||
],
|
||||
"animated": false,
|
||||
|
|
@ -837,12 +837,12 @@
|
|||
"labelPercentage": 0,
|
||||
"route": [
|
||||
{
|
||||
"x": 95.5,
|
||||
"y": 841
|
||||
"x": 81,
|
||||
"y": 840
|
||||
},
|
||||
{
|
||||
"x": 1472.5,
|
||||
"y": 841
|
||||
"x": 1337,
|
||||
"y": 840
|
||||
}
|
||||
],
|
||||
"animated": false,
|
||||
|
|
@ -876,12 +876,12 @@
|
|||
"labelPercentage": 0,
|
||||
"route": [
|
||||
{
|
||||
"x": 564,
|
||||
"y": 971
|
||||
"x": 500,
|
||||
"y": 970
|
||||
},
|
||||
{
|
||||
"x": 1468.5,
|
||||
"y": 971
|
||||
"x": 1333,
|
||||
"y": 970
|
||||
}
|
||||
],
|
||||
"animated": false,
|
||||
|
|
@ -915,12 +915,12 @@
|
|||
"labelPercentage": 0,
|
||||
"route": [
|
||||
{
|
||||
"x": 1488.5,
|
||||
"y": 1101
|
||||
"x": 1353,
|
||||
"y": 1100
|
||||
},
|
||||
{
|
||||
"x": 1945,
|
||||
"y": 1101
|
||||
"x": 1760,
|
||||
"y": 1100
|
||||
}
|
||||
],
|
||||
"animated": false,
|
||||
|
|
@ -954,12 +954,12 @@
|
|||
"labelPercentage": 0,
|
||||
"route": [
|
||||
{
|
||||
"x": 89.5,
|
||||
"y": 1231
|
||||
"x": 75,
|
||||
"y": 1230
|
||||
},
|
||||
{
|
||||
"x": 1472.5,
|
||||
"y": 1231
|
||||
"x": 1337,
|
||||
"y": 1230
|
||||
}
|
||||
],
|
||||
"animated": false,
|
||||
|
|
@ -993,12 +993,12 @@
|
|||
"labelPercentage": 0,
|
||||
"route": [
|
||||
{
|
||||
"x": 95.5,
|
||||
"y": 1361
|
||||
"x": 81,
|
||||
"y": 1360
|
||||
},
|
||||
{
|
||||
"x": 2427.5,
|
||||
"y": 1361
|
||||
"x": 2188.5,
|
||||
"y": 1360
|
||||
}
|
||||
],
|
||||
"animated": false,
|
||||
|
|
@ -1032,12 +1032,12 @@
|
|||
"labelPercentage": 0,
|
||||
"route": [
|
||||
{
|
||||
"x": 95.5,
|
||||
"y": 1491
|
||||
"x": 81,
|
||||
"y": 1490
|
||||
},
|
||||
{
|
||||
"x": 1021.5,
|
||||
"y": 1491
|
||||
"x": 919,
|
||||
"y": 1490
|
||||
}
|
||||
],
|
||||
"animated": false,
|
||||
|
|
@ -1071,12 +1071,12 @@
|
|||
"labelPercentage": 0,
|
||||
"route": [
|
||||
{
|
||||
"x": 95.5,
|
||||
"y": 1621
|
||||
"x": 81,
|
||||
"y": 1620
|
||||
},
|
||||
{
|
||||
"x": 1021.5,
|
||||
"y": 1621
|
||||
"x": 919,
|
||||
"y": 1620
|
||||
}
|
||||
],
|
||||
"animated": false,
|
||||
|
|
@ -1110,12 +1110,12 @@
|
|||
"labelPercentage": 0,
|
||||
"route": [
|
||||
{
|
||||
"x": 95.5,
|
||||
"y": 1751
|
||||
"x": 81,
|
||||
"y": 1750
|
||||
},
|
||||
{
|
||||
"x": 2427.5,
|
||||
"y": 1751
|
||||
"x": 2188.5,
|
||||
"y": 1750
|
||||
}
|
||||
],
|
||||
"animated": false,
|
||||
|
|
@ -1149,12 +1149,12 @@
|
|||
"labelPercentage": 0,
|
||||
"route": [
|
||||
{
|
||||
"x": 95.5,
|
||||
"y": 1881
|
||||
"x": 81,
|
||||
"y": 1880
|
||||
},
|
||||
{
|
||||
"x": 2427.5,
|
||||
"y": 1881
|
||||
"x": 2188.5,
|
||||
"y": 1880
|
||||
}
|
||||
],
|
||||
"animated": false,
|
||||
|
|
@ -1188,12 +1188,12 @@
|
|||
"labelPercentage": 0,
|
||||
"route": [
|
||||
{
|
||||
"x": 89.5,
|
||||
"y": 191
|
||||
"x": 75,
|
||||
"y": 190
|
||||
},
|
||||
{
|
||||
"x": 89.5,
|
||||
"y": 2011
|
||||
"x": 75,
|
||||
"y": 2010
|
||||
}
|
||||
],
|
||||
"animated": false,
|
||||
|
|
@ -1227,12 +1227,12 @@
|
|||
"labelPercentage": 0,
|
||||
"route": [
|
||||
{
|
||||
"x": 564,
|
||||
"y": 191
|
||||
"x": 500,
|
||||
"y": 190
|
||||
},
|
||||
{
|
||||
"x": 564,
|
||||
"y": 2011
|
||||
"x": 500,
|
||||
"y": 2010
|
||||
}
|
||||
],
|
||||
"animated": false,
|
||||
|
|
@ -1266,12 +1266,12 @@
|
|||
"labelPercentage": 0,
|
||||
"route": [
|
||||
{
|
||||
"x": 1027.5,
|
||||
"y": 191
|
||||
"x": 925,
|
||||
"y": 190
|
||||
},
|
||||
{
|
||||
"x": 1027.5,
|
||||
"y": 2011
|
||||
"x": 925,
|
||||
"y": 2010
|
||||
}
|
||||
],
|
||||
"animated": false,
|
||||
|
|
@ -1305,12 +1305,12 @@
|
|||
"labelPercentage": 0,
|
||||
"route": [
|
||||
{
|
||||
"x": 1478.5,
|
||||
"y": 191
|
||||
"x": 1343,
|
||||
"y": 190
|
||||
},
|
||||
{
|
||||
"x": 1478.5,
|
||||
"y": 2011
|
||||
"x": 1343,
|
||||
"y": 2010
|
||||
}
|
||||
],
|
||||
"animated": false,
|
||||
|
|
@ -1344,12 +1344,12 @@
|
|||
"labelPercentage": 0,
|
||||
"route": [
|
||||
{
|
||||
"x": 1951,
|
||||
"y": 191
|
||||
"x": 1766,
|
||||
"y": 190
|
||||
},
|
||||
{
|
||||
"x": 1951,
|
||||
"y": 2011
|
||||
"x": 1766,
|
||||
"y": 2010
|
||||
}
|
||||
],
|
||||
"animated": false,
|
||||
|
|
@ -1383,12 +1383,12 @@
|
|||
"labelPercentage": 0,
|
||||
"route": [
|
||||
{
|
||||
"x": 2433.5,
|
||||
"y": 191
|
||||
"x": 2194.5,
|
||||
"y": 190
|
||||
},
|
||||
{
|
||||
"x": 2433.5,
|
||||
"y": 2011
|
||||
"x": 2194.5,
|
||||
"y": 2010
|
||||
}
|
||||
],
|
||||
"animated": false,
|
||||
|
|
|
|||
|
Before Width: | Height: | Size: 476 KiB After Width: | Height: | Size: 476 KiB |
970
e2etests/testdata/stable/sequence_diagrams/dagre/board.exp.json
generated
vendored
|
Before Width: | Height: | Size: 498 KiB After Width: | Height: | Size: 498 KiB |
896
e2etests/testdata/stable/sequence_diagrams/elk/board.exp.json
generated
vendored
|
Before Width: | Height: | Size: 498 KiB After Width: | Height: | Size: 498 KiB |