diff --git a/ci/release/changelogs/next.md b/ci/release/changelogs/next.md index 58be7d1766..0d8e40dfa3 100644 --- a/ci/release/changelogs/next.md +++ b/ci/release/changelogs/next.md @@ -2,6 +2,8 @@ #### Improvements 🧹 +- ELK nodes with > 1 connection grow to ensure padding around ports [#981](https://github.com/terrastruct/d2/pull/981) + #### Bugfixes ⛑️ - Accept absolute paths again on the CLI. [#979](https://github.com/terrastruct/d2/pull/979) diff --git a/d2layouts/d2elklayout/layout.go b/d2layouts/d2elklayout/layout.go index 9c55caf9cb..53e0c43952 100644 --- a/d2layouts/d2elklayout/layout.go +++ b/d2layouts/d2elklayout/layout.go @@ -94,6 +94,8 @@ var DefaultOpts = ConfigurableOpts{ SelfLoopSpacing: 50.0, } +var port_spacing = 40. + type elkOpts struct { Thoroughness int `json:"elk.layered.thoroughness,omitempty"` EdgeEdgeBetweenLayersSpacing int `json:"elk.layered.spacing.edgeEdgeBetweenLayers,omitempty"` @@ -176,6 +178,25 @@ func Layout(ctx context.Context, g *d2graph.Graph, opts *ConfigurableOpts) (err } walk(g.Root, nil, func(obj, parent *d2graph.Object) { + incoming := 0. + outgoing := 0. + for _, e := range g.Edges { + if e.Src == obj { + outgoing++ + } + if e.Dst == obj { + incoming++ + } + } + if incoming >= 2 || outgoing >= 2 { + switch g.Root.Attributes.Direction.Value { + case "right", "left": + obj.Height = math.Max(obj.Height, math.Max(incoming, outgoing)*port_spacing) + default: + obj.Width = math.Max(obj.Width, math.Max(incoming, outgoing)*port_spacing) + } + } + height := obj.Height width := obj.Width if obj.LabelWidth != nil && obj.LabelHeight != nil { diff --git a/e2etests-cli/testdata/TestCLI_E2E/internal_linked_pdf.exp.pdf b/e2etests-cli/testdata/TestCLI_E2E/internal_linked_pdf.exp.pdf index 3f3ede9eec..7c44716266 100644 Binary files a/e2etests-cli/testdata/TestCLI_E2E/internal_linked_pdf.exp.pdf and b/e2etests-cli/testdata/TestCLI_E2E/internal_linked_pdf.exp.pdf differ diff --git a/e2etests/testdata/regression/dagre_special_ids/elk/board.exp.json b/e2etests/testdata/regression/dagre_special_ids/elk/board.exp.json index 060580215a..a0c352ede4 100644 --- a/e2etests/testdata/regression/dagre_special_ids/elk/board.exp.json +++ b/e2etests/testdata/regression/dagre_special_ids/elk/board.exp.json @@ -171,10 +171,10 @@ "id": "there", "type": "rectangle", "pos": { - "x": 475, + "x": 457, "y": 174 }, - "width": 83, + "width": 120, "height": 66, "opacity": 1, "strokeDash": 0, @@ -327,11 +327,11 @@ "y": 134 }, { - "x": 496.25, + "x": 487, "y": 134 }, { - "x": 496.25, + "x": 487, "y": 174 } ], @@ -415,11 +415,11 @@ "y": 134 }, { - "x": 537.75, + "x": 547, "y": 134 }, { - "x": 537.75, + "x": 547, "y": 174 } ], diff --git a/e2etests/testdata/regression/dagre_special_ids/elk/sketch.exp.svg b/e2etests/testdata/regression/dagre_special_ids/elk/sketch.exp.svg index 3a3d87745a..038d710b0f 100644 --- a/e2etests/testdata/regression/dagre_special_ids/elk/sketch.exp.svg +++ b/e2etests/testdata/regression/dagre_special_ids/elk/sketch.exp.svg @@ -17,7 +17,7 @@ mix-blend-mode: multiply; opacity: 0.5; } -.fill-N1{fill:#0A0F25;}.fill-N2{fill:#676C7E;}.fill-N3{fill:#9499AB;}.fill-N4{fill:#CFD2DD;}.fill-N5{fill:#DEE1EB;}.fill-N6{fill:#EEF1F8;}.fill-N7{fill:#FFFFFF;}.fill-B1{fill:#0D32B2;}.fill-B2{fill:#0D32B2;}.fill-B3{fill:#E3E9FD;}.fill-B4{fill:#E3E9FD;}.fill-B5{fill:#EDF0FD;}.fill-B6{fill:#F7F8FE;}.fill-AA2{fill:#4A6FF3;}.fill-AA4{fill:#EDF0FD;}.fill-AA5{fill:#F7F8FE;}.fill-AB4{fill:#EDF0FD;}.fill-AB5{fill:#F7F8FE;}.stroke-N1{stroke:#0A0F25;}.stroke-N2{stroke:#676C7E;}.stroke-N3{stroke:#9499AB;}.stroke-N4{stroke:#CFD2DD;}.stroke-N5{stroke:#DEE1EB;}.stroke-N6{stroke:#EEF1F8;}.stroke-N7{stroke:#FFFFFF;}.stroke-B1{stroke:#0D32B2;}.stroke-B2{stroke:#0D32B2;}.stroke-B3{stroke:#E3E9FD;}.stroke-B4{stroke:#E3E9FD;}.stroke-B5{stroke:#EDF0FD;}.stroke-B6{stroke:#F7F8FE;}.stroke-AA2{stroke:#4A6FF3;}.stroke-AA4{stroke:#EDF0FD;}.stroke-AA5{stroke:#F7F8FE;}.stroke-AB4{stroke:#EDF0FD;}.stroke-AB5{stroke:#F7F8FE;}.background-color-N1{background-color:#0A0F25;}.background-color-N2{background-color:#676C7E;}.background-color-N3{background-color:#9499AB;}.background-color-N4{background-color:#CFD2DD;}.background-color-N5{background-color:#DEE1EB;}.background-color-N6{background-color:#EEF1F8;}.background-color-N7{background-color:#FFFFFF;}.background-color-B1{background-color:#0D32B2;}.background-color-B2{background-color:#0D32B2;}.background-color-B3{background-color:#E3E9FD;}.background-color-B4{background-color:#E3E9FD;}.background-color-B5{background-color:#EDF0FD;}.background-color-B6{background-color:#F7F8FE;}.background-color-AA2{background-color:#4A6FF3;}.background-color-AA4{background-color:#EDF0FD;}.background-color-AA5{background-color:#F7F8FE;}.background-color-AB4{background-color:#EDF0FD;}.background-color-AB5{background-color:#F7F8FE;}.color-N1{color:#0A0F25;}.color-N2{color:#676C7E;}.color-N3{color:#9499AB;}.color-N4{color:#CFD2DD;}.color-N5{color:#DEE1EB;}.color-N6{color:#EEF1F8;}.color-N7{color:#FFFFFF;}.color-B1{color:#0D32B2;}.color-B2{color:#0D32B2;}.color-B3{color:#E3E9FD;}.color-B4{color:#E3E9FD;}.color-B5{color:#EDF0FD;}.color-B6{color:#F7F8FE;}.color-AA2{color:#4A6FF3;}.color-AA4{color:#EDF0FD;}.color-AA5{color:#F7F8FE;}.color-AB4{color:#EDF0FD;}.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}]]>ninetynineeighty eightseventy sevena\yodetherea\"odea\node +.fill-N1{fill:#0A0F25;}.fill-N2{fill:#676C7E;}.fill-N3{fill:#9499AB;}.fill-N4{fill:#CFD2DD;}.fill-N5{fill:#DEE1EB;}.fill-N6{fill:#EEF1F8;}.fill-N7{fill:#FFFFFF;}.fill-B1{fill:#0D32B2;}.fill-B2{fill:#0D32B2;}.fill-B3{fill:#E3E9FD;}.fill-B4{fill:#E3E9FD;}.fill-B5{fill:#EDF0FD;}.fill-B6{fill:#F7F8FE;}.fill-AA2{fill:#4A6FF3;}.fill-AA4{fill:#EDF0FD;}.fill-AA5{fill:#F7F8FE;}.fill-AB4{fill:#EDF0FD;}.fill-AB5{fill:#F7F8FE;}.stroke-N1{stroke:#0A0F25;}.stroke-N2{stroke:#676C7E;}.stroke-N3{stroke:#9499AB;}.stroke-N4{stroke:#CFD2DD;}.stroke-N5{stroke:#DEE1EB;}.stroke-N6{stroke:#EEF1F8;}.stroke-N7{stroke:#FFFFFF;}.stroke-B1{stroke:#0D32B2;}.stroke-B2{stroke:#0D32B2;}.stroke-B3{stroke:#E3E9FD;}.stroke-B4{stroke:#E3E9FD;}.stroke-B5{stroke:#EDF0FD;}.stroke-B6{stroke:#F7F8FE;}.stroke-AA2{stroke:#4A6FF3;}.stroke-AA4{stroke:#EDF0FD;}.stroke-AA5{stroke:#F7F8FE;}.stroke-AB4{stroke:#EDF0FD;}.stroke-AB5{stroke:#F7F8FE;}.background-color-N1{background-color:#0A0F25;}.background-color-N2{background-color:#676C7E;}.background-color-N3{background-color:#9499AB;}.background-color-N4{background-color:#CFD2DD;}.background-color-N5{background-color:#DEE1EB;}.background-color-N6{background-color:#EEF1F8;}.background-color-N7{background-color:#FFFFFF;}.background-color-B1{background-color:#0D32B2;}.background-color-B2{background-color:#0D32B2;}.background-color-B3{background-color:#E3E9FD;}.background-color-B4{background-color:#E3E9FD;}.background-color-B5{background-color:#EDF0FD;}.background-color-B6{background-color:#F7F8FE;}.background-color-AA2{background-color:#4A6FF3;}.background-color-AA4{background-color:#EDF0FD;}.background-color-AA5{background-color:#F7F8FE;}.background-color-AB4{background-color:#EDF0FD;}.background-color-AB5{background-color:#F7F8FE;}.color-N1{color:#0A0F25;}.color-N2{color:#676C7E;}.color-N3{color:#9499AB;}.color-N4{color:#CFD2DD;}.color-N5{color:#DEE1EB;}.color-N6{color:#EEF1F8;}.color-N7{color:#FFFFFF;}.color-B1{color:#0D32B2;}.color-B2{color:#0D32B2;}.color-B3{color:#E3E9FD;}.color-B4{color:#E3E9FD;}.color-B5{color:#EDF0FD;}.color-B6{color:#F7F8FE;}.color-AA2{color:#4A6FF3;}.color-AA4{color:#EDF0FD;}.color-AA5{color:#F7F8FE;}.color-AB4{color:#EDF0FD;}.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}]]>ninetynineeighty eightseventy sevena\yodetherea\"odea\node \ No newline at end of file diff --git a/e2etests/testdata/regression/unconnected/elk/board.exp.json b/e2etests/testdata/regression/unconnected/elk/board.exp.json index 701b17940d..68b550d1e5 100644 --- a/e2etests/testdata/regression/unconnected/elk/board.exp.json +++ b/e2etests/testdata/regression/unconnected/elk/board.exp.json @@ -8,10 +8,10 @@ "type": "rectangle", "pos": { "x": 103, - "y": 64 + "y": 75 }, "width": 135, - "height": 66, + "height": 120, "opacity": 1, "strokeDash": 0, "strokeWidth": 2, @@ -49,7 +49,7 @@ "type": "rectangle", "pos": { "x": 390, - "y": 48 + "y": 72 }, "width": 159, "height": 66, @@ -90,7 +90,7 @@ "type": "rectangle", "pos": { "x": 368, - "y": 134 + "y": 158 }, "width": 204, "height": 66, @@ -134,7 +134,7 @@ "y": 12 }, "width": 890, - "height": 310, + "height": 358, "opacity": 1, "strokeDash": 0, "strokeWidth": 2, @@ -172,10 +172,10 @@ "type": "rectangle", "pos": { "x": 746, - "y": 78 + "y": 72 }, "width": 94, - "height": 66, + "height": 120, "opacity": 1, "strokeDash": 0, "strokeWidth": 2, @@ -216,7 +216,7 @@ "y": 62 }, "width": 120, - "height": 66, + "height": 80, "opacity": 1, "strokeDash": 0, "strokeWidth": 2, @@ -254,10 +254,10 @@ "type": "rectangle", "pos": { "x": 1170, - "y": 95 + "y": 99 }, "width": 120, - "height": 66, + "height": 80, "opacity": 1, "strokeDash": 0, "strokeWidth": 2, @@ -295,10 +295,10 @@ "type": "rectangle", "pos": { "x": 1370, - "y": 95 + "y": 99 }, "width": 122, - "height": 66, + "height": 80, "opacity": 1, "strokeDash": 0, "strokeWidth": 2, @@ -336,7 +336,7 @@ "type": "text", "pos": { "x": 702, - "y": 164 + "y": 212 }, "width": 138, "height": 108, @@ -376,7 +376,7 @@ "type": "rectangle", "pos": { "x": 12, - "y": 150 + "y": 215 }, "width": 226, "height": 252, @@ -417,7 +417,7 @@ "type": "rectangle", "pos": { "x": 62, - "y": 200 + "y": 265 }, "width": 126, "height": 66, @@ -458,7 +458,7 @@ "type": "rectangle", "pos": { "x": 73, - "y": 286 + "y": 351 }, "width": 103, "height": 66, @@ -565,11 +565,11 @@ "route": [ { "x": 238, - "y": 81.25 + "y": 105 }, { "x": 390.5, - "y": 81.25 + "y": 105 } ], "animated": false, @@ -605,19 +605,19 @@ "route": [ { "x": 238, - "y": 97.75 + "y": 135 }, { "x": 328, - "y": 97.75 + "y": 135 }, { "x": 328, - "y": 167.25 + "y": 191 }, { "x": 368, - "y": 167.25 + "y": 191 } ], "animated": false, @@ -653,27 +653,27 @@ "route": [ { "x": 238, - "y": 114.25 + "y": 165 }, { "x": 278, - "y": 114.25 + "y": 165 }, { "x": 278, - "y": 210.25 + "y": 234 }, { "x": 612, - "y": 210.25 + "y": 234 }, { "x": 612, - "y": 244.875 + "y": 280.5 }, { "x": 652, - "y": 244.875 + "y": 280.5 } ], "animated": false, @@ -709,11 +709,11 @@ "route": [ { "x": 840, - "y": 95 + "y": 102 }, { "x": 970, - "y": 95 + "y": 102 } ], "animated": false, @@ -749,19 +749,19 @@ "route": [ { "x": 840, - "y": 111.5 + "y": 132 }, { "x": 930, - "y": 111.5 + "y": 132 }, { "x": 930, - "y": 139 + "y": 153 }, { "x": 1170, - "y": 139 + "y": 153 } ], "animated": false, @@ -797,27 +797,27 @@ "route": [ { "x": 840, - "y": 128 + "y": 162 }, { "x": 880, - "y": 128 + "y": 162 }, { "x": 880, - "y": 171 + "y": 189.66666666666669 }, { "x": 1330, - "y": 171 + "y": 189.66666666666669 }, { "x": 1330, - "y": 144.5 + "y": 159.66666666666669 }, { "x": 1370, - "y": 144.5 + "y": 159.66666666666669 } ], "animated": false, @@ -853,19 +853,19 @@ "route": [ { "x": 1090, - "y": 106 + "y": 115.33333333333334 }, { "x": 1130, - "y": 106 + "y": 115.33333333333334 }, { "x": 1130, - "y": 117 + "y": 126.33333333333334 }, { "x": 1170, - "y": 117 + "y": 126.33333333333334 } ], "animated": false, @@ -901,11 +901,11 @@ "route": [ { "x": 1290, - "y": 128 + "y": 139.66666666666669 }, { "x": 1370, - "y": 128 + "y": 139.66666666666669 } ], "animated": false, @@ -941,19 +941,19 @@ "route": [ { "x": 1370, - "y": 111.5 + "y": 119.66666666666667 }, { "x": 1330, - "y": 111.5 + "y": 119.66666666666667 }, { "x": 1330, - "y": 84 + "y": 88.66666666666667 }, { "x": 1090, - "y": 84 + "y": 88.66666666666667 } ], "animated": false, @@ -989,19 +989,19 @@ "route": [ { "x": 549.5, - "y": 81.25 + "y": 105 }, { "x": 612, - "y": 81.25 + "y": 105 }, { "x": 612, - "y": 89.625 + "y": 101.5 }, { "x": 652, - "y": 89.625 + "y": 101.5 } ], "animated": false, @@ -1037,11 +1037,11 @@ "route": [ { "x": 572, - "y": 167.25 + "y": 191 }, { "x": 652, - "y": 167.25 + "y": 191 } ], "animated": false, diff --git a/e2etests/testdata/regression/unconnected/elk/sketch.exp.svg b/e2etests/testdata/regression/unconnected/elk/sketch.exp.svg index 4e78acb850..95af1aff64 100644 --- a/e2etests/testdata/regression/unconnected/elk/sketch.exp.svg +++ b/e2etests/testdata/regression/unconnected/elk/sketch.exp.svg @@ -1,4 +1,4 @@ -abc +.fill-N1{fill:#0A0F25;}.fill-N2{fill:#676C7E;}.fill-N3{fill:#9499AB;}.fill-N4{fill:#CFD2DD;}.fill-N5{fill:#DEE1EB;}.fill-N6{fill:#EEF1F8;}.fill-N7{fill:#FFFFFF;}.fill-B1{fill:#0D32B2;}.fill-B2{fill:#0D32B2;}.fill-B3{fill:#E3E9FD;}.fill-B4{fill:#E3E9FD;}.fill-B5{fill:#EDF0FD;}.fill-B6{fill:#F7F8FE;}.fill-AA2{fill:#4A6FF3;}.fill-AA4{fill:#EDF0FD;}.fill-AA5{fill:#F7F8FE;}.fill-AB4{fill:#EDF0FD;}.fill-AB5{fill:#F7F8FE;}.stroke-N1{stroke:#0A0F25;}.stroke-N2{stroke:#676C7E;}.stroke-N3{stroke:#9499AB;}.stroke-N4{stroke:#CFD2DD;}.stroke-N5{stroke:#DEE1EB;}.stroke-N6{stroke:#EEF1F8;}.stroke-N7{stroke:#FFFFFF;}.stroke-B1{stroke:#0D32B2;}.stroke-B2{stroke:#0D32B2;}.stroke-B3{stroke:#E3E9FD;}.stroke-B4{stroke:#E3E9FD;}.stroke-B5{stroke:#EDF0FD;}.stroke-B6{stroke:#F7F8FE;}.stroke-AA2{stroke:#4A6FF3;}.stroke-AA4{stroke:#EDF0FD;}.stroke-AA5{stroke:#F7F8FE;}.stroke-AB4{stroke:#EDF0FD;}.stroke-AB5{stroke:#F7F8FE;}.background-color-N1{background-color:#0A0F25;}.background-color-N2{background-color:#676C7E;}.background-color-N3{background-color:#9499AB;}.background-color-N4{background-color:#CFD2DD;}.background-color-N5{background-color:#DEE1EB;}.background-color-N6{background-color:#EEF1F8;}.background-color-N7{background-color:#FFFFFF;}.background-color-B1{background-color:#0D32B2;}.background-color-B2{background-color:#0D32B2;}.background-color-B3{background-color:#E3E9FD;}.background-color-B4{background-color:#E3E9FD;}.background-color-B5{background-color:#EDF0FD;}.background-color-B6{background-color:#F7F8FE;}.background-color-AA2{background-color:#4A6FF3;}.background-color-AA4{background-color:#EDF0FD;}.background-color-AA5{background-color:#F7F8FE;}.background-color-AB4{background-color:#EDF0FD;}.background-color-AB5{background-color:#F7F8FE;}.color-N1{color:#0A0F25;}.color-N2{color:#676C7E;}.color-N3{color:#9499AB;}.color-N4{color:#CFD2DD;}.color-N5{color:#DEE1EB;}.color-N6{color:#EEF1F8;}.color-N7{color:#FFFFFF;}.color-B1{color:#0D32B2;}.color-B2{color:#0D32B2;}.color-B3{color:#E3E9FD;}.color-B4{color:#E3E9FD;}.color-B5{color:#EDF0FD;}.color-B6{color:#F7F8FE;}.color-AA2{color:#4A6FF3;}.color-AA4{color:#EDF0FD;}.color-AA5{color:#F7F8FE;}.color-AB4{color:#EDF0FD;}.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}]]>abc \ No newline at end of file diff --git a/e2etests/testdata/stable/animated/elk/board.exp.json b/e2etests/testdata/stable/animated/elk/board.exp.json index d9b9e49b9b..3144cd9d58 100644 --- a/e2etests/testdata/stable/animated/elk/board.exp.json +++ b/e2etests/testdata/stable/animated/elk/board.exp.json @@ -294,10 +294,10 @@ "id": "Insomnia", "type": "rectangle", "pos": { - "x": 635, + "x": 630, "y": 12 }, - "width": 110, + "width": 120, "height": 66, "opacity": 1, "strokeDash": 0, @@ -733,11 +733,11 @@ "labelPercentage": 0, "route": [ { - "x": 662.5, + "x": 660, "y": 78 }, { - "x": 662.5, + "x": 660, "y": 118 }, { @@ -821,11 +821,11 @@ "labelPercentage": 0, "route": [ { - "x": 717.5, + "x": 720, "y": 78 }, { - "x": 717.5, + "x": 720, "y": 118 }, { diff --git a/e2etests/testdata/stable/animated/elk/sketch.exp.svg b/e2etests/testdata/stable/animated/elk/sketch.exp.svg index 86f9e231cf..8a7c1c279f 100644 --- a/e2etests/testdata/stable/animated/elk/sketch.exp.svg +++ b/e2etests/testdata/stable/animated/elk/sketch.exp.svg @@ -30,7 +30,7 @@ mix-blend-mode: multiply; opacity: 0.5; } -.fill-N1{fill:#0A0F25;}.fill-N2{fill:#676C7E;}.fill-N3{fill:#9499AB;}.fill-N4{fill:#CFD2DD;}.fill-N5{fill:#DEE1EB;}.fill-N6{fill:#EEF1F8;}.fill-N7{fill:#FFFFFF;}.fill-B1{fill:#0D32B2;}.fill-B2{fill:#0D32B2;}.fill-B3{fill:#E3E9FD;}.fill-B4{fill:#E3E9FD;}.fill-B5{fill:#EDF0FD;}.fill-B6{fill:#F7F8FE;}.fill-AA2{fill:#4A6FF3;}.fill-AA4{fill:#EDF0FD;}.fill-AA5{fill:#F7F8FE;}.fill-AB4{fill:#EDF0FD;}.fill-AB5{fill:#F7F8FE;}.stroke-N1{stroke:#0A0F25;}.stroke-N2{stroke:#676C7E;}.stroke-N3{stroke:#9499AB;}.stroke-N4{stroke:#CFD2DD;}.stroke-N5{stroke:#DEE1EB;}.stroke-N6{stroke:#EEF1F8;}.stroke-N7{stroke:#FFFFFF;}.stroke-B1{stroke:#0D32B2;}.stroke-B2{stroke:#0D32B2;}.stroke-B3{stroke:#E3E9FD;}.stroke-B4{stroke:#E3E9FD;}.stroke-B5{stroke:#EDF0FD;}.stroke-B6{stroke:#F7F8FE;}.stroke-AA2{stroke:#4A6FF3;}.stroke-AA4{stroke:#EDF0FD;}.stroke-AA5{stroke:#F7F8FE;}.stroke-AB4{stroke:#EDF0FD;}.stroke-AB5{stroke:#F7F8FE;}.background-color-N1{background-color:#0A0F25;}.background-color-N2{background-color:#676C7E;}.background-color-N3{background-color:#9499AB;}.background-color-N4{background-color:#CFD2DD;}.background-color-N5{background-color:#DEE1EB;}.background-color-N6{background-color:#EEF1F8;}.background-color-N7{background-color:#FFFFFF;}.background-color-B1{background-color:#0D32B2;}.background-color-B2{background-color:#0D32B2;}.background-color-B3{background-color:#E3E9FD;}.background-color-B4{background-color:#E3E9FD;}.background-color-B5{background-color:#EDF0FD;}.background-color-B6{background-color:#F7F8FE;}.background-color-AA2{background-color:#4A6FF3;}.background-color-AA4{background-color:#EDF0FD;}.background-color-AA5{background-color:#F7F8FE;}.background-color-AB4{background-color:#EDF0FD;}.background-color-AB5{background-color:#F7F8FE;}.color-N1{color:#0A0F25;}.color-N2{color:#676C7E;}.color-N3{color:#9499AB;}.color-N4{color:#CFD2DD;}.color-N5{color:#DEE1EB;}.color-N6{color:#EEF1F8;}.color-N7{color:#FFFFFF;}.color-B1{color:#0D32B2;}.color-B2{color:#0D32B2;}.color-B3{color:#E3E9FD;}.color-B4{color:#E3E9FD;}.color-B5{color:#EDF0FD;}.color-B6{color:#F7F8FE;}.color-AA2{color:#4A6FF3;}.color-AA4{color:#EDF0FD;}.color-AA5{color:#F7F8FE;}.color-AB4{color:#EDF0FD;}.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}]]>your love life will behappyharmoniousboredomimmortalityFridayMondayInsomniaSleepWakeDreamListenTalk hear +.fill-N1{fill:#0A0F25;}.fill-N2{fill:#676C7E;}.fill-N3{fill:#9499AB;}.fill-N4{fill:#CFD2DD;}.fill-N5{fill:#DEE1EB;}.fill-N6{fill:#EEF1F8;}.fill-N7{fill:#FFFFFF;}.fill-B1{fill:#0D32B2;}.fill-B2{fill:#0D32B2;}.fill-B3{fill:#E3E9FD;}.fill-B4{fill:#E3E9FD;}.fill-B5{fill:#EDF0FD;}.fill-B6{fill:#F7F8FE;}.fill-AA2{fill:#4A6FF3;}.fill-AA4{fill:#EDF0FD;}.fill-AA5{fill:#F7F8FE;}.fill-AB4{fill:#EDF0FD;}.fill-AB5{fill:#F7F8FE;}.stroke-N1{stroke:#0A0F25;}.stroke-N2{stroke:#676C7E;}.stroke-N3{stroke:#9499AB;}.stroke-N4{stroke:#CFD2DD;}.stroke-N5{stroke:#DEE1EB;}.stroke-N6{stroke:#EEF1F8;}.stroke-N7{stroke:#FFFFFF;}.stroke-B1{stroke:#0D32B2;}.stroke-B2{stroke:#0D32B2;}.stroke-B3{stroke:#E3E9FD;}.stroke-B4{stroke:#E3E9FD;}.stroke-B5{stroke:#EDF0FD;}.stroke-B6{stroke:#F7F8FE;}.stroke-AA2{stroke:#4A6FF3;}.stroke-AA4{stroke:#EDF0FD;}.stroke-AA5{stroke:#F7F8FE;}.stroke-AB4{stroke:#EDF0FD;}.stroke-AB5{stroke:#F7F8FE;}.background-color-N1{background-color:#0A0F25;}.background-color-N2{background-color:#676C7E;}.background-color-N3{background-color:#9499AB;}.background-color-N4{background-color:#CFD2DD;}.background-color-N5{background-color:#DEE1EB;}.background-color-N6{background-color:#EEF1F8;}.background-color-N7{background-color:#FFFFFF;}.background-color-B1{background-color:#0D32B2;}.background-color-B2{background-color:#0D32B2;}.background-color-B3{background-color:#E3E9FD;}.background-color-B4{background-color:#E3E9FD;}.background-color-B5{background-color:#EDF0FD;}.background-color-B6{background-color:#F7F8FE;}.background-color-AA2{background-color:#4A6FF3;}.background-color-AA4{background-color:#EDF0FD;}.background-color-AA5{background-color:#F7F8FE;}.background-color-AB4{background-color:#EDF0FD;}.background-color-AB5{background-color:#F7F8FE;}.color-N1{color:#0A0F25;}.color-N2{color:#676C7E;}.color-N3{color:#9499AB;}.color-N4{color:#CFD2DD;}.color-N5{color:#DEE1EB;}.color-N6{color:#EEF1F8;}.color-N7{color:#FFFFFF;}.color-B1{color:#0D32B2;}.color-B2{color:#0D32B2;}.color-B3{color:#E3E9FD;}.color-B4{color:#E3E9FD;}.color-B5{color:#EDF0FD;}.color-B6{color:#F7F8FE;}.color-AA2{color:#4A6FF3;}.color-AA4{color:#EDF0FD;}.color-AA5{color:#F7F8FE;}.color-AB4{color:#EDF0FD;}.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}]]>your love life will behappyharmoniousboredomimmortalityFridayMondayInsomniaSleepWakeDreamListenTalk hear \ No newline at end of file diff --git a/e2etests/testdata/stable/arrowhead_adjustment/elk/board.exp.json b/e2etests/testdata/stable/arrowhead_adjustment/elk/board.exp.json index 9b939ba3ad..58486fe421 100644 --- a/e2etests/testdata/stable/arrowhead_adjustment/elk/board.exp.json +++ b/e2etests/testdata/stable/arrowhead_adjustment/elk/board.exp.json @@ -7,10 +7,10 @@ "id": "a", "type": "rectangle", "pos": { - "x": 93, + "x": 73, "y": 12 }, - "width": 53, + "width": 80, "height": 66, "opacity": 1, "strokeDash": 0, @@ -48,10 +48,10 @@ "id": "b", "type": "rectangle", "pos": { - "x": 88, + "x": 66, "y": 544 }, - "width": 53, + "width": 80, "height": 66, "opacity": 1, "strokeDash": 0, @@ -89,10 +89,10 @@ "id": "c", "type": "document", "pos": { - "x": 97, + "x": 79, "y": 388 }, - "width": 53, + "width": 80, "height": 76, "opacity": 1, "strokeDash": 0, @@ -195,11 +195,11 @@ "labelPercentage": 0, "route": [ { - "x": 106.5, + "x": 93, "y": 78 }, { - "x": 106.5, + "x": 93, "y": 118 }, { @@ -211,11 +211,11 @@ "y": 504 }, { - "x": 106.5, + "x": 93, "y": 504 }, { - "x": 106.5, + "x": 93, "y": 544 } ], @@ -251,11 +251,11 @@ "labelPercentage": 0, "route": [ { - "x": 124, + "x": 120, "y": 453 }, { - "x": 124.16666666666666, + "x": 119.66666666666666, "y": 544 } ], @@ -291,11 +291,11 @@ "labelPercentage": 0, "route": [ { - "x": 119.75, + "x": 113, "y": 78 }, { - "x": 119.75, + "x": 113, "y": 168 }, { @@ -387,11 +387,11 @@ "y": 348 }, { - "x": 115.33333333333333, + "x": 106.33333333333333, "y": 348 }, { - "x": 115, + "x": 106, "y": 388 } ], diff --git a/e2etests/testdata/stable/arrowhead_adjustment/elk/sketch.exp.svg b/e2etests/testdata/stable/arrowhead_adjustment/elk/sketch.exp.svg index ec24704c68..87e32dc9cb 100644 --- a/e2etests/testdata/stable/arrowhead_adjustment/elk/sketch.exp.svg +++ b/e2etests/testdata/stable/arrowhead_adjustment/elk/sketch.exp.svg @@ -1,4 +1,4 @@ -abc * - +.fill-N1{fill:#0A0F25;}.fill-N2{fill:#676C7E;}.fill-N3{fill:#9499AB;}.fill-N4{fill:#CFD2DD;}.fill-N5{fill:#DEE1EB;}.fill-N6{fill:#EEF1F8;}.fill-N7{fill:#FFFFFF;}.fill-B1{fill:#0D32B2;}.fill-B2{fill:#0D32B2;}.fill-B3{fill:#E3E9FD;}.fill-B4{fill:#E3E9FD;}.fill-B5{fill:#EDF0FD;}.fill-B6{fill:#F7F8FE;}.fill-AA2{fill:#4A6FF3;}.fill-AA4{fill:#EDF0FD;}.fill-AA5{fill:#F7F8FE;}.fill-AB4{fill:#EDF0FD;}.fill-AB5{fill:#F7F8FE;}.stroke-N1{stroke:#0A0F25;}.stroke-N2{stroke:#676C7E;}.stroke-N3{stroke:#9499AB;}.stroke-N4{stroke:#CFD2DD;}.stroke-N5{stroke:#DEE1EB;}.stroke-N6{stroke:#EEF1F8;}.stroke-N7{stroke:#FFFFFF;}.stroke-B1{stroke:#0D32B2;}.stroke-B2{stroke:#0D32B2;}.stroke-B3{stroke:#E3E9FD;}.stroke-B4{stroke:#E3E9FD;}.stroke-B5{stroke:#EDF0FD;}.stroke-B6{stroke:#F7F8FE;}.stroke-AA2{stroke:#4A6FF3;}.stroke-AA4{stroke:#EDF0FD;}.stroke-AA5{stroke:#F7F8FE;}.stroke-AB4{stroke:#EDF0FD;}.stroke-AB5{stroke:#F7F8FE;}.background-color-N1{background-color:#0A0F25;}.background-color-N2{background-color:#676C7E;}.background-color-N3{background-color:#9499AB;}.background-color-N4{background-color:#CFD2DD;}.background-color-N5{background-color:#DEE1EB;}.background-color-N6{background-color:#EEF1F8;}.background-color-N7{background-color:#FFFFFF;}.background-color-B1{background-color:#0D32B2;}.background-color-B2{background-color:#0D32B2;}.background-color-B3{background-color:#E3E9FD;}.background-color-B4{background-color:#E3E9FD;}.background-color-B5{background-color:#EDF0FD;}.background-color-B6{background-color:#F7F8FE;}.background-color-AA2{background-color:#4A6FF3;}.background-color-AA4{background-color:#EDF0FD;}.background-color-AA5{background-color:#F7F8FE;}.background-color-AB4{background-color:#EDF0FD;}.background-color-AB5{background-color:#F7F8FE;}.color-N1{color:#0A0F25;}.color-N2{color:#676C7E;}.color-N3{color:#9499AB;}.color-N4{color:#CFD2DD;}.color-N5{color:#DEE1EB;}.color-N6{color:#EEF1F8;}.color-N7{color:#FFFFFF;}.color-B1{color:#0D32B2;}.color-B2{color:#0D32B2;}.color-B3{color:#E3E9FD;}.color-B4{color:#E3E9FD;}.color-B5{color:#EDF0FD;}.color-B6{color:#F7F8FE;}.color-AA2{color:#4A6FF3;}.color-AA4{color:#EDF0FD;}.color-AA5{color:#F7F8FE;}.color-AB4{color:#EDF0FD;}.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}]]>abc * + \ No newline at end of file diff --git a/e2etests/testdata/stable/binary_tree/elk/board.exp.json b/e2etests/testdata/stable/binary_tree/elk/board.exp.json index a38e208a43..b1d4140e38 100644 --- a/e2etests/testdata/stable/binary_tree/elk/board.exp.json +++ b/e2etests/testdata/stable/binary_tree/elk/board.exp.json @@ -7,10 +7,10 @@ "id": "a", "type": "rectangle", "pos": { - "x": 38, + "x": 463, "y": 12 }, - "width": 53, + "width": 80, "height": 66, "opacity": 1, "strokeDash": 0, @@ -48,10 +48,10 @@ "id": "b", "type": "rectangle", "pos": { - "x": 29, + "x": 183, "y": 158 }, - "width": 53, + "width": 80, "height": 66, "opacity": 1, "strokeDash": 0, @@ -89,10 +89,10 @@ "id": "c", "type": "rectangle", "pos": { - "x": 312, + "x": 476, "y": 158 }, - "width": 53, + "width": 80, "height": 66, "opacity": 1, "strokeDash": 0, @@ -130,10 +130,10 @@ "id": "d", "type": "rectangle", "pos": { - "x": 20, + "x": 56, "y": 304 }, - "width": 54, + "width": 80, "height": 66, "opacity": 1, "strokeDash": 0, @@ -171,10 +171,10 @@ "id": "e", "type": "rectangle", "pos": { - "x": 161, + "x": 197, "y": 304 }, - "width": 53, + "width": 80, "height": 66, "opacity": 1, "strokeDash": 0, @@ -212,10 +212,10 @@ "id": "f", "type": "rectangle", "pos": { - "x": 304, + "x": 341, "y": 304 }, - "width": 51, + "width": 80, "height": 66, "opacity": 1, "strokeDash": 0, @@ -253,10 +253,10 @@ "id": "g", "type": "rectangle", "pos": { - "x": 451, + "x": 489, "y": 304 }, - "width": 54, + "width": 80, "height": 66, "opacity": 1, "strokeDash": 0, @@ -647,11 +647,19 @@ "labelPercentage": 0, "route": [ { - "x": 56.33333333333333, + "x": 489.6666666666667, "y": 78 }, { - "x": 56.33333333333333, + "x": 489.6666666666667, + "y": 118 + }, + { + "x": 223.83333333333331, + "y": 118 + }, + { + "x": 223.83333333333331, "y": 158 } ], @@ -687,19 +695,11 @@ "labelPercentage": 0, "route": [ { - "x": 74, + "x": 516.3333333333334, "y": 78 }, { - "x": 74, - "y": 118 - }, - { - "x": 338.8333333333333, - "y": 118 - }, - { - "x": 338.8333333333333, + "x": 516.3333333333334, "y": 158 } ], @@ -735,11 +735,19 @@ "labelPercentage": 0, "route": [ { - "x": 47.5, + "x": 210.49999999999997, "y": 224 }, { - "x": 47.5, + "x": 210.49999999999997, + "y": 264 + }, + { + "x": 96.16666666666669, + "y": 264 + }, + { + "x": 96.16666666666669, "y": 304 } ], @@ -775,19 +783,11 @@ "labelPercentage": 0, "route": [ { - "x": 65.16666666666667, + "x": 237.16666666666666, "y": 224 }, { - "x": 65.16666666666667, - "y": 264 - }, - { - "x": 187.83333333333334, - "y": 264 - }, - { - "x": 187.83333333333334, + "x": 237.16666666666663, "y": 304 } ], @@ -823,11 +823,19 @@ "labelPercentage": 0, "route": [ { - "x": 330, + "x": 503, "y": 224 }, { - "x": 330, + "x": 503, + "y": 264 + }, + { + "x": 381.16666666666663, + "y": 264 + }, + { + "x": 381.16666666666663, "y": 304 } ], @@ -863,19 +871,11 @@ "labelPercentage": 0, "route": [ { - "x": 347.66666666666663, + "x": 529.6666666666666, "y": 224 }, { - "x": 347.66666666666663, - "y": 264 - }, - { - "x": 478.5, - "y": 264 - }, - { - "x": 478.5, + "x": 529.6666666666666, "y": 304 } ], @@ -911,9 +911,17 @@ "labelPercentage": 0, "route": [ { - "x": 38.5, + "x": 82.83333333333337, "y": 370 }, + { + "x": 82.83333333333337, + "y": 410 + }, + { + "x": 38.5, + "y": 410 + }, { "x": 38.5, "y": 450 @@ -950,17 +958,9 @@ "labelPosition": "", "labelPercentage": 0, "route": [ - { - "x": 56.5, - "y": 370 - }, - { - "x": 56.5, - "y": 410 - }, { "x": 109.5, - "y": 410 + "y": 370 }, { "x": 109.5, @@ -999,9 +999,17 @@ "labelPercentage": 0, "route": [ { - "x": 179, + "x": 223.8333333333333, "y": 370 }, + { + "x": 223.8333333333333, + "y": 410 + }, + { + "x": 179, + "y": 410 + }, { "x": 179, "y": 450 @@ -1039,17 +1047,9 @@ "labelPercentage": 0, "route": [ { - "x": 196.66666666666669, + "x": 250.49999999999997, "y": 370 }, - { - "x": 196.66666666666669, - "y": 410 - }, - { - "x": 250.5, - "y": 410 - }, { "x": 250.5, "y": 450 @@ -1087,9 +1087,17 @@ "labelPercentage": 0, "route": [ { - "x": 321.5, + "x": 367.8333333333333, "y": 370 }, + { + "x": 367.8333333333333, + "y": 410 + }, + { + "x": 321.5, + "y": 410 + }, { "x": 321.5, "y": 450 @@ -1126,17 +1134,9 @@ "labelPosition": "", "labelPercentage": 0, "route": [ - { - "x": 338.5, - "y": 370 - }, - { - "x": 338.5, - "y": 410 - }, { "x": 394.5, - "y": 410 + "y": 370 }, { "x": 394.5, @@ -1175,9 +1175,17 @@ "labelPercentage": 0, "route": [ { - "x": 469.5, + "x": 516.3333333333334, "y": 370 }, + { + "x": 516.3333333333334, + "y": 410 + }, + { + "x": 469.5, + "y": 410 + }, { "x": 469.5, "y": 450 @@ -1214,17 +1222,9 @@ "labelPosition": "", "labelPercentage": 0, "route": [ - { - "x": 487.5, - "y": 370 - }, - { - "x": 487.5, - "y": 410 - }, { "x": 543, - "y": 410 + "y": 370 }, { "x": 543, diff --git a/e2etests/testdata/stable/binary_tree/elk/sketch.exp.svg b/e2etests/testdata/stable/binary_tree/elk/sketch.exp.svg index 5e53bd57b0..9ef778f9c6 100644 --- a/e2etests/testdata/stable/binary_tree/elk/sketch.exp.svg +++ b/e2etests/testdata/stable/binary_tree/elk/sketch.exp.svg @@ -17,7 +17,7 @@ mix-blend-mode: multiply; opacity: 0.5; } -.fill-N1{fill:#0A0F25;}.fill-N2{fill:#676C7E;}.fill-N3{fill:#9499AB;}.fill-N4{fill:#CFD2DD;}.fill-N5{fill:#DEE1EB;}.fill-N6{fill:#EEF1F8;}.fill-N7{fill:#FFFFFF;}.fill-B1{fill:#0D32B2;}.fill-B2{fill:#0D32B2;}.fill-B3{fill:#E3E9FD;}.fill-B4{fill:#E3E9FD;}.fill-B5{fill:#EDF0FD;}.fill-B6{fill:#F7F8FE;}.fill-AA2{fill:#4A6FF3;}.fill-AA4{fill:#EDF0FD;}.fill-AA5{fill:#F7F8FE;}.fill-AB4{fill:#EDF0FD;}.fill-AB5{fill:#F7F8FE;}.stroke-N1{stroke:#0A0F25;}.stroke-N2{stroke:#676C7E;}.stroke-N3{stroke:#9499AB;}.stroke-N4{stroke:#CFD2DD;}.stroke-N5{stroke:#DEE1EB;}.stroke-N6{stroke:#EEF1F8;}.stroke-N7{stroke:#FFFFFF;}.stroke-B1{stroke:#0D32B2;}.stroke-B2{stroke:#0D32B2;}.stroke-B3{stroke:#E3E9FD;}.stroke-B4{stroke:#E3E9FD;}.stroke-B5{stroke:#EDF0FD;}.stroke-B6{stroke:#F7F8FE;}.stroke-AA2{stroke:#4A6FF3;}.stroke-AA4{stroke:#EDF0FD;}.stroke-AA5{stroke:#F7F8FE;}.stroke-AB4{stroke:#EDF0FD;}.stroke-AB5{stroke:#F7F8FE;}.background-color-N1{background-color:#0A0F25;}.background-color-N2{background-color:#676C7E;}.background-color-N3{background-color:#9499AB;}.background-color-N4{background-color:#CFD2DD;}.background-color-N5{background-color:#DEE1EB;}.background-color-N6{background-color:#EEF1F8;}.background-color-N7{background-color:#FFFFFF;}.background-color-B1{background-color:#0D32B2;}.background-color-B2{background-color:#0D32B2;}.background-color-B3{background-color:#E3E9FD;}.background-color-B4{background-color:#E3E9FD;}.background-color-B5{background-color:#EDF0FD;}.background-color-B6{background-color:#F7F8FE;}.background-color-AA2{background-color:#4A6FF3;}.background-color-AA4{background-color:#EDF0FD;}.background-color-AA5{background-color:#F7F8FE;}.background-color-AB4{background-color:#EDF0FD;}.background-color-AB5{background-color:#F7F8FE;}.color-N1{color:#0A0F25;}.color-N2{color:#676C7E;}.color-N3{color:#9499AB;}.color-N4{color:#CFD2DD;}.color-N5{color:#DEE1EB;}.color-N6{color:#EEF1F8;}.color-N7{color:#FFFFFF;}.color-B1{color:#0D32B2;}.color-B2{color:#0D32B2;}.color-B3{color:#E3E9FD;}.color-B4{color:#E3E9FD;}.color-B5{color:#EDF0FD;}.color-B6{color:#F7F8FE;}.color-AA2{color:#4A6FF3;}.color-AA4{color:#EDF0FD;}.color-AA5{color:#F7F8FE;}.color-AB4{color:#EDF0FD;}.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}]]>abcdefghijklmno +.fill-N1{fill:#0A0F25;}.fill-N2{fill:#676C7E;}.fill-N3{fill:#9499AB;}.fill-N4{fill:#CFD2DD;}.fill-N5{fill:#DEE1EB;}.fill-N6{fill:#EEF1F8;}.fill-N7{fill:#FFFFFF;}.fill-B1{fill:#0D32B2;}.fill-B2{fill:#0D32B2;}.fill-B3{fill:#E3E9FD;}.fill-B4{fill:#E3E9FD;}.fill-B5{fill:#EDF0FD;}.fill-B6{fill:#F7F8FE;}.fill-AA2{fill:#4A6FF3;}.fill-AA4{fill:#EDF0FD;}.fill-AA5{fill:#F7F8FE;}.fill-AB4{fill:#EDF0FD;}.fill-AB5{fill:#F7F8FE;}.stroke-N1{stroke:#0A0F25;}.stroke-N2{stroke:#676C7E;}.stroke-N3{stroke:#9499AB;}.stroke-N4{stroke:#CFD2DD;}.stroke-N5{stroke:#DEE1EB;}.stroke-N6{stroke:#EEF1F8;}.stroke-N7{stroke:#FFFFFF;}.stroke-B1{stroke:#0D32B2;}.stroke-B2{stroke:#0D32B2;}.stroke-B3{stroke:#E3E9FD;}.stroke-B4{stroke:#E3E9FD;}.stroke-B5{stroke:#EDF0FD;}.stroke-B6{stroke:#F7F8FE;}.stroke-AA2{stroke:#4A6FF3;}.stroke-AA4{stroke:#EDF0FD;}.stroke-AA5{stroke:#F7F8FE;}.stroke-AB4{stroke:#EDF0FD;}.stroke-AB5{stroke:#F7F8FE;}.background-color-N1{background-color:#0A0F25;}.background-color-N2{background-color:#676C7E;}.background-color-N3{background-color:#9499AB;}.background-color-N4{background-color:#CFD2DD;}.background-color-N5{background-color:#DEE1EB;}.background-color-N6{background-color:#EEF1F8;}.background-color-N7{background-color:#FFFFFF;}.background-color-B1{background-color:#0D32B2;}.background-color-B2{background-color:#0D32B2;}.background-color-B3{background-color:#E3E9FD;}.background-color-B4{background-color:#E3E9FD;}.background-color-B5{background-color:#EDF0FD;}.background-color-B6{background-color:#F7F8FE;}.background-color-AA2{background-color:#4A6FF3;}.background-color-AA4{background-color:#EDF0FD;}.background-color-AA5{background-color:#F7F8FE;}.background-color-AB4{background-color:#EDF0FD;}.background-color-AB5{background-color:#F7F8FE;}.color-N1{color:#0A0F25;}.color-N2{color:#676C7E;}.color-N3{color:#9499AB;}.color-N4{color:#CFD2DD;}.color-N5{color:#DEE1EB;}.color-N6{color:#EEF1F8;}.color-N7{color:#FFFFFF;}.color-B1{color:#0D32B2;}.color-B2{color:#0D32B2;}.color-B3{color:#E3E9FD;}.color-B4{color:#E3E9FD;}.color-B5{color:#EDF0FD;}.color-B6{color:#F7F8FE;}.color-AA2{color:#4A6FF3;}.color-AA4{color:#EDF0FD;}.color-AA5{color:#F7F8FE;}.color-AB4{color:#EDF0FD;}.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}]]>abcdefghijklmno \ No newline at end of file diff --git a/e2etests/testdata/stable/chaos2/elk/board.exp.json b/e2etests/testdata/stable/chaos2/elk/board.exp.json index 572bec0b04..7bf89c7e8f 100644 --- a/e2etests/testdata/stable/chaos2/elk/board.exp.json +++ b/e2etests/testdata/stable/chaos2/elk/board.exp.json @@ -11,7 +11,7 @@ "y": 12 }, "width": 694, - "height": 1962, + "height": 1812, "opacity": 1, "strokeDash": 0, "strokeWidth": 2, @@ -49,7 +49,7 @@ "type": "rectangle", "pos": { "x": 62, - "y": 762 + "y": 612 }, "width": 548, "height": 1067, @@ -90,7 +90,7 @@ "type": "rectangle", "pos": { "x": 256, - "y": 1089 + "y": 939 }, "width": 304, "height": 690, @@ -131,7 +131,7 @@ "type": "rectangle", "pos": { "x": 306, - "y": 1139 + "y": 989 }, "width": 193, "height": 166, @@ -172,7 +172,7 @@ "type": "text", "pos": { "x": 356, - "y": 1234 + "y": 1084 }, "width": 16, "height": 21, @@ -212,7 +212,7 @@ "type": "rectangle", "pos": { "x": 392, - "y": 1189 + "y": 1039 }, "width": 57, "height": 66, @@ -252,10 +252,10 @@ "id": "aa.bb.cc.gg", "type": "text", "pos": { - "x": 358, - "y": 1481 + "x": 337, + "y": 1331 }, - "width": 17, + "width": 80, "height": 21, "opacity": 1, "strokeDash": 0, @@ -292,8 +292,8 @@ "id": "aa.bb.cc.hh", "type": "rectangle", "pos": { - "x": 335, - "y": 1663 + "x": 345, + "y": 1513 }, "width": 63, "height": 66, @@ -334,7 +334,7 @@ "type": "package", "pos": { "x": 112, - "y": 812 + "y": 662 }, "width": 150, "height": 192, @@ -375,7 +375,7 @@ "type": "diamond", "pos": { "x": 162, - "y": 862 + "y": 712 }, "width": 50, "height": 92, @@ -416,7 +416,7 @@ "type": "oval", "pos": { "x": 282, - "y": 871 + "y": 721 }, "width": 74, "height": 74, @@ -457,9 +457,9 @@ "type": "rectangle", "pos": { "x": 395, - "y": 360 + "y": 260 }, - "width": 54, + "width": 120, "height": 66, "opacity": 1, "strokeDash": 0, @@ -497,10 +497,10 @@ "id": "aa.mm", "type": "cylinder", "pos": { - "x": 297, + "x": 270, "y": 62 }, - "width": 71, + "width": 160, "height": 118, "opacity": 1, "strokeDash": 0, @@ -538,7 +538,7 @@ "id": "aa.nn", "type": "text", "pos": { - "x": 388, + "x": 450, "y": 110 }, "width": 16, @@ -578,7 +578,7 @@ "id": "aa.oo", "type": "rectangle", "pos": { - "x": 424, + "x": 486, "y": 88 }, "width": 63, @@ -645,11 +645,11 @@ "route": [ { "x": 364, - "y": 1255 + "y": 1105 }, { "x": 364, - "y": 1481 + "y": 1331 } ], "animated": false, @@ -684,12 +684,12 @@ "labelPercentage": 0, "route": [ { - "x": 366.83333333333337, - "y": 1502 + "x": 377.3333333333333, + "y": 1352 }, { - "x": 366.8333333333333, - "y": 1663 + "x": 377.3333333333333, + "y": 1513 } ], "animated": false, @@ -725,19 +725,19 @@ "route": [ { "x": 212, - "y": 1004 + "y": 854 }, { "x": 212, - "y": 1044 + "y": 894 }, { "x": 356, - "y": 1044 + "y": 894 }, { "x": 356, - "y": 1139 + "y": 989 } ], "animated": false, @@ -772,20 +772,20 @@ "labelPercentage": 0, "route": [ { - "x": 405.8, - "y": 426 + "x": 419, + "y": 326 }, { - "x": 405.8, - "y": 667 + "x": 419, + "y": 517 }, { "x": 376, - "y": 667 + "y": 517 }, { "x": 376, - "y": 762 + "y": 612 } ], "animated": false, @@ -819,21 +819,13 @@ "labelPosition": "INSIDE_MIDDLE_CENTER", "labelPercentage": 0, "route": [ - { - "x": 340, - "y": 180 - }, - { - "x": 340.4, - "y": 270 - }, { "x": 366, - "y": 270 + "y": 180 }, { "x": 366, - "y": 1089 + "y": 939 } ], "animated": false, @@ -868,20 +860,20 @@ "labelPercentage": 0, "route": [ { - "x": 355, + "x": 398, "y": 176 }, { - "x": 354.6, + "x": 398, "y": 220 }, { - "x": 422, + "x": 455, "y": 220 }, { - "x": 422, - "y": 360 + "x": 455, + "y": 260 } ], "animated": false, @@ -916,28 +908,20 @@ "labelPercentage": 0, "route": [ { - "x": 326, + "x": 334, "y": 180 }, { - "x": 326.2, - "y": 320 - }, - { - "x": 339, - "y": 320 - }, - { - "x": 339, - "y": 717 + "x": 334, + "y": 567 }, { "x": 197, - "y": 717 + "y": 567 }, { "x": 197, - "y": 762 + "y": 612 } ], "animated": false, @@ -972,36 +956,28 @@ "labelPercentage": 0, "route": [ { - "x": 416.6, - "y": 426 - }, - { - "x": 416.6, - "y": 566 - }, - { - "x": 425.3, - "y": 566 + "x": 443, + "y": 326 }, { - "x": 425.3, - "y": 667 + "x": 443, + "y": 517 }, { "x": 509, - "y": 667 + "y": 517 }, { "x": 509, - "y": 1441 + "y": 1291 }, { - "x": 369.6666666666667, - "y": 1441 + "x": 390.6666666666667, + "y": 1291 }, { - "x": 369.6666666666667, - "y": 1481 + "x": 390.6666666666667, + "y": 1331 } ], "animated": false, @@ -1036,20 +1012,20 @@ "labelPercentage": 0, "route": [ { - "x": 312, + "x": 302, "y": 176 }, { - "x": 312, - "y": 667 + "x": 302, + "y": 517 }, { "x": 187, - "y": 667 + "y": 517 }, { "x": 187, - "y": 812 + "y": 662 } ], "animated": false, @@ -1085,27 +1061,27 @@ "route": [ { "x": 306, - "y": 1779 + "y": 1629 }, { "x": 306, - "y": 1874 + "y": 1724 }, { "x": 620, - "y": 1874 + "y": 1724 }, { "x": 620, - "y": 516 + "y": 416 }, { - "x": 427.4, - "y": 516 + "x": 467, + "y": 416 }, { - "x": 427.4, - "y": 426 + "x": 467, + "y": 326 } ], "animated": false, @@ -1141,27 +1117,27 @@ "route": [ { "x": 162, - "y": 1004 + "y": 854 }, { "x": 162, - "y": 1924 + "y": 1774 }, { "x": 647, - "y": 1924 + "y": 1774 }, { "x": 647, - "y": 466 + "y": 366 }, { - "x": 438.2, - "y": 466 + "x": 491, + "y": 366 }, { - "x": 438.2, - "y": 426 + "x": 491, + "y": 326 } ], "animated": false, diff --git a/e2etests/testdata/stable/chaos2/elk/sketch.exp.svg b/e2etests/testdata/stable/chaos2/elk/sketch.exp.svg index 4894f374dc..6d63f62f35 100644 --- a/e2etests/testdata/stable/chaos2/elk/sketch.exp.svg +++ b/e2etests/testdata/stable/chaos2/elk/sketch.exp.svg @@ -1,4 +1,4 @@ -abc - +.fill-N1{fill:#0A0F25;}.fill-N2{fill:#676C7E;}.fill-N3{fill:#9499AB;}.fill-N4{fill:#CFD2DD;}.fill-N5{fill:#DEE1EB;}.fill-N6{fill:#EEF1F8;}.fill-N7{fill:#FFFFFF;}.fill-B1{fill:#0D32B2;}.fill-B2{fill:#0D32B2;}.fill-B3{fill:#E3E9FD;}.fill-B4{fill:#E3E9FD;}.fill-B5{fill:#EDF0FD;}.fill-B6{fill:#F7F8FE;}.fill-AA2{fill:#4A6FF3;}.fill-AA4{fill:#EDF0FD;}.fill-AA5{fill:#F7F8FE;}.fill-AB4{fill:#EDF0FD;}.fill-AB5{fill:#F7F8FE;}.stroke-N1{stroke:#0A0F25;}.stroke-N2{stroke:#676C7E;}.stroke-N3{stroke:#9499AB;}.stroke-N4{stroke:#CFD2DD;}.stroke-N5{stroke:#DEE1EB;}.stroke-N6{stroke:#EEF1F8;}.stroke-N7{stroke:#FFFFFF;}.stroke-B1{stroke:#0D32B2;}.stroke-B2{stroke:#0D32B2;}.stroke-B3{stroke:#E3E9FD;}.stroke-B4{stroke:#E3E9FD;}.stroke-B5{stroke:#EDF0FD;}.stroke-B6{stroke:#F7F8FE;}.stroke-AA2{stroke:#4A6FF3;}.stroke-AA4{stroke:#EDF0FD;}.stroke-AA5{stroke:#F7F8FE;}.stroke-AB4{stroke:#EDF0FD;}.stroke-AB5{stroke:#F7F8FE;}.background-color-N1{background-color:#0A0F25;}.background-color-N2{background-color:#676C7E;}.background-color-N3{background-color:#9499AB;}.background-color-N4{background-color:#CFD2DD;}.background-color-N5{background-color:#DEE1EB;}.background-color-N6{background-color:#EEF1F8;}.background-color-N7{background-color:#FFFFFF;}.background-color-B1{background-color:#0D32B2;}.background-color-B2{background-color:#0D32B2;}.background-color-B3{background-color:#E3E9FD;}.background-color-B4{background-color:#E3E9FD;}.background-color-B5{background-color:#EDF0FD;}.background-color-B6{background-color:#F7F8FE;}.background-color-AA2{background-color:#4A6FF3;}.background-color-AA4{background-color:#EDF0FD;}.background-color-AA5{background-color:#F7F8FE;}.background-color-AB4{background-color:#EDF0FD;}.background-color-AB5{background-color:#F7F8FE;}.color-N1{color:#0A0F25;}.color-N2{color:#676C7E;}.color-N3{color:#9499AB;}.color-N4{color:#CFD2DD;}.color-N5{color:#DEE1EB;}.color-N6{color:#EEF1F8;}.color-N7{color:#FFFFFF;}.color-B1{color:#0D32B2;}.color-B2{color:#0D32B2;}.color-B3{color:#E3E9FD;}.color-B4{color:#E3E9FD;}.color-B5{color:#EDF0FD;}.color-B6{color:#F7F8FE;}.color-AA2{color:#4A6FF3;}.color-AA4{color:#EDF0FD;}.color-AA5{color:#F7F8FE;}.color-AB4{color:#EDF0FD;}.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}]]>abc + \ No newline at end of file diff --git a/e2etests/testdata/stable/dense/elk/board.exp.json b/e2etests/testdata/stable/dense/elk/board.exp.json index 80d82c73d6..c048f8b99d 100644 --- a/e2etests/testdata/stable/dense/elk/board.exp.json +++ b/e2etests/testdata/stable/dense/elk/board.exp.json @@ -7,7 +7,7 @@ "id": "a", "type": "rectangle", "pos": { - "x": 313, + "x": 359, "y": 208 }, "width": 53, @@ -48,10 +48,10 @@ "id": "b", "type": "rectangle", "pos": { - "x": 313, + "x": 245, "y": 354 }, - "width": 53, + "width": 280, "height": 66, "opacity": 1, "strokeDash": 0, @@ -89,7 +89,7 @@ "id": "c", "type": "rectangle", "pos": { - "x": 240, + "x": 286, "y": 208 }, "width": 53, @@ -130,10 +130,10 @@ "id": "d", "type": "rectangle", "pos": { - "x": 258, + "x": 318, "y": 700 }, - "width": 54, + "width": 120, "height": 66, "opacity": 1, "strokeDash": 0, @@ -171,10 +171,10 @@ "id": "e", "type": "rectangle", "pos": { - "x": 236, + "x": 277, "y": 1192 }, - "width": 53, + "width": 120, "height": 66, "opacity": 1, "strokeDash": 0, @@ -212,10 +212,10 @@ "id": "f", "type": "rectangle", "pos": { - "x": 89, + "x": 70, "y": 946 }, - "width": 51, + "width": 80, "height": 66, "opacity": 1, "strokeDash": 0, @@ -253,7 +253,7 @@ "id": "g", "type": "rectangle", "pos": { - "x": 96, + "x": 97, "y": 700 }, "width": 54, @@ -335,10 +335,10 @@ "id": "i", "type": "rectangle", "pos": { - "x": 157, + "x": 144, "y": 1338 }, - "width": 49, + "width": 80, "height": 66, "opacity": 1, "strokeDash": 0, @@ -376,10 +376,10 @@ "id": "j", "type": "rectangle", "pos": { - "x": 339, + "x": 362, "y": 12 }, - "width": 50, + "width": 80, "height": 66, "opacity": 1, "strokeDash": 0, @@ -417,7 +417,7 @@ "id": "k", "type": "rectangle", "pos": { - "x": 155, + "x": 157, "y": 1474 }, "width": 53, @@ -458,10 +458,10 @@ "id": "l", "type": "rectangle", "pos": { - "x": 274, + "x": 348, "y": 946 }, - "width": 49, + "width": 120, "height": 66, "opacity": 1, "strokeDash": 0, @@ -499,10 +499,10 @@ "id": "m", "type": "rectangle", "pos": { - "x": 170, + "x": 171, "y": 700 }, - "width": 57, + "width": 80, "height": 66, "opacity": 1, "strokeDash": 0, @@ -540,10 +540,10 @@ "id": "n", "type": "rectangle", "pos": { - "x": 163, + "x": 137, "y": 1192 }, - "width": 53, + "width": 120, "height": 66, "opacity": 1, "strokeDash": 0, @@ -581,7 +581,7 @@ "id": "o", "type": "rectangle", "pos": { - "x": 332, + "x": 458, "y": 700 }, "width": 54, @@ -622,7 +622,7 @@ "id": "p", "type": "rectangle", "pos": { - "x": 406, + "x": 532, "y": 700 }, "width": 53, @@ -663,7 +663,7 @@ "id": "q", "type": "rectangle", "pos": { - "x": 235, + "x": 310, "y": 1338 }, "width": 54, @@ -729,11 +729,11 @@ "labelPercentage": 0, "route": [ { - "x": 340.07142857142856, + "x": 385.6666666666667, "y": 274 }, { - "x": 340.07142857142856, + "x": 385.6666666666667, "y": 354 } ], @@ -769,19 +769,19 @@ "labelPercentage": 0, "route": [ { - "x": 267.07142857142856, + "x": 312.6666666666667, "y": 274 }, { - "x": 267.07142857142856, + "x": 312.6666666666667, "y": 314 }, { - "x": 326.82142857142856, + "x": 315.6666666666667, "y": 314 }, { - "x": 326.82142857142856, + "x": 315.6666666666667, "y": 354 } ], @@ -817,19 +817,19 @@ "labelPercentage": 0, "route": [ { - "x": 285, + "x": 378.6666666666667, "y": 766 }, { - "x": 285, + "x": 378.6666666666667, "y": 856 }, { - "x": 263, + "x": 337.6666666666667, "y": 856 }, { - "x": 263, + "x": 337.6666666666667, "y": 1192 } ], @@ -865,19 +865,19 @@ "labelPercentage": 0, "route": [ { - "x": 123.99999999999997, + "x": 124.00000000000003, "y": 1012 }, { - "x": 123.99999999999997, + "x": 124.00000000000003, "y": 1102 }, { - "x": 249.74999999999997, + "x": 307.6666666666667, "y": 1102 }, { - "x": 249.74999999999997, + "x": 307.6666666666667, "y": 1192 } ], @@ -913,27 +913,27 @@ "labelPercentage": 0, "route": [ { - "x": 336.2857142857143, + "x": 365.6666666666667, "y": 420 }, { - "x": 336.2857142857143, + "x": 365.6666666666667, "y": 560 }, { - "x": 85.99999999999997, + "x": 86, "y": 560 }, { - "x": 85.99999999999997, + "x": 86, "y": 806 }, { - "x": 106.99999999999997, + "x": 97.33333333333337, "y": 806 }, { - "x": 106.99999999999997, + "x": 97.33333333333337, "y": 946 } ], @@ -969,19 +969,19 @@ "labelPercentage": 0, "route": [ { - "x": 343.85714285714283, + "x": 405.6666666666667, "y": 420 }, { - "x": 343.85714285714283, + "x": 405.6666666666667, "y": 610 }, { - "x": 123.99999999999997, + "x": 124, "y": 610 }, { - "x": 123.99999999999997, + "x": 124, "y": 700 } ], @@ -1017,11 +1017,11 @@ "labelPercentage": 0, "route": [ { - "x": 123.99999999999997, + "x": 124, "y": 766 }, { - "x": 123.99999999999997, + "x": 124.00000000000003, "y": 946 } ], @@ -1057,11 +1057,11 @@ "labelPercentage": 0, "route": [ { - "x": 328.7142857142857, + "x": 325.6666666666667, "y": 420 }, { - "x": 328.7142857142857, + "x": 325.6666666666667, "y": 510 }, { @@ -1105,11 +1105,11 @@ "labelPercentage": 0, "route": [ { - "x": 321.1428571428571, + "x": 285.6666666666667, "y": 420 }, { - "x": 321.1428571428571, + "x": 285.6666666666667, "y": 460 }, { @@ -1121,11 +1121,11 @@ "y": 1298 }, { - "x": 173.66666666666666, + "x": 171, "y": 1298 }, { - "x": 173.66666666666666, + "x": 171, "y": 1338 } ], @@ -1161,19 +1161,19 @@ "labelPercentage": 0, "route": [ { - "x": 351.4285714285714, + "x": 445.6666666666667, "y": 420 }, { - "x": 351.4285714285714, + "x": 445.6666666666667, "y": 660 }, { - "x": 285, + "x": 378.6666666666667, "y": 660 }, { - "x": 285, + "x": 378.6666666666667, "y": 700 } ], @@ -1209,19 +1209,19 @@ "labelPercentage": 0, "route": [ { - "x": 351.57142857142856, + "x": 382.1666666666667, "y": 78 }, { - "x": 351.57142857142856, + "x": 382.1666666666667, "y": 118 }, { - "x": 267.07142857142856, + "x": 312.6666666666667, "y": 118 }, { - "x": 267.07142857142856, + "x": 312.6666666666667, "y": 208 } ], @@ -1257,19 +1257,19 @@ "labelPercentage": 0, "route": [ { - "x": 364.07142857142856, + "x": 402.1666666666667, "y": 78 }, { - "x": 364.07142857142856, + "x": 402.1666666666667, "y": 168 }, { - "x": 340.07142857142856, + "x": 385.6666666666667, "y": 168 }, { - "x": 340.07142857142856, + "x": 385.6666666666667, "y": 208 } ], @@ -1305,19 +1305,19 @@ "labelPercentage": 0, "route": [ { - "x": 353.32142857142856, + "x": 455.6666666666667, "y": 354 }, { - "x": 353.32142857142856, + "x": 455.6666666666667, "y": 314 }, { - "x": 376.57142857142856, + "x": 422.1666666666667, "y": 314 }, { - "x": 376.57142857142856, + "x": 422.1666666666667, "y": 78 } ], @@ -1353,11 +1353,11 @@ "labelPercentage": 0, "route": [ { - "x": 181.83333333333331, + "x": 184.33333333333334, "y": 1404 }, { - "x": 181.83333333333331, + "x": 184.33333333333334, "y": 1474 } ], @@ -1393,11 +1393,11 @@ "labelPercentage": 0, "route": [ { - "x": 298.5, + "x": 408.6666666666667, "y": 766 }, { - "x": 298.5, + "x": 408.6666666666667, "y": 946 } ], @@ -1433,19 +1433,19 @@ "labelPercentage": 0, "route": [ { - "x": 298.5, + "x": 408.6666666666667, "y": 1012 }, { - "x": 298.5, - "y": 1102 + "x": 408.6666666666667, + "y": 1052 }, { - "x": 276.25, - "y": 1102 + "x": 367.6666666666667, + "y": 1052 }, { - "x": 276.25, + "x": 367.6666666666667, "y": 1192 } ], @@ -1481,19 +1481,19 @@ "labelPercentage": 0, "route": [ { - "x": 208.99999999999997, + "x": 224.33333333333334, "y": 766 }, { - "x": 208.99999999999997, + "x": 224.33333333333334, "y": 906 }, { - "x": 286.25, + "x": 378.6666666666667, "y": 906 }, { - "x": 286.25, + "x": 378.6666666666667, "y": 946 } ], @@ -1529,11 +1529,11 @@ "labelPercentage": 0, "route": [ { - "x": 189.99999999999997, + "x": 197.66666666666666, "y": 766 }, { - "x": 189.99999999999997, + "x": 197.66666666666669, "y": 1192 } ], @@ -1569,11 +1569,11 @@ "labelPercentage": 0, "route": [ { - "x": 189.99999999999997, + "x": 197.66666666666669, "y": 1258 }, { - "x": 189.99999999999997, + "x": 197.66666666666669, "y": 1338 } ], @@ -1609,27 +1609,27 @@ "labelPercentage": 0, "route": [ { - "x": 271.5, + "x": 348.6666666666667, "y": 766 }, { - "x": 271.5, + "x": 348.6666666666667, "y": 806 }, { - "x": 251.99999999999997, + "x": 326.6666666666667, "y": 806 }, { - "x": 251.99999999999997, + "x": 326.6666666666667, "y": 1052 }, { - "x": 203.24999999999997, + "x": 227.66666666666669, "y": 1052 }, { - "x": 203.24999999999997, + "x": 227.66666666666669, "y": 1192 } ], @@ -1665,19 +1665,19 @@ "labelPercentage": 0, "route": [ { - "x": 106.99999999999997, + "x": 97.33333333333337, "y": 1012 }, { - "x": 106.99999999999997, + "x": 97.33333333333337, "y": 1152 }, { - "x": 176.74999999999997, + "x": 167.66666666666669, "y": 1152 }, { - "x": 176.74999999999997, + "x": 167.66666666666669, "y": 1192 } ], @@ -1713,11 +1713,11 @@ "labelPercentage": 0, "route": [ { - "x": 359, + "x": 485.6666666666667, "y": 420 }, { - "x": 359, + "x": 485.6666666666667, "y": 700 } ], @@ -1753,19 +1753,19 @@ "labelPercentage": 0, "route": [ { - "x": 432.5, + "x": 559.1666666666667, "y": 766 }, { - "x": 432.5, + "x": 559.1666666666667, "y": 806 }, { - "x": 310.75, + "x": 438.6666666666667, "y": 806 }, { - "x": 310.75, + "x": 438.6666666666667, "y": 946 } ], @@ -1801,11 +1801,11 @@ "labelPercentage": 0, "route": [ { - "x": 263, + "x": 337.6666666666667, "y": 1258 }, { - "x": 263, + "x": 337.6666666666667, "y": 1338 } ], diff --git a/e2etests/testdata/stable/dense/elk/sketch.exp.svg b/e2etests/testdata/stable/dense/elk/sketch.exp.svg index 5ca0d270bf..f0924351a0 100644 --- a/e2etests/testdata/stable/dense/elk/sketch.exp.svg +++ b/e2etests/testdata/stable/dense/elk/sketch.exp.svg @@ -1,4 +1,4 @@ -abcdefghijklmnopq - +.fill-N1{fill:#0A0F25;}.fill-N2{fill:#676C7E;}.fill-N3{fill:#9499AB;}.fill-N4{fill:#CFD2DD;}.fill-N5{fill:#DEE1EB;}.fill-N6{fill:#EEF1F8;}.fill-N7{fill:#FFFFFF;}.fill-B1{fill:#0D32B2;}.fill-B2{fill:#0D32B2;}.fill-B3{fill:#E3E9FD;}.fill-B4{fill:#E3E9FD;}.fill-B5{fill:#EDF0FD;}.fill-B6{fill:#F7F8FE;}.fill-AA2{fill:#4A6FF3;}.fill-AA4{fill:#EDF0FD;}.fill-AA5{fill:#F7F8FE;}.fill-AB4{fill:#EDF0FD;}.fill-AB5{fill:#F7F8FE;}.stroke-N1{stroke:#0A0F25;}.stroke-N2{stroke:#676C7E;}.stroke-N3{stroke:#9499AB;}.stroke-N4{stroke:#CFD2DD;}.stroke-N5{stroke:#DEE1EB;}.stroke-N6{stroke:#EEF1F8;}.stroke-N7{stroke:#FFFFFF;}.stroke-B1{stroke:#0D32B2;}.stroke-B2{stroke:#0D32B2;}.stroke-B3{stroke:#E3E9FD;}.stroke-B4{stroke:#E3E9FD;}.stroke-B5{stroke:#EDF0FD;}.stroke-B6{stroke:#F7F8FE;}.stroke-AA2{stroke:#4A6FF3;}.stroke-AA4{stroke:#EDF0FD;}.stroke-AA5{stroke:#F7F8FE;}.stroke-AB4{stroke:#EDF0FD;}.stroke-AB5{stroke:#F7F8FE;}.background-color-N1{background-color:#0A0F25;}.background-color-N2{background-color:#676C7E;}.background-color-N3{background-color:#9499AB;}.background-color-N4{background-color:#CFD2DD;}.background-color-N5{background-color:#DEE1EB;}.background-color-N6{background-color:#EEF1F8;}.background-color-N7{background-color:#FFFFFF;}.background-color-B1{background-color:#0D32B2;}.background-color-B2{background-color:#0D32B2;}.background-color-B3{background-color:#E3E9FD;}.background-color-B4{background-color:#E3E9FD;}.background-color-B5{background-color:#EDF0FD;}.background-color-B6{background-color:#F7F8FE;}.background-color-AA2{background-color:#4A6FF3;}.background-color-AA4{background-color:#EDF0FD;}.background-color-AA5{background-color:#F7F8FE;}.background-color-AB4{background-color:#EDF0FD;}.background-color-AB5{background-color:#F7F8FE;}.color-N1{color:#0A0F25;}.color-N2{color:#676C7E;}.color-N3{color:#9499AB;}.color-N4{color:#CFD2DD;}.color-N5{color:#DEE1EB;}.color-N6{color:#EEF1F8;}.color-N7{color:#FFFFFF;}.color-B1{color:#0D32B2;}.color-B2{color:#0D32B2;}.color-B3{color:#E3E9FD;}.color-B4{color:#E3E9FD;}.color-B5{color:#EDF0FD;}.color-B6{color:#F7F8FE;}.color-AA2{color:#4A6FF3;}.color-AA4{color:#EDF0FD;}.color-AA5{color:#F7F8FE;}.color-AB4{color:#EDF0FD;}.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}]]>abcdefghijklmnopq + \ No newline at end of file diff --git a/e2etests/testdata/stable/different_subgraphs/elk/board.exp.json b/e2etests/testdata/stable/different_subgraphs/elk/board.exp.json index 5b02b1b3b2..d1c97c8165 100644 --- a/e2etests/testdata/stable/different_subgraphs/elk/board.exp.json +++ b/e2etests/testdata/stable/different_subgraphs/elk/board.exp.json @@ -7,10 +7,10 @@ "id": "a", "type": "rectangle", "pos": { - "x": 319, + "x": 269, "y": 530 }, - "width": 53, + "width": 120, "height": 66, "opacity": 1, "strokeDash": 0, @@ -48,10 +48,10 @@ "id": "tree", "type": "rectangle", "pos": { - "x": 106, + "x": 102, "y": 726 }, - "width": 74, + "width": 80, "height": 66, "opacity": 1, "strokeDash": 0, @@ -294,10 +294,10 @@ "id": "then", "type": "rectangle", "pos": { - "x": 434, + "x": 433, "y": 530 }, - "width": 78, + "width": 80, "height": 66, "opacity": 1, "strokeDash": 0, @@ -704,10 +704,10 @@ "id": "finally.a", "type": "rectangle", "pos": { - "x": 741, + "x": 732, "y": 198 }, - "width": 53, + "width": 80, "height": 66, "opacity": 1, "strokeDash": 0, @@ -786,7 +786,7 @@ "id": "finally.inside", "type": "rectangle", "pos": { - "x": 724, + "x": 728, "y": 62 }, "width": 88, @@ -934,19 +934,19 @@ "labelPercentage": 0, "route": [ { - "x": 332.5, + "x": 299, "y": 596 }, { - "x": 332.5, + "x": 299, "y": 636 }, { - "x": 143.16666666666663, + "x": 142.16666666666663, "y": 636 }, { - "x": 143.16666666666663, + "x": 142.16666666666663, "y": 726 } ], @@ -982,11 +982,11 @@ "labelPercentage": 0, "route": [ { - "x": 345.75, + "x": 329, "y": 596 }, { - "x": 345.75, + "x": 329, "y": 686 }, { @@ -1110,11 +1110,11 @@ "labelPercentage": 0, "route": [ { - "x": 130.83333333333326, + "x": 128.83333333333326, "y": 792 }, { - "x": 130.83333333333326, + "x": 128.83333333333326, "y": 832 }, { @@ -1198,7 +1198,7 @@ "labelPercentage": 0, "route": [ { - "x": 460.5, + "x": 460.50000000000006, "y": 596 }, { @@ -1318,11 +1318,11 @@ "labelPercentage": 0, "route": [ { - "x": 486.5, + "x": 487.1666666666667, "y": 596 }, { - "x": 486.5, + "x": 487.1666666666667, "y": 636 }, { @@ -1574,11 +1574,11 @@ "labelPercentage": 0, "route": [ { - "x": 768.1666666666666, + "x": 772.6666666666666, "y": 128 }, { - "x": 768.1666666666666, + "x": 772.6666666666666, "y": 198 } ], @@ -1654,11 +1654,11 @@ "labelPercentage": 0, "route": [ { - "x": 776.9999999999999, + "x": 786, "y": 264 }, { - "x": 776.9999999999999, + "x": 786, "y": 304 }, { diff --git a/e2etests/testdata/stable/different_subgraphs/elk/sketch.exp.svg b/e2etests/testdata/stable/different_subgraphs/elk/sketch.exp.svg index 8872a493e4..421065810f 100644 --- a/e2etests/testdata/stable/different_subgraphs/elk/sketch.exp.svg +++ b/e2etests/testdata/stable/different_subgraphs/elk/sketch.exp.svg @@ -24,7 +24,7 @@ mix-blend-mode: multiply; opacity: 0.5; } -.fill-N1{fill:#0A0F25;}.fill-N2{fill:#676C7E;}.fill-N3{fill:#9499AB;}.fill-N4{fill:#CFD2DD;}.fill-N5{fill:#DEE1EB;}.fill-N6{fill:#EEF1F8;}.fill-N7{fill:#FFFFFF;}.fill-B1{fill:#0D32B2;}.fill-B2{fill:#0D32B2;}.fill-B3{fill:#E3E9FD;}.fill-B4{fill:#E3E9FD;}.fill-B5{fill:#EDF0FD;}.fill-B6{fill:#F7F8FE;}.fill-AA2{fill:#4A6FF3;}.fill-AA4{fill:#EDF0FD;}.fill-AA5{fill:#F7F8FE;}.fill-AB4{fill:#EDF0FD;}.fill-AB5{fill:#F7F8FE;}.stroke-N1{stroke:#0A0F25;}.stroke-N2{stroke:#676C7E;}.stroke-N3{stroke:#9499AB;}.stroke-N4{stroke:#CFD2DD;}.stroke-N5{stroke:#DEE1EB;}.stroke-N6{stroke:#EEF1F8;}.stroke-N7{stroke:#FFFFFF;}.stroke-B1{stroke:#0D32B2;}.stroke-B2{stroke:#0D32B2;}.stroke-B3{stroke:#E3E9FD;}.stroke-B4{stroke:#E3E9FD;}.stroke-B5{stroke:#EDF0FD;}.stroke-B6{stroke:#F7F8FE;}.stroke-AA2{stroke:#4A6FF3;}.stroke-AA4{stroke:#EDF0FD;}.stroke-AA5{stroke:#F7F8FE;}.stroke-AB4{stroke:#EDF0FD;}.stroke-AB5{stroke:#F7F8FE;}.background-color-N1{background-color:#0A0F25;}.background-color-N2{background-color:#676C7E;}.background-color-N3{background-color:#9499AB;}.background-color-N4{background-color:#CFD2DD;}.background-color-N5{background-color:#DEE1EB;}.background-color-N6{background-color:#EEF1F8;}.background-color-N7{background-color:#FFFFFF;}.background-color-B1{background-color:#0D32B2;}.background-color-B2{background-color:#0D32B2;}.background-color-B3{background-color:#E3E9FD;}.background-color-B4{background-color:#E3E9FD;}.background-color-B5{background-color:#EDF0FD;}.background-color-B6{background-color:#F7F8FE;}.background-color-AA2{background-color:#4A6FF3;}.background-color-AA4{background-color:#EDF0FD;}.background-color-AA5{background-color:#F7F8FE;}.background-color-AB4{background-color:#EDF0FD;}.background-color-AB5{background-color:#F7F8FE;}.color-N1{color:#0A0F25;}.color-N2{color:#676C7E;}.color-N3{color:#9499AB;}.color-N4{color:#CFD2DD;}.color-N5{color:#DEE1EB;}.color-N6{color:#EEF1F8;}.color-N7{color:#FFFFFF;}.color-B1{color:#0D32B2;}.color-B2{color:#0D32B2;}.color-B3{color:#E3E9FD;}.color-B4{color:#E3E9FD;}.color-B5{color:#EDF0FD;}.color-B6{color:#F7F8FE;}.color-AA2{color:#4A6FF3;}.color-AA4{color:#EDF0FD;}.color-AA5{color:#F7F8FE;}.color-AB4{color:#EDF0FD;}.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}]]>atreeandnodessomemoremanythenhereyouhavehierarchyfinallyanotherofnestingtreesatreeinsidehierarchyroot +.fill-N1{fill:#0A0F25;}.fill-N2{fill:#676C7E;}.fill-N3{fill:#9499AB;}.fill-N4{fill:#CFD2DD;}.fill-N5{fill:#DEE1EB;}.fill-N6{fill:#EEF1F8;}.fill-N7{fill:#FFFFFF;}.fill-B1{fill:#0D32B2;}.fill-B2{fill:#0D32B2;}.fill-B3{fill:#E3E9FD;}.fill-B4{fill:#E3E9FD;}.fill-B5{fill:#EDF0FD;}.fill-B6{fill:#F7F8FE;}.fill-AA2{fill:#4A6FF3;}.fill-AA4{fill:#EDF0FD;}.fill-AA5{fill:#F7F8FE;}.fill-AB4{fill:#EDF0FD;}.fill-AB5{fill:#F7F8FE;}.stroke-N1{stroke:#0A0F25;}.stroke-N2{stroke:#676C7E;}.stroke-N3{stroke:#9499AB;}.stroke-N4{stroke:#CFD2DD;}.stroke-N5{stroke:#DEE1EB;}.stroke-N6{stroke:#EEF1F8;}.stroke-N7{stroke:#FFFFFF;}.stroke-B1{stroke:#0D32B2;}.stroke-B2{stroke:#0D32B2;}.stroke-B3{stroke:#E3E9FD;}.stroke-B4{stroke:#E3E9FD;}.stroke-B5{stroke:#EDF0FD;}.stroke-B6{stroke:#F7F8FE;}.stroke-AA2{stroke:#4A6FF3;}.stroke-AA4{stroke:#EDF0FD;}.stroke-AA5{stroke:#F7F8FE;}.stroke-AB4{stroke:#EDF0FD;}.stroke-AB5{stroke:#F7F8FE;}.background-color-N1{background-color:#0A0F25;}.background-color-N2{background-color:#676C7E;}.background-color-N3{background-color:#9499AB;}.background-color-N4{background-color:#CFD2DD;}.background-color-N5{background-color:#DEE1EB;}.background-color-N6{background-color:#EEF1F8;}.background-color-N7{background-color:#FFFFFF;}.background-color-B1{background-color:#0D32B2;}.background-color-B2{background-color:#0D32B2;}.background-color-B3{background-color:#E3E9FD;}.background-color-B4{background-color:#E3E9FD;}.background-color-B5{background-color:#EDF0FD;}.background-color-B6{background-color:#F7F8FE;}.background-color-AA2{background-color:#4A6FF3;}.background-color-AA4{background-color:#EDF0FD;}.background-color-AA5{background-color:#F7F8FE;}.background-color-AB4{background-color:#EDF0FD;}.background-color-AB5{background-color:#F7F8FE;}.color-N1{color:#0A0F25;}.color-N2{color:#676C7E;}.color-N3{color:#9499AB;}.color-N4{color:#CFD2DD;}.color-N5{color:#DEE1EB;}.color-N6{color:#EEF1F8;}.color-N7{color:#FFFFFF;}.color-B1{color:#0D32B2;}.color-B2{color:#0D32B2;}.color-B3{color:#E3E9FD;}.color-B4{color:#E3E9FD;}.color-B5{color:#EDF0FD;}.color-B6{color:#F7F8FE;}.color-AA2{color:#4A6FF3;}.color-AA4{color:#EDF0FD;}.color-AA5{color:#F7F8FE;}.color-AB4{color:#EDF0FD;}.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}]]>atreeandnodessomemoremanythenhereyouhavehierarchyfinallyanotherofnestingtreesatreeinsidehierarchyroot \ No newline at end of file diff --git a/e2etests/testdata/stable/elk_border_radius/elk/board.exp.json b/e2etests/testdata/stable/elk_border_radius/elk/board.exp.json index 10788a53cb..f63d00890a 100644 --- a/e2etests/testdata/stable/elk_border_radius/elk/board.exp.json +++ b/e2etests/testdata/stable/elk_border_radius/elk/board.exp.json @@ -7,10 +7,10 @@ "id": "a", "type": "rectangle", "pos": { - "x": 29, + "x": 84, "y": 12 }, - "width": 53, + "width": 200, "height": 66, "opacity": 1, "strokeDash": 0, @@ -49,7 +49,7 @@ "type": "rectangle", "pos": { "x": 12, - "y": 308 + "y": 208 }, "width": 53, "height": 66, @@ -90,7 +90,7 @@ "type": "rectangle", "pos": { "x": 85, - "y": 308 + "y": 208 }, "width": 53, "height": 66, @@ -131,7 +131,7 @@ "type": "rectangle", "pos": { "x": 158, - "y": 308 + "y": 208 }, "width": 53, "height": 66, @@ -172,7 +172,7 @@ "type": "rectangle", "pos": { "x": 231, - "y": 308 + "y": 208 }, "width": 51, "height": 66, @@ -213,7 +213,7 @@ "type": "rectangle", "pos": { "x": 302, - "y": 308 + "y": 208 }, "width": 54, "height": 66, @@ -278,12 +278,20 @@ "labelPercentage": 0, "route": [ { - "x": 38.5, + "x": 117.83333333333334, "y": 78 }, + { + "x": 117.83333333333334, + "y": 118 + }, + { + "x": 38.5, + "y": 118 + }, { "x": 38.5, - "y": 308 + "y": 208 } ], "animated": false, @@ -317,20 +325,20 @@ "labelPercentage": 0, "route": [ { - "x": 47.33333333333333, + "x": 151.16666666666669, "y": 78 }, { - "x": 47.33333333333333, - "y": 268 + "x": 151.16666666666669, + "y": 168 }, { "x": 111.5, - "y": 268 + "y": 168 }, { "x": 111.5, - "y": 308 + "y": 208 } ], "animated": false, @@ -364,21 +372,13 @@ "labelPosition": "", "labelPercentage": 0, "route": [ - { - "x": 56.166666666666664, - "y": 78 - }, - { - "x": 56.166666666666664, - "y": 218 - }, { "x": 184.5, - "y": 218 + "y": 78 }, { "x": 184.5, - "y": 308 + "y": 208 } ], "animated": false, @@ -413,11 +413,11 @@ "labelPercentage": 0, "route": [ { - "x": 65, + "x": 217.83333333333331, "y": 78 }, { - "x": 65, + "x": 217.83333333333331, "y": 168 }, { @@ -426,7 +426,7 @@ }, { "x": 256.5, - "y": 308 + "y": 208 } ], "animated": false, @@ -461,11 +461,11 @@ "labelPercentage": 0, "route": [ { - "x": 73.83333333333334, + "x": 251.16666666666663, "y": 78 }, { - "x": 73.83333333333334, + "x": 251.16666666666663, "y": 118 }, { @@ -474,7 +474,7 @@ }, { "x": 329, - "y": 308 + "y": 208 } ], "animated": false, diff --git a/e2etests/testdata/stable/elk_border_radius/elk/sketch.exp.svg b/e2etests/testdata/stable/elk_border_radius/elk/sketch.exp.svg index cfa6107feb..59aa2aec93 100644 --- a/e2etests/testdata/stable/elk_border_radius/elk/sketch.exp.svg +++ b/e2etests/testdata/stable/elk_border_radius/elk/sketch.exp.svg @@ -1,4 +1,4 @@ -abcefg - +.fill-N1{fill:#0A0F25;}.fill-N2{fill:#676C7E;}.fill-N3{fill:#9499AB;}.fill-N4{fill:#CFD2DD;}.fill-N5{fill:#DEE1EB;}.fill-N6{fill:#EEF1F8;}.fill-N7{fill:#FFFFFF;}.fill-B1{fill:#0D32B2;}.fill-B2{fill:#0D32B2;}.fill-B3{fill:#E3E9FD;}.fill-B4{fill:#E3E9FD;}.fill-B5{fill:#EDF0FD;}.fill-B6{fill:#F7F8FE;}.fill-AA2{fill:#4A6FF3;}.fill-AA4{fill:#EDF0FD;}.fill-AA5{fill:#F7F8FE;}.fill-AB4{fill:#EDF0FD;}.fill-AB5{fill:#F7F8FE;}.stroke-N1{stroke:#0A0F25;}.stroke-N2{stroke:#676C7E;}.stroke-N3{stroke:#9499AB;}.stroke-N4{stroke:#CFD2DD;}.stroke-N5{stroke:#DEE1EB;}.stroke-N6{stroke:#EEF1F8;}.stroke-N7{stroke:#FFFFFF;}.stroke-B1{stroke:#0D32B2;}.stroke-B2{stroke:#0D32B2;}.stroke-B3{stroke:#E3E9FD;}.stroke-B4{stroke:#E3E9FD;}.stroke-B5{stroke:#EDF0FD;}.stroke-B6{stroke:#F7F8FE;}.stroke-AA2{stroke:#4A6FF3;}.stroke-AA4{stroke:#EDF0FD;}.stroke-AA5{stroke:#F7F8FE;}.stroke-AB4{stroke:#EDF0FD;}.stroke-AB5{stroke:#F7F8FE;}.background-color-N1{background-color:#0A0F25;}.background-color-N2{background-color:#676C7E;}.background-color-N3{background-color:#9499AB;}.background-color-N4{background-color:#CFD2DD;}.background-color-N5{background-color:#DEE1EB;}.background-color-N6{background-color:#EEF1F8;}.background-color-N7{background-color:#FFFFFF;}.background-color-B1{background-color:#0D32B2;}.background-color-B2{background-color:#0D32B2;}.background-color-B3{background-color:#E3E9FD;}.background-color-B4{background-color:#E3E9FD;}.background-color-B5{background-color:#EDF0FD;}.background-color-B6{background-color:#F7F8FE;}.background-color-AA2{background-color:#4A6FF3;}.background-color-AA4{background-color:#EDF0FD;}.background-color-AA5{background-color:#F7F8FE;}.background-color-AB4{background-color:#EDF0FD;}.background-color-AB5{background-color:#F7F8FE;}.color-N1{color:#0A0F25;}.color-N2{color:#676C7E;}.color-N3{color:#9499AB;}.color-N4{color:#CFD2DD;}.color-N5{color:#DEE1EB;}.color-N6{color:#EEF1F8;}.color-N7{color:#FFFFFF;}.color-B1{color:#0D32B2;}.color-B2{color:#0D32B2;}.color-B3{color:#E3E9FD;}.color-B4{color:#E3E9FD;}.color-B5{color:#EDF0FD;}.color-B6{color:#F7F8FE;}.color-AA2{color:#4A6FF3;}.color-AA4{color:#EDF0FD;}.color-AA5{color:#F7F8FE;}.color-AB4{color:#EDF0FD;}.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}]]>abcefg + \ No newline at end of file diff --git a/e2etests/testdata/stable/investigate/elk/board.exp.json b/e2etests/testdata/stable/investigate/elk/board.exp.json index bdb4004110..770ee2ed1d 100644 --- a/e2etests/testdata/stable/investigate/elk/board.exp.json +++ b/e2etests/testdata/stable/investigate/elk/board.exp.json @@ -7,7 +7,7 @@ "id": "aa", "type": "step", "pos": { - "x": 67, + "x": 70, "y": 12 }, "width": 102, @@ -48,7 +48,7 @@ "id": "bb", "type": "step", "pos": { - "x": 152, + "x": 155, "y": 193 }, "width": 103, @@ -89,7 +89,7 @@ "id": "cc", "type": "step", "pos": { - "x": 136, + "x": 138, "y": 374 }, "width": 101, @@ -130,7 +130,7 @@ "id": "dd", "type": "rectangle", "pos": { - "x": 19, + "x": 22, "y": 641 }, "width": 250, @@ -171,7 +171,7 @@ "id": "dd.ee", "type": "diamond", "pos": { - "x": 69, + "x": 72, "y": 691 }, "width": 64, @@ -212,10 +212,10 @@ "id": "ff", "type": "rectangle", "pos": { - "x": 279, + "x": 289, "y": 1839 }, - "width": 276, + "width": 283, "height": 338, "opacity": 1, "strokeDash": 0, @@ -253,10 +253,10 @@ "id": "ff.gg", "type": "diamond", "pos": { - "x": 338, + "x": 342, "y": 1889 }, - "width": 66, + "width": 80, "height": 92, "opacity": 1, "strokeDash": 0, @@ -294,7 +294,7 @@ "id": "dd.hh", "type": "diamond", "pos": { - "x": 153, + "x": 156, "y": 691 }, "width": 66, @@ -335,7 +335,7 @@ "id": "ii", "type": "rectangle", "pos": { - "x": 292, + "x": 303, "y": 998 }, "width": 54, @@ -376,7 +376,7 @@ "id": "jj", "type": "rectangle", "pos": { - "x": 291, + "x": 303, "y": 1189 }, "width": 55, @@ -417,10 +417,10 @@ "id": "kk", "type": "rectangle", "pos": { - "x": 288, + "x": 290, "y": 1451 }, - "width": 62, + "width": 80, "height": 66, "opacity": 1, "strokeDash": 0, @@ -458,7 +458,7 @@ "id": "ll", "type": "rectangle", "pos": { - "x": 238, + "x": 249, "y": 2358 }, "width": 265, @@ -499,7 +499,7 @@ "id": "ll.mm", "type": "oval", "pos": { - "x": 288, + "x": 299, "y": 2408 }, "width": 81, @@ -540,7 +540,7 @@ "id": "ff.mm", "type": "oval", "pos": { - "x": 424, + "x": 442, "y": 1894 }, "width": 81, @@ -663,7 +663,7 @@ "id": "ff.pp", "type": "rectangle", "pos": { - "x": 340, + "x": 350, "y": 2061 }, "width": 63, @@ -704,7 +704,7 @@ "id": "ll.qq", "type": "rectangle", "pos": { - "x": 389, + "x": 400, "y": 2415 }, "width": 64, @@ -745,7 +745,7 @@ "id": "ll.rr", "type": "rectangle", "pos": { - "x": 392, + "x": 403, "y": 2559 }, "width": 58, @@ -786,7 +786,7 @@ "id": "ss", "type": "rectangle", "pos": { - "x": 107, + "x": 110, "y": 1139 }, "width": 158, @@ -827,7 +827,7 @@ "id": "ss.tt", "type": "rectangle", "pos": { - "x": 157, + "x": 160, "y": 1189 }, "width": 58, @@ -868,7 +868,7 @@ "id": "uu", "type": "rectangle", "pos": { - "x": 105, + "x": 107, "y": 1385 }, "width": 163, @@ -909,7 +909,7 @@ "id": "uu.vv", "type": "rectangle", "pos": { - "x": 155, + "x": 157, "y": 1435 }, "width": 63, @@ -950,7 +950,7 @@ "id": "ww", "type": "queue", "pos": { - "x": 137, + "x": 139, "y": 1636 }, "width": 149, @@ -1002,10 +1002,10 @@ "id": "rm", "type": "rectangle", "pos": { - "x": 154, + "x": 149, "y": 2525 }, - "width": 64, + "width": 80, "height": 66, "opacity": 1, "strokeDash": 0, @@ -1084,7 +1084,7 @@ "id": "yy", "type": "rectangle", "pos": { - "x": 279, + "x": 290, "y": 2815 }, "width": 238, @@ -1125,7 +1125,7 @@ "id": "yy.zz", "type": "queue", "pos": { - "x": 329, + "x": 340, "y": 2865 }, "width": 138, @@ -1177,7 +1177,7 @@ "id": "yy.ab", "type": "rectangle", "pos": { - "x": 367, + "x": 377, "y": 3053 }, "width": 63, @@ -1325,19 +1325,19 @@ "labelPercentage": 0, "route": [ { - "x": 136, - "y": 112 + "x": 138, + "y": 111 }, { - "x": 135.66666666666666, + "x": 138.33333333333334, "y": 153 }, { - "x": 203.83333333333331, + "x": 206.5, "y": 153 }, { - "x": 204, + "x": 207, "y": 193 } ], @@ -1373,11 +1373,11 @@ "labelPercentage": 0, "route": [ { - "x": 187, + "x": 189, "y": 294 }, { - "x": 187, + "x": 189, "y": 374 } ], @@ -1413,11 +1413,11 @@ "labelPercentage": 0, "route": [ { - "x": 102, + "x": 104, "y": 113 }, { - "x": 102, + "x": 104, "y": 691 } ], @@ -1453,19 +1453,19 @@ "labelPercentage": 0, "route": [ { - "x": 221, + "x": 224, "y": 293 }, { - "x": 220.99999999999997, + "x": 223.66666666666666, "y": 334 }, { - "x": 382.66666666666663, + "x": 395.66666666666663, "y": 334 }, { - "x": 383, + "x": 396, "y": 1904 } ], @@ -1501,11 +1501,11 @@ "labelPercentage": 0, "route": [ { - "x": 187, + "x": 189, "y": 475 }, { - "x": 187, + "x": 189, "y": 691 } ], @@ -1541,27 +1541,27 @@ "labelPercentage": 0, "route": [ { - "x": 102, + "x": 104, "y": 783 }, { - "x": 101.66666666666666, + "x": 104.33333333333334, "y": 823 }, { - "x": 196.66666666666666, + "x": 199.33333333333334, "y": 823 }, { - "x": 196.66666666666666, + "x": 199.33333333333334, "y": 958 }, { - "x": 319.16666666666663, + "x": 330.83333333333337, "y": 958 }, { - "x": 319.16666666666663, + "x": 330.83333333333337, "y": 998 } ], @@ -1597,11 +1597,11 @@ "labelPercentage": 0, "route": [ { - "x": 319.16666666666663, + "x": 330.83333333333337, "y": 1064 }, { - "x": 319.16666666666663, + "x": 330.83333333333337, "y": 1189 } ], @@ -1637,11 +1637,11 @@ "labelPercentage": 0, "route": [ { - "x": 319.16666666666663, + "x": 330.83333333333337, "y": 1255 }, { - "x": 319.16666666666663, + "x": 330.83333333333337, "y": 1451.6666666666667 } ], @@ -1677,19 +1677,19 @@ "labelPercentage": 0, "route": [ { - "x": 329.49999999999994, + "x": 344.1666666666667, "y": 1517.6666666666667 }, { - "x": 329.49999999999994, + "x": 344.1666666666667, "y": 1596 }, { - "x": 465.16666666666663, + "x": 482.8333333333333, "y": 1596 }, { - "x": 465, + "x": 483, "y": 1895 } ], @@ -1725,19 +1725,19 @@ "labelPercentage": 0, "route": [ { - "x": 465, + "x": 483, "y": 1976 }, { - "x": 465.16666666666663, + "x": 482.8333333333333, "y": 2021 }, { - "x": 329.16666666666663, + "x": 339.8333333333333, "y": 2021 }, { - "x": 329, + "x": 340, "y": 2408 } ], @@ -1773,11 +1773,11 @@ "labelPercentage": 0, "route": [ { - "x": 329, + "x": 340, "y": 2489 }, { - "x": 329.16666666666663, + "x": 339.8333333333333, "y": 2720 }, { @@ -1785,7 +1785,7 @@ "y": 2720 }, { - "x": 93.49999999999997, + "x": 93.5, "y": 3309 } ], @@ -1821,11 +1821,11 @@ "labelPercentage": 0, "route": [ { - "x": 372, + "x": 382, "y": 1981 }, { - "x": 371.66666666666663, + "x": 382.3333333333333, "y": 2061 } ], @@ -1861,19 +1861,19 @@ "labelPercentage": 0, "route": [ { - "x": 371.66666666666663, + "x": 382.3333333333333, "y": 2127 }, { - "x": 371.66666666666663, + "x": 382.3333333333333, "y": 2222 }, { - "x": 421.66666666666663, + "x": 432.3333333333333, "y": 2222 }, { - "x": 421.66666666666663, + "x": 432.3333333333333, "y": 2415.5 } ], @@ -1909,11 +1909,11 @@ "labelPercentage": 0, "route": [ { - "x": 421.66666666666663, + "x": 432.3333333333333, "y": 2481.5 }, { - "x": 421.66666666666663, + "x": 432.3333333333333, "y": 2559 } ], @@ -1949,11 +1949,11 @@ "labelPercentage": 0, "route": [ { - "x": 187, + "x": 189, "y": 783 }, { - "x": 186.66666666666666, + "x": 189.33333333333334, "y": 1189 } ], @@ -1989,11 +1989,11 @@ "labelPercentage": 0, "route": [ { - "x": 186.66666666666666, + "x": 189.33333333333334, "y": 1255 }, { - "x": 186.66666666666666, + "x": 189.33333333333334, "y": 1435 } ], @@ -2029,19 +2029,19 @@ "labelPercentage": 0, "route": [ { - "x": 308.8333333333333, + "x": 317.50000000000006, "y": 1517.6666666666667 }, { - "x": 308.8333333333333, + "x": 317.50000000000006, "y": 1596 }, { - "x": 236.33333333333331, + "x": 239, "y": 1596 }, { - "x": 236, + "x": 239, "y": 1636 } ], @@ -2077,11 +2077,11 @@ "labelPercentage": 0, "route": [ { - "x": 186.66666666666666, + "x": 189.33333333333334, "y": 1501 }, { - "x": 187, + "x": 189, "y": 1636 } ], @@ -2117,11 +2117,11 @@ "labelPercentage": 0, "route": [ { - "x": 187, + "x": 189, "y": 1754 }, { - "x": 186.66666666666666, + "x": 189.33333333333331, "y": 2525.3333333333335 } ], @@ -2157,7 +2157,7 @@ "labelPercentage": 0, "route": [ { - "x": 176, + "x": 175.99999999999997, "y": 2591.3333333333335 }, { @@ -2197,11 +2197,11 @@ "labelPercentage": 0, "route": [ { - "x": 421.66666666666663, + "x": 432.3333333333333, "y": 2625 }, { - "x": 422, + "x": 432, "y": 2865 } ], @@ -2237,19 +2237,19 @@ "labelPercentage": 0, "route": [ { - "x": 197.33333333333331, + "x": 202.66666666666666, "y": 2591.3333333333335 }, { - "x": 197.33333333333331, + "x": 202.66666666666666, "y": 2770 }, { - "x": 375.66666666666663, + "x": 386.3333333333333, "y": 2770 }, { - "x": 376, + "x": 386, "y": 2865 } ], @@ -2285,11 +2285,11 @@ "labelPercentage": 0, "route": [ { - "x": 399, + "x": 409, "y": 2983 }, { - "x": 398.66666666666663, + "x": 409.3333333333333, "y": 3053 } ], @@ -2325,11 +2325,11 @@ "labelPercentage": 0, "route": [ { - "x": 398.66666666666663, + "x": 409.3333333333333, "y": 3119 }, { - "x": 398.66666666666663, + "x": 409.3333333333333, "y": 3214 }, { @@ -2413,19 +2413,19 @@ "labelPercentage": 0, "route": [ { - "x": 236, + "x": 239, "y": 1754 }, { - "x": 236.33333333333331, + "x": 239, "y": 1794 }, { - "x": 360.66666666666663, + "x": 369, "y": 1794 }, { - "x": 361, + "x": 369, "y": 1904 } ], diff --git a/e2etests/testdata/stable/investigate/elk/sketch.exp.svg b/e2etests/testdata/stable/investigate/elk/sketch.exp.svg index 0b98ed640d..653cd50467 100644 --- a/e2etests/testdata/stable/investigate/elk/sketch.exp.svg +++ b/e2etests/testdata/stable/investigate/elk/sketch.exp.svg @@ -1,4 +1,4 @@ -aabbccddffiijjkkllnnssuuwwrmyyeegghhmmmmooppqqrrttvvxxzzabac 123456 - - - - - - - +.fill-N1{fill:#0A0F25;}.fill-N2{fill:#676C7E;}.fill-N3{fill:#9499AB;}.fill-N4{fill:#CFD2DD;}.fill-N5{fill:#DEE1EB;}.fill-N6{fill:#EEF1F8;}.fill-N7{fill:#FFFFFF;}.fill-B1{fill:#0D32B2;}.fill-B2{fill:#0D32B2;}.fill-B3{fill:#E3E9FD;}.fill-B4{fill:#E3E9FD;}.fill-B5{fill:#EDF0FD;}.fill-B6{fill:#F7F8FE;}.fill-AA2{fill:#4A6FF3;}.fill-AA4{fill:#EDF0FD;}.fill-AA5{fill:#F7F8FE;}.fill-AB4{fill:#EDF0FD;}.fill-AB5{fill:#F7F8FE;}.stroke-N1{stroke:#0A0F25;}.stroke-N2{stroke:#676C7E;}.stroke-N3{stroke:#9499AB;}.stroke-N4{stroke:#CFD2DD;}.stroke-N5{stroke:#DEE1EB;}.stroke-N6{stroke:#EEF1F8;}.stroke-N7{stroke:#FFFFFF;}.stroke-B1{stroke:#0D32B2;}.stroke-B2{stroke:#0D32B2;}.stroke-B3{stroke:#E3E9FD;}.stroke-B4{stroke:#E3E9FD;}.stroke-B5{stroke:#EDF0FD;}.stroke-B6{stroke:#F7F8FE;}.stroke-AA2{stroke:#4A6FF3;}.stroke-AA4{stroke:#EDF0FD;}.stroke-AA5{stroke:#F7F8FE;}.stroke-AB4{stroke:#EDF0FD;}.stroke-AB5{stroke:#F7F8FE;}.background-color-N1{background-color:#0A0F25;}.background-color-N2{background-color:#676C7E;}.background-color-N3{background-color:#9499AB;}.background-color-N4{background-color:#CFD2DD;}.background-color-N5{background-color:#DEE1EB;}.background-color-N6{background-color:#EEF1F8;}.background-color-N7{background-color:#FFFFFF;}.background-color-B1{background-color:#0D32B2;}.background-color-B2{background-color:#0D32B2;}.background-color-B3{background-color:#E3E9FD;}.background-color-B4{background-color:#E3E9FD;}.background-color-B5{background-color:#EDF0FD;}.background-color-B6{background-color:#F7F8FE;}.background-color-AA2{background-color:#4A6FF3;}.background-color-AA4{background-color:#EDF0FD;}.background-color-AA5{background-color:#F7F8FE;}.background-color-AB4{background-color:#EDF0FD;}.background-color-AB5{background-color:#F7F8FE;}.color-N1{color:#0A0F25;}.color-N2{color:#676C7E;}.color-N3{color:#9499AB;}.color-N4{color:#CFD2DD;}.color-N5{color:#DEE1EB;}.color-N6{color:#EEF1F8;}.color-N7{color:#FFFFFF;}.color-B1{color:#0D32B2;}.color-B2{color:#0D32B2;}.color-B3{color:#E3E9FD;}.color-B4{color:#E3E9FD;}.color-B5{color:#EDF0FD;}.color-B6{color:#F7F8FE;}.color-AA2{color:#4A6FF3;}.color-AA4{color:#EDF0FD;}.color-AA5{color:#F7F8FE;}.color-AB4{color:#EDF0FD;}.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}]]>aabbccddffiijjkkllnnssuuwwrmyyeegghhmmmmooppqqrrttvvxxzzabac 123456 + + + + + + + \ No newline at end of file diff --git a/e2etests/testdata/stable/large_arch/elk/board.exp.json b/e2etests/testdata/stable/large_arch/elk/board.exp.json index 3077fc3ffa..cbe88240fe 100644 --- a/e2etests/testdata/stable/large_arch/elk/board.exp.json +++ b/e2etests/testdata/stable/large_arch/elk/board.exp.json @@ -48,7 +48,7 @@ "id": "b", "type": "rectangle", "pos": { - "x": 833, + "x": 911, "y": 436 }, "width": 53, @@ -89,8 +89,8 @@ "id": "c", "type": "rectangle", "pos": { - "x": 437, - "y": 1998 + "x": 322, + "y": 1768 }, "width": 53, "height": 66, @@ -130,8 +130,8 @@ "id": "d", "type": "rectangle", "pos": { - "x": 510, - "y": 1998 + "x": 395, + "y": 1768 }, "width": 54, "height": 66, @@ -171,8 +171,8 @@ "id": "e", "type": "rectangle", "pos": { - "x": 511, - "y": 2134 + "x": 395, + "y": 1904 }, "width": 53, "height": 66, @@ -212,8 +212,8 @@ "id": "f", "type": "rectangle", "pos": { - "x": 584, - "y": 1998 + "x": 469, + "y": 1768 }, "width": 51, "height": 66, @@ -253,10 +253,10 @@ "id": "g", "type": "rectangle", "pos": { - "x": 184, - "y": 1998 + "x": 198, + "y": 1768 }, - "width": 54, + "width": 80, "height": 66, "opacity": 1, "strokeDash": 0, @@ -294,8 +294,8 @@ "id": "h", "type": "rectangle", "pos": { - "x": 213, - "y": 1011 + "x": 238, + "y": 1061 }, "width": 53, "height": 66, @@ -335,11 +335,11 @@ "id": "i", "type": "rectangle", "pos": { - "x": 394, - "y": 1011 + "x": 311, + "y": 1061 }, - "width": 403, - "height": 752, + "width": 546, + "height": 522, "opacity": 1, "strokeDash": 0, "strokeWidth": 2, @@ -376,8 +376,8 @@ "id": "i.j", "type": "rectangle", "pos": { - "x": 523, - "y": 1061 + "x": 583, + "y": 1111 }, "width": 222, "height": 166, @@ -417,8 +417,8 @@ "id": "i.j.k", "type": "rectangle", "pos": { - "x": 573, - "y": 1111 + "x": 633, + "y": 1161 }, "width": 53, "height": 66, @@ -458,8 +458,8 @@ "id": "i.j.l", "type": "rectangle", "pos": { - "x": 646, - "y": 1111 + "x": 706, + "y": 1161 }, "width": 49, "height": 66, @@ -499,10 +499,10 @@ "id": "i.m", "type": "rectangle", "pos": { - "x": 444, - "y": 1377 + "x": 361, + "y": 1427 }, - "width": 57, + "width": 200, "height": 66, "opacity": 1, "strokeDash": 0, @@ -540,8 +540,8 @@ "id": "i.n", "type": "rectangle", "pos": { - "x": 521, - "y": 1417 + "x": 581, + "y": 1467 }, "width": 53, "height": 66, @@ -581,8 +581,8 @@ "id": "i.o", "type": "rectangle", "pos": { - "x": 594, - "y": 1317 + "x": 654, + "y": 1367 }, "width": 153, "height": 166, @@ -622,8 +622,8 @@ "id": "i.o.p", "type": "rectangle", "pos": { - "x": 644, - "y": 1367 + "x": 704, + "y": 1417 }, "width": 53, "height": 66, @@ -663,10 +663,10 @@ "id": "q", "type": "rectangle", "pos": { - "x": 767, - "y": 1998 + "x": 807, + "y": 1768 }, - "width": 54, + "width": 80, "height": 66, "opacity": 1, "strokeDash": 0, @@ -707,7 +707,7 @@ "x": 85, "y": 12 }, - "width": 728, + "width": 806, "height": 909, "opacity": 1, "strokeDash": 0, @@ -748,7 +748,7 @@ "x": 135, "y": 313 }, - "width": 465, + "width": 543, "height": 417, "opacity": 1, "strokeDash": 0, @@ -789,7 +789,7 @@ "x": 185, "y": 551 }, - "width": 51, + "width": 120, "height": 66, "opacity": 1, "strokeDash": 0, @@ -827,7 +827,7 @@ "id": "r.s.u", "type": "rectangle", "pos": { - "x": 256, + "x": 325, "y": 509 }, "width": 154, @@ -868,7 +868,7 @@ "id": "r.s.u.v", "type": "rectangle", "pos": { - "x": 306, + "x": 375, "y": 559 }, "width": 54, @@ -909,7 +909,7 @@ "id": "r.s.w", "type": "rectangle", "pos": { - "x": 430, + "x": 499, "y": 561 }, "width": 58, @@ -950,10 +950,10 @@ "id": "r.s.x", "type": "rectangle", "pos": { - "x": 423, + "x": 474, "y": 363 }, - "width": 53, + "width": 80, "height": 66, "opacity": 1, "strokeDash": 0, @@ -991,7 +991,7 @@ "id": "r.s.y", "type": "rectangle", "pos": { - "x": 496, + "x": 574, "y": 363 }, "width": 54, @@ -1032,7 +1032,7 @@ "id": "r.z", "type": "rectangle", "pos": { - "x": 307, + "x": 376, "y": 805 }, "width": 52, @@ -1073,7 +1073,7 @@ "id": "r.aa", "type": "rectangle", "pos": { - "x": 166, + "x": 184, "y": 162 }, "width": 62, @@ -1114,7 +1114,7 @@ "id": "r.bb", "type": "rectangle", "pos": { - "x": 248, + "x": 266, "y": 62 }, "width": 245, @@ -1155,7 +1155,7 @@ "id": "r.bb.cc", "type": "rectangle", "pos": { - "x": 298, + "x": 316, "y": 112 }, "width": 61, @@ -1196,7 +1196,7 @@ "id": "r.bb.dd", "type": "rectangle", "pos": { - "x": 379, + "x": 397, "y": 112 }, "width": 64, @@ -1237,7 +1237,7 @@ "id": "r.ee", "type": "rectangle", "pos": { - "x": 618, + "x": 696, "y": 162 }, "width": 62, @@ -1278,7 +1278,7 @@ "id": "r.ff", "type": "rectangle", "pos": { - "x": 620, + "x": 698, "y": 313 }, "width": 57, @@ -1319,7 +1319,7 @@ "id": "r.gg", "type": "rectangle", "pos": { - "x": 700, + "x": 778, "y": 162 }, "width": 63, @@ -1385,20 +1385,20 @@ "labelPercentage": 0, "route": [ { - "x": 600.25, - "y": 1177 + "x": 660, + "y": 1227 }, { - "x": 600.25, - "y": 1272 + "x": 660, + "y": 1322 }, { - "x": 487.5, - "y": 1272 + "x": 511.5, + "y": 1322 }, { - "x": 487.5, - "y": 1377.625 + "x": 511.5, + "y": 1427.625 } ], "animated": false, @@ -1433,12 +1433,12 @@ "labelPercentage": 0, "route": [ { - "x": 671.25, - "y": 1177 + "x": 731, + "y": 1227 }, { - "x": 671.25, - "y": 1367 + "x": 731, + "y": 1417 } ], "animated": false, @@ -1473,20 +1473,20 @@ "labelPercentage": 0, "route": [ { - "x": 807.75, - "y": 1998 + "x": 867.5, + "y": 1768 }, { - "x": 807.75, - "y": 966 + "x": 867.5, + "y": 1016 }, { - "x": 473.25, - "y": 966 + "x": 461.5, + "y": 1016 }, { - "x": 473.25, - "y": 1377.625 + "x": 461.5, + "y": 1427.625 } ], "animated": false, @@ -1521,28 +1521,20 @@ "labelPercentage": 0, "route": [ { - "x": 492.25, - "y": 1443.625 - }, - { - "x": 492.25, - "y": 1523 + "x": 528.1666666666666, + "y": 1493.625 }, { - "x": 494.25, - "y": 1523 + "x": 528.1666666666666, + "y": 1678 }, { - "x": 494.25, - "y": 1858 + "x": 827.5, + "y": 1678 }, { - "x": 780.75, - "y": 1858 - }, - { - "x": 780.75, - "y": 1998 + "x": 827.5, + "y": 1768 } ], "animated": false, @@ -1577,20 +1569,20 @@ "labelPercentage": 0, "route": [ { - "x": 548.25, - "y": 1483 + "x": 608, + "y": 1533 }, { - "x": 548.25, - "y": 1808 + "x": 608, + "y": 1628 }, { - "x": 794.25, - "y": 1808 + "x": 847.5, + "y": 1628 }, { - "x": 794.25, - "y": 1998 + "x": 847.5, + "y": 1768 } ], "animated": false, @@ -1625,20 +1617,20 @@ "labelPercentage": 0, "route": [ { - "x": 463.75, - "y": 1443.625 + "x": 428.16666666666663, + "y": 1493.625 }, { - "x": 463.75, - "y": 1673 + "x": 428.16666666666663, + "y": 1678 }, { - "x": 464.25, - "y": 1673 + "x": 348.8333333333333, + "y": 1678 }, { - "x": 464.25, - "y": 1998 + "x": 348.8333333333333, + "y": 1768 } ], "animated": false, @@ -1673,28 +1665,20 @@ "labelPercentage": 0, "route": [ { - "x": 473.25, - "y": 1443.625 + "x": 461.5, + "y": 1493.625 }, { - "x": 473.25, - "y": 1623 + "x": 461.5, + "y": 1728 }, { - "x": 474.25, - "y": 1623 + "x": 422.3333333333333, + "y": 1728 }, { - "x": 474.25, - "y": 1958 - }, - { - "x": 537.75, - "y": 1958 - }, - { - "x": 537.75, - "y": 1998 + "x": 422.3333333333333, + "y": 1768 } ], "animated": false, @@ -1729,20 +1713,20 @@ "labelPercentage": 0, "route": [ { - "x": 454.25, - "y": 1443.625 + "x": 394.8333333333333, + "y": 1493.625 }, { - "x": 454.25, - "y": 1808 + "x": 394.8333333333333, + "y": 1628 }, { - "x": 220, - "y": 1808 + "x": 251.66666666666674, + "y": 1628 }, { - "x": 220, - "y": 1998 + "x": 251.66666666666674, + "y": 1768 } ], "animated": false, @@ -1777,28 +1761,12 @@ "labelPercentage": 0, "route": [ { - "x": 482.75, - "y": 1443.625 - }, - { - "x": 482.75, - "y": 1573 - }, - { - "x": 484.25, - "y": 1573 - }, - { - "x": 484.25, - "y": 1908 + "x": 494.8333333333333, + "y": 1493.625 }, { - "x": 610.25, - "y": 1908 - }, - { - "x": 610.25, - "y": 1998 + "x": 494.8333333333333, + "y": 1768 } ], "animated": false, @@ -1833,12 +1801,12 @@ "labelPercentage": 0, "route": [ { - "x": 537.75, - "y": 2064 + "x": 422.3333333333333, + "y": 1834 }, { - "x": 537.75, - "y": 2134 + "x": 422.3333333333333, + "y": 1904 } ], "animated": false, @@ -1873,19 +1841,19 @@ "labelPercentage": 0, "route": [ { - "x": 441.3333333333333, + "x": 501.3333333333333, "y": 429 }, { - "x": 441.3333333333333, + "x": 501.3333333333333, "y": 469 }, { - "x": 223.25, + "x": 275, "y": 469 }, { - "x": 223.25, + "x": 275, "y": 551 } ], @@ -1921,11 +1889,11 @@ "labelPercentage": 0, "route": [ { - "x": 459, + "x": 528, "y": 429 }, { - "x": 459, + "x": 528, "y": 561.5 } ], @@ -1961,19 +1929,19 @@ "labelPercentage": 0, "route": [ { - "x": 731.6666666666666, + "x": 809.6666666666666, "y": 228 }, { - "x": 731.6666666666666, + "x": 809.6666666666666, "y": 268 }, { - "x": 210.5, + "x": 245, "y": 268 }, { - "x": 210.5, + "x": 245, "y": 551 } ], @@ -2009,11 +1977,11 @@ "labelPercentage": 0, "route": [ { - "x": 333, + "x": 402, "y": 625 }, { - "x": 333, + "x": 402, "y": 805 } ], @@ -2049,11 +2017,11 @@ "labelPercentage": 0, "route": [ { - "x": 197.75, + "x": 215, "y": 228 }, { - "x": 197.75, + "x": 215, "y": 551 } ], @@ -2089,12 +2057,20 @@ "labelPercentage": 0, "route": [ { - "x": 459, + "x": 528, "y": 627.5 }, { - "x": 459, - "y": 1377.625 + "x": 528, + "y": 966 + }, + { + "x": 411.5, + "y": 966 + }, + { + "x": 411.5, + "y": 1427.625 } ], "animated": false, @@ -2129,12 +2105,12 @@ "labelPercentage": 0, "route": [ { - "x": 202, + "x": 225, "y": 617 }, { - "x": 202, - "y": 1998 + "x": 225, + "y": 1768 } ], "animated": false, @@ -2169,20 +2145,12 @@ "labelPercentage": 0, "route": [ { - "x": 219, + "x": 265, "y": 617 }, { - "x": 219, - "y": 966 - }, - { - "x": 239.5, - "y": 966 - }, - { - "x": 239.5, - "y": 1011 + "x": 265, + "y": 1061 } ], "animated": false, @@ -2217,11 +2185,11 @@ "labelPercentage": 0, "route": [ { - "x": 649.1666666666666, + "x": 727.1666666666666, "y": 228 }, { - "x": 649.1666666666666, + "x": 727.1666666666666, "y": 313 } ], diff --git a/e2etests/testdata/stable/large_arch/elk/sketch.exp.svg b/e2etests/testdata/stable/large_arch/elk/sketch.exp.svg index d6880f953a..3f8b894926 100644 --- a/e2etests/testdata/stable/large_arch/elk/sketch.exp.svg +++ b/e2etests/testdata/stable/large_arch/elk/sketch.exp.svg @@ -1,4 +1,4 @@ -abcdefghiqrjmnoszaabbeeffggklptuwxyccddv - +.fill-N1{fill:#0A0F25;}.fill-N2{fill:#676C7E;}.fill-N3{fill:#9499AB;}.fill-N4{fill:#CFD2DD;}.fill-N5{fill:#DEE1EB;}.fill-N6{fill:#EEF1F8;}.fill-N7{fill:#FFFFFF;}.fill-B1{fill:#0D32B2;}.fill-B2{fill:#0D32B2;}.fill-B3{fill:#E3E9FD;}.fill-B4{fill:#E3E9FD;}.fill-B5{fill:#EDF0FD;}.fill-B6{fill:#F7F8FE;}.fill-AA2{fill:#4A6FF3;}.fill-AA4{fill:#EDF0FD;}.fill-AA5{fill:#F7F8FE;}.fill-AB4{fill:#EDF0FD;}.fill-AB5{fill:#F7F8FE;}.stroke-N1{stroke:#0A0F25;}.stroke-N2{stroke:#676C7E;}.stroke-N3{stroke:#9499AB;}.stroke-N4{stroke:#CFD2DD;}.stroke-N5{stroke:#DEE1EB;}.stroke-N6{stroke:#EEF1F8;}.stroke-N7{stroke:#FFFFFF;}.stroke-B1{stroke:#0D32B2;}.stroke-B2{stroke:#0D32B2;}.stroke-B3{stroke:#E3E9FD;}.stroke-B4{stroke:#E3E9FD;}.stroke-B5{stroke:#EDF0FD;}.stroke-B6{stroke:#F7F8FE;}.stroke-AA2{stroke:#4A6FF3;}.stroke-AA4{stroke:#EDF0FD;}.stroke-AA5{stroke:#F7F8FE;}.stroke-AB4{stroke:#EDF0FD;}.stroke-AB5{stroke:#F7F8FE;}.background-color-N1{background-color:#0A0F25;}.background-color-N2{background-color:#676C7E;}.background-color-N3{background-color:#9499AB;}.background-color-N4{background-color:#CFD2DD;}.background-color-N5{background-color:#DEE1EB;}.background-color-N6{background-color:#EEF1F8;}.background-color-N7{background-color:#FFFFFF;}.background-color-B1{background-color:#0D32B2;}.background-color-B2{background-color:#0D32B2;}.background-color-B3{background-color:#E3E9FD;}.background-color-B4{background-color:#E3E9FD;}.background-color-B5{background-color:#EDF0FD;}.background-color-B6{background-color:#F7F8FE;}.background-color-AA2{background-color:#4A6FF3;}.background-color-AA4{background-color:#EDF0FD;}.background-color-AA5{background-color:#F7F8FE;}.background-color-AB4{background-color:#EDF0FD;}.background-color-AB5{background-color:#F7F8FE;}.color-N1{color:#0A0F25;}.color-N2{color:#676C7E;}.color-N3{color:#9499AB;}.color-N4{color:#CFD2DD;}.color-N5{color:#DEE1EB;}.color-N6{color:#EEF1F8;}.color-N7{color:#FFFFFF;}.color-B1{color:#0D32B2;}.color-B2{color:#0D32B2;}.color-B3{color:#E3E9FD;}.color-B4{color:#E3E9FD;}.color-B5{color:#EDF0FD;}.color-B6{color:#F7F8FE;}.color-AA2{color:#4A6FF3;}.color-AA4{color:#EDF0FD;}.color-AA5{color:#F7F8FE;}.color-AB4{color:#EDF0FD;}.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}]]>abcdefghiqrjmnoszaabbeeffggklptuwxyccddv + \ No newline at end of file diff --git a/e2etests/testdata/stable/multiple_trees/elk/board.exp.json b/e2etests/testdata/stable/multiple_trees/elk/board.exp.json index 2e24ead790..5bc0dc22e1 100644 --- a/e2etests/testdata/stable/multiple_trees/elk/board.exp.json +++ b/e2etests/testdata/stable/multiple_trees/elk/board.exp.json @@ -7,10 +7,10 @@ "id": "a", "type": "rectangle", "pos": { - "x": 442, + "x": 382, "y": 294 }, - "width": 53, + "width": 240, "height": 66, "opacity": 1, "strokeDash": 0, @@ -48,10 +48,10 @@ "id": "b", "type": "rectangle", "pos": { - "x": 80, + "x": 46, "y": 540 }, - "width": 53, + "width": 120, "height": 66, "opacity": 1, "strokeDash": 0, @@ -89,10 +89,10 @@ "id": "c", "type": "rectangle", "pos": { - "x": 152, + "x": 186, "y": 540 }, - "width": 53, + "width": 80, "height": 66, "opacity": 1, "strokeDash": 0, @@ -130,10 +130,10 @@ "id": "d", "type": "rectangle", "pos": { - "x": 299, + "x": 333, "y": 540 }, - "width": 54, + "width": 80, "height": 66, "opacity": 1, "strokeDash": 0, @@ -171,10 +171,10 @@ "id": "e", "type": "rectangle", "pos": { - "x": 445, + "x": 479, "y": 540 }, - "width": 53, + "width": 80, "height": 66, "opacity": 1, "strokeDash": 0, @@ -212,10 +212,10 @@ "id": "f", "type": "rectangle", "pos": { - "x": 590, + "x": 623, "y": 540 }, - "width": 51, + "width": 80, "height": 66, "opacity": 1, "strokeDash": 0, @@ -253,10 +253,10 @@ "id": "g", "type": "rectangle", "pos": { - "x": 441, + "x": 462, "y": 158 }, - "width": 54, + "width": 80, "height": 66, "opacity": 1, "strokeDash": 0, @@ -294,10 +294,10 @@ "id": "h", "type": "rectangle", "pos": { - "x": 661, + "x": 723, "y": 540 }, - "width": 53, + "width": 120, "height": 66, "opacity": 1, "strokeDash": 0, @@ -417,7 +417,7 @@ "id": "k", "type": "rectangle", "pos": { - "x": 451, + "x": 489, "y": 12 }, "width": 53, @@ -458,7 +458,7 @@ "id": "l", "type": "rectangle", "pos": { - "x": 382, + "x": 420, "y": 12 }, "width": 49, @@ -499,7 +499,7 @@ "id": "m", "type": "rectangle", "pos": { - "x": 84, + "x": 136, "y": 686 }, "width": 57, @@ -540,7 +540,7 @@ "id": "n", "type": "rectangle", "pos": { - "x": 161, + "x": 213, "y": 686 }, "width": 53, @@ -581,7 +581,7 @@ "id": "o", "type": "rectangle", "pos": { - "x": 234, + "x": 286, "y": 686 }, "width": 54, @@ -622,7 +622,7 @@ "id": "p", "type": "rectangle", "pos": { - "x": 308, + "x": 360, "y": 686 }, "width": 53, @@ -663,7 +663,7 @@ "id": "q", "type": "rectangle", "pos": { - "x": 381, + "x": 433, "y": 686 }, "width": 54, @@ -704,7 +704,7 @@ "id": "r", "type": "rectangle", "pos": { - "x": 455, + "x": 507, "y": 686 }, "width": 51, @@ -745,7 +745,7 @@ "id": "s", "type": "rectangle", "pos": { - "x": 309, + "x": 360, "y": 822 }, "width": 52, @@ -786,7 +786,7 @@ "id": "t", "type": "rectangle", "pos": { - "x": 526, + "x": 578, "y": 686 }, "width": 51, @@ -827,7 +827,7 @@ "id": "u", "type": "rectangle", "pos": { - "x": 597, + "x": 649, "y": 686 }, "width": 54, @@ -868,7 +868,7 @@ "id": "v", "type": "rectangle", "pos": { - "x": 598, + "x": 710, "y": 294 }, "width": 54, @@ -909,7 +909,7 @@ "id": "w", "type": "rectangle", "pos": { - "x": 672, + "x": 784, "y": 294 }, "width": 58, @@ -975,19 +975,19 @@ "labelPercentage": 0, "route": [ { - "x": 449.7857142857142, + "x": 416.64285714285717, "y": 360 }, { - "x": 449.7857142857142, + "x": 416.64285714285717, "y": 400 }, { - "x": 119.75, + "x": 136.5, "y": 400 }, { - "x": 119.75, + "x": 136.5, "y": 540 } ], @@ -1023,19 +1023,19 @@ "labelPercentage": 0, "route": [ { - "x": 457.3571428571428, + "x": 450.92857142857144, "y": 360 }, { - "x": 457.3571428571428, + "x": 450.92857142857144, "y": 450 }, { - "x": 179.49999999999994, + "x": 226.5, "y": 450 }, { - "x": 179.49999999999994, + "x": 226.5, "y": 540 } ], @@ -1071,19 +1071,19 @@ "labelPercentage": 0, "route": [ { - "x": 464.92857142857133, + "x": 485.2142857142858, "y": 360 }, { - "x": 464.92857142857133, + "x": 485.2142857142858, "y": 500 }, { - "x": 326.33333333333326, + "x": 373.50000000000006, "y": 500 }, { - "x": 326.33333333333326, + "x": 373.50000000000006, "y": 540 } ], @@ -1119,11 +1119,11 @@ "labelPercentage": 0, "route": [ { - "x": 472.4999999999999, + "x": 519.5, "y": 360 }, { - "x": 472.4999999999999, + "x": 519.5, "y": 540 } ], @@ -1159,19 +1159,19 @@ "labelPercentage": 0, "route": [ { - "x": 480.0714285714285, + "x": 553.7857142857143, "y": 360 }, { - "x": 480.0714285714285, + "x": 553.7857142857143, "y": 500 }, { - "x": 616.3333333333333, + "x": 663, "y": 500 }, { - "x": 616.3333333333333, + "x": 663, "y": 540 } ], @@ -1207,11 +1207,11 @@ "labelPercentage": 0, "route": [ { - "x": 468.71428571428567, + "x": 502.3571428571429, "y": 224 }, { - "x": 468.71428571428567, + "x": 502.3571428571429, "y": 294 } ], @@ -1247,19 +1247,19 @@ "labelPercentage": 0, "route": [ { - "x": 487.64285714285705, + "x": 588.0714285714286, "y": 360 }, { - "x": 487.64285714285705, + "x": 588.0714285714286, "y": 450 }, { - "x": 675.0833333333333, + "x": 753, "y": 450 }, { - "x": 675.0833333333333, + "x": 753, "y": 540 } ], @@ -1343,11 +1343,11 @@ "y": 400 }, { - "x": 93.25, + "x": 76.5, "y": 400 }, { - "x": 93.25, + "x": 76.5, "y": 540 } ], @@ -1383,11 +1383,11 @@ "labelPercentage": 0, "route": [ { - "x": 477.71428571428567, + "x": 515.6904761904763, "y": 78 }, { - "x": 477.71428571428567, + "x": 515.6904761904763, "y": 158 } ], @@ -1423,19 +1423,19 @@ "labelPercentage": 0, "route": [ { - "x": 406.71428571428567, + "x": 444.69047619047626, "y": 78 }, { - "x": 406.71428571428567, + "x": 444.69047619047626, "y": 118 }, { - "x": 459.71428571428567, + "x": 489.0238095238095, "y": 118 }, { - "x": 459.71428571428567, + "x": 489.0238095238095, "y": 158 } ], @@ -1471,19 +1471,19 @@ "labelPercentage": 0, "route": [ { - "x": 170.66666666666663, + "x": 213.16666666666669, "y": 606 }, { - "x": 170.66666666666663, + "x": 213.16666666666669, "y": 646 }, { - "x": 113.33333333333326, + "x": 164.83333333333326, "y": 646 }, { - "x": 113.33333333333326, + "x": 164.83333333333326, "y": 686 } ], @@ -1519,11 +1519,11 @@ "labelPercentage": 0, "route": [ { - "x": 188.33333333333326, + "x": 239.83333333333331, "y": 606 }, { - "x": 188.33333333333326, + "x": 239.83333333333331, "y": 686 } ], @@ -1559,19 +1559,19 @@ "labelPercentage": 0, "route": [ { - "x": 317.33333333333326, + "x": 360.16666666666674, "y": 606 }, { - "x": 317.33333333333326, + "x": 360.16666666666674, "y": 646 }, { - "x": 261.83333333333326, + "x": 313.33333333333337, "y": 646 }, { - "x": 261.83333333333326, + "x": 313.33333333333337, "y": 686 } ], @@ -1607,11 +1607,11 @@ "labelPercentage": 0, "route": [ { - "x": 335.33333333333326, + "x": 386.83333333333337, "y": 606 }, { - "x": 335.33333333333326, + "x": 386.83333333333337, "y": 686 } ], @@ -1647,19 +1647,19 @@ "labelPercentage": 0, "route": [ { - "x": 463.6666666666666, + "x": 506.1666666666667, "y": 606 }, { - "x": 463.6666666666666, + "x": 506.1666666666667, "y": 646 }, { - "x": 408.83333333333326, + "x": 460.33333333333337, "y": 646 }, { - "x": 408.83333333333326, + "x": 460.33333333333337, "y": 686 } ], @@ -1695,11 +1695,11 @@ "labelPercentage": 0, "route": [ { - "x": 481.33333333333326, + "x": 532.8333333333334, "y": 606 }, { - "x": 481.33333333333326, + "x": 532.8333333333334, "y": 686 } ], @@ -1735,11 +1735,11 @@ "labelPercentage": 0, "route": [ { - "x": 335.33333333333326, + "x": 386.83333333333337, "y": 752 }, { - "x": 335.33333333333326, + "x": 386.83333333333337, "y": 822 } ], @@ -1775,19 +1775,19 @@ "labelPercentage": 0, "route": [ { - "x": 607.8333333333333, + "x": 649.6666666666666, "y": 606 }, { - "x": 607.8333333333333, + "x": 649.6666666666666, "y": 646 }, { - "x": 552.3333333333333, + "x": 603.8333333333334, "y": 646 }, { - "x": 552.3333333333333, + "x": 603.8333333333334, "y": 686 } ], @@ -1823,11 +1823,11 @@ "labelPercentage": 0, "route": [ { - "x": 624.8333333333333, + "x": 676.3333333333334, "y": 606 }, { - "x": 624.8333333333333, + "x": 676.3333333333334, "y": 686 } ], @@ -1863,19 +1863,19 @@ "labelPercentage": 0, "route": [ { - "x": 625.5833333333333, + "x": 737, "y": 360 }, { - "x": 625.5833333333333, + "x": 737, "y": 400 }, { - "x": 688.3333333333333, + "x": 783, "y": 400 }, { - "x": 688.3333333333333, + "x": 783, "y": 540 } ], @@ -1911,11 +1911,11 @@ "labelPercentage": 0, "route": [ { - "x": 701.5833333333333, + "x": 813, "y": 360 }, { - "x": 701.5833333333333, + "x": 813, "y": 540 } ], diff --git a/e2etests/testdata/stable/multiple_trees/elk/sketch.exp.svg b/e2etests/testdata/stable/multiple_trees/elk/sketch.exp.svg index 2f02311142..1999ad3eac 100644 --- a/e2etests/testdata/stable/multiple_trees/elk/sketch.exp.svg +++ b/e2etests/testdata/stable/multiple_trees/elk/sketch.exp.svg @@ -1,4 +1,4 @@ -abcdefghijklmnopqrstuvw - +.fill-N1{fill:#0A0F25;}.fill-N2{fill:#676C7E;}.fill-N3{fill:#9499AB;}.fill-N4{fill:#CFD2DD;}.fill-N5{fill:#DEE1EB;}.fill-N6{fill:#EEF1F8;}.fill-N7{fill:#FFFFFF;}.fill-B1{fill:#0D32B2;}.fill-B2{fill:#0D32B2;}.fill-B3{fill:#E3E9FD;}.fill-B4{fill:#E3E9FD;}.fill-B5{fill:#EDF0FD;}.fill-B6{fill:#F7F8FE;}.fill-AA2{fill:#4A6FF3;}.fill-AA4{fill:#EDF0FD;}.fill-AA5{fill:#F7F8FE;}.fill-AB4{fill:#EDF0FD;}.fill-AB5{fill:#F7F8FE;}.stroke-N1{stroke:#0A0F25;}.stroke-N2{stroke:#676C7E;}.stroke-N3{stroke:#9499AB;}.stroke-N4{stroke:#CFD2DD;}.stroke-N5{stroke:#DEE1EB;}.stroke-N6{stroke:#EEF1F8;}.stroke-N7{stroke:#FFFFFF;}.stroke-B1{stroke:#0D32B2;}.stroke-B2{stroke:#0D32B2;}.stroke-B3{stroke:#E3E9FD;}.stroke-B4{stroke:#E3E9FD;}.stroke-B5{stroke:#EDF0FD;}.stroke-B6{stroke:#F7F8FE;}.stroke-AA2{stroke:#4A6FF3;}.stroke-AA4{stroke:#EDF0FD;}.stroke-AA5{stroke:#F7F8FE;}.stroke-AB4{stroke:#EDF0FD;}.stroke-AB5{stroke:#F7F8FE;}.background-color-N1{background-color:#0A0F25;}.background-color-N2{background-color:#676C7E;}.background-color-N3{background-color:#9499AB;}.background-color-N4{background-color:#CFD2DD;}.background-color-N5{background-color:#DEE1EB;}.background-color-N6{background-color:#EEF1F8;}.background-color-N7{background-color:#FFFFFF;}.background-color-B1{background-color:#0D32B2;}.background-color-B2{background-color:#0D32B2;}.background-color-B3{background-color:#E3E9FD;}.background-color-B4{background-color:#E3E9FD;}.background-color-B5{background-color:#EDF0FD;}.background-color-B6{background-color:#F7F8FE;}.background-color-AA2{background-color:#4A6FF3;}.background-color-AA4{background-color:#EDF0FD;}.background-color-AA5{background-color:#F7F8FE;}.background-color-AB4{background-color:#EDF0FD;}.background-color-AB5{background-color:#F7F8FE;}.color-N1{color:#0A0F25;}.color-N2{color:#676C7E;}.color-N3{color:#9499AB;}.color-N4{color:#CFD2DD;}.color-N5{color:#DEE1EB;}.color-N6{color:#EEF1F8;}.color-N7{color:#FFFFFF;}.color-B1{color:#0D32B2;}.color-B2{color:#0D32B2;}.color-B3{color:#E3E9FD;}.color-B4{color:#E3E9FD;}.color-B5{color:#EDF0FD;}.color-B6{color:#F7F8FE;}.color-AA2{color:#4A6FF3;}.color-AA4{color:#EDF0FD;}.color-AA5{color:#F7F8FE;}.color-AB4{color:#EDF0FD;}.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}]]>abcdefghijklmnopqrstuvw + \ No newline at end of file diff --git a/e2etests/testdata/stable/n22_e32/elk/board.exp.json b/e2etests/testdata/stable/n22_e32/elk/board.exp.json index d65c497097..15de54e450 100644 --- a/e2etests/testdata/stable/n22_e32/elk/board.exp.json +++ b/e2etests/testdata/stable/n22_e32/elk/board.exp.json @@ -7,10 +7,10 @@ "id": "a", "type": "rectangle", "pos": { - "x": 210, - "y": 982 + "x": 283, + "y": 832 }, - "width": 53, + "width": 160, "height": 66, "opacity": 1, "strokeDash": 0, @@ -48,10 +48,10 @@ "id": "b", "type": "rectangle", "pos": { - "x": 254, - "y": 1274 + "x": 393, + "y": 1124 }, - "width": 53, + "width": 120, "height": 66, "opacity": 1, "strokeDash": 0, @@ -89,10 +89,10 @@ "id": "c", "type": "rectangle", "pos": { - "x": 216, + "x": 319, "y": 294 }, - "width": 53, + "width": 120, "height": 66, "opacity": 1, "strokeDash": 0, @@ -130,10 +130,10 @@ "id": "d", "type": "rectangle", "pos": { - "x": 254, + "x": 393, "y": 686 }, - "width": 54, + "width": 120, "height": 66, "opacity": 1, "strokeDash": 0, @@ -171,10 +171,10 @@ "id": "e", "type": "rectangle", "pos": { - "x": 319, - "y": 982 + "x": 506, + "y": 832 }, - "width": 53, + "width": 80, "height": 66, "opacity": 1, "strokeDash": 0, @@ -212,10 +212,10 @@ "id": "f", "type": "rectangle", "pos": { - "x": 365, - "y": 1128 + "x": 536, + "y": 978 }, - "width": 51, + "width": 120, "height": 66, "opacity": 1, "strokeDash": 0, @@ -253,10 +253,10 @@ "id": "g", "type": "rectangle", "pos": { - "x": 225, + "x": 352, "y": 12 }, - "width": 54, + "width": 80, "height": 66, "opacity": 1, "strokeDash": 0, @@ -294,7 +294,7 @@ "id": "h", "type": "rectangle", "pos": { - "x": 400, + "x": 621, "y": 158 }, "width": 53, @@ -335,7 +335,7 @@ "id": "i", "type": "rectangle", "pos": { - "x": 402, + "x": 623, "y": 294 }, "width": 49, @@ -376,10 +376,10 @@ "id": "j", "type": "rectangle", "pos": { - "x": 402, + "x": 607, "y": 540 }, - "width": 50, + "width": 80, "height": 66, "opacity": 1, "strokeDash": 0, @@ -417,7 +417,7 @@ "id": "k", "type": "rectangle", "pos": { - "x": 328, + "x": 533, "y": 686 }, "width": 53, @@ -458,10 +458,10 @@ "id": "l", "type": "rectangle", "pos": { - "x": 12, - "y": 982 + "x": 18, + "y": 832 }, - "width": 49, + "width": 80, "height": 66, "opacity": 1, "strokeDash": 0, @@ -499,10 +499,10 @@ "id": "m", "type": "rectangle", "pos": { - "x": 42, - "y": 1274 + "x": 51, + "y": 1124 }, - "width": 57, + "width": 120, "height": 66, "opacity": 1, "strokeDash": 0, @@ -540,10 +540,10 @@ "id": "n", "type": "rectangle", "pos": { - "x": 19, + "x": 12, "y": 686 }, - "width": 53, + "width": 200, "height": 66, "opacity": 1, "strokeDash": 0, @@ -581,10 +581,10 @@ "id": "o", "type": "rectangle", "pos": { - "x": 93, - "y": 982 + "x": 156, + "y": 832 }, - "width": 54, + "width": 80, "height": 66, "opacity": 1, "strokeDash": 0, @@ -622,10 +622,10 @@ "id": "p", "type": "rectangle", "pos": { - "x": 93, - "y": 1128 + "x": 136, + "y": 978 }, - "width": 53, + "width": 120, "height": 66, "opacity": 1, "strokeDash": 0, @@ -663,10 +663,10 @@ "id": "q", "type": "rectangle", "pos": { - "x": 28, + "x": 85, "y": 12 }, - "width": 54, + "width": 80, "height": 66, "opacity": 1, "strokeDash": 0, @@ -704,7 +704,7 @@ "id": "r", "type": "rectangle", "pos": { - "x": 140, + "x": 234, "y": 158 }, "width": 51, @@ -745,10 +745,10 @@ "id": "s", "type": "rectangle", "pos": { - "x": 139, + "x": 219, "y": 294 }, - "width": 52, + "width": 80, "height": 66, "opacity": 1, "strokeDash": 0, @@ -786,10 +786,10 @@ "id": "t", "type": "rectangle", "pos": { - "x": 140, + "x": 219, "y": 540 }, - "width": 51, + "width": 80, "height": 66, "opacity": 1, "strokeDash": 0, @@ -827,10 +827,10 @@ "id": "u", "type": "rectangle", "pos": { - "x": 168, + "x": 257, "y": 686 }, - "width": 54, + "width": 80, "height": 66, "opacity": 1, "strokeDash": 0, @@ -893,20 +893,20 @@ "labelPercentage": 0, "route": [ { - "x": 237.3, - "y": 1048 + "x": 363.3333333333333, + "y": 898 }, { - "x": 237.3, - "y": 1234 + "x": 363.3333333333333, + "y": 1084 }, { - "x": 267.75, - "y": 1234 + "x": 423.3333333333333, + "y": 1084 }, { - "x": 267.75, - "y": 1274 + "x": 423.3333333333333, + "y": 1124 } ], "animated": false, @@ -941,20 +941,20 @@ "labelPercentage": 0, "route": [ { - "x": 243, + "x": 379.66666666666663, "y": 360 }, { - "x": 243, + "x": 379.66666666666663, "y": 792 }, { - "x": 242.60000000000002, + "x": 379.3333333333333, "y": 792 }, { - "x": 242.60000000000002, - "y": 982 + "x": 379.3333333333333, + "y": 832 } ], "animated": false, @@ -989,20 +989,20 @@ "labelPercentage": 0, "route": [ { - "x": 267.5, + "x": 423.3333333333333, "y": 752 }, { - "x": 267.5, - "y": 842 + "x": 423.3333333333333, + "y": 792 }, { - "x": 253.20000000000002, - "y": 842 + "x": 411.3333333333333, + "y": 792 }, { - "x": 253.20000000000002, - "y": 982 + "x": 411.3333333333333, + "y": 832 } ], "animated": false, @@ -1037,12 +1037,12 @@ "labelPercentage": 0, "route": [ { - "x": 281, + "x": 453.3333333333333, "y": 752 }, { - "x": 281, - "y": 1274 + "x": 453.3333333333333, + "y": 1124 } ], "animated": false, @@ -1077,20 +1077,20 @@ "labelPercentage": 0, "route": [ { - "x": 294.5, + "x": 483.3333333333333, "y": 752 }, { - "x": 294.5, + "x": 483.3333333333333, "y": 792 }, { - "x": 336.83333333333337, + "x": 533.1666666666666, "y": 792 }, { - "x": 336.83333333333337, - "y": 982 + "x": 533.1666666666666, + "y": 832 } ], "animated": false, @@ -1125,20 +1125,20 @@ "labelPercentage": 0, "route": [ { - "x": 345.6666666666667, - "y": 1048 + "x": 546.5, + "y": 898 }, { - "x": 345.6666666666667, - "y": 1088 + "x": 546.5, + "y": 938 }, { - "x": 378.25, - "y": 1088 + "x": 566.5, + "y": 938 }, { - "x": 378.25, - "y": 1128 + "x": 566.5, + "y": 978 } ], "animated": false, @@ -1173,20 +1173,20 @@ "labelPercentage": 0, "route": [ { - "x": 391, - "y": 1194 + "x": 596.5, + "y": 1044 }, { - "x": 391, - "y": 1234 + "x": 596.5, + "y": 1084 }, { - "x": 294.25, - "y": 1234 + "x": 483.3333333333333, + "y": 1084 }, { - "x": 294.25, - "y": 1274 + "x": 483.3333333333333, + "y": 1124 } ], "animated": false, @@ -1221,20 +1221,20 @@ "labelPercentage": 0, "route": [ { - "x": 256.25, + "x": 409.66666666666663, "y": 360 }, { - "x": 256.25, + "x": 409.66666666666663, "y": 400 }, { - "x": 391, + "x": 596.5, "y": 400 }, { - "x": 391, - "y": 1128 + "x": 596.5, + "y": 978 } ], "animated": false, @@ -1269,11 +1269,11 @@ "labelPercentage": 0, "route": [ { - "x": 243, + "x": 379.66666666666663, "y": 78 }, { - "x": 243, + "x": 379.66666666666663, "y": 294 } ], @@ -1309,19 +1309,19 @@ "labelPercentage": 0, "route": [ { - "x": 261, + "x": 406.33333333333326, "y": 78 }, { - "x": 261, + "x": 406.33333333333326, "y": 118 }, { - "x": 427, + "x": 647.5, "y": 118 }, { - "x": 427, + "x": 647.5, "y": 158 } ], @@ -1357,11 +1357,11 @@ "labelPercentage": 0, "route": [ { - "x": 427, + "x": 647.5, "y": 224 }, { - "x": 427, + "x": 647.5, "y": 294 } ], @@ -1397,11 +1397,11 @@ "labelPercentage": 0, "route": [ { - "x": 427, + "x": 647.5, "y": 360 }, { - "x": 427, + "x": 647.5, "y": 540 } ], @@ -1437,19 +1437,19 @@ "labelPercentage": 0, "route": [ { - "x": 418.6666666666667, + "x": 634.1666666666666, "y": 606 }, { - "x": 418.6666666666667, + "x": 634.1666666666666, "y": 646 }, { - "x": 354.5, + "x": 559.8333333333333, "y": 646 }, { - "x": 354.5, + "x": 559.8333333333333, "y": 686 } ], @@ -1485,12 +1485,12 @@ "labelPercentage": 0, "route": [ { - "x": 354.5, + "x": 559.8333333333333, "y": 752 }, { - "x": 354.5, - "y": 982 + "x": 559.8333333333333, + "y": 832 } ], "animated": false, @@ -1525,20 +1525,20 @@ "labelPercentage": 0, "route": [ { - "x": 435.3333333333333, + "x": 660.8333333333334, "y": 606 }, { - "x": 435.3333333333333, - "y": 1088 + "x": 660.8333333333334, + "y": 938 }, { - "x": 403.75, - "y": 1088 + "x": 626.5, + "y": 938 }, { - "x": 403.75, - "y": 1128 + "x": 626.5, + "y": 978 } ], "animated": false, @@ -1573,20 +1573,20 @@ "labelPercentage": 0, "route": [ { - "x": 36.5, - "y": 1048 + "x": 58.66666666666666, + "y": 898 }, { - "x": 36.5, - "y": 1234 + "x": 58.66666666666666, + "y": 1084 }, { - "x": 56.75, - "y": 1234 + "x": 81.99999999999999, + "y": 1084 }, { - "x": 56.75, - "y": 1274 + "x": 81.99999999999999, + "y": 1124 } ], "animated": false, @@ -1621,12 +1621,12 @@ "labelPercentage": 0, "route": [ { - "x": 28.333333333333332, + "x": 45.33333333333333, "y": 752 }, { - "x": 28.333333333333332, - "y": 982 + "x": 45.33333333333333, + "y": 832 } ], "animated": false, @@ -1661,20 +1661,20 @@ "labelPercentage": 0, "route": [ { - "x": 37.166666666666664, + "x": 78.66666666666666, "y": 752 }, { - "x": 37.166666666666664, - "y": 942 + "x": 78.66666666666666, + "y": 792 }, { - "x": 44.666666666666664, - "y": 942 + "x": 72, + "y": 792 }, { - "x": 44.666666666666664, - "y": 982 + "x": 72, + "y": 832 } ], "animated": false, @@ -1709,20 +1709,12 @@ "labelPercentage": 0, "route": [ { - "x": 46, + "x": 111.99999999999999, "y": 752 }, { - "x": 46, - "y": 892 - }, - { - "x": 71, - "y": 892 - }, - { - "x": 71, - "y": 1274 + "x": 111.99999999999999, + "y": 1124 } ], "animated": false, @@ -1757,20 +1749,20 @@ "labelPercentage": 0, "route": [ { - "x": 63.66666666666667, + "x": 178.66666666666663, "y": 752 }, { - "x": 63.66666666666667, + "x": 178.66666666666663, "y": 792 }, { - "x": 111, + "x": 182.99999999999997, "y": 792 }, { - "x": 111, - "y": 982 + "x": 182.99999999999997, + "y": 832 } ], "animated": false, @@ -1805,12 +1797,12 @@ "labelPercentage": 0, "route": [ { - "x": 120, - "y": 1048 + "x": 196.33333333333331, + "y": 898 }, { - "x": 120, - "y": 1128 + "x": 196.33333333333331, + "y": 978 } ], "animated": false, @@ -1845,20 +1837,20 @@ "labelPercentage": 0, "route": [ { - "x": 120, - "y": 1194 + "x": 196.33333333333331, + "y": 1044 }, { - "x": 120, - "y": 1234 + "x": 196.33333333333331, + "y": 1084 }, { - "x": 85.25, - "y": 1234 + "x": 142, + "y": 1084 }, { - "x": 85.25, - "y": 1274 + "x": 142, + "y": 1124 } ], "animated": false, @@ -1893,28 +1885,20 @@ "labelPercentage": 0, "route": [ { - "x": 54.833333333333336, + "x": 145.33333333333331, "y": 752 }, { - "x": 54.833333333333336, - "y": 842 + "x": 145.33333333333331, + "y": 938 }, { - "x": 82, - "y": 842 + "x": 166.33333333333331, + "y": 938 }, { - "x": 82, - "y": 1088 - }, - { - "x": 106.75, - "y": 1088 - }, - { - "x": 106.75, - "y": 1128 + "x": 166.33333333333331, + "y": 978 } ], "animated": false, @@ -1949,11 +1933,11 @@ "labelPercentage": 0, "route": [ { - "x": 46, + "x": 112, "y": 78 }, { - "x": 46, + "x": 112, "y": 686 } ], @@ -1989,19 +1973,19 @@ "labelPercentage": 0, "route": [ { - "x": 64, + "x": 138.66666666666666, "y": 78 }, { - "x": 64, + "x": 138.66666666666666, "y": 118 }, { - "x": 165.66666666666669, + "x": 259.66666666666663, "y": 118 }, { - "x": 165.66666666666669, + "x": 259.66666666666663, "y": 158 } ], @@ -2037,11 +2021,11 @@ "labelPercentage": 0, "route": [ { - "x": 165.66666666666669, + "x": 259.66666666666663, "y": 224 }, { - "x": 165.66666666666669, + "x": 259.66666666666663, "y": 294 } ], @@ -2077,11 +2061,11 @@ "labelPercentage": 0, "route": [ { - "x": 157, + "x": 246.33333333333331, "y": 360 }, { - "x": 157, + "x": 246.33333333333331, "y": 540 } ], @@ -2117,19 +2101,19 @@ "labelPercentage": 0, "route": [ { - "x": 174, + "x": 273, "y": 606 }, { - "x": 174, + "x": 273, "y": 646 }, { - "x": 195, + "x": 297.3333333333333, "y": 646 }, { - "x": 195, + "x": 297.3333333333333, "y": 686 } ], @@ -2165,20 +2149,20 @@ "labelPercentage": 0, "route": [ { - "x": 186, + "x": 284, "y": 752 }, { - "x": 186, + "x": 284, "y": 792 }, { - "x": 129, + "x": 209.66666666666666, "y": 792 }, { - "x": 129, - "y": 982 + "x": 209.66666666666666, + "y": 832 } ], "animated": false, @@ -2213,20 +2197,20 @@ "labelPercentage": 0, "route": [ { - "x": 157, + "x": 246.33333333333331, "y": 606 }, { - "x": 157, - "y": 1088 + "x": 246.33333333333331, + "y": 938 }, { - "x": 133.25, - "y": 1088 + "x": 226.33333333333331, + "y": 938 }, { - "x": 133.25, - "y": 1128 + "x": 226.33333333333331, + "y": 978 } ], "animated": false, @@ -2261,19 +2245,19 @@ "labelPercentage": 0, "route": [ { - "x": 229.75, + "x": 349.66666666666663, "y": 360 }, { - "x": 229.75, - "y": 500 + "x": 349.66666666666663, + "y": 450 }, { - "x": 174, - "y": 500 + "x": 273, + "y": 450 }, { - "x": 174, + "x": 273, "y": 540 } ], @@ -2309,20 +2293,28 @@ "labelPercentage": 0, "route": [ { - "x": 174.33333333333334, + "x": 273, "y": 360 }, { - "x": 174.33333333333334, - "y": 450 + "x": 273, + "y": 400 }, { - "x": 232, - "y": 450 + "x": 310.16666666666663, + "y": 400 + }, + { + "x": 310.16666666666663, + "y": 500 }, { - "x": 232, - "y": 982 + "x": 347.3333333333333, + "y": 500 + }, + { + "x": 347.3333333333333, + "y": 832 } ], "animated": false, @@ -2357,20 +2349,20 @@ "labelPercentage": 0, "route": [ { - "x": 204, + "x": 310.66666666666663, "y": 752 }, { - "x": 204, - "y": 842 + "x": 310.66666666666663, + "y": 792 }, { - "x": 221.4, - "y": 842 + "x": 315.3333333333333, + "y": 792 }, { - "x": 221.4, - "y": 982 + "x": 315.3333333333333, + "y": 832 } ], "animated": false, diff --git a/e2etests/testdata/stable/n22_e32/elk/sketch.exp.svg b/e2etests/testdata/stable/n22_e32/elk/sketch.exp.svg index 6500a0875e..f89c8b153e 100644 --- a/e2etests/testdata/stable/n22_e32/elk/sketch.exp.svg +++ b/e2etests/testdata/stable/n22_e32/elk/sketch.exp.svg @@ -1,4 +1,4 @@ -abcdefghijklmnopqrstu - +.fill-N1{fill:#0A0F25;}.fill-N2{fill:#676C7E;}.fill-N3{fill:#9499AB;}.fill-N4{fill:#CFD2DD;}.fill-N5{fill:#DEE1EB;}.fill-N6{fill:#EEF1F8;}.fill-N7{fill:#FFFFFF;}.fill-B1{fill:#0D32B2;}.fill-B2{fill:#0D32B2;}.fill-B3{fill:#E3E9FD;}.fill-B4{fill:#E3E9FD;}.fill-B5{fill:#EDF0FD;}.fill-B6{fill:#F7F8FE;}.fill-AA2{fill:#4A6FF3;}.fill-AA4{fill:#EDF0FD;}.fill-AA5{fill:#F7F8FE;}.fill-AB4{fill:#EDF0FD;}.fill-AB5{fill:#F7F8FE;}.stroke-N1{stroke:#0A0F25;}.stroke-N2{stroke:#676C7E;}.stroke-N3{stroke:#9499AB;}.stroke-N4{stroke:#CFD2DD;}.stroke-N5{stroke:#DEE1EB;}.stroke-N6{stroke:#EEF1F8;}.stroke-N7{stroke:#FFFFFF;}.stroke-B1{stroke:#0D32B2;}.stroke-B2{stroke:#0D32B2;}.stroke-B3{stroke:#E3E9FD;}.stroke-B4{stroke:#E3E9FD;}.stroke-B5{stroke:#EDF0FD;}.stroke-B6{stroke:#F7F8FE;}.stroke-AA2{stroke:#4A6FF3;}.stroke-AA4{stroke:#EDF0FD;}.stroke-AA5{stroke:#F7F8FE;}.stroke-AB4{stroke:#EDF0FD;}.stroke-AB5{stroke:#F7F8FE;}.background-color-N1{background-color:#0A0F25;}.background-color-N2{background-color:#676C7E;}.background-color-N3{background-color:#9499AB;}.background-color-N4{background-color:#CFD2DD;}.background-color-N5{background-color:#DEE1EB;}.background-color-N6{background-color:#EEF1F8;}.background-color-N7{background-color:#FFFFFF;}.background-color-B1{background-color:#0D32B2;}.background-color-B2{background-color:#0D32B2;}.background-color-B3{background-color:#E3E9FD;}.background-color-B4{background-color:#E3E9FD;}.background-color-B5{background-color:#EDF0FD;}.background-color-B6{background-color:#F7F8FE;}.background-color-AA2{background-color:#4A6FF3;}.background-color-AA4{background-color:#EDF0FD;}.background-color-AA5{background-color:#F7F8FE;}.background-color-AB4{background-color:#EDF0FD;}.background-color-AB5{background-color:#F7F8FE;}.color-N1{color:#0A0F25;}.color-N2{color:#676C7E;}.color-N3{color:#9499AB;}.color-N4{color:#CFD2DD;}.color-N5{color:#DEE1EB;}.color-N6{color:#EEF1F8;}.color-N7{color:#FFFFFF;}.color-B1{color:#0D32B2;}.color-B2{color:#0D32B2;}.color-B3{color:#E3E9FD;}.color-B4{color:#E3E9FD;}.color-B5{color:#EDF0FD;}.color-B6{color:#F7F8FE;}.color-AA2{color:#4A6FF3;}.color-AA4{color:#EDF0FD;}.color-AA5{color:#F7F8FE;}.color-AB4{color:#EDF0FD;}.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}]]>abcdefghijklmnopqrstu + \ No newline at end of file diff --git a/e2etests/testdata/stable/one_container_loop/elk/board.exp.json b/e2etests/testdata/stable/one_container_loop/elk/board.exp.json index b9760d190c..ac2b9d79d6 100644 --- a/e2etests/testdata/stable/one_container_loop/elk/board.exp.json +++ b/e2etests/testdata/stable/one_container_loop/elk/board.exp.json @@ -89,10 +89,10 @@ "id": "c", "type": "rectangle", "pos": { - "x": 73, + "x": 39, "y": 731 }, - "width": 53, + "width": 120, "height": 66, "opacity": 1, "strokeDash": 0, @@ -376,11 +376,11 @@ "y": 691 }, { - "x": 86.25, + "x": 69.5, "y": 691 }, { - "x": 86.25, + "x": 69.5, "y": 731 } ], @@ -464,11 +464,11 @@ "y": 691 }, { - "x": 112.75, + "x": 129.5, "y": 691 }, { - "x": 112.75, + "x": 129.5, "y": 731 } ], diff --git a/e2etests/testdata/stable/one_container_loop/elk/sketch.exp.svg b/e2etests/testdata/stable/one_container_loop/elk/sketch.exp.svg index e646e4faee..499469db6b 100644 --- a/e2etests/testdata/stable/one_container_loop/elk/sketch.exp.svg +++ b/e2etests/testdata/stable/one_container_loop/elk/sketch.exp.svg @@ -24,7 +24,7 @@ mix-blend-mode: multiply; opacity: 0.5; } -.fill-N1{fill:#0A0F25;}.fill-N2{fill:#676C7E;}.fill-N3{fill:#9499AB;}.fill-N4{fill:#CFD2DD;}.fill-N5{fill:#DEE1EB;}.fill-N6{fill:#EEF1F8;}.fill-N7{fill:#FFFFFF;}.fill-B1{fill:#0D32B2;}.fill-B2{fill:#0D32B2;}.fill-B3{fill:#E3E9FD;}.fill-B4{fill:#E3E9FD;}.fill-B5{fill:#EDF0FD;}.fill-B6{fill:#F7F8FE;}.fill-AA2{fill:#4A6FF3;}.fill-AA4{fill:#EDF0FD;}.fill-AA5{fill:#F7F8FE;}.fill-AB4{fill:#EDF0FD;}.fill-AB5{fill:#F7F8FE;}.stroke-N1{stroke:#0A0F25;}.stroke-N2{stroke:#676C7E;}.stroke-N3{stroke:#9499AB;}.stroke-N4{stroke:#CFD2DD;}.stroke-N5{stroke:#DEE1EB;}.stroke-N6{stroke:#EEF1F8;}.stroke-N7{stroke:#FFFFFF;}.stroke-B1{stroke:#0D32B2;}.stroke-B2{stroke:#0D32B2;}.stroke-B3{stroke:#E3E9FD;}.stroke-B4{stroke:#E3E9FD;}.stroke-B5{stroke:#EDF0FD;}.stroke-B6{stroke:#F7F8FE;}.stroke-AA2{stroke:#4A6FF3;}.stroke-AA4{stroke:#EDF0FD;}.stroke-AA5{stroke:#F7F8FE;}.stroke-AB4{stroke:#EDF0FD;}.stroke-AB5{stroke:#F7F8FE;}.background-color-N1{background-color:#0A0F25;}.background-color-N2{background-color:#676C7E;}.background-color-N3{background-color:#9499AB;}.background-color-N4{background-color:#CFD2DD;}.background-color-N5{background-color:#DEE1EB;}.background-color-N6{background-color:#EEF1F8;}.background-color-N7{background-color:#FFFFFF;}.background-color-B1{background-color:#0D32B2;}.background-color-B2{background-color:#0D32B2;}.background-color-B3{background-color:#E3E9FD;}.background-color-B4{background-color:#E3E9FD;}.background-color-B5{background-color:#EDF0FD;}.background-color-B6{background-color:#F7F8FE;}.background-color-AA2{background-color:#4A6FF3;}.background-color-AA4{background-color:#EDF0FD;}.background-color-AA5{background-color:#F7F8FE;}.background-color-AB4{background-color:#EDF0FD;}.background-color-AB5{background-color:#F7F8FE;}.color-N1{color:#0A0F25;}.color-N2{color:#676C7E;}.color-N3{color:#9499AB;}.color-N4{color:#CFD2DD;}.color-N5{color:#DEE1EB;}.color-N6{color:#EEF1F8;}.color-N7{color:#FFFFFF;}.color-B1{color:#0D32B2;}.color-B2{color:#0D32B2;}.color-B3{color:#E3E9FD;}.color-B4{color:#E3E9FD;}.color-B5{color:#EDF0FD;}.color-B6{color:#F7F8FE;}.color-AA2{color:#4A6FF3;}.color-AA4{color:#EDF0FD;}.color-AA5{color:#F7F8FE;}.color-AB4{color:#EDF0FD;}.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}]]>acdefgbh +.fill-N1{fill:#0A0F25;}.fill-N2{fill:#676C7E;}.fill-N3{fill:#9499AB;}.fill-N4{fill:#CFD2DD;}.fill-N5{fill:#DEE1EB;}.fill-N6{fill:#EEF1F8;}.fill-N7{fill:#FFFFFF;}.fill-B1{fill:#0D32B2;}.fill-B2{fill:#0D32B2;}.fill-B3{fill:#E3E9FD;}.fill-B4{fill:#E3E9FD;}.fill-B5{fill:#EDF0FD;}.fill-B6{fill:#F7F8FE;}.fill-AA2{fill:#4A6FF3;}.fill-AA4{fill:#EDF0FD;}.fill-AA5{fill:#F7F8FE;}.fill-AB4{fill:#EDF0FD;}.fill-AB5{fill:#F7F8FE;}.stroke-N1{stroke:#0A0F25;}.stroke-N2{stroke:#676C7E;}.stroke-N3{stroke:#9499AB;}.stroke-N4{stroke:#CFD2DD;}.stroke-N5{stroke:#DEE1EB;}.stroke-N6{stroke:#EEF1F8;}.stroke-N7{stroke:#FFFFFF;}.stroke-B1{stroke:#0D32B2;}.stroke-B2{stroke:#0D32B2;}.stroke-B3{stroke:#E3E9FD;}.stroke-B4{stroke:#E3E9FD;}.stroke-B5{stroke:#EDF0FD;}.stroke-B6{stroke:#F7F8FE;}.stroke-AA2{stroke:#4A6FF3;}.stroke-AA4{stroke:#EDF0FD;}.stroke-AA5{stroke:#F7F8FE;}.stroke-AB4{stroke:#EDF0FD;}.stroke-AB5{stroke:#F7F8FE;}.background-color-N1{background-color:#0A0F25;}.background-color-N2{background-color:#676C7E;}.background-color-N3{background-color:#9499AB;}.background-color-N4{background-color:#CFD2DD;}.background-color-N5{background-color:#DEE1EB;}.background-color-N6{background-color:#EEF1F8;}.background-color-N7{background-color:#FFFFFF;}.background-color-B1{background-color:#0D32B2;}.background-color-B2{background-color:#0D32B2;}.background-color-B3{background-color:#E3E9FD;}.background-color-B4{background-color:#E3E9FD;}.background-color-B5{background-color:#EDF0FD;}.background-color-B6{background-color:#F7F8FE;}.background-color-AA2{background-color:#4A6FF3;}.background-color-AA4{background-color:#EDF0FD;}.background-color-AA5{background-color:#F7F8FE;}.background-color-AB4{background-color:#EDF0FD;}.background-color-AB5{background-color:#F7F8FE;}.color-N1{color:#0A0F25;}.color-N2{color:#676C7E;}.color-N3{color:#9499AB;}.color-N4{color:#CFD2DD;}.color-N5{color:#DEE1EB;}.color-N6{color:#EEF1F8;}.color-N7{color:#FFFFFF;}.color-B1{color:#0D32B2;}.color-B2{color:#0D32B2;}.color-B3{color:#E3E9FD;}.color-B4{color:#E3E9FD;}.color-B5{color:#EDF0FD;}.color-B6{color:#F7F8FE;}.color-AA2{color:#4A6FF3;}.color-AA4{color:#EDF0FD;}.color-AA5{color:#F7F8FE;}.color-AB4{color:#EDF0FD;}.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}]]>acdefgbh \ No newline at end of file diff --git a/e2etests/testdata/stable/one_three_one_container/elk/board.exp.json b/e2etests/testdata/stable/one_three_one_container/elk/board.exp.json index db8fb04b87..7a28c350e0 100644 --- a/e2etests/testdata/stable/one_three_one_container/elk/board.exp.json +++ b/e2etests/testdata/stable/one_three_one_container/elk/board.exp.json @@ -7,10 +7,10 @@ "id": "top2", "type": "rectangle", "pos": { - "x": 63, + "x": 12, "y": 12 }, - "width": 180, + "width": 220, "height": 166, "opacity": 1, "strokeDash": 0, @@ -48,10 +48,10 @@ "id": "top2.start", "type": "rectangle", "pos": { - "x": 113, + "x": 62, "y": 62 }, - "width": 80, + "width": 120, "height": 66, "opacity": 1, "strokeDash": 0, @@ -89,8 +89,8 @@ "id": "a", "type": "rectangle", "pos": { - "x": 53, - "y": 263 + "x": 65, + "y": 313 }, "width": 53, "height": 66, @@ -130,8 +130,8 @@ "id": "b", "type": "rectangle", "pos": { - "x": 126, - "y": 263 + "x": 138, + "y": 313 }, "width": 53, "height": 66, @@ -171,8 +171,8 @@ "id": "c", "type": "rectangle", "pos": { - "x": 199, - "y": 263 + "x": 211, + "y": 313 }, "width": 53, "height": 66, @@ -212,10 +212,10 @@ "id": "bottom", "type": "rectangle", "pos": { - "x": 12, + "x": 55, "y": 464 }, - "width": 172, + "width": 220, "height": 166, "opacity": 1, "strokeDash": 0, @@ -253,10 +253,10 @@ "id": "bottom.end", "type": "rectangle", "pos": { - "x": 62, + "x": 105, "y": 514 }, - "width": 72, + "width": 120, "height": 66, "opacity": 1, "strokeDash": 0, @@ -319,20 +319,12 @@ "labelPercentage": 0, "route": [ { - "x": 133, + "x": 92, "y": 128 }, { - "x": 133, - "y": 223 - }, - { - "x": 80, - "y": 223 - }, - { - "x": 80, - "y": 263 + "x": 92, + "y": 313 } ], "animated": false, @@ -367,12 +359,20 @@ "labelPercentage": 0, "route": [ { - "x": 153, + "x": 122, "y": 128 }, { - "x": 153, - "y": 263 + "x": 122, + "y": 273 + }, + { + "x": 165, + "y": 273 + }, + { + "x": 165, + "y": 313 } ], "animated": false, @@ -407,20 +407,20 @@ "labelPercentage": 0, "route": [ { - "x": 173, + "x": 152, "y": 128 }, { - "x": 173, + "x": 152, "y": 223 }, { - "x": 226, + "x": 238, "y": 223 }, { - "x": 226, - "y": 263 + "x": 238, + "y": 313 } ], "animated": false, @@ -455,11 +455,19 @@ "labelPercentage": 0, "route": [ { - "x": 80, - "y": 329 + "x": 92, + "y": 379 + }, + { + "x": 92, + "y": 419 + }, + { + "x": 135, + "y": 419 }, { - "x": 80, + "x": 135, "y": 514 } ], @@ -495,19 +503,11 @@ "labelPercentage": 0, "route": [ { - "x": 153, - "y": 329 - }, - { - "x": 153, - "y": 369 - }, - { - "x": 98, - "y": 369 + "x": 165, + "y": 379 }, { - "x": 98, + "x": 165, "y": 514 } ], @@ -543,19 +543,19 @@ "labelPercentage": 0, "route": [ { - "x": 226, - "y": 329 + "x": 238, + "y": 379 }, { - "x": 226, + "x": 238, "y": 419 }, { - "x": 116, + "x": 195, "y": 419 }, { - "x": 116, + "x": 195, "y": 514 } ], diff --git a/e2etests/testdata/stable/one_three_one_container/elk/sketch.exp.svg b/e2etests/testdata/stable/one_three_one_container/elk/sketch.exp.svg index 57e3d21c9a..294a9bd1d2 100644 --- a/e2etests/testdata/stable/one_three_one_container/elk/sketch.exp.svg +++ b/e2etests/testdata/stable/one_three_one_container/elk/sketch.exp.svg @@ -1,4 +1,4 @@ -top2abcbottomstartend - +.fill-N1{fill:#0A0F25;}.fill-N2{fill:#676C7E;}.fill-N3{fill:#9499AB;}.fill-N4{fill:#CFD2DD;}.fill-N5{fill:#DEE1EB;}.fill-N6{fill:#EEF1F8;}.fill-N7{fill:#FFFFFF;}.fill-B1{fill:#0D32B2;}.fill-B2{fill:#0D32B2;}.fill-B3{fill:#E3E9FD;}.fill-B4{fill:#E3E9FD;}.fill-B5{fill:#EDF0FD;}.fill-B6{fill:#F7F8FE;}.fill-AA2{fill:#4A6FF3;}.fill-AA4{fill:#EDF0FD;}.fill-AA5{fill:#F7F8FE;}.fill-AB4{fill:#EDF0FD;}.fill-AB5{fill:#F7F8FE;}.stroke-N1{stroke:#0A0F25;}.stroke-N2{stroke:#676C7E;}.stroke-N3{stroke:#9499AB;}.stroke-N4{stroke:#CFD2DD;}.stroke-N5{stroke:#DEE1EB;}.stroke-N6{stroke:#EEF1F8;}.stroke-N7{stroke:#FFFFFF;}.stroke-B1{stroke:#0D32B2;}.stroke-B2{stroke:#0D32B2;}.stroke-B3{stroke:#E3E9FD;}.stroke-B4{stroke:#E3E9FD;}.stroke-B5{stroke:#EDF0FD;}.stroke-B6{stroke:#F7F8FE;}.stroke-AA2{stroke:#4A6FF3;}.stroke-AA4{stroke:#EDF0FD;}.stroke-AA5{stroke:#F7F8FE;}.stroke-AB4{stroke:#EDF0FD;}.stroke-AB5{stroke:#F7F8FE;}.background-color-N1{background-color:#0A0F25;}.background-color-N2{background-color:#676C7E;}.background-color-N3{background-color:#9499AB;}.background-color-N4{background-color:#CFD2DD;}.background-color-N5{background-color:#DEE1EB;}.background-color-N6{background-color:#EEF1F8;}.background-color-N7{background-color:#FFFFFF;}.background-color-B1{background-color:#0D32B2;}.background-color-B2{background-color:#0D32B2;}.background-color-B3{background-color:#E3E9FD;}.background-color-B4{background-color:#E3E9FD;}.background-color-B5{background-color:#EDF0FD;}.background-color-B6{background-color:#F7F8FE;}.background-color-AA2{background-color:#4A6FF3;}.background-color-AA4{background-color:#EDF0FD;}.background-color-AA5{background-color:#F7F8FE;}.background-color-AB4{background-color:#EDF0FD;}.background-color-AB5{background-color:#F7F8FE;}.color-N1{color:#0A0F25;}.color-N2{color:#676C7E;}.color-N3{color:#9499AB;}.color-N4{color:#CFD2DD;}.color-N5{color:#DEE1EB;}.color-N6{color:#EEF1F8;}.color-N7{color:#FFFFFF;}.color-B1{color:#0D32B2;}.color-B2{color:#0D32B2;}.color-B3{color:#E3E9FD;}.color-B4{color:#E3E9FD;}.color-B5{color:#EDF0FD;}.color-B6{color:#F7F8FE;}.color-AA2{color:#4A6FF3;}.color-AA4{color:#EDF0FD;}.color-AA5{color:#F7F8FE;}.color-AB4{color:#EDF0FD;}.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}]]>top2abcbottomstartend + \ No newline at end of file diff --git a/e2etests/testdata/stable/self-referencing/elk/board.exp.json b/e2etests/testdata/stable/self-referencing/elk/board.exp.json index 7d927fd4fa..7bc8f2c550 100644 --- a/e2etests/testdata/stable/self-referencing/elk/board.exp.json +++ b/e2etests/testdata/stable/self-referencing/elk/board.exp.json @@ -10,7 +10,7 @@ "x": 72, "y": 12 }, - "width": 53, + "width": 120, "height": 66, "opacity": 1, "strokeDash": 0, @@ -48,10 +48,10 @@ "id": "y", "type": "rectangle", "pos": { - "x": 80, + "x": 105, "y": 158 }, - "width": 54, + "width": 80, "height": 66, "opacity": 1, "strokeDash": 0, @@ -89,10 +89,10 @@ "id": "z", "type": "rectangle", "pos": { - "x": 230, + "x": 297, "y": 12 }, - "width": 52, + "width": 80, "height": 66, "opacity": 1, "strokeDash": 0, @@ -251,11 +251,11 @@ "labelPercentage": 0, "route": [ { - "x": 98.5, + "x": 132, "y": 78 }, { - "x": 98.5, + "x": 132, "y": 158 } ], @@ -291,19 +291,19 @@ "labelPercentage": 0, "route": [ { - "x": 256, + "x": 337, "y": 78 }, { - "x": 256, + "x": 337, "y": 118 }, { - "x": 116.5, + "x": 158.66666666666666, "y": 118 }, { - "x": 116.5, + "x": 158.66666666666666, "y": 158 } ], @@ -339,19 +339,19 @@ "labelPercentage": 0, "route": [ { - "x": 230, + "x": 297, "y": 34 }, { - "x": 180, + "x": 247, "y": 34 }, { - "x": 180, + "x": 247, "y": 56 }, { - "x": 230, + "x": 297, "y": 56 } ], diff --git a/e2etests/testdata/stable/self-referencing/elk/sketch.exp.svg b/e2etests/testdata/stable/self-referencing/elk/sketch.exp.svg index 6f606f5e95..b6449e8784 100644 --- a/e2etests/testdata/stable/self-referencing/elk/sketch.exp.svg +++ b/e2etests/testdata/stable/self-referencing/elk/sketch.exp.svg @@ -1,4 +1,4 @@ -xyz hello - - +.fill-N1{fill:#0A0F25;}.fill-N2{fill:#676C7E;}.fill-N3{fill:#9499AB;}.fill-N4{fill:#CFD2DD;}.fill-N5{fill:#DEE1EB;}.fill-N6{fill:#EEF1F8;}.fill-N7{fill:#FFFFFF;}.fill-B1{fill:#0D32B2;}.fill-B2{fill:#0D32B2;}.fill-B3{fill:#E3E9FD;}.fill-B4{fill:#E3E9FD;}.fill-B5{fill:#EDF0FD;}.fill-B6{fill:#F7F8FE;}.fill-AA2{fill:#4A6FF3;}.fill-AA4{fill:#EDF0FD;}.fill-AA5{fill:#F7F8FE;}.fill-AB4{fill:#EDF0FD;}.fill-AB5{fill:#F7F8FE;}.stroke-N1{stroke:#0A0F25;}.stroke-N2{stroke:#676C7E;}.stroke-N3{stroke:#9499AB;}.stroke-N4{stroke:#CFD2DD;}.stroke-N5{stroke:#DEE1EB;}.stroke-N6{stroke:#EEF1F8;}.stroke-N7{stroke:#FFFFFF;}.stroke-B1{stroke:#0D32B2;}.stroke-B2{stroke:#0D32B2;}.stroke-B3{stroke:#E3E9FD;}.stroke-B4{stroke:#E3E9FD;}.stroke-B5{stroke:#EDF0FD;}.stroke-B6{stroke:#F7F8FE;}.stroke-AA2{stroke:#4A6FF3;}.stroke-AA4{stroke:#EDF0FD;}.stroke-AA5{stroke:#F7F8FE;}.stroke-AB4{stroke:#EDF0FD;}.stroke-AB5{stroke:#F7F8FE;}.background-color-N1{background-color:#0A0F25;}.background-color-N2{background-color:#676C7E;}.background-color-N3{background-color:#9499AB;}.background-color-N4{background-color:#CFD2DD;}.background-color-N5{background-color:#DEE1EB;}.background-color-N6{background-color:#EEF1F8;}.background-color-N7{background-color:#FFFFFF;}.background-color-B1{background-color:#0D32B2;}.background-color-B2{background-color:#0D32B2;}.background-color-B3{background-color:#E3E9FD;}.background-color-B4{background-color:#E3E9FD;}.background-color-B5{background-color:#EDF0FD;}.background-color-B6{background-color:#F7F8FE;}.background-color-AA2{background-color:#4A6FF3;}.background-color-AA4{background-color:#EDF0FD;}.background-color-AA5{background-color:#F7F8FE;}.background-color-AB4{background-color:#EDF0FD;}.background-color-AB5{background-color:#F7F8FE;}.color-N1{color:#0A0F25;}.color-N2{color:#676C7E;}.color-N3{color:#9499AB;}.color-N4{color:#CFD2DD;}.color-N5{color:#DEE1EB;}.color-N6{color:#EEF1F8;}.color-N7{color:#FFFFFF;}.color-B1{color:#0D32B2;}.color-B2{color:#0D32B2;}.color-B3{color:#E3E9FD;}.color-B4{color:#E3E9FD;}.color-B5{color:#EDF0FD;}.color-B6{color:#F7F8FE;}.color-AA2{color:#4A6FF3;}.color-AA4{color:#EDF0FD;}.color-AA5{color:#F7F8FE;}.color-AB4{color:#EDF0FD;}.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}]]>xyz hello + + \ No newline at end of file diff --git a/e2etests/testdata/stable/sequence_diagrams/elk/board.exp.json b/e2etests/testdata/stable/sequence_diagrams/elk/board.exp.json index 91dbcfe766..6cb17ca83c 100644 --- a/e2etests/testdata/stable/sequence_diagrams/elk/board.exp.json +++ b/e2etests/testdata/stable/sequence_diagrams/elk/board.exp.json @@ -7,10 +7,10 @@ "id": "a_shape", "type": "oval", "pos": { - "x": 462, + "x": 459, "y": 12 }, - "width": 108, + "width": 120, "height": 108, "opacity": 1, "strokeDash": 0, @@ -3697,11 +3697,11 @@ "labelPercentage": 0, "route": [ { - "x": 516, + "x": 519, "y": 120 }, { - "x": 516, + "x": 519, "y": 210 }, { @@ -3825,11 +3825,11 @@ "labelPercentage": 0, "route": [ { - "x": 543, + "x": 549, "y": 113 }, { - "x": 543, + "x": 549, "y": 160 }, { diff --git a/e2etests/testdata/stable/sequence_diagrams/elk/sketch.exp.svg b/e2etests/testdata/stable/sequence_diagrams/elk/sketch.exp.svg index 498ee2ccb4..41fa9ff99f 100644 --- a/e2etests/testdata/stable/sequence_diagrams/elk/sketch.exp.svg +++ b/e2etests/testdata/stable/sequence_diagrams/elk/sketch.exp.svg @@ -31,7 +31,7 @@ mix-blend-mode: multiply; opacity: 0.5; } -.fill-N1{fill:#0A0F25;}.fill-N2{fill:#676C7E;}.fill-N3{fill:#9499AB;}.fill-N4{fill:#CFD2DD;}.fill-N5{fill:#DEE1EB;}.fill-N6{fill:#EEF1F8;}.fill-N7{fill:#FFFFFF;}.fill-B1{fill:#0D32B2;}.fill-B2{fill:#0D32B2;}.fill-B3{fill:#E3E9FD;}.fill-B4{fill:#E3E9FD;}.fill-B5{fill:#EDF0FD;}.fill-B6{fill:#F7F8FE;}.fill-AA2{fill:#4A6FF3;}.fill-AA4{fill:#EDF0FD;}.fill-AA5{fill:#F7F8FE;}.fill-AB4{fill:#EDF0FD;}.fill-AB5{fill:#F7F8FE;}.stroke-N1{stroke:#0A0F25;}.stroke-N2{stroke:#676C7E;}.stroke-N3{stroke:#9499AB;}.stroke-N4{stroke:#CFD2DD;}.stroke-N5{stroke:#DEE1EB;}.stroke-N6{stroke:#EEF1F8;}.stroke-N7{stroke:#FFFFFF;}.stroke-B1{stroke:#0D32B2;}.stroke-B2{stroke:#0D32B2;}.stroke-B3{stroke:#E3E9FD;}.stroke-B4{stroke:#E3E9FD;}.stroke-B5{stroke:#EDF0FD;}.stroke-B6{stroke:#F7F8FE;}.stroke-AA2{stroke:#4A6FF3;}.stroke-AA4{stroke:#EDF0FD;}.stroke-AA5{stroke:#F7F8FE;}.stroke-AB4{stroke:#EDF0FD;}.stroke-AB5{stroke:#F7F8FE;}.background-color-N1{background-color:#0A0F25;}.background-color-N2{background-color:#676C7E;}.background-color-N3{background-color:#9499AB;}.background-color-N4{background-color:#CFD2DD;}.background-color-N5{background-color:#DEE1EB;}.background-color-N6{background-color:#EEF1F8;}.background-color-N7{background-color:#FFFFFF;}.background-color-B1{background-color:#0D32B2;}.background-color-B2{background-color:#0D32B2;}.background-color-B3{background-color:#E3E9FD;}.background-color-B4{background-color:#E3E9FD;}.background-color-B5{background-color:#EDF0FD;}.background-color-B6{background-color:#F7F8FE;}.background-color-AA2{background-color:#4A6FF3;}.background-color-AA4{background-color:#EDF0FD;}.background-color-AA5{background-color:#F7F8FE;}.background-color-AB4{background-color:#EDF0FD;}.background-color-AB5{background-color:#F7F8FE;}.color-N1{color:#0A0F25;}.color-N2{color:#676C7E;}.color-N3{color:#9499AB;}.color-N4{color:#CFD2DD;}.color-N5{color:#DEE1EB;}.color-N6{color:#EEF1F8;}.color-N7{color:#FFFFFF;}.color-B1{color:#0D32B2;}.color-B2{color:#0D32B2;}.color-B3{color:#E3E9FD;}.color-B4{color:#E3E9FD;}.color-B5{color:#EDF0FD;}.color-B6{color:#F7F8FE;}.color-AA2{color:#4A6FF3;}.color-AA4{color:#EDF0FD;}.color-AA5{color:#F7F8FE;}.color-AB4{color:#EDF0FD;}.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}]]>a_shapea_sequenceanothersequencefinallyscoreritemResponseitemessayRubricconceptitemOutcomesequencesequencescoreritemResponseitemessayRubricconceptitemOutcomescorerconceptessayRubricitemitemOutcomeitemResponse getItem()itemgetRubric()rubricapplyTo(essayResp)match(essayResponse)scorenewgetNormalMinimum()getNormalMaximum()setScore(score)setFeedback(missingConcepts)getItem()itemgetRubric()rubricapplyTo(essayResp)match(essayResponse)scorenewgetNormalMinimum()getNormalMaximum()setScore(score)setFeedback(missingConcepts) +.fill-N1{fill:#0A0F25;}.fill-N2{fill:#676C7E;}.fill-N3{fill:#9499AB;}.fill-N4{fill:#CFD2DD;}.fill-N5{fill:#DEE1EB;}.fill-N6{fill:#EEF1F8;}.fill-N7{fill:#FFFFFF;}.fill-B1{fill:#0D32B2;}.fill-B2{fill:#0D32B2;}.fill-B3{fill:#E3E9FD;}.fill-B4{fill:#E3E9FD;}.fill-B5{fill:#EDF0FD;}.fill-B6{fill:#F7F8FE;}.fill-AA2{fill:#4A6FF3;}.fill-AA4{fill:#EDF0FD;}.fill-AA5{fill:#F7F8FE;}.fill-AB4{fill:#EDF0FD;}.fill-AB5{fill:#F7F8FE;}.stroke-N1{stroke:#0A0F25;}.stroke-N2{stroke:#676C7E;}.stroke-N3{stroke:#9499AB;}.stroke-N4{stroke:#CFD2DD;}.stroke-N5{stroke:#DEE1EB;}.stroke-N6{stroke:#EEF1F8;}.stroke-N7{stroke:#FFFFFF;}.stroke-B1{stroke:#0D32B2;}.stroke-B2{stroke:#0D32B2;}.stroke-B3{stroke:#E3E9FD;}.stroke-B4{stroke:#E3E9FD;}.stroke-B5{stroke:#EDF0FD;}.stroke-B6{stroke:#F7F8FE;}.stroke-AA2{stroke:#4A6FF3;}.stroke-AA4{stroke:#EDF0FD;}.stroke-AA5{stroke:#F7F8FE;}.stroke-AB4{stroke:#EDF0FD;}.stroke-AB5{stroke:#F7F8FE;}.background-color-N1{background-color:#0A0F25;}.background-color-N2{background-color:#676C7E;}.background-color-N3{background-color:#9499AB;}.background-color-N4{background-color:#CFD2DD;}.background-color-N5{background-color:#DEE1EB;}.background-color-N6{background-color:#EEF1F8;}.background-color-N7{background-color:#FFFFFF;}.background-color-B1{background-color:#0D32B2;}.background-color-B2{background-color:#0D32B2;}.background-color-B3{background-color:#E3E9FD;}.background-color-B4{background-color:#E3E9FD;}.background-color-B5{background-color:#EDF0FD;}.background-color-B6{background-color:#F7F8FE;}.background-color-AA2{background-color:#4A6FF3;}.background-color-AA4{background-color:#EDF0FD;}.background-color-AA5{background-color:#F7F8FE;}.background-color-AB4{background-color:#EDF0FD;}.background-color-AB5{background-color:#F7F8FE;}.color-N1{color:#0A0F25;}.color-N2{color:#676C7E;}.color-N3{color:#9499AB;}.color-N4{color:#CFD2DD;}.color-N5{color:#DEE1EB;}.color-N6{color:#EEF1F8;}.color-N7{color:#FFFFFF;}.color-B1{color:#0D32B2;}.color-B2{color:#0D32B2;}.color-B3{color:#E3E9FD;}.color-B4{color:#E3E9FD;}.color-B5{color:#EDF0FD;}.color-B6{color:#F7F8FE;}.color-AA2{color:#4A6FF3;}.color-AA4{color:#EDF0FD;}.color-AA5{color:#F7F8FE;}.color-AB4{color:#EDF0FD;}.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}]]>a_shapea_sequenceanothersequencefinallyscoreritemResponseitemessayRubricconceptitemOutcomesequencesequencescoreritemResponseitemessayRubricconceptitemOutcomescorerconceptessayRubricitemitemOutcomeitemResponse getItem()itemgetRubric()rubricapplyTo(essayResp)match(essayResponse)scorenewgetNormalMinimum()getNormalMaximum()setScore(score)setFeedback(missingConcepts)getItem()itemgetRubric()rubricapplyTo(essayResp)match(essayResponse)scorenewgetNormalMinimum()getNormalMaximum()setScore(score)setFeedback(missingConcepts) diff --git a/e2etests/testdata/stable/text_font_sizes/elk/board.exp.json b/e2etests/testdata/stable/text_font_sizes/elk/board.exp.json index ef6d9c9f96..d4fa541ac0 100644 --- a/e2etests/testdata/stable/text_font_sizes/elk/board.exp.json +++ b/e2etests/testdata/stable/text_font_sizes/elk/board.exp.json @@ -7,10 +7,10 @@ "id": "bear", "type": "text", "pos": { - "x": 64, + "x": 52, "y": 133 }, - "width": 44, + "width": 80, "height": 28, "opacity": 1, "strokeDash": 0, @@ -200,11 +200,11 @@ "y": 93 }, { - "x": 94.16666666666666, + "x": 106.16666666666666, "y": 93 }, { - "x": 94.16666666666666, + "x": 106.16666666666666, "y": 133 } ], diff --git a/e2etests/testdata/stable/text_font_sizes/elk/sketch.exp.svg b/e2etests/testdata/stable/text_font_sizes/elk/sketch.exp.svg index df9f1b0a72..7d7331d249 100644 --- a/e2etests/testdata/stable/text_font_sizes/elk/sketch.exp.svg +++ b/e2etests/testdata/stable/text_font_sizes/elk/sketch.exp.svg @@ -776,7 +776,7 @@ .md .contains-task-list:dir(rtl) .task-list-item-checkbox { margin: 0 -1.6em 0.25em 0.2em; } -bearmama bearpapa bear +bearmama bearpapa bear \ No newline at end of file diff --git a/e2etests/testdata/stable/us_map/elk/board.exp.json b/e2etests/testdata/stable/us_map/elk/board.exp.json index edb1af7397..67d40b383f 100644 --- a/e2etests/testdata/stable/us_map/elk/board.exp.json +++ b/e2etests/testdata/stable/us_map/elk/board.exp.json @@ -7,7 +7,7 @@ "id": "AL", "type": "rectangle", "pos": { - "x": 326, + "x": 486, "y": 148 }, "width": 64, @@ -48,10 +48,10 @@ "id": "FL", "type": "rectangle", "pos": { - "x": 327, + "x": 478, "y": 294 }, - "width": 61, + "width": 80, "height": 66, "opacity": 1, "strokeDash": 0, @@ -89,10 +89,10 @@ "id": "GA", "type": "rectangle", "pos": { - "x": 326, + "x": 478, "y": 640 }, - "width": 66, + "width": 80, "height": 66, "opacity": 1, "strokeDash": 0, @@ -130,10 +130,10 @@ "id": "MS", "type": "rectangle", "pos": { - "x": 247, - "y": 836 + "x": 361, + "y": 786 }, - "width": 66, + "width": 160, "height": 66, "opacity": 1, "strokeDash": 0, @@ -171,10 +171,10 @@ "id": "TN", "type": "rectangle", "pos": { - "x": 335, - "y": 3016 + "x": 413, + "y": 2916 }, - "width": 64, + "width": 280, "height": 66, "opacity": 1, "strokeDash": 0, @@ -212,7 +212,7 @@ "id": "AK", "type": "rectangle", "pos": { - "x": 737, + "x": 1251, "y": 12 }, "width": 66, @@ -253,8 +253,8 @@ "id": "AZ", "type": "rectangle", "pos": { - "x": 899, - "y": 836 + "x": 1395, + "y": 786 }, "width": 65, "height": 66, @@ -294,10 +294,10 @@ "id": "CA", "type": "rectangle", "pos": { - "x": 899, - "y": 1182 + "x": 1388, + "y": 1132 }, - "width": 65, + "width": 80, "height": 66, "opacity": 1, "strokeDash": 0, @@ -335,10 +335,10 @@ "id": "NV", "type": "rectangle", "pos": { - "x": 889, - "y": 1578 + "x": 1334, + "y": 1528 }, - "width": 65, + "width": 160, "height": 66, "opacity": 1, "strokeDash": 0, @@ -376,10 +376,10 @@ "id": "NM", "type": "rectangle", "pos": { - "x": 591, - "y": 1974 + "x": 944, + "y": 1874 }, - "width": 66, + "width": 120, "height": 66, "opacity": 1, "strokeDash": 0, @@ -417,10 +417,10 @@ "id": "UT", "type": "rectangle", "pos": { - "x": 859, - "y": 3016 + "x": 1288, + "y": 2916 }, - "width": 64, + "width": 160, "height": 66, "opacity": 1, "strokeDash": 0, @@ -458,7 +458,7 @@ "id": "AR", "type": "rectangle", "pos": { - "x": 241, + "x": 381, "y": 294 }, "width": 66, @@ -499,10 +499,10 @@ "id": "LA", "type": "rectangle", "pos": { - "x": 243, + "x": 374, "y": 640 }, - "width": 63, + "width": 80, "height": 66, "opacity": 1, "strokeDash": 0, @@ -540,10 +540,10 @@ "id": "MO", "type": "rectangle", "pos": { - "x": 609, - "y": 1182 + "x": 889, + "y": 1132 }, - "width": 68, + "width": 240, "height": 66, "opacity": 1, "strokeDash": 0, @@ -581,10 +581,10 @@ "id": "OK", "type": "rectangle", "pos": { - "x": 421, - "y": 2520 + "x": 591, + "y": 2420 }, - "width": 66, + "width": 200, "height": 66, "opacity": 1, "strokeDash": 0, @@ -622,10 +622,10 @@ "id": "TX", "type": "rectangle", "pos": { - "x": 252, - "y": 3262 + "x": 281, + "y": 3212 }, - "width": 63, + "width": 160, "height": 66, "opacity": 1, "strokeDash": 0, @@ -663,10 +663,10 @@ "id": "OR", "type": "rectangle", "pos": { - "x": 898, - "y": 1974 + "x": 1368, + "y": 1874 }, - "width": 66, + "width": 120, "height": 66, "opacity": 1, "strokeDash": 0, @@ -704,7 +704,7 @@ "id": "CO", "type": "rectangle", "pos": { - "x": 486, + "x": 793, "y": 640 }, "width": 66, @@ -745,10 +745,10 @@ "id": "KS", "type": "rectangle", "pos": { - "x": 487, - "y": 836 + "x": 786, + "y": 786 }, - "width": 63, + "width": 80, "height": 66, "opacity": 1, "strokeDash": 0, @@ -786,10 +786,10 @@ "id": "NE", "type": "rectangle", "pos": { - "x": 581, - "y": 1578 + "x": 884, + "y": 1528 }, - "width": 63, + "width": 200, "height": 66, "opacity": 1, "strokeDash": 0, @@ -827,10 +827,10 @@ "id": "WY", "type": "rectangle", "pos": { - "x": 836, - "y": 3508 + "x": 1191, + "y": 3458 }, - "width": 68, + "width": 240, "height": 66, "opacity": 1, "strokeDash": 0, @@ -868,8 +868,8 @@ "id": "CT", "type": "rectangle", "pos": { - "x": 98, - "y": 1182 + "x": 105, + "y": 1132 }, "width": 64, "height": 66, @@ -910,9 +910,9 @@ "type": "rectangle", "pos": { "x": 97, - "y": 1578 + "y": 1528 }, - "width": 67, + "width": 80, "height": 66, "opacity": 1, "strokeDash": 0, @@ -950,10 +950,10 @@ "id": "NY", "type": "rectangle", "pos": { - "x": 109, - "y": 2520 + "x": 70, + "y": 2420 }, - "width": 64, + "width": 160, "height": 66, "opacity": 1, "strokeDash": 0, @@ -991,10 +991,10 @@ "id": "RI", "type": "rectangle", "pos": { - "x": 106, - "y": 3262 + "x": 74, + "y": 3212 }, - "width": 58, + "width": 120, "height": 66, "opacity": 1, "strokeDash": 0, @@ -1032,8 +1032,8 @@ "id": "DE", "type": "rectangle", "pos": { - "x": 186, - "y": 1182 + "x": 273, + "y": 1132 }, "width": 63, "height": 66, @@ -1073,10 +1073,10 @@ "id": "MD", "type": "rectangle", "pos": { - "x": 184, - "y": 1578 + "x": 265, + "y": 1528 }, - "width": 67, + "width": 80, "height": 66, "opacity": 1, "strokeDash": 0, @@ -1114,10 +1114,10 @@ "id": "NJ", "type": "rectangle", "pos": { - "x": 156, - "y": 1974 + "x": 192, + "y": 1874 }, - "width": 62, + "width": 80, "height": 66, "opacity": 1, "strokeDash": 0, @@ -1155,10 +1155,10 @@ "id": "PA", "type": "rectangle", "pos": { - "x": 166, - "y": 3016 + "x": 145, + "y": 2916 }, - "width": 64, + "width": 200, "height": 66, "opacity": 1, "strokeDash": 0, @@ -1196,10 +1196,10 @@ "id": "NC", "type": "rectangle", "pos": { - "x": 338, - "y": 1974 + "x": 491, + "y": 1874 }, - "width": 64, + "width": 80, "height": 66, "opacity": 1, "strokeDash": 0, @@ -1237,10 +1237,10 @@ "id": "SC", "type": "rectangle", "pos": { - "x": 338, - "y": 2520 + "x": 491, + "y": 2420 }, - "width": 63, + "width": 80, "height": 66, "opacity": 1, "strokeDash": 0, @@ -1278,7 +1278,7 @@ "id": "HI", "type": "rectangle", "pos": { - "x": 658, + "x": 1172, "y": 12 }, "width": 59, @@ -1319,8 +1319,8 @@ "id": "ID", "type": "rectangle", "pos": { - "x": 820, - "y": 836 + "x": 1316, + "y": 786 }, "width": 59, "height": 66, @@ -1360,10 +1360,10 @@ "id": "MT", "type": "rectangle", "pos": { - "x": 697, - "y": 1182 + "x": 1165, + "y": 1132 }, - "width": 66, + "width": 80, "height": 66, "opacity": 1, "strokeDash": 0, @@ -1401,10 +1401,10 @@ "id": "WA", "type": "rectangle", "pos": { - "x": 902, - "y": 3262 + "x": 1405, + "y": 3212 }, - "width": 69, + "width": 80, "height": 66, "opacity": 1, "strokeDash": 0, @@ -1442,7 +1442,7 @@ "id": "IL", "type": "rectangle", "pos": { - "x": 823, + "x": 1337, "y": 12 }, "width": 57, @@ -1483,10 +1483,10 @@ "id": "IN", "type": "rectangle", "pos": { - "x": 822, + "x": 1326, "y": 148 }, - "width": 59, + "width": 80, "height": 66, "opacity": 1, "strokeDash": 0, @@ -1524,10 +1524,10 @@ "id": "IA", "type": "rectangle", "pos": { - "x": 832, + "x": 1339, "y": 294 }, - "width": 59, + "width": 80, "height": 66, "opacity": 1, "strokeDash": 0, @@ -1565,10 +1565,10 @@ "id": "MI", "type": "rectangle", "pos": { - "x": 572, + "x": 879, "y": 640 }, - "width": 61, + "width": 120, "height": 66, "opacity": 1, "strokeDash": 0, @@ -1606,10 +1606,10 @@ "id": "KY", "type": "rectangle", "pos": { - "x": 749, + "x": 1199, "y": 294 }, - "width": 63, + "width": 120, "height": 66, "opacity": 1, "strokeDash": 0, @@ -1647,10 +1647,10 @@ "id": "WI", "type": "rectangle", "pos": { - "x": 556, - "y": 2520 + "x": 853, + "y": 2420 }, - "width": 63, + "width": 160, "height": 66, "opacity": 1, "strokeDash": 0, @@ -1688,10 +1688,10 @@ "id": "OH", "type": "rectangle", "pos": { - "x": 464, - "y": 1578 + "x": 741, + "y": 1528 }, - "width": 66, + "width": 120, "height": 66, "opacity": 1, "strokeDash": 0, @@ -1729,10 +1729,10 @@ "id": "MN", "type": "rectangle", "pos": { - "x": 722, - "y": 836 + "x": 1165, + "y": 786 }, - "width": 67, + "width": 120, "height": 66, "opacity": 1, "strokeDash": 0, @@ -1770,10 +1770,10 @@ "id": "SD", "type": "rectangle", "pos": { - "x": 714, - "y": 1974 + "x": 1105, + "y": 1874 }, - "width": 64, + "width": 200, "height": 66, "opacity": 1, "strokeDash": 0, @@ -1811,10 +1811,10 @@ "id": "VA", "type": "rectangle", "pos": { - "x": 335, - "y": 3262 + "x": 461, + "y": 3212 }, - "width": 65, + "width": 160, "height": 66, "opacity": 1, "strokeDash": 0, @@ -1852,10 +1852,10 @@ "id": "WV", "type": "rectangle", "pos": { - "x": 316, - "y": 3508 + "x": 401, + "y": 3458 }, - "width": 69, + "width": 200, "height": 66, "opacity": 1, "strokeDash": 0, @@ -1894,7 +1894,7 @@ "type": "rectangle", "pos": { "x": 12, - "y": 1578 + "y": 1528 }, "width": 65, "height": 66, @@ -1934,10 +1934,10 @@ "id": "NH", "type": "rectangle", "pos": { - "x": 22, - "y": 1974 + "x": 17, + "y": 1874 }, - "width": 65, + "width": 80, "height": 66, "opacity": 1, "strokeDash": 0, @@ -1975,10 +1975,10 @@ "id": "VT", "type": "rectangle", "pos": { - "x": 93, - "y": 3508 + "x": 54, + "y": 3458 }, - "width": 64, + "width": 120, "height": 66, "opacity": 1, "strokeDash": 0, @@ -2016,10 +2016,10 @@ "id": "ND", "type": "rectangle", "pos": { - "x": 729, - "y": 1578 + "x": 1175, + "y": 1528 }, - "width": 65, + "width": 120, "height": 66, "opacity": 1, "strokeDash": 0, @@ -2082,11 +2082,11 @@ "labelPercentage": 0, "route": [ { - "x": 358.4666666666666, + "x": 518.3333333333333, "y": 214 }, { - "x": 358.4666666666666, + "x": 518.3333333333333, "y": 294 } ], @@ -2122,11 +2122,11 @@ "labelPercentage": 0, "route": [ { - "x": 348.2999999999999, + "x": 504.9999999999999, "y": 360 }, { - "x": 348.2999999999999, + "x": 504.9999999999999, "y": 640 } ], @@ -2162,20 +2162,20 @@ "labelPercentage": 0, "route": [ { - "x": 348.2999999999999, + "x": 504.9999999999999, "y": 706 }, { - "x": 348.2999999999999, - "y": 796 + "x": 504.9999999999999, + "y": 746 }, { - "x": 297.29999999999995, - "y": 796 + "x": 481.6666666666665, + "y": 746 }, { - "x": 297.29999999999995, - "y": 836 + "x": 481.6666666666665, + "y": 786 } ], "animated": false, @@ -2210,20 +2210,20 @@ "labelPercentage": 0, "route": [ { - "x": 274.19999999999993, - "y": 902 + "x": 425.6666666666665, + "y": 852 }, { - "x": 274.19999999999993, - "y": 2676 + "x": 425.6666666666665, + "y": 2726 }, { - "x": 343.6333333333332, - "y": 2676 + "x": 448.33333333333326, + "y": 2726 }, { - "x": 343.6333333333332, - "y": 3016 + "x": 448.33333333333326, + "y": 2916 } ], "animated": false, @@ -2258,12 +2258,12 @@ "labelPercentage": 0, "route": [ { - "x": 932.3833333333332, - "y": 902 + "x": 1428.2142857142856, + "y": 852 }, { - "x": 932.3833333333332, - "y": 1182 + "x": 1428.2142857142856, + "y": 1132 } ], "animated": false, @@ -2298,12 +2298,12 @@ "labelPercentage": 0, "route": [ { - "x": 921.5499999999998, - "y": 1248 + "x": 1414.8809523809523, + "y": 1198 }, { - "x": 921.5499999999998, - "y": 1578 + "x": 1414.8809523809523, + "y": 1528 } ], "animated": false, @@ -2338,20 +2338,20 @@ "labelPercentage": 0, "route": [ { - "x": 902.0499999999998, - "y": 1644 + "x": 1366.8809523809523, + "y": 1594 }, { - "x": 902.0499999999998, - "y": 1784 + "x": 1366.8809523809523, + "y": 1734 }, { - "x": 635.4190476190474, - "y": 1784 + "x": 1024.7142857142858, + "y": 1734 }, { - "x": 635.4190476190474, - "y": 1974 + "x": 1024.7142857142858, + "y": 1874 } ], "animated": false, @@ -2386,20 +2386,20 @@ "labelPercentage": 0, "route": [ { - "x": 640.9190476190474, - "y": 2040 + "x": 1034.7142857142858, + "y": 1940 }, { - "x": 640.9190476190474, - "y": 2626 + "x": 1034.7142857142858, + "y": 2526 }, { - "x": 884.6499999999999, - "y": 2626 + "x": 1352.8809523809523, + "y": 2526 }, { - "x": 884.6499999999999, - "y": 3016 + "x": 1352.8809523809523, + "y": 2916 } ], "animated": false, @@ -2434,11 +2434,11 @@ "labelPercentage": 0, "route": [ { - "x": 274.79999999999995, + "x": 414.9999999999999, "y": 360 }, { - "x": 274.79999999999995, + "x": 414.9999999999999, "y": 640 } ], @@ -2474,12 +2474,12 @@ "labelPercentage": 0, "route": [ { - "x": 264.29999999999995, + "x": 401.6666666666665, "y": 706 }, { - "x": 264.29999999999995, - "y": 836 + "x": 401.6666666666665, + "y": 786 } ], "animated": false, @@ -2514,20 +2514,20 @@ "labelPercentage": 0, "route": [ { - "x": 300.5999999999999, - "y": 902 + "x": 489.6666666666665, + "y": 852 }, { - "x": 300.5999999999999, - "y": 1042 + "x": 489.6666666666665, + "y": 992 }, { - "x": 620.4666666666665, - "y": 1042 + "x": 929, + "y": 992 }, { - "x": 620.4666666666665, - "y": 1182 + "x": 929, + "y": 1132 } ], "animated": false, @@ -2562,20 +2562,28 @@ "labelPercentage": 0, "route": [ { - "x": 618.8476190476189, - "y": 1248 + "x": 923.2857142857142, + "y": 1198 }, { - "x": 618.8476190476189, - "y": 1288 + "x": 923.2857142857142, + "y": 1238 }, { - "x": 432.6333333333332, - "y": 1288 + "x": 669.6666666666666, + "y": 1238 + }, + { + "x": 669.6666666666666, + "y": 1980 + }, + { + "x": 625, + "y": 1980 }, { - "x": 432.6333333333332, - "y": 2520 + "x": 625, + "y": 2420 } ], "animated": false, @@ -2610,20 +2618,20 @@ "labelPercentage": 0, "route": [ { - "x": 454.6333333333332, - "y": 2586 + "x": 691.6666666666666, + "y": 2486 }, { - "x": 454.6333333333332, - "y": 2826 + "x": 691.6666666666666, + "y": 2726 }, { - "x": 375.6333333333332, - "y": 2826 + "x": 588.3333333333333, + "y": 2726 }, { - "x": 375.6333333333332, - "y": 3016 + "x": 588.3333333333333, + "y": 2916 } ], "animated": false, @@ -2658,20 +2666,20 @@ "labelPercentage": 0, "route": [ { - "x": 348.4333333333332, - "y": 3082 + "x": 469.33333333333326, + "y": 2982 }, { - "x": 348.4333333333332, - "y": 3172 + "x": 469.33333333333326, + "y": 3022 }, { - "x": 302.6333333333332, - "y": 3172 + "x": 409.33333333333326, + "y": 3022 }, { - "x": 302.6333333333332, - "y": 3262 + "x": 409.33333333333326, + "y": 3212 } ], "animated": false, @@ -2706,20 +2714,20 @@ "labelPercentage": 0, "route": [ { - "x": 943.2166666666665, - "y": 1248 + "x": 1441.547619047619, + "y": 1198 }, { - "x": 943.2166666666665, - "y": 1288 + "x": 1441.547619047619, + "y": 1238 }, { - "x": 937.7999999999998, - "y": 1288 + "x": 1454.8809523809523, + "y": 1238 }, { - "x": 937.7999999999998, - "y": 1578 + "x": 1454.8809523809523, + "y": 1528 } ], "animated": false, @@ -2754,12 +2762,12 @@ "labelPercentage": 0, "route": [ { - "x": 915.0499999999998, - "y": 1644 + "x": 1398.8809523809523, + "y": 1594 }, { - "x": 915.0499999999998, - "y": 1974 + "x": 1398.8809523809523, + "y": 1874 } ], "animated": false, @@ -2794,12 +2802,12 @@ "labelPercentage": 0, "route": [ { - "x": 519.1333333333332, + "x": 826, "y": 706 }, { - "x": 519.1333333333332, - "y": 836 + "x": 826, + "y": 786 } ], "animated": false, @@ -2834,20 +2842,20 @@ "labelPercentage": 0, "route": [ { - "x": 508.6333333333332, - "y": 902 + "x": 812.6666666666666, + "y": 852 }, { - "x": 508.6333333333332, - "y": 1338 + "x": 812.6666666666666, + "y": 1288 }, { - "x": 594.5190476190475, - "y": 1338 + "x": 924.7142857142857, + "y": 1288 }, { - "x": 594.5190476190475, - "y": 1578 + "x": 924.7142857142857, + "y": 1528 } ], "animated": false, @@ -2882,12 +2890,12 @@ "labelPercentage": 0, "route": [ { - "x": 613.4190476190474, - "y": 1644 + "x": 984.7142857142857, + "y": 1594 }, { - "x": 613.4190476190474, - "y": 1974 + "x": 984.7142857142857, + "y": 1874 } ], "animated": false, @@ -2922,20 +2930,20 @@ "labelPercentage": 0, "route": [ { - "x": 607.9190476190474, - "y": 2040 + "x": 974.7142857142857, + "y": 1940 }, { - "x": 607.9190476190474, - "y": 2080 + "x": 974.7142857142857, + "y": 1980 }, { - "x": 465.6333333333332, - "y": 2080 + "x": 725, + "y": 1980 }, { - "x": 465.6333333333332, - "y": 2520 + "x": 725, + "y": 2420 } ], "animated": false, @@ -2970,20 +2978,20 @@ "labelPercentage": 0, "route": [ { - "x": 476.6333333333332, - "y": 2586 + "x": 758.3333333333333, + "y": 2486 }, { - "x": 476.6333333333332, - "y": 2976 + "x": 758.3333333333333, + "y": 2876 }, { - "x": 871.8499999999998, - "y": 2976 + "x": 1320.8809523809523, + "y": 2876 }, { - "x": 871.8499999999998, - "y": 3016 + "x": 1320.8809523809523, + "y": 2916 } ], "animated": false, @@ -3018,12 +3026,12 @@ "labelPercentage": 0, "route": [ { - "x": 875.0499999999998, - "y": 3082 + "x": 1328.8809523809523, + "y": 2982 }, { - "x": 875.0499999999998, - "y": 3508 + "x": 1328.8809523809523, + "y": 3458 } ], "animated": false, @@ -3058,12 +3066,12 @@ "labelPercentage": 0, "route": [ { - "x": 130.5, - "y": 1248 + "x": 137, + "y": 1198 }, { - "x": 130.5, - "y": 1578 + "x": 137, + "y": 1528 } ], "animated": false, @@ -3098,12 +3106,12 @@ "labelPercentage": 0, "route": [ { - "x": 141.66666666666663, - "y": 1644 + "x": 150.33333333333326, + "y": 1594 }, { - "x": 141.66666666666674, - "y": 2520 + "x": 150.33333333333326, + "y": 2420 } ], "animated": false, @@ -3138,20 +3146,20 @@ "labelPercentage": 0, "route": [ { - "x": 122.4666666666667, - "y": 2586 + "x": 102.33333333333326, + "y": 2486 }, { - "x": 122.4666666666667, - "y": 3122 + "x": 102.33333333333326, + "y": 3022 }, { - "x": 120.76666666666665, - "y": 3122 + "x": 104.33333333333326, + "y": 3022 }, { - "x": 120.76666666666665, - "y": 3262 + "x": 104.33333333333326, + "y": 3212 } ], "animated": false, @@ -3186,12 +3194,12 @@ "labelPercentage": 0, "route": [ { - "x": 217.5, - "y": 1248 + "x": 305.33333333333326, + "y": 1198 }, { - "x": 217.5, - "y": 1578 + "x": 305.33333333333326, + "y": 1528 } ], "animated": false, @@ -3226,20 +3234,20 @@ "labelPercentage": 0, "route": [ { - "x": 206.33333333333337, - "y": 1644 + "x": 292, + "y": 1594 }, { - "x": 206.33333333333337, - "y": 1684 + "x": 292, + "y": 1634 }, { - "x": 187.66666666666663, - "y": 1684 + "x": 232, + "y": 1634 }, { - "x": 187.66666666666663, - "y": 1974 + "x": 232, + "y": 1874 } ], "animated": false, @@ -3274,12 +3282,12 @@ "labelPercentage": 0, "route": [ { - "x": 198, - "y": 2040 + "x": 245.33333333333326, + "y": 1940 }, { - "x": 198, - "y": 3016 + "x": 245.33333333333326, + "y": 2916 } ], "animated": false, @@ -3314,19 +3322,11 @@ "labelPercentage": 0, "route": [ { - "x": 368.63333333333327, + "x": 531.6666666666666, "y": 360 }, { - "x": 368.63333333333327, - "y": 400 - }, - { - "x": 370.2999999999999, - "y": 400 - }, - { - "x": 370.2999999999999, + "x": 531.6666666666666, "y": 640 } ], @@ -3362,12 +3362,12 @@ "labelPercentage": 0, "route": [ { - "x": 370.2999999999999, + "x": 531.6666666666666, "y": 706 }, { - "x": 370.2999999999999, - "y": 1974 + "x": 531.6666666666665, + "y": 1874 } ], "animated": false, @@ -3402,12 +3402,12 @@ "labelPercentage": 0, "route": [ { - "x": 359.6333333333332, - "y": 2040 + "x": 518.3333333333331, + "y": 1940 }, { - "x": 359.6333333333332, - "y": 2520 + "x": 518.3333333333331, + "y": 2420 } ], "animated": false, @@ -3442,12 +3442,12 @@ "labelPercentage": 0, "route": [ { - "x": 359.6333333333332, - "y": 2586 + "x": 518.3333333333331, + "y": 2486 }, { - "x": 359.6333333333332, - "y": 3016 + "x": 518.3333333333333, + "y": 2916 } ], "animated": false, @@ -3482,20 +3482,20 @@ "labelPercentage": 0, "route": [ { - "x": 850.3833333333332, - "y": 902 + "x": 1346.2142857142856, + "y": 852 }, { - "x": 850.3833333333332, - "y": 1142 + "x": 1346.2142857142856, + "y": 1092 }, { - "x": 730.1333333333332, - "y": 1142 + "x": 1205.7142857142856, + "y": 1092 }, { - "x": 730.1333333333332, - "y": 1182 + "x": 1205.7142857142856, + "y": 1132 } ], "animated": false, @@ -3530,20 +3530,20 @@ "labelPercentage": 0, "route": [ { - "x": 741.1333333333332, - "y": 1248 + "x": 1219.047619047619, + "y": 1198 }, { - "x": 741.1333333333332, - "y": 1288 + "x": 1219.047619047619, + "y": 1238 }, { - "x": 905.2999999999998, - "y": 1288 + "x": 1374.8809523809523, + "y": 1238 }, { - "x": 905.2999999999998, - "y": 1578 + "x": 1374.8809523809523, + "y": 1528 } ], "animated": false, @@ -3578,20 +3578,20 @@ "labelPercentage": 0, "route": [ { - "x": 928.0499999999998, - "y": 1644 + "x": 1430.8809523809523, + "y": 1594 }, { - "x": 928.0499999999998, - "y": 1734 + "x": 1430.8809523809523, + "y": 1634 }, { - "x": 931.5499999999998, - "y": 1734 + "x": 1428.8809523809523, + "y": 1634 }, { - "x": 931.5499999999998, - "y": 1974 + "x": 1428.8809523809523, + "y": 1874 } ], "animated": false, @@ -3626,20 +3626,20 @@ "labelPercentage": 0, "route": [ { - "x": 915.0499999999998, - "y": 2040 + "x": 1398.8809523809523, + "y": 1940 }, { - "x": 915.0499999999998, - "y": 2480 + "x": 1398.8809523809523, + "y": 1980 }, { - "x": 897.4499999999998, - "y": 2480 + "x": 1384.8809523809523, + "y": 1980 }, { - "x": 897.4499999999998, - "y": 3016 + "x": 1384.8809523809523, + "y": 2916 } ], "animated": false, @@ -3674,20 +3674,20 @@ "labelPercentage": 0, "route": [ { - "x": 907.0499999999998, - "y": 3082 + "x": 1408.8809523809523, + "y": 2982 }, { - "x": 907.0499999999998, - "y": 3122 + "x": 1408.8809523809523, + "y": 3022 }, { - "x": 925.0499999999998, - "y": 3122 + "x": 1432.2142857142856, + "y": 3022 }, { - "x": 925.0499999999998, - "y": 3262 + "x": 1432.2142857142856, + "y": 3212 } ], "animated": false, @@ -3722,20 +3722,20 @@ "labelPercentage": 0, "route": [ { - "x": 936.5499999999998, - "y": 3328 + "x": 1445.547619047619, + "y": 3278 }, { - "x": 936.5499999999998, - "y": 3418 + "x": 1445.547619047619, + "y": 3318 }, { - "x": 894.4785714285713, - "y": 3418 + "x": 1397.452380952381, + "y": 3318 }, { - "x": 894.4785714285713, - "y": 3508 + "x": 1397.452380952381, + "y": 3458 } ], "animated": false, @@ -3770,11 +3770,11 @@ "labelPercentage": 0, "route": [ { - "x": 852.1499999999999, + "x": 1366.3809523809523, "y": 78 }, { - "x": 852.1499999999999, + "x": 1366.3809523809523, "y": 148 } ], @@ -3810,11 +3810,11 @@ "labelPercentage": 0, "route": [ { - "x": 861.9833333333332, + "x": 1379.7142857142856, "y": 214 }, { - "x": 861.9833333333332, + "x": 1379.7142857142856, "y": 294 } ], @@ -3850,19 +3850,19 @@ "labelPercentage": 0, "route": [ { - "x": 852.1499999999999, + "x": 1366.3809523809523, "y": 360 }, { - "x": 852.1499999999999, + "x": 1366.3809523809523, "y": 500 }, { - "x": 617.8833333333332, + "x": 969, "y": 500 }, { - "x": 617.8833333333332, + "x": 969, "y": 640 } ], @@ -3898,19 +3898,19 @@ "labelPercentage": 0, "route": [ { - "x": 602.6333333333332, + "x": 939, "y": 640 }, { - "x": 602.6333333333332, + "x": 939, "y": 450 }, { - "x": 774.6833333333332, + "x": 1247.7142857142856, "y": 450 }, { - "x": 774.6833333333332, + "x": 1247.7142857142856, "y": 360 } ], @@ -3946,20 +3946,20 @@ "labelPercentage": 0, "route": [ { - "x": 787.2833333333332, + "x": 1271.7142857142856, "y": 360 }, { - "x": 787.2833333333332, + "x": 1271.7142857142856, "y": 550 }, { - "x": 643.1333333333332, + "x": 1009, "y": 550 }, { - "x": 643.1333333333332, - "y": 1182 + "x": 1009, + "y": 1132 } ], "animated": false, @@ -3994,20 +3994,20 @@ "labelPercentage": 0, "route": [ { - "x": 667.4190476190474, - "y": 1248 + "x": 1094.7142857142856, + "y": 1198 }, { - "x": 667.4190476190474, - "y": 2280 + "x": 1094.7142857142856, + "y": 2180 }, { - "x": 569.5190476190475, - "y": 2280 + "x": 885.7142857142857, + "y": 2180 }, { - "x": 569.5190476190475, - "y": 2520 + "x": 885.7142857142857, + "y": 2420 } ], "animated": false, @@ -4042,19 +4042,19 @@ "labelPercentage": 0, "route": [ { - "x": 842.3166666666665, + "x": 1353.047619047619, "y": 214 }, { - "x": 842.3166666666665, + "x": 1353.047619047619, "y": 254 }, { - "x": 780.9833333333332, + "x": 1259.7142857142856, "y": 254 }, { - "x": 780.9833333333332, + "x": 1259.7142857142856, "y": 294 } ], @@ -4090,19 +4090,19 @@ "labelPercentage": 0, "route": [ { - "x": 762.0833333333331, + "x": 1223.7142857142856, "y": 360 }, { - "x": 762.0833333333331, + "x": 1223.7142857142856, "y": 400 }, { - "x": 587.3833333333332, + "x": 909, "y": 400 }, { - "x": 587.3833333333332, + "x": 909, "y": 640 } ], @@ -4138,28 +4138,28 @@ "labelPercentage": 0, "route": [ { - "x": 592.4666666666665, + "x": 919, "y": 706 }, { - "x": 592.4666666666665, + "x": 919, "y": 746 }, { - "x": 476.6333333333332, + "x": 775, "y": 746 }, { - "x": 476.6333333333332, - "y": 1338 + "x": 775, + "y": 1288 }, { - "x": 481.1333333333332, - "y": 1338 + "x": 771.6666666666666, + "y": 1288 }, { - "x": 481.1333333333332, - "y": 1578 + "x": 771.6666666666666, + "y": 1528 } ], "animated": false, @@ -4194,20 +4194,20 @@ "labelPercentage": 0, "route": [ { - "x": 871.8166666666665, + "x": 1393.047619047619, "y": 360 }, { - "x": 871.8166666666665, + "x": 1393.047619047619, "y": 600 }, { - "x": 767.5499999999998, + "x": 1245.7142857142856, "y": 600 }, { - "x": 767.5499999999998, - "y": 836 + "x": 1245.7142857142856, + "y": 786 } ], "animated": false, @@ -4242,20 +4242,20 @@ "labelPercentage": 0, "route": [ { - "x": 756.3833333333332, - "y": 902 + "x": 1225.7142857142856, + "y": 852 }, { - "x": 756.3833333333332, - "y": 1042 + "x": 1225.7142857142856, + "y": 992 }, { - "x": 654.4666666666665, - "y": 1042 + "x": 1049, + "y": 992 }, { - "x": 654.4666666666665, - "y": 1182 + "x": 1049, + "y": 1132 } ], "animated": false, @@ -4290,20 +4290,20 @@ "labelPercentage": 0, "route": [ { - "x": 638.2761904761903, - "y": 1248 + "x": 991.8571428571428, + "y": 1198 }, { - "x": 638.2761904761903, - "y": 1438 + "x": 991.8571428571428, + "y": 1388 }, { - "x": 607.1190476190475, - "y": 1438 + "x": 964.7142857142857, + "y": 1388 }, { - "x": 607.1190476190475, - "y": 1578 + "x": 964.7142857142857, + "y": 1528 } ], "animated": false, @@ -4338,20 +4338,20 @@ "labelPercentage": 0, "route": [ { - "x": 623.9190476190474, - "y": 1644 + "x": 1018.047619047619, + "y": 1594 }, { - "x": 623.9190476190474, - "y": 1734 + "x": 1018.047619047619, + "y": 1684 }, { - "x": 724.7166666666665, - "y": 1734 + "x": 1139.047619047619, + "y": 1684 }, { - "x": 724.7166666666665, - "y": 1974 + "x": 1139.047619047619, + "y": 1874 } ], "animated": false, @@ -4386,20 +4386,20 @@ "labelPercentage": 0, "route": [ { - "x": 746.0499999999998, - "y": 2040 + "x": 1205.7142857142856, + "y": 1940 }, { - "x": 746.0499999999998, - "y": 2330 + "x": 1205.7142857142856, + "y": 2230 }, { - "x": 582.1190476190475, - "y": 2330 + "x": 917.7142857142857, + "y": 2230 }, { - "x": 582.1190476190475, - "y": 2520 + "x": 917.7142857142857, + "y": 2420 } ], "animated": false, @@ -4434,20 +4434,20 @@ "labelPercentage": 0, "route": [ { - "x": 529.6333333333332, - "y": 902 + "x": 839.3333333333333, + "y": 852 }, { - "x": 529.6333333333332, - "y": 942 + "x": 839.3333333333333, + "y": 892 }, { - "x": 631.7999999999998, - "y": 942 + "x": 969, + "y": 892 }, { - "x": 631.7999999999998, - "y": 1182 + "x": 969, + "y": 1132 } ], "animated": false, @@ -4482,20 +4482,20 @@ "labelPercentage": 0, "route": [ { - "x": 647.9904761904761, - "y": 1248 + "x": 1026.142857142857, + "y": 1198 }, { - "x": 647.9904761904761, - "y": 1488 + "x": 1026.142857142857, + "y": 1438 }, { - "x": 619.7190476190474, - "y": 1488 + "x": 1004.7142857142857, + "y": 1438 }, { - "x": 619.7190476190474, - "y": 1578 + "x": 1004.7142857142857, + "y": 1528 } ], "animated": false, @@ -4530,20 +4530,28 @@ "labelPercentage": 0, "route": [ { - "x": 592.4190476190474, - "y": 1644 + "x": 918.047619047619, + "y": 1594 }, { - "x": 592.4190476190474, - "y": 1734 + "x": 918.047619047619, + "y": 1684 }, { - "x": 443.6333333333332, - "y": 1734 + "x": 680.6666666666666, + "y": 1684 }, { - "x": 443.6333333333332, - "y": 2520 + "x": 680.6666666666666, + "y": 2030 + }, + { + "x": 658.3333333333333, + "y": 2030 + }, + { + "x": 658.3333333333333, + "y": 2420 } ], "animated": false, @@ -4578,20 +4586,20 @@ "labelPercentage": 0, "route": [ { - "x": 799.8833333333332, + "x": 1295.7142857142856, "y": 360 }, { - "x": 799.8833333333332, - "y": 1092 + "x": 1295.7142857142856, + "y": 1042 }, { - "x": 665.7999999999998, - "y": 1092 + "x": 1089, + "y": 1042 }, { - "x": 665.7999999999998, - "y": 1182 + "x": 1089, + "y": 1132 } ], "animated": false, @@ -4626,20 +4634,20 @@ "labelPercentage": 0, "route": [ { - "x": 628.5619047619045, - "y": 1248 + "x": 957.5714285714284, + "y": 1198 }, { - "x": 628.5619047619045, - "y": 1388 + "x": 957.5714285714284, + "y": 1338 }, { - "x": 514.1333333333332, - "y": 1388 + "x": 831.6666666666666, + "y": 1338 }, { - "x": 514.1333333333332, - "y": 1578 + "x": 831.6666666666666, + "y": 1528 } ], "animated": false, @@ -4674,20 +4682,20 @@ "labelPercentage": 0, "route": [ { - "x": 497.6333333333332, - "y": 1644 + "x": 801.6666666666666, + "y": 1594 }, { - "x": 497.6333333333332, - "y": 2926 + "x": 801.6666666666666, + "y": 2826 }, { - "x": 391.6333333333332, - "y": 2926 + "x": 658.3333333333333, + "y": 2826 }, { - "x": 391.6333333333332, - "y": 3016 + "x": 658.3333333333333, + "y": 2916 } ], "animated": false, @@ -4722,12 +4730,12 @@ "labelPercentage": 0, "route": [ { - "x": 361.23333333333323, - "y": 3082 + "x": 525.3333333333333, + "y": 2982 }, { - "x": 361.23333333333323, - "y": 3262 + "x": 525.3333333333333, + "y": 3212 } ], "animated": false, @@ -4762,12 +4770,12 @@ "labelPercentage": 0, "route": [ { - "x": 351.48333333333323, - "y": 3328 + "x": 501.33333333333326, + "y": 3278 }, { - "x": 351.48333333333323, - "y": 3508 + "x": 501.33333333333326, + "y": 3458 } ], "animated": false, @@ -4802,20 +4810,20 @@ "labelPercentage": 0, "route": [ { - "x": 285.29999999999995, + "x": 428.33333333333326, "y": 706 }, { - "x": 285.29999999999995, + "x": 428.33333333333326, "y": 746 }, { - "x": 280.79999999999995, + "x": 441.6666666666665, "y": 746 }, { - "x": 280.79999999999995, - "y": 836 + "x": 441.6666666666665, + "y": 786 } ], "animated": false, @@ -4850,20 +4858,28 @@ "labelPercentage": 0, "route": [ { - "x": 261, - "y": 902 + "x": 393.6666666666665, + "y": 852 }, { - "x": 261, - "y": 3172 + "x": 393.6666666666665, + "y": 892 }, { - "x": 264.83333333333326, - "y": 3172 + "x": 355.33333333333326, + "y": 892 }, { - "x": 264.83333333333326, - "y": 3262 + "x": 355.33333333333326, + "y": 3122 + }, + { + "x": 313.33333333333326, + "y": 3122 + }, + { + "x": 313.33333333333326, + "y": 3212 } ], "animated": false, @@ -4899,11 +4915,11 @@ "route": [ { "x": 44.5, - "y": 1644 + "y": 1594 }, { "x": 44.5, - "y": 1974 + "y": 1874 } ], "animated": false, @@ -4938,20 +4954,20 @@ "labelPercentage": 0, "route": [ { - "x": 228.66666666666663, - "y": 1644 + "x": 318.66666666666663, + "y": 1594 }, { - "x": 228.66666666666663, - "y": 2626 + "x": 318.66666666666663, + "y": 2526 }, { - "x": 208.66666666666663, - "y": 2626 + "x": 278.6666666666665, + "y": 2526 }, { - "x": 208.66666666666663, - "y": 3016 + "x": 278.6666666666665, + "y": 2916 } ], "animated": false, @@ -4986,20 +5002,20 @@ "labelPercentage": 0, "route": [ { - "x": 217.20000000000005, - "y": 3082 + "x": 305.33333333333326, + "y": 2982 }, { - "x": 217.20000000000005, - "y": 3222 + "x": 305.33333333333326, + "y": 3072 }, { - "x": 348.23333333333323, - "y": 3222 + "x": 493.33333333333326, + "y": 3072 }, { - "x": 348.23333333333323, - "y": 3262 + "x": 493.33333333333326, + "y": 3212 } ], "animated": false, @@ -5034,20 +5050,20 @@ "labelPercentage": 0, "route": [ { - "x": 367.73333333333323, - "y": 3328 + "x": 541.3333333333333, + "y": 3278 }, { - "x": 367.73333333333323, - "y": 3418 + "x": 541.3333333333333, + "y": 3318 }, { - "x": 362.98333333333323, - "y": 3418 + "x": 534.6666666666665, + "y": 3318 }, { - "x": 362.98333333333323, - "y": 3508 + "x": 534.6666666666665, + "y": 3458 } ], "animated": false, @@ -5082,20 +5098,20 @@ "labelPercentage": 0, "route": [ { - "x": 119.33333333333337, - "y": 1644 + "x": 123.66666666666674, + "y": 1594 }, { - "x": 119.33333333333337, - "y": 1684 + "x": 123.66666666666674, + "y": 1634 }, { - "x": 66.16666666666674, - "y": 1684 + "x": 71.16666666666652, + "y": 1634 }, { - "x": 66.16666666666674, - "y": 1974 + "x": 71.16666666666652, + "y": 1874 } ], "animated": false, @@ -5130,20 +5146,20 @@ "labelPercentage": 0, "route": [ { - "x": 66.16666666666674, - "y": 2040 + "x": 71.16666666666652, + "y": 1940 }, { - "x": 66.16666666666674, - "y": 2080 + "x": 71.16666666666652, + "y": 1980 }, { - "x": 125.66666666666674, - "y": 2080 + "x": 110.33333333333326, + "y": 1980 }, { - "x": 125.66666666666674, - "y": 2520 + "x": 110.33333333333326, + "y": 2420 } ], "animated": false, @@ -5178,12 +5194,12 @@ "labelPercentage": 0, "route": [ { - "x": 135.26666666666677, - "y": 2586 + "x": 134.33333333333326, + "y": 2486 }, { - "x": 135.26666666666665, - "y": 3262 + "x": 134.33333333333326, + "y": 3212 } ], "animated": false, @@ -5218,12 +5234,12 @@ "labelPercentage": 0, "route": [ { - "x": 125.60000000000002, - "y": 3328 + "x": 114.33333333333326, + "y": 3278 }, { - "x": 125.60000000000002, - "y": 3508 + "x": 114.33333333333326, + "y": 3458 } ], "animated": false, @@ -5258,20 +5274,20 @@ "labelPercentage": 0, "route": [ { - "x": 612.7999999999998, + "x": 959, "y": 706 }, { - "x": 612.7999999999998, + "x": 959, "y": 746 }, { - "x": 745.2166666666665, + "x": 1205.7142857142856, "y": 746 }, { - "x": 745.2166666666665, - "y": 836 + "x": 1205.7142857142856, + "y": 786 } ], "animated": false, @@ -5306,20 +5322,20 @@ "labelPercentage": 0, "route": [ { - "x": 739.6333333333332, - "y": 902 + "x": 1195.7142857142856, + "y": 852 }, { - "x": 739.6333333333332, - "y": 992 + "x": 1195.7142857142856, + "y": 942 }, { - "x": 497.6333333333332, - "y": 992 + "x": 801.6666666666666, + "y": 942 }, { - "x": 497.6333333333332, - "y": 1578 + "x": 801.6666666666666, + "y": 1528 } ], "animated": false, @@ -5354,28 +5370,28 @@ "labelPercentage": 0, "route": [ { - "x": 514.1333333333332, - "y": 1644 + "x": 831.6666666666666, + "y": 1594 }, { - "x": 514.1333333333332, - "y": 1934 + "x": 831.6666666666666, + "y": 1834 }, { - "x": 887.5499999999998, - "y": 1934 + "x": 1357.8809523809523, + "y": 1834 }, { - "x": 887.5499999999998, - "y": 2430 + "x": 1357.8809523809523, + "y": 2330 }, { - "x": 607.3190476190474, - "y": 2430 + "x": 981.7142857142857, + "y": 2330 }, { - "x": 607.3190476190474, - "y": 2520 + "x": 981.7142857142857, + "y": 2420 } ], "animated": false, @@ -5410,12 +5426,12 @@ "labelPercentage": 0, "route": [ { - "x": 773.1333333333332, - "y": 902 + "x": 1255.7142857142856, + "y": 852 }, { - "x": 773.1333333333332, - "y": 1578 + "x": 1255.7142857142856, + "y": 1528 } ], "animated": false, @@ -5450,12 +5466,12 @@ "labelPercentage": 0, "route": [ { - "x": 746.0499999999998, - "y": 1644 + "x": 1205.7142857142856, + "y": 1594 }, { - "x": 746.0499999999998, - "y": 1974 + "x": 1205.7142857142856, + "y": 1874 } ], "animated": false, @@ -5490,20 +5506,20 @@ "labelPercentage": 0, "route": [ { - "x": 756.7166666666665, - "y": 2040 + "x": 1239.047619047619, + "y": 1940 }, { - "x": 756.7166666666665, - "y": 2380 + "x": 1239.047619047619, + "y": 2280 }, { - "x": 594.7190476190474, - "y": 2380 + "x": 949.7142857142857, + "y": 2280 }, { - "x": 594.7190476190474, - "y": 2520 + "x": 949.7142857142857, + "y": 2420 } ], "animated": false, @@ -5538,20 +5554,20 @@ "labelPercentage": 0, "route": [ { - "x": 287.4, - "y": 902 + "x": 457.6666666666665, + "y": 852 }, { - "x": 287.4, - "y": 2626 + "x": 457.6666666666665, + "y": 2526 }, { - "x": 351.6333333333332, - "y": 2626 + "x": 483.33333333333326, + "y": 2526 }, { - "x": 351.6333333333332, - "y": 3016 + "x": 483.33333333333326, + "y": 2916 } ], "animated": false, @@ -5586,20 +5602,20 @@ "labelPercentage": 0, "route": [ { - "x": 657.7047619047618, - "y": 1248 + "x": 1060.4285714285713, + "y": 1198 }, { - "x": 657.7047619047618, - "y": 1538 + "x": 1060.4285714285713, + "y": 1488 }, { - "x": 632.3190476190475, - "y": 1538 + "x": 1044.7142857142858, + "y": 1488 }, { - "x": 632.3190476190475, - "y": 1578 + "x": 1044.7142857142858, + "y": 1528 } ], "animated": false, @@ -5634,20 +5650,20 @@ "labelPercentage": 0, "route": [ { - "x": 602.9190476190474, - "y": 1644 + "x": 951.3809523809523, + "y": 1594 }, { - "x": 602.9190476190474, - "y": 1784 + "x": 951.3809523809523, + "y": 1734 }, { - "x": 454.6333333333332, - "y": 1784 + "x": 691.6666666666666, + "y": 1734 }, { - "x": 454.6333333333332, - "y": 2520 + "x": 691.6666666666666, + "y": 2420 } ], "animated": false, @@ -5682,20 +5698,20 @@ "labelPercentage": 0, "route": [ { - "x": 465.6333333333332, - "y": 2586 + "x": 725, + "y": 2486 }, { - "x": 465.6333333333332, - "y": 2876 + "x": 725, + "y": 2776 }, { - "x": 383.6333333333332, - "y": 2876 + "x": 623.3333333333333, + "y": 2776 }, { - "x": 383.6333333333332, - "y": 3016 + "x": 623.3333333333333, + "y": 2916 } ], "animated": false, @@ -5730,20 +5746,20 @@ "labelPercentage": 0, "route": [ { - "x": 719.1333333333332, - "y": 1248 + "x": 1192.3809523809523, + "y": 1198 }, { - "x": 719.1333333333332, - "y": 1338 + "x": 1192.3809523809523, + "y": 1288 }, { - "x": 751.4666666666665, - "y": 1338 + "x": 1215.7142857142856, + "y": 1288 }, { - "x": 751.4666666666665, - "y": 1578 + "x": 1215.7142857142856, + "y": 1528 } ], "animated": false, @@ -5778,20 +5794,20 @@ "labelPercentage": 0, "route": [ { - "x": 762.2999999999998, - "y": 1644 + "x": 1235.7142857142856, + "y": 1594 }, { - "x": 762.2999999999998, - "y": 1884 + "x": 1235.7142857142856, + "y": 1784 }, { - "x": 756.7166666666665, - "y": 1884 + "x": 1239.047619047619, + "y": 1784 }, { - "x": 756.7166666666665, - "y": 1974 + "x": 1239.047619047619, + "y": 1874 } ], "animated": false, @@ -5826,28 +5842,28 @@ "labelPercentage": 0, "route": [ { - "x": 724.7166666666665, - "y": 2040 + "x": 1139.047619047619, + "y": 1940 }, { - "x": 724.7166666666665, - "y": 2180 + "x": 1139.047619047619, + "y": 2080 }, { - "x": 534.9190476190474, - "y": 2180 + "x": 831.7142857142857, + "y": 2080 }, { - "x": 534.9190476190474, - "y": 3468 + "x": 831.7142857142857, + "y": 3418 }, { - "x": 845.9071428571427, - "y": 3468 + "x": 1226.0238095238094, + "y": 3418 }, { - "x": 845.9071428571427, - "y": 3508 + "x": 1226.0238095238094, + "y": 3458 } ], "animated": false, @@ -5882,20 +5898,20 @@ "labelPercentage": 0, "route": [ { - "x": 634.4190476190474, - "y": 1644 + "x": 1051.3809523809523, + "y": 1594 }, { - "x": 634.4190476190474, - "y": 1684 + "x": 1051.3809523809523, + "y": 1634 }, { - "x": 735.3833333333332, - "y": 1684 + "x": 1172.3809523809523, + "y": 1634 }, { - "x": 735.3833333333332, - "y": 1974 + "x": 1172.3809523809523, + "y": 1874 } ], "animated": false, @@ -5930,28 +5946,28 @@ "labelPercentage": 0, "route": [ { - "x": 735.3833333333332, - "y": 2040 + "x": 1172.3809523809523, + "y": 1940 }, { - "x": 735.3833333333332, - "y": 2230 + "x": 1172.3809523809523, + "y": 2130 }, { - "x": 545.9190476190474, - "y": 2230 + "x": 842.7142857142857, + "y": 2130 }, { - "x": 545.9190476190474, - "y": 3418 + "x": 842.7142857142857, + "y": 3368 }, { - "x": 855.6214285714284, - "y": 3418 + "x": 1260.3095238095239, + "y": 3368 }, { - "x": 855.6214285714284, - "y": 3508 + "x": 1260.3095238095239, + "y": 3458 } ], "animated": false, @@ -5986,20 +6002,20 @@ "labelPercentage": 0, "route": [ { - "x": 941.0499999999998, - "y": 1644 + "x": 1462.8809523809523, + "y": 1594 }, { - "x": 941.0499999999998, - "y": 1684 + "x": 1462.8809523809523, + "y": 1634 }, { - "x": 948.0499999999998, - "y": 1684 + "x": 1458.8809523809523, + "y": 1634 }, { - "x": 948.0499999999998, - "y": 1974 + "x": 1458.8809523809523, + "y": 1874 } ], "animated": false, @@ -6034,20 +6050,20 @@ "labelPercentage": 0, "route": [ { - "x": 931.5499999999998, - "y": 2040 + "x": 1428.8809523809523, + "y": 1940 }, { - "x": 931.5499999999998, - "y": 2626 + "x": 1428.8809523809523, + "y": 2526 }, { - "x": 910.2499999999999, - "y": 2626 + "x": 1416.8809523809523, + "y": 2526 }, { - "x": 910.2499999999999, - "y": 3016 + "x": 1416.8809523809523, + "y": 2916 } ], "animated": false, @@ -6083,19 +6099,19 @@ "route": [ { "x": 44.5, - "y": 2040 + "y": 1940 }, { "x": 44.5, - "y": 3368 + "y": 3318 }, { - "x": 109.60000000000002, - "y": 3368 + "x": 84.33333333333326, + "y": 3318 }, { - "x": 109.60000000000002, - "y": 3508 + "x": 84.33333333333326, + "y": 3458 } ], "animated": false, @@ -6130,20 +6146,20 @@ "labelPercentage": 0, "route": [ { - "x": 177.33333333333326, - "y": 2040 + "x": 218.66666666666674, + "y": 1940 }, { - "x": 177.33333333333326, - "y": 2080 + "x": 218.66666666666674, + "y": 1980 }, { - "x": 157.66666666666674, - "y": 2080 + "x": 190.33333333333326, + "y": 1980 }, { - "x": 157.66666666666674, - "y": 2520 + "x": 190.33333333333326, + "y": 2420 } ], "animated": false, @@ -6178,20 +6194,20 @@ "labelPercentage": 0, "route": [ { - "x": 148.06666666666672, - "y": 2586 + "x": 166.33333333333326, + "y": 2486 }, { - "x": 148.06666666666672, - "y": 2676 + "x": 166.33333333333326, + "y": 2576 }, { - "x": 176.66666666666663, - "y": 2676 + "x": 178.66666666666652, + "y": 2576 }, { - "x": 176.66666666666663, - "y": 3016 + "x": 178.66666666666652, + "y": 2916 } ], "animated": false, @@ -6226,20 +6242,20 @@ "labelPercentage": 0, "route": [ { - "x": 624.4190476190474, - "y": 2040 + "x": 1004.7142857142857, + "y": 1940 }, { - "x": 624.4190476190474, - "y": 2130 + "x": 1004.7142857142857, + "y": 2030 }, { - "x": 476.6333333333332, - "y": 2130 + "x": 758.3333333333333, + "y": 2030 }, { - "x": 476.6333333333332, - "y": 2520 + "x": 758.3333333333333, + "y": 2420 } ], "animated": false, @@ -6274,28 +6290,28 @@ "labelPercentage": 0, "route": [ { - "x": 432.6333333333332, - "y": 2586 + "x": 625, + "y": 2486 }, { - "x": 432.6333333333332, - "y": 2726 + "x": 625, + "y": 2626 }, { - "x": 279.0333333333332, - "y": 2726 + "x": 366.33333333333326, + "y": 2626 }, { - "x": 279.0333333333332, - "y": 3122 + "x": 366.33333333333326, + "y": 3172 }, { - "x": 277.4333333333333, - "y": 3122 + "x": 345.33333333333326, + "y": 3172 }, { - "x": 277.4333333333333, - "y": 3262 + "x": 345.33333333333326, + "y": 3212 } ], "animated": false, @@ -6330,20 +6346,20 @@ "labelPercentage": 0, "route": [ { - "x": 160.8666666666668, - "y": 2586 + "x": 198.33333333333326, + "y": 2486 }, { - "x": 160.8666666666668, - "y": 2626 + "x": 198.33333333333326, + "y": 2526 }, { - "x": 187.33333333333337, - "y": 2626 + "x": 212, + "y": 2526 }, { - "x": 187.33333333333337, - "y": 3016 + "x": 212, + "y": 2916 } ], "animated": false, @@ -6378,20 +6394,20 @@ "labelPercentage": 0, "route": [ { - "x": 178.79999999999995, - "y": 3082 + "x": 185.33333333333326, + "y": 2982 }, { - "x": 178.79999999999995, - "y": 3122 + "x": 185.33333333333326, + "y": 3022 }, { - "x": 149.76666666666665, - "y": 3122 + "x": 164.33333333333326, + "y": 3022 }, { - "x": 149.76666666666665, - "y": 3262 + "x": 164.33333333333326, + "y": 3212 } ], "animated": false, @@ -6426,20 +6442,20 @@ "labelPercentage": 0, "route": [ { - "x": 144.93333333333328, - "y": 3328 + "x": 154.33333333333326, + "y": 3278 }, { - "x": 144.93333333333328, - "y": 3368 + "x": 154.33333333333326, + "y": 3318 }, { - "x": 141.60000000000002, - "y": 3368 + "x": 144.33333333333326, + "y": 3318 }, { - "x": 141.60000000000002, - "y": 3508 + "x": 144.33333333333326, + "y": 3458 } ], "animated": false, @@ -6474,20 +6490,12 @@ "labelPercentage": 0, "route": [ { - "x": 380.9666666666666, - "y": 2040 - }, - { - "x": 380.9666666666666, - "y": 2080 - }, - { - "x": 380.6333333333332, - "y": 2080 + "x": 544.9999999999999, + "y": 1940 }, { - "x": 380.6333333333332, - "y": 2520 + "x": 544.9999999999999, + "y": 2420 } ], "animated": false, @@ -6522,20 +6530,20 @@ "labelPercentage": 0, "route": [ { - "x": 380.6333333333332, - "y": 2586 + "x": 544.9999999999999, + "y": 2486 }, { - "x": 380.6333333333332, - "y": 2626 + "x": 544.9999999999999, + "y": 2726 }, { - "x": 367.6333333333332, - "y": 2626 + "x": 553.3333333333333, + "y": 2726 }, { - "x": 367.6333333333332, - "y": 3016 + "x": 553.3333333333333, + "y": 2916 } ], "animated": false, @@ -6570,20 +6578,20 @@ "labelPercentage": 0, "route": [ { - "x": 374.0333333333332, - "y": 3082 + "x": 581.3333333333333, + "y": 2982 }, { - "x": 374.0333333333332, - "y": 3172 + "x": 581.3333333333333, + "y": 3022 }, { - "x": 374.23333333333323, - "y": 3172 + "x": 557.3333333333333, + "y": 3022 }, { - "x": 374.23333333333323, - "y": 3262 + "x": 557.3333333333333, + "y": 3212 } ], "animated": false, @@ -6618,20 +6626,20 @@ "labelPercentage": 0, "route": [ { - "x": 778.5499999999998, - "y": 1644 + "x": 1265.7142857142856, + "y": 1594 }, { - "x": 778.5499999999998, - "y": 1834 + "x": 1265.7142857142856, + "y": 1784 }, { - "x": 767.3833333333332, - "y": 1834 + "x": 1272.3809523809523, + "y": 1784 }, { - "x": 767.3833333333332, - "y": 1974 + "x": 1272.3809523809523, + "y": 1874 } ], "animated": false, @@ -6666,28 +6674,28 @@ "labelPercentage": 0, "route": [ { - "x": 481.1333333333332, - "y": 1644 + "x": 771.6666666666666, + "y": 1594 }, { - "x": 481.1333333333332, - "y": 1684 + "x": 771.6666666666666, + "y": 1634 }, { - "x": 250, - "y": 1684 + "x": 344.33333333333326, + "y": 1634 }, { - "x": 250, - "y": 2676 + "x": 344.33333333333326, + "y": 2576 }, { - "x": 219.33333333333337, - "y": 2676 + "x": 311.9999999999999, + "y": 2576 }, { - "x": 219.33333333333337, - "y": 3016 + "x": 311.9999999999999, + "y": 2916 } ], "animated": false, @@ -6722,20 +6730,20 @@ "labelPercentage": 0, "route": [ { - "x": 191.60000000000002, - "y": 3082 + "x": 225.33333333333326, + "y": 2982 }, { - "x": 191.60000000000002, - "y": 3418 + "x": 225.33333333333326, + "y": 3368 }, { - "x": 328.48333333333323, - "y": 3418 + "x": 434.66666666666663, + "y": 3368 }, { - "x": 328.48333333333323, - "y": 3508 + "x": 434.66666666666663, + "y": 3458 } ], "animated": false, @@ -6770,20 +6778,20 @@ "labelPercentage": 0, "route": [ { - "x": 443.6333333333332, - "y": 2586 + "x": 658.3333333333333, + "y": 2486 }, { - "x": 443.6333333333332, - "y": 2776 + "x": 658.3333333333333, + "y": 2676 }, { - "x": 290.0333333333332, - "y": 2776 + "x": 377.33333333333326, + "y": 2676 }, { - "x": 290.0333333333332, - "y": 3262 + "x": 377.33333333333326, + "y": 3212 } ], "animated": false, @@ -6818,12 +6826,12 @@ "labelPercentage": 0, "route": [ { - "x": 948.0499999999998, - "y": 2040 + "x": 1458.8809523809523, + "y": 1940 }, { - "x": 948.0499999999998, - "y": 3262 + "x": 1458.8809523809523, + "y": 3212 } ], "animated": false, @@ -6858,20 +6866,20 @@ "labelPercentage": 0, "route": [ { - "x": 204.39999999999998, - "y": 3082 + "x": 265.33333333333326, + "y": 2982 }, { - "x": 204.39999999999998, - "y": 3368 + "x": 265.33333333333326, + "y": 3318 }, { - "x": 339.98333333333323, - "y": 3368 + "x": 467.9999999999999, + "y": 3318 }, { - "x": 339.98333333333323, - "y": 3508 + "x": 467.9999999999999, + "y": 3458 } ], "animated": false, @@ -6906,28 +6914,28 @@ "labelPercentage": 0, "route": [ { - "x": 767.3833333333332, - "y": 2040 + "x": 1272.3809523809523, + "y": 1940 }, { - "x": 767.3833333333332, - "y": 2480 + "x": 1272.3809523809523, + "y": 2380 }, { - "x": 629.9190476190474, - "y": 2480 + "x": 1023.7142857142857, + "y": 2380 }, { - "x": 629.9190476190474, - "y": 3368 + "x": 1023.7142857142857, + "y": 3318 }, { - "x": 865.3357142857142, - "y": 3368 + "x": 1294.595238095238, + "y": 3318 }, { - "x": 865.3357142857142, - "y": 3508 + "x": 1294.595238095238, + "y": 3458 } ], "animated": false, @@ -6962,20 +6970,20 @@ "labelPercentage": 0, "route": [ { - "x": 386.8333333333332, - "y": 3082 + "x": 637.3333333333333, + "y": 2982 }, { - "x": 386.8333333333332, - "y": 3122 + "x": 637.3333333333333, + "y": 3072 }, { - "x": 387.23333333333323, - "y": 3122 + "x": 589.3333333333333, + "y": 3072 }, { - "x": 387.23333333333323, - "y": 3262 + "x": 589.3333333333333, + "y": 3212 } ], "animated": false, @@ -7010,20 +7018,20 @@ "labelPercentage": 0, "route": [ { - "x": 891.0499999999998, - "y": 3082 + "x": 1368.8809523809523, + "y": 2982 }, { - "x": 891.0499999999998, - "y": 3368 + "x": 1368.8809523809523, + "y": 3318 }, { - "x": 884.7642857142855, - "y": 3368 + "x": 1363.1666666666665, + "y": 3318 }, { - "x": 884.7642857142855, - "y": 3508 + "x": 1363.1666666666665, + "y": 3458 } ], "animated": false, @@ -7058,20 +7066,20 @@ "labelPercentage": 0, "route": [ { - "x": 383.98333333333323, - "y": 3328 + "x": 581.3333333333333, + "y": 3278 }, { - "x": 383.98333333333323, - "y": 3368 + "x": 581.3333333333333, + "y": 3318 }, { - "x": 374.48333333333323, - "y": 3368 + "x": 567.9999999999999, + "y": 3318 }, { - "x": 374.48333333333323, - "y": 3508 + "x": 567.9999999999999, + "y": 3458 } ], "animated": false, diff --git a/e2etests/testdata/stable/us_map/elk/sketch.exp.svg b/e2etests/testdata/stable/us_map/elk/sketch.exp.svg index 18e4e3ceff..810addd613 100644 --- a/e2etests/testdata/stable/us_map/elk/sketch.exp.svg +++ b/e2etests/testdata/stable/us_map/elk/sketch.exp.svg @@ -1,4 +1,4 @@ -ALFLGAMSTNAKAZCANVNMUTARLAMOOKTXORCOKSNEWYCTMANYRIDEMDNJPANCSCHIIDMTWAILINIAMIKYWIOHMNSDVAWVMENHVTND - +.fill-N1{fill:#0A0F25;}.fill-N2{fill:#676C7E;}.fill-N3{fill:#9499AB;}.fill-N4{fill:#CFD2DD;}.fill-N5{fill:#DEE1EB;}.fill-N6{fill:#EEF1F8;}.fill-N7{fill:#FFFFFF;}.fill-B1{fill:#0D32B2;}.fill-B2{fill:#0D32B2;}.fill-B3{fill:#E3E9FD;}.fill-B4{fill:#E3E9FD;}.fill-B5{fill:#EDF0FD;}.fill-B6{fill:#F7F8FE;}.fill-AA2{fill:#4A6FF3;}.fill-AA4{fill:#EDF0FD;}.fill-AA5{fill:#F7F8FE;}.fill-AB4{fill:#EDF0FD;}.fill-AB5{fill:#F7F8FE;}.stroke-N1{stroke:#0A0F25;}.stroke-N2{stroke:#676C7E;}.stroke-N3{stroke:#9499AB;}.stroke-N4{stroke:#CFD2DD;}.stroke-N5{stroke:#DEE1EB;}.stroke-N6{stroke:#EEF1F8;}.stroke-N7{stroke:#FFFFFF;}.stroke-B1{stroke:#0D32B2;}.stroke-B2{stroke:#0D32B2;}.stroke-B3{stroke:#E3E9FD;}.stroke-B4{stroke:#E3E9FD;}.stroke-B5{stroke:#EDF0FD;}.stroke-B6{stroke:#F7F8FE;}.stroke-AA2{stroke:#4A6FF3;}.stroke-AA4{stroke:#EDF0FD;}.stroke-AA5{stroke:#F7F8FE;}.stroke-AB4{stroke:#EDF0FD;}.stroke-AB5{stroke:#F7F8FE;}.background-color-N1{background-color:#0A0F25;}.background-color-N2{background-color:#676C7E;}.background-color-N3{background-color:#9499AB;}.background-color-N4{background-color:#CFD2DD;}.background-color-N5{background-color:#DEE1EB;}.background-color-N6{background-color:#EEF1F8;}.background-color-N7{background-color:#FFFFFF;}.background-color-B1{background-color:#0D32B2;}.background-color-B2{background-color:#0D32B2;}.background-color-B3{background-color:#E3E9FD;}.background-color-B4{background-color:#E3E9FD;}.background-color-B5{background-color:#EDF0FD;}.background-color-B6{background-color:#F7F8FE;}.background-color-AA2{background-color:#4A6FF3;}.background-color-AA4{background-color:#EDF0FD;}.background-color-AA5{background-color:#F7F8FE;}.background-color-AB4{background-color:#EDF0FD;}.background-color-AB5{background-color:#F7F8FE;}.color-N1{color:#0A0F25;}.color-N2{color:#676C7E;}.color-N3{color:#9499AB;}.color-N4{color:#CFD2DD;}.color-N5{color:#DEE1EB;}.color-N6{color:#EEF1F8;}.color-N7{color:#FFFFFF;}.color-B1{color:#0D32B2;}.color-B2{color:#0D32B2;}.color-B3{color:#E3E9FD;}.color-B4{color:#E3E9FD;}.color-B5{color:#EDF0FD;}.color-B6{color:#F7F8FE;}.color-AA2{color:#4A6FF3;}.color-AA4{color:#EDF0FD;}.color-AA5{color:#F7F8FE;}.color-AB4{color:#EDF0FD;}.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}]]>ALFLGAMSTNAKAZCANVNMUTARLAMOOKTXORCOKSNEWYCTMANYRIDEMDNJPANCSCHIIDMTWAILINIAMIKYWIOHMNSDVAWVMENHVTND + \ No newline at end of file diff --git a/e2etests/testdata/todo/container_label_edge_adjustment/elk/board.exp.json b/e2etests/testdata/todo/container_label_edge_adjustment/elk/board.exp.json index 0563a754ff..35c633a6ec 100644 --- a/e2etests/testdata/todo/container_label_edge_adjustment/elk/board.exp.json +++ b/e2etests/testdata/todo/container_label_edge_adjustment/elk/board.exp.json @@ -48,10 +48,10 @@ "id": "b", "type": "cloud", "pos": { - "x": 26, + "x": 70, "y": 213 }, - "width": 155, + "width": 180, "height": 166, "opacity": 1, "strokeDash": 0, @@ -89,10 +89,10 @@ "id": "b.c", "type": "rectangle", "pos": { - "x": 76, + "x": 120, "y": 263 }, - "width": 53, + "width": 80, "height": 66, "opacity": 1, "strokeDash": 0, @@ -130,7 +130,7 @@ "id": "d", "type": "rectangle", "pos": { - "x": 75, + "x": 133, "y": 454 }, "width": 54, @@ -324,14 +324,14 @@ }, { "x": 38.5, - "y": 118 + "y": 168 }, { - "x": 93.83333333333333, - "y": 118 + "x": 146.83333333333331, + "y": 168 }, { - "x": 93.83333333333333, + "x": 146.83333333333331, "y": 263 } ], @@ -367,11 +367,11 @@ "labelPercentage": 0, "route": [ { - "x": 102.66666666666666, + "x": 160.16666666666666, "y": 329 }, { - "x": 102.66666666666666, + "x": 160.16666666666669, "y": 454 } ], @@ -412,6 +412,14 @@ }, { "x": 111.5, + "y": 118 + }, + { + "x": 173.5, + "y": 118 + }, + { + "x": 173.5, "y": 263 } ], @@ -451,16 +459,8 @@ "y": 78 }, { - "x": 183.5, - "y": 118 - }, - { - "x": 121.5, - "y": 118 - }, - { - "x": 122, - "y": 213 + "x": 184, + "y": 214 } ], "animated": false, @@ -500,15 +500,15 @@ }, { "x": 256, - "y": 168 + "y": 118 }, { - "x": 131.5, - "y": 168 + "x": 193.5, + "y": 118 }, { - "x": 131, - "y": 218 + "x": 194, + "y": 219 } ], "animated": false, diff --git a/e2etests/testdata/todo/container_label_edge_adjustment/elk/sketch.exp.svg b/e2etests/testdata/todo/container_label_edge_adjustment/elk/sketch.exp.svg index b28cba7ab5..d161fdcc3e 100644 --- a/e2etests/testdata/todo/container_label_edge_adjustment/elk/sketch.exp.svg +++ b/e2etests/testdata/todo/container_label_edge_adjustment/elk/sketch.exp.svg @@ -24,7 +24,7 @@ mix-blend-mode: multiply; opacity: 0.5; } -.fill-N1{fill:#0A0F25;}.fill-N2{fill:#676C7E;}.fill-N3{fill:#9499AB;}.fill-N4{fill:#CFD2DD;}.fill-N5{fill:#DEE1EB;}.fill-N6{fill:#EEF1F8;}.fill-N7{fill:#FFFFFF;}.fill-B1{fill:#0D32B2;}.fill-B2{fill:#0D32B2;}.fill-B3{fill:#E3E9FD;}.fill-B4{fill:#E3E9FD;}.fill-B5{fill:#EDF0FD;}.fill-B6{fill:#F7F8FE;}.fill-AA2{fill:#4A6FF3;}.fill-AA4{fill:#EDF0FD;}.fill-AA5{fill:#F7F8FE;}.fill-AB4{fill:#EDF0FD;}.fill-AB5{fill:#F7F8FE;}.stroke-N1{stroke:#0A0F25;}.stroke-N2{stroke:#676C7E;}.stroke-N3{stroke:#9499AB;}.stroke-N4{stroke:#CFD2DD;}.stroke-N5{stroke:#DEE1EB;}.stroke-N6{stroke:#EEF1F8;}.stroke-N7{stroke:#FFFFFF;}.stroke-B1{stroke:#0D32B2;}.stroke-B2{stroke:#0D32B2;}.stroke-B3{stroke:#E3E9FD;}.stroke-B4{stroke:#E3E9FD;}.stroke-B5{stroke:#EDF0FD;}.stroke-B6{stroke:#F7F8FE;}.stroke-AA2{stroke:#4A6FF3;}.stroke-AA4{stroke:#EDF0FD;}.stroke-AA5{stroke:#F7F8FE;}.stroke-AB4{stroke:#EDF0FD;}.stroke-AB5{stroke:#F7F8FE;}.background-color-N1{background-color:#0A0F25;}.background-color-N2{background-color:#676C7E;}.background-color-N3{background-color:#9499AB;}.background-color-N4{background-color:#CFD2DD;}.background-color-N5{background-color:#DEE1EB;}.background-color-N6{background-color:#EEF1F8;}.background-color-N7{background-color:#FFFFFF;}.background-color-B1{background-color:#0D32B2;}.background-color-B2{background-color:#0D32B2;}.background-color-B3{background-color:#E3E9FD;}.background-color-B4{background-color:#E3E9FD;}.background-color-B5{background-color:#EDF0FD;}.background-color-B6{background-color:#F7F8FE;}.background-color-AA2{background-color:#4A6FF3;}.background-color-AA4{background-color:#EDF0FD;}.background-color-AA5{background-color:#F7F8FE;}.background-color-AB4{background-color:#EDF0FD;}.background-color-AB5{background-color:#F7F8FE;}.color-N1{color:#0A0F25;}.color-N2{color:#676C7E;}.color-N3{color:#9499AB;}.color-N4{color:#CFD2DD;}.color-N5{color:#DEE1EB;}.color-N6{color:#EEF1F8;}.color-N7{color:#FFFFFF;}.color-B1{color:#0D32B2;}.color-B2{color:#0D32B2;}.color-B3{color:#E3E9FD;}.color-B4{color:#E3E9FD;}.color-B5{color:#EDF0FD;}.color-B6{color:#F7F8FE;}.color-AA2{color:#4A6FF3;}.color-AA4{color:#EDF0FD;}.color-AA5{color:#F7F8FE;}.color-AB4{color:#EDF0FD;}.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}]]>aa container labeldefgc +.fill-N1{fill:#0A0F25;}.fill-N2{fill:#676C7E;}.fill-N3{fill:#9499AB;}.fill-N4{fill:#CFD2DD;}.fill-N5{fill:#DEE1EB;}.fill-N6{fill:#EEF1F8;}.fill-N7{fill:#FFFFFF;}.fill-B1{fill:#0D32B2;}.fill-B2{fill:#0D32B2;}.fill-B3{fill:#E3E9FD;}.fill-B4{fill:#E3E9FD;}.fill-B5{fill:#EDF0FD;}.fill-B6{fill:#F7F8FE;}.fill-AA2{fill:#4A6FF3;}.fill-AA4{fill:#EDF0FD;}.fill-AA5{fill:#F7F8FE;}.fill-AB4{fill:#EDF0FD;}.fill-AB5{fill:#F7F8FE;}.stroke-N1{stroke:#0A0F25;}.stroke-N2{stroke:#676C7E;}.stroke-N3{stroke:#9499AB;}.stroke-N4{stroke:#CFD2DD;}.stroke-N5{stroke:#DEE1EB;}.stroke-N6{stroke:#EEF1F8;}.stroke-N7{stroke:#FFFFFF;}.stroke-B1{stroke:#0D32B2;}.stroke-B2{stroke:#0D32B2;}.stroke-B3{stroke:#E3E9FD;}.stroke-B4{stroke:#E3E9FD;}.stroke-B5{stroke:#EDF0FD;}.stroke-B6{stroke:#F7F8FE;}.stroke-AA2{stroke:#4A6FF3;}.stroke-AA4{stroke:#EDF0FD;}.stroke-AA5{stroke:#F7F8FE;}.stroke-AB4{stroke:#EDF0FD;}.stroke-AB5{stroke:#F7F8FE;}.background-color-N1{background-color:#0A0F25;}.background-color-N2{background-color:#676C7E;}.background-color-N3{background-color:#9499AB;}.background-color-N4{background-color:#CFD2DD;}.background-color-N5{background-color:#DEE1EB;}.background-color-N6{background-color:#EEF1F8;}.background-color-N7{background-color:#FFFFFF;}.background-color-B1{background-color:#0D32B2;}.background-color-B2{background-color:#0D32B2;}.background-color-B3{background-color:#E3E9FD;}.background-color-B4{background-color:#E3E9FD;}.background-color-B5{background-color:#EDF0FD;}.background-color-B6{background-color:#F7F8FE;}.background-color-AA2{background-color:#4A6FF3;}.background-color-AA4{background-color:#EDF0FD;}.background-color-AA5{background-color:#F7F8FE;}.background-color-AB4{background-color:#EDF0FD;}.background-color-AB5{background-color:#F7F8FE;}.color-N1{color:#0A0F25;}.color-N2{color:#676C7E;}.color-N3{color:#9499AB;}.color-N4{color:#CFD2DD;}.color-N5{color:#DEE1EB;}.color-N6{color:#EEF1F8;}.color-N7{color:#FFFFFF;}.color-B1{color:#0D32B2;}.color-B2{color:#0D32B2;}.color-B3{color:#E3E9FD;}.color-B4{color:#E3E9FD;}.color-B5{color:#EDF0FD;}.color-B6{color:#F7F8FE;}.color-AA2{color:#4A6FF3;}.color-AA4{color:#EDF0FD;}.color-AA5{color:#F7F8FE;}.color-AB4{color:#EDF0FD;}.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}]]>aa container labeldefgc \ No newline at end of file