d2sequence: fix self reference message alignment
|
|
@ -4,5 +4,6 @@
|
|||
|
||||
- Sequence diagram edge groups account for edge label heights [#2038](https://github.com/terrastruct/d2/pull/2038)
|
||||
- Sequence diagram self-referential edges account for edge label heights [#2040](https://github.com/terrastruct/d2/pull/2040)
|
||||
- Sequence diagram: The spacing between self-referential edges and regular edges is uniform [#2043](https://github.com/terrastruct/d2/pull/2043)
|
||||
|
||||
#### Bugfixes ⛑️
|
||||
|
|
|
|||
|
|
@ -536,7 +536,6 @@ func (sd *sequenceDiagram) placeSpans() {
|
|||
// in another step, routes are adjusted to spans borders when necessary
|
||||
func (sd *sequenceDiagram) routeMessages() error {
|
||||
var prevIsLoop bool
|
||||
var prevGroup *d2graph.Object
|
||||
messageOffset := sd.maxActorHeight + sd.yStep
|
||||
for _, message := range sd.messages {
|
||||
message.ZIndex = MESSAGE_Z_INDEX
|
||||
|
|
@ -547,12 +546,10 @@ func (sd *sequenceDiagram) routeMessages() error {
|
|||
}
|
||||
}
|
||||
|
||||
// we need extra space if the previous message is a loop in a different group
|
||||
group := message.GetGroup()
|
||||
if prevIsLoop && prevGroup != group {
|
||||
messageOffset += MIN_MESSAGE_DISTANCE
|
||||
// we need extra space if the previous message is a loop
|
||||
if prevIsLoop {
|
||||
messageOffset += MIN_MESSAGE_DISTANCE * 1.5
|
||||
}
|
||||
prevGroup = group
|
||||
|
||||
startY := messageOffset + noteOffset
|
||||
|
||||
|
|
|
|||
|
Before Width: | Height: | Size: 677 KiB After Width: | Height: | Size: 677 KiB |
136
e2etests/testdata/regression/sequence_diagram_self_edge_group_overlap/dagre/board.exp.json
generated
vendored
|
|
@ -173,7 +173,7 @@
|
|||
"type": "rectangle",
|
||||
"pos": {
|
||||
"x": 22,
|
||||
"y": 304
|
||||
"y": 319
|
||||
},
|
||||
"width": 230,
|
||||
"height": 61,
|
||||
|
|
@ -215,7 +215,7 @@
|
|||
"type": "rectangle",
|
||||
"pos": {
|
||||
"x": 22,
|
||||
"y": 405
|
||||
"y": 420
|
||||
},
|
||||
"width": 160,
|
||||
"height": 106,
|
||||
|
|
@ -257,10 +257,10 @@
|
|||
"type": "rectangle",
|
||||
"pos": {
|
||||
"x": 56,
|
||||
"y": 486
|
||||
"y": 501
|
||||
},
|
||||
"width": 12,
|
||||
"height": 106,
|
||||
"height": 121,
|
||||
"opacity": 1,
|
||||
"strokeDash": 0,
|
||||
"strokeWidth": 2,
|
||||
|
|
@ -297,7 +297,7 @@
|
|||
"type": "rectangle",
|
||||
"pos": {
|
||||
"x": 28,
|
||||
"y": 536
|
||||
"y": 566
|
||||
},
|
||||
"width": 224,
|
||||
"height": 61,
|
||||
|
|
@ -339,10 +339,10 @@
|
|||
"type": "rectangle",
|
||||
"pos": {
|
||||
"x": 172,
|
||||
"y": 637
|
||||
"y": 667
|
||||
},
|
||||
"width": 160,
|
||||
"height": 176,
|
||||
"height": 221,
|
||||
"opacity": 1,
|
||||
"strokeDash": 0,
|
||||
"strokeWidth": 0,
|
||||
|
|
@ -381,7 +381,7 @@
|
|||
"type": "rectangle",
|
||||
"pos": {
|
||||
"x": 22,
|
||||
"y": 838
|
||||
"y": 928
|
||||
},
|
||||
"width": 230,
|
||||
"height": 61,
|
||||
|
|
@ -423,7 +423,7 @@
|
|||
"type": "rectangle",
|
||||
"pos": {
|
||||
"x": 22,
|
||||
"y": 939
|
||||
"y": 1029
|
||||
},
|
||||
"width": 160,
|
||||
"height": 106,
|
||||
|
|
@ -465,7 +465,7 @@
|
|||
"type": "rectangle",
|
||||
"pos": {
|
||||
"x": 22,
|
||||
"y": 1070
|
||||
"y": 1175
|
||||
},
|
||||
"width": 160,
|
||||
"height": 106,
|
||||
|
|
@ -507,7 +507,7 @@
|
|||
"type": "rectangle",
|
||||
"pos": {
|
||||
"x": 22,
|
||||
"y": 1301
|
||||
"y": 1436
|
||||
},
|
||||
"width": 160,
|
||||
"height": 106,
|
||||
|
|
@ -549,7 +549,7 @@
|
|||
"type": "rectangle",
|
||||
"pos": {
|
||||
"x": 322,
|
||||
"y": 1572
|
||||
"y": 1767
|
||||
},
|
||||
"width": 160,
|
||||
"height": 106,
|
||||
|
|
@ -591,7 +591,7 @@
|
|||
"type": "rectangle",
|
||||
"pos": {
|
||||
"x": 322,
|
||||
"y": 1773
|
||||
"y": 1983
|
||||
},
|
||||
"width": 160,
|
||||
"height": 106,
|
||||
|
|
@ -702,11 +702,11 @@
|
|||
"route": [
|
||||
{
|
||||
"x": 62,
|
||||
"y": 350
|
||||
"y": 365
|
||||
},
|
||||
{
|
||||
"x": 212,
|
||||
"y": 350
|
||||
"y": 365
|
||||
}
|
||||
],
|
||||
"animated": false,
|
||||
|
|
@ -740,19 +740,19 @@
|
|||
"route": [
|
||||
{
|
||||
"x": 62,
|
||||
"y": 451
|
||||
"y": 466
|
||||
},
|
||||
{
|
||||
"x": 142,
|
||||
"y": 451
|
||||
"y": 466
|
||||
},
|
||||
{
|
||||
"x": 142,
|
||||
"y": 496
|
||||
"y": 511
|
||||
},
|
||||
{
|
||||
"x": 68,
|
||||
"y": 496
|
||||
"y": 511
|
||||
}
|
||||
],
|
||||
"animated": false,
|
||||
|
|
@ -786,11 +786,11 @@
|
|||
"route": [
|
||||
{
|
||||
"x": 68,
|
||||
"y": 582
|
||||
"y": 612
|
||||
},
|
||||
{
|
||||
"x": 212,
|
||||
"y": 582
|
||||
"y": 612
|
||||
}
|
||||
],
|
||||
"animated": false,
|
||||
|
|
@ -824,19 +824,19 @@
|
|||
"route": [
|
||||
{
|
||||
"x": 212,
|
||||
"y": 683
|
||||
"y": 713
|
||||
},
|
||||
{
|
||||
"x": 292,
|
||||
"y": 683
|
||||
"y": 713
|
||||
},
|
||||
{
|
||||
"x": 292,
|
||||
"y": 728
|
||||
"y": 758
|
||||
},
|
||||
{
|
||||
"x": 212,
|
||||
"y": 728
|
||||
"y": 758
|
||||
}
|
||||
],
|
||||
"animated": false,
|
||||
|
|
@ -870,19 +870,19 @@
|
|||
"route": [
|
||||
{
|
||||
"x": 212,
|
||||
"y": 753
|
||||
"y": 828
|
||||
},
|
||||
{
|
||||
"x": 292,
|
||||
"y": 753
|
||||
"y": 828
|
||||
},
|
||||
{
|
||||
"x": 292,
|
||||
"y": 798
|
||||
"y": 873
|
||||
},
|
||||
{
|
||||
"x": 212,
|
||||
"y": 798
|
||||
"y": 873
|
||||
}
|
||||
],
|
||||
"animated": false,
|
||||
|
|
@ -916,11 +916,11 @@
|
|||
"route": [
|
||||
{
|
||||
"x": 212,
|
||||
"y": 884
|
||||
"y": 974
|
||||
},
|
||||
{
|
||||
"x": 62,
|
||||
"y": 884
|
||||
"y": 974
|
||||
}
|
||||
],
|
||||
"animated": false,
|
||||
|
|
@ -954,19 +954,19 @@
|
|||
"route": [
|
||||
{
|
||||
"x": 62,
|
||||
"y": 985
|
||||
"y": 1075
|
||||
},
|
||||
{
|
||||
"x": 142,
|
||||
"y": 985
|
||||
"y": 1075
|
||||
},
|
||||
{
|
||||
"x": 142,
|
||||
"y": 1030
|
||||
"y": 1120
|
||||
},
|
||||
{
|
||||
"x": 62,
|
||||
"y": 1030
|
||||
"y": 1120
|
||||
}
|
||||
],
|
||||
"animated": false,
|
||||
|
|
@ -1000,19 +1000,19 @@
|
|||
"route": [
|
||||
{
|
||||
"x": 62,
|
||||
"y": 1116
|
||||
"y": 1221
|
||||
},
|
||||
{
|
||||
"x": 142,
|
||||
"y": 1116
|
||||
"y": 1221
|
||||
},
|
||||
{
|
||||
"x": 142,
|
||||
"y": 1161
|
||||
"y": 1266
|
||||
},
|
||||
{
|
||||
"x": 62,
|
||||
"y": 1161
|
||||
"y": 1266
|
||||
}
|
||||
],
|
||||
"animated": false,
|
||||
|
|
@ -1046,19 +1046,19 @@
|
|||
"route": [
|
||||
{
|
||||
"x": 62,
|
||||
"y": 1216
|
||||
"y": 1336
|
||||
},
|
||||
{
|
||||
"x": 142,
|
||||
"y": 1216
|
||||
"y": 1336
|
||||
},
|
||||
{
|
||||
"x": 142,
|
||||
"y": 1261
|
||||
"y": 1381
|
||||
},
|
||||
{
|
||||
"x": 62,
|
||||
"y": 1261
|
||||
"y": 1381
|
||||
}
|
||||
],
|
||||
"animated": false,
|
||||
|
|
@ -1092,19 +1092,19 @@
|
|||
"route": [
|
||||
{
|
||||
"x": 62,
|
||||
"y": 1347
|
||||
"y": 1482
|
||||
},
|
||||
{
|
||||
"x": 142,
|
||||
"y": 1347
|
||||
"y": 1482
|
||||
},
|
||||
{
|
||||
"x": 142,
|
||||
"y": 1392
|
||||
"y": 1527
|
||||
},
|
||||
{
|
||||
"x": 62,
|
||||
"y": 1392
|
||||
"y": 1527
|
||||
}
|
||||
],
|
||||
"animated": false,
|
||||
|
|
@ -1138,19 +1138,19 @@
|
|||
"route": [
|
||||
{
|
||||
"x": 62,
|
||||
"y": 1447
|
||||
"y": 1597
|
||||
},
|
||||
{
|
||||
"x": 142,
|
||||
"y": 1447
|
||||
"y": 1597
|
||||
},
|
||||
{
|
||||
"x": 142,
|
||||
"y": 1492
|
||||
"y": 1642
|
||||
},
|
||||
{
|
||||
"x": 62,
|
||||
"y": 1492
|
||||
"y": 1642
|
||||
}
|
||||
],
|
||||
"animated": false,
|
||||
|
|
@ -1184,11 +1184,11 @@
|
|||
"route": [
|
||||
{
|
||||
"x": 212,
|
||||
"y": 1517
|
||||
"y": 1712
|
||||
},
|
||||
{
|
||||
"x": 362,
|
||||
"y": 1517
|
||||
"y": 1712
|
||||
}
|
||||
],
|
||||
"animated": false,
|
||||
|
|
@ -1222,19 +1222,19 @@
|
|||
"route": [
|
||||
{
|
||||
"x": 362,
|
||||
"y": 1618
|
||||
"y": 1813
|
||||
},
|
||||
{
|
||||
"x": 442,
|
||||
"y": 1618
|
||||
"y": 1813
|
||||
},
|
||||
{
|
||||
"x": 442,
|
||||
"y": 1663
|
||||
"y": 1858
|
||||
},
|
||||
{
|
||||
"x": 362,
|
||||
"y": 1663
|
||||
"y": 1858
|
||||
}
|
||||
],
|
||||
"animated": false,
|
||||
|
|
@ -1268,11 +1268,11 @@
|
|||
"route": [
|
||||
{
|
||||
"x": 212,
|
||||
"y": 1718
|
||||
"y": 1928
|
||||
},
|
||||
{
|
||||
"x": 362,
|
||||
"y": 1718
|
||||
"y": 1928
|
||||
}
|
||||
],
|
||||
"animated": false,
|
||||
|
|
@ -1306,19 +1306,19 @@
|
|||
"route": [
|
||||
{
|
||||
"x": 362,
|
||||
"y": 1819
|
||||
"y": 2029
|
||||
},
|
||||
{
|
||||
"x": 442,
|
||||
"y": 1819
|
||||
"y": 2029
|
||||
},
|
||||
{
|
||||
"x": 442,
|
||||
"y": 1864
|
||||
"y": 2074
|
||||
},
|
||||
{
|
||||
"x": 362,
|
||||
"y": 1864
|
||||
"y": 2074
|
||||
}
|
||||
],
|
||||
"animated": false,
|
||||
|
|
@ -1352,11 +1352,11 @@
|
|||
"route": [
|
||||
{
|
||||
"x": 212,
|
||||
"y": 1919
|
||||
"y": 2144
|
||||
},
|
||||
{
|
||||
"x": 362,
|
||||
"y": 1919
|
||||
"y": 2144
|
||||
}
|
||||
],
|
||||
"animated": false,
|
||||
|
|
@ -1394,7 +1394,7 @@
|
|||
},
|
||||
{
|
||||
"x": 62,
|
||||
"y": 1989
|
||||
"y": 2214
|
||||
}
|
||||
],
|
||||
"animated": false,
|
||||
|
|
@ -1432,7 +1432,7 @@
|
|||
},
|
||||
{
|
||||
"x": 212,
|
||||
"y": 1989
|
||||
"y": 2214
|
||||
}
|
||||
],
|
||||
"animated": false,
|
||||
|
|
@ -1470,7 +1470,7 @@
|
|||
},
|
||||
{
|
||||
"x": 362,
|
||||
"y": 1989
|
||||
"y": 2214
|
||||
}
|
||||
],
|
||||
"animated": false,
|
||||
|
|
|
|||
|
Before Width: | Height: | Size: 22 KiB After Width: | Height: | Size: 22 KiB |
136
e2etests/testdata/regression/sequence_diagram_self_edge_group_overlap/elk/board.exp.json
generated
vendored
|
|
@ -173,7 +173,7 @@
|
|||
"type": "rectangle",
|
||||
"pos": {
|
||||
"x": 22,
|
||||
"y": 304
|
||||
"y": 319
|
||||
},
|
||||
"width": 230,
|
||||
"height": 61,
|
||||
|
|
@ -215,7 +215,7 @@
|
|||
"type": "rectangle",
|
||||
"pos": {
|
||||
"x": 22,
|
||||
"y": 405
|
||||
"y": 420
|
||||
},
|
||||
"width": 160,
|
||||
"height": 106,
|
||||
|
|
@ -257,10 +257,10 @@
|
|||
"type": "rectangle",
|
||||
"pos": {
|
||||
"x": 56,
|
||||
"y": 486
|
||||
"y": 501
|
||||
},
|
||||
"width": 12,
|
||||
"height": 106,
|
||||
"height": 121,
|
||||
"opacity": 1,
|
||||
"strokeDash": 0,
|
||||
"strokeWidth": 2,
|
||||
|
|
@ -297,7 +297,7 @@
|
|||
"type": "rectangle",
|
||||
"pos": {
|
||||
"x": 28,
|
||||
"y": 536
|
||||
"y": 566
|
||||
},
|
||||
"width": 224,
|
||||
"height": 61,
|
||||
|
|
@ -339,10 +339,10 @@
|
|||
"type": "rectangle",
|
||||
"pos": {
|
||||
"x": 172,
|
||||
"y": 637
|
||||
"y": 667
|
||||
},
|
||||
"width": 160,
|
||||
"height": 176,
|
||||
"height": 221,
|
||||
"opacity": 1,
|
||||
"strokeDash": 0,
|
||||
"strokeWidth": 0,
|
||||
|
|
@ -381,7 +381,7 @@
|
|||
"type": "rectangle",
|
||||
"pos": {
|
||||
"x": 22,
|
||||
"y": 838
|
||||
"y": 928
|
||||
},
|
||||
"width": 230,
|
||||
"height": 61,
|
||||
|
|
@ -423,7 +423,7 @@
|
|||
"type": "rectangle",
|
||||
"pos": {
|
||||
"x": 22,
|
||||
"y": 939
|
||||
"y": 1029
|
||||
},
|
||||
"width": 160,
|
||||
"height": 106,
|
||||
|
|
@ -465,7 +465,7 @@
|
|||
"type": "rectangle",
|
||||
"pos": {
|
||||
"x": 22,
|
||||
"y": 1070
|
||||
"y": 1175
|
||||
},
|
||||
"width": 160,
|
||||
"height": 106,
|
||||
|
|
@ -507,7 +507,7 @@
|
|||
"type": "rectangle",
|
||||
"pos": {
|
||||
"x": 22,
|
||||
"y": 1301
|
||||
"y": 1436
|
||||
},
|
||||
"width": 160,
|
||||
"height": 106,
|
||||
|
|
@ -549,7 +549,7 @@
|
|||
"type": "rectangle",
|
||||
"pos": {
|
||||
"x": 322,
|
||||
"y": 1572
|
||||
"y": 1767
|
||||
},
|
||||
"width": 160,
|
||||
"height": 106,
|
||||
|
|
@ -591,7 +591,7 @@
|
|||
"type": "rectangle",
|
||||
"pos": {
|
||||
"x": 322,
|
||||
"y": 1773
|
||||
"y": 1983
|
||||
},
|
||||
"width": 160,
|
||||
"height": 106,
|
||||
|
|
@ -702,11 +702,11 @@
|
|||
"route": [
|
||||
{
|
||||
"x": 62,
|
||||
"y": 350
|
||||
"y": 365
|
||||
},
|
||||
{
|
||||
"x": 212,
|
||||
"y": 350
|
||||
"y": 365
|
||||
}
|
||||
],
|
||||
"animated": false,
|
||||
|
|
@ -740,19 +740,19 @@
|
|||
"route": [
|
||||
{
|
||||
"x": 62,
|
||||
"y": 451
|
||||
"y": 466
|
||||
},
|
||||
{
|
||||
"x": 142,
|
||||
"y": 451
|
||||
"y": 466
|
||||
},
|
||||
{
|
||||
"x": 142,
|
||||
"y": 496
|
||||
"y": 511
|
||||
},
|
||||
{
|
||||
"x": 68,
|
||||
"y": 496
|
||||
"y": 511
|
||||
}
|
||||
],
|
||||
"animated": false,
|
||||
|
|
@ -786,11 +786,11 @@
|
|||
"route": [
|
||||
{
|
||||
"x": 68,
|
||||
"y": 582
|
||||
"y": 612
|
||||
},
|
||||
{
|
||||
"x": 212,
|
||||
"y": 582
|
||||
"y": 612
|
||||
}
|
||||
],
|
||||
"animated": false,
|
||||
|
|
@ -824,19 +824,19 @@
|
|||
"route": [
|
||||
{
|
||||
"x": 212,
|
||||
"y": 683
|
||||
"y": 713
|
||||
},
|
||||
{
|
||||
"x": 292,
|
||||
"y": 683
|
||||
"y": 713
|
||||
},
|
||||
{
|
||||
"x": 292,
|
||||
"y": 728
|
||||
"y": 758
|
||||
},
|
||||
{
|
||||
"x": 212,
|
||||
"y": 728
|
||||
"y": 758
|
||||
}
|
||||
],
|
||||
"animated": false,
|
||||
|
|
@ -870,19 +870,19 @@
|
|||
"route": [
|
||||
{
|
||||
"x": 212,
|
||||
"y": 753
|
||||
"y": 828
|
||||
},
|
||||
{
|
||||
"x": 292,
|
||||
"y": 753
|
||||
"y": 828
|
||||
},
|
||||
{
|
||||
"x": 292,
|
||||
"y": 798
|
||||
"y": 873
|
||||
},
|
||||
{
|
||||
"x": 212,
|
||||
"y": 798
|
||||
"y": 873
|
||||
}
|
||||
],
|
||||
"animated": false,
|
||||
|
|
@ -916,11 +916,11 @@
|
|||
"route": [
|
||||
{
|
||||
"x": 212,
|
||||
"y": 884
|
||||
"y": 974
|
||||
},
|
||||
{
|
||||
"x": 62,
|
||||
"y": 884
|
||||
"y": 974
|
||||
}
|
||||
],
|
||||
"animated": false,
|
||||
|
|
@ -954,19 +954,19 @@
|
|||
"route": [
|
||||
{
|
||||
"x": 62,
|
||||
"y": 985
|
||||
"y": 1075
|
||||
},
|
||||
{
|
||||
"x": 142,
|
||||
"y": 985
|
||||
"y": 1075
|
||||
},
|
||||
{
|
||||
"x": 142,
|
||||
"y": 1030
|
||||
"y": 1120
|
||||
},
|
||||
{
|
||||
"x": 62,
|
||||
"y": 1030
|
||||
"y": 1120
|
||||
}
|
||||
],
|
||||
"animated": false,
|
||||
|
|
@ -1000,19 +1000,19 @@
|
|||
"route": [
|
||||
{
|
||||
"x": 62,
|
||||
"y": 1116
|
||||
"y": 1221
|
||||
},
|
||||
{
|
||||
"x": 142,
|
||||
"y": 1116
|
||||
"y": 1221
|
||||
},
|
||||
{
|
||||
"x": 142,
|
||||
"y": 1161
|
||||
"y": 1266
|
||||
},
|
||||
{
|
||||
"x": 62,
|
||||
"y": 1161
|
||||
"y": 1266
|
||||
}
|
||||
],
|
||||
"animated": false,
|
||||
|
|
@ -1046,19 +1046,19 @@
|
|||
"route": [
|
||||
{
|
||||
"x": 62,
|
||||
"y": 1216
|
||||
"y": 1336
|
||||
},
|
||||
{
|
||||
"x": 142,
|
||||
"y": 1216
|
||||
"y": 1336
|
||||
},
|
||||
{
|
||||
"x": 142,
|
||||
"y": 1261
|
||||
"y": 1381
|
||||
},
|
||||
{
|
||||
"x": 62,
|
||||
"y": 1261
|
||||
"y": 1381
|
||||
}
|
||||
],
|
||||
"animated": false,
|
||||
|
|
@ -1092,19 +1092,19 @@
|
|||
"route": [
|
||||
{
|
||||
"x": 62,
|
||||
"y": 1347
|
||||
"y": 1482
|
||||
},
|
||||
{
|
||||
"x": 142,
|
||||
"y": 1347
|
||||
"y": 1482
|
||||
},
|
||||
{
|
||||
"x": 142,
|
||||
"y": 1392
|
||||
"y": 1527
|
||||
},
|
||||
{
|
||||
"x": 62,
|
||||
"y": 1392
|
||||
"y": 1527
|
||||
}
|
||||
],
|
||||
"animated": false,
|
||||
|
|
@ -1138,19 +1138,19 @@
|
|||
"route": [
|
||||
{
|
||||
"x": 62,
|
||||
"y": 1447
|
||||
"y": 1597
|
||||
},
|
||||
{
|
||||
"x": 142,
|
||||
"y": 1447
|
||||
"y": 1597
|
||||
},
|
||||
{
|
||||
"x": 142,
|
||||
"y": 1492
|
||||
"y": 1642
|
||||
},
|
||||
{
|
||||
"x": 62,
|
||||
"y": 1492
|
||||
"y": 1642
|
||||
}
|
||||
],
|
||||
"animated": false,
|
||||
|
|
@ -1184,11 +1184,11 @@
|
|||
"route": [
|
||||
{
|
||||
"x": 212,
|
||||
"y": 1517
|
||||
"y": 1712
|
||||
},
|
||||
{
|
||||
"x": 362,
|
||||
"y": 1517
|
||||
"y": 1712
|
||||
}
|
||||
],
|
||||
"animated": false,
|
||||
|
|
@ -1222,19 +1222,19 @@
|
|||
"route": [
|
||||
{
|
||||
"x": 362,
|
||||
"y": 1618
|
||||
"y": 1813
|
||||
},
|
||||
{
|
||||
"x": 442,
|
||||
"y": 1618
|
||||
"y": 1813
|
||||
},
|
||||
{
|
||||
"x": 442,
|
||||
"y": 1663
|
||||
"y": 1858
|
||||
},
|
||||
{
|
||||
"x": 362,
|
||||
"y": 1663
|
||||
"y": 1858
|
||||
}
|
||||
],
|
||||
"animated": false,
|
||||
|
|
@ -1268,11 +1268,11 @@
|
|||
"route": [
|
||||
{
|
||||
"x": 212,
|
||||
"y": 1718
|
||||
"y": 1928
|
||||
},
|
||||
{
|
||||
"x": 362,
|
||||
"y": 1718
|
||||
"y": 1928
|
||||
}
|
||||
],
|
||||
"animated": false,
|
||||
|
|
@ -1306,19 +1306,19 @@
|
|||
"route": [
|
||||
{
|
||||
"x": 362,
|
||||
"y": 1819
|
||||
"y": 2029
|
||||
},
|
||||
{
|
||||
"x": 442,
|
||||
"y": 1819
|
||||
"y": 2029
|
||||
},
|
||||
{
|
||||
"x": 442,
|
||||
"y": 1864
|
||||
"y": 2074
|
||||
},
|
||||
{
|
||||
"x": 362,
|
||||
"y": 1864
|
||||
"y": 2074
|
||||
}
|
||||
],
|
||||
"animated": false,
|
||||
|
|
@ -1352,11 +1352,11 @@
|
|||
"route": [
|
||||
{
|
||||
"x": 212,
|
||||
"y": 1919
|
||||
"y": 2144
|
||||
},
|
||||
{
|
||||
"x": 362,
|
||||
"y": 1919
|
||||
"y": 2144
|
||||
}
|
||||
],
|
||||
"animated": false,
|
||||
|
|
@ -1394,7 +1394,7 @@
|
|||
},
|
||||
{
|
||||
"x": 62,
|
||||
"y": 1989
|
||||
"y": 2214
|
||||
}
|
||||
],
|
||||
"animated": false,
|
||||
|
|
@ -1432,7 +1432,7 @@
|
|||
},
|
||||
{
|
||||
"x": 212,
|
||||
"y": 1989
|
||||
"y": 2214
|
||||
}
|
||||
],
|
||||
"animated": false,
|
||||
|
|
@ -1470,7 +1470,7 @@
|
|||
},
|
||||
{
|
||||
"x": 362,
|
||||
"y": 1989
|
||||
"y": 2214
|
||||
}
|
||||
],
|
||||
"animated": false,
|
||||
|
|
|
|||
|
Before Width: | Height: | Size: 22 KiB After Width: | Height: | Size: 22 KiB |
16
e2etests/testdata/regression/sequence_diagram_span_cover/dagre/board.exp.json
generated
vendored
|
|
@ -52,7 +52,7 @@
|
|||
"y": 178
|
||||
},
|
||||
"width": 12,
|
||||
"height": 135,
|
||||
"height": 180,
|
||||
"opacity": 1,
|
||||
"strokeDash": 0,
|
||||
"strokeWidth": 2,
|
||||
|
|
@ -158,19 +158,19 @@
|
|||
"route": [
|
||||
{
|
||||
"x": 68,
|
||||
"y": 258
|
||||
},
|
||||
{
|
||||
"x": 142,
|
||||
"y": 258
|
||||
"y": 303
|
||||
},
|
||||
{
|
||||
"x": 142,
|
||||
"y": 303
|
||||
},
|
||||
{
|
||||
"x": 142,
|
||||
"y": 348
|
||||
},
|
||||
{
|
||||
"x": 68,
|
||||
"y": 303
|
||||
"y": 348
|
||||
}
|
||||
],
|
||||
"animated": false,
|
||||
|
|
@ -208,7 +208,7 @@
|
|||
},
|
||||
{
|
||||
"x": 62,
|
||||
"y": 373
|
||||
"y": 418
|
||||
}
|
||||
],
|
||||
"animated": false,
|
||||
|
|
|
|||
|
|
@ -1,9 +1,9 @@
|
|||
<?xml version="1.0" encoding="utf-8"?><svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" d2Version="v0.6.6-HEAD" preserveAspectRatio="xMinYMin meet" viewBox="0 0 132 323"><svg id="d2-svg" class="d2-3310224674" width="132" height="323" viewBox="11 51 132 323"><rect x="11.000000" y="51.000000" width="132.000000" height="323.000000" rx="0.000000" class=" fill-N7" stroke-width="0" /><style type="text/css"><![CDATA[
|
||||
.d2-3310224674 .text {
|
||||
font-family: "d2-3310224674-font-regular";
|
||||
<?xml version="1.0" encoding="utf-8"?><svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" d2Version="v0.6.6-HEAD" preserveAspectRatio="xMinYMin meet" viewBox="0 0 132 368"><svg id="d2-svg" class="d2-3879014770" width="132" height="368" viewBox="11 51 132 368"><rect x="11.000000" y="51.000000" width="132.000000" height="368.000000" rx="0.000000" class=" fill-N7" stroke-width="0" /><style type="text/css"><![CDATA[
|
||||
.d2-3879014770 .text {
|
||||
font-family: "d2-3879014770-font-regular";
|
||||
}
|
||||
@font-face {
|
||||
font-family: d2-3310224674-font-regular;
|
||||
font-family: d2-3879014770-font-regular;
|
||||
src: url("data:application/font-woff;base64,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");
|
||||
}]]></style><style type="text/css"><![CDATA[.shape {
|
||||
shape-rendering: geometricPrecision;
|
||||
|
|
@ -18,78 +18,78 @@
|
|||
opacity: 0.5;
|
||||
}
|
||||
|
||||
.d2-3310224674 .fill-N1{fill:#0A0F25;}
|
||||
.d2-3310224674 .fill-N2{fill:#676C7E;}
|
||||
.d2-3310224674 .fill-N3{fill:#9499AB;}
|
||||
.d2-3310224674 .fill-N4{fill:#CFD2DD;}
|
||||
.d2-3310224674 .fill-N5{fill:#DEE1EB;}
|
||||
.d2-3310224674 .fill-N6{fill:#EEF1F8;}
|
||||
.d2-3310224674 .fill-N7{fill:#FFFFFF;}
|
||||
.d2-3310224674 .fill-B1{fill:#0D32B2;}
|
||||
.d2-3310224674 .fill-B2{fill:#0D32B2;}
|
||||
.d2-3310224674 .fill-B3{fill:#E3E9FD;}
|
||||
.d2-3310224674 .fill-B4{fill:#E3E9FD;}
|
||||
.d2-3310224674 .fill-B5{fill:#EDF0FD;}
|
||||
.d2-3310224674 .fill-B6{fill:#F7F8FE;}
|
||||
.d2-3310224674 .fill-AA2{fill:#4A6FF3;}
|
||||
.d2-3310224674 .fill-AA4{fill:#EDF0FD;}
|
||||
.d2-3310224674 .fill-AA5{fill:#F7F8FE;}
|
||||
.d2-3310224674 .fill-AB4{fill:#EDF0FD;}
|
||||
.d2-3310224674 .fill-AB5{fill:#F7F8FE;}
|
||||
.d2-3310224674 .stroke-N1{stroke:#0A0F25;}
|
||||
.d2-3310224674 .stroke-N2{stroke:#676C7E;}
|
||||
.d2-3310224674 .stroke-N3{stroke:#9499AB;}
|
||||
.d2-3310224674 .stroke-N4{stroke:#CFD2DD;}
|
||||
.d2-3310224674 .stroke-N5{stroke:#DEE1EB;}
|
||||
.d2-3310224674 .stroke-N6{stroke:#EEF1F8;}
|
||||
.d2-3310224674 .stroke-N7{stroke:#FFFFFF;}
|
||||
.d2-3310224674 .stroke-B1{stroke:#0D32B2;}
|
||||
.d2-3310224674 .stroke-B2{stroke:#0D32B2;}
|
||||
.d2-3310224674 .stroke-B3{stroke:#E3E9FD;}
|
||||
.d2-3310224674 .stroke-B4{stroke:#E3E9FD;}
|
||||
.d2-3310224674 .stroke-B5{stroke:#EDF0FD;}
|
||||
.d2-3310224674 .stroke-B6{stroke:#F7F8FE;}
|
||||
.d2-3310224674 .stroke-AA2{stroke:#4A6FF3;}
|
||||
.d2-3310224674 .stroke-AA4{stroke:#EDF0FD;}
|
||||
.d2-3310224674 .stroke-AA5{stroke:#F7F8FE;}
|
||||
.d2-3310224674 .stroke-AB4{stroke:#EDF0FD;}
|
||||
.d2-3310224674 .stroke-AB5{stroke:#F7F8FE;}
|
||||
.d2-3310224674 .background-color-N1{background-color:#0A0F25;}
|
||||
.d2-3310224674 .background-color-N2{background-color:#676C7E;}
|
||||
.d2-3310224674 .background-color-N3{background-color:#9499AB;}
|
||||
.d2-3310224674 .background-color-N4{background-color:#CFD2DD;}
|
||||
.d2-3310224674 .background-color-N5{background-color:#DEE1EB;}
|
||||
.d2-3310224674 .background-color-N6{background-color:#EEF1F8;}
|
||||
.d2-3310224674 .background-color-N7{background-color:#FFFFFF;}
|
||||
.d2-3310224674 .background-color-B1{background-color:#0D32B2;}
|
||||
.d2-3310224674 .background-color-B2{background-color:#0D32B2;}
|
||||
.d2-3310224674 .background-color-B3{background-color:#E3E9FD;}
|
||||
.d2-3310224674 .background-color-B4{background-color:#E3E9FD;}
|
||||
.d2-3310224674 .background-color-B5{background-color:#EDF0FD;}
|
||||
.d2-3310224674 .background-color-B6{background-color:#F7F8FE;}
|
||||
.d2-3310224674 .background-color-AA2{background-color:#4A6FF3;}
|
||||
.d2-3310224674 .background-color-AA4{background-color:#EDF0FD;}
|
||||
.d2-3310224674 .background-color-AA5{background-color:#F7F8FE;}
|
||||
.d2-3310224674 .background-color-AB4{background-color:#EDF0FD;}
|
||||
.d2-3310224674 .background-color-AB5{background-color:#F7F8FE;}
|
||||
.d2-3310224674 .color-N1{color:#0A0F25;}
|
||||
.d2-3310224674 .color-N2{color:#676C7E;}
|
||||
.d2-3310224674 .color-N3{color:#9499AB;}
|
||||
.d2-3310224674 .color-N4{color:#CFD2DD;}
|
||||
.d2-3310224674 .color-N5{color:#DEE1EB;}
|
||||
.d2-3310224674 .color-N6{color:#EEF1F8;}
|
||||
.d2-3310224674 .color-N7{color:#FFFFFF;}
|
||||
.d2-3310224674 .color-B1{color:#0D32B2;}
|
||||
.d2-3310224674 .color-B2{color:#0D32B2;}
|
||||
.d2-3310224674 .color-B3{color:#E3E9FD;}
|
||||
.d2-3310224674 .color-B4{color:#E3E9FD;}
|
||||
.d2-3310224674 .color-B5{color:#EDF0FD;}
|
||||
.d2-3310224674 .color-B6{color:#F7F8FE;}
|
||||
.d2-3310224674 .color-AA2{color:#4A6FF3;}
|
||||
.d2-3310224674 .color-AA4{color:#EDF0FD;}
|
||||
.d2-3310224674 .color-AA5{color:#F7F8FE;}
|
||||
.d2-3310224674 .color-AB4{color:#EDF0FD;}
|
||||
.d2-3310224674 .color-AB5{color:#F7F8FE;}.appendix text.text{fill:#0A0F25}.md{--color-fg-default:#0A0F25;--color-fg-muted:#676C7E;--color-fg-subtle:#9499AB;--color-canvas-default:#FFFFFF;--color-canvas-subtle:#EEF1F8;--color-border-default:#0D32B2;--color-border-muted:#0D32B2;--color-neutral-muted:#EEF1F8;--color-accent-fg:#0D32B2;--color-accent-emphasis:#0D32B2;--color-attention-subtle:#676C7E;--color-danger-fg:red;}.sketch-overlay-B1{fill:url(#streaks-darker);mix-blend-mode:lighten}.sketch-overlay-B2{fill:url(#streaks-darker);mix-blend-mode:lighten}.sketch-overlay-B3{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-B4{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-B5{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-B6{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-AA2{fill:url(#streaks-dark);mix-blend-mode:overlay}.sketch-overlay-AA4{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-AA5{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-AB4{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-AB5{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-N1{fill:url(#streaks-darker);mix-blend-mode:lighten}.sketch-overlay-N2{fill:url(#streaks-dark);mix-blend-mode:overlay}.sketch-overlay-N3{fill:url(#streaks-normal);mix-blend-mode:color-burn}.sketch-overlay-N4{fill:url(#streaks-normal);mix-blend-mode:color-burn}.sketch-overlay-N5{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-N6{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-N7{fill:url(#streaks-bright);mix-blend-mode:darken}.light-code{display: block}.dark-code{display: none}]]></style><g id="b"><g class="shape" ><rect x="12.000000" y="52.000000" width="100.000000" height="66.000000" class=" stroke-B1 fill-B5" style="stroke-width:2;" /></g><text x="62.000000" y="90.500000" class="text fill-N1" style="text-anchor:middle;font-size:16px">b</text></g><g id="(b -- )[0]"><path d="M 62.000000 120.000000 L 62.000000 372.000000" fill="none" class="connection stroke-B2" style="stroke-width:2;stroke-dasharray:12.000000,11.838767;" mask="url(#d2-3310224674)" /></g><g id="b.1"><g class="shape" ><rect x="56.000000" y="178.000000" width="12.000000" height="135.000000" class=" stroke-B1 fill-B4" style="stroke-width:2;" /></g></g><g id="b.(1 -> 1)[0]"><marker id="mk-3488378134" 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 points="0.000000,0.000000 10.000000,6.000000 0.000000,12.000000" class="connection fill-B1" stroke-width="2" /> </marker><path d="M 70.000000 188.000000 L 132.000000 188.000000 S 142.000000 188.000000 142.000000 198.000000 L 142.000000 223.000000 S 142.000000 233.000000 132.000000 233.000000 L 72.000000 233.000000" fill="none" class="connection stroke-B1" style="stroke-width:2;" marker-end="url(#mk-3488378134)" mask="url(#d2-3310224674)" /></g><g id="b.(1 -> 1)[1]"><path d="M 70.000000 258.000000 L 132.000000 258.000000 S 142.000000 258.000000 142.000000 268.000000 L 142.000000 293.000000 S 142.000000 303.000000 132.000000 303.000000 L 72.000000 303.000000" fill="none" class="connection stroke-B1" style="stroke-width:2;" marker-end="url(#mk-3488378134)" mask="url(#d2-3310224674)" /></g><mask id="d2-3310224674" maskUnits="userSpaceOnUse" x="11" y="51" width="132" height="323">
|
||||
<rect x="11" y="51" width="132" height="323" fill="white"></rect>
|
||||
.d2-3879014770 .fill-N1{fill:#0A0F25;}
|
||||
.d2-3879014770 .fill-N2{fill:#676C7E;}
|
||||
.d2-3879014770 .fill-N3{fill:#9499AB;}
|
||||
.d2-3879014770 .fill-N4{fill:#CFD2DD;}
|
||||
.d2-3879014770 .fill-N5{fill:#DEE1EB;}
|
||||
.d2-3879014770 .fill-N6{fill:#EEF1F8;}
|
||||
.d2-3879014770 .fill-N7{fill:#FFFFFF;}
|
||||
.d2-3879014770 .fill-B1{fill:#0D32B2;}
|
||||
.d2-3879014770 .fill-B2{fill:#0D32B2;}
|
||||
.d2-3879014770 .fill-B3{fill:#E3E9FD;}
|
||||
.d2-3879014770 .fill-B4{fill:#E3E9FD;}
|
||||
.d2-3879014770 .fill-B5{fill:#EDF0FD;}
|
||||
.d2-3879014770 .fill-B6{fill:#F7F8FE;}
|
||||
.d2-3879014770 .fill-AA2{fill:#4A6FF3;}
|
||||
.d2-3879014770 .fill-AA4{fill:#EDF0FD;}
|
||||
.d2-3879014770 .fill-AA5{fill:#F7F8FE;}
|
||||
.d2-3879014770 .fill-AB4{fill:#EDF0FD;}
|
||||
.d2-3879014770 .fill-AB5{fill:#F7F8FE;}
|
||||
.d2-3879014770 .stroke-N1{stroke:#0A0F25;}
|
||||
.d2-3879014770 .stroke-N2{stroke:#676C7E;}
|
||||
.d2-3879014770 .stroke-N3{stroke:#9499AB;}
|
||||
.d2-3879014770 .stroke-N4{stroke:#CFD2DD;}
|
||||
.d2-3879014770 .stroke-N5{stroke:#DEE1EB;}
|
||||
.d2-3879014770 .stroke-N6{stroke:#EEF1F8;}
|
||||
.d2-3879014770 .stroke-N7{stroke:#FFFFFF;}
|
||||
.d2-3879014770 .stroke-B1{stroke:#0D32B2;}
|
||||
.d2-3879014770 .stroke-B2{stroke:#0D32B2;}
|
||||
.d2-3879014770 .stroke-B3{stroke:#E3E9FD;}
|
||||
.d2-3879014770 .stroke-B4{stroke:#E3E9FD;}
|
||||
.d2-3879014770 .stroke-B5{stroke:#EDF0FD;}
|
||||
.d2-3879014770 .stroke-B6{stroke:#F7F8FE;}
|
||||
.d2-3879014770 .stroke-AA2{stroke:#4A6FF3;}
|
||||
.d2-3879014770 .stroke-AA4{stroke:#EDF0FD;}
|
||||
.d2-3879014770 .stroke-AA5{stroke:#F7F8FE;}
|
||||
.d2-3879014770 .stroke-AB4{stroke:#EDF0FD;}
|
||||
.d2-3879014770 .stroke-AB5{stroke:#F7F8FE;}
|
||||
.d2-3879014770 .background-color-N1{background-color:#0A0F25;}
|
||||
.d2-3879014770 .background-color-N2{background-color:#676C7E;}
|
||||
.d2-3879014770 .background-color-N3{background-color:#9499AB;}
|
||||
.d2-3879014770 .background-color-N4{background-color:#CFD2DD;}
|
||||
.d2-3879014770 .background-color-N5{background-color:#DEE1EB;}
|
||||
.d2-3879014770 .background-color-N6{background-color:#EEF1F8;}
|
||||
.d2-3879014770 .background-color-N7{background-color:#FFFFFF;}
|
||||
.d2-3879014770 .background-color-B1{background-color:#0D32B2;}
|
||||
.d2-3879014770 .background-color-B2{background-color:#0D32B2;}
|
||||
.d2-3879014770 .background-color-B3{background-color:#E3E9FD;}
|
||||
.d2-3879014770 .background-color-B4{background-color:#E3E9FD;}
|
||||
.d2-3879014770 .background-color-B5{background-color:#EDF0FD;}
|
||||
.d2-3879014770 .background-color-B6{background-color:#F7F8FE;}
|
||||
.d2-3879014770 .background-color-AA2{background-color:#4A6FF3;}
|
||||
.d2-3879014770 .background-color-AA4{background-color:#EDF0FD;}
|
||||
.d2-3879014770 .background-color-AA5{background-color:#F7F8FE;}
|
||||
.d2-3879014770 .background-color-AB4{background-color:#EDF0FD;}
|
||||
.d2-3879014770 .background-color-AB5{background-color:#F7F8FE;}
|
||||
.d2-3879014770 .color-N1{color:#0A0F25;}
|
||||
.d2-3879014770 .color-N2{color:#676C7E;}
|
||||
.d2-3879014770 .color-N3{color:#9499AB;}
|
||||
.d2-3879014770 .color-N4{color:#CFD2DD;}
|
||||
.d2-3879014770 .color-N5{color:#DEE1EB;}
|
||||
.d2-3879014770 .color-N6{color:#EEF1F8;}
|
||||
.d2-3879014770 .color-N7{color:#FFFFFF;}
|
||||
.d2-3879014770 .color-B1{color:#0D32B2;}
|
||||
.d2-3879014770 .color-B2{color:#0D32B2;}
|
||||
.d2-3879014770 .color-B3{color:#E3E9FD;}
|
||||
.d2-3879014770 .color-B4{color:#E3E9FD;}
|
||||
.d2-3879014770 .color-B5{color:#EDF0FD;}
|
||||
.d2-3879014770 .color-B6{color:#F7F8FE;}
|
||||
.d2-3879014770 .color-AA2{color:#4A6FF3;}
|
||||
.d2-3879014770 .color-AA4{color:#EDF0FD;}
|
||||
.d2-3879014770 .color-AA5{color:#F7F8FE;}
|
||||
.d2-3879014770 .color-AB4{color:#EDF0FD;}
|
||||
.d2-3879014770 .color-AB5{color:#F7F8FE;}.appendix text.text{fill:#0A0F25}.md{--color-fg-default:#0A0F25;--color-fg-muted:#676C7E;--color-fg-subtle:#9499AB;--color-canvas-default:#FFFFFF;--color-canvas-subtle:#EEF1F8;--color-border-default:#0D32B2;--color-border-muted:#0D32B2;--color-neutral-muted:#EEF1F8;--color-accent-fg:#0D32B2;--color-accent-emphasis:#0D32B2;--color-attention-subtle:#676C7E;--color-danger-fg:red;}.sketch-overlay-B1{fill:url(#streaks-darker);mix-blend-mode:lighten}.sketch-overlay-B2{fill:url(#streaks-darker);mix-blend-mode:lighten}.sketch-overlay-B3{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-B4{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-B5{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-B6{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-AA2{fill:url(#streaks-dark);mix-blend-mode:overlay}.sketch-overlay-AA4{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-AA5{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-AB4{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-AB5{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-N1{fill:url(#streaks-darker);mix-blend-mode:lighten}.sketch-overlay-N2{fill:url(#streaks-dark);mix-blend-mode:overlay}.sketch-overlay-N3{fill:url(#streaks-normal);mix-blend-mode:color-burn}.sketch-overlay-N4{fill:url(#streaks-normal);mix-blend-mode:color-burn}.sketch-overlay-N5{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-N6{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-N7{fill:url(#streaks-bright);mix-blend-mode:darken}.light-code{display: block}.dark-code{display: none}]]></style><g id="b"><g class="shape" ><rect x="12.000000" y="52.000000" width="100.000000" height="66.000000" class=" stroke-B1 fill-B5" style="stroke-width:2;" /></g><text x="62.000000" y="90.500000" class="text fill-N1" style="text-anchor:middle;font-size:16px">b</text></g><g id="(b -- )[0]"><path d="M 62.000000 120.000000 L 62.000000 417.000000" fill="none" class="connection stroke-B2" style="stroke-width:2;stroke-dasharray:12.000000,11.838767;" mask="url(#d2-3879014770)" /></g><g id="b.1"><g class="shape" ><rect x="56.000000" y="178.000000" width="12.000000" height="180.000000" class=" stroke-B1 fill-B4" style="stroke-width:2;" /></g></g><g id="b.(1 -> 1)[0]"><marker id="mk-3488378134" 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 points="0.000000,0.000000 10.000000,6.000000 0.000000,12.000000" class="connection fill-B1" stroke-width="2" /> </marker><path d="M 70.000000 188.000000 L 132.000000 188.000000 S 142.000000 188.000000 142.000000 198.000000 L 142.000000 223.000000 S 142.000000 233.000000 132.000000 233.000000 L 72.000000 233.000000" fill="none" class="connection stroke-B1" style="stroke-width:2;" marker-end="url(#mk-3488378134)" mask="url(#d2-3879014770)" /></g><g id="b.(1 -> 1)[1]"><path d="M 70.000000 303.000000 L 132.000000 303.000000 S 142.000000 303.000000 142.000000 313.000000 L 142.000000 338.000000 S 142.000000 348.000000 132.000000 348.000000 L 72.000000 348.000000" fill="none" class="connection stroke-B1" style="stroke-width:2;" marker-end="url(#mk-3488378134)" mask="url(#d2-3879014770)" /></g><mask id="d2-3879014770" maskUnits="userSpaceOnUse" x="11" y="51" width="132" height="368">
|
||||
<rect x="11" y="51" width="132" height="368" fill="white"></rect>
|
||||
<rect x="58.000000" y="74.500000" width="8" height="21" fill="rgba(0,0,0,0.75)"></rect>
|
||||
</mask></svg></svg>
|
||||
|
Before Width: | Height: | Size: 9.8 KiB After Width: | Height: | Size: 9.8 KiB |
16
e2etests/testdata/regression/sequence_diagram_span_cover/elk/board.exp.json
generated
vendored
|
|
@ -52,7 +52,7 @@
|
|||
"y": 178
|
||||
},
|
||||
"width": 12,
|
||||
"height": 135,
|
||||
"height": 180,
|
||||
"opacity": 1,
|
||||
"strokeDash": 0,
|
||||
"strokeWidth": 2,
|
||||
|
|
@ -158,19 +158,19 @@
|
|||
"route": [
|
||||
{
|
||||
"x": 68,
|
||||
"y": 258
|
||||
},
|
||||
{
|
||||
"x": 142,
|
||||
"y": 258
|
||||
"y": 303
|
||||
},
|
||||
{
|
||||
"x": 142,
|
||||
"y": 303
|
||||
},
|
||||
{
|
||||
"x": 142,
|
||||
"y": 348
|
||||
},
|
||||
{
|
||||
"x": 68,
|
||||
"y": 303
|
||||
"y": 348
|
||||
}
|
||||
],
|
||||
"animated": false,
|
||||
|
|
@ -208,7 +208,7 @@
|
|||
},
|
||||
{
|
||||
"x": 62,
|
||||
"y": 373
|
||||
"y": 418
|
||||
}
|
||||
],
|
||||
"animated": false,
|
||||
|
|
|
|||
|
|
@ -1,9 +1,9 @@
|
|||
<?xml version="1.0" encoding="utf-8"?><svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" d2Version="v0.6.6-HEAD" preserveAspectRatio="xMinYMin meet" viewBox="0 0 132 323"><svg id="d2-svg" class="d2-3310224674" width="132" height="323" viewBox="11 51 132 323"><rect x="11.000000" y="51.000000" width="132.000000" height="323.000000" rx="0.000000" class=" fill-N7" stroke-width="0" /><style type="text/css"><![CDATA[
|
||||
.d2-3310224674 .text {
|
||||
font-family: "d2-3310224674-font-regular";
|
||||
<?xml version="1.0" encoding="utf-8"?><svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" d2Version="v0.6.6-HEAD" preserveAspectRatio="xMinYMin meet" viewBox="0 0 132 368"><svg id="d2-svg" class="d2-3879014770" width="132" height="368" viewBox="11 51 132 368"><rect x="11.000000" y="51.000000" width="132.000000" height="368.000000" rx="0.000000" class=" fill-N7" stroke-width="0" /><style type="text/css"><![CDATA[
|
||||
.d2-3879014770 .text {
|
||||
font-family: "d2-3879014770-font-regular";
|
||||
}
|
||||
@font-face {
|
||||
font-family: d2-3310224674-font-regular;
|
||||
font-family: d2-3879014770-font-regular;
|
||||
src: url("data:application/font-woff;base64,d09GRgABAAAAAAYUAAoAAAAACrwAAguFAAAAAAAAAAAAAAAAAAAAAAAAAABPUy8yAAAA9AAAAGAAAABgXd/Vo2NtYXAAAAFUAAAAMAAAADAADQCZZ2x5ZgAAAYQAAADAAAAAwE8mSItoZWFkAAACRAAAADYAAAA2G4Ue32hoZWEAAAJ8AAAAJAAAACQKhAXEaG10eAAAAqAAAAAIAAAACAS2AKtsb2NhAAACqAAAAAYAAAAGAGAALG1heHAAAAKwAAAAIAAAACAAGgD2bmFtZQAAAtAAAAMjAAAIFAbDVU1wb3N0AAAF9AAAAB0AAAAg/9EAMgADAgkBkAAFAAACigJYAAAASwKKAlgAAAFeADIBIwAAAgsFAwMEAwICBGAAAvcAAAADAAAAAAAAAABBREJPAEAAIP//Au7/BgAAA9gBESAAAZ8AAAAAAeYClAAAACAAAwAAAAEAAwABAAAADAAEACQAAAAEAAQAAQAAAGL//wAAAGL///+fAAEAAAAAAAEAAAAFAFkAAAI1ApQAAwAJAA8AEgAVAAAzESERJSEnJyMHNzM3NyMXAzcnAREHWQHc/pABAUk0BDY2BDFC60J5f38BWH4ClP1sOoRnZ8Ved3f+jebo/jIBzugAAgBS//QB+wLIABMAIAAABSImJyMHIxEzFQc2NjMyFhUUBgYnMjY1NCYjIgYHFRYWASkiSSADB0JSAiFPKF9iO19GPE87RR9AIyA/DCEdMgLIwlgdJ4ZxU3Y+RWdaUGMiIP8cFwAAAAABAAAAAguF59dSS18PPPUAAwPoAAAAANhdoKEAAAAA3WYvNv46/tsIbwPIAAAAAwACAAAAAAAAAAEAAAPY/u8AAAiY/jr+OghvAAEAAAAAAAAAAAAAAAAAAAACAo0AWQIpAFIAAAAsAGAAAAABAAAAAgCMAAwAZgAHAAEAAAAAAAAAAAAAAAAABAADeJyclN1OG1cUhT8H221UNRcVisgNOpdtlYzdCKIErkwJilWEU4/TH6mqNHjGP2I8M/IMUKo+QK/7Fn2LXPU5+hBVr6uzvA02qhSBELDOnL33WWevtQ+wyb9sUKs/BP5q/mC4xnZzz/ADHjWfGt7guPG34fpKTIO48ZvhJl82+oY/4n39D8Mfs1P/2fBDtupHhj/heX3T8Kcbjn8MP2KH9wtcg5f8brjGFoXhB2zyk+ENHmM1a3Ue0zbc4DO2DTfZBgZMqUiZkjHGMWLKmHPmJJSEJMyZMiIhxtGlQ0qlrxmRkGP8v18jQirmRKo4ocKREpISUTKxir8qK+etThxpNbe9DhUTIk6VcUZEhiNnTE5GwpnqVFQU7NGiRclQfAsqSgJKpqQE5MwZ06LHEccMmDClxHGkSp5ZSM6Iiksine8swndmSEJGaazOyYjF04lfouwuxzh6FIpdrXy8VuEpju+U7bnliv2KQL9uhdn6uUs2ERfqZ6qupNq5lIIT7fpzO3wrXLGHu1d/1pl8uEex/leqfMq59I+lVCYmGc5t0SGUg0L3BMeB1l1CdeR7ugx4Q493DLTu0KdPhxMGdHmt3B59HF/T44RDZXSFF3tHcswJP+L4hq5ifO3E+rNQLOEXCnN3KY5z3WNGoZ575oHumuiGd1fYz1C+5o5SOUPNkY900i/TnEWMzRWFGM7Uy6U3SutfbI6Y6S5e25t9Pw0XNnvLKb4i1wx7ty44eeUWjD6kanDLM5f6CYiIyTlVxJCcGS0qrsT7LRHnpDgO1b03mpKKznWOP+dKLkmYiUGXTHXmFPobmW9C4z5c872ztyRWvmd6dn2r+5zi1Ksbjd6pe8u90LqcrCjQMlXzFTcNxTUz7yeaqVX+oXJLvW45z+iTSPVUN7j9DjwnoM0Ou+wz0TlD7VzYG9HWO9HmFfvqwRmJokZydWIVdgl4wS67vOLFWs0OhxzQY/8OHBdZPQ54fWtnXadlFWd1/hSbtvg6nl2vXt5br8/v4MsvNFE3L2Nf2vhuX1i1G/+fEDHzXNzW6p3cE4L/AAAA//8BAAD//wdbTDAAeJxiYGYAg//nGIwYsAAAAAAA//8BAAD//y8BAgMAAAA=");
|
||||
}]]></style><style type="text/css"><![CDATA[.shape {
|
||||
shape-rendering: geometricPrecision;
|
||||
|
|
@ -18,78 +18,78 @@
|
|||
opacity: 0.5;
|
||||
}
|
||||
|
||||
.d2-3310224674 .fill-N1{fill:#0A0F25;}
|
||||
.d2-3310224674 .fill-N2{fill:#676C7E;}
|
||||
.d2-3310224674 .fill-N3{fill:#9499AB;}
|
||||
.d2-3310224674 .fill-N4{fill:#CFD2DD;}
|
||||
.d2-3310224674 .fill-N5{fill:#DEE1EB;}
|
||||
.d2-3310224674 .fill-N6{fill:#EEF1F8;}
|
||||
.d2-3310224674 .fill-N7{fill:#FFFFFF;}
|
||||
.d2-3310224674 .fill-B1{fill:#0D32B2;}
|
||||
.d2-3310224674 .fill-B2{fill:#0D32B2;}
|
||||
.d2-3310224674 .fill-B3{fill:#E3E9FD;}
|
||||
.d2-3310224674 .fill-B4{fill:#E3E9FD;}
|
||||
.d2-3310224674 .fill-B5{fill:#EDF0FD;}
|
||||
.d2-3310224674 .fill-B6{fill:#F7F8FE;}
|
||||
.d2-3310224674 .fill-AA2{fill:#4A6FF3;}
|
||||
.d2-3310224674 .fill-AA4{fill:#EDF0FD;}
|
||||
.d2-3310224674 .fill-AA5{fill:#F7F8FE;}
|
||||
.d2-3310224674 .fill-AB4{fill:#EDF0FD;}
|
||||
.d2-3310224674 .fill-AB5{fill:#F7F8FE;}
|
||||
.d2-3310224674 .stroke-N1{stroke:#0A0F25;}
|
||||
.d2-3310224674 .stroke-N2{stroke:#676C7E;}
|
||||
.d2-3310224674 .stroke-N3{stroke:#9499AB;}
|
||||
.d2-3310224674 .stroke-N4{stroke:#CFD2DD;}
|
||||
.d2-3310224674 .stroke-N5{stroke:#DEE1EB;}
|
||||
.d2-3310224674 .stroke-N6{stroke:#EEF1F8;}
|
||||
.d2-3310224674 .stroke-N7{stroke:#FFFFFF;}
|
||||
.d2-3310224674 .stroke-B1{stroke:#0D32B2;}
|
||||
.d2-3310224674 .stroke-B2{stroke:#0D32B2;}
|
||||
.d2-3310224674 .stroke-B3{stroke:#E3E9FD;}
|
||||
.d2-3310224674 .stroke-B4{stroke:#E3E9FD;}
|
||||
.d2-3310224674 .stroke-B5{stroke:#EDF0FD;}
|
||||
.d2-3310224674 .stroke-B6{stroke:#F7F8FE;}
|
||||
.d2-3310224674 .stroke-AA2{stroke:#4A6FF3;}
|
||||
.d2-3310224674 .stroke-AA4{stroke:#EDF0FD;}
|
||||
.d2-3310224674 .stroke-AA5{stroke:#F7F8FE;}
|
||||
.d2-3310224674 .stroke-AB4{stroke:#EDF0FD;}
|
||||
.d2-3310224674 .stroke-AB5{stroke:#F7F8FE;}
|
||||
.d2-3310224674 .background-color-N1{background-color:#0A0F25;}
|
||||
.d2-3310224674 .background-color-N2{background-color:#676C7E;}
|
||||
.d2-3310224674 .background-color-N3{background-color:#9499AB;}
|
||||
.d2-3310224674 .background-color-N4{background-color:#CFD2DD;}
|
||||
.d2-3310224674 .background-color-N5{background-color:#DEE1EB;}
|
||||
.d2-3310224674 .background-color-N6{background-color:#EEF1F8;}
|
||||
.d2-3310224674 .background-color-N7{background-color:#FFFFFF;}
|
||||
.d2-3310224674 .background-color-B1{background-color:#0D32B2;}
|
||||
.d2-3310224674 .background-color-B2{background-color:#0D32B2;}
|
||||
.d2-3310224674 .background-color-B3{background-color:#E3E9FD;}
|
||||
.d2-3310224674 .background-color-B4{background-color:#E3E9FD;}
|
||||
.d2-3310224674 .background-color-B5{background-color:#EDF0FD;}
|
||||
.d2-3310224674 .background-color-B6{background-color:#F7F8FE;}
|
||||
.d2-3310224674 .background-color-AA2{background-color:#4A6FF3;}
|
||||
.d2-3310224674 .background-color-AA4{background-color:#EDF0FD;}
|
||||
.d2-3310224674 .background-color-AA5{background-color:#F7F8FE;}
|
||||
.d2-3310224674 .background-color-AB4{background-color:#EDF0FD;}
|
||||
.d2-3310224674 .background-color-AB5{background-color:#F7F8FE;}
|
||||
.d2-3310224674 .color-N1{color:#0A0F25;}
|
||||
.d2-3310224674 .color-N2{color:#676C7E;}
|
||||
.d2-3310224674 .color-N3{color:#9499AB;}
|
||||
.d2-3310224674 .color-N4{color:#CFD2DD;}
|
||||
.d2-3310224674 .color-N5{color:#DEE1EB;}
|
||||
.d2-3310224674 .color-N6{color:#EEF1F8;}
|
||||
.d2-3310224674 .color-N7{color:#FFFFFF;}
|
||||
.d2-3310224674 .color-B1{color:#0D32B2;}
|
||||
.d2-3310224674 .color-B2{color:#0D32B2;}
|
||||
.d2-3310224674 .color-B3{color:#E3E9FD;}
|
||||
.d2-3310224674 .color-B4{color:#E3E9FD;}
|
||||
.d2-3310224674 .color-B5{color:#EDF0FD;}
|
||||
.d2-3310224674 .color-B6{color:#F7F8FE;}
|
||||
.d2-3310224674 .color-AA2{color:#4A6FF3;}
|
||||
.d2-3310224674 .color-AA4{color:#EDF0FD;}
|
||||
.d2-3310224674 .color-AA5{color:#F7F8FE;}
|
||||
.d2-3310224674 .color-AB4{color:#EDF0FD;}
|
||||
.d2-3310224674 .color-AB5{color:#F7F8FE;}.appendix text.text{fill:#0A0F25}.md{--color-fg-default:#0A0F25;--color-fg-muted:#676C7E;--color-fg-subtle:#9499AB;--color-canvas-default:#FFFFFF;--color-canvas-subtle:#EEF1F8;--color-border-default:#0D32B2;--color-border-muted:#0D32B2;--color-neutral-muted:#EEF1F8;--color-accent-fg:#0D32B2;--color-accent-emphasis:#0D32B2;--color-attention-subtle:#676C7E;--color-danger-fg:red;}.sketch-overlay-B1{fill:url(#streaks-darker);mix-blend-mode:lighten}.sketch-overlay-B2{fill:url(#streaks-darker);mix-blend-mode:lighten}.sketch-overlay-B3{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-B4{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-B5{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-B6{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-AA2{fill:url(#streaks-dark);mix-blend-mode:overlay}.sketch-overlay-AA4{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-AA5{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-AB4{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-AB5{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-N1{fill:url(#streaks-darker);mix-blend-mode:lighten}.sketch-overlay-N2{fill:url(#streaks-dark);mix-blend-mode:overlay}.sketch-overlay-N3{fill:url(#streaks-normal);mix-blend-mode:color-burn}.sketch-overlay-N4{fill:url(#streaks-normal);mix-blend-mode:color-burn}.sketch-overlay-N5{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-N6{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-N7{fill:url(#streaks-bright);mix-blend-mode:darken}.light-code{display: block}.dark-code{display: none}]]></style><g id="b"><g class="shape" ><rect x="12.000000" y="52.000000" width="100.000000" height="66.000000" class=" stroke-B1 fill-B5" style="stroke-width:2;" /></g><text x="62.000000" y="90.500000" class="text fill-N1" style="text-anchor:middle;font-size:16px">b</text></g><g id="(b -- )[0]"><path d="M 62.000000 120.000000 L 62.000000 372.000000" fill="none" class="connection stroke-B2" style="stroke-width:2;stroke-dasharray:12.000000,11.838767;" mask="url(#d2-3310224674)" /></g><g id="b.1"><g class="shape" ><rect x="56.000000" y="178.000000" width="12.000000" height="135.000000" class=" stroke-B1 fill-B4" style="stroke-width:2;" /></g></g><g id="b.(1 -> 1)[0]"><marker id="mk-3488378134" 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 points="0.000000,0.000000 10.000000,6.000000 0.000000,12.000000" class="connection fill-B1" stroke-width="2" /> </marker><path d="M 70.000000 188.000000 L 132.000000 188.000000 S 142.000000 188.000000 142.000000 198.000000 L 142.000000 223.000000 S 142.000000 233.000000 132.000000 233.000000 L 72.000000 233.000000" fill="none" class="connection stroke-B1" style="stroke-width:2;" marker-end="url(#mk-3488378134)" mask="url(#d2-3310224674)" /></g><g id="b.(1 -> 1)[1]"><path d="M 70.000000 258.000000 L 132.000000 258.000000 S 142.000000 258.000000 142.000000 268.000000 L 142.000000 293.000000 S 142.000000 303.000000 132.000000 303.000000 L 72.000000 303.000000" fill="none" class="connection stroke-B1" style="stroke-width:2;" marker-end="url(#mk-3488378134)" mask="url(#d2-3310224674)" /></g><mask id="d2-3310224674" maskUnits="userSpaceOnUse" x="11" y="51" width="132" height="323">
|
||||
<rect x="11" y="51" width="132" height="323" fill="white"></rect>
|
||||
.d2-3879014770 .fill-N1{fill:#0A0F25;}
|
||||
.d2-3879014770 .fill-N2{fill:#676C7E;}
|
||||
.d2-3879014770 .fill-N3{fill:#9499AB;}
|
||||
.d2-3879014770 .fill-N4{fill:#CFD2DD;}
|
||||
.d2-3879014770 .fill-N5{fill:#DEE1EB;}
|
||||
.d2-3879014770 .fill-N6{fill:#EEF1F8;}
|
||||
.d2-3879014770 .fill-N7{fill:#FFFFFF;}
|
||||
.d2-3879014770 .fill-B1{fill:#0D32B2;}
|
||||
.d2-3879014770 .fill-B2{fill:#0D32B2;}
|
||||
.d2-3879014770 .fill-B3{fill:#E3E9FD;}
|
||||
.d2-3879014770 .fill-B4{fill:#E3E9FD;}
|
||||
.d2-3879014770 .fill-B5{fill:#EDF0FD;}
|
||||
.d2-3879014770 .fill-B6{fill:#F7F8FE;}
|
||||
.d2-3879014770 .fill-AA2{fill:#4A6FF3;}
|
||||
.d2-3879014770 .fill-AA4{fill:#EDF0FD;}
|
||||
.d2-3879014770 .fill-AA5{fill:#F7F8FE;}
|
||||
.d2-3879014770 .fill-AB4{fill:#EDF0FD;}
|
||||
.d2-3879014770 .fill-AB5{fill:#F7F8FE;}
|
||||
.d2-3879014770 .stroke-N1{stroke:#0A0F25;}
|
||||
.d2-3879014770 .stroke-N2{stroke:#676C7E;}
|
||||
.d2-3879014770 .stroke-N3{stroke:#9499AB;}
|
||||
.d2-3879014770 .stroke-N4{stroke:#CFD2DD;}
|
||||
.d2-3879014770 .stroke-N5{stroke:#DEE1EB;}
|
||||
.d2-3879014770 .stroke-N6{stroke:#EEF1F8;}
|
||||
.d2-3879014770 .stroke-N7{stroke:#FFFFFF;}
|
||||
.d2-3879014770 .stroke-B1{stroke:#0D32B2;}
|
||||
.d2-3879014770 .stroke-B2{stroke:#0D32B2;}
|
||||
.d2-3879014770 .stroke-B3{stroke:#E3E9FD;}
|
||||
.d2-3879014770 .stroke-B4{stroke:#E3E9FD;}
|
||||
.d2-3879014770 .stroke-B5{stroke:#EDF0FD;}
|
||||
.d2-3879014770 .stroke-B6{stroke:#F7F8FE;}
|
||||
.d2-3879014770 .stroke-AA2{stroke:#4A6FF3;}
|
||||
.d2-3879014770 .stroke-AA4{stroke:#EDF0FD;}
|
||||
.d2-3879014770 .stroke-AA5{stroke:#F7F8FE;}
|
||||
.d2-3879014770 .stroke-AB4{stroke:#EDF0FD;}
|
||||
.d2-3879014770 .stroke-AB5{stroke:#F7F8FE;}
|
||||
.d2-3879014770 .background-color-N1{background-color:#0A0F25;}
|
||||
.d2-3879014770 .background-color-N2{background-color:#676C7E;}
|
||||
.d2-3879014770 .background-color-N3{background-color:#9499AB;}
|
||||
.d2-3879014770 .background-color-N4{background-color:#CFD2DD;}
|
||||
.d2-3879014770 .background-color-N5{background-color:#DEE1EB;}
|
||||
.d2-3879014770 .background-color-N6{background-color:#EEF1F8;}
|
||||
.d2-3879014770 .background-color-N7{background-color:#FFFFFF;}
|
||||
.d2-3879014770 .background-color-B1{background-color:#0D32B2;}
|
||||
.d2-3879014770 .background-color-B2{background-color:#0D32B2;}
|
||||
.d2-3879014770 .background-color-B3{background-color:#E3E9FD;}
|
||||
.d2-3879014770 .background-color-B4{background-color:#E3E9FD;}
|
||||
.d2-3879014770 .background-color-B5{background-color:#EDF0FD;}
|
||||
.d2-3879014770 .background-color-B6{background-color:#F7F8FE;}
|
||||
.d2-3879014770 .background-color-AA2{background-color:#4A6FF3;}
|
||||
.d2-3879014770 .background-color-AA4{background-color:#EDF0FD;}
|
||||
.d2-3879014770 .background-color-AA5{background-color:#F7F8FE;}
|
||||
.d2-3879014770 .background-color-AB4{background-color:#EDF0FD;}
|
||||
.d2-3879014770 .background-color-AB5{background-color:#F7F8FE;}
|
||||
.d2-3879014770 .color-N1{color:#0A0F25;}
|
||||
.d2-3879014770 .color-N2{color:#676C7E;}
|
||||
.d2-3879014770 .color-N3{color:#9499AB;}
|
||||
.d2-3879014770 .color-N4{color:#CFD2DD;}
|
||||
.d2-3879014770 .color-N5{color:#DEE1EB;}
|
||||
.d2-3879014770 .color-N6{color:#EEF1F8;}
|
||||
.d2-3879014770 .color-N7{color:#FFFFFF;}
|
||||
.d2-3879014770 .color-B1{color:#0D32B2;}
|
||||
.d2-3879014770 .color-B2{color:#0D32B2;}
|
||||
.d2-3879014770 .color-B3{color:#E3E9FD;}
|
||||
.d2-3879014770 .color-B4{color:#E3E9FD;}
|
||||
.d2-3879014770 .color-B5{color:#EDF0FD;}
|
||||
.d2-3879014770 .color-B6{color:#F7F8FE;}
|
||||
.d2-3879014770 .color-AA2{color:#4A6FF3;}
|
||||
.d2-3879014770 .color-AA4{color:#EDF0FD;}
|
||||
.d2-3879014770 .color-AA5{color:#F7F8FE;}
|
||||
.d2-3879014770 .color-AB4{color:#EDF0FD;}
|
||||
.d2-3879014770 .color-AB5{color:#F7F8FE;}.appendix text.text{fill:#0A0F25}.md{--color-fg-default:#0A0F25;--color-fg-muted:#676C7E;--color-fg-subtle:#9499AB;--color-canvas-default:#FFFFFF;--color-canvas-subtle:#EEF1F8;--color-border-default:#0D32B2;--color-border-muted:#0D32B2;--color-neutral-muted:#EEF1F8;--color-accent-fg:#0D32B2;--color-accent-emphasis:#0D32B2;--color-attention-subtle:#676C7E;--color-danger-fg:red;}.sketch-overlay-B1{fill:url(#streaks-darker);mix-blend-mode:lighten}.sketch-overlay-B2{fill:url(#streaks-darker);mix-blend-mode:lighten}.sketch-overlay-B3{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-B4{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-B5{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-B6{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-AA2{fill:url(#streaks-dark);mix-blend-mode:overlay}.sketch-overlay-AA4{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-AA5{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-AB4{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-AB5{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-N1{fill:url(#streaks-darker);mix-blend-mode:lighten}.sketch-overlay-N2{fill:url(#streaks-dark);mix-blend-mode:overlay}.sketch-overlay-N3{fill:url(#streaks-normal);mix-blend-mode:color-burn}.sketch-overlay-N4{fill:url(#streaks-normal);mix-blend-mode:color-burn}.sketch-overlay-N5{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-N6{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-N7{fill:url(#streaks-bright);mix-blend-mode:darken}.light-code{display: block}.dark-code{display: none}]]></style><g id="b"><g class="shape" ><rect x="12.000000" y="52.000000" width="100.000000" height="66.000000" class=" stroke-B1 fill-B5" style="stroke-width:2;" /></g><text x="62.000000" y="90.500000" class="text fill-N1" style="text-anchor:middle;font-size:16px">b</text></g><g id="(b -- )[0]"><path d="M 62.000000 120.000000 L 62.000000 417.000000" fill="none" class="connection stroke-B2" style="stroke-width:2;stroke-dasharray:12.000000,11.838767;" mask="url(#d2-3879014770)" /></g><g id="b.1"><g class="shape" ><rect x="56.000000" y="178.000000" width="12.000000" height="180.000000" class=" stroke-B1 fill-B4" style="stroke-width:2;" /></g></g><g id="b.(1 -> 1)[0]"><marker id="mk-3488378134" 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 points="0.000000,0.000000 10.000000,6.000000 0.000000,12.000000" class="connection fill-B1" stroke-width="2" /> </marker><path d="M 70.000000 188.000000 L 132.000000 188.000000 S 142.000000 188.000000 142.000000 198.000000 L 142.000000 223.000000 S 142.000000 233.000000 132.000000 233.000000 L 72.000000 233.000000" fill="none" class="connection stroke-B1" style="stroke-width:2;" marker-end="url(#mk-3488378134)" mask="url(#d2-3879014770)" /></g><g id="b.(1 -> 1)[1]"><path d="M 70.000000 303.000000 L 132.000000 303.000000 S 142.000000 303.000000 142.000000 313.000000 L 142.000000 338.000000 S 142.000000 348.000000 132.000000 348.000000 L 72.000000 348.000000" fill="none" class="connection stroke-B1" style="stroke-width:2;" marker-end="url(#mk-3488378134)" mask="url(#d2-3879014770)" /></g><mask id="d2-3879014770" maskUnits="userSpaceOnUse" x="11" y="51" width="132" height="368">
|
||||
<rect x="11" y="51" width="132" height="368" fill="white"></rect>
|
||||
<rect x="58.000000" y="74.500000" width="8" height="21" fill="rgba(0,0,0,0.75)"></rect>
|
||||
</mask></svg></svg>
|
||||
|
Before Width: | Height: | Size: 9.8 KiB After Width: | Height: | Size: 9.8 KiB |
10
e2etests/testdata/stable/sequence-inter-span-self/dagre/board.exp.json
generated
vendored
|
|
@ -133,7 +133,7 @@
|
|||
"y": 293
|
||||
},
|
||||
"width": 12,
|
||||
"height": 45,
|
||||
"height": 90,
|
||||
"opacity": 1,
|
||||
"strokeDash": 0,
|
||||
"strokeWidth": 2,
|
||||
|
|
@ -277,11 +277,11 @@
|
|||
"route": [
|
||||
{
|
||||
"x": 68,
|
||||
"y": 328
|
||||
"y": 373
|
||||
},
|
||||
{
|
||||
"x": 212,
|
||||
"y": 328
|
||||
"y": 373
|
||||
}
|
||||
],
|
||||
"animated": false,
|
||||
|
|
@ -319,7 +319,7 @@
|
|||
},
|
||||
{
|
||||
"x": 62,
|
||||
"y": 398
|
||||
"y": 443
|
||||
}
|
||||
],
|
||||
"animated": false,
|
||||
|
|
@ -357,7 +357,7 @@
|
|||
},
|
||||
{
|
||||
"x": 212,
|
||||
"y": 398
|
||||
"y": 443
|
||||
}
|
||||
],
|
||||
"animated": false,
|
||||
|
|
|
|||
|
|
@ -1,16 +1,16 @@
|
|||
<?xml version="1.0" encoding="utf-8"?><svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" d2Version="v0.6.6-HEAD" preserveAspectRatio="xMinYMin meet" viewBox="0 0 252 348"><svg id="d2-svg" class="d2-168883344" width="252" height="348" viewBox="11 51 252 348"><rect x="11.000000" y="51.000000" width="252.000000" height="348.000000" rx="0.000000" class=" fill-N7" stroke-width="0" /><style type="text/css"><![CDATA[
|
||||
.d2-168883344 .text {
|
||||
font-family: "d2-168883344-font-regular";
|
||||
<?xml version="1.0" encoding="utf-8"?><svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" d2Version="v0.6.6-HEAD" preserveAspectRatio="xMinYMin meet" viewBox="0 0 252 393"><svg id="d2-svg" class="d2-3459117552" width="252" height="393" viewBox="11 51 252 393"><rect x="11.000000" y="51.000000" width="252.000000" height="393.000000" rx="0.000000" class=" fill-N7" stroke-width="0" /><style type="text/css"><![CDATA[
|
||||
.d2-3459117552 .text {
|
||||
font-family: "d2-3459117552-font-regular";
|
||||
}
|
||||
@font-face {
|
||||
font-family: d2-168883344-font-regular;
|
||||
font-family: d2-3459117552-font-regular;
|
||||
src: url("data:application/font-woff;base64,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");
|
||||
}
|
||||
.d2-168883344 .text-italic {
|
||||
font-family: "d2-168883344-font-italic";
|
||||
.d2-3459117552 .text-italic {
|
||||
font-family: "d2-3459117552-font-italic";
|
||||
}
|
||||
@font-face {
|
||||
font-family: d2-168883344-font-italic;
|
||||
font-family: d2-3459117552-font-italic;
|
||||
src: url("data:application/font-woff;base64,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");
|
||||
}]]></style><style type="text/css"><![CDATA[.shape {
|
||||
shape-rendering: geometricPrecision;
|
||||
|
|
@ -25,82 +25,82 @@
|
|||
opacity: 0.5;
|
||||
}
|
||||
|
||||
.d2-168883344 .fill-N1{fill:#0A0F25;}
|
||||
.d2-168883344 .fill-N2{fill:#676C7E;}
|
||||
.d2-168883344 .fill-N3{fill:#9499AB;}
|
||||
.d2-168883344 .fill-N4{fill:#CFD2DD;}
|
||||
.d2-168883344 .fill-N5{fill:#DEE1EB;}
|
||||
.d2-168883344 .fill-N6{fill:#EEF1F8;}
|
||||
.d2-168883344 .fill-N7{fill:#FFFFFF;}
|
||||
.d2-168883344 .fill-B1{fill:#0D32B2;}
|
||||
.d2-168883344 .fill-B2{fill:#0D32B2;}
|
||||
.d2-168883344 .fill-B3{fill:#E3E9FD;}
|
||||
.d2-168883344 .fill-B4{fill:#E3E9FD;}
|
||||
.d2-168883344 .fill-B5{fill:#EDF0FD;}
|
||||
.d2-168883344 .fill-B6{fill:#F7F8FE;}
|
||||
.d2-168883344 .fill-AA2{fill:#4A6FF3;}
|
||||
.d2-168883344 .fill-AA4{fill:#EDF0FD;}
|
||||
.d2-168883344 .fill-AA5{fill:#F7F8FE;}
|
||||
.d2-168883344 .fill-AB4{fill:#EDF0FD;}
|
||||
.d2-168883344 .fill-AB5{fill:#F7F8FE;}
|
||||
.d2-168883344 .stroke-N1{stroke:#0A0F25;}
|
||||
.d2-168883344 .stroke-N2{stroke:#676C7E;}
|
||||
.d2-168883344 .stroke-N3{stroke:#9499AB;}
|
||||
.d2-168883344 .stroke-N4{stroke:#CFD2DD;}
|
||||
.d2-168883344 .stroke-N5{stroke:#DEE1EB;}
|
||||
.d2-168883344 .stroke-N6{stroke:#EEF1F8;}
|
||||
.d2-168883344 .stroke-N7{stroke:#FFFFFF;}
|
||||
.d2-168883344 .stroke-B1{stroke:#0D32B2;}
|
||||
.d2-168883344 .stroke-B2{stroke:#0D32B2;}
|
||||
.d2-168883344 .stroke-B3{stroke:#E3E9FD;}
|
||||
.d2-168883344 .stroke-B4{stroke:#E3E9FD;}
|
||||
.d2-168883344 .stroke-B5{stroke:#EDF0FD;}
|
||||
.d2-168883344 .stroke-B6{stroke:#F7F8FE;}
|
||||
.d2-168883344 .stroke-AA2{stroke:#4A6FF3;}
|
||||
.d2-168883344 .stroke-AA4{stroke:#EDF0FD;}
|
||||
.d2-168883344 .stroke-AA5{stroke:#F7F8FE;}
|
||||
.d2-168883344 .stroke-AB4{stroke:#EDF0FD;}
|
||||
.d2-168883344 .stroke-AB5{stroke:#F7F8FE;}
|
||||
.d2-168883344 .background-color-N1{background-color:#0A0F25;}
|
||||
.d2-168883344 .background-color-N2{background-color:#676C7E;}
|
||||
.d2-168883344 .background-color-N3{background-color:#9499AB;}
|
||||
.d2-168883344 .background-color-N4{background-color:#CFD2DD;}
|
||||
.d2-168883344 .background-color-N5{background-color:#DEE1EB;}
|
||||
.d2-168883344 .background-color-N6{background-color:#EEF1F8;}
|
||||
.d2-168883344 .background-color-N7{background-color:#FFFFFF;}
|
||||
.d2-168883344 .background-color-B1{background-color:#0D32B2;}
|
||||
.d2-168883344 .background-color-B2{background-color:#0D32B2;}
|
||||
.d2-168883344 .background-color-B3{background-color:#E3E9FD;}
|
||||
.d2-168883344 .background-color-B4{background-color:#E3E9FD;}
|
||||
.d2-168883344 .background-color-B5{background-color:#EDF0FD;}
|
||||
.d2-168883344 .background-color-B6{background-color:#F7F8FE;}
|
||||
.d2-168883344 .background-color-AA2{background-color:#4A6FF3;}
|
||||
.d2-168883344 .background-color-AA4{background-color:#EDF0FD;}
|
||||
.d2-168883344 .background-color-AA5{background-color:#F7F8FE;}
|
||||
.d2-168883344 .background-color-AB4{background-color:#EDF0FD;}
|
||||
.d2-168883344 .background-color-AB5{background-color:#F7F8FE;}
|
||||
.d2-168883344 .color-N1{color:#0A0F25;}
|
||||
.d2-168883344 .color-N2{color:#676C7E;}
|
||||
.d2-168883344 .color-N3{color:#9499AB;}
|
||||
.d2-168883344 .color-N4{color:#CFD2DD;}
|
||||
.d2-168883344 .color-N5{color:#DEE1EB;}
|
||||
.d2-168883344 .color-N6{color:#EEF1F8;}
|
||||
.d2-168883344 .color-N7{color:#FFFFFF;}
|
||||
.d2-168883344 .color-B1{color:#0D32B2;}
|
||||
.d2-168883344 .color-B2{color:#0D32B2;}
|
||||
.d2-168883344 .color-B3{color:#E3E9FD;}
|
||||
.d2-168883344 .color-B4{color:#E3E9FD;}
|
||||
.d2-168883344 .color-B5{color:#EDF0FD;}
|
||||
.d2-168883344 .color-B6{color:#F7F8FE;}
|
||||
.d2-168883344 .color-AA2{color:#4A6FF3;}
|
||||
.d2-168883344 .color-AA4{color:#EDF0FD;}
|
||||
.d2-168883344 .color-AA5{color:#F7F8FE;}
|
||||
.d2-168883344 .color-AB4{color:#EDF0FD;}
|
||||
.d2-168883344 .color-AB5{color:#F7F8FE;}.appendix text.text{fill:#0A0F25}.md{--color-fg-default:#0A0F25;--color-fg-muted:#676C7E;--color-fg-subtle:#9499AB;--color-canvas-default:#FFFFFF;--color-canvas-subtle:#EEF1F8;--color-border-default:#0D32B2;--color-border-muted:#0D32B2;--color-neutral-muted:#EEF1F8;--color-accent-fg:#0D32B2;--color-accent-emphasis:#0D32B2;--color-attention-subtle:#676C7E;--color-danger-fg:red;}.sketch-overlay-B1{fill:url(#streaks-darker);mix-blend-mode:lighten}.sketch-overlay-B2{fill:url(#streaks-darker);mix-blend-mode:lighten}.sketch-overlay-B3{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-B4{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-B5{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-B6{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-AA2{fill:url(#streaks-dark);mix-blend-mode:overlay}.sketch-overlay-AA4{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-AA5{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-AB4{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-AB5{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-N1{fill:url(#streaks-darker);mix-blend-mode:lighten}.sketch-overlay-N2{fill:url(#streaks-dark);mix-blend-mode:overlay}.sketch-overlay-N3{fill:url(#streaks-normal);mix-blend-mode:color-burn}.sketch-overlay-N4{fill:url(#streaks-normal);mix-blend-mode:color-burn}.sketch-overlay-N5{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-N6{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-N7{fill:url(#streaks-bright);mix-blend-mode:darken}.light-code{display: block}.dark-code{display: none}]]></style><g id="a"><g class="shape" ><rect x="12.000000" y="52.000000" width="100.000000" height="66.000000" class=" stroke-B1 fill-B5" style="stroke-width:2;" /></g><text x="62.000000" y="90.500000" class="text fill-N1" style="text-anchor:middle;font-size:16px">A</text></g><g id="b"><g class="shape" ><rect x="162.000000" y="52.000000" width="100.000000" height="66.000000" class=" stroke-B1 fill-B5" style="stroke-width:2;" /></g><text x="212.000000" y="90.500000" class="text fill-N1" style="text-anchor:middle;font-size:16px">B</text></g><g id="(a -- )[0]"><path d="M 62.000000 120.000000 L 62.000000 397.000000" fill="none" class="connection stroke-B2" style="stroke-width:2;stroke-dasharray:12.000000,11.838767;" mask="url(#d2-168883344)" /></g><g id="(b -- )[0]"><path d="M 212.000000 120.000000 L 212.000000 397.000000" fill="none" class="connection stroke-B2" style="stroke-width:2;stroke-dasharray:12.000000,11.838767;" mask="url(#d2-168883344)" /></g><g id="a.sp1"><g class="shape" ><rect x="56.000000" y="178.000000" width="12.000000" height="90.000000" class=" stroke-B1 fill-B4" style="stroke-width:2;" /></g></g><g id="a.sp2"><g class="shape" ><rect x="56.000000" y="293.000000" width="12.000000" height="45.000000" class=" stroke-B1 fill-B4" style="stroke-width:2;" /></g></g><g id="(a.sp1 -> b)[0]"><marker id="mk-3488378134" 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 points="0.000000,0.000000 10.000000,6.000000 0.000000,12.000000" class="connection fill-B1" stroke-width="2" /> </marker><path d="M 70.000000 188.000000 L 208.000000 188.000000" fill="none" class="connection stroke-B1" style="stroke-width:2;" marker-end="url(#mk-3488378134)" mask="url(#d2-168883344)" /><text x="140.500000" y="194.000000" class="text-italic fill-N2" style="text-anchor:middle;font-size:16px">foo</text></g><g id="a.(sp1 -> sp2)[0]"><path d="M 70.000000 258.000000 L 132.000000 258.000000 S 142.000000 258.000000 142.000000 268.000000 L 142.000000 293.000000 S 142.000000 303.000000 132.000000 303.000000 L 72.000000 303.000000" fill="none" class="connection stroke-B1" style="stroke-width:2;" marker-end="url(#mk-3488378134)" mask="url(#d2-168883344)" /><text x="142.000000" y="286.000000" class="text-italic fill-N2" style="text-anchor:middle;font-size:16px">redirect</text></g><g id="(a.sp2 -> b)[0]"><path d="M 70.000000 328.000000 L 208.000000 328.000000" fill="none" class="connection stroke-B1" style="stroke-width:2;" marker-end="url(#mk-3488378134)" mask="url(#d2-168883344)" /><text x="140.500000" y="334.000000" class="text-italic fill-N2" style="text-anchor:middle;font-size:16px">bar</text></g><mask id="d2-168883344" maskUnits="userSpaceOnUse" x="11" y="51" width="252" height="348">
|
||||
<rect x="11" y="51" width="252" height="348" fill="white"></rect>
|
||||
.d2-3459117552 .fill-N1{fill:#0A0F25;}
|
||||
.d2-3459117552 .fill-N2{fill:#676C7E;}
|
||||
.d2-3459117552 .fill-N3{fill:#9499AB;}
|
||||
.d2-3459117552 .fill-N4{fill:#CFD2DD;}
|
||||
.d2-3459117552 .fill-N5{fill:#DEE1EB;}
|
||||
.d2-3459117552 .fill-N6{fill:#EEF1F8;}
|
||||
.d2-3459117552 .fill-N7{fill:#FFFFFF;}
|
||||
.d2-3459117552 .fill-B1{fill:#0D32B2;}
|
||||
.d2-3459117552 .fill-B2{fill:#0D32B2;}
|
||||
.d2-3459117552 .fill-B3{fill:#E3E9FD;}
|
||||
.d2-3459117552 .fill-B4{fill:#E3E9FD;}
|
||||
.d2-3459117552 .fill-B5{fill:#EDF0FD;}
|
||||
.d2-3459117552 .fill-B6{fill:#F7F8FE;}
|
||||
.d2-3459117552 .fill-AA2{fill:#4A6FF3;}
|
||||
.d2-3459117552 .fill-AA4{fill:#EDF0FD;}
|
||||
.d2-3459117552 .fill-AA5{fill:#F7F8FE;}
|
||||
.d2-3459117552 .fill-AB4{fill:#EDF0FD;}
|
||||
.d2-3459117552 .fill-AB5{fill:#F7F8FE;}
|
||||
.d2-3459117552 .stroke-N1{stroke:#0A0F25;}
|
||||
.d2-3459117552 .stroke-N2{stroke:#676C7E;}
|
||||
.d2-3459117552 .stroke-N3{stroke:#9499AB;}
|
||||
.d2-3459117552 .stroke-N4{stroke:#CFD2DD;}
|
||||
.d2-3459117552 .stroke-N5{stroke:#DEE1EB;}
|
||||
.d2-3459117552 .stroke-N6{stroke:#EEF1F8;}
|
||||
.d2-3459117552 .stroke-N7{stroke:#FFFFFF;}
|
||||
.d2-3459117552 .stroke-B1{stroke:#0D32B2;}
|
||||
.d2-3459117552 .stroke-B2{stroke:#0D32B2;}
|
||||
.d2-3459117552 .stroke-B3{stroke:#E3E9FD;}
|
||||
.d2-3459117552 .stroke-B4{stroke:#E3E9FD;}
|
||||
.d2-3459117552 .stroke-B5{stroke:#EDF0FD;}
|
||||
.d2-3459117552 .stroke-B6{stroke:#F7F8FE;}
|
||||
.d2-3459117552 .stroke-AA2{stroke:#4A6FF3;}
|
||||
.d2-3459117552 .stroke-AA4{stroke:#EDF0FD;}
|
||||
.d2-3459117552 .stroke-AA5{stroke:#F7F8FE;}
|
||||
.d2-3459117552 .stroke-AB4{stroke:#EDF0FD;}
|
||||
.d2-3459117552 .stroke-AB5{stroke:#F7F8FE;}
|
||||
.d2-3459117552 .background-color-N1{background-color:#0A0F25;}
|
||||
.d2-3459117552 .background-color-N2{background-color:#676C7E;}
|
||||
.d2-3459117552 .background-color-N3{background-color:#9499AB;}
|
||||
.d2-3459117552 .background-color-N4{background-color:#CFD2DD;}
|
||||
.d2-3459117552 .background-color-N5{background-color:#DEE1EB;}
|
||||
.d2-3459117552 .background-color-N6{background-color:#EEF1F8;}
|
||||
.d2-3459117552 .background-color-N7{background-color:#FFFFFF;}
|
||||
.d2-3459117552 .background-color-B1{background-color:#0D32B2;}
|
||||
.d2-3459117552 .background-color-B2{background-color:#0D32B2;}
|
||||
.d2-3459117552 .background-color-B3{background-color:#E3E9FD;}
|
||||
.d2-3459117552 .background-color-B4{background-color:#E3E9FD;}
|
||||
.d2-3459117552 .background-color-B5{background-color:#EDF0FD;}
|
||||
.d2-3459117552 .background-color-B6{background-color:#F7F8FE;}
|
||||
.d2-3459117552 .background-color-AA2{background-color:#4A6FF3;}
|
||||
.d2-3459117552 .background-color-AA4{background-color:#EDF0FD;}
|
||||
.d2-3459117552 .background-color-AA5{background-color:#F7F8FE;}
|
||||
.d2-3459117552 .background-color-AB4{background-color:#EDF0FD;}
|
||||
.d2-3459117552 .background-color-AB5{background-color:#F7F8FE;}
|
||||
.d2-3459117552 .color-N1{color:#0A0F25;}
|
||||
.d2-3459117552 .color-N2{color:#676C7E;}
|
||||
.d2-3459117552 .color-N3{color:#9499AB;}
|
||||
.d2-3459117552 .color-N4{color:#CFD2DD;}
|
||||
.d2-3459117552 .color-N5{color:#DEE1EB;}
|
||||
.d2-3459117552 .color-N6{color:#EEF1F8;}
|
||||
.d2-3459117552 .color-N7{color:#FFFFFF;}
|
||||
.d2-3459117552 .color-B1{color:#0D32B2;}
|
||||
.d2-3459117552 .color-B2{color:#0D32B2;}
|
||||
.d2-3459117552 .color-B3{color:#E3E9FD;}
|
||||
.d2-3459117552 .color-B4{color:#E3E9FD;}
|
||||
.d2-3459117552 .color-B5{color:#EDF0FD;}
|
||||
.d2-3459117552 .color-B6{color:#F7F8FE;}
|
||||
.d2-3459117552 .color-AA2{color:#4A6FF3;}
|
||||
.d2-3459117552 .color-AA4{color:#EDF0FD;}
|
||||
.d2-3459117552 .color-AA5{color:#F7F8FE;}
|
||||
.d2-3459117552 .color-AB4{color:#EDF0FD;}
|
||||
.d2-3459117552 .color-AB5{color:#F7F8FE;}.appendix text.text{fill:#0A0F25}.md{--color-fg-default:#0A0F25;--color-fg-muted:#676C7E;--color-fg-subtle:#9499AB;--color-canvas-default:#FFFFFF;--color-canvas-subtle:#EEF1F8;--color-border-default:#0D32B2;--color-border-muted:#0D32B2;--color-neutral-muted:#EEF1F8;--color-accent-fg:#0D32B2;--color-accent-emphasis:#0D32B2;--color-attention-subtle:#676C7E;--color-danger-fg:red;}.sketch-overlay-B1{fill:url(#streaks-darker);mix-blend-mode:lighten}.sketch-overlay-B2{fill:url(#streaks-darker);mix-blend-mode:lighten}.sketch-overlay-B3{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-B4{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-B5{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-B6{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-AA2{fill:url(#streaks-dark);mix-blend-mode:overlay}.sketch-overlay-AA4{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-AA5{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-AB4{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-AB5{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-N1{fill:url(#streaks-darker);mix-blend-mode:lighten}.sketch-overlay-N2{fill:url(#streaks-dark);mix-blend-mode:overlay}.sketch-overlay-N3{fill:url(#streaks-normal);mix-blend-mode:color-burn}.sketch-overlay-N4{fill:url(#streaks-normal);mix-blend-mode:color-burn}.sketch-overlay-N5{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-N6{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-N7{fill:url(#streaks-bright);mix-blend-mode:darken}.light-code{display: block}.dark-code{display: none}]]></style><g id="a"><g class="shape" ><rect x="12.000000" y="52.000000" width="100.000000" height="66.000000" class=" stroke-B1 fill-B5" style="stroke-width:2;" /></g><text x="62.000000" y="90.500000" class="text fill-N1" style="text-anchor:middle;font-size:16px">A</text></g><g id="b"><g class="shape" ><rect x="162.000000" y="52.000000" width="100.000000" height="66.000000" class=" stroke-B1 fill-B5" style="stroke-width:2;" /></g><text x="212.000000" y="90.500000" class="text fill-N1" style="text-anchor:middle;font-size:16px">B</text></g><g id="(a -- )[0]"><path d="M 62.000000 120.000000 L 62.000000 442.000000" fill="none" class="connection stroke-B2" style="stroke-width:2;stroke-dasharray:12.000000,11.838767;" mask="url(#d2-3459117552)" /></g><g id="(b -- )[0]"><path d="M 212.000000 120.000000 L 212.000000 442.000000" fill="none" class="connection stroke-B2" style="stroke-width:2;stroke-dasharray:12.000000,11.838767;" mask="url(#d2-3459117552)" /></g><g id="a.sp1"><g class="shape" ><rect x="56.000000" y="178.000000" width="12.000000" height="90.000000" class=" stroke-B1 fill-B4" style="stroke-width:2;" /></g></g><g id="a.sp2"><g class="shape" ><rect x="56.000000" y="293.000000" width="12.000000" height="90.000000" class=" stroke-B1 fill-B4" style="stroke-width:2;" /></g></g><g id="(a.sp1 -> b)[0]"><marker id="mk-3488378134" 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 points="0.000000,0.000000 10.000000,6.000000 0.000000,12.000000" class="connection fill-B1" stroke-width="2" /> </marker><path d="M 70.000000 188.000000 L 208.000000 188.000000" fill="none" class="connection stroke-B1" style="stroke-width:2;" marker-end="url(#mk-3488378134)" mask="url(#d2-3459117552)" /><text x="140.500000" y="194.000000" class="text-italic fill-N2" style="text-anchor:middle;font-size:16px">foo</text></g><g id="a.(sp1 -> sp2)[0]"><path d="M 70.000000 258.000000 L 132.000000 258.000000 S 142.000000 258.000000 142.000000 268.000000 L 142.000000 293.000000 S 142.000000 303.000000 132.000000 303.000000 L 72.000000 303.000000" fill="none" class="connection stroke-B1" style="stroke-width:2;" marker-end="url(#mk-3488378134)" mask="url(#d2-3459117552)" /><text x="142.000000" y="286.000000" class="text-italic fill-N2" style="text-anchor:middle;font-size:16px">redirect</text></g><g id="(a.sp2 -> b)[0]"><path d="M 70.000000 373.000000 L 208.000000 373.000000" fill="none" class="connection stroke-B1" style="stroke-width:2;" marker-end="url(#mk-3488378134)" mask="url(#d2-3459117552)" /><text x="140.500000" y="379.000000" class="text-italic fill-N2" style="text-anchor:middle;font-size:16px">bar</text></g><mask id="d2-3459117552" maskUnits="userSpaceOnUse" x="11" y="51" width="252" height="393">
|
||||
<rect x="11" y="51" width="252" height="393" fill="white"></rect>
|
||||
<rect x="57.500000" y="74.500000" width="9" height="21" fill="rgba(0,0,0,0.75)"></rect>
|
||||
<rect x="208.000000" y="74.500000" width="8" height="21" fill="rgba(0,0,0,0.75)"></rect>
|
||||
<rect x="130.000000" y="178.000000" width="21" height="21" fill="black"></rect>
|
||||
<rect x="116.000000" y="270.000000" width="52" height="21" fill="black"></rect>
|
||||
<rect x="128.000000" y="318.000000" width="25" height="21" fill="black"></rect>
|
||||
<rect x="128.000000" y="363.000000" width="25" height="21" fill="black"></rect>
|
||||
</mask></svg></svg>
|
||||
|
Before Width: | Height: | Size: 16 KiB After Width: | Height: | Size: 16 KiB |
10
e2etests/testdata/stable/sequence-inter-span-self/elk/board.exp.json
generated
vendored
|
|
@ -133,7 +133,7 @@
|
|||
"y": 293
|
||||
},
|
||||
"width": 12,
|
||||
"height": 45,
|
||||
"height": 90,
|
||||
"opacity": 1,
|
||||
"strokeDash": 0,
|
||||
"strokeWidth": 2,
|
||||
|
|
@ -277,11 +277,11 @@
|
|||
"route": [
|
||||
{
|
||||
"x": 68,
|
||||
"y": 328
|
||||
"y": 373
|
||||
},
|
||||
{
|
||||
"x": 212,
|
||||
"y": 328
|
||||
"y": 373
|
||||
}
|
||||
],
|
||||
"animated": false,
|
||||
|
|
@ -319,7 +319,7 @@
|
|||
},
|
||||
{
|
||||
"x": 62,
|
||||
"y": 398
|
||||
"y": 443
|
||||
}
|
||||
],
|
||||
"animated": false,
|
||||
|
|
@ -357,7 +357,7 @@
|
|||
},
|
||||
{
|
||||
"x": 212,
|
||||
"y": 398
|
||||
"y": 443
|
||||
}
|
||||
],
|
||||
"animated": false,
|
||||
|
|
|
|||
|
|
@ -1,16 +1,16 @@
|
|||
<?xml version="1.0" encoding="utf-8"?><svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" d2Version="v0.6.6-HEAD" preserveAspectRatio="xMinYMin meet" viewBox="0 0 252 348"><svg id="d2-svg" class="d2-168883344" width="252" height="348" viewBox="11 51 252 348"><rect x="11.000000" y="51.000000" width="252.000000" height="348.000000" rx="0.000000" class=" fill-N7" stroke-width="0" /><style type="text/css"><![CDATA[
|
||||
.d2-168883344 .text {
|
||||
font-family: "d2-168883344-font-regular";
|
||||
<?xml version="1.0" encoding="utf-8"?><svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" d2Version="v0.6.6-HEAD" preserveAspectRatio="xMinYMin meet" viewBox="0 0 252 393"><svg id="d2-svg" class="d2-3459117552" width="252" height="393" viewBox="11 51 252 393"><rect x="11.000000" y="51.000000" width="252.000000" height="393.000000" rx="0.000000" class=" fill-N7" stroke-width="0" /><style type="text/css"><![CDATA[
|
||||
.d2-3459117552 .text {
|
||||
font-family: "d2-3459117552-font-regular";
|
||||
}
|
||||
@font-face {
|
||||
font-family: d2-168883344-font-regular;
|
||||
font-family: d2-3459117552-font-regular;
|
||||
src: url("data:application/font-woff;base64,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");
|
||||
}
|
||||
.d2-168883344 .text-italic {
|
||||
font-family: "d2-168883344-font-italic";
|
||||
.d2-3459117552 .text-italic {
|
||||
font-family: "d2-3459117552-font-italic";
|
||||
}
|
||||
@font-face {
|
||||
font-family: d2-168883344-font-italic;
|
||||
font-family: d2-3459117552-font-italic;
|
||||
src: url("data:application/font-woff;base64,d09GRgABAAAAAAmgAAoAAAAAD4AAARhRAAAAAAAAAAAAAAAAAAAAAAAAAABPUy8yAAAA9AAAAGAAAABgW1SVeGNtYXAAAAFUAAAAXAAAAG4BxQG2Z2x5ZgAAAbAAAAPPAAAE2ESd5ipoZWFkAAAFgAAAADYAAAA2G7Ur2mhoZWEAAAW4AAAAJAAAACQLeAizaG10eAAABdwAAAA8AAAAPBgoAftsb2NhAAAGGAAAACAAAAAgChQLhG1heHAAAAY4AAAAIAAAACAAJwD2bmFtZQAABlgAAAMmAAAIMgntVzNwb3N0AAAJgAAAACAAAAAg/8YAMgADAeEBkAAFAAACigJY//EASwKKAlgARAFeADIBIwAAAgsFAwMEAwkCBCAAAHcAAAADAAAAAAAAAABBREJPAAEAIP//Au7/BgAAA9gBESAAAZMAAAAAAeYClAAAACAAA3icTMsxDgFBAEbhb3bXGEzciZtQSFQScRiiESdxs1+isa97xYdiVNBNjthqBtXeydnF1S3BzuH/+eSdV5555P7T84rBaLJQLTUraxudLwAAAP//AQAA//9gVhNveJx8lE9QG1Ucx3/vbdgFEv4km+yWhSRkX7ILYQN0H9kl2CRAAimQQGMNMtCEUlu1lelkrOPYsU61znS86HDoRU8edTw4gycv9aAHZpRbdXQ8quiAB4fhoM6wcXbBgj14eftu39/n+/vsgyaIAuCb+AEw0AId4IMAAOUjDENNk4gMVVXCcabK81z0Htq694Ert/xL34d/aWFX4a2P536//Al+cLiO3qzevWutvHPt2rN7e1YcfbcHAIAbXwOgb/EGtIAXgOeoqigqYVmEKE9Uwv009mWrq9Xlkqj1Dbq6XCz7fruObtfrIzdGUy9YZbxxWN/eBmCAAOBevAFekOw75akuBPwsy3GC8yUM1Y3kiEJOLuTtT1fXB3JRRKcLd+bHarXlqdmVl16u3SzNvII3ZgtaXmt2eSZGZ6oaerVgJvTD3aminnbmBrVxgP5E++C300RZSY5kMNUFkZqUISZhWVU3TFNRiNyOA37hs/GiNlujatrr4jNr2WYXWfIpC1EtoPdEc8nwWc9KZfr2JdoXSVvS+djQ+ODQD4ocn6nq2eO8cOMA/YG3IGBvQ5QVlXCEpxxHDcMhbceqnsE2l+ww76ppL+PPvldSBRx9JuHEJ6O5ZGi4Xy6TQT/19EXSeOvh5eDA8qIdPR6fqdJMOh77VZEBQaxxgDbRPvT8h46zgVg24Beobpgiy36/cFUrrSW1c0KCV4LDi0ZqrNcQZKnkeb6av1UZkruGxUC+npuclry6P/a4O6yeYjnp7v/LG/MxnUpp47i9+diT7am9qw8PR5+sDzssX6B9kCB2Os/2gouwwr8sDDVsMWzCnxevJ+YuDZsTIU+T9VVLby4eTImhYPn9BmZ8/SRZ89xYm6o/rQ1e0Htoe/ZCrMtLA2EUc59p6zkbrgCCAQD0Ln4Eou0iyWJnTcf9cRzlCDNQybonOjvm01Lc193a7Y30N3uveJ6roI9STeXZi21uk2vVBy5mrCVoNCAMAH/jTaxAGwCw0H7+xMMf0T50QPA025EQDs/xwh4t1LTZmr6wqs3V4okyNXT78Ly4MnWrMnh0jk/W85OFXD0/OQ0AyM5Ed9A+dDr/05FqIucQMOG1rNsVLCa6At2dUrQYTqOdqpZuyTdnn7K2AcG5xgFawuuP/TFMuwXqkJ/y5/PxERdKFdzF6ET36543UkyP3C65vZ1DnmyiQ2pDvlTT/fsZa9fnC4Vam0yu43gu2EY7wDhzMeG10hW0Y0nOzAU8B5t4E9wAvJN79A68xoeI6A8SPCcKXZEzQlfvPwAAAP//AQAA///PxP40AAABAAAAARhRu6Izl18PPPUAAQPoAAAAANhdoMwAAAAA3WYvN/69/t0IHQPJAAIAAwACAAAAAAAAAAEAAAPY/u8AAAhA/r39vAgdA+gAwv/RAAAAAAAAAAAAAAAPAnQAJAH+/8sCRwAjAhkAJwIYAB8BswAlAhcAJwHhACUBGgArAO0AHwIDACcBVgAfAUUAPADtAB8AAABHAAAALgBSAIoAwgD6ASgBYAGaAcIBzgH8AhoCSAJWAmwAAQAAAA8AjAAMAGYABwABAAAAAAAAAAAAAAAAAAQAA3icnJTbThtXFIY/B9tterqoUERu0L5MpWRMoxAl4cqUoIyKcOpxepCqSoM9PojxzMgzmJIn6HXfom+Rqz5Gn6LqdbV/L4MdRUEgBPx79jr8a61/bWCT/9igVr8L/N2cG66x3fzZ8B2+aB4Z3mC/+ZnhOg8b/xhuMGi8NdzkQaNr+BPe1f80/ClP6r8ZvstW/dDw5zyubxr+csPxr+GveMK7Ba7BM/4wXGOLwvAdNvnV8Ab3sJi1OvfYMdzga7YNN9kGekyoSJmQMcIxZMKIM2YklEQkzJgwJGGAI6RNSqWvGbGQY/TBrzERFTNiRRxT4UiJSIkpGVvEt/LKea2MQ51mdtemYkzMiTxOiclw5IzIyUg4VZyKioIXtGhR0hffgoqSgJIJKQE5M0a06HDIET3GTChxHCqSZxaRM6TinFj5nVn4zvRJyCiN1RkZA/F04pfIO+QIR4dCtquRj9YiPMTxo7w9t1y23xLo160wW8+7ZBMzVz9TdSXVzbkmONatz9vmB+GKF7hb9WedyfU9Guh/pcgnnGn+A00qE5MM57ZoE0lBkbuPY1/nkEgd+YmQHq/o8Iaezm26dGlzTI+Ql/Lt0MXxHR2OOZBHKLy4O5RijvkFx/eEsvGxE+vPYmIJv1OYuktxnKmOKYV67pkHqjVRhTefsN+hfE0dpXz62iNv6TS/THsWMzJVFGI4VS+X2iitfwNTxFS1+Nle3fttmNvuLbf4glw77NW64OQnt2B03VSD9zRzrp+AmAE5J7LokzOlRcWFeL8m5owUx4G690pbUtG+9PF5LqSShKkYhGSKM6PQ39h0Exn3/prunb0lA/l7pqeXVd0mi1Ovrmb0Rt1b3kXW5WRlAi2bar6ipr64Zqb9RDu1yj+Sb6nXLecRoeIudvtDr8AOz9llj7Gy9HUzv7zzr4S32FMHTklkNZSmfQ2PCdgl4Cm77PKcp+/1csnGGR+3xmc1f5sD9umwd201C9sO+7xci/bxzH+J7Y7qcTy6PD279TQf3EC132jfrt7NribnpzG3aFfbcUzM1HNxW6s1ufsE/wMAAP//AQAA//9yoVFAAAAAAwAA//UAAP/OADIAAAAAAAAAAAAAAAAAAAAAAAAAAA==");
|
||||
}]]></style><style type="text/css"><![CDATA[.shape {
|
||||
shape-rendering: geometricPrecision;
|
||||
|
|
@ -25,82 +25,82 @@
|
|||
opacity: 0.5;
|
||||
}
|
||||
|
||||
.d2-168883344 .fill-N1{fill:#0A0F25;}
|
||||
.d2-168883344 .fill-N2{fill:#676C7E;}
|
||||
.d2-168883344 .fill-N3{fill:#9499AB;}
|
||||
.d2-168883344 .fill-N4{fill:#CFD2DD;}
|
||||
.d2-168883344 .fill-N5{fill:#DEE1EB;}
|
||||
.d2-168883344 .fill-N6{fill:#EEF1F8;}
|
||||
.d2-168883344 .fill-N7{fill:#FFFFFF;}
|
||||
.d2-168883344 .fill-B1{fill:#0D32B2;}
|
||||
.d2-168883344 .fill-B2{fill:#0D32B2;}
|
||||
.d2-168883344 .fill-B3{fill:#E3E9FD;}
|
||||
.d2-168883344 .fill-B4{fill:#E3E9FD;}
|
||||
.d2-168883344 .fill-B5{fill:#EDF0FD;}
|
||||
.d2-168883344 .fill-B6{fill:#F7F8FE;}
|
||||
.d2-168883344 .fill-AA2{fill:#4A6FF3;}
|
||||
.d2-168883344 .fill-AA4{fill:#EDF0FD;}
|
||||
.d2-168883344 .fill-AA5{fill:#F7F8FE;}
|
||||
.d2-168883344 .fill-AB4{fill:#EDF0FD;}
|
||||
.d2-168883344 .fill-AB5{fill:#F7F8FE;}
|
||||
.d2-168883344 .stroke-N1{stroke:#0A0F25;}
|
||||
.d2-168883344 .stroke-N2{stroke:#676C7E;}
|
||||
.d2-168883344 .stroke-N3{stroke:#9499AB;}
|
||||
.d2-168883344 .stroke-N4{stroke:#CFD2DD;}
|
||||
.d2-168883344 .stroke-N5{stroke:#DEE1EB;}
|
||||
.d2-168883344 .stroke-N6{stroke:#EEF1F8;}
|
||||
.d2-168883344 .stroke-N7{stroke:#FFFFFF;}
|
||||
.d2-168883344 .stroke-B1{stroke:#0D32B2;}
|
||||
.d2-168883344 .stroke-B2{stroke:#0D32B2;}
|
||||
.d2-168883344 .stroke-B3{stroke:#E3E9FD;}
|
||||
.d2-168883344 .stroke-B4{stroke:#E3E9FD;}
|
||||
.d2-168883344 .stroke-B5{stroke:#EDF0FD;}
|
||||
.d2-168883344 .stroke-B6{stroke:#F7F8FE;}
|
||||
.d2-168883344 .stroke-AA2{stroke:#4A6FF3;}
|
||||
.d2-168883344 .stroke-AA4{stroke:#EDF0FD;}
|
||||
.d2-168883344 .stroke-AA5{stroke:#F7F8FE;}
|
||||
.d2-168883344 .stroke-AB4{stroke:#EDF0FD;}
|
||||
.d2-168883344 .stroke-AB5{stroke:#F7F8FE;}
|
||||
.d2-168883344 .background-color-N1{background-color:#0A0F25;}
|
||||
.d2-168883344 .background-color-N2{background-color:#676C7E;}
|
||||
.d2-168883344 .background-color-N3{background-color:#9499AB;}
|
||||
.d2-168883344 .background-color-N4{background-color:#CFD2DD;}
|
||||
.d2-168883344 .background-color-N5{background-color:#DEE1EB;}
|
||||
.d2-168883344 .background-color-N6{background-color:#EEF1F8;}
|
||||
.d2-168883344 .background-color-N7{background-color:#FFFFFF;}
|
||||
.d2-168883344 .background-color-B1{background-color:#0D32B2;}
|
||||
.d2-168883344 .background-color-B2{background-color:#0D32B2;}
|
||||
.d2-168883344 .background-color-B3{background-color:#E3E9FD;}
|
||||
.d2-168883344 .background-color-B4{background-color:#E3E9FD;}
|
||||
.d2-168883344 .background-color-B5{background-color:#EDF0FD;}
|
||||
.d2-168883344 .background-color-B6{background-color:#F7F8FE;}
|
||||
.d2-168883344 .background-color-AA2{background-color:#4A6FF3;}
|
||||
.d2-168883344 .background-color-AA4{background-color:#EDF0FD;}
|
||||
.d2-168883344 .background-color-AA5{background-color:#F7F8FE;}
|
||||
.d2-168883344 .background-color-AB4{background-color:#EDF0FD;}
|
||||
.d2-168883344 .background-color-AB5{background-color:#F7F8FE;}
|
||||
.d2-168883344 .color-N1{color:#0A0F25;}
|
||||
.d2-168883344 .color-N2{color:#676C7E;}
|
||||
.d2-168883344 .color-N3{color:#9499AB;}
|
||||
.d2-168883344 .color-N4{color:#CFD2DD;}
|
||||
.d2-168883344 .color-N5{color:#DEE1EB;}
|
||||
.d2-168883344 .color-N6{color:#EEF1F8;}
|
||||
.d2-168883344 .color-N7{color:#FFFFFF;}
|
||||
.d2-168883344 .color-B1{color:#0D32B2;}
|
||||
.d2-168883344 .color-B2{color:#0D32B2;}
|
||||
.d2-168883344 .color-B3{color:#E3E9FD;}
|
||||
.d2-168883344 .color-B4{color:#E3E9FD;}
|
||||
.d2-168883344 .color-B5{color:#EDF0FD;}
|
||||
.d2-168883344 .color-B6{color:#F7F8FE;}
|
||||
.d2-168883344 .color-AA2{color:#4A6FF3;}
|
||||
.d2-168883344 .color-AA4{color:#EDF0FD;}
|
||||
.d2-168883344 .color-AA5{color:#F7F8FE;}
|
||||
.d2-168883344 .color-AB4{color:#EDF0FD;}
|
||||
.d2-168883344 .color-AB5{color:#F7F8FE;}.appendix text.text{fill:#0A0F25}.md{--color-fg-default:#0A0F25;--color-fg-muted:#676C7E;--color-fg-subtle:#9499AB;--color-canvas-default:#FFFFFF;--color-canvas-subtle:#EEF1F8;--color-border-default:#0D32B2;--color-border-muted:#0D32B2;--color-neutral-muted:#EEF1F8;--color-accent-fg:#0D32B2;--color-accent-emphasis:#0D32B2;--color-attention-subtle:#676C7E;--color-danger-fg:red;}.sketch-overlay-B1{fill:url(#streaks-darker);mix-blend-mode:lighten}.sketch-overlay-B2{fill:url(#streaks-darker);mix-blend-mode:lighten}.sketch-overlay-B3{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-B4{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-B5{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-B6{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-AA2{fill:url(#streaks-dark);mix-blend-mode:overlay}.sketch-overlay-AA4{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-AA5{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-AB4{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-AB5{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-N1{fill:url(#streaks-darker);mix-blend-mode:lighten}.sketch-overlay-N2{fill:url(#streaks-dark);mix-blend-mode:overlay}.sketch-overlay-N3{fill:url(#streaks-normal);mix-blend-mode:color-burn}.sketch-overlay-N4{fill:url(#streaks-normal);mix-blend-mode:color-burn}.sketch-overlay-N5{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-N6{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-N7{fill:url(#streaks-bright);mix-blend-mode:darken}.light-code{display: block}.dark-code{display: none}]]></style><g id="a"><g class="shape" ><rect x="12.000000" y="52.000000" width="100.000000" height="66.000000" class=" stroke-B1 fill-B5" style="stroke-width:2;" /></g><text x="62.000000" y="90.500000" class="text fill-N1" style="text-anchor:middle;font-size:16px">A</text></g><g id="b"><g class="shape" ><rect x="162.000000" y="52.000000" width="100.000000" height="66.000000" class=" stroke-B1 fill-B5" style="stroke-width:2;" /></g><text x="212.000000" y="90.500000" class="text fill-N1" style="text-anchor:middle;font-size:16px">B</text></g><g id="(a -- )[0]"><path d="M 62.000000 120.000000 L 62.000000 397.000000" fill="none" class="connection stroke-B2" style="stroke-width:2;stroke-dasharray:12.000000,11.838767;" mask="url(#d2-168883344)" /></g><g id="(b -- )[0]"><path d="M 212.000000 120.000000 L 212.000000 397.000000" fill="none" class="connection stroke-B2" style="stroke-width:2;stroke-dasharray:12.000000,11.838767;" mask="url(#d2-168883344)" /></g><g id="a.sp1"><g class="shape" ><rect x="56.000000" y="178.000000" width="12.000000" height="90.000000" class=" stroke-B1 fill-B4" style="stroke-width:2;" /></g></g><g id="a.sp2"><g class="shape" ><rect x="56.000000" y="293.000000" width="12.000000" height="45.000000" class=" stroke-B1 fill-B4" style="stroke-width:2;" /></g></g><g id="(a.sp1 -> b)[0]"><marker id="mk-3488378134" 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 points="0.000000,0.000000 10.000000,6.000000 0.000000,12.000000" class="connection fill-B1" stroke-width="2" /> </marker><path d="M 70.000000 188.000000 L 208.000000 188.000000" fill="none" class="connection stroke-B1" style="stroke-width:2;" marker-end="url(#mk-3488378134)" mask="url(#d2-168883344)" /><text x="140.500000" y="194.000000" class="text-italic fill-N2" style="text-anchor:middle;font-size:16px">foo</text></g><g id="a.(sp1 -> sp2)[0]"><path d="M 70.000000 258.000000 L 132.000000 258.000000 S 142.000000 258.000000 142.000000 268.000000 L 142.000000 293.000000 S 142.000000 303.000000 132.000000 303.000000 L 72.000000 303.000000" fill="none" class="connection stroke-B1" style="stroke-width:2;" marker-end="url(#mk-3488378134)" mask="url(#d2-168883344)" /><text x="142.000000" y="286.000000" class="text-italic fill-N2" style="text-anchor:middle;font-size:16px">redirect</text></g><g id="(a.sp2 -> b)[0]"><path d="M 70.000000 328.000000 L 208.000000 328.000000" fill="none" class="connection stroke-B1" style="stroke-width:2;" marker-end="url(#mk-3488378134)" mask="url(#d2-168883344)" /><text x="140.500000" y="334.000000" class="text-italic fill-N2" style="text-anchor:middle;font-size:16px">bar</text></g><mask id="d2-168883344" maskUnits="userSpaceOnUse" x="11" y="51" width="252" height="348">
|
||||
<rect x="11" y="51" width="252" height="348" fill="white"></rect>
|
||||
.d2-3459117552 .fill-N1{fill:#0A0F25;}
|
||||
.d2-3459117552 .fill-N2{fill:#676C7E;}
|
||||
.d2-3459117552 .fill-N3{fill:#9499AB;}
|
||||
.d2-3459117552 .fill-N4{fill:#CFD2DD;}
|
||||
.d2-3459117552 .fill-N5{fill:#DEE1EB;}
|
||||
.d2-3459117552 .fill-N6{fill:#EEF1F8;}
|
||||
.d2-3459117552 .fill-N7{fill:#FFFFFF;}
|
||||
.d2-3459117552 .fill-B1{fill:#0D32B2;}
|
||||
.d2-3459117552 .fill-B2{fill:#0D32B2;}
|
||||
.d2-3459117552 .fill-B3{fill:#E3E9FD;}
|
||||
.d2-3459117552 .fill-B4{fill:#E3E9FD;}
|
||||
.d2-3459117552 .fill-B5{fill:#EDF0FD;}
|
||||
.d2-3459117552 .fill-B6{fill:#F7F8FE;}
|
||||
.d2-3459117552 .fill-AA2{fill:#4A6FF3;}
|
||||
.d2-3459117552 .fill-AA4{fill:#EDF0FD;}
|
||||
.d2-3459117552 .fill-AA5{fill:#F7F8FE;}
|
||||
.d2-3459117552 .fill-AB4{fill:#EDF0FD;}
|
||||
.d2-3459117552 .fill-AB5{fill:#F7F8FE;}
|
||||
.d2-3459117552 .stroke-N1{stroke:#0A0F25;}
|
||||
.d2-3459117552 .stroke-N2{stroke:#676C7E;}
|
||||
.d2-3459117552 .stroke-N3{stroke:#9499AB;}
|
||||
.d2-3459117552 .stroke-N4{stroke:#CFD2DD;}
|
||||
.d2-3459117552 .stroke-N5{stroke:#DEE1EB;}
|
||||
.d2-3459117552 .stroke-N6{stroke:#EEF1F8;}
|
||||
.d2-3459117552 .stroke-N7{stroke:#FFFFFF;}
|
||||
.d2-3459117552 .stroke-B1{stroke:#0D32B2;}
|
||||
.d2-3459117552 .stroke-B2{stroke:#0D32B2;}
|
||||
.d2-3459117552 .stroke-B3{stroke:#E3E9FD;}
|
||||
.d2-3459117552 .stroke-B4{stroke:#E3E9FD;}
|
||||
.d2-3459117552 .stroke-B5{stroke:#EDF0FD;}
|
||||
.d2-3459117552 .stroke-B6{stroke:#F7F8FE;}
|
||||
.d2-3459117552 .stroke-AA2{stroke:#4A6FF3;}
|
||||
.d2-3459117552 .stroke-AA4{stroke:#EDF0FD;}
|
||||
.d2-3459117552 .stroke-AA5{stroke:#F7F8FE;}
|
||||
.d2-3459117552 .stroke-AB4{stroke:#EDF0FD;}
|
||||
.d2-3459117552 .stroke-AB5{stroke:#F7F8FE;}
|
||||
.d2-3459117552 .background-color-N1{background-color:#0A0F25;}
|
||||
.d2-3459117552 .background-color-N2{background-color:#676C7E;}
|
||||
.d2-3459117552 .background-color-N3{background-color:#9499AB;}
|
||||
.d2-3459117552 .background-color-N4{background-color:#CFD2DD;}
|
||||
.d2-3459117552 .background-color-N5{background-color:#DEE1EB;}
|
||||
.d2-3459117552 .background-color-N6{background-color:#EEF1F8;}
|
||||
.d2-3459117552 .background-color-N7{background-color:#FFFFFF;}
|
||||
.d2-3459117552 .background-color-B1{background-color:#0D32B2;}
|
||||
.d2-3459117552 .background-color-B2{background-color:#0D32B2;}
|
||||
.d2-3459117552 .background-color-B3{background-color:#E3E9FD;}
|
||||
.d2-3459117552 .background-color-B4{background-color:#E3E9FD;}
|
||||
.d2-3459117552 .background-color-B5{background-color:#EDF0FD;}
|
||||
.d2-3459117552 .background-color-B6{background-color:#F7F8FE;}
|
||||
.d2-3459117552 .background-color-AA2{background-color:#4A6FF3;}
|
||||
.d2-3459117552 .background-color-AA4{background-color:#EDF0FD;}
|
||||
.d2-3459117552 .background-color-AA5{background-color:#F7F8FE;}
|
||||
.d2-3459117552 .background-color-AB4{background-color:#EDF0FD;}
|
||||
.d2-3459117552 .background-color-AB5{background-color:#F7F8FE;}
|
||||
.d2-3459117552 .color-N1{color:#0A0F25;}
|
||||
.d2-3459117552 .color-N2{color:#676C7E;}
|
||||
.d2-3459117552 .color-N3{color:#9499AB;}
|
||||
.d2-3459117552 .color-N4{color:#CFD2DD;}
|
||||
.d2-3459117552 .color-N5{color:#DEE1EB;}
|
||||
.d2-3459117552 .color-N6{color:#EEF1F8;}
|
||||
.d2-3459117552 .color-N7{color:#FFFFFF;}
|
||||
.d2-3459117552 .color-B1{color:#0D32B2;}
|
||||
.d2-3459117552 .color-B2{color:#0D32B2;}
|
||||
.d2-3459117552 .color-B3{color:#E3E9FD;}
|
||||
.d2-3459117552 .color-B4{color:#E3E9FD;}
|
||||
.d2-3459117552 .color-B5{color:#EDF0FD;}
|
||||
.d2-3459117552 .color-B6{color:#F7F8FE;}
|
||||
.d2-3459117552 .color-AA2{color:#4A6FF3;}
|
||||
.d2-3459117552 .color-AA4{color:#EDF0FD;}
|
||||
.d2-3459117552 .color-AA5{color:#F7F8FE;}
|
||||
.d2-3459117552 .color-AB4{color:#EDF0FD;}
|
||||
.d2-3459117552 .color-AB5{color:#F7F8FE;}.appendix text.text{fill:#0A0F25}.md{--color-fg-default:#0A0F25;--color-fg-muted:#676C7E;--color-fg-subtle:#9499AB;--color-canvas-default:#FFFFFF;--color-canvas-subtle:#EEF1F8;--color-border-default:#0D32B2;--color-border-muted:#0D32B2;--color-neutral-muted:#EEF1F8;--color-accent-fg:#0D32B2;--color-accent-emphasis:#0D32B2;--color-attention-subtle:#676C7E;--color-danger-fg:red;}.sketch-overlay-B1{fill:url(#streaks-darker);mix-blend-mode:lighten}.sketch-overlay-B2{fill:url(#streaks-darker);mix-blend-mode:lighten}.sketch-overlay-B3{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-B4{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-B5{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-B6{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-AA2{fill:url(#streaks-dark);mix-blend-mode:overlay}.sketch-overlay-AA4{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-AA5{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-AB4{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-AB5{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-N1{fill:url(#streaks-darker);mix-blend-mode:lighten}.sketch-overlay-N2{fill:url(#streaks-dark);mix-blend-mode:overlay}.sketch-overlay-N3{fill:url(#streaks-normal);mix-blend-mode:color-burn}.sketch-overlay-N4{fill:url(#streaks-normal);mix-blend-mode:color-burn}.sketch-overlay-N5{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-N6{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-N7{fill:url(#streaks-bright);mix-blend-mode:darken}.light-code{display: block}.dark-code{display: none}]]></style><g id="a"><g class="shape" ><rect x="12.000000" y="52.000000" width="100.000000" height="66.000000" class=" stroke-B1 fill-B5" style="stroke-width:2;" /></g><text x="62.000000" y="90.500000" class="text fill-N1" style="text-anchor:middle;font-size:16px">A</text></g><g id="b"><g class="shape" ><rect x="162.000000" y="52.000000" width="100.000000" height="66.000000" class=" stroke-B1 fill-B5" style="stroke-width:2;" /></g><text x="212.000000" y="90.500000" class="text fill-N1" style="text-anchor:middle;font-size:16px">B</text></g><g id="(a -- )[0]"><path d="M 62.000000 120.000000 L 62.000000 442.000000" fill="none" class="connection stroke-B2" style="stroke-width:2;stroke-dasharray:12.000000,11.838767;" mask="url(#d2-3459117552)" /></g><g id="(b -- )[0]"><path d="M 212.000000 120.000000 L 212.000000 442.000000" fill="none" class="connection stroke-B2" style="stroke-width:2;stroke-dasharray:12.000000,11.838767;" mask="url(#d2-3459117552)" /></g><g id="a.sp1"><g class="shape" ><rect x="56.000000" y="178.000000" width="12.000000" height="90.000000" class=" stroke-B1 fill-B4" style="stroke-width:2;" /></g></g><g id="a.sp2"><g class="shape" ><rect x="56.000000" y="293.000000" width="12.000000" height="90.000000" class=" stroke-B1 fill-B4" style="stroke-width:2;" /></g></g><g id="(a.sp1 -> b)[0]"><marker id="mk-3488378134" 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 points="0.000000,0.000000 10.000000,6.000000 0.000000,12.000000" class="connection fill-B1" stroke-width="2" /> </marker><path d="M 70.000000 188.000000 L 208.000000 188.000000" fill="none" class="connection stroke-B1" style="stroke-width:2;" marker-end="url(#mk-3488378134)" mask="url(#d2-3459117552)" /><text x="140.500000" y="194.000000" class="text-italic fill-N2" style="text-anchor:middle;font-size:16px">foo</text></g><g id="a.(sp1 -> sp2)[0]"><path d="M 70.000000 258.000000 L 132.000000 258.000000 S 142.000000 258.000000 142.000000 268.000000 L 142.000000 293.000000 S 142.000000 303.000000 132.000000 303.000000 L 72.000000 303.000000" fill="none" class="connection stroke-B1" style="stroke-width:2;" marker-end="url(#mk-3488378134)" mask="url(#d2-3459117552)" /><text x="142.000000" y="286.000000" class="text-italic fill-N2" style="text-anchor:middle;font-size:16px">redirect</text></g><g id="(a.sp2 -> b)[0]"><path d="M 70.000000 373.000000 L 208.000000 373.000000" fill="none" class="connection stroke-B1" style="stroke-width:2;" marker-end="url(#mk-3488378134)" mask="url(#d2-3459117552)" /><text x="140.500000" y="379.000000" class="text-italic fill-N2" style="text-anchor:middle;font-size:16px">bar</text></g><mask id="d2-3459117552" maskUnits="userSpaceOnUse" x="11" y="51" width="252" height="393">
|
||||
<rect x="11" y="51" width="252" height="393" fill="white"></rect>
|
||||
<rect x="57.500000" y="74.500000" width="9" height="21" fill="rgba(0,0,0,0.75)"></rect>
|
||||
<rect x="208.000000" y="74.500000" width="8" height="21" fill="rgba(0,0,0,0.75)"></rect>
|
||||
<rect x="130.000000" y="178.000000" width="21" height="21" fill="black"></rect>
|
||||
<rect x="116.000000" y="270.000000" width="52" height="21" fill="black"></rect>
|
||||
<rect x="128.000000" y="318.000000" width="25" height="21" fill="black"></rect>
|
||||
<rect x="128.000000" y="363.000000" width="25" height="21" fill="black"></rect>
|
||||
</mask></svg></svg>
|
||||
|
Before Width: | Height: | Size: 16 KiB After Width: | Height: | Size: 16 KiB |
58
e2etests/testdata/stable/sequence_diagram_self_edges/dagre/board.exp.json
generated
vendored
|
|
@ -90,10 +90,10 @@
|
|||
"type": "rectangle",
|
||||
"pos": {
|
||||
"x": 206,
|
||||
"y": 363
|
||||
"y": 408
|
||||
},
|
||||
"width": 12,
|
||||
"height": 125,
|
||||
"height": 215,
|
||||
"opacity": 1,
|
||||
"strokeDash": 0,
|
||||
"strokeWidth": 2,
|
||||
|
|
@ -130,10 +130,10 @@
|
|||
"type": "rectangle",
|
||||
"pos": {
|
||||
"x": 202,
|
||||
"y": 433
|
||||
"y": 523
|
||||
},
|
||||
"width": 20,
|
||||
"height": 45,
|
||||
"height": 90,
|
||||
"opacity": 1,
|
||||
"strokeDash": 0,
|
||||
"strokeWidth": 2,
|
||||
|
|
@ -170,7 +170,7 @@
|
|||
"type": "rectangle",
|
||||
"pos": {
|
||||
"x": 56,
|
||||
"y": 518
|
||||
"y": 698
|
||||
},
|
||||
"width": 12,
|
||||
"height": 100,
|
||||
|
|
@ -210,7 +210,7 @@
|
|||
"type": "rectangle",
|
||||
"pos": {
|
||||
"x": 52,
|
||||
"y": 528
|
||||
"y": 708
|
||||
},
|
||||
"width": 20,
|
||||
"height": 30,
|
||||
|
|
@ -250,7 +250,7 @@
|
|||
"type": "rectangle",
|
||||
"pos": {
|
||||
"x": 206,
|
||||
"y": 598
|
||||
"y": 778
|
||||
},
|
||||
"width": 12,
|
||||
"height": 30,
|
||||
|
|
@ -359,11 +359,11 @@
|
|||
"route": [
|
||||
{
|
||||
"x": 62,
|
||||
"y": 258
|
||||
"y": 303
|
||||
},
|
||||
{
|
||||
"x": 212,
|
||||
"y": 258
|
||||
"y": 303
|
||||
}
|
||||
],
|
||||
"animated": false,
|
||||
|
|
@ -397,19 +397,19 @@
|
|||
"route": [
|
||||
{
|
||||
"x": 212,
|
||||
"y": 328
|
||||
},
|
||||
{
|
||||
"x": 292,
|
||||
"y": 328
|
||||
"y": 373
|
||||
},
|
||||
{
|
||||
"x": 292,
|
||||
"y": 373
|
||||
},
|
||||
{
|
||||
"x": 292,
|
||||
"y": 418
|
||||
},
|
||||
{
|
||||
"x": 218,
|
||||
"y": 373
|
||||
"y": 418
|
||||
}
|
||||
],
|
||||
"animated": false,
|
||||
|
|
@ -443,19 +443,19 @@
|
|||
"route": [
|
||||
{
|
||||
"x": 218,
|
||||
"y": 398
|
||||
"y": 488
|
||||
},
|
||||
{
|
||||
"x": 292,
|
||||
"y": 398
|
||||
"y": 488
|
||||
},
|
||||
{
|
||||
"x": 292,
|
||||
"y": 443
|
||||
"y": 533
|
||||
},
|
||||
{
|
||||
"x": 222,
|
||||
"y": 443
|
||||
"y": 533
|
||||
}
|
||||
],
|
||||
"animated": false,
|
||||
|
|
@ -489,19 +489,19 @@
|
|||
"route": [
|
||||
{
|
||||
"x": 222,
|
||||
"y": 468
|
||||
"y": 603
|
||||
},
|
||||
{
|
||||
"x": 292,
|
||||
"y": 468
|
||||
"y": 603
|
||||
},
|
||||
{
|
||||
"x": 292,
|
||||
"y": 513
|
||||
"y": 648
|
||||
},
|
||||
{
|
||||
"x": 212,
|
||||
"y": 513
|
||||
"y": 648
|
||||
}
|
||||
],
|
||||
"animated": false,
|
||||
|
|
@ -535,11 +535,11 @@
|
|||
"route": [
|
||||
{
|
||||
"x": 212,
|
||||
"y": 538
|
||||
"y": 718
|
||||
},
|
||||
{
|
||||
"x": 72,
|
||||
"y": 538
|
||||
"y": 718
|
||||
}
|
||||
],
|
||||
"animated": false,
|
||||
|
|
@ -573,11 +573,11 @@
|
|||
"route": [
|
||||
{
|
||||
"x": 68,
|
||||
"y": 608
|
||||
"y": 788
|
||||
},
|
||||
{
|
||||
"x": 206,
|
||||
"y": 608
|
||||
"y": 788
|
||||
}
|
||||
],
|
||||
"animated": false,
|
||||
|
|
@ -615,7 +615,7 @@
|
|||
},
|
||||
{
|
||||
"x": 62,
|
||||
"y": 678
|
||||
"y": 858
|
||||
}
|
||||
],
|
||||
"animated": false,
|
||||
|
|
@ -653,7 +653,7 @@
|
|||
},
|
||||
{
|
||||
"x": 212,
|
||||
"y": 678
|
||||
"y": 858
|
||||
}
|
||||
],
|
||||
"animated": false,
|
||||
|
|
|
|||
|
Before Width: | Height: | Size: 19 KiB After Width: | Height: | Size: 19 KiB |
58
e2etests/testdata/stable/sequence_diagram_self_edges/elk/board.exp.json
generated
vendored
|
|
@ -90,10 +90,10 @@
|
|||
"type": "rectangle",
|
||||
"pos": {
|
||||
"x": 206,
|
||||
"y": 363
|
||||
"y": 408
|
||||
},
|
||||
"width": 12,
|
||||
"height": 125,
|
||||
"height": 215,
|
||||
"opacity": 1,
|
||||
"strokeDash": 0,
|
||||
"strokeWidth": 2,
|
||||
|
|
@ -130,10 +130,10 @@
|
|||
"type": "rectangle",
|
||||
"pos": {
|
||||
"x": 202,
|
||||
"y": 433
|
||||
"y": 523
|
||||
},
|
||||
"width": 20,
|
||||
"height": 45,
|
||||
"height": 90,
|
||||
"opacity": 1,
|
||||
"strokeDash": 0,
|
||||
"strokeWidth": 2,
|
||||
|
|
@ -170,7 +170,7 @@
|
|||
"type": "rectangle",
|
||||
"pos": {
|
||||
"x": 56,
|
||||
"y": 518
|
||||
"y": 698
|
||||
},
|
||||
"width": 12,
|
||||
"height": 100,
|
||||
|
|
@ -210,7 +210,7 @@
|
|||
"type": "rectangle",
|
||||
"pos": {
|
||||
"x": 52,
|
||||
"y": 528
|
||||
"y": 708
|
||||
},
|
||||
"width": 20,
|
||||
"height": 30,
|
||||
|
|
@ -250,7 +250,7 @@
|
|||
"type": "rectangle",
|
||||
"pos": {
|
||||
"x": 206,
|
||||
"y": 598
|
||||
"y": 778
|
||||
},
|
||||
"width": 12,
|
||||
"height": 30,
|
||||
|
|
@ -359,11 +359,11 @@
|
|||
"route": [
|
||||
{
|
||||
"x": 62,
|
||||
"y": 258
|
||||
"y": 303
|
||||
},
|
||||
{
|
||||
"x": 212,
|
||||
"y": 258
|
||||
"y": 303
|
||||
}
|
||||
],
|
||||
"animated": false,
|
||||
|
|
@ -397,19 +397,19 @@
|
|||
"route": [
|
||||
{
|
||||
"x": 212,
|
||||
"y": 328
|
||||
},
|
||||
{
|
||||
"x": 292,
|
||||
"y": 328
|
||||
"y": 373
|
||||
},
|
||||
{
|
||||
"x": 292,
|
||||
"y": 373
|
||||
},
|
||||
{
|
||||
"x": 292,
|
||||
"y": 418
|
||||
},
|
||||
{
|
||||
"x": 218,
|
||||
"y": 373
|
||||
"y": 418
|
||||
}
|
||||
],
|
||||
"animated": false,
|
||||
|
|
@ -443,19 +443,19 @@
|
|||
"route": [
|
||||
{
|
||||
"x": 218,
|
||||
"y": 398
|
||||
"y": 488
|
||||
},
|
||||
{
|
||||
"x": 292,
|
||||
"y": 398
|
||||
"y": 488
|
||||
},
|
||||
{
|
||||
"x": 292,
|
||||
"y": 443
|
||||
"y": 533
|
||||
},
|
||||
{
|
||||
"x": 222,
|
||||
"y": 443
|
||||
"y": 533
|
||||
}
|
||||
],
|
||||
"animated": false,
|
||||
|
|
@ -489,19 +489,19 @@
|
|||
"route": [
|
||||
{
|
||||
"x": 222,
|
||||
"y": 468
|
||||
"y": 603
|
||||
},
|
||||
{
|
||||
"x": 292,
|
||||
"y": 468
|
||||
"y": 603
|
||||
},
|
||||
{
|
||||
"x": 292,
|
||||
"y": 513
|
||||
"y": 648
|
||||
},
|
||||
{
|
||||
"x": 212,
|
||||
"y": 513
|
||||
"y": 648
|
||||
}
|
||||
],
|
||||
"animated": false,
|
||||
|
|
@ -535,11 +535,11 @@
|
|||
"route": [
|
||||
{
|
||||
"x": 212,
|
||||
"y": 538
|
||||
"y": 718
|
||||
},
|
||||
{
|
||||
"x": 72,
|
||||
"y": 538
|
||||
"y": 718
|
||||
}
|
||||
],
|
||||
"animated": false,
|
||||
|
|
@ -573,11 +573,11 @@
|
|||
"route": [
|
||||
{
|
||||
"x": 68,
|
||||
"y": 608
|
||||
"y": 788
|
||||
},
|
||||
{
|
||||
"x": 206,
|
||||
"y": 608
|
||||
"y": 788
|
||||
}
|
||||
],
|
||||
"animated": false,
|
||||
|
|
@ -615,7 +615,7 @@
|
|||
},
|
||||
{
|
||||
"x": 62,
|
||||
"y": 678
|
||||
"y": 858
|
||||
}
|
||||
],
|
||||
"animated": false,
|
||||
|
|
@ -653,7 +653,7 @@
|
|||
},
|
||||
{
|
||||
"x": 212,
|
||||
"y": 678
|
||||
"y": 858
|
||||
}
|
||||
],
|
||||
"animated": false,
|
||||
|
|
|
|||
|
Before Width: | Height: | Size: 19 KiB After Width: | Height: | Size: 19 KiB |
256
e2etests/testdata/txtar/sequence-bounding-box#01/dagre/board.exp.json
generated
vendored
Normal file
|
|
@ -0,0 +1,256 @@
|
|||
{
|
||||
"name": "",
|
||||
"isFolderOnly": false,
|
||||
"fontFamily": "SourceSansPro",
|
||||
"shapes": [
|
||||
{
|
||||
"id": "backend",
|
||||
"type": "rectangle",
|
||||
"pos": {
|
||||
"x": 10,
|
||||
"y": 20
|
||||
},
|
||||
"width": 263,
|
||||
"height": 406,
|
||||
"opacity": 1,
|
||||
"strokeDash": 0,
|
||||
"strokeWidth": 2,
|
||||
"borderRadius": 0,
|
||||
"fill": "B4",
|
||||
"stroke": "B1",
|
||||
"shadow": false,
|
||||
"3d": false,
|
||||
"multiple": false,
|
||||
"double-border": false,
|
||||
"tooltip": "",
|
||||
"link": "",
|
||||
"icon": null,
|
||||
"iconPosition": "",
|
||||
"blend": false,
|
||||
"fields": null,
|
||||
"methods": null,
|
||||
"columns": null,
|
||||
"label": "backend",
|
||||
"fontSize": 28,
|
||||
"fontFamily": "DEFAULT",
|
||||
"language": "",
|
||||
"color": "N1",
|
||||
"italic": false,
|
||||
"bold": false,
|
||||
"underline": false,
|
||||
"labelWidth": 98,
|
||||
"labelHeight": 36,
|
||||
"labelPosition": "OUTSIDE_TOP_CENTER",
|
||||
"zIndex": 0,
|
||||
"level": 1
|
||||
},
|
||||
{
|
||||
"id": "backend.client",
|
||||
"type": "sequence_diagram",
|
||||
"pos": {
|
||||
"x": 40,
|
||||
"y": 50
|
||||
},
|
||||
"width": 203,
|
||||
"height": 346,
|
||||
"opacity": 1,
|
||||
"strokeDash": 0,
|
||||
"strokeWidth": 0,
|
||||
"borderRadius": 0,
|
||||
"fill": "N7",
|
||||
"stroke": "B1",
|
||||
"shadow": false,
|
||||
"3d": false,
|
||||
"multiple": false,
|
||||
"double-border": false,
|
||||
"tooltip": "",
|
||||
"link": "",
|
||||
"icon": null,
|
||||
"iconPosition": "",
|
||||
"blend": false,
|
||||
"fields": null,
|
||||
"methods": null,
|
||||
"columns": null,
|
||||
"label": "client",
|
||||
"fontSize": 24,
|
||||
"fontFamily": "DEFAULT",
|
||||
"language": "",
|
||||
"color": "N1",
|
||||
"italic": false,
|
||||
"bold": false,
|
||||
"underline": false,
|
||||
"labelWidth": 55,
|
||||
"labelHeight": 31,
|
||||
"labelPosition": "INSIDE_TOP_CENTER",
|
||||
"zIndex": 0,
|
||||
"level": 2
|
||||
},
|
||||
{
|
||||
"id": "backend.client.client",
|
||||
"type": "rectangle",
|
||||
"pos": {
|
||||
"x": 52,
|
||||
"y": 133
|
||||
},
|
||||
"width": 100,
|
||||
"height": 66,
|
||||
"opacity": 1,
|
||||
"strokeDash": 0,
|
||||
"strokeWidth": 2,
|
||||
"borderRadius": 0,
|
||||
"fill": "B5",
|
||||
"stroke": "B1",
|
||||
"shadow": false,
|
||||
"3d": false,
|
||||
"multiple": false,
|
||||
"double-border": false,
|
||||
"tooltip": "",
|
||||
"link": "",
|
||||
"icon": null,
|
||||
"iconPosition": "",
|
||||
"blend": false,
|
||||
"fields": null,
|
||||
"methods": null,
|
||||
"columns": null,
|
||||
"label": "client",
|
||||
"fontSize": 16,
|
||||
"fontFamily": "DEFAULT",
|
||||
"language": "",
|
||||
"color": "N1",
|
||||
"italic": false,
|
||||
"bold": false,
|
||||
"underline": false,
|
||||
"labelWidth": 38,
|
||||
"labelHeight": 21,
|
||||
"labelPosition": "INSIDE_MIDDLE_CENTER",
|
||||
"zIndex": 0,
|
||||
"level": 3
|
||||
}
|
||||
],
|
||||
"connections": [
|
||||
{
|
||||
"id": "backend.client.(client -> client)[0]",
|
||||
"src": "backend.client.client",
|
||||
"srcArrow": "none",
|
||||
"dst": "backend.client.client",
|
||||
"dstArrow": "triangle",
|
||||
"opacity": 1,
|
||||
"strokeDash": 0,
|
||||
"strokeWidth": 2,
|
||||
"stroke": "B1",
|
||||
"borderRadius": 10,
|
||||
"label": "BO_ID -> D2_ID",
|
||||
"fontSize": 16,
|
||||
"fontFamily": "DEFAULT",
|
||||
"language": "",
|
||||
"color": "N2",
|
||||
"italic": true,
|
||||
"bold": false,
|
||||
"underline": false,
|
||||
"labelWidth": 99,
|
||||
"labelHeight": 21,
|
||||
"labelPosition": "INSIDE_MIDDLE_CENTER",
|
||||
"labelPercentage": 0,
|
||||
"route": [
|
||||
{
|
||||
"x": 102,
|
||||
"y": 269
|
||||
},
|
||||
{
|
||||
"x": 182,
|
||||
"y": 269
|
||||
},
|
||||
{
|
||||
"x": 182,
|
||||
"y": 314
|
||||
},
|
||||
{
|
||||
"x": 102,
|
||||
"y": 314
|
||||
}
|
||||
],
|
||||
"animated": false,
|
||||
"tooltip": "",
|
||||
"icon": null,
|
||||
"zIndex": 4
|
||||
},
|
||||
{
|
||||
"id": "(backend.client.client -- )[0]",
|
||||
"src": "backend.client.client",
|
||||
"srcArrow": "none",
|
||||
"dst": "client-lifeline-end-2119091193",
|
||||
"dstArrow": "none",
|
||||
"opacity": 1,
|
||||
"strokeDash": 6,
|
||||
"strokeWidth": 2,
|
||||
"stroke": "B2",
|
||||
"borderRadius": 10,
|
||||
"label": "",
|
||||
"fontSize": 16,
|
||||
"fontFamily": "DEFAULT",
|
||||
"language": "",
|
||||
"color": "N2",
|
||||
"italic": true,
|
||||
"bold": false,
|
||||
"underline": false,
|
||||
"labelWidth": 0,
|
||||
"labelHeight": 0,
|
||||
"labelPosition": "",
|
||||
"labelPercentage": 0,
|
||||
"route": [
|
||||
{
|
||||
"x": 102,
|
||||
"y": 199
|
||||
},
|
||||
{
|
||||
"x": 102,
|
||||
"y": 384
|
||||
}
|
||||
],
|
||||
"animated": false,
|
||||
"tooltip": "",
|
||||
"icon": null,
|
||||
"zIndex": 1
|
||||
}
|
||||
],
|
||||
"root": {
|
||||
"id": "",
|
||||
"type": "",
|
||||
"pos": {
|
||||
"x": 0,
|
||||
"y": 0
|
||||
},
|
||||
"width": 0,
|
||||
"height": 0,
|
||||
"opacity": 0,
|
||||
"strokeDash": 0,
|
||||
"strokeWidth": 0,
|
||||
"borderRadius": 0,
|
||||
"fill": "N7",
|
||||
"stroke": "",
|
||||
"shadow": false,
|
||||
"3d": false,
|
||||
"multiple": false,
|
||||
"double-border": false,
|
||||
"tooltip": "",
|
||||
"link": "",
|
||||
"icon": null,
|
||||
"iconPosition": "",
|
||||
"blend": false,
|
||||
"fields": null,
|
||||
"methods": null,
|
||||
"columns": null,
|
||||
"label": "",
|
||||
"fontSize": 0,
|
||||
"fontFamily": "",
|
||||
"language": "",
|
||||
"color": "",
|
||||
"italic": false,
|
||||
"bold": false,
|
||||
"underline": false,
|
||||
"labelWidth": 0,
|
||||
"labelHeight": 0,
|
||||
"zIndex": 0,
|
||||
"level": 0
|
||||
}
|
||||
}
|
||||
105
e2etests/testdata/txtar/sequence-bounding-box#01/dagre/sketch.exp.svg
vendored
Normal file
|
|
@ -0,0 +1,105 @@
|
|||
<?xml version="1.0" encoding="utf-8"?><svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" d2Version="v0.6.6-HEAD" preserveAspectRatio="xMinYMin meet" viewBox="0 0 265 448"><svg id="d2-svg" class="d2-1129939561" width="265" height="448" viewBox="9 -21 265 448"><rect x="9.000000" y="-21.000000" width="265.000000" height="448.000000" rx="0.000000" class=" fill-N7" stroke-width="0" /><style type="text/css"><![CDATA[
|
||||
.d2-1129939561 .text {
|
||||
font-family: "d2-1129939561-font-regular";
|
||||
}
|
||||
@font-face {
|
||||
font-family: d2-1129939561-font-regular;
|
||||
src: url("data:application/font-woff;base64,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");
|
||||
}
|
||||
.d2-1129939561 .text-italic {
|
||||
font-family: "d2-1129939561-font-italic";
|
||||
}
|
||||
@font-face {
|
||||
font-family: d2-1129939561-font-italic;
|
||||
src: url("data:application/font-woff;base64,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");
|
||||
}]]></style><style type="text/css"><![CDATA[.shape {
|
||||
shape-rendering: geometricPrecision;
|
||||
stroke-linejoin: round;
|
||||
}
|
||||
.connection {
|
||||
stroke-linecap: round;
|
||||
stroke-linejoin: round;
|
||||
}
|
||||
.blend {
|
||||
mix-blend-mode: multiply;
|
||||
opacity: 0.5;
|
||||
}
|
||||
|
||||
.d2-1129939561 .fill-N1{fill:#0A0F25;}
|
||||
.d2-1129939561 .fill-N2{fill:#676C7E;}
|
||||
.d2-1129939561 .fill-N3{fill:#9499AB;}
|
||||
.d2-1129939561 .fill-N4{fill:#CFD2DD;}
|
||||
.d2-1129939561 .fill-N5{fill:#DEE1EB;}
|
||||
.d2-1129939561 .fill-N6{fill:#EEF1F8;}
|
||||
.d2-1129939561 .fill-N7{fill:#FFFFFF;}
|
||||
.d2-1129939561 .fill-B1{fill:#0D32B2;}
|
||||
.d2-1129939561 .fill-B2{fill:#0D32B2;}
|
||||
.d2-1129939561 .fill-B3{fill:#E3E9FD;}
|
||||
.d2-1129939561 .fill-B4{fill:#E3E9FD;}
|
||||
.d2-1129939561 .fill-B5{fill:#EDF0FD;}
|
||||
.d2-1129939561 .fill-B6{fill:#F7F8FE;}
|
||||
.d2-1129939561 .fill-AA2{fill:#4A6FF3;}
|
||||
.d2-1129939561 .fill-AA4{fill:#EDF0FD;}
|
||||
.d2-1129939561 .fill-AA5{fill:#F7F8FE;}
|
||||
.d2-1129939561 .fill-AB4{fill:#EDF0FD;}
|
||||
.d2-1129939561 .fill-AB5{fill:#F7F8FE;}
|
||||
.d2-1129939561 .stroke-N1{stroke:#0A0F25;}
|
||||
.d2-1129939561 .stroke-N2{stroke:#676C7E;}
|
||||
.d2-1129939561 .stroke-N3{stroke:#9499AB;}
|
||||
.d2-1129939561 .stroke-N4{stroke:#CFD2DD;}
|
||||
.d2-1129939561 .stroke-N5{stroke:#DEE1EB;}
|
||||
.d2-1129939561 .stroke-N6{stroke:#EEF1F8;}
|
||||
.d2-1129939561 .stroke-N7{stroke:#FFFFFF;}
|
||||
.d2-1129939561 .stroke-B1{stroke:#0D32B2;}
|
||||
.d2-1129939561 .stroke-B2{stroke:#0D32B2;}
|
||||
.d2-1129939561 .stroke-B3{stroke:#E3E9FD;}
|
||||
.d2-1129939561 .stroke-B4{stroke:#E3E9FD;}
|
||||
.d2-1129939561 .stroke-B5{stroke:#EDF0FD;}
|
||||
.d2-1129939561 .stroke-B6{stroke:#F7F8FE;}
|
||||
.d2-1129939561 .stroke-AA2{stroke:#4A6FF3;}
|
||||
.d2-1129939561 .stroke-AA4{stroke:#EDF0FD;}
|
||||
.d2-1129939561 .stroke-AA5{stroke:#F7F8FE;}
|
||||
.d2-1129939561 .stroke-AB4{stroke:#EDF0FD;}
|
||||
.d2-1129939561 .stroke-AB5{stroke:#F7F8FE;}
|
||||
.d2-1129939561 .background-color-N1{background-color:#0A0F25;}
|
||||
.d2-1129939561 .background-color-N2{background-color:#676C7E;}
|
||||
.d2-1129939561 .background-color-N3{background-color:#9499AB;}
|
||||
.d2-1129939561 .background-color-N4{background-color:#CFD2DD;}
|
||||
.d2-1129939561 .background-color-N5{background-color:#DEE1EB;}
|
||||
.d2-1129939561 .background-color-N6{background-color:#EEF1F8;}
|
||||
.d2-1129939561 .background-color-N7{background-color:#FFFFFF;}
|
||||
.d2-1129939561 .background-color-B1{background-color:#0D32B2;}
|
||||
.d2-1129939561 .background-color-B2{background-color:#0D32B2;}
|
||||
.d2-1129939561 .background-color-B3{background-color:#E3E9FD;}
|
||||
.d2-1129939561 .background-color-B4{background-color:#E3E9FD;}
|
||||
.d2-1129939561 .background-color-B5{background-color:#EDF0FD;}
|
||||
.d2-1129939561 .background-color-B6{background-color:#F7F8FE;}
|
||||
.d2-1129939561 .background-color-AA2{background-color:#4A6FF3;}
|
||||
.d2-1129939561 .background-color-AA4{background-color:#EDF0FD;}
|
||||
.d2-1129939561 .background-color-AA5{background-color:#F7F8FE;}
|
||||
.d2-1129939561 .background-color-AB4{background-color:#EDF0FD;}
|
||||
.d2-1129939561 .background-color-AB5{background-color:#F7F8FE;}
|
||||
.d2-1129939561 .color-N1{color:#0A0F25;}
|
||||
.d2-1129939561 .color-N2{color:#676C7E;}
|
||||
.d2-1129939561 .color-N3{color:#9499AB;}
|
||||
.d2-1129939561 .color-N4{color:#CFD2DD;}
|
||||
.d2-1129939561 .color-N5{color:#DEE1EB;}
|
||||
.d2-1129939561 .color-N6{color:#EEF1F8;}
|
||||
.d2-1129939561 .color-N7{color:#FFFFFF;}
|
||||
.d2-1129939561 .color-B1{color:#0D32B2;}
|
||||
.d2-1129939561 .color-B2{color:#0D32B2;}
|
||||
.d2-1129939561 .color-B3{color:#E3E9FD;}
|
||||
.d2-1129939561 .color-B4{color:#E3E9FD;}
|
||||
.d2-1129939561 .color-B5{color:#EDF0FD;}
|
||||
.d2-1129939561 .color-B6{color:#F7F8FE;}
|
||||
.d2-1129939561 .color-AA2{color:#4A6FF3;}
|
||||
.d2-1129939561 .color-AA4{color:#EDF0FD;}
|
||||
.d2-1129939561 .color-AA5{color:#F7F8FE;}
|
||||
.d2-1129939561 .color-AB4{color:#EDF0FD;}
|
||||
.d2-1129939561 .color-AB5{color:#F7F8FE;}.appendix text.text{fill:#0A0F25}.md{--color-fg-default:#0A0F25;--color-fg-muted:#676C7E;--color-fg-subtle:#9499AB;--color-canvas-default:#FFFFFF;--color-canvas-subtle:#EEF1F8;--color-border-default:#0D32B2;--color-border-muted:#0D32B2;--color-neutral-muted:#EEF1F8;--color-accent-fg:#0D32B2;--color-accent-emphasis:#0D32B2;--color-attention-subtle:#676C7E;--color-danger-fg:red;}.sketch-overlay-B1{fill:url(#streaks-darker);mix-blend-mode:lighten}.sketch-overlay-B2{fill:url(#streaks-darker);mix-blend-mode:lighten}.sketch-overlay-B3{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-B4{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-B5{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-B6{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-AA2{fill:url(#streaks-dark);mix-blend-mode:overlay}.sketch-overlay-AA4{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-AA5{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-AB4{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-AB5{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-N1{fill:url(#streaks-darker);mix-blend-mode:lighten}.sketch-overlay-N2{fill:url(#streaks-dark);mix-blend-mode:overlay}.sketch-overlay-N3{fill:url(#streaks-normal);mix-blend-mode:color-burn}.sketch-overlay-N4{fill:url(#streaks-normal);mix-blend-mode:color-burn}.sketch-overlay-N5{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-N6{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-N7{fill:url(#streaks-bright);mix-blend-mode:darken}.light-code{display: block}.dark-code{display: none}]]></style><g id="backend"><g class="shape" ><rect x="10.000000" y="20.000000" width="263.000000" height="406.000000" class=" stroke-B1 fill-B4" style="stroke-width:2;" /></g><text x="141.500000" y="7.000000" class="text fill-N1" style="text-anchor:middle;font-size:28px">backend</text></g><g id="backend.client"><g class="shape" ><rect x="40.000000" y="50.000000" width="203.000000" height="346.000000" class=" stroke-B1 fill-N7" style="stroke-width:0;" /></g><text x="141.500000" y="79.000000" class="text fill-N1" style="text-anchor:middle;font-size:24px">client</text></g><g id="backend.client.client"><g class="shape" ><rect x="52.000000" y="133.000000" width="100.000000" height="66.000000" class=" stroke-B1 fill-B5" style="stroke-width:2;" /></g><text x="102.000000" y="171.500000" class="text fill-N1" style="text-anchor:middle;font-size:16px">client</text></g><g id="(backend.client.client -- )[0]"><path d="M 102.000000 201.000000 L 102.000000 383.000000" fill="none" class="connection stroke-B2" style="stroke-width:2;stroke-dasharray:12.000000,11.838767;" mask="url(#d2-1129939561)" /></g><g id="backend.client.(client -> client)[0]"><marker id="mk-3488378134" 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 points="0.000000,0.000000 10.000000,6.000000 0.000000,12.000000" class="connection fill-B1" stroke-width="2" /> </marker><path d="M 104.000000 269.000000 L 172.000000 269.000000 S 182.000000 269.000000 182.000000 279.000000 L 182.000000 304.000000 S 182.000000 314.000000 172.000000 314.000000 L 106.000000 314.000000" fill="none" class="connection stroke-B1" style="stroke-width:2;" marker-end="url(#mk-3488378134)" mask="url(#d2-1129939561)" /><text x="182.500000" y="297.000000" class="text-italic fill-N2" style="text-anchor:middle;font-size:16px">BO_ID -> D2_ID</text></g><mask id="d2-1129939561" maskUnits="userSpaceOnUse" x="9" y="-21" width="265" height="448">
|
||||
<rect x="9" y="-21" width="265" height="448" fill="white"></rect>
|
||||
<rect x="92.500000" y="-21.000000" width="98" height="36" fill="rgba(0,0,0,0.75)"></rect>
|
||||
<rect x="114.000000" y="55.000000" width="55" height="31" fill="rgba(0,0,0,0.75)"></rect>
|
||||
<rect x="83.000000" y="155.500000" width="38" height="21" fill="rgba(0,0,0,0.75)"></rect>
|
||||
<rect x="133.000000" y="281.000000" width="99" height="21" fill="black"></rect>
|
||||
</mask></svg></svg>
|
||||
|
After Width: | Height: | Size: 16 KiB |
256
e2etests/testdata/txtar/sequence-bounding-box#01/elk/board.exp.json
generated
vendored
Normal file
|
|
@ -0,0 +1,256 @@
|
|||
{
|
||||
"name": "",
|
||||
"isFolderOnly": false,
|
||||
"fontFamily": "SourceSansPro",
|
||||
"shapes": [
|
||||
{
|
||||
"id": "backend",
|
||||
"type": "rectangle",
|
||||
"pos": {
|
||||
"x": 12,
|
||||
"y": 12
|
||||
},
|
||||
"width": 304,
|
||||
"height": 446,
|
||||
"opacity": 1,
|
||||
"strokeDash": 0,
|
||||
"strokeWidth": 2,
|
||||
"borderRadius": 0,
|
||||
"fill": "B4",
|
||||
"stroke": "B1",
|
||||
"shadow": false,
|
||||
"3d": false,
|
||||
"multiple": false,
|
||||
"double-border": false,
|
||||
"tooltip": "",
|
||||
"link": "",
|
||||
"icon": null,
|
||||
"iconPosition": "",
|
||||
"blend": false,
|
||||
"fields": null,
|
||||
"methods": null,
|
||||
"columns": null,
|
||||
"label": "backend",
|
||||
"fontSize": 28,
|
||||
"fontFamily": "DEFAULT",
|
||||
"language": "",
|
||||
"color": "N1",
|
||||
"italic": false,
|
||||
"bold": false,
|
||||
"underline": false,
|
||||
"labelWidth": 98,
|
||||
"labelHeight": 36,
|
||||
"labelPosition": "INSIDE_TOP_CENTER",
|
||||
"zIndex": 0,
|
||||
"level": 1
|
||||
},
|
||||
{
|
||||
"id": "backend.client",
|
||||
"type": "sequence_diagram",
|
||||
"pos": {
|
||||
"x": 62,
|
||||
"y": 62
|
||||
},
|
||||
"width": 204,
|
||||
"height": 346,
|
||||
"opacity": 1,
|
||||
"strokeDash": 0,
|
||||
"strokeWidth": 0,
|
||||
"borderRadius": 0,
|
||||
"fill": "N7",
|
||||
"stroke": "B1",
|
||||
"shadow": false,
|
||||
"3d": false,
|
||||
"multiple": false,
|
||||
"double-border": false,
|
||||
"tooltip": "",
|
||||
"link": "",
|
||||
"icon": null,
|
||||
"iconPosition": "",
|
||||
"blend": false,
|
||||
"fields": null,
|
||||
"methods": null,
|
||||
"columns": null,
|
||||
"label": "client",
|
||||
"fontSize": 24,
|
||||
"fontFamily": "DEFAULT",
|
||||
"language": "",
|
||||
"color": "N1",
|
||||
"italic": false,
|
||||
"bold": false,
|
||||
"underline": false,
|
||||
"labelWidth": 55,
|
||||
"labelHeight": 31,
|
||||
"labelPosition": "INSIDE_TOP_CENTER",
|
||||
"zIndex": 0,
|
||||
"level": 2
|
||||
},
|
||||
{
|
||||
"id": "backend.client.client",
|
||||
"type": "rectangle",
|
||||
"pos": {
|
||||
"x": 74,
|
||||
"y": 145
|
||||
},
|
||||
"width": 100,
|
||||
"height": 66,
|
||||
"opacity": 1,
|
||||
"strokeDash": 0,
|
||||
"strokeWidth": 2,
|
||||
"borderRadius": 0,
|
||||
"fill": "B5",
|
||||
"stroke": "B1",
|
||||
"shadow": false,
|
||||
"3d": false,
|
||||
"multiple": false,
|
||||
"double-border": false,
|
||||
"tooltip": "",
|
||||
"link": "",
|
||||
"icon": null,
|
||||
"iconPosition": "",
|
||||
"blend": false,
|
||||
"fields": null,
|
||||
"methods": null,
|
||||
"columns": null,
|
||||
"label": "client",
|
||||
"fontSize": 16,
|
||||
"fontFamily": "DEFAULT",
|
||||
"language": "",
|
||||
"color": "N1",
|
||||
"italic": false,
|
||||
"bold": false,
|
||||
"underline": false,
|
||||
"labelWidth": 38,
|
||||
"labelHeight": 21,
|
||||
"labelPosition": "INSIDE_MIDDLE_CENTER",
|
||||
"zIndex": 0,
|
||||
"level": 3
|
||||
}
|
||||
],
|
||||
"connections": [
|
||||
{
|
||||
"id": "backend.client.(client -> client)[0]",
|
||||
"src": "backend.client.client",
|
||||
"srcArrow": "none",
|
||||
"dst": "backend.client.client",
|
||||
"dstArrow": "triangle",
|
||||
"opacity": 1,
|
||||
"strokeDash": 0,
|
||||
"strokeWidth": 2,
|
||||
"stroke": "B1",
|
||||
"borderRadius": 10,
|
||||
"label": "BO_ID -> D2_ID",
|
||||
"fontSize": 16,
|
||||
"fontFamily": "DEFAULT",
|
||||
"language": "",
|
||||
"color": "N2",
|
||||
"italic": true,
|
||||
"bold": false,
|
||||
"underline": false,
|
||||
"labelWidth": 99,
|
||||
"labelHeight": 21,
|
||||
"labelPosition": "INSIDE_MIDDLE_CENTER",
|
||||
"labelPercentage": 0,
|
||||
"route": [
|
||||
{
|
||||
"x": 124,
|
||||
"y": 281
|
||||
},
|
||||
{
|
||||
"x": 204,
|
||||
"y": 281
|
||||
},
|
||||
{
|
||||
"x": 204,
|
||||
"y": 326
|
||||
},
|
||||
{
|
||||
"x": 124,
|
||||
"y": 326
|
||||
}
|
||||
],
|
||||
"animated": false,
|
||||
"tooltip": "",
|
||||
"icon": null,
|
||||
"zIndex": 4
|
||||
},
|
||||
{
|
||||
"id": "(backend.client.client -- )[0]",
|
||||
"src": "backend.client.client",
|
||||
"srcArrow": "none",
|
||||
"dst": "client-lifeline-end-2119091193",
|
||||
"dstArrow": "none",
|
||||
"opacity": 1,
|
||||
"strokeDash": 6,
|
||||
"strokeWidth": 2,
|
||||
"stroke": "B2",
|
||||
"borderRadius": 10,
|
||||
"label": "",
|
||||
"fontSize": 16,
|
||||
"fontFamily": "DEFAULT",
|
||||
"language": "",
|
||||
"color": "N2",
|
||||
"italic": true,
|
||||
"bold": false,
|
||||
"underline": false,
|
||||
"labelWidth": 0,
|
||||
"labelHeight": 0,
|
||||
"labelPosition": "",
|
||||
"labelPercentage": 0,
|
||||
"route": [
|
||||
{
|
||||
"x": 124,
|
||||
"y": 211
|
||||
},
|
||||
{
|
||||
"x": 124,
|
||||
"y": 396
|
||||
}
|
||||
],
|
||||
"animated": false,
|
||||
"tooltip": "",
|
||||
"icon": null,
|
||||
"zIndex": 1
|
||||
}
|
||||
],
|
||||
"root": {
|
||||
"id": "",
|
||||
"type": "",
|
||||
"pos": {
|
||||
"x": 0,
|
||||
"y": 0
|
||||
},
|
||||
"width": 0,
|
||||
"height": 0,
|
||||
"opacity": 0,
|
||||
"strokeDash": 0,
|
||||
"strokeWidth": 0,
|
||||
"borderRadius": 0,
|
||||
"fill": "N7",
|
||||
"stroke": "",
|
||||
"shadow": false,
|
||||
"3d": false,
|
||||
"multiple": false,
|
||||
"double-border": false,
|
||||
"tooltip": "",
|
||||
"link": "",
|
||||
"icon": null,
|
||||
"iconPosition": "",
|
||||
"blend": false,
|
||||
"fields": null,
|
||||
"methods": null,
|
||||
"columns": null,
|
||||
"label": "",
|
||||
"fontSize": 0,
|
||||
"fontFamily": "",
|
||||
"language": "",
|
||||
"color": "",
|
||||
"italic": false,
|
||||
"bold": false,
|
||||
"underline": false,
|
||||
"labelWidth": 0,
|
||||
"labelHeight": 0,
|
||||
"zIndex": 0,
|
||||
"level": 0
|
||||
}
|
||||
}
|
||||
105
e2etests/testdata/txtar/sequence-bounding-box#01/elk/sketch.exp.svg
vendored
Normal file
|
|
@ -0,0 +1,105 @@
|
|||
<?xml version="1.0" encoding="utf-8"?><svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" d2Version="v0.6.6-HEAD" preserveAspectRatio="xMinYMin meet" viewBox="0 0 306 448"><svg id="d2-svg" class="d2-9807582" width="306" height="448" viewBox="11 11 306 448"><rect x="11.000000" y="11.000000" width="306.000000" height="448.000000" rx="0.000000" class=" fill-N7" stroke-width="0" /><style type="text/css"><![CDATA[
|
||||
.d2-9807582 .text {
|
||||
font-family: "d2-9807582-font-regular";
|
||||
}
|
||||
@font-face {
|
||||
font-family: d2-9807582-font-regular;
|
||||
src: url("data:application/font-woff;base64,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");
|
||||
}
|
||||
.d2-9807582 .text-italic {
|
||||
font-family: "d2-9807582-font-italic";
|
||||
}
|
||||
@font-face {
|
||||
font-family: d2-9807582-font-italic;
|
||||
src: url("data:application/font-woff;base64,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");
|
||||
}]]></style><style type="text/css"><![CDATA[.shape {
|
||||
shape-rendering: geometricPrecision;
|
||||
stroke-linejoin: round;
|
||||
}
|
||||
.connection {
|
||||
stroke-linecap: round;
|
||||
stroke-linejoin: round;
|
||||
}
|
||||
.blend {
|
||||
mix-blend-mode: multiply;
|
||||
opacity: 0.5;
|
||||
}
|
||||
|
||||
.d2-9807582 .fill-N1{fill:#0A0F25;}
|
||||
.d2-9807582 .fill-N2{fill:#676C7E;}
|
||||
.d2-9807582 .fill-N3{fill:#9499AB;}
|
||||
.d2-9807582 .fill-N4{fill:#CFD2DD;}
|
||||
.d2-9807582 .fill-N5{fill:#DEE1EB;}
|
||||
.d2-9807582 .fill-N6{fill:#EEF1F8;}
|
||||
.d2-9807582 .fill-N7{fill:#FFFFFF;}
|
||||
.d2-9807582 .fill-B1{fill:#0D32B2;}
|
||||
.d2-9807582 .fill-B2{fill:#0D32B2;}
|
||||
.d2-9807582 .fill-B3{fill:#E3E9FD;}
|
||||
.d2-9807582 .fill-B4{fill:#E3E9FD;}
|
||||
.d2-9807582 .fill-B5{fill:#EDF0FD;}
|
||||
.d2-9807582 .fill-B6{fill:#F7F8FE;}
|
||||
.d2-9807582 .fill-AA2{fill:#4A6FF3;}
|
||||
.d2-9807582 .fill-AA4{fill:#EDF0FD;}
|
||||
.d2-9807582 .fill-AA5{fill:#F7F8FE;}
|
||||
.d2-9807582 .fill-AB4{fill:#EDF0FD;}
|
||||
.d2-9807582 .fill-AB5{fill:#F7F8FE;}
|
||||
.d2-9807582 .stroke-N1{stroke:#0A0F25;}
|
||||
.d2-9807582 .stroke-N2{stroke:#676C7E;}
|
||||
.d2-9807582 .stroke-N3{stroke:#9499AB;}
|
||||
.d2-9807582 .stroke-N4{stroke:#CFD2DD;}
|
||||
.d2-9807582 .stroke-N5{stroke:#DEE1EB;}
|
||||
.d2-9807582 .stroke-N6{stroke:#EEF1F8;}
|
||||
.d2-9807582 .stroke-N7{stroke:#FFFFFF;}
|
||||
.d2-9807582 .stroke-B1{stroke:#0D32B2;}
|
||||
.d2-9807582 .stroke-B2{stroke:#0D32B2;}
|
||||
.d2-9807582 .stroke-B3{stroke:#E3E9FD;}
|
||||
.d2-9807582 .stroke-B4{stroke:#E3E9FD;}
|
||||
.d2-9807582 .stroke-B5{stroke:#EDF0FD;}
|
||||
.d2-9807582 .stroke-B6{stroke:#F7F8FE;}
|
||||
.d2-9807582 .stroke-AA2{stroke:#4A6FF3;}
|
||||
.d2-9807582 .stroke-AA4{stroke:#EDF0FD;}
|
||||
.d2-9807582 .stroke-AA5{stroke:#F7F8FE;}
|
||||
.d2-9807582 .stroke-AB4{stroke:#EDF0FD;}
|
||||
.d2-9807582 .stroke-AB5{stroke:#F7F8FE;}
|
||||
.d2-9807582 .background-color-N1{background-color:#0A0F25;}
|
||||
.d2-9807582 .background-color-N2{background-color:#676C7E;}
|
||||
.d2-9807582 .background-color-N3{background-color:#9499AB;}
|
||||
.d2-9807582 .background-color-N4{background-color:#CFD2DD;}
|
||||
.d2-9807582 .background-color-N5{background-color:#DEE1EB;}
|
||||
.d2-9807582 .background-color-N6{background-color:#EEF1F8;}
|
||||
.d2-9807582 .background-color-N7{background-color:#FFFFFF;}
|
||||
.d2-9807582 .background-color-B1{background-color:#0D32B2;}
|
||||
.d2-9807582 .background-color-B2{background-color:#0D32B2;}
|
||||
.d2-9807582 .background-color-B3{background-color:#E3E9FD;}
|
||||
.d2-9807582 .background-color-B4{background-color:#E3E9FD;}
|
||||
.d2-9807582 .background-color-B5{background-color:#EDF0FD;}
|
||||
.d2-9807582 .background-color-B6{background-color:#F7F8FE;}
|
||||
.d2-9807582 .background-color-AA2{background-color:#4A6FF3;}
|
||||
.d2-9807582 .background-color-AA4{background-color:#EDF0FD;}
|
||||
.d2-9807582 .background-color-AA5{background-color:#F7F8FE;}
|
||||
.d2-9807582 .background-color-AB4{background-color:#EDF0FD;}
|
||||
.d2-9807582 .background-color-AB5{background-color:#F7F8FE;}
|
||||
.d2-9807582 .color-N1{color:#0A0F25;}
|
||||
.d2-9807582 .color-N2{color:#676C7E;}
|
||||
.d2-9807582 .color-N3{color:#9499AB;}
|
||||
.d2-9807582 .color-N4{color:#CFD2DD;}
|
||||
.d2-9807582 .color-N5{color:#DEE1EB;}
|
||||
.d2-9807582 .color-N6{color:#EEF1F8;}
|
||||
.d2-9807582 .color-N7{color:#FFFFFF;}
|
||||
.d2-9807582 .color-B1{color:#0D32B2;}
|
||||
.d2-9807582 .color-B2{color:#0D32B2;}
|
||||
.d2-9807582 .color-B3{color:#E3E9FD;}
|
||||
.d2-9807582 .color-B4{color:#E3E9FD;}
|
||||
.d2-9807582 .color-B5{color:#EDF0FD;}
|
||||
.d2-9807582 .color-B6{color:#F7F8FE;}
|
||||
.d2-9807582 .color-AA2{color:#4A6FF3;}
|
||||
.d2-9807582 .color-AA4{color:#EDF0FD;}
|
||||
.d2-9807582 .color-AA5{color:#F7F8FE;}
|
||||
.d2-9807582 .color-AB4{color:#EDF0FD;}
|
||||
.d2-9807582 .color-AB5{color:#F7F8FE;}.appendix text.text{fill:#0A0F25}.md{--color-fg-default:#0A0F25;--color-fg-muted:#676C7E;--color-fg-subtle:#9499AB;--color-canvas-default:#FFFFFF;--color-canvas-subtle:#EEF1F8;--color-border-default:#0D32B2;--color-border-muted:#0D32B2;--color-neutral-muted:#EEF1F8;--color-accent-fg:#0D32B2;--color-accent-emphasis:#0D32B2;--color-attention-subtle:#676C7E;--color-danger-fg:red;}.sketch-overlay-B1{fill:url(#streaks-darker);mix-blend-mode:lighten}.sketch-overlay-B2{fill:url(#streaks-darker);mix-blend-mode:lighten}.sketch-overlay-B3{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-B4{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-B5{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-B6{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-AA2{fill:url(#streaks-dark);mix-blend-mode:overlay}.sketch-overlay-AA4{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-AA5{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-AB4{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-AB5{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-N1{fill:url(#streaks-darker);mix-blend-mode:lighten}.sketch-overlay-N2{fill:url(#streaks-dark);mix-blend-mode:overlay}.sketch-overlay-N3{fill:url(#streaks-normal);mix-blend-mode:color-burn}.sketch-overlay-N4{fill:url(#streaks-normal);mix-blend-mode:color-burn}.sketch-overlay-N5{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-N6{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-N7{fill:url(#streaks-bright);mix-blend-mode:darken}.light-code{display: block}.dark-code{display: none}]]></style><g id="backend"><g class="shape" ><rect x="12.000000" y="12.000000" width="304.000000" height="446.000000" class=" stroke-B1 fill-B4" style="stroke-width:2;" /></g><text x="164.000000" y="45.000000" class="text fill-N1" style="text-anchor:middle;font-size:28px">backend</text></g><g id="backend.client"><g class="shape" ><rect x="62.000000" y="62.000000" width="204.000000" height="346.000000" class=" stroke-B1 fill-N7" style="stroke-width:0;" /></g><text x="164.000000" y="91.000000" class="text fill-N1" style="text-anchor:middle;font-size:24px">client</text></g><g id="backend.client.client"><g class="shape" ><rect x="74.000000" y="145.000000" width="100.000000" height="66.000000" class=" stroke-B1 fill-B5" style="stroke-width:2;" /></g><text x="124.000000" y="183.500000" class="text fill-N1" style="text-anchor:middle;font-size:16px">client</text></g><g id="(backend.client.client -- )[0]"><path d="M 124.000000 213.000000 L 124.000000 395.000000" fill="none" class="connection stroke-B2" style="stroke-width:2;stroke-dasharray:12.000000,11.838767;" mask="url(#d2-9807582)" /></g><g id="backend.client.(client -> client)[0]"><marker id="mk-3488378134" 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 points="0.000000,0.000000 10.000000,6.000000 0.000000,12.000000" class="connection fill-B1" stroke-width="2" /> </marker><path d="M 126.000000 281.000000 L 194.000000 281.000000 S 204.000000 281.000000 204.000000 291.000000 L 204.000000 316.000000 S 204.000000 326.000000 194.000000 326.000000 L 128.000000 326.000000" fill="none" class="connection stroke-B1" style="stroke-width:2;" marker-end="url(#mk-3488378134)" mask="url(#d2-9807582)" /><text x="204.500000" y="309.000000" class="text-italic fill-N2" style="text-anchor:middle;font-size:16px">BO_ID -> D2_ID</text></g><mask id="d2-9807582" maskUnits="userSpaceOnUse" x="11" y="11" width="306" height="448">
|
||||
<rect x="11" y="11" width="306" height="448" fill="white"></rect>
|
||||
<rect x="115.000000" y="17.000000" width="98" height="36" fill="rgba(0,0,0,0.75)"></rect>
|
||||
<rect x="136.500000" y="67.000000" width="55" height="31" fill="rgba(0,0,0,0.75)"></rect>
|
||||
<rect x="105.000000" y="167.500000" width="38" height="21" fill="rgba(0,0,0,0.75)"></rect>
|
||||
<rect x="155.000000" y="293.000000" width="99" height="21" fill="black"></rect>
|
||||
</mask></svg></svg>
|
||||
|
After Width: | Height: | Size: 15 KiB |
377
e2etests/testdata/txtar/sequence-multiline-alignment/dagre/board.exp.json
generated
vendored
Normal file
|
|
@ -0,0 +1,377 @@
|
|||
{
|
||||
"name": "",
|
||||
"isFolderOnly": false,
|
||||
"fontFamily": "SourceSansPro",
|
||||
"shapes": [
|
||||
{
|
||||
"id": "a",
|
||||
"type": "rectangle",
|
||||
"pos": {
|
||||
"x": 12,
|
||||
"y": 52
|
||||
},
|
||||
"width": 100,
|
||||
"height": 66,
|
||||
"opacity": 1,
|
||||
"strokeDash": 0,
|
||||
"strokeWidth": 2,
|
||||
"borderRadius": 0,
|
||||
"fill": "B5",
|
||||
"stroke": "B1",
|
||||
"shadow": false,
|
||||
"3d": false,
|
||||
"multiple": false,
|
||||
"double-border": false,
|
||||
"tooltip": "",
|
||||
"link": "",
|
||||
"icon": null,
|
||||
"iconPosition": "",
|
||||
"blend": false,
|
||||
"fields": null,
|
||||
"methods": null,
|
||||
"columns": null,
|
||||
"label": "a",
|
||||
"fontSize": 16,
|
||||
"fontFamily": "DEFAULT",
|
||||
"language": "",
|
||||
"color": "N1",
|
||||
"italic": false,
|
||||
"bold": false,
|
||||
"underline": false,
|
||||
"labelWidth": 7,
|
||||
"labelHeight": 21,
|
||||
"labelPosition": "INSIDE_MIDDLE_CENTER",
|
||||
"zIndex": 0,
|
||||
"level": 1
|
||||
},
|
||||
{
|
||||
"id": "b",
|
||||
"type": "rectangle",
|
||||
"pos": {
|
||||
"x": 162,
|
||||
"y": 52
|
||||
},
|
||||
"width": 100,
|
||||
"height": 66,
|
||||
"opacity": 1,
|
||||
"strokeDash": 0,
|
||||
"strokeWidth": 2,
|
||||
"borderRadius": 0,
|
||||
"fill": "B5",
|
||||
"stroke": "B1",
|
||||
"shadow": false,
|
||||
"3d": false,
|
||||
"multiple": false,
|
||||
"double-border": false,
|
||||
"tooltip": "",
|
||||
"link": "",
|
||||
"icon": null,
|
||||
"iconPosition": "",
|
||||
"blend": false,
|
||||
"fields": null,
|
||||
"methods": null,
|
||||
"columns": null,
|
||||
"label": "b",
|
||||
"fontSize": 16,
|
||||
"fontFamily": "DEFAULT",
|
||||
"language": "",
|
||||
"color": "N1",
|
||||
"italic": false,
|
||||
"bold": false,
|
||||
"underline": false,
|
||||
"labelWidth": 8,
|
||||
"labelHeight": 21,
|
||||
"labelPosition": "INSIDE_MIDDLE_CENTER",
|
||||
"zIndex": 0,
|
||||
"level": 1
|
||||
},
|
||||
{
|
||||
"id": "a.req",
|
||||
"type": "rectangle",
|
||||
"pos": {
|
||||
"x": 56,
|
||||
"y": 528
|
||||
},
|
||||
"width": 12,
|
||||
"height": 30,
|
||||
"opacity": 1,
|
||||
"strokeDash": 0,
|
||||
"strokeWidth": 2,
|
||||
"borderRadius": 0,
|
||||
"fill": "B4",
|
||||
"stroke": "B1",
|
||||
"shadow": false,
|
||||
"3d": false,
|
||||
"multiple": false,
|
||||
"double-border": false,
|
||||
"tooltip": "",
|
||||
"link": "",
|
||||
"icon": null,
|
||||
"iconPosition": "",
|
||||
"blend": false,
|
||||
"fields": null,
|
||||
"methods": null,
|
||||
"columns": null,
|
||||
"label": "",
|
||||
"fontSize": 16,
|
||||
"fontFamily": "DEFAULT",
|
||||
"language": "",
|
||||
"color": "N1",
|
||||
"italic": false,
|
||||
"bold": false,
|
||||
"underline": false,
|
||||
"labelWidth": 21,
|
||||
"labelHeight": 21,
|
||||
"zIndex": 2,
|
||||
"level": 2
|
||||
}
|
||||
],
|
||||
"connections": [
|
||||
{
|
||||
"id": "(b -> b)[0]",
|
||||
"src": "b",
|
||||
"srcArrow": "none",
|
||||
"dst": "b",
|
||||
"dstArrow": "triangle",
|
||||
"opacity": 1,
|
||||
"strokeDash": 0,
|
||||
"strokeWidth": 2,
|
||||
"stroke": "B1",
|
||||
"borderRadius": 10,
|
||||
"label": "one\ntwo\nthree\nfour\nfive",
|
||||
"fontSize": 16,
|
||||
"fontFamily": "DEFAULT",
|
||||
"language": "",
|
||||
"color": "N2",
|
||||
"italic": true,
|
||||
"bold": false,
|
||||
"underline": false,
|
||||
"labelWidth": 35,
|
||||
"labelHeight": 85,
|
||||
"labelPosition": "INSIDE_MIDDLE_CENTER",
|
||||
"labelPercentage": 0,
|
||||
"route": [
|
||||
{
|
||||
"x": 212,
|
||||
"y": 188
|
||||
},
|
||||
{
|
||||
"x": 292,
|
||||
"y": 188
|
||||
},
|
||||
{
|
||||
"x": 292,
|
||||
"y": 315.5
|
||||
},
|
||||
{
|
||||
"x": 212,
|
||||
"y": 315.5
|
||||
}
|
||||
],
|
||||
"animated": false,
|
||||
"tooltip": "",
|
||||
"icon": null,
|
||||
"zIndex": 4
|
||||
},
|
||||
{
|
||||
"id": "(b -> b)[1]",
|
||||
"src": "b",
|
||||
"srcArrow": "none",
|
||||
"dst": "b",
|
||||
"dstArrow": "triangle",
|
||||
"opacity": 1,
|
||||
"strokeDash": 0,
|
||||
"strokeWidth": 2,
|
||||
"stroke": "B1",
|
||||
"borderRadius": 10,
|
||||
"label": "one\ntwo\nthree\nfour\nfive",
|
||||
"fontSize": 16,
|
||||
"fontFamily": "DEFAULT",
|
||||
"language": "",
|
||||
"color": "N2",
|
||||
"italic": true,
|
||||
"bold": false,
|
||||
"underline": false,
|
||||
"labelWidth": 35,
|
||||
"labelHeight": 85,
|
||||
"labelPosition": "INSIDE_MIDDLE_CENTER",
|
||||
"labelPercentage": 0,
|
||||
"route": [
|
||||
{
|
||||
"x": 212,
|
||||
"y": 363
|
||||
},
|
||||
{
|
||||
"x": 292,
|
||||
"y": 363
|
||||
},
|
||||
{
|
||||
"x": 292,
|
||||
"y": 490.5
|
||||
},
|
||||
{
|
||||
"x": 212,
|
||||
"y": 490.5
|
||||
}
|
||||
],
|
||||
"animated": false,
|
||||
"tooltip": "",
|
||||
"icon": null,
|
||||
"zIndex": 4
|
||||
},
|
||||
{
|
||||
"id": "(a.req -> b)[0]",
|
||||
"src": "a.req",
|
||||
"srcArrow": "none",
|
||||
"dst": "b",
|
||||
"dstArrow": "triangle",
|
||||
"opacity": 1,
|
||||
"strokeDash": 0,
|
||||
"strokeWidth": 2,
|
||||
"stroke": "B1",
|
||||
"borderRadius": 10,
|
||||
"label": "okay then",
|
||||
"fontSize": 16,
|
||||
"fontFamily": "DEFAULT",
|
||||
"language": "",
|
||||
"color": "N2",
|
||||
"italic": true,
|
||||
"bold": false,
|
||||
"underline": false,
|
||||
"labelWidth": 65,
|
||||
"labelHeight": 21,
|
||||
"labelPosition": "INSIDE_MIDDLE_CENTER",
|
||||
"labelPercentage": 0,
|
||||
"route": [
|
||||
{
|
||||
"x": 68,
|
||||
"y": 538
|
||||
},
|
||||
{
|
||||
"x": 212,
|
||||
"y": 538
|
||||
}
|
||||
],
|
||||
"animated": false,
|
||||
"tooltip": "",
|
||||
"icon": null,
|
||||
"zIndex": 4
|
||||
},
|
||||
{
|
||||
"id": "(a -- )[0]",
|
||||
"src": "a",
|
||||
"srcArrow": "none",
|
||||
"dst": "a-lifeline-end-2251863791",
|
||||
"dstArrow": "none",
|
||||
"opacity": 1,
|
||||
"strokeDash": 6,
|
||||
"strokeWidth": 2,
|
||||
"stroke": "B2",
|
||||
"borderRadius": 10,
|
||||
"label": "",
|
||||
"fontSize": 16,
|
||||
"fontFamily": "DEFAULT",
|
||||
"language": "",
|
||||
"color": "N2",
|
||||
"italic": true,
|
||||
"bold": false,
|
||||
"underline": false,
|
||||
"labelWidth": 0,
|
||||
"labelHeight": 0,
|
||||
"labelPosition": "",
|
||||
"labelPercentage": 0,
|
||||
"route": [
|
||||
{
|
||||
"x": 62,
|
||||
"y": 118
|
||||
},
|
||||
{
|
||||
"x": 62,
|
||||
"y": 608
|
||||
}
|
||||
],
|
||||
"animated": false,
|
||||
"tooltip": "",
|
||||
"icon": null,
|
||||
"zIndex": 1
|
||||
},
|
||||
{
|
||||
"id": "(b -- )[0]",
|
||||
"src": "b",
|
||||
"srcArrow": "none",
|
||||
"dst": "b-lifeline-end-668380428",
|
||||
"dstArrow": "none",
|
||||
"opacity": 1,
|
||||
"strokeDash": 6,
|
||||
"strokeWidth": 2,
|
||||
"stroke": "B2",
|
||||
"borderRadius": 10,
|
||||
"label": "",
|
||||
"fontSize": 16,
|
||||
"fontFamily": "DEFAULT",
|
||||
"language": "",
|
||||
"color": "N2",
|
||||
"italic": true,
|
||||
"bold": false,
|
||||
"underline": false,
|
||||
"labelWidth": 0,
|
||||
"labelHeight": 0,
|
||||
"labelPosition": "",
|
||||
"labelPercentage": 0,
|
||||
"route": [
|
||||
{
|
||||
"x": 212,
|
||||
"y": 118
|
||||
},
|
||||
{
|
||||
"x": 212,
|
||||
"y": 608
|
||||
}
|
||||
],
|
||||
"animated": false,
|
||||
"tooltip": "",
|
||||
"icon": null,
|
||||
"zIndex": 1
|
||||
}
|
||||
],
|
||||
"root": {
|
||||
"id": "",
|
||||
"type": "",
|
||||
"pos": {
|
||||
"x": 0,
|
||||
"y": 0
|
||||
},
|
||||
"width": 0,
|
||||
"height": 0,
|
||||
"opacity": 0,
|
||||
"strokeDash": 0,
|
||||
"strokeWidth": 0,
|
||||
"borderRadius": 0,
|
||||
"fill": "N7",
|
||||
"stroke": "",
|
||||
"shadow": false,
|
||||
"3d": false,
|
||||
"multiple": false,
|
||||
"double-border": false,
|
||||
"tooltip": "",
|
||||
"link": "",
|
||||
"icon": null,
|
||||
"iconPosition": "",
|
||||
"blend": false,
|
||||
"fields": null,
|
||||
"methods": null,
|
||||
"columns": null,
|
||||
"label": "",
|
||||
"fontSize": 0,
|
||||
"fontFamily": "",
|
||||
"language": "",
|
||||
"color": "",
|
||||
"italic": false,
|
||||
"bold": false,
|
||||
"underline": false,
|
||||
"labelWidth": 0,
|
||||
"labelHeight": 0,
|
||||
"zIndex": 0,
|
||||
"level": 0
|
||||
}
|
||||
}
|
||||
106
e2etests/testdata/txtar/sequence-multiline-alignment/dagre/sketch.exp.svg
vendored
Normal file
|
|
@ -0,0 +1,106 @@
|
|||
<?xml version="1.0" encoding="utf-8"?><svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" d2Version="v0.6.6-HEAD" preserveAspectRatio="xMinYMin meet" viewBox="0 0 299 558"><svg id="d2-svg" class="d2-520923942" width="299" height="558" viewBox="11 51 299 558"><rect x="11.000000" y="51.000000" width="299.000000" height="558.000000" rx="0.000000" class=" fill-N7" stroke-width="0" /><style type="text/css"><![CDATA[
|
||||
.d2-520923942 .text {
|
||||
font-family: "d2-520923942-font-regular";
|
||||
}
|
||||
@font-face {
|
||||
font-family: d2-520923942-font-regular;
|
||||
src: url("data:application/font-woff;base64,d09GRgABAAAAAAoEAAoAAAAAD+gAAguFAAAAAAAAAAAAAAAAAAAAAAAAAABPUy8yAAAA9AAAAGAAAABgXd/Vo2NtYXAAAAFUAAAAcQAAAI4COALoZ2x5ZgAAAcgAAAQIAAAFKPuIsJtoZWFkAAAF0AAAADYAAAA2G4Ue32hoZWEAAAYIAAAAJAAAACQKhAXVaG10eAAABiwAAABMAAAATCAIA5Rsb2NhAAAGeAAAACgAAAAoDHYN/m1heHAAAAagAAAAIAAAACAAKwD2bmFtZQAABsAAAAMjAAAIFAbDVU1wb3N0AAAJ5AAAAB0AAAAg/9EAMgADAgkBkAAFAAACigJYAAAASwKKAlgAAAFeADIBIwAAAgsFAwMEAwICBGAAAvcAAAADAAAAAAAAAABBREJPAEAAIP//Au7/BgAAA9gBESAAAZ8AAAAAAeYClAAAACAAA3icZMxNCgFxHIDh52/G92AWDjBXo4imqEnJ1iWQkKM5yU9m612+iwdJJqGQO2OulMlVlta2anuNo1MEKgsrG7WdxuF34xPveMUzHnGPW1zj0nr/JZ1W7urpGxgaGStMTM2UfAEAAP//AQAA//8oxRsRAAAAeJxklEtsG2UUhe/9Z+yxY6f2NGOPndSv+eNxnZIm9dgeGjs2cezUSePEcRLlnRIS6qgCJLygqlRRRBHthseiOxYglSUSQkgBxC4VwjxUhITIBiRWbkVZIJMddIxmnKYN7Gbzn/Ode+4dMMESAEmQW8CAFRxwHFwACh/iw6FIhHKqoqpUZNQI8twS/qK9izgeZ5NJ9kzuQe7KtWu4+Cq59fCFoTeq1a/WL1/W3mrc12J49z4QiLf28RNsQjf0AoiSnIgn1bgsU8nMRZJJJeZ28TRCzeZILKkmzGaX4N4dnnnnPf7Uyb4JX1DaHFoq5zlGmnHTDL2yEbOPj5Tn+cDTNCicdUdfXNF+HjrRl5MCNxzpgWgYCFRa+/g3qUMXBAFMkhyhHOUVF9f2EgyjRNzwd7ndGJXGgwyXq5DQ9MkLz6UujKWnU4XAMzSYtYd8MVLfXfRF3nx59pVMobpc3pSCrRMiAACB0619/Bab4IGA4aMHO7DgQm63EkuqotnMhAwrFEcuZbJb6trzSLTPTQtjNNXjC0x/h2z2rDJjH65Nl2uZq9udXmtp1cUnBT/KE6VpAEDwA2CW/NTugybURFx3ETmZSi6X4qL8s7lcYVzscx7vOZGvVvF2xlSaWLByWft6aVRbMzQqALhH6iDoGoez4CnfngNfqTC0FCudqzw1GE6FSX13KzSwsaZ9j9F8Rg5rH0CrBQUA+JTsEBl4ADDD8atwqN0gdbAb2rzSpXBdNMK5KjPMDyu3v1h+e4XUNT/CHe3X3y+99vjNHjYPeETlfzx5jqFTh0DYGKNHeQ7m/yc2wQE9R+Z/tGOX4EZHqprNVlPpi9nsxXS2VMpmpqbs6Vq5Ukuna5VyLZ2vzs5tb8/NVh+xrWNTT3nIJnLyYzBvMeoTnXbBERj1YmPxdLKjyLKxjFZvZ/O09rFAXgKxve16ZapiFCU8WooHU8PFyY7C9euhvk6/3SkM2JeL2Jkx3bw5qjX7z1jZDGcztM639vEuNvQ5GVrKgQavtG/mt1Jx9tSgnJJ0LmnSvrGGcW0vn4mcwiWte/LkIKDeC36NDegEUBily+3WI6ldCvPlx/OrNtHG2sSO1ZmPsKH90VuktNiLgtat5wAgO9iA0H/ePaFAGVnWMTjm/RtzRcsxjrU4refLk1bewloc3Lmp17fGrA4ra3F25LGh3ZNGJWlUQu8TX91oovlwuEC1f3TW1oDB2mPkjajtM1KPYB8jy06f3WkRrNGkw3ZnftPmtbE2oWOh/Bk/UPjRzI4QU6q/F+9pfwWKUqgYxM6HzcHJ/oNu4UNsANPe1UoFG3rW1jdkAlSyAzYA3vhDte/YEwh4PIEAmfB5PX6/x+uDfwEAAP//AQAA//+QyBgGAAEAAAACC4U7yjOBXw889QADA+gAAAAA2F2goQAAAADdZi82/jr+2whvA8gAAAADAAIAAAAAAAAAAQAAA9j+7wAACJj+Ov46CG8AAQAAAAAAAAAAAAAAAAAAABMCjQBZAMgAAAH4ADQCKQBSAfAALgEkAB4CIABSAPYARQHvAFICIwBSAh4ALgFbAFIBUgAYAiAASwHTAAwCzgAYAdMADAD2AFIAAP/JAAAALAAsAGQAmADMAO4BEAEcATYBWAGEAaQBygHsAggCQgJyAn4ClAABAAAAEwCMAAwAZgAHAAEAAAAAAAAAAAAAAAAABAADeJyclN1OG1cUhT8H221UNRcVisgNOpdtlYzdCKIErkwJilWEU4/TH6mqNHjGP2I8M/IMUKo+QK/7Fn2LXPU5+hBVr6uzvA02qhSBELDOnL33WWevtQ+wyb9sUKs/BP5q/mC4xnZzz/ADHjWfGt7guPG34fpKTIO48ZvhJl82+oY/4n39D8Mfs1P/2fBDtupHhj/heX3T8Kcbjn8MP2KH9wtcg5f8brjGFoXhB2zyk+ENHmM1a3Ue0zbc4DO2DTfZBgZMqUiZkjHGMWLKmHPmJJSEJMyZMiIhxtGlQ0qlrxmRkGP8v18jQirmRKo4ocKREpISUTKxir8qK+etThxpNbe9DhUTIk6VcUZEhiNnTE5GwpnqVFQU7NGiRclQfAsqSgJKpqQE5MwZ06LHEccMmDClxHGkSp5ZSM6Iiksine8swndmSEJGaazOyYjF04lfouwuxzh6FIpdrXy8VuEpju+U7bnliv2KQL9uhdn6uUs2ERfqZ6qupNq5lIIT7fpzO3wrXLGHu1d/1pl8uEex/leqfMq59I+lVCYmGc5t0SGUg0L3BMeB1l1CdeR7ugx4Q493DLTu0KdPhxMGdHmt3B59HF/T44RDZXSFF3tHcswJP+L4hq5ifO3E+rNQLOEXCnN3KY5z3WNGoZ575oHumuiGd1fYz1C+5o5SOUPNkY900i/TnEWMzRWFGM7Uy6U3SutfbI6Y6S5e25t9Pw0XNnvLKb4i1wx7ty44eeUWjD6kanDLM5f6CYiIyTlVxJCcGS0qrsT7LRHnpDgO1b03mpKKznWOP+dKLkmYiUGXTHXmFPobmW9C4z5c872ztyRWvmd6dn2r+5zi1Ksbjd6pe8u90LqcrCjQMlXzFTcNxTUz7yeaqVX+oXJLvW45z+iTSPVUN7j9DjwnoM0Ou+wz0TlD7VzYG9HWO9HmFfvqwRmJokZydWIVdgl4wS67vOLFWs0OhxzQY/8OHBdZPQ54fWtnXadlFWd1/hSbtvg6nl2vXt5br8/v4MsvNFE3L2Nf2vhuX1i1G/+fEDHzXNzW6p3cE4L/AAAA//8BAAD//wdbTDAAeJxiYGYAg//nGIwYsAAAAAAA//8BAAD//y8BAgMAAAA=");
|
||||
}
|
||||
.d2-520923942 .text-italic {
|
||||
font-family: "d2-520923942-font-italic";
|
||||
}
|
||||
@font-face {
|
||||
font-family: d2-520923942-font-italic;
|
||||
src: url("data:application/font-woff;base64,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");
|
||||
}]]></style><style type="text/css"><![CDATA[.shape {
|
||||
shape-rendering: geometricPrecision;
|
||||
stroke-linejoin: round;
|
||||
}
|
||||
.connection {
|
||||
stroke-linecap: round;
|
||||
stroke-linejoin: round;
|
||||
}
|
||||
.blend {
|
||||
mix-blend-mode: multiply;
|
||||
opacity: 0.5;
|
||||
}
|
||||
|
||||
.d2-520923942 .fill-N1{fill:#0A0F25;}
|
||||
.d2-520923942 .fill-N2{fill:#676C7E;}
|
||||
.d2-520923942 .fill-N3{fill:#9499AB;}
|
||||
.d2-520923942 .fill-N4{fill:#CFD2DD;}
|
||||
.d2-520923942 .fill-N5{fill:#DEE1EB;}
|
||||
.d2-520923942 .fill-N6{fill:#EEF1F8;}
|
||||
.d2-520923942 .fill-N7{fill:#FFFFFF;}
|
||||
.d2-520923942 .fill-B1{fill:#0D32B2;}
|
||||
.d2-520923942 .fill-B2{fill:#0D32B2;}
|
||||
.d2-520923942 .fill-B3{fill:#E3E9FD;}
|
||||
.d2-520923942 .fill-B4{fill:#E3E9FD;}
|
||||
.d2-520923942 .fill-B5{fill:#EDF0FD;}
|
||||
.d2-520923942 .fill-B6{fill:#F7F8FE;}
|
||||
.d2-520923942 .fill-AA2{fill:#4A6FF3;}
|
||||
.d2-520923942 .fill-AA4{fill:#EDF0FD;}
|
||||
.d2-520923942 .fill-AA5{fill:#F7F8FE;}
|
||||
.d2-520923942 .fill-AB4{fill:#EDF0FD;}
|
||||
.d2-520923942 .fill-AB5{fill:#F7F8FE;}
|
||||
.d2-520923942 .stroke-N1{stroke:#0A0F25;}
|
||||
.d2-520923942 .stroke-N2{stroke:#676C7E;}
|
||||
.d2-520923942 .stroke-N3{stroke:#9499AB;}
|
||||
.d2-520923942 .stroke-N4{stroke:#CFD2DD;}
|
||||
.d2-520923942 .stroke-N5{stroke:#DEE1EB;}
|
||||
.d2-520923942 .stroke-N6{stroke:#EEF1F8;}
|
||||
.d2-520923942 .stroke-N7{stroke:#FFFFFF;}
|
||||
.d2-520923942 .stroke-B1{stroke:#0D32B2;}
|
||||
.d2-520923942 .stroke-B2{stroke:#0D32B2;}
|
||||
.d2-520923942 .stroke-B3{stroke:#E3E9FD;}
|
||||
.d2-520923942 .stroke-B4{stroke:#E3E9FD;}
|
||||
.d2-520923942 .stroke-B5{stroke:#EDF0FD;}
|
||||
.d2-520923942 .stroke-B6{stroke:#F7F8FE;}
|
||||
.d2-520923942 .stroke-AA2{stroke:#4A6FF3;}
|
||||
.d2-520923942 .stroke-AA4{stroke:#EDF0FD;}
|
||||
.d2-520923942 .stroke-AA5{stroke:#F7F8FE;}
|
||||
.d2-520923942 .stroke-AB4{stroke:#EDF0FD;}
|
||||
.d2-520923942 .stroke-AB5{stroke:#F7F8FE;}
|
||||
.d2-520923942 .background-color-N1{background-color:#0A0F25;}
|
||||
.d2-520923942 .background-color-N2{background-color:#676C7E;}
|
||||
.d2-520923942 .background-color-N3{background-color:#9499AB;}
|
||||
.d2-520923942 .background-color-N4{background-color:#CFD2DD;}
|
||||
.d2-520923942 .background-color-N5{background-color:#DEE1EB;}
|
||||
.d2-520923942 .background-color-N6{background-color:#EEF1F8;}
|
||||
.d2-520923942 .background-color-N7{background-color:#FFFFFF;}
|
||||
.d2-520923942 .background-color-B1{background-color:#0D32B2;}
|
||||
.d2-520923942 .background-color-B2{background-color:#0D32B2;}
|
||||
.d2-520923942 .background-color-B3{background-color:#E3E9FD;}
|
||||
.d2-520923942 .background-color-B4{background-color:#E3E9FD;}
|
||||
.d2-520923942 .background-color-B5{background-color:#EDF0FD;}
|
||||
.d2-520923942 .background-color-B6{background-color:#F7F8FE;}
|
||||
.d2-520923942 .background-color-AA2{background-color:#4A6FF3;}
|
||||
.d2-520923942 .background-color-AA4{background-color:#EDF0FD;}
|
||||
.d2-520923942 .background-color-AA5{background-color:#F7F8FE;}
|
||||
.d2-520923942 .background-color-AB4{background-color:#EDF0FD;}
|
||||
.d2-520923942 .background-color-AB5{background-color:#F7F8FE;}
|
||||
.d2-520923942 .color-N1{color:#0A0F25;}
|
||||
.d2-520923942 .color-N2{color:#676C7E;}
|
||||
.d2-520923942 .color-N3{color:#9499AB;}
|
||||
.d2-520923942 .color-N4{color:#CFD2DD;}
|
||||
.d2-520923942 .color-N5{color:#DEE1EB;}
|
||||
.d2-520923942 .color-N6{color:#EEF1F8;}
|
||||
.d2-520923942 .color-N7{color:#FFFFFF;}
|
||||
.d2-520923942 .color-B1{color:#0D32B2;}
|
||||
.d2-520923942 .color-B2{color:#0D32B2;}
|
||||
.d2-520923942 .color-B3{color:#E3E9FD;}
|
||||
.d2-520923942 .color-B4{color:#E3E9FD;}
|
||||
.d2-520923942 .color-B5{color:#EDF0FD;}
|
||||
.d2-520923942 .color-B6{color:#F7F8FE;}
|
||||
.d2-520923942 .color-AA2{color:#4A6FF3;}
|
||||
.d2-520923942 .color-AA4{color:#EDF0FD;}
|
||||
.d2-520923942 .color-AA5{color:#F7F8FE;}
|
||||
.d2-520923942 .color-AB4{color:#EDF0FD;}
|
||||
.d2-520923942 .color-AB5{color:#F7F8FE;}.appendix text.text{fill:#0A0F25}.md{--color-fg-default:#0A0F25;--color-fg-muted:#676C7E;--color-fg-subtle:#9499AB;--color-canvas-default:#FFFFFF;--color-canvas-subtle:#EEF1F8;--color-border-default:#0D32B2;--color-border-muted:#0D32B2;--color-neutral-muted:#EEF1F8;--color-accent-fg:#0D32B2;--color-accent-emphasis:#0D32B2;--color-attention-subtle:#676C7E;--color-danger-fg:red;}.sketch-overlay-B1{fill:url(#streaks-darker);mix-blend-mode:lighten}.sketch-overlay-B2{fill:url(#streaks-darker);mix-blend-mode:lighten}.sketch-overlay-B3{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-B4{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-B5{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-B6{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-AA2{fill:url(#streaks-dark);mix-blend-mode:overlay}.sketch-overlay-AA4{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-AA5{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-AB4{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-AB5{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-N1{fill:url(#streaks-darker);mix-blend-mode:lighten}.sketch-overlay-N2{fill:url(#streaks-dark);mix-blend-mode:overlay}.sketch-overlay-N3{fill:url(#streaks-normal);mix-blend-mode:color-burn}.sketch-overlay-N4{fill:url(#streaks-normal);mix-blend-mode:color-burn}.sketch-overlay-N5{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-N6{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-N7{fill:url(#streaks-bright);mix-blend-mode:darken}.light-code{display: block}.dark-code{display: none}]]></style><g id="a"><g class="shape" ><rect x="12.000000" y="52.000000" width="100.000000" height="66.000000" class=" stroke-B1 fill-B5" style="stroke-width:2;" /></g><text x="62.000000" y="90.500000" class="text fill-N1" style="text-anchor:middle;font-size:16px">a</text></g><g id="b"><g class="shape" ><rect x="162.000000" y="52.000000" width="100.000000" height="66.000000" class=" stroke-B1 fill-B5" style="stroke-width:2;" /></g><text x="212.000000" y="90.500000" class="text fill-N1" style="text-anchor:middle;font-size:16px">b</text></g><g id="(a -- )[0]"><path d="M 62.000000 120.000000 L 62.000000 607.000000" fill="none" class="connection stroke-B2" style="stroke-width:2;stroke-dasharray:12.000000,11.838767;" mask="url(#d2-520923942)" /></g><g id="(b -- )[0]"><path d="M 212.000000 120.000000 L 212.000000 607.000000" fill="none" class="connection stroke-B2" style="stroke-width:2;stroke-dasharray:12.000000,11.838767;" mask="url(#d2-520923942)" /></g><g id="a.req"><g class="shape" ><rect x="56.000000" y="528.000000" width="12.000000" height="30.000000" class=" stroke-B1 fill-B4" style="stroke-width:2;" /></g></g><g id="(b -> b)[0]"><marker id="mk-3488378134" 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 points="0.000000,0.000000 10.000000,6.000000 0.000000,12.000000" class="connection fill-B1" stroke-width="2" /> </marker><path d="M 214.000000 188.000000 L 282.000000 188.000000 S 292.000000 188.000000 292.000000 198.000000 L 292.000000 305.500000 S 292.000000 315.500000 282.000000 315.500000 L 216.000000 315.500000" fill="none" class="connection stroke-B1" style="stroke-width:2;" marker-end="url(#mk-3488378134)" mask="url(#d2-520923942)" /><text x="292.500000" y="225.000000" class="text-italic fill-N2" style="text-anchor:middle;font-size:16px"><tspan x="292.500000" dy="0.000000">one</tspan><tspan x="292.500000" dy="17.000000">two</tspan><tspan x="292.500000" dy="17.000000">three</tspan><tspan x="292.500000" dy="17.000000">four</tspan><tspan x="292.500000" dy="17.000000">five</tspan></text></g><g id="(b -> b)[1]"><path d="M 214.000000 363.000000 L 282.000000 363.000000 S 292.000000 363.000000 292.000000 373.000000 L 292.000000 480.500000 S 292.000000 490.500000 282.000000 490.500000 L 216.000000 490.500000" fill="none" class="connection stroke-B1" style="stroke-width:2;" marker-end="url(#mk-3488378134)" mask="url(#d2-520923942)" /><text x="292.500000" y="400.000000" class="text-italic fill-N2" style="text-anchor:middle;font-size:16px"><tspan x="292.500000" dy="0.000000">one</tspan><tspan x="292.500000" dy="17.000000">two</tspan><tspan x="292.500000" dy="17.000000">three</tspan><tspan x="292.500000" dy="17.000000">four</tspan><tspan x="292.500000" dy="17.000000">five</tspan></text></g><g id="(a.req -> b)[0]"><path d="M 70.000000 538.000000 L 208.000000 538.000000" fill="none" class="connection stroke-B1" style="stroke-width:2;" marker-end="url(#mk-3488378134)" mask="url(#d2-520923942)" /><text x="140.500000" y="544.000000" class="text-italic fill-N2" style="text-anchor:middle;font-size:16px">okay then</text></g><mask id="d2-520923942" maskUnits="userSpaceOnUse" x="11" y="51" width="299" height="558">
|
||||
<rect x="11" y="51" width="299" height="558" fill="white"></rect>
|
||||
<rect x="58.500000" y="74.500000" width="7" height="21" fill="rgba(0,0,0,0.75)"></rect>
|
||||
<rect x="208.000000" y="74.500000" width="8" height="21" fill="rgba(0,0,0,0.75)"></rect>
|
||||
<rect x="275.000000" y="209.000000" width="35" height="85" fill="black"></rect>
|
||||
<rect x="275.000000" y="384.000000" width="35" height="85" fill="black"></rect>
|
||||
<rect x="108.000000" y="528.000000" width="65" height="21" fill="black"></rect>
|
||||
</mask></svg></svg>
|
||||
|
After Width: | Height: | Size: 16 KiB |
377
e2etests/testdata/txtar/sequence-multiline-alignment/elk/board.exp.json
generated
vendored
Normal file
|
|
@ -0,0 +1,377 @@
|
|||
{
|
||||
"name": "",
|
||||
"isFolderOnly": false,
|
||||
"fontFamily": "SourceSansPro",
|
||||
"shapes": [
|
||||
{
|
||||
"id": "a",
|
||||
"type": "rectangle",
|
||||
"pos": {
|
||||
"x": 12,
|
||||
"y": 52
|
||||
},
|
||||
"width": 100,
|
||||
"height": 66,
|
||||
"opacity": 1,
|
||||
"strokeDash": 0,
|
||||
"strokeWidth": 2,
|
||||
"borderRadius": 0,
|
||||
"fill": "B5",
|
||||
"stroke": "B1",
|
||||
"shadow": false,
|
||||
"3d": false,
|
||||
"multiple": false,
|
||||
"double-border": false,
|
||||
"tooltip": "",
|
||||
"link": "",
|
||||
"icon": null,
|
||||
"iconPosition": "",
|
||||
"blend": false,
|
||||
"fields": null,
|
||||
"methods": null,
|
||||
"columns": null,
|
||||
"label": "a",
|
||||
"fontSize": 16,
|
||||
"fontFamily": "DEFAULT",
|
||||
"language": "",
|
||||
"color": "N1",
|
||||
"italic": false,
|
||||
"bold": false,
|
||||
"underline": false,
|
||||
"labelWidth": 7,
|
||||
"labelHeight": 21,
|
||||
"labelPosition": "INSIDE_MIDDLE_CENTER",
|
||||
"zIndex": 0,
|
||||
"level": 1
|
||||
},
|
||||
{
|
||||
"id": "b",
|
||||
"type": "rectangle",
|
||||
"pos": {
|
||||
"x": 162,
|
||||
"y": 52
|
||||
},
|
||||
"width": 100,
|
||||
"height": 66,
|
||||
"opacity": 1,
|
||||
"strokeDash": 0,
|
||||
"strokeWidth": 2,
|
||||
"borderRadius": 0,
|
||||
"fill": "B5",
|
||||
"stroke": "B1",
|
||||
"shadow": false,
|
||||
"3d": false,
|
||||
"multiple": false,
|
||||
"double-border": false,
|
||||
"tooltip": "",
|
||||
"link": "",
|
||||
"icon": null,
|
||||
"iconPosition": "",
|
||||
"blend": false,
|
||||
"fields": null,
|
||||
"methods": null,
|
||||
"columns": null,
|
||||
"label": "b",
|
||||
"fontSize": 16,
|
||||
"fontFamily": "DEFAULT",
|
||||
"language": "",
|
||||
"color": "N1",
|
||||
"italic": false,
|
||||
"bold": false,
|
||||
"underline": false,
|
||||
"labelWidth": 8,
|
||||
"labelHeight": 21,
|
||||
"labelPosition": "INSIDE_MIDDLE_CENTER",
|
||||
"zIndex": 0,
|
||||
"level": 1
|
||||
},
|
||||
{
|
||||
"id": "a.req",
|
||||
"type": "rectangle",
|
||||
"pos": {
|
||||
"x": 56,
|
||||
"y": 528
|
||||
},
|
||||
"width": 12,
|
||||
"height": 30,
|
||||
"opacity": 1,
|
||||
"strokeDash": 0,
|
||||
"strokeWidth": 2,
|
||||
"borderRadius": 0,
|
||||
"fill": "B4",
|
||||
"stroke": "B1",
|
||||
"shadow": false,
|
||||
"3d": false,
|
||||
"multiple": false,
|
||||
"double-border": false,
|
||||
"tooltip": "",
|
||||
"link": "",
|
||||
"icon": null,
|
||||
"iconPosition": "",
|
||||
"blend": false,
|
||||
"fields": null,
|
||||
"methods": null,
|
||||
"columns": null,
|
||||
"label": "",
|
||||
"fontSize": 16,
|
||||
"fontFamily": "DEFAULT",
|
||||
"language": "",
|
||||
"color": "N1",
|
||||
"italic": false,
|
||||
"bold": false,
|
||||
"underline": false,
|
||||
"labelWidth": 21,
|
||||
"labelHeight": 21,
|
||||
"zIndex": 2,
|
||||
"level": 2
|
||||
}
|
||||
],
|
||||
"connections": [
|
||||
{
|
||||
"id": "(b -> b)[0]",
|
||||
"src": "b",
|
||||
"srcArrow": "none",
|
||||
"dst": "b",
|
||||
"dstArrow": "triangle",
|
||||
"opacity": 1,
|
||||
"strokeDash": 0,
|
||||
"strokeWidth": 2,
|
||||
"stroke": "B1",
|
||||
"borderRadius": 10,
|
||||
"label": "one\ntwo\nthree\nfour\nfive",
|
||||
"fontSize": 16,
|
||||
"fontFamily": "DEFAULT",
|
||||
"language": "",
|
||||
"color": "N2",
|
||||
"italic": true,
|
||||
"bold": false,
|
||||
"underline": false,
|
||||
"labelWidth": 35,
|
||||
"labelHeight": 85,
|
||||
"labelPosition": "INSIDE_MIDDLE_CENTER",
|
||||
"labelPercentage": 0,
|
||||
"route": [
|
||||
{
|
||||
"x": 212,
|
||||
"y": 188
|
||||
},
|
||||
{
|
||||
"x": 292,
|
||||
"y": 188
|
||||
},
|
||||
{
|
||||
"x": 292,
|
||||
"y": 315.5
|
||||
},
|
||||
{
|
||||
"x": 212,
|
||||
"y": 315.5
|
||||
}
|
||||
],
|
||||
"animated": false,
|
||||
"tooltip": "",
|
||||
"icon": null,
|
||||
"zIndex": 4
|
||||
},
|
||||
{
|
||||
"id": "(b -> b)[1]",
|
||||
"src": "b",
|
||||
"srcArrow": "none",
|
||||
"dst": "b",
|
||||
"dstArrow": "triangle",
|
||||
"opacity": 1,
|
||||
"strokeDash": 0,
|
||||
"strokeWidth": 2,
|
||||
"stroke": "B1",
|
||||
"borderRadius": 10,
|
||||
"label": "one\ntwo\nthree\nfour\nfive",
|
||||
"fontSize": 16,
|
||||
"fontFamily": "DEFAULT",
|
||||
"language": "",
|
||||
"color": "N2",
|
||||
"italic": true,
|
||||
"bold": false,
|
||||
"underline": false,
|
||||
"labelWidth": 35,
|
||||
"labelHeight": 85,
|
||||
"labelPosition": "INSIDE_MIDDLE_CENTER",
|
||||
"labelPercentage": 0,
|
||||
"route": [
|
||||
{
|
||||
"x": 212,
|
||||
"y": 363
|
||||
},
|
||||
{
|
||||
"x": 292,
|
||||
"y": 363
|
||||
},
|
||||
{
|
||||
"x": 292,
|
||||
"y": 490.5
|
||||
},
|
||||
{
|
||||
"x": 212,
|
||||
"y": 490.5
|
||||
}
|
||||
],
|
||||
"animated": false,
|
||||
"tooltip": "",
|
||||
"icon": null,
|
||||
"zIndex": 4
|
||||
},
|
||||
{
|
||||
"id": "(a.req -> b)[0]",
|
||||
"src": "a.req",
|
||||
"srcArrow": "none",
|
||||
"dst": "b",
|
||||
"dstArrow": "triangle",
|
||||
"opacity": 1,
|
||||
"strokeDash": 0,
|
||||
"strokeWidth": 2,
|
||||
"stroke": "B1",
|
||||
"borderRadius": 10,
|
||||
"label": "okay then",
|
||||
"fontSize": 16,
|
||||
"fontFamily": "DEFAULT",
|
||||
"language": "",
|
||||
"color": "N2",
|
||||
"italic": true,
|
||||
"bold": false,
|
||||
"underline": false,
|
||||
"labelWidth": 65,
|
||||
"labelHeight": 21,
|
||||
"labelPosition": "INSIDE_MIDDLE_CENTER",
|
||||
"labelPercentage": 0,
|
||||
"route": [
|
||||
{
|
||||
"x": 68,
|
||||
"y": 538
|
||||
},
|
||||
{
|
||||
"x": 212,
|
||||
"y": 538
|
||||
}
|
||||
],
|
||||
"animated": false,
|
||||
"tooltip": "",
|
||||
"icon": null,
|
||||
"zIndex": 4
|
||||
},
|
||||
{
|
||||
"id": "(a -- )[0]",
|
||||
"src": "a",
|
||||
"srcArrow": "none",
|
||||
"dst": "a-lifeline-end-2251863791",
|
||||
"dstArrow": "none",
|
||||
"opacity": 1,
|
||||
"strokeDash": 6,
|
||||
"strokeWidth": 2,
|
||||
"stroke": "B2",
|
||||
"borderRadius": 10,
|
||||
"label": "",
|
||||
"fontSize": 16,
|
||||
"fontFamily": "DEFAULT",
|
||||
"language": "",
|
||||
"color": "N2",
|
||||
"italic": true,
|
||||
"bold": false,
|
||||
"underline": false,
|
||||
"labelWidth": 0,
|
||||
"labelHeight": 0,
|
||||
"labelPosition": "",
|
||||
"labelPercentage": 0,
|
||||
"route": [
|
||||
{
|
||||
"x": 62,
|
||||
"y": 118
|
||||
},
|
||||
{
|
||||
"x": 62,
|
||||
"y": 608
|
||||
}
|
||||
],
|
||||
"animated": false,
|
||||
"tooltip": "",
|
||||
"icon": null,
|
||||
"zIndex": 1
|
||||
},
|
||||
{
|
||||
"id": "(b -- )[0]",
|
||||
"src": "b",
|
||||
"srcArrow": "none",
|
||||
"dst": "b-lifeline-end-668380428",
|
||||
"dstArrow": "none",
|
||||
"opacity": 1,
|
||||
"strokeDash": 6,
|
||||
"strokeWidth": 2,
|
||||
"stroke": "B2",
|
||||
"borderRadius": 10,
|
||||
"label": "",
|
||||
"fontSize": 16,
|
||||
"fontFamily": "DEFAULT",
|
||||
"language": "",
|
||||
"color": "N2",
|
||||
"italic": true,
|
||||
"bold": false,
|
||||
"underline": false,
|
||||
"labelWidth": 0,
|
||||
"labelHeight": 0,
|
||||
"labelPosition": "",
|
||||
"labelPercentage": 0,
|
||||
"route": [
|
||||
{
|
||||
"x": 212,
|
||||
"y": 118
|
||||
},
|
||||
{
|
||||
"x": 212,
|
||||
"y": 608
|
||||
}
|
||||
],
|
||||
"animated": false,
|
||||
"tooltip": "",
|
||||
"icon": null,
|
||||
"zIndex": 1
|
||||
}
|
||||
],
|
||||
"root": {
|
||||
"id": "",
|
||||
"type": "",
|
||||
"pos": {
|
||||
"x": 0,
|
||||
"y": 0
|
||||
},
|
||||
"width": 0,
|
||||
"height": 0,
|
||||
"opacity": 0,
|
||||
"strokeDash": 0,
|
||||
"strokeWidth": 0,
|
||||
"borderRadius": 0,
|
||||
"fill": "N7",
|
||||
"stroke": "",
|
||||
"shadow": false,
|
||||
"3d": false,
|
||||
"multiple": false,
|
||||
"double-border": false,
|
||||
"tooltip": "",
|
||||
"link": "",
|
||||
"icon": null,
|
||||
"iconPosition": "",
|
||||
"blend": false,
|
||||
"fields": null,
|
||||
"methods": null,
|
||||
"columns": null,
|
||||
"label": "",
|
||||
"fontSize": 0,
|
||||
"fontFamily": "",
|
||||
"language": "",
|
||||
"color": "",
|
||||
"italic": false,
|
||||
"bold": false,
|
||||
"underline": false,
|
||||
"labelWidth": 0,
|
||||
"labelHeight": 0,
|
||||
"zIndex": 0,
|
||||
"level": 0
|
||||
}
|
||||
}
|
||||
106
e2etests/testdata/txtar/sequence-multiline-alignment/elk/sketch.exp.svg
vendored
Normal file
|
|
@ -0,0 +1,106 @@
|
|||
<?xml version="1.0" encoding="utf-8"?><svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" d2Version="v0.6.6-HEAD" preserveAspectRatio="xMinYMin meet" viewBox="0 0 299 558"><svg id="d2-svg" class="d2-520923942" width="299" height="558" viewBox="11 51 299 558"><rect x="11.000000" y="51.000000" width="299.000000" height="558.000000" rx="0.000000" class=" fill-N7" stroke-width="0" /><style type="text/css"><![CDATA[
|
||||
.d2-520923942 .text {
|
||||
font-family: "d2-520923942-font-regular";
|
||||
}
|
||||
@font-face {
|
||||
font-family: d2-520923942-font-regular;
|
||||
src: url("data:application/font-woff;base64,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");
|
||||
}
|
||||
.d2-520923942 .text-italic {
|
||||
font-family: "d2-520923942-font-italic";
|
||||
}
|
||||
@font-face {
|
||||
font-family: d2-520923942-font-italic;
|
||||
src: url("data:application/font-woff;base64,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");
|
||||
}]]></style><style type="text/css"><![CDATA[.shape {
|
||||
shape-rendering: geometricPrecision;
|
||||
stroke-linejoin: round;
|
||||
}
|
||||
.connection {
|
||||
stroke-linecap: round;
|
||||
stroke-linejoin: round;
|
||||
}
|
||||
.blend {
|
||||
mix-blend-mode: multiply;
|
||||
opacity: 0.5;
|
||||
}
|
||||
|
||||
.d2-520923942 .fill-N1{fill:#0A0F25;}
|
||||
.d2-520923942 .fill-N2{fill:#676C7E;}
|
||||
.d2-520923942 .fill-N3{fill:#9499AB;}
|
||||
.d2-520923942 .fill-N4{fill:#CFD2DD;}
|
||||
.d2-520923942 .fill-N5{fill:#DEE1EB;}
|
||||
.d2-520923942 .fill-N6{fill:#EEF1F8;}
|
||||
.d2-520923942 .fill-N7{fill:#FFFFFF;}
|
||||
.d2-520923942 .fill-B1{fill:#0D32B2;}
|
||||
.d2-520923942 .fill-B2{fill:#0D32B2;}
|
||||
.d2-520923942 .fill-B3{fill:#E3E9FD;}
|
||||
.d2-520923942 .fill-B4{fill:#E3E9FD;}
|
||||
.d2-520923942 .fill-B5{fill:#EDF0FD;}
|
||||
.d2-520923942 .fill-B6{fill:#F7F8FE;}
|
||||
.d2-520923942 .fill-AA2{fill:#4A6FF3;}
|
||||
.d2-520923942 .fill-AA4{fill:#EDF0FD;}
|
||||
.d2-520923942 .fill-AA5{fill:#F7F8FE;}
|
||||
.d2-520923942 .fill-AB4{fill:#EDF0FD;}
|
||||
.d2-520923942 .fill-AB5{fill:#F7F8FE;}
|
||||
.d2-520923942 .stroke-N1{stroke:#0A0F25;}
|
||||
.d2-520923942 .stroke-N2{stroke:#676C7E;}
|
||||
.d2-520923942 .stroke-N3{stroke:#9499AB;}
|
||||
.d2-520923942 .stroke-N4{stroke:#CFD2DD;}
|
||||
.d2-520923942 .stroke-N5{stroke:#DEE1EB;}
|
||||
.d2-520923942 .stroke-N6{stroke:#EEF1F8;}
|
||||
.d2-520923942 .stroke-N7{stroke:#FFFFFF;}
|
||||
.d2-520923942 .stroke-B1{stroke:#0D32B2;}
|
||||
.d2-520923942 .stroke-B2{stroke:#0D32B2;}
|
||||
.d2-520923942 .stroke-B3{stroke:#E3E9FD;}
|
||||
.d2-520923942 .stroke-B4{stroke:#E3E9FD;}
|
||||
.d2-520923942 .stroke-B5{stroke:#EDF0FD;}
|
||||
.d2-520923942 .stroke-B6{stroke:#F7F8FE;}
|
||||
.d2-520923942 .stroke-AA2{stroke:#4A6FF3;}
|
||||
.d2-520923942 .stroke-AA4{stroke:#EDF0FD;}
|
||||
.d2-520923942 .stroke-AA5{stroke:#F7F8FE;}
|
||||
.d2-520923942 .stroke-AB4{stroke:#EDF0FD;}
|
||||
.d2-520923942 .stroke-AB5{stroke:#F7F8FE;}
|
||||
.d2-520923942 .background-color-N1{background-color:#0A0F25;}
|
||||
.d2-520923942 .background-color-N2{background-color:#676C7E;}
|
||||
.d2-520923942 .background-color-N3{background-color:#9499AB;}
|
||||
.d2-520923942 .background-color-N4{background-color:#CFD2DD;}
|
||||
.d2-520923942 .background-color-N5{background-color:#DEE1EB;}
|
||||
.d2-520923942 .background-color-N6{background-color:#EEF1F8;}
|
||||
.d2-520923942 .background-color-N7{background-color:#FFFFFF;}
|
||||
.d2-520923942 .background-color-B1{background-color:#0D32B2;}
|
||||
.d2-520923942 .background-color-B2{background-color:#0D32B2;}
|
||||
.d2-520923942 .background-color-B3{background-color:#E3E9FD;}
|
||||
.d2-520923942 .background-color-B4{background-color:#E3E9FD;}
|
||||
.d2-520923942 .background-color-B5{background-color:#EDF0FD;}
|
||||
.d2-520923942 .background-color-B6{background-color:#F7F8FE;}
|
||||
.d2-520923942 .background-color-AA2{background-color:#4A6FF3;}
|
||||
.d2-520923942 .background-color-AA4{background-color:#EDF0FD;}
|
||||
.d2-520923942 .background-color-AA5{background-color:#F7F8FE;}
|
||||
.d2-520923942 .background-color-AB4{background-color:#EDF0FD;}
|
||||
.d2-520923942 .background-color-AB5{background-color:#F7F8FE;}
|
||||
.d2-520923942 .color-N1{color:#0A0F25;}
|
||||
.d2-520923942 .color-N2{color:#676C7E;}
|
||||
.d2-520923942 .color-N3{color:#9499AB;}
|
||||
.d2-520923942 .color-N4{color:#CFD2DD;}
|
||||
.d2-520923942 .color-N5{color:#DEE1EB;}
|
||||
.d2-520923942 .color-N6{color:#EEF1F8;}
|
||||
.d2-520923942 .color-N7{color:#FFFFFF;}
|
||||
.d2-520923942 .color-B1{color:#0D32B2;}
|
||||
.d2-520923942 .color-B2{color:#0D32B2;}
|
||||
.d2-520923942 .color-B3{color:#E3E9FD;}
|
||||
.d2-520923942 .color-B4{color:#E3E9FD;}
|
||||
.d2-520923942 .color-B5{color:#EDF0FD;}
|
||||
.d2-520923942 .color-B6{color:#F7F8FE;}
|
||||
.d2-520923942 .color-AA2{color:#4A6FF3;}
|
||||
.d2-520923942 .color-AA4{color:#EDF0FD;}
|
||||
.d2-520923942 .color-AA5{color:#F7F8FE;}
|
||||
.d2-520923942 .color-AB4{color:#EDF0FD;}
|
||||
.d2-520923942 .color-AB5{color:#F7F8FE;}.appendix text.text{fill:#0A0F25}.md{--color-fg-default:#0A0F25;--color-fg-muted:#676C7E;--color-fg-subtle:#9499AB;--color-canvas-default:#FFFFFF;--color-canvas-subtle:#EEF1F8;--color-border-default:#0D32B2;--color-border-muted:#0D32B2;--color-neutral-muted:#EEF1F8;--color-accent-fg:#0D32B2;--color-accent-emphasis:#0D32B2;--color-attention-subtle:#676C7E;--color-danger-fg:red;}.sketch-overlay-B1{fill:url(#streaks-darker);mix-blend-mode:lighten}.sketch-overlay-B2{fill:url(#streaks-darker);mix-blend-mode:lighten}.sketch-overlay-B3{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-B4{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-B5{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-B6{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-AA2{fill:url(#streaks-dark);mix-blend-mode:overlay}.sketch-overlay-AA4{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-AA5{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-AB4{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-AB5{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-N1{fill:url(#streaks-darker);mix-blend-mode:lighten}.sketch-overlay-N2{fill:url(#streaks-dark);mix-blend-mode:overlay}.sketch-overlay-N3{fill:url(#streaks-normal);mix-blend-mode:color-burn}.sketch-overlay-N4{fill:url(#streaks-normal);mix-blend-mode:color-burn}.sketch-overlay-N5{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-N6{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-N7{fill:url(#streaks-bright);mix-blend-mode:darken}.light-code{display: block}.dark-code{display: none}]]></style><g id="a"><g class="shape" ><rect x="12.000000" y="52.000000" width="100.000000" height="66.000000" class=" stroke-B1 fill-B5" style="stroke-width:2;" /></g><text x="62.000000" y="90.500000" class="text fill-N1" style="text-anchor:middle;font-size:16px">a</text></g><g id="b"><g class="shape" ><rect x="162.000000" y="52.000000" width="100.000000" height="66.000000" class=" stroke-B1 fill-B5" style="stroke-width:2;" /></g><text x="212.000000" y="90.500000" class="text fill-N1" style="text-anchor:middle;font-size:16px">b</text></g><g id="(a -- )[0]"><path d="M 62.000000 120.000000 L 62.000000 607.000000" fill="none" class="connection stroke-B2" style="stroke-width:2;stroke-dasharray:12.000000,11.838767;" mask="url(#d2-520923942)" /></g><g id="(b -- )[0]"><path d="M 212.000000 120.000000 L 212.000000 607.000000" fill="none" class="connection stroke-B2" style="stroke-width:2;stroke-dasharray:12.000000,11.838767;" mask="url(#d2-520923942)" /></g><g id="a.req"><g class="shape" ><rect x="56.000000" y="528.000000" width="12.000000" height="30.000000" class=" stroke-B1 fill-B4" style="stroke-width:2;" /></g></g><g id="(b -> b)[0]"><marker id="mk-3488378134" 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 points="0.000000,0.000000 10.000000,6.000000 0.000000,12.000000" class="connection fill-B1" stroke-width="2" /> </marker><path d="M 214.000000 188.000000 L 282.000000 188.000000 S 292.000000 188.000000 292.000000 198.000000 L 292.000000 305.500000 S 292.000000 315.500000 282.000000 315.500000 L 216.000000 315.500000" fill="none" class="connection stroke-B1" style="stroke-width:2;" marker-end="url(#mk-3488378134)" mask="url(#d2-520923942)" /><text x="292.500000" y="225.000000" class="text-italic fill-N2" style="text-anchor:middle;font-size:16px"><tspan x="292.500000" dy="0.000000">one</tspan><tspan x="292.500000" dy="17.000000">two</tspan><tspan x="292.500000" dy="17.000000">three</tspan><tspan x="292.500000" dy="17.000000">four</tspan><tspan x="292.500000" dy="17.000000">five</tspan></text></g><g id="(b -> b)[1]"><path d="M 214.000000 363.000000 L 282.000000 363.000000 S 292.000000 363.000000 292.000000 373.000000 L 292.000000 480.500000 S 292.000000 490.500000 282.000000 490.500000 L 216.000000 490.500000" fill="none" class="connection stroke-B1" style="stroke-width:2;" marker-end="url(#mk-3488378134)" mask="url(#d2-520923942)" /><text x="292.500000" y="400.000000" class="text-italic fill-N2" style="text-anchor:middle;font-size:16px"><tspan x="292.500000" dy="0.000000">one</tspan><tspan x="292.500000" dy="17.000000">two</tspan><tspan x="292.500000" dy="17.000000">three</tspan><tspan x="292.500000" dy="17.000000">four</tspan><tspan x="292.500000" dy="17.000000">five</tspan></text></g><g id="(a.req -> b)[0]"><path d="M 70.000000 538.000000 L 208.000000 538.000000" fill="none" class="connection stroke-B1" style="stroke-width:2;" marker-end="url(#mk-3488378134)" mask="url(#d2-520923942)" /><text x="140.500000" y="544.000000" class="text-italic fill-N2" style="text-anchor:middle;font-size:16px">okay then</text></g><mask id="d2-520923942" maskUnits="userSpaceOnUse" x="11" y="51" width="299" height="558">
|
||||
<rect x="11" y="51" width="299" height="558" fill="white"></rect>
|
||||
<rect x="58.500000" y="74.500000" width="7" height="21" fill="rgba(0,0,0,0.75)"></rect>
|
||||
<rect x="208.000000" y="74.500000" width="8" height="21" fill="rgba(0,0,0,0.75)"></rect>
|
||||
<rect x="275.000000" y="209.000000" width="35" height="85" fill="black"></rect>
|
||||
<rect x="275.000000" y="384.000000" width="35" height="85" fill="black"></rect>
|
||||
<rect x="108.000000" y="528.000000" width="65" height="21" fill="black"></rect>
|
||||
</mask></svg></svg>
|
||||
|
After Width: | Height: | Size: 16 KiB |
24
e2etests/testdata/txtar/sequence-multiline-self-reference/dagre/board.exp.json
generated
vendored
|
|
@ -159,19 +159,19 @@
|
|||
"route": [
|
||||
{
|
||||
"x": 62,
|
||||
"y": 286
|
||||
"y": 331
|
||||
},
|
||||
{
|
||||
"x": 142,
|
||||
"y": 286
|
||||
"y": 331
|
||||
},
|
||||
{
|
||||
"x": 142,
|
||||
"y": 341.5
|
||||
"y": 386.5
|
||||
},
|
||||
{
|
||||
"x": 62,
|
||||
"y": 341.5
|
||||
"y": 386.5
|
||||
}
|
||||
],
|
||||
"animated": false,
|
||||
|
|
@ -205,11 +205,11 @@
|
|||
"route": [
|
||||
{
|
||||
"x": 62,
|
||||
"y": 368
|
||||
"y": 458
|
||||
},
|
||||
{
|
||||
"x": 212,
|
||||
"y": 368
|
||||
"y": 458
|
||||
}
|
||||
],
|
||||
"animated": false,
|
||||
|
|
@ -243,19 +243,19 @@
|
|||
"route": [
|
||||
{
|
||||
"x": 212,
|
||||
"y": 438
|
||||
"y": 528
|
||||
},
|
||||
{
|
||||
"x": 292,
|
||||
"y": 438
|
||||
"y": 528
|
||||
},
|
||||
{
|
||||
"x": 292,
|
||||
"y": 517.5
|
||||
"y": 607.5
|
||||
},
|
||||
{
|
||||
"x": 212,
|
||||
"y": 517.5
|
||||
"y": 607.5
|
||||
}
|
||||
],
|
||||
"animated": false,
|
||||
|
|
@ -293,7 +293,7 @@
|
|||
},
|
||||
{
|
||||
"x": 62,
|
||||
"y": 587.5
|
||||
"y": 677.5
|
||||
}
|
||||
],
|
||||
"animated": false,
|
||||
|
|
@ -331,7 +331,7 @@
|
|||
},
|
||||
{
|
||||
"x": 212,
|
||||
"y": 587.5
|
||||
"y": 677.5
|
||||
}
|
||||
],
|
||||
"animated": false,
|
||||
|
|
|
|||
|
Before Width: | Height: | Size: 18 KiB After Width: | Height: | Size: 18 KiB |
24
e2etests/testdata/txtar/sequence-multiline-self-reference/elk/board.exp.json
generated
vendored
|
|
@ -159,19 +159,19 @@
|
|||
"route": [
|
||||
{
|
||||
"x": 62,
|
||||
"y": 286
|
||||
"y": 331
|
||||
},
|
||||
{
|
||||
"x": 142,
|
||||
"y": 286
|
||||
"y": 331
|
||||
},
|
||||
{
|
||||
"x": 142,
|
||||
"y": 341.5
|
||||
"y": 386.5
|
||||
},
|
||||
{
|
||||
"x": 62,
|
||||
"y": 341.5
|
||||
"y": 386.5
|
||||
}
|
||||
],
|
||||
"animated": false,
|
||||
|
|
@ -205,11 +205,11 @@
|
|||
"route": [
|
||||
{
|
||||
"x": 62,
|
||||
"y": 368
|
||||
"y": 458
|
||||
},
|
||||
{
|
||||
"x": 212,
|
||||
"y": 368
|
||||
"y": 458
|
||||
}
|
||||
],
|
||||
"animated": false,
|
||||
|
|
@ -243,19 +243,19 @@
|
|||
"route": [
|
||||
{
|
||||
"x": 212,
|
||||
"y": 438
|
||||
"y": 528
|
||||
},
|
||||
{
|
||||
"x": 292,
|
||||
"y": 438
|
||||
"y": 528
|
||||
},
|
||||
{
|
||||
"x": 292,
|
||||
"y": 517.5
|
||||
"y": 607.5
|
||||
},
|
||||
{
|
||||
"x": 212,
|
||||
"y": 517.5
|
||||
"y": 607.5
|
||||
}
|
||||
],
|
||||
"animated": false,
|
||||
|
|
@ -293,7 +293,7 @@
|
|||
},
|
||||
{
|
||||
"x": 62,
|
||||
"y": 587.5
|
||||
"y": 677.5
|
||||
}
|
||||
],
|
||||
"animated": false,
|
||||
|
|
@ -331,7 +331,7 @@
|
|||
},
|
||||
{
|
||||
"x": 212,
|
||||
"y": 587.5
|
||||
"y": 677.5
|
||||
}
|
||||
],
|
||||
"animated": false,
|
||||
|
|
|
|||
|
Before Width: | Height: | Size: 18 KiB After Width: | Height: | Size: 18 KiB |
|
|
@ -319,3 +319,19 @@ backend.client: {
|
|||
shape: sequence_diagram
|
||||
client -> client: BO_ID -> D2_ID
|
||||
}
|
||||
|
||||
-- sequence-bounding-box --
|
||||
backend.client: {
|
||||
shape: sequence_diagram
|
||||
client -> client: BO_ID -> D2_ID
|
||||
}
|
||||
|
||||
-- sequence-multiline-alignment --
|
||||
shape: sequence_diagram
|
||||
a
|
||||
b
|
||||
|
||||
b -> b: one\ntwo\nthree\nfour\nfive
|
||||
b -> b: one\ntwo\nthree\nfour\nfive
|
||||
|
||||
a.req -> b: okay then
|
||||
|
|
|
|||