diff --git a/ci/release/changelogs/next.md b/ci/release/changelogs/next.md index d8e48cd667..34dcd7b548 100644 --- a/ci/release/changelogs/next.md +++ b/ci/release/changelogs/next.md @@ -8,6 +8,8 @@ - CLI: attempts writing to path atomically, falling back to non-atomic if failed [#2141](https://github.com/terrastruct/d2/pull/2141) - Export: pptx has "created at" metadata removed, so successive runs yield the same result [#2169](https://github.com/terrastruct/d2/pull/2160) - Formatter: empty board keywords (e.g. `layers`) are removed [#2178](https://github.com/terrastruct/d2/pull/2178) +- Render: circle containers are tighter fitting [#2183](https://github.com/terrastruct/d2/pull/2183) +- Render: a tooltip or link by itself will not expand width of shape [#2183](https://github.com/terrastruct/d2/pull/2183) #### Bugfixes ⛑️ diff --git a/d2graph/d2graph.go b/d2graph/d2graph.go index 674dc8e316..7a72512ef6 100644 --- a/d2graph/d2graph.go +++ b/d2graph/d2graph.go @@ -1544,11 +1544,8 @@ func (g *Graph) SetDimensions(mtexts []*d2target.MText, ruler *textmeasure.Ruler switch shapeType { case shape.TABLE_TYPE, shape.CLASS_TYPE, shape.CODE_TYPE: default: - if obj.Link != nil { - paddingX += 32 - } - if obj.Tooltip != nil { - paddingX += 32 + if obj.Link != nil && obj.Tooltip != nil { + paddingX += 64 } } } diff --git a/d2renderers/d2sketch/testdata/all_shapes/sketch.exp.svg b/d2renderers/d2sketch/testdata/all_shapes/sketch.exp.svg index 3e09ab8c24..477b5aaa4b 100644 --- a/d2renderers/d2sketch/testdata/all_shapes/sketch.exp.svg +++ b/d2renderers/d2sketch/testdata/all_shapes/sketch.exp.svg @@ -1,9 +1,9 @@ - + .d2-388925799 .fill-N1{fill:#0A0F25;} + .d2-388925799 .fill-N2{fill:#676C7E;} + .d2-388925799 .fill-N3{fill:#9499AB;} + .d2-388925799 .fill-N4{fill:#CFD2DD;} + .d2-388925799 .fill-N5{fill:#DEE1EB;} + .d2-388925799 .fill-N6{fill:#EEF1F8;} + .d2-388925799 .fill-N7{fill:#FFFFFF;} + .d2-388925799 .fill-B1{fill:#0D32B2;} + .d2-388925799 .fill-B2{fill:#0D32B2;} + .d2-388925799 .fill-B3{fill:#E3E9FD;} + .d2-388925799 .fill-B4{fill:#E3E9FD;} + .d2-388925799 .fill-B5{fill:#EDF0FD;} + .d2-388925799 .fill-B6{fill:#F7F8FE;} + .d2-388925799 .fill-AA2{fill:#4A6FF3;} + .d2-388925799 .fill-AA4{fill:#EDF0FD;} + .d2-388925799 .fill-AA5{fill:#F7F8FE;} + .d2-388925799 .fill-AB4{fill:#EDF0FD;} + .d2-388925799 .fill-AB5{fill:#F7F8FE;} + .d2-388925799 .stroke-N1{stroke:#0A0F25;} + .d2-388925799 .stroke-N2{stroke:#676C7E;} + .d2-388925799 .stroke-N3{stroke:#9499AB;} + .d2-388925799 .stroke-N4{stroke:#CFD2DD;} + .d2-388925799 .stroke-N5{stroke:#DEE1EB;} + .d2-388925799 .stroke-N6{stroke:#EEF1F8;} + .d2-388925799 .stroke-N7{stroke:#FFFFFF;} + .d2-388925799 .stroke-B1{stroke:#0D32B2;} + .d2-388925799 .stroke-B2{stroke:#0D32B2;} + .d2-388925799 .stroke-B3{stroke:#E3E9FD;} + .d2-388925799 .stroke-B4{stroke:#E3E9FD;} + .d2-388925799 .stroke-B5{stroke:#EDF0FD;} + .d2-388925799 .stroke-B6{stroke:#F7F8FE;} + .d2-388925799 .stroke-AA2{stroke:#4A6FF3;} + .d2-388925799 .stroke-AA4{stroke:#EDF0FD;} + .d2-388925799 .stroke-AA5{stroke:#F7F8FE;} + .d2-388925799 .stroke-AB4{stroke:#EDF0FD;} + .d2-388925799 .stroke-AB5{stroke:#F7F8FE;} + .d2-388925799 .background-color-N1{background-color:#0A0F25;} + .d2-388925799 .background-color-N2{background-color:#676C7E;} + .d2-388925799 .background-color-N3{background-color:#9499AB;} + .d2-388925799 .background-color-N4{background-color:#CFD2DD;} + .d2-388925799 .background-color-N5{background-color:#DEE1EB;} + .d2-388925799 .background-color-N6{background-color:#EEF1F8;} + .d2-388925799 .background-color-N7{background-color:#FFFFFF;} + .d2-388925799 .background-color-B1{background-color:#0D32B2;} + .d2-388925799 .background-color-B2{background-color:#0D32B2;} + .d2-388925799 .background-color-B3{background-color:#E3E9FD;} + .d2-388925799 .background-color-B4{background-color:#E3E9FD;} + .d2-388925799 .background-color-B5{background-color:#EDF0FD;} + .d2-388925799 .background-color-B6{background-color:#F7F8FE;} + .d2-388925799 .background-color-AA2{background-color:#4A6FF3;} + .d2-388925799 .background-color-AA4{background-color:#EDF0FD;} + .d2-388925799 .background-color-AA5{background-color:#F7F8FE;} + .d2-388925799 .background-color-AB4{background-color:#EDF0FD;} + .d2-388925799 .background-color-AB5{background-color:#F7F8FE;} + .d2-388925799 .color-N1{color:#0A0F25;} + .d2-388925799 .color-N2{color:#676C7E;} + .d2-388925799 .color-N3{color:#9499AB;} + .d2-388925799 .color-N4{color:#CFD2DD;} + .d2-388925799 .color-N5{color:#DEE1EB;} + .d2-388925799 .color-N6{color:#EEF1F8;} + .d2-388925799 .color-N7{color:#FFFFFF;} + .d2-388925799 .color-B1{color:#0D32B2;} + .d2-388925799 .color-B2{color:#0D32B2;} + .d2-388925799 .color-B3{color:#E3E9FD;} + .d2-388925799 .color-B4{color:#E3E9FD;} + .d2-388925799 .color-B5{color:#EDF0FD;} + .d2-388925799 .color-B6{color:#F7F8FE;} + .d2-388925799 .color-AA2{color:#4A6FF3;} + .d2-388925799 .color-AA4{color:#EDF0FD;} + .d2-388925799 .color-AA5{color:#F7F8FE;} + .d2-388925799 .color-AB4{color:#EDF0FD;} + .d2-388925799 .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}]]> @@ -97,7 +97,7 @@ -rectanglesquarepageparallelogramdocumentcylinderqueuepackagestepcalloutstored_datapersondiamondovalcirclehexagoncloud +rectanglesquarepageparallelogramdocumentcylinderqueuepackagestepcalloutstored_datapersondiamondovalcirclehexagoncloud @@ -113,7 +113,7 @@ - + \ No newline at end of file diff --git a/d2renderers/d2sketch/testdata/all_shapes_dark/sketch.exp.svg b/d2renderers/d2sketch/testdata/all_shapes_dark/sketch.exp.svg index 7c671bb601..a7bfc40245 100644 --- a/d2renderers/d2sketch/testdata/all_shapes_dark/sketch.exp.svg +++ b/d2renderers/d2sketch/testdata/all_shapes_dark/sketch.exp.svg @@ -1,9 +1,9 @@ - + .d2-388925799 .fill-N1{fill:#CDD6F4;} + .d2-388925799 .fill-N2{fill:#BAC2DE;} + .d2-388925799 .fill-N3{fill:#A6ADC8;} + .d2-388925799 .fill-N4{fill:#585B70;} + .d2-388925799 .fill-N5{fill:#45475A;} + .d2-388925799 .fill-N6{fill:#313244;} + .d2-388925799 .fill-N7{fill:#1E1E2E;} + .d2-388925799 .fill-B1{fill:#CBA6f7;} + .d2-388925799 .fill-B2{fill:#CBA6f7;} + .d2-388925799 .fill-B3{fill:#6C7086;} + .d2-388925799 .fill-B4{fill:#585B70;} + .d2-388925799 .fill-B5{fill:#45475A;} + .d2-388925799 .fill-B6{fill:#313244;} + .d2-388925799 .fill-AA2{fill:#f38BA8;} + .d2-388925799 .fill-AA4{fill:#45475A;} + .d2-388925799 .fill-AA5{fill:#313244;} + .d2-388925799 .fill-AB4{fill:#45475A;} + .d2-388925799 .fill-AB5{fill:#313244;} + .d2-388925799 .stroke-N1{stroke:#CDD6F4;} + .d2-388925799 .stroke-N2{stroke:#BAC2DE;} + .d2-388925799 .stroke-N3{stroke:#A6ADC8;} + .d2-388925799 .stroke-N4{stroke:#585B70;} + .d2-388925799 .stroke-N5{stroke:#45475A;} + .d2-388925799 .stroke-N6{stroke:#313244;} + .d2-388925799 .stroke-N7{stroke:#1E1E2E;} + .d2-388925799 .stroke-B1{stroke:#CBA6f7;} + .d2-388925799 .stroke-B2{stroke:#CBA6f7;} + .d2-388925799 .stroke-B3{stroke:#6C7086;} + .d2-388925799 .stroke-B4{stroke:#585B70;} + .d2-388925799 .stroke-B5{stroke:#45475A;} + .d2-388925799 .stroke-B6{stroke:#313244;} + .d2-388925799 .stroke-AA2{stroke:#f38BA8;} + .d2-388925799 .stroke-AA4{stroke:#45475A;} + .d2-388925799 .stroke-AA5{stroke:#313244;} + .d2-388925799 .stroke-AB4{stroke:#45475A;} + .d2-388925799 .stroke-AB5{stroke:#313244;} + .d2-388925799 .background-color-N1{background-color:#CDD6F4;} + .d2-388925799 .background-color-N2{background-color:#BAC2DE;} + .d2-388925799 .background-color-N3{background-color:#A6ADC8;} + .d2-388925799 .background-color-N4{background-color:#585B70;} + .d2-388925799 .background-color-N5{background-color:#45475A;} + .d2-388925799 .background-color-N6{background-color:#313244;} + .d2-388925799 .background-color-N7{background-color:#1E1E2E;} + .d2-388925799 .background-color-B1{background-color:#CBA6f7;} + .d2-388925799 .background-color-B2{background-color:#CBA6f7;} + .d2-388925799 .background-color-B3{background-color:#6C7086;} + .d2-388925799 .background-color-B4{background-color:#585B70;} + .d2-388925799 .background-color-B5{background-color:#45475A;} + .d2-388925799 .background-color-B6{background-color:#313244;} + .d2-388925799 .background-color-AA2{background-color:#f38BA8;} + .d2-388925799 .background-color-AA4{background-color:#45475A;} + .d2-388925799 .background-color-AA5{background-color:#313244;} + .d2-388925799 .background-color-AB4{background-color:#45475A;} + .d2-388925799 .background-color-AB5{background-color:#313244;} + .d2-388925799 .color-N1{color:#CDD6F4;} + .d2-388925799 .color-N2{color:#BAC2DE;} + .d2-388925799 .color-N3{color:#A6ADC8;} + .d2-388925799 .color-N4{color:#585B70;} + .d2-388925799 .color-N5{color:#45475A;} + .d2-388925799 .color-N6{color:#313244;} + .d2-388925799 .color-N7{color:#1E1E2E;} + .d2-388925799 .color-B1{color:#CBA6f7;} + .d2-388925799 .color-B2{color:#CBA6f7;} + .d2-388925799 .color-B3{color:#6C7086;} + .d2-388925799 .color-B4{color:#585B70;} + .d2-388925799 .color-B5{color:#45475A;} + .d2-388925799 .color-B6{color:#313244;} + .d2-388925799 .color-AA2{color:#f38BA8;} + .d2-388925799 .color-AA4{color:#45475A;} + .d2-388925799 .color-AA5{color:#313244;} + .d2-388925799 .color-AB4{color:#45475A;} + .d2-388925799 .color-AB5{color:#313244;}.appendix text.text{fill:#CDD6F4}.md{--color-fg-default:#CDD6F4;--color-fg-muted:#BAC2DE;--color-fg-subtle:#A6ADC8;--color-canvas-default:#1E1E2E;--color-canvas-subtle:#313244;--color-border-default:#CBA6f7;--color-border-muted:#CBA6f7;--color-neutral-muted:#313244;--color-accent-fg:#CBA6f7;--color-accent-emphasis:#CBA6f7;--color-attention-subtle:#BAC2DE;--color-danger-fg:red;}.sketch-overlay-B1{fill:url(#streaks-normal);mix-blend-mode:color-burn}.sketch-overlay-B2{fill:url(#streaks-normal);mix-blend-mode:color-burn}.sketch-overlay-B3{fill:url(#streaks-dark);mix-blend-mode:overlay}.sketch-overlay-B4{fill:url(#streaks-dark);mix-blend-mode:overlay}.sketch-overlay-B5{fill:url(#streaks-darker);mix-blend-mode:lighten}.sketch-overlay-B6{fill:url(#streaks-darker);mix-blend-mode:lighten}.sketch-overlay-AA2{fill:url(#streaks-normal);mix-blend-mode:color-burn}.sketch-overlay-AA4{fill:url(#streaks-darker);mix-blend-mode:lighten}.sketch-overlay-AA5{fill:url(#streaks-darker);mix-blend-mode:lighten}.sketch-overlay-AB4{fill:url(#streaks-darker);mix-blend-mode:lighten}.sketch-overlay-AB5{fill:url(#streaks-darker);mix-blend-mode:lighten}.sketch-overlay-N1{fill:url(#streaks-normal);mix-blend-mode:color-burn}.sketch-overlay-N2{fill:url(#streaks-normal);mix-blend-mode:color-burn}.sketch-overlay-N3{fill:url(#streaks-normal);mix-blend-mode:color-burn}.sketch-overlay-N4{fill:url(#streaks-dark);mix-blend-mode:overlay}.sketch-overlay-N5{fill:url(#streaks-darker);mix-blend-mode:lighten}.sketch-overlay-N6{fill:url(#streaks-darker);mix-blend-mode:lighten}.sketch-overlay-N7{fill:url(#streaks-darker);mix-blend-mode:lighten}.light-code{display: none}.dark-code{display: block}]]> -rectanglesquarepageparallelogramdocumentcylinderqueuepackagestepcalloutstored_datapersondiamondovalcirclehexagoncloud +rectanglesquarepageparallelogramdocumentcylinderqueuepackagestepcalloutstored_datapersondiamondovalcirclehexagoncloud @@ -111,7 +111,7 @@ - + \ No newline at end of file diff --git a/d2renderers/d2sketch/testdata/dots-all/sketch.exp.svg b/d2renderers/d2sketch/testdata/dots-all/sketch.exp.svg index f71ce835da..d2c22ebc73 100644 --- a/d2renderers/d2sketch/testdata/dots-all/sketch.exp.svg +++ b/d2renderers/d2sketch/testdata/dots-all/sketch.exp.svg @@ -1,9 +1,9 @@ - + .d2-4133689320 .fill-N1{fill:#0A0F25;} + .d2-4133689320 .fill-N2{fill:#676C7E;} + .d2-4133689320 .fill-N3{fill:#9499AB;} + .d2-4133689320 .fill-N4{fill:#CFD2DD;} + .d2-4133689320 .fill-N5{fill:#DEE1EB;} + .d2-4133689320 .fill-N6{fill:#EEF1F8;} + .d2-4133689320 .fill-N7{fill:#FFFFFF;} + .d2-4133689320 .fill-B1{fill:#0D32B2;} + .d2-4133689320 .fill-B2{fill:#0D32B2;} + .d2-4133689320 .fill-B3{fill:#E3E9FD;} + .d2-4133689320 .fill-B4{fill:#E3E9FD;} + .d2-4133689320 .fill-B5{fill:#EDF0FD;} + .d2-4133689320 .fill-B6{fill:#F7F8FE;} + .d2-4133689320 .fill-AA2{fill:#4A6FF3;} + .d2-4133689320 .fill-AA4{fill:#EDF0FD;} + .d2-4133689320 .fill-AA5{fill:#F7F8FE;} + .d2-4133689320 .fill-AB4{fill:#EDF0FD;} + .d2-4133689320 .fill-AB5{fill:#F7F8FE;} + .d2-4133689320 .stroke-N1{stroke:#0A0F25;} + .d2-4133689320 .stroke-N2{stroke:#676C7E;} + .d2-4133689320 .stroke-N3{stroke:#9499AB;} + .d2-4133689320 .stroke-N4{stroke:#CFD2DD;} + .d2-4133689320 .stroke-N5{stroke:#DEE1EB;} + .d2-4133689320 .stroke-N6{stroke:#EEF1F8;} + .d2-4133689320 .stroke-N7{stroke:#FFFFFF;} + .d2-4133689320 .stroke-B1{stroke:#0D32B2;} + .d2-4133689320 .stroke-B2{stroke:#0D32B2;} + .d2-4133689320 .stroke-B3{stroke:#E3E9FD;} + .d2-4133689320 .stroke-B4{stroke:#E3E9FD;} + .d2-4133689320 .stroke-B5{stroke:#EDF0FD;} + .d2-4133689320 .stroke-B6{stroke:#F7F8FE;} + .d2-4133689320 .stroke-AA2{stroke:#4A6FF3;} + .d2-4133689320 .stroke-AA4{stroke:#EDF0FD;} + .d2-4133689320 .stroke-AA5{stroke:#F7F8FE;} + .d2-4133689320 .stroke-AB4{stroke:#EDF0FD;} + .d2-4133689320 .stroke-AB5{stroke:#F7F8FE;} + .d2-4133689320 .background-color-N1{background-color:#0A0F25;} + .d2-4133689320 .background-color-N2{background-color:#676C7E;} + .d2-4133689320 .background-color-N3{background-color:#9499AB;} + .d2-4133689320 .background-color-N4{background-color:#CFD2DD;} + .d2-4133689320 .background-color-N5{background-color:#DEE1EB;} + .d2-4133689320 .background-color-N6{background-color:#EEF1F8;} + .d2-4133689320 .background-color-N7{background-color:#FFFFFF;} + .d2-4133689320 .background-color-B1{background-color:#0D32B2;} + .d2-4133689320 .background-color-B2{background-color:#0D32B2;} + .d2-4133689320 .background-color-B3{background-color:#E3E9FD;} + .d2-4133689320 .background-color-B4{background-color:#E3E9FD;} + .d2-4133689320 .background-color-B5{background-color:#EDF0FD;} + .d2-4133689320 .background-color-B6{background-color:#F7F8FE;} + .d2-4133689320 .background-color-AA2{background-color:#4A6FF3;} + .d2-4133689320 .background-color-AA4{background-color:#EDF0FD;} + .d2-4133689320 .background-color-AA5{background-color:#F7F8FE;} + .d2-4133689320 .background-color-AB4{background-color:#EDF0FD;} + .d2-4133689320 .background-color-AB5{background-color:#F7F8FE;} + .d2-4133689320 .color-N1{color:#0A0F25;} + .d2-4133689320 .color-N2{color:#676C7E;} + .d2-4133689320 .color-N3{color:#9499AB;} + .d2-4133689320 .color-N4{color:#CFD2DD;} + .d2-4133689320 .color-N5{color:#DEE1EB;} + .d2-4133689320 .color-N6{color:#EEF1F8;} + .d2-4133689320 .color-N7{color:#FFFFFF;} + .d2-4133689320 .color-B1{color:#0D32B2;} + .d2-4133689320 .color-B2{color:#0D32B2;} + .d2-4133689320 .color-B3{color:#E3E9FD;} + .d2-4133689320 .color-B4{color:#E3E9FD;} + .d2-4133689320 .color-B5{color:#EDF0FD;} + .d2-4133689320 .color-B6{color:#F7F8FE;} + .d2-4133689320 .color-AA2{color:#4A6FF3;} + .d2-4133689320 .color-AA4{color:#EDF0FD;} + .d2-4133689320 .color-AA5{color:#F7F8FE;} + .d2-4133689320 .color-AB4{color:#EDF0FD;} + .d2-4133689320 .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}]]> @@ -130,7 +130,7 @@ -rectanglesquarepageparallelogramdocumentcylinderqueuepackagestepcalloutstored_datapersondiamondovalcirclehexagoncloud +rectanglesquarepageparallelogramdocumentcylinderqueuepackagestepcalloutstored_datapersondiamondovalcirclehexagoncloud @@ -146,7 +146,7 @@ - + \ No newline at end of file diff --git a/d2renderers/d2sketch/testdata/dots-multiple/sketch.exp.svg b/d2renderers/d2sketch/testdata/dots-multiple/sketch.exp.svg index 366fb02500..449edeecd0 100644 --- a/d2renderers/d2sketch/testdata/dots-multiple/sketch.exp.svg +++ b/d2renderers/d2sketch/testdata/dots-multiple/sketch.exp.svg @@ -1,9 +1,9 @@ - + .d2-1593685269 .fill-N1{fill:#0A0F25;} + .d2-1593685269 .fill-N2{fill:#676C7E;} + .d2-1593685269 .fill-N3{fill:#9499AB;} + .d2-1593685269 .fill-N4{fill:#CFD2DD;} + .d2-1593685269 .fill-N5{fill:#DEE1EB;} + .d2-1593685269 .fill-N6{fill:#EEF1F8;} + .d2-1593685269 .fill-N7{fill:#FFFFFF;} + .d2-1593685269 .fill-B1{fill:#0D32B2;} + .d2-1593685269 .fill-B2{fill:#0D32B2;} + .d2-1593685269 .fill-B3{fill:#E3E9FD;} + .d2-1593685269 .fill-B4{fill:#E3E9FD;} + .d2-1593685269 .fill-B5{fill:#EDF0FD;} + .d2-1593685269 .fill-B6{fill:#F7F8FE;} + .d2-1593685269 .fill-AA2{fill:#4A6FF3;} + .d2-1593685269 .fill-AA4{fill:#EDF0FD;} + .d2-1593685269 .fill-AA5{fill:#F7F8FE;} + .d2-1593685269 .fill-AB4{fill:#EDF0FD;} + .d2-1593685269 .fill-AB5{fill:#F7F8FE;} + .d2-1593685269 .stroke-N1{stroke:#0A0F25;} + .d2-1593685269 .stroke-N2{stroke:#676C7E;} + .d2-1593685269 .stroke-N3{stroke:#9499AB;} + .d2-1593685269 .stroke-N4{stroke:#CFD2DD;} + .d2-1593685269 .stroke-N5{stroke:#DEE1EB;} + .d2-1593685269 .stroke-N6{stroke:#EEF1F8;} + .d2-1593685269 .stroke-N7{stroke:#FFFFFF;} + .d2-1593685269 .stroke-B1{stroke:#0D32B2;} + .d2-1593685269 .stroke-B2{stroke:#0D32B2;} + .d2-1593685269 .stroke-B3{stroke:#E3E9FD;} + .d2-1593685269 .stroke-B4{stroke:#E3E9FD;} + .d2-1593685269 .stroke-B5{stroke:#EDF0FD;} + .d2-1593685269 .stroke-B6{stroke:#F7F8FE;} + .d2-1593685269 .stroke-AA2{stroke:#4A6FF3;} + .d2-1593685269 .stroke-AA4{stroke:#EDF0FD;} + .d2-1593685269 .stroke-AA5{stroke:#F7F8FE;} + .d2-1593685269 .stroke-AB4{stroke:#EDF0FD;} + .d2-1593685269 .stroke-AB5{stroke:#F7F8FE;} + .d2-1593685269 .background-color-N1{background-color:#0A0F25;} + .d2-1593685269 .background-color-N2{background-color:#676C7E;} + .d2-1593685269 .background-color-N3{background-color:#9499AB;} + .d2-1593685269 .background-color-N4{background-color:#CFD2DD;} + .d2-1593685269 .background-color-N5{background-color:#DEE1EB;} + .d2-1593685269 .background-color-N6{background-color:#EEF1F8;} + .d2-1593685269 .background-color-N7{background-color:#FFFFFF;} + .d2-1593685269 .background-color-B1{background-color:#0D32B2;} + .d2-1593685269 .background-color-B2{background-color:#0D32B2;} + .d2-1593685269 .background-color-B3{background-color:#E3E9FD;} + .d2-1593685269 .background-color-B4{background-color:#E3E9FD;} + .d2-1593685269 .background-color-B5{background-color:#EDF0FD;} + .d2-1593685269 .background-color-B6{background-color:#F7F8FE;} + .d2-1593685269 .background-color-AA2{background-color:#4A6FF3;} + .d2-1593685269 .background-color-AA4{background-color:#EDF0FD;} + .d2-1593685269 .background-color-AA5{background-color:#F7F8FE;} + .d2-1593685269 .background-color-AB4{background-color:#EDF0FD;} + .d2-1593685269 .background-color-AB5{background-color:#F7F8FE;} + .d2-1593685269 .color-N1{color:#0A0F25;} + .d2-1593685269 .color-N2{color:#676C7E;} + .d2-1593685269 .color-N3{color:#9499AB;} + .d2-1593685269 .color-N4{color:#CFD2DD;} + .d2-1593685269 .color-N5{color:#DEE1EB;} + .d2-1593685269 .color-N6{color:#EEF1F8;} + .d2-1593685269 .color-N7{color:#FFFFFF;} + .d2-1593685269 .color-B1{color:#0D32B2;} + .d2-1593685269 .color-B2{color:#0D32B2;} + .d2-1593685269 .color-B3{color:#E3E9FD;} + .d2-1593685269 .color-B4{color:#E3E9FD;} + .d2-1593685269 .color-B5{color:#EDF0FD;} + .d2-1593685269 .color-B6{color:#F7F8FE;} + .d2-1593685269 .color-AA2{color:#4A6FF3;} + .d2-1593685269 .color-AA4{color:#EDF0FD;} + .d2-1593685269 .color-AA5{color:#F7F8FE;} + .d2-1593685269 .color-AB4{color:#EDF0FD;} + .d2-1593685269 .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}]]> @@ -130,7 +130,7 @@ -rectanglesquarepageparallelogramdocumentcylinderqueuepackagestepcalloutstored_datapersondiamondovalcirclehexagoncloud +rectanglesquarepageparallelogramdocumentcylinderqueuepackagestepcalloutstored_datapersondiamondovalcirclehexagoncloud @@ -146,7 +146,7 @@ - + \ No newline at end of file diff --git a/d2renderers/d2svg/appendix/testdata/diagram_wider_than_tooltip/sketch.exp.svg b/d2renderers/d2svg/appendix/testdata/diagram_wider_than_tooltip/sketch.exp.svg index 6af36fa6e9..943fca3c2d 100644 --- a/d2renderers/d2svg/appendix/testdata/diagram_wider_than_tooltip/sketch.exp.svg +++ b/d2renderers/d2svg/appendix/testdata/diagram_wider_than_tooltip/sketch.exp.svg @@ -1,19 +1,19 @@ -customerissuerstoreLike starbucks or somethingacquirerI'm not sure what this isnetworkcustomer bankstore bankinitial transactionpayment processor behind the scenessimplified 1 banana please$10 dollarsthinking: wow, inflationchecks bank accountSavings: $11I can do that, here's my cardRun this cardProcess to card issuerProcess this payment$10 debit$10 creditAn error in judgement is about to occurLike starbucks or something1I'm not sure what this is2 - + .d2-2088558101 .fill-N1{fill:#0A0F25;} + .d2-2088558101 .fill-N2{fill:#676C7E;} + .d2-2088558101 .fill-N3{fill:#9499AB;} + .d2-2088558101 .fill-N4{fill:#CFD2DD;} + .d2-2088558101 .fill-N5{fill:#DEE1EB;} + .d2-2088558101 .fill-N6{fill:#EEF1F8;} + .d2-2088558101 .fill-N7{fill:#FFFFFF;} + .d2-2088558101 .fill-B1{fill:#0D32B2;} + .d2-2088558101 .fill-B2{fill:#0D32B2;} + .d2-2088558101 .fill-B3{fill:#E3E9FD;} + .d2-2088558101 .fill-B4{fill:#E3E9FD;} + .d2-2088558101 .fill-B5{fill:#EDF0FD;} + .d2-2088558101 .fill-B6{fill:#F7F8FE;} + .d2-2088558101 .fill-AA2{fill:#4A6FF3;} + .d2-2088558101 .fill-AA4{fill:#EDF0FD;} + .d2-2088558101 .fill-AA5{fill:#F7F8FE;} + .d2-2088558101 .fill-AB4{fill:#EDF0FD;} + .d2-2088558101 .fill-AB5{fill:#F7F8FE;} + .d2-2088558101 .stroke-N1{stroke:#0A0F25;} + .d2-2088558101 .stroke-N2{stroke:#676C7E;} + .d2-2088558101 .stroke-N3{stroke:#9499AB;} + .d2-2088558101 .stroke-N4{stroke:#CFD2DD;} + .d2-2088558101 .stroke-N5{stroke:#DEE1EB;} + .d2-2088558101 .stroke-N6{stroke:#EEF1F8;} + .d2-2088558101 .stroke-N7{stroke:#FFFFFF;} + .d2-2088558101 .stroke-B1{stroke:#0D32B2;} + .d2-2088558101 .stroke-B2{stroke:#0D32B2;} + .d2-2088558101 .stroke-B3{stroke:#E3E9FD;} + .d2-2088558101 .stroke-B4{stroke:#E3E9FD;} + .d2-2088558101 .stroke-B5{stroke:#EDF0FD;} + .d2-2088558101 .stroke-B6{stroke:#F7F8FE;} + .d2-2088558101 .stroke-AA2{stroke:#4A6FF3;} + .d2-2088558101 .stroke-AA4{stroke:#EDF0FD;} + .d2-2088558101 .stroke-AA5{stroke:#F7F8FE;} + .d2-2088558101 .stroke-AB4{stroke:#EDF0FD;} + .d2-2088558101 .stroke-AB5{stroke:#F7F8FE;} + .d2-2088558101 .background-color-N1{background-color:#0A0F25;} + .d2-2088558101 .background-color-N2{background-color:#676C7E;} + .d2-2088558101 .background-color-N3{background-color:#9499AB;} + .d2-2088558101 .background-color-N4{background-color:#CFD2DD;} + .d2-2088558101 .background-color-N5{background-color:#DEE1EB;} + .d2-2088558101 .background-color-N6{background-color:#EEF1F8;} + .d2-2088558101 .background-color-N7{background-color:#FFFFFF;} + .d2-2088558101 .background-color-B1{background-color:#0D32B2;} + .d2-2088558101 .background-color-B2{background-color:#0D32B2;} + .d2-2088558101 .background-color-B3{background-color:#E3E9FD;} + .d2-2088558101 .background-color-B4{background-color:#E3E9FD;} + .d2-2088558101 .background-color-B5{background-color:#EDF0FD;} + .d2-2088558101 .background-color-B6{background-color:#F7F8FE;} + .d2-2088558101 .background-color-AA2{background-color:#4A6FF3;} + .d2-2088558101 .background-color-AA4{background-color:#EDF0FD;} + .d2-2088558101 .background-color-AA5{background-color:#F7F8FE;} + .d2-2088558101 .background-color-AB4{background-color:#EDF0FD;} + .d2-2088558101 .background-color-AB5{background-color:#F7F8FE;} + .d2-2088558101 .color-N1{color:#0A0F25;} + .d2-2088558101 .color-N2{color:#676C7E;} + .d2-2088558101 .color-N3{color:#9499AB;} + .d2-2088558101 .color-N4{color:#CFD2DD;} + .d2-2088558101 .color-N5{color:#DEE1EB;} + .d2-2088558101 .color-N6{color:#EEF1F8;} + .d2-2088558101 .color-N7{color:#FFFFFF;} + .d2-2088558101 .color-B1{color:#0D32B2;} + .d2-2088558101 .color-B2{color:#0D32B2;} + .d2-2088558101 .color-B3{color:#E3E9FD;} + .d2-2088558101 .color-B4{color:#E3E9FD;} + .d2-2088558101 .color-B5{color:#EDF0FD;} + .d2-2088558101 .color-B6{color:#F7F8FE;} + .d2-2088558101 .color-AA2{color:#4A6FF3;} + .d2-2088558101 .color-AA4{color:#EDF0FD;} + .d2-2088558101 .color-AA5{color:#F7F8FE;} + .d2-2088558101 .color-AB4{color:#EDF0FD;} + .d2-2088558101 .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}]]>customerissuerstoreLike starbucks or somethingacquirerI'm not sure what this isnetworkcustomer bankstore bankinitial transactionpayment processor behind the scenessimplified 1 banana please$10 dollarsthinking: wow, inflationchecks bank accountSavings: $11I can do that, here's my cardRun this cardProcess to card issuerProcess this payment$10 debit$10 creditAn error in judgement is about to occurLike starbucks or something1I'm not sure what this is2 + - - - - + + + + - - + + - - - - - + + + + + -1Like starbucks or something +1Like starbucks or something 2I'm not sure what this is x1 - - -1x + .d2-3480929874 .fill-N1{fill:#0A0F25;} + .d2-3480929874 .fill-N2{fill:#676C7E;} + .d2-3480929874 .fill-N3{fill:#9499AB;} + .d2-3480929874 .fill-N4{fill:#CFD2DD;} + .d2-3480929874 .fill-N5{fill:#DEE1EB;} + .d2-3480929874 .fill-N6{fill:#EEF1F8;} + .d2-3480929874 .fill-N7{fill:#FFFFFF;} + .d2-3480929874 .fill-B1{fill:#0D32B2;} + .d2-3480929874 .fill-B2{fill:#0D32B2;} + .d2-3480929874 .fill-B3{fill:#E3E9FD;} + .d2-3480929874 .fill-B4{fill:#E3E9FD;} + .d2-3480929874 .fill-B5{fill:#EDF0FD;} + .d2-3480929874 .fill-B6{fill:#F7F8FE;} + .d2-3480929874 .fill-AA2{fill:#4A6FF3;} + .d2-3480929874 .fill-AA4{fill:#EDF0FD;} + .d2-3480929874 .fill-AA5{fill:#F7F8FE;} + .d2-3480929874 .fill-AB4{fill:#EDF0FD;} + .d2-3480929874 .fill-AB5{fill:#F7F8FE;} + .d2-3480929874 .stroke-N1{stroke:#0A0F25;} + .d2-3480929874 .stroke-N2{stroke:#676C7E;} + .d2-3480929874 .stroke-N3{stroke:#9499AB;} + .d2-3480929874 .stroke-N4{stroke:#CFD2DD;} + .d2-3480929874 .stroke-N5{stroke:#DEE1EB;} + .d2-3480929874 .stroke-N6{stroke:#EEF1F8;} + .d2-3480929874 .stroke-N7{stroke:#FFFFFF;} + .d2-3480929874 .stroke-B1{stroke:#0D32B2;} + .d2-3480929874 .stroke-B2{stroke:#0D32B2;} + .d2-3480929874 .stroke-B3{stroke:#E3E9FD;} + .d2-3480929874 .stroke-B4{stroke:#E3E9FD;} + .d2-3480929874 .stroke-B5{stroke:#EDF0FD;} + .d2-3480929874 .stroke-B6{stroke:#F7F8FE;} + .d2-3480929874 .stroke-AA2{stroke:#4A6FF3;} + .d2-3480929874 .stroke-AA4{stroke:#EDF0FD;} + .d2-3480929874 .stroke-AA5{stroke:#F7F8FE;} + .d2-3480929874 .stroke-AB4{stroke:#EDF0FD;} + .d2-3480929874 .stroke-AB5{stroke:#F7F8FE;} + .d2-3480929874 .background-color-N1{background-color:#0A0F25;} + .d2-3480929874 .background-color-N2{background-color:#676C7E;} + .d2-3480929874 .background-color-N3{background-color:#9499AB;} + .d2-3480929874 .background-color-N4{background-color:#CFD2DD;} + .d2-3480929874 .background-color-N5{background-color:#DEE1EB;} + .d2-3480929874 .background-color-N6{background-color:#EEF1F8;} + .d2-3480929874 .background-color-N7{background-color:#FFFFFF;} + .d2-3480929874 .background-color-B1{background-color:#0D32B2;} + .d2-3480929874 .background-color-B2{background-color:#0D32B2;} + .d2-3480929874 .background-color-B3{background-color:#E3E9FD;} + .d2-3480929874 .background-color-B4{background-color:#E3E9FD;} + .d2-3480929874 .background-color-B5{background-color:#EDF0FD;} + .d2-3480929874 .background-color-B6{background-color:#F7F8FE;} + .d2-3480929874 .background-color-AA2{background-color:#4A6FF3;} + .d2-3480929874 .background-color-AA4{background-color:#EDF0FD;} + .d2-3480929874 .background-color-AA5{background-color:#F7F8FE;} + .d2-3480929874 .background-color-AB4{background-color:#EDF0FD;} + .d2-3480929874 .background-color-AB5{background-color:#F7F8FE;} + .d2-3480929874 .color-N1{color:#0A0F25;} + .d2-3480929874 .color-N2{color:#676C7E;} + .d2-3480929874 .color-N3{color:#9499AB;} + .d2-3480929874 .color-N4{color:#CFD2DD;} + .d2-3480929874 .color-N5{color:#DEE1EB;} + .d2-3480929874 .color-N6{color:#EEF1F8;} + .d2-3480929874 .color-N7{color:#FFFFFF;} + .d2-3480929874 .color-B1{color:#0D32B2;} + .d2-3480929874 .color-B2{color:#0D32B2;} + .d2-3480929874 .color-B3{color:#E3E9FD;} + .d2-3480929874 .color-B4{color:#E3E9FD;} + .d2-3480929874 .color-B5{color:#EDF0FD;} + .d2-3480929874 .color-B6{color:#F7F8FE;} + .d2-3480929874 .color-AA2{color:#4A6FF3;} + .d2-3480929874 .color-AA4{color:#EDF0FD;} + .d2-3480929874 .color-AA5{color:#F7F8FE;} + .d2-3480929874 .color-AB4{color:#EDF0FD;} + .d2-3480929874 .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}]]>x1 + + +1x xyGee, I feel kind of LIGHT in the head now, knowing I can't make my satellite dish PAYMENTS! 1Gee, I feel kind of LIGHT in the head now, knowing I can't make my satellite dish PAYMENTS!23 + .d2-765639317 .fill-N1{fill:#0A0F25;} + .d2-765639317 .fill-N2{fill:#676C7E;} + .d2-765639317 .fill-N3{fill:#9499AB;} + .d2-765639317 .fill-N4{fill:#CFD2DD;} + .d2-765639317 .fill-N5{fill:#DEE1EB;} + .d2-765639317 .fill-N6{fill:#EEF1F8;} + .d2-765639317 .fill-N7{fill:#FFFFFF;} + .d2-765639317 .fill-B1{fill:#0D32B2;} + .d2-765639317 .fill-B2{fill:#0D32B2;} + .d2-765639317 .fill-B3{fill:#E3E9FD;} + .d2-765639317 .fill-B4{fill:#E3E9FD;} + .d2-765639317 .fill-B5{fill:#EDF0FD;} + .d2-765639317 .fill-B6{fill:#F7F8FE;} + .d2-765639317 .fill-AA2{fill:#4A6FF3;} + .d2-765639317 .fill-AA4{fill:#EDF0FD;} + .d2-765639317 .fill-AA5{fill:#F7F8FE;} + .d2-765639317 .fill-AB4{fill:#EDF0FD;} + .d2-765639317 .fill-AB5{fill:#F7F8FE;} + .d2-765639317 .stroke-N1{stroke:#0A0F25;} + .d2-765639317 .stroke-N2{stroke:#676C7E;} + .d2-765639317 .stroke-N3{stroke:#9499AB;} + .d2-765639317 .stroke-N4{stroke:#CFD2DD;} + .d2-765639317 .stroke-N5{stroke:#DEE1EB;} + .d2-765639317 .stroke-N6{stroke:#EEF1F8;} + .d2-765639317 .stroke-N7{stroke:#FFFFFF;} + .d2-765639317 .stroke-B1{stroke:#0D32B2;} + .d2-765639317 .stroke-B2{stroke:#0D32B2;} + .d2-765639317 .stroke-B3{stroke:#E3E9FD;} + .d2-765639317 .stroke-B4{stroke:#E3E9FD;} + .d2-765639317 .stroke-B5{stroke:#EDF0FD;} + .d2-765639317 .stroke-B6{stroke:#F7F8FE;} + .d2-765639317 .stroke-AA2{stroke:#4A6FF3;} + .d2-765639317 .stroke-AA4{stroke:#EDF0FD;} + .d2-765639317 .stroke-AA5{stroke:#F7F8FE;} + .d2-765639317 .stroke-AB4{stroke:#EDF0FD;} + .d2-765639317 .stroke-AB5{stroke:#F7F8FE;} + .d2-765639317 .background-color-N1{background-color:#0A0F25;} + .d2-765639317 .background-color-N2{background-color:#676C7E;} + .d2-765639317 .background-color-N3{background-color:#9499AB;} + .d2-765639317 .background-color-N4{background-color:#CFD2DD;} + .d2-765639317 .background-color-N5{background-color:#DEE1EB;} + .d2-765639317 .background-color-N6{background-color:#EEF1F8;} + .d2-765639317 .background-color-N7{background-color:#FFFFFF;} + .d2-765639317 .background-color-B1{background-color:#0D32B2;} + .d2-765639317 .background-color-B2{background-color:#0D32B2;} + .d2-765639317 .background-color-B3{background-color:#E3E9FD;} + .d2-765639317 .background-color-B4{background-color:#E3E9FD;} + .d2-765639317 .background-color-B5{background-color:#EDF0FD;} + .d2-765639317 .background-color-B6{background-color:#F7F8FE;} + .d2-765639317 .background-color-AA2{background-color:#4A6FF3;} + .d2-765639317 .background-color-AA4{background-color:#EDF0FD;} + .d2-765639317 .background-color-AA5{background-color:#F7F8FE;} + .d2-765639317 .background-color-AB4{background-color:#EDF0FD;} + .d2-765639317 .background-color-AB5{background-color:#F7F8FE;} + .d2-765639317 .color-N1{color:#0A0F25;} + .d2-765639317 .color-N2{color:#676C7E;} + .d2-765639317 .color-N3{color:#9499AB;} + .d2-765639317 .color-N4{color:#CFD2DD;} + .d2-765639317 .color-N5{color:#DEE1EB;} + .d2-765639317 .color-N6{color:#EEF1F8;} + .d2-765639317 .color-N7{color:#FFFFFF;} + .d2-765639317 .color-B1{color:#0D32B2;} + .d2-765639317 .color-B2{color:#0D32B2;} + .d2-765639317 .color-B3{color:#E3E9FD;} + .d2-765639317 .color-B4{color:#E3E9FD;} + .d2-765639317 .color-B5{color:#EDF0FD;} + .d2-765639317 .color-B6{color:#F7F8FE;} + .d2-765639317 .color-AA2{color:#4A6FF3;} + .d2-765639317 .color-AA4{color:#EDF0FD;} + .d2-765639317 .color-AA5{color:#F7F8FE;} + .d2-765639317 .color-AB4{color:#EDF0FD;} + .d2-765639317 .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}]]>xyGee, I feel kind of LIGHT in the head now, knowing I can't make my satellite dish PAYMENTS! 1Gee, I feel kind of LIGHT in the head now, knowing I can't make my satellite dish PAYMENTS!23 diff --git a/d2renderers/d2svg/appendix/testdata/links_dark/sketch.exp.svg b/d2renderers/d2svg/appendix/testdata/links_dark/sketch.exp.svg index a1aca8062f..f4233206da 100644 --- a/d2renderers/d2svg/appendix/testdata/links_dark/sketch.exp.svg +++ b/d2renderers/d2svg/appendix/testdata/links_dark/sketch.exp.svg @@ -1,12 +1,12 @@ -xyGee, I feel kind of LIGHT in the head now, knowing I can't make my satellite dish PAYMENTS! 1Gee, I feel kind of LIGHT in the head now, knowing I can't make my satellite dish PAYMENTS!23 + .d2-96452539 .fill-N1{fill:#CDD6F4;} + .d2-96452539 .fill-N2{fill:#BAC2DE;} + .d2-96452539 .fill-N3{fill:#A6ADC8;} + .d2-96452539 .fill-N4{fill:#585B70;} + .d2-96452539 .fill-N5{fill:#45475A;} + .d2-96452539 .fill-N6{fill:#313244;} + .d2-96452539 .fill-N7{fill:#1E1E2E;} + .d2-96452539 .fill-B1{fill:#CBA6f7;} + .d2-96452539 .fill-B2{fill:#CBA6f7;} + .d2-96452539 .fill-B3{fill:#6C7086;} + .d2-96452539 .fill-B4{fill:#585B70;} + .d2-96452539 .fill-B5{fill:#45475A;} + .d2-96452539 .fill-B6{fill:#313244;} + .d2-96452539 .fill-AA2{fill:#f38BA8;} + .d2-96452539 .fill-AA4{fill:#45475A;} + .d2-96452539 .fill-AA5{fill:#313244;} + .d2-96452539 .fill-AB4{fill:#45475A;} + .d2-96452539 .fill-AB5{fill:#313244;} + .d2-96452539 .stroke-N1{stroke:#CDD6F4;} + .d2-96452539 .stroke-N2{stroke:#BAC2DE;} + .d2-96452539 .stroke-N3{stroke:#A6ADC8;} + .d2-96452539 .stroke-N4{stroke:#585B70;} + .d2-96452539 .stroke-N5{stroke:#45475A;} + .d2-96452539 .stroke-N6{stroke:#313244;} + .d2-96452539 .stroke-N7{stroke:#1E1E2E;} + .d2-96452539 .stroke-B1{stroke:#CBA6f7;} + .d2-96452539 .stroke-B2{stroke:#CBA6f7;} + .d2-96452539 .stroke-B3{stroke:#6C7086;} + .d2-96452539 .stroke-B4{stroke:#585B70;} + .d2-96452539 .stroke-B5{stroke:#45475A;} + .d2-96452539 .stroke-B6{stroke:#313244;} + .d2-96452539 .stroke-AA2{stroke:#f38BA8;} + .d2-96452539 .stroke-AA4{stroke:#45475A;} + .d2-96452539 .stroke-AA5{stroke:#313244;} + .d2-96452539 .stroke-AB4{stroke:#45475A;} + .d2-96452539 .stroke-AB5{stroke:#313244;} + .d2-96452539 .background-color-N1{background-color:#CDD6F4;} + .d2-96452539 .background-color-N2{background-color:#BAC2DE;} + .d2-96452539 .background-color-N3{background-color:#A6ADC8;} + .d2-96452539 .background-color-N4{background-color:#585B70;} + .d2-96452539 .background-color-N5{background-color:#45475A;} + .d2-96452539 .background-color-N6{background-color:#313244;} + .d2-96452539 .background-color-N7{background-color:#1E1E2E;} + .d2-96452539 .background-color-B1{background-color:#CBA6f7;} + .d2-96452539 .background-color-B2{background-color:#CBA6f7;} + .d2-96452539 .background-color-B3{background-color:#6C7086;} + .d2-96452539 .background-color-B4{background-color:#585B70;} + .d2-96452539 .background-color-B5{background-color:#45475A;} + .d2-96452539 .background-color-B6{background-color:#313244;} + .d2-96452539 .background-color-AA2{background-color:#f38BA8;} + .d2-96452539 .background-color-AA4{background-color:#45475A;} + .d2-96452539 .background-color-AA5{background-color:#313244;} + .d2-96452539 .background-color-AB4{background-color:#45475A;} + .d2-96452539 .background-color-AB5{background-color:#313244;} + .d2-96452539 .color-N1{color:#CDD6F4;} + .d2-96452539 .color-N2{color:#BAC2DE;} + .d2-96452539 .color-N3{color:#A6ADC8;} + .d2-96452539 .color-N4{color:#585B70;} + .d2-96452539 .color-N5{color:#45475A;} + .d2-96452539 .color-N6{color:#313244;} + .d2-96452539 .color-N7{color:#1E1E2E;} + .d2-96452539 .color-B1{color:#CBA6f7;} + .d2-96452539 .color-B2{color:#CBA6f7;} + .d2-96452539 .color-B3{color:#6C7086;} + .d2-96452539 .color-B4{color:#585B70;} + .d2-96452539 .color-B5{color:#45475A;} + .d2-96452539 .color-B6{color:#313244;} + .d2-96452539 .color-AA2{color:#f38BA8;} + .d2-96452539 .color-AA4{color:#45475A;} + .d2-96452539 .color-AA5{color:#313244;} + .d2-96452539 .color-AB4{color:#45475A;} + .d2-96452539 .color-AB5{color:#313244;}.appendix text.text{fill:#CDD6F4}.md{--color-fg-default:#CDD6F4;--color-fg-muted:#BAC2DE;--color-fg-subtle:#A6ADC8;--color-canvas-default:#1E1E2E;--color-canvas-subtle:#313244;--color-border-default:#CBA6f7;--color-border-muted:#CBA6f7;--color-neutral-muted:#313244;--color-accent-fg:#CBA6f7;--color-accent-emphasis:#CBA6f7;--color-attention-subtle:#BAC2DE;--color-danger-fg:red;}.sketch-overlay-B1{fill:url(#streaks-normal);mix-blend-mode:color-burn}.sketch-overlay-B2{fill:url(#streaks-normal);mix-blend-mode:color-burn}.sketch-overlay-B3{fill:url(#streaks-dark);mix-blend-mode:overlay}.sketch-overlay-B4{fill:url(#streaks-dark);mix-blend-mode:overlay}.sketch-overlay-B5{fill:url(#streaks-darker);mix-blend-mode:lighten}.sketch-overlay-B6{fill:url(#streaks-darker);mix-blend-mode:lighten}.sketch-overlay-AA2{fill:url(#streaks-normal);mix-blend-mode:color-burn}.sketch-overlay-AA4{fill:url(#streaks-darker);mix-blend-mode:lighten}.sketch-overlay-AA5{fill:url(#streaks-darker);mix-blend-mode:lighten}.sketch-overlay-AB4{fill:url(#streaks-darker);mix-blend-mode:lighten}.sketch-overlay-AB5{fill:url(#streaks-darker);mix-blend-mode:lighten}.sketch-overlay-N1{fill:url(#streaks-normal);mix-blend-mode:color-burn}.sketch-overlay-N2{fill:url(#streaks-normal);mix-blend-mode:color-burn}.sketch-overlay-N3{fill:url(#streaks-normal);mix-blend-mode:color-burn}.sketch-overlay-N4{fill:url(#streaks-dark);mix-blend-mode:overlay}.sketch-overlay-N5{fill:url(#streaks-darker);mix-blend-mode:lighten}.sketch-overlay-N6{fill:url(#streaks-darker);mix-blend-mode:lighten}.sketch-overlay-N7{fill:url(#streaks-darker);mix-blend-mode:lighten}.light-code{display: none}.dark-code{display: block}]]>xyGee, I feel kind of LIGHT in the head now, knowing I can't make my satellite dish PAYMENTS! 1Gee, I feel kind of LIGHT in the head now, knowing I can't make my satellite dish PAYMENTS!23 diff --git a/d2renderers/d2svg/appendix/testdata/tooltip_fill/sketch.exp.svg b/d2renderers/d2svg/appendix/testdata/tooltip_fill/sketch.exp.svg index 23dd44ec2a..d3652c0f6a 100644 --- a/d2renderers/d2svg/appendix/testdata/tooltip_fill/sketch.exp.svg +++ b/d2renderers/d2svg/appendix/testdata/tooltip_fill/sketch.exp.svg @@ -1,12 +1,12 @@ -xTotal abstinence is easier than perfect moderationyGee, I feel kind of LIGHT in the head now, knowing I can't make my satellite dish PAYMENTS! Total abstinence is easier than perfect moderation1Gee, I feel kind of LIGHT in the head now, knowing I can't make my satellite dish PAYMENTS!2 - - - -1Total abstinence is easier than perfect moderation + .d2-4289273515 .fill-N1{fill:#0A0F25;} + .d2-4289273515 .fill-N2{fill:#676C7E;} + .d2-4289273515 .fill-N3{fill:#9499AB;} + .d2-4289273515 .fill-N4{fill:#CFD2DD;} + .d2-4289273515 .fill-N5{fill:#DEE1EB;} + .d2-4289273515 .fill-N6{fill:#EEF1F8;} + .d2-4289273515 .fill-N7{fill:#FFFFFF;} + .d2-4289273515 .fill-B1{fill:#0D32B2;} + .d2-4289273515 .fill-B2{fill:#0D32B2;} + .d2-4289273515 .fill-B3{fill:#E3E9FD;} + .d2-4289273515 .fill-B4{fill:#E3E9FD;} + .d2-4289273515 .fill-B5{fill:#EDF0FD;} + .d2-4289273515 .fill-B6{fill:#F7F8FE;} + .d2-4289273515 .fill-AA2{fill:#4A6FF3;} + .d2-4289273515 .fill-AA4{fill:#EDF0FD;} + .d2-4289273515 .fill-AA5{fill:#F7F8FE;} + .d2-4289273515 .fill-AB4{fill:#EDF0FD;} + .d2-4289273515 .fill-AB5{fill:#F7F8FE;} + .d2-4289273515 .stroke-N1{stroke:#0A0F25;} + .d2-4289273515 .stroke-N2{stroke:#676C7E;} + .d2-4289273515 .stroke-N3{stroke:#9499AB;} + .d2-4289273515 .stroke-N4{stroke:#CFD2DD;} + .d2-4289273515 .stroke-N5{stroke:#DEE1EB;} + .d2-4289273515 .stroke-N6{stroke:#EEF1F8;} + .d2-4289273515 .stroke-N7{stroke:#FFFFFF;} + .d2-4289273515 .stroke-B1{stroke:#0D32B2;} + .d2-4289273515 .stroke-B2{stroke:#0D32B2;} + .d2-4289273515 .stroke-B3{stroke:#E3E9FD;} + .d2-4289273515 .stroke-B4{stroke:#E3E9FD;} + .d2-4289273515 .stroke-B5{stroke:#EDF0FD;} + .d2-4289273515 .stroke-B6{stroke:#F7F8FE;} + .d2-4289273515 .stroke-AA2{stroke:#4A6FF3;} + .d2-4289273515 .stroke-AA4{stroke:#EDF0FD;} + .d2-4289273515 .stroke-AA5{stroke:#F7F8FE;} + .d2-4289273515 .stroke-AB4{stroke:#EDF0FD;} + .d2-4289273515 .stroke-AB5{stroke:#F7F8FE;} + .d2-4289273515 .background-color-N1{background-color:#0A0F25;} + .d2-4289273515 .background-color-N2{background-color:#676C7E;} + .d2-4289273515 .background-color-N3{background-color:#9499AB;} + .d2-4289273515 .background-color-N4{background-color:#CFD2DD;} + .d2-4289273515 .background-color-N5{background-color:#DEE1EB;} + .d2-4289273515 .background-color-N6{background-color:#EEF1F8;} + .d2-4289273515 .background-color-N7{background-color:#FFFFFF;} + .d2-4289273515 .background-color-B1{background-color:#0D32B2;} + .d2-4289273515 .background-color-B2{background-color:#0D32B2;} + .d2-4289273515 .background-color-B3{background-color:#E3E9FD;} + .d2-4289273515 .background-color-B4{background-color:#E3E9FD;} + .d2-4289273515 .background-color-B5{background-color:#EDF0FD;} + .d2-4289273515 .background-color-B6{background-color:#F7F8FE;} + .d2-4289273515 .background-color-AA2{background-color:#4A6FF3;} + .d2-4289273515 .background-color-AA4{background-color:#EDF0FD;} + .d2-4289273515 .background-color-AA5{background-color:#F7F8FE;} + .d2-4289273515 .background-color-AB4{background-color:#EDF0FD;} + .d2-4289273515 .background-color-AB5{background-color:#F7F8FE;} + .d2-4289273515 .color-N1{color:#0A0F25;} + .d2-4289273515 .color-N2{color:#676C7E;} + .d2-4289273515 .color-N3{color:#9499AB;} + .d2-4289273515 .color-N4{color:#CFD2DD;} + .d2-4289273515 .color-N5{color:#DEE1EB;} + .d2-4289273515 .color-N6{color:#EEF1F8;} + .d2-4289273515 .color-N7{color:#FFFFFF;} + .d2-4289273515 .color-B1{color:#0D32B2;} + .d2-4289273515 .color-B2{color:#0D32B2;} + .d2-4289273515 .color-B3{color:#E3E9FD;} + .d2-4289273515 .color-B4{color:#E3E9FD;} + .d2-4289273515 .color-B5{color:#EDF0FD;} + .d2-4289273515 .color-B6{color:#F7F8FE;} + .d2-4289273515 .color-AA2{color:#4A6FF3;} + .d2-4289273515 .color-AA4{color:#EDF0FD;} + .d2-4289273515 .color-AA5{color:#F7F8FE;} + .d2-4289273515 .color-AB4{color:#EDF0FD;} + .d2-4289273515 .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}]]>xTotal abstinence is easier than perfect moderationyGee, I feel kind of LIGHT in the head now, knowing I can't make my satellite dish PAYMENTS! Total abstinence is easier than perfect moderation1Gee, I feel kind of LIGHT in the head now, knowing I can't make my satellite dish PAYMENTS!2 + + + +1Total abstinence is easier than perfect moderation 2Gee, I feel kind of LIGHT in the head now,knowing I can't make my satellite dish PAYMENTS! xTotal abstinence is easier than perfect moderationyGee, I feel kind of LIGHT in the head now, knowing I can't make my satellite dish PAYMENTS! Total abstinence is easier than perfect moderation1Gee, I feel kind of LIGHT in the head now, knowing I can't make my satellite dish PAYMENTS!2 - - - -1Total abstinence is easier than perfect moderation + .d2-1133925052 .fill-N1{fill:#0A0F25;} + .d2-1133925052 .fill-N2{fill:#676C7E;} + .d2-1133925052 .fill-N3{fill:#9499AB;} + .d2-1133925052 .fill-N4{fill:#CFD2DD;} + .d2-1133925052 .fill-N5{fill:#DEE1EB;} + .d2-1133925052 .fill-N6{fill:#EEF1F8;} + .d2-1133925052 .fill-N7{fill:#FFFFFF;} + .d2-1133925052 .fill-B1{fill:#0D32B2;} + .d2-1133925052 .fill-B2{fill:#0D32B2;} + .d2-1133925052 .fill-B3{fill:#E3E9FD;} + .d2-1133925052 .fill-B4{fill:#E3E9FD;} + .d2-1133925052 .fill-B5{fill:#EDF0FD;} + .d2-1133925052 .fill-B6{fill:#F7F8FE;} + .d2-1133925052 .fill-AA2{fill:#4A6FF3;} + .d2-1133925052 .fill-AA4{fill:#EDF0FD;} + .d2-1133925052 .fill-AA5{fill:#F7F8FE;} + .d2-1133925052 .fill-AB4{fill:#EDF0FD;} + .d2-1133925052 .fill-AB5{fill:#F7F8FE;} + .d2-1133925052 .stroke-N1{stroke:#0A0F25;} + .d2-1133925052 .stroke-N2{stroke:#676C7E;} + .d2-1133925052 .stroke-N3{stroke:#9499AB;} + .d2-1133925052 .stroke-N4{stroke:#CFD2DD;} + .d2-1133925052 .stroke-N5{stroke:#DEE1EB;} + .d2-1133925052 .stroke-N6{stroke:#EEF1F8;} + .d2-1133925052 .stroke-N7{stroke:#FFFFFF;} + .d2-1133925052 .stroke-B1{stroke:#0D32B2;} + .d2-1133925052 .stroke-B2{stroke:#0D32B2;} + .d2-1133925052 .stroke-B3{stroke:#E3E9FD;} + .d2-1133925052 .stroke-B4{stroke:#E3E9FD;} + .d2-1133925052 .stroke-B5{stroke:#EDF0FD;} + .d2-1133925052 .stroke-B6{stroke:#F7F8FE;} + .d2-1133925052 .stroke-AA2{stroke:#4A6FF3;} + .d2-1133925052 .stroke-AA4{stroke:#EDF0FD;} + .d2-1133925052 .stroke-AA5{stroke:#F7F8FE;} + .d2-1133925052 .stroke-AB4{stroke:#EDF0FD;} + .d2-1133925052 .stroke-AB5{stroke:#F7F8FE;} + .d2-1133925052 .background-color-N1{background-color:#0A0F25;} + .d2-1133925052 .background-color-N2{background-color:#676C7E;} + .d2-1133925052 .background-color-N3{background-color:#9499AB;} + .d2-1133925052 .background-color-N4{background-color:#CFD2DD;} + .d2-1133925052 .background-color-N5{background-color:#DEE1EB;} + .d2-1133925052 .background-color-N6{background-color:#EEF1F8;} + .d2-1133925052 .background-color-N7{background-color:#FFFFFF;} + .d2-1133925052 .background-color-B1{background-color:#0D32B2;} + .d2-1133925052 .background-color-B2{background-color:#0D32B2;} + .d2-1133925052 .background-color-B3{background-color:#E3E9FD;} + .d2-1133925052 .background-color-B4{background-color:#E3E9FD;} + .d2-1133925052 .background-color-B5{background-color:#EDF0FD;} + .d2-1133925052 .background-color-B6{background-color:#F7F8FE;} + .d2-1133925052 .background-color-AA2{background-color:#4A6FF3;} + .d2-1133925052 .background-color-AA4{background-color:#EDF0FD;} + .d2-1133925052 .background-color-AA5{background-color:#F7F8FE;} + .d2-1133925052 .background-color-AB4{background-color:#EDF0FD;} + .d2-1133925052 .background-color-AB5{background-color:#F7F8FE;} + .d2-1133925052 .color-N1{color:#0A0F25;} + .d2-1133925052 .color-N2{color:#676C7E;} + .d2-1133925052 .color-N3{color:#9499AB;} + .d2-1133925052 .color-N4{color:#CFD2DD;} + .d2-1133925052 .color-N5{color:#DEE1EB;} + .d2-1133925052 .color-N6{color:#EEF1F8;} + .d2-1133925052 .color-N7{color:#FFFFFF;} + .d2-1133925052 .color-B1{color:#0D32B2;} + .d2-1133925052 .color-B2{color:#0D32B2;} + .d2-1133925052 .color-B3{color:#E3E9FD;} + .d2-1133925052 .color-B4{color:#E3E9FD;} + .d2-1133925052 .color-B5{color:#EDF0FD;} + .d2-1133925052 .color-B6{color:#F7F8FE;} + .d2-1133925052 .color-AA2{color:#4A6FF3;} + .d2-1133925052 .color-AA4{color:#EDF0FD;} + .d2-1133925052 .color-AA5{color:#F7F8FE;} + .d2-1133925052 .color-AB4{color:#EDF0FD;} + .d2-1133925052 .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}]]>xTotal abstinence is easier than perfect moderationyGee, I feel kind of LIGHT in the head now, knowing I can't make my satellite dish PAYMENTS! Total abstinence is easier than perfect moderation1Gee, I feel kind of LIGHT in the head now, knowing I can't make my satellite dish PAYMENTS!2 + + + +1Total abstinence is easier than perfect moderation 2Gee, I feel kind of LIGHT in the head now,knowing I can't make my satellite dish PAYMENTS! rectanglesquarepageparallelogramdocumentcylinderqueuepackagestepcalloutstored_datapersondiamondovalcirclehexagoncloud + .d2-388925799 .fill-N1{fill:#CDD6F4;} + .d2-388925799 .fill-N2{fill:#BAC2DE;} + .d2-388925799 .fill-N3{fill:#A6ADC8;} + .d2-388925799 .fill-N4{fill:#585B70;} + .d2-388925799 .fill-N5{fill:#45475A;} + .d2-388925799 .fill-N6{fill:#313244;} + .d2-388925799 .fill-N7{fill:#1E1E2E;} + .d2-388925799 .fill-B1{fill:#CBA6f7;} + .d2-388925799 .fill-B2{fill:#CBA6f7;} + .d2-388925799 .fill-B3{fill:#6C7086;} + .d2-388925799 .fill-B4{fill:#585B70;} + .d2-388925799 .fill-B5{fill:#45475A;} + .d2-388925799 .fill-B6{fill:#313244;} + .d2-388925799 .fill-AA2{fill:#f38BA8;} + .d2-388925799 .fill-AA4{fill:#45475A;} + .d2-388925799 .fill-AA5{fill:#313244;} + .d2-388925799 .fill-AB4{fill:#45475A;} + .d2-388925799 .fill-AB5{fill:#313244;} + .d2-388925799 .stroke-N1{stroke:#CDD6F4;} + .d2-388925799 .stroke-N2{stroke:#BAC2DE;} + .d2-388925799 .stroke-N3{stroke:#A6ADC8;} + .d2-388925799 .stroke-N4{stroke:#585B70;} + .d2-388925799 .stroke-N5{stroke:#45475A;} + .d2-388925799 .stroke-N6{stroke:#313244;} + .d2-388925799 .stroke-N7{stroke:#1E1E2E;} + .d2-388925799 .stroke-B1{stroke:#CBA6f7;} + .d2-388925799 .stroke-B2{stroke:#CBA6f7;} + .d2-388925799 .stroke-B3{stroke:#6C7086;} + .d2-388925799 .stroke-B4{stroke:#585B70;} + .d2-388925799 .stroke-B5{stroke:#45475A;} + .d2-388925799 .stroke-B6{stroke:#313244;} + .d2-388925799 .stroke-AA2{stroke:#f38BA8;} + .d2-388925799 .stroke-AA4{stroke:#45475A;} + .d2-388925799 .stroke-AA5{stroke:#313244;} + .d2-388925799 .stroke-AB4{stroke:#45475A;} + .d2-388925799 .stroke-AB5{stroke:#313244;} + .d2-388925799 .background-color-N1{background-color:#CDD6F4;} + .d2-388925799 .background-color-N2{background-color:#BAC2DE;} + .d2-388925799 .background-color-N3{background-color:#A6ADC8;} + .d2-388925799 .background-color-N4{background-color:#585B70;} + .d2-388925799 .background-color-N5{background-color:#45475A;} + .d2-388925799 .background-color-N6{background-color:#313244;} + .d2-388925799 .background-color-N7{background-color:#1E1E2E;} + .d2-388925799 .background-color-B1{background-color:#CBA6f7;} + .d2-388925799 .background-color-B2{background-color:#CBA6f7;} + .d2-388925799 .background-color-B3{background-color:#6C7086;} + .d2-388925799 .background-color-B4{background-color:#585B70;} + .d2-388925799 .background-color-B5{background-color:#45475A;} + .d2-388925799 .background-color-B6{background-color:#313244;} + .d2-388925799 .background-color-AA2{background-color:#f38BA8;} + .d2-388925799 .background-color-AA4{background-color:#45475A;} + .d2-388925799 .background-color-AA5{background-color:#313244;} + .d2-388925799 .background-color-AB4{background-color:#45475A;} + .d2-388925799 .background-color-AB5{background-color:#313244;} + .d2-388925799 .color-N1{color:#CDD6F4;} + .d2-388925799 .color-N2{color:#BAC2DE;} + .d2-388925799 .color-N3{color:#A6ADC8;} + .d2-388925799 .color-N4{color:#585B70;} + .d2-388925799 .color-N5{color:#45475A;} + .d2-388925799 .color-N6{color:#313244;} + .d2-388925799 .color-N7{color:#1E1E2E;} + .d2-388925799 .color-B1{color:#CBA6f7;} + .d2-388925799 .color-B2{color:#CBA6f7;} + .d2-388925799 .color-B3{color:#6C7086;} + .d2-388925799 .color-B4{color:#585B70;} + .d2-388925799 .color-B5{color:#45475A;} + .d2-388925799 .color-B6{color:#313244;} + .d2-388925799 .color-AA2{color:#f38BA8;} + .d2-388925799 .color-AA4{color:#45475A;} + .d2-388925799 .color-AA5{color:#313244;} + .d2-388925799 .color-AB4{color:#45475A;} + .d2-388925799 .color-AB5{color:#313244;}.appendix text.text{fill:#CDD6F4}.md{--color-fg-default:#CDD6F4;--color-fg-muted:#BAC2DE;--color-fg-subtle:#A6ADC8;--color-canvas-default:#1E1E2E;--color-canvas-subtle:#313244;--color-border-default:#CBA6f7;--color-border-muted:#CBA6f7;--color-neutral-muted:#313244;--color-accent-fg:#CBA6f7;--color-accent-emphasis:#CBA6f7;--color-attention-subtle:#BAC2DE;--color-danger-fg:red;}.sketch-overlay-B1{fill:url(#streaks-normal);mix-blend-mode:color-burn}.sketch-overlay-B2{fill:url(#streaks-normal);mix-blend-mode:color-burn}.sketch-overlay-B3{fill:url(#streaks-dark);mix-blend-mode:overlay}.sketch-overlay-B4{fill:url(#streaks-dark);mix-blend-mode:overlay}.sketch-overlay-B5{fill:url(#streaks-darker);mix-blend-mode:lighten}.sketch-overlay-B6{fill:url(#streaks-darker);mix-blend-mode:lighten}.sketch-overlay-AA2{fill:url(#streaks-normal);mix-blend-mode:color-burn}.sketch-overlay-AA4{fill:url(#streaks-darker);mix-blend-mode:lighten}.sketch-overlay-AA5{fill:url(#streaks-darker);mix-blend-mode:lighten}.sketch-overlay-AB4{fill:url(#streaks-darker);mix-blend-mode:lighten}.sketch-overlay-AB5{fill:url(#streaks-darker);mix-blend-mode:lighten}.sketch-overlay-N1{fill:url(#streaks-normal);mix-blend-mode:color-burn}.sketch-overlay-N2{fill:url(#streaks-normal);mix-blend-mode:color-burn}.sketch-overlay-N3{fill:url(#streaks-normal);mix-blend-mode:color-burn}.sketch-overlay-N4{fill:url(#streaks-dark);mix-blend-mode:overlay}.sketch-overlay-N5{fill:url(#streaks-darker);mix-blend-mode:lighten}.sketch-overlay-N6{fill:url(#streaks-darker);mix-blend-mode:lighten}.sketch-overlay-N7{fill:url(#streaks-darker);mix-blend-mode:lighten}.light-code{display: none}.dark-code{display: block}]]>rectanglesquarepageparallelogramdocumentcylinderqueuepackagestepcalloutstored_datapersondiamondovalcirclehexagoncloud @@ -105,7 +105,7 @@ - + \ No newline at end of file diff --git a/e2etests-cli/testdata/TestCLI_E2E/board_import/hello-world-x.exp.svg b/e2etests-cli/testdata/TestCLI_E2E/board_import/hello-world-x.exp.svg index e6196bc2cd..defeb69114 100644 --- a/e2etests-cli/testdata/TestCLI_E2E/board_import/hello-world-x.exp.svg +++ b/e2etests-cli/testdata/TestCLI_E2E/board_import/hello-world-x.exp.svg @@ -1,12 +1,12 @@ -y + .d2-1163758495 .fill-N1{fill:#0A0F25;} + .d2-1163758495 .fill-N2{fill:#676C7E;} + .d2-1163758495 .fill-N3{fill:#9499AB;} + .d2-1163758495 .fill-N4{fill:#CFD2DD;} + .d2-1163758495 .fill-N5{fill:#DEE1EB;} + .d2-1163758495 .fill-N6{fill:#EEF1F8;} + .d2-1163758495 .fill-N7{fill:#FFFFFF;} + .d2-1163758495 .fill-B1{fill:#0D32B2;} + .d2-1163758495 .fill-B2{fill:#0D32B2;} + .d2-1163758495 .fill-B3{fill:#E3E9FD;} + .d2-1163758495 .fill-B4{fill:#E3E9FD;} + .d2-1163758495 .fill-B5{fill:#EDF0FD;} + .d2-1163758495 .fill-B6{fill:#F7F8FE;} + .d2-1163758495 .fill-AA2{fill:#4A6FF3;} + .d2-1163758495 .fill-AA4{fill:#EDF0FD;} + .d2-1163758495 .fill-AA5{fill:#F7F8FE;} + .d2-1163758495 .fill-AB4{fill:#EDF0FD;} + .d2-1163758495 .fill-AB5{fill:#F7F8FE;} + .d2-1163758495 .stroke-N1{stroke:#0A0F25;} + .d2-1163758495 .stroke-N2{stroke:#676C7E;} + .d2-1163758495 .stroke-N3{stroke:#9499AB;} + .d2-1163758495 .stroke-N4{stroke:#CFD2DD;} + .d2-1163758495 .stroke-N5{stroke:#DEE1EB;} + .d2-1163758495 .stroke-N6{stroke:#EEF1F8;} + .d2-1163758495 .stroke-N7{stroke:#FFFFFF;} + .d2-1163758495 .stroke-B1{stroke:#0D32B2;} + .d2-1163758495 .stroke-B2{stroke:#0D32B2;} + .d2-1163758495 .stroke-B3{stroke:#E3E9FD;} + .d2-1163758495 .stroke-B4{stroke:#E3E9FD;} + .d2-1163758495 .stroke-B5{stroke:#EDF0FD;} + .d2-1163758495 .stroke-B6{stroke:#F7F8FE;} + .d2-1163758495 .stroke-AA2{stroke:#4A6FF3;} + .d2-1163758495 .stroke-AA4{stroke:#EDF0FD;} + .d2-1163758495 .stroke-AA5{stroke:#F7F8FE;} + .d2-1163758495 .stroke-AB4{stroke:#EDF0FD;} + .d2-1163758495 .stroke-AB5{stroke:#F7F8FE;} + .d2-1163758495 .background-color-N1{background-color:#0A0F25;} + .d2-1163758495 .background-color-N2{background-color:#676C7E;} + .d2-1163758495 .background-color-N3{background-color:#9499AB;} + .d2-1163758495 .background-color-N4{background-color:#CFD2DD;} + .d2-1163758495 .background-color-N5{background-color:#DEE1EB;} + .d2-1163758495 .background-color-N6{background-color:#EEF1F8;} + .d2-1163758495 .background-color-N7{background-color:#FFFFFF;} + .d2-1163758495 .background-color-B1{background-color:#0D32B2;} + .d2-1163758495 .background-color-B2{background-color:#0D32B2;} + .d2-1163758495 .background-color-B3{background-color:#E3E9FD;} + .d2-1163758495 .background-color-B4{background-color:#E3E9FD;} + .d2-1163758495 .background-color-B5{background-color:#EDF0FD;} + .d2-1163758495 .background-color-B6{background-color:#F7F8FE;} + .d2-1163758495 .background-color-AA2{background-color:#4A6FF3;} + .d2-1163758495 .background-color-AA4{background-color:#EDF0FD;} + .d2-1163758495 .background-color-AA5{background-color:#F7F8FE;} + .d2-1163758495 .background-color-AB4{background-color:#EDF0FD;} + .d2-1163758495 .background-color-AB5{background-color:#F7F8FE;} + .d2-1163758495 .color-N1{color:#0A0F25;} + .d2-1163758495 .color-N2{color:#676C7E;} + .d2-1163758495 .color-N3{color:#9499AB;} + .d2-1163758495 .color-N4{color:#CFD2DD;} + .d2-1163758495 .color-N5{color:#DEE1EB;} + .d2-1163758495 .color-N6{color:#EEF1F8;} + .d2-1163758495 .color-N7{color:#FFFFFF;} + .d2-1163758495 .color-B1{color:#0D32B2;} + .d2-1163758495 .color-B2{color:#0D32B2;} + .d2-1163758495 .color-B3{color:#E3E9FD;} + .d2-1163758495 .color-B4{color:#E3E9FD;} + .d2-1163758495 .color-B5{color:#EDF0FD;} + .d2-1163758495 .color-B6{color:#F7F8FE;} + .d2-1163758495 .color-AA2{color:#4A6FF3;} + .d2-1163758495 .color-AA4{color:#EDF0FD;} + .d2-1163758495 .color-AA5{color:#F7F8FE;} + .d2-1163758495 .color-AB4{color:#EDF0FD;} + .d2-1163758495 .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}]]>y @@ -104,7 +104,7 @@ - - - + + + diff --git a/e2etests-cli/testdata/TestCLI_E2E/board_import/hello-world.exp.svg b/e2etests-cli/testdata/TestCLI_E2E/board_import/hello-world.exp.svg index 37a1ff5f47..33e7abb21d 100644 --- a/e2etests-cli/testdata/TestCLI_E2E/board_import/hello-world.exp.svg +++ b/e2etests-cli/testdata/TestCLI_E2E/board_import/hello-world.exp.svg @@ -1,12 +1,12 @@ -x + .d2-2759850755 .fill-N1{fill:#0A0F25;} + .d2-2759850755 .fill-N2{fill:#676C7E;} + .d2-2759850755 .fill-N3{fill:#9499AB;} + .d2-2759850755 .fill-N4{fill:#CFD2DD;} + .d2-2759850755 .fill-N5{fill:#DEE1EB;} + .d2-2759850755 .fill-N6{fill:#EEF1F8;} + .d2-2759850755 .fill-N7{fill:#FFFFFF;} + .d2-2759850755 .fill-B1{fill:#0D32B2;} + .d2-2759850755 .fill-B2{fill:#0D32B2;} + .d2-2759850755 .fill-B3{fill:#E3E9FD;} + .d2-2759850755 .fill-B4{fill:#E3E9FD;} + .d2-2759850755 .fill-B5{fill:#EDF0FD;} + .d2-2759850755 .fill-B6{fill:#F7F8FE;} + .d2-2759850755 .fill-AA2{fill:#4A6FF3;} + .d2-2759850755 .fill-AA4{fill:#EDF0FD;} + .d2-2759850755 .fill-AA5{fill:#F7F8FE;} + .d2-2759850755 .fill-AB4{fill:#EDF0FD;} + .d2-2759850755 .fill-AB5{fill:#F7F8FE;} + .d2-2759850755 .stroke-N1{stroke:#0A0F25;} + .d2-2759850755 .stroke-N2{stroke:#676C7E;} + .d2-2759850755 .stroke-N3{stroke:#9499AB;} + .d2-2759850755 .stroke-N4{stroke:#CFD2DD;} + .d2-2759850755 .stroke-N5{stroke:#DEE1EB;} + .d2-2759850755 .stroke-N6{stroke:#EEF1F8;} + .d2-2759850755 .stroke-N7{stroke:#FFFFFF;} + .d2-2759850755 .stroke-B1{stroke:#0D32B2;} + .d2-2759850755 .stroke-B2{stroke:#0D32B2;} + .d2-2759850755 .stroke-B3{stroke:#E3E9FD;} + .d2-2759850755 .stroke-B4{stroke:#E3E9FD;} + .d2-2759850755 .stroke-B5{stroke:#EDF0FD;} + .d2-2759850755 .stroke-B6{stroke:#F7F8FE;} + .d2-2759850755 .stroke-AA2{stroke:#4A6FF3;} + .d2-2759850755 .stroke-AA4{stroke:#EDF0FD;} + .d2-2759850755 .stroke-AA5{stroke:#F7F8FE;} + .d2-2759850755 .stroke-AB4{stroke:#EDF0FD;} + .d2-2759850755 .stroke-AB5{stroke:#F7F8FE;} + .d2-2759850755 .background-color-N1{background-color:#0A0F25;} + .d2-2759850755 .background-color-N2{background-color:#676C7E;} + .d2-2759850755 .background-color-N3{background-color:#9499AB;} + .d2-2759850755 .background-color-N4{background-color:#CFD2DD;} + .d2-2759850755 .background-color-N5{background-color:#DEE1EB;} + .d2-2759850755 .background-color-N6{background-color:#EEF1F8;} + .d2-2759850755 .background-color-N7{background-color:#FFFFFF;} + .d2-2759850755 .background-color-B1{background-color:#0D32B2;} + .d2-2759850755 .background-color-B2{background-color:#0D32B2;} + .d2-2759850755 .background-color-B3{background-color:#E3E9FD;} + .d2-2759850755 .background-color-B4{background-color:#E3E9FD;} + .d2-2759850755 .background-color-B5{background-color:#EDF0FD;} + .d2-2759850755 .background-color-B6{background-color:#F7F8FE;} + .d2-2759850755 .background-color-AA2{background-color:#4A6FF3;} + .d2-2759850755 .background-color-AA4{background-color:#EDF0FD;} + .d2-2759850755 .background-color-AA5{background-color:#F7F8FE;} + .d2-2759850755 .background-color-AB4{background-color:#EDF0FD;} + .d2-2759850755 .background-color-AB5{background-color:#F7F8FE;} + .d2-2759850755 .color-N1{color:#0A0F25;} + .d2-2759850755 .color-N2{color:#676C7E;} + .d2-2759850755 .color-N3{color:#9499AB;} + .d2-2759850755 .color-N4{color:#CFD2DD;} + .d2-2759850755 .color-N5{color:#DEE1EB;} + .d2-2759850755 .color-N6{color:#EEF1F8;} + .d2-2759850755 .color-N7{color:#FFFFFF;} + .d2-2759850755 .color-B1{color:#0D32B2;} + .d2-2759850755 .color-B2{color:#0D32B2;} + .d2-2759850755 .color-B3{color:#E3E9FD;} + .d2-2759850755 .color-B4{color:#E3E9FD;} + .d2-2759850755 .color-B5{color:#EDF0FD;} + .d2-2759850755 .color-B6{color:#F7F8FE;} + .d2-2759850755 .color-AA2{color:#4A6FF3;} + .d2-2759850755 .color-AA4{color:#EDF0FD;} + .d2-2759850755 .color-AA5{color:#F7F8FE;} + .d2-2759850755 .color-AB4{color:#EDF0FD;} + .d2-2759850755 .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}]]>x @@ -104,7 +104,7 @@ - - - + + + diff --git a/e2etests-cli/testdata/TestCLI_E2E/import.exp.svg b/e2etests-cli/testdata/TestCLI_E2E/import.exp.svg index 032f0def4e..43783634ab 100644 --- a/e2etests-cli/testdata/TestCLI_E2E/import.exp.svg +++ b/e2etests-cli/testdata/TestCLI_E2E/import.exp.svg @@ -1,9 +1,9 @@ -xy - - - + .d2-2618525867 .fill-N1{fill:#0A0F25;} + .d2-2618525867 .fill-N2{fill:#676C7E;} + .d2-2618525867 .fill-N3{fill:#9499AB;} + .d2-2618525867 .fill-N4{fill:#CFD2DD;} + .d2-2618525867 .fill-N5{fill:#DEE1EB;} + .d2-2618525867 .fill-N6{fill:#EEF1F8;} + .d2-2618525867 .fill-N7{fill:#FFFFFF;} + .d2-2618525867 .fill-B1{fill:#0D32B2;} + .d2-2618525867 .fill-B2{fill:#0D32B2;} + .d2-2618525867 .fill-B3{fill:#E3E9FD;} + .d2-2618525867 .fill-B4{fill:#E3E9FD;} + .d2-2618525867 .fill-B5{fill:#EDF0FD;} + .d2-2618525867 .fill-B6{fill:#F7F8FE;} + .d2-2618525867 .fill-AA2{fill:#4A6FF3;} + .d2-2618525867 .fill-AA4{fill:#EDF0FD;} + .d2-2618525867 .fill-AA5{fill:#F7F8FE;} + .d2-2618525867 .fill-AB4{fill:#EDF0FD;} + .d2-2618525867 .fill-AB5{fill:#F7F8FE;} + .d2-2618525867 .stroke-N1{stroke:#0A0F25;} + .d2-2618525867 .stroke-N2{stroke:#676C7E;} + .d2-2618525867 .stroke-N3{stroke:#9499AB;} + .d2-2618525867 .stroke-N4{stroke:#CFD2DD;} + .d2-2618525867 .stroke-N5{stroke:#DEE1EB;} + .d2-2618525867 .stroke-N6{stroke:#EEF1F8;} + .d2-2618525867 .stroke-N7{stroke:#FFFFFF;} + .d2-2618525867 .stroke-B1{stroke:#0D32B2;} + .d2-2618525867 .stroke-B2{stroke:#0D32B2;} + .d2-2618525867 .stroke-B3{stroke:#E3E9FD;} + .d2-2618525867 .stroke-B4{stroke:#E3E9FD;} + .d2-2618525867 .stroke-B5{stroke:#EDF0FD;} + .d2-2618525867 .stroke-B6{stroke:#F7F8FE;} + .d2-2618525867 .stroke-AA2{stroke:#4A6FF3;} + .d2-2618525867 .stroke-AA4{stroke:#EDF0FD;} + .d2-2618525867 .stroke-AA5{stroke:#F7F8FE;} + .d2-2618525867 .stroke-AB4{stroke:#EDF0FD;} + .d2-2618525867 .stroke-AB5{stroke:#F7F8FE;} + .d2-2618525867 .background-color-N1{background-color:#0A0F25;} + .d2-2618525867 .background-color-N2{background-color:#676C7E;} + .d2-2618525867 .background-color-N3{background-color:#9499AB;} + .d2-2618525867 .background-color-N4{background-color:#CFD2DD;} + .d2-2618525867 .background-color-N5{background-color:#DEE1EB;} + .d2-2618525867 .background-color-N6{background-color:#EEF1F8;} + .d2-2618525867 .background-color-N7{background-color:#FFFFFF;} + .d2-2618525867 .background-color-B1{background-color:#0D32B2;} + .d2-2618525867 .background-color-B2{background-color:#0D32B2;} + .d2-2618525867 .background-color-B3{background-color:#E3E9FD;} + .d2-2618525867 .background-color-B4{background-color:#E3E9FD;} + .d2-2618525867 .background-color-B5{background-color:#EDF0FD;} + .d2-2618525867 .background-color-B6{background-color:#F7F8FE;} + .d2-2618525867 .background-color-AA2{background-color:#4A6FF3;} + .d2-2618525867 .background-color-AA4{background-color:#EDF0FD;} + .d2-2618525867 .background-color-AA5{background-color:#F7F8FE;} + .d2-2618525867 .background-color-AB4{background-color:#EDF0FD;} + .d2-2618525867 .background-color-AB5{background-color:#F7F8FE;} + .d2-2618525867 .color-N1{color:#0A0F25;} + .d2-2618525867 .color-N2{color:#676C7E;} + .d2-2618525867 .color-N3{color:#9499AB;} + .d2-2618525867 .color-N4{color:#CFD2DD;} + .d2-2618525867 .color-N5{color:#DEE1EB;} + .d2-2618525867 .color-N6{color:#EEF1F8;} + .d2-2618525867 .color-N7{color:#FFFFFF;} + .d2-2618525867 .color-B1{color:#0D32B2;} + .d2-2618525867 .color-B2{color:#0D32B2;} + .d2-2618525867 .color-B3{color:#E3E9FD;} + .d2-2618525867 .color-B4{color:#E3E9FD;} + .d2-2618525867 .color-B5{color:#EDF0FD;} + .d2-2618525867 .color-B6{color:#F7F8FE;} + .d2-2618525867 .color-AA2{color:#4A6FF3;} + .d2-2618525867 .color-AA4{color:#EDF0FD;} + .d2-2618525867 .color-AA5{color:#F7F8FE;} + .d2-2618525867 .color-AB4{color:#EDF0FD;} + .d2-2618525867 .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}]]>xy + + + diff --git a/e2etests-cli/testdata/TestCLI_E2E/layer-link/index.exp.svg b/e2etests-cli/testdata/TestCLI_E2E/layer-link/index.exp.svg index f35290bfd3..2c47c1552f 100644 --- a/e2etests-cli/testdata/TestCLI_E2E/layer-link/index.exp.svg +++ b/e2etests-cli/testdata/TestCLI_E2E/layer-link/index.exp.svg @@ -1,12 +1,12 @@ -doh + .d2-1638018465 .fill-N1{fill:#0A0F25;} + .d2-1638018465 .fill-N2{fill:#676C7E;} + .d2-1638018465 .fill-N3{fill:#9499AB;} + .d2-1638018465 .fill-N4{fill:#CFD2DD;} + .d2-1638018465 .fill-N5{fill:#DEE1EB;} + .d2-1638018465 .fill-N6{fill:#EEF1F8;} + .d2-1638018465 .fill-N7{fill:#FFFFFF;} + .d2-1638018465 .fill-B1{fill:#0D32B2;} + .d2-1638018465 .fill-B2{fill:#0D32B2;} + .d2-1638018465 .fill-B3{fill:#E3E9FD;} + .d2-1638018465 .fill-B4{fill:#E3E9FD;} + .d2-1638018465 .fill-B5{fill:#EDF0FD;} + .d2-1638018465 .fill-B6{fill:#F7F8FE;} + .d2-1638018465 .fill-AA2{fill:#4A6FF3;} + .d2-1638018465 .fill-AA4{fill:#EDF0FD;} + .d2-1638018465 .fill-AA5{fill:#F7F8FE;} + .d2-1638018465 .fill-AB4{fill:#EDF0FD;} + .d2-1638018465 .fill-AB5{fill:#F7F8FE;} + .d2-1638018465 .stroke-N1{stroke:#0A0F25;} + .d2-1638018465 .stroke-N2{stroke:#676C7E;} + .d2-1638018465 .stroke-N3{stroke:#9499AB;} + .d2-1638018465 .stroke-N4{stroke:#CFD2DD;} + .d2-1638018465 .stroke-N5{stroke:#DEE1EB;} + .d2-1638018465 .stroke-N6{stroke:#EEF1F8;} + .d2-1638018465 .stroke-N7{stroke:#FFFFFF;} + .d2-1638018465 .stroke-B1{stroke:#0D32B2;} + .d2-1638018465 .stroke-B2{stroke:#0D32B2;} + .d2-1638018465 .stroke-B3{stroke:#E3E9FD;} + .d2-1638018465 .stroke-B4{stroke:#E3E9FD;} + .d2-1638018465 .stroke-B5{stroke:#EDF0FD;} + .d2-1638018465 .stroke-B6{stroke:#F7F8FE;} + .d2-1638018465 .stroke-AA2{stroke:#4A6FF3;} + .d2-1638018465 .stroke-AA4{stroke:#EDF0FD;} + .d2-1638018465 .stroke-AA5{stroke:#F7F8FE;} + .d2-1638018465 .stroke-AB4{stroke:#EDF0FD;} + .d2-1638018465 .stroke-AB5{stroke:#F7F8FE;} + .d2-1638018465 .background-color-N1{background-color:#0A0F25;} + .d2-1638018465 .background-color-N2{background-color:#676C7E;} + .d2-1638018465 .background-color-N3{background-color:#9499AB;} + .d2-1638018465 .background-color-N4{background-color:#CFD2DD;} + .d2-1638018465 .background-color-N5{background-color:#DEE1EB;} + .d2-1638018465 .background-color-N6{background-color:#EEF1F8;} + .d2-1638018465 .background-color-N7{background-color:#FFFFFF;} + .d2-1638018465 .background-color-B1{background-color:#0D32B2;} + .d2-1638018465 .background-color-B2{background-color:#0D32B2;} + .d2-1638018465 .background-color-B3{background-color:#E3E9FD;} + .d2-1638018465 .background-color-B4{background-color:#E3E9FD;} + .d2-1638018465 .background-color-B5{background-color:#EDF0FD;} + .d2-1638018465 .background-color-B6{background-color:#F7F8FE;} + .d2-1638018465 .background-color-AA2{background-color:#4A6FF3;} + .d2-1638018465 .background-color-AA4{background-color:#EDF0FD;} + .d2-1638018465 .background-color-AA5{background-color:#F7F8FE;} + .d2-1638018465 .background-color-AB4{background-color:#EDF0FD;} + .d2-1638018465 .background-color-AB5{background-color:#F7F8FE;} + .d2-1638018465 .color-N1{color:#0A0F25;} + .d2-1638018465 .color-N2{color:#676C7E;} + .d2-1638018465 .color-N3{color:#9499AB;} + .d2-1638018465 .color-N4{color:#CFD2DD;} + .d2-1638018465 .color-N5{color:#DEE1EB;} + .d2-1638018465 .color-N6{color:#EEF1F8;} + .d2-1638018465 .color-N7{color:#FFFFFF;} + .d2-1638018465 .color-B1{color:#0D32B2;} + .d2-1638018465 .color-B2{color:#0D32B2;} + .d2-1638018465 .color-B3{color:#E3E9FD;} + .d2-1638018465 .color-B4{color:#E3E9FD;} + .d2-1638018465 .color-B5{color:#EDF0FD;} + .d2-1638018465 .color-B6{color:#F7F8FE;} + .d2-1638018465 .color-AA2{color:#4A6FF3;} + .d2-1638018465 .color-AA4{color:#EDF0FD;} + .d2-1638018465 .color-AA5{color:#F7F8FE;} + .d2-1638018465 .color-AB4{color:#EDF0FD;} + .d2-1638018465 .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}]]>doh @@ -104,7 +104,7 @@ - - - + + + diff --git a/e2etests-cli/testdata/TestCLI_E2E/layer-link/test2.exp.svg b/e2etests-cli/testdata/TestCLI_E2E/layer-link/test2.exp.svg index c23b66b7fe..9b236b083e 100644 --- a/e2etests-cli/testdata/TestCLI_E2E/layer-link/test2.exp.svg +++ b/e2etests-cli/testdata/TestCLI_E2E/layer-link/test2.exp.svg @@ -1,12 +1,12 @@ -I'm a Mac + .d2-2664867100 .fill-N1{fill:#0A0F25;} + .d2-2664867100 .fill-N2{fill:#676C7E;} + .d2-2664867100 .fill-N3{fill:#9499AB;} + .d2-2664867100 .fill-N4{fill:#CFD2DD;} + .d2-2664867100 .fill-N5{fill:#DEE1EB;} + .d2-2664867100 .fill-N6{fill:#EEF1F8;} + .d2-2664867100 .fill-N7{fill:#FFFFFF;} + .d2-2664867100 .fill-B1{fill:#0D32B2;} + .d2-2664867100 .fill-B2{fill:#0D32B2;} + .d2-2664867100 .fill-B3{fill:#E3E9FD;} + .d2-2664867100 .fill-B4{fill:#E3E9FD;} + .d2-2664867100 .fill-B5{fill:#EDF0FD;} + .d2-2664867100 .fill-B6{fill:#F7F8FE;} + .d2-2664867100 .fill-AA2{fill:#4A6FF3;} + .d2-2664867100 .fill-AA4{fill:#EDF0FD;} + .d2-2664867100 .fill-AA5{fill:#F7F8FE;} + .d2-2664867100 .fill-AB4{fill:#EDF0FD;} + .d2-2664867100 .fill-AB5{fill:#F7F8FE;} + .d2-2664867100 .stroke-N1{stroke:#0A0F25;} + .d2-2664867100 .stroke-N2{stroke:#676C7E;} + .d2-2664867100 .stroke-N3{stroke:#9499AB;} + .d2-2664867100 .stroke-N4{stroke:#CFD2DD;} + .d2-2664867100 .stroke-N5{stroke:#DEE1EB;} + .d2-2664867100 .stroke-N6{stroke:#EEF1F8;} + .d2-2664867100 .stroke-N7{stroke:#FFFFFF;} + .d2-2664867100 .stroke-B1{stroke:#0D32B2;} + .d2-2664867100 .stroke-B2{stroke:#0D32B2;} + .d2-2664867100 .stroke-B3{stroke:#E3E9FD;} + .d2-2664867100 .stroke-B4{stroke:#E3E9FD;} + .d2-2664867100 .stroke-B5{stroke:#EDF0FD;} + .d2-2664867100 .stroke-B6{stroke:#F7F8FE;} + .d2-2664867100 .stroke-AA2{stroke:#4A6FF3;} + .d2-2664867100 .stroke-AA4{stroke:#EDF0FD;} + .d2-2664867100 .stroke-AA5{stroke:#F7F8FE;} + .d2-2664867100 .stroke-AB4{stroke:#EDF0FD;} + .d2-2664867100 .stroke-AB5{stroke:#F7F8FE;} + .d2-2664867100 .background-color-N1{background-color:#0A0F25;} + .d2-2664867100 .background-color-N2{background-color:#676C7E;} + .d2-2664867100 .background-color-N3{background-color:#9499AB;} + .d2-2664867100 .background-color-N4{background-color:#CFD2DD;} + .d2-2664867100 .background-color-N5{background-color:#DEE1EB;} + .d2-2664867100 .background-color-N6{background-color:#EEF1F8;} + .d2-2664867100 .background-color-N7{background-color:#FFFFFF;} + .d2-2664867100 .background-color-B1{background-color:#0D32B2;} + .d2-2664867100 .background-color-B2{background-color:#0D32B2;} + .d2-2664867100 .background-color-B3{background-color:#E3E9FD;} + .d2-2664867100 .background-color-B4{background-color:#E3E9FD;} + .d2-2664867100 .background-color-B5{background-color:#EDF0FD;} + .d2-2664867100 .background-color-B6{background-color:#F7F8FE;} + .d2-2664867100 .background-color-AA2{background-color:#4A6FF3;} + .d2-2664867100 .background-color-AA4{background-color:#EDF0FD;} + .d2-2664867100 .background-color-AA5{background-color:#F7F8FE;} + .d2-2664867100 .background-color-AB4{background-color:#EDF0FD;} + .d2-2664867100 .background-color-AB5{background-color:#F7F8FE;} + .d2-2664867100 .color-N1{color:#0A0F25;} + .d2-2664867100 .color-N2{color:#676C7E;} + .d2-2664867100 .color-N3{color:#9499AB;} + .d2-2664867100 .color-N4{color:#CFD2DD;} + .d2-2664867100 .color-N5{color:#DEE1EB;} + .d2-2664867100 .color-N6{color:#EEF1F8;} + .d2-2664867100 .color-N7{color:#FFFFFF;} + .d2-2664867100 .color-B1{color:#0D32B2;} + .d2-2664867100 .color-B2{color:#0D32B2;} + .d2-2664867100 .color-B3{color:#E3E9FD;} + .d2-2664867100 .color-B4{color:#E3E9FD;} + .d2-2664867100 .color-B5{color:#EDF0FD;} + .d2-2664867100 .color-B6{color:#F7F8FE;} + .d2-2664867100 .color-AA2{color:#4A6FF3;} + .d2-2664867100 .color-AA4{color:#EDF0FD;} + .d2-2664867100 .color-AA5{color:#F7F8FE;} + .d2-2664867100 .color-AB4{color:#EDF0FD;} + .d2-2664867100 .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}]]>I'm a Mac @@ -104,7 +104,7 @@ - - - + + + diff --git a/e2etests/testdata/patterns/all_shapes/dagre/board.exp.json b/e2etests/testdata/patterns/all_shapes/dagre/board.exp.json index b5911c6dc9..8c483f6dcd 100644 --- a/e2etests/testdata/patterns/all_shapes/dagre/board.exp.json +++ b/e2etests/testdata/patterns/all_shapes/dagre/board.exp.json @@ -595,11 +595,11 @@ "id": "circle", "type": "oval", "pos": { - "x": 819, - "y": 394 + "x": 820, + "y": 395 }, - "width": 103, - "height": 103, + "width": 101, + "height": 101, "opacity": 1, "strokeDash": 0, "strokeWidth": 2, @@ -1177,11 +1177,11 @@ }, { "x": 870, - "y": 347.6000061035156 + "y": 347.79998779296875 }, { "x": 870, - "y": 394 + "y": 395 } ], "isCurve": true, diff --git a/e2etests/testdata/patterns/all_shapes/dagre/sketch.exp.svg b/e2etests/testdata/patterns/all_shapes/dagre/sketch.exp.svg index c643b8a210..0edeb63d16 100644 --- a/e2etests/testdata/patterns/all_shapes/dagre/sketch.exp.svg +++ b/e2etests/testdata/patterns/all_shapes/dagre/sketch.exp.svg @@ -1,9 +1,9 @@ -&∈beans & ricebeans & rice + .d2-518173582 .fill-N1{fill:#0A0F25;} + .d2-518173582 .fill-N2{fill:#676C7E;} + .d2-518173582 .fill-N3{fill:#9499AB;} + .d2-518173582 .fill-N4{fill:#CFD2DD;} + .d2-518173582 .fill-N5{fill:#DEE1EB;} + .d2-518173582 .fill-N6{fill:#EEF1F8;} + .d2-518173582 .fill-N7{fill:#FFFFFF;} + .d2-518173582 .fill-B1{fill:#0D32B2;} + .d2-518173582 .fill-B2{fill:#0D32B2;} + .d2-518173582 .fill-B3{fill:#E3E9FD;} + .d2-518173582 .fill-B4{fill:#E3E9FD;} + .d2-518173582 .fill-B5{fill:#EDF0FD;} + .d2-518173582 .fill-B6{fill:#F7F8FE;} + .d2-518173582 .fill-AA2{fill:#4A6FF3;} + .d2-518173582 .fill-AA4{fill:#EDF0FD;} + .d2-518173582 .fill-AA5{fill:#F7F8FE;} + .d2-518173582 .fill-AB4{fill:#EDF0FD;} + .d2-518173582 .fill-AB5{fill:#F7F8FE;} + .d2-518173582 .stroke-N1{stroke:#0A0F25;} + .d2-518173582 .stroke-N2{stroke:#676C7E;} + .d2-518173582 .stroke-N3{stroke:#9499AB;} + .d2-518173582 .stroke-N4{stroke:#CFD2DD;} + .d2-518173582 .stroke-N5{stroke:#DEE1EB;} + .d2-518173582 .stroke-N6{stroke:#EEF1F8;} + .d2-518173582 .stroke-N7{stroke:#FFFFFF;} + .d2-518173582 .stroke-B1{stroke:#0D32B2;} + .d2-518173582 .stroke-B2{stroke:#0D32B2;} + .d2-518173582 .stroke-B3{stroke:#E3E9FD;} + .d2-518173582 .stroke-B4{stroke:#E3E9FD;} + .d2-518173582 .stroke-B5{stroke:#EDF0FD;} + .d2-518173582 .stroke-B6{stroke:#F7F8FE;} + .d2-518173582 .stroke-AA2{stroke:#4A6FF3;} + .d2-518173582 .stroke-AA4{stroke:#EDF0FD;} + .d2-518173582 .stroke-AA5{stroke:#F7F8FE;} + .d2-518173582 .stroke-AB4{stroke:#EDF0FD;} + .d2-518173582 .stroke-AB5{stroke:#F7F8FE;} + .d2-518173582 .background-color-N1{background-color:#0A0F25;} + .d2-518173582 .background-color-N2{background-color:#676C7E;} + .d2-518173582 .background-color-N3{background-color:#9499AB;} + .d2-518173582 .background-color-N4{background-color:#CFD2DD;} + .d2-518173582 .background-color-N5{background-color:#DEE1EB;} + .d2-518173582 .background-color-N6{background-color:#EEF1F8;} + .d2-518173582 .background-color-N7{background-color:#FFFFFF;} + .d2-518173582 .background-color-B1{background-color:#0D32B2;} + .d2-518173582 .background-color-B2{background-color:#0D32B2;} + .d2-518173582 .background-color-B3{background-color:#E3E9FD;} + .d2-518173582 .background-color-B4{background-color:#E3E9FD;} + .d2-518173582 .background-color-B5{background-color:#EDF0FD;} + .d2-518173582 .background-color-B6{background-color:#F7F8FE;} + .d2-518173582 .background-color-AA2{background-color:#4A6FF3;} + .d2-518173582 .background-color-AA4{background-color:#EDF0FD;} + .d2-518173582 .background-color-AA5{background-color:#F7F8FE;} + .d2-518173582 .background-color-AB4{background-color:#EDF0FD;} + .d2-518173582 .background-color-AB5{background-color:#F7F8FE;} + .d2-518173582 .color-N1{color:#0A0F25;} + .d2-518173582 .color-N2{color:#676C7E;} + .d2-518173582 .color-N3{color:#9499AB;} + .d2-518173582 .color-N4{color:#CFD2DD;} + .d2-518173582 .color-N5{color:#DEE1EB;} + .d2-518173582 .color-N6{color:#EEF1F8;} + .d2-518173582 .color-N7{color:#FFFFFF;} + .d2-518173582 .color-B1{color:#0D32B2;} + .d2-518173582 .color-B2{color:#0D32B2;} + .d2-518173582 .color-B3{color:#E3E9FD;} + .d2-518173582 .color-B4{color:#E3E9FD;} + .d2-518173582 .color-B5{color:#EDF0FD;} + .d2-518173582 .color-B6{color:#F7F8FE;} + .d2-518173582 .color-AA2{color:#4A6FF3;} + .d2-518173582 .color-AA4{color:#EDF0FD;} + .d2-518173582 .color-AA5{color:#F7F8FE;} + .d2-518173582 .color-AB4{color:#EDF0FD;} + .d2-518173582 .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}]]>&∈beans & ricebeans & rice @@ -105,7 +105,7 @@ - - - + + + \ No newline at end of file diff --git a/e2etests/testdata/regression/ampersand-escape/elk/board.exp.json b/e2etests/testdata/regression/ampersand-escape/elk/board.exp.json index c135331d84..11d0ae07db 100644 --- a/e2etests/testdata/regression/ampersand-escape/elk/board.exp.json +++ b/e2etests/testdata/regression/ampersand-escape/elk/board.exp.json @@ -10,7 +10,7 @@ "x": 12, "y": 12 }, - "width": 98, + "width": 66, "height": 66, "opacity": 1, "strokeDash": 0, diff --git a/e2etests/testdata/regression/ampersand-escape/elk/sketch.exp.svg b/e2etests/testdata/regression/ampersand-escape/elk/sketch.exp.svg index 3a37371a8f..d8b7b37826 100644 --- a/e2etests/testdata/regression/ampersand-escape/elk/sketch.exp.svg +++ b/e2etests/testdata/regression/ampersand-escape/elk/sketch.exp.svg @@ -1,12 +1,12 @@ -&∈beans & ricebeans & rice + .d2-940642022 .fill-N1{fill:#0A0F25;} + .d2-940642022 .fill-N2{fill:#676C7E;} + .d2-940642022 .fill-N3{fill:#9499AB;} + .d2-940642022 .fill-N4{fill:#CFD2DD;} + .d2-940642022 .fill-N5{fill:#DEE1EB;} + .d2-940642022 .fill-N6{fill:#EEF1F8;} + .d2-940642022 .fill-N7{fill:#FFFFFF;} + .d2-940642022 .fill-B1{fill:#0D32B2;} + .d2-940642022 .fill-B2{fill:#0D32B2;} + .d2-940642022 .fill-B3{fill:#E3E9FD;} + .d2-940642022 .fill-B4{fill:#E3E9FD;} + .d2-940642022 .fill-B5{fill:#EDF0FD;} + .d2-940642022 .fill-B6{fill:#F7F8FE;} + .d2-940642022 .fill-AA2{fill:#4A6FF3;} + .d2-940642022 .fill-AA4{fill:#EDF0FD;} + .d2-940642022 .fill-AA5{fill:#F7F8FE;} + .d2-940642022 .fill-AB4{fill:#EDF0FD;} + .d2-940642022 .fill-AB5{fill:#F7F8FE;} + .d2-940642022 .stroke-N1{stroke:#0A0F25;} + .d2-940642022 .stroke-N2{stroke:#676C7E;} + .d2-940642022 .stroke-N3{stroke:#9499AB;} + .d2-940642022 .stroke-N4{stroke:#CFD2DD;} + .d2-940642022 .stroke-N5{stroke:#DEE1EB;} + .d2-940642022 .stroke-N6{stroke:#EEF1F8;} + .d2-940642022 .stroke-N7{stroke:#FFFFFF;} + .d2-940642022 .stroke-B1{stroke:#0D32B2;} + .d2-940642022 .stroke-B2{stroke:#0D32B2;} + .d2-940642022 .stroke-B3{stroke:#E3E9FD;} + .d2-940642022 .stroke-B4{stroke:#E3E9FD;} + .d2-940642022 .stroke-B5{stroke:#EDF0FD;} + .d2-940642022 .stroke-B6{stroke:#F7F8FE;} + .d2-940642022 .stroke-AA2{stroke:#4A6FF3;} + .d2-940642022 .stroke-AA4{stroke:#EDF0FD;} + .d2-940642022 .stroke-AA5{stroke:#F7F8FE;} + .d2-940642022 .stroke-AB4{stroke:#EDF0FD;} + .d2-940642022 .stroke-AB5{stroke:#F7F8FE;} + .d2-940642022 .background-color-N1{background-color:#0A0F25;} + .d2-940642022 .background-color-N2{background-color:#676C7E;} + .d2-940642022 .background-color-N3{background-color:#9499AB;} + .d2-940642022 .background-color-N4{background-color:#CFD2DD;} + .d2-940642022 .background-color-N5{background-color:#DEE1EB;} + .d2-940642022 .background-color-N6{background-color:#EEF1F8;} + .d2-940642022 .background-color-N7{background-color:#FFFFFF;} + .d2-940642022 .background-color-B1{background-color:#0D32B2;} + .d2-940642022 .background-color-B2{background-color:#0D32B2;} + .d2-940642022 .background-color-B3{background-color:#E3E9FD;} + .d2-940642022 .background-color-B4{background-color:#E3E9FD;} + .d2-940642022 .background-color-B5{background-color:#EDF0FD;} + .d2-940642022 .background-color-B6{background-color:#F7F8FE;} + .d2-940642022 .background-color-AA2{background-color:#4A6FF3;} + .d2-940642022 .background-color-AA4{background-color:#EDF0FD;} + .d2-940642022 .background-color-AA5{background-color:#F7F8FE;} + .d2-940642022 .background-color-AB4{background-color:#EDF0FD;} + .d2-940642022 .background-color-AB5{background-color:#F7F8FE;} + .d2-940642022 .color-N1{color:#0A0F25;} + .d2-940642022 .color-N2{color:#676C7E;} + .d2-940642022 .color-N3{color:#9499AB;} + .d2-940642022 .color-N4{color:#CFD2DD;} + .d2-940642022 .color-N5{color:#DEE1EB;} + .d2-940642022 .color-N6{color:#EEF1F8;} + .d2-940642022 .color-N7{color:#FFFFFF;} + .d2-940642022 .color-B1{color:#0D32B2;} + .d2-940642022 .color-B2{color:#0D32B2;} + .d2-940642022 .color-B3{color:#E3E9FD;} + .d2-940642022 .color-B4{color:#E3E9FD;} + .d2-940642022 .color-B5{color:#EDF0FD;} + .d2-940642022 .color-B6{color:#F7F8FE;} + .d2-940642022 .color-AA2{color:#4A6FF3;} + .d2-940642022 .color-AA4{color:#EDF0FD;} + .d2-940642022 .color-AA5{color:#F7F8FE;} + .d2-940642022 .color-AB4{color:#EDF0FD;} + .d2-940642022 .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}]]>&∈beans & ricebeans & rice @@ -105,7 +105,7 @@ - - - + + + \ No newline at end of file diff --git a/e2etests/testdata/regression/icons_on_top/dagre/board.exp.json b/e2etests/testdata/regression/icons_on_top/dagre/board.exp.json index 79b687ec64..5c7d672057 100644 --- a/e2etests/testdata/regression/icons_on_top/dagre/board.exp.json +++ b/e2etests/testdata/regression/icons_on_top/dagre/board.exp.json @@ -13,7 +13,7 @@ "x": 0, "y": 0 }, - "width": 159, + "width": 127, "height": 66, "opacity": 1, "strokeDash": 0, @@ -54,7 +54,7 @@ "YELLOW" ], "pos": { - "x": 159, + "x": 127, "y": 0 }, "width": 80, @@ -101,7 +101,7 @@ "x": 0, "y": 66 }, - "width": 159, + "width": 127, "height": 66, "opacity": 1, "strokeDash": 0, @@ -142,7 +142,7 @@ "GREEN" ], "pos": { - "x": 159, + "x": 127, "y": 66 }, "width": 80, diff --git a/e2etests/testdata/regression/icons_on_top/dagre/sketch.exp.svg b/e2etests/testdata/regression/icons_on_top/dagre/sketch.exp.svg index 9450e8d22c..a330a5878e 100644 --- a/e2etests/testdata/regression/icons_on_top/dagre/sketch.exp.svg +++ b/e2etests/testdata/regression/icons_on_top/dagre/sketch.exp.svg @@ -1,12 +1,12 @@ -linknonelink, tooltiptooltipnonetooltip + .d2-2024767174 .fill-N1{fill:#0A0F25;} + .d2-2024767174 .fill-N2{fill:#676C7E;} + .d2-2024767174 .fill-N3{fill:#9499AB;} + .d2-2024767174 .fill-N4{fill:#CFD2DD;} + .d2-2024767174 .fill-N5{fill:#DEE1EB;} + .d2-2024767174 .fill-N6{fill:#EEF1F8;} + .d2-2024767174 .fill-N7{fill:#FFFFFF;} + .d2-2024767174 .fill-B1{fill:#0D32B2;} + .d2-2024767174 .fill-B2{fill:#0D32B2;} + .d2-2024767174 .fill-B3{fill:#E3E9FD;} + .d2-2024767174 .fill-B4{fill:#E3E9FD;} + .d2-2024767174 .fill-B5{fill:#EDF0FD;} + .d2-2024767174 .fill-B6{fill:#F7F8FE;} + .d2-2024767174 .fill-AA2{fill:#4A6FF3;} + .d2-2024767174 .fill-AA4{fill:#EDF0FD;} + .d2-2024767174 .fill-AA5{fill:#F7F8FE;} + .d2-2024767174 .fill-AB4{fill:#EDF0FD;} + .d2-2024767174 .fill-AB5{fill:#F7F8FE;} + .d2-2024767174 .stroke-N1{stroke:#0A0F25;} + .d2-2024767174 .stroke-N2{stroke:#676C7E;} + .d2-2024767174 .stroke-N3{stroke:#9499AB;} + .d2-2024767174 .stroke-N4{stroke:#CFD2DD;} + .d2-2024767174 .stroke-N5{stroke:#DEE1EB;} + .d2-2024767174 .stroke-N6{stroke:#EEF1F8;} + .d2-2024767174 .stroke-N7{stroke:#FFFFFF;} + .d2-2024767174 .stroke-B1{stroke:#0D32B2;} + .d2-2024767174 .stroke-B2{stroke:#0D32B2;} + .d2-2024767174 .stroke-B3{stroke:#E3E9FD;} + .d2-2024767174 .stroke-B4{stroke:#E3E9FD;} + .d2-2024767174 .stroke-B5{stroke:#EDF0FD;} + .d2-2024767174 .stroke-B6{stroke:#F7F8FE;} + .d2-2024767174 .stroke-AA2{stroke:#4A6FF3;} + .d2-2024767174 .stroke-AA4{stroke:#EDF0FD;} + .d2-2024767174 .stroke-AA5{stroke:#F7F8FE;} + .d2-2024767174 .stroke-AB4{stroke:#EDF0FD;} + .d2-2024767174 .stroke-AB5{stroke:#F7F8FE;} + .d2-2024767174 .background-color-N1{background-color:#0A0F25;} + .d2-2024767174 .background-color-N2{background-color:#676C7E;} + .d2-2024767174 .background-color-N3{background-color:#9499AB;} + .d2-2024767174 .background-color-N4{background-color:#CFD2DD;} + .d2-2024767174 .background-color-N5{background-color:#DEE1EB;} + .d2-2024767174 .background-color-N6{background-color:#EEF1F8;} + .d2-2024767174 .background-color-N7{background-color:#FFFFFF;} + .d2-2024767174 .background-color-B1{background-color:#0D32B2;} + .d2-2024767174 .background-color-B2{background-color:#0D32B2;} + .d2-2024767174 .background-color-B3{background-color:#E3E9FD;} + .d2-2024767174 .background-color-B4{background-color:#E3E9FD;} + .d2-2024767174 .background-color-B5{background-color:#EDF0FD;} + .d2-2024767174 .background-color-B6{background-color:#F7F8FE;} + .d2-2024767174 .background-color-AA2{background-color:#4A6FF3;} + .d2-2024767174 .background-color-AA4{background-color:#EDF0FD;} + .d2-2024767174 .background-color-AA5{background-color:#F7F8FE;} + .d2-2024767174 .background-color-AB4{background-color:#EDF0FD;} + .d2-2024767174 .background-color-AB5{background-color:#F7F8FE;} + .d2-2024767174 .color-N1{color:#0A0F25;} + .d2-2024767174 .color-N2{color:#676C7E;} + .d2-2024767174 .color-N3{color:#9499AB;} + .d2-2024767174 .color-N4{color:#CFD2DD;} + .d2-2024767174 .color-N5{color:#DEE1EB;} + .d2-2024767174 .color-N6{color:#EEF1F8;} + .d2-2024767174 .color-N7{color:#FFFFFF;} + .d2-2024767174 .color-B1{color:#0D32B2;} + .d2-2024767174 .color-B2{color:#0D32B2;} + .d2-2024767174 .color-B3{color:#E3E9FD;} + .d2-2024767174 .color-B4{color:#E3E9FD;} + .d2-2024767174 .color-B5{color:#EDF0FD;} + .d2-2024767174 .color-B6{color:#F7F8FE;} + .d2-2024767174 .color-AA2{color:#4A6FF3;} + .d2-2024767174 .color-AA4{color:#EDF0FD;} + .d2-2024767174 .color-AA5{color:#F7F8FE;} + .d2-2024767174 .color-AB4{color:#EDF0FD;} + .d2-2024767174 .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}]]>linknonelink, tooltiptooltipnonetooltip @@ -105,10 +105,10 @@ - - - - - - + + + + + + \ No newline at end of file diff --git a/e2etests/testdata/regression/icons_on_top/elk/board.exp.json b/e2etests/testdata/regression/icons_on_top/elk/board.exp.json index 79b687ec64..5c7d672057 100644 --- a/e2etests/testdata/regression/icons_on_top/elk/board.exp.json +++ b/e2etests/testdata/regression/icons_on_top/elk/board.exp.json @@ -13,7 +13,7 @@ "x": 0, "y": 0 }, - "width": 159, + "width": 127, "height": 66, "opacity": 1, "strokeDash": 0, @@ -54,7 +54,7 @@ "YELLOW" ], "pos": { - "x": 159, + "x": 127, "y": 0 }, "width": 80, @@ -101,7 +101,7 @@ "x": 0, "y": 66 }, - "width": 159, + "width": 127, "height": 66, "opacity": 1, "strokeDash": 0, @@ -142,7 +142,7 @@ "GREEN" ], "pos": { - "x": 159, + "x": 127, "y": 66 }, "width": 80, diff --git a/e2etests/testdata/regression/icons_on_top/elk/sketch.exp.svg b/e2etests/testdata/regression/icons_on_top/elk/sketch.exp.svg index 9450e8d22c..a330a5878e 100644 --- a/e2etests/testdata/regression/icons_on_top/elk/sketch.exp.svg +++ b/e2etests/testdata/regression/icons_on_top/elk/sketch.exp.svg @@ -1,12 +1,12 @@ -linknonelink, tooltiptooltipnonetooltip + .d2-2024767174 .fill-N1{fill:#0A0F25;} + .d2-2024767174 .fill-N2{fill:#676C7E;} + .d2-2024767174 .fill-N3{fill:#9499AB;} + .d2-2024767174 .fill-N4{fill:#CFD2DD;} + .d2-2024767174 .fill-N5{fill:#DEE1EB;} + .d2-2024767174 .fill-N6{fill:#EEF1F8;} + .d2-2024767174 .fill-N7{fill:#FFFFFF;} + .d2-2024767174 .fill-B1{fill:#0D32B2;} + .d2-2024767174 .fill-B2{fill:#0D32B2;} + .d2-2024767174 .fill-B3{fill:#E3E9FD;} + .d2-2024767174 .fill-B4{fill:#E3E9FD;} + .d2-2024767174 .fill-B5{fill:#EDF0FD;} + .d2-2024767174 .fill-B6{fill:#F7F8FE;} + .d2-2024767174 .fill-AA2{fill:#4A6FF3;} + .d2-2024767174 .fill-AA4{fill:#EDF0FD;} + .d2-2024767174 .fill-AA5{fill:#F7F8FE;} + .d2-2024767174 .fill-AB4{fill:#EDF0FD;} + .d2-2024767174 .fill-AB5{fill:#F7F8FE;} + .d2-2024767174 .stroke-N1{stroke:#0A0F25;} + .d2-2024767174 .stroke-N2{stroke:#676C7E;} + .d2-2024767174 .stroke-N3{stroke:#9499AB;} + .d2-2024767174 .stroke-N4{stroke:#CFD2DD;} + .d2-2024767174 .stroke-N5{stroke:#DEE1EB;} + .d2-2024767174 .stroke-N6{stroke:#EEF1F8;} + .d2-2024767174 .stroke-N7{stroke:#FFFFFF;} + .d2-2024767174 .stroke-B1{stroke:#0D32B2;} + .d2-2024767174 .stroke-B2{stroke:#0D32B2;} + .d2-2024767174 .stroke-B3{stroke:#E3E9FD;} + .d2-2024767174 .stroke-B4{stroke:#E3E9FD;} + .d2-2024767174 .stroke-B5{stroke:#EDF0FD;} + .d2-2024767174 .stroke-B6{stroke:#F7F8FE;} + .d2-2024767174 .stroke-AA2{stroke:#4A6FF3;} + .d2-2024767174 .stroke-AA4{stroke:#EDF0FD;} + .d2-2024767174 .stroke-AA5{stroke:#F7F8FE;} + .d2-2024767174 .stroke-AB4{stroke:#EDF0FD;} + .d2-2024767174 .stroke-AB5{stroke:#F7F8FE;} + .d2-2024767174 .background-color-N1{background-color:#0A0F25;} + .d2-2024767174 .background-color-N2{background-color:#676C7E;} + .d2-2024767174 .background-color-N3{background-color:#9499AB;} + .d2-2024767174 .background-color-N4{background-color:#CFD2DD;} + .d2-2024767174 .background-color-N5{background-color:#DEE1EB;} + .d2-2024767174 .background-color-N6{background-color:#EEF1F8;} + .d2-2024767174 .background-color-N7{background-color:#FFFFFF;} + .d2-2024767174 .background-color-B1{background-color:#0D32B2;} + .d2-2024767174 .background-color-B2{background-color:#0D32B2;} + .d2-2024767174 .background-color-B3{background-color:#E3E9FD;} + .d2-2024767174 .background-color-B4{background-color:#E3E9FD;} + .d2-2024767174 .background-color-B5{background-color:#EDF0FD;} + .d2-2024767174 .background-color-B6{background-color:#F7F8FE;} + .d2-2024767174 .background-color-AA2{background-color:#4A6FF3;} + .d2-2024767174 .background-color-AA4{background-color:#EDF0FD;} + .d2-2024767174 .background-color-AA5{background-color:#F7F8FE;} + .d2-2024767174 .background-color-AB4{background-color:#EDF0FD;} + .d2-2024767174 .background-color-AB5{background-color:#F7F8FE;} + .d2-2024767174 .color-N1{color:#0A0F25;} + .d2-2024767174 .color-N2{color:#676C7E;} + .d2-2024767174 .color-N3{color:#9499AB;} + .d2-2024767174 .color-N4{color:#CFD2DD;} + .d2-2024767174 .color-N5{color:#DEE1EB;} + .d2-2024767174 .color-N6{color:#EEF1F8;} + .d2-2024767174 .color-N7{color:#FFFFFF;} + .d2-2024767174 .color-B1{color:#0D32B2;} + .d2-2024767174 .color-B2{color:#0D32B2;} + .d2-2024767174 .color-B3{color:#E3E9FD;} + .d2-2024767174 .color-B4{color:#E3E9FD;} + .d2-2024767174 .color-B5{color:#EDF0FD;} + .d2-2024767174 .color-B6{color:#F7F8FE;} + .d2-2024767174 .color-AA2{color:#4A6FF3;} + .d2-2024767174 .color-AA4{color:#EDF0FD;} + .d2-2024767174 .color-AA5{color:#F7F8FE;} + .d2-2024767174 .color-AB4{color:#EDF0FD;} + .d2-2024767174 .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}]]>linknonelink, tooltiptooltipnonetooltip @@ -105,10 +105,10 @@ - - - - - - + + + + + + \ No newline at end of file diff --git a/e2etests/testdata/regression/link_with_ampersand/dagre/board.exp.json b/e2etests/testdata/regression/link_with_ampersand/dagre/board.exp.json index 87468cfa87..425131fae6 100644 --- a/e2etests/testdata/regression/link_with_ampersand/dagre/board.exp.json +++ b/e2etests/testdata/regression/link_with_ampersand/dagre/board.exp.json @@ -10,7 +10,7 @@ "x": 0, "y": 0 }, - "width": 85, + "width": 53, "height": 66, "opacity": 1, "strokeDash": 0, diff --git a/e2etests/testdata/regression/link_with_ampersand/dagre/sketch.exp.svg b/e2etests/testdata/regression/link_with_ampersand/dagre/sketch.exp.svg index 3e8926a5e2..c3fbf29b41 100644 --- a/e2etests/testdata/regression/link_with_ampersand/dagre/sketch.exp.svg +++ b/e2etests/testdata/regression/link_with_ampersand/dagre/sketch.exp.svg @@ -1,12 +1,12 @@ -a + .d2-591021258 .fill-N1{fill:#0A0F25;} + .d2-591021258 .fill-N2{fill:#676C7E;} + .d2-591021258 .fill-N3{fill:#9499AB;} + .d2-591021258 .fill-N4{fill:#CFD2DD;} + .d2-591021258 .fill-N5{fill:#DEE1EB;} + .d2-591021258 .fill-N6{fill:#EEF1F8;} + .d2-591021258 .fill-N7{fill:#FFFFFF;} + .d2-591021258 .fill-B1{fill:#0D32B2;} + .d2-591021258 .fill-B2{fill:#0D32B2;} + .d2-591021258 .fill-B3{fill:#E3E9FD;} + .d2-591021258 .fill-B4{fill:#E3E9FD;} + .d2-591021258 .fill-B5{fill:#EDF0FD;} + .d2-591021258 .fill-B6{fill:#F7F8FE;} + .d2-591021258 .fill-AA2{fill:#4A6FF3;} + .d2-591021258 .fill-AA4{fill:#EDF0FD;} + .d2-591021258 .fill-AA5{fill:#F7F8FE;} + .d2-591021258 .fill-AB4{fill:#EDF0FD;} + .d2-591021258 .fill-AB5{fill:#F7F8FE;} + .d2-591021258 .stroke-N1{stroke:#0A0F25;} + .d2-591021258 .stroke-N2{stroke:#676C7E;} + .d2-591021258 .stroke-N3{stroke:#9499AB;} + .d2-591021258 .stroke-N4{stroke:#CFD2DD;} + .d2-591021258 .stroke-N5{stroke:#DEE1EB;} + .d2-591021258 .stroke-N6{stroke:#EEF1F8;} + .d2-591021258 .stroke-N7{stroke:#FFFFFF;} + .d2-591021258 .stroke-B1{stroke:#0D32B2;} + .d2-591021258 .stroke-B2{stroke:#0D32B2;} + .d2-591021258 .stroke-B3{stroke:#E3E9FD;} + .d2-591021258 .stroke-B4{stroke:#E3E9FD;} + .d2-591021258 .stroke-B5{stroke:#EDF0FD;} + .d2-591021258 .stroke-B6{stroke:#F7F8FE;} + .d2-591021258 .stroke-AA2{stroke:#4A6FF3;} + .d2-591021258 .stroke-AA4{stroke:#EDF0FD;} + .d2-591021258 .stroke-AA5{stroke:#F7F8FE;} + .d2-591021258 .stroke-AB4{stroke:#EDF0FD;} + .d2-591021258 .stroke-AB5{stroke:#F7F8FE;} + .d2-591021258 .background-color-N1{background-color:#0A0F25;} + .d2-591021258 .background-color-N2{background-color:#676C7E;} + .d2-591021258 .background-color-N3{background-color:#9499AB;} + .d2-591021258 .background-color-N4{background-color:#CFD2DD;} + .d2-591021258 .background-color-N5{background-color:#DEE1EB;} + .d2-591021258 .background-color-N6{background-color:#EEF1F8;} + .d2-591021258 .background-color-N7{background-color:#FFFFFF;} + .d2-591021258 .background-color-B1{background-color:#0D32B2;} + .d2-591021258 .background-color-B2{background-color:#0D32B2;} + .d2-591021258 .background-color-B3{background-color:#E3E9FD;} + .d2-591021258 .background-color-B4{background-color:#E3E9FD;} + .d2-591021258 .background-color-B5{background-color:#EDF0FD;} + .d2-591021258 .background-color-B6{background-color:#F7F8FE;} + .d2-591021258 .background-color-AA2{background-color:#4A6FF3;} + .d2-591021258 .background-color-AA4{background-color:#EDF0FD;} + .d2-591021258 .background-color-AA5{background-color:#F7F8FE;} + .d2-591021258 .background-color-AB4{background-color:#EDF0FD;} + .d2-591021258 .background-color-AB5{background-color:#F7F8FE;} + .d2-591021258 .color-N1{color:#0A0F25;} + .d2-591021258 .color-N2{color:#676C7E;} + .d2-591021258 .color-N3{color:#9499AB;} + .d2-591021258 .color-N4{color:#CFD2DD;} + .d2-591021258 .color-N5{color:#DEE1EB;} + .d2-591021258 .color-N6{color:#EEF1F8;} + .d2-591021258 .color-N7{color:#FFFFFF;} + .d2-591021258 .color-B1{color:#0D32B2;} + .d2-591021258 .color-B2{color:#0D32B2;} + .d2-591021258 .color-B3{color:#E3E9FD;} + .d2-591021258 .color-B4{color:#E3E9FD;} + .d2-591021258 .color-B5{color:#EDF0FD;} + .d2-591021258 .color-B6{color:#F7F8FE;} + .d2-591021258 .color-AA2{color:#4A6FF3;} + .d2-591021258 .color-AA4{color:#EDF0FD;} + .d2-591021258 .color-AA5{color:#F7F8FE;} + .d2-591021258 .color-AB4{color:#EDF0FD;} + .d2-591021258 .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 @@ -104,7 +104,7 @@ - - - + + + \ No newline at end of file diff --git a/e2etests/testdata/regression/link_with_ampersand/elk/board.exp.json b/e2etests/testdata/regression/link_with_ampersand/elk/board.exp.json index 50b855fa64..1b60006a5b 100644 --- a/e2etests/testdata/regression/link_with_ampersand/elk/board.exp.json +++ b/e2etests/testdata/regression/link_with_ampersand/elk/board.exp.json @@ -10,7 +10,7 @@ "x": 12, "y": 12 }, - "width": 85, + "width": 53, "height": 66, "opacity": 1, "strokeDash": 0, diff --git a/e2etests/testdata/regression/link_with_ampersand/elk/sketch.exp.svg b/e2etests/testdata/regression/link_with_ampersand/elk/sketch.exp.svg index 1fb489df87..393bded255 100644 --- a/e2etests/testdata/regression/link_with_ampersand/elk/sketch.exp.svg +++ b/e2etests/testdata/regression/link_with_ampersand/elk/sketch.exp.svg @@ -1,12 +1,12 @@ -a + .d2-2019577538 .fill-N1{fill:#0A0F25;} + .d2-2019577538 .fill-N2{fill:#676C7E;} + .d2-2019577538 .fill-N3{fill:#9499AB;} + .d2-2019577538 .fill-N4{fill:#CFD2DD;} + .d2-2019577538 .fill-N5{fill:#DEE1EB;} + .d2-2019577538 .fill-N6{fill:#EEF1F8;} + .d2-2019577538 .fill-N7{fill:#FFFFFF;} + .d2-2019577538 .fill-B1{fill:#0D32B2;} + .d2-2019577538 .fill-B2{fill:#0D32B2;} + .d2-2019577538 .fill-B3{fill:#E3E9FD;} + .d2-2019577538 .fill-B4{fill:#E3E9FD;} + .d2-2019577538 .fill-B5{fill:#EDF0FD;} + .d2-2019577538 .fill-B6{fill:#F7F8FE;} + .d2-2019577538 .fill-AA2{fill:#4A6FF3;} + .d2-2019577538 .fill-AA4{fill:#EDF0FD;} + .d2-2019577538 .fill-AA5{fill:#F7F8FE;} + .d2-2019577538 .fill-AB4{fill:#EDF0FD;} + .d2-2019577538 .fill-AB5{fill:#F7F8FE;} + .d2-2019577538 .stroke-N1{stroke:#0A0F25;} + .d2-2019577538 .stroke-N2{stroke:#676C7E;} + .d2-2019577538 .stroke-N3{stroke:#9499AB;} + .d2-2019577538 .stroke-N4{stroke:#CFD2DD;} + .d2-2019577538 .stroke-N5{stroke:#DEE1EB;} + .d2-2019577538 .stroke-N6{stroke:#EEF1F8;} + .d2-2019577538 .stroke-N7{stroke:#FFFFFF;} + .d2-2019577538 .stroke-B1{stroke:#0D32B2;} + .d2-2019577538 .stroke-B2{stroke:#0D32B2;} + .d2-2019577538 .stroke-B3{stroke:#E3E9FD;} + .d2-2019577538 .stroke-B4{stroke:#E3E9FD;} + .d2-2019577538 .stroke-B5{stroke:#EDF0FD;} + .d2-2019577538 .stroke-B6{stroke:#F7F8FE;} + .d2-2019577538 .stroke-AA2{stroke:#4A6FF3;} + .d2-2019577538 .stroke-AA4{stroke:#EDF0FD;} + .d2-2019577538 .stroke-AA5{stroke:#F7F8FE;} + .d2-2019577538 .stroke-AB4{stroke:#EDF0FD;} + .d2-2019577538 .stroke-AB5{stroke:#F7F8FE;} + .d2-2019577538 .background-color-N1{background-color:#0A0F25;} + .d2-2019577538 .background-color-N2{background-color:#676C7E;} + .d2-2019577538 .background-color-N3{background-color:#9499AB;} + .d2-2019577538 .background-color-N4{background-color:#CFD2DD;} + .d2-2019577538 .background-color-N5{background-color:#DEE1EB;} + .d2-2019577538 .background-color-N6{background-color:#EEF1F8;} + .d2-2019577538 .background-color-N7{background-color:#FFFFFF;} + .d2-2019577538 .background-color-B1{background-color:#0D32B2;} + .d2-2019577538 .background-color-B2{background-color:#0D32B2;} + .d2-2019577538 .background-color-B3{background-color:#E3E9FD;} + .d2-2019577538 .background-color-B4{background-color:#E3E9FD;} + .d2-2019577538 .background-color-B5{background-color:#EDF0FD;} + .d2-2019577538 .background-color-B6{background-color:#F7F8FE;} + .d2-2019577538 .background-color-AA2{background-color:#4A6FF3;} + .d2-2019577538 .background-color-AA4{background-color:#EDF0FD;} + .d2-2019577538 .background-color-AA5{background-color:#F7F8FE;} + .d2-2019577538 .background-color-AB4{background-color:#EDF0FD;} + .d2-2019577538 .background-color-AB5{background-color:#F7F8FE;} + .d2-2019577538 .color-N1{color:#0A0F25;} + .d2-2019577538 .color-N2{color:#676C7E;} + .d2-2019577538 .color-N3{color:#9499AB;} + .d2-2019577538 .color-N4{color:#CFD2DD;} + .d2-2019577538 .color-N5{color:#DEE1EB;} + .d2-2019577538 .color-N6{color:#EEF1F8;} + .d2-2019577538 .color-N7{color:#FFFFFF;} + .d2-2019577538 .color-B1{color:#0D32B2;} + .d2-2019577538 .color-B2{color:#0D32B2;} + .d2-2019577538 .color-B3{color:#E3E9FD;} + .d2-2019577538 .color-B4{color:#E3E9FD;} + .d2-2019577538 .color-B5{color:#EDF0FD;} + .d2-2019577538 .color-B6{color:#F7F8FE;} + .d2-2019577538 .color-AA2{color:#4A6FF3;} + .d2-2019577538 .color-AA4{color:#EDF0FD;} + .d2-2019577538 .color-AA5{color:#F7F8FE;} + .d2-2019577538 .color-AB4{color:#EDF0FD;} + .d2-2019577538 .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 @@ -104,7 +104,7 @@ - - - + + + \ No newline at end of file diff --git a/e2etests/testdata/regression/shaped_grid_positioning/dagre/board.exp.json b/e2etests/testdata/regression/shaped_grid_positioning/dagre/board.exp.json index 91e38cdb06..7e2a0dcade 100644 --- a/e2etests/testdata/regression/shaped_grid_positioning/dagre/board.exp.json +++ b/e2etests/testdata/regression/shaped_grid_positioning/dagre/board.exp.json @@ -8,10 +8,10 @@ "type": "oval", "pos": { "x": 0, - "y": 0 + "y": 74 }, - "width": 619, - "height": 619, + "width": 437, + "height": 437, "opacity": 1, "strokeDash": 0, "strokeWidth": 2, @@ -48,8 +48,8 @@ "id": "circle.a", "type": "rectangle", "pos": { - "x": 236, - "y": 223 + "x": 145, + "y": 206 }, "width": 53, "height": 66, @@ -89,8 +89,8 @@ "id": "circle.b", "type": "rectangle", "pos": { - "x": 329, - "y": 223 + "x": 238, + "y": 206 }, "width": 54, "height": 66, @@ -130,8 +130,8 @@ "id": "circle.c", "type": "rectangle", "pos": { - "x": 236, - "y": 329 + "x": 145, + "y": 312 }, "width": 53, "height": 66, @@ -171,8 +171,8 @@ "id": "circle.d", "type": "rectangle", "pos": { - "x": 329, - "y": 329 + "x": 238, + "y": 312 }, "width": 54, "height": 66, @@ -212,8 +212,8 @@ "id": "oval", "type": "oval", "pos": { - "x": 679, - "y": 103 + "x": 497, + "y": 86 }, "width": 619, "height": 413, @@ -253,8 +253,8 @@ "id": "oval.a", "type": "rectangle", "pos": { - "x": 915, - "y": 224 + "x": 733, + "y": 207 }, "width": 53, "height": 66, @@ -294,8 +294,8 @@ "id": "oval.b", "type": "rectangle", "pos": { - "x": 1008, - "y": 224 + "x": 826, + "y": 207 }, "width": 54, "height": 66, @@ -335,8 +335,8 @@ "id": "oval.c", "type": "rectangle", "pos": { - "x": 915, - "y": 330 + "x": 733, + "y": 313 }, "width": 53, "height": 66, @@ -376,8 +376,8 @@ "id": "oval.d", "type": "rectangle", "pos": { - "x": 1008, - "y": 330 + "x": 826, + "y": 313 }, "width": 54, "height": 66, @@ -417,8 +417,8 @@ "id": "diamond", "type": "diamond", "pos": { - "x": 1358, - "y": 18 + "x": 1176, + "y": 0 }, "width": 874, "height": 584, @@ -458,8 +458,8 @@ "id": "diamond.a", "type": "rectangle", "pos": { - "x": 1721, - "y": 224 + "x": 1539, + "y": 206 }, "width": 53, "height": 66, @@ -499,8 +499,8 @@ "id": "diamond.b", "type": "rectangle", "pos": { - "x": 1814, - "y": 224 + "x": 1632, + "y": 206 }, "width": 54, "height": 66, @@ -540,8 +540,8 @@ "id": "diamond.c", "type": "rectangle", "pos": { - "x": 1721, - "y": 330 + "x": 1539, + "y": 312 }, "width": 53, "height": 66, @@ -581,8 +581,8 @@ "id": "diamond.d", "type": "rectangle", "pos": { - "x": 1814, - "y": 330 + "x": 1632, + "y": 312 }, "width": 54, "height": 66, @@ -622,8 +622,8 @@ "id": "square", "type": "rectangle", "pos": { - "x": 2292, - "y": 91 + "x": 2110, + "y": 74 }, "width": 437, "height": 437, @@ -663,8 +663,8 @@ "id": "square.a", "type": "rectangle", "pos": { - "x": 2437, - "y": 223 + "x": 2255, + "y": 206 }, "width": 53, "height": 66, @@ -704,8 +704,8 @@ "id": "square.b", "type": "rectangle", "pos": { - "x": 2530, - "y": 223 + "x": 2348, + "y": 206 }, "width": 54, "height": 66, @@ -745,8 +745,8 @@ "id": "square.c", "type": "rectangle", "pos": { - "x": 2437, - "y": 329 + "x": 2255, + "y": 312 }, "width": 53, "height": 66, @@ -786,8 +786,8 @@ "id": "square.d", "type": "rectangle", "pos": { - "x": 2530, - "y": 329 + "x": 2348, + "y": 312 }, "width": 54, "height": 66, @@ -827,8 +827,8 @@ "id": "rect", "type": "rectangle", "pos": { - "x": 2789, - "y": 164 + "x": 2607, + "y": 146 }, "width": 437, "height": 292, @@ -868,8 +868,8 @@ "id": "rect.a", "type": "rectangle", "pos": { - "x": 2934, - "y": 224 + "x": 2752, + "y": 206 }, "width": 53, "height": 66, @@ -909,8 +909,8 @@ "id": "rect.b", "type": "rectangle", "pos": { - "x": 3027, - "y": 224 + "x": 2845, + "y": 206 }, "width": 54, "height": 66, @@ -950,8 +950,8 @@ "id": "rect.c", "type": "rectangle", "pos": { - "x": 2934, - "y": 330 + "x": 2752, + "y": 312 }, "width": 53, "height": 66, @@ -991,8 +991,8 @@ "id": "rect.d", "type": "rectangle", "pos": { - "x": 3027, - "y": 330 + "x": 2845, + "y": 312 }, "width": 54, "height": 66, @@ -1032,8 +1032,8 @@ "id": "cloud", "type": "cloud", "pos": { - "x": 3286, - "y": 43 + "x": 3104, + "y": 26 }, "width": 534, "height": 533, @@ -1074,8 +1074,8 @@ "id": "cloud.a", "type": "rectangle", "pos": { - "x": 3477, - "y": 321 + "x": 3295, + "y": 304 }, "width": 53, "height": 66, @@ -1115,8 +1115,8 @@ "id": "cloud.b", "type": "rectangle", "pos": { - "x": 3570, - "y": 321 + "x": 3388, + "y": 304 }, "width": 54, "height": 66, @@ -1156,8 +1156,8 @@ "id": "cloud.c", "type": "rectangle", "pos": { - "x": 3477, - "y": 427 + "x": 3295, + "y": 410 }, "width": 53, "height": 66, @@ -1197,8 +1197,8 @@ "id": "cloud.d", "type": "rectangle", "pos": { - "x": 3570, - "y": 427 + "x": 3388, + "y": 410 }, "width": 54, "height": 66, diff --git a/e2etests/testdata/regression/shaped_grid_positioning/dagre/sketch.exp.svg b/e2etests/testdata/regression/shaped_grid_positioning/dagre/sketch.exp.svg index 99053c4ed9..43cec8a336 100644 --- a/e2etests/testdata/regression/shaped_grid_positioning/dagre/sketch.exp.svg +++ b/e2etests/testdata/regression/shaped_grid_positioning/dagre/sketch.exp.svg @@ -1,16 +1,16 @@ -aaaaaaaaaaaaaaa aaaaaaaaaaaaaaaaaaaaaaaaaaaaaa aaaaaaaaaaaaaaaaaaaaaaaaaaaaaa aaaaaaaaaaaaaaaaaaaaaaaaaaaaaa aaaaaaaaaaaaaaaaaaaaaaaaaaaaaa aaaaaaaaaaaaaaaaaaaaaaaaaaaaaa aaaaaaaaaaaaaaaabcdabcdabcdabcdabcdabcd - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + .d2-3677269738 .fill-N1{fill:#0A0F25;} + .d2-3677269738 .fill-N2{fill:#676C7E;} + .d2-3677269738 .fill-N3{fill:#9499AB;} + .d2-3677269738 .fill-N4{fill:#CFD2DD;} + .d2-3677269738 .fill-N5{fill:#DEE1EB;} + .d2-3677269738 .fill-N6{fill:#EEF1F8;} + .d2-3677269738 .fill-N7{fill:#FFFFFF;} + .d2-3677269738 .fill-B1{fill:#0D32B2;} + .d2-3677269738 .fill-B2{fill:#0D32B2;} + .d2-3677269738 .fill-B3{fill:#E3E9FD;} + .d2-3677269738 .fill-B4{fill:#E3E9FD;} + .d2-3677269738 .fill-B5{fill:#EDF0FD;} + .d2-3677269738 .fill-B6{fill:#F7F8FE;} + .d2-3677269738 .fill-AA2{fill:#4A6FF3;} + .d2-3677269738 .fill-AA4{fill:#EDF0FD;} + .d2-3677269738 .fill-AA5{fill:#F7F8FE;} + .d2-3677269738 .fill-AB4{fill:#EDF0FD;} + .d2-3677269738 .fill-AB5{fill:#F7F8FE;} + .d2-3677269738 .stroke-N1{stroke:#0A0F25;} + .d2-3677269738 .stroke-N2{stroke:#676C7E;} + .d2-3677269738 .stroke-N3{stroke:#9499AB;} + .d2-3677269738 .stroke-N4{stroke:#CFD2DD;} + .d2-3677269738 .stroke-N5{stroke:#DEE1EB;} + .d2-3677269738 .stroke-N6{stroke:#EEF1F8;} + .d2-3677269738 .stroke-N7{stroke:#FFFFFF;} + .d2-3677269738 .stroke-B1{stroke:#0D32B2;} + .d2-3677269738 .stroke-B2{stroke:#0D32B2;} + .d2-3677269738 .stroke-B3{stroke:#E3E9FD;} + .d2-3677269738 .stroke-B4{stroke:#E3E9FD;} + .d2-3677269738 .stroke-B5{stroke:#EDF0FD;} + .d2-3677269738 .stroke-B6{stroke:#F7F8FE;} + .d2-3677269738 .stroke-AA2{stroke:#4A6FF3;} + .d2-3677269738 .stroke-AA4{stroke:#EDF0FD;} + .d2-3677269738 .stroke-AA5{stroke:#F7F8FE;} + .d2-3677269738 .stroke-AB4{stroke:#EDF0FD;} + .d2-3677269738 .stroke-AB5{stroke:#F7F8FE;} + .d2-3677269738 .background-color-N1{background-color:#0A0F25;} + .d2-3677269738 .background-color-N2{background-color:#676C7E;} + .d2-3677269738 .background-color-N3{background-color:#9499AB;} + .d2-3677269738 .background-color-N4{background-color:#CFD2DD;} + .d2-3677269738 .background-color-N5{background-color:#DEE1EB;} + .d2-3677269738 .background-color-N6{background-color:#EEF1F8;} + .d2-3677269738 .background-color-N7{background-color:#FFFFFF;} + .d2-3677269738 .background-color-B1{background-color:#0D32B2;} + .d2-3677269738 .background-color-B2{background-color:#0D32B2;} + .d2-3677269738 .background-color-B3{background-color:#E3E9FD;} + .d2-3677269738 .background-color-B4{background-color:#E3E9FD;} + .d2-3677269738 .background-color-B5{background-color:#EDF0FD;} + .d2-3677269738 .background-color-B6{background-color:#F7F8FE;} + .d2-3677269738 .background-color-AA2{background-color:#4A6FF3;} + .d2-3677269738 .background-color-AA4{background-color:#EDF0FD;} + .d2-3677269738 .background-color-AA5{background-color:#F7F8FE;} + .d2-3677269738 .background-color-AB4{background-color:#EDF0FD;} + .d2-3677269738 .background-color-AB5{background-color:#F7F8FE;} + .d2-3677269738 .color-N1{color:#0A0F25;} + .d2-3677269738 .color-N2{color:#676C7E;} + .d2-3677269738 .color-N3{color:#9499AB;} + .d2-3677269738 .color-N4{color:#CFD2DD;} + .d2-3677269738 .color-N5{color:#DEE1EB;} + .d2-3677269738 .color-N6{color:#EEF1F8;} + .d2-3677269738 .color-N7{color:#FFFFFF;} + .d2-3677269738 .color-B1{color:#0D32B2;} + .d2-3677269738 .color-B2{color:#0D32B2;} + .d2-3677269738 .color-B3{color:#E3E9FD;} + .d2-3677269738 .color-B4{color:#E3E9FD;} + .d2-3677269738 .color-B5{color:#EDF0FD;} + .d2-3677269738 .color-B6{color:#F7F8FE;} + .d2-3677269738 .color-AA2{color:#4A6FF3;} + .d2-3677269738 .color-AA4{color:#EDF0FD;} + .d2-3677269738 .color-AA5{color:#F7F8FE;} + .d2-3677269738 .color-AB4{color:#EDF0FD;} + .d2-3677269738 .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}]]>aaaaaaaaaaaaaaa aaaaaaaaaaaaaaaaaaaaaaaaaaaaaa aaaaaaaaaaaaaaaaaaaaaaaaaaaaaa aaaaaaaaaaaaaaaaaaaaaaaaaaaaaa aaaaaaaaaaaaaaaaaaaaaaaaaaaaaa aaaaaaaaaaaaaaaaaaaaaaaaaaaaaa aaaaaaaaaaaaaaaabcdabcdabcdabcdabcdabcd + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/e2etests/testdata/regression/shaped_grid_positioning/elk/board.exp.json b/e2etests/testdata/regression/shaped_grid_positioning/elk/board.exp.json index c8e57b5625..c03b7579ee 100644 --- a/e2etests/testdata/regression/shaped_grid_positioning/elk/board.exp.json +++ b/e2etests/testdata/regression/shaped_grid_positioning/elk/board.exp.json @@ -8,10 +8,10 @@ "type": "oval", "pos": { "x": 12, - "y": 12 + "y": 85 }, - "width": 619, - "height": 619, + "width": 437, + "height": 437, "opacity": 1, "strokeDash": 0, "strokeWidth": 2, @@ -48,8 +48,8 @@ "id": "circle.a", "type": "rectangle", "pos": { - "x": 248, - "y": 235 + "x": 157, + "y": 218 }, "width": 53, "height": 66, @@ -89,8 +89,8 @@ "id": "circle.b", "type": "rectangle", "pos": { - "x": 341, - "y": 235 + "x": 250, + "y": 218 }, "width": 54, "height": 66, @@ -130,8 +130,8 @@ "id": "circle.c", "type": "rectangle", "pos": { - "x": 248, - "y": 341 + "x": 157, + "y": 324 }, "width": 53, "height": 66, @@ -171,8 +171,8 @@ "id": "circle.d", "type": "rectangle", "pos": { - "x": 341, - "y": 341 + "x": 250, + "y": 324 }, "width": 54, "height": 66, @@ -212,8 +212,8 @@ "id": "oval", "type": "oval", "pos": { - "x": 651, - "y": 115 + "x": 469, + "y": 97 }, "width": 619, "height": 413, @@ -253,8 +253,8 @@ "id": "oval.a", "type": "rectangle", "pos": { - "x": 887, - "y": 236 + "x": 705, + "y": 218 }, "width": 53, "height": 66, @@ -294,8 +294,8 @@ "id": "oval.b", "type": "rectangle", "pos": { - "x": 980, - "y": 236 + "x": 798, + "y": 218 }, "width": 54, "height": 66, @@ -335,8 +335,8 @@ "id": "oval.c", "type": "rectangle", "pos": { - "x": 887, - "y": 342 + "x": 705, + "y": 324 }, "width": 53, "height": 66, @@ -376,8 +376,8 @@ "id": "oval.d", "type": "rectangle", "pos": { - "x": 980, - "y": 342 + "x": 798, + "y": 324 }, "width": 54, "height": 66, @@ -417,8 +417,8 @@ "id": "diamond", "type": "diamond", "pos": { - "x": 1290, - "y": 29 + "x": 1108, + "y": 12 }, "width": 874, "height": 584, @@ -458,8 +458,8 @@ "id": "diamond.a", "type": "rectangle", "pos": { - "x": 1653, - "y": 235 + "x": 1471, + "y": 218 }, "width": 53, "height": 66, @@ -499,8 +499,8 @@ "id": "diamond.b", "type": "rectangle", "pos": { - "x": 1746, - "y": 235 + "x": 1564, + "y": 218 }, "width": 54, "height": 66, @@ -540,8 +540,8 @@ "id": "diamond.c", "type": "rectangle", "pos": { - "x": 1653, - "y": 341 + "x": 1471, + "y": 324 }, "width": 53, "height": 66, @@ -581,8 +581,8 @@ "id": "diamond.d", "type": "rectangle", "pos": { - "x": 1746, - "y": 341 + "x": 1564, + "y": 324 }, "width": 54, "height": 66, @@ -622,8 +622,8 @@ "id": "square", "type": "rectangle", "pos": { - "x": 2184, - "y": 103 + "x": 2002, + "y": 85 }, "width": 437, "height": 437, @@ -663,8 +663,8 @@ "id": "square.a", "type": "rectangle", "pos": { - "x": 2329, - "y": 235 + "x": 2147, + "y": 218 }, "width": 53, "height": 66, @@ -704,8 +704,8 @@ "id": "square.b", "type": "rectangle", "pos": { - "x": 2422, - "y": 235 + "x": 2240, + "y": 218 }, "width": 54, "height": 66, @@ -745,8 +745,8 @@ "id": "square.c", "type": "rectangle", "pos": { - "x": 2329, - "y": 341 + "x": 2147, + "y": 324 }, "width": 53, "height": 66, @@ -786,8 +786,8 @@ "id": "square.d", "type": "rectangle", "pos": { - "x": 2422, - "y": 341 + "x": 2240, + "y": 324 }, "width": 54, "height": 66, @@ -827,8 +827,8 @@ "id": "rect", "type": "rectangle", "pos": { - "x": 2641, - "y": 175 + "x": 2459, + "y": 158 }, "width": 437, "height": 292, @@ -868,8 +868,8 @@ "id": "rect.a", "type": "rectangle", "pos": { - "x": 2786, - "y": 235 + "x": 2604, + "y": 218 }, "width": 53, "height": 66, @@ -909,8 +909,8 @@ "id": "rect.b", "type": "rectangle", "pos": { - "x": 2879, - "y": 235 + "x": 2697, + "y": 218 }, "width": 54, "height": 66, @@ -950,8 +950,8 @@ "id": "rect.c", "type": "rectangle", "pos": { - "x": 2786, - "y": 341 + "x": 2604, + "y": 324 }, "width": 53, "height": 66, @@ -991,8 +991,8 @@ "id": "rect.d", "type": "rectangle", "pos": { - "x": 2879, - "y": 341 + "x": 2697, + "y": 324 }, "width": 54, "height": 66, @@ -1032,8 +1032,8 @@ "id": "cloud", "type": "cloud", "pos": { - "x": 3098, - "y": 55 + "x": 2916, + "y": 37 }, "width": 534, "height": 533, @@ -1074,8 +1074,8 @@ "id": "cloud.a", "type": "rectangle", "pos": { - "x": 3289, - "y": 333 + "x": 3107, + "y": 315 }, "width": 53, "height": 66, @@ -1115,8 +1115,8 @@ "id": "cloud.b", "type": "rectangle", "pos": { - "x": 3382, - "y": 333 + "x": 3200, + "y": 315 }, "width": 54, "height": 66, @@ -1156,8 +1156,8 @@ "id": "cloud.c", "type": "rectangle", "pos": { - "x": 3289, - "y": 439 + "x": 3107, + "y": 421 }, "width": 53, "height": 66, @@ -1197,8 +1197,8 @@ "id": "cloud.d", "type": "rectangle", "pos": { - "x": 3382, - "y": 439 + "x": 3200, + "y": 421 }, "width": 54, "height": 66, diff --git a/e2etests/testdata/regression/shaped_grid_positioning/elk/sketch.exp.svg b/e2etests/testdata/regression/shaped_grid_positioning/elk/sketch.exp.svg index 315ee4ac17..1a54c7b3fc 100644 --- a/e2etests/testdata/regression/shaped_grid_positioning/elk/sketch.exp.svg +++ b/e2etests/testdata/regression/shaped_grid_positioning/elk/sketch.exp.svg @@ -1,16 +1,16 @@ -aaaaaaaaaaaaaaa aaaaaaaaaaaaaaaaaaaaaaaaaaaaaa aaaaaaaaaaaaaaaaaaaaaaaaaaaaaa aaaaaaaaaaaaaaaaaaaaaaaaaaaaaa aaaaaaaaaaaaaaaaaaaaaaaaaaaaaa aaaaaaaaaaaaaaaaaaaaaaaaaaaaaa aaaaaaaaaaaaaaaabcdabcdabcdabcdabcdabcd - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + .d2-3582695840 .fill-N1{fill:#0A0F25;} + .d2-3582695840 .fill-N2{fill:#676C7E;} + .d2-3582695840 .fill-N3{fill:#9499AB;} + .d2-3582695840 .fill-N4{fill:#CFD2DD;} + .d2-3582695840 .fill-N5{fill:#DEE1EB;} + .d2-3582695840 .fill-N6{fill:#EEF1F8;} + .d2-3582695840 .fill-N7{fill:#FFFFFF;} + .d2-3582695840 .fill-B1{fill:#0D32B2;} + .d2-3582695840 .fill-B2{fill:#0D32B2;} + .d2-3582695840 .fill-B3{fill:#E3E9FD;} + .d2-3582695840 .fill-B4{fill:#E3E9FD;} + .d2-3582695840 .fill-B5{fill:#EDF0FD;} + .d2-3582695840 .fill-B6{fill:#F7F8FE;} + .d2-3582695840 .fill-AA2{fill:#4A6FF3;} + .d2-3582695840 .fill-AA4{fill:#EDF0FD;} + .d2-3582695840 .fill-AA5{fill:#F7F8FE;} + .d2-3582695840 .fill-AB4{fill:#EDF0FD;} + .d2-3582695840 .fill-AB5{fill:#F7F8FE;} + .d2-3582695840 .stroke-N1{stroke:#0A0F25;} + .d2-3582695840 .stroke-N2{stroke:#676C7E;} + .d2-3582695840 .stroke-N3{stroke:#9499AB;} + .d2-3582695840 .stroke-N4{stroke:#CFD2DD;} + .d2-3582695840 .stroke-N5{stroke:#DEE1EB;} + .d2-3582695840 .stroke-N6{stroke:#EEF1F8;} + .d2-3582695840 .stroke-N7{stroke:#FFFFFF;} + .d2-3582695840 .stroke-B1{stroke:#0D32B2;} + .d2-3582695840 .stroke-B2{stroke:#0D32B2;} + .d2-3582695840 .stroke-B3{stroke:#E3E9FD;} + .d2-3582695840 .stroke-B4{stroke:#E3E9FD;} + .d2-3582695840 .stroke-B5{stroke:#EDF0FD;} + .d2-3582695840 .stroke-B6{stroke:#F7F8FE;} + .d2-3582695840 .stroke-AA2{stroke:#4A6FF3;} + .d2-3582695840 .stroke-AA4{stroke:#EDF0FD;} + .d2-3582695840 .stroke-AA5{stroke:#F7F8FE;} + .d2-3582695840 .stroke-AB4{stroke:#EDF0FD;} + .d2-3582695840 .stroke-AB5{stroke:#F7F8FE;} + .d2-3582695840 .background-color-N1{background-color:#0A0F25;} + .d2-3582695840 .background-color-N2{background-color:#676C7E;} + .d2-3582695840 .background-color-N3{background-color:#9499AB;} + .d2-3582695840 .background-color-N4{background-color:#CFD2DD;} + .d2-3582695840 .background-color-N5{background-color:#DEE1EB;} + .d2-3582695840 .background-color-N6{background-color:#EEF1F8;} + .d2-3582695840 .background-color-N7{background-color:#FFFFFF;} + .d2-3582695840 .background-color-B1{background-color:#0D32B2;} + .d2-3582695840 .background-color-B2{background-color:#0D32B2;} + .d2-3582695840 .background-color-B3{background-color:#E3E9FD;} + .d2-3582695840 .background-color-B4{background-color:#E3E9FD;} + .d2-3582695840 .background-color-B5{background-color:#EDF0FD;} + .d2-3582695840 .background-color-B6{background-color:#F7F8FE;} + .d2-3582695840 .background-color-AA2{background-color:#4A6FF3;} + .d2-3582695840 .background-color-AA4{background-color:#EDF0FD;} + .d2-3582695840 .background-color-AA5{background-color:#F7F8FE;} + .d2-3582695840 .background-color-AB4{background-color:#EDF0FD;} + .d2-3582695840 .background-color-AB5{background-color:#F7F8FE;} + .d2-3582695840 .color-N1{color:#0A0F25;} + .d2-3582695840 .color-N2{color:#676C7E;} + .d2-3582695840 .color-N3{color:#9499AB;} + .d2-3582695840 .color-N4{color:#CFD2DD;} + .d2-3582695840 .color-N5{color:#DEE1EB;} + .d2-3582695840 .color-N6{color:#EEF1F8;} + .d2-3582695840 .color-N7{color:#FFFFFF;} + .d2-3582695840 .color-B1{color:#0D32B2;} + .d2-3582695840 .color-B2{color:#0D32B2;} + .d2-3582695840 .color-B3{color:#E3E9FD;} + .d2-3582695840 .color-B4{color:#E3E9FD;} + .d2-3582695840 .color-B5{color:#EDF0FD;} + .d2-3582695840 .color-B6{color:#F7F8FE;} + .d2-3582695840 .color-AA2{color:#4A6FF3;} + .d2-3582695840 .color-AA4{color:#EDF0FD;} + .d2-3582695840 .color-AA5{color:#F7F8FE;} + .d2-3582695840 .color-AB4{color:#EDF0FD;} + .d2-3582695840 .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}]]>aaaaaaaaaaaaaaa aaaaaaaaaaaaaaaaaaaaaaaaaaaaaa aaaaaaaaaaaaaaaaaaaaaaaaaaaaaa aaaaaaaaaaaaaaaaaaaaaaaaaaaaaa aaaaaaaaaaaaaaaaaaaaaaaaaaaaaa aaaaaaaaaaaaaaaaaaaaaaaaaaaaaa aaaaaaaaaaaaaaaabcdabcdabcdabcdabcdabcd + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/e2etests/testdata/stable/all_shapes/dagre/board.exp.json b/e2etests/testdata/stable/all_shapes/dagre/board.exp.json index 27bd77abee..1472a44c72 100644 --- a/e2etests/testdata/stable/all_shapes/dagre/board.exp.json +++ b/e2etests/testdata/stable/all_shapes/dagre/board.exp.json @@ -581,11 +581,11 @@ "id": "circle", "type": "oval", "pos": { - "x": 819, - "y": 394 + "x": 820, + "y": 395 }, - "width": 103, - "height": 103, + "width": 101, + "height": 101, "opacity": 1, "strokeDash": 0, "strokeWidth": 2, @@ -1160,11 +1160,11 @@ }, { "x": 870, - "y": 347.6000061035156 + "y": 347.79998779296875 }, { "x": 870, - "y": 394 + "y": 395 } ], "isCurve": true, diff --git a/e2etests/testdata/stable/all_shapes/dagre/sketch.exp.svg b/e2etests/testdata/stable/all_shapes/dagre/sketch.exp.svg index 1c081ec0a0..4533fd7041 100644 --- a/e2etests/testdata/stable/all_shapes/dagre/sketch.exp.svg +++ b/e2etests/testdata/stable/all_shapes/dagre/sketch.exp.svg @@ -1,9 +1,9 @@ -rectanglesquarepageparallelogramdocumentcylinderqueuepackagestepcalloutstored_datapersondiamondovalcirclehexagoncloud + .d2-251711305 .fill-N1{fill:#0A0F25;} + .d2-251711305 .fill-N2{fill:#676C7E;} + .d2-251711305 .fill-N3{fill:#9499AB;} + .d2-251711305 .fill-N4{fill:#CFD2DD;} + .d2-251711305 .fill-N5{fill:#DEE1EB;} + .d2-251711305 .fill-N6{fill:#EEF1F8;} + .d2-251711305 .fill-N7{fill:#FFFFFF;} + .d2-251711305 .fill-B1{fill:#0D32B2;} + .d2-251711305 .fill-B2{fill:#0D32B2;} + .d2-251711305 .fill-B3{fill:#E3E9FD;} + .d2-251711305 .fill-B4{fill:#E3E9FD;} + .d2-251711305 .fill-B5{fill:#EDF0FD;} + .d2-251711305 .fill-B6{fill:#F7F8FE;} + .d2-251711305 .fill-AA2{fill:#4A6FF3;} + .d2-251711305 .fill-AA4{fill:#EDF0FD;} + .d2-251711305 .fill-AA5{fill:#F7F8FE;} + .d2-251711305 .fill-AB4{fill:#EDF0FD;} + .d2-251711305 .fill-AB5{fill:#F7F8FE;} + .d2-251711305 .stroke-N1{stroke:#0A0F25;} + .d2-251711305 .stroke-N2{stroke:#676C7E;} + .d2-251711305 .stroke-N3{stroke:#9499AB;} + .d2-251711305 .stroke-N4{stroke:#CFD2DD;} + .d2-251711305 .stroke-N5{stroke:#DEE1EB;} + .d2-251711305 .stroke-N6{stroke:#EEF1F8;} + .d2-251711305 .stroke-N7{stroke:#FFFFFF;} + .d2-251711305 .stroke-B1{stroke:#0D32B2;} + .d2-251711305 .stroke-B2{stroke:#0D32B2;} + .d2-251711305 .stroke-B3{stroke:#E3E9FD;} + .d2-251711305 .stroke-B4{stroke:#E3E9FD;} + .d2-251711305 .stroke-B5{stroke:#EDF0FD;} + .d2-251711305 .stroke-B6{stroke:#F7F8FE;} + .d2-251711305 .stroke-AA2{stroke:#4A6FF3;} + .d2-251711305 .stroke-AA4{stroke:#EDF0FD;} + .d2-251711305 .stroke-AA5{stroke:#F7F8FE;} + .d2-251711305 .stroke-AB4{stroke:#EDF0FD;} + .d2-251711305 .stroke-AB5{stroke:#F7F8FE;} + .d2-251711305 .background-color-N1{background-color:#0A0F25;} + .d2-251711305 .background-color-N2{background-color:#676C7E;} + .d2-251711305 .background-color-N3{background-color:#9499AB;} + .d2-251711305 .background-color-N4{background-color:#CFD2DD;} + .d2-251711305 .background-color-N5{background-color:#DEE1EB;} + .d2-251711305 .background-color-N6{background-color:#EEF1F8;} + .d2-251711305 .background-color-N7{background-color:#FFFFFF;} + .d2-251711305 .background-color-B1{background-color:#0D32B2;} + .d2-251711305 .background-color-B2{background-color:#0D32B2;} + .d2-251711305 .background-color-B3{background-color:#E3E9FD;} + .d2-251711305 .background-color-B4{background-color:#E3E9FD;} + .d2-251711305 .background-color-B5{background-color:#EDF0FD;} + .d2-251711305 .background-color-B6{background-color:#F7F8FE;} + .d2-251711305 .background-color-AA2{background-color:#4A6FF3;} + .d2-251711305 .background-color-AA4{background-color:#EDF0FD;} + .d2-251711305 .background-color-AA5{background-color:#F7F8FE;} + .d2-251711305 .background-color-AB4{background-color:#EDF0FD;} + .d2-251711305 .background-color-AB5{background-color:#F7F8FE;} + .d2-251711305 .color-N1{color:#0A0F25;} + .d2-251711305 .color-N2{color:#676C7E;} + .d2-251711305 .color-N3{color:#9499AB;} + .d2-251711305 .color-N4{color:#CFD2DD;} + .d2-251711305 .color-N5{color:#DEE1EB;} + .d2-251711305 .color-N6{color:#EEF1F8;} + .d2-251711305 .color-N7{color:#FFFFFF;} + .d2-251711305 .color-B1{color:#0D32B2;} + .d2-251711305 .color-B2{color:#0D32B2;} + .d2-251711305 .color-B3{color:#E3E9FD;} + .d2-251711305 .color-B4{color:#E3E9FD;} + .d2-251711305 .color-B5{color:#EDF0FD;} + .d2-251711305 .color-B6{color:#F7F8FE;} + .d2-251711305 .color-AA2{color:#4A6FF3;} + .d2-251711305 .color-AA4{color:#EDF0FD;} + .d2-251711305 .color-AA5{color:#F7F8FE;} + .d2-251711305 .color-AB4{color:#EDF0FD;} + .d2-251711305 .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}]]>rectanglesquarepageparallelogramdocumentcylinderqueuepackagestepcalloutstored_datapersondiamondovalcirclehexagoncloud diff --git a/e2etests/testdata/stable/all_shapes/elk/board.exp.json b/e2etests/testdata/stable/all_shapes/elk/board.exp.json index 023fcf2347..b668b6f8ce 100644 --- a/e2etests/testdata/stable/all_shapes/elk/board.exp.json +++ b/e2etests/testdata/stable/all_shapes/elk/board.exp.json @@ -581,11 +581,11 @@ "id": "circle", "type": "oval", "pos": { - "x": 670, + "x": 671, "y": 338 }, - "width": 103, - "height": 103, + "width": 101, + "height": 101, "opacity": 1, "strokeDash": 0, "strokeWidth": 2, diff --git a/e2etests/testdata/stable/all_shapes/elk/sketch.exp.svg b/e2etests/testdata/stable/all_shapes/elk/sketch.exp.svg index db7eb55c1a..2e64db8256 100644 --- a/e2etests/testdata/stable/all_shapes/elk/sketch.exp.svg +++ b/e2etests/testdata/stable/all_shapes/elk/sketch.exp.svg @@ -1,9 +1,9 @@ -rectanglesquarepageparallelogramdocumentcylinderqueuepackagestepcalloutstored_datapersondiamondovalcirclehexagoncloud + .d2-916378773 .fill-N1{fill:#0A0F25;} + .d2-916378773 .fill-N2{fill:#676C7E;} + .d2-916378773 .fill-N3{fill:#9499AB;} + .d2-916378773 .fill-N4{fill:#CFD2DD;} + .d2-916378773 .fill-N5{fill:#DEE1EB;} + .d2-916378773 .fill-N6{fill:#EEF1F8;} + .d2-916378773 .fill-N7{fill:#FFFFFF;} + .d2-916378773 .fill-B1{fill:#0D32B2;} + .d2-916378773 .fill-B2{fill:#0D32B2;} + .d2-916378773 .fill-B3{fill:#E3E9FD;} + .d2-916378773 .fill-B4{fill:#E3E9FD;} + .d2-916378773 .fill-B5{fill:#EDF0FD;} + .d2-916378773 .fill-B6{fill:#F7F8FE;} + .d2-916378773 .fill-AA2{fill:#4A6FF3;} + .d2-916378773 .fill-AA4{fill:#EDF0FD;} + .d2-916378773 .fill-AA5{fill:#F7F8FE;} + .d2-916378773 .fill-AB4{fill:#EDF0FD;} + .d2-916378773 .fill-AB5{fill:#F7F8FE;} + .d2-916378773 .stroke-N1{stroke:#0A0F25;} + .d2-916378773 .stroke-N2{stroke:#676C7E;} + .d2-916378773 .stroke-N3{stroke:#9499AB;} + .d2-916378773 .stroke-N4{stroke:#CFD2DD;} + .d2-916378773 .stroke-N5{stroke:#DEE1EB;} + .d2-916378773 .stroke-N6{stroke:#EEF1F8;} + .d2-916378773 .stroke-N7{stroke:#FFFFFF;} + .d2-916378773 .stroke-B1{stroke:#0D32B2;} + .d2-916378773 .stroke-B2{stroke:#0D32B2;} + .d2-916378773 .stroke-B3{stroke:#E3E9FD;} + .d2-916378773 .stroke-B4{stroke:#E3E9FD;} + .d2-916378773 .stroke-B5{stroke:#EDF0FD;} + .d2-916378773 .stroke-B6{stroke:#F7F8FE;} + .d2-916378773 .stroke-AA2{stroke:#4A6FF3;} + .d2-916378773 .stroke-AA4{stroke:#EDF0FD;} + .d2-916378773 .stroke-AA5{stroke:#F7F8FE;} + .d2-916378773 .stroke-AB4{stroke:#EDF0FD;} + .d2-916378773 .stroke-AB5{stroke:#F7F8FE;} + .d2-916378773 .background-color-N1{background-color:#0A0F25;} + .d2-916378773 .background-color-N2{background-color:#676C7E;} + .d2-916378773 .background-color-N3{background-color:#9499AB;} + .d2-916378773 .background-color-N4{background-color:#CFD2DD;} + .d2-916378773 .background-color-N5{background-color:#DEE1EB;} + .d2-916378773 .background-color-N6{background-color:#EEF1F8;} + .d2-916378773 .background-color-N7{background-color:#FFFFFF;} + .d2-916378773 .background-color-B1{background-color:#0D32B2;} + .d2-916378773 .background-color-B2{background-color:#0D32B2;} + .d2-916378773 .background-color-B3{background-color:#E3E9FD;} + .d2-916378773 .background-color-B4{background-color:#E3E9FD;} + .d2-916378773 .background-color-B5{background-color:#EDF0FD;} + .d2-916378773 .background-color-B6{background-color:#F7F8FE;} + .d2-916378773 .background-color-AA2{background-color:#4A6FF3;} + .d2-916378773 .background-color-AA4{background-color:#EDF0FD;} + .d2-916378773 .background-color-AA5{background-color:#F7F8FE;} + .d2-916378773 .background-color-AB4{background-color:#EDF0FD;} + .d2-916378773 .background-color-AB5{background-color:#F7F8FE;} + .d2-916378773 .color-N1{color:#0A0F25;} + .d2-916378773 .color-N2{color:#676C7E;} + .d2-916378773 .color-N3{color:#9499AB;} + .d2-916378773 .color-N4{color:#CFD2DD;} + .d2-916378773 .color-N5{color:#DEE1EB;} + .d2-916378773 .color-N6{color:#EEF1F8;} + .d2-916378773 .color-N7{color:#FFFFFF;} + .d2-916378773 .color-B1{color:#0D32B2;} + .d2-916378773 .color-B2{color:#0D32B2;} + .d2-916378773 .color-B3{color:#E3E9FD;} + .d2-916378773 .color-B4{color:#E3E9FD;} + .d2-916378773 .color-B5{color:#EDF0FD;} + .d2-916378773 .color-B6{color:#F7F8FE;} + .d2-916378773 .color-AA2{color:#4A6FF3;} + .d2-916378773 .color-AA4{color:#EDF0FD;} + .d2-916378773 .color-AA5{color:#F7F8FE;} + .d2-916378773 .color-AB4{color:#EDF0FD;} + .d2-916378773 .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}]]>rectanglesquarepageparallelogramdocumentcylinderqueuepackagestepcalloutstored_datapersondiamondovalcirclehexagoncloud @@ -105,7 +105,7 @@ - + \ No newline at end of file diff --git a/e2etests/testdata/stable/all_shapes_link/dagre/board.exp.json b/e2etests/testdata/stable/all_shapes_link/dagre/board.exp.json index b3343b5448..51dda2ed6f 100644 --- a/e2etests/testdata/stable/all_shapes_link/dagre/board.exp.json +++ b/e2etests/testdata/stable/all_shapes_link/dagre/board.exp.json @@ -7,7 +7,7 @@ "id": "linked", "type": "rectangle", "pos": { - "x": 90, + "x": 10, "y": 20 }, "width": 1167, @@ -51,7 +51,7 @@ "linked" ], "pos": { - "x": 120, + "x": 40, "y": 63 }, "width": 111, @@ -95,7 +95,7 @@ "linked" ], "pos": { - "x": 129, + "x": 49, "y": 242 }, "width": 94, @@ -139,7 +139,7 @@ "linked" ], "pos": { - "x": 136, + "x": 56, "y": 452 }, "width": 79, @@ -183,7 +183,7 @@ "linked" ], "pos": { - "x": 291, + "x": 211, "y": 63 }, "width": 196, @@ -227,7 +227,7 @@ "linked" ], "pos": { - "x": 331, + "x": 251, "y": 251 }, "width": 117, @@ -271,7 +271,7 @@ "linked" ], "pos": { - "x": 337, + "x": 257, "y": 436 }, "width": 104, @@ -315,7 +315,7 @@ "linked" ], "pos": { - "x": 547, + "x": 467, "y": 63 }, "width": 141, @@ -359,7 +359,7 @@ "linked" ], "pos": { - "x": 566, + "x": 486, "y": 253 }, "width": 103, @@ -403,7 +403,7 @@ "linked" ], "pos": { - "x": 560, + "x": 480, "y": 445 }, "width": 116, @@ -447,7 +447,7 @@ "linked" ], "pos": { - "x": 757, + "x": 677, "y": 51 }, "width": 95, @@ -491,7 +491,7 @@ "linked" ], "pos": { - "x": 729, + "x": 649, "y": 256 }, "width": 151, @@ -535,7 +535,7 @@ "linked" ], "pos": { - "x": 773, + "x": 693, "y": 462 }, "width": 63, @@ -579,7 +579,7 @@ "linked" ], "pos": { - "x": 912, + "x": 832, "y": 50 }, "width": 156, @@ -623,7 +623,7 @@ "linked" ], "pos": { - "x": 942, + "x": 862, "y": 254 }, "width": 97, @@ -667,11 +667,11 @@ "linked" ], "pos": { - "x": 939, - "y": 444 + "x": 860, + "y": 445 }, - "width": 103, - "height": 103, + "width": 101, + "height": 101, "opacity": 1, "strokeDash": 0, "strokeWidth": 2, @@ -711,7 +711,7 @@ "linked" ], "pos": { - "x": 1099, + "x": 1019, "y": 255 }, "width": 128, @@ -755,7 +755,7 @@ "linked" ], "pos": { - "x": 1111, + "x": 1031, "y": 453 }, "width": 104, @@ -800,8 +800,8 @@ "x": 10, "y": 724 }, - "width": 1393, - "height": 626, + "width": 1167, + "height": 564, "opacity": 1, "strokeDash": 0, "strokeWidth": 2, @@ -844,7 +844,7 @@ "x": 40, "y": 767 }, - "width": 143, + "width": 111, "height": 66, "opacity": 1, "strokeDash": 0, @@ -888,8 +888,8 @@ "x": 49, "y": 946 }, - "width": 126, - "height": 126, + "width": 94, + "height": 94, "opacity": 1, "strokeDash": 0, "strokeWidth": 2, @@ -930,9 +930,9 @@ ], "pos": { "x": 56, - "y": 1203 + "y": 1156 }, - "width": 111, + "width": 79, "height": 87, "opacity": 1, "strokeDash": 0, @@ -973,10 +973,10 @@ "tooltipped" ], "pos": { - "x": 243, + "x": 211, "y": 767 }, - "width": 228, + "width": 196, "height": 66, "opacity": 1, "strokeDash": 0, @@ -1017,10 +1017,10 @@ "tooltipped" ], "pos": { - "x": 283, - "y": 971 + "x": 251, + "y": 955 }, - "width": 149, + "width": 117, "height": 76, "opacity": 1, "strokeDash": 0, @@ -1061,10 +1061,10 @@ "tooltipped" ], "pos": { - "x": 289, - "y": 1187 + "x": 257, + "y": 1140 }, - "width": 136, + "width": 104, "height": 118, "opacity": 1, "strokeDash": 0, @@ -1105,10 +1105,10 @@ "tooltipped" ], "pos": { - "x": 531, + "x": 467, "y": 767 }, - "width": 173, + "width": 141, "height": 66, "opacity": 1, "strokeDash": 0, @@ -1149,10 +1149,10 @@ "tooltipped" ], "pos": { - "x": 550, - "y": 973 + "x": 486, + "y": 957 }, - "width": 135, + "width": 103, "height": 73, "opacity": 1, "strokeDash": 0, @@ -1193,10 +1193,10 @@ "tooltipped" ], "pos": { - "x": 544, - "y": 1196 + "x": 480, + "y": 1149 }, - "width": 148, + "width": 116, "height": 101, "opacity": 1, "strokeDash": 0, @@ -1237,10 +1237,10 @@ "tooltipped" ], "pos": { - "x": 773, + "x": 677, "y": 755 }, - "width": 127, + "width": 95, "height": 91, "opacity": 1, "strokeDash": 0, @@ -1281,10 +1281,10 @@ "tooltipped" ], "pos": { - "x": 745, - "y": 976 + "x": 649, + "y": 960 }, - "width": 183, + "width": 151, "height": 66, "opacity": 1, "strokeDash": 0, @@ -1325,10 +1325,10 @@ "tooltipped" ], "pos": { - "x": 789, - "y": 1213 + "x": 693, + "y": 1166 }, - "width": 95, + "width": 63, "height": 66, "opacity": 1, "strokeDash": 0, @@ -1369,10 +1369,10 @@ "tooltipped" ], "pos": { - "x": 960, + "x": 832, "y": 754 }, - "width": 220, + "width": 156, "height": 92, "opacity": 1, "strokeDash": 0, @@ -1413,10 +1413,10 @@ "tooltipped" ], "pos": { - "x": 1003, - "y": 974 + "x": 862, + "y": 958 }, - "width": 134, + "width": 97, "height": 70, "opacity": 1, "strokeDash": 0, @@ -1457,11 +1457,11 @@ "tooltipped" ], "pos": { - "x": 996, - "y": 1172 + "x": 860, + "y": 1149 }, - "width": 148, - "height": 148, + "width": 101, + "height": 101, "opacity": 1, "strokeDash": 0, "strokeWidth": 2, @@ -1501,10 +1501,10 @@ "tooltipped" ], "pos": { - "x": 1197, - "y": 975 + "x": 1019, + "y": 959 }, - "width": 176, + "width": 128, "height": 69, "opacity": 1, "strokeDash": 0, @@ -1545,10 +1545,10 @@ "tooltipped" ], "pos": { - "x": 1214, - "y": 1204 + "x": 1031, + "y": 1157 }, - "width": 143, + "width": 104, "height": 84, "opacity": 1, "strokeDash": 0, @@ -1588,10 +1588,10 @@ "type": "rectangle", "pos": { "x": 10, - "y": 1490 + "y": 1428 }, - "width": 1393, - "height": 626, + "width": 1167, + "height": 564, "opacity": 1, "strokeDash": 0, "strokeWidth": 2, @@ -1633,9 +1633,9 @@ ], "pos": { "x": 40, - "y": 1533 + "y": 1471 }, - "width": 143, + "width": 111, "height": 66, "opacity": 1, "strokeDash": 0, @@ -1678,10 +1678,10 @@ ], "pos": { "x": 49, - "y": 1712 + "y": 1650 }, - "width": 126, - "height": 126, + "width": 94, + "height": 94, "opacity": 1, "strokeDash": 0, "strokeWidth": 2, @@ -1723,9 +1723,9 @@ ], "pos": { "x": 56, - "y": 1969 + "y": 1860 }, - "width": 111, + "width": 79, "height": 87, "opacity": 1, "strokeDash": 0, @@ -1767,10 +1767,10 @@ "tooltipped" ], "pos": { - "x": 243, - "y": 1533 + "x": 211, + "y": 1471 }, - "width": 228, + "width": 196, "height": 66, "opacity": 1, "strokeDash": 0, @@ -1812,10 +1812,10 @@ "tooltipped" ], "pos": { - "x": 283, - "y": 1737 + "x": 251, + "y": 1659 }, - "width": 149, + "width": 117, "height": 76, "opacity": 1, "strokeDash": 0, @@ -1857,10 +1857,10 @@ "tooltipped" ], "pos": { - "x": 289, - "y": 1953 + "x": 257, + "y": 1844 }, - "width": 136, + "width": 104, "height": 118, "opacity": 1, "strokeDash": 0, @@ -1902,10 +1902,10 @@ "tooltipped" ], "pos": { - "x": 531, - "y": 1533 + "x": 467, + "y": 1471 }, - "width": 173, + "width": 141, "height": 66, "opacity": 1, "strokeDash": 0, @@ -1947,10 +1947,10 @@ "tooltipped" ], "pos": { - "x": 550, - "y": 1739 + "x": 486, + "y": 1661 }, - "width": 135, + "width": 103, "height": 73, "opacity": 1, "strokeDash": 0, @@ -1992,10 +1992,10 @@ "tooltipped" ], "pos": { - "x": 544, - "y": 1962 + "x": 480, + "y": 1853 }, - "width": 148, + "width": 116, "height": 101, "opacity": 1, "strokeDash": 0, @@ -2037,10 +2037,10 @@ "tooltipped" ], "pos": { - "x": 773, - "y": 1521 + "x": 677, + "y": 1459 }, - "width": 127, + "width": 95, "height": 91, "opacity": 1, "strokeDash": 0, @@ -2082,10 +2082,10 @@ "tooltipped" ], "pos": { - "x": 745, - "y": 1742 + "x": 649, + "y": 1664 }, - "width": 183, + "width": 151, "height": 66, "opacity": 1, "strokeDash": 0, @@ -2127,10 +2127,10 @@ "tooltipped" ], "pos": { - "x": 789, - "y": 1979 + "x": 693, + "y": 1870 }, - "width": 95, + "width": 63, "height": 66, "opacity": 1, "strokeDash": 0, @@ -2172,10 +2172,10 @@ "tooltipped" ], "pos": { - "x": 960, - "y": 1520 + "x": 832, + "y": 1458 }, - "width": 220, + "width": 156, "height": 92, "opacity": 1, "strokeDash": 0, @@ -2217,10 +2217,10 @@ "tooltipped" ], "pos": { - "x": 1003, - "y": 1740 + "x": 862, + "y": 1662 }, - "width": 134, + "width": 97, "height": 70, "opacity": 1, "strokeDash": 0, @@ -2262,11 +2262,11 @@ "tooltipped" ], "pos": { - "x": 996, - "y": 1938 + "x": 860, + "y": 1853 }, - "width": 148, - "height": 148, + "width": 101, + "height": 101, "opacity": 1, "strokeDash": 0, "strokeWidth": 2, @@ -2307,10 +2307,10 @@ "tooltipped" ], "pos": { - "x": 1197, - "y": 1741 + "x": 1019, + "y": 1663 }, - "width": 176, + "width": 128, "height": 69, "opacity": 1, "strokeDash": 0, @@ -2352,10 +2352,10 @@ "tooltipped" ], "pos": { - "x": 1214, - "y": 1970 + "x": 1031, + "y": 1861 }, - "width": 143, + "width": 104, "height": 84, "opacity": 1, "strokeDash": 0, @@ -2417,19 +2417,19 @@ "labelPercentage": 0, "route": [ { - "x": 175.5, + "x": 95.5, "y": 129 }, { - "x": 175.5, + "x": 95.5, "y": 179.39999389648438 }, { - "x": 175.5, + "x": 95.5, "y": 202 }, { - "x": 175.5, + "x": 95.5, "y": 242 } ], @@ -2464,19 +2464,19 @@ "labelPercentage": 0, "route": [ { - "x": 175.5, + "x": 95.5, "y": 336 }, { - "x": 175.5, + "x": 95.5, "y": 376 }, { - "x": 175.60000610351562, + "x": 95.5999984741211, "y": 399.20001220703125 }, { - "x": 176, + "x": 96, "y": 452 } ], @@ -2511,19 +2511,19 @@ "labelPercentage": 0, "route": [ { - "x": 389, + "x": 309, "y": 129 }, { - "x": 389, + "x": 309, "y": 179.39999389648438 }, { - "x": 389, + "x": 309, "y": 203.8000030517578 }, { - "x": 389, + "x": 309, "y": 251 } ], @@ -2558,19 +2558,19 @@ "labelPercentage": 0, "route": [ { - "x": 389, + "x": 309, "y": 317 }, { - "x": 389, + "x": 309, "y": 372.20001220703125 }, { - "x": 389, + "x": 309, "y": 396 }, { - "x": 389, + "x": 309, "y": 436 } ], @@ -2605,19 +2605,19 @@ "labelPercentage": 0, "route": [ { - "x": 617, + "x": 537, "y": 129 }, { - "x": 617.4000244140625, + "x": 537.4000244140625, "y": 179.39999389648438 }, { - "x": 617.5999755859375, + "x": 537.5999755859375, "y": 204.1999969482422 }, { - "x": 618, + "x": 538, "y": 253 } ], @@ -2652,19 +2652,19 @@ "labelPercentage": 0, "route": [ { - "x": 617, + "x": 537, "y": 326 }, { - "x": 617.4000244140625, + "x": 537.4000244140625, "y": 374 }, { - "x": 617.5999755859375, + "x": 537.5999755859375, "y": 397.79998779296875 }, { - "x": 618, + "x": 538, "y": 445 } ], @@ -2699,19 +2699,19 @@ "labelPercentage": 0, "route": [ { - "x": 805, + "x": 725, "y": 97 }, { - "x": 804.5999755859375, + "x": 724.5999755859375, "y": 173 }, { - "x": 804.5999755859375, + "x": 724.5999755859375, "y": 204.8000030517578 }, { - "x": 805, + "x": 725, "y": 256 } ], @@ -2746,19 +2746,19 @@ "labelPercentage": 0, "route": [ { - "x": 804, + "x": 724, "y": 322 }, { - "x": 804.4000244140625, + "x": 724.4000244140625, "y": 373.20001220703125 }, { - "x": 804.5999755859375, + "x": 724.5999755859375, "y": 401.20001220703125 }, { - "x": 805, + "x": 725, "y": 462 } ], @@ -2793,19 +2793,19 @@ "labelPercentage": 0, "route": [ { - "x": 990, + "x": 910, "y": 142 }, { - "x": 990, + "x": 910, "y": 182 }, { - "x": 990, + "x": 910, "y": 204.39999389648438 }, { - "x": 990, + "x": 910, "y": 254 } ], @@ -2840,20 +2840,20 @@ "labelPercentage": 0, "route": [ { - "x": 990, + "x": 910, "y": 324 }, { - "x": 990, + "x": 910, "y": 373.6000061035156 }, { - "x": 990, - "y": 397.6000061035156 + "x": 910, + "y": 397.79998779296875 }, { - "x": 990, - "y": 444 + "x": 910, + "y": 445 } ], "isCurve": true, @@ -2887,19 +2887,19 @@ "labelPercentage": 0, "route": [ { - "x": 1163, + "x": 1083, "y": 324 }, { - "x": 1162.5999755859375, + "x": 1082.5999755859375, "y": 373.6000061035156 }, { - "x": 1162.5999755859375, + "x": 1082.5999755859375, "y": 399.79998779296875 }, { - "x": 1163, + "x": 1083, "y": 455 } ], @@ -2934,19 +2934,19 @@ "labelPercentage": 0, "route": [ { - "x": 111.5, + "x": 95.5, "y": 833 }, { - "x": 111.5, + "x": 95.5, "y": 883.4000244140625 }, { - "x": 111.5, + "x": 95.5, "y": 906 }, { - "x": 111.5, + "x": 95.5, "y": 946 } ], @@ -2981,20 +2981,20 @@ "labelPercentage": 0, "route": [ { - "x": 111.5, - "y": 1072 + "x": 95.5, + "y": 1040 }, { - "x": 111.5, - "y": 1112 + "x": 95.5, + "y": 1080 }, { - "x": 111.5999984741211, - "y": 1138.199951171875 + "x": 95.5999984741211, + "y": 1103.199951171875 }, { - "x": 112, - "y": 1203 + "x": 96, + "y": 1156 } ], "isCurve": true, @@ -3028,20 +3028,20 @@ "labelPercentage": 0, "route": [ { - "x": 357, + "x": 309, "y": 833 }, { - "x": 357, + "x": 309, "y": 883.4000244140625 }, { - "x": 357, - "y": 911 + "x": 309, + "y": 907.7999877929688 }, { - "x": 357, - "y": 971 + "x": 309, + "y": 955 } ], "isCurve": true, @@ -3075,20 +3075,20 @@ "labelPercentage": 0, "route": [ { - "x": 357, - "y": 1037 + "x": 309, + "y": 1021 }, { - "x": 357, - "y": 1105 + "x": 309, + "y": 1076.199951171875 }, { - "x": 357, - "y": 1135 + "x": 309, + "y": 1100 }, { - "x": 357, - "y": 1187 + "x": 309, + "y": 1140 } ], "isCurve": true, @@ -3122,20 +3122,20 @@ "labelPercentage": 0, "route": [ { - "x": 617, + "x": 537, "y": 833 }, { - "x": 617.4000244140625, + "x": 537.4000244140625, "y": 883.4000244140625 }, { - "x": 617.5999755859375, - "y": 911.4000244140625 + "x": 537.5999755859375, + "y": 908.2000122070312 }, { - "x": 618, - "y": 973 + "x": 538, + "y": 957 } ], "isCurve": true, @@ -3169,20 +3169,20 @@ "labelPercentage": 0, "route": [ { - "x": 617, - "y": 1046 + "x": 537, + "y": 1030 }, { - "x": 617.4000244140625, - "y": 1106.800048828125 + "x": 537.4000244140625, + "y": 1078 }, { - "x": 617.5999755859375, - "y": 1136.800048828125 + "x": 537.5999755859375, + "y": 1101.800048828125 }, { - "x": 618, - "y": 1196 + "x": 538, + "y": 1149 } ], "isCurve": true, @@ -3216,20 +3216,20 @@ "labelPercentage": 0, "route": [ { - "x": 837, + "x": 725, "y": 801 }, { - "x": 836.5999755859375, + "x": 724.5999755859375, "y": 877 }, { - "x": 836.5999755859375, - "y": 912 + "x": 724.5999755859375, + "y": 908.7999877929688 }, { - "x": 837, - "y": 976 + "x": 725, + "y": 960 } ], "isCurve": true, @@ -3263,20 +3263,20 @@ "labelPercentage": 0, "route": [ { - "x": 837, - "y": 1042 + "x": 724, + "y": 1026 }, { - "x": 836.5999755859375, - "y": 1106 + "x": 724.4000244140625, + "y": 1077.199951171875 }, { - "x": 836.5999755859375, - "y": 1140.199951171875 + "x": 724.5999755859375, + "y": 1105.199951171875 }, { - "x": 837, - "y": 1213 + "x": 725, + "y": 1166 } ], "isCurve": true, @@ -3310,20 +3310,20 @@ "labelPercentage": 0, "route": [ { - "x": 1070, + "x": 910, "y": 846 }, { - "x": 1070, + "x": 910, "y": 886 }, { - "x": 1070, - "y": 911.5999755859375 + "x": 910, + "y": 908.4000244140625 }, { - "x": 1070, - "y": 974 + "x": 910, + "y": 958 } ], "isCurve": true, @@ -3357,20 +3357,20 @@ "labelPercentage": 0, "route": [ { - "x": 1070, - "y": 1044 + "x": 910, + "y": 1028 }, { - "x": 1070, - "y": 1106.4000244140625 + "x": 910, + "y": 1077.5999755859375 }, { - "x": 1070, - "y": 1132 + "x": 910, + "y": 1101.800048828125 }, { - "x": 1070, - "y": 1172 + "x": 910, + "y": 1149 } ], "isCurve": true, @@ -3404,20 +3404,20 @@ "labelPercentage": 0, "route": [ { - "x": 1285, - "y": 1044 + "x": 1083, + "y": 1028 }, { - "x": 1285, - "y": 1106.4000244140625 + "x": 1082.5999755859375, + "y": 1077.5999755859375 }, { - "x": 1285, - "y": 1138.5999755859375 + "x": 1082.5999755859375, + "y": 1103.800048828125 }, { - "x": 1285, - "y": 1205 + "x": 1083, + "y": 1159 } ], "isCurve": true, @@ -3451,20 +3451,20 @@ "labelPercentage": 0, "route": [ { - "x": 111.5, - "y": 1599 + "x": 95.5, + "y": 1537 }, { - "x": 111.5, - "y": 1649.4000244140625 + "x": 95.5, + "y": 1587.4000244140625 }, { - "x": 111.5, - "y": 1672 + "x": 95.5, + "y": 1610 }, { - "x": 111.5, - "y": 1712 + "x": 95.5, + "y": 1650 } ], "isCurve": true, @@ -3498,20 +3498,20 @@ "labelPercentage": 0, "route": [ { - "x": 111.5, - "y": 1838 + "x": 95.5, + "y": 1744 }, { - "x": 111.5, - "y": 1878 + "x": 95.5, + "y": 1784 }, { - "x": 111.5999984741211, - "y": 1904.199951171875 + "x": 95.5999984741211, + "y": 1807.199951171875 }, { - "x": 112, - "y": 1969 + "x": 96, + "y": 1860 } ], "isCurve": true, @@ -3545,20 +3545,20 @@ "labelPercentage": 0, "route": [ { - "x": 357, - "y": 1599 + "x": 309, + "y": 1537 }, { - "x": 357, - "y": 1649.4000244140625 + "x": 309, + "y": 1587.4000244140625 }, { - "x": 357, - "y": 1677 + "x": 309, + "y": 1611.800048828125 }, { - "x": 357, - "y": 1737 + "x": 309, + "y": 1659 } ], "isCurve": true, @@ -3592,20 +3592,20 @@ "labelPercentage": 0, "route": [ { - "x": 357, - "y": 1803 + "x": 309, + "y": 1725 }, { - "x": 357, - "y": 1871 + "x": 309, + "y": 1780.199951171875 }, { - "x": 357, - "y": 1901 + "x": 309, + "y": 1804 }, { - "x": 357, - "y": 1953 + "x": 309, + "y": 1844 } ], "isCurve": true, @@ -3639,20 +3639,20 @@ "labelPercentage": 0, "route": [ { - "x": 617, - "y": 1599 + "x": 537, + "y": 1537 }, { - "x": 617.4000244140625, - "y": 1649.4000244140625 + "x": 537.4000244140625, + "y": 1587.4000244140625 }, { - "x": 617.5999755859375, - "y": 1677.4000244140625 + "x": 537.5999755859375, + "y": 1612.199951171875 }, { - "x": 618, - "y": 1739 + "x": 538, + "y": 1661 } ], "isCurve": true, @@ -3686,20 +3686,20 @@ "labelPercentage": 0, "route": [ { - "x": 617, - "y": 1812 + "x": 537, + "y": 1734 }, { - "x": 617.4000244140625, - "y": 1872.800048828125 + "x": 537.4000244140625, + "y": 1782 }, { - "x": 617.5999755859375, - "y": 1902.800048828125 + "x": 537.5999755859375, + "y": 1805.800048828125 }, { - "x": 618, - "y": 1962 + "x": 538, + "y": 1853 } ], "isCurve": true, @@ -3733,20 +3733,20 @@ "labelPercentage": 0, "route": [ { - "x": 837, - "y": 1567 + "x": 725, + "y": 1505 }, { - "x": 836.5999755859375, - "y": 1643 + "x": 724.5999755859375, + "y": 1581 }, { - "x": 836.5999755859375, - "y": 1678 + "x": 724.5999755859375, + "y": 1612.800048828125 }, { - "x": 837, - "y": 1742 + "x": 725, + "y": 1664 } ], "isCurve": true, @@ -3780,20 +3780,20 @@ "labelPercentage": 0, "route": [ { - "x": 837, - "y": 1808 + "x": 724, + "y": 1730 }, { - "x": 836.5999755859375, - "y": 1872 + "x": 724.4000244140625, + "y": 1781.199951171875 }, { - "x": 836.5999755859375, - "y": 1906.199951171875 + "x": 724.5999755859375, + "y": 1809.199951171875 }, { - "x": 837, - "y": 1979 + "x": 725, + "y": 1870 } ], "isCurve": true, @@ -3827,20 +3827,20 @@ "labelPercentage": 0, "route": [ { - "x": 1070, - "y": 1612 + "x": 910, + "y": 1550 }, { - "x": 1070, - "y": 1652 + "x": 910, + "y": 1590 }, { - "x": 1070, - "y": 1677.5999755859375 + "x": 910, + "y": 1612.4000244140625 }, { - "x": 1070, - "y": 1740 + "x": 910, + "y": 1662 } ], "isCurve": true, @@ -3874,20 +3874,20 @@ "labelPercentage": 0, "route": [ { - "x": 1070, - "y": 1810 + "x": 910, + "y": 1732 }, { - "x": 1070, - "y": 1872.4000244140625 + "x": 910, + "y": 1781.5999755859375 }, { - "x": 1070, - "y": 1898 + "x": 910, + "y": 1805.800048828125 }, { - "x": 1070, - "y": 1938 + "x": 910, + "y": 1853 } ], "isCurve": true, @@ -3921,20 +3921,20 @@ "labelPercentage": 0, "route": [ { - "x": 1285, - "y": 1810 + "x": 1083, + "y": 1732 }, { - "x": 1285, - "y": 1872.4000244140625 + "x": 1082.5999755859375, + "y": 1781.5999755859375 }, { - "x": 1285, - "y": 1904.5999755859375 + "x": 1082.5999755859375, + "y": 1807.800048828125 }, { - "x": 1285, - "y": 1971 + "x": 1083, + "y": 1863 } ], "isCurve": true, @@ -3968,20 +3968,20 @@ "labelPercentage": 0, "route": [ { - "x": 617.5, + "x": 537.5, "y": 584 }, { - "x": 617.5, + "x": 537.5, "y": 640 }, { - "x": 617.5, - "y": 668 + "x": 537.5, + "y": 659.7999877929688 }, { - "x": 617.5, - "y": 724 + "x": 537.5, + "y": 683 } ], "isCurve": true, @@ -4015,20 +4015,20 @@ "labelPercentage": 0, "route": [ { - "x": 617.5, - "y": 1350 + "x": 537.5, + "y": 1288 }, { - "x": 617.5, - "y": 1406 + "x": 537.5, + "y": 1344 }, { - "x": 617.5, - "y": 1434 + "x": 537.5, + "y": 1372 }, { - "x": 617.5, - "y": 1490 + "x": 537.5, + "y": 1428 } ], "isCurve": true, diff --git a/e2etests/testdata/stable/all_shapes_link/dagre/sketch.exp.svg b/e2etests/testdata/stable/all_shapes_link/dagre/sketch.exp.svg index 62bfb08fdb..6bf5ae0f84 100644 --- a/e2etests/testdata/stable/all_shapes_link/dagre/sketch.exp.svg +++ b/e2etests/testdata/stable/all_shapes_link/dagre/sketch.exp.svg @@ -1,19 +1,19 @@ -linkedtooltippedbothrectanglesquarepageparallelogramdocumentcylinderqueuepackagestepcalloutstored_datapersondiamondovalcirclehexagoncloudrectangleexamplesquareexamplepageexampleparallelogramexampledocumentexamplecylinderexamplequeueexamplepackageexamplestepexamplecalloutexamplestored_dataexamplepersonexamplediamondexampleovalexamplecircleexamplehexagonexamplecloudexamplerectangleexamplesquareexamplepageexampleparallelogramexampledocumentexamplecylinderexamplequeueexamplepackageexamplestepexamplecalloutexamplestored_dataexamplepersonexamplediamondexampleovalexamplecircleexamplehexagonexamplecloudexample example + .d2-2289397498 .fill-N1{fill:#0A0F25;} + .d2-2289397498 .fill-N2{fill:#676C7E;} + .d2-2289397498 .fill-N3{fill:#9499AB;} + .d2-2289397498 .fill-N4{fill:#CFD2DD;} + .d2-2289397498 .fill-N5{fill:#DEE1EB;} + .d2-2289397498 .fill-N6{fill:#EEF1F8;} + .d2-2289397498 .fill-N7{fill:#FFFFFF;} + .d2-2289397498 .fill-B1{fill:#0D32B2;} + .d2-2289397498 .fill-B2{fill:#0D32B2;} + .d2-2289397498 .fill-B3{fill:#E3E9FD;} + .d2-2289397498 .fill-B4{fill:#E3E9FD;} + .d2-2289397498 .fill-B5{fill:#EDF0FD;} + .d2-2289397498 .fill-B6{fill:#F7F8FE;} + .d2-2289397498 .fill-AA2{fill:#4A6FF3;} + .d2-2289397498 .fill-AA4{fill:#EDF0FD;} + .d2-2289397498 .fill-AA5{fill:#F7F8FE;} + .d2-2289397498 .fill-AB4{fill:#EDF0FD;} + .d2-2289397498 .fill-AB5{fill:#F7F8FE;} + .d2-2289397498 .stroke-N1{stroke:#0A0F25;} + .d2-2289397498 .stroke-N2{stroke:#676C7E;} + .d2-2289397498 .stroke-N3{stroke:#9499AB;} + .d2-2289397498 .stroke-N4{stroke:#CFD2DD;} + .d2-2289397498 .stroke-N5{stroke:#DEE1EB;} + .d2-2289397498 .stroke-N6{stroke:#EEF1F8;} + .d2-2289397498 .stroke-N7{stroke:#FFFFFF;} + .d2-2289397498 .stroke-B1{stroke:#0D32B2;} + .d2-2289397498 .stroke-B2{stroke:#0D32B2;} + .d2-2289397498 .stroke-B3{stroke:#E3E9FD;} + .d2-2289397498 .stroke-B4{stroke:#E3E9FD;} + .d2-2289397498 .stroke-B5{stroke:#EDF0FD;} + .d2-2289397498 .stroke-B6{stroke:#F7F8FE;} + .d2-2289397498 .stroke-AA2{stroke:#4A6FF3;} + .d2-2289397498 .stroke-AA4{stroke:#EDF0FD;} + .d2-2289397498 .stroke-AA5{stroke:#F7F8FE;} + .d2-2289397498 .stroke-AB4{stroke:#EDF0FD;} + .d2-2289397498 .stroke-AB5{stroke:#F7F8FE;} + .d2-2289397498 .background-color-N1{background-color:#0A0F25;} + .d2-2289397498 .background-color-N2{background-color:#676C7E;} + .d2-2289397498 .background-color-N3{background-color:#9499AB;} + .d2-2289397498 .background-color-N4{background-color:#CFD2DD;} + .d2-2289397498 .background-color-N5{background-color:#DEE1EB;} + .d2-2289397498 .background-color-N6{background-color:#EEF1F8;} + .d2-2289397498 .background-color-N7{background-color:#FFFFFF;} + .d2-2289397498 .background-color-B1{background-color:#0D32B2;} + .d2-2289397498 .background-color-B2{background-color:#0D32B2;} + .d2-2289397498 .background-color-B3{background-color:#E3E9FD;} + .d2-2289397498 .background-color-B4{background-color:#E3E9FD;} + .d2-2289397498 .background-color-B5{background-color:#EDF0FD;} + .d2-2289397498 .background-color-B6{background-color:#F7F8FE;} + .d2-2289397498 .background-color-AA2{background-color:#4A6FF3;} + .d2-2289397498 .background-color-AA4{background-color:#EDF0FD;} + .d2-2289397498 .background-color-AA5{background-color:#F7F8FE;} + .d2-2289397498 .background-color-AB4{background-color:#EDF0FD;} + .d2-2289397498 .background-color-AB5{background-color:#F7F8FE;} + .d2-2289397498 .color-N1{color:#0A0F25;} + .d2-2289397498 .color-N2{color:#676C7E;} + .d2-2289397498 .color-N3{color:#9499AB;} + .d2-2289397498 .color-N4{color:#CFD2DD;} + .d2-2289397498 .color-N5{color:#DEE1EB;} + .d2-2289397498 .color-N6{color:#EEF1F8;} + .d2-2289397498 .color-N7{color:#FFFFFF;} + .d2-2289397498 .color-B1{color:#0D32B2;} + .d2-2289397498 .color-B2{color:#0D32B2;} + .d2-2289397498 .color-B3{color:#E3E9FD;} + .d2-2289397498 .color-B4{color:#E3E9FD;} + .d2-2289397498 .color-B5{color:#EDF0FD;} + .d2-2289397498 .color-B6{color:#F7F8FE;} + .d2-2289397498 .color-AA2{color:#4A6FF3;} + .d2-2289397498 .color-AA4{color:#EDF0FD;} + .d2-2289397498 .color-AA5{color:#F7F8FE;} + .d2-2289397498 .color-AB4{color:#EDF0FD;} + .d2-2289397498 .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}]]>linkedtooltippedbothrectanglesquarepageparallelogramdocumentcylinderqueuepackagestepcalloutstored_datapersondiamondovalcirclehexagoncloudrectangleexamplesquareexamplepageexampleparallelogramexampledocumentexamplecylinderexamplequeueexamplepackageexamplestepexamplecalloutexamplestored_dataexamplepersonexamplediamondexampleovalexamplecircleexamplehexagonexamplecloudexamplerectangleexamplesquareexamplepageexampleparallelogramexampledocumentexamplecylinderexamplequeueexamplepackageexamplestepexamplecalloutexamplestored_dataexamplepersonexamplediamondexampleovalexamplecircleexamplehexagonexamplecloudexample example @@ -112,7 +112,7 @@ -example +example @@ -125,7 +125,7 @@ -example +example @@ -138,7 +138,7 @@ -example +example @@ -151,7 +151,7 @@ -example +example @@ -164,7 +164,7 @@ -example +example @@ -177,7 +177,7 @@ -example +example @@ -190,7 +190,7 @@ -example +example @@ -203,7 +203,7 @@ -example +example @@ -216,7 +216,7 @@ -example +example @@ -229,7 +229,7 @@ -example +example @@ -242,7 +242,7 @@ -example +example @@ -255,7 +255,7 @@ -example +example @@ -268,7 +268,7 @@ -example +example @@ -281,7 +281,7 @@ -example +example @@ -294,7 +294,7 @@ -example +example @@ -307,7 +307,7 @@ -example +example @@ -320,7 +320,7 @@ -example +example @@ -333,7 +333,7 @@ -example +example @@ -346,7 +346,7 @@ -example +example @@ -359,7 +359,7 @@ -example +example @@ -372,7 +372,7 @@ -example +example @@ -385,7 +385,7 @@ -example +example @@ -398,7 +398,7 @@ -example +example @@ -411,7 +411,7 @@ -example +example @@ -424,7 +424,7 @@ -example +example @@ -437,7 +437,7 @@ -example +example @@ -450,7 +450,7 @@ -example +example @@ -463,7 +463,7 @@ -example +example @@ -476,7 +476,7 @@ -example +example @@ -489,7 +489,7 @@ -example +example @@ -502,7 +502,7 @@ -example +example @@ -515,7 +515,7 @@ -example +example @@ -528,7 +528,7 @@ -example +example @@ -541,60 +541,60 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/e2etests/testdata/stable/all_shapes_link/elk/board.exp.json b/e2etests/testdata/stable/all_shapes_link/elk/board.exp.json index 5ec4027809..263293bf96 100644 --- a/e2etests/testdata/stable/all_shapes_link/elk/board.exp.json +++ b/e2etests/testdata/stable/all_shapes_link/elk/board.exp.json @@ -7,7 +7,7 @@ "id": "linked", "type": "rectangle", "pos": { - "x": 132, + "x": 12, "y": 12 }, "width": 1036, @@ -51,7 +51,7 @@ "linked" ], "pos": { - "x": 182, + "x": 62, "y": 88 }, "width": 111, @@ -95,7 +95,7 @@ "linked" ], "pos": { - "x": 190, + "x": 70, "y": 224 }, "width": 94, @@ -139,7 +139,7 @@ "linked" ], "pos": { - "x": 198, + "x": 78, "y": 388 }, "width": 79, @@ -183,7 +183,7 @@ "linked" ], "pos": { - "x": 313, + "x": 193, "y": 88 }, "width": 196, @@ -227,7 +227,7 @@ "linked" ], "pos": { - "x": 352, + "x": 232, "y": 233 }, "width": 117, @@ -271,7 +271,7 @@ "linked" ], "pos": { - "x": 359, + "x": 239, "y": 388 }, "width": 104, @@ -315,7 +315,7 @@ "linked" ], "pos": { - "x": 529, + "x": 409, "y": 88 }, "width": 141, @@ -359,7 +359,7 @@ "linked" ], "pos": { - "x": 548, + "x": 428, "y": 234 }, "width": 103, @@ -403,7 +403,7 @@ "linked" ], "pos": { - "x": 541, + "x": 421, "y": 388 }, "width": 116, @@ -447,7 +447,7 @@ "linked" ], "pos": { - "x": 699, + "x": 579, "y": 63 }, "width": 95, @@ -491,7 +491,7 @@ "linked" ], "pos": { - "x": 671, + "x": 551, "y": 238 }, "width": 151, @@ -535,7 +535,7 @@ "linked" ], "pos": { - "x": 715, + "x": 595, "y": 388 }, "width": 63, @@ -579,7 +579,7 @@ "linked" ], "pos": { - "x": 814, + "x": 694, "y": 62 }, "width": 156, @@ -623,7 +623,7 @@ "linked" ], "pos": { - "x": 843, + "x": 723, "y": 236 }, "width": 97, @@ -667,11 +667,11 @@ "linked" ], "pos": { - "x": 840, + "x": 721, "y": 388 }, - "width": 103, - "height": 103, + "width": 101, + "height": 101, "opacity": 1, "strokeDash": 0, "strokeWidth": 2, @@ -711,7 +711,7 @@ "linked" ], "pos": { - "x": 990, + "x": 870, "y": 85 }, "width": 128, @@ -755,7 +755,7 @@ "linked" ], "pos": { - "x": 1002, + "x": 882, "y": 224 }, "width": 104, @@ -800,8 +800,8 @@ "x": 12, "y": 626 }, - "width": 1276, - "height": 606, + "width": 1036, + "height": 544, "opacity": 1, "strokeDash": 0, "strokeWidth": 2, @@ -844,7 +844,7 @@ "x": 62, "y": 702 }, - "width": 143, + "width": 111, "height": 66, "opacity": 1, "strokeDash": 0, @@ -888,8 +888,8 @@ "x": 70, "y": 838 }, - "width": 126, - "height": 126, + "width": 94, + "height": 94, "opacity": 1, "strokeDash": 0, "strokeWidth": 2, @@ -930,9 +930,9 @@ ], "pos": { "x": 78, - "y": 1034 + "y": 1002 }, - "width": 111, + "width": 79, "height": 87, "opacity": 1, "strokeDash": 0, @@ -973,10 +973,10 @@ "tooltipped" ], "pos": { - "x": 225, + "x": 193, "y": 702 }, - "width": 228, + "width": 196, "height": 66, "opacity": 1, "strokeDash": 0, @@ -1017,10 +1017,10 @@ "tooltipped" ], "pos": { - "x": 264, - "y": 863 + "x": 232, + "y": 847 }, - "width": 149, + "width": 117, "height": 76, "opacity": 1, "strokeDash": 0, @@ -1061,10 +1061,10 @@ "tooltipped" ], "pos": { - "x": 271, - "y": 1034 + "x": 239, + "y": 1002 }, - "width": 136, + "width": 104, "height": 118, "opacity": 1, "strokeDash": 0, @@ -1105,10 +1105,10 @@ "tooltipped" ], "pos": { - "x": 473, + "x": 409, "y": 702 }, - "width": 173, + "width": 141, "height": 66, "opacity": 1, "strokeDash": 0, @@ -1149,10 +1149,10 @@ "tooltipped" ], "pos": { - "x": 492, - "y": 864 + "x": 428, + "y": 848 }, - "width": 135, + "width": 103, "height": 73, "opacity": 1, "strokeDash": 0, @@ -1193,10 +1193,10 @@ "tooltipped" ], "pos": { - "x": 485, - "y": 1034 + "x": 421, + "y": 1002 }, - "width": 148, + "width": 116, "height": 101, "opacity": 1, "strokeDash": 0, @@ -1237,10 +1237,10 @@ "tooltipped" ], "pos": { - "x": 675, + "x": 579, "y": 677 }, - "width": 127, + "width": 95, "height": 91, "opacity": 1, "strokeDash": 0, @@ -1281,10 +1281,10 @@ "tooltipped" ], "pos": { - "x": 647, - "y": 868 + "x": 551, + "y": 852 }, - "width": 183, + "width": 151, "height": 66, "opacity": 1, "strokeDash": 0, @@ -1325,10 +1325,10 @@ "tooltipped" ], "pos": { - "x": 691, - "y": 1034 + "x": 595, + "y": 1002 }, - "width": 95, + "width": 63, "height": 66, "opacity": 1, "strokeDash": 0, @@ -1369,10 +1369,10 @@ "tooltipped" ], "pos": { - "x": 822, + "x": 694, "y": 676 }, - "width": 220, + "width": 156, "height": 92, "opacity": 1, "strokeDash": 0, @@ -1413,10 +1413,10 @@ "tooltipped" ], "pos": { - "x": 865, - "y": 866 + "x": 723, + "y": 850 }, - "width": 134, + "width": 97, "height": 70, "opacity": 1, "strokeDash": 0, @@ -1457,11 +1457,11 @@ "tooltipped" ], "pos": { - "x": 858, - "y": 1034 + "x": 721, + "y": 1002 }, - "width": 148, - "height": 148, + "width": 101, + "height": 101, "opacity": 1, "strokeDash": 0, "strokeWidth": 2, @@ -1501,10 +1501,10 @@ "tooltipped" ], "pos": { - "x": 1062, + "x": 870, "y": 699 }, - "width": 176, + "width": 128, "height": 69, "opacity": 1, "strokeDash": 0, @@ -1545,10 +1545,10 @@ "tooltipped" ], "pos": { - "x": 1078, + "x": 882, "y": 838 }, - "width": 143, + "width": 104, "height": 84, "opacity": 1, "strokeDash": 0, @@ -1588,10 +1588,10 @@ "type": "rectangle", "pos": { "x": 12, - "y": 1302 + "y": 1240 }, - "width": 1276, - "height": 606, + "width": 1036, + "height": 544, "opacity": 1, "strokeDash": 0, "strokeWidth": 2, @@ -1633,9 +1633,9 @@ ], "pos": { "x": 62, - "y": 1378 + "y": 1316 }, - "width": 143, + "width": 111, "height": 66, "opacity": 1, "strokeDash": 0, @@ -1678,10 +1678,10 @@ ], "pos": { "x": 70, - "y": 1514 + "y": 1452 }, - "width": 126, - "height": 126, + "width": 94, + "height": 94, "opacity": 1, "strokeDash": 0, "strokeWidth": 2, @@ -1723,9 +1723,9 @@ ], "pos": { "x": 78, - "y": 1710 + "y": 1616 }, - "width": 111, + "width": 79, "height": 87, "opacity": 1, "strokeDash": 0, @@ -1767,10 +1767,10 @@ "tooltipped" ], "pos": { - "x": 225, - "y": 1378 + "x": 193, + "y": 1316 }, - "width": 228, + "width": 196, "height": 66, "opacity": 1, "strokeDash": 0, @@ -1812,10 +1812,10 @@ "tooltipped" ], "pos": { - "x": 264, - "y": 1539 + "x": 232, + "y": 1461 }, - "width": 149, + "width": 117, "height": 76, "opacity": 1, "strokeDash": 0, @@ -1857,10 +1857,10 @@ "tooltipped" ], "pos": { - "x": 271, - "y": 1710 + "x": 239, + "y": 1616 }, - "width": 136, + "width": 104, "height": 118, "opacity": 1, "strokeDash": 0, @@ -1902,10 +1902,10 @@ "tooltipped" ], "pos": { - "x": 473, - "y": 1378 + "x": 409, + "y": 1316 }, - "width": 173, + "width": 141, "height": 66, "opacity": 1, "strokeDash": 0, @@ -1947,10 +1947,10 @@ "tooltipped" ], "pos": { - "x": 492, - "y": 1540 + "x": 428, + "y": 1462 }, - "width": 135, + "width": 103, "height": 73, "opacity": 1, "strokeDash": 0, @@ -1992,10 +1992,10 @@ "tooltipped" ], "pos": { - "x": 485, - "y": 1710 + "x": 421, + "y": 1616 }, - "width": 148, + "width": 116, "height": 101, "opacity": 1, "strokeDash": 0, @@ -2037,10 +2037,10 @@ "tooltipped" ], "pos": { - "x": 675, - "y": 1353 + "x": 579, + "y": 1291 }, - "width": 127, + "width": 95, "height": 91, "opacity": 1, "strokeDash": 0, @@ -2082,10 +2082,10 @@ "tooltipped" ], "pos": { - "x": 647, - "y": 1544 + "x": 551, + "y": 1466 }, - "width": 183, + "width": 151, "height": 66, "opacity": 1, "strokeDash": 0, @@ -2127,10 +2127,10 @@ "tooltipped" ], "pos": { - "x": 691, - "y": 1710 + "x": 595, + "y": 1616 }, - "width": 95, + "width": 63, "height": 66, "opacity": 1, "strokeDash": 0, @@ -2172,10 +2172,10 @@ "tooltipped" ], "pos": { - "x": 822, - "y": 1352 + "x": 694, + "y": 1290 }, - "width": 220, + "width": 156, "height": 92, "opacity": 1, "strokeDash": 0, @@ -2217,10 +2217,10 @@ "tooltipped" ], "pos": { - "x": 865, - "y": 1542 + "x": 723, + "y": 1464 }, - "width": 134, + "width": 97, "height": 70, "opacity": 1, "strokeDash": 0, @@ -2262,11 +2262,11 @@ "tooltipped" ], "pos": { - "x": 858, - "y": 1710 + "x": 721, + "y": 1616 }, - "width": 148, - "height": 148, + "width": 101, + "height": 101, "opacity": 1, "strokeDash": 0, "strokeWidth": 2, @@ -2307,10 +2307,10 @@ "tooltipped" ], "pos": { - "x": 1062, - "y": 1375 + "x": 870, + "y": 1313 }, - "width": 176, + "width": 128, "height": 69, "opacity": 1, "strokeDash": 0, @@ -2352,10 +2352,10 @@ "tooltipped" ], "pos": { - "x": 1078, - "y": 1514 + "x": 882, + "y": 1452 }, - "width": 143, + "width": 104, "height": 84, "opacity": 1, "strokeDash": 0, @@ -2417,11 +2417,11 @@ "labelPercentage": 0, "route": [ { - "x": 237.5, + "x": 117.5, "y": 154 }, { - "x": 237.5, + "x": 117.5, "y": 224 } ], @@ -2455,11 +2455,11 @@ "labelPercentage": 0, "route": [ { - "x": 237.5, + "x": 117.5, "y": 318 }, { - "x": 238, + "x": 118, "y": 388 } ], @@ -2493,11 +2493,11 @@ "labelPercentage": 0, "route": [ { - "x": 411, + "x": 291, "y": 154 }, { - "x": 411, + "x": 291, "y": 233 } ], @@ -2531,11 +2531,11 @@ "labelPercentage": 0, "route": [ { - "x": 411, + "x": 291, "y": 298 }, { - "x": 411, + "x": 291, "y": 388 } ], @@ -2569,12 +2569,12 @@ "labelPercentage": 0, "route": [ { - "x": 599, + "x": 479, "y": 154 }, { - "x": 600, - "y": 249 + "x": 480, + "y": 235 } ], "animated": false, @@ -2607,11 +2607,11 @@ "labelPercentage": 0, "route": [ { - "x": 599, + "x": 479, "y": 308 }, { - "x": 600, + "x": 480, "y": 388 } ], @@ -2645,11 +2645,11 @@ "labelPercentage": 0, "route": [ { - "x": 747, + "x": 627, "y": 109 }, { - "x": 746, + "x": 626, "y": 238 } ], @@ -2683,11 +2683,11 @@ "labelPercentage": 0, "route": [ { - "x": 746, + "x": 626, "y": 304 }, { - "x": 747, + "x": 627, "y": 388 } ], @@ -2721,11 +2721,11 @@ "labelPercentage": 0, "route": [ { - "x": 892, + "x": 772, "y": 154 }, { - "x": 892, + "x": 772, "y": 236 } ], @@ -2759,11 +2759,11 @@ "labelPercentage": 0, "route": [ { - "x": 892, + "x": 772, "y": 306 }, { - "x": 892, + "x": 772, "y": 388 } ], @@ -2797,11 +2797,11 @@ "labelPercentage": 0, "route": [ { - "x": 1054, + "x": 934, "y": 154 }, { - "x": 1054, + "x": 934, "y": 225 } ], @@ -2835,11 +2835,11 @@ "labelPercentage": 0, "route": [ { - "x": 133.5, + "x": 117.5, "y": 768 }, { - "x": 133.5, + "x": 117.5, "y": 838 } ], @@ -2873,12 +2873,12 @@ "labelPercentage": 0, "route": [ { - "x": 133.5, - "y": 964 + "x": 117.5, + "y": 932 }, { - "x": 134, - "y": 1034 + "x": 118, + "y": 1002 } ], "animated": false, @@ -2911,12 +2911,12 @@ "labelPercentage": 0, "route": [ { - "x": 339, + "x": 291, "y": 768 }, { - "x": 339, - "y": 863 + "x": 291, + "y": 847 } ], "animated": false, @@ -2949,12 +2949,12 @@ "labelPercentage": 0, "route": [ { - "x": 339, - "y": 928 + "x": 291, + "y": 912 }, { - "x": 339, - "y": 1034 + "x": 291, + "y": 1002 } ], "animated": false, @@ -2987,12 +2987,12 @@ "labelPercentage": 0, "route": [ { - "x": 559, + "x": 479, "y": 768 }, { - "x": 560, - "y": 879 + "x": 480, + "y": 849 } ], "animated": false, @@ -3025,12 +3025,12 @@ "labelPercentage": 0, "route": [ { - "x": 559, - "y": 938 + "x": 479, + "y": 922 }, { - "x": 560, - "y": 1034 + "x": 480, + "y": 1002 } ], "animated": false, @@ -3063,12 +3063,12 @@ "labelPercentage": 0, "route": [ { - "x": 739, + "x": 627, "y": 723 }, { - "x": 738, - "y": 868 + "x": 626, + "y": 852 } ], "animated": false, @@ -3101,12 +3101,12 @@ "labelPercentage": 0, "route": [ { - "x": 739, - "y": 934 + "x": 626, + "y": 918 }, { - "x": 738, - "y": 1034 + "x": 627, + "y": 1002 } ], "animated": false, @@ -3139,12 +3139,12 @@ "labelPercentage": 0, "route": [ { - "x": 932, + "x": 772, "y": 768 }, { - "x": 932, - "y": 866 + "x": 772, + "y": 850 } ], "animated": false, @@ -3177,12 +3177,12 @@ "labelPercentage": 0, "route": [ { - "x": 932, - "y": 936 + "x": 772, + "y": 920 }, { - "x": 932, - "y": 1034 + "x": 772, + "y": 1002 } ], "animated": false, @@ -3215,11 +3215,11 @@ "labelPercentage": 0, "route": [ { - "x": 1150, + "x": 934, "y": 768 }, { - "x": 1150, + "x": 934, "y": 839 } ], @@ -3253,12 +3253,12 @@ "labelPercentage": 0, "route": [ { - "x": 133.5, - "y": 1444 + "x": 117.5, + "y": 1382 }, { - "x": 133.5, - "y": 1514 + "x": 117.5, + "y": 1452 } ], "animated": false, @@ -3291,12 +3291,12 @@ "labelPercentage": 0, "route": [ { - "x": 133.5, - "y": 1640 + "x": 117.5, + "y": 1546 }, { - "x": 134, - "y": 1710 + "x": 118, + "y": 1616 } ], "animated": false, @@ -3329,12 +3329,12 @@ "labelPercentage": 0, "route": [ { - "x": 339, - "y": 1444 + "x": 291, + "y": 1382 }, { - "x": 339, - "y": 1539 + "x": 291, + "y": 1461 } ], "animated": false, @@ -3367,12 +3367,12 @@ "labelPercentage": 0, "route": [ { - "x": 339, - "y": 1604 + "x": 291, + "y": 1526 }, { - "x": 339, - "y": 1710 + "x": 291, + "y": 1616 } ], "animated": false, @@ -3405,12 +3405,12 @@ "labelPercentage": 0, "route": [ { - "x": 559, - "y": 1444 + "x": 479, + "y": 1382 }, { - "x": 560, - "y": 1555 + "x": 480, + "y": 1463 } ], "animated": false, @@ -3443,12 +3443,12 @@ "labelPercentage": 0, "route": [ { - "x": 559, - "y": 1614 + "x": 479, + "y": 1536 }, { - "x": 560, - "y": 1710 + "x": 480, + "y": 1616 } ], "animated": false, @@ -3481,12 +3481,12 @@ "labelPercentage": 0, "route": [ { - "x": 739, - "y": 1399 + "x": 627, + "y": 1337 }, { - "x": 738, - "y": 1544 + "x": 626, + "y": 1466 } ], "animated": false, @@ -3519,12 +3519,12 @@ "labelPercentage": 0, "route": [ { - "x": 739, - "y": 1610 + "x": 626, + "y": 1532 }, { - "x": 738, - "y": 1710 + "x": 627, + "y": 1616 } ], "animated": false, @@ -3557,12 +3557,12 @@ "labelPercentage": 0, "route": [ { - "x": 932, - "y": 1444 + "x": 772, + "y": 1382 }, { - "x": 932, - "y": 1542 + "x": 772, + "y": 1464 } ], "animated": false, @@ -3595,12 +3595,12 @@ "labelPercentage": 0, "route": [ { - "x": 932, - "y": 1612 + "x": 772, + "y": 1534 }, { - "x": 932, - "y": 1710 + "x": 772, + "y": 1616 } ], "animated": false, @@ -3633,12 +3633,12 @@ "labelPercentage": 0, "route": [ { - "x": 1150, - "y": 1444 + "x": 934, + "y": 1382 }, { - "x": 1150, - "y": 1515 + "x": 934, + "y": 1453 } ], "animated": false, @@ -3671,11 +3671,11 @@ "labelPercentage": 0, "route": [ { - "x": 650, + "x": 530, "y": 556 }, { - "x": 650, + "x": 530, "y": 626 } ], @@ -3709,12 +3709,12 @@ "labelPercentage": 0, "route": [ { - "x": 650, - "y": 1232 + "x": 530, + "y": 1170 }, { - "x": 650, - "y": 1302 + "x": 530, + "y": 1240 } ], "animated": false, diff --git a/e2etests/testdata/stable/all_shapes_link/elk/sketch.exp.svg b/e2etests/testdata/stable/all_shapes_link/elk/sketch.exp.svg index cd701f7169..1f76e55d0f 100644 --- a/e2etests/testdata/stable/all_shapes_link/elk/sketch.exp.svg +++ b/e2etests/testdata/stable/all_shapes_link/elk/sketch.exp.svg @@ -1,19 +1,19 @@ -linkedtooltippedbothrectanglesquarepageparallelogramdocumentcylinderqueuepackagestepcalloutstored_datapersondiamondovalcirclehexagoncloudrectangleexamplesquareexamplepageexampleparallelogramexampledocumentexamplecylinderexamplequeueexamplepackageexamplestepexamplecalloutexamplestored_dataexamplepersonexamplediamondexampleovalexamplecircleexamplehexagonexamplecloudexamplerectangleexamplesquareexamplepageexampleparallelogramexampledocumentexamplecylinderexamplequeueexamplepackageexamplestepexamplecalloutexamplestored_dataexamplepersonexamplediamondexampleovalexamplecircleexamplehexagonexamplecloudexample example + .d2-1943155960 .fill-N1{fill:#0A0F25;} + .d2-1943155960 .fill-N2{fill:#676C7E;} + .d2-1943155960 .fill-N3{fill:#9499AB;} + .d2-1943155960 .fill-N4{fill:#CFD2DD;} + .d2-1943155960 .fill-N5{fill:#DEE1EB;} + .d2-1943155960 .fill-N6{fill:#EEF1F8;} + .d2-1943155960 .fill-N7{fill:#FFFFFF;} + .d2-1943155960 .fill-B1{fill:#0D32B2;} + .d2-1943155960 .fill-B2{fill:#0D32B2;} + .d2-1943155960 .fill-B3{fill:#E3E9FD;} + .d2-1943155960 .fill-B4{fill:#E3E9FD;} + .d2-1943155960 .fill-B5{fill:#EDF0FD;} + .d2-1943155960 .fill-B6{fill:#F7F8FE;} + .d2-1943155960 .fill-AA2{fill:#4A6FF3;} + .d2-1943155960 .fill-AA4{fill:#EDF0FD;} + .d2-1943155960 .fill-AA5{fill:#F7F8FE;} + .d2-1943155960 .fill-AB4{fill:#EDF0FD;} + .d2-1943155960 .fill-AB5{fill:#F7F8FE;} + .d2-1943155960 .stroke-N1{stroke:#0A0F25;} + .d2-1943155960 .stroke-N2{stroke:#676C7E;} + .d2-1943155960 .stroke-N3{stroke:#9499AB;} + .d2-1943155960 .stroke-N4{stroke:#CFD2DD;} + .d2-1943155960 .stroke-N5{stroke:#DEE1EB;} + .d2-1943155960 .stroke-N6{stroke:#EEF1F8;} + .d2-1943155960 .stroke-N7{stroke:#FFFFFF;} + .d2-1943155960 .stroke-B1{stroke:#0D32B2;} + .d2-1943155960 .stroke-B2{stroke:#0D32B2;} + .d2-1943155960 .stroke-B3{stroke:#E3E9FD;} + .d2-1943155960 .stroke-B4{stroke:#E3E9FD;} + .d2-1943155960 .stroke-B5{stroke:#EDF0FD;} + .d2-1943155960 .stroke-B6{stroke:#F7F8FE;} + .d2-1943155960 .stroke-AA2{stroke:#4A6FF3;} + .d2-1943155960 .stroke-AA4{stroke:#EDF0FD;} + .d2-1943155960 .stroke-AA5{stroke:#F7F8FE;} + .d2-1943155960 .stroke-AB4{stroke:#EDF0FD;} + .d2-1943155960 .stroke-AB5{stroke:#F7F8FE;} + .d2-1943155960 .background-color-N1{background-color:#0A0F25;} + .d2-1943155960 .background-color-N2{background-color:#676C7E;} + .d2-1943155960 .background-color-N3{background-color:#9499AB;} + .d2-1943155960 .background-color-N4{background-color:#CFD2DD;} + .d2-1943155960 .background-color-N5{background-color:#DEE1EB;} + .d2-1943155960 .background-color-N6{background-color:#EEF1F8;} + .d2-1943155960 .background-color-N7{background-color:#FFFFFF;} + .d2-1943155960 .background-color-B1{background-color:#0D32B2;} + .d2-1943155960 .background-color-B2{background-color:#0D32B2;} + .d2-1943155960 .background-color-B3{background-color:#E3E9FD;} + .d2-1943155960 .background-color-B4{background-color:#E3E9FD;} + .d2-1943155960 .background-color-B5{background-color:#EDF0FD;} + .d2-1943155960 .background-color-B6{background-color:#F7F8FE;} + .d2-1943155960 .background-color-AA2{background-color:#4A6FF3;} + .d2-1943155960 .background-color-AA4{background-color:#EDF0FD;} + .d2-1943155960 .background-color-AA5{background-color:#F7F8FE;} + .d2-1943155960 .background-color-AB4{background-color:#EDF0FD;} + .d2-1943155960 .background-color-AB5{background-color:#F7F8FE;} + .d2-1943155960 .color-N1{color:#0A0F25;} + .d2-1943155960 .color-N2{color:#676C7E;} + .d2-1943155960 .color-N3{color:#9499AB;} + .d2-1943155960 .color-N4{color:#CFD2DD;} + .d2-1943155960 .color-N5{color:#DEE1EB;} + .d2-1943155960 .color-N6{color:#EEF1F8;} + .d2-1943155960 .color-N7{color:#FFFFFF;} + .d2-1943155960 .color-B1{color:#0D32B2;} + .d2-1943155960 .color-B2{color:#0D32B2;} + .d2-1943155960 .color-B3{color:#E3E9FD;} + .d2-1943155960 .color-B4{color:#E3E9FD;} + .d2-1943155960 .color-B5{color:#EDF0FD;} + .d2-1943155960 .color-B6{color:#F7F8FE;} + .d2-1943155960 .color-AA2{color:#4A6FF3;} + .d2-1943155960 .color-AA4{color:#EDF0FD;} + .d2-1943155960 .color-AA5{color:#F7F8FE;} + .d2-1943155960 .color-AB4{color:#EDF0FD;} + .d2-1943155960 .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}]]>linkedtooltippedbothrectanglesquarepageparallelogramdocumentcylinderqueuepackagestepcalloutstored_datapersondiamondovalcirclehexagoncloudrectangleexamplesquareexamplepageexampleparallelogramexampledocumentexamplecylinderexamplequeueexamplepackageexamplestepexamplecalloutexamplestored_dataexamplepersonexamplediamondexampleovalexamplecircleexamplehexagonexamplecloudexamplerectangleexamplesquareexamplepageexampleparallelogramexampledocumentexamplecylinderexamplequeueexamplepackageexamplestepexamplecalloutexamplestored_dataexamplepersonexamplediamondexampleovalexamplecircleexamplehexagonexamplecloudexample example @@ -112,7 +112,7 @@ -example +example @@ -125,7 +125,7 @@ -example +example @@ -138,7 +138,7 @@ -example +example @@ -151,7 +151,7 @@ -example +example @@ -164,7 +164,7 @@ -example +example @@ -177,7 +177,7 @@ -example +example @@ -190,7 +190,7 @@ -example +example @@ -203,7 +203,7 @@ -example +example @@ -216,7 +216,7 @@ -example +example @@ -229,7 +229,7 @@ -example +example @@ -242,7 +242,7 @@ -example +example @@ -255,7 +255,7 @@ -example +example @@ -268,7 +268,7 @@ -example +example @@ -281,7 +281,7 @@ -example +example @@ -294,7 +294,7 @@ -example +example @@ -307,7 +307,7 @@ -example +example @@ -320,7 +320,7 @@ -example +example @@ -333,7 +333,7 @@ -example +example @@ -346,7 +346,7 @@ -example +example @@ -359,7 +359,7 @@ -example +example @@ -372,7 +372,7 @@ -example +example @@ -385,7 +385,7 @@ -example +example @@ -398,7 +398,7 @@ -example +example @@ -411,7 +411,7 @@ -example +example @@ -424,7 +424,7 @@ -example +example @@ -437,7 +437,7 @@ -example +example @@ -450,7 +450,7 @@ -example +example @@ -463,7 +463,7 @@ -example +example @@ -476,7 +476,7 @@ -example +example @@ -489,7 +489,7 @@ -example +example @@ -502,7 +502,7 @@ -example +example @@ -515,7 +515,7 @@ -example +example @@ -528,7 +528,7 @@ -example +example @@ -541,60 +541,60 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/e2etests/testdata/stable/all_shapes_multiple/dagre/board.exp.json b/e2etests/testdata/stable/all_shapes_multiple/dagre/board.exp.json index 4a2594f54e..47c6f1777d 100644 --- a/e2etests/testdata/stable/all_shapes_multiple/dagre/board.exp.json +++ b/e2etests/testdata/stable/all_shapes_multiple/dagre/board.exp.json @@ -581,11 +581,11 @@ "id": "circle", "type": "oval", "pos": { - "x": 839, - "y": 394 + "x": 840, + "y": 395 }, - "width": 103, - "height": 103, + "width": 101, + "height": 101, "opacity": 1, "strokeDash": 0, "strokeWidth": 2, @@ -1160,11 +1160,11 @@ }, { "x": 890, - "y": 345.79998779296875 + "y": 346 }, { "x": 890, - "y": 385 + "y": 386 } ], "isCurve": true, diff --git a/e2etests/testdata/stable/all_shapes_multiple/dagre/sketch.exp.svg b/e2etests/testdata/stable/all_shapes_multiple/dagre/sketch.exp.svg index 0e67a6dda2..c3ef6de65f 100644 --- a/e2etests/testdata/stable/all_shapes_multiple/dagre/sketch.exp.svg +++ b/e2etests/testdata/stable/all_shapes_multiple/dagre/sketch.exp.svg @@ -1,9 +1,9 @@ -rectanglesquarepageparallelogramdocumentcylinderqueuepackagestepcalloutstored_datapersondiamondovalcirclehexagoncloud + .d2-2920729038 .fill-N1{fill:#0A0F25;} + .d2-2920729038 .fill-N2{fill:#676C7E;} + .d2-2920729038 .fill-N3{fill:#9499AB;} + .d2-2920729038 .fill-N4{fill:#CFD2DD;} + .d2-2920729038 .fill-N5{fill:#DEE1EB;} + .d2-2920729038 .fill-N6{fill:#EEF1F8;} + .d2-2920729038 .fill-N7{fill:#FFFFFF;} + .d2-2920729038 .fill-B1{fill:#0D32B2;} + .d2-2920729038 .fill-B2{fill:#0D32B2;} + .d2-2920729038 .fill-B3{fill:#E3E9FD;} + .d2-2920729038 .fill-B4{fill:#E3E9FD;} + .d2-2920729038 .fill-B5{fill:#EDF0FD;} + .d2-2920729038 .fill-B6{fill:#F7F8FE;} + .d2-2920729038 .fill-AA2{fill:#4A6FF3;} + .d2-2920729038 .fill-AA4{fill:#EDF0FD;} + .d2-2920729038 .fill-AA5{fill:#F7F8FE;} + .d2-2920729038 .fill-AB4{fill:#EDF0FD;} + .d2-2920729038 .fill-AB5{fill:#F7F8FE;} + .d2-2920729038 .stroke-N1{stroke:#0A0F25;} + .d2-2920729038 .stroke-N2{stroke:#676C7E;} + .d2-2920729038 .stroke-N3{stroke:#9499AB;} + .d2-2920729038 .stroke-N4{stroke:#CFD2DD;} + .d2-2920729038 .stroke-N5{stroke:#DEE1EB;} + .d2-2920729038 .stroke-N6{stroke:#EEF1F8;} + .d2-2920729038 .stroke-N7{stroke:#FFFFFF;} + .d2-2920729038 .stroke-B1{stroke:#0D32B2;} + .d2-2920729038 .stroke-B2{stroke:#0D32B2;} + .d2-2920729038 .stroke-B3{stroke:#E3E9FD;} + .d2-2920729038 .stroke-B4{stroke:#E3E9FD;} + .d2-2920729038 .stroke-B5{stroke:#EDF0FD;} + .d2-2920729038 .stroke-B6{stroke:#F7F8FE;} + .d2-2920729038 .stroke-AA2{stroke:#4A6FF3;} + .d2-2920729038 .stroke-AA4{stroke:#EDF0FD;} + .d2-2920729038 .stroke-AA5{stroke:#F7F8FE;} + .d2-2920729038 .stroke-AB4{stroke:#EDF0FD;} + .d2-2920729038 .stroke-AB5{stroke:#F7F8FE;} + .d2-2920729038 .background-color-N1{background-color:#0A0F25;} + .d2-2920729038 .background-color-N2{background-color:#676C7E;} + .d2-2920729038 .background-color-N3{background-color:#9499AB;} + .d2-2920729038 .background-color-N4{background-color:#CFD2DD;} + .d2-2920729038 .background-color-N5{background-color:#DEE1EB;} + .d2-2920729038 .background-color-N6{background-color:#EEF1F8;} + .d2-2920729038 .background-color-N7{background-color:#FFFFFF;} + .d2-2920729038 .background-color-B1{background-color:#0D32B2;} + .d2-2920729038 .background-color-B2{background-color:#0D32B2;} + .d2-2920729038 .background-color-B3{background-color:#E3E9FD;} + .d2-2920729038 .background-color-B4{background-color:#E3E9FD;} + .d2-2920729038 .background-color-B5{background-color:#EDF0FD;} + .d2-2920729038 .background-color-B6{background-color:#F7F8FE;} + .d2-2920729038 .background-color-AA2{background-color:#4A6FF3;} + .d2-2920729038 .background-color-AA4{background-color:#EDF0FD;} + .d2-2920729038 .background-color-AA5{background-color:#F7F8FE;} + .d2-2920729038 .background-color-AB4{background-color:#EDF0FD;} + .d2-2920729038 .background-color-AB5{background-color:#F7F8FE;} + .d2-2920729038 .color-N1{color:#0A0F25;} + .d2-2920729038 .color-N2{color:#676C7E;} + .d2-2920729038 .color-N3{color:#9499AB;} + .d2-2920729038 .color-N4{color:#CFD2DD;} + .d2-2920729038 .color-N5{color:#DEE1EB;} + .d2-2920729038 .color-N6{color:#EEF1F8;} + .d2-2920729038 .color-N7{color:#FFFFFF;} + .d2-2920729038 .color-B1{color:#0D32B2;} + .d2-2920729038 .color-B2{color:#0D32B2;} + .d2-2920729038 .color-B3{color:#E3E9FD;} + .d2-2920729038 .color-B4{color:#E3E9FD;} + .d2-2920729038 .color-B5{color:#EDF0FD;} + .d2-2920729038 .color-B6{color:#F7F8FE;} + .d2-2920729038 .color-AA2{color:#4A6FF3;} + .d2-2920729038 .color-AA4{color:#EDF0FD;} + .d2-2920729038 .color-AA5{color:#F7F8FE;} + .d2-2920729038 .color-AB4{color:#EDF0FD;} + .d2-2920729038 .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}]]>rectanglesquarepageparallelogramdocumentcylinderqueuepackagestepcalloutstored_datapersondiamondovalcirclehexagoncloud diff --git a/e2etests/testdata/stable/all_shapes_multiple/elk/board.exp.json b/e2etests/testdata/stable/all_shapes_multiple/elk/board.exp.json index a4e95e3a84..cab2452beb 100644 --- a/e2etests/testdata/stable/all_shapes_multiple/elk/board.exp.json +++ b/e2etests/testdata/stable/all_shapes_multiple/elk/board.exp.json @@ -581,11 +581,11 @@ "id": "circle", "type": "oval", "pos": { - "x": 710, + "x": 711, "y": 368 }, - "width": 103, - "height": 103, + "width": 101, + "height": 101, "opacity": 1, "strokeDash": 0, "strokeWidth": 2, diff --git a/e2etests/testdata/stable/all_shapes_multiple/elk/sketch.exp.svg b/e2etests/testdata/stable/all_shapes_multiple/elk/sketch.exp.svg index 36c5704b64..98a30f4485 100644 --- a/e2etests/testdata/stable/all_shapes_multiple/elk/sketch.exp.svg +++ b/e2etests/testdata/stable/all_shapes_multiple/elk/sketch.exp.svg @@ -1,9 +1,9 @@ -rectanglesquarepageparallelogramdocumentcylinderqueuepackagestepcalloutstored_datapersondiamondovalcirclehexagoncloud + .d2-3168731101 .fill-N1{fill:#0A0F25;} + .d2-3168731101 .fill-N2{fill:#676C7E;} + .d2-3168731101 .fill-N3{fill:#9499AB;} + .d2-3168731101 .fill-N4{fill:#CFD2DD;} + .d2-3168731101 .fill-N5{fill:#DEE1EB;} + .d2-3168731101 .fill-N6{fill:#EEF1F8;} + .d2-3168731101 .fill-N7{fill:#FFFFFF;} + .d2-3168731101 .fill-B1{fill:#0D32B2;} + .d2-3168731101 .fill-B2{fill:#0D32B2;} + .d2-3168731101 .fill-B3{fill:#E3E9FD;} + .d2-3168731101 .fill-B4{fill:#E3E9FD;} + .d2-3168731101 .fill-B5{fill:#EDF0FD;} + .d2-3168731101 .fill-B6{fill:#F7F8FE;} + .d2-3168731101 .fill-AA2{fill:#4A6FF3;} + .d2-3168731101 .fill-AA4{fill:#EDF0FD;} + .d2-3168731101 .fill-AA5{fill:#F7F8FE;} + .d2-3168731101 .fill-AB4{fill:#EDF0FD;} + .d2-3168731101 .fill-AB5{fill:#F7F8FE;} + .d2-3168731101 .stroke-N1{stroke:#0A0F25;} + .d2-3168731101 .stroke-N2{stroke:#676C7E;} + .d2-3168731101 .stroke-N3{stroke:#9499AB;} + .d2-3168731101 .stroke-N4{stroke:#CFD2DD;} + .d2-3168731101 .stroke-N5{stroke:#DEE1EB;} + .d2-3168731101 .stroke-N6{stroke:#EEF1F8;} + .d2-3168731101 .stroke-N7{stroke:#FFFFFF;} + .d2-3168731101 .stroke-B1{stroke:#0D32B2;} + .d2-3168731101 .stroke-B2{stroke:#0D32B2;} + .d2-3168731101 .stroke-B3{stroke:#E3E9FD;} + .d2-3168731101 .stroke-B4{stroke:#E3E9FD;} + .d2-3168731101 .stroke-B5{stroke:#EDF0FD;} + .d2-3168731101 .stroke-B6{stroke:#F7F8FE;} + .d2-3168731101 .stroke-AA2{stroke:#4A6FF3;} + .d2-3168731101 .stroke-AA4{stroke:#EDF0FD;} + .d2-3168731101 .stroke-AA5{stroke:#F7F8FE;} + .d2-3168731101 .stroke-AB4{stroke:#EDF0FD;} + .d2-3168731101 .stroke-AB5{stroke:#F7F8FE;} + .d2-3168731101 .background-color-N1{background-color:#0A0F25;} + .d2-3168731101 .background-color-N2{background-color:#676C7E;} + .d2-3168731101 .background-color-N3{background-color:#9499AB;} + .d2-3168731101 .background-color-N4{background-color:#CFD2DD;} + .d2-3168731101 .background-color-N5{background-color:#DEE1EB;} + .d2-3168731101 .background-color-N6{background-color:#EEF1F8;} + .d2-3168731101 .background-color-N7{background-color:#FFFFFF;} + .d2-3168731101 .background-color-B1{background-color:#0D32B2;} + .d2-3168731101 .background-color-B2{background-color:#0D32B2;} + .d2-3168731101 .background-color-B3{background-color:#E3E9FD;} + .d2-3168731101 .background-color-B4{background-color:#E3E9FD;} + .d2-3168731101 .background-color-B5{background-color:#EDF0FD;} + .d2-3168731101 .background-color-B6{background-color:#F7F8FE;} + .d2-3168731101 .background-color-AA2{background-color:#4A6FF3;} + .d2-3168731101 .background-color-AA4{background-color:#EDF0FD;} + .d2-3168731101 .background-color-AA5{background-color:#F7F8FE;} + .d2-3168731101 .background-color-AB4{background-color:#EDF0FD;} + .d2-3168731101 .background-color-AB5{background-color:#F7F8FE;} + .d2-3168731101 .color-N1{color:#0A0F25;} + .d2-3168731101 .color-N2{color:#676C7E;} + .d2-3168731101 .color-N3{color:#9499AB;} + .d2-3168731101 .color-N4{color:#CFD2DD;} + .d2-3168731101 .color-N5{color:#DEE1EB;} + .d2-3168731101 .color-N6{color:#EEF1F8;} + .d2-3168731101 .color-N7{color:#FFFFFF;} + .d2-3168731101 .color-B1{color:#0D32B2;} + .d2-3168731101 .color-B2{color:#0D32B2;} + .d2-3168731101 .color-B3{color:#E3E9FD;} + .d2-3168731101 .color-B4{color:#E3E9FD;} + .d2-3168731101 .color-B5{color:#EDF0FD;} + .d2-3168731101 .color-B6{color:#F7F8FE;} + .d2-3168731101 .color-AA2{color:#4A6FF3;} + .d2-3168731101 .color-AA4{color:#EDF0FD;} + .d2-3168731101 .color-AA5{color:#F7F8FE;} + .d2-3168731101 .color-AB4{color:#EDF0FD;} + .d2-3168731101 .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}]]>rectanglesquarepageparallelogramdocumentcylinderqueuepackagestepcalloutstored_datapersondiamondovalcirclehexagoncloud @@ -105,7 +105,7 @@ - + \ No newline at end of file diff --git a/e2etests/testdata/stable/all_shapes_shadow/dagre/board.exp.json b/e2etests/testdata/stable/all_shapes_shadow/dagre/board.exp.json index bfd018b647..ffa4c57df3 100644 --- a/e2etests/testdata/stable/all_shapes_shadow/dagre/board.exp.json +++ b/e2etests/testdata/stable/all_shapes_shadow/dagre/board.exp.json @@ -581,11 +581,11 @@ "id": "circle", "type": "oval", "pos": { - "x": 819, - "y": 394 + "x": 820, + "y": 395 }, - "width": 103, - "height": 103, + "width": 101, + "height": 101, "opacity": 1, "strokeDash": 0, "strokeWidth": 2, @@ -1160,11 +1160,11 @@ }, { "x": 870, - "y": 347.6000061035156 + "y": 347.79998779296875 }, { "x": 870, - "y": 394 + "y": 395 } ], "isCurve": true, diff --git a/e2etests/testdata/stable/all_shapes_shadow/dagre/sketch.exp.svg b/e2etests/testdata/stable/all_shapes_shadow/dagre/sketch.exp.svg index d750ca54c2..5f64f28fb7 100644 --- a/e2etests/testdata/stable/all_shapes_shadow/dagre/sketch.exp.svg +++ b/e2etests/testdata/stable/all_shapes_shadow/dagre/sketch.exp.svg @@ -1,9 +1,9 @@ - + .d2-3389784452 .fill-N1{fill:#0A0F25;} + .d2-3389784452 .fill-N2{fill:#676C7E;} + .d2-3389784452 .fill-N3{fill:#9499AB;} + .d2-3389784452 .fill-N4{fill:#CFD2DD;} + .d2-3389784452 .fill-N5{fill:#DEE1EB;} + .d2-3389784452 .fill-N6{fill:#EEF1F8;} + .d2-3389784452 .fill-N7{fill:#FFFFFF;} + .d2-3389784452 .fill-B1{fill:#0D32B2;} + .d2-3389784452 .fill-B2{fill:#0D32B2;} + .d2-3389784452 .fill-B3{fill:#E3E9FD;} + .d2-3389784452 .fill-B4{fill:#E3E9FD;} + .d2-3389784452 .fill-B5{fill:#EDF0FD;} + .d2-3389784452 .fill-B6{fill:#F7F8FE;} + .d2-3389784452 .fill-AA2{fill:#4A6FF3;} + .d2-3389784452 .fill-AA4{fill:#EDF0FD;} + .d2-3389784452 .fill-AA5{fill:#F7F8FE;} + .d2-3389784452 .fill-AB4{fill:#EDF0FD;} + .d2-3389784452 .fill-AB5{fill:#F7F8FE;} + .d2-3389784452 .stroke-N1{stroke:#0A0F25;} + .d2-3389784452 .stroke-N2{stroke:#676C7E;} + .d2-3389784452 .stroke-N3{stroke:#9499AB;} + .d2-3389784452 .stroke-N4{stroke:#CFD2DD;} + .d2-3389784452 .stroke-N5{stroke:#DEE1EB;} + .d2-3389784452 .stroke-N6{stroke:#EEF1F8;} + .d2-3389784452 .stroke-N7{stroke:#FFFFFF;} + .d2-3389784452 .stroke-B1{stroke:#0D32B2;} + .d2-3389784452 .stroke-B2{stroke:#0D32B2;} + .d2-3389784452 .stroke-B3{stroke:#E3E9FD;} + .d2-3389784452 .stroke-B4{stroke:#E3E9FD;} + .d2-3389784452 .stroke-B5{stroke:#EDF0FD;} + .d2-3389784452 .stroke-B6{stroke:#F7F8FE;} + .d2-3389784452 .stroke-AA2{stroke:#4A6FF3;} + .d2-3389784452 .stroke-AA4{stroke:#EDF0FD;} + .d2-3389784452 .stroke-AA5{stroke:#F7F8FE;} + .d2-3389784452 .stroke-AB4{stroke:#EDF0FD;} + .d2-3389784452 .stroke-AB5{stroke:#F7F8FE;} + .d2-3389784452 .background-color-N1{background-color:#0A0F25;} + .d2-3389784452 .background-color-N2{background-color:#676C7E;} + .d2-3389784452 .background-color-N3{background-color:#9499AB;} + .d2-3389784452 .background-color-N4{background-color:#CFD2DD;} + .d2-3389784452 .background-color-N5{background-color:#DEE1EB;} + .d2-3389784452 .background-color-N6{background-color:#EEF1F8;} + .d2-3389784452 .background-color-N7{background-color:#FFFFFF;} + .d2-3389784452 .background-color-B1{background-color:#0D32B2;} + .d2-3389784452 .background-color-B2{background-color:#0D32B2;} + .d2-3389784452 .background-color-B3{background-color:#E3E9FD;} + .d2-3389784452 .background-color-B4{background-color:#E3E9FD;} + .d2-3389784452 .background-color-B5{background-color:#EDF0FD;} + .d2-3389784452 .background-color-B6{background-color:#F7F8FE;} + .d2-3389784452 .background-color-AA2{background-color:#4A6FF3;} + .d2-3389784452 .background-color-AA4{background-color:#EDF0FD;} + .d2-3389784452 .background-color-AA5{background-color:#F7F8FE;} + .d2-3389784452 .background-color-AB4{background-color:#EDF0FD;} + .d2-3389784452 .background-color-AB5{background-color:#F7F8FE;} + .d2-3389784452 .color-N1{color:#0A0F25;} + .d2-3389784452 .color-N2{color:#676C7E;} + .d2-3389784452 .color-N3{color:#9499AB;} + .d2-3389784452 .color-N4{color:#CFD2DD;} + .d2-3389784452 .color-N5{color:#DEE1EB;} + .d2-3389784452 .color-N6{color:#EEF1F8;} + .d2-3389784452 .color-N7{color:#FFFFFF;} + .d2-3389784452 .color-B1{color:#0D32B2;} + .d2-3389784452 .color-B2{color:#0D32B2;} + .d2-3389784452 .color-B3{color:#E3E9FD;} + .d2-3389784452 .color-B4{color:#E3E9FD;} + .d2-3389784452 .color-B5{color:#EDF0FD;} + .d2-3389784452 .color-B6{color:#F7F8FE;} + .d2-3389784452 .color-AA2{color:#4A6FF3;} + .d2-3389784452 .color-AA4{color:#EDF0FD;} + .d2-3389784452 .color-AA5{color:#F7F8FE;} + .d2-3389784452 .color-AB4{color:#EDF0FD;} + .d2-3389784452 .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}]]> @@ -97,7 +97,7 @@ -rectanglesquarepageparallelogramdocumentcylinderqueuepackagestepcalloutstored_datapersondiamondovalcirclehexagoncloud +rectanglesquarepageparallelogramdocumentcylinderqueuepackagestepcalloutstored_datapersondiamondovalcirclehexagoncloud diff --git a/e2etests/testdata/stable/all_shapes_shadow/elk/board.exp.json b/e2etests/testdata/stable/all_shapes_shadow/elk/board.exp.json index 16fc33bc81..ac9d875dc1 100644 --- a/e2etests/testdata/stable/all_shapes_shadow/elk/board.exp.json +++ b/e2etests/testdata/stable/all_shapes_shadow/elk/board.exp.json @@ -581,11 +581,11 @@ "id": "circle", "type": "oval", "pos": { - "x": 670, + "x": 671, "y": 338 }, - "width": 103, - "height": 103, + "width": 101, + "height": 101, "opacity": 1, "strokeDash": 0, "strokeWidth": 2, diff --git a/e2etests/testdata/stable/all_shapes_shadow/elk/sketch.exp.svg b/e2etests/testdata/stable/all_shapes_shadow/elk/sketch.exp.svg index 52b5cf5ea3..64d29b4a52 100644 --- a/e2etests/testdata/stable/all_shapes_shadow/elk/sketch.exp.svg +++ b/e2etests/testdata/stable/all_shapes_shadow/elk/sketch.exp.svg @@ -1,9 +1,9 @@ - + .d2-1029480948 .fill-N1{fill:#0A0F25;} + .d2-1029480948 .fill-N2{fill:#676C7E;} + .d2-1029480948 .fill-N3{fill:#9499AB;} + .d2-1029480948 .fill-N4{fill:#CFD2DD;} + .d2-1029480948 .fill-N5{fill:#DEE1EB;} + .d2-1029480948 .fill-N6{fill:#EEF1F8;} + .d2-1029480948 .fill-N7{fill:#FFFFFF;} + .d2-1029480948 .fill-B1{fill:#0D32B2;} + .d2-1029480948 .fill-B2{fill:#0D32B2;} + .d2-1029480948 .fill-B3{fill:#E3E9FD;} + .d2-1029480948 .fill-B4{fill:#E3E9FD;} + .d2-1029480948 .fill-B5{fill:#EDF0FD;} + .d2-1029480948 .fill-B6{fill:#F7F8FE;} + .d2-1029480948 .fill-AA2{fill:#4A6FF3;} + .d2-1029480948 .fill-AA4{fill:#EDF0FD;} + .d2-1029480948 .fill-AA5{fill:#F7F8FE;} + .d2-1029480948 .fill-AB4{fill:#EDF0FD;} + .d2-1029480948 .fill-AB5{fill:#F7F8FE;} + .d2-1029480948 .stroke-N1{stroke:#0A0F25;} + .d2-1029480948 .stroke-N2{stroke:#676C7E;} + .d2-1029480948 .stroke-N3{stroke:#9499AB;} + .d2-1029480948 .stroke-N4{stroke:#CFD2DD;} + .d2-1029480948 .stroke-N5{stroke:#DEE1EB;} + .d2-1029480948 .stroke-N6{stroke:#EEF1F8;} + .d2-1029480948 .stroke-N7{stroke:#FFFFFF;} + .d2-1029480948 .stroke-B1{stroke:#0D32B2;} + .d2-1029480948 .stroke-B2{stroke:#0D32B2;} + .d2-1029480948 .stroke-B3{stroke:#E3E9FD;} + .d2-1029480948 .stroke-B4{stroke:#E3E9FD;} + .d2-1029480948 .stroke-B5{stroke:#EDF0FD;} + .d2-1029480948 .stroke-B6{stroke:#F7F8FE;} + .d2-1029480948 .stroke-AA2{stroke:#4A6FF3;} + .d2-1029480948 .stroke-AA4{stroke:#EDF0FD;} + .d2-1029480948 .stroke-AA5{stroke:#F7F8FE;} + .d2-1029480948 .stroke-AB4{stroke:#EDF0FD;} + .d2-1029480948 .stroke-AB5{stroke:#F7F8FE;} + .d2-1029480948 .background-color-N1{background-color:#0A0F25;} + .d2-1029480948 .background-color-N2{background-color:#676C7E;} + .d2-1029480948 .background-color-N3{background-color:#9499AB;} + .d2-1029480948 .background-color-N4{background-color:#CFD2DD;} + .d2-1029480948 .background-color-N5{background-color:#DEE1EB;} + .d2-1029480948 .background-color-N6{background-color:#EEF1F8;} + .d2-1029480948 .background-color-N7{background-color:#FFFFFF;} + .d2-1029480948 .background-color-B1{background-color:#0D32B2;} + .d2-1029480948 .background-color-B2{background-color:#0D32B2;} + .d2-1029480948 .background-color-B3{background-color:#E3E9FD;} + .d2-1029480948 .background-color-B4{background-color:#E3E9FD;} + .d2-1029480948 .background-color-B5{background-color:#EDF0FD;} + .d2-1029480948 .background-color-B6{background-color:#F7F8FE;} + .d2-1029480948 .background-color-AA2{background-color:#4A6FF3;} + .d2-1029480948 .background-color-AA4{background-color:#EDF0FD;} + .d2-1029480948 .background-color-AA5{background-color:#F7F8FE;} + .d2-1029480948 .background-color-AB4{background-color:#EDF0FD;} + .d2-1029480948 .background-color-AB5{background-color:#F7F8FE;} + .d2-1029480948 .color-N1{color:#0A0F25;} + .d2-1029480948 .color-N2{color:#676C7E;} + .d2-1029480948 .color-N3{color:#9499AB;} + .d2-1029480948 .color-N4{color:#CFD2DD;} + .d2-1029480948 .color-N5{color:#DEE1EB;} + .d2-1029480948 .color-N6{color:#EEF1F8;} + .d2-1029480948 .color-N7{color:#FFFFFF;} + .d2-1029480948 .color-B1{color:#0D32B2;} + .d2-1029480948 .color-B2{color:#0D32B2;} + .d2-1029480948 .color-B3{color:#E3E9FD;} + .d2-1029480948 .color-B4{color:#E3E9FD;} + .d2-1029480948 .color-B5{color:#EDF0FD;} + .d2-1029480948 .color-B6{color:#F7F8FE;} + .d2-1029480948 .color-AA2{color:#4A6FF3;} + .d2-1029480948 .color-AA4{color:#EDF0FD;} + .d2-1029480948 .color-AA5{color:#F7F8FE;} + .d2-1029480948 .color-AB4{color:#EDF0FD;} + .d2-1029480948 .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}]]> @@ -97,7 +97,7 @@ -rectanglesquarepageparallelogramdocumentcylinderqueuepackagestepcalloutstored_datapersondiamondovalcirclehexagoncloud +rectanglesquarepageparallelogramdocumentcylinderqueuepackagestepcalloutstored_datapersondiamondovalcirclehexagoncloud @@ -113,7 +113,7 @@ - + \ No newline at end of file diff --git a/e2etests/testdata/stable/basic-tooltips/dagre/board.exp.json b/e2etests/testdata/stable/basic-tooltips/dagre/board.exp.json index ade6dee49d..c42b857e9a 100644 --- a/e2etests/testdata/stable/basic-tooltips/dagre/board.exp.json +++ b/e2etests/testdata/stable/basic-tooltips/dagre/board.exp.json @@ -10,7 +10,7 @@ "x": 1, "y": 0 }, - "width": 85, + "width": 53, "height": 66, "opacity": 1, "strokeDash": 0, @@ -51,7 +51,7 @@ "x": 0, "y": 166 }, - "width": 86, + "width": 54, "height": 66, "opacity": 1, "strokeDash": 0, @@ -112,19 +112,19 @@ "labelPercentage": 0, "route": [ { - "x": 43, + "x": 27, "y": 66 }, { - "x": 43, + "x": 27, "y": 106 }, { - "x": 43, + "x": 27, "y": 126 }, { - "x": 43, + "x": 27, "y": 166 } ], diff --git a/e2etests/testdata/stable/basic-tooltips/dagre/sketch.exp.svg b/e2etests/testdata/stable/basic-tooltips/dagre/sketch.exp.svg index 0fc8d7b81b..d6723cb545 100644 --- a/e2etests/testdata/stable/basic-tooltips/dagre/sketch.exp.svg +++ b/e2etests/testdata/stable/basic-tooltips/dagre/sketch.exp.svg @@ -1,12 +1,12 @@ -xTotal abstinence is easier than perfect moderationyGee, I feel kind of LIGHT in the head now, knowing I can't make my satellite dish PAYMENTS! Total abstinence is easier than perfect moderation + .d2-1133925052 .fill-N1{fill:#0A0F25;} + .d2-1133925052 .fill-N2{fill:#676C7E;} + .d2-1133925052 .fill-N3{fill:#9499AB;} + .d2-1133925052 .fill-N4{fill:#CFD2DD;} + .d2-1133925052 .fill-N5{fill:#DEE1EB;} + .d2-1133925052 .fill-N6{fill:#EEF1F8;} + .d2-1133925052 .fill-N7{fill:#FFFFFF;} + .d2-1133925052 .fill-B1{fill:#0D32B2;} + .d2-1133925052 .fill-B2{fill:#0D32B2;} + .d2-1133925052 .fill-B3{fill:#E3E9FD;} + .d2-1133925052 .fill-B4{fill:#E3E9FD;} + .d2-1133925052 .fill-B5{fill:#EDF0FD;} + .d2-1133925052 .fill-B6{fill:#F7F8FE;} + .d2-1133925052 .fill-AA2{fill:#4A6FF3;} + .d2-1133925052 .fill-AA4{fill:#EDF0FD;} + .d2-1133925052 .fill-AA5{fill:#F7F8FE;} + .d2-1133925052 .fill-AB4{fill:#EDF0FD;} + .d2-1133925052 .fill-AB5{fill:#F7F8FE;} + .d2-1133925052 .stroke-N1{stroke:#0A0F25;} + .d2-1133925052 .stroke-N2{stroke:#676C7E;} + .d2-1133925052 .stroke-N3{stroke:#9499AB;} + .d2-1133925052 .stroke-N4{stroke:#CFD2DD;} + .d2-1133925052 .stroke-N5{stroke:#DEE1EB;} + .d2-1133925052 .stroke-N6{stroke:#EEF1F8;} + .d2-1133925052 .stroke-N7{stroke:#FFFFFF;} + .d2-1133925052 .stroke-B1{stroke:#0D32B2;} + .d2-1133925052 .stroke-B2{stroke:#0D32B2;} + .d2-1133925052 .stroke-B3{stroke:#E3E9FD;} + .d2-1133925052 .stroke-B4{stroke:#E3E9FD;} + .d2-1133925052 .stroke-B5{stroke:#EDF0FD;} + .d2-1133925052 .stroke-B6{stroke:#F7F8FE;} + .d2-1133925052 .stroke-AA2{stroke:#4A6FF3;} + .d2-1133925052 .stroke-AA4{stroke:#EDF0FD;} + .d2-1133925052 .stroke-AA5{stroke:#F7F8FE;} + .d2-1133925052 .stroke-AB4{stroke:#EDF0FD;} + .d2-1133925052 .stroke-AB5{stroke:#F7F8FE;} + .d2-1133925052 .background-color-N1{background-color:#0A0F25;} + .d2-1133925052 .background-color-N2{background-color:#676C7E;} + .d2-1133925052 .background-color-N3{background-color:#9499AB;} + .d2-1133925052 .background-color-N4{background-color:#CFD2DD;} + .d2-1133925052 .background-color-N5{background-color:#DEE1EB;} + .d2-1133925052 .background-color-N6{background-color:#EEF1F8;} + .d2-1133925052 .background-color-N7{background-color:#FFFFFF;} + .d2-1133925052 .background-color-B1{background-color:#0D32B2;} + .d2-1133925052 .background-color-B2{background-color:#0D32B2;} + .d2-1133925052 .background-color-B3{background-color:#E3E9FD;} + .d2-1133925052 .background-color-B4{background-color:#E3E9FD;} + .d2-1133925052 .background-color-B5{background-color:#EDF0FD;} + .d2-1133925052 .background-color-B6{background-color:#F7F8FE;} + .d2-1133925052 .background-color-AA2{background-color:#4A6FF3;} + .d2-1133925052 .background-color-AA4{background-color:#EDF0FD;} + .d2-1133925052 .background-color-AA5{background-color:#F7F8FE;} + .d2-1133925052 .background-color-AB4{background-color:#EDF0FD;} + .d2-1133925052 .background-color-AB5{background-color:#F7F8FE;} + .d2-1133925052 .color-N1{color:#0A0F25;} + .d2-1133925052 .color-N2{color:#676C7E;} + .d2-1133925052 .color-N3{color:#9499AB;} + .d2-1133925052 .color-N4{color:#CFD2DD;} + .d2-1133925052 .color-N5{color:#DEE1EB;} + .d2-1133925052 .color-N6{color:#EEF1F8;} + .d2-1133925052 .color-N7{color:#FFFFFF;} + .d2-1133925052 .color-B1{color:#0D32B2;} + .d2-1133925052 .color-B2{color:#0D32B2;} + .d2-1133925052 .color-B3{color:#E3E9FD;} + .d2-1133925052 .color-B4{color:#E3E9FD;} + .d2-1133925052 .color-B5{color:#EDF0FD;} + .d2-1133925052 .color-B6{color:#F7F8FE;} + .d2-1133925052 .color-AA2{color:#4A6FF3;} + .d2-1133925052 .color-AA4{color:#EDF0FD;} + .d2-1133925052 .color-AA5{color:#F7F8FE;} + .d2-1133925052 .color-AB4{color:#EDF0FD;} + .d2-1133925052 .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}]]>xTotal abstinence is easier than perfect moderationyGee, I feel kind of LIGHT in the head now, knowing I can't make my satellite dish PAYMENTS! Total abstinence is easier than perfect moderation @@ -105,7 +105,7 @@ -Gee, I feel kind of LIGHT in the head now, knowing I can't make my satellite dish PAYMENTS! +Gee, I feel kind of LIGHT in the head now, knowing I can't make my satellite dish PAYMENTS! @@ -118,8 +118,8 @@ - - - - + + + + \ No newline at end of file diff --git a/e2etests/testdata/stable/basic-tooltips/elk/board.exp.json b/e2etests/testdata/stable/basic-tooltips/elk/board.exp.json index 8c92da7b5f..ab5072fff0 100644 --- a/e2etests/testdata/stable/basic-tooltips/elk/board.exp.json +++ b/e2etests/testdata/stable/basic-tooltips/elk/board.exp.json @@ -10,7 +10,7 @@ "x": 12, "y": 12 }, - "width": 85, + "width": 53, "height": 66, "opacity": 1, "strokeDash": 0, @@ -51,7 +51,7 @@ "x": 12, "y": 148 }, - "width": 86, + "width": 54, "height": 66, "opacity": 1, "strokeDash": 0, @@ -112,11 +112,11 @@ "labelPercentage": 0, "route": [ { - "x": 55, + "x": 39, "y": 78 }, { - "x": 55, + "x": 39, "y": 148 } ], diff --git a/e2etests/testdata/stable/basic-tooltips/elk/sketch.exp.svg b/e2etests/testdata/stable/basic-tooltips/elk/sketch.exp.svg index c92562f7b6..331942232c 100644 --- a/e2etests/testdata/stable/basic-tooltips/elk/sketch.exp.svg +++ b/e2etests/testdata/stable/basic-tooltips/elk/sketch.exp.svg @@ -1,12 +1,12 @@ -xTotal abstinence is easier than perfect moderationyGee, I feel kind of LIGHT in the head now, knowing I can't make my satellite dish PAYMENTS! Total abstinence is easier than perfect moderation + .d2-2959660034 .fill-N1{fill:#0A0F25;} + .d2-2959660034 .fill-N2{fill:#676C7E;} + .d2-2959660034 .fill-N3{fill:#9499AB;} + .d2-2959660034 .fill-N4{fill:#CFD2DD;} + .d2-2959660034 .fill-N5{fill:#DEE1EB;} + .d2-2959660034 .fill-N6{fill:#EEF1F8;} + .d2-2959660034 .fill-N7{fill:#FFFFFF;} + .d2-2959660034 .fill-B1{fill:#0D32B2;} + .d2-2959660034 .fill-B2{fill:#0D32B2;} + .d2-2959660034 .fill-B3{fill:#E3E9FD;} + .d2-2959660034 .fill-B4{fill:#E3E9FD;} + .d2-2959660034 .fill-B5{fill:#EDF0FD;} + .d2-2959660034 .fill-B6{fill:#F7F8FE;} + .d2-2959660034 .fill-AA2{fill:#4A6FF3;} + .d2-2959660034 .fill-AA4{fill:#EDF0FD;} + .d2-2959660034 .fill-AA5{fill:#F7F8FE;} + .d2-2959660034 .fill-AB4{fill:#EDF0FD;} + .d2-2959660034 .fill-AB5{fill:#F7F8FE;} + .d2-2959660034 .stroke-N1{stroke:#0A0F25;} + .d2-2959660034 .stroke-N2{stroke:#676C7E;} + .d2-2959660034 .stroke-N3{stroke:#9499AB;} + .d2-2959660034 .stroke-N4{stroke:#CFD2DD;} + .d2-2959660034 .stroke-N5{stroke:#DEE1EB;} + .d2-2959660034 .stroke-N6{stroke:#EEF1F8;} + .d2-2959660034 .stroke-N7{stroke:#FFFFFF;} + .d2-2959660034 .stroke-B1{stroke:#0D32B2;} + .d2-2959660034 .stroke-B2{stroke:#0D32B2;} + .d2-2959660034 .stroke-B3{stroke:#E3E9FD;} + .d2-2959660034 .stroke-B4{stroke:#E3E9FD;} + .d2-2959660034 .stroke-B5{stroke:#EDF0FD;} + .d2-2959660034 .stroke-B6{stroke:#F7F8FE;} + .d2-2959660034 .stroke-AA2{stroke:#4A6FF3;} + .d2-2959660034 .stroke-AA4{stroke:#EDF0FD;} + .d2-2959660034 .stroke-AA5{stroke:#F7F8FE;} + .d2-2959660034 .stroke-AB4{stroke:#EDF0FD;} + .d2-2959660034 .stroke-AB5{stroke:#F7F8FE;} + .d2-2959660034 .background-color-N1{background-color:#0A0F25;} + .d2-2959660034 .background-color-N2{background-color:#676C7E;} + .d2-2959660034 .background-color-N3{background-color:#9499AB;} + .d2-2959660034 .background-color-N4{background-color:#CFD2DD;} + .d2-2959660034 .background-color-N5{background-color:#DEE1EB;} + .d2-2959660034 .background-color-N6{background-color:#EEF1F8;} + .d2-2959660034 .background-color-N7{background-color:#FFFFFF;} + .d2-2959660034 .background-color-B1{background-color:#0D32B2;} + .d2-2959660034 .background-color-B2{background-color:#0D32B2;} + .d2-2959660034 .background-color-B3{background-color:#E3E9FD;} + .d2-2959660034 .background-color-B4{background-color:#E3E9FD;} + .d2-2959660034 .background-color-B5{background-color:#EDF0FD;} + .d2-2959660034 .background-color-B6{background-color:#F7F8FE;} + .d2-2959660034 .background-color-AA2{background-color:#4A6FF3;} + .d2-2959660034 .background-color-AA4{background-color:#EDF0FD;} + .d2-2959660034 .background-color-AA5{background-color:#F7F8FE;} + .d2-2959660034 .background-color-AB4{background-color:#EDF0FD;} + .d2-2959660034 .background-color-AB5{background-color:#F7F8FE;} + .d2-2959660034 .color-N1{color:#0A0F25;} + .d2-2959660034 .color-N2{color:#676C7E;} + .d2-2959660034 .color-N3{color:#9499AB;} + .d2-2959660034 .color-N4{color:#CFD2DD;} + .d2-2959660034 .color-N5{color:#DEE1EB;} + .d2-2959660034 .color-N6{color:#EEF1F8;} + .d2-2959660034 .color-N7{color:#FFFFFF;} + .d2-2959660034 .color-B1{color:#0D32B2;} + .d2-2959660034 .color-B2{color:#0D32B2;} + .d2-2959660034 .color-B3{color:#E3E9FD;} + .d2-2959660034 .color-B4{color:#E3E9FD;} + .d2-2959660034 .color-B5{color:#EDF0FD;} + .d2-2959660034 .color-B6{color:#F7F8FE;} + .d2-2959660034 .color-AA2{color:#4A6FF3;} + .d2-2959660034 .color-AA4{color:#EDF0FD;} + .d2-2959660034 .color-AA5{color:#F7F8FE;} + .d2-2959660034 .color-AB4{color:#EDF0FD;} + .d2-2959660034 .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}]]>xTotal abstinence is easier than perfect moderationyGee, I feel kind of LIGHT in the head now, knowing I can't make my satellite dish PAYMENTS! Total abstinence is easier than perfect moderation @@ -105,7 +105,7 @@ -Gee, I feel kind of LIGHT in the head now, knowing I can't make my satellite dish PAYMENTS! +Gee, I feel kind of LIGHT in the head now, knowing I can't make my satellite dish PAYMENTS! @@ -118,8 +118,8 @@ - - - - + + + + \ No newline at end of file diff --git a/e2etests/testdata/stable/chaos2/dagre/board.exp.json b/e2etests/testdata/stable/chaos2/dagre/board.exp.json index 6ebf9adfcd..e626415ea4 100644 --- a/e2etests/testdata/stable/chaos2/dagre/board.exp.json +++ b/e2etests/testdata/stable/chaos2/dagre/board.exp.json @@ -11,7 +11,7 @@ "y": 23 }, "width": 802, - "height": 1270, + "height": 1273, "opacity": 1, "strokeDash": 0, "strokeWidth": 2, @@ -52,7 +52,7 @@ "y": 64 }, "width": 574, - "height": 1199, + "height": 1202, "opacity": 1, "strokeDash": 0, "strokeWidth": 2, @@ -93,7 +93,7 @@ "y": 691 }, "width": 253, - "height": 542, + "height": 545, "opacity": 1, "strokeDash": 0, "strokeWidth": 2, @@ -293,7 +293,7 @@ "type": "rectangle", "pos": { "x": 177, - "y": 1137 + "y": 1140 }, "width": 63, "height": 66, @@ -415,11 +415,11 @@ "id": "aa.bb.kk", "type": "oval", "pos": { - "x": 450, + "x": 447, "y": 1131 }, - "width": 77, - "height": 77, + "width": 83, + "height": 83, "opacity": 1, "strokeDash": 0, "strokeWidth": 2, @@ -539,7 +539,7 @@ "type": "text", "pos": { "x": 633, - "y": 1159 + "y": 1162 }, "width": 16, "height": 21, @@ -579,7 +579,7 @@ "type": "rectangle", "pos": { "x": 709, - "y": 1137 + "y": 1140 }, "width": 63, "height": 66, @@ -697,12 +697,12 @@ "y": 1058.300048828125 }, { - "x": 183.51600646972656, - "y": 1083.699951171875 + "x": 183.57200622558594, + "y": 1084.300048828125 }, { - "x": 198.58299255371094, - "y": 1136.5 + "x": 198.86000061035156, + "y": 1139.5 } ], "isCurve": true, diff --git a/e2etests/testdata/stable/chaos2/dagre/sketch.exp.svg b/e2etests/testdata/stable/chaos2/dagre/sketch.exp.svg index 5303969e5c..dafb88af2c 100644 --- a/e2etests/testdata/stable/chaos2/dagre/sketch.exp.svg +++ b/e2etests/testdata/stable/chaos2/dagre/sketch.exp.svg @@ -1,23 +1,23 @@ -aabbllmmnnoocciikkddgghhjjeeff1122 334455667788 - +aabbllmmnnoocciikkddgghhjjeeff1122 334455667788 + - - + + - + - + - + diff --git a/e2etests/testdata/stable/chaos2/elk/board.exp.json b/e2etests/testdata/stable/chaos2/elk/board.exp.json index 41bc1c8b24..527735b147 100644 --- a/e2etests/testdata/stable/chaos2/elk/board.exp.json +++ b/e2etests/testdata/stable/chaos2/elk/board.exp.json @@ -10,7 +10,7 @@ "x": 12, "y": 12 }, - "width": 720, + "width": 721, "height": 1951, "opacity": 1, "strokeDash": 0, @@ -51,7 +51,7 @@ "x": 100, "y": 466 }, - "width": 525, + "width": 527, "height": 1095, "opacity": 1, "strokeDash": 0, @@ -89,7 +89,7 @@ "id": "aa.bb.cc", "type": "rectangle", "pos": { - "x": 241, + "x": 242, "y": 821 }, "width": 334, @@ -130,7 +130,7 @@ "id": "aa.bb.cc.dd", "type": "rectangle", "pos": { - "x": 291, + "x": 292, "y": 871 }, "width": 193, @@ -171,7 +171,7 @@ "id": "aa.bb.cc.dd.ee", "type": "text", "pos": { - "x": 341, + "x": 342, "y": 966 }, "width": 16, @@ -211,7 +211,7 @@ "id": "aa.bb.cc.dd.ff", "type": "rectangle", "pos": { - "x": 377, + "x": 378, "y": 921 }, "width": 57, @@ -252,7 +252,7 @@ "id": "aa.bb.cc.gg", "type": "text", "pos": { - "x": 396, + "x": 398, "y": 1213 }, "width": 80, @@ -292,7 +292,7 @@ "id": "aa.bb.cc.hh", "type": "rectangle", "pos": { - "x": 405, + "x": 406, "y": 1395 }, "width": 63, @@ -415,11 +415,11 @@ "id": "aa.bb.kk", "type": "oval", "pos": { - "x": 322, - "y": 587 + "x": 320, + "y": 584 }, - "width": 77, - "height": 77, + "width": 83, + "height": 83, "opacity": 1, "strokeDash": 0, "strokeWidth": 2, @@ -456,7 +456,7 @@ "id": "aa.ll", "type": "rectangle", "pos": { - "x": 259, + "x": 261, "y": 1847 }, "width": 120, @@ -497,7 +497,7 @@ "id": "aa.mm", "type": "cylinder", "pos": { - "x": 313, + "x": 314, "y": 62 }, "width": 160, @@ -538,7 +538,7 @@ "id": "aa.nn", "type": "text", "pos": { - "x": 493, + "x": 494, "y": 110 }, "width": 16, @@ -578,7 +578,7 @@ "id": "aa.oo", "type": "rectangle", "pos": { - "x": 529, + "x": 530, "y": 88 }, "width": 63, @@ -642,19 +642,19 @@ "labelPercentage": 0, "route": [ { - "x": 349, + "x": 350.5, "y": 987 }, { - "x": 349, + "x": 350.5, "y": 1173 }, { - "x": 423.1659851074219, + "x": 424.6659851074219, "y": 1173 }, { - "x": 423.1659851074219, + "x": 424.6659851074219, "y": 1213 } ], @@ -688,11 +688,11 @@ "labelPercentage": 0, "route": [ { - "x": 436.5, + "x": 438, "y": 1234 }, { - "x": 436.5, + "x": 438, "y": 1395 } ], @@ -734,11 +734,11 @@ "y": 776 }, { - "x": 359, + "x": 360.5, "y": 776 }, { - "x": 359, + "x": 360.5, "y": 871 } ], @@ -772,11 +772,11 @@ "labelPercentage": 0, "route": [ { - "x": 279.8330078125, + "x": 281.3330078125, "y": 1847 }, { - "x": 279.8330078125, + "x": 281.3330078125, "y": 1807 }, { @@ -826,19 +826,19 @@ "labelPercentage": 0, "route": [ { - "x": 409, + "x": 410, "y": 180 }, { - "x": 409.125, + "x": 410.25, "y": 270 }, { - "x": 447.25, + "x": 448.75, "y": 270 }, { - "x": 447.25, + "x": 448.75, "y": 821 } ], @@ -872,27 +872,27 @@ "labelPercentage": 0, "route": [ { - "x": 441, + "x": 442, "y": 176 }, { - "x": 441.125, + "x": 442.25, "y": 220 }, { - "x": 680.5, + "x": 682, "y": 220 }, { - "x": 680.5, + "x": 682, "y": 1757 }, { - "x": 359.8330078125, + "x": 361.3330078125, "y": 1757 }, { - "x": 359.8330078125, + "x": 361.3330078125, "y": 1847 } ], @@ -926,11 +926,11 @@ "labelPercentage": 0, "route": [ { - "x": 377, + "x": 378, "y": 180 }, { - "x": 377.125, + "x": 378.25, "y": 466 } ], @@ -964,35 +964,35 @@ "labelPercentage": 0, "route": [ { - "x": 339.8330078125, + "x": 341.3330078125, "y": 1847 }, { - "x": 339.8330078125, + "x": 341.3330078125, "y": 1707 }, { - "x": 665, + "x": 666.5, "y": 1707 }, { - "x": 665, + "x": 666.5, "y": 421 }, { - "x": 524, + "x": 525.5, "y": 421 }, { - "x": 524, + "x": 525.5, "y": 1173 }, { - "x": 449.8330078125, + "x": 451.3330078125, "y": 1173 }, { - "x": 449.8330078125, + "x": 451.3330078125, "y": 1213 } ], @@ -1026,11 +1026,11 @@ "labelPercentage": 0, "route": [ { - "x": 345, + "x": 346, "y": 176 }, { - "x": 345.125, + "x": 346.25, "y": 371 }, { @@ -1072,19 +1072,19 @@ "labelPercentage": 0, "route": [ { - "x": 309.6659851074219, + "x": 310.4159851074219, "y": 1511 }, { - "x": 309.6659851074219, + "x": 310.4159851074219, "y": 1707 }, { - "x": 319.8330078125, + "x": 321.3330078125, "y": 1707 }, { - "x": 319.8330078125, + "x": 321.3330078125, "y": 1847 } ], @@ -1126,11 +1126,11 @@ "y": 1757 }, { - "x": 299.8330078125, + "x": 301.3330078125, "y": 1757 }, { - "x": 299.8330078125, + "x": 301.3330078125, "y": 1847 } ], diff --git a/e2etests/testdata/stable/chaos2/elk/sketch.exp.svg b/e2etests/testdata/stable/chaos2/elk/sketch.exp.svg index 79a5c0809d..a052775872 100644 --- a/e2etests/testdata/stable/chaos2/elk/sketch.exp.svg +++ b/e2etests/testdata/stable/chaos2/elk/sketch.exp.svg @@ -1,23 +1,23 @@ -aabbllmmnnoocciikkddgghhjjeeff1122 334455667788 - - - - - - - - +aabbllmmnnoocciikkddgghhjjeeff1122 334455667788 + + + + + + + + - - - - + + + + - - - - - - - - + + + + + + + + - + \ No newline at end of file diff --git a/e2etests/testdata/stable/classes/dagre/board.exp.json b/e2etests/testdata/stable/classes/dagre/board.exp.json index 49f6bf8e6a..a4afcf3aba 100644 --- a/e2etests/testdata/stable/classes/dagre/board.exp.json +++ b/e2etests/testdata/stable/classes/dagre/board.exp.json @@ -10,7 +10,7 @@ "dragon_ball" ], "pos": { - "x": 10, + "x": 14, "y": 0 }, "width": 50, @@ -56,8 +56,8 @@ "x": 0, "y": 171 }, - "width": 70, - "height": 70, + "width": 78, + "height": 78, "opacity": 1, "strokeDash": 0, "strokeWidth": 0, @@ -98,10 +98,10 @@ ], "pos": { "x": 0, - "y": 362 + "y": 370 }, - "width": 70, - "height": 70, + "width": 78, + "height": 78, "opacity": 1, "strokeDash": 0, "strokeWidth": 0, @@ -164,19 +164,19 @@ "labelPercentage": 0, "route": [ { - "x": 35, + "x": 39, "y": 50 }, { - "x": 35, + "x": 39, "y": 98.4000015258789 }, { - "x": 35, + "x": 39, "y": 122.5999984741211 }, { - "x": 35, + "x": 39, "y": 171 } ], @@ -214,20 +214,20 @@ "labelPercentage": 0, "route": [ { - "x": 35, - "y": 241 + "x": 39, + "y": 249 }, { - "x": 35, - "y": 289.3999938964844 + "x": 39, + "y": 297.3999938964844 }, { - "x": 35, - "y": 313.6000061035156 + "x": 39, + "y": 321.6000061035156 }, { - "x": 35, - "y": 362 + "x": 39, + "y": 370 } ], "isCurve": true, diff --git a/e2etests/testdata/stable/classes/dagre/sketch.exp.svg b/e2etests/testdata/stable/classes/dagre/sketch.exp.svg index 6c7366705d..f689073196 100644 --- a/e2etests/testdata/stable/classes/dagre/sketch.exp.svg +++ b/e2etests/testdata/stable/classes/dagre/sketch.exp.svg @@ -1,16 +1,16 @@ -*** thenthen - - - - - + .d2-2473957298 .fill-N1{fill:#0A0F25;} + .d2-2473957298 .fill-N2{fill:#676C7E;} + .d2-2473957298 .fill-N3{fill:#9499AB;} + .d2-2473957298 .fill-N4{fill:#CFD2DD;} + .d2-2473957298 .fill-N5{fill:#DEE1EB;} + .d2-2473957298 .fill-N6{fill:#EEF1F8;} + .d2-2473957298 .fill-N7{fill:#FFFFFF;} + .d2-2473957298 .fill-B1{fill:#0D32B2;} + .d2-2473957298 .fill-B2{fill:#0D32B2;} + .d2-2473957298 .fill-B3{fill:#E3E9FD;} + .d2-2473957298 .fill-B4{fill:#E3E9FD;} + .d2-2473957298 .fill-B5{fill:#EDF0FD;} + .d2-2473957298 .fill-B6{fill:#F7F8FE;} + .d2-2473957298 .fill-AA2{fill:#4A6FF3;} + .d2-2473957298 .fill-AA4{fill:#EDF0FD;} + .d2-2473957298 .fill-AA5{fill:#F7F8FE;} + .d2-2473957298 .fill-AB4{fill:#EDF0FD;} + .d2-2473957298 .fill-AB5{fill:#F7F8FE;} + .d2-2473957298 .stroke-N1{stroke:#0A0F25;} + .d2-2473957298 .stroke-N2{stroke:#676C7E;} + .d2-2473957298 .stroke-N3{stroke:#9499AB;} + .d2-2473957298 .stroke-N4{stroke:#CFD2DD;} + .d2-2473957298 .stroke-N5{stroke:#DEE1EB;} + .d2-2473957298 .stroke-N6{stroke:#EEF1F8;} + .d2-2473957298 .stroke-N7{stroke:#FFFFFF;} + .d2-2473957298 .stroke-B1{stroke:#0D32B2;} + .d2-2473957298 .stroke-B2{stroke:#0D32B2;} + .d2-2473957298 .stroke-B3{stroke:#E3E9FD;} + .d2-2473957298 .stroke-B4{stroke:#E3E9FD;} + .d2-2473957298 .stroke-B5{stroke:#EDF0FD;} + .d2-2473957298 .stroke-B6{stroke:#F7F8FE;} + .d2-2473957298 .stroke-AA2{stroke:#4A6FF3;} + .d2-2473957298 .stroke-AA4{stroke:#EDF0FD;} + .d2-2473957298 .stroke-AA5{stroke:#F7F8FE;} + .d2-2473957298 .stroke-AB4{stroke:#EDF0FD;} + .d2-2473957298 .stroke-AB5{stroke:#F7F8FE;} + .d2-2473957298 .background-color-N1{background-color:#0A0F25;} + .d2-2473957298 .background-color-N2{background-color:#676C7E;} + .d2-2473957298 .background-color-N3{background-color:#9499AB;} + .d2-2473957298 .background-color-N4{background-color:#CFD2DD;} + .d2-2473957298 .background-color-N5{background-color:#DEE1EB;} + .d2-2473957298 .background-color-N6{background-color:#EEF1F8;} + .d2-2473957298 .background-color-N7{background-color:#FFFFFF;} + .d2-2473957298 .background-color-B1{background-color:#0D32B2;} + .d2-2473957298 .background-color-B2{background-color:#0D32B2;} + .d2-2473957298 .background-color-B3{background-color:#E3E9FD;} + .d2-2473957298 .background-color-B4{background-color:#E3E9FD;} + .d2-2473957298 .background-color-B5{background-color:#EDF0FD;} + .d2-2473957298 .background-color-B6{background-color:#F7F8FE;} + .d2-2473957298 .background-color-AA2{background-color:#4A6FF3;} + .d2-2473957298 .background-color-AA4{background-color:#EDF0FD;} + .d2-2473957298 .background-color-AA5{background-color:#F7F8FE;} + .d2-2473957298 .background-color-AB4{background-color:#EDF0FD;} + .d2-2473957298 .background-color-AB5{background-color:#F7F8FE;} + .d2-2473957298 .color-N1{color:#0A0F25;} + .d2-2473957298 .color-N2{color:#676C7E;} + .d2-2473957298 .color-N3{color:#9499AB;} + .d2-2473957298 .color-N4{color:#CFD2DD;} + .d2-2473957298 .color-N5{color:#DEE1EB;} + .d2-2473957298 .color-N6{color:#EEF1F8;} + .d2-2473957298 .color-N7{color:#FFFFFF;} + .d2-2473957298 .color-B1{color:#0D32B2;} + .d2-2473957298 .color-B2{color:#0D32B2;} + .d2-2473957298 .color-B3{color:#E3E9FD;} + .d2-2473957298 .color-B4{color:#E3E9FD;} + .d2-2473957298 .color-B5{color:#EDF0FD;} + .d2-2473957298 .color-B6{color:#F7F8FE;} + .d2-2473957298 .color-AA2{color:#4A6FF3;} + .d2-2473957298 .color-AA4{color:#EDF0FD;} + .d2-2473957298 .color-AA5{color:#F7F8FE;} + .d2-2473957298 .color-AB4{color:#EDF0FD;} + .d2-2473957298 .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}]]>*** thenthen + + + + + \ No newline at end of file diff --git a/e2etests/testdata/stable/classes/elk/board.exp.json b/e2etests/testdata/stable/classes/elk/board.exp.json index d496941ec2..c3618a772f 100644 --- a/e2etests/testdata/stable/classes/elk/board.exp.json +++ b/e2etests/testdata/stable/classes/elk/board.exp.json @@ -10,7 +10,7 @@ "dragon_ball" ], "pos": { - "x": 22, + "x": 26, "y": 12 }, "width": 50, @@ -56,8 +56,8 @@ "x": 12, "y": 223 }, - "width": 70, - "height": 70, + "width": 78, + "height": 78, "opacity": 1, "strokeDash": 0, "strokeWidth": 0, @@ -98,10 +98,10 @@ ], "pos": { "x": 12, - "y": 454 + "y": 462 }, - "width": 70, - "height": 70, + "width": 78, + "height": 78, "opacity": 1, "strokeDash": 0, "strokeWidth": 0, @@ -164,11 +164,11 @@ "labelPercentage": 0, "route": [ { - "x": 47, + "x": 51, "y": 62 }, { - "x": 47, + "x": 51, "y": 223 } ], @@ -205,12 +205,12 @@ "labelPercentage": 0, "route": [ { - "x": 47, - "y": 293 + "x": 51, + "y": 301 }, { - "x": 47, - "y": 454 + "x": 51, + "y": 462 } ], "animated": false, diff --git a/e2etests/testdata/stable/classes/elk/sketch.exp.svg b/e2etests/testdata/stable/classes/elk/sketch.exp.svg index 573b6ac41e..3e3bf3f4eb 100644 --- a/e2etests/testdata/stable/classes/elk/sketch.exp.svg +++ b/e2etests/testdata/stable/classes/elk/sketch.exp.svg @@ -1,16 +1,16 @@ -*** thenthen - - - - - + .d2-1772353954 .fill-N1{fill:#0A0F25;} + .d2-1772353954 .fill-N2{fill:#676C7E;} + .d2-1772353954 .fill-N3{fill:#9499AB;} + .d2-1772353954 .fill-N4{fill:#CFD2DD;} + .d2-1772353954 .fill-N5{fill:#DEE1EB;} + .d2-1772353954 .fill-N6{fill:#EEF1F8;} + .d2-1772353954 .fill-N7{fill:#FFFFFF;} + .d2-1772353954 .fill-B1{fill:#0D32B2;} + .d2-1772353954 .fill-B2{fill:#0D32B2;} + .d2-1772353954 .fill-B3{fill:#E3E9FD;} + .d2-1772353954 .fill-B4{fill:#E3E9FD;} + .d2-1772353954 .fill-B5{fill:#EDF0FD;} + .d2-1772353954 .fill-B6{fill:#F7F8FE;} + .d2-1772353954 .fill-AA2{fill:#4A6FF3;} + .d2-1772353954 .fill-AA4{fill:#EDF0FD;} + .d2-1772353954 .fill-AA5{fill:#F7F8FE;} + .d2-1772353954 .fill-AB4{fill:#EDF0FD;} + .d2-1772353954 .fill-AB5{fill:#F7F8FE;} + .d2-1772353954 .stroke-N1{stroke:#0A0F25;} + .d2-1772353954 .stroke-N2{stroke:#676C7E;} + .d2-1772353954 .stroke-N3{stroke:#9499AB;} + .d2-1772353954 .stroke-N4{stroke:#CFD2DD;} + .d2-1772353954 .stroke-N5{stroke:#DEE1EB;} + .d2-1772353954 .stroke-N6{stroke:#EEF1F8;} + .d2-1772353954 .stroke-N7{stroke:#FFFFFF;} + .d2-1772353954 .stroke-B1{stroke:#0D32B2;} + .d2-1772353954 .stroke-B2{stroke:#0D32B2;} + .d2-1772353954 .stroke-B3{stroke:#E3E9FD;} + .d2-1772353954 .stroke-B4{stroke:#E3E9FD;} + .d2-1772353954 .stroke-B5{stroke:#EDF0FD;} + .d2-1772353954 .stroke-B6{stroke:#F7F8FE;} + .d2-1772353954 .stroke-AA2{stroke:#4A6FF3;} + .d2-1772353954 .stroke-AA4{stroke:#EDF0FD;} + .d2-1772353954 .stroke-AA5{stroke:#F7F8FE;} + .d2-1772353954 .stroke-AB4{stroke:#EDF0FD;} + .d2-1772353954 .stroke-AB5{stroke:#F7F8FE;} + .d2-1772353954 .background-color-N1{background-color:#0A0F25;} + .d2-1772353954 .background-color-N2{background-color:#676C7E;} + .d2-1772353954 .background-color-N3{background-color:#9499AB;} + .d2-1772353954 .background-color-N4{background-color:#CFD2DD;} + .d2-1772353954 .background-color-N5{background-color:#DEE1EB;} + .d2-1772353954 .background-color-N6{background-color:#EEF1F8;} + .d2-1772353954 .background-color-N7{background-color:#FFFFFF;} + .d2-1772353954 .background-color-B1{background-color:#0D32B2;} + .d2-1772353954 .background-color-B2{background-color:#0D32B2;} + .d2-1772353954 .background-color-B3{background-color:#E3E9FD;} + .d2-1772353954 .background-color-B4{background-color:#E3E9FD;} + .d2-1772353954 .background-color-B5{background-color:#EDF0FD;} + .d2-1772353954 .background-color-B6{background-color:#F7F8FE;} + .d2-1772353954 .background-color-AA2{background-color:#4A6FF3;} + .d2-1772353954 .background-color-AA4{background-color:#EDF0FD;} + .d2-1772353954 .background-color-AA5{background-color:#F7F8FE;} + .d2-1772353954 .background-color-AB4{background-color:#EDF0FD;} + .d2-1772353954 .background-color-AB5{background-color:#F7F8FE;} + .d2-1772353954 .color-N1{color:#0A0F25;} + .d2-1772353954 .color-N2{color:#676C7E;} + .d2-1772353954 .color-N3{color:#9499AB;} + .d2-1772353954 .color-N4{color:#CFD2DD;} + .d2-1772353954 .color-N5{color:#DEE1EB;} + .d2-1772353954 .color-N6{color:#EEF1F8;} + .d2-1772353954 .color-N7{color:#FFFFFF;} + .d2-1772353954 .color-B1{color:#0D32B2;} + .d2-1772353954 .color-B2{color:#0D32B2;} + .d2-1772353954 .color-B3{color:#E3E9FD;} + .d2-1772353954 .color-B4{color:#E3E9FD;} + .d2-1772353954 .color-B5{color:#EDF0FD;} + .d2-1772353954 .color-B6{color:#F7F8FE;} + .d2-1772353954 .color-AA2{color:#4A6FF3;} + .d2-1772353954 .color-AA4{color:#EDF0FD;} + .d2-1772353954 .color-AA5{color:#F7F8FE;} + .d2-1772353954 .color-AB4{color:#EDF0FD;} + .d2-1772353954 .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}]]>*** thenthen + + + + + \ No newline at end of file diff --git a/e2etests/testdata/stable/investigate/dagre/board.exp.json b/e2etests/testdata/stable/investigate/dagre/board.exp.json index 00f4bf257e..c8b84ee03c 100644 --- a/e2etests/testdata/stable/investigate/dagre/board.exp.json +++ b/e2etests/testdata/stable/investigate/dagre/board.exp.json @@ -7,7 +7,7 @@ "id": "aa", "type": "step", "pos": { - "x": 74, + "x": 76, "y": 0 }, "width": 102, @@ -48,7 +48,7 @@ "id": "bb", "type": "step", "pos": { - "x": 303, + "x": 305, "y": 201 }, "width": 103, @@ -89,7 +89,7 @@ "id": "cc", "type": "step", "pos": { - "x": 257, + "x": 259, "y": 423 }, "width": 101, @@ -130,7 +130,7 @@ "id": "dd", "type": "rectangle", "pos": { - "x": 20, + "x": 22, "y": 665 }, "width": 351, @@ -171,7 +171,7 @@ "id": "dd.ee", "type": "diamond", "pos": { - "x": 50, + "x": 52, "y": 695 }, "width": 64, @@ -215,8 +215,8 @@ "x": 10, "y": 1889 }, - "width": 335, - "height": 336, + "width": 337, + "height": 340, "opacity": 1, "strokeDash": 0, "strokeWidth": 2, @@ -253,7 +253,7 @@ "id": "ff.gg", "type": "diamond", "pos": { - "x": 249, + "x": 251, "y": 1919 }, "width": 66, @@ -294,7 +294,7 @@ "id": "dd.hh", "type": "diamond", "pos": { - "x": 275, + "x": 277, "y": 695 }, "width": 66, @@ -335,7 +335,7 @@ "id": "ii", "type": "rectangle", "pos": { - "x": 55, + "x": 57, "y": 937 }, "width": 54, @@ -376,7 +376,7 @@ "id": "jj", "type": "rectangle", "pos": { - "x": 55, + "x": 57, "y": 1174 }, "width": 55, @@ -417,7 +417,7 @@ "id": "kk", "type": "rectangle", "pos": { - "x": 51, + "x": 53, "y": 1440 }, "width": 62, @@ -459,10 +459,10 @@ "type": "rectangle", "pos": { "x": 10, - "y": 2365 + "y": 2369 }, - "width": 334, - "height": 310, + "width": 336, + "height": 314, "opacity": 1, "strokeDash": 0, "strokeWidth": 2, @@ -500,10 +500,10 @@ "type": "oval", "pos": { "x": 40, - "y": 2561 + "y": 2565 }, - "width": 84, - "height": 84, + "width": 88, + "height": 88, "opacity": 1, "strokeDash": 0, "strokeWidth": 2, @@ -543,8 +543,8 @@ "x": 40, "y": 2111 }, - "width": 84, - "height": 84, + "width": 88, + "height": 88, "opacity": 1, "strokeDash": 0, "strokeWidth": 2, @@ -581,8 +581,8 @@ "id": "nn", "type": "cylinder", "pos": { - "x": 11, - "y": 3274 + "x": 13, + "y": 3282 }, "width": 469, "height": 166, @@ -622,8 +622,8 @@ "id": "nn.oo", "type": "rectangle", "pos": { - "x": 51, - "y": 3324 + "x": 53, + "y": 3332 }, "width": 63, "height": 66, @@ -663,8 +663,8 @@ "id": "ff.pp", "type": "rectangle", "pos": { - "x": 251, - "y": 2120 + "x": 253, + "y": 2122 }, "width": 63, "height": 66, @@ -704,8 +704,8 @@ "id": "ll.qq", "type": "rectangle", "pos": { - "x": 250, - "y": 2395 + "x": 252, + "y": 2399 }, "width": 64, "height": 66, @@ -745,8 +745,8 @@ "id": "ll.rr", "type": "rectangle", "pos": { - "x": 253, - "y": 2570 + "x": 255, + "y": 2576 }, "width": 58, "height": 66, @@ -786,7 +786,7 @@ "id": "ss", "type": "rectangle", "pos": { - "x": 398, + "x": 400, "y": 1144 }, "width": 118, @@ -827,7 +827,7 @@ "id": "ss.tt", "type": "rectangle", "pos": { - "x": 428, + "x": 430, "y": 1174 }, "width": 58, @@ -868,7 +868,7 @@ "id": "uu", "type": "rectangle", "pos": { - "x": 396, + "x": 398, "y": 1410 }, "width": 123, @@ -909,7 +909,7 @@ "id": "uu.vv", "type": "rectangle", "pos": { - "x": 426, + "x": 428, "y": 1440 }, "width": 63, @@ -950,7 +950,7 @@ "id": "ww", "type": "queue", "pos": { - "x": 337, + "x": 339, "y": 1656 }, "width": 149, @@ -1003,8 +1003,8 @@ "id": "rm", "type": "rectangle", "pos": { - "x": 400, - "y": 2570 + "x": 402, + "y": 2576 }, "width": 64, "height": 66, @@ -1044,8 +1044,8 @@ "id": "nn.xx", "type": "rectangle", "pos": { - "x": 211, - "y": 3324 + "x": 213, + "y": 3332 }, "width": 62, "height": 66, @@ -1085,8 +1085,8 @@ "id": "yy", "type": "rectangle", "pos": { - "x": 310, - "y": 2815 + "x": 312, + "y": 2823 }, "width": 198, "height": 339, @@ -1126,8 +1126,8 @@ "id": "yy.zz", "type": "queue", "pos": { - "x": 340, - "y": 2845 + "x": 342, + "y": 2853 }, "width": 138, "height": 92, @@ -1179,8 +1179,8 @@ "id": "yy.ab", "type": "rectangle", "pos": { - "x": 377, - "y": 3058 + "x": 379, + "y": 3066 }, "width": 63, "height": 66, @@ -1220,8 +1220,8 @@ "id": "nn.ac", "type": "rectangle", "pos": { - "x": 378, - "y": 3324 + "x": 380, + "y": 3332 }, "width": 62, "height": 66, @@ -1261,8 +1261,8 @@ "id": "ad", "type": "parallelogram", "pos": { - "x": 351, - "y": 3540 + "x": 353, + "y": 3548 }, "width": 115, "height": 66, @@ -1325,19 +1325,19 @@ "labelPercentage": 0, "route": [ { - "x": 164, + "x": 166, "y": 68 }, { - "x": 316.20001220703125, + "x": 318.20001220703125, "y": 134.39999389648438 }, { - "x": 354.20001220703125, + "x": 356.20001220703125, "y": 161 }, { - "x": 354, + "x": 356, "y": 201 } ], @@ -1372,19 +1372,19 @@ "labelPercentage": 0, "route": [ { - "x": 333, + "x": 335, "y": 302 }, { - "x": 312.79998779296875, + "x": 314.79998779296875, "y": 350.3999938964844 }, { - "x": 307.79998779296875, + "x": 309.79998779296875, "y": 374.6000061035156 }, { - "x": 308, + "x": 310, "y": 423 } ], @@ -1419,67 +1419,67 @@ "labelPercentage": 0, "route": [ { - "x": 103, + "x": 105, "y": 101 }, { - "x": 86.19999694824219, + "x": 88.19999694824219, "y": 141 }, { - "x": 82, + "x": 84, "y": 171.10000610351562 }, { - "x": 82, + "x": 84, "y": 201.25 }, { - "x": 82, + "x": 84, "y": 231.39999389648438 }, { - "x": 82, + "x": 84, "y": 273.70001220703125 }, { - "x": 82, + "x": 84, "y": 307 }, { - "x": 82, + "x": 84, "y": 340.29998779296875 }, { - "x": 82, + "x": 84, "y": 384.70001220703125 }, { - "x": 82, + "x": 84, "y": 418 }, { - "x": 82, + "x": 84, "y": 451.29998779296875 }, { - "x": 82, + "x": 84, "y": 495.70001220703125 }, { - "x": 82, + "x": 84, "y": 529 }, { - "x": 82, + "x": 84, "y": 562.2999877929688 }, { - "x": 82, + "x": 84, "y": 655 }, { - "x": 82, + "x": 84, "y": 695 } ], @@ -1514,235 +1514,235 @@ "labelPercentage": 0, "route": [ { - "x": 374, + "x": 376, "y": 298 }, { - "x": 395.3999938964844, + "x": 397.3999938964844, "y": 349.6000061035156 }, { - "x": 400.75, + "x": 402.75, "y": 384.70001220703125 }, { - "x": 400.75, + "x": 402.75, "y": 418 }, { - "x": 400.75, + "x": 402.75, "y": 451.29998779296875 }, { - "x": 400.75, + "x": 402.75, "y": 495.70001220703125 }, { - "x": 400.75, + "x": 402.75, "y": 529 }, { - "x": 400.75, + "x": 402.75, "y": 562.2999877929688 }, { - "x": 400.75, + "x": 402.75, "y": 596.5999755859375 }, { - "x": 400.75, + "x": 402.75, "y": 614.75 }, { - "x": 400.75, + "x": 402.75, "y": 632.9000244140625 }, { - "x": 400.75, + "x": 402.75, "y": 664.2000122070312 }, { - "x": 400.75, + "x": 402.75, "y": 693 }, { - "x": 400.75, + "x": 402.75, "y": 721.7999877929688 }, { - "x": 400.75, + "x": 402.75, "y": 760.2000122070312 }, { - "x": 400.75, + "x": 402.75, "y": 789 }, { - "x": 400.75, + "x": 402.75, "y": 817.7999877929688 }, { - "x": 367.3500061035156, + "x": 369.3500061035156, "y": 847 }, { - "x": 317.25, + "x": 319.25, "y": 862 }, { - "x": 267.1499938964844, + "x": 269.1499938964844, "y": 877 }, { - "x": 233.75, + "x": 235.75, "y": 903.5999755859375 }, { - "x": 233.75, + "x": 235.75, "y": 928.5 }, { - "x": 233.75, + "x": 235.75, "y": 953.4000244140625 }, { - "x": 233.75, + "x": 235.75, "y": 988.7000122070312 }, { - "x": 233.75, + "x": 235.75, "y": 1016.75 }, { - "x": 233.75, + "x": 235.75, "y": 1044.800048828125 }, { - "x": 233.75, + "x": 235.75, "y": 1075.5999755859375 }, { - "x": 233.75, + "x": 235.75, "y": 1093.75 }, { - "x": 233.75, + "x": 235.75, "y": 1111.9000244140625 }, { - "x": 233.75, + "x": 235.75, "y": 1140.5999755859375 }, { - "x": 233.75, + "x": 235.75, "y": 1165.5 }, { - "x": 233.75, + "x": 235.75, "y": 1190.4000244140625 }, { - "x": 233.75, + "x": 235.75, "y": 1223.5999755859375 }, { - "x": 233.75, + "x": 235.75, "y": 1248.5 }, { - "x": 233.75, + "x": 235.75, "y": 1273.4000244140625 }, { - "x": 233.75, + "x": 235.75, "y": 1300 }, { - "x": 233.75, + "x": 235.75, "y": 1315 }, { - "x": 233.75, + "x": 235.75, "y": 1330 }, { - "x": 233.75, + "x": 235.75, "y": 1350 }, { - "x": 233.75, + "x": 235.75, "y": 1365 }, { - "x": 233.75, + "x": 235.75, "y": 1380 }, { - "x": 233.75, + "x": 235.75, "y": 1406.5999755859375 }, { - "x": 233.75, + "x": 235.75, "y": 1431.5 }, { - "x": 233.75, + "x": 235.75, "y": 1456.4000244140625 }, { - "x": 233.75, + "x": 235.75, "y": 1489.5999755859375 }, { - "x": 233.75, + "x": 235.75, "y": 1514.5 }, { - "x": 233.75, + "x": 235.75, "y": 1539.4000244140625 }, { - "x": 233.75, + "x": 235.75, "y": 1566 }, { - "x": 233.75, + "x": 235.75, "y": 1581 }, { - "x": 233.75, + "x": 235.75, "y": 1596 }, { - "x": 233.75, + "x": 235.75, "y": 1625.199951171875 }, { - "x": 233.75, + "x": 235.75, "y": 1654 }, { - "x": 233.75, + "x": 235.75, "y": 1682.800048828125 }, { - "x": 233.75, + "x": 235.75, "y": 1723.300048828125 }, { - "x": 233.75, + "x": 235.75, "y": 1755.25 }, { - "x": 233.75, + "x": 235.75, "y": 1787.199951171875 }, { - "x": 240.60000610351562, + "x": 242.60000610351562, "y": 1882.5999755859375 }, { - "x": 268, + "x": 270, "y": 1937 } ], @@ -1777,19 +1777,19 @@ "labelPercentage": 0, "route": [ { - "x": 308, + "x": 310, "y": 524 }, { - "x": 307.79998779296875, + "x": 309.79998779296875, "y": 572.4000244140625 }, { - "x": 307.79998779296875, + "x": 309.79998779296875, "y": 655 }, { - "x": 308, + "x": 310, "y": 695 } ], @@ -1824,19 +1824,19 @@ "labelPercentage": 0, "route": [ { - "x": 82, + "x": 84, "y": 787 }, { - "x": 82, + "x": 84, "y": 827 }, { - "x": 82, + "x": 84, "y": 897 }, { - "x": 82, + "x": 84, "y": 937 } ], @@ -1871,19 +1871,19 @@ "labelPercentage": 0, "route": [ { - "x": 82, + "x": 84, "y": 1002.5 }, { - "x": 82, + "x": 84, "y": 1051.300048828125 }, { - "x": 82, + "x": 84, "y": 1134 }, { - "x": 82, + "x": 84, "y": 1174 } ], @@ -1918,31 +1918,31 @@ "labelPercentage": 0, "route": [ { - "x": 82, + "x": 84, "y": 1240 }, { - "x": 82, + "x": 84, "y": 1280 }, { - "x": 82, + "x": 84, "y": 1300 }, { - "x": 82, + "x": 84, "y": 1315 }, { - "x": 82, + "x": 84, "y": 1330 }, { - "x": 82, + "x": 84, "y": 1400 }, { - "x": 82, + "x": 84, "y": 1440 } ], @@ -1977,79 +1977,79 @@ "labelPercentage": 0, "route": [ { - "x": 82, + "x": 84, "y": 1506 }, { - "x": 82, + "x": 84, "y": 1546 }, { - "x": 82, + "x": 84, "y": 1566 }, { - "x": 82, + "x": 84, "y": 1581 }, { - "x": 82, + "x": 84, "y": 1596 }, { - "x": 82, + "x": 84, "y": 1625.199951171875 }, { - "x": 82, + "x": 84, "y": 1654 }, { - "x": 82, + "x": 84, "y": 1682.800048828125 }, { - "x": 82, + "x": 84, "y": 1723.300048828125 }, { - "x": 82, + "x": 84, "y": 1755.25 }, { - "x": 82, + "x": 84, "y": 1787.199951171875 }, { - "x": 82, + "x": 84, "y": 1820.5999755859375 }, { - "x": 82, + "x": 84, "y": 1838.75 }, { - "x": 82, + "x": 84, "y": 1856.9000244140625 }, { - "x": 82, + "x": 84, "y": 1888.199951171875 }, { - "x": 82, + "x": 84, "y": 1917 }, { - "x": 82, + "x": 84, "y": 1945.800048828125 }, { - "x": 82, + "x": 84, "y": 2071 }, { - "x": 82, + "x": 84, "y": 2111 } ], @@ -2084,56 +2084,56 @@ "labelPercentage": 0, "route": [ { - "x": 82, - "y": 2195 + "x": 84, + "y": 2199 }, { - "x": 82, - "y": 2235 + "x": 84, + "y": 2239 }, { - "x": 82, - "y": 2255 + "x": 84, + "y": 2259 }, { - "x": 82, - "y": 2270 + "x": 84, + "y": 2274 }, { - "x": 82, - "y": 2285 + "x": 84, + "y": 2289 }, { - "x": 82, - "y": 2305 + "x": 84, + "y": 2309 }, { - "x": 82, - "y": 2320 + "x": 84, + "y": 2324 }, { - "x": 82, - "y": 2335 + "x": 84, + "y": 2339 }, { - "x": 82, - "y": 2361.60009765625 + "x": 84, + "y": 2365.60009765625 }, { - "x": 82, - "y": 2386.5 + "x": 84, + "y": 2390.5 }, { - "x": 82, - "y": 2411.39990234375 + "x": 84, + "y": 2415.39990234375 }, { - "x": 82, - "y": 2521 + "x": 84, + "y": 2525 }, { - "x": 82, - "y": 2561 + "x": 84, + "y": 2565 } ], "isCurve": true, @@ -2167,104 +2167,104 @@ "labelPercentage": 0, "route": [ { - "x": 82, - "y": 2645 + "x": 84, + "y": 2653 }, { - "x": 82, - "y": 2685 + "x": 84, + "y": 2693 }, { - "x": 82, - "y": 2705 + "x": 84, + "y": 2713 }, { - "x": 82, - "y": 2720 + "x": 84, + "y": 2728 }, { - "x": 82, - "y": 2735 + "x": 84, + "y": 2743 }, { - "x": 82, - "y": 2755 + "x": 84, + "y": 2763 }, { - "x": 82, - "y": 2770 + "x": 84, + "y": 2778 }, { - "x": 82, - "y": 2785 + "x": 84, + "y": 2793 }, { - "x": 82, - "y": 2814.199951171875 + "x": 84, + "y": 2822.199951171875 }, { - "x": 82, - "y": 2843 + "x": 84, + "y": 2851 }, { - "x": 82, - "y": 2871.800048828125 + "x": 84, + "y": 2879.800048828125 }, { - "x": 82, - "y": 2912.300048828125 + "x": 84, + "y": 2920.300048828125 }, { - "x": 82, - "y": 2944.25 + "x": 84, + "y": 2952.25 }, { - "x": 82, - "y": 2976.199951171875 + "x": 84, + "y": 2984.199951171875 }, { - "x": 82, - "y": 3016.199951171875 + "x": 84, + "y": 3024.199951171875 }, { - "x": 82, - "y": 3044.25 + "x": 84, + "y": 3052.25 }, { - "x": 82, - "y": 3072.300048828125 + "x": 84, + "y": 3080.300048828125 }, { - "x": 82, - "y": 3107.60009765625 + "x": 84, + "y": 3115.60009765625 }, { - "x": 82, - "y": 3132.5 + "x": 84, + "y": 3140.5 }, { - "x": 82, - "y": 3157.39990234375 + "x": 84, + "y": 3165.39990234375 }, { - "x": 82, - "y": 3184 + "x": 84, + "y": 3192 }, { - "x": 82, - "y": 3199 + "x": 84, + "y": 3207 }, { - "x": 82, - "y": 3214 + "x": 84, + "y": 3222 }, { - "x": 82, - "y": 3284 + "x": 84, + "y": 3292 }, { - "x": 82, - "y": 3324 + "x": 84, + "y": 3332 } ], "isCurve": true, @@ -2298,20 +2298,20 @@ "labelPercentage": 0, "route": [ { - "x": 282, + "x": 284, "y": 2011 }, { - "x": 282.20001220703125, + "x": 284.20001220703125, "y": 2051 }, { - "x": 282.25, - "y": 2072.800048828125 + "x": 284.25, + "y": 2073.198974609375 }, { - "x": 282.25, - "y": 2120 + "x": 284.25, + "y": 2122 } ], "isCurve": true, @@ -2345,32 +2345,32 @@ "labelPercentage": 0, "route": [ { - "x": 282.25, - "y": 2186 + "x": 284.25, + "y": 2188 }, { - "x": 282.25, - "y": 2233.199951171875 + "x": 284.25, + "y": 2236.800048828125 }, { - "x": 282.25, - "y": 2255 + "x": 284.25, + "y": 2259 }, { - "x": 282.25, - "y": 2270 + "x": 284.25, + "y": 2274 }, { - "x": 282.25, - "y": 2285 + "x": 284.25, + "y": 2289 }, { - "x": 282.25, - "y": 2355 + "x": 284.25, + "y": 2359 }, { - "x": 282.25, - "y": 2395 + "x": 284.25, + "y": 2399 } ], "isCurve": true, @@ -2404,20 +2404,20 @@ "labelPercentage": 0, "route": [ { - "x": 282.25, - "y": 2461 + "x": 284.25, + "y": 2465 }, { - "x": 282.25, - "y": 2501 + "x": 284.25, + "y": 2505 }, { - "x": 282.25, - "y": 2522.800048828125 + "x": 284.25, + "y": 2527.199951171875 }, { - "x": 282.25, - "y": 2570 + "x": 284.25, + "y": 2576 } ], "isCurve": true, @@ -2451,55 +2451,55 @@ "labelPercentage": 0, "route": [ { - "x": 308, + "x": 310, "y": 787 }, { - "x": 307.79998779296875, + "x": 309.79998779296875, "y": 827 }, { - "x": 337.6499938964844, + "x": 339.6499938964844, "y": 847 }, { - "x": 382.5, + "x": 384.5, "y": 862 }, { - "x": 427.3500061035156, + "x": 429.3500061035156, "y": 877 }, { - "x": 457.25, + "x": 459.25, "y": 903.5999755859375 }, { - "x": 457.25, + "x": 459.25, "y": 928.5 }, { - "x": 457.25, + "x": 459.25, "y": 953.4000244140625 }, { - "x": 457.25, + "x": 459.25, "y": 988.7000122070312 }, { - "x": 457.25, + "x": 459.25, "y": 1016.75 }, { - "x": 457.25, + "x": 459.25, "y": 1044.800048828125 }, { - "x": 457.25, + "x": 459.25, "y": 1134 }, { - "x": 457.25, + "x": 459.25, "y": 1174 } ], @@ -2534,31 +2534,31 @@ "labelPercentage": 0, "route": [ { - "x": 457.25, + "x": 459.25, "y": 1240 }, { - "x": 457.25, + "x": 459.25, "y": 1280 }, { - "x": 457.25, + "x": 459.25, "y": 1300 }, { - "x": 457.25, + "x": 459.25, "y": 1315 }, { - "x": 457.25, + "x": 459.25, "y": 1330 }, { - "x": 457.25, + "x": 459.25, "y": 1400 }, { - "x": 457.25, + "x": 459.25, "y": 1440 } ], @@ -2593,19 +2593,19 @@ "labelPercentage": 0, "route": [ { - "x": 113, + "x": 115, "y": 1485 }, { - "x": 263.3999938964844, + "x": 265.3999938964844, "y": 1541.800048828125 }, { - "x": 312.6000061035156, + "x": 314.6000061035156, "y": 1616 }, { - "x": 359, + "x": 361, "y": 1656 } ], @@ -2640,19 +2640,19 @@ "labelPercentage": 0, "route": [ { - "x": 457.25, + "x": 459.25, "y": 1506 }, { - "x": 457.25, + "x": 459.25, "y": 1546 }, { - "x": 452.3999938964844, + "x": 454.3999938964844, "y": 1616 }, { - "x": 433, + "x": 435, "y": 1656 } ], @@ -2687,116 +2687,116 @@ "labelPercentage": 0, "route": [ { - "x": 421, + "x": 423, "y": 1748 }, { - "x": 429.3999938964844, + "x": 431.3999938964844, "y": 1796.4000244140625 }, { - "x": 431.5, + "x": 433.5, "y": 1820.5999755859375 }, { - "x": 431.5, + "x": 433.5, "y": 1838.75 }, { - "x": 431.5, + "x": 433.5, "y": 1856.9000244140625 }, { - "x": 431.5, + "x": 433.5, "y": 1888.199951171875 }, { - "x": 431.5, + "x": 433.5, "y": 1917 }, { - "x": 431.5, + "x": 433.5, "y": 1945.800048828125 }, { - "x": 431.5, + "x": 433.5, "y": 1984.199951171875 }, { - "x": 431.5, + "x": 433.5, "y": 2013 }, { - "x": 431.5, + "x": 433.5, "y": 2041.800048828125 }, { - "x": 431.5, - "y": 2079.39990234375 + "x": 433.5, + "y": 2079.800048828125 }, { - "x": 431.5, - "y": 2107 + "x": 433.5, + "y": 2108 }, { - "x": 431.5, - "y": 2134.60009765625 + "x": 433.5, + "y": 2136.199951171875 }, { - "x": 431.5, - "y": 2171.39990234375 + "x": 433.5, + "y": 2173.800048828125 }, { - "x": 431.5, - "y": 2199 + "x": 433.5, + "y": 2202 }, { - "x": 431.5, - "y": 2226.60009765625 + "x": 433.5, + "y": 2230.199951171875 }, { - "x": 431.5, - "y": 2255 + "x": 433.5, + "y": 2259 }, { - "x": 431.5, - "y": 2270 + "x": 433.5, + "y": 2274 }, { - "x": 431.5, - "y": 2285 + "x": 433.5, + "y": 2289 }, { - "x": 431.5, - "y": 2305 + "x": 433.5, + "y": 2309 }, { - "x": 431.5, - "y": 2320 + "x": 433.5, + "y": 2324 }, { - "x": 431.5, - "y": 2335 + "x": 433.5, + "y": 2339 }, { - "x": 431.5, - "y": 2361.60009765625 + "x": 433.5, + "y": 2365.60009765625 }, { - "x": 431.5, - "y": 2386.5 + "x": 433.5, + "y": 2390.5 }, { - "x": 431.5, - "y": 2411.39990234375 + "x": 433.5, + "y": 2415.39990234375 }, { - "x": 431.5, - "y": 2522.800048828125 + "x": 433.5, + "y": 2527.199951171875 }, { - "x": 431.5, - "y": 2570 + "x": 433.5, + "y": 2576 } ], "isCurve": true, @@ -2830,104 +2830,104 @@ "labelPercentage": 0, "route": [ { - "x": 422.5, - "y": 2636 + "x": 424.5, + "y": 2642 }, { - "x": 408.8999938964844, - "y": 2683.199951171875 + "x": 410.8999938964844, + "y": 2690.800048828125 }, { - "x": 372.79998779296875, - "y": 2705 + "x": 374.79998779296875, + "y": 2713 }, { - "x": 323.75, - "y": 2720 + "x": 325.75, + "y": 2728 }, { - "x": 274.70001220703125, - "y": 2735 + "x": 276.70001220703125, + "y": 2743 }, { - "x": 242, - "y": 2755 + "x": 244, + "y": 2763 }, { - "x": 242, - "y": 2770 + "x": 244, + "y": 2778 }, { - "x": 242, - "y": 2785 + "x": 244, + "y": 2793 }, { - "x": 242, - "y": 2814.199951171875 + "x": 244, + "y": 2822.199951171875 }, { - "x": 242, - "y": 2843 + "x": 244, + "y": 2851 }, { - "x": 242, - "y": 2871.800048828125 + "x": 244, + "y": 2879.800048828125 }, { - "x": 242, - "y": 2912.300048828125 + "x": 244, + "y": 2920.300048828125 }, { - "x": 242, - "y": 2944.25 + "x": 244, + "y": 2952.25 }, { - "x": 242, - "y": 2976.199951171875 + "x": 244, + "y": 2984.199951171875 }, { - "x": 242, - "y": 3016.199951171875 + "x": 244, + "y": 3024.199951171875 }, { - "x": 242, - "y": 3044.25 + "x": 244, + "y": 3052.25 }, { - "x": 242, - "y": 3072.300048828125 + "x": 244, + "y": 3080.300048828125 }, { - "x": 242, - "y": 3107.60009765625 + "x": 244, + "y": 3115.60009765625 }, { - "x": 242, - "y": 3132.5 + "x": 244, + "y": 3140.5 }, { - "x": 242, - "y": 3157.39990234375 + "x": 244, + "y": 3165.39990234375 }, { - "x": 242, - "y": 3184 + "x": 244, + "y": 3192 }, { - "x": 242, - "y": 3199 + "x": 244, + "y": 3207 }, { - "x": 242, - "y": 3214 + "x": 244, + "y": 3222 }, { - "x": 242, - "y": 3284 + "x": 244, + "y": 3292 }, { - "x": 242, - "y": 3324 + "x": 244, + "y": 3332 } ], "isCurve": true, @@ -2961,32 +2961,32 @@ "labelPercentage": 0, "route": [ { - "x": 282.25, - "y": 2636 + "x": 284.25, + "y": 2642 }, { - "x": 282.25, - "y": 2683.199951171875 + "x": 284.25, + "y": 2690.800048828125 }, { - "x": 293.1000061035156, - "y": 2705 + "x": 295.1000061035156, + "y": 2713 }, { - "x": 309.375, - "y": 2720 + "x": 311.375, + "y": 2728 }, { - "x": 325.6499938964844, - "y": 2735 + "x": 327.6499938964844, + "y": 2743 }, { - "x": 344.20001220703125, - "y": 2805 + "x": 346.20001220703125, + "y": 2813 }, { - "x": 375, - "y": 2845 + "x": 377, + "y": 2853 } ], "isCurve": true, @@ -3020,32 +3020,32 @@ "labelPercentage": 0, "route": [ { - "x": 441.25, - "y": 2636 + "x": 443.25, + "y": 2642 }, { - "x": 454.8500061035156, - "y": 2683.199951171875 + "x": 456.8500061035156, + "y": 2690.800048828125 }, { - "x": 458.25, - "y": 2705 + "x": 460.25, + "y": 2713 }, { - "x": 458.25, - "y": 2720 + "x": 460.25, + "y": 2728 }, { - "x": 458.25, - "y": 2735 + "x": 460.25, + "y": 2743 }, { - "x": 453, - "y": 2805 + "x": 455, + "y": 2813 }, { - "x": 432, - "y": 2845 + "x": 434, + "y": 2853 } ], "isCurve": true, @@ -3079,20 +3079,20 @@ "labelPercentage": 0, "route": [ { - "x": 408, - "y": 2937 + "x": 410, + "y": 2945 }, { - "x": 408.3999938964844, - "y": 2985.39990234375 + "x": 410.3999938964844, + "y": 2993.39990234375 }, { - "x": 408.5, - "y": 3009.699951171875 + "x": 410.5, + "y": 3017.699951171875 }, { - "x": 408.5, - "y": 3058.5 + "x": 410.5, + "y": 3066.5 } ], "isCurve": true, @@ -3126,32 +3126,32 @@ "labelPercentage": 0, "route": [ { - "x": 408.5, - "y": 3124 + "x": 410.5, + "y": 3132 }, { - "x": 408.5, - "y": 3164 + "x": 410.5, + "y": 3172 }, { - "x": 408.5, - "y": 3184 + "x": 410.5, + "y": 3192 }, { - "x": 408.5, - "y": 3199 + "x": 410.5, + "y": 3207 }, { - "x": 408.5, - "y": 3214 + "x": 410.5, + "y": 3222 }, { - "x": 408.5, - "y": 3284 + "x": 410.5, + "y": 3292 }, { - "x": 408.5, - "y": 3324 + "x": 410.5, + "y": 3332 } ], "isCurve": true, @@ -3185,20 +3185,20 @@ "labelPercentage": 0, "route": [ { - "x": 408.5, - "y": 3390 + "x": 410.5, + "y": 3398 }, { - "x": 408.5, - "y": 3430 + "x": 410.5, + "y": 3438 }, { - "x": 408.3999938964844, - "y": 3500 + "x": 410.3999938964844, + "y": 3508 }, { - "x": 408, - "y": 3540 + "x": 410, + "y": 3548 } ], "isCurve": true, @@ -3232,19 +3232,19 @@ "labelPercentage": 0, "route": [ { - "x": 380, + "x": 382, "y": 1748 }, { - "x": 347.6000061035156, + "x": 349.6000061035156, "y": 1796.4000244140625 }, { - "x": 331, + "x": 333, "y": 1883.199951171875 }, { - "x": 297, + "x": 299, "y": 1940 } ], diff --git a/e2etests/testdata/stable/investigate/dagre/sketch.exp.svg b/e2etests/testdata/stable/investigate/dagre/sketch.exp.svg index a193b80633..6a20baa2e2 100644 --- a/e2etests/testdata/stable/investigate/dagre/sketch.exp.svg +++ b/e2etests/testdata/stable/investigate/dagre/sketch.exp.svg @@ -1,23 +1,23 @@ -aabbccddffiijjkkllnnssuuwwrmyyeegghhmmmmooppqqrrttvvxxzzabac 123456 - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + .d2-1459631489 .fill-N1{fill:#0A0F25;} + .d2-1459631489 .fill-N2{fill:#676C7E;} + .d2-1459631489 .fill-N3{fill:#9499AB;} + .d2-1459631489 .fill-N4{fill:#CFD2DD;} + .d2-1459631489 .fill-N5{fill:#DEE1EB;} + .d2-1459631489 .fill-N6{fill:#EEF1F8;} + .d2-1459631489 .fill-N7{fill:#FFFFFF;} + .d2-1459631489 .fill-B1{fill:#0D32B2;} + .d2-1459631489 .fill-B2{fill:#0D32B2;} + .d2-1459631489 .fill-B3{fill:#E3E9FD;} + .d2-1459631489 .fill-B4{fill:#E3E9FD;} + .d2-1459631489 .fill-B5{fill:#EDF0FD;} + .d2-1459631489 .fill-B6{fill:#F7F8FE;} + .d2-1459631489 .fill-AA2{fill:#4A6FF3;} + .d2-1459631489 .fill-AA4{fill:#EDF0FD;} + .d2-1459631489 .fill-AA5{fill:#F7F8FE;} + .d2-1459631489 .fill-AB4{fill:#EDF0FD;} + .d2-1459631489 .fill-AB5{fill:#F7F8FE;} + .d2-1459631489 .stroke-N1{stroke:#0A0F25;} + .d2-1459631489 .stroke-N2{stroke:#676C7E;} + .d2-1459631489 .stroke-N3{stroke:#9499AB;} + .d2-1459631489 .stroke-N4{stroke:#CFD2DD;} + .d2-1459631489 .stroke-N5{stroke:#DEE1EB;} + .d2-1459631489 .stroke-N6{stroke:#EEF1F8;} + .d2-1459631489 .stroke-N7{stroke:#FFFFFF;} + .d2-1459631489 .stroke-B1{stroke:#0D32B2;} + .d2-1459631489 .stroke-B2{stroke:#0D32B2;} + .d2-1459631489 .stroke-B3{stroke:#E3E9FD;} + .d2-1459631489 .stroke-B4{stroke:#E3E9FD;} + .d2-1459631489 .stroke-B5{stroke:#EDF0FD;} + .d2-1459631489 .stroke-B6{stroke:#F7F8FE;} + .d2-1459631489 .stroke-AA2{stroke:#4A6FF3;} + .d2-1459631489 .stroke-AA4{stroke:#EDF0FD;} + .d2-1459631489 .stroke-AA5{stroke:#F7F8FE;} + .d2-1459631489 .stroke-AB4{stroke:#EDF0FD;} + .d2-1459631489 .stroke-AB5{stroke:#F7F8FE;} + .d2-1459631489 .background-color-N1{background-color:#0A0F25;} + .d2-1459631489 .background-color-N2{background-color:#676C7E;} + .d2-1459631489 .background-color-N3{background-color:#9499AB;} + .d2-1459631489 .background-color-N4{background-color:#CFD2DD;} + .d2-1459631489 .background-color-N5{background-color:#DEE1EB;} + .d2-1459631489 .background-color-N6{background-color:#EEF1F8;} + .d2-1459631489 .background-color-N7{background-color:#FFFFFF;} + .d2-1459631489 .background-color-B1{background-color:#0D32B2;} + .d2-1459631489 .background-color-B2{background-color:#0D32B2;} + .d2-1459631489 .background-color-B3{background-color:#E3E9FD;} + .d2-1459631489 .background-color-B4{background-color:#E3E9FD;} + .d2-1459631489 .background-color-B5{background-color:#EDF0FD;} + .d2-1459631489 .background-color-B6{background-color:#F7F8FE;} + .d2-1459631489 .background-color-AA2{background-color:#4A6FF3;} + .d2-1459631489 .background-color-AA4{background-color:#EDF0FD;} + .d2-1459631489 .background-color-AA5{background-color:#F7F8FE;} + .d2-1459631489 .background-color-AB4{background-color:#EDF0FD;} + .d2-1459631489 .background-color-AB5{background-color:#F7F8FE;} + .d2-1459631489 .color-N1{color:#0A0F25;} + .d2-1459631489 .color-N2{color:#676C7E;} + .d2-1459631489 .color-N3{color:#9499AB;} + .d2-1459631489 .color-N4{color:#CFD2DD;} + .d2-1459631489 .color-N5{color:#DEE1EB;} + .d2-1459631489 .color-N6{color:#EEF1F8;} + .d2-1459631489 .color-N7{color:#FFFFFF;} + .d2-1459631489 .color-B1{color:#0D32B2;} + .d2-1459631489 .color-B2{color:#0D32B2;} + .d2-1459631489 .color-B3{color:#E3E9FD;} + .d2-1459631489 .color-B4{color:#E3E9FD;} + .d2-1459631489 .color-B5{color:#EDF0FD;} + .d2-1459631489 .color-B6{color:#F7F8FE;} + .d2-1459631489 .color-AA2{color:#4A6FF3;} + .d2-1459631489 .color-AA4{color:#EDF0FD;} + .d2-1459631489 .color-AA5{color:#F7F8FE;} + .d2-1459631489 .color-AB4{color:#EDF0FD;} + .d2-1459631489 .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/investigate/elk/board.exp.json b/e2etests/testdata/stable/investigate/elk/board.exp.json index 35304cfc62..84621f7570 100644 --- a/e2etests/testdata/stable/investigate/elk/board.exp.json +++ b/e2etests/testdata/stable/investigate/elk/board.exp.json @@ -215,7 +215,7 @@ "x": 273, "y": 1889 }, - "width": 284, + "width": 288, "height": 388, "opacity": 1, "strokeDash": 0, @@ -458,11 +458,11 @@ "id": "ll", "type": "rectangle", "pos": { - "x": 249, + "x": 247, "y": 2468 }, - "width": 268, - "height": 320, + "width": 272, + "height": 324, "opacity": 1, "strokeDash": 0, "strokeWidth": 2, @@ -499,11 +499,11 @@ "id": "ll.mm", "type": "oval", "pos": { - "x": 299, + "x": 297, "y": 2518 }, - "width": 84, - "height": 84, + "width": 88, + "height": 88, "opacity": 1, "strokeDash": 0, "strokeWidth": 2, @@ -541,10 +541,10 @@ "type": "oval", "pos": { "x": 423, - "y": 1943 + "y": 1941 }, - "width": 84, - "height": 84, + "width": 88, + "height": 88, "opacity": 1, "strokeDash": 0, "strokeWidth": 2, @@ -581,8 +581,8 @@ "id": "nn", "type": "cylinder", "pos": { - "x": 79, - "y": 3472 + "x": 80, + "y": 3476 }, "width": 327, "height": 210, @@ -622,8 +622,8 @@ "id": "nn.oo", "type": "rectangle", "pos": { - "x": 129, - "y": 3566 + "x": 130, + "y": 3570 }, "width": 63, "height": 66, @@ -663,7 +663,7 @@ "id": "ff.pp", "type": "rectangle", "pos": { - "x": 404, + "x": 406, "y": 2161 }, "width": 63, @@ -704,8 +704,8 @@ "id": "ll.qq", "type": "rectangle", "pos": { - "x": 403, - "y": 2527 + "x": 405, + "y": 2529 }, "width": 64, "height": 66, @@ -745,8 +745,8 @@ "id": "ll.rr", "type": "rectangle", "pos": { - "x": 406, - "y": 2672 + "x": 408, + "y": 2676 }, "width": 58, "height": 66, @@ -1004,7 +1004,7 @@ "type": "rectangle", "pos": { "x": 113, - "y": 2637 + "y": 2640 }, "width": 80, "height": 66, @@ -1044,8 +1044,8 @@ "id": "nn.xx", "type": "rectangle", "pos": { - "x": 212, - "y": 3566 + "x": 213, + "y": 3570 }, "width": 62, "height": 66, @@ -1085,8 +1085,8 @@ "id": "yy", "type": "rectangle", "pos": { - "x": 312, - "y": 2978 + "x": 315, + "y": 2982 }, "width": 238, "height": 354, @@ -1126,8 +1126,8 @@ "id": "yy.zz", "type": "queue", "pos": { - "x": 362, - "y": 3028 + "x": 365, + "y": 3032 }, "width": 138, "height": 118, @@ -1179,8 +1179,8 @@ "id": "yy.ab", "type": "rectangle", "pos": { - "x": 399, - "y": 3216 + "x": 402, + "y": 3220 }, "width": 63, "height": 66, @@ -1220,8 +1220,8 @@ "id": "nn.ac", "type": "rectangle", "pos": { - "x": 294, - "y": 3566 + "x": 295, + "y": 3570 }, "width": 62, "height": 66, @@ -1261,8 +1261,8 @@ "id": "ad", "type": "parallelogram", "pos": { - "x": 268, - "y": 3757 + "x": 269, + "y": 3761 }, "width": 115, "height": 66, @@ -1669,12 +1669,12 @@ "y": 1646 }, { - "x": 443.3330078125, + "x": 444.3330078125, "y": 1646 }, { - "x": 443, - "y": 1949 + "x": 444, + "y": 1947 } ], "animated": false, @@ -1707,20 +1707,20 @@ "labelPercentage": 0, "route": [ { - "x": 465, - "y": 2027 + "x": 467, + "y": 2029 }, { - "x": 465.1659851074219, + "x": 467.1659851074219, "y": 2121 }, { - "x": 352.4159851074219, + "x": 353.4159851074219, "y": 2121 }, { - "x": 352, - "y": 2519 + "x": 353, + "y": 2520 } ], "animated": false, @@ -1754,27 +1754,27 @@ "route": [ { "x": 342, - "y": 2602 + "y": 2606 }, { "x": 341.6659851074219, - "y": 2883 + "y": 2887 }, { "x": 94.66600036621094, - "y": 2883 + "y": 2887 }, { "x": 94.66600036621094, - "y": 3427 + "y": 3431 }, { - "x": 161.33299255371094, - "y": 3427 + "x": 162.33299255371094, + "y": 3431 }, { - "x": 161.33299255371094, - "y": 3566 + "x": 162.33299255371094, + "y": 3570 } ], "animated": false, @@ -1815,11 +1815,11 @@ "y": 2071 }, { - "x": 435.6659851074219, + "x": 437.6659851074219, "y": 2071 }, { - "x": 435.6659851074219, + "x": 437.6659851074219, "y": 2161 } ], @@ -1853,12 +1853,12 @@ "labelPercentage": 0, "route": [ { - "x": 435.6659851074219, + "x": 437.6659851074219, "y": 2227 }, { - "x": 435.6659851074219, - "y": 2527 + "x": 437.6659851074219, + "y": 2529 } ], "animated": false, @@ -1891,12 +1891,12 @@ "labelPercentage": 0, "route": [ { - "x": 435.6659851074219, - "y": 2593 + "x": 437.6659851074219, + "y": 2595 }, { - "x": 435.6659851074219, - "y": 2672 + "x": 437.6659851074219, + "y": 2676 } ], "animated": false, @@ -2102,7 +2102,7 @@ }, { "x": 153, - "y": 2637 + "y": 2640 } ], "animated": false, @@ -2136,19 +2136,19 @@ "route": [ { "x": 139.66600036621094, - "y": 2703 + "y": 2706 }, { "x": 139.66600036621094, - "y": 3377 + "y": 3381 }, { - "x": 243.83299255371094, - "y": 3377 + "x": 244.83299255371094, + "y": 3381 }, { - "x": 243.83299255371094, - "y": 3566 + "x": 244.83299255371094, + "y": 3570 } ], "animated": false, @@ -2181,12 +2181,12 @@ "labelPercentage": 0, "route": [ { - "x": 454.0830078125, - "y": 2738 + "x": 437.6659851074219, + "y": 2742 }, { - "x": 454, - "y": 3028 + "x": 438, + "y": 3032 } ], "animated": false, @@ -2220,19 +2220,19 @@ "route": [ { "x": 166.33299255371094, - "y": 2703 + "y": 2706 }, { "x": 166.33299255371094, - "y": 2833 + "y": 2837 }, { - "x": 408.0830078125, - "y": 2833 + "x": 411.0830078125, + "y": 2837 }, { - "x": 408, - "y": 3028 + "x": 411, + "y": 3032 } ], "animated": false, @@ -2265,12 +2265,12 @@ "labelPercentage": 0, "route": [ { - "x": 431, - "y": 3146 + "x": 434, + "y": 3150 }, { - "x": 431, - "y": 3216 + "x": 434, + "y": 3220 } ], "animated": false, @@ -2303,20 +2303,20 @@ "labelPercentage": 0, "route": [ { - "x": 431.0830078125, - "y": 3282 + "x": 434.0830078125, + "y": 3286 }, { - "x": 431.0830078125, - "y": 3377 + "x": 434.0830078125, + "y": 3381 }, { - "x": 325.8330078125, - "y": 3377 + "x": 326.8330078125, + "y": 3381 }, { - "x": 325.8330078125, - "y": 3566 + "x": 326.8330078125, + "y": 3570 } ], "animated": false, @@ -2349,12 +2349,12 @@ "labelPercentage": 0, "route": [ { - "x": 325.8330078125, - "y": 3632 + "x": 326.8330078125, + "y": 3636 }, { - "x": 326, - "y": 3757 + "x": 327, + "y": 3761 } ], "animated": false, diff --git a/e2etests/testdata/stable/investigate/elk/sketch.exp.svg b/e2etests/testdata/stable/investigate/elk/sketch.exp.svg index e8a8f5c85e..8f3c4e5241 100644 --- a/e2etests/testdata/stable/investigate/elk/sketch.exp.svg +++ b/e2etests/testdata/stable/investigate/elk/sketch.exp.svg @@ -1,23 +1,23 @@ -aabbccddffiijjkkllnnssuuwwrmyyeegghhmmmmooppqqrrttvvxxzzabac 123456 - + .d2-1482502216 .fill-N1{fill:#0A0F25;} + .d2-1482502216 .fill-N2{fill:#676C7E;} + .d2-1482502216 .fill-N3{fill:#9499AB;} + .d2-1482502216 .fill-N4{fill:#CFD2DD;} + .d2-1482502216 .fill-N5{fill:#DEE1EB;} + .d2-1482502216 .fill-N6{fill:#EEF1F8;} + .d2-1482502216 .fill-N7{fill:#FFFFFF;} + .d2-1482502216 .fill-B1{fill:#0D32B2;} + .d2-1482502216 .fill-B2{fill:#0D32B2;} + .d2-1482502216 .fill-B3{fill:#E3E9FD;} + .d2-1482502216 .fill-B4{fill:#E3E9FD;} + .d2-1482502216 .fill-B5{fill:#EDF0FD;} + .d2-1482502216 .fill-B6{fill:#F7F8FE;} + .d2-1482502216 .fill-AA2{fill:#4A6FF3;} + .d2-1482502216 .fill-AA4{fill:#EDF0FD;} + .d2-1482502216 .fill-AA5{fill:#F7F8FE;} + .d2-1482502216 .fill-AB4{fill:#EDF0FD;} + .d2-1482502216 .fill-AB5{fill:#F7F8FE;} + .d2-1482502216 .stroke-N1{stroke:#0A0F25;} + .d2-1482502216 .stroke-N2{stroke:#676C7E;} + .d2-1482502216 .stroke-N3{stroke:#9499AB;} + .d2-1482502216 .stroke-N4{stroke:#CFD2DD;} + .d2-1482502216 .stroke-N5{stroke:#DEE1EB;} + .d2-1482502216 .stroke-N6{stroke:#EEF1F8;} + .d2-1482502216 .stroke-N7{stroke:#FFFFFF;} + .d2-1482502216 .stroke-B1{stroke:#0D32B2;} + .d2-1482502216 .stroke-B2{stroke:#0D32B2;} + .d2-1482502216 .stroke-B3{stroke:#E3E9FD;} + .d2-1482502216 .stroke-B4{stroke:#E3E9FD;} + .d2-1482502216 .stroke-B5{stroke:#EDF0FD;} + .d2-1482502216 .stroke-B6{stroke:#F7F8FE;} + .d2-1482502216 .stroke-AA2{stroke:#4A6FF3;} + .d2-1482502216 .stroke-AA4{stroke:#EDF0FD;} + .d2-1482502216 .stroke-AA5{stroke:#F7F8FE;} + .d2-1482502216 .stroke-AB4{stroke:#EDF0FD;} + .d2-1482502216 .stroke-AB5{stroke:#F7F8FE;} + .d2-1482502216 .background-color-N1{background-color:#0A0F25;} + .d2-1482502216 .background-color-N2{background-color:#676C7E;} + .d2-1482502216 .background-color-N3{background-color:#9499AB;} + .d2-1482502216 .background-color-N4{background-color:#CFD2DD;} + .d2-1482502216 .background-color-N5{background-color:#DEE1EB;} + .d2-1482502216 .background-color-N6{background-color:#EEF1F8;} + .d2-1482502216 .background-color-N7{background-color:#FFFFFF;} + .d2-1482502216 .background-color-B1{background-color:#0D32B2;} + .d2-1482502216 .background-color-B2{background-color:#0D32B2;} + .d2-1482502216 .background-color-B3{background-color:#E3E9FD;} + .d2-1482502216 .background-color-B4{background-color:#E3E9FD;} + .d2-1482502216 .background-color-B5{background-color:#EDF0FD;} + .d2-1482502216 .background-color-B6{background-color:#F7F8FE;} + .d2-1482502216 .background-color-AA2{background-color:#4A6FF3;} + .d2-1482502216 .background-color-AA4{background-color:#EDF0FD;} + .d2-1482502216 .background-color-AA5{background-color:#F7F8FE;} + .d2-1482502216 .background-color-AB4{background-color:#EDF0FD;} + .d2-1482502216 .background-color-AB5{background-color:#F7F8FE;} + .d2-1482502216 .color-N1{color:#0A0F25;} + .d2-1482502216 .color-N2{color:#676C7E;} + .d2-1482502216 .color-N3{color:#9499AB;} + .d2-1482502216 .color-N4{color:#CFD2DD;} + .d2-1482502216 .color-N5{color:#DEE1EB;} + .d2-1482502216 .color-N6{color:#EEF1F8;} + .d2-1482502216 .color-N7{color:#FFFFFF;} + .d2-1482502216 .color-B1{color:#0D32B2;} + .d2-1482502216 .color-B2{color:#0D32B2;} + .d2-1482502216 .color-B3{color:#E3E9FD;} + .d2-1482502216 .color-B4{color:#E3E9FD;} + .d2-1482502216 .color-B5{color:#EDF0FD;} + .d2-1482502216 .color-B6{color:#F7F8FE;} + .d2-1482502216 .color-AA2{color:#4A6FF3;} + .d2-1482502216 .color-AA4{color:#EDF0FD;} + .d2-1482502216 .color-AA5{color:#F7F8FE;} + .d2-1482502216 .color-AB4{color:#EDF0FD;} + .d2-1482502216 .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/links/dagre/board.exp.json b/e2etests/testdata/stable/links/dagre/board.exp.json index 2b6959d56f..24b2fa3dca 100644 --- a/e2etests/testdata/stable/links/dagre/board.exp.json +++ b/e2etests/testdata/stable/links/dagre/board.exp.json @@ -7,10 +7,10 @@ "id": "x", "type": "rectangle", "pos": { - "x": 17, + "x": 33, "y": 0 }, - "width": 85, + "width": 53, "height": 66, "opacity": 1, "strokeDash": 0, diff --git a/e2etests/testdata/stable/links/dagre/sketch.exp.svg b/e2etests/testdata/stable/links/dagre/sketch.exp.svg index 7b199c7fe9..37fa82b06a 100644 --- a/e2etests/testdata/stable/links/dagre/sketch.exp.svg +++ b/e2etests/testdata/stable/links/dagre/sketch.exp.svg @@ -1,12 +1,12 @@ -xyGee, I feel kind of LIGHT in the head now, knowing I can't make my satellite dish PAYMENTS! + .d2-765639317 .fill-N1{fill:#0A0F25;} + .d2-765639317 .fill-N2{fill:#676C7E;} + .d2-765639317 .fill-N3{fill:#9499AB;} + .d2-765639317 .fill-N4{fill:#CFD2DD;} + .d2-765639317 .fill-N5{fill:#DEE1EB;} + .d2-765639317 .fill-N6{fill:#EEF1F8;} + .d2-765639317 .fill-N7{fill:#FFFFFF;} + .d2-765639317 .fill-B1{fill:#0D32B2;} + .d2-765639317 .fill-B2{fill:#0D32B2;} + .d2-765639317 .fill-B3{fill:#E3E9FD;} + .d2-765639317 .fill-B4{fill:#E3E9FD;} + .d2-765639317 .fill-B5{fill:#EDF0FD;} + .d2-765639317 .fill-B6{fill:#F7F8FE;} + .d2-765639317 .fill-AA2{fill:#4A6FF3;} + .d2-765639317 .fill-AA4{fill:#EDF0FD;} + .d2-765639317 .fill-AA5{fill:#F7F8FE;} + .d2-765639317 .fill-AB4{fill:#EDF0FD;} + .d2-765639317 .fill-AB5{fill:#F7F8FE;} + .d2-765639317 .stroke-N1{stroke:#0A0F25;} + .d2-765639317 .stroke-N2{stroke:#676C7E;} + .d2-765639317 .stroke-N3{stroke:#9499AB;} + .d2-765639317 .stroke-N4{stroke:#CFD2DD;} + .d2-765639317 .stroke-N5{stroke:#DEE1EB;} + .d2-765639317 .stroke-N6{stroke:#EEF1F8;} + .d2-765639317 .stroke-N7{stroke:#FFFFFF;} + .d2-765639317 .stroke-B1{stroke:#0D32B2;} + .d2-765639317 .stroke-B2{stroke:#0D32B2;} + .d2-765639317 .stroke-B3{stroke:#E3E9FD;} + .d2-765639317 .stroke-B4{stroke:#E3E9FD;} + .d2-765639317 .stroke-B5{stroke:#EDF0FD;} + .d2-765639317 .stroke-B6{stroke:#F7F8FE;} + .d2-765639317 .stroke-AA2{stroke:#4A6FF3;} + .d2-765639317 .stroke-AA4{stroke:#EDF0FD;} + .d2-765639317 .stroke-AA5{stroke:#F7F8FE;} + .d2-765639317 .stroke-AB4{stroke:#EDF0FD;} + .d2-765639317 .stroke-AB5{stroke:#F7F8FE;} + .d2-765639317 .background-color-N1{background-color:#0A0F25;} + .d2-765639317 .background-color-N2{background-color:#676C7E;} + .d2-765639317 .background-color-N3{background-color:#9499AB;} + .d2-765639317 .background-color-N4{background-color:#CFD2DD;} + .d2-765639317 .background-color-N5{background-color:#DEE1EB;} + .d2-765639317 .background-color-N6{background-color:#EEF1F8;} + .d2-765639317 .background-color-N7{background-color:#FFFFFF;} + .d2-765639317 .background-color-B1{background-color:#0D32B2;} + .d2-765639317 .background-color-B2{background-color:#0D32B2;} + .d2-765639317 .background-color-B3{background-color:#E3E9FD;} + .d2-765639317 .background-color-B4{background-color:#E3E9FD;} + .d2-765639317 .background-color-B5{background-color:#EDF0FD;} + .d2-765639317 .background-color-B6{background-color:#F7F8FE;} + .d2-765639317 .background-color-AA2{background-color:#4A6FF3;} + .d2-765639317 .background-color-AA4{background-color:#EDF0FD;} + .d2-765639317 .background-color-AA5{background-color:#F7F8FE;} + .d2-765639317 .background-color-AB4{background-color:#EDF0FD;} + .d2-765639317 .background-color-AB5{background-color:#F7F8FE;} + .d2-765639317 .color-N1{color:#0A0F25;} + .d2-765639317 .color-N2{color:#676C7E;} + .d2-765639317 .color-N3{color:#9499AB;} + .d2-765639317 .color-N4{color:#CFD2DD;} + .d2-765639317 .color-N5{color:#DEE1EB;} + .d2-765639317 .color-N6{color:#EEF1F8;} + .d2-765639317 .color-N7{color:#FFFFFF;} + .d2-765639317 .color-B1{color:#0D32B2;} + .d2-765639317 .color-B2{color:#0D32B2;} + .d2-765639317 .color-B3{color:#E3E9FD;} + .d2-765639317 .color-B4{color:#E3E9FD;} + .d2-765639317 .color-B5{color:#EDF0FD;} + .d2-765639317 .color-B6{color:#F7F8FE;} + .d2-765639317 .color-AA2{color:#4A6FF3;} + .d2-765639317 .color-AA4{color:#EDF0FD;} + .d2-765639317 .color-AA5{color:#F7F8FE;} + .d2-765639317 .color-AB4{color:#EDF0FD;} + .d2-765639317 .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}]]>xyGee, I feel kind of LIGHT in the head now, knowing I can't make my satellite dish PAYMENTS! @@ -129,7 +129,7 @@ - + diff --git a/e2etests/testdata/stable/links/elk/board.exp.json b/e2etests/testdata/stable/links/elk/board.exp.json index 7f3984ef9d..fbeb77398a 100644 --- a/e2etests/testdata/stable/links/elk/board.exp.json +++ b/e2etests/testdata/stable/links/elk/board.exp.json @@ -7,10 +7,10 @@ "id": "x", "type": "rectangle", "pos": { - "x": 28, + "x": 44, "y": 12 }, - "width": 85, + "width": 53, "height": 66, "opacity": 1, "strokeDash": 0, diff --git a/e2etests/testdata/stable/links/elk/sketch.exp.svg b/e2etests/testdata/stable/links/elk/sketch.exp.svg index acd9b6a908..d3dbc8c7af 100644 --- a/e2etests/testdata/stable/links/elk/sketch.exp.svg +++ b/e2etests/testdata/stable/links/elk/sketch.exp.svg @@ -1,12 +1,12 @@ -xyGee, I feel kind of LIGHT in the head now, knowing I can't make my satellite dish PAYMENTS! + .d2-9387543 .fill-N1{fill:#0A0F25;} + .d2-9387543 .fill-N2{fill:#676C7E;} + .d2-9387543 .fill-N3{fill:#9499AB;} + .d2-9387543 .fill-N4{fill:#CFD2DD;} + .d2-9387543 .fill-N5{fill:#DEE1EB;} + .d2-9387543 .fill-N6{fill:#EEF1F8;} + .d2-9387543 .fill-N7{fill:#FFFFFF;} + .d2-9387543 .fill-B1{fill:#0D32B2;} + .d2-9387543 .fill-B2{fill:#0D32B2;} + .d2-9387543 .fill-B3{fill:#E3E9FD;} + .d2-9387543 .fill-B4{fill:#E3E9FD;} + .d2-9387543 .fill-B5{fill:#EDF0FD;} + .d2-9387543 .fill-B6{fill:#F7F8FE;} + .d2-9387543 .fill-AA2{fill:#4A6FF3;} + .d2-9387543 .fill-AA4{fill:#EDF0FD;} + .d2-9387543 .fill-AA5{fill:#F7F8FE;} + .d2-9387543 .fill-AB4{fill:#EDF0FD;} + .d2-9387543 .fill-AB5{fill:#F7F8FE;} + .d2-9387543 .stroke-N1{stroke:#0A0F25;} + .d2-9387543 .stroke-N2{stroke:#676C7E;} + .d2-9387543 .stroke-N3{stroke:#9499AB;} + .d2-9387543 .stroke-N4{stroke:#CFD2DD;} + .d2-9387543 .stroke-N5{stroke:#DEE1EB;} + .d2-9387543 .stroke-N6{stroke:#EEF1F8;} + .d2-9387543 .stroke-N7{stroke:#FFFFFF;} + .d2-9387543 .stroke-B1{stroke:#0D32B2;} + .d2-9387543 .stroke-B2{stroke:#0D32B2;} + .d2-9387543 .stroke-B3{stroke:#E3E9FD;} + .d2-9387543 .stroke-B4{stroke:#E3E9FD;} + .d2-9387543 .stroke-B5{stroke:#EDF0FD;} + .d2-9387543 .stroke-B6{stroke:#F7F8FE;} + .d2-9387543 .stroke-AA2{stroke:#4A6FF3;} + .d2-9387543 .stroke-AA4{stroke:#EDF0FD;} + .d2-9387543 .stroke-AA5{stroke:#F7F8FE;} + .d2-9387543 .stroke-AB4{stroke:#EDF0FD;} + .d2-9387543 .stroke-AB5{stroke:#F7F8FE;} + .d2-9387543 .background-color-N1{background-color:#0A0F25;} + .d2-9387543 .background-color-N2{background-color:#676C7E;} + .d2-9387543 .background-color-N3{background-color:#9499AB;} + .d2-9387543 .background-color-N4{background-color:#CFD2DD;} + .d2-9387543 .background-color-N5{background-color:#DEE1EB;} + .d2-9387543 .background-color-N6{background-color:#EEF1F8;} + .d2-9387543 .background-color-N7{background-color:#FFFFFF;} + .d2-9387543 .background-color-B1{background-color:#0D32B2;} + .d2-9387543 .background-color-B2{background-color:#0D32B2;} + .d2-9387543 .background-color-B3{background-color:#E3E9FD;} + .d2-9387543 .background-color-B4{background-color:#E3E9FD;} + .d2-9387543 .background-color-B5{background-color:#EDF0FD;} + .d2-9387543 .background-color-B6{background-color:#F7F8FE;} + .d2-9387543 .background-color-AA2{background-color:#4A6FF3;} + .d2-9387543 .background-color-AA4{background-color:#EDF0FD;} + .d2-9387543 .background-color-AA5{background-color:#F7F8FE;} + .d2-9387543 .background-color-AB4{background-color:#EDF0FD;} + .d2-9387543 .background-color-AB5{background-color:#F7F8FE;} + .d2-9387543 .color-N1{color:#0A0F25;} + .d2-9387543 .color-N2{color:#676C7E;} + .d2-9387543 .color-N3{color:#9499AB;} + .d2-9387543 .color-N4{color:#CFD2DD;} + .d2-9387543 .color-N5{color:#DEE1EB;} + .d2-9387543 .color-N6{color:#EEF1F8;} + .d2-9387543 .color-N7{color:#FFFFFF;} + .d2-9387543 .color-B1{color:#0D32B2;} + .d2-9387543 .color-B2{color:#0D32B2;} + .d2-9387543 .color-B3{color:#E3E9FD;} + .d2-9387543 .color-B4{color:#E3E9FD;} + .d2-9387543 .color-B5{color:#EDF0FD;} + .d2-9387543 .color-B6{color:#F7F8FE;} + .d2-9387543 .color-AA2{color:#4A6FF3;} + .d2-9387543 .color-AA4{color:#EDF0FD;} + .d2-9387543 .color-AA5{color:#F7F8FE;} + .d2-9387543 .color-AB4{color:#EDF0FD;} + .d2-9387543 .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}]]>xyGee, I feel kind of LIGHT in the head now, knowing I can't make my satellite dish PAYMENTS! @@ -129,7 +129,7 @@ - + diff --git a/e2etests/testdata/stable/nested_shape_labels/dagre/board.exp.json b/e2etests/testdata/stable/nested_shape_labels/dagre/board.exp.json index 2217f38301..10906a7f26 100644 --- a/e2etests/testdata/stable/nested_shape_labels/dagre/board.exp.json +++ b/e2etests/testdata/stable/nested_shape_labels/dagre/board.exp.json @@ -92,7 +92,7 @@ "x": 166, "y": 0 }, - "width": 157, + "width": 163, "height": 192, "opacity": 1, "strokeDash": 0, @@ -131,10 +131,10 @@ "type": "oval", "pos": { "x": 206, - "y": 58 + "y": 55 }, - "width": 77, - "height": 77, + "width": 83, + "height": 83, "opacity": 1, "strokeDash": 0, "strokeWidth": 2, diff --git a/e2etests/testdata/stable/nested_shape_labels/dagre/sketch.exp.svg b/e2etests/testdata/stable/nested_shape_labels/dagre/sketch.exp.svg index ab941ca287..9e3c8f43b1 100644 --- a/e2etests/testdata/stable/nested_shape_labels/dagre/sketch.exp.svg +++ b/e2etests/testdata/stable/nested_shape_labels/dagre/sketch.exp.svg @@ -1,16 +1,16 @@ -aaccbbdd - + .d2-1354711061 .fill-N1{fill:#0A0F25;} + .d2-1354711061 .fill-N2{fill:#676C7E;} + .d2-1354711061 .fill-N3{fill:#9499AB;} + .d2-1354711061 .fill-N4{fill:#CFD2DD;} + .d2-1354711061 .fill-N5{fill:#DEE1EB;} + .d2-1354711061 .fill-N6{fill:#EEF1F8;} + .d2-1354711061 .fill-N7{fill:#FFFFFF;} + .d2-1354711061 .fill-B1{fill:#0D32B2;} + .d2-1354711061 .fill-B2{fill:#0D32B2;} + .d2-1354711061 .fill-B3{fill:#E3E9FD;} + .d2-1354711061 .fill-B4{fill:#E3E9FD;} + .d2-1354711061 .fill-B5{fill:#EDF0FD;} + .d2-1354711061 .fill-B6{fill:#F7F8FE;} + .d2-1354711061 .fill-AA2{fill:#4A6FF3;} + .d2-1354711061 .fill-AA4{fill:#EDF0FD;} + .d2-1354711061 .fill-AA5{fill:#F7F8FE;} + .d2-1354711061 .fill-AB4{fill:#EDF0FD;} + .d2-1354711061 .fill-AB5{fill:#F7F8FE;} + .d2-1354711061 .stroke-N1{stroke:#0A0F25;} + .d2-1354711061 .stroke-N2{stroke:#676C7E;} + .d2-1354711061 .stroke-N3{stroke:#9499AB;} + .d2-1354711061 .stroke-N4{stroke:#CFD2DD;} + .d2-1354711061 .stroke-N5{stroke:#DEE1EB;} + .d2-1354711061 .stroke-N6{stroke:#EEF1F8;} + .d2-1354711061 .stroke-N7{stroke:#FFFFFF;} + .d2-1354711061 .stroke-B1{stroke:#0D32B2;} + .d2-1354711061 .stroke-B2{stroke:#0D32B2;} + .d2-1354711061 .stroke-B3{stroke:#E3E9FD;} + .d2-1354711061 .stroke-B4{stroke:#E3E9FD;} + .d2-1354711061 .stroke-B5{stroke:#EDF0FD;} + .d2-1354711061 .stroke-B6{stroke:#F7F8FE;} + .d2-1354711061 .stroke-AA2{stroke:#4A6FF3;} + .d2-1354711061 .stroke-AA4{stroke:#EDF0FD;} + .d2-1354711061 .stroke-AA5{stroke:#F7F8FE;} + .d2-1354711061 .stroke-AB4{stroke:#EDF0FD;} + .d2-1354711061 .stroke-AB5{stroke:#F7F8FE;} + .d2-1354711061 .background-color-N1{background-color:#0A0F25;} + .d2-1354711061 .background-color-N2{background-color:#676C7E;} + .d2-1354711061 .background-color-N3{background-color:#9499AB;} + .d2-1354711061 .background-color-N4{background-color:#CFD2DD;} + .d2-1354711061 .background-color-N5{background-color:#DEE1EB;} + .d2-1354711061 .background-color-N6{background-color:#EEF1F8;} + .d2-1354711061 .background-color-N7{background-color:#FFFFFF;} + .d2-1354711061 .background-color-B1{background-color:#0D32B2;} + .d2-1354711061 .background-color-B2{background-color:#0D32B2;} + .d2-1354711061 .background-color-B3{background-color:#E3E9FD;} + .d2-1354711061 .background-color-B4{background-color:#E3E9FD;} + .d2-1354711061 .background-color-B5{background-color:#EDF0FD;} + .d2-1354711061 .background-color-B6{background-color:#F7F8FE;} + .d2-1354711061 .background-color-AA2{background-color:#4A6FF3;} + .d2-1354711061 .background-color-AA4{background-color:#EDF0FD;} + .d2-1354711061 .background-color-AA5{background-color:#F7F8FE;} + .d2-1354711061 .background-color-AB4{background-color:#EDF0FD;} + .d2-1354711061 .background-color-AB5{background-color:#F7F8FE;} + .d2-1354711061 .color-N1{color:#0A0F25;} + .d2-1354711061 .color-N2{color:#676C7E;} + .d2-1354711061 .color-N3{color:#9499AB;} + .d2-1354711061 .color-N4{color:#CFD2DD;} + .d2-1354711061 .color-N5{color:#DEE1EB;} + .d2-1354711061 .color-N6{color:#EEF1F8;} + .d2-1354711061 .color-N7{color:#FFFFFF;} + .d2-1354711061 .color-B1{color:#0D32B2;} + .d2-1354711061 .color-B2{color:#0D32B2;} + .d2-1354711061 .color-B3{color:#E3E9FD;} + .d2-1354711061 .color-B4{color:#E3E9FD;} + .d2-1354711061 .color-B5{color:#EDF0FD;} + .d2-1354711061 .color-B6{color:#F7F8FE;} + .d2-1354711061 .color-AA2{color:#4A6FF3;} + .d2-1354711061 .color-AA4{color:#EDF0FD;} + .d2-1354711061 .color-AA5{color:#F7F8FE;} + .d2-1354711061 .color-AB4{color:#EDF0FD;} + .d2-1354711061 .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}]]>aaccbbdd + - + - + \ No newline at end of file diff --git a/e2etests/testdata/stable/nested_shape_labels/elk/board.exp.json b/e2etests/testdata/stable/nested_shape_labels/elk/board.exp.json index f9ebb73f3c..9b850ef1b8 100644 --- a/e2etests/testdata/stable/nested_shape_labels/elk/board.exp.json +++ b/e2etests/testdata/stable/nested_shape_labels/elk/board.exp.json @@ -8,7 +8,7 @@ "type": "package", "pos": { "x": 12, - "y": 18 + "y": 22 }, "width": 166, "height": 234, @@ -49,7 +49,7 @@ "type": "diamond", "pos": { "x": 62, - "y": 110 + "y": 114 }, "width": 66, "height": 92, @@ -92,8 +92,8 @@ "x": 198, "y": 12 }, - "width": 177, - "height": 247, + "width": 183, + "height": 255, "opacity": 1, "strokeDash": 0, "strokeWidth": 2, @@ -131,10 +131,10 @@ "type": "oval", "pos": { "x": 248, - "y": 120 + "y": 121 }, - "width": 77, - "height": 77, + "width": 83, + "height": 83, "opacity": 1, "strokeDash": 0, "strokeWidth": 2, diff --git a/e2etests/testdata/stable/nested_shape_labels/elk/sketch.exp.svg b/e2etests/testdata/stable/nested_shape_labels/elk/sketch.exp.svg index 4414c82265..1d1a66574a 100644 --- a/e2etests/testdata/stable/nested_shape_labels/elk/sketch.exp.svg +++ b/e2etests/testdata/stable/nested_shape_labels/elk/sketch.exp.svg @@ -1,16 +1,16 @@ -aaccbbdd - - - - - + .d2-2242629650 .fill-N1{fill:#0A0F25;} + .d2-2242629650 .fill-N2{fill:#676C7E;} + .d2-2242629650 .fill-N3{fill:#9499AB;} + .d2-2242629650 .fill-N4{fill:#CFD2DD;} + .d2-2242629650 .fill-N5{fill:#DEE1EB;} + .d2-2242629650 .fill-N6{fill:#EEF1F8;} + .d2-2242629650 .fill-N7{fill:#FFFFFF;} + .d2-2242629650 .fill-B1{fill:#0D32B2;} + .d2-2242629650 .fill-B2{fill:#0D32B2;} + .d2-2242629650 .fill-B3{fill:#E3E9FD;} + .d2-2242629650 .fill-B4{fill:#E3E9FD;} + .d2-2242629650 .fill-B5{fill:#EDF0FD;} + .d2-2242629650 .fill-B6{fill:#F7F8FE;} + .d2-2242629650 .fill-AA2{fill:#4A6FF3;} + .d2-2242629650 .fill-AA4{fill:#EDF0FD;} + .d2-2242629650 .fill-AA5{fill:#F7F8FE;} + .d2-2242629650 .fill-AB4{fill:#EDF0FD;} + .d2-2242629650 .fill-AB5{fill:#F7F8FE;} + .d2-2242629650 .stroke-N1{stroke:#0A0F25;} + .d2-2242629650 .stroke-N2{stroke:#676C7E;} + .d2-2242629650 .stroke-N3{stroke:#9499AB;} + .d2-2242629650 .stroke-N4{stroke:#CFD2DD;} + .d2-2242629650 .stroke-N5{stroke:#DEE1EB;} + .d2-2242629650 .stroke-N6{stroke:#EEF1F8;} + .d2-2242629650 .stroke-N7{stroke:#FFFFFF;} + .d2-2242629650 .stroke-B1{stroke:#0D32B2;} + .d2-2242629650 .stroke-B2{stroke:#0D32B2;} + .d2-2242629650 .stroke-B3{stroke:#E3E9FD;} + .d2-2242629650 .stroke-B4{stroke:#E3E9FD;} + .d2-2242629650 .stroke-B5{stroke:#EDF0FD;} + .d2-2242629650 .stroke-B6{stroke:#F7F8FE;} + .d2-2242629650 .stroke-AA2{stroke:#4A6FF3;} + .d2-2242629650 .stroke-AA4{stroke:#EDF0FD;} + .d2-2242629650 .stroke-AA5{stroke:#F7F8FE;} + .d2-2242629650 .stroke-AB4{stroke:#EDF0FD;} + .d2-2242629650 .stroke-AB5{stroke:#F7F8FE;} + .d2-2242629650 .background-color-N1{background-color:#0A0F25;} + .d2-2242629650 .background-color-N2{background-color:#676C7E;} + .d2-2242629650 .background-color-N3{background-color:#9499AB;} + .d2-2242629650 .background-color-N4{background-color:#CFD2DD;} + .d2-2242629650 .background-color-N5{background-color:#DEE1EB;} + .d2-2242629650 .background-color-N6{background-color:#EEF1F8;} + .d2-2242629650 .background-color-N7{background-color:#FFFFFF;} + .d2-2242629650 .background-color-B1{background-color:#0D32B2;} + .d2-2242629650 .background-color-B2{background-color:#0D32B2;} + .d2-2242629650 .background-color-B3{background-color:#E3E9FD;} + .d2-2242629650 .background-color-B4{background-color:#E3E9FD;} + .d2-2242629650 .background-color-B5{background-color:#EDF0FD;} + .d2-2242629650 .background-color-B6{background-color:#F7F8FE;} + .d2-2242629650 .background-color-AA2{background-color:#4A6FF3;} + .d2-2242629650 .background-color-AA4{background-color:#EDF0FD;} + .d2-2242629650 .background-color-AA5{background-color:#F7F8FE;} + .d2-2242629650 .background-color-AB4{background-color:#EDF0FD;} + .d2-2242629650 .background-color-AB5{background-color:#F7F8FE;} + .d2-2242629650 .color-N1{color:#0A0F25;} + .d2-2242629650 .color-N2{color:#676C7E;} + .d2-2242629650 .color-N3{color:#9499AB;} + .d2-2242629650 .color-N4{color:#CFD2DD;} + .d2-2242629650 .color-N5{color:#DEE1EB;} + .d2-2242629650 .color-N6{color:#EEF1F8;} + .d2-2242629650 .color-N7{color:#FFFFFF;} + .d2-2242629650 .color-B1{color:#0D32B2;} + .d2-2242629650 .color-B2{color:#0D32B2;} + .d2-2242629650 .color-B3{color:#E3E9FD;} + .d2-2242629650 .color-B4{color:#E3E9FD;} + .d2-2242629650 .color-B5{color:#EDF0FD;} + .d2-2242629650 .color-B6{color:#F7F8FE;} + .d2-2242629650 .color-AA2{color:#4A6FF3;} + .d2-2242629650 .color-AA4{color:#EDF0FD;} + .d2-2242629650 .color-AA5{color:#F7F8FE;} + .d2-2242629650 .color-AB4{color:#EDF0FD;} + .d2-2242629650 .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}]]>aaccbbdd + + + + + \ No newline at end of file diff --git a/e2etests/testdata/stable/nesting_power/dagre/board.exp.json b/e2etests/testdata/stable/nesting_power/dagre/board.exp.json index 4ac89c2336..6406ab9bc1 100644 --- a/e2etests/testdata/stable/nesting_power/dagre/board.exp.json +++ b/e2etests/testdata/stable/nesting_power/dagre/board.exp.json @@ -8,7 +8,7 @@ "type": "rectangle", "pos": { "x": -2526, - "y": 813 + "y": 808 }, "width": 2508, "height": 938, @@ -49,7 +49,7 @@ "type": "rectangle", "pos": { "x": -2496, - "y": 1197 + "y": 1192 }, "width": 559, "height": 189, @@ -90,7 +90,7 @@ "type": "rectangle", "pos": { "x": -1760, - "y": 1290 + "y": 1285 }, "width": 90, "height": 66, @@ -131,7 +131,7 @@ "type": "rectangle", "pos": { "x": -1570, - "y": 843 + "y": 838 }, "width": 1522, "height": 878, @@ -172,7 +172,7 @@ "type": "rectangle", "pos": { "x": -2466, - "y": 1290 + "y": 1285 }, "width": 86, "height": 66, @@ -213,7 +213,7 @@ "type": "rectangle", "pos": { "x": -2264, - "y": 1269 + "y": 1264 }, "width": 67, "height": 66, @@ -254,7 +254,7 @@ "type": "rectangle", "pos": { "x": -2040, - "y": 1227 + "y": 1222 }, "width": 73, "height": 66, @@ -295,7 +295,7 @@ "type": "rectangle", "pos": { "x": -1510, - "y": 903 + "y": 898 }, "width": 204, "height": 758, @@ -336,7 +336,7 @@ "type": "rectangle", "pos": { "x": -1266, - "y": 934 + "y": 929 }, "width": 242, "height": 727, @@ -377,7 +377,7 @@ "type": "rectangle", "pos": { "x": -1450, - "y": 963 + "y": 958 }, "width": 84, "height": 66, @@ -418,7 +418,7 @@ "type": "rectangle", "pos": { "x": -1450, - "y": 1069 + "y": 1064 }, "width": 84, "height": 66, @@ -459,7 +459,7 @@ "type": "rectangle", "pos": { "x": -1450, - "y": 1175 + "y": 1170 }, "width": 84, "height": 66, @@ -500,7 +500,7 @@ "type": "rectangle", "pos": { "x": -1450, - "y": 1281 + "y": 1276 }, "width": 84, "height": 66, @@ -541,7 +541,7 @@ "type": "rectangle", "pos": { "x": -1450, - "y": 1387 + "y": 1382 }, "width": 84, "height": 66, @@ -582,7 +582,7 @@ "type": "sequence_diagram", "pos": { "x": -984, - "y": 903 + "y": 898 }, "width": 876, "height": 758, @@ -623,7 +623,7 @@ "type": "rectangle", "pos": { "x": -972, - "y": 1303 + "y": 1298 }, "width": 100, "height": 66, @@ -664,7 +664,7 @@ "type": "rectangle", "pos": { "x": -822, - "y": 1303 + "y": 1298 }, "width": 100, "height": 66, @@ -705,7 +705,7 @@ "type": "rectangle", "pos": { "x": -682, - "y": 1303 + "y": 1298 }, "width": 168, "height": 66, @@ -746,7 +746,7 @@ "type": "rectangle", "pos": { "x": -604, - "y": 1499 + "y": 1494 }, "width": 12, "height": 90, @@ -786,7 +786,7 @@ "type": "rectangle", "pos": { "x": -474, - "y": 981 + "y": 976 }, "width": 354, "height": 388, @@ -827,7 +827,7 @@ "type": "rectangle", "pos": { "x": -474, - "y": 1012 + "y": 1007 }, "width": 77, "height": 66, @@ -868,7 +868,7 @@ "type": "rectangle", "pos": { "x": -397, - "y": 1012 + "y": 1007 }, "width": 277, "height": 66, @@ -909,7 +909,7 @@ "type": "rectangle", "pos": { "x": -474, - "y": 1078 + "y": 1073 }, "width": 77, "height": 291, @@ -950,7 +950,7 @@ "type": "rectangle", "pos": { "x": -464, - "y": 1109 + "y": 1104 }, "width": 53, "height": 66, @@ -991,7 +991,7 @@ "type": "rectangle", "pos": { "x": -464, - "y": 1195 + "y": 1190 }, "width": 53, "height": 66, @@ -1032,7 +1032,7 @@ "type": "rectangle", "pos": { "x": -464, - "y": 1281 + "y": 1276 }, "width": 53, "height": 66, @@ -1073,7 +1073,7 @@ "type": "sequence_diagram", "pos": { "x": -397, - "y": 1078 + "y": 1073 }, "width": 277, "height": 291, @@ -1114,7 +1114,7 @@ "type": "rectangle", "pos": { "x": -385, - "y": 1151 + "y": 1146 }, "width": 105, "height": 66, @@ -1155,7 +1155,7 @@ "type": "rectangle", "pos": { "x": -232, - "y": 1151 + "y": 1146 }, "width": 100, "height": 66, @@ -1196,7 +1196,7 @@ "type": "rectangle", "pos": { "x": -1236, - "y": 965 + "y": 960 }, "width": 182, "height": 126, @@ -1237,7 +1237,7 @@ "type": "rectangle", "pos": { "x": -1206, - "y": 995 + "y": 990 }, "width": 122, "height": 66, @@ -1319,7 +1319,7 @@ "type": "rectangle", "pos": { "x": 2, - "y": 1028 + "y": 1023 }, "width": 574, "height": 1265, @@ -1933,11 +1933,11 @@ "id": "center.circle", "type": "oval", "pos": { - "x": 2335, - "y": 444 + "x": 2336, + "y": 445 }, - "width": 103, - "height": 103, + "width": 101, + "height": 101, "opacity": 1, "strokeDash": 0, "strokeWidth": 2, @@ -2058,7 +2058,7 @@ "type": "rectangle", "pos": { "x": 62, - "y": 1124 + "y": 1119 }, "width": 454, "height": 252, @@ -2099,7 +2099,7 @@ "type": "rectangle", "pos": { "x": 92, - "y": 1217 + "y": 1212 }, "width": 52, "height": 66, @@ -2140,7 +2140,7 @@ "type": "rectangle", "pos": { "x": 244, - "y": 1217 + "y": 1212 }, "width": 53, "height": 66, @@ -2181,7 +2181,7 @@ "type": "rectangle", "pos": { "x": 398, - "y": 1154 + "y": 1149 }, "width": 53, "height": 66, @@ -2222,7 +2222,7 @@ "type": "rectangle", "pos": { "x": 397, - "y": 1280 + "y": 1275 }, "width": 54, "height": 66, @@ -2263,7 +2263,7 @@ "type": "rectangle", "pos": { "x": 62, - "y": 1452 + "y": 1447 }, "width": 454, "height": 252, @@ -2304,7 +2304,7 @@ "type": "rectangle", "pos": { "x": 399, - "y": 1545 + "y": 1540 }, "width": 52, "height": 66, @@ -2345,7 +2345,7 @@ "type": "rectangle", "pos": { "x": 246, - "y": 1545 + "y": 1540 }, "width": 53, "height": 66, @@ -2386,7 +2386,7 @@ "type": "rectangle", "pos": { "x": 93, - "y": 1482 + "y": 1477 }, "width": 53, "height": 66, @@ -2427,7 +2427,7 @@ "type": "rectangle", "pos": { "x": 92, - "y": 1608 + "y": 1603 }, "width": 54, "height": 66, @@ -2468,7 +2468,7 @@ "type": "rectangle", "pos": { "x": 62, - "y": 1744 + "y": 1739 }, "width": 454, "height": 489, @@ -2508,7 +2508,7 @@ "type": "rectangle", "pos": { "x": 62, - "y": 1775 + "y": 1770 }, "width": 227, "height": 458, @@ -2549,7 +2549,7 @@ "type": "rectangle", "pos": { "x": 149, - "y": 2137 + "y": 2132 }, "width": 52, "height": 66, @@ -2590,7 +2590,7 @@ "type": "rectangle", "pos": { "x": 149, - "y": 1971 + "y": 1966 }, "width": 53, "height": 66, @@ -2631,7 +2631,7 @@ "type": "rectangle", "pos": { "x": 92, - "y": 1805 + "y": 1800 }, "width": 53, "height": 66, @@ -2672,7 +2672,7 @@ "type": "rectangle", "pos": { "x": 205, - "y": 1805 + "y": 1800 }, "width": 54, "height": 66, @@ -2713,7 +2713,7 @@ "type": "rectangle", "pos": { "x": 289, - "y": 1775 + "y": 1770 }, "width": 227, "height": 458, @@ -2754,7 +2754,7 @@ "type": "rectangle", "pos": { "x": 376, - "y": 1805 + "y": 1800 }, "width": 52, "height": 66, @@ -2795,7 +2795,7 @@ "type": "rectangle", "pos": { "x": 376, - "y": 1971 + "y": 1966 }, "width": 53, "height": 66, @@ -2836,7 +2836,7 @@ "type": "rectangle", "pos": { "x": 319, - "y": 2137 + "y": 2132 }, "width": 53, "height": 66, @@ -2877,7 +2877,7 @@ "type": "rectangle", "pos": { "x": 432, - "y": 2137 + "y": 2132 }, "width": 54, "height": 66, @@ -2918,7 +2918,7 @@ "type": "rectangle", "pos": { "x": 3654, - "y": 1141 + "y": 1136 }, "width": 733, "height": 282, @@ -2959,7 +2959,7 @@ "type": "rectangle", "pos": { "x": 3714, - "y": 1201 + "y": 1196 }, "width": 57, "height": 162, @@ -3000,7 +3000,7 @@ "type": "rectangle", "pos": { "x": 3811, - "y": 1237 + "y": 1232 }, "width": 137, "height": 126, @@ -3041,7 +3041,7 @@ "type": "rectangle", "pos": { "x": 3841, - "y": 1267 + "y": 1262 }, "width": 77, "height": 66, @@ -3082,7 +3082,7 @@ "type": "rectangle", "pos": { "x": 3988, - "y": 1201 + "y": 1196 }, "width": 72, "height": 162, @@ -3123,7 +3123,7 @@ "type": "rectangle", "pos": { "x": 4100, - "y": 1237 + "y": 1232 }, "width": 113, "height": 126, @@ -3164,7 +3164,7 @@ "type": "rectangle", "pos": { "x": 4130, - "y": 1267 + "y": 1262 }, "width": 53, "height": 66, @@ -3205,7 +3205,7 @@ "type": "rectangle", "pos": { "x": 4253, - "y": 1201 + "y": 1196 }, "width": 74, "height": 162, @@ -3246,7 +3246,7 @@ "type": "sequence_diagram", "pos": { "x": 636, - "y": 1227 + "y": 1222 }, "width": 917, "height": 866, @@ -3287,7 +3287,7 @@ "type": "rectangle", "pos": { "x": 648, - "y": 1315 + "y": 1310 }, "width": 100, "height": 66, @@ -3328,7 +3328,7 @@ "type": "rectangle", "pos": { "x": 692, - "y": 1861 + "y": 1856 }, "width": 12, "height": 30, @@ -3368,7 +3368,7 @@ "type": "rectangle", "pos": { "x": 788, - "y": 1315 + "y": 1310 }, "width": 140, "height": 66, @@ -3409,7 +3409,7 @@ "type": "rectangle", "pos": { "x": 852, - "y": 1441 + "y": 1436 }, "width": 12, "height": 90, @@ -3449,7 +3449,7 @@ "type": "rectangle", "pos": { "x": 958, - "y": 1315 + "y": 1310 }, "width": 100, "height": 66, @@ -3490,7 +3490,7 @@ "type": "rectangle", "pos": { "x": 1002, - "y": 1501 + "y": 1496 }, "width": 12, "height": 380, @@ -3530,7 +3530,7 @@ "type": "rectangle", "pos": { "x": 998, - "y": 1511 + "y": 1506 }, "width": 20, "height": 90, @@ -3570,7 +3570,7 @@ "type": "rectangle", "pos": { "x": 1098, - "y": 1315 + "y": 1310 }, "width": 126, "height": 66, @@ -3611,7 +3611,7 @@ "type": "rectangle", "pos": { "x": 1155, - "y": 1561 + "y": 1556 }, "width": 12, "height": 190, @@ -3651,7 +3651,7 @@ "type": "rectangle", "pos": { "x": 1151, - "y": 1571 + "y": 1566 }, "width": 20, "height": 170, @@ -3691,7 +3691,7 @@ "type": "rectangle", "pos": { "x": 1147, - "y": 1581 + "y": 1576 }, "width": 28, "height": 90, @@ -3731,7 +3731,7 @@ "type": "rectangle", "pos": { "x": 1264, - "y": 1315 + "y": 1310 }, "width": 100, "height": 66, @@ -3772,7 +3772,7 @@ "type": "rectangle", "pos": { "x": 1308, - "y": 1621 + "y": 1616 }, "width": 12, "height": 220, @@ -3812,7 +3812,7 @@ "type": "rectangle", "pos": { "x": 1304, - "y": 1631 + "y": 1626 }, "width": 20, "height": 200, @@ -3852,7 +3852,7 @@ "type": "rectangle", "pos": { "x": 1300, - "y": 1641 + "y": 1636 }, "width": 28, "height": 180, @@ -3892,7 +3892,7 @@ "type": "rectangle", "pos": { "x": 1296, - "y": 1651 + "y": 1646 }, "width": 36, "height": 160, @@ -3932,7 +3932,7 @@ "type": "rectangle", "pos": { "x": 1404, - "y": 1315 + "y": 1310 }, "width": 137, "height": 66, @@ -3973,7 +3973,7 @@ "type": "rectangle", "pos": { "x": 1466, - "y": 1751 + "y": 1746 }, "width": 12, "height": 240, @@ -4013,7 +4013,7 @@ "type": "rectangle", "pos": { "x": 1462, - "y": 1761 + "y": 1756 }, "width": 20, "height": 220, @@ -4053,7 +4053,7 @@ "type": "rectangle", "pos": { "x": 1458, - "y": 1771 + "y": 1766 }, "width": 28, "height": 200, @@ -4093,7 +4093,7 @@ "type": "rectangle", "pos": { "x": 1454, - "y": 1781 + "y": 1776 }, "width": 36, "height": 180, @@ -4133,7 +4133,7 @@ "type": "rectangle", "pos": { "x": 1450, - "y": 1791 + "y": 1786 }, "width": 44, "height": 160, @@ -4173,7 +4173,7 @@ "type": "rectangle", "pos": { "x": 852, - "y": 2001 + "y": 1996 }, "width": 12, "height": 30, @@ -4216,7 +4216,7 @@ "y": 725 }, "width": 2021, - "height": 1870, + "height": 1860, "opacity": 1, "strokeDash": 0, "strokeWidth": 2, @@ -4380,7 +4380,7 @@ "y": 1062 }, "width": 1901, - "height": 1473, + "height": 1463, "opacity": 1, "strokeDash": 0, "strokeWidth": 2, @@ -4418,7 +4418,7 @@ "type": "sequence_diagram", "pos": { "x": 1703, - "y": 1373 + "y": 1363 }, "width": 797, "height": 916, @@ -4458,11 +4458,11 @@ "id": "more.container.a_shape", "type": "oval", "pos": { - "x": 2509, + "x": 2514, "y": 1092 }, - "width": 131, - "height": 131, + "width": 121, + "height": 121, "opacity": 1, "strokeDash": 0, "strokeWidth": 2, @@ -4500,7 +4500,7 @@ "type": "rectangle", "pos": { "x": 1715, - "y": 1451 + "y": 1441 }, "width": 100, "height": 66, @@ -4541,7 +4541,7 @@ "type": "rectangle", "pos": { "x": 1759, - "y": 1587 + "y": 1577 }, "width": 12, "height": 380, @@ -4581,7 +4581,7 @@ "type": "rectangle", "pos": { "x": 1855, - "y": 1451 + "y": 1441 }, "width": 140, "height": 66, @@ -4622,7 +4622,7 @@ "type": "rectangle", "pos": { "x": 1919, - "y": 1587 + "y": 1577 }, "width": 12, "height": 110, @@ -4662,7 +4662,7 @@ "type": "rectangle", "pos": { "x": 2025, - "y": 1451 + "y": 1441 }, "width": 100, "height": 66, @@ -4703,7 +4703,7 @@ "type": "rectangle", "pos": { "x": 2069, - "y": 1767 + "y": 1757 }, "width": 12, "height": 110, @@ -4743,7 +4743,7 @@ "type": "rectangle", "pos": { "x": 2165, - "y": 1451 + "y": 1441 }, "width": 126, "height": 66, @@ -4784,7 +4784,7 @@ "type": "rectangle", "pos": { "x": 2222, - "y": 1947 + "y": 1937 }, "width": 12, "height": 270, @@ -4824,7 +4824,7 @@ "type": "rectangle", "pos": { "x": 2218, - "y": 2027 + "y": 2017 }, "width": 20, "height": 100, @@ -4864,7 +4864,7 @@ "type": "rectangle", "pos": { "x": 2388, - "y": 1451 + "y": 1441 }, "width": 100, "height": 66, @@ -4905,7 +4905,7 @@ "type": "rectangle", "pos": { "x": 2432, - "y": 2107 + "y": 2097 }, "width": 12, "height": 30, @@ -4945,7 +4945,7 @@ "type": "rectangle", "pos": { "x": 2518, - "y": 2439 + "y": 2429 }, "width": 112, "height": 66, @@ -4986,7 +4986,7 @@ "type": "queue", "pos": { "x": 2540, - "y": 1323 + "y": 1313 }, "width": 1014, "height": 1016, @@ -5027,7 +5027,7 @@ "type": "sequence_diagram", "pos": { "x": 2580, - "y": 1441 + "y": 1431 }, "width": 934, "height": 781, @@ -5068,7 +5068,7 @@ "type": "rectangle", "pos": { "x": 2592, - "y": 1514 + "y": 1504 }, "width": 100, "height": 66, @@ -5109,7 +5109,7 @@ "type": "rectangle", "pos": { "x": 2742, - "y": 1514 + "y": 1504 }, "width": 100, "height": 66, @@ -5150,7 +5150,7 @@ "type": "rectangle", "pos": { "x": 2882, - "y": 1514 + "y": 1504 }, "width": 126, "height": 66, @@ -5191,7 +5191,7 @@ "type": "rectangle", "pos": { "x": 3045, - "y": 1514 + "y": 1504 }, "width": 100, "height": 66, @@ -5232,7 +5232,7 @@ "type": "rectangle", "pos": { "x": 3185, - "y": 1514 + "y": 1504 }, "width": 137, "height": 66, @@ -5273,7 +5273,7 @@ "type": "rectangle", "pos": { "x": 3362, - "y": 1514 + "y": 1504 }, "width": 140, "height": 66, @@ -5314,7 +5314,7 @@ "type": "rectangle", "pos": { "x": 3426, - "y": 1640 + "y": 1630 }, "width": 12, "height": 30, @@ -5354,7 +5354,7 @@ "type": "rectangle", "pos": { "x": 3089, - "y": 1630 + "y": 1620 }, "width": 12, "height": 380, @@ -5394,7 +5394,7 @@ "type": "rectangle", "pos": { "x": 3085, - "y": 1640 + "y": 1630 }, "width": 20, "height": 90, @@ -5434,7 +5434,7 @@ "type": "rectangle", "pos": { "x": 2939, - "y": 1690 + "y": 1680 }, "width": 12, "height": 190, @@ -5474,7 +5474,7 @@ "type": "rectangle", "pos": { "x": 2935, - "y": 1700 + "y": 1690 }, "width": 20, "height": 170, @@ -5514,7 +5514,7 @@ "type": "rectangle", "pos": { "x": 2931, - "y": 1710 + "y": 1700 }, "width": 28, "height": 90, @@ -5554,7 +5554,7 @@ "type": "rectangle", "pos": { "x": 2786, - "y": 1750 + "y": 1740 }, "width": 12, "height": 220, @@ -5594,7 +5594,7 @@ "type": "rectangle", "pos": { "x": 2782, - "y": 1760 + "y": 1750 }, "width": 20, "height": 200, @@ -5634,7 +5634,7 @@ "type": "rectangle", "pos": { "x": 2778, - "y": 1770 + "y": 1760 }, "width": 28, "height": 180, @@ -5674,7 +5674,7 @@ "type": "rectangle", "pos": { "x": 2774, - "y": 1780 + "y": 1770 }, "width": 36, "height": 160, @@ -5714,7 +5714,7 @@ "type": "rectangle", "pos": { "x": 3247, - "y": 1880 + "y": 1870 }, "width": 12, "height": 240, @@ -5754,7 +5754,7 @@ "type": "rectangle", "pos": { "x": 3243, - "y": 1890 + "y": 1880 }, "width": 20, "height": 220, @@ -5794,7 +5794,7 @@ "type": "rectangle", "pos": { "x": 3239, - "y": 1900 + "y": 1890 }, "width": 28, "height": 200, @@ -5834,7 +5834,7 @@ "type": "rectangle", "pos": { "x": 3235, - "y": 1910 + "y": 1900 }, "width": 36, "height": 180, @@ -5874,7 +5874,7 @@ "type": "rectangle", "pos": { "x": 3231, - "y": 1920 + "y": 1910 }, "width": 44, "height": 160, @@ -5914,7 +5914,7 @@ "type": "rectangle", "pos": { "x": 2636, - "y": 1990 + "y": 1980 }, "width": 12, "height": 30, @@ -5954,7 +5954,7 @@ "type": "rectangle", "pos": { "x": 3426, - "y": 2130 + "y": 2120 }, "width": 12, "height": 30, @@ -5994,7 +5994,7 @@ "type": "rectangle", "pos": { "x": -389, - "y": 2651 + "y": 2641 }, "width": 371, "height": 263, @@ -6035,7 +6035,7 @@ "type": "rectangle", "pos": { "x": -369, - "y": 2692 + "y": 2682 }, "width": 331, "height": 192, @@ -6076,7 +6076,7 @@ "type": "rectangle", "pos": { "x": -339, - "y": 2728 + "y": 2718 }, "width": 271, "height": 126, @@ -6117,7 +6117,7 @@ "type": "rectangle", "pos": { "x": -309, - "y": 2758 + "y": 2748 }, "width": 211, "height": 66, @@ -6181,19 +6181,19 @@ "route": [ { "x": -1937.5, - "y": 1239.5 + "y": 1234.5 }, { "x": -1858.300048828125, - "y": 1239.5 + "y": 1234.5 }, { "x": -1822.699951171875, - "y": 1250.0999755859375 + "y": 1245.0999755859375 }, { "x": -1759.5, - "y": 1292.5 + "y": 1287.5 } ], "isCurve": true, @@ -6228,19 +6228,19 @@ "route": [ { "x": -1670, - "y": 1323 + "y": 1318 }, { "x": -1630, - "y": 1323 + "y": 1318 }, { "x": -1610, - "y": 1323 + "y": 1318 }, { "x": -1570, - "y": 1323 + "y": 1318 } ], "isCurve": true, @@ -6275,19 +6275,19 @@ "route": [ { "x": -2380, - "y": 1313.5 + "y": 1308.5 }, { "x": -2333.60009765625, - "y": 1303.9000244140625 + "y": 1298.9000244140625 }, { "x": -2310.39990234375, - "y": 1301.5 + "y": 1296.5 }, { "x": -2264, - "y": 1301.5 + "y": 1296.5 } ], "isCurve": true, @@ -6322,19 +6322,19 @@ "route": [ { "x": -2197.5, - "y": 1288.75 + "y": 1283.75 }, { "x": -2134.300048828125, - "y": 1265.550048828125 + "y": 1260.550048828125 }, { "x": -2102.699951171875, - "y": 1259.75 + "y": 1254.75 }, { "x": -2039.5, - "y": 1259.75 + "y": 1254.75 } ], "isCurve": true, @@ -6369,19 +6369,19 @@ "route": [ { "x": -1967, - "y": 1269.25 + "y": 1264.25 }, { "x": -1927, - "y": 1278.8499755859375 + "y": 1273.8499755859375 }, { "x": -1822.699951171875, - "y": 1286.6500244140625 + "y": 1281.6500244140625 }, { "x": -1759.5, - "y": 1308.25 + "y": 1303.25 } ], "isCurve": true, @@ -6416,67 +6416,67 @@ "route": [ { "x": -2380, - "y": 1354 + "y": 1349 }, { "x": -2333.60009765625, - "y": 1386.800048828125 + "y": 1381.800048828125 }, { "x": -2303.699951171875, - "y": 1395 + "y": 1390 }, { "x": -2276.25, - "y": 1395 + "y": 1390 }, { "x": -2248.800048828125, - "y": 1395 + "y": 1390 }, { "x": -2208.10009765625, - "y": 1395 + "y": 1390 }, { "x": -2174.5, - "y": 1395 + "y": 1390 }, { "x": -2140.89990234375, - "y": 1395 + "y": 1390 }, { "x": -2095.5, - "y": 1395 + "y": 1390 }, { "x": -2061, - "y": 1395 + "y": 1390 }, { "x": -2026.5, - "y": 1395 + "y": 1390 }, { "x": -1986.199951171875, - "y": 1395 + "y": 1390 }, { "x": -1960.25, - "y": 1395 + "y": 1390 }, { "x": -1934.300048828125, - "y": 1395 + "y": 1390 }, { "x": -1822.699951171875, - "y": 1385.800048828125 + "y": 1380.800048828125 }, { "x": -1759.5, - "y": 1349 + "y": 1344 } ], "isCurve": true, @@ -6511,43 +6511,43 @@ "route": [ { "x": -2197.5, - "y": 1314.25 + "y": 1309.25 }, { "x": -2134.300048828125, - "y": 1337.449951171875 + "y": 1332.449951171875 }, { "x": -2095.5, - "y": 1343.25 + "y": 1338.25 }, { "x": -2061, - "y": 1343.25 + "y": 1338.25 }, { "x": -2026.5, - "y": 1343.25 + "y": 1338.25 }, { "x": -1986.199951171875, - "y": 1343.25 + "y": 1338.25 }, { "x": -1960.25, - "y": 1343.25 + "y": 1338.25 }, { "x": -1934.300048828125, - "y": 1343.25 + "y": 1338.25 }, { "x": -1822.699951171875, - "y": 1340.6500244140625 + "y": 1335.6500244140625 }, { "x": -1759.5, - "y": 1330.25 + "y": 1325.25 } ], "isCurve": true, @@ -6582,11 +6582,11 @@ "route": [ { "x": -1306, - "y": 1288.5 + "y": 1283.5 }, { "x": -1266, - "y": 1290.5 + "y": 1285.5 } ], "animated": false, @@ -6620,11 +6620,11 @@ "route": [ { "x": -1408, - "y": 1029 + "y": 1024 }, { "x": -1408, - "y": 1069 + "y": 1064 } ], "animated": false, @@ -6658,11 +6658,11 @@ "route": [ { "x": -1408, - "y": 1135 + "y": 1130 }, { "x": -1408, - "y": 1175 + "y": 1170 } ], "animated": false, @@ -6696,11 +6696,11 @@ "route": [ { "x": -1408, - "y": 1241 + "y": 1236 }, { "x": -1408, - "y": 1281 + "y": 1276 } ], "animated": false, @@ -6734,11 +6734,11 @@ "route": [ { "x": -1408, - "y": 1347 + "y": 1342 }, { "x": -1408, - "y": 1387 + "y": 1382 } ], "animated": false, @@ -6772,11 +6772,11 @@ "route": [ { "x": -1024, - "y": 1294 + "y": 1289 }, { "x": -984, - "y": 1293 + "y": 1288 } ], "animated": false, @@ -6810,11 +6810,11 @@ "route": [ { "x": -922, - "y": 1439 + "y": 1434 }, { "x": -772, - "y": 1439 + "y": 1434 } ], "animated": false, @@ -6848,11 +6848,11 @@ "route": [ { "x": -772, - "y": 1509 + "y": 1504 }, { "x": -604, - "y": 1509 + "y": 1504 } ], "animated": false, @@ -6886,11 +6886,11 @@ "route": [ { "x": -592, - "y": 1579 + "y": 1574 }, { "x": -297, - "y": 1579 + "y": 1574 } ], "animated": false, @@ -6924,11 +6924,11 @@ "route": [ { "x": -437.5, - "y": 1175 + "y": 1170 }, { "x": -437.5, - "y": 1195 + "y": 1190 } ], "animated": false, @@ -6962,11 +6962,11 @@ "route": [ { "x": -437.5, - "y": 1261 + "y": 1256 }, { "x": -437.5, - "y": 1281 + "y": 1276 } ], "animated": false, @@ -7000,11 +7000,11 @@ "route": [ { "x": -332.5, - "y": 1287 + "y": 1282 }, { "x": -182, - "y": 1287 + "y": 1282 } ], "animated": false, @@ -7041,11 +7041,11 @@ "route": [ { "x": -220, - "y": 1217 + "y": 1212 }, { "x": -592, - "y": 1539 + "y": 1534 } ], "animated": false, @@ -7082,11 +7082,11 @@ "route": [ { "x": -1366, - "y": 1090 + "y": 1085 }, { "x": -1206, - "y": 1045 + "y": 1040 } ], "animated": false, @@ -7123,11 +7123,11 @@ "route": [ { "x": -1450, - "y": 1416 + "y": 1411 }, { "x": -2380, - "y": 1327 + "y": 1322 } ], "animated": false, @@ -7164,11 +7164,11 @@ "route": [ { "x": -1449.5, - "y": 1015 + "y": 1010 }, { "x": -1967.5, - "y": 1244 + "y": 1239 } ], "animated": false, @@ -7210,11 +7210,11 @@ }, { "x": 288.75, - "y": 737.0999755859375 + "y": 736.0999755859375 }, { "x": 288.75, - "y": 1027.5 + "y": 1022.5 } ], "isCurve": true, @@ -7680,11 +7680,11 @@ }, { "x": 2386.800048828125, - "y": 395.79998779296875 + "y": 396 }, { "x": 2387, - "y": 435 + "y": 436 } ], "isCurve": true, @@ -7766,19 +7766,19 @@ "route": [ { "x": 144, - "y": 1250 + "y": 1245 }, { "x": 184, - "y": 1250 + "y": 1245 }, { "x": 204, - "y": 1250 + "y": 1245 }, { "x": 244, - "y": 1250 + "y": 1245 } ], "isCurve": true, @@ -7813,19 +7813,19 @@ "route": [ { "x": 297, - "y": 1228 + "y": 1223 }, { "x": 337, - "y": 1195.199951171875 + "y": 1190.199951171875 }, { "x": 357.1000061035156, - "y": 1187 + "y": 1182 }, { "x": 397.5, - "y": 1187 + "y": 1182 } ], "isCurve": true, @@ -7860,19 +7860,19 @@ "route": [ { "x": 297, - "y": 1272 + "y": 1267 }, { "x": 337, - "y": 1304.800048828125 + "y": 1299.800048828125 }, { "x": 357, - "y": 1313 + "y": 1308 }, { "x": 397, - "y": 1313 + "y": 1308 } ], "isCurve": true, @@ -7907,19 +7907,19 @@ "route": [ { "x": 399, - "y": 1578 + "y": 1573 }, { "x": 359, - "y": 1578 + "y": 1573 }, { "x": 339, - "y": 1578 + "y": 1573 }, { "x": 299, - "y": 1578 + "y": 1573 } ], "isCurve": true, @@ -7954,19 +7954,19 @@ "route": [ { "x": 246, - "y": 1556 + "y": 1551 }, { "x": 206, - "y": 1523.199951171875 + "y": 1518.199951171875 }, { "x": 186, - "y": 1515 + "y": 1510 }, { "x": 146, - "y": 1515 + "y": 1510 } ], "isCurve": true, @@ -8001,19 +8001,19 @@ "route": [ { "x": 246, - "y": 1600 + "y": 1595 }, { "x": 206, - "y": 1632.800048828125 + "y": 1627.800048828125 }, { "x": 186, - "y": 1641 + "y": 1636 }, { "x": 146, - "y": 1641 + "y": 1636 } ], "isCurve": true, @@ -8048,19 +8048,19 @@ "route": [ { "x": 175.25, - "y": 2137 + "y": 2132 }, { "x": 175.25, - "y": 2097 + "y": 2092 }, { "x": 175.25, - "y": 2077 + "y": 2072 }, { "x": 175.25, - "y": 2037 + "y": 2032 } ], "isCurve": true, @@ -8095,19 +8095,19 @@ "route": [ { "x": 152.5, - "y": 1971 + "y": 1966 }, { "x": 125.30000305175781, - "y": 1931 + "y": 1926 }, { "x": 118.5, - "y": 1911 + "y": 1906 }, { "x": 118.5, - "y": 1871 + "y": 1866 } ], "isCurve": true, @@ -8142,19 +8142,19 @@ "route": [ { "x": 198, - "y": 1971 + "y": 1966 }, { "x": 225.1999969482422, - "y": 1931 + "y": 1926 }, { "x": 232, - "y": 1911 + "y": 1906 }, { "x": 232, - "y": 1871 + "y": 1866 } ], "isCurve": true, @@ -8189,19 +8189,19 @@ "route": [ { "x": 402.25, - "y": 1871 + "y": 1866 }, { "x": 402.25, - "y": 1911 + "y": 1906 }, { "x": 402.25, - "y": 1931 + "y": 1926 }, { "x": 402.25, - "y": 1971 + "y": 1966 } ], "isCurve": true, @@ -8236,19 +8236,19 @@ "route": [ { "x": 379.5, - "y": 2037 + "y": 2032 }, { "x": 352.29998779296875, - "y": 2077 + "y": 2072 }, { "x": 345.5, - "y": 2097 + "y": 2092 }, { "x": 345.5, - "y": 2137 + "y": 2132 } ], "isCurve": true, @@ -8283,19 +8283,19 @@ "route": [ { "x": 425, - "y": 2037 + "y": 2032 }, { "x": 452.20001220703125, - "y": 2077 + "y": 2072 }, { "x": 459, - "y": 2097 + "y": 2092 }, { "x": 459, - "y": 2137 + "y": 2132 } ], "isCurve": true, @@ -8333,11 +8333,11 @@ "route": [ { "x": 3770.5, - "y": 1286 + "y": 1281 }, { "x": 3841.5, - "y": 1295 + "y": 1290 } ], "animated": false, @@ -8374,11 +8374,11 @@ "route": [ { "x": 3918, - "y": 1295 + "y": 1290 }, { "x": 3988, - "y": 1286 + "y": 1281 } ], "animated": false, @@ -8415,11 +8415,11 @@ "route": [ { "x": 4059.5, - "y": 1287 + "y": 1282 }, { "x": 4130.5, - "y": 1296 + "y": 1291 } ], "animated": false, @@ -8456,11 +8456,11 @@ "route": [ { "x": 4183, - "y": 1296 + "y": 1291 }, { "x": 4253, - "y": 1287 + "y": 1282 } ], "animated": false, @@ -8502,11 +8502,11 @@ }, { "x": 1094.25, - "y": 777.0999755859375 + "y": 776.0999755859375 }, { "x": 1094.25, - "y": 1227.5 + "y": 1222.5 } ], "isCurve": true, @@ -8541,11 +8541,11 @@ "route": [ { "x": 698, - "y": 1451 + "y": 1446 }, { "x": 852, - "y": 1451 + "y": 1446 } ], "animated": false, @@ -8579,11 +8579,11 @@ "route": [ { "x": 864, - "y": 1521 + "y": 1516 }, { "x": 998, - "y": 1521 + "y": 1516 } ], "animated": false, @@ -8617,11 +8617,11 @@ "route": [ { "x": 1018, - "y": 1591 + "y": 1586 }, { "x": 1147, - "y": 1591 + "y": 1586 } ], "animated": false, @@ -8655,11 +8655,11 @@ "route": [ { "x": 1175, - "y": 1661 + "y": 1656 }, { "x": 1296, - "y": 1661 + "y": 1656 } ], "animated": false, @@ -8693,11 +8693,11 @@ "route": [ { "x": 1014, - "y": 1731 + "y": 1726 }, { "x": 1151, - "y": 1731 + "y": 1726 } ], "animated": false, @@ -8731,11 +8731,11 @@ "route": [ { "x": 1332, - "y": 1801 + "y": 1796 }, { "x": 1450.5, - "y": 1801 + "y": 1796 } ], "animated": false, @@ -8769,11 +8769,11 @@ "route": [ { "x": 704, - "y": 1871 + "y": 1866 }, { "x": 1002, - "y": 1871 + "y": 1866 } ], "animated": false, @@ -8807,11 +8807,11 @@ "route": [ { "x": 1450.5, - "y": 1941 + "y": 1936 }, { "x": 698, - "y": 1941 + "y": 1936 } ], "animated": false, @@ -8845,11 +8845,11 @@ "route": [ { "x": 698, - "y": 2011 + "y": 2006 }, { "x": 852, - "y": 2011 + "y": 2006 } ], "animated": false, @@ -8975,8 +8975,8 @@ "y": 926 }, { - "x": 2029.5, - "y": 1373 + "x": 2028.5, + "y": 1363 } ], "animated": false, @@ -9010,11 +9010,11 @@ "route": [ { "x": 1771, - "y": 1597 + "y": 1587 }, { "x": 1919, - "y": 1597 + "y": 1587 } ], "animated": false, @@ -9048,11 +9048,11 @@ "route": [ { "x": 1771, - "y": 1687 + "y": 1677 }, { "x": 1919, - "y": 1687 + "y": 1677 } ], "animated": false, @@ -9086,11 +9086,11 @@ "route": [ { "x": 1771, - "y": 1777 + "y": 1767 }, { "x": 2069, - "y": 1777 + "y": 1767 } ], "animated": false, @@ -9124,11 +9124,11 @@ "route": [ { "x": 1771, - "y": 1867 + "y": 1857 }, { "x": 2069, - "y": 1867 + "y": 1857 } ], "animated": false, @@ -9162,11 +9162,11 @@ "route": [ { "x": 1771, - "y": 1957 + "y": 1947 }, { "x": 2222, - "y": 1957 + "y": 1947 } ], "animated": false, @@ -9200,11 +9200,11 @@ "route": [ { "x": 1925, - "y": 2037 + "y": 2027 }, { "x": 2218, - "y": 2037 + "y": 2027 } ], "animated": false, @@ -9238,11 +9238,11 @@ "route": [ { "x": 2238, - "y": 2117 + "y": 2107 }, { "x": 2432, - "y": 2117 + "y": 2107 } ], "animated": false, @@ -9276,11 +9276,11 @@ "route": [ { "x": 1765, - "y": 2207 + "y": 2197 }, { "x": 2222, - "y": 2207 + "y": 2197 } ], "animated": false, @@ -9313,20 +9313,20 @@ "labelPercentage": 0, "route": [ { - "x": 2511, - "y": 1173 + "x": 2516, + "y": 1166 }, { - "x": 2183.39990234375, - "y": 1253 + "x": 2184.39990234375, + "y": 1243.5999755859375 }, { "x": 2101.5, - "y": 1333 + "y": 1323 }, { "x": 2101.5, - "y": 1373 + "y": 1363 } ], "isCurve": true, @@ -9361,19 +9361,19 @@ "route": [ { "x": 2101.5, - "y": 2289 + "y": 2279 }, { "x": 2101.5, - "y": 2329 + "y": 2319 }, { "x": 2184.89990234375, - "y": 2403.60009765625 + "y": 2393.60009765625 }, { "x": 2518.5, - "y": 2462 + "y": 2452 } ], "isCurve": true, @@ -9407,20 +9407,20 @@ "labelPercentage": 0, "route": [ { - "x": 2638, - "y": 1174 + "x": 2633, + "y": 1167 }, { - "x": 2965.199951171875, - "y": 1253.199951171875 + "x": 2964.199951171875, + "y": 1243.800048828125 }, { "x": 3047, - "y": 1276.800048828125 + "y": 1266.800048828125 }, { "x": 3047, - "y": 1292 + "y": 1282 } ], "isCurve": true, @@ -9455,19 +9455,19 @@ "route": [ { "x": 3047, - "y": 2339 + "y": 2329 }, { "x": 3047, - "y": 2379 + "y": 2369 }, { "x": 2963.64990234375, - "y": 2403.633056640625 + "y": 2393.633056640625 }, { "x": 2630.25, - "y": 2462.16796875 + "y": 2452.16796875 } ], "isCurve": true, @@ -9502,11 +9502,11 @@ "route": [ { "x": 3426, - "y": 1650 + "y": 1640 }, { "x": 3105, - "y": 1650 + "y": 1640 } ], "animated": false, @@ -9540,11 +9540,11 @@ "route": [ { "x": 3085, - "y": 1720 + "y": 1710 }, { "x": 2959, - "y": 1720 + "y": 1710 } ], "animated": false, @@ -9578,11 +9578,11 @@ "route": [ { "x": 2931, - "y": 1790 + "y": 1780 }, { "x": 2810, - "y": 1790 + "y": 1780 } ], "animated": false, @@ -9616,11 +9616,11 @@ "route": [ { "x": 3089, - "y": 1860 + "y": 1850 }, { "x": 2955, - "y": 1860 + "y": 1850 } ], "animated": false, @@ -9654,11 +9654,11 @@ "route": [ { "x": 2810, - "y": 1930 + "y": 1920 }, { "x": 3231.5, - "y": 1930 + "y": 1920 } ], "animated": false, @@ -9692,11 +9692,11 @@ "route": [ { "x": 2648, - "y": 2000 + "y": 1990 }, { "x": 3089, - "y": 2000 + "y": 1990 } ], "animated": false, @@ -9730,11 +9730,11 @@ "route": [ { "x": 3231.5, - "y": 2070 + "y": 2060 }, { "x": 2642, - "y": 2070 + "y": 2060 } ], "animated": false, @@ -9768,11 +9768,11 @@ "route": [ { "x": 2642, - "y": 2140 + "y": 2130 }, { "x": 3426, - "y": 2140 + "y": 2130 } ], "animated": false, @@ -9809,11 +9809,11 @@ "route": [ { "x": 1703, - "y": 1913 + "y": 1904 }, { "x": 486, - "y": 2164 + "y": 2159 } ], "animated": false, @@ -9850,10 +9850,10 @@ "route": [ { "x": 299, - "y": 1545.5 + "y": 1540.5 }, { - "x": 1119, + "x": 1118, "y": 546 } ], @@ -9932,11 +9932,11 @@ "route": [ { "x": 451, - "y": 1577 + "y": 1572 }, { "x": 998, - "y": 1556 + "y": 1551 } ], "animated": false, @@ -9973,11 +9973,11 @@ "route": [ { "x": 451, - "y": 1572 + "y": 1567 }, { "x": 852, - "y": 1487 + "y": 1482 } ], "animated": false, @@ -10014,11 +10014,11 @@ "route": [ { "x": 429, - "y": 1993 + "y": 1988 }, { "x": 692, - "y": 1879 + "y": 1874 } ], "animated": false, @@ -10095,12 +10095,12 @@ "labelPercentage": 0, "route": [ { - "x": 2640, - "y": 1164 + "x": 2635, + "y": 1159 }, { "x": 3714, - "y": 1279 + "y": 1274 } ], "animated": false, @@ -10137,11 +10137,11 @@ "route": [ { "x": -1366, - "y": 1440 + "y": 1435 }, { "x": 149, - "y": 2158 + "y": 2153 } ], "animated": false, @@ -10177,12 +10177,12 @@ "labelPercentage": 0, "route": [ { - "x": -253, - "y": 2758 + "x": -254, + "y": 2748 }, { "x": -2380, - "y": 1351 + "y": 1346 } ], "animated": false, @@ -10216,11 +10216,11 @@ "route": [ { "x": -922, - "y": 1369 + "y": 1364 }, { "x": -922, - "y": 1649 + "y": 1644 } ], "animated": false, @@ -10254,11 +10254,11 @@ "route": [ { "x": -772, - "y": 1369 + "y": 1364 }, { "x": -772, - "y": 1649 + "y": 1644 } ], "animated": false, @@ -10292,11 +10292,11 @@ "route": [ { "x": -598, - "y": 1369 + "y": 1364 }, { "x": -598, - "y": 1649 + "y": 1644 } ], "animated": false, @@ -10330,11 +10330,11 @@ "route": [ { "x": -297, - "y": 1369 + "y": 1364 }, { "x": -297, - "y": 1649 + "y": 1644 } ], "animated": false, @@ -10368,11 +10368,11 @@ "route": [ { "x": -332.5, - "y": 1217 + "y": 1212 }, { "x": -332.5, - "y": 1357 + "y": 1352 } ], "animated": false, @@ -10406,11 +10406,11 @@ "route": [ { "x": -182, - "y": 1217 + "y": 1212 }, { "x": -182, - "y": 1357 + "y": 1352 } ], "animated": false, @@ -10444,11 +10444,11 @@ "route": [ { "x": 698, - "y": 1381 + "y": 1376 }, { "x": 698, - "y": 2081 + "y": 2076 } ], "animated": false, @@ -10482,11 +10482,11 @@ "route": [ { "x": 858, - "y": 1381 + "y": 1376 }, { "x": 858, - "y": 2081 + "y": 2076 } ], "animated": false, @@ -10520,11 +10520,11 @@ "route": [ { "x": 1008, - "y": 1381 + "y": 1376 }, { "x": 1008, - "y": 2081 + "y": 2076 } ], "animated": false, @@ -10558,11 +10558,11 @@ "route": [ { "x": 1161, - "y": 1381 + "y": 1376 }, { "x": 1161, - "y": 2081 + "y": 2076 } ], "animated": false, @@ -10596,11 +10596,11 @@ "route": [ { "x": 1314, - "y": 1381 + "y": 1376 }, { "x": 1314, - "y": 2081 + "y": 2076 } ], "animated": false, @@ -10634,11 +10634,11 @@ "route": [ { "x": 1472.5, - "y": 1381 + "y": 1376 }, { "x": 1472.5, - "y": 2081 + "y": 2076 } ], "animated": false, @@ -10672,11 +10672,11 @@ "route": [ { "x": 1765, - "y": 1517 + "y": 1507 }, { "x": 1765, - "y": 2277 + "y": 2267 } ], "animated": false, @@ -10710,11 +10710,11 @@ "route": [ { "x": 1925, - "y": 1517 + "y": 1507 }, { "x": 1925, - "y": 2277 + "y": 2267 } ], "animated": false, @@ -10748,11 +10748,11 @@ "route": [ { "x": 2075, - "y": 1517 + "y": 1507 }, { "x": 2075, - "y": 2277 + "y": 2267 } ], "animated": false, @@ -10786,11 +10786,11 @@ "route": [ { "x": 2228, - "y": 1517 + "y": 1507 }, { "x": 2228, - "y": 2277 + "y": 2267 } ], "animated": false, @@ -10824,11 +10824,11 @@ "route": [ { "x": 2438, - "y": 1517 + "y": 1507 }, { "x": 2438, - "y": 2277 + "y": 2267 } ], "animated": false, @@ -10862,11 +10862,11 @@ "route": [ { "x": 2642, - "y": 1580 + "y": 1570 }, { "x": 2642, - "y": 2210 + "y": 2200 } ], "animated": false, @@ -10900,11 +10900,11 @@ "route": [ { "x": 2792, - "y": 1580 + "y": 1570 }, { "x": 2792, - "y": 2210 + "y": 2200 } ], "animated": false, @@ -10938,11 +10938,11 @@ "route": [ { "x": 2945, - "y": 1580 + "y": 1570 }, { "x": 2945, - "y": 2210 + "y": 2200 } ], "animated": false, @@ -10976,11 +10976,11 @@ "route": [ { "x": 3095, - "y": 1580 + "y": 1570 }, { "x": 3095, - "y": 2210 + "y": 2200 } ], "animated": false, @@ -11014,11 +11014,11 @@ "route": [ { "x": 3253.5, - "y": 1580 + "y": 1570 }, { "x": 3253.5, - "y": 2210 + "y": 2200 } ], "animated": false, @@ -11052,11 +11052,11 @@ "route": [ { "x": 3432, - "y": 1580 + "y": 1570 }, { "x": 3432, - "y": 2210 + "y": 2200 } ], "animated": false, diff --git a/e2etests/testdata/stable/nesting_power/dagre/sketch.exp.svg b/e2etests/testdata/stable/nesting_power/dagre/sketch.exp.svg index e14ed0b14b..81cc3e5361 100644 --- a/e2etests/testdata/stable/nesting_power/dagre/sketch.exp.svg +++ b/e2etests/testdata/stable/nesting_power/dagre/sketch.exp.svg @@ -1,23 +1,23 @@ - + .d2-1772244264 .fill-N1{fill:#0A0F25;} + .d2-1772244264 .fill-N2{fill:#676C7E;} + .d2-1772244264 .fill-N3{fill:#9499AB;} + .d2-1772244264 .fill-N4{fill:#CFD2DD;} + .d2-1772244264 .fill-N5{fill:#DEE1EB;} + .d2-1772244264 .fill-N6{fill:#EEF1F8;} + .d2-1772244264 .fill-N7{fill:#FFFFFF;} + .d2-1772244264 .fill-B1{fill:#0D32B2;} + .d2-1772244264 .fill-B2{fill:#0D32B2;} + .d2-1772244264 .fill-B3{fill:#E3E9FD;} + .d2-1772244264 .fill-B4{fill:#E3E9FD;} + .d2-1772244264 .fill-B5{fill:#EDF0FD;} + .d2-1772244264 .fill-B6{fill:#F7F8FE;} + .d2-1772244264 .fill-AA2{fill:#4A6FF3;} + .d2-1772244264 .fill-AA4{fill:#EDF0FD;} + .d2-1772244264 .fill-AA5{fill:#F7F8FE;} + .d2-1772244264 .fill-AB4{fill:#EDF0FD;} + .d2-1772244264 .fill-AB5{fill:#F7F8FE;} + .d2-1772244264 .stroke-N1{stroke:#0A0F25;} + .d2-1772244264 .stroke-N2{stroke:#676C7E;} + .d2-1772244264 .stroke-N3{stroke:#9499AB;} + .d2-1772244264 .stroke-N4{stroke:#CFD2DD;} + .d2-1772244264 .stroke-N5{stroke:#DEE1EB;} + .d2-1772244264 .stroke-N6{stroke:#EEF1F8;} + .d2-1772244264 .stroke-N7{stroke:#FFFFFF;} + .d2-1772244264 .stroke-B1{stroke:#0D32B2;} + .d2-1772244264 .stroke-B2{stroke:#0D32B2;} + .d2-1772244264 .stroke-B3{stroke:#E3E9FD;} + .d2-1772244264 .stroke-B4{stroke:#E3E9FD;} + .d2-1772244264 .stroke-B5{stroke:#EDF0FD;} + .d2-1772244264 .stroke-B6{stroke:#F7F8FE;} + .d2-1772244264 .stroke-AA2{stroke:#4A6FF3;} + .d2-1772244264 .stroke-AA4{stroke:#EDF0FD;} + .d2-1772244264 .stroke-AA5{stroke:#F7F8FE;} + .d2-1772244264 .stroke-AB4{stroke:#EDF0FD;} + .d2-1772244264 .stroke-AB5{stroke:#F7F8FE;} + .d2-1772244264 .background-color-N1{background-color:#0A0F25;} + .d2-1772244264 .background-color-N2{background-color:#676C7E;} + .d2-1772244264 .background-color-N3{background-color:#9499AB;} + .d2-1772244264 .background-color-N4{background-color:#CFD2DD;} + .d2-1772244264 .background-color-N5{background-color:#DEE1EB;} + .d2-1772244264 .background-color-N6{background-color:#EEF1F8;} + .d2-1772244264 .background-color-N7{background-color:#FFFFFF;} + .d2-1772244264 .background-color-B1{background-color:#0D32B2;} + .d2-1772244264 .background-color-B2{background-color:#0D32B2;} + .d2-1772244264 .background-color-B3{background-color:#E3E9FD;} + .d2-1772244264 .background-color-B4{background-color:#E3E9FD;} + .d2-1772244264 .background-color-B5{background-color:#EDF0FD;} + .d2-1772244264 .background-color-B6{background-color:#F7F8FE;} + .d2-1772244264 .background-color-AA2{background-color:#4A6FF3;} + .d2-1772244264 .background-color-AA4{background-color:#EDF0FD;} + .d2-1772244264 .background-color-AA5{background-color:#F7F8FE;} + .d2-1772244264 .background-color-AB4{background-color:#EDF0FD;} + .d2-1772244264 .background-color-AB5{background-color:#F7F8FE;} + .d2-1772244264 .color-N1{color:#0A0F25;} + .d2-1772244264 .color-N2{color:#676C7E;} + .d2-1772244264 .color-N3{color:#9499AB;} + .d2-1772244264 .color-N4{color:#CFD2DD;} + .d2-1772244264 .color-N5{color:#DEE1EB;} + .d2-1772244264 .color-N6{color:#EEF1F8;} + .d2-1772244264 .color-N7{color:#FFFFFF;} + .d2-1772244264 .color-B1{color:#0D32B2;} + .d2-1772244264 .color-B2{color:#0D32B2;} + .d2-1772244264 .color-B3{color:#E3E9FD;} + .d2-1772244264 .color-B4{color:#E3E9FD;} + .d2-1772244264 .color-B5{color:#EDF0FD;} + .d2-1772244264 .color-B6{color:#F7F8FE;} + .d2-1772244264 .color-AA2{color:#4A6FF3;} + .d2-1772244264 .color-AA4{color:#EDF0FD;} + .d2-1772244264 .color-AA5{color:#F7F8FE;} + .d2-1772244264 .color-AB4{color:#EDF0FD;} + .d2-1772244264 .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}]]> @@ -111,20 +111,20 @@ -Left Constant NearcenterdirectionsRight Constant NearseqmoreBottom Left Constant Neardefaultlayouthererectanglesquarepageparallelogramdocumentcylinderqueuepackagestepcalloutstored_datapersondiamondovalcirclehexagoncloudrightleftisconstantandalsogridscoreritemResponseitemessayRubricconceptitemOutcomestylishcontaineradagreelktalathisisgrid12341234updownnearax +Left Constant NearcenterdirectionsRight Constant NearseqmoreBottom Left Constant Neardefaultlayouthererectanglesquarepageparallelogramdocumentcylinderqueuepackagestepcalloutstored_datapersondiamondovalcirclehexagoncloudrightleftisconstantandalsogridscoreritemResponseitemessayRubricconceptitemOutcomestylishcontaineradagreelktalathisisgrid12341234updownnearax -ya_sequencea_shapesequencefinallybrow 1row 2row 3row 4row 5withasequence diagramyou canchild of is12341234scoreritemResponseitemessayRubricconceptsequencefrom one constant nearhaveanothergridhere andgrandchildscorerconceptessayRubricitemitemOutcomeitemResponse123continuenesting ororruns thisruns thisruns thisA straight edge across straight edge across nested typesdefault layoutdefault layoutdefault layout in styleto inside sequence diagramto inside sequence diagramto inside sequence diagramto constant nearfrom within constant nearto another getItem() itemgetRubric()rubricapplyTo(essayResp)match(essayResponse)score - - +ya_sequencea_shapesequencefinallybrow 1row 2row 3row 4row 5withasequence diagramyou canchild of is12341234scoreritemResponseitemessayRubricconceptsequencefrom one constant nearhaveanothergridhere andgrandchildscorerconceptessayRubricitemitemOutcomeitemResponse123continuenesting ororruns thisruns thisruns thisA straight edge across straight edge across nested typesdefault layoutdefault layoutdefault layout in styleto inside sequence diagramto inside sequence diagramto inside sequence diagramto constant nearfrom within constant nearto another getItem() itemgetRubric()rubricapplyTo(essayResp)match(essayResponse)score + + - - - + + + - - - - + + + + @@ -142,111 +142,111 @@ - - - - - - - - - - - - - + + + + + + + + + + + + + - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + - - - - - - - - - - - - - + + + + + + + + + + + + + \ No newline at end of file diff --git a/e2etests/testdata/stable/nesting_power/elk/board.exp.json b/e2etests/testdata/stable/nesting_power/elk/board.exp.json index 2f3eb3fded..36e8b569e4 100644 --- a/e2etests/testdata/stable/nesting_power/elk/board.exp.json +++ b/e2etests/testdata/stable/nesting_power/elk/board.exp.json @@ -8,7 +8,7 @@ "type": "rectangle", "pos": { "x": -2800, - "y": 762 + "y": 757 }, "width": 2792, "height": 978, @@ -49,7 +49,7 @@ "type": "rectangle", "pos": { "x": -2750, - "y": 1141 + "y": 1136 }, "width": 658, "height": 251, @@ -90,7 +90,7 @@ "type": "rectangle", "pos": { "x": -1820, - "y": 1171 + "y": 1166 }, "width": 90, "height": 160, @@ -131,7 +131,7 @@ "type": "rectangle", "pos": { "x": -1660, - "y": 812 + "y": 807 }, "width": 1602, "height": 878, @@ -172,7 +172,7 @@ "type": "rectangle", "pos": { "x": -2700, - "y": 1192 + "y": 1187 }, "width": 86, "height": 80, @@ -213,7 +213,7 @@ "type": "rectangle", "pos": { "x": -2448, - "y": 1232 + "y": 1227 }, "width": 67, "height": 80, @@ -254,7 +254,7 @@ "type": "rectangle", "pos": { "x": -2215, - "y": 1276 + "y": 1271 }, "width": 73, "height": 66, @@ -295,7 +295,7 @@ "type": "rectangle", "pos": { "x": -1600, - "y": 872 + "y": 867 }, "width": 204, "height": 758, @@ -336,7 +336,7 @@ "type": "rectangle", "pos": { "x": -1356, - "y": 872 + "y": 867 }, "width": 322, "height": 758, @@ -377,7 +377,7 @@ "type": "rectangle", "pos": { "x": -1540, - "y": 932 + "y": 927 }, "width": 84, "height": 66, @@ -418,7 +418,7 @@ "type": "rectangle", "pos": { "x": -1540, - "y": 1038 + "y": 1033 }, "width": 84, "height": 66, @@ -459,7 +459,7 @@ "type": "rectangle", "pos": { "x": -1540, - "y": 1144 + "y": 1139 }, "width": 84, "height": 66, @@ -500,7 +500,7 @@ "type": "rectangle", "pos": { "x": -1540, - "y": 1250 + "y": 1245 }, "width": 84, "height": 66, @@ -541,7 +541,7 @@ "type": "rectangle", "pos": { "x": -1540, - "y": 1356 + "y": 1351 }, "width": 84, "height": 66, @@ -582,7 +582,7 @@ "type": "sequence_diagram", "pos": { "x": -994, - "y": 872 + "y": 867 }, "width": 876, "height": 758, @@ -623,7 +623,7 @@ "type": "rectangle", "pos": { "x": -982, - "y": 1272 + "y": 1267 }, "width": 100, "height": 66, @@ -664,7 +664,7 @@ "type": "rectangle", "pos": { "x": -832, - "y": 1272 + "y": 1267 }, "width": 100, "height": 66, @@ -705,7 +705,7 @@ "type": "rectangle", "pos": { "x": -692, - "y": 1272 + "y": 1267 }, "width": 168, "height": 66, @@ -746,7 +746,7 @@ "type": "rectangle", "pos": { "x": -614, - "y": 1468 + "y": 1463 }, "width": 12, "height": 90, @@ -786,7 +786,7 @@ "type": "rectangle", "pos": { "x": -484, - "y": 950 + "y": 945 }, "width": 354, "height": 388, @@ -827,7 +827,7 @@ "type": "rectangle", "pos": { "x": -484, - "y": 981 + "y": 976 }, "width": 77, "height": 66, @@ -868,7 +868,7 @@ "type": "rectangle", "pos": { "x": -407, - "y": 981 + "y": 976 }, "width": 277, "height": 66, @@ -909,7 +909,7 @@ "type": "rectangle", "pos": { "x": -484, - "y": 1047 + "y": 1042 }, "width": 77, "height": 291, @@ -950,7 +950,7 @@ "type": "rectangle", "pos": { "x": -474, - "y": 1078 + "y": 1073 }, "width": 53, "height": 66, @@ -991,7 +991,7 @@ "type": "rectangle", "pos": { "x": -474, - "y": 1164 + "y": 1159 }, "width": 53, "height": 66, @@ -1032,7 +1032,7 @@ "type": "rectangle", "pos": { "x": -474, - "y": 1250 + "y": 1245 }, "width": 53, "height": 66, @@ -1073,7 +1073,7 @@ "type": "sequence_diagram", "pos": { "x": -407, - "y": 1047 + "y": 1042 }, "width": 277, "height": 291, @@ -1114,7 +1114,7 @@ "type": "rectangle", "pos": { "x": -395, - "y": 1120 + "y": 1115 }, "width": 105, "height": 66, @@ -1155,7 +1155,7 @@ "type": "rectangle", "pos": { "x": -242, - "y": 1120 + "y": 1115 }, "width": 100, "height": 66, @@ -1196,7 +1196,7 @@ "type": "rectangle", "pos": { "x": -1306, - "y": 922 + "y": 917 }, "width": 222, "height": 166, @@ -1237,7 +1237,7 @@ "type": "rectangle", "pos": { "x": -1256, - "y": 972 + "y": 967 }, "width": 122, "height": 66, @@ -1933,11 +1933,11 @@ "id": "center.circle", "type": "oval", "pos": { - "x": 1265, + "x": 1266, "y": 418 }, - "width": 103, - "height": 103, + "width": 101, + "height": 101, "opacity": 1, "strokeDash": 0, "strokeWidth": 2, @@ -2918,7 +2918,7 @@ "type": "rectangle", "pos": { "x": 3634, - "y": 1108 + "y": 1103 }, "width": 813, "height": 286, @@ -2959,7 +2959,7 @@ "type": "rectangle", "pos": { "x": 3694, - "y": 1168 + "y": 1163 }, "width": 57, "height": 166, @@ -3000,7 +3000,7 @@ "type": "rectangle", "pos": { "x": 3791, - "y": 1168 + "y": 1163 }, "width": 177, "height": 166, @@ -3041,7 +3041,7 @@ "type": "rectangle", "pos": { "x": 3841, - "y": 1218 + "y": 1213 }, "width": 77, "height": 66, @@ -3082,7 +3082,7 @@ "type": "rectangle", "pos": { "x": 4008, - "y": 1168 + "y": 1163 }, "width": 72, "height": 166, @@ -3123,7 +3123,7 @@ "type": "rectangle", "pos": { "x": 4120, - "y": 1168 + "y": 1163 }, "width": 153, "height": 166, @@ -3164,7 +3164,7 @@ "type": "rectangle", "pos": { "x": 4170, - "y": 1218 + "y": 1213 }, "width": 53, "height": 66, @@ -3205,7 +3205,7 @@ "type": "rectangle", "pos": { "x": 4313, - "y": 1168 + "y": 1163 }, "width": 74, "height": 166, @@ -4216,7 +4216,7 @@ "y": 757 }, "width": 2071, - "height": 1734, + "height": 1724, "opacity": 1, "strokeDash": 0, "strokeWidth": 2, @@ -4380,7 +4380,7 @@ "y": 1058 }, "width": 1951, - "height": 1373, + "height": 1363, "opacity": 1, "strokeDash": 0, "strokeWidth": 2, @@ -4418,7 +4418,7 @@ "type": "sequence_diagram", "pos": { "x": 1653, - "y": 1319 + "y": 1309 }, "width": 797, "height": 916, @@ -4458,11 +4458,11 @@ "id": "more.container.a_shape", "type": "oval", "pos": { - "x": 2453, + "x": 2458, "y": 1108 }, - "width": 131, - "height": 131, + "width": 121, + "height": 121, "opacity": 1, "strokeDash": 0, "strokeWidth": 2, @@ -4500,7 +4500,7 @@ "type": "rectangle", "pos": { "x": 1665, - "y": 1397 + "y": 1387 }, "width": 100, "height": 66, @@ -4541,7 +4541,7 @@ "type": "rectangle", "pos": { "x": 1709, - "y": 1533 + "y": 1523 }, "width": 12, "height": 380, @@ -4581,7 +4581,7 @@ "type": "rectangle", "pos": { "x": 1805, - "y": 1397 + "y": 1387 }, "width": 140, "height": 66, @@ -4622,7 +4622,7 @@ "type": "rectangle", "pos": { "x": 1869, - "y": 1533 + "y": 1523 }, "width": 12, "height": 110, @@ -4662,7 +4662,7 @@ "type": "rectangle", "pos": { "x": 1975, - "y": 1397 + "y": 1387 }, "width": 100, "height": 66, @@ -4703,7 +4703,7 @@ "type": "rectangle", "pos": { "x": 2019, - "y": 1713 + "y": 1703 }, "width": 12, "height": 110, @@ -4743,7 +4743,7 @@ "type": "rectangle", "pos": { "x": 2115, - "y": 1397 + "y": 1387 }, "width": 126, "height": 66, @@ -4784,7 +4784,7 @@ "type": "rectangle", "pos": { "x": 2172, - "y": 1893 + "y": 1883 }, "width": 12, "height": 270, @@ -4824,7 +4824,7 @@ "type": "rectangle", "pos": { "x": 2168, - "y": 1973 + "y": 1963 }, "width": 20, "height": 100, @@ -4864,7 +4864,7 @@ "type": "rectangle", "pos": { "x": 2338, - "y": 1397 + "y": 1387 }, "width": 100, "height": 66, @@ -4905,7 +4905,7 @@ "type": "rectangle", "pos": { "x": 2382, - "y": 2053 + "y": 2043 }, "width": 12, "height": 30, @@ -4945,7 +4945,7 @@ "type": "rectangle", "pos": { "x": 2463, - "y": 2315 + "y": 2305 }, "width": 112, "height": 66, @@ -4986,7 +4986,7 @@ "type": "queue", "pos": { "x": 2470, - "y": 1336 + "y": 1326 }, "width": 1034, "height": 881, @@ -5027,7 +5027,7 @@ "type": "sequence_diagram", "pos": { "x": 2520, - "y": 1386 + "y": 1376 }, "width": 934, "height": 781, @@ -5068,7 +5068,7 @@ "type": "rectangle", "pos": { "x": 2532, - "y": 1459 + "y": 1449 }, "width": 100, "height": 66, @@ -5109,7 +5109,7 @@ "type": "rectangle", "pos": { "x": 2682, - "y": 1459 + "y": 1449 }, "width": 100, "height": 66, @@ -5150,7 +5150,7 @@ "type": "rectangle", "pos": { "x": 2822, - "y": 1459 + "y": 1449 }, "width": 126, "height": 66, @@ -5191,7 +5191,7 @@ "type": "rectangle", "pos": { "x": 2985, - "y": 1459 + "y": 1449 }, "width": 100, "height": 66, @@ -5232,7 +5232,7 @@ "type": "rectangle", "pos": { "x": 3125, - "y": 1459 + "y": 1449 }, "width": 137, "height": 66, @@ -5273,7 +5273,7 @@ "type": "rectangle", "pos": { "x": 3302, - "y": 1459 + "y": 1449 }, "width": 140, "height": 66, @@ -5314,7 +5314,7 @@ "type": "rectangle", "pos": { "x": 3366, - "y": 1585 + "y": 1575 }, "width": 12, "height": 30, @@ -5354,7 +5354,7 @@ "type": "rectangle", "pos": { "x": 3029, - "y": 1575 + "y": 1565 }, "width": 12, "height": 380, @@ -5394,7 +5394,7 @@ "type": "rectangle", "pos": { "x": 3025, - "y": 1585 + "y": 1575 }, "width": 20, "height": 90, @@ -5434,7 +5434,7 @@ "type": "rectangle", "pos": { "x": 2879, - "y": 1635 + "y": 1625 }, "width": 12, "height": 190, @@ -5474,7 +5474,7 @@ "type": "rectangle", "pos": { "x": 2875, - "y": 1645 + "y": 1635 }, "width": 20, "height": 170, @@ -5514,7 +5514,7 @@ "type": "rectangle", "pos": { "x": 2871, - "y": 1655 + "y": 1645 }, "width": 28, "height": 90, @@ -5554,7 +5554,7 @@ "type": "rectangle", "pos": { "x": 2726, - "y": 1695 + "y": 1685 }, "width": 12, "height": 220, @@ -5594,7 +5594,7 @@ "type": "rectangle", "pos": { "x": 2722, - "y": 1705 + "y": 1695 }, "width": 20, "height": 200, @@ -5634,7 +5634,7 @@ "type": "rectangle", "pos": { "x": 2718, - "y": 1715 + "y": 1705 }, "width": 28, "height": 180, @@ -5674,7 +5674,7 @@ "type": "rectangle", "pos": { "x": 2714, - "y": 1725 + "y": 1715 }, "width": 36, "height": 160, @@ -5714,7 +5714,7 @@ "type": "rectangle", "pos": { "x": 3187, - "y": 1825 + "y": 1815 }, "width": 12, "height": 240, @@ -5754,7 +5754,7 @@ "type": "rectangle", "pos": { "x": 3183, - "y": 1835 + "y": 1825 }, "width": 20, "height": 220, @@ -5794,7 +5794,7 @@ "type": "rectangle", "pos": { "x": 3179, - "y": 1845 + "y": 1835 }, "width": 28, "height": 200, @@ -5834,7 +5834,7 @@ "type": "rectangle", "pos": { "x": 3175, - "y": 1855 + "y": 1845 }, "width": 36, "height": 180, @@ -5874,7 +5874,7 @@ "type": "rectangle", "pos": { "x": 3171, - "y": 1865 + "y": 1855 }, "width": 44, "height": 160, @@ -5914,7 +5914,7 @@ "type": "rectangle", "pos": { "x": 2576, - "y": 1935 + "y": 1925 }, "width": 12, "height": 30, @@ -5954,7 +5954,7 @@ "type": "rectangle", "pos": { "x": 3366, - "y": 2075 + "y": 2065 }, "width": 12, "height": 30, @@ -5994,7 +5994,7 @@ "type": "rectangle", "pos": { "x": -519, - "y": 2511 + "y": 2501 }, "width": 511, "height": 366, @@ -6035,7 +6035,7 @@ "type": "rectangle", "pos": { "x": -469, - "y": 2561 + "y": 2551 }, "width": 411, "height": 266, @@ -6076,7 +6076,7 @@ "type": "rectangle", "pos": { "x": -419, - "y": 2611 + "y": 2601 }, "width": 311, "height": 166, @@ -6117,7 +6117,7 @@ "type": "rectangle", "pos": { "x": -369, - "y": 2661 + "y": 2651 }, "width": 211, "height": 66, @@ -6181,11 +6181,11 @@ "route": [ { "x": -2092, - "y": 1320.5 + "y": 1315.5 }, { "x": -1820, - "y": 1320.5 + "y": 1315.5 } ], "animated": false, @@ -6219,11 +6219,11 @@ "route": [ { "x": -1730, - "y": 1251.5 + "y": 1246.5 }, { "x": -1660, - "y": 1251.5 + "y": 1246.5 } ], "animated": false, @@ -6257,11 +6257,11 @@ "route": [ { "x": -2614, - "y": 1245.3330078125 + "y": 1240.3330078125 }, { "x": -2448, - "y": 1245.3330078125 + "y": 1240.3330078125 } ], "animated": false, @@ -6295,19 +6295,19 @@ "route": [ { "x": -2381, - "y": 1285.8330078125 + "y": 1280.8330078125 }, { "x": -2341, - "y": 1285.8330078125 + "y": 1280.8330078125 }, { "x": -2341, - "y": 1309.5 + "y": 1304.5 }, { "x": -2215, - "y": 1309.5 + "y": 1304.5 } ], "animated": false, @@ -6341,19 +6341,19 @@ "route": [ { "x": -2142, - "y": 1309.5 + "y": 1304.5 }, { "x": -2047, - "y": 1309.5 + "y": 1304.5 }, { "x": -2047, - "y": 1268.5 + "y": 1263.5 }, { "x": -1820, - "y": 1268.5 + "y": 1263.5 } ], "animated": false, @@ -6387,19 +6387,19 @@ "route": [ { "x": -2614, - "y": 1218.666015625 + "y": 1213.666015625 }, { "x": -2574, - "y": 1218.666015625 + "y": 1213.666015625 }, { "x": -2574, - "y": 1191.5 + "y": 1186.5 }, { "x": -1820, - "y": 1191.5 + "y": 1186.5 } ], "animated": false, @@ -6433,19 +6433,19 @@ "route": [ { "x": -2381, - "y": 1259.166015625 + "y": 1254.166015625 }, { "x": -2341, - "y": 1259.166015625 + "y": 1254.166015625 }, { "x": -2341, - "y": 1235 + "y": 1230 }, { "x": -1820, - "y": 1235 + "y": 1230 } ], "animated": false, @@ -6479,11 +6479,11 @@ "route": [ { "x": -1396, - "y": 1251.5 + "y": 1246.5 }, { "x": -1356, - "y": 1251.5 + "y": 1246.5 } ], "animated": false, @@ -6517,11 +6517,11 @@ "route": [ { "x": -1498, - "y": 998.5 + "y": 993.5 }, { "x": -1498, - "y": 1038.5 + "y": 1033.5 } ], "animated": false, @@ -6555,11 +6555,11 @@ "route": [ { "x": -1498, - "y": 1104.5 + "y": 1099.5 }, { "x": -1498, - "y": 1144.5 + "y": 1139.5 } ], "animated": false, @@ -6593,11 +6593,11 @@ "route": [ { "x": -1498, - "y": 1210.5 + "y": 1205.5 }, { "x": -1498, - "y": 1250.5 + "y": 1245.5 } ], "animated": false, @@ -6631,11 +6631,11 @@ "route": [ { "x": -1498, - "y": 1316.5 + "y": 1311.5 }, { "x": -1498, - "y": 1356.5 + "y": 1351.5 } ], "animated": false, @@ -6669,11 +6669,11 @@ "route": [ { "x": -1034, - "y": 1251.5 + "y": 1246.5 }, { "x": -994, - "y": 1251.5 + "y": 1246.5 } ], "animated": false, @@ -6707,11 +6707,11 @@ "route": [ { "x": -932, - "y": 1408.5 + "y": 1403.5 }, { "x": -782, - "y": 1408.5 + "y": 1403.5 } ], "animated": false, @@ -6745,11 +6745,11 @@ "route": [ { "x": -782, - "y": 1478.5 + "y": 1473.5 }, { "x": -614, - "y": 1478.5 + "y": 1473.5 } ], "animated": false, @@ -6783,11 +6783,11 @@ "route": [ { "x": -602, - "y": 1548.5 + "y": 1543.5 }, { "x": -307, - "y": 1548.5 + "y": 1543.5 } ], "animated": false, @@ -6821,11 +6821,11 @@ "route": [ { "x": -447.5, - "y": 1144.5 + "y": 1139.5 }, { "x": -447.5, - "y": 1164.5 + "y": 1159.5 } ], "animated": false, @@ -6859,11 +6859,11 @@ "route": [ { "x": -447.5, - "y": 1230.5 + "y": 1225.5 }, { "x": -447.5, - "y": 1250.5 + "y": 1245.5 } ], "animated": false, @@ -6897,11 +6897,11 @@ "route": [ { "x": -342.5, - "y": 1256.5 + "y": 1251.5 }, { "x": -192, - "y": 1256.5 + "y": 1251.5 } ], "animated": false, @@ -6938,11 +6938,11 @@ "route": [ { "x": -230, - "y": 1186.5 + "y": 1181.5 }, { "x": -602, - "y": 1508.5 + "y": 1503.5 } ], "animated": false, @@ -6979,11 +6979,11 @@ "route": [ { "x": -1456, - "y": 1062.5 + "y": 1057.5 }, { "x": -1256, - "y": 1018.5 + "y": 1013.5 } ], "animated": false, @@ -7020,11 +7020,11 @@ "route": [ { "x": -1540, - "y": 1384 + "y": 1379 }, { "x": -2614, - "y": 1238 + "y": 1233 } ], "animated": false, @@ -7061,11 +7061,11 @@ "route": [ { "x": -1539.5, - "y": 986.5 + "y": 981.5 }, { "x": -2142.5, - "y": 1291.5 + "y": 1286.5 } ], "animated": false, @@ -8086,11 +8086,11 @@ "route": [ { "x": 3750.5, - "y": 1251.5 + "y": 1246.5 }, { "x": 3841.5, - "y": 1251.5 + "y": 1246.5 } ], "animated": false, @@ -8127,11 +8127,11 @@ "route": [ { "x": 3918, - "y": 1251.5 + "y": 1246.5 }, { "x": 4008, - "y": 1251.5 + "y": 1246.5 } ], "animated": false, @@ -8168,11 +8168,11 @@ "route": [ { "x": 4079.5, - "y": 1251.5 + "y": 1246.5 }, { "x": 4170.5, - "y": 1251.5 + "y": 1246.5 } ], "animated": false, @@ -8209,11 +8209,11 @@ "route": [ { "x": 4223, - "y": 1251.5 + "y": 1246.5 }, { "x": 4313, - "y": 1251.5 + "y": 1246.5 } ], "animated": false, @@ -8718,8 +8718,8 @@ "y": 958 }, { - "x": 1960.5, - "y": 1319 + "x": 1959.5, + "y": 1309 } ], "animated": false, @@ -8753,11 +8753,11 @@ "route": [ { "x": 1721, - "y": 1543 + "y": 1533 }, { "x": 1869, - "y": 1543 + "y": 1533 } ], "animated": false, @@ -8791,11 +8791,11 @@ "route": [ { "x": 1721, - "y": 1633 + "y": 1623 }, { "x": 1869, - "y": 1633 + "y": 1623 } ], "animated": false, @@ -8829,11 +8829,11 @@ "route": [ { "x": 1721, - "y": 1723 + "y": 1713 }, { "x": 2019, - "y": 1723 + "y": 1713 } ], "animated": false, @@ -8867,11 +8867,11 @@ "route": [ { "x": 1721, - "y": 1813 + "y": 1803 }, { "x": 2019, - "y": 1813 + "y": 1803 } ], "animated": false, @@ -8905,11 +8905,11 @@ "route": [ { "x": 1721, - "y": 1903 + "y": 1893 }, { "x": 2172, - "y": 1903 + "y": 1893 } ], "animated": false, @@ -8943,11 +8943,11 @@ "route": [ { "x": 1875, - "y": 1983 + "y": 1973 }, { "x": 2168, - "y": 1983 + "y": 1973 } ], "animated": false, @@ -8981,11 +8981,11 @@ "route": [ { "x": 2188, - "y": 2063 + "y": 2053 }, { "x": 2382, - "y": 2063 + "y": 2053 } ], "animated": false, @@ -9019,11 +9019,11 @@ "route": [ { "x": 1715, - "y": 2153 + "y": 2143 }, { "x": 2172, - "y": 2153 + "y": 2143 } ], "animated": false, @@ -9056,20 +9056,20 @@ "labelPercentage": 0, "route": [ { - "x": 2497, - "y": 1235 + "x": 2499, + "y": 1226 }, { - "x": 2497.416015625, - "y": 1279 + "x": 2499.0830078125, + "y": 1269 }, { "x": 2051.5, - "y": 1279 + "y": 1269 }, { "x": 2051.5, - "y": 1319 + "y": 1309 } ], "animated": false, @@ -9103,19 +9103,19 @@ "route": [ { "x": 2051.5, - "y": 2235 + "y": 2225 }, { "x": 2051.5, - "y": 2275 + "y": 2265 }, { "x": 2500.5830078125, - "y": 2275 + "y": 2265 }, { "x": 2500.5830078125, - "y": 2315 + "y": 2305 } ], "animated": false, @@ -9148,12 +9148,12 @@ "labelPercentage": 0, "route": [ { - "x": 2541, - "y": 1235 + "x": 2539, + "y": 1226 }, { - "x": 2541, - "y": 1337 + "x": 2539, + "y": 1327 } ], "animated": false, @@ -9187,11 +9187,11 @@ "route": [ { "x": 2538, - "y": 2218 + "y": 2208 }, { "x": 2537.916015625, - "y": 2315 + "y": 2305 } ], "animated": false, @@ -9225,11 +9225,11 @@ "route": [ { "x": 3366, - "y": 1595.5 + "y": 1585.5 }, { "x": 3045, - "y": 1595.5 + "y": 1585.5 } ], "animated": false, @@ -9263,11 +9263,11 @@ "route": [ { "x": 3025, - "y": 1665.5 + "y": 1655.5 }, { "x": 2899, - "y": 1665.5 + "y": 1655.5 } ], "animated": false, @@ -9301,11 +9301,11 @@ "route": [ { "x": 2871, - "y": 1735.5 + "y": 1725.5 }, { "x": 2750, - "y": 1735.5 + "y": 1725.5 } ], "animated": false, @@ -9339,11 +9339,11 @@ "route": [ { "x": 3029, - "y": 1805.5 + "y": 1795.5 }, { "x": 2895, - "y": 1805.5 + "y": 1795.5 } ], "animated": false, @@ -9377,11 +9377,11 @@ "route": [ { "x": 2750, - "y": 1875.5 + "y": 1865.5 }, { "x": 3171.5, - "y": 1875.5 + "y": 1865.5 } ], "animated": false, @@ -9415,11 +9415,11 @@ "route": [ { "x": 2588, - "y": 1945.5 + "y": 1935.5 }, { "x": 3029, - "y": 1945.5 + "y": 1935.5 } ], "animated": false, @@ -9453,11 +9453,11 @@ "route": [ { "x": 3171.5, - "y": 2015.5 + "y": 2005.5 }, { "x": 2582, - "y": 2015.5 + "y": 2005.5 } ], "animated": false, @@ -9491,11 +9491,11 @@ "route": [ { "x": 2582, - "y": 2085.5 + "y": 2075.5 }, { "x": 3366, - "y": 2085.5 + "y": 2075.5 } ], "animated": false, @@ -9532,7 +9532,7 @@ "route": [ { "x": 1653, - "y": 1774 + "y": 1767 }, { "x": 476, @@ -9818,12 +9818,12 @@ "labelPercentage": 0, "route": [ { - "x": 2585, - "y": 1178 + "x": 2580, + "y": 1173 }, { "x": 3694, - "y": 1250 + "y": 1245 } ], "animated": false, @@ -9860,7 +9860,7 @@ "route": [ { "x": -1455.75, - "y": 1399 + "y": 1394 }, { "x": 159.25, @@ -9901,11 +9901,11 @@ "route": [ { "x": -318, - "y": 2661 + "y": 2651 }, { "x": -2614, - "y": 1258 + "y": 1253 } ], "animated": false, @@ -9939,11 +9939,11 @@ "route": [ { "x": -932, - "y": 1338.5 + "y": 1333.5 }, { "x": -932, - "y": 1618.5 + "y": 1613.5 } ], "animated": false, @@ -9977,11 +9977,11 @@ "route": [ { "x": -782, - "y": 1338.5 + "y": 1333.5 }, { "x": -782, - "y": 1618.5 + "y": 1613.5 } ], "animated": false, @@ -10015,11 +10015,11 @@ "route": [ { "x": -608, - "y": 1338.5 + "y": 1333.5 }, { "x": -608, - "y": 1618.5 + "y": 1613.5 } ], "animated": false, @@ -10053,11 +10053,11 @@ "route": [ { "x": -307, - "y": 1338.5 + "y": 1333.5 }, { "x": -307, - "y": 1618.5 + "y": 1613.5 } ], "animated": false, @@ -10091,11 +10091,11 @@ "route": [ { "x": -342.5, - "y": 1186.5 + "y": 1181.5 }, { "x": -342.5, - "y": 1326.5 + "y": 1321.5 } ], "animated": false, @@ -10129,11 +10129,11 @@ "route": [ { "x": -192, - "y": 1186.5 + "y": 1181.5 }, { "x": -192, - "y": 1326.5 + "y": 1321.5 } ], "animated": false, @@ -10395,11 +10395,11 @@ "route": [ { "x": 1715, - "y": 1463 + "y": 1453 }, { "x": 1715, - "y": 2223 + "y": 2213 } ], "animated": false, @@ -10433,11 +10433,11 @@ "route": [ { "x": 1875, - "y": 1463 + "y": 1453 }, { "x": 1875, - "y": 2223 + "y": 2213 } ], "animated": false, @@ -10471,11 +10471,11 @@ "route": [ { "x": 2025, - "y": 1463 + "y": 1453 }, { "x": 2025, - "y": 2223 + "y": 2213 } ], "animated": false, @@ -10509,11 +10509,11 @@ "route": [ { "x": 2178, - "y": 1463 + "y": 1453 }, { "x": 2178, - "y": 2223 + "y": 2213 } ], "animated": false, @@ -10547,11 +10547,11 @@ "route": [ { "x": 2388, - "y": 1463 + "y": 1453 }, { "x": 2388, - "y": 2223 + "y": 2213 } ], "animated": false, @@ -10585,11 +10585,11 @@ "route": [ { "x": 2582, - "y": 1525.5 + "y": 1515.5 }, { "x": 2582, - "y": 2155.5 + "y": 2145.5 } ], "animated": false, @@ -10623,11 +10623,11 @@ "route": [ { "x": 2732, - "y": 1525.5 + "y": 1515.5 }, { "x": 2732, - "y": 2155.5 + "y": 2145.5 } ], "animated": false, @@ -10661,11 +10661,11 @@ "route": [ { "x": 2885, - "y": 1525.5 + "y": 1515.5 }, { "x": 2885, - "y": 2155.5 + "y": 2145.5 } ], "animated": false, @@ -10699,11 +10699,11 @@ "route": [ { "x": 3035, - "y": 1525.5 + "y": 1515.5 }, { "x": 3035, - "y": 2155.5 + "y": 2145.5 } ], "animated": false, @@ -10737,11 +10737,11 @@ "route": [ { "x": 3193.5, - "y": 1525.5 + "y": 1515.5 }, { "x": 3193.5, - "y": 2155.5 + "y": 2145.5 } ], "animated": false, @@ -10775,11 +10775,11 @@ "route": [ { "x": 3372, - "y": 1525.5 + "y": 1515.5 }, { "x": 3372, - "y": 2155.5 + "y": 2145.5 } ], "animated": false, diff --git a/e2etests/testdata/stable/nesting_power/elk/sketch.exp.svg b/e2etests/testdata/stable/nesting_power/elk/sketch.exp.svg index 0e848cb40f..4224450d3f 100644 --- a/e2etests/testdata/stable/nesting_power/elk/sketch.exp.svg +++ b/e2etests/testdata/stable/nesting_power/elk/sketch.exp.svg @@ -1,23 +1,23 @@ - + .d2-292006359 .fill-N1{fill:#0A0F25;} + .d2-292006359 .fill-N2{fill:#676C7E;} + .d2-292006359 .fill-N3{fill:#9499AB;} + .d2-292006359 .fill-N4{fill:#CFD2DD;} + .d2-292006359 .fill-N5{fill:#DEE1EB;} + .d2-292006359 .fill-N6{fill:#EEF1F8;} + .d2-292006359 .fill-N7{fill:#FFFFFF;} + .d2-292006359 .fill-B1{fill:#0D32B2;} + .d2-292006359 .fill-B2{fill:#0D32B2;} + .d2-292006359 .fill-B3{fill:#E3E9FD;} + .d2-292006359 .fill-B4{fill:#E3E9FD;} + .d2-292006359 .fill-B5{fill:#EDF0FD;} + .d2-292006359 .fill-B6{fill:#F7F8FE;} + .d2-292006359 .fill-AA2{fill:#4A6FF3;} + .d2-292006359 .fill-AA4{fill:#EDF0FD;} + .d2-292006359 .fill-AA5{fill:#F7F8FE;} + .d2-292006359 .fill-AB4{fill:#EDF0FD;} + .d2-292006359 .fill-AB5{fill:#F7F8FE;} + .d2-292006359 .stroke-N1{stroke:#0A0F25;} + .d2-292006359 .stroke-N2{stroke:#676C7E;} + .d2-292006359 .stroke-N3{stroke:#9499AB;} + .d2-292006359 .stroke-N4{stroke:#CFD2DD;} + .d2-292006359 .stroke-N5{stroke:#DEE1EB;} + .d2-292006359 .stroke-N6{stroke:#EEF1F8;} + .d2-292006359 .stroke-N7{stroke:#FFFFFF;} + .d2-292006359 .stroke-B1{stroke:#0D32B2;} + .d2-292006359 .stroke-B2{stroke:#0D32B2;} + .d2-292006359 .stroke-B3{stroke:#E3E9FD;} + .d2-292006359 .stroke-B4{stroke:#E3E9FD;} + .d2-292006359 .stroke-B5{stroke:#EDF0FD;} + .d2-292006359 .stroke-B6{stroke:#F7F8FE;} + .d2-292006359 .stroke-AA2{stroke:#4A6FF3;} + .d2-292006359 .stroke-AA4{stroke:#EDF0FD;} + .d2-292006359 .stroke-AA5{stroke:#F7F8FE;} + .d2-292006359 .stroke-AB4{stroke:#EDF0FD;} + .d2-292006359 .stroke-AB5{stroke:#F7F8FE;} + .d2-292006359 .background-color-N1{background-color:#0A0F25;} + .d2-292006359 .background-color-N2{background-color:#676C7E;} + .d2-292006359 .background-color-N3{background-color:#9499AB;} + .d2-292006359 .background-color-N4{background-color:#CFD2DD;} + .d2-292006359 .background-color-N5{background-color:#DEE1EB;} + .d2-292006359 .background-color-N6{background-color:#EEF1F8;} + .d2-292006359 .background-color-N7{background-color:#FFFFFF;} + .d2-292006359 .background-color-B1{background-color:#0D32B2;} + .d2-292006359 .background-color-B2{background-color:#0D32B2;} + .d2-292006359 .background-color-B3{background-color:#E3E9FD;} + .d2-292006359 .background-color-B4{background-color:#E3E9FD;} + .d2-292006359 .background-color-B5{background-color:#EDF0FD;} + .d2-292006359 .background-color-B6{background-color:#F7F8FE;} + .d2-292006359 .background-color-AA2{background-color:#4A6FF3;} + .d2-292006359 .background-color-AA4{background-color:#EDF0FD;} + .d2-292006359 .background-color-AA5{background-color:#F7F8FE;} + .d2-292006359 .background-color-AB4{background-color:#EDF0FD;} + .d2-292006359 .background-color-AB5{background-color:#F7F8FE;} + .d2-292006359 .color-N1{color:#0A0F25;} + .d2-292006359 .color-N2{color:#676C7E;} + .d2-292006359 .color-N3{color:#9499AB;} + .d2-292006359 .color-N4{color:#CFD2DD;} + .d2-292006359 .color-N5{color:#DEE1EB;} + .d2-292006359 .color-N6{color:#EEF1F8;} + .d2-292006359 .color-N7{color:#FFFFFF;} + .d2-292006359 .color-B1{color:#0D32B2;} + .d2-292006359 .color-B2{color:#0D32B2;} + .d2-292006359 .color-B3{color:#E3E9FD;} + .d2-292006359 .color-B4{color:#E3E9FD;} + .d2-292006359 .color-B5{color:#EDF0FD;} + .d2-292006359 .color-B6{color:#F7F8FE;} + .d2-292006359 .color-AA2{color:#4A6FF3;} + .d2-292006359 .color-AA4{color:#EDF0FD;} + .d2-292006359 .color-AA5{color:#F7F8FE;} + .d2-292006359 .color-AB4{color:#EDF0FD;} + .d2-292006359 .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}]]> @@ -111,20 +111,20 @@ -Left Constant NearcenterdirectionsRight Constant NearseqmoreBottom Left Constant Neardefaultlayouthererectanglesquarepageparallelogramdocumentcylinderqueuepackagestepcalloutstored_datapersondiamondovalcirclehexagoncloudrightleftisconstantandalsogridscoreritemResponseitemessayRubricconceptitemOutcomestylishcontaineradagreelktalathisisgrid12341234updownnearax +Left Constant NearcenterdirectionsRight Constant NearseqmoreBottom Left Constant Neardefaultlayouthererectanglesquarepageparallelogramdocumentcylinderqueuepackagestepcalloutstored_datapersondiamondovalcirclehexagoncloudrightleftisconstantandalsogridscoreritemResponseitemessayRubricconceptitemOutcomestylishcontaineradagreelktalathisisgrid12341234updownnearax -ya_sequencea_shapesequencefinallybrow 1row 2row 3row 4row 5withasequence diagramyou canchild of is12341234scoreritemResponseitemessayRubricconceptsequencefrom one constant nearhaveanothergridhere andgrandchildscorerconceptessayRubricitemitemOutcomeitemResponse123continuenesting ororruns thisruns thisruns thisA straight edge across straight edge across nested typesdefault layoutdefault layoutdefault layout in styleto inside sequence diagramto inside sequence diagramto inside sequence diagramto constant nearfrom within constant nearto another getItem() itemgetRubric()rubricapplyTo(essayResp)match(essayResponse)score - - +ya_sequencea_shapesequencefinallybrow 1row 2row 3row 4row 5withasequence diagramyou canchild of is12341234scoreritemResponseitemessayRubricconceptsequencefrom one constant nearhaveanothergridhere andgrandchildscorerconceptessayRubricitemitemOutcomeitemResponse123continuenesting ororruns thisruns thisruns thisA straight edge across straight edge across nested typesdefault layoutdefault layoutdefault layout in styleto inside sequence diagramto inside sequence diagramto inside sequence diagramto constant nearfrom within constant nearto another getItem() itemgetRubric()rubricapplyTo(essayResp)match(essayResponse)score + + - + - - - - + + + + @@ -139,16 +139,16 @@ - + - - - - - + + + + + @@ -157,13 +157,13 @@ - - - - - - - + + + + + + + @@ -174,25 +174,25 @@ - - + + - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + @@ -201,37 +201,37 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + @@ -239,14 +239,14 @@ - - - - - - - - - - + + + + + + + + + + \ No newline at end of file diff --git a/e2etests/testdata/stable/sequence_diagram_all_shapes/dagre/board.exp.json b/e2etests/testdata/stable/sequence_diagram_all_shapes/dagre/board.exp.json index 8931f7f4d2..9ccda43539 100644 --- a/e2etests/testdata/stable/sequence_diagram_all_shapes/dagre/board.exp.json +++ b/e2etests/testdata/stable/sequence_diagram_all_shapes/dagre/board.exp.json @@ -48,11 +48,11 @@ "id": "b", "type": "oval", "pos": { - "x": 278, - "y": 133 + "x": 279, + "y": 135 }, - "width": 103, - "height": 103, + "width": 101, + "height": 101, "opacity": 1, "strokeDash": 0, "strokeWidth": 2, @@ -89,7 +89,7 @@ "id": "c", "type": "class", "pos": { - "x": 421, + "x": 420, "y": 52 }, "width": 302, @@ -144,7 +144,7 @@ "id": "d", "type": "cloud", "pos": { - "x": 763, + "x": 762, "y": 152 }, "width": 140, @@ -186,7 +186,7 @@ "id": "e", "type": "code", "pos": { - "x": 943, + "x": 942, "y": 158 }, "width": 199, @@ -227,7 +227,7 @@ "id": "f", "type": "cylinder", "pos": { - "x": 1164, + "x": 1163, "y": 118 }, "width": 100, @@ -268,7 +268,7 @@ "id": "g", "type": "diamond", "pos": { - "x": 1314, + "x": 1313, "y": 144 }, "width": 100, @@ -309,7 +309,7 @@ "id": "h", "type": "document", "pos": { - "x": 1464, + "x": 1463, "y": 160 }, "width": 100, @@ -350,7 +350,7 @@ "id": "i", "type": "hexagon", "pos": { - "x": 1604, + "x": 1603, "y": 167 }, "width": 146, @@ -391,7 +391,7 @@ "id": "j", "type": "image", "pos": { - "x": 1790, + "x": 1789, "y": 87 }, "width": 128, @@ -444,7 +444,7 @@ "id": "k", "type": "oval", "pos": { - "x": 1956, + "x": 1955, "y": 163 }, "width": 100, @@ -485,7 +485,7 @@ "id": "l", "type": "package", "pos": { - "x": 2106, + "x": 2105, "y": 163 }, "width": 100, @@ -526,7 +526,7 @@ "id": "m", "type": "page", "pos": { - "x": 2250, + "x": 2249, "y": 149 }, "width": 113, @@ -567,7 +567,7 @@ "id": "n", "type": "parallelogram", "pos": { - "x": 2403, + "x": 2402, "y": 154 }, "width": 169, @@ -608,7 +608,7 @@ "id": "o", "type": "person", "pos": { - "x": 2592, + "x": 2591, "y": 64 }, "width": 100, @@ -649,7 +649,7 @@ "id": "p", "type": "queue", "pos": { - "x": 2732, + "x": 2731, "y": 170 }, "width": 151, @@ -690,7 +690,7 @@ "id": "q", "type": "rectangle", "pos": { - "x": 2923, + "x": 2922, "y": 133 }, "width": 103, @@ -731,7 +731,7 @@ "id": "r", "type": "step", "pos": { - "x": 3066, + "x": 3065, "y": 135 }, "width": 187, @@ -772,7 +772,7 @@ "id": "s", "type": "stored_data", "pos": { - "x": 3291, + "x": 3290, "y": 170 }, "width": 100, @@ -813,7 +813,7 @@ "id": "t", "type": "sql_table", "pos": { - "x": 3431, + "x": 3430, "y": 128 }, "width": 161, @@ -1003,7 +1003,7 @@ "y": 406 }, { - "x": 572, + "x": 571, "y": 406 } ], @@ -1037,11 +1037,11 @@ "labelPercentage": 0, "route": [ { - "x": 572, + "x": 571, "y": 486 }, { - "x": 833, + "x": 832, "y": 486 } ], @@ -1075,11 +1075,11 @@ "labelPercentage": 0, "route": [ { - "x": 833, + "x": 832, "y": 556 }, { - "x": 1042.5, + "x": 1041.5, "y": 556 } ], @@ -1113,11 +1113,11 @@ "labelPercentage": 0, "route": [ { - "x": 1042.5, + "x": 1041.5, "y": 626 }, { - "x": 1214, + "x": 1213, "y": 626 } ], @@ -1151,11 +1151,11 @@ "labelPercentage": 0, "route": [ { - "x": 1214, + "x": 1213, "y": 696 }, { - "x": 1364, + "x": 1363, "y": 696 } ], @@ -1189,11 +1189,11 @@ "labelPercentage": 0, "route": [ { - "x": 1364, + "x": 1363, "y": 766 }, { - "x": 1514, + "x": 1513, "y": 766 } ], @@ -1227,11 +1227,11 @@ "labelPercentage": 0, "route": [ { - "x": 1514, + "x": 1513, "y": 836 }, { - "x": 1677, + "x": 1676, "y": 836 } ], @@ -1265,11 +1265,11 @@ "labelPercentage": 0, "route": [ { - "x": 1677, + "x": 1676, "y": 906 }, { - "x": 1854, + "x": 1853, "y": 906 } ], @@ -1303,11 +1303,11 @@ "labelPercentage": 0, "route": [ { - "x": 1854, + "x": 1853, "y": 976 }, { - "x": 2006, + "x": 2005, "y": 976 } ], @@ -1341,11 +1341,11 @@ "labelPercentage": 0, "route": [ { - "x": 2006, + "x": 2005, "y": 1046 }, { - "x": 2156, + "x": 2155, "y": 1046 } ], @@ -1379,11 +1379,11 @@ "labelPercentage": 0, "route": [ { - "x": 2156, + "x": 2155, "y": 1116 }, { - "x": 2306.5, + "x": 2305.5, "y": 1116 } ], @@ -1417,11 +1417,11 @@ "labelPercentage": 0, "route": [ { - "x": 2306.5, + "x": 2305.5, "y": 1186 }, { - "x": 2487.5, + "x": 2486.5, "y": 1186 } ], @@ -1455,11 +1455,11 @@ "labelPercentage": 0, "route": [ { - "x": 2487.5, + "x": 2486.5, "y": 1256 }, { - "x": 2642, + "x": 2641, "y": 1256 } ], @@ -1493,11 +1493,11 @@ "labelPercentage": 0, "route": [ { - "x": 2642, + "x": 2641, "y": 1326 }, { - "x": 2807.5, + "x": 2806.5, "y": 1326 } ], @@ -1531,11 +1531,11 @@ "labelPercentage": 0, "route": [ { - "x": 2807.5, + "x": 2806.5, "y": 1396 }, { - "x": 2974.5, + "x": 2973.5, "y": 1396 } ], @@ -1569,11 +1569,11 @@ "labelPercentage": 0, "route": [ { - "x": 2974.5, + "x": 2973.5, "y": 1466 }, { - "x": 3159.5, + "x": 3158.5, "y": 1466 } ], @@ -1607,11 +1607,11 @@ "labelPercentage": 0, "route": [ { - "x": 3159.5, + "x": 3158.5, "y": 1536 }, { - "x": 3341, + "x": 3340, "y": 1536 } ], @@ -1645,11 +1645,11 @@ "labelPercentage": 0, "route": [ { - "x": 3341, + "x": 3340, "y": 1606 }, { - "x": 3511.5, + "x": 3510.5, "y": 1606 } ], @@ -1759,11 +1759,11 @@ "labelPercentage": 0, "route": [ { - "x": 572, + "x": 571, "y": 236 }, { - "x": 572, + "x": 571, "y": 1676 } ], @@ -1797,11 +1797,11 @@ "labelPercentage": 0, "route": [ { - "x": 833, + "x": 832, "y": 236 }, { - "x": 833, + "x": 832, "y": 1676 } ], @@ -1835,11 +1835,11 @@ "labelPercentage": 0, "route": [ { - "x": 1042.5, + "x": 1041.5, "y": 236 }, { - "x": 1042.5, + "x": 1041.5, "y": 1676 } ], @@ -1873,11 +1873,11 @@ "labelPercentage": 0, "route": [ { - "x": 1214, + "x": 1213, "y": 236 }, { - "x": 1214, + "x": 1213, "y": 1676 } ], @@ -1911,11 +1911,11 @@ "labelPercentage": 0, "route": [ { - "x": 1364, + "x": 1363, "y": 236 }, { - "x": 1364, + "x": 1363, "y": 1676 } ], @@ -1949,11 +1949,11 @@ "labelPercentage": 0, "route": [ { - "x": 1514, + "x": 1513, "y": 236 }, { - "x": 1514, + "x": 1513, "y": 1676 } ], @@ -1987,11 +1987,11 @@ "labelPercentage": 0, "route": [ { - "x": 1677, + "x": 1676, "y": 236 }, { - "x": 1677, + "x": 1676, "y": 1676 } ], @@ -2025,11 +2025,11 @@ "labelPercentage": 0, "route": [ { - "x": 1854, + "x": 1853, "y": 241 }, { - "x": 1854, + "x": 1853, "y": 1676 } ], @@ -2063,11 +2063,11 @@ "labelPercentage": 0, "route": [ { - "x": 2006, + "x": 2005, "y": 236 }, { - "x": 2006, + "x": 2005, "y": 1676 } ], @@ -2101,11 +2101,11 @@ "labelPercentage": 0, "route": [ { - "x": 2156, + "x": 2155, "y": 236 }, { - "x": 2156, + "x": 2155, "y": 1676 } ], @@ -2139,11 +2139,11 @@ "labelPercentage": 0, "route": [ { - "x": 2306.5, + "x": 2305.5, "y": 236 }, { - "x": 2306.5, + "x": 2305.5, "y": 1676 } ], @@ -2177,11 +2177,11 @@ "labelPercentage": 0, "route": [ { - "x": 2487.5, + "x": 2486.5, "y": 236 }, { - "x": 2487.5, + "x": 2486.5, "y": 1676 } ], @@ -2215,11 +2215,11 @@ "labelPercentage": 0, "route": [ { - "x": 2642, + "x": 2641, "y": 241 }, { - "x": 2642, + "x": 2641, "y": 1676 } ], @@ -2253,11 +2253,11 @@ "labelPercentage": 0, "route": [ { - "x": 2807.5, + "x": 2806.5, "y": 236 }, { - "x": 2807.5, + "x": 2806.5, "y": 1676 } ], @@ -2291,11 +2291,11 @@ "labelPercentage": 0, "route": [ { - "x": 2974.5, + "x": 2973.5, "y": 236 }, { - "x": 2974.5, + "x": 2973.5, "y": 1676 } ], @@ -2329,11 +2329,11 @@ "labelPercentage": 0, "route": [ { - "x": 3159.5, + "x": 3158.5, "y": 236 }, { - "x": 3159.5, + "x": 3158.5, "y": 1676 } ], @@ -2367,11 +2367,11 @@ "labelPercentage": 0, "route": [ { - "x": 3341, + "x": 3340, "y": 236 }, { - "x": 3341, + "x": 3340, "y": 1676 } ], @@ -2405,11 +2405,11 @@ "labelPercentage": 0, "route": [ { - "x": 3511.5, + "x": 3510.5, "y": 236 }, { - "x": 3511.5, + "x": 3510.5, "y": 1676 } ], diff --git a/e2etests/testdata/stable/sequence_diagram_all_shapes/dagre/sketch.exp.svg b/e2etests/testdata/stable/sequence_diagram_all_shapes/dagre/sketch.exp.svg index 7bd240b00a..e5ce9823b2 100644 --- a/e2etests/testdata/stable/sequence_diagram_all_shapes/dagre/sketch.exp.svg +++ b/e2etests/testdata/stable/sequence_diagram_all_shapes/dagre/sketch.exp.svg @@ -1,30 +1,30 @@ -a labelblabelsa class+public() boolvoid-private() intvoidcloudyyyy:= 5 + .d2-3784166051 .fill-N1{fill:#0A0F25;} + .d2-3784166051 .fill-N2{fill:#676C7E;} + .d2-3784166051 .fill-N3{fill:#9499AB;} + .d2-3784166051 .fill-N4{fill:#CFD2DD;} + .d2-3784166051 .fill-N5{fill:#DEE1EB;} + .d2-3784166051 .fill-N6{fill:#EEF1F8;} + .d2-3784166051 .fill-N7{fill:#FFFFFF;} + .d2-3784166051 .fill-B1{fill:#0D32B2;} + .d2-3784166051 .fill-B2{fill:#0D32B2;} + .d2-3784166051 .fill-B3{fill:#E3E9FD;} + .d2-3784166051 .fill-B4{fill:#E3E9FD;} + .d2-3784166051 .fill-B5{fill:#EDF0FD;} + .d2-3784166051 .fill-B6{fill:#F7F8FE;} + .d2-3784166051 .fill-AA2{fill:#4A6FF3;} + .d2-3784166051 .fill-AA4{fill:#EDF0FD;} + .d2-3784166051 .fill-AA5{fill:#F7F8FE;} + .d2-3784166051 .fill-AB4{fill:#EDF0FD;} + .d2-3784166051 .fill-AB5{fill:#F7F8FE;} + .d2-3784166051 .stroke-N1{stroke:#0A0F25;} + .d2-3784166051 .stroke-N2{stroke:#676C7E;} + .d2-3784166051 .stroke-N3{stroke:#9499AB;} + .d2-3784166051 .stroke-N4{stroke:#CFD2DD;} + .d2-3784166051 .stroke-N5{stroke:#DEE1EB;} + .d2-3784166051 .stroke-N6{stroke:#EEF1F8;} + .d2-3784166051 .stroke-N7{stroke:#FFFFFF;} + .d2-3784166051 .stroke-B1{stroke:#0D32B2;} + .d2-3784166051 .stroke-B2{stroke:#0D32B2;} + .d2-3784166051 .stroke-B3{stroke:#E3E9FD;} + .d2-3784166051 .stroke-B4{stroke:#E3E9FD;} + .d2-3784166051 .stroke-B5{stroke:#EDF0FD;} + .d2-3784166051 .stroke-B6{stroke:#F7F8FE;} + .d2-3784166051 .stroke-AA2{stroke:#4A6FF3;} + .d2-3784166051 .stroke-AA4{stroke:#EDF0FD;} + .d2-3784166051 .stroke-AA5{stroke:#F7F8FE;} + .d2-3784166051 .stroke-AB4{stroke:#EDF0FD;} + .d2-3784166051 .stroke-AB5{stroke:#F7F8FE;} + .d2-3784166051 .background-color-N1{background-color:#0A0F25;} + .d2-3784166051 .background-color-N2{background-color:#676C7E;} + .d2-3784166051 .background-color-N3{background-color:#9499AB;} + .d2-3784166051 .background-color-N4{background-color:#CFD2DD;} + .d2-3784166051 .background-color-N5{background-color:#DEE1EB;} + .d2-3784166051 .background-color-N6{background-color:#EEF1F8;} + .d2-3784166051 .background-color-N7{background-color:#FFFFFF;} + .d2-3784166051 .background-color-B1{background-color:#0D32B2;} + .d2-3784166051 .background-color-B2{background-color:#0D32B2;} + .d2-3784166051 .background-color-B3{background-color:#E3E9FD;} + .d2-3784166051 .background-color-B4{background-color:#E3E9FD;} + .d2-3784166051 .background-color-B5{background-color:#EDF0FD;} + .d2-3784166051 .background-color-B6{background-color:#F7F8FE;} + .d2-3784166051 .background-color-AA2{background-color:#4A6FF3;} + .d2-3784166051 .background-color-AA4{background-color:#EDF0FD;} + .d2-3784166051 .background-color-AA5{background-color:#F7F8FE;} + .d2-3784166051 .background-color-AB4{background-color:#EDF0FD;} + .d2-3784166051 .background-color-AB5{background-color:#F7F8FE;} + .d2-3784166051 .color-N1{color:#0A0F25;} + .d2-3784166051 .color-N2{color:#676C7E;} + .d2-3784166051 .color-N3{color:#9499AB;} + .d2-3784166051 .color-N4{color:#CFD2DD;} + .d2-3784166051 .color-N5{color:#DEE1EB;} + .d2-3784166051 .color-N6{color:#EEF1F8;} + .d2-3784166051 .color-N7{color:#FFFFFF;} + .d2-3784166051 .color-B1{color:#0D32B2;} + .d2-3784166051 .color-B2{color:#0D32B2;} + .d2-3784166051 .color-B3{color:#E3E9FD;} + .d2-3784166051 .color-B4{color:#E3E9FD;} + .d2-3784166051 .color-B5{color:#EDF0FD;} + .d2-3784166051 .color-B6{color:#F7F8FE;} + .d2-3784166051 .color-AA2{color:#4A6FF3;} + .d2-3784166051 .color-AA4{color:#EDF0FD;} + .d2-3784166051 .color-AA5{color:#F7F8FE;} + .d2-3784166051 .color-AB4{color:#EDF0FD;} + .d2-3784166051 .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 labelblabelsa class+public() boolvoid-private() intvoidcloudyyyy:= 5 := a + 7 -fmt.Printf("%d", b)a := 5 +fmt.Printf("%d", b)a := 5 b := a + 7 -fmt.Printf("%d", b)cyldiadocssix cornersa random iconoverpackdocs pagetoohard o saysinglepersona queuea squarea step at a timedatausersidintnamevarchar result := callThisFunction(obj, 5) midthis sideother side - +fmt.Printf("%d", b)cyldiadocssix cornersa random iconoverpackdocs pagetoohard o saysinglepersona queuea squarea step at a timedatausersidintnamevarchar result := callThisFunction(obj, 5) midthis sideother side + - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + - + \ No newline at end of file diff --git a/e2etests/testdata/stable/sequence_diagram_all_shapes/elk/board.exp.json b/e2etests/testdata/stable/sequence_diagram_all_shapes/elk/board.exp.json index 8931f7f4d2..9ccda43539 100644 --- a/e2etests/testdata/stable/sequence_diagram_all_shapes/elk/board.exp.json +++ b/e2etests/testdata/stable/sequence_diagram_all_shapes/elk/board.exp.json @@ -48,11 +48,11 @@ "id": "b", "type": "oval", "pos": { - "x": 278, - "y": 133 + "x": 279, + "y": 135 }, - "width": 103, - "height": 103, + "width": 101, + "height": 101, "opacity": 1, "strokeDash": 0, "strokeWidth": 2, @@ -89,7 +89,7 @@ "id": "c", "type": "class", "pos": { - "x": 421, + "x": 420, "y": 52 }, "width": 302, @@ -144,7 +144,7 @@ "id": "d", "type": "cloud", "pos": { - "x": 763, + "x": 762, "y": 152 }, "width": 140, @@ -186,7 +186,7 @@ "id": "e", "type": "code", "pos": { - "x": 943, + "x": 942, "y": 158 }, "width": 199, @@ -227,7 +227,7 @@ "id": "f", "type": "cylinder", "pos": { - "x": 1164, + "x": 1163, "y": 118 }, "width": 100, @@ -268,7 +268,7 @@ "id": "g", "type": "diamond", "pos": { - "x": 1314, + "x": 1313, "y": 144 }, "width": 100, @@ -309,7 +309,7 @@ "id": "h", "type": "document", "pos": { - "x": 1464, + "x": 1463, "y": 160 }, "width": 100, @@ -350,7 +350,7 @@ "id": "i", "type": "hexagon", "pos": { - "x": 1604, + "x": 1603, "y": 167 }, "width": 146, @@ -391,7 +391,7 @@ "id": "j", "type": "image", "pos": { - "x": 1790, + "x": 1789, "y": 87 }, "width": 128, @@ -444,7 +444,7 @@ "id": "k", "type": "oval", "pos": { - "x": 1956, + "x": 1955, "y": 163 }, "width": 100, @@ -485,7 +485,7 @@ "id": "l", "type": "package", "pos": { - "x": 2106, + "x": 2105, "y": 163 }, "width": 100, @@ -526,7 +526,7 @@ "id": "m", "type": "page", "pos": { - "x": 2250, + "x": 2249, "y": 149 }, "width": 113, @@ -567,7 +567,7 @@ "id": "n", "type": "parallelogram", "pos": { - "x": 2403, + "x": 2402, "y": 154 }, "width": 169, @@ -608,7 +608,7 @@ "id": "o", "type": "person", "pos": { - "x": 2592, + "x": 2591, "y": 64 }, "width": 100, @@ -649,7 +649,7 @@ "id": "p", "type": "queue", "pos": { - "x": 2732, + "x": 2731, "y": 170 }, "width": 151, @@ -690,7 +690,7 @@ "id": "q", "type": "rectangle", "pos": { - "x": 2923, + "x": 2922, "y": 133 }, "width": 103, @@ -731,7 +731,7 @@ "id": "r", "type": "step", "pos": { - "x": 3066, + "x": 3065, "y": 135 }, "width": 187, @@ -772,7 +772,7 @@ "id": "s", "type": "stored_data", "pos": { - "x": 3291, + "x": 3290, "y": 170 }, "width": 100, @@ -813,7 +813,7 @@ "id": "t", "type": "sql_table", "pos": { - "x": 3431, + "x": 3430, "y": 128 }, "width": 161, @@ -1003,7 +1003,7 @@ "y": 406 }, { - "x": 572, + "x": 571, "y": 406 } ], @@ -1037,11 +1037,11 @@ "labelPercentage": 0, "route": [ { - "x": 572, + "x": 571, "y": 486 }, { - "x": 833, + "x": 832, "y": 486 } ], @@ -1075,11 +1075,11 @@ "labelPercentage": 0, "route": [ { - "x": 833, + "x": 832, "y": 556 }, { - "x": 1042.5, + "x": 1041.5, "y": 556 } ], @@ -1113,11 +1113,11 @@ "labelPercentage": 0, "route": [ { - "x": 1042.5, + "x": 1041.5, "y": 626 }, { - "x": 1214, + "x": 1213, "y": 626 } ], @@ -1151,11 +1151,11 @@ "labelPercentage": 0, "route": [ { - "x": 1214, + "x": 1213, "y": 696 }, { - "x": 1364, + "x": 1363, "y": 696 } ], @@ -1189,11 +1189,11 @@ "labelPercentage": 0, "route": [ { - "x": 1364, + "x": 1363, "y": 766 }, { - "x": 1514, + "x": 1513, "y": 766 } ], @@ -1227,11 +1227,11 @@ "labelPercentage": 0, "route": [ { - "x": 1514, + "x": 1513, "y": 836 }, { - "x": 1677, + "x": 1676, "y": 836 } ], @@ -1265,11 +1265,11 @@ "labelPercentage": 0, "route": [ { - "x": 1677, + "x": 1676, "y": 906 }, { - "x": 1854, + "x": 1853, "y": 906 } ], @@ -1303,11 +1303,11 @@ "labelPercentage": 0, "route": [ { - "x": 1854, + "x": 1853, "y": 976 }, { - "x": 2006, + "x": 2005, "y": 976 } ], @@ -1341,11 +1341,11 @@ "labelPercentage": 0, "route": [ { - "x": 2006, + "x": 2005, "y": 1046 }, { - "x": 2156, + "x": 2155, "y": 1046 } ], @@ -1379,11 +1379,11 @@ "labelPercentage": 0, "route": [ { - "x": 2156, + "x": 2155, "y": 1116 }, { - "x": 2306.5, + "x": 2305.5, "y": 1116 } ], @@ -1417,11 +1417,11 @@ "labelPercentage": 0, "route": [ { - "x": 2306.5, + "x": 2305.5, "y": 1186 }, { - "x": 2487.5, + "x": 2486.5, "y": 1186 } ], @@ -1455,11 +1455,11 @@ "labelPercentage": 0, "route": [ { - "x": 2487.5, + "x": 2486.5, "y": 1256 }, { - "x": 2642, + "x": 2641, "y": 1256 } ], @@ -1493,11 +1493,11 @@ "labelPercentage": 0, "route": [ { - "x": 2642, + "x": 2641, "y": 1326 }, { - "x": 2807.5, + "x": 2806.5, "y": 1326 } ], @@ -1531,11 +1531,11 @@ "labelPercentage": 0, "route": [ { - "x": 2807.5, + "x": 2806.5, "y": 1396 }, { - "x": 2974.5, + "x": 2973.5, "y": 1396 } ], @@ -1569,11 +1569,11 @@ "labelPercentage": 0, "route": [ { - "x": 2974.5, + "x": 2973.5, "y": 1466 }, { - "x": 3159.5, + "x": 3158.5, "y": 1466 } ], @@ -1607,11 +1607,11 @@ "labelPercentage": 0, "route": [ { - "x": 3159.5, + "x": 3158.5, "y": 1536 }, { - "x": 3341, + "x": 3340, "y": 1536 } ], @@ -1645,11 +1645,11 @@ "labelPercentage": 0, "route": [ { - "x": 3341, + "x": 3340, "y": 1606 }, { - "x": 3511.5, + "x": 3510.5, "y": 1606 } ], @@ -1759,11 +1759,11 @@ "labelPercentage": 0, "route": [ { - "x": 572, + "x": 571, "y": 236 }, { - "x": 572, + "x": 571, "y": 1676 } ], @@ -1797,11 +1797,11 @@ "labelPercentage": 0, "route": [ { - "x": 833, + "x": 832, "y": 236 }, { - "x": 833, + "x": 832, "y": 1676 } ], @@ -1835,11 +1835,11 @@ "labelPercentage": 0, "route": [ { - "x": 1042.5, + "x": 1041.5, "y": 236 }, { - "x": 1042.5, + "x": 1041.5, "y": 1676 } ], @@ -1873,11 +1873,11 @@ "labelPercentage": 0, "route": [ { - "x": 1214, + "x": 1213, "y": 236 }, { - "x": 1214, + "x": 1213, "y": 1676 } ], @@ -1911,11 +1911,11 @@ "labelPercentage": 0, "route": [ { - "x": 1364, + "x": 1363, "y": 236 }, { - "x": 1364, + "x": 1363, "y": 1676 } ], @@ -1949,11 +1949,11 @@ "labelPercentage": 0, "route": [ { - "x": 1514, + "x": 1513, "y": 236 }, { - "x": 1514, + "x": 1513, "y": 1676 } ], @@ -1987,11 +1987,11 @@ "labelPercentage": 0, "route": [ { - "x": 1677, + "x": 1676, "y": 236 }, { - "x": 1677, + "x": 1676, "y": 1676 } ], @@ -2025,11 +2025,11 @@ "labelPercentage": 0, "route": [ { - "x": 1854, + "x": 1853, "y": 241 }, { - "x": 1854, + "x": 1853, "y": 1676 } ], @@ -2063,11 +2063,11 @@ "labelPercentage": 0, "route": [ { - "x": 2006, + "x": 2005, "y": 236 }, { - "x": 2006, + "x": 2005, "y": 1676 } ], @@ -2101,11 +2101,11 @@ "labelPercentage": 0, "route": [ { - "x": 2156, + "x": 2155, "y": 236 }, { - "x": 2156, + "x": 2155, "y": 1676 } ], @@ -2139,11 +2139,11 @@ "labelPercentage": 0, "route": [ { - "x": 2306.5, + "x": 2305.5, "y": 236 }, { - "x": 2306.5, + "x": 2305.5, "y": 1676 } ], @@ -2177,11 +2177,11 @@ "labelPercentage": 0, "route": [ { - "x": 2487.5, + "x": 2486.5, "y": 236 }, { - "x": 2487.5, + "x": 2486.5, "y": 1676 } ], @@ -2215,11 +2215,11 @@ "labelPercentage": 0, "route": [ { - "x": 2642, + "x": 2641, "y": 241 }, { - "x": 2642, + "x": 2641, "y": 1676 } ], @@ -2253,11 +2253,11 @@ "labelPercentage": 0, "route": [ { - "x": 2807.5, + "x": 2806.5, "y": 236 }, { - "x": 2807.5, + "x": 2806.5, "y": 1676 } ], @@ -2291,11 +2291,11 @@ "labelPercentage": 0, "route": [ { - "x": 2974.5, + "x": 2973.5, "y": 236 }, { - "x": 2974.5, + "x": 2973.5, "y": 1676 } ], @@ -2329,11 +2329,11 @@ "labelPercentage": 0, "route": [ { - "x": 3159.5, + "x": 3158.5, "y": 236 }, { - "x": 3159.5, + "x": 3158.5, "y": 1676 } ], @@ -2367,11 +2367,11 @@ "labelPercentage": 0, "route": [ { - "x": 3341, + "x": 3340, "y": 236 }, { - "x": 3341, + "x": 3340, "y": 1676 } ], @@ -2405,11 +2405,11 @@ "labelPercentage": 0, "route": [ { - "x": 3511.5, + "x": 3510.5, "y": 236 }, { - "x": 3511.5, + "x": 3510.5, "y": 1676 } ], diff --git a/e2etests/testdata/stable/sequence_diagram_all_shapes/elk/sketch.exp.svg b/e2etests/testdata/stable/sequence_diagram_all_shapes/elk/sketch.exp.svg index 7bd240b00a..e5ce9823b2 100644 --- a/e2etests/testdata/stable/sequence_diagram_all_shapes/elk/sketch.exp.svg +++ b/e2etests/testdata/stable/sequence_diagram_all_shapes/elk/sketch.exp.svg @@ -1,30 +1,30 @@ -a labelblabelsa class+public() boolvoid-private() intvoidcloudyyyy:= 5 + .d2-3784166051 .fill-N1{fill:#0A0F25;} + .d2-3784166051 .fill-N2{fill:#676C7E;} + .d2-3784166051 .fill-N3{fill:#9499AB;} + .d2-3784166051 .fill-N4{fill:#CFD2DD;} + .d2-3784166051 .fill-N5{fill:#DEE1EB;} + .d2-3784166051 .fill-N6{fill:#EEF1F8;} + .d2-3784166051 .fill-N7{fill:#FFFFFF;} + .d2-3784166051 .fill-B1{fill:#0D32B2;} + .d2-3784166051 .fill-B2{fill:#0D32B2;} + .d2-3784166051 .fill-B3{fill:#E3E9FD;} + .d2-3784166051 .fill-B4{fill:#E3E9FD;} + .d2-3784166051 .fill-B5{fill:#EDF0FD;} + .d2-3784166051 .fill-B6{fill:#F7F8FE;} + .d2-3784166051 .fill-AA2{fill:#4A6FF3;} + .d2-3784166051 .fill-AA4{fill:#EDF0FD;} + .d2-3784166051 .fill-AA5{fill:#F7F8FE;} + .d2-3784166051 .fill-AB4{fill:#EDF0FD;} + .d2-3784166051 .fill-AB5{fill:#F7F8FE;} + .d2-3784166051 .stroke-N1{stroke:#0A0F25;} + .d2-3784166051 .stroke-N2{stroke:#676C7E;} + .d2-3784166051 .stroke-N3{stroke:#9499AB;} + .d2-3784166051 .stroke-N4{stroke:#CFD2DD;} + .d2-3784166051 .stroke-N5{stroke:#DEE1EB;} + .d2-3784166051 .stroke-N6{stroke:#EEF1F8;} + .d2-3784166051 .stroke-N7{stroke:#FFFFFF;} + .d2-3784166051 .stroke-B1{stroke:#0D32B2;} + .d2-3784166051 .stroke-B2{stroke:#0D32B2;} + .d2-3784166051 .stroke-B3{stroke:#E3E9FD;} + .d2-3784166051 .stroke-B4{stroke:#E3E9FD;} + .d2-3784166051 .stroke-B5{stroke:#EDF0FD;} + .d2-3784166051 .stroke-B6{stroke:#F7F8FE;} + .d2-3784166051 .stroke-AA2{stroke:#4A6FF3;} + .d2-3784166051 .stroke-AA4{stroke:#EDF0FD;} + .d2-3784166051 .stroke-AA5{stroke:#F7F8FE;} + .d2-3784166051 .stroke-AB4{stroke:#EDF0FD;} + .d2-3784166051 .stroke-AB5{stroke:#F7F8FE;} + .d2-3784166051 .background-color-N1{background-color:#0A0F25;} + .d2-3784166051 .background-color-N2{background-color:#676C7E;} + .d2-3784166051 .background-color-N3{background-color:#9499AB;} + .d2-3784166051 .background-color-N4{background-color:#CFD2DD;} + .d2-3784166051 .background-color-N5{background-color:#DEE1EB;} + .d2-3784166051 .background-color-N6{background-color:#EEF1F8;} + .d2-3784166051 .background-color-N7{background-color:#FFFFFF;} + .d2-3784166051 .background-color-B1{background-color:#0D32B2;} + .d2-3784166051 .background-color-B2{background-color:#0D32B2;} + .d2-3784166051 .background-color-B3{background-color:#E3E9FD;} + .d2-3784166051 .background-color-B4{background-color:#E3E9FD;} + .d2-3784166051 .background-color-B5{background-color:#EDF0FD;} + .d2-3784166051 .background-color-B6{background-color:#F7F8FE;} + .d2-3784166051 .background-color-AA2{background-color:#4A6FF3;} + .d2-3784166051 .background-color-AA4{background-color:#EDF0FD;} + .d2-3784166051 .background-color-AA5{background-color:#F7F8FE;} + .d2-3784166051 .background-color-AB4{background-color:#EDF0FD;} + .d2-3784166051 .background-color-AB5{background-color:#F7F8FE;} + .d2-3784166051 .color-N1{color:#0A0F25;} + .d2-3784166051 .color-N2{color:#676C7E;} + .d2-3784166051 .color-N3{color:#9499AB;} + .d2-3784166051 .color-N4{color:#CFD2DD;} + .d2-3784166051 .color-N5{color:#DEE1EB;} + .d2-3784166051 .color-N6{color:#EEF1F8;} + .d2-3784166051 .color-N7{color:#FFFFFF;} + .d2-3784166051 .color-B1{color:#0D32B2;} + .d2-3784166051 .color-B2{color:#0D32B2;} + .d2-3784166051 .color-B3{color:#E3E9FD;} + .d2-3784166051 .color-B4{color:#E3E9FD;} + .d2-3784166051 .color-B5{color:#EDF0FD;} + .d2-3784166051 .color-B6{color:#F7F8FE;} + .d2-3784166051 .color-AA2{color:#4A6FF3;} + .d2-3784166051 .color-AA4{color:#EDF0FD;} + .d2-3784166051 .color-AA5{color:#F7F8FE;} + .d2-3784166051 .color-AB4{color:#EDF0FD;} + .d2-3784166051 .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 labelblabelsa class+public() boolvoid-private() intvoidcloudyyyy:= 5 := a + 7 -fmt.Printf("%d", b)a := 5 +fmt.Printf("%d", b)a := 5 b := a + 7 -fmt.Printf("%d", b)cyldiadocssix cornersa random iconoverpackdocs pagetoohard o saysinglepersona queuea squarea step at a timedatausersidintnamevarchar result := callThisFunction(obj, 5) midthis sideother side - +fmt.Printf("%d", b)cyldiadocssix cornersa random iconoverpackdocs pagetoohard o saysinglepersona queuea squarea step at a timedatausersidintnamevarchar result := callThisFunction(obj, 5) midthis sideother side + - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + - + \ No newline at end of file diff --git a/e2etests/testdata/stable/sequence_diagrams/dagre/board.exp.json b/e2etests/testdata/stable/sequence_diagrams/dagre/board.exp.json index aa1bdaf767..002b18c54d 100644 --- a/e2etests/testdata/stable/sequence_diagrams/dagre/board.exp.json +++ b/e2etests/testdata/stable/sequence_diagrams/dagre/board.exp.json @@ -7,11 +7,11 @@ "id": "a_shape", "type": "oval", "pos": { - "x": 1476, + "x": 1481, "y": 0 }, - "width": 131, - "height": 131, + "width": 121, + "height": 121, "opacity": 1, "strokeDash": 0, "strokeWidth": 2, @@ -49,7 +49,7 @@ "type": "sequence_diagram", "pos": { "x": 0, - "y": 281 + "y": 271 }, "width": 974, "height": 1376, @@ -90,7 +90,7 @@ "type": "rectangle", "pos": { "x": 12, - "y": 369 + "y": 359 }, "width": 100, "height": 66, @@ -131,7 +131,7 @@ "type": "rectangle", "pos": { "x": 56, - "y": 505 + "y": 495 }, "width": 12, "height": 1080, @@ -171,7 +171,7 @@ "type": "rectangle", "pos": { "x": 152, - "y": 369 + "y": 359 }, "width": 140, "height": 66, @@ -212,7 +212,7 @@ "type": "rectangle", "pos": { "x": 216, - "y": 505 + "y": 495 }, "width": 12, "height": 110, @@ -252,7 +252,7 @@ "type": "rectangle", "pos": { "x": 322, - "y": 369 + "y": 359 }, "width": 100, "height": 66, @@ -293,7 +293,7 @@ "type": "rectangle", "pos": { "x": 366, - "y": 685 + "y": 675 }, "width": 12, "height": 110, @@ -333,7 +333,7 @@ "type": "rectangle", "pos": { "x": 462, - "y": 369 + "y": 359 }, "width": 126, "height": 66, @@ -374,7 +374,7 @@ "type": "rectangle", "pos": { "x": 519, - "y": 865 + "y": 855 }, "width": 12, "height": 270, @@ -414,7 +414,7 @@ "type": "rectangle", "pos": { "x": 515, - "y": 945 + "y": 935 }, "width": 20, "height": 100, @@ -454,7 +454,7 @@ "type": "rectangle", "pos": { "x": 685, - "y": 369 + "y": 359 }, "width": 100, "height": 66, @@ -495,7 +495,7 @@ "type": "rectangle", "pos": { "x": 729, - "y": 1025 + "y": 1015 }, "width": 12, "height": 30, @@ -535,7 +535,7 @@ "type": "rectangle", "pos": { "x": 825, - "y": 369 + "y": 359 }, "width": 137, "height": 66, @@ -576,7 +576,7 @@ "type": "rectangle", "pos": { "x": 887, - "y": 1205 + "y": 1195 }, "width": 12, "height": 30, @@ -616,7 +616,7 @@ "type": "rectangle", "pos": { "x": 366, - "y": 1295 + "y": 1285 }, "width": 12, "height": 30, @@ -656,7 +656,7 @@ "type": "rectangle", "pos": { "x": 366, - "y": 1385 + "y": 1375 }, "width": 12, "height": 30, @@ -696,7 +696,7 @@ "type": "rectangle", "pos": { "x": 887, - "y": 1475 + "y": 1465 }, "width": 12, "height": 30, @@ -736,7 +736,7 @@ "type": "rectangle", "pos": { "x": 887, - "y": 1565 + "y": 1555 }, "width": 12, "height": 30, @@ -776,7 +776,7 @@ "type": "rectangle", "pos": { "x": 1024, - "y": 254 + "y": 244 }, "width": 1034, "height": 1431, @@ -817,7 +817,7 @@ "type": "sequence_diagram", "pos": { "x": 1054, - "y": 284 + "y": 274 }, "width": 974, "height": 1371, @@ -858,7 +858,7 @@ "type": "rectangle", "pos": { "x": 1066, - "y": 367 + "y": 357 }, "width": 100, "height": 66, @@ -899,7 +899,7 @@ "type": "rectangle", "pos": { "x": 1110, - "y": 503 + "y": 493 }, "width": 12, "height": 1080, @@ -939,7 +939,7 @@ "type": "rectangle", "pos": { "x": 1206, - "y": 367 + "y": 357 }, "width": 140, "height": 66, @@ -980,7 +980,7 @@ "type": "rectangle", "pos": { "x": 1270, - "y": 503 + "y": 493 }, "width": 12, "height": 110, @@ -1020,7 +1020,7 @@ "type": "rectangle", "pos": { "x": 1376, - "y": 367 + "y": 357 }, "width": 100, "height": 66, @@ -1061,7 +1061,7 @@ "type": "rectangle", "pos": { "x": 1420, - "y": 683 + "y": 673 }, "width": 12, "height": 110, @@ -1101,7 +1101,7 @@ "type": "rectangle", "pos": { "x": 1516, - "y": 367 + "y": 357 }, "width": 126, "height": 66, @@ -1142,7 +1142,7 @@ "type": "rectangle", "pos": { "x": 1573, - "y": 863 + "y": 853 }, "width": 12, "height": 270, @@ -1182,7 +1182,7 @@ "type": "rectangle", "pos": { "x": 1569, - "y": 943 + "y": 933 }, "width": 20, "height": 100, @@ -1222,7 +1222,7 @@ "type": "rectangle", "pos": { "x": 1739, - "y": 367 + "y": 357 }, "width": 100, "height": 66, @@ -1263,7 +1263,7 @@ "type": "rectangle", "pos": { "x": 1783, - "y": 1023 + "y": 1013 }, "width": 12, "height": 30, @@ -1303,7 +1303,7 @@ "type": "rectangle", "pos": { "x": 1879, - "y": 367 + "y": 357 }, "width": 137, "height": 66, @@ -1344,7 +1344,7 @@ "type": "rectangle", "pos": { "x": 1941, - "y": 1203 + "y": 1193 }, "width": 12, "height": 30, @@ -1384,7 +1384,7 @@ "type": "rectangle", "pos": { "x": 1420, - "y": 1293 + "y": 1283 }, "width": 12, "height": 30, @@ -1424,7 +1424,7 @@ "type": "rectangle", "pos": { "x": 1420, - "y": 1383 + "y": 1373 }, "width": 12, "height": 30, @@ -1464,7 +1464,7 @@ "type": "rectangle", "pos": { "x": 1941, - "y": 1473 + "y": 1463 }, "width": 12, "height": 30, @@ -1504,7 +1504,7 @@ "type": "rectangle", "pos": { "x": 1941, - "y": 1563 + "y": 1553 }, "width": 12, "height": 30, @@ -1544,7 +1544,7 @@ "type": "rectangle", "pos": { "x": 431, - "y": 2220 + "y": 2210 }, "width": 112, "height": 66, @@ -1585,7 +1585,7 @@ "type": "queue", "pos": { "x": 1268, - "y": 1807 + "y": 1797 }, "width": 1084, "height": 891, @@ -1626,7 +1626,7 @@ "type": "sequence_diagram", "pos": { "x": 1348, - "y": 1857 + "y": 1847 }, "width": 934, "height": 791, @@ -1667,7 +1667,7 @@ "type": "rectangle", "pos": { "x": 1360, - "y": 1940 + "y": 1930 }, "width": 100, "height": 66, @@ -1708,7 +1708,7 @@ "type": "rectangle", "pos": { "x": 1510, - "y": 1940 + "y": 1930 }, "width": 100, "height": 66, @@ -1749,7 +1749,7 @@ "type": "rectangle", "pos": { "x": 1650, - "y": 1940 + "y": 1930 }, "width": 126, "height": 66, @@ -1790,7 +1790,7 @@ "type": "rectangle", "pos": { "x": 1813, - "y": 1940 + "y": 1930 }, "width": 100, "height": 66, @@ -1831,7 +1831,7 @@ "type": "rectangle", "pos": { "x": 1953, - "y": 1940 + "y": 1930 }, "width": 137, "height": 66, @@ -1872,7 +1872,7 @@ "type": "rectangle", "pos": { "x": 2130, - "y": 1940 + "y": 1930 }, "width": 140, "height": 66, @@ -1913,7 +1913,7 @@ "type": "rectangle", "pos": { "x": 2194, - "y": 2066 + "y": 2056 }, "width": 12, "height": 30, @@ -1953,7 +1953,7 @@ "type": "rectangle", "pos": { "x": 1857, - "y": 2056 + "y": 2046 }, "width": 12, "height": 380, @@ -1993,7 +1993,7 @@ "type": "rectangle", "pos": { "x": 1853, - "y": 2066 + "y": 2056 }, "width": 20, "height": 90, @@ -2033,7 +2033,7 @@ "type": "rectangle", "pos": { "x": 1707, - "y": 2116 + "y": 2106 }, "width": 12, "height": 190, @@ -2073,7 +2073,7 @@ "type": "rectangle", "pos": { "x": 1703, - "y": 2126 + "y": 2116 }, "width": 20, "height": 170, @@ -2113,7 +2113,7 @@ "type": "rectangle", "pos": { "x": 1699, - "y": 2136 + "y": 2126 }, "width": 28, "height": 90, @@ -2153,7 +2153,7 @@ "type": "rectangle", "pos": { "x": 1554, - "y": 2176 + "y": 2166 }, "width": 12, "height": 220, @@ -2193,7 +2193,7 @@ "type": "rectangle", "pos": { "x": 1550, - "y": 2186 + "y": 2176 }, "width": 20, "height": 200, @@ -2233,7 +2233,7 @@ "type": "rectangle", "pos": { "x": 1546, - "y": 2196 + "y": 2186 }, "width": 28, "height": 180, @@ -2273,7 +2273,7 @@ "type": "rectangle", "pos": { "x": 1542, - "y": 2206 + "y": 2196 }, "width": 36, "height": 160, @@ -2313,7 +2313,7 @@ "type": "rectangle", "pos": { "x": 2015, - "y": 2306 + "y": 2296 }, "width": 12, "height": 240, @@ -2353,7 +2353,7 @@ "type": "rectangle", "pos": { "x": 2011, - "y": 2316 + "y": 2306 }, "width": 20, "height": 220, @@ -2393,7 +2393,7 @@ "type": "rectangle", "pos": { "x": 2007, - "y": 2326 + "y": 2316 }, "width": 28, "height": 200, @@ -2433,7 +2433,7 @@ "type": "rectangle", "pos": { "x": 2003, - "y": 2336 + "y": 2326 }, "width": 36, "height": 180, @@ -2473,7 +2473,7 @@ "type": "rectangle", "pos": { "x": 1999, - "y": 2346 + "y": 2336 }, "width": 44, "height": 160, @@ -2513,7 +2513,7 @@ "type": "rectangle", "pos": { "x": 1404, - "y": 2416 + "y": 2406 }, "width": 12, "height": 30, @@ -2553,7 +2553,7 @@ "type": "rectangle", "pos": { "x": 2194, - "y": 2556 + "y": 2546 }, "width": 12, "height": 30, @@ -2616,11 +2616,11 @@ "route": [ { "x": 68, - "y": 515 + "y": 505 }, { "x": 216, - "y": 515 + "y": 505 } ], "animated": false, @@ -2654,11 +2654,11 @@ "route": [ { "x": 68, - "y": 605 + "y": 595 }, { "x": 216, - "y": 605 + "y": 595 } ], "animated": false, @@ -2692,11 +2692,11 @@ "route": [ { "x": 68, - "y": 695 + "y": 685 }, { "x": 366, - "y": 695 + "y": 685 } ], "animated": false, @@ -2730,11 +2730,11 @@ "route": [ { "x": 68, - "y": 785 + "y": 775 }, { "x": 366, - "y": 785 + "y": 775 } ], "animated": false, @@ -2768,11 +2768,11 @@ "route": [ { "x": 68, - "y": 875 + "y": 865 }, { "x": 519, - "y": 875 + "y": 865 } ], "animated": false, @@ -2806,11 +2806,11 @@ "route": [ { "x": 222, - "y": 955 + "y": 945 }, { "x": 515, - "y": 955 + "y": 945 } ], "animated": false, @@ -2844,11 +2844,11 @@ "route": [ { "x": 535, - "y": 1035 + "y": 1025 }, { "x": 729, - "y": 1035 + "y": 1025 } ], "animated": false, @@ -2882,11 +2882,11 @@ "route": [ { "x": 62, - "y": 1125 + "y": 1115 }, { "x": 519, - "y": 1125 + "y": 1115 } ], "animated": false, @@ -2920,11 +2920,11 @@ "route": [ { "x": 68, - "y": 1215 + "y": 1205 }, { "x": 887.5, - "y": 1215 + "y": 1205 } ], "animated": false, @@ -2958,11 +2958,11 @@ "route": [ { "x": 68, - "y": 1305 + "y": 1295 }, { "x": 366, - "y": 1305 + "y": 1295 } ], "animated": false, @@ -2996,11 +2996,11 @@ "route": [ { "x": 68, - "y": 1395 + "y": 1385 }, { "x": 366, - "y": 1395 + "y": 1385 } ], "animated": false, @@ -3034,11 +3034,11 @@ "route": [ { "x": 68, - "y": 1485 + "y": 1475 }, { "x": 887.5, - "y": 1485 + "y": 1475 } ], "animated": false, @@ -3072,11 +3072,11 @@ "route": [ { "x": 68, - "y": 1575 + "y": 1565 }, { "x": 887.5, - "y": 1575 + "y": 1565 } ], "animated": false, @@ -3110,11 +3110,11 @@ "route": [ { "x": 1122, - "y": 513 + "y": 503 }, { "x": 1270, - "y": 513 + "y": 503 } ], "animated": false, @@ -3148,11 +3148,11 @@ "route": [ { "x": 1122, - "y": 603 + "y": 593 }, { "x": 1270, - "y": 603 + "y": 593 } ], "animated": false, @@ -3186,11 +3186,11 @@ "route": [ { "x": 1122, - "y": 693 + "y": 683 }, { "x": 1420, - "y": 693 + "y": 683 } ], "animated": false, @@ -3224,11 +3224,11 @@ "route": [ { "x": 1122, - "y": 783 + "y": 773 }, { "x": 1420, - "y": 783 + "y": 773 } ], "animated": false, @@ -3262,11 +3262,11 @@ "route": [ { "x": 1122, - "y": 873 + "y": 863 }, { "x": 1573, - "y": 873 + "y": 863 } ], "animated": false, @@ -3300,11 +3300,11 @@ "route": [ { "x": 1276, - "y": 953 + "y": 943 }, { "x": 1569, - "y": 953 + "y": 943 } ], "animated": false, @@ -3338,11 +3338,11 @@ "route": [ { "x": 1589, - "y": 1033 + "y": 1023 }, { "x": 1783, - "y": 1033 + "y": 1023 } ], "animated": false, @@ -3376,11 +3376,11 @@ "route": [ { "x": 1116, - "y": 1123 + "y": 1113 }, { "x": 1573, - "y": 1123 + "y": 1113 } ], "animated": false, @@ -3414,11 +3414,11 @@ "route": [ { "x": 1122, - "y": 1213 + "y": 1203 }, { "x": 1941.5, - "y": 1213 + "y": 1203 } ], "animated": false, @@ -3452,11 +3452,11 @@ "route": [ { "x": 1122, - "y": 1303 + "y": 1293 }, { "x": 1420, - "y": 1303 + "y": 1293 } ], "animated": false, @@ -3490,11 +3490,11 @@ "route": [ { "x": 1122, - "y": 1393 + "y": 1383 }, { "x": 1420, - "y": 1393 + "y": 1383 } ], "animated": false, @@ -3528,11 +3528,11 @@ "route": [ { "x": 1122, - "y": 1483 + "y": 1473 }, { "x": 1941.5, - "y": 1483 + "y": 1473 } ], "animated": false, @@ -3566,11 +3566,11 @@ "route": [ { "x": 1122, - "y": 1573 + "y": 1563 }, { "x": 1941.5, - "y": 1573 + "y": 1563 } ], "animated": false, @@ -3603,20 +3603,20 @@ "labelPercentage": 0, "route": [ { - "x": 1476, - "y": 73 + "x": 1481, + "y": 67 }, { - "x": 684.7999877929688, - "y": 159.39999389648438 + "x": 685.7999877929688, + "y": 150.1999969482422 }, { "x": 487, - "y": 241 + "y": 231 }, { "x": 487, - "y": 281 + "y": 271 } ], "isCurve": true, @@ -3651,19 +3651,19 @@ "route": [ { "x": 1541, - "y": 131 + "y": 121 }, { "x": 1541, - "y": 171 + "y": 161 }, { "x": 1541, - "y": 241.5 + "y": 231.5 }, { "x": 1541, - "y": 283.5 + "y": 273.5 } ], "isCurve": true, @@ -3698,31 +3698,31 @@ "route": [ { "x": 487, - "y": 1657 + "y": 1647 }, { "x": 487, - "y": 1697 + "y": 1687 }, { "x": 487, - "y": 1717 + "y": 1707 }, { "x": 487, - "y": 1732 + "y": 1722 }, { "x": 487, - "y": 1747 + "y": 1737 }, { "x": 487, - "y": 1889.5 + "y": 1879.5 }, { "x": 487, - "y": 2219.5 + "y": 2209.5 } ], "isCurve": true, @@ -3757,31 +3757,31 @@ "route": [ { "x": 1541, - "y": 1655.5 + "y": 1645.5 }, { "x": 1541, - "y": 1696.699951171875 + "y": 1686.699951171875 }, { "x": 1541, - "y": 1717 + "y": 1707 }, { "x": 1541, - "y": 1732 + "y": 1722 }, { "x": 1541, - "y": 1747 + "y": 1737 }, { "x": 1547.199951171875, - "y": 1817 + "y": 1807 }, { "x": 1572, - "y": 1857 + "y": 1847 } ], "isCurve": true, @@ -3815,56 +3815,56 @@ "labelPercentage": 0, "route": [ { - "x": 1606, - "y": 79 + "x": 1601, + "y": 72 }, { - "x": 1991.5999755859375, - "y": 160.60000610351562 + "x": 1990.5999755859375, + "y": 151.1999969482422 }, { "x": 2088, - "y": 191 + "y": 181 }, { "x": 2088, - "y": 206 + "y": 196 }, { "x": 2088, - "y": 221 + "y": 211 }, { "x": 2088, - "y": 378.6000061035156 + "y": 368.6000061035156 }, { "x": 2088, - "y": 600 + "y": 590 }, { "x": 2088, - "y": 821.4000244140625 + "y": 811.4000244140625 }, { "x": 2088, - "y": 1116.5999755859375 + "y": 1106.5999755859375 }, { "x": 2088, - "y": 1338 + "y": 1328 }, { "x": 2088, - "y": 1559.4000244140625 + "y": 1549.4000244140625 }, { "x": 2088, - "y": 1767 + "y": 1757 }, { "x": 2088, - "y": 1807 + "y": 1797 } ], "isCurve": true, @@ -3899,11 +3899,11 @@ "route": [ { "x": 2194, - "y": 2076 + "y": 2066 }, { "x": 1873, - "y": 2076 + "y": 2066 } ], "animated": false, @@ -3937,11 +3937,11 @@ "route": [ { "x": 1853, - "y": 2146 + "y": 2136 }, { "x": 1727, - "y": 2146 + "y": 2136 } ], "animated": false, @@ -3975,11 +3975,11 @@ "route": [ { "x": 1699, - "y": 2216 + "y": 2206 }, { "x": 1578, - "y": 2216 + "y": 2206 } ], "animated": false, @@ -4013,11 +4013,11 @@ "route": [ { "x": 1857, - "y": 2286 + "y": 2276 }, { "x": 1723, - "y": 2286 + "y": 2276 } ], "animated": false, @@ -4051,11 +4051,11 @@ "route": [ { "x": 1578, - "y": 2356 + "y": 2346 }, { "x": 1999.5, - "y": 2356 + "y": 2346 } ], "animated": false, @@ -4089,11 +4089,11 @@ "route": [ { "x": 1416, - "y": 2426 + "y": 2416 }, { "x": 1857, - "y": 2426 + "y": 2416 } ], "animated": false, @@ -4127,11 +4127,11 @@ "route": [ { "x": 1999.5, - "y": 2496 + "y": 2486 }, { "x": 1410, - "y": 2496 + "y": 2486 } ], "animated": false, @@ -4165,11 +4165,11 @@ "route": [ { "x": 1410, - "y": 2566 + "y": 2556 }, { "x": 2194, - "y": 2566 + "y": 2556 } ], "animated": false, @@ -4203,11 +4203,11 @@ "route": [ { "x": 62, - "y": 435 + "y": 425 }, { "x": 62, - "y": 1645 + "y": 1635 } ], "animated": false, @@ -4241,11 +4241,11 @@ "route": [ { "x": 222, - "y": 435 + "y": 425 }, { "x": 222, - "y": 1645 + "y": 1635 } ], "animated": false, @@ -4279,11 +4279,11 @@ "route": [ { "x": 372, - "y": 435 + "y": 425 }, { "x": 372, - "y": 1645 + "y": 1635 } ], "animated": false, @@ -4317,11 +4317,11 @@ "route": [ { "x": 525, - "y": 435 + "y": 425 }, { "x": 525, - "y": 1645 + "y": 1635 } ], "animated": false, @@ -4355,11 +4355,11 @@ "route": [ { "x": 735, - "y": 435 + "y": 425 }, { "x": 735, - "y": 1645 + "y": 1635 } ], "animated": false, @@ -4393,11 +4393,11 @@ "route": [ { "x": 893.5, - "y": 435 + "y": 425 }, { "x": 893.5, - "y": 1645 + "y": 1635 } ], "animated": false, @@ -4431,11 +4431,11 @@ "route": [ { "x": 1116, - "y": 433 + "y": 423 }, { "x": 1116, - "y": 1643 + "y": 1633 } ], "animated": false, @@ -4469,11 +4469,11 @@ "route": [ { "x": 1276, - "y": 433 + "y": 423 }, { "x": 1276, - "y": 1643 + "y": 1633 } ], "animated": false, @@ -4507,11 +4507,11 @@ "route": [ { "x": 1426, - "y": 433 + "y": 423 }, { "x": 1426, - "y": 1643 + "y": 1633 } ], "animated": false, @@ -4545,11 +4545,11 @@ "route": [ { "x": 1579, - "y": 433 + "y": 423 }, { "x": 1579, - "y": 1643 + "y": 1633 } ], "animated": false, @@ -4583,11 +4583,11 @@ "route": [ { "x": 1789, - "y": 433 + "y": 423 }, { "x": 1789, - "y": 1643 + "y": 1633 } ], "animated": false, @@ -4621,11 +4621,11 @@ "route": [ { "x": 1947.5, - "y": 433 + "y": 423 }, { "x": 1947.5, - "y": 1643 + "y": 1633 } ], "animated": false, @@ -4659,11 +4659,11 @@ "route": [ { "x": 1410, - "y": 2006 + "y": 1996 }, { "x": 1410, - "y": 2636 + "y": 2626 } ], "animated": false, @@ -4697,11 +4697,11 @@ "route": [ { "x": 1560, - "y": 2006 + "y": 1996 }, { "x": 1560, - "y": 2636 + "y": 2626 } ], "animated": false, @@ -4735,11 +4735,11 @@ "route": [ { "x": 1713, - "y": 2006 + "y": 1996 }, { "x": 1713, - "y": 2636 + "y": 2626 } ], "animated": false, @@ -4773,11 +4773,11 @@ "route": [ { "x": 1863, - "y": 2006 + "y": 1996 }, { "x": 1863, - "y": 2636 + "y": 2626 } ], "animated": false, @@ -4811,11 +4811,11 @@ "route": [ { "x": 2021.5, - "y": 2006 + "y": 1996 }, { "x": 2021.5, - "y": 2636 + "y": 2626 } ], "animated": false, @@ -4849,11 +4849,11 @@ "route": [ { "x": 2200, - "y": 2006 + "y": 1996 }, { "x": 2200, - "y": 2636 + "y": 2626 } ], "animated": false, diff --git a/e2etests/testdata/stable/sequence_diagrams/dagre/sketch.exp.svg b/e2etests/testdata/stable/sequence_diagrams/dagre/sketch.exp.svg index 9789f2ffdc..a269c09a50 100644 --- a/e2etests/testdata/stable/sequence_diagrams/dagre/sketch.exp.svg +++ b/e2etests/testdata/stable/sequence_diagrams/dagre/sketch.exp.svg @@ -1,23 +1,23 @@ -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) - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + .d2-2028732019 .fill-N1{fill:#0A0F25;} + .d2-2028732019 .fill-N2{fill:#676C7E;} + .d2-2028732019 .fill-N3{fill:#9499AB;} + .d2-2028732019 .fill-N4{fill:#CFD2DD;} + .d2-2028732019 .fill-N5{fill:#DEE1EB;} + .d2-2028732019 .fill-N6{fill:#EEF1F8;} + .d2-2028732019 .fill-N7{fill:#FFFFFF;} + .d2-2028732019 .fill-B1{fill:#0D32B2;} + .d2-2028732019 .fill-B2{fill:#0D32B2;} + .d2-2028732019 .fill-B3{fill:#E3E9FD;} + .d2-2028732019 .fill-B4{fill:#E3E9FD;} + .d2-2028732019 .fill-B5{fill:#EDF0FD;} + .d2-2028732019 .fill-B6{fill:#F7F8FE;} + .d2-2028732019 .fill-AA2{fill:#4A6FF3;} + .d2-2028732019 .fill-AA4{fill:#EDF0FD;} + .d2-2028732019 .fill-AA5{fill:#F7F8FE;} + .d2-2028732019 .fill-AB4{fill:#EDF0FD;} + .d2-2028732019 .fill-AB5{fill:#F7F8FE;} + .d2-2028732019 .stroke-N1{stroke:#0A0F25;} + .d2-2028732019 .stroke-N2{stroke:#676C7E;} + .d2-2028732019 .stroke-N3{stroke:#9499AB;} + .d2-2028732019 .stroke-N4{stroke:#CFD2DD;} + .d2-2028732019 .stroke-N5{stroke:#DEE1EB;} + .d2-2028732019 .stroke-N6{stroke:#EEF1F8;} + .d2-2028732019 .stroke-N7{stroke:#FFFFFF;} + .d2-2028732019 .stroke-B1{stroke:#0D32B2;} + .d2-2028732019 .stroke-B2{stroke:#0D32B2;} + .d2-2028732019 .stroke-B3{stroke:#E3E9FD;} + .d2-2028732019 .stroke-B4{stroke:#E3E9FD;} + .d2-2028732019 .stroke-B5{stroke:#EDF0FD;} + .d2-2028732019 .stroke-B6{stroke:#F7F8FE;} + .d2-2028732019 .stroke-AA2{stroke:#4A6FF3;} + .d2-2028732019 .stroke-AA4{stroke:#EDF0FD;} + .d2-2028732019 .stroke-AA5{stroke:#F7F8FE;} + .d2-2028732019 .stroke-AB4{stroke:#EDF0FD;} + .d2-2028732019 .stroke-AB5{stroke:#F7F8FE;} + .d2-2028732019 .background-color-N1{background-color:#0A0F25;} + .d2-2028732019 .background-color-N2{background-color:#676C7E;} + .d2-2028732019 .background-color-N3{background-color:#9499AB;} + .d2-2028732019 .background-color-N4{background-color:#CFD2DD;} + .d2-2028732019 .background-color-N5{background-color:#DEE1EB;} + .d2-2028732019 .background-color-N6{background-color:#EEF1F8;} + .d2-2028732019 .background-color-N7{background-color:#FFFFFF;} + .d2-2028732019 .background-color-B1{background-color:#0D32B2;} + .d2-2028732019 .background-color-B2{background-color:#0D32B2;} + .d2-2028732019 .background-color-B3{background-color:#E3E9FD;} + .d2-2028732019 .background-color-B4{background-color:#E3E9FD;} + .d2-2028732019 .background-color-B5{background-color:#EDF0FD;} + .d2-2028732019 .background-color-B6{background-color:#F7F8FE;} + .d2-2028732019 .background-color-AA2{background-color:#4A6FF3;} + .d2-2028732019 .background-color-AA4{background-color:#EDF0FD;} + .d2-2028732019 .background-color-AA5{background-color:#F7F8FE;} + .d2-2028732019 .background-color-AB4{background-color:#EDF0FD;} + .d2-2028732019 .background-color-AB5{background-color:#F7F8FE;} + .d2-2028732019 .color-N1{color:#0A0F25;} + .d2-2028732019 .color-N2{color:#676C7E;} + .d2-2028732019 .color-N3{color:#9499AB;} + .d2-2028732019 .color-N4{color:#CFD2DD;} + .d2-2028732019 .color-N5{color:#DEE1EB;} + .d2-2028732019 .color-N6{color:#EEF1F8;} + .d2-2028732019 .color-N7{color:#FFFFFF;} + .d2-2028732019 .color-B1{color:#0D32B2;} + .d2-2028732019 .color-B2{color:#0D32B2;} + .d2-2028732019 .color-B3{color:#E3E9FD;} + .d2-2028732019 .color-B4{color:#E3E9FD;} + .d2-2028732019 .color-B5{color:#EDF0FD;} + .d2-2028732019 .color-B6{color:#F7F8FE;} + .d2-2028732019 .color-AA2{color:#4A6FF3;} + .d2-2028732019 .color-AA4{color:#EDF0FD;} + .d2-2028732019 .color-AA5{color:#F7F8FE;} + .d2-2028732019 .color-AB4{color:#EDF0FD;} + .d2-2028732019 .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) + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ 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 08adb78036..badea242a9 100644 --- a/e2etests/testdata/stable/sequence_diagrams/elk/board.exp.json +++ b/e2etests/testdata/stable/sequence_diagrams/elk/board.exp.json @@ -7,11 +7,11 @@ "id": "a_shape", "type": "oval", "pos": { - "x": 1477, + "x": 1482, "y": 12 }, - "width": 131, - "height": 131, + "width": 121, + "height": 121, "opacity": 1, "strokeDash": 0, "strokeWidth": 2, @@ -49,7 +49,7 @@ "type": "sequence_diagram", "pos": { "x": 12, - "y": 275 + "y": 265 }, "width": 974, "height": 1376, @@ -90,7 +90,7 @@ "type": "rectangle", "pos": { "x": 24, - "y": 363 + "y": 353 }, "width": 100, "height": 66, @@ -131,7 +131,7 @@ "type": "rectangle", "pos": { "x": 68, - "y": 499 + "y": 489 }, "width": 12, "height": 1080, @@ -171,7 +171,7 @@ "type": "rectangle", "pos": { "x": 164, - "y": 363 + "y": 353 }, "width": 140, "height": 66, @@ -212,7 +212,7 @@ "type": "rectangle", "pos": { "x": 228, - "y": 499 + "y": 489 }, "width": 12, "height": 110, @@ -252,7 +252,7 @@ "type": "rectangle", "pos": { "x": 334, - "y": 363 + "y": 353 }, "width": 100, "height": 66, @@ -293,7 +293,7 @@ "type": "rectangle", "pos": { "x": 378, - "y": 679 + "y": 669 }, "width": 12, "height": 110, @@ -333,7 +333,7 @@ "type": "rectangle", "pos": { "x": 474, - "y": 363 + "y": 353 }, "width": 126, "height": 66, @@ -374,7 +374,7 @@ "type": "rectangle", "pos": { "x": 531, - "y": 859 + "y": 849 }, "width": 12, "height": 270, @@ -414,7 +414,7 @@ "type": "rectangle", "pos": { "x": 527, - "y": 939 + "y": 929 }, "width": 20, "height": 100, @@ -454,7 +454,7 @@ "type": "rectangle", "pos": { "x": 697, - "y": 363 + "y": 353 }, "width": 100, "height": 66, @@ -495,7 +495,7 @@ "type": "rectangle", "pos": { "x": 741, - "y": 1019 + "y": 1009 }, "width": 12, "height": 30, @@ -535,7 +535,7 @@ "type": "rectangle", "pos": { "x": 837, - "y": 363 + "y": 353 }, "width": 137, "height": 66, @@ -576,7 +576,7 @@ "type": "rectangle", "pos": { "x": 899, - "y": 1199 + "y": 1189 }, "width": 12, "height": 30, @@ -616,7 +616,7 @@ "type": "rectangle", "pos": { "x": 378, - "y": 1289 + "y": 1279 }, "width": 12, "height": 30, @@ -656,7 +656,7 @@ "type": "rectangle", "pos": { "x": 378, - "y": 1379 + "y": 1369 }, "width": 12, "height": 30, @@ -696,7 +696,7 @@ "type": "rectangle", "pos": { "x": 899, - "y": 1469 + "y": 1459 }, "width": 12, "height": 30, @@ -736,7 +736,7 @@ "type": "rectangle", "pos": { "x": 899, - "y": 1559 + "y": 1549 }, "width": 12, "height": 30, @@ -776,7 +776,7 @@ "type": "rectangle", "pos": { "x": 1006, - "y": 228 + "y": 218 }, "width": 1074, "height": 1471, @@ -817,7 +817,7 @@ "type": "sequence_diagram", "pos": { "x": 1056, - "y": 278 + "y": 268 }, "width": 974, "height": 1371, @@ -858,7 +858,7 @@ "type": "rectangle", "pos": { "x": 1068, - "y": 361 + "y": 351 }, "width": 100, "height": 66, @@ -899,7 +899,7 @@ "type": "rectangle", "pos": { "x": 1112, - "y": 497 + "y": 487 }, "width": 12, "height": 1080, @@ -939,7 +939,7 @@ "type": "rectangle", "pos": { "x": 1208, - "y": 361 + "y": 351 }, "width": 140, "height": 66, @@ -980,7 +980,7 @@ "type": "rectangle", "pos": { "x": 1272, - "y": 497 + "y": 487 }, "width": 12, "height": 110, @@ -1020,7 +1020,7 @@ "type": "rectangle", "pos": { "x": 1378, - "y": 361 + "y": 351 }, "width": 100, "height": 66, @@ -1061,7 +1061,7 @@ "type": "rectangle", "pos": { "x": 1422, - "y": 677 + "y": 667 }, "width": 12, "height": 110, @@ -1101,7 +1101,7 @@ "type": "rectangle", "pos": { "x": 1518, - "y": 361 + "y": 351 }, "width": 126, "height": 66, @@ -1142,7 +1142,7 @@ "type": "rectangle", "pos": { "x": 1575, - "y": 857 + "y": 847 }, "width": 12, "height": 270, @@ -1182,7 +1182,7 @@ "type": "rectangle", "pos": { "x": 1571, - "y": 937 + "y": 927 }, "width": 20, "height": 100, @@ -1222,7 +1222,7 @@ "type": "rectangle", "pos": { "x": 1741, - "y": 361 + "y": 351 }, "width": 100, "height": 66, @@ -1263,7 +1263,7 @@ "type": "rectangle", "pos": { "x": 1785, - "y": 1017 + "y": 1007 }, "width": 12, "height": 30, @@ -1303,7 +1303,7 @@ "type": "rectangle", "pos": { "x": 1881, - "y": 361 + "y": 351 }, "width": 137, "height": 66, @@ -1344,7 +1344,7 @@ "type": "rectangle", "pos": { "x": 1943, - "y": 1197 + "y": 1187 }, "width": 12, "height": 30, @@ -1384,7 +1384,7 @@ "type": "rectangle", "pos": { "x": 1422, - "y": 1287 + "y": 1277 }, "width": 12, "height": 30, @@ -1424,7 +1424,7 @@ "type": "rectangle", "pos": { "x": 1422, - "y": 1377 + "y": 1367 }, "width": 12, "height": 30, @@ -1464,7 +1464,7 @@ "type": "rectangle", "pos": { "x": 1943, - "y": 1467 + "y": 1457 }, "width": 12, "height": 30, @@ -1504,7 +1504,7 @@ "type": "rectangle", "pos": { "x": 1943, - "y": 1557 + "y": 1547 }, "width": 12, "height": 30, @@ -1544,7 +1544,7 @@ "type": "rectangle", "pos": { "x": 443, - "y": 1789 + "y": 1779 }, "width": 112, "height": 66, @@ -1585,7 +1585,7 @@ "type": "queue", "pos": { "x": 1309, - "y": 1789 + "y": 1779 }, "width": 1034, "height": 891, @@ -1626,7 +1626,7 @@ "type": "sequence_diagram", "pos": { "x": 1359, - "y": 1839 + "y": 1829 }, "width": 934, "height": 791, @@ -1667,7 +1667,7 @@ "type": "rectangle", "pos": { "x": 1371, - "y": 1922 + "y": 1912 }, "width": 100, "height": 66, @@ -1708,7 +1708,7 @@ "type": "rectangle", "pos": { "x": 1521, - "y": 1922 + "y": 1912 }, "width": 100, "height": 66, @@ -1749,7 +1749,7 @@ "type": "rectangle", "pos": { "x": 1661, - "y": 1922 + "y": 1912 }, "width": 126, "height": 66, @@ -1790,7 +1790,7 @@ "type": "rectangle", "pos": { "x": 1824, - "y": 1922 + "y": 1912 }, "width": 100, "height": 66, @@ -1831,7 +1831,7 @@ "type": "rectangle", "pos": { "x": 1964, - "y": 1922 + "y": 1912 }, "width": 137, "height": 66, @@ -1872,7 +1872,7 @@ "type": "rectangle", "pos": { "x": 2141, - "y": 1922 + "y": 1912 }, "width": 140, "height": 66, @@ -1913,7 +1913,7 @@ "type": "rectangle", "pos": { "x": 2205, - "y": 2048 + "y": 2038 }, "width": 12, "height": 30, @@ -1953,7 +1953,7 @@ "type": "rectangle", "pos": { "x": 1868, - "y": 2038 + "y": 2028 }, "width": 12, "height": 380, @@ -1993,7 +1993,7 @@ "type": "rectangle", "pos": { "x": 1864, - "y": 2048 + "y": 2038 }, "width": 20, "height": 90, @@ -2033,7 +2033,7 @@ "type": "rectangle", "pos": { "x": 1718, - "y": 2098 + "y": 2088 }, "width": 12, "height": 190, @@ -2073,7 +2073,7 @@ "type": "rectangle", "pos": { "x": 1714, - "y": 2108 + "y": 2098 }, "width": 20, "height": 170, @@ -2113,7 +2113,7 @@ "type": "rectangle", "pos": { "x": 1710, - "y": 2118 + "y": 2108 }, "width": 28, "height": 90, @@ -2153,7 +2153,7 @@ "type": "rectangle", "pos": { "x": 1565, - "y": 2158 + "y": 2148 }, "width": 12, "height": 220, @@ -2193,7 +2193,7 @@ "type": "rectangle", "pos": { "x": 1561, - "y": 2168 + "y": 2158 }, "width": 20, "height": 200, @@ -2233,7 +2233,7 @@ "type": "rectangle", "pos": { "x": 1557, - "y": 2178 + "y": 2168 }, "width": 28, "height": 180, @@ -2273,7 +2273,7 @@ "type": "rectangle", "pos": { "x": 1553, - "y": 2188 + "y": 2178 }, "width": 36, "height": 160, @@ -2313,7 +2313,7 @@ "type": "rectangle", "pos": { "x": 2027, - "y": 2288 + "y": 2278 }, "width": 12, "height": 240, @@ -2353,7 +2353,7 @@ "type": "rectangle", "pos": { "x": 2023, - "y": 2298 + "y": 2288 }, "width": 20, "height": 220, @@ -2393,7 +2393,7 @@ "type": "rectangle", "pos": { "x": 2019, - "y": 2308 + "y": 2298 }, "width": 28, "height": 200, @@ -2433,7 +2433,7 @@ "type": "rectangle", "pos": { "x": 2015, - "y": 2318 + "y": 2308 }, "width": 36, "height": 180, @@ -2473,7 +2473,7 @@ "type": "rectangle", "pos": { "x": 2011, - "y": 2328 + "y": 2318 }, "width": 44, "height": 160, @@ -2513,7 +2513,7 @@ "type": "rectangle", "pos": { "x": 1415, - "y": 2398 + "y": 2388 }, "width": 12, "height": 30, @@ -2553,7 +2553,7 @@ "type": "rectangle", "pos": { "x": 2205, - "y": 2538 + "y": 2528 }, "width": 12, "height": 30, @@ -2616,11 +2616,11 @@ "route": [ { "x": 80, - "y": 509.5 + "y": 499.5 }, { "x": 228, - "y": 509.5 + "y": 499.5 } ], "animated": false, @@ -2654,11 +2654,11 @@ "route": [ { "x": 80, - "y": 599.5 + "y": 589.5 }, { "x": 228, - "y": 599.5 + "y": 589.5 } ], "animated": false, @@ -2692,11 +2692,11 @@ "route": [ { "x": 80, - "y": 689.5 + "y": 679.5 }, { "x": 378, - "y": 689.5 + "y": 679.5 } ], "animated": false, @@ -2730,11 +2730,11 @@ "route": [ { "x": 80, - "y": 779.5 + "y": 769.5 }, { "x": 378, - "y": 779.5 + "y": 769.5 } ], "animated": false, @@ -2768,11 +2768,11 @@ "route": [ { "x": 80, - "y": 869.5 + "y": 859.5 }, { "x": 531, - "y": 869.5 + "y": 859.5 } ], "animated": false, @@ -2806,11 +2806,11 @@ "route": [ { "x": 234, - "y": 949.5 + "y": 939.5 }, { "x": 527, - "y": 949.5 + "y": 939.5 } ], "animated": false, @@ -2844,11 +2844,11 @@ "route": [ { "x": 547, - "y": 1029.5 + "y": 1019.5 }, { "x": 741, - "y": 1029.5 + "y": 1019.5 } ], "animated": false, @@ -2882,11 +2882,11 @@ "route": [ { "x": 74, - "y": 1119.5 + "y": 1109.5 }, { "x": 531, - "y": 1119.5 + "y": 1109.5 } ], "animated": false, @@ -2920,11 +2920,11 @@ "route": [ { "x": 80, - "y": 1209.5 + "y": 1199.5 }, { "x": 899.5, - "y": 1209.5 + "y": 1199.5 } ], "animated": false, @@ -2958,11 +2958,11 @@ "route": [ { "x": 80, - "y": 1299.5 + "y": 1289.5 }, { "x": 378, - "y": 1299.5 + "y": 1289.5 } ], "animated": false, @@ -2996,11 +2996,11 @@ "route": [ { "x": 80, - "y": 1389.5 + "y": 1379.5 }, { "x": 378, - "y": 1389.5 + "y": 1379.5 } ], "animated": false, @@ -3034,11 +3034,11 @@ "route": [ { "x": 80, - "y": 1479.5 + "y": 1469.5 }, { "x": 899.5, - "y": 1479.5 + "y": 1469.5 } ], "animated": false, @@ -3072,11 +3072,11 @@ "route": [ { "x": 80, - "y": 1569.5 + "y": 1559.5 }, { "x": 899.5, - "y": 1569.5 + "y": 1559.5 } ], "animated": false, @@ -3110,11 +3110,11 @@ "route": [ { "x": 1124, - "y": 507 + "y": 497 }, { "x": 1272, - "y": 507 + "y": 497 } ], "animated": false, @@ -3148,11 +3148,11 @@ "route": [ { "x": 1124, - "y": 597 + "y": 587 }, { "x": 1272, - "y": 597 + "y": 587 } ], "animated": false, @@ -3186,11 +3186,11 @@ "route": [ { "x": 1124, - "y": 687 + "y": 677 }, { "x": 1422, - "y": 687 + "y": 677 } ], "animated": false, @@ -3224,11 +3224,11 @@ "route": [ { "x": 1124, - "y": 777 + "y": 767 }, { "x": 1422, - "y": 777 + "y": 767 } ], "animated": false, @@ -3262,11 +3262,11 @@ "route": [ { "x": 1124, - "y": 867 + "y": 857 }, { "x": 1575, - "y": 867 + "y": 857 } ], "animated": false, @@ -3300,11 +3300,11 @@ "route": [ { "x": 1278, - "y": 947 + "y": 937 }, { "x": 1571, - "y": 947 + "y": 937 } ], "animated": false, @@ -3338,11 +3338,11 @@ "route": [ { "x": 1591, - "y": 1027 + "y": 1017 }, { "x": 1785, - "y": 1027 + "y": 1017 } ], "animated": false, @@ -3376,11 +3376,11 @@ "route": [ { "x": 1118, - "y": 1117 + "y": 1107 }, { "x": 1575, - "y": 1117 + "y": 1107 } ], "animated": false, @@ -3414,11 +3414,11 @@ "route": [ { "x": 1124, - "y": 1207 + "y": 1197 }, { "x": 1943.5, - "y": 1207 + "y": 1197 } ], "animated": false, @@ -3452,11 +3452,11 @@ "route": [ { "x": 1124, - "y": 1297 + "y": 1287 }, { "x": 1422, - "y": 1297 + "y": 1287 } ], "animated": false, @@ -3490,11 +3490,11 @@ "route": [ { "x": 1124, - "y": 1387 + "y": 1377 }, { "x": 1422, - "y": 1387 + "y": 1377 } ], "animated": false, @@ -3528,11 +3528,11 @@ "route": [ { "x": 1124, - "y": 1477 + "y": 1467 }, { "x": 1943.5, - "y": 1477 + "y": 1467 } ], "animated": false, @@ -3566,11 +3566,11 @@ "route": [ { "x": 1124, - "y": 1567 + "y": 1557 }, { "x": 1943.5, - "y": 1567 + "y": 1557 } ], "animated": false, @@ -3603,20 +3603,20 @@ "labelPercentage": 0, "route": [ { - "x": 1510, - "y": 134 + "x": 1513, + "y": 125 }, { - "x": 1510.25, - "y": 183 + "x": 1512.75, + "y": 173 }, { "x": 499, - "y": 183 + "y": 173 }, { "x": 499, - "y": 276 + "y": 266 } ], "animated": false, @@ -3650,11 +3650,11 @@ "route": [ { "x": 1543, - "y": 143 + "y": 133 }, { "x": 1543, - "y": 278 + "y": 268 } ], "animated": false, @@ -3688,11 +3688,11 @@ "route": [ { "x": 499, - "y": 1651 + "y": 1641 }, { "x": 499, - "y": 1789 + "y": 1779 } ], "animated": false, @@ -3726,11 +3726,11 @@ "route": [ { "x": 1826.5, - "y": 1649 + "y": 1639 }, { "x": 1826.5, - "y": 1839 + "y": 1829 } ], "animated": false, @@ -3763,20 +3763,20 @@ "labelPercentage": 0, "route": [ { - "x": 1576, - "y": 134 + "x": 1573, + "y": 125 }, { - "x": 1575.75, - "y": 183 + "x": 1573.25, + "y": 173 }, { "x": 2120, - "y": 183 + "y": 173 }, { "x": 2120, - "y": 1789 + "y": 1779 } ], "animated": false, @@ -3810,11 +3810,11 @@ "route": [ { "x": 2205.5, - "y": 2058 + "y": 2048 }, { "x": 1884.5, - "y": 2058 + "y": 2048 } ], "animated": false, @@ -3848,11 +3848,11 @@ "route": [ { "x": 1864.5, - "y": 2128 + "y": 2118 }, { "x": 1738.5, - "y": 2128 + "y": 2118 } ], "animated": false, @@ -3886,11 +3886,11 @@ "route": [ { "x": 1710.5, - "y": 2198 + "y": 2188 }, { "x": 1589.5, - "y": 2198 + "y": 2188 } ], "animated": false, @@ -3924,11 +3924,11 @@ "route": [ { "x": 1868.5, - "y": 2268 + "y": 2258 }, { "x": 1734.5, - "y": 2268 + "y": 2258 } ], "animated": false, @@ -3962,11 +3962,11 @@ "route": [ { "x": 1589.5, - "y": 2338 + "y": 2328 }, { "x": 2011, - "y": 2338 + "y": 2328 } ], "animated": false, @@ -4000,11 +4000,11 @@ "route": [ { "x": 1427.5, - "y": 2408 + "y": 2398 }, { "x": 1868.5, - "y": 2408 + "y": 2398 } ], "animated": false, @@ -4038,11 +4038,11 @@ "route": [ { "x": 2011, - "y": 2478 + "y": 2468 }, { "x": 1421.5, - "y": 2478 + "y": 2468 } ], "animated": false, @@ -4076,11 +4076,11 @@ "route": [ { "x": 1421.5, - "y": 2548 + "y": 2538 }, { "x": 2205.5, - "y": 2548 + "y": 2538 } ], "animated": false, @@ -4114,11 +4114,11 @@ "route": [ { "x": 74, - "y": 429.5 + "y": 419.5 }, { "x": 74, - "y": 1639.5 + "y": 1629.5 } ], "animated": false, @@ -4152,11 +4152,11 @@ "route": [ { "x": 234, - "y": 429.5 + "y": 419.5 }, { "x": 234, - "y": 1639.5 + "y": 1629.5 } ], "animated": false, @@ -4190,11 +4190,11 @@ "route": [ { "x": 384, - "y": 429.5 + "y": 419.5 }, { "x": 384, - "y": 1639.5 + "y": 1629.5 } ], "animated": false, @@ -4228,11 +4228,11 @@ "route": [ { "x": 537, - "y": 429.5 + "y": 419.5 }, { "x": 537, - "y": 1639.5 + "y": 1629.5 } ], "animated": false, @@ -4266,11 +4266,11 @@ "route": [ { "x": 747, - "y": 429.5 + "y": 419.5 }, { "x": 747, - "y": 1639.5 + "y": 1629.5 } ], "animated": false, @@ -4304,11 +4304,11 @@ "route": [ { "x": 905.5, - "y": 429.5 + "y": 419.5 }, { "x": 905.5, - "y": 1639.5 + "y": 1629.5 } ], "animated": false, @@ -4342,11 +4342,11 @@ "route": [ { "x": 1118, - "y": 427 + "y": 417 }, { "x": 1118, - "y": 1637 + "y": 1627 } ], "animated": false, @@ -4380,11 +4380,11 @@ "route": [ { "x": 1278, - "y": 427 + "y": 417 }, { "x": 1278, - "y": 1637 + "y": 1627 } ], "animated": false, @@ -4418,11 +4418,11 @@ "route": [ { "x": 1428, - "y": 427 + "y": 417 }, { "x": 1428, - "y": 1637 + "y": 1627 } ], "animated": false, @@ -4456,11 +4456,11 @@ "route": [ { "x": 1581, - "y": 427 + "y": 417 }, { "x": 1581, - "y": 1637 + "y": 1627 } ], "animated": false, @@ -4494,11 +4494,11 @@ "route": [ { "x": 1791, - "y": 427 + "y": 417 }, { "x": 1791, - "y": 1637 + "y": 1627 } ], "animated": false, @@ -4532,11 +4532,11 @@ "route": [ { "x": 1949.5, - "y": 427 + "y": 417 }, { "x": 1949.5, - "y": 1637 + "y": 1627 } ], "animated": false, @@ -4570,11 +4570,11 @@ "route": [ { "x": 1421.5, - "y": 1988 + "y": 1978 }, { "x": 1421.5, - "y": 2618 + "y": 2608 } ], "animated": false, @@ -4608,11 +4608,11 @@ "route": [ { "x": 1571.5, - "y": 1988 + "y": 1978 }, { "x": 1571.5, - "y": 2618 + "y": 2608 } ], "animated": false, @@ -4646,11 +4646,11 @@ "route": [ { "x": 1724.5, - "y": 1988 + "y": 1978 }, { "x": 1724.5, - "y": 2618 + "y": 2608 } ], "animated": false, @@ -4684,11 +4684,11 @@ "route": [ { "x": 1874.5, - "y": 1988 + "y": 1978 }, { "x": 1874.5, - "y": 2618 + "y": 2608 } ], "animated": false, @@ -4722,11 +4722,11 @@ "route": [ { "x": 2033, - "y": 1988 + "y": 1978 }, { "x": 2033, - "y": 2618 + "y": 2608 } ], "animated": false, @@ -4760,11 +4760,11 @@ "route": [ { "x": 2211.5, - "y": 1988 + "y": 1978 }, { "x": 2211.5, - "y": 2618 + "y": 2608 } ], "animated": false, diff --git a/e2etests/testdata/stable/sequence_diagrams/elk/sketch.exp.svg b/e2etests/testdata/stable/sequence_diagrams/elk/sketch.exp.svg index cc2ea77db3..2a77ceb892 100644 --- a/e2etests/testdata/stable/sequence_diagrams/elk/sketch.exp.svg +++ b/e2etests/testdata/stable/sequence_diagrams/elk/sketch.exp.svg @@ -1,23 +1,23 @@ -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) - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + .d2-3773283351 .fill-N1{fill:#0A0F25;} + .d2-3773283351 .fill-N2{fill:#676C7E;} + .d2-3773283351 .fill-N3{fill:#9499AB;} + .d2-3773283351 .fill-N4{fill:#CFD2DD;} + .d2-3773283351 .fill-N5{fill:#DEE1EB;} + .d2-3773283351 .fill-N6{fill:#EEF1F8;} + .d2-3773283351 .fill-N7{fill:#FFFFFF;} + .d2-3773283351 .fill-B1{fill:#0D32B2;} + .d2-3773283351 .fill-B2{fill:#0D32B2;} + .d2-3773283351 .fill-B3{fill:#E3E9FD;} + .d2-3773283351 .fill-B4{fill:#E3E9FD;} + .d2-3773283351 .fill-B5{fill:#EDF0FD;} + .d2-3773283351 .fill-B6{fill:#F7F8FE;} + .d2-3773283351 .fill-AA2{fill:#4A6FF3;} + .d2-3773283351 .fill-AA4{fill:#EDF0FD;} + .d2-3773283351 .fill-AA5{fill:#F7F8FE;} + .d2-3773283351 .fill-AB4{fill:#EDF0FD;} + .d2-3773283351 .fill-AB5{fill:#F7F8FE;} + .d2-3773283351 .stroke-N1{stroke:#0A0F25;} + .d2-3773283351 .stroke-N2{stroke:#676C7E;} + .d2-3773283351 .stroke-N3{stroke:#9499AB;} + .d2-3773283351 .stroke-N4{stroke:#CFD2DD;} + .d2-3773283351 .stroke-N5{stroke:#DEE1EB;} + .d2-3773283351 .stroke-N6{stroke:#EEF1F8;} + .d2-3773283351 .stroke-N7{stroke:#FFFFFF;} + .d2-3773283351 .stroke-B1{stroke:#0D32B2;} + .d2-3773283351 .stroke-B2{stroke:#0D32B2;} + .d2-3773283351 .stroke-B3{stroke:#E3E9FD;} + .d2-3773283351 .stroke-B4{stroke:#E3E9FD;} + .d2-3773283351 .stroke-B5{stroke:#EDF0FD;} + .d2-3773283351 .stroke-B6{stroke:#F7F8FE;} + .d2-3773283351 .stroke-AA2{stroke:#4A6FF3;} + .d2-3773283351 .stroke-AA4{stroke:#EDF0FD;} + .d2-3773283351 .stroke-AA5{stroke:#F7F8FE;} + .d2-3773283351 .stroke-AB4{stroke:#EDF0FD;} + .d2-3773283351 .stroke-AB5{stroke:#F7F8FE;} + .d2-3773283351 .background-color-N1{background-color:#0A0F25;} + .d2-3773283351 .background-color-N2{background-color:#676C7E;} + .d2-3773283351 .background-color-N3{background-color:#9499AB;} + .d2-3773283351 .background-color-N4{background-color:#CFD2DD;} + .d2-3773283351 .background-color-N5{background-color:#DEE1EB;} + .d2-3773283351 .background-color-N6{background-color:#EEF1F8;} + .d2-3773283351 .background-color-N7{background-color:#FFFFFF;} + .d2-3773283351 .background-color-B1{background-color:#0D32B2;} + .d2-3773283351 .background-color-B2{background-color:#0D32B2;} + .d2-3773283351 .background-color-B3{background-color:#E3E9FD;} + .d2-3773283351 .background-color-B4{background-color:#E3E9FD;} + .d2-3773283351 .background-color-B5{background-color:#EDF0FD;} + .d2-3773283351 .background-color-B6{background-color:#F7F8FE;} + .d2-3773283351 .background-color-AA2{background-color:#4A6FF3;} + .d2-3773283351 .background-color-AA4{background-color:#EDF0FD;} + .d2-3773283351 .background-color-AA5{background-color:#F7F8FE;} + .d2-3773283351 .background-color-AB4{background-color:#EDF0FD;} + .d2-3773283351 .background-color-AB5{background-color:#F7F8FE;} + .d2-3773283351 .color-N1{color:#0A0F25;} + .d2-3773283351 .color-N2{color:#676C7E;} + .d2-3773283351 .color-N3{color:#9499AB;} + .d2-3773283351 .color-N4{color:#CFD2DD;} + .d2-3773283351 .color-N5{color:#DEE1EB;} + .d2-3773283351 .color-N6{color:#EEF1F8;} + .d2-3773283351 .color-N7{color:#FFFFFF;} + .d2-3773283351 .color-B1{color:#0D32B2;} + .d2-3773283351 .color-B2{color:#0D32B2;} + .d2-3773283351 .color-B3{color:#E3E9FD;} + .d2-3773283351 .color-B4{color:#E3E9FD;} + .d2-3773283351 .color-B5{color:#EDF0FD;} + .d2-3773283351 .color-B6{color:#F7F8FE;} + .d2-3773283351 .color-AA2{color:#4A6FF3;} + .d2-3773283351 .color-AA4{color:#EDF0FD;} + .d2-3773283351 .color-AA5{color:#F7F8FE;} + .d2-3773283351 .color-AB4{color:#EDF0FD;} + .d2-3773283351 .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) + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/e2etests/testdata/stable/teleport_grid/dagre/board.exp.json b/e2etests/testdata/stable/teleport_grid/dagre/board.exp.json index eb7a994e1d..63cff4db67 100644 --- a/e2etests/testdata/stable/teleport_grid/dagre/board.exp.json +++ b/e2etests/testdata/stable/teleport_grid/dagre/board.exp.json @@ -8,10 +8,10 @@ "type": "rectangle", "pos": { "x": 0, - "y": 194 + "y": 193 }, - "width": 302, - "height": 520, + "width": 303, + "height": 523, "opacity": 1, "strokeDash": 0, "strokeWidth": 2, @@ -47,7 +47,7 @@ "id": "via", "type": "rectangle", "pos": { - "x": 573, + "x": 574, "y": 149 }, "width": 236, @@ -87,7 +87,7 @@ "id": "teleport", "type": "rectangle", "pos": { - "x": 1080, + "x": 1081, "y": 303 }, "width": 473, @@ -128,7 +128,7 @@ "id": "jita", "type": "rectangle", "pos": { - "x": 2055, + "x": 2056, "y": 0 }, "width": 820, @@ -169,7 +169,7 @@ "id": "infra", "type": "rectangle", "pos": { - "x": 2174, + "x": 2175, "y": 272 }, "width": 582, @@ -210,7 +210,7 @@ "id": "identity provider", "type": "rectangle", "pos": { - "x": 2365, + "x": 2366, "y": 676 }, "width": 201, @@ -264,10 +264,10 @@ "type": "oval", "pos": { "x": 60, - "y": 254 + "y": 253 }, - "width": 182, - "height": 182, + "width": 183, + "height": 183, "opacity": 1, "strokeDash": 0, "strokeWidth": 2, @@ -319,8 +319,8 @@ "x": 60, "y": 476 }, - "width": 182, - "height": 178, + "width": 183, + "height": 180, "opacity": 1, "strokeDash": 0, "strokeWidth": 2, @@ -369,7 +369,7 @@ "id": "via.https", "type": "rectangle", "pos": { - "x": 633, + "x": 634, "y": 209 }, "width": 116, @@ -410,7 +410,7 @@ "id": "via.kubectl", "type": "rectangle", "pos": { - "x": 633, + "x": 634, "y": 315 }, "width": 116, @@ -451,7 +451,7 @@ "id": "via.tsh", "type": "rectangle", "pos": { - "x": 633, + "x": 634, "y": 421 }, "width": 116, @@ -492,7 +492,7 @@ "id": "via.api", "type": "rectangle", "pos": { - "x": 633, + "x": 634, "y": 527 }, "width": 116, @@ -533,7 +533,7 @@ "id": "via.db clients", "type": "rectangle", "pos": { - "x": 633, + "x": 634, "y": 633 }, "width": 116, @@ -574,7 +574,7 @@ "id": "teleport.inp", "type": "text", "pos": { - "x": 1140, + "x": 1141, "y": 363 }, "width": 353, @@ -614,7 +614,7 @@ "id": "teleport.Audit Log", "type": "rectangle", "pos": { - "x": 1140, + "x": 1141, "y": 454 }, "width": 140, @@ -667,7 +667,7 @@ "id": "teleport.Cert Authority", "type": "rectangle", "pos": { - "x": 1320, + "x": 1321, "y": 454 }, "width": 173, @@ -720,7 +720,7 @@ "id": "jita.Slack", "type": "rectangle", "pos": { - "x": 2115, + "x": 2116, "y": 60 }, "width": 110, @@ -773,7 +773,7 @@ "id": "jita.Mattermost", "type": "rectangle", "pos": { - "x": 2265, + "x": 2266, "y": 60 }, "width": 128, @@ -814,7 +814,7 @@ "id": "jita.Jira", "type": "rectangle", "pos": { - "x": 2433, + "x": 2434, "y": 60 }, "width": 72, @@ -855,7 +855,7 @@ "id": "jita.Pagerduty", "type": "rectangle", "pos": { - "x": 2545, + "x": 2546, "y": 60 }, "width": 119, @@ -896,7 +896,7 @@ "id": "jita.Email", "type": "rectangle", "pos": { - "x": 2704, + "x": 2705, "y": 60 }, "width": 111, @@ -949,7 +949,7 @@ "id": "infra.ssh", "type": "rectangle", "pos": { - "x": 2234, + "x": 2235, "y": 332 }, "width": 103, @@ -1002,7 +1002,7 @@ "id": "infra.Kubernetes", "type": "rectangle", "pos": { - "x": 2377, + "x": 2378, "y": 332 }, "width": 152, @@ -1055,7 +1055,7 @@ "id": "infra.My SQL", "type": "rectangle", "pos": { - "x": 2569, + "x": 2570, "y": 332 }, "width": 126, @@ -1108,7 +1108,7 @@ "id": "infra.MongoDB", "type": "rectangle", "pos": { - "x": 2234, + "x": 2235, "y": 464 }, "width": 138, @@ -1161,7 +1161,7 @@ "id": "infra.PSQL", "type": "rectangle", "pos": { - "x": 2412, + "x": 2413, "y": 464 }, "width": 108, @@ -1214,7 +1214,7 @@ "id": "infra.Windows", "type": "rectangle", "pos": { - "x": 2560, + "x": 2561, "y": 464 }, "width": 136, @@ -1290,19 +1290,19 @@ "labelPercentage": 0, "route": [ { - "x": 301.5, + "x": 302.5, "y": 454 }, { - "x": 410.29998779296875, + "x": 411.29998779296875, "y": 454 }, { - "x": 464.70001220703125, + "x": 465.70001220703125, "y": 454 }, { - "x": 573.5, + "x": 574.5, "y": 454 } ], @@ -1337,19 +1337,19 @@ "labelPercentage": 0, "route": [ { - "x": 808.5, + "x": 809.5, "y": 454 }, { - "x": 917.2999877929688, + "x": 918.2999877929688, "y": 454 }, { - "x": 971.7000122070312, + "x": 972.7000122070312, "y": 454 }, { - "x": 1080.5, + "x": 1081.5, "y": 454 } ], @@ -1384,19 +1384,19 @@ "labelPercentage": 0, "route": [ { - "x": 1528.72998046875, + "x": 1529.72998046875, "y": 302.5 }, { - "x": 1748.946044921875, + "x": 1749.946044921875, "y": 145.2989959716797 }, { - "x": 1854.199951171875, + "x": 1855.199951171875, "y": 106 }, { - "x": 2055, + "x": 2056, "y": 106 } ], @@ -1431,19 +1431,19 @@ "labelPercentage": 0, "route": [ { - "x": 1553, + "x": 1554, "y": 449 }, { - "x": 1753.800048828125, + "x": 1754.800048828125, "y": 445 }, { - "x": 1878, + "x": 1879, "y": 444 }, { - "x": 2174, + "x": 2175, "y": 444 } ], @@ -1478,19 +1478,19 @@ "labelPercentage": 0, "route": [ { - "x": 1553, + "x": 1554, "y": 521 }, { - "x": 1753.800048828125, + "x": 1754.800048828125, "y": 578.5999755859375 }, { - "x": 1916.0999755859375, + "x": 1917.0999755859375, "y": 621.0770263671875 }, { - "x": 2364.5, + "x": 2365.5, "y": 733.385986328125 } ], @@ -1525,19 +1525,19 @@ "labelPercentage": 0, "route": [ { - "x": 1553, + "x": 1554, "y": 589 }, { - "x": 1753.800048828125, + "x": 1754.800048828125, "y": 728.2000122070312 }, { - "x": 1916.0999755859375, + "x": 1917.0999755859375, "y": 761.3040161132812 }, { - "x": 2364.5, + "x": 2365.5, "y": 754.52001953125 } ], diff --git a/e2etests/testdata/stable/teleport_grid/dagre/sketch.exp.svg b/e2etests/testdata/stable/teleport_grid/dagre/sketch.exp.svg index 6b5beecbbb..05c327b71c 100644 --- a/e2etests/testdata/stable/teleport_grid/dagre/sketch.exp.svg +++ b/e2etests/testdata/stable/teleport_grid/dagre/sketch.exp.svg @@ -1,27 +1,27 @@ -TeleportJust-in-time Access viaInfrastructureIndentity ProviderEngineersMachinesHTTPS://> kubectl> tsh> apiDB Clients

Identity Native Proxy

-
Audit LogCert AuthoritySlackMattermostJiraPagerdutyEmailsshKubernetesMy SQLMongoDBPSQLWindows all connections audited and logged - - - - - - - - - - - - - - - - - - - - - - - - - - - +TeleportJust-in-time Access viaInfrastructureIndentity ProviderEngineersMachinesHTTPS://> kubectl> tsh> apiDB Clients

Identity Native Proxy

+
Audit LogCert AuthoritySlackMattermostJiraPagerdutyEmailsshKubernetesMy SQLMongoDBPSQLWindows all connections audited and logged + + + + + + + + + + + + + + + + + + + + + + + + + + +
\ No newline at end of file diff --git a/e2etests/testdata/stable/teleport_grid/elk/board.exp.json b/e2etests/testdata/stable/teleport_grid/elk/board.exp.json index 45520c5767..c11aa5ae77 100644 --- a/e2etests/testdata/stable/teleport_grid/elk/board.exp.json +++ b/e2etests/testdata/stable/teleport_grid/elk/board.exp.json @@ -8,10 +8,10 @@ "type": "rectangle", "pos": { "x": 12, - "y": 167 + "y": 165 }, - "width": 302, - "height": 520, + "width": 303, + "height": 523, "opacity": 1, "strokeDash": 0, "strokeWidth": 2, @@ -47,7 +47,7 @@ "id": "via", "type": "rectangle", "pos": { - "x": 384, + "x": 385, "y": 122 }, "width": 236, @@ -87,7 +87,7 @@ "id": "teleport", "type": "rectangle", "pos": { - "x": 690, + "x": 691, "y": 275 }, "width": 473, @@ -128,7 +128,7 @@ "id": "jita", "type": "rectangle", "pos": { - "x": 1945, + "x": 1946, "y": 12 }, "width": 820, @@ -169,7 +169,7 @@ "id": "infra", "type": "rectangle", "pos": { - "x": 1293, + "x": 1294, "y": 150 }, "width": 582, @@ -210,7 +210,7 @@ "id": "identity provider", "type": "rectangle", "pos": { - "x": 1293, + "x": 1294, "y": 514 }, "width": 201, @@ -264,10 +264,10 @@ "type": "oval", "pos": { "x": 72, - "y": 227 + "y": 225 }, - "width": 182, - "height": 182, + "width": 183, + "height": 183, "opacity": 1, "strokeDash": 0, "strokeWidth": 2, @@ -317,10 +317,10 @@ "type": "oval", "pos": { "x": 72, - "y": 449 + "y": 448 }, - "width": 182, - "height": 178, + "width": 183, + "height": 180, "opacity": 1, "strokeDash": 0, "strokeWidth": 2, @@ -369,7 +369,7 @@ "id": "via.https", "type": "rectangle", "pos": { - "x": 444, + "x": 445, "y": 182 }, "width": 116, @@ -410,7 +410,7 @@ "id": "via.kubectl", "type": "rectangle", "pos": { - "x": 444, + "x": 445, "y": 288 }, "width": 116, @@ -451,7 +451,7 @@ "id": "via.tsh", "type": "rectangle", "pos": { - "x": 444, + "x": 445, "y": 394 }, "width": 116, @@ -492,7 +492,7 @@ "id": "via.api", "type": "rectangle", "pos": { - "x": 444, + "x": 445, "y": 500 }, "width": 116, @@ -533,7 +533,7 @@ "id": "via.db clients", "type": "rectangle", "pos": { - "x": 444, + "x": 445, "y": 606 }, "width": 116, @@ -574,7 +574,7 @@ "id": "teleport.inp", "type": "text", "pos": { - "x": 750, + "x": 751, "y": 335 }, "width": 353, @@ -614,7 +614,7 @@ "id": "teleport.Audit Log", "type": "rectangle", "pos": { - "x": 750, + "x": 751, "y": 426 }, "width": 140, @@ -667,7 +667,7 @@ "id": "teleport.Cert Authority", "type": "rectangle", "pos": { - "x": 930, + "x": 931, "y": 426 }, "width": 173, @@ -720,7 +720,7 @@ "id": "jita.Slack", "type": "rectangle", "pos": { - "x": 2005, + "x": 2006, "y": 72 }, "width": 110, @@ -773,7 +773,7 @@ "id": "jita.Mattermost", "type": "rectangle", "pos": { - "x": 2155, + "x": 2156, "y": 72 }, "width": 128, @@ -814,7 +814,7 @@ "id": "jita.Jira", "type": "rectangle", "pos": { - "x": 2323, + "x": 2324, "y": 72 }, "width": 72, @@ -855,7 +855,7 @@ "id": "jita.Pagerduty", "type": "rectangle", "pos": { - "x": 2435, + "x": 2436, "y": 72 }, "width": 119, @@ -896,7 +896,7 @@ "id": "jita.Email", "type": "rectangle", "pos": { - "x": 2594, + "x": 2595, "y": 72 }, "width": 111, @@ -949,7 +949,7 @@ "id": "infra.ssh", "type": "rectangle", "pos": { - "x": 1353, + "x": 1354, "y": 210 }, "width": 103, @@ -1002,7 +1002,7 @@ "id": "infra.Kubernetes", "type": "rectangle", "pos": { - "x": 1496, + "x": 1497, "y": 210 }, "width": 152, @@ -1055,7 +1055,7 @@ "id": "infra.My SQL", "type": "rectangle", "pos": { - "x": 1688, + "x": 1689, "y": 210 }, "width": 126, @@ -1108,7 +1108,7 @@ "id": "infra.MongoDB", "type": "rectangle", "pos": { - "x": 1353, + "x": 1354, "y": 342 }, "width": 138, @@ -1161,7 +1161,7 @@ "id": "infra.PSQL", "type": "rectangle", "pos": { - "x": 1531, + "x": 1532, "y": 342 }, "width": 108, @@ -1214,7 +1214,7 @@ "id": "infra.Windows", "type": "rectangle", "pos": { - "x": 1679, + "x": 1680, "y": 342 }, "width": 136, @@ -1290,11 +1290,11 @@ "labelPercentage": 0, "route": [ { - "x": 314, + "x": 315, "y": 427.0329895019531 }, { - "x": 384, + "x": 385, "y": 427.0329895019531 } ], @@ -1328,11 +1328,11 @@ "labelPercentage": 0, "route": [ { - "x": 620, + "x": 621, "y": 427.0329895019531 }, { - "x": 690, + "x": 691, "y": 427.0329895019531 } ], @@ -1366,19 +1366,19 @@ "labelPercentage": 0, "route": [ { - "x": 1163, + "x": 1164, "y": 336.13299560546875 }, { - "x": 1203, + "x": 1204, "y": 336.13299560546875 }, { - "x": 1203, + "x": 1204, "y": 118 }, { - "x": 1945, + "x": 1946, "y": 118 } ], @@ -1412,11 +1412,11 @@ "labelPercentage": 0, "route": [ { - "x": 1163, + "x": 1164, "y": 396.7330017089844 }, { - "x": 1293, + "x": 1294, "y": 396.7330017089844 } ], @@ -1450,19 +1450,19 @@ "labelPercentage": 0, "route": [ { - "x": 1163, + "x": 1164, "y": 457.3330078125 }, { - "x": 1253, + "x": 1254, "y": 457.3330078125 }, { - "x": 1253, + "x": 1254, "y": 553.3330078125 }, { - "x": 1293, + "x": 1294, "y": 553.3330078125 } ], @@ -1496,19 +1496,19 @@ "labelPercentage": 0, "route": [ { - "x": 1163, + "x": 1164, "y": 517.9329833984375 }, { - "x": 1203, + "x": 1204, "y": 517.9329833984375 }, { - "x": 1203, + "x": 1204, "y": 592.666015625 }, { - "x": 1293, + "x": 1294, "y": 592.666015625 } ], diff --git a/e2etests/testdata/stable/teleport_grid/elk/sketch.exp.svg b/e2etests/testdata/stable/teleport_grid/elk/sketch.exp.svg index 4692466f4a..f588c9403b 100644 --- a/e2etests/testdata/stable/teleport_grid/elk/sketch.exp.svg +++ b/e2etests/testdata/stable/teleport_grid/elk/sketch.exp.svg @@ -1,27 +1,27 @@ -TeleportJust-in-time Access viaInfrastructureIndentity ProviderEngineersMachinesHTTPS://> kubectl> tsh> apiDB Clients

Identity Native Proxy

-
Audit LogCert AuthoritySlackMattermostJiraPagerdutyEmailsshKubernetesMy SQLMongoDBPSQLWindows all connections audited and logged - - - - - - - - - - - - - - - - - - - - - - - - - - - +TeleportJust-in-time Access viaInfrastructureIndentity ProviderEngineersMachinesHTTPS://> kubectl> tsh> apiDB Clients

Identity Native Proxy

+
Audit LogCert AuthoritySlackMattermostJiraPagerdutyEmailsshKubernetesMy SQLMongoDBPSQLWindows all connections audited and logged + + + + + + + + + + + + + + + + + + + + + + + + + + +
\ No newline at end of file diff --git a/e2etests/testdata/todo/shape_set_width_height/elk/board.exp.json b/e2etests/testdata/todo/shape_set_width_height/elk/board.exp.json index 58763e1ec9..a2a6f95ce5 100644 --- a/e2etests/testdata/todo/shape_set_width_height/elk/board.exp.json +++ b/e2etests/testdata/todo/shape_set_width_height/elk/board.exp.json @@ -10,7 +10,7 @@ "x": 12, "y": 12 }, - "width": 1428, + "width": 1388, "height": 411, "opacity": 1, "strokeDash": 0, @@ -49,10 +49,10 @@ "type": "oval", "pos": { "x": 62, - "y": 83 + "y": 108 }, - "width": 268, - "height": 268, + "width": 228, + "height": 218, "opacity": 1, "strokeDash": 0, "strokeWidth": 2, @@ -89,8 +89,8 @@ "id": "containers.circle container.diamond", "type": "diamond", "pos": { - "x": 132, - "y": 206 + "x": 112, + "y": 185 }, "width": 128, "height": 64, @@ -130,7 +130,7 @@ "id": "containers.diamond container", "type": "diamond", "pos": { - "x": 350, + "x": 310, "y": 62 }, "width": 414, @@ -171,7 +171,7 @@ "id": "containers.diamond container.circle", "type": "oval", "pos": { - "x": 493, + "x": 453, "y": 174 }, "width": 128, @@ -212,7 +212,7 @@ "id": "containers.oval container", "type": "oval", "pos": { - "x": 784, + "x": 744, "y": 125 }, "width": 266, @@ -253,7 +253,7 @@ "id": "containers.oval container.hexagon", "type": "hexagon", "pos": { - "x": 853, + "x": 813, "y": 195 }, "width": 128, @@ -294,7 +294,7 @@ "id": "containers.hexagon container", "type": "hexagon", "pos": { - "x": 1070, + "x": 1030, "y": 124 }, "width": 320, @@ -335,7 +335,7 @@ "id": "containers.hexagon container.oval", "type": "oval", "pos": { - "x": 1166, + "x": 1126, "y": 197 }, "width": 128, @@ -376,7 +376,7 @@ "id": "cloud", "type": "cloud", "pos": { - "x": 1460, + "x": 1420, "y": 167 }, "width": 512, @@ -418,7 +418,7 @@ "id": "tall cylinder", "type": "cylinder", "pos": { - "x": 1588, + "x": 1548, "y": 1363 }, "width": 256, @@ -459,7 +459,7 @@ "id": "class2", "type": "class", "pos": { - "x": 1316, + "x": 1276, "y": 693 }, "width": 800, @@ -534,7 +534,7 @@ "id": "users", "type": "sql_table", "pos": { - "x": 1316, + "x": 1276, "y": 1945 }, "width": 800, @@ -718,7 +718,7 @@ "id": "container", "type": "rectangle", "pos": { - "x": 2279, + "x": 2239, "y": 357 }, "width": 114, @@ -759,7 +759,7 @@ "id": "text", "type": "text", "pos": { - "x": 2136, + "x": 2096, "y": 493 }, "width": 400, @@ -799,7 +799,7 @@ "id": "code", "type": "code", "pos": { - "x": 2136, + "x": 2096, "y": 1469 }, "width": 400, @@ -839,7 +839,7 @@ "id": "small code", "type": "code", "pos": { - "x": 2236, + "x": 2196, "y": 1945 }, "width": 199, @@ -902,11 +902,11 @@ "labelPercentage": 0, "route": [ { - "x": 1716, + "x": 1676, "y": 422 }, { - "x": 1716, + "x": 1676, "y": 693 } ], @@ -940,11 +940,11 @@ "labelPercentage": 0, "route": [ { - "x": 1716, + "x": 1676, "y": 1093 }, { - "x": 1716, + "x": 1676, "y": 1363 } ], @@ -978,11 +978,11 @@ "labelPercentage": 0, "route": [ { - "x": 1716, + "x": 1676, "y": 1875 }, { - "x": 1716, + "x": 1676, "y": 1945 } ], @@ -1016,11 +1016,11 @@ "labelPercentage": 0, "route": [ { - "x": 2336, + "x": 2296, "y": 423 }, { - "x": 2336, + "x": 2296, "y": 493 } ], @@ -1054,11 +1054,11 @@ "labelPercentage": 0, "route": [ { - "x": 2336, + "x": 2296, "y": 1293 }, { - "x": 2336, + "x": 2296, "y": 1469 } ], @@ -1092,11 +1092,11 @@ "labelPercentage": 0, "route": [ { - "x": 2336, + "x": 2296, "y": 1769 }, { - "x": 2336, + "x": 2296, "y": 1945 } ], diff --git a/e2etests/testdata/todo/shape_set_width_height/elk/sketch.exp.svg b/e2etests/testdata/todo/shape_set_width_height/elk/sketch.exp.svg index fac4f6fdc0..a8249ac2cf 100644 --- a/e2etests/testdata/todo/shape_set_width_height/elk/sketch.exp.svg +++ b/e2etests/testdata/todo/shape_set_width_height/elk/sketch.exp.svg @@ -1,34 +1,34 @@ -containerscloudtall cylinderclass2-numint-timeoutint-pid+getStatus()Enum+getJobs()Job[]+setTimeout(seconds int)voidusersidintnamestringemailstringpasswordstringlast_logindatetimecontainer

markdown text expanded to 800x400

-
:= 5 +containerscloudtall cylinderclass2-numint-timeoutint-pid+getStatus()Enum+getJobs()Job[]+setTimeout(seconds int)voidusersidintnamestringemailstringpasswordstringlast_logindatetimecontainer

markdown text expanded to 800x400

+
:= 5 := a + 7 -fmt.Printf("%d", b)a := 5 +fmt.Printf("%d", b)a := 5 b := a + 7 -fmt.Printf("%d", b):= 5 +fmt.Printf("%d", b):= 5 := a + 7 -fmt.Printf("%d", b)a := 5 +fmt.Printf("%d", b)a := 5 b := a + 7 -fmt.Printf("%d", b)circle containerdiamond containeroval containerhexagon containerdiamondcirclehexagonoval - - - - - - - - - - - - - - - - +
fmt.Printf("%d", b)
circle containerdiamond containeroval containerhexagon containerdiamondcirclehexagonoval + + + + + + + + + + + + + + + +
\ No newline at end of file diff --git a/lib/shape/shape_circle.go b/lib/shape/shape_circle.go index f009b0fc88..60a36c1693 100644 --- a/lib/shape/shape_circle.go +++ b/lib/shape/shape_circle.go @@ -37,18 +37,22 @@ func (s shapeCircle) AspectRatio1() bool { } func (s shapeCircle) GetDimensionsToFit(width, height, paddingX, paddingY float64) (float64, float64) { - length := math.Max(width+paddingX, height+paddingY) - diameter := math.Ceil(math.Sqrt2 * length) + effectiveWidth := width + 2*paddingX + effectiveHeight := height + 2*paddingY + diameter := math.Ceil(math.Max(effectiveWidth, effectiveHeight)) return diameter, diameter } func (s shapeCircle) GetInsidePlacement(width, height, paddingX, paddingY float64) geo.Point { - project45 := 1 / math.Sqrt2 - r := s.Box.Width / 2 - // we want to offset r-padding/2 away from the center + centerX := s.Box.TopLeft.X + paddingX + centerY := s.Box.TopLeft.Y + paddingY + r := s.Box.Width / 2. + x := centerX - r + y := centerY - r + return geo.Point{ - X: s.Box.TopLeft.X + math.Ceil(r-project45*(r-paddingX/2)), - Y: s.Box.TopLeft.Y + math.Ceil(r-project45*(r-paddingY/2)), + X: math.Ceil(x), + Y: math.Ceil(y), } }