diff --git a/ci/release/changelogs/next.md b/ci/release/changelogs/next.md index 97fa76204f..8f49f02ce2 100644 --- a/ci/release/changelogs/next.md +++ b/ci/release/changelogs/next.md @@ -1,5 +1,6 @@ #### Features 🚀 +- Connections now support `link` [#1955](https://github.com/terrastruct/d2/pull/1955) - Vars: vars in markdown blocks are substituted [#2218](https://github.com/terrastruct/d2/pull/2218) - Markdown: Github-flavored tables work in `md` blocks [#2221](https://github.com/terrastruct/d2/pull/2221) diff --git a/d2compiler/compile.go b/d2compiler/compile.go index fafc71e967..3d46bea2dd 100644 --- a/d2compiler/compile.go +++ b/d2compiler/compile.go @@ -681,6 +681,13 @@ func (c *compiler) compileReserved(attrs *d2graph.Attributes, f *d2ir.Field) { case "classes": } + if attrs.Link != nil && attrs.Label.Value != "" { + u, err := url.ParseRequestURI(attrs.Label.Value) + if err == nil && u.Host != "" { + c.errorf(scalar, "Label cannot be set to URL when link is also set (for security)") + } + } + if attrs.Link != nil && attrs.Tooltip != nil { u, err := url.ParseRequestURI(attrs.Tooltip.Value) if err == nil && u.Host != "" { diff --git a/d2compiler/compile_test.go b/d2compiler/compile_test.go index 9f4e04e49e..d2bcab5c24 100644 --- a/d2compiler/compile_test.go +++ b/d2compiler/compile_test.go @@ -1639,6 +1639,27 @@ a.style.fill: null } }, }, + { + name: "no_url_link_and_path_url_label_concurrently", + text: `x -> y: https://google.com {link: https://not-google.com }`, + expErr: `d2/testdata/d2compiler/TestCompile/no_url_link_and_path_url_label_concurrently.d2:1:35: Label cannot be set to URL when link is also set (for security)`, + }, + { + name: "url_link_and_path_url_label_concurrently", + text: `x -> y: hello world {link: https://google.com}`, + assertions: func(t *testing.T, g *d2graph.Graph) { + if len(g.Edges) != 1 { + t.Fatal(len(g.Edges)) + } + if g.Edges[0].Link.Value != "https://google.com" { + t.Fatal(g.Edges[0].Link.Value) + } + + if g.Edges[0].Label.Value != "hello world" { + t.Fatal(g.Edges[0].Label.Value) + } + }, + }, { name: "nil_scope_obj_regression", diff --git a/d2exporter/export.go b/d2exporter/export.go index d01147af92..0a078a1ff7 100644 --- a/d2exporter/export.go +++ b/d2exporter/export.go @@ -354,6 +354,9 @@ func toConnection(edge *d2graph.Edge, theme *d2themes.Theme) d2target.Connection if edge.Style.Font != nil { connection.FontFamily = edge.Style.Font.Value } + if edge.Link != nil { + connection.Link = edge.Link.Value + } connection.Label = text.Text connection.LabelWidth = text.Dimensions.Width connection.LabelHeight = text.Dimensions.Height diff --git a/d2renderers/d2sketch/testdata/all_shapes/sketch.exp.svg b/d2renderers/d2sketch/testdata/all_shapes/sketch.exp.svg index 06f8a1b8a4..9038c489d5 100644 --- a/d2renderers/d2sketch/testdata/all_shapes/sketch.exp.svg +++ b/d2renderers/d2sketch/testdata/all_shapes/sketch.exp.svg @@ -1,9 +1,9 @@ - + .d2-1948124657 .fill-N1{fill:#0A0F25;} + .d2-1948124657 .fill-N2{fill:#676C7E;} + .d2-1948124657 .fill-N3{fill:#9499AB;} + .d2-1948124657 .fill-N4{fill:#CFD2DD;} + .d2-1948124657 .fill-N5{fill:#DEE1EB;} + .d2-1948124657 .fill-N6{fill:#EEF1F8;} + .d2-1948124657 .fill-N7{fill:#FFFFFF;} + .d2-1948124657 .fill-B1{fill:#0D32B2;} + .d2-1948124657 .fill-B2{fill:#0D32B2;} + .d2-1948124657 .fill-B3{fill:#E3E9FD;} + .d2-1948124657 .fill-B4{fill:#E3E9FD;} + .d2-1948124657 .fill-B5{fill:#EDF0FD;} + .d2-1948124657 .fill-B6{fill:#F7F8FE;} + .d2-1948124657 .fill-AA2{fill:#4A6FF3;} + .d2-1948124657 .fill-AA4{fill:#EDF0FD;} + .d2-1948124657 .fill-AA5{fill:#F7F8FE;} + .d2-1948124657 .fill-AB4{fill:#EDF0FD;} + .d2-1948124657 .fill-AB5{fill:#F7F8FE;} + .d2-1948124657 .stroke-N1{stroke:#0A0F25;} + .d2-1948124657 .stroke-N2{stroke:#676C7E;} + .d2-1948124657 .stroke-N3{stroke:#9499AB;} + .d2-1948124657 .stroke-N4{stroke:#CFD2DD;} + .d2-1948124657 .stroke-N5{stroke:#DEE1EB;} + .d2-1948124657 .stroke-N6{stroke:#EEF1F8;} + .d2-1948124657 .stroke-N7{stroke:#FFFFFF;} + .d2-1948124657 .stroke-B1{stroke:#0D32B2;} + .d2-1948124657 .stroke-B2{stroke:#0D32B2;} + .d2-1948124657 .stroke-B3{stroke:#E3E9FD;} + .d2-1948124657 .stroke-B4{stroke:#E3E9FD;} + .d2-1948124657 .stroke-B5{stroke:#EDF0FD;} + .d2-1948124657 .stroke-B6{stroke:#F7F8FE;} + .d2-1948124657 .stroke-AA2{stroke:#4A6FF3;} + .d2-1948124657 .stroke-AA4{stroke:#EDF0FD;} + .d2-1948124657 .stroke-AA5{stroke:#F7F8FE;} + .d2-1948124657 .stroke-AB4{stroke:#EDF0FD;} + .d2-1948124657 .stroke-AB5{stroke:#F7F8FE;} + .d2-1948124657 .background-color-N1{background-color:#0A0F25;} + .d2-1948124657 .background-color-N2{background-color:#676C7E;} + .d2-1948124657 .background-color-N3{background-color:#9499AB;} + .d2-1948124657 .background-color-N4{background-color:#CFD2DD;} + .d2-1948124657 .background-color-N5{background-color:#DEE1EB;} + .d2-1948124657 .background-color-N6{background-color:#EEF1F8;} + .d2-1948124657 .background-color-N7{background-color:#FFFFFF;} + .d2-1948124657 .background-color-B1{background-color:#0D32B2;} + .d2-1948124657 .background-color-B2{background-color:#0D32B2;} + .d2-1948124657 .background-color-B3{background-color:#E3E9FD;} + .d2-1948124657 .background-color-B4{background-color:#E3E9FD;} + .d2-1948124657 .background-color-B5{background-color:#EDF0FD;} + .d2-1948124657 .background-color-B6{background-color:#F7F8FE;} + .d2-1948124657 .background-color-AA2{background-color:#4A6FF3;} + .d2-1948124657 .background-color-AA4{background-color:#EDF0FD;} + .d2-1948124657 .background-color-AA5{background-color:#F7F8FE;} + .d2-1948124657 .background-color-AB4{background-color:#EDF0FD;} + .d2-1948124657 .background-color-AB5{background-color:#F7F8FE;} + .d2-1948124657 .color-N1{color:#0A0F25;} + .d2-1948124657 .color-N2{color:#676C7E;} + .d2-1948124657 .color-N3{color:#9499AB;} + .d2-1948124657 .color-N4{color:#CFD2DD;} + .d2-1948124657 .color-N5{color:#DEE1EB;} + .d2-1948124657 .color-N6{color:#EEF1F8;} + .d2-1948124657 .color-N7{color:#FFFFFF;} + .d2-1948124657 .color-B1{color:#0D32B2;} + .d2-1948124657 .color-B2{color:#0D32B2;} + .d2-1948124657 .color-B3{color:#E3E9FD;} + .d2-1948124657 .color-B4{color:#E3E9FD;} + .d2-1948124657 .color-B5{color:#EDF0FD;} + .d2-1948124657 .color-B6{color:#F7F8FE;} + .d2-1948124657 .color-AA2{color:#4A6FF3;} + .d2-1948124657 .color-AA4{color:#EDF0FD;} + .d2-1948124657 .color-AA5{color:#F7F8FE;} + .d2-1948124657 .color-AB4{color:#EDF0FD;} + .d2-1948124657 .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/d2renderers/d2sketch/testdata/all_shapes_dark/sketch.exp.svg b/d2renderers/d2sketch/testdata/all_shapes_dark/sketch.exp.svg index 0a41bd7bee..cb85dcde00 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-1948124657 .fill-N1{fill:#CDD6F4;} + .d2-1948124657 .fill-N2{fill:#BAC2DE;} + .d2-1948124657 .fill-N3{fill:#A6ADC8;} + .d2-1948124657 .fill-N4{fill:#585B70;} + .d2-1948124657 .fill-N5{fill:#45475A;} + .d2-1948124657 .fill-N6{fill:#313244;} + .d2-1948124657 .fill-N7{fill:#1E1E2E;} + .d2-1948124657 .fill-B1{fill:#CBA6f7;} + .d2-1948124657 .fill-B2{fill:#CBA6f7;} + .d2-1948124657 .fill-B3{fill:#6C7086;} + .d2-1948124657 .fill-B4{fill:#585B70;} + .d2-1948124657 .fill-B5{fill:#45475A;} + .d2-1948124657 .fill-B6{fill:#313244;} + .d2-1948124657 .fill-AA2{fill:#f38BA8;} + .d2-1948124657 .fill-AA4{fill:#45475A;} + .d2-1948124657 .fill-AA5{fill:#313244;} + .d2-1948124657 .fill-AB4{fill:#45475A;} + .d2-1948124657 .fill-AB5{fill:#313244;} + .d2-1948124657 .stroke-N1{stroke:#CDD6F4;} + .d2-1948124657 .stroke-N2{stroke:#BAC2DE;} + .d2-1948124657 .stroke-N3{stroke:#A6ADC8;} + .d2-1948124657 .stroke-N4{stroke:#585B70;} + .d2-1948124657 .stroke-N5{stroke:#45475A;} + .d2-1948124657 .stroke-N6{stroke:#313244;} + .d2-1948124657 .stroke-N7{stroke:#1E1E2E;} + .d2-1948124657 .stroke-B1{stroke:#CBA6f7;} + .d2-1948124657 .stroke-B2{stroke:#CBA6f7;} + .d2-1948124657 .stroke-B3{stroke:#6C7086;} + .d2-1948124657 .stroke-B4{stroke:#585B70;} + .d2-1948124657 .stroke-B5{stroke:#45475A;} + .d2-1948124657 .stroke-B6{stroke:#313244;} + .d2-1948124657 .stroke-AA2{stroke:#f38BA8;} + .d2-1948124657 .stroke-AA4{stroke:#45475A;} + .d2-1948124657 .stroke-AA5{stroke:#313244;} + .d2-1948124657 .stroke-AB4{stroke:#45475A;} + .d2-1948124657 .stroke-AB5{stroke:#313244;} + .d2-1948124657 .background-color-N1{background-color:#CDD6F4;} + .d2-1948124657 .background-color-N2{background-color:#BAC2DE;} + .d2-1948124657 .background-color-N3{background-color:#A6ADC8;} + .d2-1948124657 .background-color-N4{background-color:#585B70;} + .d2-1948124657 .background-color-N5{background-color:#45475A;} + .d2-1948124657 .background-color-N6{background-color:#313244;} + .d2-1948124657 .background-color-N7{background-color:#1E1E2E;} + .d2-1948124657 .background-color-B1{background-color:#CBA6f7;} + .d2-1948124657 .background-color-B2{background-color:#CBA6f7;} + .d2-1948124657 .background-color-B3{background-color:#6C7086;} + .d2-1948124657 .background-color-B4{background-color:#585B70;} + .d2-1948124657 .background-color-B5{background-color:#45475A;} + .d2-1948124657 .background-color-B6{background-color:#313244;} + .d2-1948124657 .background-color-AA2{background-color:#f38BA8;} + .d2-1948124657 .background-color-AA4{background-color:#45475A;} + .d2-1948124657 .background-color-AA5{background-color:#313244;} + .d2-1948124657 .background-color-AB4{background-color:#45475A;} + .d2-1948124657 .background-color-AB5{background-color:#313244;} + .d2-1948124657 .color-N1{color:#CDD6F4;} + .d2-1948124657 .color-N2{color:#BAC2DE;} + .d2-1948124657 .color-N3{color:#A6ADC8;} + .d2-1948124657 .color-N4{color:#585B70;} + .d2-1948124657 .color-N5{color:#45475A;} + .d2-1948124657 .color-N6{color:#313244;} + .d2-1948124657 .color-N7{color:#1E1E2E;} + .d2-1948124657 .color-B1{color:#CBA6f7;} + .d2-1948124657 .color-B2{color:#CBA6f7;} + .d2-1948124657 .color-B3{color:#6C7086;} + .d2-1948124657 .color-B4{color:#585B70;} + .d2-1948124657 .color-B5{color:#45475A;} + .d2-1948124657 .color-B6{color:#313244;} + .d2-1948124657 .color-AA2{color:#f38BA8;} + .d2-1948124657 .color-AA4{color:#45475A;} + .d2-1948124657 .color-AA5{color:#313244;} + .d2-1948124657 .color-AB4{color:#45475A;} + .d2-1948124657 .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 diff --git a/d2renderers/d2sketch/testdata/animated/sketch.exp.svg b/d2renderers/d2sketch/testdata/animated/sketch.exp.svg index 585694d7b0..0d55e7bd00 100644 --- a/d2renderers/d2sketch/testdata/animated/sketch.exp.svg +++ b/d2renderers/d2sketch/testdata/animated/sketch.exp.svg @@ -1,9 +1,9 @@ - + .d2-1579070777 .fill-N1{fill:#0A0F25;} + .d2-1579070777 .fill-N2{fill:#676C7E;} + .d2-1579070777 .fill-N3{fill:#9499AB;} + .d2-1579070777 .fill-N4{fill:#CFD2DD;} + .d2-1579070777 .fill-N5{fill:#DEE1EB;} + .d2-1579070777 .fill-N6{fill:#EEF1F8;} + .d2-1579070777 .fill-N7{fill:#FFFFFF;} + .d2-1579070777 .fill-B1{fill:#0D32B2;} + .d2-1579070777 .fill-B2{fill:#0D32B2;} + .d2-1579070777 .fill-B3{fill:#E3E9FD;} + .d2-1579070777 .fill-B4{fill:#E3E9FD;} + .d2-1579070777 .fill-B5{fill:#EDF0FD;} + .d2-1579070777 .fill-B6{fill:#F7F8FE;} + .d2-1579070777 .fill-AA2{fill:#4A6FF3;} + .d2-1579070777 .fill-AA4{fill:#EDF0FD;} + .d2-1579070777 .fill-AA5{fill:#F7F8FE;} + .d2-1579070777 .fill-AB4{fill:#EDF0FD;} + .d2-1579070777 .fill-AB5{fill:#F7F8FE;} + .d2-1579070777 .stroke-N1{stroke:#0A0F25;} + .d2-1579070777 .stroke-N2{stroke:#676C7E;} + .d2-1579070777 .stroke-N3{stroke:#9499AB;} + .d2-1579070777 .stroke-N4{stroke:#CFD2DD;} + .d2-1579070777 .stroke-N5{stroke:#DEE1EB;} + .d2-1579070777 .stroke-N6{stroke:#EEF1F8;} + .d2-1579070777 .stroke-N7{stroke:#FFFFFF;} + .d2-1579070777 .stroke-B1{stroke:#0D32B2;} + .d2-1579070777 .stroke-B2{stroke:#0D32B2;} + .d2-1579070777 .stroke-B3{stroke:#E3E9FD;} + .d2-1579070777 .stroke-B4{stroke:#E3E9FD;} + .d2-1579070777 .stroke-B5{stroke:#EDF0FD;} + .d2-1579070777 .stroke-B6{stroke:#F7F8FE;} + .d2-1579070777 .stroke-AA2{stroke:#4A6FF3;} + .d2-1579070777 .stroke-AA4{stroke:#EDF0FD;} + .d2-1579070777 .stroke-AA5{stroke:#F7F8FE;} + .d2-1579070777 .stroke-AB4{stroke:#EDF0FD;} + .d2-1579070777 .stroke-AB5{stroke:#F7F8FE;} + .d2-1579070777 .background-color-N1{background-color:#0A0F25;} + .d2-1579070777 .background-color-N2{background-color:#676C7E;} + .d2-1579070777 .background-color-N3{background-color:#9499AB;} + .d2-1579070777 .background-color-N4{background-color:#CFD2DD;} + .d2-1579070777 .background-color-N5{background-color:#DEE1EB;} + .d2-1579070777 .background-color-N6{background-color:#EEF1F8;} + .d2-1579070777 .background-color-N7{background-color:#FFFFFF;} + .d2-1579070777 .background-color-B1{background-color:#0D32B2;} + .d2-1579070777 .background-color-B2{background-color:#0D32B2;} + .d2-1579070777 .background-color-B3{background-color:#E3E9FD;} + .d2-1579070777 .background-color-B4{background-color:#E3E9FD;} + .d2-1579070777 .background-color-B5{background-color:#EDF0FD;} + .d2-1579070777 .background-color-B6{background-color:#F7F8FE;} + .d2-1579070777 .background-color-AA2{background-color:#4A6FF3;} + .d2-1579070777 .background-color-AA4{background-color:#EDF0FD;} + .d2-1579070777 .background-color-AA5{background-color:#F7F8FE;} + .d2-1579070777 .background-color-AB4{background-color:#EDF0FD;} + .d2-1579070777 .background-color-AB5{background-color:#F7F8FE;} + .d2-1579070777 .color-N1{color:#0A0F25;} + .d2-1579070777 .color-N2{color:#676C7E;} + .d2-1579070777 .color-N3{color:#9499AB;} + .d2-1579070777 .color-N4{color:#CFD2DD;} + .d2-1579070777 .color-N5{color:#DEE1EB;} + .d2-1579070777 .color-N6{color:#EEF1F8;} + .d2-1579070777 .color-N7{color:#FFFFFF;} + .d2-1579070777 .color-B1{color:#0D32B2;} + .d2-1579070777 .color-B2{color:#0D32B2;} + .d2-1579070777 .color-B3{color:#E3E9FD;} + .d2-1579070777 .color-B4{color:#E3E9FD;} + .d2-1579070777 .color-B5{color:#EDF0FD;} + .d2-1579070777 .color-B6{color:#F7F8FE;} + .d2-1579070777 .color-AA2{color:#4A6FF3;} + .d2-1579070777 .color-AA4{color:#EDF0FD;} + .d2-1579070777 .color-AA5{color:#F7F8FE;} + .d2-1579070777 .color-AB4{color:#EDF0FD;} + .d2-1579070777 .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}]]> @@ -110,7 +110,7 @@ -wintersummertreessnowsun +wintersummertreessnowsun diff --git a/d2renderers/d2sketch/testdata/animated_dark/sketch.exp.svg b/d2renderers/d2sketch/testdata/animated_dark/sketch.exp.svg index 2df3ecd845..e7de2f15d7 100644 --- a/d2renderers/d2sketch/testdata/animated_dark/sketch.exp.svg +++ b/d2renderers/d2sketch/testdata/animated_dark/sketch.exp.svg @@ -1,9 +1,9 @@ - + .d2-1579070777 .fill-N1{fill:#CDD6F4;} + .d2-1579070777 .fill-N2{fill:#BAC2DE;} + .d2-1579070777 .fill-N3{fill:#A6ADC8;} + .d2-1579070777 .fill-N4{fill:#585B70;} + .d2-1579070777 .fill-N5{fill:#45475A;} + .d2-1579070777 .fill-N6{fill:#313244;} + .d2-1579070777 .fill-N7{fill:#1E1E2E;} + .d2-1579070777 .fill-B1{fill:#CBA6f7;} + .d2-1579070777 .fill-B2{fill:#CBA6f7;} + .d2-1579070777 .fill-B3{fill:#6C7086;} + .d2-1579070777 .fill-B4{fill:#585B70;} + .d2-1579070777 .fill-B5{fill:#45475A;} + .d2-1579070777 .fill-B6{fill:#313244;} + .d2-1579070777 .fill-AA2{fill:#f38BA8;} + .d2-1579070777 .fill-AA4{fill:#45475A;} + .d2-1579070777 .fill-AA5{fill:#313244;} + .d2-1579070777 .fill-AB4{fill:#45475A;} + .d2-1579070777 .fill-AB5{fill:#313244;} + .d2-1579070777 .stroke-N1{stroke:#CDD6F4;} + .d2-1579070777 .stroke-N2{stroke:#BAC2DE;} + .d2-1579070777 .stroke-N3{stroke:#A6ADC8;} + .d2-1579070777 .stroke-N4{stroke:#585B70;} + .d2-1579070777 .stroke-N5{stroke:#45475A;} + .d2-1579070777 .stroke-N6{stroke:#313244;} + .d2-1579070777 .stroke-N7{stroke:#1E1E2E;} + .d2-1579070777 .stroke-B1{stroke:#CBA6f7;} + .d2-1579070777 .stroke-B2{stroke:#CBA6f7;} + .d2-1579070777 .stroke-B3{stroke:#6C7086;} + .d2-1579070777 .stroke-B4{stroke:#585B70;} + .d2-1579070777 .stroke-B5{stroke:#45475A;} + .d2-1579070777 .stroke-B6{stroke:#313244;} + .d2-1579070777 .stroke-AA2{stroke:#f38BA8;} + .d2-1579070777 .stroke-AA4{stroke:#45475A;} + .d2-1579070777 .stroke-AA5{stroke:#313244;} + .d2-1579070777 .stroke-AB4{stroke:#45475A;} + .d2-1579070777 .stroke-AB5{stroke:#313244;} + .d2-1579070777 .background-color-N1{background-color:#CDD6F4;} + .d2-1579070777 .background-color-N2{background-color:#BAC2DE;} + .d2-1579070777 .background-color-N3{background-color:#A6ADC8;} + .d2-1579070777 .background-color-N4{background-color:#585B70;} + .d2-1579070777 .background-color-N5{background-color:#45475A;} + .d2-1579070777 .background-color-N6{background-color:#313244;} + .d2-1579070777 .background-color-N7{background-color:#1E1E2E;} + .d2-1579070777 .background-color-B1{background-color:#CBA6f7;} + .d2-1579070777 .background-color-B2{background-color:#CBA6f7;} + .d2-1579070777 .background-color-B3{background-color:#6C7086;} + .d2-1579070777 .background-color-B4{background-color:#585B70;} + .d2-1579070777 .background-color-B5{background-color:#45475A;} + .d2-1579070777 .background-color-B6{background-color:#313244;} + .d2-1579070777 .background-color-AA2{background-color:#f38BA8;} + .d2-1579070777 .background-color-AA4{background-color:#45475A;} + .d2-1579070777 .background-color-AA5{background-color:#313244;} + .d2-1579070777 .background-color-AB4{background-color:#45475A;} + .d2-1579070777 .background-color-AB5{background-color:#313244;} + .d2-1579070777 .color-N1{color:#CDD6F4;} + .d2-1579070777 .color-N2{color:#BAC2DE;} + .d2-1579070777 .color-N3{color:#A6ADC8;} + .d2-1579070777 .color-N4{color:#585B70;} + .d2-1579070777 .color-N5{color:#45475A;} + .d2-1579070777 .color-N6{color:#313244;} + .d2-1579070777 .color-N7{color:#1E1E2E;} + .d2-1579070777 .color-B1{color:#CBA6f7;} + .d2-1579070777 .color-B2{color:#CBA6f7;} + .d2-1579070777 .color-B3{color:#6C7086;} + .d2-1579070777 .color-B4{color:#585B70;} + .d2-1579070777 .color-B5{color:#45475A;} + .d2-1579070777 .color-B6{color:#313244;} + .d2-1579070777 .color-AA2{color:#f38BA8;} + .d2-1579070777 .color-AA4{color:#45475A;} + .d2-1579070777 .color-AA5{color:#313244;} + .d2-1579070777 .color-AB4{color:#45475A;} + .d2-1579070777 .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}]]> -wintersummertreessnowsun +wintersummertreessnowsun diff --git a/d2renderers/d2sketch/testdata/arrowheads/sketch.exp.svg b/d2renderers/d2sketch/testdata/arrowheads/sketch.exp.svg index d35bcca77e..ed55dac4e5 100644 --- a/d2renderers/d2sketch/testdata/arrowheads/sketch.exp.svg +++ b/d2renderers/d2sketch/testdata/arrowheads/sketch.exp.svg @@ -1,16 +1,16 @@ - + .d2-2630768955 .fill-N1{fill:#0A0F25;} + .d2-2630768955 .fill-N2{fill:#676C7E;} + .d2-2630768955 .fill-N3{fill:#9499AB;} + .d2-2630768955 .fill-N4{fill:#CFD2DD;} + .d2-2630768955 .fill-N5{fill:#DEE1EB;} + .d2-2630768955 .fill-N6{fill:#EEF1F8;} + .d2-2630768955 .fill-N7{fill:#FFFFFF;} + .d2-2630768955 .fill-B1{fill:#0D32B2;} + .d2-2630768955 .fill-B2{fill:#0D32B2;} + .d2-2630768955 .fill-B3{fill:#E3E9FD;} + .d2-2630768955 .fill-B4{fill:#E3E9FD;} + .d2-2630768955 .fill-B5{fill:#EDF0FD;} + .d2-2630768955 .fill-B6{fill:#F7F8FE;} + .d2-2630768955 .fill-AA2{fill:#4A6FF3;} + .d2-2630768955 .fill-AA4{fill:#EDF0FD;} + .d2-2630768955 .fill-AA5{fill:#F7F8FE;} + .d2-2630768955 .fill-AB4{fill:#EDF0FD;} + .d2-2630768955 .fill-AB5{fill:#F7F8FE;} + .d2-2630768955 .stroke-N1{stroke:#0A0F25;} + .d2-2630768955 .stroke-N2{stroke:#676C7E;} + .d2-2630768955 .stroke-N3{stroke:#9499AB;} + .d2-2630768955 .stroke-N4{stroke:#CFD2DD;} + .d2-2630768955 .stroke-N5{stroke:#DEE1EB;} + .d2-2630768955 .stroke-N6{stroke:#EEF1F8;} + .d2-2630768955 .stroke-N7{stroke:#FFFFFF;} + .d2-2630768955 .stroke-B1{stroke:#0D32B2;} + .d2-2630768955 .stroke-B2{stroke:#0D32B2;} + .d2-2630768955 .stroke-B3{stroke:#E3E9FD;} + .d2-2630768955 .stroke-B4{stroke:#E3E9FD;} + .d2-2630768955 .stroke-B5{stroke:#EDF0FD;} + .d2-2630768955 .stroke-B6{stroke:#F7F8FE;} + .d2-2630768955 .stroke-AA2{stroke:#4A6FF3;} + .d2-2630768955 .stroke-AA4{stroke:#EDF0FD;} + .d2-2630768955 .stroke-AA5{stroke:#F7F8FE;} + .d2-2630768955 .stroke-AB4{stroke:#EDF0FD;} + .d2-2630768955 .stroke-AB5{stroke:#F7F8FE;} + .d2-2630768955 .background-color-N1{background-color:#0A0F25;} + .d2-2630768955 .background-color-N2{background-color:#676C7E;} + .d2-2630768955 .background-color-N3{background-color:#9499AB;} + .d2-2630768955 .background-color-N4{background-color:#CFD2DD;} + .d2-2630768955 .background-color-N5{background-color:#DEE1EB;} + .d2-2630768955 .background-color-N6{background-color:#EEF1F8;} + .d2-2630768955 .background-color-N7{background-color:#FFFFFF;} + .d2-2630768955 .background-color-B1{background-color:#0D32B2;} + .d2-2630768955 .background-color-B2{background-color:#0D32B2;} + .d2-2630768955 .background-color-B3{background-color:#E3E9FD;} + .d2-2630768955 .background-color-B4{background-color:#E3E9FD;} + .d2-2630768955 .background-color-B5{background-color:#EDF0FD;} + .d2-2630768955 .background-color-B6{background-color:#F7F8FE;} + .d2-2630768955 .background-color-AA2{background-color:#4A6FF3;} + .d2-2630768955 .background-color-AA4{background-color:#EDF0FD;} + .d2-2630768955 .background-color-AA5{background-color:#F7F8FE;} + .d2-2630768955 .background-color-AB4{background-color:#EDF0FD;} + .d2-2630768955 .background-color-AB5{background-color:#F7F8FE;} + .d2-2630768955 .color-N1{color:#0A0F25;} + .d2-2630768955 .color-N2{color:#676C7E;} + .d2-2630768955 .color-N3{color:#9499AB;} + .d2-2630768955 .color-N4{color:#CFD2DD;} + .d2-2630768955 .color-N5{color:#DEE1EB;} + .d2-2630768955 .color-N6{color:#EEF1F8;} + .d2-2630768955 .color-N7{color:#FFFFFF;} + .d2-2630768955 .color-B1{color:#0D32B2;} + .d2-2630768955 .color-B2{color:#0D32B2;} + .d2-2630768955 .color-B3{color:#E3E9FD;} + .d2-2630768955 .color-B4{color:#E3E9FD;} + .d2-2630768955 .color-B5{color:#EDF0FD;} + .d2-2630768955 .color-B6{color:#F7F8FE;} + .d2-2630768955 .color-AA2{color:#4A6FF3;} + .d2-2630768955 .color-AA4{color:#EDF0FD;} + .d2-2630768955 .color-AA5{color:#F7F8FE;} + .d2-2630768955 .color-AB4{color:#EDF0FD;} + .d2-2630768955 .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}]]> @@ -104,7 +104,7 @@ -112233445566778899none arrow triangle diamond diamond filled cf-many cf-many-required cf-one cf-one-required +112233445566778899none arrow triangle diamond diamond filled cf-many cf-many-required cf-one cf-one-required diff --git a/d2renderers/d2sketch/testdata/arrowheads_dark/sketch.exp.svg b/d2renderers/d2sketch/testdata/arrowheads_dark/sketch.exp.svg index 9fe95f0210..a8eda4233f 100644 --- a/d2renderers/d2sketch/testdata/arrowheads_dark/sketch.exp.svg +++ b/d2renderers/d2sketch/testdata/arrowheads_dark/sketch.exp.svg @@ -1,16 +1,16 @@ - + .d2-2630768955 .fill-N1{fill:#CDD6F4;} + .d2-2630768955 .fill-N2{fill:#BAC2DE;} + .d2-2630768955 .fill-N3{fill:#A6ADC8;} + .d2-2630768955 .fill-N4{fill:#585B70;} + .d2-2630768955 .fill-N5{fill:#45475A;} + .d2-2630768955 .fill-N6{fill:#313244;} + .d2-2630768955 .fill-N7{fill:#1E1E2E;} + .d2-2630768955 .fill-B1{fill:#CBA6f7;} + .d2-2630768955 .fill-B2{fill:#CBA6f7;} + .d2-2630768955 .fill-B3{fill:#6C7086;} + .d2-2630768955 .fill-B4{fill:#585B70;} + .d2-2630768955 .fill-B5{fill:#45475A;} + .d2-2630768955 .fill-B6{fill:#313244;} + .d2-2630768955 .fill-AA2{fill:#f38BA8;} + .d2-2630768955 .fill-AA4{fill:#45475A;} + .d2-2630768955 .fill-AA5{fill:#313244;} + .d2-2630768955 .fill-AB4{fill:#45475A;} + .d2-2630768955 .fill-AB5{fill:#313244;} + .d2-2630768955 .stroke-N1{stroke:#CDD6F4;} + .d2-2630768955 .stroke-N2{stroke:#BAC2DE;} + .d2-2630768955 .stroke-N3{stroke:#A6ADC8;} + .d2-2630768955 .stroke-N4{stroke:#585B70;} + .d2-2630768955 .stroke-N5{stroke:#45475A;} + .d2-2630768955 .stroke-N6{stroke:#313244;} + .d2-2630768955 .stroke-N7{stroke:#1E1E2E;} + .d2-2630768955 .stroke-B1{stroke:#CBA6f7;} + .d2-2630768955 .stroke-B2{stroke:#CBA6f7;} + .d2-2630768955 .stroke-B3{stroke:#6C7086;} + .d2-2630768955 .stroke-B4{stroke:#585B70;} + .d2-2630768955 .stroke-B5{stroke:#45475A;} + .d2-2630768955 .stroke-B6{stroke:#313244;} + .d2-2630768955 .stroke-AA2{stroke:#f38BA8;} + .d2-2630768955 .stroke-AA4{stroke:#45475A;} + .d2-2630768955 .stroke-AA5{stroke:#313244;} + .d2-2630768955 .stroke-AB4{stroke:#45475A;} + .d2-2630768955 .stroke-AB5{stroke:#313244;} + .d2-2630768955 .background-color-N1{background-color:#CDD6F4;} + .d2-2630768955 .background-color-N2{background-color:#BAC2DE;} + .d2-2630768955 .background-color-N3{background-color:#A6ADC8;} + .d2-2630768955 .background-color-N4{background-color:#585B70;} + .d2-2630768955 .background-color-N5{background-color:#45475A;} + .d2-2630768955 .background-color-N6{background-color:#313244;} + .d2-2630768955 .background-color-N7{background-color:#1E1E2E;} + .d2-2630768955 .background-color-B1{background-color:#CBA6f7;} + .d2-2630768955 .background-color-B2{background-color:#CBA6f7;} + .d2-2630768955 .background-color-B3{background-color:#6C7086;} + .d2-2630768955 .background-color-B4{background-color:#585B70;} + .d2-2630768955 .background-color-B5{background-color:#45475A;} + .d2-2630768955 .background-color-B6{background-color:#313244;} + .d2-2630768955 .background-color-AA2{background-color:#f38BA8;} + .d2-2630768955 .background-color-AA4{background-color:#45475A;} + .d2-2630768955 .background-color-AA5{background-color:#313244;} + .d2-2630768955 .background-color-AB4{background-color:#45475A;} + .d2-2630768955 .background-color-AB5{background-color:#313244;} + .d2-2630768955 .color-N1{color:#CDD6F4;} + .d2-2630768955 .color-N2{color:#BAC2DE;} + .d2-2630768955 .color-N3{color:#A6ADC8;} + .d2-2630768955 .color-N4{color:#585B70;} + .d2-2630768955 .color-N5{color:#45475A;} + .d2-2630768955 .color-N6{color:#313244;} + .d2-2630768955 .color-N7{color:#1E1E2E;} + .d2-2630768955 .color-B1{color:#CBA6f7;} + .d2-2630768955 .color-B2{color:#CBA6f7;} + .d2-2630768955 .color-B3{color:#6C7086;} + .d2-2630768955 .color-B4{color:#585B70;} + .d2-2630768955 .color-B5{color:#45475A;} + .d2-2630768955 .color-B6{color:#313244;} + .d2-2630768955 .color-AA2{color:#f38BA8;} + .d2-2630768955 .color-AA4{color:#45475A;} + .d2-2630768955 .color-AA5{color:#313244;} + .d2-2630768955 .color-AB4{color:#45475A;} + .d2-2630768955 .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}]]> -112233445566778899none arrow triangle diamond diamond filled cf-many cf-many-required cf-one cf-one-required +112233445566778899none arrow triangle diamond diamond filled cf-many cf-many-required cf-one cf-one-required diff --git a/d2renderers/d2sketch/testdata/basic/sketch.exp.svg b/d2renderers/d2sketch/testdata/basic/sketch.exp.svg index 023190b0d1..9d05b405ca 100644 --- a/d2renderers/d2sketch/testdata/basic/sketch.exp.svg +++ b/d2renderers/d2sketch/testdata/basic/sketch.exp.svg @@ -1,9 +1,9 @@ - + .d2-3451263933 .fill-N1{fill:#0A0F25;} + .d2-3451263933 .fill-N2{fill:#676C7E;} + .d2-3451263933 .fill-N3{fill:#9499AB;} + .d2-3451263933 .fill-N4{fill:#CFD2DD;} + .d2-3451263933 .fill-N5{fill:#DEE1EB;} + .d2-3451263933 .fill-N6{fill:#EEF1F8;} + .d2-3451263933 .fill-N7{fill:#FFFFFF;} + .d2-3451263933 .fill-B1{fill:#0D32B2;} + .d2-3451263933 .fill-B2{fill:#0D32B2;} + .d2-3451263933 .fill-B3{fill:#E3E9FD;} + .d2-3451263933 .fill-B4{fill:#E3E9FD;} + .d2-3451263933 .fill-B5{fill:#EDF0FD;} + .d2-3451263933 .fill-B6{fill:#F7F8FE;} + .d2-3451263933 .fill-AA2{fill:#4A6FF3;} + .d2-3451263933 .fill-AA4{fill:#EDF0FD;} + .d2-3451263933 .fill-AA5{fill:#F7F8FE;} + .d2-3451263933 .fill-AB4{fill:#EDF0FD;} + .d2-3451263933 .fill-AB5{fill:#F7F8FE;} + .d2-3451263933 .stroke-N1{stroke:#0A0F25;} + .d2-3451263933 .stroke-N2{stroke:#676C7E;} + .d2-3451263933 .stroke-N3{stroke:#9499AB;} + .d2-3451263933 .stroke-N4{stroke:#CFD2DD;} + .d2-3451263933 .stroke-N5{stroke:#DEE1EB;} + .d2-3451263933 .stroke-N6{stroke:#EEF1F8;} + .d2-3451263933 .stroke-N7{stroke:#FFFFFF;} + .d2-3451263933 .stroke-B1{stroke:#0D32B2;} + .d2-3451263933 .stroke-B2{stroke:#0D32B2;} + .d2-3451263933 .stroke-B3{stroke:#E3E9FD;} + .d2-3451263933 .stroke-B4{stroke:#E3E9FD;} + .d2-3451263933 .stroke-B5{stroke:#EDF0FD;} + .d2-3451263933 .stroke-B6{stroke:#F7F8FE;} + .d2-3451263933 .stroke-AA2{stroke:#4A6FF3;} + .d2-3451263933 .stroke-AA4{stroke:#EDF0FD;} + .d2-3451263933 .stroke-AA5{stroke:#F7F8FE;} + .d2-3451263933 .stroke-AB4{stroke:#EDF0FD;} + .d2-3451263933 .stroke-AB5{stroke:#F7F8FE;} + .d2-3451263933 .background-color-N1{background-color:#0A0F25;} + .d2-3451263933 .background-color-N2{background-color:#676C7E;} + .d2-3451263933 .background-color-N3{background-color:#9499AB;} + .d2-3451263933 .background-color-N4{background-color:#CFD2DD;} + .d2-3451263933 .background-color-N5{background-color:#DEE1EB;} + .d2-3451263933 .background-color-N6{background-color:#EEF1F8;} + .d2-3451263933 .background-color-N7{background-color:#FFFFFF;} + .d2-3451263933 .background-color-B1{background-color:#0D32B2;} + .d2-3451263933 .background-color-B2{background-color:#0D32B2;} + .d2-3451263933 .background-color-B3{background-color:#E3E9FD;} + .d2-3451263933 .background-color-B4{background-color:#E3E9FD;} + .d2-3451263933 .background-color-B5{background-color:#EDF0FD;} + .d2-3451263933 .background-color-B6{background-color:#F7F8FE;} + .d2-3451263933 .background-color-AA2{background-color:#4A6FF3;} + .d2-3451263933 .background-color-AA4{background-color:#EDF0FD;} + .d2-3451263933 .background-color-AA5{background-color:#F7F8FE;} + .d2-3451263933 .background-color-AB4{background-color:#EDF0FD;} + .d2-3451263933 .background-color-AB5{background-color:#F7F8FE;} + .d2-3451263933 .color-N1{color:#0A0F25;} + .d2-3451263933 .color-N2{color:#676C7E;} + .d2-3451263933 .color-N3{color:#9499AB;} + .d2-3451263933 .color-N4{color:#CFD2DD;} + .d2-3451263933 .color-N5{color:#DEE1EB;} + .d2-3451263933 .color-N6{color:#EEF1F8;} + .d2-3451263933 .color-N7{color:#FFFFFF;} + .d2-3451263933 .color-B1{color:#0D32B2;} + .d2-3451263933 .color-B2{color:#0D32B2;} + .d2-3451263933 .color-B3{color:#E3E9FD;} + .d2-3451263933 .color-B4{color:#E3E9FD;} + .d2-3451263933 .color-B5{color:#EDF0FD;} + .d2-3451263933 .color-B6{color:#F7F8FE;} + .d2-3451263933 .color-AA2{color:#4A6FF3;} + .d2-3451263933 .color-AA4{color:#EDF0FD;} + .d2-3451263933 .color-AA5{color:#F7F8FE;} + .d2-3451263933 .color-AB4{color:#EDF0FD;} + .d2-3451263933 .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 @@ -ab +ab diff --git a/d2renderers/d2sketch/testdata/basic_dark/sketch.exp.svg b/d2renderers/d2sketch/testdata/basic_dark/sketch.exp.svg index 46b163b6f0..6c71a0dcc1 100644 --- a/d2renderers/d2sketch/testdata/basic_dark/sketch.exp.svg +++ b/d2renderers/d2sketch/testdata/basic_dark/sketch.exp.svg @@ -1,9 +1,9 @@ - + .d2-3451263933 .fill-N1{fill:#CDD6F4;} + .d2-3451263933 .fill-N2{fill:#BAC2DE;} + .d2-3451263933 .fill-N3{fill:#A6ADC8;} + .d2-3451263933 .fill-N4{fill:#585B70;} + .d2-3451263933 .fill-N5{fill:#45475A;} + .d2-3451263933 .fill-N6{fill:#313244;} + .d2-3451263933 .fill-N7{fill:#1E1E2E;} + .d2-3451263933 .fill-B1{fill:#CBA6f7;} + .d2-3451263933 .fill-B2{fill:#CBA6f7;} + .d2-3451263933 .fill-B3{fill:#6C7086;} + .d2-3451263933 .fill-B4{fill:#585B70;} + .d2-3451263933 .fill-B5{fill:#45475A;} + .d2-3451263933 .fill-B6{fill:#313244;} + .d2-3451263933 .fill-AA2{fill:#f38BA8;} + .d2-3451263933 .fill-AA4{fill:#45475A;} + .d2-3451263933 .fill-AA5{fill:#313244;} + .d2-3451263933 .fill-AB4{fill:#45475A;} + .d2-3451263933 .fill-AB5{fill:#313244;} + .d2-3451263933 .stroke-N1{stroke:#CDD6F4;} + .d2-3451263933 .stroke-N2{stroke:#BAC2DE;} + .d2-3451263933 .stroke-N3{stroke:#A6ADC8;} + .d2-3451263933 .stroke-N4{stroke:#585B70;} + .d2-3451263933 .stroke-N5{stroke:#45475A;} + .d2-3451263933 .stroke-N6{stroke:#313244;} + .d2-3451263933 .stroke-N7{stroke:#1E1E2E;} + .d2-3451263933 .stroke-B1{stroke:#CBA6f7;} + .d2-3451263933 .stroke-B2{stroke:#CBA6f7;} + .d2-3451263933 .stroke-B3{stroke:#6C7086;} + .d2-3451263933 .stroke-B4{stroke:#585B70;} + .d2-3451263933 .stroke-B5{stroke:#45475A;} + .d2-3451263933 .stroke-B6{stroke:#313244;} + .d2-3451263933 .stroke-AA2{stroke:#f38BA8;} + .d2-3451263933 .stroke-AA4{stroke:#45475A;} + .d2-3451263933 .stroke-AA5{stroke:#313244;} + .d2-3451263933 .stroke-AB4{stroke:#45475A;} + .d2-3451263933 .stroke-AB5{stroke:#313244;} + .d2-3451263933 .background-color-N1{background-color:#CDD6F4;} + .d2-3451263933 .background-color-N2{background-color:#BAC2DE;} + .d2-3451263933 .background-color-N3{background-color:#A6ADC8;} + .d2-3451263933 .background-color-N4{background-color:#585B70;} + .d2-3451263933 .background-color-N5{background-color:#45475A;} + .d2-3451263933 .background-color-N6{background-color:#313244;} + .d2-3451263933 .background-color-N7{background-color:#1E1E2E;} + .d2-3451263933 .background-color-B1{background-color:#CBA6f7;} + .d2-3451263933 .background-color-B2{background-color:#CBA6f7;} + .d2-3451263933 .background-color-B3{background-color:#6C7086;} + .d2-3451263933 .background-color-B4{background-color:#585B70;} + .d2-3451263933 .background-color-B5{background-color:#45475A;} + .d2-3451263933 .background-color-B6{background-color:#313244;} + .d2-3451263933 .background-color-AA2{background-color:#f38BA8;} + .d2-3451263933 .background-color-AA4{background-color:#45475A;} + .d2-3451263933 .background-color-AA5{background-color:#313244;} + .d2-3451263933 .background-color-AB4{background-color:#45475A;} + .d2-3451263933 .background-color-AB5{background-color:#313244;} + .d2-3451263933 .color-N1{color:#CDD6F4;} + .d2-3451263933 .color-N2{color:#BAC2DE;} + .d2-3451263933 .color-N3{color:#A6ADC8;} + .d2-3451263933 .color-N4{color:#585B70;} + .d2-3451263933 .color-N5{color:#45475A;} + .d2-3451263933 .color-N6{color:#313244;} + .d2-3451263933 .color-N7{color:#1E1E2E;} + .d2-3451263933 .color-B1{color:#CBA6f7;} + .d2-3451263933 .color-B2{color:#CBA6f7;} + .d2-3451263933 .color-B3{color:#6C7086;} + .d2-3451263933 .color-B4{color:#585B70;} + .d2-3451263933 .color-B5{color:#45475A;} + .d2-3451263933 .color-B6{color:#313244;} + .d2-3451263933 .color-AA2{color:#f38BA8;} + .d2-3451263933 .color-AA4{color:#45475A;} + .d2-3451263933 .color-AA5{color:#313244;} + .d2-3451263933 .color-AB4{color:#45475A;} + .d2-3451263933 .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}]]> -ab +ab diff --git a/d2renderers/d2sketch/testdata/child_to_child/sketch.exp.svg b/d2renderers/d2sketch/testdata/child_to_child/sketch.exp.svg index dbfb407387..34096f6eb8 100644 --- a/d2renderers/d2sketch/testdata/child_to_child/sketch.exp.svg +++ b/d2renderers/d2sketch/testdata/child_to_child/sketch.exp.svg @@ -1,16 +1,16 @@ - + .d2-1306478287 .fill-N1{fill:#0A0F25;} + .d2-1306478287 .fill-N2{fill:#676C7E;} + .d2-1306478287 .fill-N3{fill:#9499AB;} + .d2-1306478287 .fill-N4{fill:#CFD2DD;} + .d2-1306478287 .fill-N5{fill:#DEE1EB;} + .d2-1306478287 .fill-N6{fill:#EEF1F8;} + .d2-1306478287 .fill-N7{fill:#FFFFFF;} + .d2-1306478287 .fill-B1{fill:#0D32B2;} + .d2-1306478287 .fill-B2{fill:#0D32B2;} + .d2-1306478287 .fill-B3{fill:#E3E9FD;} + .d2-1306478287 .fill-B4{fill:#E3E9FD;} + .d2-1306478287 .fill-B5{fill:#EDF0FD;} + .d2-1306478287 .fill-B6{fill:#F7F8FE;} + .d2-1306478287 .fill-AA2{fill:#4A6FF3;} + .d2-1306478287 .fill-AA4{fill:#EDF0FD;} + .d2-1306478287 .fill-AA5{fill:#F7F8FE;} + .d2-1306478287 .fill-AB4{fill:#EDF0FD;} + .d2-1306478287 .fill-AB5{fill:#F7F8FE;} + .d2-1306478287 .stroke-N1{stroke:#0A0F25;} + .d2-1306478287 .stroke-N2{stroke:#676C7E;} + .d2-1306478287 .stroke-N3{stroke:#9499AB;} + .d2-1306478287 .stroke-N4{stroke:#CFD2DD;} + .d2-1306478287 .stroke-N5{stroke:#DEE1EB;} + .d2-1306478287 .stroke-N6{stroke:#EEF1F8;} + .d2-1306478287 .stroke-N7{stroke:#FFFFFF;} + .d2-1306478287 .stroke-B1{stroke:#0D32B2;} + .d2-1306478287 .stroke-B2{stroke:#0D32B2;} + .d2-1306478287 .stroke-B3{stroke:#E3E9FD;} + .d2-1306478287 .stroke-B4{stroke:#E3E9FD;} + .d2-1306478287 .stroke-B5{stroke:#EDF0FD;} + .d2-1306478287 .stroke-B6{stroke:#F7F8FE;} + .d2-1306478287 .stroke-AA2{stroke:#4A6FF3;} + .d2-1306478287 .stroke-AA4{stroke:#EDF0FD;} + .d2-1306478287 .stroke-AA5{stroke:#F7F8FE;} + .d2-1306478287 .stroke-AB4{stroke:#EDF0FD;} + .d2-1306478287 .stroke-AB5{stroke:#F7F8FE;} + .d2-1306478287 .background-color-N1{background-color:#0A0F25;} + .d2-1306478287 .background-color-N2{background-color:#676C7E;} + .d2-1306478287 .background-color-N3{background-color:#9499AB;} + .d2-1306478287 .background-color-N4{background-color:#CFD2DD;} + .d2-1306478287 .background-color-N5{background-color:#DEE1EB;} + .d2-1306478287 .background-color-N6{background-color:#EEF1F8;} + .d2-1306478287 .background-color-N7{background-color:#FFFFFF;} + .d2-1306478287 .background-color-B1{background-color:#0D32B2;} + .d2-1306478287 .background-color-B2{background-color:#0D32B2;} + .d2-1306478287 .background-color-B3{background-color:#E3E9FD;} + .d2-1306478287 .background-color-B4{background-color:#E3E9FD;} + .d2-1306478287 .background-color-B5{background-color:#EDF0FD;} + .d2-1306478287 .background-color-B6{background-color:#F7F8FE;} + .d2-1306478287 .background-color-AA2{background-color:#4A6FF3;} + .d2-1306478287 .background-color-AA4{background-color:#EDF0FD;} + .d2-1306478287 .background-color-AA5{background-color:#F7F8FE;} + .d2-1306478287 .background-color-AB4{background-color:#EDF0FD;} + .d2-1306478287 .background-color-AB5{background-color:#F7F8FE;} + .d2-1306478287 .color-N1{color:#0A0F25;} + .d2-1306478287 .color-N2{color:#676C7E;} + .d2-1306478287 .color-N3{color:#9499AB;} + .d2-1306478287 .color-N4{color:#CFD2DD;} + .d2-1306478287 .color-N5{color:#DEE1EB;} + .d2-1306478287 .color-N6{color:#EEF1F8;} + .d2-1306478287 .color-N7{color:#FFFFFF;} + .d2-1306478287 .color-B1{color:#0D32B2;} + .d2-1306478287 .color-B2{color:#0D32B2;} + .d2-1306478287 .color-B3{color:#E3E9FD;} + .d2-1306478287 .color-B4{color:#E3E9FD;} + .d2-1306478287 .color-B5{color:#EDF0FD;} + .d2-1306478287 .color-B6{color:#F7F8FE;} + .d2-1306478287 .color-AA2{color:#4A6FF3;} + .d2-1306478287 .color-AA4{color:#EDF0FD;} + .d2-1306478287 .color-AA5{color:#F7F8FE;} + .d2-1306478287 .color-AB4{color:#EDF0FD;} + .d2-1306478287 .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}]]> @@ -104,7 +104,7 @@ -wintersummersnowsun +wintersummersnowsun diff --git a/d2renderers/d2sketch/testdata/child_to_child_dark/sketch.exp.svg b/d2renderers/d2sketch/testdata/child_to_child_dark/sketch.exp.svg index 1ce9947983..c09e927fa6 100644 --- a/d2renderers/d2sketch/testdata/child_to_child_dark/sketch.exp.svg +++ b/d2renderers/d2sketch/testdata/child_to_child_dark/sketch.exp.svg @@ -1,16 +1,16 @@ - + .d2-1306478287 .fill-N1{fill:#CDD6F4;} + .d2-1306478287 .fill-N2{fill:#BAC2DE;} + .d2-1306478287 .fill-N3{fill:#A6ADC8;} + .d2-1306478287 .fill-N4{fill:#585B70;} + .d2-1306478287 .fill-N5{fill:#45475A;} + .d2-1306478287 .fill-N6{fill:#313244;} + .d2-1306478287 .fill-N7{fill:#1E1E2E;} + .d2-1306478287 .fill-B1{fill:#CBA6f7;} + .d2-1306478287 .fill-B2{fill:#CBA6f7;} + .d2-1306478287 .fill-B3{fill:#6C7086;} + .d2-1306478287 .fill-B4{fill:#585B70;} + .d2-1306478287 .fill-B5{fill:#45475A;} + .d2-1306478287 .fill-B6{fill:#313244;} + .d2-1306478287 .fill-AA2{fill:#f38BA8;} + .d2-1306478287 .fill-AA4{fill:#45475A;} + .d2-1306478287 .fill-AA5{fill:#313244;} + .d2-1306478287 .fill-AB4{fill:#45475A;} + .d2-1306478287 .fill-AB5{fill:#313244;} + .d2-1306478287 .stroke-N1{stroke:#CDD6F4;} + .d2-1306478287 .stroke-N2{stroke:#BAC2DE;} + .d2-1306478287 .stroke-N3{stroke:#A6ADC8;} + .d2-1306478287 .stroke-N4{stroke:#585B70;} + .d2-1306478287 .stroke-N5{stroke:#45475A;} + .d2-1306478287 .stroke-N6{stroke:#313244;} + .d2-1306478287 .stroke-N7{stroke:#1E1E2E;} + .d2-1306478287 .stroke-B1{stroke:#CBA6f7;} + .d2-1306478287 .stroke-B2{stroke:#CBA6f7;} + .d2-1306478287 .stroke-B3{stroke:#6C7086;} + .d2-1306478287 .stroke-B4{stroke:#585B70;} + .d2-1306478287 .stroke-B5{stroke:#45475A;} + .d2-1306478287 .stroke-B6{stroke:#313244;} + .d2-1306478287 .stroke-AA2{stroke:#f38BA8;} + .d2-1306478287 .stroke-AA4{stroke:#45475A;} + .d2-1306478287 .stroke-AA5{stroke:#313244;} + .d2-1306478287 .stroke-AB4{stroke:#45475A;} + .d2-1306478287 .stroke-AB5{stroke:#313244;} + .d2-1306478287 .background-color-N1{background-color:#CDD6F4;} + .d2-1306478287 .background-color-N2{background-color:#BAC2DE;} + .d2-1306478287 .background-color-N3{background-color:#A6ADC8;} + .d2-1306478287 .background-color-N4{background-color:#585B70;} + .d2-1306478287 .background-color-N5{background-color:#45475A;} + .d2-1306478287 .background-color-N6{background-color:#313244;} + .d2-1306478287 .background-color-N7{background-color:#1E1E2E;} + .d2-1306478287 .background-color-B1{background-color:#CBA6f7;} + .d2-1306478287 .background-color-B2{background-color:#CBA6f7;} + .d2-1306478287 .background-color-B3{background-color:#6C7086;} + .d2-1306478287 .background-color-B4{background-color:#585B70;} + .d2-1306478287 .background-color-B5{background-color:#45475A;} + .d2-1306478287 .background-color-B6{background-color:#313244;} + .d2-1306478287 .background-color-AA2{background-color:#f38BA8;} + .d2-1306478287 .background-color-AA4{background-color:#45475A;} + .d2-1306478287 .background-color-AA5{background-color:#313244;} + .d2-1306478287 .background-color-AB4{background-color:#45475A;} + .d2-1306478287 .background-color-AB5{background-color:#313244;} + .d2-1306478287 .color-N1{color:#CDD6F4;} + .d2-1306478287 .color-N2{color:#BAC2DE;} + .d2-1306478287 .color-N3{color:#A6ADC8;} + .d2-1306478287 .color-N4{color:#585B70;} + .d2-1306478287 .color-N5{color:#45475A;} + .d2-1306478287 .color-N6{color:#313244;} + .d2-1306478287 .color-N7{color:#1E1E2E;} + .d2-1306478287 .color-B1{color:#CBA6f7;} + .d2-1306478287 .color-B2{color:#CBA6f7;} + .d2-1306478287 .color-B3{color:#6C7086;} + .d2-1306478287 .color-B4{color:#585B70;} + .d2-1306478287 .color-B5{color:#45475A;} + .d2-1306478287 .color-B6{color:#313244;} + .d2-1306478287 .color-AA2{color:#f38BA8;} + .d2-1306478287 .color-AA4{color:#45475A;} + .d2-1306478287 .color-AA5{color:#313244;} + .d2-1306478287 .color-AB4{color:#45475A;} + .d2-1306478287 .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}]]> -wintersummersnowsun +wintersummersnowsun diff --git a/d2renderers/d2sketch/testdata/connection-style-fill/sketch.exp.svg b/d2renderers/d2sketch/testdata/connection-style-fill/sketch.exp.svg index 316ed5f795..4e99b06520 100644 --- a/d2renderers/d2sketch/testdata/connection-style-fill/sketch.exp.svg +++ b/d2renderers/d2sketch/testdata/connection-style-fill/sketch.exp.svg @@ -1,16 +1,16 @@ - + .d2-691596124 .fill-N1{fill:#0A0F25;} + .d2-691596124 .fill-N2{fill:#676C7E;} + .d2-691596124 .fill-N3{fill:#9499AB;} + .d2-691596124 .fill-N4{fill:#CFD2DD;} + .d2-691596124 .fill-N5{fill:#DEE1EB;} + .d2-691596124 .fill-N6{fill:#EEF1F8;} + .d2-691596124 .fill-N7{fill:#FFFFFF;} + .d2-691596124 .fill-B1{fill:#0D32B2;} + .d2-691596124 .fill-B2{fill:#0D32B2;} + .d2-691596124 .fill-B3{fill:#E3E9FD;} + .d2-691596124 .fill-B4{fill:#E3E9FD;} + .d2-691596124 .fill-B5{fill:#EDF0FD;} + .d2-691596124 .fill-B6{fill:#F7F8FE;} + .d2-691596124 .fill-AA2{fill:#4A6FF3;} + .d2-691596124 .fill-AA4{fill:#EDF0FD;} + .d2-691596124 .fill-AA5{fill:#F7F8FE;} + .d2-691596124 .fill-AB4{fill:#EDF0FD;} + .d2-691596124 .fill-AB5{fill:#F7F8FE;} + .d2-691596124 .stroke-N1{stroke:#0A0F25;} + .d2-691596124 .stroke-N2{stroke:#676C7E;} + .d2-691596124 .stroke-N3{stroke:#9499AB;} + .d2-691596124 .stroke-N4{stroke:#CFD2DD;} + .d2-691596124 .stroke-N5{stroke:#DEE1EB;} + .d2-691596124 .stroke-N6{stroke:#EEF1F8;} + .d2-691596124 .stroke-N7{stroke:#FFFFFF;} + .d2-691596124 .stroke-B1{stroke:#0D32B2;} + .d2-691596124 .stroke-B2{stroke:#0D32B2;} + .d2-691596124 .stroke-B3{stroke:#E3E9FD;} + .d2-691596124 .stroke-B4{stroke:#E3E9FD;} + .d2-691596124 .stroke-B5{stroke:#EDF0FD;} + .d2-691596124 .stroke-B6{stroke:#F7F8FE;} + .d2-691596124 .stroke-AA2{stroke:#4A6FF3;} + .d2-691596124 .stroke-AA4{stroke:#EDF0FD;} + .d2-691596124 .stroke-AA5{stroke:#F7F8FE;} + .d2-691596124 .stroke-AB4{stroke:#EDF0FD;} + .d2-691596124 .stroke-AB5{stroke:#F7F8FE;} + .d2-691596124 .background-color-N1{background-color:#0A0F25;} + .d2-691596124 .background-color-N2{background-color:#676C7E;} + .d2-691596124 .background-color-N3{background-color:#9499AB;} + .d2-691596124 .background-color-N4{background-color:#CFD2DD;} + .d2-691596124 .background-color-N5{background-color:#DEE1EB;} + .d2-691596124 .background-color-N6{background-color:#EEF1F8;} + .d2-691596124 .background-color-N7{background-color:#FFFFFF;} + .d2-691596124 .background-color-B1{background-color:#0D32B2;} + .d2-691596124 .background-color-B2{background-color:#0D32B2;} + .d2-691596124 .background-color-B3{background-color:#E3E9FD;} + .d2-691596124 .background-color-B4{background-color:#E3E9FD;} + .d2-691596124 .background-color-B5{background-color:#EDF0FD;} + .d2-691596124 .background-color-B6{background-color:#F7F8FE;} + .d2-691596124 .background-color-AA2{background-color:#4A6FF3;} + .d2-691596124 .background-color-AA4{background-color:#EDF0FD;} + .d2-691596124 .background-color-AA5{background-color:#F7F8FE;} + .d2-691596124 .background-color-AB4{background-color:#EDF0FD;} + .d2-691596124 .background-color-AB5{background-color:#F7F8FE;} + .d2-691596124 .color-N1{color:#0A0F25;} + .d2-691596124 .color-N2{color:#676C7E;} + .d2-691596124 .color-N3{color:#9499AB;} + .d2-691596124 .color-N4{color:#CFD2DD;} + .d2-691596124 .color-N5{color:#DEE1EB;} + .d2-691596124 .color-N6{color:#EEF1F8;} + .d2-691596124 .color-N7{color:#FFFFFF;} + .d2-691596124 .color-B1{color:#0D32B2;} + .d2-691596124 .color-B2{color:#0D32B2;} + .d2-691596124 .color-B3{color:#E3E9FD;} + .d2-691596124 .color-B4{color:#E3E9FD;} + .d2-691596124 .color-B5{color:#EDF0FD;} + .d2-691596124 .color-B6{color:#F7F8FE;} + .d2-691596124 .color-AA2{color:#4A6FF3;} + .d2-691596124 .color-AA4{color:#EDF0FD;} + .d2-691596124 .color-AA5{color:#F7F8FE;} + .d2-691596124 .color-AB4{color:#EDF0FD;} + .d2-691596124 .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}]]> @@ -104,7 +104,7 @@ -customeremployeerentalitem rent(this, i, p) new(this, i, p) isValid() isRentable(c) is(Adult) true +customeremployeerentalitem rent(this, i, p) new(this, i, p) isValid() isRentable(c) is(Adult) true diff --git a/d2renderers/d2sketch/testdata/connection_label/sketch.exp.svg b/d2renderers/d2sketch/testdata/connection_label/sketch.exp.svg index d2a93e0b53..caae87a709 100644 --- a/d2renderers/d2sketch/testdata/connection_label/sketch.exp.svg +++ b/d2renderers/d2sketch/testdata/connection_label/sketch.exp.svg @@ -1,16 +1,16 @@ - + .d2-1929145507 .fill-N1{fill:#0A0F25;} + .d2-1929145507 .fill-N2{fill:#676C7E;} + .d2-1929145507 .fill-N3{fill:#9499AB;} + .d2-1929145507 .fill-N4{fill:#CFD2DD;} + .d2-1929145507 .fill-N5{fill:#DEE1EB;} + .d2-1929145507 .fill-N6{fill:#EEF1F8;} + .d2-1929145507 .fill-N7{fill:#FFFFFF;} + .d2-1929145507 .fill-B1{fill:#0D32B2;} + .d2-1929145507 .fill-B2{fill:#0D32B2;} + .d2-1929145507 .fill-B3{fill:#E3E9FD;} + .d2-1929145507 .fill-B4{fill:#E3E9FD;} + .d2-1929145507 .fill-B5{fill:#EDF0FD;} + .d2-1929145507 .fill-B6{fill:#F7F8FE;} + .d2-1929145507 .fill-AA2{fill:#4A6FF3;} + .d2-1929145507 .fill-AA4{fill:#EDF0FD;} + .d2-1929145507 .fill-AA5{fill:#F7F8FE;} + .d2-1929145507 .fill-AB4{fill:#EDF0FD;} + .d2-1929145507 .fill-AB5{fill:#F7F8FE;} + .d2-1929145507 .stroke-N1{stroke:#0A0F25;} + .d2-1929145507 .stroke-N2{stroke:#676C7E;} + .d2-1929145507 .stroke-N3{stroke:#9499AB;} + .d2-1929145507 .stroke-N4{stroke:#CFD2DD;} + .d2-1929145507 .stroke-N5{stroke:#DEE1EB;} + .d2-1929145507 .stroke-N6{stroke:#EEF1F8;} + .d2-1929145507 .stroke-N7{stroke:#FFFFFF;} + .d2-1929145507 .stroke-B1{stroke:#0D32B2;} + .d2-1929145507 .stroke-B2{stroke:#0D32B2;} + .d2-1929145507 .stroke-B3{stroke:#E3E9FD;} + .d2-1929145507 .stroke-B4{stroke:#E3E9FD;} + .d2-1929145507 .stroke-B5{stroke:#EDF0FD;} + .d2-1929145507 .stroke-B6{stroke:#F7F8FE;} + .d2-1929145507 .stroke-AA2{stroke:#4A6FF3;} + .d2-1929145507 .stroke-AA4{stroke:#EDF0FD;} + .d2-1929145507 .stroke-AA5{stroke:#F7F8FE;} + .d2-1929145507 .stroke-AB4{stroke:#EDF0FD;} + .d2-1929145507 .stroke-AB5{stroke:#F7F8FE;} + .d2-1929145507 .background-color-N1{background-color:#0A0F25;} + .d2-1929145507 .background-color-N2{background-color:#676C7E;} + .d2-1929145507 .background-color-N3{background-color:#9499AB;} + .d2-1929145507 .background-color-N4{background-color:#CFD2DD;} + .d2-1929145507 .background-color-N5{background-color:#DEE1EB;} + .d2-1929145507 .background-color-N6{background-color:#EEF1F8;} + .d2-1929145507 .background-color-N7{background-color:#FFFFFF;} + .d2-1929145507 .background-color-B1{background-color:#0D32B2;} + .d2-1929145507 .background-color-B2{background-color:#0D32B2;} + .d2-1929145507 .background-color-B3{background-color:#E3E9FD;} + .d2-1929145507 .background-color-B4{background-color:#E3E9FD;} + .d2-1929145507 .background-color-B5{background-color:#EDF0FD;} + .d2-1929145507 .background-color-B6{background-color:#F7F8FE;} + .d2-1929145507 .background-color-AA2{background-color:#4A6FF3;} + .d2-1929145507 .background-color-AA4{background-color:#EDF0FD;} + .d2-1929145507 .background-color-AA5{background-color:#F7F8FE;} + .d2-1929145507 .background-color-AB4{background-color:#EDF0FD;} + .d2-1929145507 .background-color-AB5{background-color:#F7F8FE;} + .d2-1929145507 .color-N1{color:#0A0F25;} + .d2-1929145507 .color-N2{color:#676C7E;} + .d2-1929145507 .color-N3{color:#9499AB;} + .d2-1929145507 .color-N4{color:#CFD2DD;} + .d2-1929145507 .color-N5{color:#DEE1EB;} + .d2-1929145507 .color-N6{color:#EEF1F8;} + .d2-1929145507 .color-N7{color:#FFFFFF;} + .d2-1929145507 .color-B1{color:#0D32B2;} + .d2-1929145507 .color-B2{color:#0D32B2;} + .d2-1929145507 .color-B3{color:#E3E9FD;} + .d2-1929145507 .color-B4{color:#E3E9FD;} + .d2-1929145507 .color-B5{color:#EDF0FD;} + .d2-1929145507 .color-B6{color:#F7F8FE;} + .d2-1929145507 .color-AA2{color:#4A6FF3;} + .d2-1929145507 .color-AA4{color:#EDF0FD;} + .d2-1929145507 .color-AA5{color:#F7F8FE;} + .d2-1929145507 .color-AB4{color:#EDF0FD;} + .d2-1929145507 .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}]]> @@ -104,7 +104,7 @@ -ab hello +ab hello diff --git a/d2renderers/d2sketch/testdata/connection_label_dark/sketch.exp.svg b/d2renderers/d2sketch/testdata/connection_label_dark/sketch.exp.svg index d1b4a66bb9..ab294bfd3d 100644 --- a/d2renderers/d2sketch/testdata/connection_label_dark/sketch.exp.svg +++ b/d2renderers/d2sketch/testdata/connection_label_dark/sketch.exp.svg @@ -1,16 +1,16 @@ - + .d2-1929145507 .fill-N1{fill:#CDD6F4;} + .d2-1929145507 .fill-N2{fill:#BAC2DE;} + .d2-1929145507 .fill-N3{fill:#A6ADC8;} + .d2-1929145507 .fill-N4{fill:#585B70;} + .d2-1929145507 .fill-N5{fill:#45475A;} + .d2-1929145507 .fill-N6{fill:#313244;} + .d2-1929145507 .fill-N7{fill:#1E1E2E;} + .d2-1929145507 .fill-B1{fill:#CBA6f7;} + .d2-1929145507 .fill-B2{fill:#CBA6f7;} + .d2-1929145507 .fill-B3{fill:#6C7086;} + .d2-1929145507 .fill-B4{fill:#585B70;} + .d2-1929145507 .fill-B5{fill:#45475A;} + .d2-1929145507 .fill-B6{fill:#313244;} + .d2-1929145507 .fill-AA2{fill:#f38BA8;} + .d2-1929145507 .fill-AA4{fill:#45475A;} + .d2-1929145507 .fill-AA5{fill:#313244;} + .d2-1929145507 .fill-AB4{fill:#45475A;} + .d2-1929145507 .fill-AB5{fill:#313244;} + .d2-1929145507 .stroke-N1{stroke:#CDD6F4;} + .d2-1929145507 .stroke-N2{stroke:#BAC2DE;} + .d2-1929145507 .stroke-N3{stroke:#A6ADC8;} + .d2-1929145507 .stroke-N4{stroke:#585B70;} + .d2-1929145507 .stroke-N5{stroke:#45475A;} + .d2-1929145507 .stroke-N6{stroke:#313244;} + .d2-1929145507 .stroke-N7{stroke:#1E1E2E;} + .d2-1929145507 .stroke-B1{stroke:#CBA6f7;} + .d2-1929145507 .stroke-B2{stroke:#CBA6f7;} + .d2-1929145507 .stroke-B3{stroke:#6C7086;} + .d2-1929145507 .stroke-B4{stroke:#585B70;} + .d2-1929145507 .stroke-B5{stroke:#45475A;} + .d2-1929145507 .stroke-B6{stroke:#313244;} + .d2-1929145507 .stroke-AA2{stroke:#f38BA8;} + .d2-1929145507 .stroke-AA4{stroke:#45475A;} + .d2-1929145507 .stroke-AA5{stroke:#313244;} + .d2-1929145507 .stroke-AB4{stroke:#45475A;} + .d2-1929145507 .stroke-AB5{stroke:#313244;} + .d2-1929145507 .background-color-N1{background-color:#CDD6F4;} + .d2-1929145507 .background-color-N2{background-color:#BAC2DE;} + .d2-1929145507 .background-color-N3{background-color:#A6ADC8;} + .d2-1929145507 .background-color-N4{background-color:#585B70;} + .d2-1929145507 .background-color-N5{background-color:#45475A;} + .d2-1929145507 .background-color-N6{background-color:#313244;} + .d2-1929145507 .background-color-N7{background-color:#1E1E2E;} + .d2-1929145507 .background-color-B1{background-color:#CBA6f7;} + .d2-1929145507 .background-color-B2{background-color:#CBA6f7;} + .d2-1929145507 .background-color-B3{background-color:#6C7086;} + .d2-1929145507 .background-color-B4{background-color:#585B70;} + .d2-1929145507 .background-color-B5{background-color:#45475A;} + .d2-1929145507 .background-color-B6{background-color:#313244;} + .d2-1929145507 .background-color-AA2{background-color:#f38BA8;} + .d2-1929145507 .background-color-AA4{background-color:#45475A;} + .d2-1929145507 .background-color-AA5{background-color:#313244;} + .d2-1929145507 .background-color-AB4{background-color:#45475A;} + .d2-1929145507 .background-color-AB5{background-color:#313244;} + .d2-1929145507 .color-N1{color:#CDD6F4;} + .d2-1929145507 .color-N2{color:#BAC2DE;} + .d2-1929145507 .color-N3{color:#A6ADC8;} + .d2-1929145507 .color-N4{color:#585B70;} + .d2-1929145507 .color-N5{color:#45475A;} + .d2-1929145507 .color-N6{color:#313244;} + .d2-1929145507 .color-N7{color:#1E1E2E;} + .d2-1929145507 .color-B1{color:#CBA6f7;} + .d2-1929145507 .color-B2{color:#CBA6f7;} + .d2-1929145507 .color-B3{color:#6C7086;} + .d2-1929145507 .color-B4{color:#585B70;} + .d2-1929145507 .color-B5{color:#45475A;} + .d2-1929145507 .color-B6{color:#313244;} + .d2-1929145507 .color-AA2{color:#f38BA8;} + .d2-1929145507 .color-AA4{color:#45475A;} + .d2-1929145507 .color-AA5{color:#313244;} + .d2-1929145507 .color-AB4{color:#45475A;} + .d2-1929145507 .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}]]> -ab hello +ab hello diff --git a/d2renderers/d2sketch/testdata/crows_feet/sketch.exp.svg b/d2renderers/d2sketch/testdata/crows_feet/sketch.exp.svg index 309a01f64d..ad2a74d4ca 100644 --- a/d2renderers/d2sketch/testdata/crows_feet/sketch.exp.svg +++ b/d2renderers/d2sketch/testdata/crows_feet/sketch.exp.svg @@ -1,9 +1,9 @@ - + .d2-2915604262 .fill-N1{fill:#0A0F25;} + .d2-2915604262 .fill-N2{fill:#676C7E;} + .d2-2915604262 .fill-N3{fill:#9499AB;} + .d2-2915604262 .fill-N4{fill:#CFD2DD;} + .d2-2915604262 .fill-N5{fill:#DEE1EB;} + .d2-2915604262 .fill-N6{fill:#EEF1F8;} + .d2-2915604262 .fill-N7{fill:#FFFFFF;} + .d2-2915604262 .fill-B1{fill:#0D32B2;} + .d2-2915604262 .fill-B2{fill:#0D32B2;} + .d2-2915604262 .fill-B3{fill:#E3E9FD;} + .d2-2915604262 .fill-B4{fill:#E3E9FD;} + .d2-2915604262 .fill-B5{fill:#EDF0FD;} + .d2-2915604262 .fill-B6{fill:#F7F8FE;} + .d2-2915604262 .fill-AA2{fill:#4A6FF3;} + .d2-2915604262 .fill-AA4{fill:#EDF0FD;} + .d2-2915604262 .fill-AA5{fill:#F7F8FE;} + .d2-2915604262 .fill-AB4{fill:#EDF0FD;} + .d2-2915604262 .fill-AB5{fill:#F7F8FE;} + .d2-2915604262 .stroke-N1{stroke:#0A0F25;} + .d2-2915604262 .stroke-N2{stroke:#676C7E;} + .d2-2915604262 .stroke-N3{stroke:#9499AB;} + .d2-2915604262 .stroke-N4{stroke:#CFD2DD;} + .d2-2915604262 .stroke-N5{stroke:#DEE1EB;} + .d2-2915604262 .stroke-N6{stroke:#EEF1F8;} + .d2-2915604262 .stroke-N7{stroke:#FFFFFF;} + .d2-2915604262 .stroke-B1{stroke:#0D32B2;} + .d2-2915604262 .stroke-B2{stroke:#0D32B2;} + .d2-2915604262 .stroke-B3{stroke:#E3E9FD;} + .d2-2915604262 .stroke-B4{stroke:#E3E9FD;} + .d2-2915604262 .stroke-B5{stroke:#EDF0FD;} + .d2-2915604262 .stroke-B6{stroke:#F7F8FE;} + .d2-2915604262 .stroke-AA2{stroke:#4A6FF3;} + .d2-2915604262 .stroke-AA4{stroke:#EDF0FD;} + .d2-2915604262 .stroke-AA5{stroke:#F7F8FE;} + .d2-2915604262 .stroke-AB4{stroke:#EDF0FD;} + .d2-2915604262 .stroke-AB5{stroke:#F7F8FE;} + .d2-2915604262 .background-color-N1{background-color:#0A0F25;} + .d2-2915604262 .background-color-N2{background-color:#676C7E;} + .d2-2915604262 .background-color-N3{background-color:#9499AB;} + .d2-2915604262 .background-color-N4{background-color:#CFD2DD;} + .d2-2915604262 .background-color-N5{background-color:#DEE1EB;} + .d2-2915604262 .background-color-N6{background-color:#EEF1F8;} + .d2-2915604262 .background-color-N7{background-color:#FFFFFF;} + .d2-2915604262 .background-color-B1{background-color:#0D32B2;} + .d2-2915604262 .background-color-B2{background-color:#0D32B2;} + .d2-2915604262 .background-color-B3{background-color:#E3E9FD;} + .d2-2915604262 .background-color-B4{background-color:#E3E9FD;} + .d2-2915604262 .background-color-B5{background-color:#EDF0FD;} + .d2-2915604262 .background-color-B6{background-color:#F7F8FE;} + .d2-2915604262 .background-color-AA2{background-color:#4A6FF3;} + .d2-2915604262 .background-color-AA4{background-color:#EDF0FD;} + .d2-2915604262 .background-color-AA5{background-color:#F7F8FE;} + .d2-2915604262 .background-color-AB4{background-color:#EDF0FD;} + .d2-2915604262 .background-color-AB5{background-color:#F7F8FE;} + .d2-2915604262 .color-N1{color:#0A0F25;} + .d2-2915604262 .color-N2{color:#676C7E;} + .d2-2915604262 .color-N3{color:#9499AB;} + .d2-2915604262 .color-N4{color:#CFD2DD;} + .d2-2915604262 .color-N5{color:#DEE1EB;} + .d2-2915604262 .color-N6{color:#EEF1F8;} + .d2-2915604262 .color-N7{color:#FFFFFF;} + .d2-2915604262 .color-B1{color:#0D32B2;} + .d2-2915604262 .color-B2{color:#0D32B2;} + .d2-2915604262 .color-B3{color:#E3E9FD;} + .d2-2915604262 .color-B4{color:#E3E9FD;} + .d2-2915604262 .color-B5{color:#EDF0FD;} + .d2-2915604262 .color-B6{color:#F7F8FE;} + .d2-2915604262 .color-AA2{color:#4A6FF3;} + .d2-2915604262 .color-AA4{color:#EDF0FD;} + .d2-2915604262 .color-AA5{color:#F7F8FE;} + .d2-2915604262 .color-AB4{color:#EDF0FD;} + .d2-2915604262 .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 @@ -a1b1a2b2a3b3c1d1c2d2c3d3e1f1e2f2e3f3g1h1g2h2g3h3cdf +a1b1a2b2a3b3c1d1c2d2c3d3e1f1e2f2e3f3g1h1g2h2g3h3cdf diff --git a/d2renderers/d2sketch/testdata/crows_feet_dark/sketch.exp.svg b/d2renderers/d2sketch/testdata/crows_feet_dark/sketch.exp.svg index b3c42b704d..f89be4e015 100644 --- a/d2renderers/d2sketch/testdata/crows_feet_dark/sketch.exp.svg +++ b/d2renderers/d2sketch/testdata/crows_feet_dark/sketch.exp.svg @@ -1,9 +1,9 @@ - + .d2-2915604262 .fill-N1{fill:#CDD6F4;} + .d2-2915604262 .fill-N2{fill:#BAC2DE;} + .d2-2915604262 .fill-N3{fill:#A6ADC8;} + .d2-2915604262 .fill-N4{fill:#585B70;} + .d2-2915604262 .fill-N5{fill:#45475A;} + .d2-2915604262 .fill-N6{fill:#313244;} + .d2-2915604262 .fill-N7{fill:#1E1E2E;} + .d2-2915604262 .fill-B1{fill:#CBA6f7;} + .d2-2915604262 .fill-B2{fill:#CBA6f7;} + .d2-2915604262 .fill-B3{fill:#6C7086;} + .d2-2915604262 .fill-B4{fill:#585B70;} + .d2-2915604262 .fill-B5{fill:#45475A;} + .d2-2915604262 .fill-B6{fill:#313244;} + .d2-2915604262 .fill-AA2{fill:#f38BA8;} + .d2-2915604262 .fill-AA4{fill:#45475A;} + .d2-2915604262 .fill-AA5{fill:#313244;} + .d2-2915604262 .fill-AB4{fill:#45475A;} + .d2-2915604262 .fill-AB5{fill:#313244;} + .d2-2915604262 .stroke-N1{stroke:#CDD6F4;} + .d2-2915604262 .stroke-N2{stroke:#BAC2DE;} + .d2-2915604262 .stroke-N3{stroke:#A6ADC8;} + .d2-2915604262 .stroke-N4{stroke:#585B70;} + .d2-2915604262 .stroke-N5{stroke:#45475A;} + .d2-2915604262 .stroke-N6{stroke:#313244;} + .d2-2915604262 .stroke-N7{stroke:#1E1E2E;} + .d2-2915604262 .stroke-B1{stroke:#CBA6f7;} + .d2-2915604262 .stroke-B2{stroke:#CBA6f7;} + .d2-2915604262 .stroke-B3{stroke:#6C7086;} + .d2-2915604262 .stroke-B4{stroke:#585B70;} + .d2-2915604262 .stroke-B5{stroke:#45475A;} + .d2-2915604262 .stroke-B6{stroke:#313244;} + .d2-2915604262 .stroke-AA2{stroke:#f38BA8;} + .d2-2915604262 .stroke-AA4{stroke:#45475A;} + .d2-2915604262 .stroke-AA5{stroke:#313244;} + .d2-2915604262 .stroke-AB4{stroke:#45475A;} + .d2-2915604262 .stroke-AB5{stroke:#313244;} + .d2-2915604262 .background-color-N1{background-color:#CDD6F4;} + .d2-2915604262 .background-color-N2{background-color:#BAC2DE;} + .d2-2915604262 .background-color-N3{background-color:#A6ADC8;} + .d2-2915604262 .background-color-N4{background-color:#585B70;} + .d2-2915604262 .background-color-N5{background-color:#45475A;} + .d2-2915604262 .background-color-N6{background-color:#313244;} + .d2-2915604262 .background-color-N7{background-color:#1E1E2E;} + .d2-2915604262 .background-color-B1{background-color:#CBA6f7;} + .d2-2915604262 .background-color-B2{background-color:#CBA6f7;} + .d2-2915604262 .background-color-B3{background-color:#6C7086;} + .d2-2915604262 .background-color-B4{background-color:#585B70;} + .d2-2915604262 .background-color-B5{background-color:#45475A;} + .d2-2915604262 .background-color-B6{background-color:#313244;} + .d2-2915604262 .background-color-AA2{background-color:#f38BA8;} + .d2-2915604262 .background-color-AA4{background-color:#45475A;} + .d2-2915604262 .background-color-AA5{background-color:#313244;} + .d2-2915604262 .background-color-AB4{background-color:#45475A;} + .d2-2915604262 .background-color-AB5{background-color:#313244;} + .d2-2915604262 .color-N1{color:#CDD6F4;} + .d2-2915604262 .color-N2{color:#BAC2DE;} + .d2-2915604262 .color-N3{color:#A6ADC8;} + .d2-2915604262 .color-N4{color:#585B70;} + .d2-2915604262 .color-N5{color:#45475A;} + .d2-2915604262 .color-N6{color:#313244;} + .d2-2915604262 .color-N7{color:#1E1E2E;} + .d2-2915604262 .color-B1{color:#CBA6f7;} + .d2-2915604262 .color-B2{color:#CBA6f7;} + .d2-2915604262 .color-B3{color:#6C7086;} + .d2-2915604262 .color-B4{color:#585B70;} + .d2-2915604262 .color-B5{color:#45475A;} + .d2-2915604262 .color-B6{color:#313244;} + .d2-2915604262 .color-AA2{color:#f38BA8;} + .d2-2915604262 .color-AA4{color:#45475A;} + .d2-2915604262 .color-AA5{color:#313244;} + .d2-2915604262 .color-AB4{color:#45475A;} + .d2-2915604262 .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}]]> -a1b1a2b2a3b3c1d1c2d2c3d3e1f1e2f2e3f3g1h1g2h2g3h3cdf +a1b1a2b2a3b3c1d1c2d2c3d3e1f1e2f2e3f3g1h1g2h2g3h3cdf diff --git a/d2renderers/d2sketch/testdata/dots-all/sketch.exp.svg b/d2renderers/d2sketch/testdata/dots-all/sketch.exp.svg index e49cc0e6e2..9f829cf192 100644 --- a/d2renderers/d2sketch/testdata/dots-all/sketch.exp.svg +++ b/d2renderers/d2sketch/testdata/dots-all/sketch.exp.svg @@ -1,9 +1,9 @@ - + .d2-2748623058 .fill-N1{fill:#0A0F25;} + .d2-2748623058 .fill-N2{fill:#676C7E;} + .d2-2748623058 .fill-N3{fill:#9499AB;} + .d2-2748623058 .fill-N4{fill:#CFD2DD;} + .d2-2748623058 .fill-N5{fill:#DEE1EB;} + .d2-2748623058 .fill-N6{fill:#EEF1F8;} + .d2-2748623058 .fill-N7{fill:#FFFFFF;} + .d2-2748623058 .fill-B1{fill:#0D32B2;} + .d2-2748623058 .fill-B2{fill:#0D32B2;} + .d2-2748623058 .fill-B3{fill:#E3E9FD;} + .d2-2748623058 .fill-B4{fill:#E3E9FD;} + .d2-2748623058 .fill-B5{fill:#EDF0FD;} + .d2-2748623058 .fill-B6{fill:#F7F8FE;} + .d2-2748623058 .fill-AA2{fill:#4A6FF3;} + .d2-2748623058 .fill-AA4{fill:#EDF0FD;} + .d2-2748623058 .fill-AA5{fill:#F7F8FE;} + .d2-2748623058 .fill-AB4{fill:#EDF0FD;} + .d2-2748623058 .fill-AB5{fill:#F7F8FE;} + .d2-2748623058 .stroke-N1{stroke:#0A0F25;} + .d2-2748623058 .stroke-N2{stroke:#676C7E;} + .d2-2748623058 .stroke-N3{stroke:#9499AB;} + .d2-2748623058 .stroke-N4{stroke:#CFD2DD;} + .d2-2748623058 .stroke-N5{stroke:#DEE1EB;} + .d2-2748623058 .stroke-N6{stroke:#EEF1F8;} + .d2-2748623058 .stroke-N7{stroke:#FFFFFF;} + .d2-2748623058 .stroke-B1{stroke:#0D32B2;} + .d2-2748623058 .stroke-B2{stroke:#0D32B2;} + .d2-2748623058 .stroke-B3{stroke:#E3E9FD;} + .d2-2748623058 .stroke-B4{stroke:#E3E9FD;} + .d2-2748623058 .stroke-B5{stroke:#EDF0FD;} + .d2-2748623058 .stroke-B6{stroke:#F7F8FE;} + .d2-2748623058 .stroke-AA2{stroke:#4A6FF3;} + .d2-2748623058 .stroke-AA4{stroke:#EDF0FD;} + .d2-2748623058 .stroke-AA5{stroke:#F7F8FE;} + .d2-2748623058 .stroke-AB4{stroke:#EDF0FD;} + .d2-2748623058 .stroke-AB5{stroke:#F7F8FE;} + .d2-2748623058 .background-color-N1{background-color:#0A0F25;} + .d2-2748623058 .background-color-N2{background-color:#676C7E;} + .d2-2748623058 .background-color-N3{background-color:#9499AB;} + .d2-2748623058 .background-color-N4{background-color:#CFD2DD;} + .d2-2748623058 .background-color-N5{background-color:#DEE1EB;} + .d2-2748623058 .background-color-N6{background-color:#EEF1F8;} + .d2-2748623058 .background-color-N7{background-color:#FFFFFF;} + .d2-2748623058 .background-color-B1{background-color:#0D32B2;} + .d2-2748623058 .background-color-B2{background-color:#0D32B2;} + .d2-2748623058 .background-color-B3{background-color:#E3E9FD;} + .d2-2748623058 .background-color-B4{background-color:#E3E9FD;} + .d2-2748623058 .background-color-B5{background-color:#EDF0FD;} + .d2-2748623058 .background-color-B6{background-color:#F7F8FE;} + .d2-2748623058 .background-color-AA2{background-color:#4A6FF3;} + .d2-2748623058 .background-color-AA4{background-color:#EDF0FD;} + .d2-2748623058 .background-color-AA5{background-color:#F7F8FE;} + .d2-2748623058 .background-color-AB4{background-color:#EDF0FD;} + .d2-2748623058 .background-color-AB5{background-color:#F7F8FE;} + .d2-2748623058 .color-N1{color:#0A0F25;} + .d2-2748623058 .color-N2{color:#676C7E;} + .d2-2748623058 .color-N3{color:#9499AB;} + .d2-2748623058 .color-N4{color:#CFD2DD;} + .d2-2748623058 .color-N5{color:#DEE1EB;} + .d2-2748623058 .color-N6{color:#EEF1F8;} + .d2-2748623058 .color-N7{color:#FFFFFF;} + .d2-2748623058 .color-B1{color:#0D32B2;} + .d2-2748623058 .color-B2{color:#0D32B2;} + .d2-2748623058 .color-B3{color:#E3E9FD;} + .d2-2748623058 .color-B4{color:#E3E9FD;} + .d2-2748623058 .color-B5{color:#EDF0FD;} + .d2-2748623058 .color-B6{color:#F7F8FE;} + .d2-2748623058 .color-AA2{color:#4A6FF3;} + .d2-2748623058 .color-AA4{color:#EDF0FD;} + .d2-2748623058 .color-AA5{color:#F7F8FE;} + .d2-2748623058 .color-AB4{color:#EDF0FD;} + .d2-2748623058 .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 diff --git a/d2renderers/d2sketch/testdata/dots-multiple/sketch.exp.svg b/d2renderers/d2sketch/testdata/dots-multiple/sketch.exp.svg index 9c33ef2b74..113464a641 100644 --- a/d2renderers/d2sketch/testdata/dots-multiple/sketch.exp.svg +++ b/d2renderers/d2sketch/testdata/dots-multiple/sketch.exp.svg @@ -1,9 +1,9 @@ - + .d2-2666140357 .fill-N1{fill:#0A0F25;} + .d2-2666140357 .fill-N2{fill:#676C7E;} + .d2-2666140357 .fill-N3{fill:#9499AB;} + .d2-2666140357 .fill-N4{fill:#CFD2DD;} + .d2-2666140357 .fill-N5{fill:#DEE1EB;} + .d2-2666140357 .fill-N6{fill:#EEF1F8;} + .d2-2666140357 .fill-N7{fill:#FFFFFF;} + .d2-2666140357 .fill-B1{fill:#0D32B2;} + .d2-2666140357 .fill-B2{fill:#0D32B2;} + .d2-2666140357 .fill-B3{fill:#E3E9FD;} + .d2-2666140357 .fill-B4{fill:#E3E9FD;} + .d2-2666140357 .fill-B5{fill:#EDF0FD;} + .d2-2666140357 .fill-B6{fill:#F7F8FE;} + .d2-2666140357 .fill-AA2{fill:#4A6FF3;} + .d2-2666140357 .fill-AA4{fill:#EDF0FD;} + .d2-2666140357 .fill-AA5{fill:#F7F8FE;} + .d2-2666140357 .fill-AB4{fill:#EDF0FD;} + .d2-2666140357 .fill-AB5{fill:#F7F8FE;} + .d2-2666140357 .stroke-N1{stroke:#0A0F25;} + .d2-2666140357 .stroke-N2{stroke:#676C7E;} + .d2-2666140357 .stroke-N3{stroke:#9499AB;} + .d2-2666140357 .stroke-N4{stroke:#CFD2DD;} + .d2-2666140357 .stroke-N5{stroke:#DEE1EB;} + .d2-2666140357 .stroke-N6{stroke:#EEF1F8;} + .d2-2666140357 .stroke-N7{stroke:#FFFFFF;} + .d2-2666140357 .stroke-B1{stroke:#0D32B2;} + .d2-2666140357 .stroke-B2{stroke:#0D32B2;} + .d2-2666140357 .stroke-B3{stroke:#E3E9FD;} + .d2-2666140357 .stroke-B4{stroke:#E3E9FD;} + .d2-2666140357 .stroke-B5{stroke:#EDF0FD;} + .d2-2666140357 .stroke-B6{stroke:#F7F8FE;} + .d2-2666140357 .stroke-AA2{stroke:#4A6FF3;} + .d2-2666140357 .stroke-AA4{stroke:#EDF0FD;} + .d2-2666140357 .stroke-AA5{stroke:#F7F8FE;} + .d2-2666140357 .stroke-AB4{stroke:#EDF0FD;} + .d2-2666140357 .stroke-AB5{stroke:#F7F8FE;} + .d2-2666140357 .background-color-N1{background-color:#0A0F25;} + .d2-2666140357 .background-color-N2{background-color:#676C7E;} + .d2-2666140357 .background-color-N3{background-color:#9499AB;} + .d2-2666140357 .background-color-N4{background-color:#CFD2DD;} + .d2-2666140357 .background-color-N5{background-color:#DEE1EB;} + .d2-2666140357 .background-color-N6{background-color:#EEF1F8;} + .d2-2666140357 .background-color-N7{background-color:#FFFFFF;} + .d2-2666140357 .background-color-B1{background-color:#0D32B2;} + .d2-2666140357 .background-color-B2{background-color:#0D32B2;} + .d2-2666140357 .background-color-B3{background-color:#E3E9FD;} + .d2-2666140357 .background-color-B4{background-color:#E3E9FD;} + .d2-2666140357 .background-color-B5{background-color:#EDF0FD;} + .d2-2666140357 .background-color-B6{background-color:#F7F8FE;} + .d2-2666140357 .background-color-AA2{background-color:#4A6FF3;} + .d2-2666140357 .background-color-AA4{background-color:#EDF0FD;} + .d2-2666140357 .background-color-AA5{background-color:#F7F8FE;} + .d2-2666140357 .background-color-AB4{background-color:#EDF0FD;} + .d2-2666140357 .background-color-AB5{background-color:#F7F8FE;} + .d2-2666140357 .color-N1{color:#0A0F25;} + .d2-2666140357 .color-N2{color:#676C7E;} + .d2-2666140357 .color-N3{color:#9499AB;} + .d2-2666140357 .color-N4{color:#CFD2DD;} + .d2-2666140357 .color-N5{color:#DEE1EB;} + .d2-2666140357 .color-N6{color:#EEF1F8;} + .d2-2666140357 .color-N7{color:#FFFFFF;} + .d2-2666140357 .color-B1{color:#0D32B2;} + .d2-2666140357 .color-B2{color:#0D32B2;} + .d2-2666140357 .color-B3{color:#E3E9FD;} + .d2-2666140357 .color-B4{color:#E3E9FD;} + .d2-2666140357 .color-B5{color:#EDF0FD;} + .d2-2666140357 .color-B6{color:#F7F8FE;} + .d2-2666140357 .color-AA2{color:#4A6FF3;} + .d2-2666140357 .color-AA4{color:#EDF0FD;} + .d2-2666140357 .color-AA5{color:#F7F8FE;} + .d2-2666140357 .color-AB4{color:#EDF0FD;} + .d2-2666140357 .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 diff --git a/d2renderers/d2sketch/testdata/dots-real/sketch.exp.svg b/d2renderers/d2sketch/testdata/dots-real/sketch.exp.svg index 33af57ce10..78ffba598b 100644 --- a/d2renderers/d2sketch/testdata/dots-real/sketch.exp.svg +++ b/d2renderers/d2sketch/testdata/dots-real/sketch.exp.svg @@ -1,23 +1,23 @@ - + .d2-3895601589 .fill-N1{fill:#0A0F25;} + .d2-3895601589 .fill-N2{fill:#676C7E;} + .d2-3895601589 .fill-N3{fill:#9499AB;} + .d2-3895601589 .fill-N4{fill:#CFD2DD;} + .d2-3895601589 .fill-N5{fill:#DEE1EB;} + .d2-3895601589 .fill-N6{fill:#EEF1F8;} + .d2-3895601589 .fill-N7{fill:#FFFFFF;} + .d2-3895601589 .fill-B1{fill:#0D32B2;} + .d2-3895601589 .fill-B2{fill:#0D32B2;} + .d2-3895601589 .fill-B3{fill:#E3E9FD;} + .d2-3895601589 .fill-B4{fill:#E3E9FD;} + .d2-3895601589 .fill-B5{fill:#EDF0FD;} + .d2-3895601589 .fill-B6{fill:#F7F8FE;} + .d2-3895601589 .fill-AA2{fill:#4A6FF3;} + .d2-3895601589 .fill-AA4{fill:#EDF0FD;} + .d2-3895601589 .fill-AA5{fill:#F7F8FE;} + .d2-3895601589 .fill-AB4{fill:#EDF0FD;} + .d2-3895601589 .fill-AB5{fill:#F7F8FE;} + .d2-3895601589 .stroke-N1{stroke:#0A0F25;} + .d2-3895601589 .stroke-N2{stroke:#676C7E;} + .d2-3895601589 .stroke-N3{stroke:#9499AB;} + .d2-3895601589 .stroke-N4{stroke:#CFD2DD;} + .d2-3895601589 .stroke-N5{stroke:#DEE1EB;} + .d2-3895601589 .stroke-N6{stroke:#EEF1F8;} + .d2-3895601589 .stroke-N7{stroke:#FFFFFF;} + .d2-3895601589 .stroke-B1{stroke:#0D32B2;} + .d2-3895601589 .stroke-B2{stroke:#0D32B2;} + .d2-3895601589 .stroke-B3{stroke:#E3E9FD;} + .d2-3895601589 .stroke-B4{stroke:#E3E9FD;} + .d2-3895601589 .stroke-B5{stroke:#EDF0FD;} + .d2-3895601589 .stroke-B6{stroke:#F7F8FE;} + .d2-3895601589 .stroke-AA2{stroke:#4A6FF3;} + .d2-3895601589 .stroke-AA4{stroke:#EDF0FD;} + .d2-3895601589 .stroke-AA5{stroke:#F7F8FE;} + .d2-3895601589 .stroke-AB4{stroke:#EDF0FD;} + .d2-3895601589 .stroke-AB5{stroke:#F7F8FE;} + .d2-3895601589 .background-color-N1{background-color:#0A0F25;} + .d2-3895601589 .background-color-N2{background-color:#676C7E;} + .d2-3895601589 .background-color-N3{background-color:#9499AB;} + .d2-3895601589 .background-color-N4{background-color:#CFD2DD;} + .d2-3895601589 .background-color-N5{background-color:#DEE1EB;} + .d2-3895601589 .background-color-N6{background-color:#EEF1F8;} + .d2-3895601589 .background-color-N7{background-color:#FFFFFF;} + .d2-3895601589 .background-color-B1{background-color:#0D32B2;} + .d2-3895601589 .background-color-B2{background-color:#0D32B2;} + .d2-3895601589 .background-color-B3{background-color:#E3E9FD;} + .d2-3895601589 .background-color-B4{background-color:#E3E9FD;} + .d2-3895601589 .background-color-B5{background-color:#EDF0FD;} + .d2-3895601589 .background-color-B6{background-color:#F7F8FE;} + .d2-3895601589 .background-color-AA2{background-color:#4A6FF3;} + .d2-3895601589 .background-color-AA4{background-color:#EDF0FD;} + .d2-3895601589 .background-color-AA5{background-color:#F7F8FE;} + .d2-3895601589 .background-color-AB4{background-color:#EDF0FD;} + .d2-3895601589 .background-color-AB5{background-color:#F7F8FE;} + .d2-3895601589 .color-N1{color:#0A0F25;} + .d2-3895601589 .color-N2{color:#676C7E;} + .d2-3895601589 .color-N3{color:#9499AB;} + .d2-3895601589 .color-N4{color:#CFD2DD;} + .d2-3895601589 .color-N5{color:#DEE1EB;} + .d2-3895601589 .color-N6{color:#EEF1F8;} + .d2-3895601589 .color-N7{color:#FFFFFF;} + .d2-3895601589 .color-B1{color:#0D32B2;} + .d2-3895601589 .color-B2{color:#0D32B2;} + .d2-3895601589 .color-B3{color:#E3E9FD;} + .d2-3895601589 .color-B4{color:#E3E9FD;} + .d2-3895601589 .color-B5{color:#EDF0FD;} + .d2-3895601589 .color-B6{color:#F7F8FE;} + .d2-3895601589 .color-AA2{color:#4A6FF3;} + .d2-3895601589 .color-AA4{color:#EDF0FD;} + .d2-3895601589 .color-AA5{color:#F7F8FE;} + .d2-3895601589 .color-AB4{color:#EDF0FD;} + .d2-3895601589 .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}]]> @@ -166,7 +166,7 @@ -NETWORKD2 Parser+readerio.RuneReader+readerPosd2ast.Position-lookahead[]rune#peekn(n int)(s string, eof bool)+peek()(r rune, eof bool)+rewind()void+commit()voidCELL TOWERSATELLITESTRANSMITTER SEND SEND SEND +NETWORKD2 Parser+readerio.RuneReader+readerPosd2ast.Position-lookahead[]rune#peekn(n int)(s string, eof bool)+peek()(r rune, eof bool)+rewind()void+commit()voidCELL TOWERSATELLITESTRANSMITTER SEND SEND SEND diff --git a/d2renderers/d2sketch/testdata/elk_corners/sketch.exp.svg b/d2renderers/d2sketch/testdata/elk_corners/sketch.exp.svg index 1f70a7e52c..46f160dbea 100644 --- a/d2renderers/d2sketch/testdata/elk_corners/sketch.exp.svg +++ b/d2renderers/d2sketch/testdata/elk_corners/sketch.exp.svg @@ -1,9 +1,9 @@ - + .d2-2273442840 .fill-N1{fill:#0A0F25;} + .d2-2273442840 .fill-N2{fill:#676C7E;} + .d2-2273442840 .fill-N3{fill:#9499AB;} + .d2-2273442840 .fill-N4{fill:#CFD2DD;} + .d2-2273442840 .fill-N5{fill:#DEE1EB;} + .d2-2273442840 .fill-N6{fill:#EEF1F8;} + .d2-2273442840 .fill-N7{fill:#FFFFFF;} + .d2-2273442840 .fill-B1{fill:#0D32B2;} + .d2-2273442840 .fill-B2{fill:#0D32B2;} + .d2-2273442840 .fill-B3{fill:#E3E9FD;} + .d2-2273442840 .fill-B4{fill:#E3E9FD;} + .d2-2273442840 .fill-B5{fill:#EDF0FD;} + .d2-2273442840 .fill-B6{fill:#F7F8FE;} + .d2-2273442840 .fill-AA2{fill:#4A6FF3;} + .d2-2273442840 .fill-AA4{fill:#EDF0FD;} + .d2-2273442840 .fill-AA5{fill:#F7F8FE;} + .d2-2273442840 .fill-AB4{fill:#EDF0FD;} + .d2-2273442840 .fill-AB5{fill:#F7F8FE;} + .d2-2273442840 .stroke-N1{stroke:#0A0F25;} + .d2-2273442840 .stroke-N2{stroke:#676C7E;} + .d2-2273442840 .stroke-N3{stroke:#9499AB;} + .d2-2273442840 .stroke-N4{stroke:#CFD2DD;} + .d2-2273442840 .stroke-N5{stroke:#DEE1EB;} + .d2-2273442840 .stroke-N6{stroke:#EEF1F8;} + .d2-2273442840 .stroke-N7{stroke:#FFFFFF;} + .d2-2273442840 .stroke-B1{stroke:#0D32B2;} + .d2-2273442840 .stroke-B2{stroke:#0D32B2;} + .d2-2273442840 .stroke-B3{stroke:#E3E9FD;} + .d2-2273442840 .stroke-B4{stroke:#E3E9FD;} + .d2-2273442840 .stroke-B5{stroke:#EDF0FD;} + .d2-2273442840 .stroke-B6{stroke:#F7F8FE;} + .d2-2273442840 .stroke-AA2{stroke:#4A6FF3;} + .d2-2273442840 .stroke-AA4{stroke:#EDF0FD;} + .d2-2273442840 .stroke-AA5{stroke:#F7F8FE;} + .d2-2273442840 .stroke-AB4{stroke:#EDF0FD;} + .d2-2273442840 .stroke-AB5{stroke:#F7F8FE;} + .d2-2273442840 .background-color-N1{background-color:#0A0F25;} + .d2-2273442840 .background-color-N2{background-color:#676C7E;} + .d2-2273442840 .background-color-N3{background-color:#9499AB;} + .d2-2273442840 .background-color-N4{background-color:#CFD2DD;} + .d2-2273442840 .background-color-N5{background-color:#DEE1EB;} + .d2-2273442840 .background-color-N6{background-color:#EEF1F8;} + .d2-2273442840 .background-color-N7{background-color:#FFFFFF;} + .d2-2273442840 .background-color-B1{background-color:#0D32B2;} + .d2-2273442840 .background-color-B2{background-color:#0D32B2;} + .d2-2273442840 .background-color-B3{background-color:#E3E9FD;} + .d2-2273442840 .background-color-B4{background-color:#E3E9FD;} + .d2-2273442840 .background-color-B5{background-color:#EDF0FD;} + .d2-2273442840 .background-color-B6{background-color:#F7F8FE;} + .d2-2273442840 .background-color-AA2{background-color:#4A6FF3;} + .d2-2273442840 .background-color-AA4{background-color:#EDF0FD;} + .d2-2273442840 .background-color-AA5{background-color:#F7F8FE;} + .d2-2273442840 .background-color-AB4{background-color:#EDF0FD;} + .d2-2273442840 .background-color-AB5{background-color:#F7F8FE;} + .d2-2273442840 .color-N1{color:#0A0F25;} + .d2-2273442840 .color-N2{color:#676C7E;} + .d2-2273442840 .color-N3{color:#9499AB;} + .d2-2273442840 .color-N4{color:#CFD2DD;} + .d2-2273442840 .color-N5{color:#DEE1EB;} + .d2-2273442840 .color-N6{color:#EEF1F8;} + .d2-2273442840 .color-N7{color:#FFFFFF;} + .d2-2273442840 .color-B1{color:#0D32B2;} + .d2-2273442840 .color-B2{color:#0D32B2;} + .d2-2273442840 .color-B3{color:#E3E9FD;} + .d2-2273442840 .color-B4{color:#E3E9FD;} + .d2-2273442840 .color-B5{color:#EDF0FD;} + .d2-2273442840 .color-B6{color:#F7F8FE;} + .d2-2273442840 .color-AA2{color:#4A6FF3;} + .d2-2273442840 .color-AA4{color:#EDF0FD;} + .d2-2273442840 .color-AA5{color:#F7F8FE;} + .d2-2273442840 .color-AB4{color:#EDF0FD;} + .d2-2273442840 .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 @@ -abc +abc diff --git a/d2renderers/d2sketch/testdata/long_arrowhead_label/sketch.exp.svg b/d2renderers/d2sketch/testdata/long_arrowhead_label/sketch.exp.svg index 8cd1e7ac3c..bbf6b123e7 100644 --- a/d2renderers/d2sketch/testdata/long_arrowhead_label/sketch.exp.svg +++ b/d2renderers/d2sketch/testdata/long_arrowhead_label/sketch.exp.svg @@ -1,16 +1,16 @@ - + .d2-2279718632 .fill-N1{fill:#0A0F25;} + .d2-2279718632 .fill-N2{fill:#676C7E;} + .d2-2279718632 .fill-N3{fill:#9499AB;} + .d2-2279718632 .fill-N4{fill:#CFD2DD;} + .d2-2279718632 .fill-N5{fill:#DEE1EB;} + .d2-2279718632 .fill-N6{fill:#EEF1F8;} + .d2-2279718632 .fill-N7{fill:#FFFFFF;} + .d2-2279718632 .fill-B1{fill:#0D32B2;} + .d2-2279718632 .fill-B2{fill:#0D32B2;} + .d2-2279718632 .fill-B3{fill:#E3E9FD;} + .d2-2279718632 .fill-B4{fill:#E3E9FD;} + .d2-2279718632 .fill-B5{fill:#EDF0FD;} + .d2-2279718632 .fill-B6{fill:#F7F8FE;} + .d2-2279718632 .fill-AA2{fill:#4A6FF3;} + .d2-2279718632 .fill-AA4{fill:#EDF0FD;} + .d2-2279718632 .fill-AA5{fill:#F7F8FE;} + .d2-2279718632 .fill-AB4{fill:#EDF0FD;} + .d2-2279718632 .fill-AB5{fill:#F7F8FE;} + .d2-2279718632 .stroke-N1{stroke:#0A0F25;} + .d2-2279718632 .stroke-N2{stroke:#676C7E;} + .d2-2279718632 .stroke-N3{stroke:#9499AB;} + .d2-2279718632 .stroke-N4{stroke:#CFD2DD;} + .d2-2279718632 .stroke-N5{stroke:#DEE1EB;} + .d2-2279718632 .stroke-N6{stroke:#EEF1F8;} + .d2-2279718632 .stroke-N7{stroke:#FFFFFF;} + .d2-2279718632 .stroke-B1{stroke:#0D32B2;} + .d2-2279718632 .stroke-B2{stroke:#0D32B2;} + .d2-2279718632 .stroke-B3{stroke:#E3E9FD;} + .d2-2279718632 .stroke-B4{stroke:#E3E9FD;} + .d2-2279718632 .stroke-B5{stroke:#EDF0FD;} + .d2-2279718632 .stroke-B6{stroke:#F7F8FE;} + .d2-2279718632 .stroke-AA2{stroke:#4A6FF3;} + .d2-2279718632 .stroke-AA4{stroke:#EDF0FD;} + .d2-2279718632 .stroke-AA5{stroke:#F7F8FE;} + .d2-2279718632 .stroke-AB4{stroke:#EDF0FD;} + .d2-2279718632 .stroke-AB5{stroke:#F7F8FE;} + .d2-2279718632 .background-color-N1{background-color:#0A0F25;} + .d2-2279718632 .background-color-N2{background-color:#676C7E;} + .d2-2279718632 .background-color-N3{background-color:#9499AB;} + .d2-2279718632 .background-color-N4{background-color:#CFD2DD;} + .d2-2279718632 .background-color-N5{background-color:#DEE1EB;} + .d2-2279718632 .background-color-N6{background-color:#EEF1F8;} + .d2-2279718632 .background-color-N7{background-color:#FFFFFF;} + .d2-2279718632 .background-color-B1{background-color:#0D32B2;} + .d2-2279718632 .background-color-B2{background-color:#0D32B2;} + .d2-2279718632 .background-color-B3{background-color:#E3E9FD;} + .d2-2279718632 .background-color-B4{background-color:#E3E9FD;} + .d2-2279718632 .background-color-B5{background-color:#EDF0FD;} + .d2-2279718632 .background-color-B6{background-color:#F7F8FE;} + .d2-2279718632 .background-color-AA2{background-color:#4A6FF3;} + .d2-2279718632 .background-color-AA4{background-color:#EDF0FD;} + .d2-2279718632 .background-color-AA5{background-color:#F7F8FE;} + .d2-2279718632 .background-color-AB4{background-color:#EDF0FD;} + .d2-2279718632 .background-color-AB5{background-color:#F7F8FE;} + .d2-2279718632 .color-N1{color:#0A0F25;} + .d2-2279718632 .color-N2{color:#676C7E;} + .d2-2279718632 .color-N3{color:#9499AB;} + .d2-2279718632 .color-N4{color:#CFD2DD;} + .d2-2279718632 .color-N5{color:#DEE1EB;} + .d2-2279718632 .color-N6{color:#EEF1F8;} + .d2-2279718632 .color-N7{color:#FFFFFF;} + .d2-2279718632 .color-B1{color:#0D32B2;} + .d2-2279718632 .color-B2{color:#0D32B2;} + .d2-2279718632 .color-B3{color:#E3E9FD;} + .d2-2279718632 .color-B4{color:#E3E9FD;} + .d2-2279718632 .color-B5{color:#EDF0FD;} + .d2-2279718632 .color-B6{color:#F7F8FE;} + .d2-2279718632 .color-AA2{color:#4A6FF3;} + .d2-2279718632 .color-AA4{color:#EDF0FD;} + .d2-2279718632 .color-AA5{color:#F7F8FE;} + .d2-2279718632 .color-AB4{color:#EDF0FD;} + .d2-2279718632 .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}]]> @@ -104,7 +104,7 @@ -ab a to b with unexpectedly long target arrowhead label +ab a to b with unexpectedly long target arrowhead label diff --git a/d2renderers/d2sketch/testdata/opacity/sketch.exp.svg b/d2renderers/d2sketch/testdata/opacity/sketch.exp.svg index 822c04c831..7040ecbc5c 100644 --- a/d2renderers/d2sketch/testdata/opacity/sketch.exp.svg +++ b/d2renderers/d2sketch/testdata/opacity/sketch.exp.svg @@ -1,27 +1,27 @@ - @@ -852,7 +852,7 @@ x

linux: because a PC is a terrible thing to waste

-
auserslast_logindatetime You don't have to know how the computer works,just how to work the computer. +auserslast_logindatetime You don't have to know how the computer works,just how to work the computer. diff --git a/d2renderers/d2sketch/testdata/opacity_dark/sketch.exp.svg b/d2renderers/d2sketch/testdata/opacity_dark/sketch.exp.svg index bca073d4f1..4c915c2648 100644 --- a/d2renderers/d2sketch/testdata/opacity_dark/sketch.exp.svg +++ b/d2renderers/d2sketch/testdata/opacity_dark/sketch.exp.svg @@ -1,27 +1,27 @@ - @@ -850,7 +850,7 @@ x

linux: because a PC is a terrible thing to waste

-
auserslast_logindatetime You don't have to know how the computer works,just how to work the computer. +auserslast_logindatetime You don't have to know how the computer works,just how to work the computer. diff --git a/d2renderers/d2sketch/testdata/paper-real/sketch.exp.svg b/d2renderers/d2sketch/testdata/paper-real/sketch.exp.svg index e8883b036a..ffa6d63dd1 100644 --- a/d2renderers/d2sketch/testdata/paper-real/sketch.exp.svg +++ b/d2renderers/d2sketch/testdata/paper-real/sketch.exp.svg @@ -1,23 +1,23 @@ - + .d2-2667241386 .fill-N1{fill:#0A0F25;} + .d2-2667241386 .fill-N2{fill:#676C7E;} + .d2-2667241386 .fill-N3{fill:#9499AB;} + .d2-2667241386 .fill-N4{fill:#CFD2DD;} + .d2-2667241386 .fill-N5{fill:#DEE1EB;} + .d2-2667241386 .fill-N6{fill:#EEF1F8;} + .d2-2667241386 .fill-N7{fill:#FFFFFF;} + .d2-2667241386 .fill-B1{fill:#0D32B2;} + .d2-2667241386 .fill-B2{fill:#0D32B2;} + .d2-2667241386 .fill-B3{fill:#E3E9FD;} + .d2-2667241386 .fill-B4{fill:#E3E9FD;} + .d2-2667241386 .fill-B5{fill:#EDF0FD;} + .d2-2667241386 .fill-B6{fill:#F7F8FE;} + .d2-2667241386 .fill-AA2{fill:#4A6FF3;} + .d2-2667241386 .fill-AA4{fill:#EDF0FD;} + .d2-2667241386 .fill-AA5{fill:#F7F8FE;} + .d2-2667241386 .fill-AB4{fill:#EDF0FD;} + .d2-2667241386 .fill-AB5{fill:#F7F8FE;} + .d2-2667241386 .stroke-N1{stroke:#0A0F25;} + .d2-2667241386 .stroke-N2{stroke:#676C7E;} + .d2-2667241386 .stroke-N3{stroke:#9499AB;} + .d2-2667241386 .stroke-N4{stroke:#CFD2DD;} + .d2-2667241386 .stroke-N5{stroke:#DEE1EB;} + .d2-2667241386 .stroke-N6{stroke:#EEF1F8;} + .d2-2667241386 .stroke-N7{stroke:#FFFFFF;} + .d2-2667241386 .stroke-B1{stroke:#0D32B2;} + .d2-2667241386 .stroke-B2{stroke:#0D32B2;} + .d2-2667241386 .stroke-B3{stroke:#E3E9FD;} + .d2-2667241386 .stroke-B4{stroke:#E3E9FD;} + .d2-2667241386 .stroke-B5{stroke:#EDF0FD;} + .d2-2667241386 .stroke-B6{stroke:#F7F8FE;} + .d2-2667241386 .stroke-AA2{stroke:#4A6FF3;} + .d2-2667241386 .stroke-AA4{stroke:#EDF0FD;} + .d2-2667241386 .stroke-AA5{stroke:#F7F8FE;} + .d2-2667241386 .stroke-AB4{stroke:#EDF0FD;} + .d2-2667241386 .stroke-AB5{stroke:#F7F8FE;} + .d2-2667241386 .background-color-N1{background-color:#0A0F25;} + .d2-2667241386 .background-color-N2{background-color:#676C7E;} + .d2-2667241386 .background-color-N3{background-color:#9499AB;} + .d2-2667241386 .background-color-N4{background-color:#CFD2DD;} + .d2-2667241386 .background-color-N5{background-color:#DEE1EB;} + .d2-2667241386 .background-color-N6{background-color:#EEF1F8;} + .d2-2667241386 .background-color-N7{background-color:#FFFFFF;} + .d2-2667241386 .background-color-B1{background-color:#0D32B2;} + .d2-2667241386 .background-color-B2{background-color:#0D32B2;} + .d2-2667241386 .background-color-B3{background-color:#E3E9FD;} + .d2-2667241386 .background-color-B4{background-color:#E3E9FD;} + .d2-2667241386 .background-color-B5{background-color:#EDF0FD;} + .d2-2667241386 .background-color-B6{background-color:#F7F8FE;} + .d2-2667241386 .background-color-AA2{background-color:#4A6FF3;} + .d2-2667241386 .background-color-AA4{background-color:#EDF0FD;} + .d2-2667241386 .background-color-AA5{background-color:#F7F8FE;} + .d2-2667241386 .background-color-AB4{background-color:#EDF0FD;} + .d2-2667241386 .background-color-AB5{background-color:#F7F8FE;} + .d2-2667241386 .color-N1{color:#0A0F25;} + .d2-2667241386 .color-N2{color:#676C7E;} + .d2-2667241386 .color-N3{color:#9499AB;} + .d2-2667241386 .color-N4{color:#CFD2DD;} + .d2-2667241386 .color-N5{color:#DEE1EB;} + .d2-2667241386 .color-N6{color:#EEF1F8;} + .d2-2667241386 .color-N7{color:#FFFFFF;} + .d2-2667241386 .color-B1{color:#0D32B2;} + .d2-2667241386 .color-B2{color:#0D32B2;} + .d2-2667241386 .color-B3{color:#E3E9FD;} + .d2-2667241386 .color-B4{color:#E3E9FD;} + .d2-2667241386 .color-B5{color:#EDF0FD;} + .d2-2667241386 .color-B6{color:#F7F8FE;} + .d2-2667241386 .color-AA2{color:#4A6FF3;} + .d2-2667241386 .color-AA4{color:#EDF0FD;} + .d2-2667241386 .color-AA5{color:#F7F8FE;} + .d2-2667241386 .color-AB4{color:#EDF0FD;} + .d2-2667241386 .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}]]> @@ -1212,7 +1212,7 @@ -NETWORKCELL TOWERSATELLITESTRANSMITTER SEND SEND SEND +NETWORKCELL TOWERSATELLITESTRANSMITTER SEND SEND SEND diff --git a/d2renderers/d2sketch/testdata/root-fill/sketch.exp.svg b/d2renderers/d2sketch/testdata/root-fill/sketch.exp.svg index 6b7802e155..4b9870d5b0 100644 --- a/d2renderers/d2sketch/testdata/root-fill/sketch.exp.svg +++ b/d2renderers/d2sketch/testdata/root-fill/sketch.exp.svg @@ -1,20 +1,20 @@ - @@ -851,7 +851,7 @@
  • Staging
  • Dispatch to Site
  • - + diff --git a/d2renderers/d2sketch/testdata/sql_tables/sketch.exp.svg b/d2renderers/d2sketch/testdata/sql_tables/sketch.exp.svg index a8b9ccc2c4..5631d0e865 100644 --- a/d2renderers/d2sketch/testdata/sql_tables/sketch.exp.svg +++ b/d2renderers/d2sketch/testdata/sql_tables/sketch.exp.svg @@ -1,9 +1,9 @@ - + .d2-3175421624 .fill-N1{fill:#0A0F25;} + .d2-3175421624 .fill-N2{fill:#676C7E;} + .d2-3175421624 .fill-N3{fill:#9499AB;} + .d2-3175421624 .fill-N4{fill:#CFD2DD;} + .d2-3175421624 .fill-N5{fill:#DEE1EB;} + .d2-3175421624 .fill-N6{fill:#EEF1F8;} + .d2-3175421624 .fill-N7{fill:#FFFFFF;} + .d2-3175421624 .fill-B1{fill:#0D32B2;} + .d2-3175421624 .fill-B2{fill:#0D32B2;} + .d2-3175421624 .fill-B3{fill:#E3E9FD;} + .d2-3175421624 .fill-B4{fill:#E3E9FD;} + .d2-3175421624 .fill-B5{fill:#EDF0FD;} + .d2-3175421624 .fill-B6{fill:#F7F8FE;} + .d2-3175421624 .fill-AA2{fill:#4A6FF3;} + .d2-3175421624 .fill-AA4{fill:#EDF0FD;} + .d2-3175421624 .fill-AA5{fill:#F7F8FE;} + .d2-3175421624 .fill-AB4{fill:#EDF0FD;} + .d2-3175421624 .fill-AB5{fill:#F7F8FE;} + .d2-3175421624 .stroke-N1{stroke:#0A0F25;} + .d2-3175421624 .stroke-N2{stroke:#676C7E;} + .d2-3175421624 .stroke-N3{stroke:#9499AB;} + .d2-3175421624 .stroke-N4{stroke:#CFD2DD;} + .d2-3175421624 .stroke-N5{stroke:#DEE1EB;} + .d2-3175421624 .stroke-N6{stroke:#EEF1F8;} + .d2-3175421624 .stroke-N7{stroke:#FFFFFF;} + .d2-3175421624 .stroke-B1{stroke:#0D32B2;} + .d2-3175421624 .stroke-B2{stroke:#0D32B2;} + .d2-3175421624 .stroke-B3{stroke:#E3E9FD;} + .d2-3175421624 .stroke-B4{stroke:#E3E9FD;} + .d2-3175421624 .stroke-B5{stroke:#EDF0FD;} + .d2-3175421624 .stroke-B6{stroke:#F7F8FE;} + .d2-3175421624 .stroke-AA2{stroke:#4A6FF3;} + .d2-3175421624 .stroke-AA4{stroke:#EDF0FD;} + .d2-3175421624 .stroke-AA5{stroke:#F7F8FE;} + .d2-3175421624 .stroke-AB4{stroke:#EDF0FD;} + .d2-3175421624 .stroke-AB5{stroke:#F7F8FE;} + .d2-3175421624 .background-color-N1{background-color:#0A0F25;} + .d2-3175421624 .background-color-N2{background-color:#676C7E;} + .d2-3175421624 .background-color-N3{background-color:#9499AB;} + .d2-3175421624 .background-color-N4{background-color:#CFD2DD;} + .d2-3175421624 .background-color-N5{background-color:#DEE1EB;} + .d2-3175421624 .background-color-N6{background-color:#EEF1F8;} + .d2-3175421624 .background-color-N7{background-color:#FFFFFF;} + .d2-3175421624 .background-color-B1{background-color:#0D32B2;} + .d2-3175421624 .background-color-B2{background-color:#0D32B2;} + .d2-3175421624 .background-color-B3{background-color:#E3E9FD;} + .d2-3175421624 .background-color-B4{background-color:#E3E9FD;} + .d2-3175421624 .background-color-B5{background-color:#EDF0FD;} + .d2-3175421624 .background-color-B6{background-color:#F7F8FE;} + .d2-3175421624 .background-color-AA2{background-color:#4A6FF3;} + .d2-3175421624 .background-color-AA4{background-color:#EDF0FD;} + .d2-3175421624 .background-color-AA5{background-color:#F7F8FE;} + .d2-3175421624 .background-color-AB4{background-color:#EDF0FD;} + .d2-3175421624 .background-color-AB5{background-color:#F7F8FE;} + .d2-3175421624 .color-N1{color:#0A0F25;} + .d2-3175421624 .color-N2{color:#676C7E;} + .d2-3175421624 .color-N3{color:#9499AB;} + .d2-3175421624 .color-N4{color:#CFD2DD;} + .d2-3175421624 .color-N5{color:#DEE1EB;} + .d2-3175421624 .color-N6{color:#EEF1F8;} + .d2-3175421624 .color-N7{color:#FFFFFF;} + .d2-3175421624 .color-B1{color:#0D32B2;} + .d2-3175421624 .color-B2{color:#0D32B2;} + .d2-3175421624 .color-B3{color:#E3E9FD;} + .d2-3175421624 .color-B4{color:#E3E9FD;} + .d2-3175421624 .color-B5{color:#EDF0FD;} + .d2-3175421624 .color-B6{color:#F7F8FE;} + .d2-3175421624 .color-AA2{color:#4A6FF3;} + .d2-3175421624 .color-AA4{color:#EDF0FD;} + .d2-3175421624 .color-AA5{color:#F7F8FE;} + .d2-3175421624 .color-AB4{color:#EDF0FD;} + .d2-3175421624 .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 @@ -usersidintnamestringemailstringpasswordstringlast_logindatetimeproductsidintpricedecimalskustringnamestringordersidintuser_idintproduct_idintshipmentsidintorder_idinttracking_numberstringPKstatusstring +usersidintnamestringemailstringpasswordstringlast_logindatetimeproductsidintpricedecimalskustringnamestringordersidintuser_idintproduct_idintshipmentsidintorder_idinttracking_numberstringPKstatusstring \ No newline at end of file diff --git a/d2renderers/d2sketch/testdata/sql_tables_dark/sketch.exp.svg b/d2renderers/d2sketch/testdata/sql_tables_dark/sketch.exp.svg index 1611e240cd..69c1983178 100644 --- a/d2renderers/d2sketch/testdata/sql_tables_dark/sketch.exp.svg +++ b/d2renderers/d2sketch/testdata/sql_tables_dark/sketch.exp.svg @@ -1,9 +1,9 @@ - + .d2-3175421624 .fill-N1{fill:#CDD6F4;} + .d2-3175421624 .fill-N2{fill:#BAC2DE;} + .d2-3175421624 .fill-N3{fill:#A6ADC8;} + .d2-3175421624 .fill-N4{fill:#585B70;} + .d2-3175421624 .fill-N5{fill:#45475A;} + .d2-3175421624 .fill-N6{fill:#313244;} + .d2-3175421624 .fill-N7{fill:#1E1E2E;} + .d2-3175421624 .fill-B1{fill:#CBA6f7;} + .d2-3175421624 .fill-B2{fill:#CBA6f7;} + .d2-3175421624 .fill-B3{fill:#6C7086;} + .d2-3175421624 .fill-B4{fill:#585B70;} + .d2-3175421624 .fill-B5{fill:#45475A;} + .d2-3175421624 .fill-B6{fill:#313244;} + .d2-3175421624 .fill-AA2{fill:#f38BA8;} + .d2-3175421624 .fill-AA4{fill:#45475A;} + .d2-3175421624 .fill-AA5{fill:#313244;} + .d2-3175421624 .fill-AB4{fill:#45475A;} + .d2-3175421624 .fill-AB5{fill:#313244;} + .d2-3175421624 .stroke-N1{stroke:#CDD6F4;} + .d2-3175421624 .stroke-N2{stroke:#BAC2DE;} + .d2-3175421624 .stroke-N3{stroke:#A6ADC8;} + .d2-3175421624 .stroke-N4{stroke:#585B70;} + .d2-3175421624 .stroke-N5{stroke:#45475A;} + .d2-3175421624 .stroke-N6{stroke:#313244;} + .d2-3175421624 .stroke-N7{stroke:#1E1E2E;} + .d2-3175421624 .stroke-B1{stroke:#CBA6f7;} + .d2-3175421624 .stroke-B2{stroke:#CBA6f7;} + .d2-3175421624 .stroke-B3{stroke:#6C7086;} + .d2-3175421624 .stroke-B4{stroke:#585B70;} + .d2-3175421624 .stroke-B5{stroke:#45475A;} + .d2-3175421624 .stroke-B6{stroke:#313244;} + .d2-3175421624 .stroke-AA2{stroke:#f38BA8;} + .d2-3175421624 .stroke-AA4{stroke:#45475A;} + .d2-3175421624 .stroke-AA5{stroke:#313244;} + .d2-3175421624 .stroke-AB4{stroke:#45475A;} + .d2-3175421624 .stroke-AB5{stroke:#313244;} + .d2-3175421624 .background-color-N1{background-color:#CDD6F4;} + .d2-3175421624 .background-color-N2{background-color:#BAC2DE;} + .d2-3175421624 .background-color-N3{background-color:#A6ADC8;} + .d2-3175421624 .background-color-N4{background-color:#585B70;} + .d2-3175421624 .background-color-N5{background-color:#45475A;} + .d2-3175421624 .background-color-N6{background-color:#313244;} + .d2-3175421624 .background-color-N7{background-color:#1E1E2E;} + .d2-3175421624 .background-color-B1{background-color:#CBA6f7;} + .d2-3175421624 .background-color-B2{background-color:#CBA6f7;} + .d2-3175421624 .background-color-B3{background-color:#6C7086;} + .d2-3175421624 .background-color-B4{background-color:#585B70;} + .d2-3175421624 .background-color-B5{background-color:#45475A;} + .d2-3175421624 .background-color-B6{background-color:#313244;} + .d2-3175421624 .background-color-AA2{background-color:#f38BA8;} + .d2-3175421624 .background-color-AA4{background-color:#45475A;} + .d2-3175421624 .background-color-AA5{background-color:#313244;} + .d2-3175421624 .background-color-AB4{background-color:#45475A;} + .d2-3175421624 .background-color-AB5{background-color:#313244;} + .d2-3175421624 .color-N1{color:#CDD6F4;} + .d2-3175421624 .color-N2{color:#BAC2DE;} + .d2-3175421624 .color-N3{color:#A6ADC8;} + .d2-3175421624 .color-N4{color:#585B70;} + .d2-3175421624 .color-N5{color:#45475A;} + .d2-3175421624 .color-N6{color:#313244;} + .d2-3175421624 .color-N7{color:#1E1E2E;} + .d2-3175421624 .color-B1{color:#CBA6f7;} + .d2-3175421624 .color-B2{color:#CBA6f7;} + .d2-3175421624 .color-B3{color:#6C7086;} + .d2-3175421624 .color-B4{color:#585B70;} + .d2-3175421624 .color-B5{color:#45475A;} + .d2-3175421624 .color-B6{color:#313244;} + .d2-3175421624 .color-AA2{color:#f38BA8;} + .d2-3175421624 .color-AA4{color:#45475A;} + .d2-3175421624 .color-AA5{color:#313244;} + .d2-3175421624 .color-AB4{color:#45475A;} + .d2-3175421624 .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}]]> -usersidintnamestringemailstringpasswordstringlast_logindatetimeproductsidintpricedecimalskustringnamestringordersidintuser_idintproduct_idintshipmentsidintorder_idinttracking_numberstringPKstatusstring +usersidintnamestringemailstringpasswordstringlast_logindatetimeproductsidintpricedecimalskustringnamestringordersidintuser_idintproduct_idintshipmentsidintorder_idinttracking_numberstringPKstatusstring \ No newline at end of file diff --git a/d2renderers/d2sketch/testdata/terminal/sketch.exp.svg b/d2renderers/d2sketch/testdata/terminal/sketch.exp.svg index 61a347b9be..8732a98773 100644 --- a/d2renderers/d2sketch/testdata/terminal/sketch.exp.svg +++ b/d2renderers/d2sketch/testdata/terminal/sketch.exp.svg @@ -1,23 +1,23 @@ - + .d2-251809635 .fill-N1{fill:#000410;} + .d2-251809635 .fill-N2{fill:#0000B8;} + .d2-251809635 .fill-N3{fill:#9499AB;} + .d2-251809635 .fill-N4{fill:#CFD2DD;} + .d2-251809635 .fill-N5{fill:#C3DEF3;} + .d2-251809635 .fill-N6{fill:#EEF1F8;} + .d2-251809635 .fill-N7{fill:#FFFFFF;} + .d2-251809635 .fill-B1{fill:#000410;} + .d2-251809635 .fill-B2{fill:#0000E4;} + .d2-251809635 .fill-B3{fill:#5AA4DC;} + .d2-251809635 .fill-B4{fill:#E7E9EE;} + .d2-251809635 .fill-B5{fill:#F5F6F9;} + .d2-251809635 .fill-B6{fill:#FFFFFF;} + .d2-251809635 .fill-AA2{fill:#008566;} + .d2-251809635 .fill-AA4{fill:#45BBA5;} + .d2-251809635 .fill-AA5{fill:#7ACCBD;} + .d2-251809635 .fill-AB4{fill:#F1C759;} + .d2-251809635 .fill-AB5{fill:#F9E088;} + .d2-251809635 .stroke-N1{stroke:#000410;} + .d2-251809635 .stroke-N2{stroke:#0000B8;} + .d2-251809635 .stroke-N3{stroke:#9499AB;} + .d2-251809635 .stroke-N4{stroke:#CFD2DD;} + .d2-251809635 .stroke-N5{stroke:#C3DEF3;} + .d2-251809635 .stroke-N6{stroke:#EEF1F8;} + .d2-251809635 .stroke-N7{stroke:#FFFFFF;} + .d2-251809635 .stroke-B1{stroke:#000410;} + .d2-251809635 .stroke-B2{stroke:#0000E4;} + .d2-251809635 .stroke-B3{stroke:#5AA4DC;} + .d2-251809635 .stroke-B4{stroke:#E7E9EE;} + .d2-251809635 .stroke-B5{stroke:#F5F6F9;} + .d2-251809635 .stroke-B6{stroke:#FFFFFF;} + .d2-251809635 .stroke-AA2{stroke:#008566;} + .d2-251809635 .stroke-AA4{stroke:#45BBA5;} + .d2-251809635 .stroke-AA5{stroke:#7ACCBD;} + .d2-251809635 .stroke-AB4{stroke:#F1C759;} + .d2-251809635 .stroke-AB5{stroke:#F9E088;} + .d2-251809635 .background-color-N1{background-color:#000410;} + .d2-251809635 .background-color-N2{background-color:#0000B8;} + .d2-251809635 .background-color-N3{background-color:#9499AB;} + .d2-251809635 .background-color-N4{background-color:#CFD2DD;} + .d2-251809635 .background-color-N5{background-color:#C3DEF3;} + .d2-251809635 .background-color-N6{background-color:#EEF1F8;} + .d2-251809635 .background-color-N7{background-color:#FFFFFF;} + .d2-251809635 .background-color-B1{background-color:#000410;} + .d2-251809635 .background-color-B2{background-color:#0000E4;} + .d2-251809635 .background-color-B3{background-color:#5AA4DC;} + .d2-251809635 .background-color-B4{background-color:#E7E9EE;} + .d2-251809635 .background-color-B5{background-color:#F5F6F9;} + .d2-251809635 .background-color-B6{background-color:#FFFFFF;} + .d2-251809635 .background-color-AA2{background-color:#008566;} + .d2-251809635 .background-color-AA4{background-color:#45BBA5;} + .d2-251809635 .background-color-AA5{background-color:#7ACCBD;} + .d2-251809635 .background-color-AB4{background-color:#F1C759;} + .d2-251809635 .background-color-AB5{background-color:#F9E088;} + .d2-251809635 .color-N1{color:#000410;} + .d2-251809635 .color-N2{color:#0000B8;} + .d2-251809635 .color-N3{color:#9499AB;} + .d2-251809635 .color-N4{color:#CFD2DD;} + .d2-251809635 .color-N5{color:#C3DEF3;} + .d2-251809635 .color-N6{color:#EEF1F8;} + .d2-251809635 .color-N7{color:#FFFFFF;} + .d2-251809635 .color-B1{color:#000410;} + .d2-251809635 .color-B2{color:#0000E4;} + .d2-251809635 .color-B3{color:#5AA4DC;} + .d2-251809635 .color-B4{color:#E7E9EE;} + .d2-251809635 .color-B5{color:#F5F6F9;} + .d2-251809635 .color-B6{color:#FFFFFF;} + .d2-251809635 .color-AA2{color:#008566;} + .d2-251809635 .color-AA4{color:#45BBA5;} + .d2-251809635 .color-AA5{color:#7ACCBD;} + .d2-251809635 .color-AB4{color:#F1C759;} + .d2-251809635 .color-AB5{color:#F9E088;}.appendix text.text{fill:#000410}.md{--color-fg-default:#000410;--color-fg-muted:#0000B8;--color-fg-subtle:#9499AB;--color-canvas-default:#FFFFFF;--color-canvas-subtle:#EEF1F8;--color-border-default:#000410;--color-border-muted:#0000E4;--color-neutral-muted:#EEF1F8;--color-accent-fg:#0000E4;--color-accent-emphasis:#0000E4;--color-attention-subtle:#0000B8;--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-normal);mix-blend-mode:color-burn}.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-normal);mix-blend-mode:color-burn}.sketch-overlay-AA5{fill:url(#streaks-normal);mix-blend-mode:color-burn}.sketch-overlay-AB4{fill:url(#streaks-normal);mix-blend-mode:color-burn}.sketch-overlay-AB5{fill:url(#streaks-normal);mix-blend-mode:color-burn}.sketch-overlay-N1{fill:url(#streaks-darker);mix-blend-mode:lighten}.sketch-overlay-N2{fill:url(#streaks-darker);mix-blend-mode:lighten}.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-normal);mix-blend-mode:color-burn}.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}]]> @@ -144,7 +144,7 @@ -NETWORKUSERAPI SERVERLOGSCELL TOWERONLINE PORTALDATA PROCESSORSATELLITESTRANSMITTERUISTORAGE SEND SEND SEND PHONE LOGS MAKE CALL ACCESS DISPLAY PERSIST +NETWORKUSERAPI SERVERLOGSCELL TOWERONLINE PORTALDATA PROCESSORSATELLITESTRANSMITTERUISTORAGE SEND SEND SEND PHONE LOGS MAKE CALL ACCESS DISPLAY PERSIST diff --git a/d2renderers/d2sketch/testdata/twitter/sketch.exp.svg b/d2renderers/d2sketch/testdata/twitter/sketch.exp.svg index 3bcb7ec275..41ad306c9b 100644 --- a/d2renderers/d2sketch/testdata/twitter/sketch.exp.svg +++ b/d2renderers/d2sketch/testdata/twitter/sketch.exp.svg @@ -1,27 +1,27 @@ - @@ -868,7 +868,7 @@
  • Served data logging
  • GraphQLFederated Strato Column

    Tweet/user content hydration, visibility filtering

    -
    TLS-API (being deprecated)CrMixerEarlyBirdUtagSpaceCommunities iPhone web HTTP Android Thrift RPC Candidate Fetch Feature Hydration Candidate sources +TLS-API (being deprecated)CrMixerEarlyBirdUtagSpaceCommunities iPhone web HTTP Android Thrift RPC Candidate Fetch Feature Hydration Candidate sources diff --git a/d2renderers/d2sketch/testdata/twitter_dark/sketch.exp.svg b/d2renderers/d2sketch/testdata/twitter_dark/sketch.exp.svg index 3ac19ea77f..db5b9274eb 100644 --- a/d2renderers/d2sketch/testdata/twitter_dark/sketch.exp.svg +++ b/d2renderers/d2sketch/testdata/twitter_dark/sketch.exp.svg @@ -1,27 +1,27 @@ - @@ -868,7 +868,7 @@
  • Served data logging
  • GraphQLFederated Strato Column

    Tweet/user content hydration, visibility filtering

    -
    TLS-API (being deprecated)CrMixerEarlyBirdUtagSpaceCommunities iPhone web HTTP Android Thrift RPC Candidate Fetch Feature Hydration Candidate sources +TLS-API (being deprecated)CrMixerEarlyBirdUtagSpaceCommunities iPhone web HTTP Android Thrift RPC Candidate Fetch Feature Hydration Candidate sources diff --git a/d2renderers/d2sketch/testdata/unfilled_triangle/sketch.exp.svg b/d2renderers/d2sketch/testdata/unfilled_triangle/sketch.exp.svg index 6e2375fbb2..038d86a33e 100644 --- a/d2renderers/d2sketch/testdata/unfilled_triangle/sketch.exp.svg +++ b/d2renderers/d2sketch/testdata/unfilled_triangle/sketch.exp.svg @@ -1,16 +1,16 @@ - + .d2-3440430774 .fill-N1{fill:#0A0F25;} + .d2-3440430774 .fill-N2{fill:#676C7E;} + .d2-3440430774 .fill-N3{fill:#9499AB;} + .d2-3440430774 .fill-N4{fill:#CFD2DD;} + .d2-3440430774 .fill-N5{fill:#DEE1EB;} + .d2-3440430774 .fill-N6{fill:#EEF1F8;} + .d2-3440430774 .fill-N7{fill:#FFFFFF;} + .d2-3440430774 .fill-B1{fill:#0D32B2;} + .d2-3440430774 .fill-B2{fill:#0D32B2;} + .d2-3440430774 .fill-B3{fill:#E3E9FD;} + .d2-3440430774 .fill-B4{fill:#E3E9FD;} + .d2-3440430774 .fill-B5{fill:#EDF0FD;} + .d2-3440430774 .fill-B6{fill:#F7F8FE;} + .d2-3440430774 .fill-AA2{fill:#4A6FF3;} + .d2-3440430774 .fill-AA4{fill:#EDF0FD;} + .d2-3440430774 .fill-AA5{fill:#F7F8FE;} + .d2-3440430774 .fill-AB4{fill:#EDF0FD;} + .d2-3440430774 .fill-AB5{fill:#F7F8FE;} + .d2-3440430774 .stroke-N1{stroke:#0A0F25;} + .d2-3440430774 .stroke-N2{stroke:#676C7E;} + .d2-3440430774 .stroke-N3{stroke:#9499AB;} + .d2-3440430774 .stroke-N4{stroke:#CFD2DD;} + .d2-3440430774 .stroke-N5{stroke:#DEE1EB;} + .d2-3440430774 .stroke-N6{stroke:#EEF1F8;} + .d2-3440430774 .stroke-N7{stroke:#FFFFFF;} + .d2-3440430774 .stroke-B1{stroke:#0D32B2;} + .d2-3440430774 .stroke-B2{stroke:#0D32B2;} + .d2-3440430774 .stroke-B3{stroke:#E3E9FD;} + .d2-3440430774 .stroke-B4{stroke:#E3E9FD;} + .d2-3440430774 .stroke-B5{stroke:#EDF0FD;} + .d2-3440430774 .stroke-B6{stroke:#F7F8FE;} + .d2-3440430774 .stroke-AA2{stroke:#4A6FF3;} + .d2-3440430774 .stroke-AA4{stroke:#EDF0FD;} + .d2-3440430774 .stroke-AA5{stroke:#F7F8FE;} + .d2-3440430774 .stroke-AB4{stroke:#EDF0FD;} + .d2-3440430774 .stroke-AB5{stroke:#F7F8FE;} + .d2-3440430774 .background-color-N1{background-color:#0A0F25;} + .d2-3440430774 .background-color-N2{background-color:#676C7E;} + .d2-3440430774 .background-color-N3{background-color:#9499AB;} + .d2-3440430774 .background-color-N4{background-color:#CFD2DD;} + .d2-3440430774 .background-color-N5{background-color:#DEE1EB;} + .d2-3440430774 .background-color-N6{background-color:#EEF1F8;} + .d2-3440430774 .background-color-N7{background-color:#FFFFFF;} + .d2-3440430774 .background-color-B1{background-color:#0D32B2;} + .d2-3440430774 .background-color-B2{background-color:#0D32B2;} + .d2-3440430774 .background-color-B3{background-color:#E3E9FD;} + .d2-3440430774 .background-color-B4{background-color:#E3E9FD;} + .d2-3440430774 .background-color-B5{background-color:#EDF0FD;} + .d2-3440430774 .background-color-B6{background-color:#F7F8FE;} + .d2-3440430774 .background-color-AA2{background-color:#4A6FF3;} + .d2-3440430774 .background-color-AA4{background-color:#EDF0FD;} + .d2-3440430774 .background-color-AA5{background-color:#F7F8FE;} + .d2-3440430774 .background-color-AB4{background-color:#EDF0FD;} + .d2-3440430774 .background-color-AB5{background-color:#F7F8FE;} + .d2-3440430774 .color-N1{color:#0A0F25;} + .d2-3440430774 .color-N2{color:#676C7E;} + .d2-3440430774 .color-N3{color:#9499AB;} + .d2-3440430774 .color-N4{color:#CFD2DD;} + .d2-3440430774 .color-N5{color:#DEE1EB;} + .d2-3440430774 .color-N6{color:#EEF1F8;} + .d2-3440430774 .color-N7{color:#FFFFFF;} + .d2-3440430774 .color-B1{color:#0D32B2;} + .d2-3440430774 .color-B2{color:#0D32B2;} + .d2-3440430774 .color-B3{color:#E3E9FD;} + .d2-3440430774 .color-B4{color:#E3E9FD;} + .d2-3440430774 .color-B5{color:#EDF0FD;} + .d2-3440430774 .color-B6{color:#F7F8FE;} + .d2-3440430774 .color-AA2{color:#4A6FF3;} + .d2-3440430774 .color-AA4{color:#EDF0FD;} + .d2-3440430774 .color-AA5{color:#F7F8FE;} + .d2-3440430774 .color-AB4{color:#EDF0FD;} + .d2-3440430774 .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}]]> @@ -104,7 +104,7 @@ -ABCD default triangle +ABCD default triangle 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 19f2fa5d1d..ae04cf3d72 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-2986291833 .fill-N1{fill:#0A0F25;} + .d2-2986291833 .fill-N2{fill:#676C7E;} + .d2-2986291833 .fill-N3{fill:#9499AB;} + .d2-2986291833 .fill-N4{fill:#CFD2DD;} + .d2-2986291833 .fill-N5{fill:#DEE1EB;} + .d2-2986291833 .fill-N6{fill:#EEF1F8;} + .d2-2986291833 .fill-N7{fill:#FFFFFF;} + .d2-2986291833 .fill-B1{fill:#0D32B2;} + .d2-2986291833 .fill-B2{fill:#0D32B2;} + .d2-2986291833 .fill-B3{fill:#E3E9FD;} + .d2-2986291833 .fill-B4{fill:#E3E9FD;} + .d2-2986291833 .fill-B5{fill:#EDF0FD;} + .d2-2986291833 .fill-B6{fill:#F7F8FE;} + .d2-2986291833 .fill-AA2{fill:#4A6FF3;} + .d2-2986291833 .fill-AA4{fill:#EDF0FD;} + .d2-2986291833 .fill-AA5{fill:#F7F8FE;} + .d2-2986291833 .fill-AB4{fill:#EDF0FD;} + .d2-2986291833 .fill-AB5{fill:#F7F8FE;} + .d2-2986291833 .stroke-N1{stroke:#0A0F25;} + .d2-2986291833 .stroke-N2{stroke:#676C7E;} + .d2-2986291833 .stroke-N3{stroke:#9499AB;} + .d2-2986291833 .stroke-N4{stroke:#CFD2DD;} + .d2-2986291833 .stroke-N5{stroke:#DEE1EB;} + .d2-2986291833 .stroke-N6{stroke:#EEF1F8;} + .d2-2986291833 .stroke-N7{stroke:#FFFFFF;} + .d2-2986291833 .stroke-B1{stroke:#0D32B2;} + .d2-2986291833 .stroke-B2{stroke:#0D32B2;} + .d2-2986291833 .stroke-B3{stroke:#E3E9FD;} + .d2-2986291833 .stroke-B4{stroke:#E3E9FD;} + .d2-2986291833 .stroke-B5{stroke:#EDF0FD;} + .d2-2986291833 .stroke-B6{stroke:#F7F8FE;} + .d2-2986291833 .stroke-AA2{stroke:#4A6FF3;} + .d2-2986291833 .stroke-AA4{stroke:#EDF0FD;} + .d2-2986291833 .stroke-AA5{stroke:#F7F8FE;} + .d2-2986291833 .stroke-AB4{stroke:#EDF0FD;} + .d2-2986291833 .stroke-AB5{stroke:#F7F8FE;} + .d2-2986291833 .background-color-N1{background-color:#0A0F25;} + .d2-2986291833 .background-color-N2{background-color:#676C7E;} + .d2-2986291833 .background-color-N3{background-color:#9499AB;} + .d2-2986291833 .background-color-N4{background-color:#CFD2DD;} + .d2-2986291833 .background-color-N5{background-color:#DEE1EB;} + .d2-2986291833 .background-color-N6{background-color:#EEF1F8;} + .d2-2986291833 .background-color-N7{background-color:#FFFFFF;} + .d2-2986291833 .background-color-B1{background-color:#0D32B2;} + .d2-2986291833 .background-color-B2{background-color:#0D32B2;} + .d2-2986291833 .background-color-B3{background-color:#E3E9FD;} + .d2-2986291833 .background-color-B4{background-color:#E3E9FD;} + .d2-2986291833 .background-color-B5{background-color:#EDF0FD;} + .d2-2986291833 .background-color-B6{background-color:#F7F8FE;} + .d2-2986291833 .background-color-AA2{background-color:#4A6FF3;} + .d2-2986291833 .background-color-AA4{background-color:#EDF0FD;} + .d2-2986291833 .background-color-AA5{background-color:#F7F8FE;} + .d2-2986291833 .background-color-AB4{background-color:#EDF0FD;} + .d2-2986291833 .background-color-AB5{background-color:#F7F8FE;} + .d2-2986291833 .color-N1{color:#0A0F25;} + .d2-2986291833 .color-N2{color:#676C7E;} + .d2-2986291833 .color-N3{color:#9499AB;} + .d2-2986291833 .color-N4{color:#CFD2DD;} + .d2-2986291833 .color-N5{color:#DEE1EB;} + .d2-2986291833 .color-N6{color:#EEF1F8;} + .d2-2986291833 .color-N7{color:#FFFFFF;} + .d2-2986291833 .color-B1{color:#0D32B2;} + .d2-2986291833 .color-B2{color:#0D32B2;} + .d2-2986291833 .color-B3{color:#E3E9FD;} + .d2-2986291833 .color-B4{color:#E3E9FD;} + .d2-2986291833 .color-B5{color:#EDF0FD;} + .d2-2986291833 .color-B6{color:#F7F8FE;} + .d2-2986291833 .color-AA2{color:#4A6FF3;} + .d2-2986291833 .color-AA4{color:#EDF0FD;} + .d2-2986291833 .color-AA5{color:#F7F8FE;} + .d2-2986291833 .color-AB4{color:#EDF0FD;} + .d2-2986291833 .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 diff --git a/d2renderers/d2svg/appendix/testdata/links/sketch.exp.svg b/d2renderers/d2svg/appendix/testdata/links/sketch.exp.svg index 24545953a9..625c014e78 100644 --- a/d2renderers/d2svg/appendix/testdata/links/sketch.exp.svg +++ b/d2renderers/d2svg/appendix/testdata/links/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-1998242947 .fill-N1{fill:#0A0F25;} + .d2-1998242947 .fill-N2{fill:#676C7E;} + .d2-1998242947 .fill-N3{fill:#9499AB;} + .d2-1998242947 .fill-N4{fill:#CFD2DD;} + .d2-1998242947 .fill-N5{fill:#DEE1EB;} + .d2-1998242947 .fill-N6{fill:#EEF1F8;} + .d2-1998242947 .fill-N7{fill:#FFFFFF;} + .d2-1998242947 .fill-B1{fill:#0D32B2;} + .d2-1998242947 .fill-B2{fill:#0D32B2;} + .d2-1998242947 .fill-B3{fill:#E3E9FD;} + .d2-1998242947 .fill-B4{fill:#E3E9FD;} + .d2-1998242947 .fill-B5{fill:#EDF0FD;} + .d2-1998242947 .fill-B6{fill:#F7F8FE;} + .d2-1998242947 .fill-AA2{fill:#4A6FF3;} + .d2-1998242947 .fill-AA4{fill:#EDF0FD;} + .d2-1998242947 .fill-AA5{fill:#F7F8FE;} + .d2-1998242947 .fill-AB4{fill:#EDF0FD;} + .d2-1998242947 .fill-AB5{fill:#F7F8FE;} + .d2-1998242947 .stroke-N1{stroke:#0A0F25;} + .d2-1998242947 .stroke-N2{stroke:#676C7E;} + .d2-1998242947 .stroke-N3{stroke:#9499AB;} + .d2-1998242947 .stroke-N4{stroke:#CFD2DD;} + .d2-1998242947 .stroke-N5{stroke:#DEE1EB;} + .d2-1998242947 .stroke-N6{stroke:#EEF1F8;} + .d2-1998242947 .stroke-N7{stroke:#FFFFFF;} + .d2-1998242947 .stroke-B1{stroke:#0D32B2;} + .d2-1998242947 .stroke-B2{stroke:#0D32B2;} + .d2-1998242947 .stroke-B3{stroke:#E3E9FD;} + .d2-1998242947 .stroke-B4{stroke:#E3E9FD;} + .d2-1998242947 .stroke-B5{stroke:#EDF0FD;} + .d2-1998242947 .stroke-B6{stroke:#F7F8FE;} + .d2-1998242947 .stroke-AA2{stroke:#4A6FF3;} + .d2-1998242947 .stroke-AA4{stroke:#EDF0FD;} + .d2-1998242947 .stroke-AA5{stroke:#F7F8FE;} + .d2-1998242947 .stroke-AB4{stroke:#EDF0FD;} + .d2-1998242947 .stroke-AB5{stroke:#F7F8FE;} + .d2-1998242947 .background-color-N1{background-color:#0A0F25;} + .d2-1998242947 .background-color-N2{background-color:#676C7E;} + .d2-1998242947 .background-color-N3{background-color:#9499AB;} + .d2-1998242947 .background-color-N4{background-color:#CFD2DD;} + .d2-1998242947 .background-color-N5{background-color:#DEE1EB;} + .d2-1998242947 .background-color-N6{background-color:#EEF1F8;} + .d2-1998242947 .background-color-N7{background-color:#FFFFFF;} + .d2-1998242947 .background-color-B1{background-color:#0D32B2;} + .d2-1998242947 .background-color-B2{background-color:#0D32B2;} + .d2-1998242947 .background-color-B3{background-color:#E3E9FD;} + .d2-1998242947 .background-color-B4{background-color:#E3E9FD;} + .d2-1998242947 .background-color-B5{background-color:#EDF0FD;} + .d2-1998242947 .background-color-B6{background-color:#F7F8FE;} + .d2-1998242947 .background-color-AA2{background-color:#4A6FF3;} + .d2-1998242947 .background-color-AA4{background-color:#EDF0FD;} + .d2-1998242947 .background-color-AA5{background-color:#F7F8FE;} + .d2-1998242947 .background-color-AB4{background-color:#EDF0FD;} + .d2-1998242947 .background-color-AB5{background-color:#F7F8FE;} + .d2-1998242947 .color-N1{color:#0A0F25;} + .d2-1998242947 .color-N2{color:#676C7E;} + .d2-1998242947 .color-N3{color:#9499AB;} + .d2-1998242947 .color-N4{color:#CFD2DD;} + .d2-1998242947 .color-N5{color:#DEE1EB;} + .d2-1998242947 .color-N6{color:#EEF1F8;} + .d2-1998242947 .color-N7{color:#FFFFFF;} + .d2-1998242947 .color-B1{color:#0D32B2;} + .d2-1998242947 .color-B2{color:#0D32B2;} + .d2-1998242947 .color-B3{color:#E3E9FD;} + .d2-1998242947 .color-B4{color:#E3E9FD;} + .d2-1998242947 .color-B5{color:#EDF0FD;} + .d2-1998242947 .color-B6{color:#F7F8FE;} + .d2-1998242947 .color-AA2{color:#4A6FF3;} + .d2-1998242947 .color-AA4{color:#EDF0FD;} + .d2-1998242947 .color-AA5{color:#F7F8FE;} + .d2-1998242947 .color-AB4{color:#EDF0FD;} + .d2-1998242947 .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 4a3247675d..f6d7cc0d10 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-1509997597 .fill-N1{fill:#CDD6F4;} + .d2-1509997597 .fill-N2{fill:#BAC2DE;} + .d2-1509997597 .fill-N3{fill:#A6ADC8;} + .d2-1509997597 .fill-N4{fill:#585B70;} + .d2-1509997597 .fill-N5{fill:#45475A;} + .d2-1509997597 .fill-N6{fill:#313244;} + .d2-1509997597 .fill-N7{fill:#1E1E2E;} + .d2-1509997597 .fill-B1{fill:#CBA6f7;} + .d2-1509997597 .fill-B2{fill:#CBA6f7;} + .d2-1509997597 .fill-B3{fill:#6C7086;} + .d2-1509997597 .fill-B4{fill:#585B70;} + .d2-1509997597 .fill-B5{fill:#45475A;} + .d2-1509997597 .fill-B6{fill:#313244;} + .d2-1509997597 .fill-AA2{fill:#f38BA8;} + .d2-1509997597 .fill-AA4{fill:#45475A;} + .d2-1509997597 .fill-AA5{fill:#313244;} + .d2-1509997597 .fill-AB4{fill:#45475A;} + .d2-1509997597 .fill-AB5{fill:#313244;} + .d2-1509997597 .stroke-N1{stroke:#CDD6F4;} + .d2-1509997597 .stroke-N2{stroke:#BAC2DE;} + .d2-1509997597 .stroke-N3{stroke:#A6ADC8;} + .d2-1509997597 .stroke-N4{stroke:#585B70;} + .d2-1509997597 .stroke-N5{stroke:#45475A;} + .d2-1509997597 .stroke-N6{stroke:#313244;} + .d2-1509997597 .stroke-N7{stroke:#1E1E2E;} + .d2-1509997597 .stroke-B1{stroke:#CBA6f7;} + .d2-1509997597 .stroke-B2{stroke:#CBA6f7;} + .d2-1509997597 .stroke-B3{stroke:#6C7086;} + .d2-1509997597 .stroke-B4{stroke:#585B70;} + .d2-1509997597 .stroke-B5{stroke:#45475A;} + .d2-1509997597 .stroke-B6{stroke:#313244;} + .d2-1509997597 .stroke-AA2{stroke:#f38BA8;} + .d2-1509997597 .stroke-AA4{stroke:#45475A;} + .d2-1509997597 .stroke-AA5{stroke:#313244;} + .d2-1509997597 .stroke-AB4{stroke:#45475A;} + .d2-1509997597 .stroke-AB5{stroke:#313244;} + .d2-1509997597 .background-color-N1{background-color:#CDD6F4;} + .d2-1509997597 .background-color-N2{background-color:#BAC2DE;} + .d2-1509997597 .background-color-N3{background-color:#A6ADC8;} + .d2-1509997597 .background-color-N4{background-color:#585B70;} + .d2-1509997597 .background-color-N5{background-color:#45475A;} + .d2-1509997597 .background-color-N6{background-color:#313244;} + .d2-1509997597 .background-color-N7{background-color:#1E1E2E;} + .d2-1509997597 .background-color-B1{background-color:#CBA6f7;} + .d2-1509997597 .background-color-B2{background-color:#CBA6f7;} + .d2-1509997597 .background-color-B3{background-color:#6C7086;} + .d2-1509997597 .background-color-B4{background-color:#585B70;} + .d2-1509997597 .background-color-B5{background-color:#45475A;} + .d2-1509997597 .background-color-B6{background-color:#313244;} + .d2-1509997597 .background-color-AA2{background-color:#f38BA8;} + .d2-1509997597 .background-color-AA4{background-color:#45475A;} + .d2-1509997597 .background-color-AA5{background-color:#313244;} + .d2-1509997597 .background-color-AB4{background-color:#45475A;} + .d2-1509997597 .background-color-AB5{background-color:#313244;} + .d2-1509997597 .color-N1{color:#CDD6F4;} + .d2-1509997597 .color-N2{color:#BAC2DE;} + .d2-1509997597 .color-N3{color:#A6ADC8;} + .d2-1509997597 .color-N4{color:#585B70;} + .d2-1509997597 .color-N5{color:#45475A;} + .d2-1509997597 .color-N6{color:#313244;} + .d2-1509997597 .color-N7{color:#1E1E2E;} + .d2-1509997597 .color-B1{color:#CBA6f7;} + .d2-1509997597 .color-B2{color:#CBA6f7;} + .d2-1509997597 .color-B3{color:#6C7086;} + .d2-1509997597 .color-B4{color:#585B70;} + .d2-1509997597 .color-B5{color:#45475A;} + .d2-1509997597 .color-B6{color:#313244;} + .d2-1509997597 .color-AA2{color:#f38BA8;} + .d2-1509997597 .color-AA4{color:#45475A;} + .d2-1509997597 .color-AA5{color:#313244;} + .d2-1509997597 .color-AB4{color:#45475A;} + .d2-1509997597 .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 505d23f4bb..cbe76600df 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 + .d2-3586650765 .fill-N1{fill:#0A0F25;} + .d2-3586650765 .fill-N2{fill:#676C7E;} + .d2-3586650765 .fill-N3{fill:#9499AB;} + .d2-3586650765 .fill-N4{fill:#CFD2DD;} + .d2-3586650765 .fill-N5{fill:#DEE1EB;} + .d2-3586650765 .fill-N6{fill:#EEF1F8;} + .d2-3586650765 .fill-N7{fill:#FFFFFF;} + .d2-3586650765 .fill-B1{fill:#0D32B2;} + .d2-3586650765 .fill-B2{fill:#0D32B2;} + .d2-3586650765 .fill-B3{fill:#E3E9FD;} + .d2-3586650765 .fill-B4{fill:#E3E9FD;} + .d2-3586650765 .fill-B5{fill:#EDF0FD;} + .d2-3586650765 .fill-B6{fill:#F7F8FE;} + .d2-3586650765 .fill-AA2{fill:#4A6FF3;} + .d2-3586650765 .fill-AA4{fill:#EDF0FD;} + .d2-3586650765 .fill-AA5{fill:#F7F8FE;} + .d2-3586650765 .fill-AB4{fill:#EDF0FD;} + .d2-3586650765 .fill-AB5{fill:#F7F8FE;} + .d2-3586650765 .stroke-N1{stroke:#0A0F25;} + .d2-3586650765 .stroke-N2{stroke:#676C7E;} + .d2-3586650765 .stroke-N3{stroke:#9499AB;} + .d2-3586650765 .stroke-N4{stroke:#CFD2DD;} + .d2-3586650765 .stroke-N5{stroke:#DEE1EB;} + .d2-3586650765 .stroke-N6{stroke:#EEF1F8;} + .d2-3586650765 .stroke-N7{stroke:#FFFFFF;} + .d2-3586650765 .stroke-B1{stroke:#0D32B2;} + .d2-3586650765 .stroke-B2{stroke:#0D32B2;} + .d2-3586650765 .stroke-B3{stroke:#E3E9FD;} + .d2-3586650765 .stroke-B4{stroke:#E3E9FD;} + .d2-3586650765 .stroke-B5{stroke:#EDF0FD;} + .d2-3586650765 .stroke-B6{stroke:#F7F8FE;} + .d2-3586650765 .stroke-AA2{stroke:#4A6FF3;} + .d2-3586650765 .stroke-AA4{stroke:#EDF0FD;} + .d2-3586650765 .stroke-AA5{stroke:#F7F8FE;} + .d2-3586650765 .stroke-AB4{stroke:#EDF0FD;} + .d2-3586650765 .stroke-AB5{stroke:#F7F8FE;} + .d2-3586650765 .background-color-N1{background-color:#0A0F25;} + .d2-3586650765 .background-color-N2{background-color:#676C7E;} + .d2-3586650765 .background-color-N3{background-color:#9499AB;} + .d2-3586650765 .background-color-N4{background-color:#CFD2DD;} + .d2-3586650765 .background-color-N5{background-color:#DEE1EB;} + .d2-3586650765 .background-color-N6{background-color:#EEF1F8;} + .d2-3586650765 .background-color-N7{background-color:#FFFFFF;} + .d2-3586650765 .background-color-B1{background-color:#0D32B2;} + .d2-3586650765 .background-color-B2{background-color:#0D32B2;} + .d2-3586650765 .background-color-B3{background-color:#E3E9FD;} + .d2-3586650765 .background-color-B4{background-color:#E3E9FD;} + .d2-3586650765 .background-color-B5{background-color:#EDF0FD;} + .d2-3586650765 .background-color-B6{background-color:#F7F8FE;} + .d2-3586650765 .background-color-AA2{background-color:#4A6FF3;} + .d2-3586650765 .background-color-AA4{background-color:#EDF0FD;} + .d2-3586650765 .background-color-AA5{background-color:#F7F8FE;} + .d2-3586650765 .background-color-AB4{background-color:#EDF0FD;} + .d2-3586650765 .background-color-AB5{background-color:#F7F8FE;} + .d2-3586650765 .color-N1{color:#0A0F25;} + .d2-3586650765 .color-N2{color:#676C7E;} + .d2-3586650765 .color-N3{color:#9499AB;} + .d2-3586650765 .color-N4{color:#CFD2DD;} + .d2-3586650765 .color-N5{color:#DEE1EB;} + .d2-3586650765 .color-N6{color:#EEF1F8;} + .d2-3586650765 .color-N7{color:#FFFFFF;} + .d2-3586650765 .color-B1{color:#0D32B2;} + .d2-3586650765 .color-B2{color:#0D32B2;} + .d2-3586650765 .color-B3{color:#E3E9FD;} + .d2-3586650765 .color-B4{color:#E3E9FD;} + .d2-3586650765 .color-B5{color:#EDF0FD;} + .d2-3586650765 .color-B6{color:#F7F8FE;} + .d2-3586650765 .color-AA2{color:#4A6FF3;} + .d2-3586650765 .color-AA4{color:#EDF0FD;} + .d2-3586650765 .color-AA5{color:#F7F8FE;} + .d2-3586650765 .color-AB4{color:#EDF0FD;} + .d2-3586650765 .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 diff --git a/d2renderers/d2svg/appendix/testdata/tooltip_wider_than_diagram/sketch.exp.svg b/d2renderers/d2svg/appendix/testdata/tooltip_wider_than_diagram/sketch.exp.svg index b81d36eca7..07a8a6111d 100644 --- a/d2renderers/d2svg/appendix/testdata/tooltip_wider_than_diagram/sketch.exp.svg +++ b/d2renderers/d2svg/appendix/testdata/tooltip_wider_than_diagram/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 + .d2-1071335462 .fill-N1{fill:#0A0F25;} + .d2-1071335462 .fill-N2{fill:#676C7E;} + .d2-1071335462 .fill-N3{fill:#9499AB;} + .d2-1071335462 .fill-N4{fill:#CFD2DD;} + .d2-1071335462 .fill-N5{fill:#DEE1EB;} + .d2-1071335462 .fill-N6{fill:#EEF1F8;} + .d2-1071335462 .fill-N7{fill:#FFFFFF;} + .d2-1071335462 .fill-B1{fill:#0D32B2;} + .d2-1071335462 .fill-B2{fill:#0D32B2;} + .d2-1071335462 .fill-B3{fill:#E3E9FD;} + .d2-1071335462 .fill-B4{fill:#E3E9FD;} + .d2-1071335462 .fill-B5{fill:#EDF0FD;} + .d2-1071335462 .fill-B6{fill:#F7F8FE;} + .d2-1071335462 .fill-AA2{fill:#4A6FF3;} + .d2-1071335462 .fill-AA4{fill:#EDF0FD;} + .d2-1071335462 .fill-AA5{fill:#F7F8FE;} + .d2-1071335462 .fill-AB4{fill:#EDF0FD;} + .d2-1071335462 .fill-AB5{fill:#F7F8FE;} + .d2-1071335462 .stroke-N1{stroke:#0A0F25;} + .d2-1071335462 .stroke-N2{stroke:#676C7E;} + .d2-1071335462 .stroke-N3{stroke:#9499AB;} + .d2-1071335462 .stroke-N4{stroke:#CFD2DD;} + .d2-1071335462 .stroke-N5{stroke:#DEE1EB;} + .d2-1071335462 .stroke-N6{stroke:#EEF1F8;} + .d2-1071335462 .stroke-N7{stroke:#FFFFFF;} + .d2-1071335462 .stroke-B1{stroke:#0D32B2;} + .d2-1071335462 .stroke-B2{stroke:#0D32B2;} + .d2-1071335462 .stroke-B3{stroke:#E3E9FD;} + .d2-1071335462 .stroke-B4{stroke:#E3E9FD;} + .d2-1071335462 .stroke-B5{stroke:#EDF0FD;} + .d2-1071335462 .stroke-B6{stroke:#F7F8FE;} + .d2-1071335462 .stroke-AA2{stroke:#4A6FF3;} + .d2-1071335462 .stroke-AA4{stroke:#EDF0FD;} + .d2-1071335462 .stroke-AA5{stroke:#F7F8FE;} + .d2-1071335462 .stroke-AB4{stroke:#EDF0FD;} + .d2-1071335462 .stroke-AB5{stroke:#F7F8FE;} + .d2-1071335462 .background-color-N1{background-color:#0A0F25;} + .d2-1071335462 .background-color-N2{background-color:#676C7E;} + .d2-1071335462 .background-color-N3{background-color:#9499AB;} + .d2-1071335462 .background-color-N4{background-color:#CFD2DD;} + .d2-1071335462 .background-color-N5{background-color:#DEE1EB;} + .d2-1071335462 .background-color-N6{background-color:#EEF1F8;} + .d2-1071335462 .background-color-N7{background-color:#FFFFFF;} + .d2-1071335462 .background-color-B1{background-color:#0D32B2;} + .d2-1071335462 .background-color-B2{background-color:#0D32B2;} + .d2-1071335462 .background-color-B3{background-color:#E3E9FD;} + .d2-1071335462 .background-color-B4{background-color:#E3E9FD;} + .d2-1071335462 .background-color-B5{background-color:#EDF0FD;} + .d2-1071335462 .background-color-B6{background-color:#F7F8FE;} + .d2-1071335462 .background-color-AA2{background-color:#4A6FF3;} + .d2-1071335462 .background-color-AA4{background-color:#EDF0FD;} + .d2-1071335462 .background-color-AA5{background-color:#F7F8FE;} + .d2-1071335462 .background-color-AB4{background-color:#EDF0FD;} + .d2-1071335462 .background-color-AB5{background-color:#F7F8FE;} + .d2-1071335462 .color-N1{color:#0A0F25;} + .d2-1071335462 .color-N2{color:#676C7E;} + .d2-1071335462 .color-N3{color:#9499AB;} + .d2-1071335462 .color-N4{color:#CFD2DD;} + .d2-1071335462 .color-N5{color:#DEE1EB;} + .d2-1071335462 .color-N6{color:#EEF1F8;} + .d2-1071335462 .color-N7{color:#FFFFFF;} + .d2-1071335462 .color-B1{color:#0D32B2;} + .d2-1071335462 .color-B2{color:#0D32B2;} + .d2-1071335462 .color-B3{color:#E3E9FD;} + .d2-1071335462 .color-B4{color:#E3E9FD;} + .d2-1071335462 .color-B5{color:#EDF0FD;} + .d2-1071335462 .color-B6{color:#F7F8FE;} + .d2-1071335462 .color-AA2{color:#4A6FF3;} + .d2-1071335462 .color-AA4{color:#EDF0FD;} + .d2-1071335462 .color-AA5{color:#F7F8FE;} + .d2-1071335462 .color-AB4{color:#EDF0FD;} + .d2-1071335462 .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 diff --git a/d2renderers/d2svg/d2svg.go b/d2renderers/d2svg/d2svg.go index a0e2c14ad1..ae702341c0 100644 --- a/d2renderers/d2svg/d2svg.go +++ b/d2renderers/d2svg/d2svg.go @@ -635,11 +635,23 @@ func drawConnection(writer io.Writer, labelMaskID string, connection d2target.Co textEl := d2themes.NewThemableElement("text", inlineTheme) textEl.X = labelTL.X + float64(connection.LabelWidth)/2 textEl.Y = labelTL.Y + float64(connection.FontSize) - textEl.Fill = connection.GetFontColor() textEl.ClassName = fontClass textEl.Style = fmt.Sprintf("text-anchor:%s;font-size:%vpx", "middle", connection.FontSize) textEl.Content = RenderText(connection.Label, textEl.X, float64(connection.LabelHeight)) + + if connection.Link != "" { + textEl.ClassName += " text-underline text-link" + + fmt.Fprintf(writer, ``, svg.EscapeText(connection.Link)) + } else { + textEl.Fill = connection.GetFontColor() + } + fmt.Fprint(writer, textEl.Render()) + + if connection.Link != "" { + fmt.Fprintf(writer, "") + } } if connection.SrcLabel != nil && connection.SrcLabel.Label != "" { @@ -1590,6 +1602,22 @@ func EmbedFonts(buf *bytes.Buffer, diagramHash, source string, fontFamily *d2fon }`, ) + appendOnTrigger( + buf, + source, + []string{ + `text-link`, + }, + ` +.text-link { + fill: blue; +} + +.text-link:visited { + fill: purple; +}`, + ) + appendOnTrigger( buf, source, diff --git a/d2renderers/d2svg/dark_theme/testdata/all_shapes/dark_theme.exp.svg b/d2renderers/d2svg/dark_theme/testdata/all_shapes/dark_theme.exp.svg index 11a8d10b7a..22f2fd87ca 100644 --- a/d2renderers/d2svg/dark_theme/testdata/all_shapes/dark_theme.exp.svg +++ b/d2renderers/d2svg/dark_theme/testdata/all_shapes/dark_theme.exp.svg @@ -1,9 +1,9 @@ -rectanglesquarepageparallelogramdocumentcylinderqueuepackagestepcalloutstored_datapersondiamondovalcirclehexagoncloud + .d2-1948124657 .fill-N1{fill:#CDD6F4;} + .d2-1948124657 .fill-N2{fill:#BAC2DE;} + .d2-1948124657 .fill-N3{fill:#A6ADC8;} + .d2-1948124657 .fill-N4{fill:#585B70;} + .d2-1948124657 .fill-N5{fill:#45475A;} + .d2-1948124657 .fill-N6{fill:#313244;} + .d2-1948124657 .fill-N7{fill:#1E1E2E;} + .d2-1948124657 .fill-B1{fill:#CBA6f7;} + .d2-1948124657 .fill-B2{fill:#CBA6f7;} + .d2-1948124657 .fill-B3{fill:#6C7086;} + .d2-1948124657 .fill-B4{fill:#585B70;} + .d2-1948124657 .fill-B5{fill:#45475A;} + .d2-1948124657 .fill-B6{fill:#313244;} + .d2-1948124657 .fill-AA2{fill:#f38BA8;} + .d2-1948124657 .fill-AA4{fill:#45475A;} + .d2-1948124657 .fill-AA5{fill:#313244;} + .d2-1948124657 .fill-AB4{fill:#45475A;} + .d2-1948124657 .fill-AB5{fill:#313244;} + .d2-1948124657 .stroke-N1{stroke:#CDD6F4;} + .d2-1948124657 .stroke-N2{stroke:#BAC2DE;} + .d2-1948124657 .stroke-N3{stroke:#A6ADC8;} + .d2-1948124657 .stroke-N4{stroke:#585B70;} + .d2-1948124657 .stroke-N5{stroke:#45475A;} + .d2-1948124657 .stroke-N6{stroke:#313244;} + .d2-1948124657 .stroke-N7{stroke:#1E1E2E;} + .d2-1948124657 .stroke-B1{stroke:#CBA6f7;} + .d2-1948124657 .stroke-B2{stroke:#CBA6f7;} + .d2-1948124657 .stroke-B3{stroke:#6C7086;} + .d2-1948124657 .stroke-B4{stroke:#585B70;} + .d2-1948124657 .stroke-B5{stroke:#45475A;} + .d2-1948124657 .stroke-B6{stroke:#313244;} + .d2-1948124657 .stroke-AA2{stroke:#f38BA8;} + .d2-1948124657 .stroke-AA4{stroke:#45475A;} + .d2-1948124657 .stroke-AA5{stroke:#313244;} + .d2-1948124657 .stroke-AB4{stroke:#45475A;} + .d2-1948124657 .stroke-AB5{stroke:#313244;} + .d2-1948124657 .background-color-N1{background-color:#CDD6F4;} + .d2-1948124657 .background-color-N2{background-color:#BAC2DE;} + .d2-1948124657 .background-color-N3{background-color:#A6ADC8;} + .d2-1948124657 .background-color-N4{background-color:#585B70;} + .d2-1948124657 .background-color-N5{background-color:#45475A;} + .d2-1948124657 .background-color-N6{background-color:#313244;} + .d2-1948124657 .background-color-N7{background-color:#1E1E2E;} + .d2-1948124657 .background-color-B1{background-color:#CBA6f7;} + .d2-1948124657 .background-color-B2{background-color:#CBA6f7;} + .d2-1948124657 .background-color-B3{background-color:#6C7086;} + .d2-1948124657 .background-color-B4{background-color:#585B70;} + .d2-1948124657 .background-color-B5{background-color:#45475A;} + .d2-1948124657 .background-color-B6{background-color:#313244;} + .d2-1948124657 .background-color-AA2{background-color:#f38BA8;} + .d2-1948124657 .background-color-AA4{background-color:#45475A;} + .d2-1948124657 .background-color-AA5{background-color:#313244;} + .d2-1948124657 .background-color-AB4{background-color:#45475A;} + .d2-1948124657 .background-color-AB5{background-color:#313244;} + .d2-1948124657 .color-N1{color:#CDD6F4;} + .d2-1948124657 .color-N2{color:#BAC2DE;} + .d2-1948124657 .color-N3{color:#A6ADC8;} + .d2-1948124657 .color-N4{color:#585B70;} + .d2-1948124657 .color-N5{color:#45475A;} + .d2-1948124657 .color-N6{color:#313244;} + .d2-1948124657 .color-N7{color:#1E1E2E;} + .d2-1948124657 .color-B1{color:#CBA6f7;} + .d2-1948124657 .color-B2{color:#CBA6f7;} + .d2-1948124657 .color-B3{color:#6C7086;} + .d2-1948124657 .color-B4{color:#585B70;} + .d2-1948124657 .color-B5{color:#45475A;} + .d2-1948124657 .color-B6{color:#313244;} + .d2-1948124657 .color-AA2{color:#f38BA8;} + .d2-1948124657 .color-AA4{color:#45475A;} + .d2-1948124657 .color-AA5{color:#313244;} + .d2-1948124657 .color-AB4{color:#45475A;} + .d2-1948124657 .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 diff --git a/d2renderers/d2svg/dark_theme/testdata/animated/dark_theme.exp.svg b/d2renderers/d2svg/dark_theme/testdata/animated/dark_theme.exp.svg index a2bc465dc9..89829862a1 100644 --- a/d2renderers/d2svg/dark_theme/testdata/animated/dark_theme.exp.svg +++ b/d2renderers/d2svg/dark_theme/testdata/animated/dark_theme.exp.svg @@ -1,9 +1,9 @@ -wintersummertreessnowsun + .d2-1579070777 .fill-N1{fill:#CDD6F4;} + .d2-1579070777 .fill-N2{fill:#BAC2DE;} + .d2-1579070777 .fill-N3{fill:#A6ADC8;} + .d2-1579070777 .fill-N4{fill:#585B70;} + .d2-1579070777 .fill-N5{fill:#45475A;} + .d2-1579070777 .fill-N6{fill:#313244;} + .d2-1579070777 .fill-N7{fill:#1E1E2E;} + .d2-1579070777 .fill-B1{fill:#CBA6f7;} + .d2-1579070777 .fill-B2{fill:#CBA6f7;} + .d2-1579070777 .fill-B3{fill:#6C7086;} + .d2-1579070777 .fill-B4{fill:#585B70;} + .d2-1579070777 .fill-B5{fill:#45475A;} + .d2-1579070777 .fill-B6{fill:#313244;} + .d2-1579070777 .fill-AA2{fill:#f38BA8;} + .d2-1579070777 .fill-AA4{fill:#45475A;} + .d2-1579070777 .fill-AA5{fill:#313244;} + .d2-1579070777 .fill-AB4{fill:#45475A;} + .d2-1579070777 .fill-AB5{fill:#313244;} + .d2-1579070777 .stroke-N1{stroke:#CDD6F4;} + .d2-1579070777 .stroke-N2{stroke:#BAC2DE;} + .d2-1579070777 .stroke-N3{stroke:#A6ADC8;} + .d2-1579070777 .stroke-N4{stroke:#585B70;} + .d2-1579070777 .stroke-N5{stroke:#45475A;} + .d2-1579070777 .stroke-N6{stroke:#313244;} + .d2-1579070777 .stroke-N7{stroke:#1E1E2E;} + .d2-1579070777 .stroke-B1{stroke:#CBA6f7;} + .d2-1579070777 .stroke-B2{stroke:#CBA6f7;} + .d2-1579070777 .stroke-B3{stroke:#6C7086;} + .d2-1579070777 .stroke-B4{stroke:#585B70;} + .d2-1579070777 .stroke-B5{stroke:#45475A;} + .d2-1579070777 .stroke-B6{stroke:#313244;} + .d2-1579070777 .stroke-AA2{stroke:#f38BA8;} + .d2-1579070777 .stroke-AA4{stroke:#45475A;} + .d2-1579070777 .stroke-AA5{stroke:#313244;} + .d2-1579070777 .stroke-AB4{stroke:#45475A;} + .d2-1579070777 .stroke-AB5{stroke:#313244;} + .d2-1579070777 .background-color-N1{background-color:#CDD6F4;} + .d2-1579070777 .background-color-N2{background-color:#BAC2DE;} + .d2-1579070777 .background-color-N3{background-color:#A6ADC8;} + .d2-1579070777 .background-color-N4{background-color:#585B70;} + .d2-1579070777 .background-color-N5{background-color:#45475A;} + .d2-1579070777 .background-color-N6{background-color:#313244;} + .d2-1579070777 .background-color-N7{background-color:#1E1E2E;} + .d2-1579070777 .background-color-B1{background-color:#CBA6f7;} + .d2-1579070777 .background-color-B2{background-color:#CBA6f7;} + .d2-1579070777 .background-color-B3{background-color:#6C7086;} + .d2-1579070777 .background-color-B4{background-color:#585B70;} + .d2-1579070777 .background-color-B5{background-color:#45475A;} + .d2-1579070777 .background-color-B6{background-color:#313244;} + .d2-1579070777 .background-color-AA2{background-color:#f38BA8;} + .d2-1579070777 .background-color-AA4{background-color:#45475A;} + .d2-1579070777 .background-color-AA5{background-color:#313244;} + .d2-1579070777 .background-color-AB4{background-color:#45475A;} + .d2-1579070777 .background-color-AB5{background-color:#313244;} + .d2-1579070777 .color-N1{color:#CDD6F4;} + .d2-1579070777 .color-N2{color:#BAC2DE;} + .d2-1579070777 .color-N3{color:#A6ADC8;} + .d2-1579070777 .color-N4{color:#585B70;} + .d2-1579070777 .color-N5{color:#45475A;} + .d2-1579070777 .color-N6{color:#313244;} + .d2-1579070777 .color-N7{color:#1E1E2E;} + .d2-1579070777 .color-B1{color:#CBA6f7;} + .d2-1579070777 .color-B2{color:#CBA6f7;} + .d2-1579070777 .color-B3{color:#6C7086;} + .d2-1579070777 .color-B4{color:#585B70;} + .d2-1579070777 .color-B5{color:#45475A;} + .d2-1579070777 .color-B6{color:#313244;} + .d2-1579070777 .color-AA2{color:#f38BA8;} + .d2-1579070777 .color-AA4{color:#45475A;} + .d2-1579070777 .color-AA5{color:#313244;} + .d2-1579070777 .color-AB4{color:#45475A;} + .d2-1579070777 .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}]]>wintersummertreessnowsun diff --git a/d2renderers/d2svg/dark_theme/testdata/arrowheads/dark_theme.exp.svg b/d2renderers/d2svg/dark_theme/testdata/arrowheads/dark_theme.exp.svg index 551176846b..11fe356949 100644 --- a/d2renderers/d2svg/dark_theme/testdata/arrowheads/dark_theme.exp.svg +++ b/d2renderers/d2svg/dark_theme/testdata/arrowheads/dark_theme.exp.svg @@ -1,16 +1,16 @@ -112233445566778899none arrow triangle diamond diamond filled cf-many cf-many-required cf-one cf-one-required + .d2-2630768955 .fill-N1{fill:#CDD6F4;} + .d2-2630768955 .fill-N2{fill:#BAC2DE;} + .d2-2630768955 .fill-N3{fill:#A6ADC8;} + .d2-2630768955 .fill-N4{fill:#585B70;} + .d2-2630768955 .fill-N5{fill:#45475A;} + .d2-2630768955 .fill-N6{fill:#313244;} + .d2-2630768955 .fill-N7{fill:#1E1E2E;} + .d2-2630768955 .fill-B1{fill:#CBA6f7;} + .d2-2630768955 .fill-B2{fill:#CBA6f7;} + .d2-2630768955 .fill-B3{fill:#6C7086;} + .d2-2630768955 .fill-B4{fill:#585B70;} + .d2-2630768955 .fill-B5{fill:#45475A;} + .d2-2630768955 .fill-B6{fill:#313244;} + .d2-2630768955 .fill-AA2{fill:#f38BA8;} + .d2-2630768955 .fill-AA4{fill:#45475A;} + .d2-2630768955 .fill-AA5{fill:#313244;} + .d2-2630768955 .fill-AB4{fill:#45475A;} + .d2-2630768955 .fill-AB5{fill:#313244;} + .d2-2630768955 .stroke-N1{stroke:#CDD6F4;} + .d2-2630768955 .stroke-N2{stroke:#BAC2DE;} + .d2-2630768955 .stroke-N3{stroke:#A6ADC8;} + .d2-2630768955 .stroke-N4{stroke:#585B70;} + .d2-2630768955 .stroke-N5{stroke:#45475A;} + .d2-2630768955 .stroke-N6{stroke:#313244;} + .d2-2630768955 .stroke-N7{stroke:#1E1E2E;} + .d2-2630768955 .stroke-B1{stroke:#CBA6f7;} + .d2-2630768955 .stroke-B2{stroke:#CBA6f7;} + .d2-2630768955 .stroke-B3{stroke:#6C7086;} + .d2-2630768955 .stroke-B4{stroke:#585B70;} + .d2-2630768955 .stroke-B5{stroke:#45475A;} + .d2-2630768955 .stroke-B6{stroke:#313244;} + .d2-2630768955 .stroke-AA2{stroke:#f38BA8;} + .d2-2630768955 .stroke-AA4{stroke:#45475A;} + .d2-2630768955 .stroke-AA5{stroke:#313244;} + .d2-2630768955 .stroke-AB4{stroke:#45475A;} + .d2-2630768955 .stroke-AB5{stroke:#313244;} + .d2-2630768955 .background-color-N1{background-color:#CDD6F4;} + .d2-2630768955 .background-color-N2{background-color:#BAC2DE;} + .d2-2630768955 .background-color-N3{background-color:#A6ADC8;} + .d2-2630768955 .background-color-N4{background-color:#585B70;} + .d2-2630768955 .background-color-N5{background-color:#45475A;} + .d2-2630768955 .background-color-N6{background-color:#313244;} + .d2-2630768955 .background-color-N7{background-color:#1E1E2E;} + .d2-2630768955 .background-color-B1{background-color:#CBA6f7;} + .d2-2630768955 .background-color-B2{background-color:#CBA6f7;} + .d2-2630768955 .background-color-B3{background-color:#6C7086;} + .d2-2630768955 .background-color-B4{background-color:#585B70;} + .d2-2630768955 .background-color-B5{background-color:#45475A;} + .d2-2630768955 .background-color-B6{background-color:#313244;} + .d2-2630768955 .background-color-AA2{background-color:#f38BA8;} + .d2-2630768955 .background-color-AA4{background-color:#45475A;} + .d2-2630768955 .background-color-AA5{background-color:#313244;} + .d2-2630768955 .background-color-AB4{background-color:#45475A;} + .d2-2630768955 .background-color-AB5{background-color:#313244;} + .d2-2630768955 .color-N1{color:#CDD6F4;} + .d2-2630768955 .color-N2{color:#BAC2DE;} + .d2-2630768955 .color-N3{color:#A6ADC8;} + .d2-2630768955 .color-N4{color:#585B70;} + .d2-2630768955 .color-N5{color:#45475A;} + .d2-2630768955 .color-N6{color:#313244;} + .d2-2630768955 .color-N7{color:#1E1E2E;} + .d2-2630768955 .color-B1{color:#CBA6f7;} + .d2-2630768955 .color-B2{color:#CBA6f7;} + .d2-2630768955 .color-B3{color:#6C7086;} + .d2-2630768955 .color-B4{color:#585B70;} + .d2-2630768955 .color-B5{color:#45475A;} + .d2-2630768955 .color-B6{color:#313244;} + .d2-2630768955 .color-AA2{color:#f38BA8;} + .d2-2630768955 .color-AA4{color:#45475A;} + .d2-2630768955 .color-AA5{color:#313244;} + .d2-2630768955 .color-AB4{color:#45475A;} + .d2-2630768955 .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}]]>112233445566778899none arrow triangle diamond diamond filled cf-many cf-many-required cf-one cf-one-required diff --git a/d2renderers/d2svg/dark_theme/testdata/basic/dark_theme.exp.svg b/d2renderers/d2svg/dark_theme/testdata/basic/dark_theme.exp.svg index 14f6e91097..bb800f8cc3 100644 --- a/d2renderers/d2svg/dark_theme/testdata/basic/dark_theme.exp.svg +++ b/d2renderers/d2svg/dark_theme/testdata/basic/dark_theme.exp.svg @@ -1,9 +1,9 @@ -ab + .d2-3451263933 .fill-N1{fill:#CDD6F4;} + .d2-3451263933 .fill-N2{fill:#BAC2DE;} + .d2-3451263933 .fill-N3{fill:#A6ADC8;} + .d2-3451263933 .fill-N4{fill:#585B70;} + .d2-3451263933 .fill-N5{fill:#45475A;} + .d2-3451263933 .fill-N6{fill:#313244;} + .d2-3451263933 .fill-N7{fill:#1E1E2E;} + .d2-3451263933 .fill-B1{fill:#CBA6f7;} + .d2-3451263933 .fill-B2{fill:#CBA6f7;} + .d2-3451263933 .fill-B3{fill:#6C7086;} + .d2-3451263933 .fill-B4{fill:#585B70;} + .d2-3451263933 .fill-B5{fill:#45475A;} + .d2-3451263933 .fill-B6{fill:#313244;} + .d2-3451263933 .fill-AA2{fill:#f38BA8;} + .d2-3451263933 .fill-AA4{fill:#45475A;} + .d2-3451263933 .fill-AA5{fill:#313244;} + .d2-3451263933 .fill-AB4{fill:#45475A;} + .d2-3451263933 .fill-AB5{fill:#313244;} + .d2-3451263933 .stroke-N1{stroke:#CDD6F4;} + .d2-3451263933 .stroke-N2{stroke:#BAC2DE;} + .d2-3451263933 .stroke-N3{stroke:#A6ADC8;} + .d2-3451263933 .stroke-N4{stroke:#585B70;} + .d2-3451263933 .stroke-N5{stroke:#45475A;} + .d2-3451263933 .stroke-N6{stroke:#313244;} + .d2-3451263933 .stroke-N7{stroke:#1E1E2E;} + .d2-3451263933 .stroke-B1{stroke:#CBA6f7;} + .d2-3451263933 .stroke-B2{stroke:#CBA6f7;} + .d2-3451263933 .stroke-B3{stroke:#6C7086;} + .d2-3451263933 .stroke-B4{stroke:#585B70;} + .d2-3451263933 .stroke-B5{stroke:#45475A;} + .d2-3451263933 .stroke-B6{stroke:#313244;} + .d2-3451263933 .stroke-AA2{stroke:#f38BA8;} + .d2-3451263933 .stroke-AA4{stroke:#45475A;} + .d2-3451263933 .stroke-AA5{stroke:#313244;} + .d2-3451263933 .stroke-AB4{stroke:#45475A;} + .d2-3451263933 .stroke-AB5{stroke:#313244;} + .d2-3451263933 .background-color-N1{background-color:#CDD6F4;} + .d2-3451263933 .background-color-N2{background-color:#BAC2DE;} + .d2-3451263933 .background-color-N3{background-color:#A6ADC8;} + .d2-3451263933 .background-color-N4{background-color:#585B70;} + .d2-3451263933 .background-color-N5{background-color:#45475A;} + .d2-3451263933 .background-color-N6{background-color:#313244;} + .d2-3451263933 .background-color-N7{background-color:#1E1E2E;} + .d2-3451263933 .background-color-B1{background-color:#CBA6f7;} + .d2-3451263933 .background-color-B2{background-color:#CBA6f7;} + .d2-3451263933 .background-color-B3{background-color:#6C7086;} + .d2-3451263933 .background-color-B4{background-color:#585B70;} + .d2-3451263933 .background-color-B5{background-color:#45475A;} + .d2-3451263933 .background-color-B6{background-color:#313244;} + .d2-3451263933 .background-color-AA2{background-color:#f38BA8;} + .d2-3451263933 .background-color-AA4{background-color:#45475A;} + .d2-3451263933 .background-color-AA5{background-color:#313244;} + .d2-3451263933 .background-color-AB4{background-color:#45475A;} + .d2-3451263933 .background-color-AB5{background-color:#313244;} + .d2-3451263933 .color-N1{color:#CDD6F4;} + .d2-3451263933 .color-N2{color:#BAC2DE;} + .d2-3451263933 .color-N3{color:#A6ADC8;} + .d2-3451263933 .color-N4{color:#585B70;} + .d2-3451263933 .color-N5{color:#45475A;} + .d2-3451263933 .color-N6{color:#313244;} + .d2-3451263933 .color-N7{color:#1E1E2E;} + .d2-3451263933 .color-B1{color:#CBA6f7;} + .d2-3451263933 .color-B2{color:#CBA6f7;} + .d2-3451263933 .color-B3{color:#6C7086;} + .d2-3451263933 .color-B4{color:#585B70;} + .d2-3451263933 .color-B5{color:#45475A;} + .d2-3451263933 .color-B6{color:#313244;} + .d2-3451263933 .color-AA2{color:#f38BA8;} + .d2-3451263933 .color-AA4{color:#45475A;} + .d2-3451263933 .color-AA5{color:#313244;} + .d2-3451263933 .color-AB4{color:#45475A;} + .d2-3451263933 .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}]]>ab diff --git a/d2renderers/d2svg/dark_theme/testdata/child_to_child/dark_theme.exp.svg b/d2renderers/d2svg/dark_theme/testdata/child_to_child/dark_theme.exp.svg index c255eb89b9..8707627328 100644 --- a/d2renderers/d2svg/dark_theme/testdata/child_to_child/dark_theme.exp.svg +++ b/d2renderers/d2svg/dark_theme/testdata/child_to_child/dark_theme.exp.svg @@ -1,16 +1,16 @@ -wintersummersnowsun + .d2-1306478287 .fill-N1{fill:#CDD6F4;} + .d2-1306478287 .fill-N2{fill:#BAC2DE;} + .d2-1306478287 .fill-N3{fill:#A6ADC8;} + .d2-1306478287 .fill-N4{fill:#585B70;} + .d2-1306478287 .fill-N5{fill:#45475A;} + .d2-1306478287 .fill-N6{fill:#313244;} + .d2-1306478287 .fill-N7{fill:#1E1E2E;} + .d2-1306478287 .fill-B1{fill:#CBA6f7;} + .d2-1306478287 .fill-B2{fill:#CBA6f7;} + .d2-1306478287 .fill-B3{fill:#6C7086;} + .d2-1306478287 .fill-B4{fill:#585B70;} + .d2-1306478287 .fill-B5{fill:#45475A;} + .d2-1306478287 .fill-B6{fill:#313244;} + .d2-1306478287 .fill-AA2{fill:#f38BA8;} + .d2-1306478287 .fill-AA4{fill:#45475A;} + .d2-1306478287 .fill-AA5{fill:#313244;} + .d2-1306478287 .fill-AB4{fill:#45475A;} + .d2-1306478287 .fill-AB5{fill:#313244;} + .d2-1306478287 .stroke-N1{stroke:#CDD6F4;} + .d2-1306478287 .stroke-N2{stroke:#BAC2DE;} + .d2-1306478287 .stroke-N3{stroke:#A6ADC8;} + .d2-1306478287 .stroke-N4{stroke:#585B70;} + .d2-1306478287 .stroke-N5{stroke:#45475A;} + .d2-1306478287 .stroke-N6{stroke:#313244;} + .d2-1306478287 .stroke-N7{stroke:#1E1E2E;} + .d2-1306478287 .stroke-B1{stroke:#CBA6f7;} + .d2-1306478287 .stroke-B2{stroke:#CBA6f7;} + .d2-1306478287 .stroke-B3{stroke:#6C7086;} + .d2-1306478287 .stroke-B4{stroke:#585B70;} + .d2-1306478287 .stroke-B5{stroke:#45475A;} + .d2-1306478287 .stroke-B6{stroke:#313244;} + .d2-1306478287 .stroke-AA2{stroke:#f38BA8;} + .d2-1306478287 .stroke-AA4{stroke:#45475A;} + .d2-1306478287 .stroke-AA5{stroke:#313244;} + .d2-1306478287 .stroke-AB4{stroke:#45475A;} + .d2-1306478287 .stroke-AB5{stroke:#313244;} + .d2-1306478287 .background-color-N1{background-color:#CDD6F4;} + .d2-1306478287 .background-color-N2{background-color:#BAC2DE;} + .d2-1306478287 .background-color-N3{background-color:#A6ADC8;} + .d2-1306478287 .background-color-N4{background-color:#585B70;} + .d2-1306478287 .background-color-N5{background-color:#45475A;} + .d2-1306478287 .background-color-N6{background-color:#313244;} + .d2-1306478287 .background-color-N7{background-color:#1E1E2E;} + .d2-1306478287 .background-color-B1{background-color:#CBA6f7;} + .d2-1306478287 .background-color-B2{background-color:#CBA6f7;} + .d2-1306478287 .background-color-B3{background-color:#6C7086;} + .d2-1306478287 .background-color-B4{background-color:#585B70;} + .d2-1306478287 .background-color-B5{background-color:#45475A;} + .d2-1306478287 .background-color-B6{background-color:#313244;} + .d2-1306478287 .background-color-AA2{background-color:#f38BA8;} + .d2-1306478287 .background-color-AA4{background-color:#45475A;} + .d2-1306478287 .background-color-AA5{background-color:#313244;} + .d2-1306478287 .background-color-AB4{background-color:#45475A;} + .d2-1306478287 .background-color-AB5{background-color:#313244;} + .d2-1306478287 .color-N1{color:#CDD6F4;} + .d2-1306478287 .color-N2{color:#BAC2DE;} + .d2-1306478287 .color-N3{color:#A6ADC8;} + .d2-1306478287 .color-N4{color:#585B70;} + .d2-1306478287 .color-N5{color:#45475A;} + .d2-1306478287 .color-N6{color:#313244;} + .d2-1306478287 .color-N7{color:#1E1E2E;} + .d2-1306478287 .color-B1{color:#CBA6f7;} + .d2-1306478287 .color-B2{color:#CBA6f7;} + .d2-1306478287 .color-B3{color:#6C7086;} + .d2-1306478287 .color-B4{color:#585B70;} + .d2-1306478287 .color-B5{color:#45475A;} + .d2-1306478287 .color-B6{color:#313244;} + .d2-1306478287 .color-AA2{color:#f38BA8;} + .d2-1306478287 .color-AA4{color:#45475A;} + .d2-1306478287 .color-AA5{color:#313244;} + .d2-1306478287 .color-AB4{color:#45475A;} + .d2-1306478287 .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}]]>wintersummersnowsun diff --git a/d2renderers/d2svg/dark_theme/testdata/code/dark_theme.exp.svg b/d2renderers/d2svg/dark_theme/testdata/code/dark_theme.exp.svg index 68d371df29..f813fbe820 100644 --- a/d2renderers/d2svg/dark_theme/testdata/code/dark_theme.exp.svg +++ b/d2renderers/d2svg/dark_theme/testdata/code/dark_theme.exp.svg @@ -1,27 +1,27 @@ -func main() { @@ -848,7 +848,7 @@ }func main() {   panic("TODO") }

    Five is a sufficiently close approximation to infinity.

    -
    Don't hit me!!  I'm in the Twilight Zone!!!Don't hit me!!  I'm in the Twilight Zone!!! +Don't hit me!!  I'm in the Twilight Zone!!!Don't hit me!!  I'm in the Twilight Zone!!! diff --git a/d2renderers/d2svg/dark_theme/testdata/connection_label/dark_theme.exp.svg b/d2renderers/d2svg/dark_theme/testdata/connection_label/dark_theme.exp.svg index 23176777d4..e4e46589a6 100644 --- a/d2renderers/d2svg/dark_theme/testdata/connection_label/dark_theme.exp.svg +++ b/d2renderers/d2svg/dark_theme/testdata/connection_label/dark_theme.exp.svg @@ -1,16 +1,16 @@ -ab hello + .d2-1929145507 .fill-N1{fill:#CDD6F4;} + .d2-1929145507 .fill-N2{fill:#BAC2DE;} + .d2-1929145507 .fill-N3{fill:#A6ADC8;} + .d2-1929145507 .fill-N4{fill:#585B70;} + .d2-1929145507 .fill-N5{fill:#45475A;} + .d2-1929145507 .fill-N6{fill:#313244;} + .d2-1929145507 .fill-N7{fill:#1E1E2E;} + .d2-1929145507 .fill-B1{fill:#CBA6f7;} + .d2-1929145507 .fill-B2{fill:#CBA6f7;} + .d2-1929145507 .fill-B3{fill:#6C7086;} + .d2-1929145507 .fill-B4{fill:#585B70;} + .d2-1929145507 .fill-B5{fill:#45475A;} + .d2-1929145507 .fill-B6{fill:#313244;} + .d2-1929145507 .fill-AA2{fill:#f38BA8;} + .d2-1929145507 .fill-AA4{fill:#45475A;} + .d2-1929145507 .fill-AA5{fill:#313244;} + .d2-1929145507 .fill-AB4{fill:#45475A;} + .d2-1929145507 .fill-AB5{fill:#313244;} + .d2-1929145507 .stroke-N1{stroke:#CDD6F4;} + .d2-1929145507 .stroke-N2{stroke:#BAC2DE;} + .d2-1929145507 .stroke-N3{stroke:#A6ADC8;} + .d2-1929145507 .stroke-N4{stroke:#585B70;} + .d2-1929145507 .stroke-N5{stroke:#45475A;} + .d2-1929145507 .stroke-N6{stroke:#313244;} + .d2-1929145507 .stroke-N7{stroke:#1E1E2E;} + .d2-1929145507 .stroke-B1{stroke:#CBA6f7;} + .d2-1929145507 .stroke-B2{stroke:#CBA6f7;} + .d2-1929145507 .stroke-B3{stroke:#6C7086;} + .d2-1929145507 .stroke-B4{stroke:#585B70;} + .d2-1929145507 .stroke-B5{stroke:#45475A;} + .d2-1929145507 .stroke-B6{stroke:#313244;} + .d2-1929145507 .stroke-AA2{stroke:#f38BA8;} + .d2-1929145507 .stroke-AA4{stroke:#45475A;} + .d2-1929145507 .stroke-AA5{stroke:#313244;} + .d2-1929145507 .stroke-AB4{stroke:#45475A;} + .d2-1929145507 .stroke-AB5{stroke:#313244;} + .d2-1929145507 .background-color-N1{background-color:#CDD6F4;} + .d2-1929145507 .background-color-N2{background-color:#BAC2DE;} + .d2-1929145507 .background-color-N3{background-color:#A6ADC8;} + .d2-1929145507 .background-color-N4{background-color:#585B70;} + .d2-1929145507 .background-color-N5{background-color:#45475A;} + .d2-1929145507 .background-color-N6{background-color:#313244;} + .d2-1929145507 .background-color-N7{background-color:#1E1E2E;} + .d2-1929145507 .background-color-B1{background-color:#CBA6f7;} + .d2-1929145507 .background-color-B2{background-color:#CBA6f7;} + .d2-1929145507 .background-color-B3{background-color:#6C7086;} + .d2-1929145507 .background-color-B4{background-color:#585B70;} + .d2-1929145507 .background-color-B5{background-color:#45475A;} + .d2-1929145507 .background-color-B6{background-color:#313244;} + .d2-1929145507 .background-color-AA2{background-color:#f38BA8;} + .d2-1929145507 .background-color-AA4{background-color:#45475A;} + .d2-1929145507 .background-color-AA5{background-color:#313244;} + .d2-1929145507 .background-color-AB4{background-color:#45475A;} + .d2-1929145507 .background-color-AB5{background-color:#313244;} + .d2-1929145507 .color-N1{color:#CDD6F4;} + .d2-1929145507 .color-N2{color:#BAC2DE;} + .d2-1929145507 .color-N3{color:#A6ADC8;} + .d2-1929145507 .color-N4{color:#585B70;} + .d2-1929145507 .color-N5{color:#45475A;} + .d2-1929145507 .color-N6{color:#313244;} + .d2-1929145507 .color-N7{color:#1E1E2E;} + .d2-1929145507 .color-B1{color:#CBA6f7;} + .d2-1929145507 .color-B2{color:#CBA6f7;} + .d2-1929145507 .color-B3{color:#6C7086;} + .d2-1929145507 .color-B4{color:#585B70;} + .d2-1929145507 .color-B5{color:#45475A;} + .d2-1929145507 .color-B6{color:#313244;} + .d2-1929145507 .color-AA2{color:#f38BA8;} + .d2-1929145507 .color-AA4{color:#45475A;} + .d2-1929145507 .color-AA5{color:#313244;} + .d2-1929145507 .color-AB4{color:#45475A;} + .d2-1929145507 .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}]]>ab hello diff --git a/d2renderers/d2svg/dark_theme/testdata/opacity/dark_theme.exp.svg b/d2renderers/d2svg/dark_theme/testdata/opacity/dark_theme.exp.svg index 34f9d427a2..be555f7e7e 100644 --- a/d2renderers/d2svg/dark_theme/testdata/opacity/dark_theme.exp.svg +++ b/d2renderers/d2svg/dark_theme/testdata/opacity/dark_theme.exp.svg @@ -1,27 +1,27 @@ -x

    linux: because a PC is a terrible thing to waste

    -
    auserslast_logindatetime You don't have to know how the computer works,just how to work the computer. +auserslast_logindatetime You don't have to know how the computer works,just how to work the computer. diff --git a/d2renderers/d2svg/dark_theme/testdata/sql_tables/dark_theme.exp.svg b/d2renderers/d2svg/dark_theme/testdata/sql_tables/dark_theme.exp.svg index 44f049cbc5..a7b196aca2 100644 --- a/d2renderers/d2svg/dark_theme/testdata/sql_tables/dark_theme.exp.svg +++ b/d2renderers/d2svg/dark_theme/testdata/sql_tables/dark_theme.exp.svg @@ -1,9 +1,9 @@ -usersidintnamestringemailstringpasswordstringlast_logindatetimeproductsidintpricedecimalskustringnamestringordersidintuser_idintproduct_idintshipmentsidintorder_idinttracking_numberstringPKstatusstring + .d2-3175421624 .fill-N1{fill:#CDD6F4;} + .d2-3175421624 .fill-N2{fill:#BAC2DE;} + .d2-3175421624 .fill-N3{fill:#A6ADC8;} + .d2-3175421624 .fill-N4{fill:#585B70;} + .d2-3175421624 .fill-N5{fill:#45475A;} + .d2-3175421624 .fill-N6{fill:#313244;} + .d2-3175421624 .fill-N7{fill:#1E1E2E;} + .d2-3175421624 .fill-B1{fill:#CBA6f7;} + .d2-3175421624 .fill-B2{fill:#CBA6f7;} + .d2-3175421624 .fill-B3{fill:#6C7086;} + .d2-3175421624 .fill-B4{fill:#585B70;} + .d2-3175421624 .fill-B5{fill:#45475A;} + .d2-3175421624 .fill-B6{fill:#313244;} + .d2-3175421624 .fill-AA2{fill:#f38BA8;} + .d2-3175421624 .fill-AA4{fill:#45475A;} + .d2-3175421624 .fill-AA5{fill:#313244;} + .d2-3175421624 .fill-AB4{fill:#45475A;} + .d2-3175421624 .fill-AB5{fill:#313244;} + .d2-3175421624 .stroke-N1{stroke:#CDD6F4;} + .d2-3175421624 .stroke-N2{stroke:#BAC2DE;} + .d2-3175421624 .stroke-N3{stroke:#A6ADC8;} + .d2-3175421624 .stroke-N4{stroke:#585B70;} + .d2-3175421624 .stroke-N5{stroke:#45475A;} + .d2-3175421624 .stroke-N6{stroke:#313244;} + .d2-3175421624 .stroke-N7{stroke:#1E1E2E;} + .d2-3175421624 .stroke-B1{stroke:#CBA6f7;} + .d2-3175421624 .stroke-B2{stroke:#CBA6f7;} + .d2-3175421624 .stroke-B3{stroke:#6C7086;} + .d2-3175421624 .stroke-B4{stroke:#585B70;} + .d2-3175421624 .stroke-B5{stroke:#45475A;} + .d2-3175421624 .stroke-B6{stroke:#313244;} + .d2-3175421624 .stroke-AA2{stroke:#f38BA8;} + .d2-3175421624 .stroke-AA4{stroke:#45475A;} + .d2-3175421624 .stroke-AA5{stroke:#313244;} + .d2-3175421624 .stroke-AB4{stroke:#45475A;} + .d2-3175421624 .stroke-AB5{stroke:#313244;} + .d2-3175421624 .background-color-N1{background-color:#CDD6F4;} + .d2-3175421624 .background-color-N2{background-color:#BAC2DE;} + .d2-3175421624 .background-color-N3{background-color:#A6ADC8;} + .d2-3175421624 .background-color-N4{background-color:#585B70;} + .d2-3175421624 .background-color-N5{background-color:#45475A;} + .d2-3175421624 .background-color-N6{background-color:#313244;} + .d2-3175421624 .background-color-N7{background-color:#1E1E2E;} + .d2-3175421624 .background-color-B1{background-color:#CBA6f7;} + .d2-3175421624 .background-color-B2{background-color:#CBA6f7;} + .d2-3175421624 .background-color-B3{background-color:#6C7086;} + .d2-3175421624 .background-color-B4{background-color:#585B70;} + .d2-3175421624 .background-color-B5{background-color:#45475A;} + .d2-3175421624 .background-color-B6{background-color:#313244;} + .d2-3175421624 .background-color-AA2{background-color:#f38BA8;} + .d2-3175421624 .background-color-AA4{background-color:#45475A;} + .d2-3175421624 .background-color-AA5{background-color:#313244;} + .d2-3175421624 .background-color-AB4{background-color:#45475A;} + .d2-3175421624 .background-color-AB5{background-color:#313244;} + .d2-3175421624 .color-N1{color:#CDD6F4;} + .d2-3175421624 .color-N2{color:#BAC2DE;} + .d2-3175421624 .color-N3{color:#A6ADC8;} + .d2-3175421624 .color-N4{color:#585B70;} + .d2-3175421624 .color-N5{color:#45475A;} + .d2-3175421624 .color-N6{color:#313244;} + .d2-3175421624 .color-N7{color:#1E1E2E;} + .d2-3175421624 .color-B1{color:#CBA6f7;} + .d2-3175421624 .color-B2{color:#CBA6f7;} + .d2-3175421624 .color-B3{color:#6C7086;} + .d2-3175421624 .color-B4{color:#585B70;} + .d2-3175421624 .color-B5{color:#45475A;} + .d2-3175421624 .color-B6{color:#313244;} + .d2-3175421624 .color-AA2{color:#f38BA8;} + .d2-3175421624 .color-AA4{color:#45475A;} + .d2-3175421624 .color-AA5{color:#313244;} + .d2-3175421624 .color-AB4{color:#45475A;} + .d2-3175421624 .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}]]>usersidintnamestringemailstringpasswordstringlast_logindatetimeproductsidintpricedecimalskustringnamestringordersidintuser_idintproduct_idintshipmentsidintorder_idinttracking_numberstringPKstatusstring \ No newline at end of file diff --git a/d2renderers/d2svg/dark_theme/testdata/twitter/dark_theme.exp.svg b/d2renderers/d2svg/dark_theme/testdata/twitter/dark_theme.exp.svg index f63cf2c5ac..a884853708 100644 --- a/d2renderers/d2svg/dark_theme/testdata/twitter/dark_theme.exp.svg +++ b/d2renderers/d2svg/dark_theme/testdata/twitter/dark_theme.exp.svg @@ -1,27 +1,27 @@ -People discovery serviceAd mixerOnboarding serviceTwitter Frontend WebIphoneAndroidTimelineScorerHome RankerTimeline ServiceHome mixerManhattanGizmoduckSocial graphTweety PiePrediction ServiceHome ScorerManhattanMemcacheFetchFeatureScoringPrediction Service...etc

    Timeline mixer

    @@ -852,7 +852,7 @@
  • Served data logging
  • GraphQLFederated Strato Column

    Tweet/user content hydration, visibility filtering

    -
    TLS-API (being deprecated)CrMixerEarlyBirdUtagSpaceCommunities iPhone webHTTP AndroidThrift RPC Candidate FetchFeature HydrationCandidate sources +TLS-API (being deprecated)CrMixerEarlyBirdUtagSpaceCommunities iPhone webHTTP AndroidThrift RPC Candidate FetchFeature HydrationCandidate sources diff --git a/d2target/d2target.go b/d2target/d2target.go index fe6eba11f1..a2c6d680de 100644 --- a/d2target/d2target.go +++ b/d2target/d2target.go @@ -599,6 +599,9 @@ type Connection struct { LabelPosition string `json:"labelPosition"` LabelPercentage float64 `json:"labelPercentage"` + Link string `json:"link"` + PrettyLink string `json:"prettyLink,omitempty"` + Route []*geo.Point `json:"route"` IsCurve bool `json:"isCurve,omitempty"` diff --git a/e2etests-cli/testdata/TestCLI_E2E/abspath.exp.svg b/e2etests-cli/testdata/TestCLI_E2E/abspath.exp.svg index 1fbc98eeaa..83392e040d 100644 --- a/e2etests-cli/testdata/TestCLI_E2E/abspath.exp.svg +++ b/e2etests-cli/testdata/TestCLI_E2E/abspath.exp.svg @@ -1,9 +1,9 @@ -xy + .d2-4198988860 .fill-N1{fill:#0A0F25;} + .d2-4198988860 .fill-N2{fill:#676C7E;} + .d2-4198988860 .fill-N3{fill:#9499AB;} + .d2-4198988860 .fill-N4{fill:#CFD2DD;} + .d2-4198988860 .fill-N5{fill:#DEE1EB;} + .d2-4198988860 .fill-N6{fill:#EEF1F8;} + .d2-4198988860 .fill-N7{fill:#FFFFFF;} + .d2-4198988860 .fill-B1{fill:#0D32B2;} + .d2-4198988860 .fill-B2{fill:#0D32B2;} + .d2-4198988860 .fill-B3{fill:#E3E9FD;} + .d2-4198988860 .fill-B4{fill:#E3E9FD;} + .d2-4198988860 .fill-B5{fill:#EDF0FD;} + .d2-4198988860 .fill-B6{fill:#F7F8FE;} + .d2-4198988860 .fill-AA2{fill:#4A6FF3;} + .d2-4198988860 .fill-AA4{fill:#EDF0FD;} + .d2-4198988860 .fill-AA5{fill:#F7F8FE;} + .d2-4198988860 .fill-AB4{fill:#EDF0FD;} + .d2-4198988860 .fill-AB5{fill:#F7F8FE;} + .d2-4198988860 .stroke-N1{stroke:#0A0F25;} + .d2-4198988860 .stroke-N2{stroke:#676C7E;} + .d2-4198988860 .stroke-N3{stroke:#9499AB;} + .d2-4198988860 .stroke-N4{stroke:#CFD2DD;} + .d2-4198988860 .stroke-N5{stroke:#DEE1EB;} + .d2-4198988860 .stroke-N6{stroke:#EEF1F8;} + .d2-4198988860 .stroke-N7{stroke:#FFFFFF;} + .d2-4198988860 .stroke-B1{stroke:#0D32B2;} + .d2-4198988860 .stroke-B2{stroke:#0D32B2;} + .d2-4198988860 .stroke-B3{stroke:#E3E9FD;} + .d2-4198988860 .stroke-B4{stroke:#E3E9FD;} + .d2-4198988860 .stroke-B5{stroke:#EDF0FD;} + .d2-4198988860 .stroke-B6{stroke:#F7F8FE;} + .d2-4198988860 .stroke-AA2{stroke:#4A6FF3;} + .d2-4198988860 .stroke-AA4{stroke:#EDF0FD;} + .d2-4198988860 .stroke-AA5{stroke:#F7F8FE;} + .d2-4198988860 .stroke-AB4{stroke:#EDF0FD;} + .d2-4198988860 .stroke-AB5{stroke:#F7F8FE;} + .d2-4198988860 .background-color-N1{background-color:#0A0F25;} + .d2-4198988860 .background-color-N2{background-color:#676C7E;} + .d2-4198988860 .background-color-N3{background-color:#9499AB;} + .d2-4198988860 .background-color-N4{background-color:#CFD2DD;} + .d2-4198988860 .background-color-N5{background-color:#DEE1EB;} + .d2-4198988860 .background-color-N6{background-color:#EEF1F8;} + .d2-4198988860 .background-color-N7{background-color:#FFFFFF;} + .d2-4198988860 .background-color-B1{background-color:#0D32B2;} + .d2-4198988860 .background-color-B2{background-color:#0D32B2;} + .d2-4198988860 .background-color-B3{background-color:#E3E9FD;} + .d2-4198988860 .background-color-B4{background-color:#E3E9FD;} + .d2-4198988860 .background-color-B5{background-color:#EDF0FD;} + .d2-4198988860 .background-color-B6{background-color:#F7F8FE;} + .d2-4198988860 .background-color-AA2{background-color:#4A6FF3;} + .d2-4198988860 .background-color-AA4{background-color:#EDF0FD;} + .d2-4198988860 .background-color-AA5{background-color:#F7F8FE;} + .d2-4198988860 .background-color-AB4{background-color:#EDF0FD;} + .d2-4198988860 .background-color-AB5{background-color:#F7F8FE;} + .d2-4198988860 .color-N1{color:#0A0F25;} + .d2-4198988860 .color-N2{color:#676C7E;} + .d2-4198988860 .color-N3{color:#9499AB;} + .d2-4198988860 .color-N4{color:#CFD2DD;} + .d2-4198988860 .color-N5{color:#DEE1EB;} + .d2-4198988860 .color-N6{color:#EEF1F8;} + .d2-4198988860 .color-N7{color:#FFFFFF;} + .d2-4198988860 .color-B1{color:#0D32B2;} + .d2-4198988860 .color-B2{color:#0D32B2;} + .d2-4198988860 .color-B3{color:#E3E9FD;} + .d2-4198988860 .color-B4{color:#E3E9FD;} + .d2-4198988860 .color-B5{color:#EDF0FD;} + .d2-4198988860 .color-B6{color:#F7F8FE;} + .d2-4198988860 .color-AA2{color:#4A6FF3;} + .d2-4198988860 .color-AA4{color:#EDF0FD;} + .d2-4198988860 .color-AA5{color:#F7F8FE;} + .d2-4198988860 .color-AB4{color:#EDF0FD;} + .d2-4198988860 .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/animation.exp.svg b/e2etests-cli/testdata/TestCLI_E2E/animation.exp.svg index 2fffe9e6b2..617e8cd3c4 100644 --- a/e2etests-cli/testdata/TestCLI_E2E/animation.exp.svg +++ b/e2etests-cli/testdata/TestCLI_E2E/animation.exp.svg @@ -1,16 +1,16 @@ Chicken's plan +}]]>Chicken's plan -Chicken's planApproach road +Chicken's planApproach road -Chicken's planApproach roadCross road +Chicken's planApproach roadCross road -Chicken's planApproach roadCross roadMake you wonder why +Chicken's planApproach roadCross roadMake you wonder why diff --git a/e2etests-cli/testdata/TestCLI_E2E/center.exp.svg b/e2etests-cli/testdata/TestCLI_E2E/center.exp.svg index 863bdd3e9b..45f532d11a 100644 --- a/e2etests-cli/testdata/TestCLI_E2E/center.exp.svg +++ b/e2etests-cli/testdata/TestCLI_E2E/center.exp.svg @@ -1,9 +1,9 @@ -xy + .d2-4198988860 .fill-N1{fill:#0A0F25;} + .d2-4198988860 .fill-N2{fill:#676C7E;} + .d2-4198988860 .fill-N3{fill:#9499AB;} + .d2-4198988860 .fill-N4{fill:#CFD2DD;} + .d2-4198988860 .fill-N5{fill:#DEE1EB;} + .d2-4198988860 .fill-N6{fill:#EEF1F8;} + .d2-4198988860 .fill-N7{fill:#FFFFFF;} + .d2-4198988860 .fill-B1{fill:#0D32B2;} + .d2-4198988860 .fill-B2{fill:#0D32B2;} + .d2-4198988860 .fill-B3{fill:#E3E9FD;} + .d2-4198988860 .fill-B4{fill:#E3E9FD;} + .d2-4198988860 .fill-B5{fill:#EDF0FD;} + .d2-4198988860 .fill-B6{fill:#F7F8FE;} + .d2-4198988860 .fill-AA2{fill:#4A6FF3;} + .d2-4198988860 .fill-AA4{fill:#EDF0FD;} + .d2-4198988860 .fill-AA5{fill:#F7F8FE;} + .d2-4198988860 .fill-AB4{fill:#EDF0FD;} + .d2-4198988860 .fill-AB5{fill:#F7F8FE;} + .d2-4198988860 .stroke-N1{stroke:#0A0F25;} + .d2-4198988860 .stroke-N2{stroke:#676C7E;} + .d2-4198988860 .stroke-N3{stroke:#9499AB;} + .d2-4198988860 .stroke-N4{stroke:#CFD2DD;} + .d2-4198988860 .stroke-N5{stroke:#DEE1EB;} + .d2-4198988860 .stroke-N6{stroke:#EEF1F8;} + .d2-4198988860 .stroke-N7{stroke:#FFFFFF;} + .d2-4198988860 .stroke-B1{stroke:#0D32B2;} + .d2-4198988860 .stroke-B2{stroke:#0D32B2;} + .d2-4198988860 .stroke-B3{stroke:#E3E9FD;} + .d2-4198988860 .stroke-B4{stroke:#E3E9FD;} + .d2-4198988860 .stroke-B5{stroke:#EDF0FD;} + .d2-4198988860 .stroke-B6{stroke:#F7F8FE;} + .d2-4198988860 .stroke-AA2{stroke:#4A6FF3;} + .d2-4198988860 .stroke-AA4{stroke:#EDF0FD;} + .d2-4198988860 .stroke-AA5{stroke:#F7F8FE;} + .d2-4198988860 .stroke-AB4{stroke:#EDF0FD;} + .d2-4198988860 .stroke-AB5{stroke:#F7F8FE;} + .d2-4198988860 .background-color-N1{background-color:#0A0F25;} + .d2-4198988860 .background-color-N2{background-color:#676C7E;} + .d2-4198988860 .background-color-N3{background-color:#9499AB;} + .d2-4198988860 .background-color-N4{background-color:#CFD2DD;} + .d2-4198988860 .background-color-N5{background-color:#DEE1EB;} + .d2-4198988860 .background-color-N6{background-color:#EEF1F8;} + .d2-4198988860 .background-color-N7{background-color:#FFFFFF;} + .d2-4198988860 .background-color-B1{background-color:#0D32B2;} + .d2-4198988860 .background-color-B2{background-color:#0D32B2;} + .d2-4198988860 .background-color-B3{background-color:#E3E9FD;} + .d2-4198988860 .background-color-B4{background-color:#E3E9FD;} + .d2-4198988860 .background-color-B5{background-color:#EDF0FD;} + .d2-4198988860 .background-color-B6{background-color:#F7F8FE;} + .d2-4198988860 .background-color-AA2{background-color:#4A6FF3;} + .d2-4198988860 .background-color-AA4{background-color:#EDF0FD;} + .d2-4198988860 .background-color-AA5{background-color:#F7F8FE;} + .d2-4198988860 .background-color-AB4{background-color:#EDF0FD;} + .d2-4198988860 .background-color-AB5{background-color:#F7F8FE;} + .d2-4198988860 .color-N1{color:#0A0F25;} + .d2-4198988860 .color-N2{color:#676C7E;} + .d2-4198988860 .color-N3{color:#9499AB;} + .d2-4198988860 .color-N4{color:#CFD2DD;} + .d2-4198988860 .color-N5{color:#DEE1EB;} + .d2-4198988860 .color-N6{color:#EEF1F8;} + .d2-4198988860 .color-N7{color:#FFFFFF;} + .d2-4198988860 .color-B1{color:#0D32B2;} + .d2-4198988860 .color-B2{color:#0D32B2;} + .d2-4198988860 .color-B3{color:#E3E9FD;} + .d2-4198988860 .color-B4{color:#E3E9FD;} + .d2-4198988860 .color-B5{color:#EDF0FD;} + .d2-4198988860 .color-B6{color:#F7F8FE;} + .d2-4198988860 .color-AA2{color:#4A6FF3;} + .d2-4198988860 .color-AA4{color:#EDF0FD;} + .d2-4198988860 .color-AA5{color:#F7F8FE;} + .d2-4198988860 .color-AB4{color:#EDF0FD;} + .d2-4198988860 .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/empty-base.exp.svg b/e2etests-cli/testdata/TestCLI_E2E/empty-base.exp.svg index e87dd4c28f..ff220c36d9 100644 --- a/e2etests-cli/testdata/TestCLI_E2E/empty-base.exp.svg +++ b/e2etests-cli/testdata/TestCLI_E2E/empty-base.exp.svg @@ -1,9 +1,9 @@ ab +}]]>ab -abdc +abdc -abdce +abdce diff --git a/e2etests-cli/testdata/TestCLI_E2E/hello_world_png.exp.png b/e2etests-cli/testdata/TestCLI_E2E/hello_world_png.exp.png index ad098e23dd..eb8c79b000 100644 Binary files a/e2etests-cli/testdata/TestCLI_E2E/hello_world_png.exp.png and b/e2etests-cli/testdata/TestCLI_E2E/hello_world_png.exp.png differ diff --git a/e2etests-cli/testdata/TestCLI_E2E/hello_world_png_pad.exp.png b/e2etests-cli/testdata/TestCLI_E2E/hello_world_png_pad.exp.png index f8c4043d12..ebd9743ef8 100644 Binary files a/e2etests-cli/testdata/TestCLI_E2E/hello_world_png_pad.exp.png and b/e2etests-cli/testdata/TestCLI_E2E/hello_world_png_pad.exp.png differ diff --git a/e2etests-cli/testdata/TestCLI_E2E/hello_world_png_sketch.exp.png b/e2etests-cli/testdata/TestCLI_E2E/hello_world_png_sketch.exp.png index 3b5375b75e..7caa3575f6 100644 Binary files a/e2etests-cli/testdata/TestCLI_E2E/hello_world_png_sketch.exp.png and b/e2etests-cli/testdata/TestCLI_E2E/hello_world_png_sketch.exp.png differ diff --git a/e2etests-cli/testdata/TestCLI_E2E/import.exp.svg b/e2etests-cli/testdata/TestCLI_E2E/import.exp.svg index a35d5c16e2..20cba74730 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-4289526217 .fill-N1{fill:#0A0F25;} + .d2-4289526217 .fill-N2{fill:#676C7E;} + .d2-4289526217 .fill-N3{fill:#9499AB;} + .d2-4289526217 .fill-N4{fill:#CFD2DD;} + .d2-4289526217 .fill-N5{fill:#DEE1EB;} + .d2-4289526217 .fill-N6{fill:#EEF1F8;} + .d2-4289526217 .fill-N7{fill:#FFFFFF;} + .d2-4289526217 .fill-B1{fill:#0D32B2;} + .d2-4289526217 .fill-B2{fill:#0D32B2;} + .d2-4289526217 .fill-B3{fill:#E3E9FD;} + .d2-4289526217 .fill-B4{fill:#E3E9FD;} + .d2-4289526217 .fill-B5{fill:#EDF0FD;} + .d2-4289526217 .fill-B6{fill:#F7F8FE;} + .d2-4289526217 .fill-AA2{fill:#4A6FF3;} + .d2-4289526217 .fill-AA4{fill:#EDF0FD;} + .d2-4289526217 .fill-AA5{fill:#F7F8FE;} + .d2-4289526217 .fill-AB4{fill:#EDF0FD;} + .d2-4289526217 .fill-AB5{fill:#F7F8FE;} + .d2-4289526217 .stroke-N1{stroke:#0A0F25;} + .d2-4289526217 .stroke-N2{stroke:#676C7E;} + .d2-4289526217 .stroke-N3{stroke:#9499AB;} + .d2-4289526217 .stroke-N4{stroke:#CFD2DD;} + .d2-4289526217 .stroke-N5{stroke:#DEE1EB;} + .d2-4289526217 .stroke-N6{stroke:#EEF1F8;} + .d2-4289526217 .stroke-N7{stroke:#FFFFFF;} + .d2-4289526217 .stroke-B1{stroke:#0D32B2;} + .d2-4289526217 .stroke-B2{stroke:#0D32B2;} + .d2-4289526217 .stroke-B3{stroke:#E3E9FD;} + .d2-4289526217 .stroke-B4{stroke:#E3E9FD;} + .d2-4289526217 .stroke-B5{stroke:#EDF0FD;} + .d2-4289526217 .stroke-B6{stroke:#F7F8FE;} + .d2-4289526217 .stroke-AA2{stroke:#4A6FF3;} + .d2-4289526217 .stroke-AA4{stroke:#EDF0FD;} + .d2-4289526217 .stroke-AA5{stroke:#F7F8FE;} + .d2-4289526217 .stroke-AB4{stroke:#EDF0FD;} + .d2-4289526217 .stroke-AB5{stroke:#F7F8FE;} + .d2-4289526217 .background-color-N1{background-color:#0A0F25;} + .d2-4289526217 .background-color-N2{background-color:#676C7E;} + .d2-4289526217 .background-color-N3{background-color:#9499AB;} + .d2-4289526217 .background-color-N4{background-color:#CFD2DD;} + .d2-4289526217 .background-color-N5{background-color:#DEE1EB;} + .d2-4289526217 .background-color-N6{background-color:#EEF1F8;} + .d2-4289526217 .background-color-N7{background-color:#FFFFFF;} + .d2-4289526217 .background-color-B1{background-color:#0D32B2;} + .d2-4289526217 .background-color-B2{background-color:#0D32B2;} + .d2-4289526217 .background-color-B3{background-color:#E3E9FD;} + .d2-4289526217 .background-color-B4{background-color:#E3E9FD;} + .d2-4289526217 .background-color-B5{background-color:#EDF0FD;} + .d2-4289526217 .background-color-B6{background-color:#F7F8FE;} + .d2-4289526217 .background-color-AA2{background-color:#4A6FF3;} + .d2-4289526217 .background-color-AA4{background-color:#EDF0FD;} + .d2-4289526217 .background-color-AA5{background-color:#F7F8FE;} + .d2-4289526217 .background-color-AB4{background-color:#EDF0FD;} + .d2-4289526217 .background-color-AB5{background-color:#F7F8FE;} + .d2-4289526217 .color-N1{color:#0A0F25;} + .d2-4289526217 .color-N2{color:#676C7E;} + .d2-4289526217 .color-N3{color:#9499AB;} + .d2-4289526217 .color-N4{color:#CFD2DD;} + .d2-4289526217 .color-N5{color:#DEE1EB;} + .d2-4289526217 .color-N6{color:#EEF1F8;} + .d2-4289526217 .color-N7{color:#FFFFFF;} + .d2-4289526217 .color-B1{color:#0D32B2;} + .d2-4289526217 .color-B2{color:#0D32B2;} + .d2-4289526217 .color-B3{color:#E3E9FD;} + .d2-4289526217 .color-B4{color:#E3E9FD;} + .d2-4289526217 .color-B5{color:#EDF0FD;} + .d2-4289526217 .color-B6{color:#F7F8FE;} + .d2-4289526217 .color-AA2{color:#4A6FF3;} + .d2-4289526217 .color-AA4{color:#EDF0FD;} + .d2-4289526217 .color-AA5{color:#F7F8FE;} + .d2-4289526217 .color-AB4{color:#EDF0FD;} + .d2-4289526217 .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/import_vars.exp.svg b/e2etests-cli/testdata/TestCLI_E2E/import_vars.exp.svg index b42aeed9e4..588cac8f86 100644 --- a/e2etests-cli/testdata/TestCLI_E2E/import_vars.exp.svg +++ b/e2etests-cli/testdata/TestCLI_E2E/import_vars.exp.svg @@ -1,9 +1,9 @@ -xy + .d2-2746395997 .fill-N1{fill:#CDD6F4;} + .d2-2746395997 .fill-N2{fill:#BAC2DE;} + .d2-2746395997 .fill-N3{fill:#A6ADC8;} + .d2-2746395997 .fill-N4{fill:#585B70;} + .d2-2746395997 .fill-N5{fill:#45475A;} + .d2-2746395997 .fill-N6{fill:#313244;} + .d2-2746395997 .fill-N7{fill:#1E1E2E;} + .d2-2746395997 .fill-B1{fill:#CBA6f7;} + .d2-2746395997 .fill-B2{fill:#CBA6f7;} + .d2-2746395997 .fill-B3{fill:#6C7086;} + .d2-2746395997 .fill-B4{fill:#585B70;} + .d2-2746395997 .fill-B5{fill:#45475A;} + .d2-2746395997 .fill-B6{fill:#313244;} + .d2-2746395997 .fill-AA2{fill:#f38BA8;} + .d2-2746395997 .fill-AA4{fill:#45475A;} + .d2-2746395997 .fill-AA5{fill:#313244;} + .d2-2746395997 .fill-AB4{fill:#45475A;} + .d2-2746395997 .fill-AB5{fill:#313244;} + .d2-2746395997 .stroke-N1{stroke:#CDD6F4;} + .d2-2746395997 .stroke-N2{stroke:#BAC2DE;} + .d2-2746395997 .stroke-N3{stroke:#A6ADC8;} + .d2-2746395997 .stroke-N4{stroke:#585B70;} + .d2-2746395997 .stroke-N5{stroke:#45475A;} + .d2-2746395997 .stroke-N6{stroke:#313244;} + .d2-2746395997 .stroke-N7{stroke:#1E1E2E;} + .d2-2746395997 .stroke-B1{stroke:#CBA6f7;} + .d2-2746395997 .stroke-B2{stroke:#CBA6f7;} + .d2-2746395997 .stroke-B3{stroke:#6C7086;} + .d2-2746395997 .stroke-B4{stroke:#585B70;} + .d2-2746395997 .stroke-B5{stroke:#45475A;} + .d2-2746395997 .stroke-B6{stroke:#313244;} + .d2-2746395997 .stroke-AA2{stroke:#f38BA8;} + .d2-2746395997 .stroke-AA4{stroke:#45475A;} + .d2-2746395997 .stroke-AA5{stroke:#313244;} + .d2-2746395997 .stroke-AB4{stroke:#45475A;} + .d2-2746395997 .stroke-AB5{stroke:#313244;} + .d2-2746395997 .background-color-N1{background-color:#CDD6F4;} + .d2-2746395997 .background-color-N2{background-color:#BAC2DE;} + .d2-2746395997 .background-color-N3{background-color:#A6ADC8;} + .d2-2746395997 .background-color-N4{background-color:#585B70;} + .d2-2746395997 .background-color-N5{background-color:#45475A;} + .d2-2746395997 .background-color-N6{background-color:#313244;} + .d2-2746395997 .background-color-N7{background-color:#1E1E2E;} + .d2-2746395997 .background-color-B1{background-color:#CBA6f7;} + .d2-2746395997 .background-color-B2{background-color:#CBA6f7;} + .d2-2746395997 .background-color-B3{background-color:#6C7086;} + .d2-2746395997 .background-color-B4{background-color:#585B70;} + .d2-2746395997 .background-color-B5{background-color:#45475A;} + .d2-2746395997 .background-color-B6{background-color:#313244;} + .d2-2746395997 .background-color-AA2{background-color:#f38BA8;} + .d2-2746395997 .background-color-AA4{background-color:#45475A;} + .d2-2746395997 .background-color-AA5{background-color:#313244;} + .d2-2746395997 .background-color-AB4{background-color:#45475A;} + .d2-2746395997 .background-color-AB5{background-color:#313244;} + .d2-2746395997 .color-N1{color:#CDD6F4;} + .d2-2746395997 .color-N2{color:#BAC2DE;} + .d2-2746395997 .color-N3{color:#A6ADC8;} + .d2-2746395997 .color-N4{color:#585B70;} + .d2-2746395997 .color-N5{color:#45475A;} + .d2-2746395997 .color-N6{color:#313244;} + .d2-2746395997 .color-N7{color:#1E1E2E;} + .d2-2746395997 .color-B1{color:#CBA6f7;} + .d2-2746395997 .color-B2{color:#CBA6f7;} + .d2-2746395997 .color-B3{color:#6C7086;} + .d2-2746395997 .color-B4{color:#585B70;} + .d2-2746395997 .color-B5{color:#45475A;} + .d2-2746395997 .color-B6{color:#313244;} + .d2-2746395997 .color-AA2{color:#f38BA8;} + .d2-2746395997 .color-AA4{color:#45475A;} + .d2-2746395997 .color-AA5{color:#313244;} + .d2-2746395997 .color-AB4{color:#45475A;} + .d2-2746395997 .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}]]>xy diff --git a/e2etests-cli/testdata/TestCLI_E2E/internal_linked_pdf.exp.pdf b/e2etests-cli/testdata/TestCLI_E2E/internal_linked_pdf.exp.pdf index b1ef566beb..deb3744f2c 100644 Binary files a/e2etests-cli/testdata/TestCLI_E2E/internal_linked_pdf.exp.pdf and b/e2etests-cli/testdata/TestCLI_E2E/internal_linked_pdf.exp.pdf differ diff --git a/e2etests-cli/testdata/TestCLI_E2E/multiboard/life/index.exp.svg b/e2etests-cli/testdata/TestCLI_E2E/multiboard/life/index.exp.svg index 2700c62161..47497a946d 100644 --- a/e2etests-cli/testdata/TestCLI_E2E/multiboard/life/index.exp.svg +++ b/e2etests-cli/testdata/TestCLI_E2E/multiboard/life/index.exp.svg @@ -1,9 +1,9 @@ -xy + .d2-1250993138 .fill-N1{fill:#0A0F25;} + .d2-1250993138 .fill-N2{fill:#676C7E;} + .d2-1250993138 .fill-N3{fill:#9499AB;} + .d2-1250993138 .fill-N4{fill:#CFD2DD;} + .d2-1250993138 .fill-N5{fill:#DEE1EB;} + .d2-1250993138 .fill-N6{fill:#EEF1F8;} + .d2-1250993138 .fill-N7{fill:#FFFFFF;} + .d2-1250993138 .fill-B1{fill:#0D32B2;} + .d2-1250993138 .fill-B2{fill:#0D32B2;} + .d2-1250993138 .fill-B3{fill:#E3E9FD;} + .d2-1250993138 .fill-B4{fill:#E3E9FD;} + .d2-1250993138 .fill-B5{fill:#EDF0FD;} + .d2-1250993138 .fill-B6{fill:#F7F8FE;} + .d2-1250993138 .fill-AA2{fill:#4A6FF3;} + .d2-1250993138 .fill-AA4{fill:#EDF0FD;} + .d2-1250993138 .fill-AA5{fill:#F7F8FE;} + .d2-1250993138 .fill-AB4{fill:#EDF0FD;} + .d2-1250993138 .fill-AB5{fill:#F7F8FE;} + .d2-1250993138 .stroke-N1{stroke:#0A0F25;} + .d2-1250993138 .stroke-N2{stroke:#676C7E;} + .d2-1250993138 .stroke-N3{stroke:#9499AB;} + .d2-1250993138 .stroke-N4{stroke:#CFD2DD;} + .d2-1250993138 .stroke-N5{stroke:#DEE1EB;} + .d2-1250993138 .stroke-N6{stroke:#EEF1F8;} + .d2-1250993138 .stroke-N7{stroke:#FFFFFF;} + .d2-1250993138 .stroke-B1{stroke:#0D32B2;} + .d2-1250993138 .stroke-B2{stroke:#0D32B2;} + .d2-1250993138 .stroke-B3{stroke:#E3E9FD;} + .d2-1250993138 .stroke-B4{stroke:#E3E9FD;} + .d2-1250993138 .stroke-B5{stroke:#EDF0FD;} + .d2-1250993138 .stroke-B6{stroke:#F7F8FE;} + .d2-1250993138 .stroke-AA2{stroke:#4A6FF3;} + .d2-1250993138 .stroke-AA4{stroke:#EDF0FD;} + .d2-1250993138 .stroke-AA5{stroke:#F7F8FE;} + .d2-1250993138 .stroke-AB4{stroke:#EDF0FD;} + .d2-1250993138 .stroke-AB5{stroke:#F7F8FE;} + .d2-1250993138 .background-color-N1{background-color:#0A0F25;} + .d2-1250993138 .background-color-N2{background-color:#676C7E;} + .d2-1250993138 .background-color-N3{background-color:#9499AB;} + .d2-1250993138 .background-color-N4{background-color:#CFD2DD;} + .d2-1250993138 .background-color-N5{background-color:#DEE1EB;} + .d2-1250993138 .background-color-N6{background-color:#EEF1F8;} + .d2-1250993138 .background-color-N7{background-color:#FFFFFF;} + .d2-1250993138 .background-color-B1{background-color:#0D32B2;} + .d2-1250993138 .background-color-B2{background-color:#0D32B2;} + .d2-1250993138 .background-color-B3{background-color:#E3E9FD;} + .d2-1250993138 .background-color-B4{background-color:#E3E9FD;} + .d2-1250993138 .background-color-B5{background-color:#EDF0FD;} + .d2-1250993138 .background-color-B6{background-color:#F7F8FE;} + .d2-1250993138 .background-color-AA2{background-color:#4A6FF3;} + .d2-1250993138 .background-color-AA4{background-color:#EDF0FD;} + .d2-1250993138 .background-color-AA5{background-color:#F7F8FE;} + .d2-1250993138 .background-color-AB4{background-color:#EDF0FD;} + .d2-1250993138 .background-color-AB5{background-color:#F7F8FE;} + .d2-1250993138 .color-N1{color:#0A0F25;} + .d2-1250993138 .color-N2{color:#676C7E;} + .d2-1250993138 .color-N3{color:#9499AB;} + .d2-1250993138 .color-N4{color:#CFD2DD;} + .d2-1250993138 .color-N5{color:#DEE1EB;} + .d2-1250993138 .color-N6{color:#EEF1F8;} + .d2-1250993138 .color-N7{color:#FFFFFF;} + .d2-1250993138 .color-B1{color:#0D32B2;} + .d2-1250993138 .color-B2{color:#0D32B2;} + .d2-1250993138 .color-B3{color:#E3E9FD;} + .d2-1250993138 .color-B4{color:#E3E9FD;} + .d2-1250993138 .color-B5{color:#EDF0FD;} + .d2-1250993138 .color-B6{color:#F7F8FE;} + .d2-1250993138 .color-AA2{color:#4A6FF3;} + .d2-1250993138 .color-AA4{color:#EDF0FD;} + .d2-1250993138 .color-AA5{color:#F7F8FE;} + .d2-1250993138 .color-AB4{color:#EDF0FD;} + .d2-1250993138 .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/multiboard/life/scenarios/why.exp.svg b/e2etests-cli/testdata/TestCLI_E2E/multiboard/life/scenarios/why.exp.svg index 423e3cf03d..8215111714 100644 --- a/e2etests-cli/testdata/TestCLI_E2E/multiboard/life/scenarios/why.exp.svg +++ b/e2etests-cli/testdata/TestCLI_E2E/multiboard/life/scenarios/why.exp.svg @@ -1,9 +1,9 @@ -xy + .d2-2808374517 .fill-N1{fill:#0A0F25;} + .d2-2808374517 .fill-N2{fill:#676C7E;} + .d2-2808374517 .fill-N3{fill:#9499AB;} + .d2-2808374517 .fill-N4{fill:#CFD2DD;} + .d2-2808374517 .fill-N5{fill:#DEE1EB;} + .d2-2808374517 .fill-N6{fill:#EEF1F8;} + .d2-2808374517 .fill-N7{fill:#FFFFFF;} + .d2-2808374517 .fill-B1{fill:#0D32B2;} + .d2-2808374517 .fill-B2{fill:#0D32B2;} + .d2-2808374517 .fill-B3{fill:#E3E9FD;} + .d2-2808374517 .fill-B4{fill:#E3E9FD;} + .d2-2808374517 .fill-B5{fill:#EDF0FD;} + .d2-2808374517 .fill-B6{fill:#F7F8FE;} + .d2-2808374517 .fill-AA2{fill:#4A6FF3;} + .d2-2808374517 .fill-AA4{fill:#EDF0FD;} + .d2-2808374517 .fill-AA5{fill:#F7F8FE;} + .d2-2808374517 .fill-AB4{fill:#EDF0FD;} + .d2-2808374517 .fill-AB5{fill:#F7F8FE;} + .d2-2808374517 .stroke-N1{stroke:#0A0F25;} + .d2-2808374517 .stroke-N2{stroke:#676C7E;} + .d2-2808374517 .stroke-N3{stroke:#9499AB;} + .d2-2808374517 .stroke-N4{stroke:#CFD2DD;} + .d2-2808374517 .stroke-N5{stroke:#DEE1EB;} + .d2-2808374517 .stroke-N6{stroke:#EEF1F8;} + .d2-2808374517 .stroke-N7{stroke:#FFFFFF;} + .d2-2808374517 .stroke-B1{stroke:#0D32B2;} + .d2-2808374517 .stroke-B2{stroke:#0D32B2;} + .d2-2808374517 .stroke-B3{stroke:#E3E9FD;} + .d2-2808374517 .stroke-B4{stroke:#E3E9FD;} + .d2-2808374517 .stroke-B5{stroke:#EDF0FD;} + .d2-2808374517 .stroke-B6{stroke:#F7F8FE;} + .d2-2808374517 .stroke-AA2{stroke:#4A6FF3;} + .d2-2808374517 .stroke-AA4{stroke:#EDF0FD;} + .d2-2808374517 .stroke-AA5{stroke:#F7F8FE;} + .d2-2808374517 .stroke-AB4{stroke:#EDF0FD;} + .d2-2808374517 .stroke-AB5{stroke:#F7F8FE;} + .d2-2808374517 .background-color-N1{background-color:#0A0F25;} + .d2-2808374517 .background-color-N2{background-color:#676C7E;} + .d2-2808374517 .background-color-N3{background-color:#9499AB;} + .d2-2808374517 .background-color-N4{background-color:#CFD2DD;} + .d2-2808374517 .background-color-N5{background-color:#DEE1EB;} + .d2-2808374517 .background-color-N6{background-color:#EEF1F8;} + .d2-2808374517 .background-color-N7{background-color:#FFFFFF;} + .d2-2808374517 .background-color-B1{background-color:#0D32B2;} + .d2-2808374517 .background-color-B2{background-color:#0D32B2;} + .d2-2808374517 .background-color-B3{background-color:#E3E9FD;} + .d2-2808374517 .background-color-B4{background-color:#E3E9FD;} + .d2-2808374517 .background-color-B5{background-color:#EDF0FD;} + .d2-2808374517 .background-color-B6{background-color:#F7F8FE;} + .d2-2808374517 .background-color-AA2{background-color:#4A6FF3;} + .d2-2808374517 .background-color-AA4{background-color:#EDF0FD;} + .d2-2808374517 .background-color-AA5{background-color:#F7F8FE;} + .d2-2808374517 .background-color-AB4{background-color:#EDF0FD;} + .d2-2808374517 .background-color-AB5{background-color:#F7F8FE;} + .d2-2808374517 .color-N1{color:#0A0F25;} + .d2-2808374517 .color-N2{color:#676C7E;} + .d2-2808374517 .color-N3{color:#9499AB;} + .d2-2808374517 .color-N4{color:#CFD2DD;} + .d2-2808374517 .color-N5{color:#DEE1EB;} + .d2-2808374517 .color-N6{color:#EEF1F8;} + .d2-2808374517 .color-N7{color:#FFFFFF;} + .d2-2808374517 .color-B1{color:#0D32B2;} + .d2-2808374517 .color-B2{color:#0D32B2;} + .d2-2808374517 .color-B3{color:#E3E9FD;} + .d2-2808374517 .color-B4{color:#E3E9FD;} + .d2-2808374517 .color-B5{color:#EDF0FD;} + .d2-2808374517 .color-B6{color:#F7F8FE;} + .d2-2808374517 .color-AA2{color:#4A6FF3;} + .d2-2808374517 .color-AA4{color:#EDF0FD;} + .d2-2808374517 .color-AA5{color:#F7F8FE;} + .d2-2808374517 .color-AB4{color:#EDF0FD;} + .d2-2808374517 .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/multiboard/life_index_d2/index.exp.svg b/e2etests-cli/testdata/TestCLI_E2E/multiboard/life_index_d2/index.exp.svg index 2700c62161..47497a946d 100644 --- a/e2etests-cli/testdata/TestCLI_E2E/multiboard/life_index_d2/index.exp.svg +++ b/e2etests-cli/testdata/TestCLI_E2E/multiboard/life_index_d2/index.exp.svg @@ -1,9 +1,9 @@ -xy + .d2-1250993138 .fill-N1{fill:#0A0F25;} + .d2-1250993138 .fill-N2{fill:#676C7E;} + .d2-1250993138 .fill-N3{fill:#9499AB;} + .d2-1250993138 .fill-N4{fill:#CFD2DD;} + .d2-1250993138 .fill-N5{fill:#DEE1EB;} + .d2-1250993138 .fill-N6{fill:#EEF1F8;} + .d2-1250993138 .fill-N7{fill:#FFFFFF;} + .d2-1250993138 .fill-B1{fill:#0D32B2;} + .d2-1250993138 .fill-B2{fill:#0D32B2;} + .d2-1250993138 .fill-B3{fill:#E3E9FD;} + .d2-1250993138 .fill-B4{fill:#E3E9FD;} + .d2-1250993138 .fill-B5{fill:#EDF0FD;} + .d2-1250993138 .fill-B6{fill:#F7F8FE;} + .d2-1250993138 .fill-AA2{fill:#4A6FF3;} + .d2-1250993138 .fill-AA4{fill:#EDF0FD;} + .d2-1250993138 .fill-AA5{fill:#F7F8FE;} + .d2-1250993138 .fill-AB4{fill:#EDF0FD;} + .d2-1250993138 .fill-AB5{fill:#F7F8FE;} + .d2-1250993138 .stroke-N1{stroke:#0A0F25;} + .d2-1250993138 .stroke-N2{stroke:#676C7E;} + .d2-1250993138 .stroke-N3{stroke:#9499AB;} + .d2-1250993138 .stroke-N4{stroke:#CFD2DD;} + .d2-1250993138 .stroke-N5{stroke:#DEE1EB;} + .d2-1250993138 .stroke-N6{stroke:#EEF1F8;} + .d2-1250993138 .stroke-N7{stroke:#FFFFFF;} + .d2-1250993138 .stroke-B1{stroke:#0D32B2;} + .d2-1250993138 .stroke-B2{stroke:#0D32B2;} + .d2-1250993138 .stroke-B3{stroke:#E3E9FD;} + .d2-1250993138 .stroke-B4{stroke:#E3E9FD;} + .d2-1250993138 .stroke-B5{stroke:#EDF0FD;} + .d2-1250993138 .stroke-B6{stroke:#F7F8FE;} + .d2-1250993138 .stroke-AA2{stroke:#4A6FF3;} + .d2-1250993138 .stroke-AA4{stroke:#EDF0FD;} + .d2-1250993138 .stroke-AA5{stroke:#F7F8FE;} + .d2-1250993138 .stroke-AB4{stroke:#EDF0FD;} + .d2-1250993138 .stroke-AB5{stroke:#F7F8FE;} + .d2-1250993138 .background-color-N1{background-color:#0A0F25;} + .d2-1250993138 .background-color-N2{background-color:#676C7E;} + .d2-1250993138 .background-color-N3{background-color:#9499AB;} + .d2-1250993138 .background-color-N4{background-color:#CFD2DD;} + .d2-1250993138 .background-color-N5{background-color:#DEE1EB;} + .d2-1250993138 .background-color-N6{background-color:#EEF1F8;} + .d2-1250993138 .background-color-N7{background-color:#FFFFFF;} + .d2-1250993138 .background-color-B1{background-color:#0D32B2;} + .d2-1250993138 .background-color-B2{background-color:#0D32B2;} + .d2-1250993138 .background-color-B3{background-color:#E3E9FD;} + .d2-1250993138 .background-color-B4{background-color:#E3E9FD;} + .d2-1250993138 .background-color-B5{background-color:#EDF0FD;} + .d2-1250993138 .background-color-B6{background-color:#F7F8FE;} + .d2-1250993138 .background-color-AA2{background-color:#4A6FF3;} + .d2-1250993138 .background-color-AA4{background-color:#EDF0FD;} + .d2-1250993138 .background-color-AA5{background-color:#F7F8FE;} + .d2-1250993138 .background-color-AB4{background-color:#EDF0FD;} + .d2-1250993138 .background-color-AB5{background-color:#F7F8FE;} + .d2-1250993138 .color-N1{color:#0A0F25;} + .d2-1250993138 .color-N2{color:#676C7E;} + .d2-1250993138 .color-N3{color:#9499AB;} + .d2-1250993138 .color-N4{color:#CFD2DD;} + .d2-1250993138 .color-N5{color:#DEE1EB;} + .d2-1250993138 .color-N6{color:#EEF1F8;} + .d2-1250993138 .color-N7{color:#FFFFFF;} + .d2-1250993138 .color-B1{color:#0D32B2;} + .d2-1250993138 .color-B2{color:#0D32B2;} + .d2-1250993138 .color-B3{color:#E3E9FD;} + .d2-1250993138 .color-B4{color:#E3E9FD;} + .d2-1250993138 .color-B5{color:#EDF0FD;} + .d2-1250993138 .color-B6{color:#F7F8FE;} + .d2-1250993138 .color-AA2{color:#4A6FF3;} + .d2-1250993138 .color-AA4{color:#EDF0FD;} + .d2-1250993138 .color-AA5{color:#F7F8FE;} + .d2-1250993138 .color-AB4{color:#EDF0FD;} + .d2-1250993138 .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/multiboard/life_index_d2/scenarios/why.exp.svg b/e2etests-cli/testdata/TestCLI_E2E/multiboard/life_index_d2/scenarios/why.exp.svg index 423e3cf03d..8215111714 100644 --- a/e2etests-cli/testdata/TestCLI_E2E/multiboard/life_index_d2/scenarios/why.exp.svg +++ b/e2etests-cli/testdata/TestCLI_E2E/multiboard/life_index_d2/scenarios/why.exp.svg @@ -1,9 +1,9 @@ -xy + .d2-2808374517 .fill-N1{fill:#0A0F25;} + .d2-2808374517 .fill-N2{fill:#676C7E;} + .d2-2808374517 .fill-N3{fill:#9499AB;} + .d2-2808374517 .fill-N4{fill:#CFD2DD;} + .d2-2808374517 .fill-N5{fill:#DEE1EB;} + .d2-2808374517 .fill-N6{fill:#EEF1F8;} + .d2-2808374517 .fill-N7{fill:#FFFFFF;} + .d2-2808374517 .fill-B1{fill:#0D32B2;} + .d2-2808374517 .fill-B2{fill:#0D32B2;} + .d2-2808374517 .fill-B3{fill:#E3E9FD;} + .d2-2808374517 .fill-B4{fill:#E3E9FD;} + .d2-2808374517 .fill-B5{fill:#EDF0FD;} + .d2-2808374517 .fill-B6{fill:#F7F8FE;} + .d2-2808374517 .fill-AA2{fill:#4A6FF3;} + .d2-2808374517 .fill-AA4{fill:#EDF0FD;} + .d2-2808374517 .fill-AA5{fill:#F7F8FE;} + .d2-2808374517 .fill-AB4{fill:#EDF0FD;} + .d2-2808374517 .fill-AB5{fill:#F7F8FE;} + .d2-2808374517 .stroke-N1{stroke:#0A0F25;} + .d2-2808374517 .stroke-N2{stroke:#676C7E;} + .d2-2808374517 .stroke-N3{stroke:#9499AB;} + .d2-2808374517 .stroke-N4{stroke:#CFD2DD;} + .d2-2808374517 .stroke-N5{stroke:#DEE1EB;} + .d2-2808374517 .stroke-N6{stroke:#EEF1F8;} + .d2-2808374517 .stroke-N7{stroke:#FFFFFF;} + .d2-2808374517 .stroke-B1{stroke:#0D32B2;} + .d2-2808374517 .stroke-B2{stroke:#0D32B2;} + .d2-2808374517 .stroke-B3{stroke:#E3E9FD;} + .d2-2808374517 .stroke-B4{stroke:#E3E9FD;} + .d2-2808374517 .stroke-B5{stroke:#EDF0FD;} + .d2-2808374517 .stroke-B6{stroke:#F7F8FE;} + .d2-2808374517 .stroke-AA2{stroke:#4A6FF3;} + .d2-2808374517 .stroke-AA4{stroke:#EDF0FD;} + .d2-2808374517 .stroke-AA5{stroke:#F7F8FE;} + .d2-2808374517 .stroke-AB4{stroke:#EDF0FD;} + .d2-2808374517 .stroke-AB5{stroke:#F7F8FE;} + .d2-2808374517 .background-color-N1{background-color:#0A0F25;} + .d2-2808374517 .background-color-N2{background-color:#676C7E;} + .d2-2808374517 .background-color-N3{background-color:#9499AB;} + .d2-2808374517 .background-color-N4{background-color:#CFD2DD;} + .d2-2808374517 .background-color-N5{background-color:#DEE1EB;} + .d2-2808374517 .background-color-N6{background-color:#EEF1F8;} + .d2-2808374517 .background-color-N7{background-color:#FFFFFF;} + .d2-2808374517 .background-color-B1{background-color:#0D32B2;} + .d2-2808374517 .background-color-B2{background-color:#0D32B2;} + .d2-2808374517 .background-color-B3{background-color:#E3E9FD;} + .d2-2808374517 .background-color-B4{background-color:#E3E9FD;} + .d2-2808374517 .background-color-B5{background-color:#EDF0FD;} + .d2-2808374517 .background-color-B6{background-color:#F7F8FE;} + .d2-2808374517 .background-color-AA2{background-color:#4A6FF3;} + .d2-2808374517 .background-color-AA4{background-color:#EDF0FD;} + .d2-2808374517 .background-color-AA5{background-color:#F7F8FE;} + .d2-2808374517 .background-color-AB4{background-color:#EDF0FD;} + .d2-2808374517 .background-color-AB5{background-color:#F7F8FE;} + .d2-2808374517 .color-N1{color:#0A0F25;} + .d2-2808374517 .color-N2{color:#676C7E;} + .d2-2808374517 .color-N3{color:#9499AB;} + .d2-2808374517 .color-N4{color:#CFD2DD;} + .d2-2808374517 .color-N5{color:#DEE1EB;} + .d2-2808374517 .color-N6{color:#EEF1F8;} + .d2-2808374517 .color-N7{color:#FFFFFF;} + .d2-2808374517 .color-B1{color:#0D32B2;} + .d2-2808374517 .color-B2{color:#0D32B2;} + .d2-2808374517 .color-B3{color:#E3E9FD;} + .d2-2808374517 .color-B4{color:#E3E9FD;} + .d2-2808374517 .color-B5{color:#EDF0FD;} + .d2-2808374517 .color-B6{color:#F7F8FE;} + .d2-2808374517 .color-AA2{color:#4A6FF3;} + .d2-2808374517 .color-AA4{color:#EDF0FD;} + .d2-2808374517 .color-AA5{color:#F7F8FE;} + .d2-2808374517 .color-AB4{color:#EDF0FD;} + .d2-2808374517 .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/no-nav-pdf.exp.pdf b/e2etests-cli/testdata/TestCLI_E2E/no-nav-pdf.exp.pdf index 5a6a7c3644..75f717b6ba 100644 Binary files a/e2etests-cli/testdata/TestCLI_E2E/no-nav-pdf.exp.pdf and b/e2etests-cli/testdata/TestCLI_E2E/no-nav-pdf.exp.pdf differ diff --git a/e2etests-cli/testdata/TestCLI_E2E/no-nav-pptx.exp.pptx b/e2etests-cli/testdata/TestCLI_E2E/no-nav-pptx.exp.pptx index 4aaa3aa5b4..0590d887fa 100644 Binary files a/e2etests-cli/testdata/TestCLI_E2E/no-nav-pptx.exp.pptx and b/e2etests-cli/testdata/TestCLI_E2E/no-nav-pptx.exp.pptx differ diff --git a/e2etests-cli/testdata/TestCLI_E2E/pptx-theme-overrides.exp.pptx b/e2etests-cli/testdata/TestCLI_E2E/pptx-theme-overrides.exp.pptx index d8d7d5d9b2..7659577895 100644 Binary files a/e2etests-cli/testdata/TestCLI_E2E/pptx-theme-overrides.exp.pptx and b/e2etests-cli/testdata/TestCLI_E2E/pptx-theme-overrides.exp.pptx differ diff --git a/e2etests-cli/testdata/TestCLI_E2E/renamed-board.exp.pdf b/e2etests-cli/testdata/TestCLI_E2E/renamed-board.exp.pdf index c520c51ab5..c4a82ab99a 100644 Binary files a/e2etests-cli/testdata/TestCLI_E2E/renamed-board.exp.pdf and b/e2etests-cli/testdata/TestCLI_E2E/renamed-board.exp.pdf differ diff --git a/e2etests-cli/testdata/TestCLI_E2E/sequence-layer/index.exp.svg b/e2etests-cli/testdata/TestCLI_E2E/sequence-layer/index.exp.svg index 5822fff641..2b7c32547c 100644 --- a/e2etests-cli/testdata/TestCLI_E2E/sequence-layer/index.exp.svg +++ b/e2etests-cli/testdata/TestCLI_E2E/sequence-layer/index.exp.svg @@ -1,9 +1,9 @@ -k + .d2-875883775 .fill-N1{fill:#0A0F25;} + .d2-875883775 .fill-N2{fill:#676C7E;} + .d2-875883775 .fill-N3{fill:#9499AB;} + .d2-875883775 .fill-N4{fill:#CFD2DD;} + .d2-875883775 .fill-N5{fill:#DEE1EB;} + .d2-875883775 .fill-N6{fill:#EEF1F8;} + .d2-875883775 .fill-N7{fill:#FFFFFF;} + .d2-875883775 .fill-B1{fill:#0D32B2;} + .d2-875883775 .fill-B2{fill:#0D32B2;} + .d2-875883775 .fill-B3{fill:#E3E9FD;} + .d2-875883775 .fill-B4{fill:#E3E9FD;} + .d2-875883775 .fill-B5{fill:#EDF0FD;} + .d2-875883775 .fill-B6{fill:#F7F8FE;} + .d2-875883775 .fill-AA2{fill:#4A6FF3;} + .d2-875883775 .fill-AA4{fill:#EDF0FD;} + .d2-875883775 .fill-AA5{fill:#F7F8FE;} + .d2-875883775 .fill-AB4{fill:#EDF0FD;} + .d2-875883775 .fill-AB5{fill:#F7F8FE;} + .d2-875883775 .stroke-N1{stroke:#0A0F25;} + .d2-875883775 .stroke-N2{stroke:#676C7E;} + .d2-875883775 .stroke-N3{stroke:#9499AB;} + .d2-875883775 .stroke-N4{stroke:#CFD2DD;} + .d2-875883775 .stroke-N5{stroke:#DEE1EB;} + .d2-875883775 .stroke-N6{stroke:#EEF1F8;} + .d2-875883775 .stroke-N7{stroke:#FFFFFF;} + .d2-875883775 .stroke-B1{stroke:#0D32B2;} + .d2-875883775 .stroke-B2{stroke:#0D32B2;} + .d2-875883775 .stroke-B3{stroke:#E3E9FD;} + .d2-875883775 .stroke-B4{stroke:#E3E9FD;} + .d2-875883775 .stroke-B5{stroke:#EDF0FD;} + .d2-875883775 .stroke-B6{stroke:#F7F8FE;} + .d2-875883775 .stroke-AA2{stroke:#4A6FF3;} + .d2-875883775 .stroke-AA4{stroke:#EDF0FD;} + .d2-875883775 .stroke-AA5{stroke:#F7F8FE;} + .d2-875883775 .stroke-AB4{stroke:#EDF0FD;} + .d2-875883775 .stroke-AB5{stroke:#F7F8FE;} + .d2-875883775 .background-color-N1{background-color:#0A0F25;} + .d2-875883775 .background-color-N2{background-color:#676C7E;} + .d2-875883775 .background-color-N3{background-color:#9499AB;} + .d2-875883775 .background-color-N4{background-color:#CFD2DD;} + .d2-875883775 .background-color-N5{background-color:#DEE1EB;} + .d2-875883775 .background-color-N6{background-color:#EEF1F8;} + .d2-875883775 .background-color-N7{background-color:#FFFFFF;} + .d2-875883775 .background-color-B1{background-color:#0D32B2;} + .d2-875883775 .background-color-B2{background-color:#0D32B2;} + .d2-875883775 .background-color-B3{background-color:#E3E9FD;} + .d2-875883775 .background-color-B4{background-color:#E3E9FD;} + .d2-875883775 .background-color-B5{background-color:#EDF0FD;} + .d2-875883775 .background-color-B6{background-color:#F7F8FE;} + .d2-875883775 .background-color-AA2{background-color:#4A6FF3;} + .d2-875883775 .background-color-AA4{background-color:#EDF0FD;} + .d2-875883775 .background-color-AA5{background-color:#F7F8FE;} + .d2-875883775 .background-color-AB4{background-color:#EDF0FD;} + .d2-875883775 .background-color-AB5{background-color:#F7F8FE;} + .d2-875883775 .color-N1{color:#0A0F25;} + .d2-875883775 .color-N2{color:#676C7E;} + .d2-875883775 .color-N3{color:#9499AB;} + .d2-875883775 .color-N4{color:#CFD2DD;} + .d2-875883775 .color-N5{color:#DEE1EB;} + .d2-875883775 .color-N6{color:#EEF1F8;} + .d2-875883775 .color-N7{color:#FFFFFF;} + .d2-875883775 .color-B1{color:#0D32B2;} + .d2-875883775 .color-B2{color:#0D32B2;} + .d2-875883775 .color-B3{color:#E3E9FD;} + .d2-875883775 .color-B4{color:#E3E9FD;} + .d2-875883775 .color-B5{color:#EDF0FD;} + .d2-875883775 .color-B6{color:#F7F8FE;} + .d2-875883775 .color-AA2{color:#4A6FF3;} + .d2-875883775 .color-AA4{color:#EDF0FD;} + .d2-875883775 .color-AA5{color:#F7F8FE;} + .d2-875883775 .color-AB4{color:#EDF0FD;} + .d2-875883775 .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}]]>k diff --git a/e2etests-cli/testdata/TestCLI_E2E/sequence-layer/seq.exp.svg b/e2etests-cli/testdata/TestCLI_E2E/sequence-layer/seq.exp.svg index 70a6e7ba32..32002bd770 100644 --- a/e2etests-cli/testdata/TestCLI_E2E/sequence-layer/seq.exp.svg +++ b/e2etests-cli/testdata/TestCLI_E2E/sequence-layer/seq.exp.svg @@ -1,16 +1,16 @@ -megithub.com/terrastruct/d2if i'm rightif i'm wrong fixnah, intended issue about a bugsome note about the bug + .d2-3070513530 .fill-N1{fill:#0A0F25;} + .d2-3070513530 .fill-N2{fill:#676C7E;} + .d2-3070513530 .fill-N3{fill:#9499AB;} + .d2-3070513530 .fill-N4{fill:#CFD2DD;} + .d2-3070513530 .fill-N5{fill:#DEE1EB;} + .d2-3070513530 .fill-N6{fill:#EEF1F8;} + .d2-3070513530 .fill-N7{fill:#FFFFFF;} + .d2-3070513530 .fill-B1{fill:#0D32B2;} + .d2-3070513530 .fill-B2{fill:#0D32B2;} + .d2-3070513530 .fill-B3{fill:#E3E9FD;} + .d2-3070513530 .fill-B4{fill:#E3E9FD;} + .d2-3070513530 .fill-B5{fill:#EDF0FD;} + .d2-3070513530 .fill-B6{fill:#F7F8FE;} + .d2-3070513530 .fill-AA2{fill:#4A6FF3;} + .d2-3070513530 .fill-AA4{fill:#EDF0FD;} + .d2-3070513530 .fill-AA5{fill:#F7F8FE;} + .d2-3070513530 .fill-AB4{fill:#EDF0FD;} + .d2-3070513530 .fill-AB5{fill:#F7F8FE;} + .d2-3070513530 .stroke-N1{stroke:#0A0F25;} + .d2-3070513530 .stroke-N2{stroke:#676C7E;} + .d2-3070513530 .stroke-N3{stroke:#9499AB;} + .d2-3070513530 .stroke-N4{stroke:#CFD2DD;} + .d2-3070513530 .stroke-N5{stroke:#DEE1EB;} + .d2-3070513530 .stroke-N6{stroke:#EEF1F8;} + .d2-3070513530 .stroke-N7{stroke:#FFFFFF;} + .d2-3070513530 .stroke-B1{stroke:#0D32B2;} + .d2-3070513530 .stroke-B2{stroke:#0D32B2;} + .d2-3070513530 .stroke-B3{stroke:#E3E9FD;} + .d2-3070513530 .stroke-B4{stroke:#E3E9FD;} + .d2-3070513530 .stroke-B5{stroke:#EDF0FD;} + .d2-3070513530 .stroke-B6{stroke:#F7F8FE;} + .d2-3070513530 .stroke-AA2{stroke:#4A6FF3;} + .d2-3070513530 .stroke-AA4{stroke:#EDF0FD;} + .d2-3070513530 .stroke-AA5{stroke:#F7F8FE;} + .d2-3070513530 .stroke-AB4{stroke:#EDF0FD;} + .d2-3070513530 .stroke-AB5{stroke:#F7F8FE;} + .d2-3070513530 .background-color-N1{background-color:#0A0F25;} + .d2-3070513530 .background-color-N2{background-color:#676C7E;} + .d2-3070513530 .background-color-N3{background-color:#9499AB;} + .d2-3070513530 .background-color-N4{background-color:#CFD2DD;} + .d2-3070513530 .background-color-N5{background-color:#DEE1EB;} + .d2-3070513530 .background-color-N6{background-color:#EEF1F8;} + .d2-3070513530 .background-color-N7{background-color:#FFFFFF;} + .d2-3070513530 .background-color-B1{background-color:#0D32B2;} + .d2-3070513530 .background-color-B2{background-color:#0D32B2;} + .d2-3070513530 .background-color-B3{background-color:#E3E9FD;} + .d2-3070513530 .background-color-B4{background-color:#E3E9FD;} + .d2-3070513530 .background-color-B5{background-color:#EDF0FD;} + .d2-3070513530 .background-color-B6{background-color:#F7F8FE;} + .d2-3070513530 .background-color-AA2{background-color:#4A6FF3;} + .d2-3070513530 .background-color-AA4{background-color:#EDF0FD;} + .d2-3070513530 .background-color-AA5{background-color:#F7F8FE;} + .d2-3070513530 .background-color-AB4{background-color:#EDF0FD;} + .d2-3070513530 .background-color-AB5{background-color:#F7F8FE;} + .d2-3070513530 .color-N1{color:#0A0F25;} + .d2-3070513530 .color-N2{color:#676C7E;} + .d2-3070513530 .color-N3{color:#9499AB;} + .d2-3070513530 .color-N4{color:#CFD2DD;} + .d2-3070513530 .color-N5{color:#DEE1EB;} + .d2-3070513530 .color-N6{color:#EEF1F8;} + .d2-3070513530 .color-N7{color:#FFFFFF;} + .d2-3070513530 .color-B1{color:#0D32B2;} + .d2-3070513530 .color-B2{color:#0D32B2;} + .d2-3070513530 .color-B3{color:#E3E9FD;} + .d2-3070513530 .color-B4{color:#E3E9FD;} + .d2-3070513530 .color-B5{color:#EDF0FD;} + .d2-3070513530 .color-B6{color:#F7F8FE;} + .d2-3070513530 .color-AA2{color:#4A6FF3;} + .d2-3070513530 .color-AA4{color:#EDF0FD;} + .d2-3070513530 .color-AA5{color:#F7F8FE;} + .d2-3070513530 .color-AB4{color:#EDF0FD;} + .d2-3070513530 .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}]]>megithub.com/terrastruct/d2if i'm rightif i'm wrong fixnah, intended issue about a bugsome note about the bug diff --git a/e2etests-cli/testdata/TestCLI_E2E/sequence-spread-layer/index.exp.svg b/e2etests-cli/testdata/TestCLI_E2E/sequence-spread-layer/index.exp.svg index 5822fff641..2b7c32547c 100644 --- a/e2etests-cli/testdata/TestCLI_E2E/sequence-spread-layer/index.exp.svg +++ b/e2etests-cli/testdata/TestCLI_E2E/sequence-spread-layer/index.exp.svg @@ -1,9 +1,9 @@ -k + .d2-875883775 .fill-N1{fill:#0A0F25;} + .d2-875883775 .fill-N2{fill:#676C7E;} + .d2-875883775 .fill-N3{fill:#9499AB;} + .d2-875883775 .fill-N4{fill:#CFD2DD;} + .d2-875883775 .fill-N5{fill:#DEE1EB;} + .d2-875883775 .fill-N6{fill:#EEF1F8;} + .d2-875883775 .fill-N7{fill:#FFFFFF;} + .d2-875883775 .fill-B1{fill:#0D32B2;} + .d2-875883775 .fill-B2{fill:#0D32B2;} + .d2-875883775 .fill-B3{fill:#E3E9FD;} + .d2-875883775 .fill-B4{fill:#E3E9FD;} + .d2-875883775 .fill-B5{fill:#EDF0FD;} + .d2-875883775 .fill-B6{fill:#F7F8FE;} + .d2-875883775 .fill-AA2{fill:#4A6FF3;} + .d2-875883775 .fill-AA4{fill:#EDF0FD;} + .d2-875883775 .fill-AA5{fill:#F7F8FE;} + .d2-875883775 .fill-AB4{fill:#EDF0FD;} + .d2-875883775 .fill-AB5{fill:#F7F8FE;} + .d2-875883775 .stroke-N1{stroke:#0A0F25;} + .d2-875883775 .stroke-N2{stroke:#676C7E;} + .d2-875883775 .stroke-N3{stroke:#9499AB;} + .d2-875883775 .stroke-N4{stroke:#CFD2DD;} + .d2-875883775 .stroke-N5{stroke:#DEE1EB;} + .d2-875883775 .stroke-N6{stroke:#EEF1F8;} + .d2-875883775 .stroke-N7{stroke:#FFFFFF;} + .d2-875883775 .stroke-B1{stroke:#0D32B2;} + .d2-875883775 .stroke-B2{stroke:#0D32B2;} + .d2-875883775 .stroke-B3{stroke:#E3E9FD;} + .d2-875883775 .stroke-B4{stroke:#E3E9FD;} + .d2-875883775 .stroke-B5{stroke:#EDF0FD;} + .d2-875883775 .stroke-B6{stroke:#F7F8FE;} + .d2-875883775 .stroke-AA2{stroke:#4A6FF3;} + .d2-875883775 .stroke-AA4{stroke:#EDF0FD;} + .d2-875883775 .stroke-AA5{stroke:#F7F8FE;} + .d2-875883775 .stroke-AB4{stroke:#EDF0FD;} + .d2-875883775 .stroke-AB5{stroke:#F7F8FE;} + .d2-875883775 .background-color-N1{background-color:#0A0F25;} + .d2-875883775 .background-color-N2{background-color:#676C7E;} + .d2-875883775 .background-color-N3{background-color:#9499AB;} + .d2-875883775 .background-color-N4{background-color:#CFD2DD;} + .d2-875883775 .background-color-N5{background-color:#DEE1EB;} + .d2-875883775 .background-color-N6{background-color:#EEF1F8;} + .d2-875883775 .background-color-N7{background-color:#FFFFFF;} + .d2-875883775 .background-color-B1{background-color:#0D32B2;} + .d2-875883775 .background-color-B2{background-color:#0D32B2;} + .d2-875883775 .background-color-B3{background-color:#E3E9FD;} + .d2-875883775 .background-color-B4{background-color:#E3E9FD;} + .d2-875883775 .background-color-B5{background-color:#EDF0FD;} + .d2-875883775 .background-color-B6{background-color:#F7F8FE;} + .d2-875883775 .background-color-AA2{background-color:#4A6FF3;} + .d2-875883775 .background-color-AA4{background-color:#EDF0FD;} + .d2-875883775 .background-color-AA5{background-color:#F7F8FE;} + .d2-875883775 .background-color-AB4{background-color:#EDF0FD;} + .d2-875883775 .background-color-AB5{background-color:#F7F8FE;} + .d2-875883775 .color-N1{color:#0A0F25;} + .d2-875883775 .color-N2{color:#676C7E;} + .d2-875883775 .color-N3{color:#9499AB;} + .d2-875883775 .color-N4{color:#CFD2DD;} + .d2-875883775 .color-N5{color:#DEE1EB;} + .d2-875883775 .color-N6{color:#EEF1F8;} + .d2-875883775 .color-N7{color:#FFFFFF;} + .d2-875883775 .color-B1{color:#0D32B2;} + .d2-875883775 .color-B2{color:#0D32B2;} + .d2-875883775 .color-B3{color:#E3E9FD;} + .d2-875883775 .color-B4{color:#E3E9FD;} + .d2-875883775 .color-B5{color:#EDF0FD;} + .d2-875883775 .color-B6{color:#F7F8FE;} + .d2-875883775 .color-AA2{color:#4A6FF3;} + .d2-875883775 .color-AA4{color:#EDF0FD;} + .d2-875883775 .color-AA5{color:#F7F8FE;} + .d2-875883775 .color-AB4{color:#EDF0FD;} + .d2-875883775 .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}]]>k diff --git a/e2etests-cli/testdata/TestCLI_E2E/sequence-spread-layer/seq.exp.svg b/e2etests-cli/testdata/TestCLI_E2E/sequence-spread-layer/seq.exp.svg index 70a6e7ba32..32002bd770 100644 --- a/e2etests-cli/testdata/TestCLI_E2E/sequence-spread-layer/seq.exp.svg +++ b/e2etests-cli/testdata/TestCLI_E2E/sequence-spread-layer/seq.exp.svg @@ -1,16 +1,16 @@ -megithub.com/terrastruct/d2if i'm rightif i'm wrong fixnah, intended issue about a bugsome note about the bug + .d2-3070513530 .fill-N1{fill:#0A0F25;} + .d2-3070513530 .fill-N2{fill:#676C7E;} + .d2-3070513530 .fill-N3{fill:#9499AB;} + .d2-3070513530 .fill-N4{fill:#CFD2DD;} + .d2-3070513530 .fill-N5{fill:#DEE1EB;} + .d2-3070513530 .fill-N6{fill:#EEF1F8;} + .d2-3070513530 .fill-N7{fill:#FFFFFF;} + .d2-3070513530 .fill-B1{fill:#0D32B2;} + .d2-3070513530 .fill-B2{fill:#0D32B2;} + .d2-3070513530 .fill-B3{fill:#E3E9FD;} + .d2-3070513530 .fill-B4{fill:#E3E9FD;} + .d2-3070513530 .fill-B5{fill:#EDF0FD;} + .d2-3070513530 .fill-B6{fill:#F7F8FE;} + .d2-3070513530 .fill-AA2{fill:#4A6FF3;} + .d2-3070513530 .fill-AA4{fill:#EDF0FD;} + .d2-3070513530 .fill-AA5{fill:#F7F8FE;} + .d2-3070513530 .fill-AB4{fill:#EDF0FD;} + .d2-3070513530 .fill-AB5{fill:#F7F8FE;} + .d2-3070513530 .stroke-N1{stroke:#0A0F25;} + .d2-3070513530 .stroke-N2{stroke:#676C7E;} + .d2-3070513530 .stroke-N3{stroke:#9499AB;} + .d2-3070513530 .stroke-N4{stroke:#CFD2DD;} + .d2-3070513530 .stroke-N5{stroke:#DEE1EB;} + .d2-3070513530 .stroke-N6{stroke:#EEF1F8;} + .d2-3070513530 .stroke-N7{stroke:#FFFFFF;} + .d2-3070513530 .stroke-B1{stroke:#0D32B2;} + .d2-3070513530 .stroke-B2{stroke:#0D32B2;} + .d2-3070513530 .stroke-B3{stroke:#E3E9FD;} + .d2-3070513530 .stroke-B4{stroke:#E3E9FD;} + .d2-3070513530 .stroke-B5{stroke:#EDF0FD;} + .d2-3070513530 .stroke-B6{stroke:#F7F8FE;} + .d2-3070513530 .stroke-AA2{stroke:#4A6FF3;} + .d2-3070513530 .stroke-AA4{stroke:#EDF0FD;} + .d2-3070513530 .stroke-AA5{stroke:#F7F8FE;} + .d2-3070513530 .stroke-AB4{stroke:#EDF0FD;} + .d2-3070513530 .stroke-AB5{stroke:#F7F8FE;} + .d2-3070513530 .background-color-N1{background-color:#0A0F25;} + .d2-3070513530 .background-color-N2{background-color:#676C7E;} + .d2-3070513530 .background-color-N3{background-color:#9499AB;} + .d2-3070513530 .background-color-N4{background-color:#CFD2DD;} + .d2-3070513530 .background-color-N5{background-color:#DEE1EB;} + .d2-3070513530 .background-color-N6{background-color:#EEF1F8;} + .d2-3070513530 .background-color-N7{background-color:#FFFFFF;} + .d2-3070513530 .background-color-B1{background-color:#0D32B2;} + .d2-3070513530 .background-color-B2{background-color:#0D32B2;} + .d2-3070513530 .background-color-B3{background-color:#E3E9FD;} + .d2-3070513530 .background-color-B4{background-color:#E3E9FD;} + .d2-3070513530 .background-color-B5{background-color:#EDF0FD;} + .d2-3070513530 .background-color-B6{background-color:#F7F8FE;} + .d2-3070513530 .background-color-AA2{background-color:#4A6FF3;} + .d2-3070513530 .background-color-AA4{background-color:#EDF0FD;} + .d2-3070513530 .background-color-AA5{background-color:#F7F8FE;} + .d2-3070513530 .background-color-AB4{background-color:#EDF0FD;} + .d2-3070513530 .background-color-AB5{background-color:#F7F8FE;} + .d2-3070513530 .color-N1{color:#0A0F25;} + .d2-3070513530 .color-N2{color:#676C7E;} + .d2-3070513530 .color-N3{color:#9499AB;} + .d2-3070513530 .color-N4{color:#CFD2DD;} + .d2-3070513530 .color-N5{color:#DEE1EB;} + .d2-3070513530 .color-N6{color:#EEF1F8;} + .d2-3070513530 .color-N7{color:#FFFFFF;} + .d2-3070513530 .color-B1{color:#0D32B2;} + .d2-3070513530 .color-B2{color:#0D32B2;} + .d2-3070513530 .color-B3{color:#E3E9FD;} + .d2-3070513530 .color-B4{color:#E3E9FD;} + .d2-3070513530 .color-B5{color:#EDF0FD;} + .d2-3070513530 .color-B6{color:#F7F8FE;} + .d2-3070513530 .color-AA2{color:#4A6FF3;} + .d2-3070513530 .color-AA4{color:#EDF0FD;} + .d2-3070513530 .color-AA5{color:#F7F8FE;} + .d2-3070513530 .color-AB4{color:#EDF0FD;} + .d2-3070513530 .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}]]>megithub.com/terrastruct/d2if i'm rightif i'm wrong fixnah, intended issue about a bugsome note about the bug diff --git a/e2etests-cli/testdata/TestCLI_E2E/stdin.exp.svg b/e2etests-cli/testdata/TestCLI_E2E/stdin.exp.svg index 1fbc98eeaa..83392e040d 100644 --- a/e2etests-cli/testdata/TestCLI_E2E/stdin.exp.svg +++ b/e2etests-cli/testdata/TestCLI_E2E/stdin.exp.svg @@ -1,9 +1,9 @@ -xy + .d2-4198988860 .fill-N1{fill:#0A0F25;} + .d2-4198988860 .fill-N2{fill:#676C7E;} + .d2-4198988860 .fill-N3{fill:#9499AB;} + .d2-4198988860 .fill-N4{fill:#CFD2DD;} + .d2-4198988860 .fill-N5{fill:#DEE1EB;} + .d2-4198988860 .fill-N6{fill:#EEF1F8;} + .d2-4198988860 .fill-N7{fill:#FFFFFF;} + .d2-4198988860 .fill-B1{fill:#0D32B2;} + .d2-4198988860 .fill-B2{fill:#0D32B2;} + .d2-4198988860 .fill-B3{fill:#E3E9FD;} + .d2-4198988860 .fill-B4{fill:#E3E9FD;} + .d2-4198988860 .fill-B5{fill:#EDF0FD;} + .d2-4198988860 .fill-B6{fill:#F7F8FE;} + .d2-4198988860 .fill-AA2{fill:#4A6FF3;} + .d2-4198988860 .fill-AA4{fill:#EDF0FD;} + .d2-4198988860 .fill-AA5{fill:#F7F8FE;} + .d2-4198988860 .fill-AB4{fill:#EDF0FD;} + .d2-4198988860 .fill-AB5{fill:#F7F8FE;} + .d2-4198988860 .stroke-N1{stroke:#0A0F25;} + .d2-4198988860 .stroke-N2{stroke:#676C7E;} + .d2-4198988860 .stroke-N3{stroke:#9499AB;} + .d2-4198988860 .stroke-N4{stroke:#CFD2DD;} + .d2-4198988860 .stroke-N5{stroke:#DEE1EB;} + .d2-4198988860 .stroke-N6{stroke:#EEF1F8;} + .d2-4198988860 .stroke-N7{stroke:#FFFFFF;} + .d2-4198988860 .stroke-B1{stroke:#0D32B2;} + .d2-4198988860 .stroke-B2{stroke:#0D32B2;} + .d2-4198988860 .stroke-B3{stroke:#E3E9FD;} + .d2-4198988860 .stroke-B4{stroke:#E3E9FD;} + .d2-4198988860 .stroke-B5{stroke:#EDF0FD;} + .d2-4198988860 .stroke-B6{stroke:#F7F8FE;} + .d2-4198988860 .stroke-AA2{stroke:#4A6FF3;} + .d2-4198988860 .stroke-AA4{stroke:#EDF0FD;} + .d2-4198988860 .stroke-AA5{stroke:#F7F8FE;} + .d2-4198988860 .stroke-AB4{stroke:#EDF0FD;} + .d2-4198988860 .stroke-AB5{stroke:#F7F8FE;} + .d2-4198988860 .background-color-N1{background-color:#0A0F25;} + .d2-4198988860 .background-color-N2{background-color:#676C7E;} + .d2-4198988860 .background-color-N3{background-color:#9499AB;} + .d2-4198988860 .background-color-N4{background-color:#CFD2DD;} + .d2-4198988860 .background-color-N5{background-color:#DEE1EB;} + .d2-4198988860 .background-color-N6{background-color:#EEF1F8;} + .d2-4198988860 .background-color-N7{background-color:#FFFFFF;} + .d2-4198988860 .background-color-B1{background-color:#0D32B2;} + .d2-4198988860 .background-color-B2{background-color:#0D32B2;} + .d2-4198988860 .background-color-B3{background-color:#E3E9FD;} + .d2-4198988860 .background-color-B4{background-color:#E3E9FD;} + .d2-4198988860 .background-color-B5{background-color:#EDF0FD;} + .d2-4198988860 .background-color-B6{background-color:#F7F8FE;} + .d2-4198988860 .background-color-AA2{background-color:#4A6FF3;} + .d2-4198988860 .background-color-AA4{background-color:#EDF0FD;} + .d2-4198988860 .background-color-AA5{background-color:#F7F8FE;} + .d2-4198988860 .background-color-AB4{background-color:#EDF0FD;} + .d2-4198988860 .background-color-AB5{background-color:#F7F8FE;} + .d2-4198988860 .color-N1{color:#0A0F25;} + .d2-4198988860 .color-N2{color:#676C7E;} + .d2-4198988860 .color-N3{color:#9499AB;} + .d2-4198988860 .color-N4{color:#CFD2DD;} + .d2-4198988860 .color-N5{color:#DEE1EB;} + .d2-4198988860 .color-N6{color:#EEF1F8;} + .d2-4198988860 .color-N7{color:#FFFFFF;} + .d2-4198988860 .color-B1{color:#0D32B2;} + .d2-4198988860 .color-B2{color:#0D32B2;} + .d2-4198988860 .color-B3{color:#E3E9FD;} + .d2-4198988860 .color-B4{color:#E3E9FD;} + .d2-4198988860 .color-B5{color:#EDF0FD;} + .d2-4198988860 .color-B6{color:#F7F8FE;} + .d2-4198988860 .color-AA2{color:#4A6FF3;} + .d2-4198988860 .color-AA4{color:#EDF0FD;} + .d2-4198988860 .color-AA5{color:#F7F8FE;} + .d2-4198988860 .color-AB4{color:#EDF0FD;} + .d2-4198988860 .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/theme-override.exp.svg b/e2etests-cli/testdata/TestCLI_E2E/theme-override.exp.svg index dd54f8d1bb..20600c8479 100644 --- a/e2etests-cli/testdata/TestCLI_E2E/theme-override.exp.svg +++ b/e2etests-cli/testdata/TestCLI_E2E/theme-override.exp.svg @@ -1,23 +1,23 @@ -logsUserNetworkAPI ServercostumesidintPKsillinessintmonsterintlast_updatedtimestampmonstersidintPKmoviestringweightintlast_updatedtimestampCell TowerData ProcessorOnline PortalsatellitestransmitterStorageUI phone logsMake callpersistdisplay access + .d2-3500999268 .fill-N1{fill:#2E2E2E;} + .d2-3500999268 .fill-N2{fill:#2E2E2E;} + .d2-3500999268 .fill-N3{fill:#595959;} + .d2-3500999268 .fill-N4{fill:#858585;} + .d2-3500999268 .fill-N5{fill:#B1B1B1;} + .d2-3500999268 .fill-N6{fill:#DCDCDC;} + .d2-3500999268 .fill-N7{fill:#DCDCDC;} + .d2-3500999268 .fill-B1{fill:#2E7D32;} + .d2-3500999268 .fill-B2{fill:#66BB6A;} + .d2-3500999268 .fill-B3{fill:#A5D6A7;} + .d2-3500999268 .fill-B4{fill:#C5E1A5;} + .d2-3500999268 .fill-B5{fill:#E6EE9C;} + .d2-3500999268 .fill-B6{fill:#FFF59D;} + .d2-3500999268 .fill-AA2{fill:#0D47A1;} + .d2-3500999268 .fill-AA4{fill:#42A5F5;} + .d2-3500999268 .fill-AA5{fill:#90CAF9;} + .d2-3500999268 .fill-AB4{fill:#F44336;} + .d2-3500999268 .fill-AB5{fill:#FFCDD2;} + .d2-3500999268 .stroke-N1{stroke:#2E2E2E;} + .d2-3500999268 .stroke-N2{stroke:#2E2E2E;} + .d2-3500999268 .stroke-N3{stroke:#595959;} + .d2-3500999268 .stroke-N4{stroke:#858585;} + .d2-3500999268 .stroke-N5{stroke:#B1B1B1;} + .d2-3500999268 .stroke-N6{stroke:#DCDCDC;} + .d2-3500999268 .stroke-N7{stroke:#DCDCDC;} + .d2-3500999268 .stroke-B1{stroke:#2E7D32;} + .d2-3500999268 .stroke-B2{stroke:#66BB6A;} + .d2-3500999268 .stroke-B3{stroke:#A5D6A7;} + .d2-3500999268 .stroke-B4{stroke:#C5E1A5;} + .d2-3500999268 .stroke-B5{stroke:#E6EE9C;} + .d2-3500999268 .stroke-B6{stroke:#FFF59D;} + .d2-3500999268 .stroke-AA2{stroke:#0D47A1;} + .d2-3500999268 .stroke-AA4{stroke:#42A5F5;} + .d2-3500999268 .stroke-AA5{stroke:#90CAF9;} + .d2-3500999268 .stroke-AB4{stroke:#F44336;} + .d2-3500999268 .stroke-AB5{stroke:#FFCDD2;} + .d2-3500999268 .background-color-N1{background-color:#2E2E2E;} + .d2-3500999268 .background-color-N2{background-color:#2E2E2E;} + .d2-3500999268 .background-color-N3{background-color:#595959;} + .d2-3500999268 .background-color-N4{background-color:#858585;} + .d2-3500999268 .background-color-N5{background-color:#B1B1B1;} + .d2-3500999268 .background-color-N6{background-color:#DCDCDC;} + .d2-3500999268 .background-color-N7{background-color:#DCDCDC;} + .d2-3500999268 .background-color-B1{background-color:#2E7D32;} + .d2-3500999268 .background-color-B2{background-color:#66BB6A;} + .d2-3500999268 .background-color-B3{background-color:#A5D6A7;} + .d2-3500999268 .background-color-B4{background-color:#C5E1A5;} + .d2-3500999268 .background-color-B5{background-color:#E6EE9C;} + .d2-3500999268 .background-color-B6{background-color:#FFF59D;} + .d2-3500999268 .background-color-AA2{background-color:#0D47A1;} + .d2-3500999268 .background-color-AA4{background-color:#42A5F5;} + .d2-3500999268 .background-color-AA5{background-color:#90CAF9;} + .d2-3500999268 .background-color-AB4{background-color:#F44336;} + .d2-3500999268 .background-color-AB5{background-color:#FFCDD2;} + .d2-3500999268 .color-N1{color:#2E2E2E;} + .d2-3500999268 .color-N2{color:#2E2E2E;} + .d2-3500999268 .color-N3{color:#595959;} + .d2-3500999268 .color-N4{color:#858585;} + .d2-3500999268 .color-N5{color:#B1B1B1;} + .d2-3500999268 .color-N6{color:#DCDCDC;} + .d2-3500999268 .color-N7{color:#DCDCDC;} + .d2-3500999268 .color-B1{color:#2E7D32;} + .d2-3500999268 .color-B2{color:#66BB6A;} + .d2-3500999268 .color-B3{color:#A5D6A7;} + .d2-3500999268 .color-B4{color:#C5E1A5;} + .d2-3500999268 .color-B5{color:#E6EE9C;} + .d2-3500999268 .color-B6{color:#FFF59D;} + .d2-3500999268 .color-AA2{color:#0D47A1;} + .d2-3500999268 .color-AA4{color:#42A5F5;} + .d2-3500999268 .color-AA5{color:#90CAF9;} + .d2-3500999268 .color-AB4{color:#F44336;} + .d2-3500999268 .color-AB5{color:#FFCDD2;}.appendix text.text{fill:#2E2E2E}.md{--color-fg-default:#2E2E2E;--color-fg-muted:#2E2E2E;--color-fg-subtle:#595959;--color-canvas-default:#DCDCDC;--color-canvas-subtle:#DCDCDC;--color-border-default:#2E7D32;--color-border-muted:#66BB6A;--color-neutral-muted:#DCDCDC;--color-accent-fg:#66BB6A;--color-accent-emphasis:#66BB6A;--color-attention-subtle:#2E2E2E;--color-danger-fg:red;}.sketch-overlay-B1{fill:url(#streaks-dark);mix-blend-mode:overlay}.sketch-overlay-B2{fill:url(#streaks-normal);mix-blend-mode:color-burn}.sketch-overlay-B3{fill:url(#streaks-normal);mix-blend-mode:color-burn}.sketch-overlay-B4{fill:url(#streaks-normal);mix-blend-mode:color-burn}.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-darker);mix-blend-mode:lighten}.sketch-overlay-AA4{fill:url(#streaks-normal);mix-blend-mode:color-burn}.sketch-overlay-AA5{fill:url(#streaks-normal);mix-blend-mode:color-burn}.sketch-overlay-AB4{fill:url(#streaks-dark);mix-blend-mode:overlay}.sketch-overlay-AB5{fill:url(#streaks-normal);mix-blend-mode:color-burn}.sketch-overlay-N1{fill:url(#streaks-darker);mix-blend-mode:lighten}.sketch-overlay-N2{fill:url(#streaks-darker);mix-blend-mode:lighten}.sketch-overlay-N3{fill:url(#streaks-dark);mix-blend-mode:overlay}.sketch-overlay-N4{fill:url(#streaks-dark);mix-blend-mode:overlay}.sketch-overlay-N5{fill:url(#streaks-normal);mix-blend-mode:color-burn}.sketch-overlay-N6{fill:url(#streaks-normal);mix-blend-mode:color-burn}.sketch-overlay-N7{fill:url(#streaks-normal);mix-blend-mode:color-burn}.light-code{display: block}.dark-code{display: none}]]>logsUserNetworkAPI ServercostumesidintPKsillinessintmonsterintlast_updatedtimestampmonstersidintPKmoviestringweightintlast_updatedtimestampCell TowerData ProcessorOnline PortalsatellitestransmitterStorageUI phone logsMake callpersistdisplay access diff --git a/e2etests-cli/testdata/TestCLI_E2E/theme-pdf.exp.pdf b/e2etests-cli/testdata/TestCLI_E2E/theme-pdf.exp.pdf index 79e8b42da3..c6437033f6 100644 Binary files a/e2etests-cli/testdata/TestCLI_E2E/theme-pdf.exp.pdf and b/e2etests-cli/testdata/TestCLI_E2E/theme-pdf.exp.pdf differ diff --git a/e2etests-cli/testdata/TestCLI_E2E/vars-animation.exp.svg b/e2etests-cli/testdata/TestCLI_E2E/vars-animation.exp.svg index e0f86221d5..46d3b4da08 100644 --- a/e2etests-cli/testdata/TestCLI_E2E/vars-animation.exp.svg +++ b/e2etests-cli/testdata/TestCLI_E2E/vars-animation.exp.svg @@ -1,16 +1,16 @@ CHICKEN'S PLAN +}]]>CHICKEN'S PLAN -CHICKEN'S PLANAPPROACH ROAD +CHICKEN'S PLANAPPROACH ROAD -CHICKEN'S PLANAPPROACH ROADCROSS ROAD +CHICKEN'S PLANAPPROACH ROADCROSS ROAD -CHICKEN'S PLANAPPROACH ROADCROSS ROADMAKE YOU WONDER WHY +CHICKEN'S PLANAPPROACH ROADCROSS ROADMAKE YOU WONDER WHY diff --git a/e2etests-cli/testdata/TestCLI_E2E/vars-config.exp.svg b/e2etests-cli/testdata/TestCLI_E2E/vars-config.exp.svg index 57740f11a0..e5577b6f95 100644 --- a/e2etests-cli/testdata/TestCLI_E2E/vars-config.exp.svg +++ b/e2etests-cli/testdata/TestCLI_E2E/vars-config.exp.svg @@ -1,16 +1,16 @@ - + .d2-2817281474 .fill-N1{fill:#0A0F25;} + .d2-2817281474 .fill-N2{fill:#676C7E;} + .d2-2817281474 .fill-N3{fill:#9499AB;} + .d2-2817281474 .fill-N4{fill:#CFD2DD;} + .d2-2817281474 .fill-N5{fill:#DEE1EB;} + .d2-2817281474 .fill-N6{fill:#EEF1F8;} + .d2-2817281474 .fill-N7{fill:#FFFFFF;} + .d2-2817281474 .fill-B1{fill:#0A0F25;} + .d2-2817281474 .fill-B2{fill:#676C7E;} + .d2-2817281474 .fill-B3{fill:#9499AB;} + .d2-2817281474 .fill-B4{fill:#CFD2DD;} + .d2-2817281474 .fill-B5{fill:#DEE1EB;} + .d2-2817281474 .fill-B6{fill:#EEF1F8;} + .d2-2817281474 .fill-AA2{fill:#676C7E;} + .d2-2817281474 .fill-AA4{fill:#CFD2DD;} + .d2-2817281474 .fill-AA5{fill:#DEE1EB;} + .d2-2817281474 .fill-AB4{fill:#CFD2DD;} + .d2-2817281474 .fill-AB5{fill:#DEE1EB;} + .d2-2817281474 .stroke-N1{stroke:#0A0F25;} + .d2-2817281474 .stroke-N2{stroke:#676C7E;} + .d2-2817281474 .stroke-N3{stroke:#9499AB;} + .d2-2817281474 .stroke-N4{stroke:#CFD2DD;} + .d2-2817281474 .stroke-N5{stroke:#DEE1EB;} + .d2-2817281474 .stroke-N6{stroke:#EEF1F8;} + .d2-2817281474 .stroke-N7{stroke:#FFFFFF;} + .d2-2817281474 .stroke-B1{stroke:#0A0F25;} + .d2-2817281474 .stroke-B2{stroke:#676C7E;} + .d2-2817281474 .stroke-B3{stroke:#9499AB;} + .d2-2817281474 .stroke-B4{stroke:#CFD2DD;} + .d2-2817281474 .stroke-B5{stroke:#DEE1EB;} + .d2-2817281474 .stroke-B6{stroke:#EEF1F8;} + .d2-2817281474 .stroke-AA2{stroke:#676C7E;} + .d2-2817281474 .stroke-AA4{stroke:#CFD2DD;} + .d2-2817281474 .stroke-AA5{stroke:#DEE1EB;} + .d2-2817281474 .stroke-AB4{stroke:#CFD2DD;} + .d2-2817281474 .stroke-AB5{stroke:#DEE1EB;} + .d2-2817281474 .background-color-N1{background-color:#0A0F25;} + .d2-2817281474 .background-color-N2{background-color:#676C7E;} + .d2-2817281474 .background-color-N3{background-color:#9499AB;} + .d2-2817281474 .background-color-N4{background-color:#CFD2DD;} + .d2-2817281474 .background-color-N5{background-color:#DEE1EB;} + .d2-2817281474 .background-color-N6{background-color:#EEF1F8;} + .d2-2817281474 .background-color-N7{background-color:#FFFFFF;} + .d2-2817281474 .background-color-B1{background-color:#0A0F25;} + .d2-2817281474 .background-color-B2{background-color:#676C7E;} + .d2-2817281474 .background-color-B3{background-color:#9499AB;} + .d2-2817281474 .background-color-B4{background-color:#CFD2DD;} + .d2-2817281474 .background-color-B5{background-color:#DEE1EB;} + .d2-2817281474 .background-color-B6{background-color:#EEF1F8;} + .d2-2817281474 .background-color-AA2{background-color:#676C7E;} + .d2-2817281474 .background-color-AA4{background-color:#CFD2DD;} + .d2-2817281474 .background-color-AA5{background-color:#DEE1EB;} + .d2-2817281474 .background-color-AB4{background-color:#CFD2DD;} + .d2-2817281474 .background-color-AB5{background-color:#DEE1EB;} + .d2-2817281474 .color-N1{color:#0A0F25;} + .d2-2817281474 .color-N2{color:#676C7E;} + .d2-2817281474 .color-N3{color:#9499AB;} + .d2-2817281474 .color-N4{color:#CFD2DD;} + .d2-2817281474 .color-N5{color:#DEE1EB;} + .d2-2817281474 .color-N6{color:#EEF1F8;} + .d2-2817281474 .color-N7{color:#FFFFFF;} + .d2-2817281474 .color-B1{color:#0A0F25;} + .d2-2817281474 .color-B2{color:#676C7E;} + .d2-2817281474 .color-B3{color:#9499AB;} + .d2-2817281474 .color-B4{color:#CFD2DD;} + .d2-2817281474 .color-B5{color:#DEE1EB;} + .d2-2817281474 .color-B6{color:#EEF1F8;} + .d2-2817281474 .color-AA2{color:#676C7E;} + .d2-2817281474 .color-AA4{color:#CFD2DD;} + .d2-2817281474 .color-AA5{color:#DEE1EB;} + .d2-2817281474 .color-AB4{color:#CFD2DD;} + .d2-2817281474 .color-AB5{color:#DEE1EB;}.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:#0A0F25;--color-border-muted:#676C7E;--color-neutral-muted:#EEF1F8;--color-accent-fg:#676C7E;--color-accent-emphasis:#676C7E;--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-dark);mix-blend-mode:overlay}.sketch-overlay-B3{fill:url(#streaks-normal);mix-blend-mode:color-burn}.sketch-overlay-B4{fill:url(#streaks-normal);mix-blend-mode:color-burn}.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-normal);mix-blend-mode:color-burn}.sketch-overlay-AA5{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-AB4{fill:url(#streaks-normal);mix-blend-mode:color-burn}.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}]]> @@ -104,7 +104,7 @@ -xyaitwasalli used to readdream +xyaitwasalli used to readdream diff --git a/e2etests-cli/testdata/TestCLI_E2E/with-font.exp.svg b/e2etests-cli/testdata/TestCLI_E2E/with-font.exp.svg index 57ea45f15d..aa4ada7977 100644 --- a/e2etests-cli/testdata/TestCLI_E2E/with-font.exp.svg +++ b/e2etests-cli/testdata/TestCLI_E2E/with-font.exp.svg @@ -1,16 +1,16 @@ -Why do computers get sick often?Because their Windows are always open! italic font + .d2-373183345 .fill-N1{fill:#0A0F25;} + .d2-373183345 .fill-N2{fill:#676C7E;} + .d2-373183345 .fill-N3{fill:#9499AB;} + .d2-373183345 .fill-N4{fill:#CFD2DD;} + .d2-373183345 .fill-N5{fill:#DEE1EB;} + .d2-373183345 .fill-N6{fill:#EEF1F8;} + .d2-373183345 .fill-N7{fill:#FFFFFF;} + .d2-373183345 .fill-B1{fill:#0D32B2;} + .d2-373183345 .fill-B2{fill:#0D32B2;} + .d2-373183345 .fill-B3{fill:#E3E9FD;} + .d2-373183345 .fill-B4{fill:#E3E9FD;} + .d2-373183345 .fill-B5{fill:#EDF0FD;} + .d2-373183345 .fill-B6{fill:#F7F8FE;} + .d2-373183345 .fill-AA2{fill:#4A6FF3;} + .d2-373183345 .fill-AA4{fill:#EDF0FD;} + .d2-373183345 .fill-AA5{fill:#F7F8FE;} + .d2-373183345 .fill-AB4{fill:#EDF0FD;} + .d2-373183345 .fill-AB5{fill:#F7F8FE;} + .d2-373183345 .stroke-N1{stroke:#0A0F25;} + .d2-373183345 .stroke-N2{stroke:#676C7E;} + .d2-373183345 .stroke-N3{stroke:#9499AB;} + .d2-373183345 .stroke-N4{stroke:#CFD2DD;} + .d2-373183345 .stroke-N5{stroke:#DEE1EB;} + .d2-373183345 .stroke-N6{stroke:#EEF1F8;} + .d2-373183345 .stroke-N7{stroke:#FFFFFF;} + .d2-373183345 .stroke-B1{stroke:#0D32B2;} + .d2-373183345 .stroke-B2{stroke:#0D32B2;} + .d2-373183345 .stroke-B3{stroke:#E3E9FD;} + .d2-373183345 .stroke-B4{stroke:#E3E9FD;} + .d2-373183345 .stroke-B5{stroke:#EDF0FD;} + .d2-373183345 .stroke-B6{stroke:#F7F8FE;} + .d2-373183345 .stroke-AA2{stroke:#4A6FF3;} + .d2-373183345 .stroke-AA4{stroke:#EDF0FD;} + .d2-373183345 .stroke-AA5{stroke:#F7F8FE;} + .d2-373183345 .stroke-AB4{stroke:#EDF0FD;} + .d2-373183345 .stroke-AB5{stroke:#F7F8FE;} + .d2-373183345 .background-color-N1{background-color:#0A0F25;} + .d2-373183345 .background-color-N2{background-color:#676C7E;} + .d2-373183345 .background-color-N3{background-color:#9499AB;} + .d2-373183345 .background-color-N4{background-color:#CFD2DD;} + .d2-373183345 .background-color-N5{background-color:#DEE1EB;} + .d2-373183345 .background-color-N6{background-color:#EEF1F8;} + .d2-373183345 .background-color-N7{background-color:#FFFFFF;} + .d2-373183345 .background-color-B1{background-color:#0D32B2;} + .d2-373183345 .background-color-B2{background-color:#0D32B2;} + .d2-373183345 .background-color-B3{background-color:#E3E9FD;} + .d2-373183345 .background-color-B4{background-color:#E3E9FD;} + .d2-373183345 .background-color-B5{background-color:#EDF0FD;} + .d2-373183345 .background-color-B6{background-color:#F7F8FE;} + .d2-373183345 .background-color-AA2{background-color:#4A6FF3;} + .d2-373183345 .background-color-AA4{background-color:#EDF0FD;} + .d2-373183345 .background-color-AA5{background-color:#F7F8FE;} + .d2-373183345 .background-color-AB4{background-color:#EDF0FD;} + .d2-373183345 .background-color-AB5{background-color:#F7F8FE;} + .d2-373183345 .color-N1{color:#0A0F25;} + .d2-373183345 .color-N2{color:#676C7E;} + .d2-373183345 .color-N3{color:#9499AB;} + .d2-373183345 .color-N4{color:#CFD2DD;} + .d2-373183345 .color-N5{color:#DEE1EB;} + .d2-373183345 .color-N6{color:#EEF1F8;} + .d2-373183345 .color-N7{color:#FFFFFF;} + .d2-373183345 .color-B1{color:#0D32B2;} + .d2-373183345 .color-B2{color:#0D32B2;} + .d2-373183345 .color-B3{color:#E3E9FD;} + .d2-373183345 .color-B4{color:#E3E9FD;} + .d2-373183345 .color-B5{color:#EDF0FD;} + .d2-373183345 .color-B6{color:#F7F8FE;} + .d2-373183345 .color-AA2{color:#4A6FF3;} + .d2-373183345 .color-AA4{color:#EDF0FD;} + .d2-373183345 .color-AA5{color:#F7F8FE;} + .d2-373183345 .color-AB4{color:#EDF0FD;} + .d2-373183345 .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}]]>Why do computers get sick often?Because their Windows are always open! italic font diff --git a/e2etests/testdata/patterns/all_shapes/dagre/board.exp.json b/e2etests/testdata/patterns/all_shapes/dagre/board.exp.json index b5911c6dc9..8afdcb32a3 100644 --- a/e2etests/testdata/patterns/all_shapes/dagre/board.exp.json +++ b/e2etests/testdata/patterns/all_shapes/dagre/board.exp.json @@ -743,6 +743,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 55.5, @@ -790,6 +791,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 55.5, @@ -837,6 +839,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 269, @@ -884,6 +887,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 269, @@ -931,6 +935,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 497, @@ -978,6 +983,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 497, @@ -1025,6 +1031,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 685, @@ -1072,6 +1079,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 684, @@ -1119,6 +1127,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 870, @@ -1166,6 +1175,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 870, @@ -1213,6 +1223,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 1072, diff --git a/e2etests/testdata/patterns/all_shapes/dagre/sketch.exp.svg b/e2etests/testdata/patterns/all_shapes/dagre/sketch.exp.svg index 66852c2a8f..22750912ef 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 @@ -xy eth1eth2 + .d2-3801853211 .fill-N1{fill:#0A0F25;} + .d2-3801853211 .fill-N2{fill:#676C7E;} + .d2-3801853211 .fill-N3{fill:#9499AB;} + .d2-3801853211 .fill-N4{fill:#CFD2DD;} + .d2-3801853211 .fill-N5{fill:#DEE1EB;} + .d2-3801853211 .fill-N6{fill:#EEF1F8;} + .d2-3801853211 .fill-N7{fill:#FFFFFF;} + .d2-3801853211 .fill-B1{fill:#0D32B2;} + .d2-3801853211 .fill-B2{fill:#0D32B2;} + .d2-3801853211 .fill-B3{fill:#E3E9FD;} + .d2-3801853211 .fill-B4{fill:#E3E9FD;} + .d2-3801853211 .fill-B5{fill:#EDF0FD;} + .d2-3801853211 .fill-B6{fill:#F7F8FE;} + .d2-3801853211 .fill-AA2{fill:#4A6FF3;} + .d2-3801853211 .fill-AA4{fill:#EDF0FD;} + .d2-3801853211 .fill-AA5{fill:#F7F8FE;} + .d2-3801853211 .fill-AB4{fill:#EDF0FD;} + .d2-3801853211 .fill-AB5{fill:#F7F8FE;} + .d2-3801853211 .stroke-N1{stroke:#0A0F25;} + .d2-3801853211 .stroke-N2{stroke:#676C7E;} + .d2-3801853211 .stroke-N3{stroke:#9499AB;} + .d2-3801853211 .stroke-N4{stroke:#CFD2DD;} + .d2-3801853211 .stroke-N5{stroke:#DEE1EB;} + .d2-3801853211 .stroke-N6{stroke:#EEF1F8;} + .d2-3801853211 .stroke-N7{stroke:#FFFFFF;} + .d2-3801853211 .stroke-B1{stroke:#0D32B2;} + .d2-3801853211 .stroke-B2{stroke:#0D32B2;} + .d2-3801853211 .stroke-B3{stroke:#E3E9FD;} + .d2-3801853211 .stroke-B4{stroke:#E3E9FD;} + .d2-3801853211 .stroke-B5{stroke:#EDF0FD;} + .d2-3801853211 .stroke-B6{stroke:#F7F8FE;} + .d2-3801853211 .stroke-AA2{stroke:#4A6FF3;} + .d2-3801853211 .stroke-AA4{stroke:#EDF0FD;} + .d2-3801853211 .stroke-AA5{stroke:#F7F8FE;} + .d2-3801853211 .stroke-AB4{stroke:#EDF0FD;} + .d2-3801853211 .stroke-AB5{stroke:#F7F8FE;} + .d2-3801853211 .background-color-N1{background-color:#0A0F25;} + .d2-3801853211 .background-color-N2{background-color:#676C7E;} + .d2-3801853211 .background-color-N3{background-color:#9499AB;} + .d2-3801853211 .background-color-N4{background-color:#CFD2DD;} + .d2-3801853211 .background-color-N5{background-color:#DEE1EB;} + .d2-3801853211 .background-color-N6{background-color:#EEF1F8;} + .d2-3801853211 .background-color-N7{background-color:#FFFFFF;} + .d2-3801853211 .background-color-B1{background-color:#0D32B2;} + .d2-3801853211 .background-color-B2{background-color:#0D32B2;} + .d2-3801853211 .background-color-B3{background-color:#E3E9FD;} + .d2-3801853211 .background-color-B4{background-color:#E3E9FD;} + .d2-3801853211 .background-color-B5{background-color:#EDF0FD;} + .d2-3801853211 .background-color-B6{background-color:#F7F8FE;} + .d2-3801853211 .background-color-AA2{background-color:#4A6FF3;} + .d2-3801853211 .background-color-AA4{background-color:#EDF0FD;} + .d2-3801853211 .background-color-AA5{background-color:#F7F8FE;} + .d2-3801853211 .background-color-AB4{background-color:#EDF0FD;} + .d2-3801853211 .background-color-AB5{background-color:#F7F8FE;} + .d2-3801853211 .color-N1{color:#0A0F25;} + .d2-3801853211 .color-N2{color:#676C7E;} + .d2-3801853211 .color-N3{color:#9499AB;} + .d2-3801853211 .color-N4{color:#CFD2DD;} + .d2-3801853211 .color-N5{color:#DEE1EB;} + .d2-3801853211 .color-N6{color:#EEF1F8;} + .d2-3801853211 .color-N7{color:#FFFFFF;} + .d2-3801853211 .color-B1{color:#0D32B2;} + .d2-3801853211 .color-B2{color:#0D32B2;} + .d2-3801853211 .color-B3{color:#E3E9FD;} + .d2-3801853211 .color-B4{color:#E3E9FD;} + .d2-3801853211 .color-B5{color:#EDF0FD;} + .d2-3801853211 .color-B6{color:#F7F8FE;} + .d2-3801853211 .color-AA2{color:#4A6FF3;} + .d2-3801853211 .color-AA4{color:#EDF0FD;} + .d2-3801853211 .color-AA5{color:#F7F8FE;} + .d2-3801853211 .color-AB4{color:#EDF0FD;} + .d2-3801853211 .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 eth1eth2 diff --git a/e2etests/testdata/regression/arrowhead_font_color/elk/board.exp.json b/e2etests/testdata/regression/arrowhead_font_color/elk/board.exp.json index e080bbbcc0..420725f203 100644 --- a/e2etests/testdata/regression/arrowhead_font_color/elk/board.exp.json +++ b/e2etests/testdata/regression/arrowhead_font_color/elk/board.exp.json @@ -134,6 +134,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 65, diff --git a/e2etests/testdata/regression/arrowhead_font_color/elk/sketch.exp.svg b/e2etests/testdata/regression/arrowhead_font_color/elk/sketch.exp.svg index 990f9a3137..8ba2d63ec1 100644 --- a/e2etests/testdata/regression/arrowhead_font_color/elk/sketch.exp.svg +++ b/e2etests/testdata/regression/arrowhead_font_color/elk/sketch.exp.svg @@ -1,16 +1,16 @@ -xy eth1eth2 + .d2-142564125 .fill-N1{fill:#0A0F25;} + .d2-142564125 .fill-N2{fill:#676C7E;} + .d2-142564125 .fill-N3{fill:#9499AB;} + .d2-142564125 .fill-N4{fill:#CFD2DD;} + .d2-142564125 .fill-N5{fill:#DEE1EB;} + .d2-142564125 .fill-N6{fill:#EEF1F8;} + .d2-142564125 .fill-N7{fill:#FFFFFF;} + .d2-142564125 .fill-B1{fill:#0D32B2;} + .d2-142564125 .fill-B2{fill:#0D32B2;} + .d2-142564125 .fill-B3{fill:#E3E9FD;} + .d2-142564125 .fill-B4{fill:#E3E9FD;} + .d2-142564125 .fill-B5{fill:#EDF0FD;} + .d2-142564125 .fill-B6{fill:#F7F8FE;} + .d2-142564125 .fill-AA2{fill:#4A6FF3;} + .d2-142564125 .fill-AA4{fill:#EDF0FD;} + .d2-142564125 .fill-AA5{fill:#F7F8FE;} + .d2-142564125 .fill-AB4{fill:#EDF0FD;} + .d2-142564125 .fill-AB5{fill:#F7F8FE;} + .d2-142564125 .stroke-N1{stroke:#0A0F25;} + .d2-142564125 .stroke-N2{stroke:#676C7E;} + .d2-142564125 .stroke-N3{stroke:#9499AB;} + .d2-142564125 .stroke-N4{stroke:#CFD2DD;} + .d2-142564125 .stroke-N5{stroke:#DEE1EB;} + .d2-142564125 .stroke-N6{stroke:#EEF1F8;} + .d2-142564125 .stroke-N7{stroke:#FFFFFF;} + .d2-142564125 .stroke-B1{stroke:#0D32B2;} + .d2-142564125 .stroke-B2{stroke:#0D32B2;} + .d2-142564125 .stroke-B3{stroke:#E3E9FD;} + .d2-142564125 .stroke-B4{stroke:#E3E9FD;} + .d2-142564125 .stroke-B5{stroke:#EDF0FD;} + .d2-142564125 .stroke-B6{stroke:#F7F8FE;} + .d2-142564125 .stroke-AA2{stroke:#4A6FF3;} + .d2-142564125 .stroke-AA4{stroke:#EDF0FD;} + .d2-142564125 .stroke-AA5{stroke:#F7F8FE;} + .d2-142564125 .stroke-AB4{stroke:#EDF0FD;} + .d2-142564125 .stroke-AB5{stroke:#F7F8FE;} + .d2-142564125 .background-color-N1{background-color:#0A0F25;} + .d2-142564125 .background-color-N2{background-color:#676C7E;} + .d2-142564125 .background-color-N3{background-color:#9499AB;} + .d2-142564125 .background-color-N4{background-color:#CFD2DD;} + .d2-142564125 .background-color-N5{background-color:#DEE1EB;} + .d2-142564125 .background-color-N6{background-color:#EEF1F8;} + .d2-142564125 .background-color-N7{background-color:#FFFFFF;} + .d2-142564125 .background-color-B1{background-color:#0D32B2;} + .d2-142564125 .background-color-B2{background-color:#0D32B2;} + .d2-142564125 .background-color-B3{background-color:#E3E9FD;} + .d2-142564125 .background-color-B4{background-color:#E3E9FD;} + .d2-142564125 .background-color-B5{background-color:#EDF0FD;} + .d2-142564125 .background-color-B6{background-color:#F7F8FE;} + .d2-142564125 .background-color-AA2{background-color:#4A6FF3;} + .d2-142564125 .background-color-AA4{background-color:#EDF0FD;} + .d2-142564125 .background-color-AA5{background-color:#F7F8FE;} + .d2-142564125 .background-color-AB4{background-color:#EDF0FD;} + .d2-142564125 .background-color-AB5{background-color:#F7F8FE;} + .d2-142564125 .color-N1{color:#0A0F25;} + .d2-142564125 .color-N2{color:#676C7E;} + .d2-142564125 .color-N3{color:#9499AB;} + .d2-142564125 .color-N4{color:#CFD2DD;} + .d2-142564125 .color-N5{color:#DEE1EB;} + .d2-142564125 .color-N6{color:#EEF1F8;} + .d2-142564125 .color-N7{color:#FFFFFF;} + .d2-142564125 .color-B1{color:#0D32B2;} + .d2-142564125 .color-B2{color:#0D32B2;} + .d2-142564125 .color-B3{color:#E3E9FD;} + .d2-142564125 .color-B4{color:#E3E9FD;} + .d2-142564125 .color-B5{color:#EDF0FD;} + .d2-142564125 .color-B6{color:#F7F8FE;} + .d2-142564125 .color-AA2{color:#4A6FF3;} + .d2-142564125 .color-AA4{color:#EDF0FD;} + .d2-142564125 .color-AA5{color:#F7F8FE;} + .d2-142564125 .color-AB4{color:#EDF0FD;} + .d2-142564125 .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 eth1eth2 diff --git a/e2etests/testdata/regression/arrowhead_sizes_with_labels/dagre/board.exp.json b/e2etests/testdata/regression/arrowhead_sizes_with_labels/dagre/board.exp.json index db3d37b907..8a32f34e57 100644 --- a/e2etests/testdata/regression/arrowhead_sizes_with_labels/dagre/board.exp.json +++ b/e2etests/testdata/regression/arrowhead_sizes_with_labels/dagre/board.exp.json @@ -2307,6 +2307,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 66.5, @@ -2378,6 +2379,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 180, @@ -2449,6 +2451,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 333.5, @@ -2520,6 +2523,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 447, @@ -2591,6 +2595,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 600.5, @@ -2662,6 +2667,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 714, @@ -2733,6 +2739,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 867.5, @@ -2804,6 +2811,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 981, @@ -2875,6 +2883,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 1134.5, @@ -2946,6 +2955,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 1248, @@ -3017,6 +3027,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 1401.5, @@ -3088,6 +3099,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 1515, @@ -3159,6 +3171,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 1668.5, @@ -3230,6 +3243,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 1782, @@ -3301,6 +3315,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 1935.5, @@ -3372,6 +3387,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 2049, @@ -3443,6 +3459,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 2202.5, @@ -3514,6 +3531,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 2316, @@ -3585,6 +3603,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 2469.5, @@ -3656,6 +3675,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 2583, @@ -3727,6 +3747,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 2736.5, @@ -3798,6 +3819,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 2850, diff --git a/e2etests/testdata/regression/arrowhead_sizes_with_labels/dagre/sketch.exp.svg b/e2etests/testdata/regression/arrowhead_sizes_with_labels/dagre/sketch.exp.svg index 04a671cf72..cd477727b3 100644 --- a/e2etests/testdata/regression/arrowhead_sizes_with_labels/dagre/sketch.exp.svg +++ b/e2etests/testdata/regression/arrowhead_sizes_with_labels/dagre/sketch.exp.svg @@ -1,23 +1,23 @@ -trianglenonearrowdiamondfilled diamondcirclefilled circlecf onecf one requiredcf manycf many requiredabcdabcdabcdabcdabcdabcdabcdabcdabcdabcdabcd 11 111111 11 11 11 11 11 11 11 11 11 11 11 11 11 11 11 11 11 11 + .d2-1521764101 .fill-N1{fill:#0A0F25;} + .d2-1521764101 .fill-N2{fill:#676C7E;} + .d2-1521764101 .fill-N3{fill:#9499AB;} + .d2-1521764101 .fill-N4{fill:#CFD2DD;} + .d2-1521764101 .fill-N5{fill:#DEE1EB;} + .d2-1521764101 .fill-N6{fill:#EEF1F8;} + .d2-1521764101 .fill-N7{fill:#FFFFFF;} + .d2-1521764101 .fill-B1{fill:#0D32B2;} + .d2-1521764101 .fill-B2{fill:#0D32B2;} + .d2-1521764101 .fill-B3{fill:#E3E9FD;} + .d2-1521764101 .fill-B4{fill:#E3E9FD;} + .d2-1521764101 .fill-B5{fill:#EDF0FD;} + .d2-1521764101 .fill-B6{fill:#F7F8FE;} + .d2-1521764101 .fill-AA2{fill:#4A6FF3;} + .d2-1521764101 .fill-AA4{fill:#EDF0FD;} + .d2-1521764101 .fill-AA5{fill:#F7F8FE;} + .d2-1521764101 .fill-AB4{fill:#EDF0FD;} + .d2-1521764101 .fill-AB5{fill:#F7F8FE;} + .d2-1521764101 .stroke-N1{stroke:#0A0F25;} + .d2-1521764101 .stroke-N2{stroke:#676C7E;} + .d2-1521764101 .stroke-N3{stroke:#9499AB;} + .d2-1521764101 .stroke-N4{stroke:#CFD2DD;} + .d2-1521764101 .stroke-N5{stroke:#DEE1EB;} + .d2-1521764101 .stroke-N6{stroke:#EEF1F8;} + .d2-1521764101 .stroke-N7{stroke:#FFFFFF;} + .d2-1521764101 .stroke-B1{stroke:#0D32B2;} + .d2-1521764101 .stroke-B2{stroke:#0D32B2;} + .d2-1521764101 .stroke-B3{stroke:#E3E9FD;} + .d2-1521764101 .stroke-B4{stroke:#E3E9FD;} + .d2-1521764101 .stroke-B5{stroke:#EDF0FD;} + .d2-1521764101 .stroke-B6{stroke:#F7F8FE;} + .d2-1521764101 .stroke-AA2{stroke:#4A6FF3;} + .d2-1521764101 .stroke-AA4{stroke:#EDF0FD;} + .d2-1521764101 .stroke-AA5{stroke:#F7F8FE;} + .d2-1521764101 .stroke-AB4{stroke:#EDF0FD;} + .d2-1521764101 .stroke-AB5{stroke:#F7F8FE;} + .d2-1521764101 .background-color-N1{background-color:#0A0F25;} + .d2-1521764101 .background-color-N2{background-color:#676C7E;} + .d2-1521764101 .background-color-N3{background-color:#9499AB;} + .d2-1521764101 .background-color-N4{background-color:#CFD2DD;} + .d2-1521764101 .background-color-N5{background-color:#DEE1EB;} + .d2-1521764101 .background-color-N6{background-color:#EEF1F8;} + .d2-1521764101 .background-color-N7{background-color:#FFFFFF;} + .d2-1521764101 .background-color-B1{background-color:#0D32B2;} + .d2-1521764101 .background-color-B2{background-color:#0D32B2;} + .d2-1521764101 .background-color-B3{background-color:#E3E9FD;} + .d2-1521764101 .background-color-B4{background-color:#E3E9FD;} + .d2-1521764101 .background-color-B5{background-color:#EDF0FD;} + .d2-1521764101 .background-color-B6{background-color:#F7F8FE;} + .d2-1521764101 .background-color-AA2{background-color:#4A6FF3;} + .d2-1521764101 .background-color-AA4{background-color:#EDF0FD;} + .d2-1521764101 .background-color-AA5{background-color:#F7F8FE;} + .d2-1521764101 .background-color-AB4{background-color:#EDF0FD;} + .d2-1521764101 .background-color-AB5{background-color:#F7F8FE;} + .d2-1521764101 .color-N1{color:#0A0F25;} + .d2-1521764101 .color-N2{color:#676C7E;} + .d2-1521764101 .color-N3{color:#9499AB;} + .d2-1521764101 .color-N4{color:#CFD2DD;} + .d2-1521764101 .color-N5{color:#DEE1EB;} + .d2-1521764101 .color-N6{color:#EEF1F8;} + .d2-1521764101 .color-N7{color:#FFFFFF;} + .d2-1521764101 .color-B1{color:#0D32B2;} + .d2-1521764101 .color-B2{color:#0D32B2;} + .d2-1521764101 .color-B3{color:#E3E9FD;} + .d2-1521764101 .color-B4{color:#E3E9FD;} + .d2-1521764101 .color-B5{color:#EDF0FD;} + .d2-1521764101 .color-B6{color:#F7F8FE;} + .d2-1521764101 .color-AA2{color:#4A6FF3;} + .d2-1521764101 .color-AA4{color:#EDF0FD;} + .d2-1521764101 .color-AA5{color:#F7F8FE;} + .d2-1521764101 .color-AB4{color:#EDF0FD;} + .d2-1521764101 .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}]]>trianglenonearrowdiamondfilled diamondcirclefilled circlecf onecf one requiredcf manycf many requiredabcdabcdabcdabcdabcdabcdabcdabcdabcdabcdabcd 11 111111 11 11 11 11 11 11 11 11 11 11 11 11 11 11 11 11 11 11 diff --git a/e2etests/testdata/regression/arrowhead_sizes_with_labels/elk/board.exp.json b/e2etests/testdata/regression/arrowhead_sizes_with_labels/elk/board.exp.json index dc82ea5289..7b0cdf6539 100644 --- a/e2etests/testdata/regression/arrowhead_sizes_with_labels/elk/board.exp.json +++ b/e2etests/testdata/regression/arrowhead_sizes_with_labels/elk/board.exp.json @@ -2307,6 +2307,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 88.5, @@ -2369,6 +2370,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 162, @@ -2431,6 +2433,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 335.5, @@ -2493,6 +2496,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 409, @@ -2555,6 +2559,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 582.5, @@ -2617,6 +2622,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 656, @@ -2679,6 +2685,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 829.5, @@ -2741,6 +2748,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 903, @@ -2803,6 +2811,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 1076.5, @@ -2865,6 +2874,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 1150, @@ -2927,6 +2937,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 1323.5, @@ -2989,6 +3000,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 1397, @@ -3051,6 +3063,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 1570.5, @@ -3113,6 +3126,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 1644, @@ -3175,6 +3189,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 1817.5, @@ -3237,6 +3252,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 1891, @@ -3299,6 +3315,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 2064.5, @@ -3361,6 +3378,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 2138, @@ -3423,6 +3441,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 2311.5, @@ -3485,6 +3504,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 2385, @@ -3547,6 +3567,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 2565.5, @@ -3609,6 +3630,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 2639, diff --git a/e2etests/testdata/regression/arrowhead_sizes_with_labels/elk/sketch.exp.svg b/e2etests/testdata/regression/arrowhead_sizes_with_labels/elk/sketch.exp.svg index b68d08104d..d34218c7d7 100644 --- a/e2etests/testdata/regression/arrowhead_sizes_with_labels/elk/sketch.exp.svg +++ b/e2etests/testdata/regression/arrowhead_sizes_with_labels/elk/sketch.exp.svg @@ -1,23 +1,23 @@ -trianglenonearrowdiamondfilled diamondcirclefilled circlecf onecf one requiredcf manycf many requiredabcdabcdabcdabcdabcdabcdabcdabcdabcdabcdabcd 11 111111 11 11 11 11 11 11 11 11 11 11 11 11 11 11 11 11 11 11 + .d2-3556569361 .fill-N1{fill:#0A0F25;} + .d2-3556569361 .fill-N2{fill:#676C7E;} + .d2-3556569361 .fill-N3{fill:#9499AB;} + .d2-3556569361 .fill-N4{fill:#CFD2DD;} + .d2-3556569361 .fill-N5{fill:#DEE1EB;} + .d2-3556569361 .fill-N6{fill:#EEF1F8;} + .d2-3556569361 .fill-N7{fill:#FFFFFF;} + .d2-3556569361 .fill-B1{fill:#0D32B2;} + .d2-3556569361 .fill-B2{fill:#0D32B2;} + .d2-3556569361 .fill-B3{fill:#E3E9FD;} + .d2-3556569361 .fill-B4{fill:#E3E9FD;} + .d2-3556569361 .fill-B5{fill:#EDF0FD;} + .d2-3556569361 .fill-B6{fill:#F7F8FE;} + .d2-3556569361 .fill-AA2{fill:#4A6FF3;} + .d2-3556569361 .fill-AA4{fill:#EDF0FD;} + .d2-3556569361 .fill-AA5{fill:#F7F8FE;} + .d2-3556569361 .fill-AB4{fill:#EDF0FD;} + .d2-3556569361 .fill-AB5{fill:#F7F8FE;} + .d2-3556569361 .stroke-N1{stroke:#0A0F25;} + .d2-3556569361 .stroke-N2{stroke:#676C7E;} + .d2-3556569361 .stroke-N3{stroke:#9499AB;} + .d2-3556569361 .stroke-N4{stroke:#CFD2DD;} + .d2-3556569361 .stroke-N5{stroke:#DEE1EB;} + .d2-3556569361 .stroke-N6{stroke:#EEF1F8;} + .d2-3556569361 .stroke-N7{stroke:#FFFFFF;} + .d2-3556569361 .stroke-B1{stroke:#0D32B2;} + .d2-3556569361 .stroke-B2{stroke:#0D32B2;} + .d2-3556569361 .stroke-B3{stroke:#E3E9FD;} + .d2-3556569361 .stroke-B4{stroke:#E3E9FD;} + .d2-3556569361 .stroke-B5{stroke:#EDF0FD;} + .d2-3556569361 .stroke-B6{stroke:#F7F8FE;} + .d2-3556569361 .stroke-AA2{stroke:#4A6FF3;} + .d2-3556569361 .stroke-AA4{stroke:#EDF0FD;} + .d2-3556569361 .stroke-AA5{stroke:#F7F8FE;} + .d2-3556569361 .stroke-AB4{stroke:#EDF0FD;} + .d2-3556569361 .stroke-AB5{stroke:#F7F8FE;} + .d2-3556569361 .background-color-N1{background-color:#0A0F25;} + .d2-3556569361 .background-color-N2{background-color:#676C7E;} + .d2-3556569361 .background-color-N3{background-color:#9499AB;} + .d2-3556569361 .background-color-N4{background-color:#CFD2DD;} + .d2-3556569361 .background-color-N5{background-color:#DEE1EB;} + .d2-3556569361 .background-color-N6{background-color:#EEF1F8;} + .d2-3556569361 .background-color-N7{background-color:#FFFFFF;} + .d2-3556569361 .background-color-B1{background-color:#0D32B2;} + .d2-3556569361 .background-color-B2{background-color:#0D32B2;} + .d2-3556569361 .background-color-B3{background-color:#E3E9FD;} + .d2-3556569361 .background-color-B4{background-color:#E3E9FD;} + .d2-3556569361 .background-color-B5{background-color:#EDF0FD;} + .d2-3556569361 .background-color-B6{background-color:#F7F8FE;} + .d2-3556569361 .background-color-AA2{background-color:#4A6FF3;} + .d2-3556569361 .background-color-AA4{background-color:#EDF0FD;} + .d2-3556569361 .background-color-AA5{background-color:#F7F8FE;} + .d2-3556569361 .background-color-AB4{background-color:#EDF0FD;} + .d2-3556569361 .background-color-AB5{background-color:#F7F8FE;} + .d2-3556569361 .color-N1{color:#0A0F25;} + .d2-3556569361 .color-N2{color:#676C7E;} + .d2-3556569361 .color-N3{color:#9499AB;} + .d2-3556569361 .color-N4{color:#CFD2DD;} + .d2-3556569361 .color-N5{color:#DEE1EB;} + .d2-3556569361 .color-N6{color:#EEF1F8;} + .d2-3556569361 .color-N7{color:#FFFFFF;} + .d2-3556569361 .color-B1{color:#0D32B2;} + .d2-3556569361 .color-B2{color:#0D32B2;} + .d2-3556569361 .color-B3{color:#E3E9FD;} + .d2-3556569361 .color-B4{color:#E3E9FD;} + .d2-3556569361 .color-B5{color:#EDF0FD;} + .d2-3556569361 .color-B6{color:#F7F8FE;} + .d2-3556569361 .color-AA2{color:#4A6FF3;} + .d2-3556569361 .color-AA4{color:#EDF0FD;} + .d2-3556569361 .color-AA5{color:#F7F8FE;} + .d2-3556569361 .color-AB4{color:#EDF0FD;} + .d2-3556569361 .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}]]>trianglenonearrowdiamondfilled diamondcirclefilled circlecf onecf one requiredcf manycf many requiredabcdabcdabcdabcdabcdabcdabcdabcdabcdabcdabcd 11 111111 11 11 11 11 11 11 11 11 11 11 11 11 11 11 11 11 11 11 diff --git a/e2etests/testdata/regression/bold_edge_label/dagre/board.exp.json b/e2etests/testdata/regression/bold_edge_label/dagre/board.exp.json index 8d006d2040..dc3d8258f4 100644 --- a/e2etests/testdata/regression/bold_edge_label/dagre/board.exp.json +++ b/e2etests/testdata/regression/bold_edge_label/dagre/board.exp.json @@ -151,6 +151,7 @@ "labelHeight": 21, "labelPosition": "INSIDE_MIDDLE_CENTER", "labelPercentage": 0, + "link": "", "route": [ { "x": 52.5, @@ -198,6 +199,7 @@ "labelHeight": 21, "labelPosition": "INSIDE_MIDDLE_CENTER", "labelPercentage": 0, + "link": "", "route": [ { "x": 237.5, diff --git a/e2etests/testdata/regression/bold_edge_label/dagre/sketch.exp.svg b/e2etests/testdata/regression/bold_edge_label/dagre/sketch.exp.svg index afc9ff83a6..0c6a9d78c6 100644 --- a/e2etests/testdata/regression/bold_edge_label/dagre/sketch.exp.svg +++ b/e2etests/testdata/regression/bold_edge_label/dagre/sketch.exp.svg @@ -1,16 +1,16 @@ -xyz syncsync + .d2-1239787471 .fill-N1{fill:#0A0F25;} + .d2-1239787471 .fill-N2{fill:#676C7E;} + .d2-1239787471 .fill-N3{fill:#9499AB;} + .d2-1239787471 .fill-N4{fill:#CFD2DD;} + .d2-1239787471 .fill-N5{fill:#DEE1EB;} + .d2-1239787471 .fill-N6{fill:#EEF1F8;} + .d2-1239787471 .fill-N7{fill:#FFFFFF;} + .d2-1239787471 .fill-B1{fill:#0D32B2;} + .d2-1239787471 .fill-B2{fill:#0D32B2;} + .d2-1239787471 .fill-B3{fill:#E3E9FD;} + .d2-1239787471 .fill-B4{fill:#E3E9FD;} + .d2-1239787471 .fill-B5{fill:#EDF0FD;} + .d2-1239787471 .fill-B6{fill:#F7F8FE;} + .d2-1239787471 .fill-AA2{fill:#4A6FF3;} + .d2-1239787471 .fill-AA4{fill:#EDF0FD;} + .d2-1239787471 .fill-AA5{fill:#F7F8FE;} + .d2-1239787471 .fill-AB4{fill:#EDF0FD;} + .d2-1239787471 .fill-AB5{fill:#F7F8FE;} + .d2-1239787471 .stroke-N1{stroke:#0A0F25;} + .d2-1239787471 .stroke-N2{stroke:#676C7E;} + .d2-1239787471 .stroke-N3{stroke:#9499AB;} + .d2-1239787471 .stroke-N4{stroke:#CFD2DD;} + .d2-1239787471 .stroke-N5{stroke:#DEE1EB;} + .d2-1239787471 .stroke-N6{stroke:#EEF1F8;} + .d2-1239787471 .stroke-N7{stroke:#FFFFFF;} + .d2-1239787471 .stroke-B1{stroke:#0D32B2;} + .d2-1239787471 .stroke-B2{stroke:#0D32B2;} + .d2-1239787471 .stroke-B3{stroke:#E3E9FD;} + .d2-1239787471 .stroke-B4{stroke:#E3E9FD;} + .d2-1239787471 .stroke-B5{stroke:#EDF0FD;} + .d2-1239787471 .stroke-B6{stroke:#F7F8FE;} + .d2-1239787471 .stroke-AA2{stroke:#4A6FF3;} + .d2-1239787471 .stroke-AA4{stroke:#EDF0FD;} + .d2-1239787471 .stroke-AA5{stroke:#F7F8FE;} + .d2-1239787471 .stroke-AB4{stroke:#EDF0FD;} + .d2-1239787471 .stroke-AB5{stroke:#F7F8FE;} + .d2-1239787471 .background-color-N1{background-color:#0A0F25;} + .d2-1239787471 .background-color-N2{background-color:#676C7E;} + .d2-1239787471 .background-color-N3{background-color:#9499AB;} + .d2-1239787471 .background-color-N4{background-color:#CFD2DD;} + .d2-1239787471 .background-color-N5{background-color:#DEE1EB;} + .d2-1239787471 .background-color-N6{background-color:#EEF1F8;} + .d2-1239787471 .background-color-N7{background-color:#FFFFFF;} + .d2-1239787471 .background-color-B1{background-color:#0D32B2;} + .d2-1239787471 .background-color-B2{background-color:#0D32B2;} + .d2-1239787471 .background-color-B3{background-color:#E3E9FD;} + .d2-1239787471 .background-color-B4{background-color:#E3E9FD;} + .d2-1239787471 .background-color-B5{background-color:#EDF0FD;} + .d2-1239787471 .background-color-B6{background-color:#F7F8FE;} + .d2-1239787471 .background-color-AA2{background-color:#4A6FF3;} + .d2-1239787471 .background-color-AA4{background-color:#EDF0FD;} + .d2-1239787471 .background-color-AA5{background-color:#F7F8FE;} + .d2-1239787471 .background-color-AB4{background-color:#EDF0FD;} + .d2-1239787471 .background-color-AB5{background-color:#F7F8FE;} + .d2-1239787471 .color-N1{color:#0A0F25;} + .d2-1239787471 .color-N2{color:#676C7E;} + .d2-1239787471 .color-N3{color:#9499AB;} + .d2-1239787471 .color-N4{color:#CFD2DD;} + .d2-1239787471 .color-N5{color:#DEE1EB;} + .d2-1239787471 .color-N6{color:#EEF1F8;} + .d2-1239787471 .color-N7{color:#FFFFFF;} + .d2-1239787471 .color-B1{color:#0D32B2;} + .d2-1239787471 .color-B2{color:#0D32B2;} + .d2-1239787471 .color-B3{color:#E3E9FD;} + .d2-1239787471 .color-B4{color:#E3E9FD;} + .d2-1239787471 .color-B5{color:#EDF0FD;} + .d2-1239787471 .color-B6{color:#F7F8FE;} + .d2-1239787471 .color-AA2{color:#4A6FF3;} + .d2-1239787471 .color-AA4{color:#EDF0FD;} + .d2-1239787471 .color-AA5{color:#F7F8FE;} + .d2-1239787471 .color-AB4{color:#EDF0FD;} + .d2-1239787471 .color-AB5{color:#F7F8FE;}.appendix text.text{fill:#0A0F25}.md{--color-fg-default:#0A0F25;--color-fg-muted:#676C7E;--color-fg-subtle:#9499AB;--color-canvas-default:#FFFFFF;--color-canvas-subtle:#EEF1F8;--color-border-default:#0D32B2;--color-border-muted:#0D32B2;--color-neutral-muted:#EEF1F8;--color-accent-fg:#0D32B2;--color-accent-emphasis:#0D32B2;--color-attention-subtle:#676C7E;--color-danger-fg:red;}.sketch-overlay-B1{fill:url(#streaks-darker);mix-blend-mode:lighten}.sketch-overlay-B2{fill:url(#streaks-darker);mix-blend-mode:lighten}.sketch-overlay-B3{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-B4{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-B5{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-B6{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-AA2{fill:url(#streaks-dark);mix-blend-mode:overlay}.sketch-overlay-AA4{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-AA5{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-AB4{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-AB5{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-N1{fill:url(#streaks-darker);mix-blend-mode:lighten}.sketch-overlay-N2{fill:url(#streaks-dark);mix-blend-mode:overlay}.sketch-overlay-N3{fill:url(#streaks-normal);mix-blend-mode:color-burn}.sketch-overlay-N4{fill:url(#streaks-normal);mix-blend-mode:color-burn}.sketch-overlay-N5{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-N6{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-N7{fill:url(#streaks-bright);mix-blend-mode:darken}.light-code{display: block}.dark-code{display: none}]]>xyz syncsync diff --git a/e2etests/testdata/regression/bold_edge_label/elk/board.exp.json b/e2etests/testdata/regression/bold_edge_label/elk/board.exp.json index f6b081610a..e4ac7aebbf 100644 --- a/e2etests/testdata/regression/bold_edge_label/elk/board.exp.json +++ b/e2etests/testdata/regression/bold_edge_label/elk/board.exp.json @@ -151,6 +151,7 @@ "labelHeight": 21, "labelPosition": "INSIDE_MIDDLE_CENTER", "labelPercentage": 0, + "link": "", "route": [ { "x": 65, @@ -189,6 +190,7 @@ "labelHeight": 21, "labelPosition": "INSIDE_MIDDLE_CENTER", "labelPercentage": 0, + "link": "", "route": [ { "x": 290, diff --git a/e2etests/testdata/regression/bold_edge_label/elk/sketch.exp.svg b/e2etests/testdata/regression/bold_edge_label/elk/sketch.exp.svg index eed27f5140..705578e2a4 100644 --- a/e2etests/testdata/regression/bold_edge_label/elk/sketch.exp.svg +++ b/e2etests/testdata/regression/bold_edge_label/elk/sketch.exp.svg @@ -1,16 +1,16 @@ -xyz syncsync + .d2-2828377911 .fill-N1{fill:#0A0F25;} + .d2-2828377911 .fill-N2{fill:#676C7E;} + .d2-2828377911 .fill-N3{fill:#9499AB;} + .d2-2828377911 .fill-N4{fill:#CFD2DD;} + .d2-2828377911 .fill-N5{fill:#DEE1EB;} + .d2-2828377911 .fill-N6{fill:#EEF1F8;} + .d2-2828377911 .fill-N7{fill:#FFFFFF;} + .d2-2828377911 .fill-B1{fill:#0D32B2;} + .d2-2828377911 .fill-B2{fill:#0D32B2;} + .d2-2828377911 .fill-B3{fill:#E3E9FD;} + .d2-2828377911 .fill-B4{fill:#E3E9FD;} + .d2-2828377911 .fill-B5{fill:#EDF0FD;} + .d2-2828377911 .fill-B6{fill:#F7F8FE;} + .d2-2828377911 .fill-AA2{fill:#4A6FF3;} + .d2-2828377911 .fill-AA4{fill:#EDF0FD;} + .d2-2828377911 .fill-AA5{fill:#F7F8FE;} + .d2-2828377911 .fill-AB4{fill:#EDF0FD;} + .d2-2828377911 .fill-AB5{fill:#F7F8FE;} + .d2-2828377911 .stroke-N1{stroke:#0A0F25;} + .d2-2828377911 .stroke-N2{stroke:#676C7E;} + .d2-2828377911 .stroke-N3{stroke:#9499AB;} + .d2-2828377911 .stroke-N4{stroke:#CFD2DD;} + .d2-2828377911 .stroke-N5{stroke:#DEE1EB;} + .d2-2828377911 .stroke-N6{stroke:#EEF1F8;} + .d2-2828377911 .stroke-N7{stroke:#FFFFFF;} + .d2-2828377911 .stroke-B1{stroke:#0D32B2;} + .d2-2828377911 .stroke-B2{stroke:#0D32B2;} + .d2-2828377911 .stroke-B3{stroke:#E3E9FD;} + .d2-2828377911 .stroke-B4{stroke:#E3E9FD;} + .d2-2828377911 .stroke-B5{stroke:#EDF0FD;} + .d2-2828377911 .stroke-B6{stroke:#F7F8FE;} + .d2-2828377911 .stroke-AA2{stroke:#4A6FF3;} + .d2-2828377911 .stroke-AA4{stroke:#EDF0FD;} + .d2-2828377911 .stroke-AA5{stroke:#F7F8FE;} + .d2-2828377911 .stroke-AB4{stroke:#EDF0FD;} + .d2-2828377911 .stroke-AB5{stroke:#F7F8FE;} + .d2-2828377911 .background-color-N1{background-color:#0A0F25;} + .d2-2828377911 .background-color-N2{background-color:#676C7E;} + .d2-2828377911 .background-color-N3{background-color:#9499AB;} + .d2-2828377911 .background-color-N4{background-color:#CFD2DD;} + .d2-2828377911 .background-color-N5{background-color:#DEE1EB;} + .d2-2828377911 .background-color-N6{background-color:#EEF1F8;} + .d2-2828377911 .background-color-N7{background-color:#FFFFFF;} + .d2-2828377911 .background-color-B1{background-color:#0D32B2;} + .d2-2828377911 .background-color-B2{background-color:#0D32B2;} + .d2-2828377911 .background-color-B3{background-color:#E3E9FD;} + .d2-2828377911 .background-color-B4{background-color:#E3E9FD;} + .d2-2828377911 .background-color-B5{background-color:#EDF0FD;} + .d2-2828377911 .background-color-B6{background-color:#F7F8FE;} + .d2-2828377911 .background-color-AA2{background-color:#4A6FF3;} + .d2-2828377911 .background-color-AA4{background-color:#EDF0FD;} + .d2-2828377911 .background-color-AA5{background-color:#F7F8FE;} + .d2-2828377911 .background-color-AB4{background-color:#EDF0FD;} + .d2-2828377911 .background-color-AB5{background-color:#F7F8FE;} + .d2-2828377911 .color-N1{color:#0A0F25;} + .d2-2828377911 .color-N2{color:#676C7E;} + .d2-2828377911 .color-N3{color:#9499AB;} + .d2-2828377911 .color-N4{color:#CFD2DD;} + .d2-2828377911 .color-N5{color:#DEE1EB;} + .d2-2828377911 .color-N6{color:#EEF1F8;} + .d2-2828377911 .color-N7{color:#FFFFFF;} + .d2-2828377911 .color-B1{color:#0D32B2;} + .d2-2828377911 .color-B2{color:#0D32B2;} + .d2-2828377911 .color-B3{color:#E3E9FD;} + .d2-2828377911 .color-B4{color:#E3E9FD;} + .d2-2828377911 .color-B5{color:#EDF0FD;} + .d2-2828377911 .color-B6{color:#F7F8FE;} + .d2-2828377911 .color-AA2{color:#4A6FF3;} + .d2-2828377911 .color-AA4{color:#EDF0FD;} + .d2-2828377911 .color-AA5{color:#F7F8FE;} + .d2-2828377911 .color-AB4{color:#EDF0FD;} + .d2-2828377911 .color-AB5{color:#F7F8FE;}.appendix text.text{fill:#0A0F25}.md{--color-fg-default:#0A0F25;--color-fg-muted:#676C7E;--color-fg-subtle:#9499AB;--color-canvas-default:#FFFFFF;--color-canvas-subtle:#EEF1F8;--color-border-default:#0D32B2;--color-border-muted:#0D32B2;--color-neutral-muted:#EEF1F8;--color-accent-fg:#0D32B2;--color-accent-emphasis:#0D32B2;--color-attention-subtle:#676C7E;--color-danger-fg:red;}.sketch-overlay-B1{fill:url(#streaks-darker);mix-blend-mode:lighten}.sketch-overlay-B2{fill:url(#streaks-darker);mix-blend-mode:lighten}.sketch-overlay-B3{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-B4{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-B5{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-B6{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-AA2{fill:url(#streaks-dark);mix-blend-mode:overlay}.sketch-overlay-AA4{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-AA5{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-AB4{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-AB5{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-N1{fill:url(#streaks-darker);mix-blend-mode:lighten}.sketch-overlay-N2{fill:url(#streaks-dark);mix-blend-mode:overlay}.sketch-overlay-N3{fill:url(#streaks-normal);mix-blend-mode:color-burn}.sketch-overlay-N4{fill:url(#streaks-normal);mix-blend-mode:color-burn}.sketch-overlay-N5{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-N6{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-N7{fill:url(#streaks-bright);mix-blend-mode:darken}.light-code{display: block}.dark-code{display: none}]]>xyz syncsync diff --git a/e2etests/testdata/regression/class_font_style_sequence/dagre/board.exp.json b/e2etests/testdata/regression/class_font_style_sequence/dagre/board.exp.json index 0007f51d6c..caa0076667 100644 --- a/e2etests/testdata/regression/class_font_style_sequence/dagre/board.exp.json +++ b/e2etests/testdata/regression/class_font_style_sequence/dagre/board.exp.json @@ -72,6 +72,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 70.5, diff --git a/e2etests/testdata/regression/class_font_style_sequence/dagre/sketch.exp.svg b/e2etests/testdata/regression/class_font_style_sequence/dagre/sketch.exp.svg index b1e1527f60..b5a21d61bd 100644 --- a/e2etests/testdata/regression/class_font_style_sequence/dagre/sketch.exp.svg +++ b/e2etests/testdata/regression/class_font_style_sequence/dagre/sketch.exp.svg @@ -1,9 +1,9 @@ -a + .d2-4091838784 .fill-N1{fill:#0A0F25;} + .d2-4091838784 .fill-N2{fill:#676C7E;} + .d2-4091838784 .fill-N3{fill:#9499AB;} + .d2-4091838784 .fill-N4{fill:#CFD2DD;} + .d2-4091838784 .fill-N5{fill:#DEE1EB;} + .d2-4091838784 .fill-N6{fill:#EEF1F8;} + .d2-4091838784 .fill-N7{fill:#FFFFFF;} + .d2-4091838784 .fill-B1{fill:#0D32B2;} + .d2-4091838784 .fill-B2{fill:#0D32B2;} + .d2-4091838784 .fill-B3{fill:#E3E9FD;} + .d2-4091838784 .fill-B4{fill:#E3E9FD;} + .d2-4091838784 .fill-B5{fill:#EDF0FD;} + .d2-4091838784 .fill-B6{fill:#F7F8FE;} + .d2-4091838784 .fill-AA2{fill:#4A6FF3;} + .d2-4091838784 .fill-AA4{fill:#EDF0FD;} + .d2-4091838784 .fill-AA5{fill:#F7F8FE;} + .d2-4091838784 .fill-AB4{fill:#EDF0FD;} + .d2-4091838784 .fill-AB5{fill:#F7F8FE;} + .d2-4091838784 .stroke-N1{stroke:#0A0F25;} + .d2-4091838784 .stroke-N2{stroke:#676C7E;} + .d2-4091838784 .stroke-N3{stroke:#9499AB;} + .d2-4091838784 .stroke-N4{stroke:#CFD2DD;} + .d2-4091838784 .stroke-N5{stroke:#DEE1EB;} + .d2-4091838784 .stroke-N6{stroke:#EEF1F8;} + .d2-4091838784 .stroke-N7{stroke:#FFFFFF;} + .d2-4091838784 .stroke-B1{stroke:#0D32B2;} + .d2-4091838784 .stroke-B2{stroke:#0D32B2;} + .d2-4091838784 .stroke-B3{stroke:#E3E9FD;} + .d2-4091838784 .stroke-B4{stroke:#E3E9FD;} + .d2-4091838784 .stroke-B5{stroke:#EDF0FD;} + .d2-4091838784 .stroke-B6{stroke:#F7F8FE;} + .d2-4091838784 .stroke-AA2{stroke:#4A6FF3;} + .d2-4091838784 .stroke-AA4{stroke:#EDF0FD;} + .d2-4091838784 .stroke-AA5{stroke:#F7F8FE;} + .d2-4091838784 .stroke-AB4{stroke:#EDF0FD;} + .d2-4091838784 .stroke-AB5{stroke:#F7F8FE;} + .d2-4091838784 .background-color-N1{background-color:#0A0F25;} + .d2-4091838784 .background-color-N2{background-color:#676C7E;} + .d2-4091838784 .background-color-N3{background-color:#9499AB;} + .d2-4091838784 .background-color-N4{background-color:#CFD2DD;} + .d2-4091838784 .background-color-N5{background-color:#DEE1EB;} + .d2-4091838784 .background-color-N6{background-color:#EEF1F8;} + .d2-4091838784 .background-color-N7{background-color:#FFFFFF;} + .d2-4091838784 .background-color-B1{background-color:#0D32B2;} + .d2-4091838784 .background-color-B2{background-color:#0D32B2;} + .d2-4091838784 .background-color-B3{background-color:#E3E9FD;} + .d2-4091838784 .background-color-B4{background-color:#E3E9FD;} + .d2-4091838784 .background-color-B5{background-color:#EDF0FD;} + .d2-4091838784 .background-color-B6{background-color:#F7F8FE;} + .d2-4091838784 .background-color-AA2{background-color:#4A6FF3;} + .d2-4091838784 .background-color-AA4{background-color:#EDF0FD;} + .d2-4091838784 .background-color-AA5{background-color:#F7F8FE;} + .d2-4091838784 .background-color-AB4{background-color:#EDF0FD;} + .d2-4091838784 .background-color-AB5{background-color:#F7F8FE;} + .d2-4091838784 .color-N1{color:#0A0F25;} + .d2-4091838784 .color-N2{color:#676C7E;} + .d2-4091838784 .color-N3{color:#9499AB;} + .d2-4091838784 .color-N4{color:#CFD2DD;} + .d2-4091838784 .color-N5{color:#DEE1EB;} + .d2-4091838784 .color-N6{color:#EEF1F8;} + .d2-4091838784 .color-N7{color:#FFFFFF;} + .d2-4091838784 .color-B1{color:#0D32B2;} + .d2-4091838784 .color-B2{color:#0D32B2;} + .d2-4091838784 .color-B3{color:#E3E9FD;} + .d2-4091838784 .color-B4{color:#E3E9FD;} + .d2-4091838784 .color-B5{color:#EDF0FD;} + .d2-4091838784 .color-B6{color:#F7F8FE;} + .d2-4091838784 .color-AA2{color:#4A6FF3;} + .d2-4091838784 .color-AA4{color:#EDF0FD;} + .d2-4091838784 .color-AA5{color:#F7F8FE;} + .d2-4091838784 .color-AB4{color:#EDF0FD;} + .d2-4091838784 .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 \ No newline at end of file diff --git a/e2etests/testdata/regression/class_font_style_sequence/elk/board.exp.json b/e2etests/testdata/regression/class_font_style_sequence/elk/board.exp.json index 0007f51d6c..caa0076667 100644 --- a/e2etests/testdata/regression/class_font_style_sequence/elk/board.exp.json +++ b/e2etests/testdata/regression/class_font_style_sequence/elk/board.exp.json @@ -72,6 +72,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 70.5, diff --git a/e2etests/testdata/regression/class_font_style_sequence/elk/sketch.exp.svg b/e2etests/testdata/regression/class_font_style_sequence/elk/sketch.exp.svg index b1e1527f60..b5a21d61bd 100644 --- a/e2etests/testdata/regression/class_font_style_sequence/elk/sketch.exp.svg +++ b/e2etests/testdata/regression/class_font_style_sequence/elk/sketch.exp.svg @@ -1,9 +1,9 @@ -a + .d2-4091838784 .fill-N1{fill:#0A0F25;} + .d2-4091838784 .fill-N2{fill:#676C7E;} + .d2-4091838784 .fill-N3{fill:#9499AB;} + .d2-4091838784 .fill-N4{fill:#CFD2DD;} + .d2-4091838784 .fill-N5{fill:#DEE1EB;} + .d2-4091838784 .fill-N6{fill:#EEF1F8;} + .d2-4091838784 .fill-N7{fill:#FFFFFF;} + .d2-4091838784 .fill-B1{fill:#0D32B2;} + .d2-4091838784 .fill-B2{fill:#0D32B2;} + .d2-4091838784 .fill-B3{fill:#E3E9FD;} + .d2-4091838784 .fill-B4{fill:#E3E9FD;} + .d2-4091838784 .fill-B5{fill:#EDF0FD;} + .d2-4091838784 .fill-B6{fill:#F7F8FE;} + .d2-4091838784 .fill-AA2{fill:#4A6FF3;} + .d2-4091838784 .fill-AA4{fill:#EDF0FD;} + .d2-4091838784 .fill-AA5{fill:#F7F8FE;} + .d2-4091838784 .fill-AB4{fill:#EDF0FD;} + .d2-4091838784 .fill-AB5{fill:#F7F8FE;} + .d2-4091838784 .stroke-N1{stroke:#0A0F25;} + .d2-4091838784 .stroke-N2{stroke:#676C7E;} + .d2-4091838784 .stroke-N3{stroke:#9499AB;} + .d2-4091838784 .stroke-N4{stroke:#CFD2DD;} + .d2-4091838784 .stroke-N5{stroke:#DEE1EB;} + .d2-4091838784 .stroke-N6{stroke:#EEF1F8;} + .d2-4091838784 .stroke-N7{stroke:#FFFFFF;} + .d2-4091838784 .stroke-B1{stroke:#0D32B2;} + .d2-4091838784 .stroke-B2{stroke:#0D32B2;} + .d2-4091838784 .stroke-B3{stroke:#E3E9FD;} + .d2-4091838784 .stroke-B4{stroke:#E3E9FD;} + .d2-4091838784 .stroke-B5{stroke:#EDF0FD;} + .d2-4091838784 .stroke-B6{stroke:#F7F8FE;} + .d2-4091838784 .stroke-AA2{stroke:#4A6FF3;} + .d2-4091838784 .stroke-AA4{stroke:#EDF0FD;} + .d2-4091838784 .stroke-AA5{stroke:#F7F8FE;} + .d2-4091838784 .stroke-AB4{stroke:#EDF0FD;} + .d2-4091838784 .stroke-AB5{stroke:#F7F8FE;} + .d2-4091838784 .background-color-N1{background-color:#0A0F25;} + .d2-4091838784 .background-color-N2{background-color:#676C7E;} + .d2-4091838784 .background-color-N3{background-color:#9499AB;} + .d2-4091838784 .background-color-N4{background-color:#CFD2DD;} + .d2-4091838784 .background-color-N5{background-color:#DEE1EB;} + .d2-4091838784 .background-color-N6{background-color:#EEF1F8;} + .d2-4091838784 .background-color-N7{background-color:#FFFFFF;} + .d2-4091838784 .background-color-B1{background-color:#0D32B2;} + .d2-4091838784 .background-color-B2{background-color:#0D32B2;} + .d2-4091838784 .background-color-B3{background-color:#E3E9FD;} + .d2-4091838784 .background-color-B4{background-color:#E3E9FD;} + .d2-4091838784 .background-color-B5{background-color:#EDF0FD;} + .d2-4091838784 .background-color-B6{background-color:#F7F8FE;} + .d2-4091838784 .background-color-AA2{background-color:#4A6FF3;} + .d2-4091838784 .background-color-AA4{background-color:#EDF0FD;} + .d2-4091838784 .background-color-AA5{background-color:#F7F8FE;} + .d2-4091838784 .background-color-AB4{background-color:#EDF0FD;} + .d2-4091838784 .background-color-AB5{background-color:#F7F8FE;} + .d2-4091838784 .color-N1{color:#0A0F25;} + .d2-4091838784 .color-N2{color:#676C7E;} + .d2-4091838784 .color-N3{color:#9499AB;} + .d2-4091838784 .color-N4{color:#CFD2DD;} + .d2-4091838784 .color-N5{color:#DEE1EB;} + .d2-4091838784 .color-N6{color:#EEF1F8;} + .d2-4091838784 .color-N7{color:#FFFFFF;} + .d2-4091838784 .color-B1{color:#0D32B2;} + .d2-4091838784 .color-B2{color:#0D32B2;} + .d2-4091838784 .color-B3{color:#E3E9FD;} + .d2-4091838784 .color-B4{color:#E3E9FD;} + .d2-4091838784 .color-B5{color:#EDF0FD;} + .d2-4091838784 .color-B6{color:#F7F8FE;} + .d2-4091838784 .color-AA2{color:#4A6FF3;} + .d2-4091838784 .color-AA4{color:#EDF0FD;} + .d2-4091838784 .color-AA5{color:#F7F8FE;} + .d2-4091838784 .color-AB4{color:#EDF0FD;} + .d2-4091838784 .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 \ No newline at end of file diff --git a/e2etests/testdata/regression/code_font_size/dagre/board.exp.json b/e2etests/testdata/regression/code_font_size/dagre/board.exp.json index e05ad58d59..0c8301f843 100644 --- a/e2etests/testdata/regression/code_font_size/dagre/board.exp.json +++ b/e2etests/testdata/regression/code_font_size/dagre/board.exp.json @@ -191,6 +191,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 114, @@ -238,6 +239,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 114, diff --git a/e2etests/testdata/regression/code_font_size/dagre/sketch.exp.svg b/e2etests/testdata/regression/code_font_size/dagre/sketch.exp.svg index baa96e3b34..cbfd2ce12b 100644 --- a/e2etests/testdata/regression/code_font_size/dagre/sketch.exp.svg +++ b/e2etests/testdata/regression/code_font_size/dagre/sketch.exp.svg @@ -1,23 +1,23 @@ -DatayxTesting 001:        AAA + .d2-747351070 .fill-N1{fill:#0A0F25;} + .d2-747351070 .fill-N2{fill:#676C7E;} + .d2-747351070 .fill-N3{fill:#9499AB;} + .d2-747351070 .fill-N4{fill:#CFD2DD;} + .d2-747351070 .fill-N5{fill:#DEE1EB;} + .d2-747351070 .fill-N6{fill:#EEF1F8;} + .d2-747351070 .fill-N7{fill:#FFFFFF;} + .d2-747351070 .fill-B1{fill:#0D32B2;} + .d2-747351070 .fill-B2{fill:#0D32B2;} + .d2-747351070 .fill-B3{fill:#E3E9FD;} + .d2-747351070 .fill-B4{fill:#E3E9FD;} + .d2-747351070 .fill-B5{fill:#EDF0FD;} + .d2-747351070 .fill-B6{fill:#F7F8FE;} + .d2-747351070 .fill-AA2{fill:#4A6FF3;} + .d2-747351070 .fill-AA4{fill:#EDF0FD;} + .d2-747351070 .fill-AA5{fill:#F7F8FE;} + .d2-747351070 .fill-AB4{fill:#EDF0FD;} + .d2-747351070 .fill-AB5{fill:#F7F8FE;} + .d2-747351070 .stroke-N1{stroke:#0A0F25;} + .d2-747351070 .stroke-N2{stroke:#676C7E;} + .d2-747351070 .stroke-N3{stroke:#9499AB;} + .d2-747351070 .stroke-N4{stroke:#CFD2DD;} + .d2-747351070 .stroke-N5{stroke:#DEE1EB;} + .d2-747351070 .stroke-N6{stroke:#EEF1F8;} + .d2-747351070 .stroke-N7{stroke:#FFFFFF;} + .d2-747351070 .stroke-B1{stroke:#0D32B2;} + .d2-747351070 .stroke-B2{stroke:#0D32B2;} + .d2-747351070 .stroke-B3{stroke:#E3E9FD;} + .d2-747351070 .stroke-B4{stroke:#E3E9FD;} + .d2-747351070 .stroke-B5{stroke:#EDF0FD;} + .d2-747351070 .stroke-B6{stroke:#F7F8FE;} + .d2-747351070 .stroke-AA2{stroke:#4A6FF3;} + .d2-747351070 .stroke-AA4{stroke:#EDF0FD;} + .d2-747351070 .stroke-AA5{stroke:#F7F8FE;} + .d2-747351070 .stroke-AB4{stroke:#EDF0FD;} + .d2-747351070 .stroke-AB5{stroke:#F7F8FE;} + .d2-747351070 .background-color-N1{background-color:#0A0F25;} + .d2-747351070 .background-color-N2{background-color:#676C7E;} + .d2-747351070 .background-color-N3{background-color:#9499AB;} + .d2-747351070 .background-color-N4{background-color:#CFD2DD;} + .d2-747351070 .background-color-N5{background-color:#DEE1EB;} + .d2-747351070 .background-color-N6{background-color:#EEF1F8;} + .d2-747351070 .background-color-N7{background-color:#FFFFFF;} + .d2-747351070 .background-color-B1{background-color:#0D32B2;} + .d2-747351070 .background-color-B2{background-color:#0D32B2;} + .d2-747351070 .background-color-B3{background-color:#E3E9FD;} + .d2-747351070 .background-color-B4{background-color:#E3E9FD;} + .d2-747351070 .background-color-B5{background-color:#EDF0FD;} + .d2-747351070 .background-color-B6{background-color:#F7F8FE;} + .d2-747351070 .background-color-AA2{background-color:#4A6FF3;} + .d2-747351070 .background-color-AA4{background-color:#EDF0FD;} + .d2-747351070 .background-color-AA5{background-color:#F7F8FE;} + .d2-747351070 .background-color-AB4{background-color:#EDF0FD;} + .d2-747351070 .background-color-AB5{background-color:#F7F8FE;} + .d2-747351070 .color-N1{color:#0A0F25;} + .d2-747351070 .color-N2{color:#676C7E;} + .d2-747351070 .color-N3{color:#9499AB;} + .d2-747351070 .color-N4{color:#CFD2DD;} + .d2-747351070 .color-N5{color:#DEE1EB;} + .d2-747351070 .color-N6{color:#EEF1F8;} + .d2-747351070 .color-N7{color:#FFFFFF;} + .d2-747351070 .color-B1{color:#0D32B2;} + .d2-747351070 .color-B2{color:#0D32B2;} + .d2-747351070 .color-B3{color:#E3E9FD;} + .d2-747351070 .color-B4{color:#E3E9FD;} + .d2-747351070 .color-B5{color:#EDF0FD;} + .d2-747351070 .color-B6{color:#F7F8FE;} + .d2-747351070 .color-AA2{color:#4A6FF3;} + .d2-747351070 .color-AA4{color:#EDF0FD;} + .d2-747351070 .color-AA5{color:#F7F8FE;} + .d2-747351070 .color-AB4{color:#EDF0FD;} + .d2-747351070 .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}]]>DatayxTesting 001:        AAA Testing 002:        BBB Testing 003:        CCC Testing 004:        DDD @@ -131,7 +131,7 @@ Testing 012:        LLL Testing 013:        MMM Testing 014:        NNN -Testing 015:        OOO +Testing 015:        OOO diff --git a/e2etests/testdata/regression/code_font_size/elk/board.exp.json b/e2etests/testdata/regression/code_font_size/elk/board.exp.json index d8c2567aed..774e91c218 100644 --- a/e2etests/testdata/regression/code_font_size/elk/board.exp.json +++ b/e2etests/testdata/regression/code_font_size/elk/board.exp.json @@ -191,6 +191,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 136, @@ -229,6 +230,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 136, diff --git a/e2etests/testdata/regression/code_font_size/elk/sketch.exp.svg b/e2etests/testdata/regression/code_font_size/elk/sketch.exp.svg index a310f85405..a844bcb515 100644 --- a/e2etests/testdata/regression/code_font_size/elk/sketch.exp.svg +++ b/e2etests/testdata/regression/code_font_size/elk/sketch.exp.svg @@ -1,23 +1,23 @@ -DatayxTesting 001:        AAA + .d2-119284118 .fill-N1{fill:#0A0F25;} + .d2-119284118 .fill-N2{fill:#676C7E;} + .d2-119284118 .fill-N3{fill:#9499AB;} + .d2-119284118 .fill-N4{fill:#CFD2DD;} + .d2-119284118 .fill-N5{fill:#DEE1EB;} + .d2-119284118 .fill-N6{fill:#EEF1F8;} + .d2-119284118 .fill-N7{fill:#FFFFFF;} + .d2-119284118 .fill-B1{fill:#0D32B2;} + .d2-119284118 .fill-B2{fill:#0D32B2;} + .d2-119284118 .fill-B3{fill:#E3E9FD;} + .d2-119284118 .fill-B4{fill:#E3E9FD;} + .d2-119284118 .fill-B5{fill:#EDF0FD;} + .d2-119284118 .fill-B6{fill:#F7F8FE;} + .d2-119284118 .fill-AA2{fill:#4A6FF3;} + .d2-119284118 .fill-AA4{fill:#EDF0FD;} + .d2-119284118 .fill-AA5{fill:#F7F8FE;} + .d2-119284118 .fill-AB4{fill:#EDF0FD;} + .d2-119284118 .fill-AB5{fill:#F7F8FE;} + .d2-119284118 .stroke-N1{stroke:#0A0F25;} + .d2-119284118 .stroke-N2{stroke:#676C7E;} + .d2-119284118 .stroke-N3{stroke:#9499AB;} + .d2-119284118 .stroke-N4{stroke:#CFD2DD;} + .d2-119284118 .stroke-N5{stroke:#DEE1EB;} + .d2-119284118 .stroke-N6{stroke:#EEF1F8;} + .d2-119284118 .stroke-N7{stroke:#FFFFFF;} + .d2-119284118 .stroke-B1{stroke:#0D32B2;} + .d2-119284118 .stroke-B2{stroke:#0D32B2;} + .d2-119284118 .stroke-B3{stroke:#E3E9FD;} + .d2-119284118 .stroke-B4{stroke:#E3E9FD;} + .d2-119284118 .stroke-B5{stroke:#EDF0FD;} + .d2-119284118 .stroke-B6{stroke:#F7F8FE;} + .d2-119284118 .stroke-AA2{stroke:#4A6FF3;} + .d2-119284118 .stroke-AA4{stroke:#EDF0FD;} + .d2-119284118 .stroke-AA5{stroke:#F7F8FE;} + .d2-119284118 .stroke-AB4{stroke:#EDF0FD;} + .d2-119284118 .stroke-AB5{stroke:#F7F8FE;} + .d2-119284118 .background-color-N1{background-color:#0A0F25;} + .d2-119284118 .background-color-N2{background-color:#676C7E;} + .d2-119284118 .background-color-N3{background-color:#9499AB;} + .d2-119284118 .background-color-N4{background-color:#CFD2DD;} + .d2-119284118 .background-color-N5{background-color:#DEE1EB;} + .d2-119284118 .background-color-N6{background-color:#EEF1F8;} + .d2-119284118 .background-color-N7{background-color:#FFFFFF;} + .d2-119284118 .background-color-B1{background-color:#0D32B2;} + .d2-119284118 .background-color-B2{background-color:#0D32B2;} + .d2-119284118 .background-color-B3{background-color:#E3E9FD;} + .d2-119284118 .background-color-B4{background-color:#E3E9FD;} + .d2-119284118 .background-color-B5{background-color:#EDF0FD;} + .d2-119284118 .background-color-B6{background-color:#F7F8FE;} + .d2-119284118 .background-color-AA2{background-color:#4A6FF3;} + .d2-119284118 .background-color-AA4{background-color:#EDF0FD;} + .d2-119284118 .background-color-AA5{background-color:#F7F8FE;} + .d2-119284118 .background-color-AB4{background-color:#EDF0FD;} + .d2-119284118 .background-color-AB5{background-color:#F7F8FE;} + .d2-119284118 .color-N1{color:#0A0F25;} + .d2-119284118 .color-N2{color:#676C7E;} + .d2-119284118 .color-N3{color:#9499AB;} + .d2-119284118 .color-N4{color:#CFD2DD;} + .d2-119284118 .color-N5{color:#DEE1EB;} + .d2-119284118 .color-N6{color:#EEF1F8;} + .d2-119284118 .color-N7{color:#FFFFFF;} + .d2-119284118 .color-B1{color:#0D32B2;} + .d2-119284118 .color-B2{color:#0D32B2;} + .d2-119284118 .color-B3{color:#E3E9FD;} + .d2-119284118 .color-B4{color:#E3E9FD;} + .d2-119284118 .color-B5{color:#EDF0FD;} + .d2-119284118 .color-B6{color:#F7F8FE;} + .d2-119284118 .color-AA2{color:#4A6FF3;} + .d2-119284118 .color-AA4{color:#EDF0FD;} + .d2-119284118 .color-AA5{color:#F7F8FE;} + .d2-119284118 .color-AB4{color:#EDF0FD;} + .d2-119284118 .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}]]>DatayxTesting 001:        AAA Testing 002:        BBB Testing 003:        CCC Testing 004:        DDD @@ -131,7 +131,7 @@ Testing 012:        LLL Testing 013:        MMM Testing 014:        NNN -Testing 015:        OOO +Testing 015:        OOO diff --git a/e2etests/testdata/regression/dagre-disconnect/dagre/board.exp.json b/e2etests/testdata/regression/dagre-disconnect/dagre/board.exp.json index ea2e876a18..5d32ffb9e1 100644 --- a/e2etests/testdata/regression/dagre-disconnect/dagre/board.exp.json +++ b/e2etests/testdata/regression/dagre-disconnect/dagre/board.exp.json @@ -1094,6 +1094,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 85.5, @@ -1177,6 +1178,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 197, @@ -1260,6 +1262,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 1173.5, @@ -1343,6 +1346,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 827.25, @@ -1426,6 +1430,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 309, @@ -1509,6 +1514,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 1060, @@ -1592,6 +1598,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 650.5, @@ -1663,6 +1670,7 @@ "labelHeight": 69, "labelPosition": "INSIDE_MIDDLE_CENTER", "labelPercentage": 0, + "link": "", "route": [ { "x": 479.5, diff --git a/e2etests/testdata/regression/dagre-disconnect/dagre/sketch.exp.svg b/e2etests/testdata/regression/dagre-disconnect/dagre/sketch.exp.svg index 15f92534ae..6c38b71b64 100644 --- a/e2etests/testdata/regression/dagre-disconnect/dagre/sketch.exp.svg +++ b/e2etests/testdata/regression/dagre-disconnect/dagre/sketch.exp.svg @@ -1,23 +1,23 @@ -askuhykfnsomsczrgtigsjjcfi 1234 + .d2-943304765 .fill-N1{fill:#0A0F25;} + .d2-943304765 .fill-N2{fill:#676C7E;} + .d2-943304765 .fill-N3{fill:#9499AB;} + .d2-943304765 .fill-N4{fill:#CFD2DD;} + .d2-943304765 .fill-N5{fill:#DEE1EB;} + .d2-943304765 .fill-N6{fill:#EEF1F8;} + .d2-943304765 .fill-N7{fill:#FFFFFF;} + .d2-943304765 .fill-B1{fill:#0D32B2;} + .d2-943304765 .fill-B2{fill:#0D32B2;} + .d2-943304765 .fill-B3{fill:#E3E9FD;} + .d2-943304765 .fill-B4{fill:#E3E9FD;} + .d2-943304765 .fill-B5{fill:#EDF0FD;} + .d2-943304765 .fill-B6{fill:#F7F8FE;} + .d2-943304765 .fill-AA2{fill:#4A6FF3;} + .d2-943304765 .fill-AA4{fill:#EDF0FD;} + .d2-943304765 .fill-AA5{fill:#F7F8FE;} + .d2-943304765 .fill-AB4{fill:#EDF0FD;} + .d2-943304765 .fill-AB5{fill:#F7F8FE;} + .d2-943304765 .stroke-N1{stroke:#0A0F25;} + .d2-943304765 .stroke-N2{stroke:#676C7E;} + .d2-943304765 .stroke-N3{stroke:#9499AB;} + .d2-943304765 .stroke-N4{stroke:#CFD2DD;} + .d2-943304765 .stroke-N5{stroke:#DEE1EB;} + .d2-943304765 .stroke-N6{stroke:#EEF1F8;} + .d2-943304765 .stroke-N7{stroke:#FFFFFF;} + .d2-943304765 .stroke-B1{stroke:#0D32B2;} + .d2-943304765 .stroke-B2{stroke:#0D32B2;} + .d2-943304765 .stroke-B3{stroke:#E3E9FD;} + .d2-943304765 .stroke-B4{stroke:#E3E9FD;} + .d2-943304765 .stroke-B5{stroke:#EDF0FD;} + .d2-943304765 .stroke-B6{stroke:#F7F8FE;} + .d2-943304765 .stroke-AA2{stroke:#4A6FF3;} + .d2-943304765 .stroke-AA4{stroke:#EDF0FD;} + .d2-943304765 .stroke-AA5{stroke:#F7F8FE;} + .d2-943304765 .stroke-AB4{stroke:#EDF0FD;} + .d2-943304765 .stroke-AB5{stroke:#F7F8FE;} + .d2-943304765 .background-color-N1{background-color:#0A0F25;} + .d2-943304765 .background-color-N2{background-color:#676C7E;} + .d2-943304765 .background-color-N3{background-color:#9499AB;} + .d2-943304765 .background-color-N4{background-color:#CFD2DD;} + .d2-943304765 .background-color-N5{background-color:#DEE1EB;} + .d2-943304765 .background-color-N6{background-color:#EEF1F8;} + .d2-943304765 .background-color-N7{background-color:#FFFFFF;} + .d2-943304765 .background-color-B1{background-color:#0D32B2;} + .d2-943304765 .background-color-B2{background-color:#0D32B2;} + .d2-943304765 .background-color-B3{background-color:#E3E9FD;} + .d2-943304765 .background-color-B4{background-color:#E3E9FD;} + .d2-943304765 .background-color-B5{background-color:#EDF0FD;} + .d2-943304765 .background-color-B6{background-color:#F7F8FE;} + .d2-943304765 .background-color-AA2{background-color:#4A6FF3;} + .d2-943304765 .background-color-AA4{background-color:#EDF0FD;} + .d2-943304765 .background-color-AA5{background-color:#F7F8FE;} + .d2-943304765 .background-color-AB4{background-color:#EDF0FD;} + .d2-943304765 .background-color-AB5{background-color:#F7F8FE;} + .d2-943304765 .color-N1{color:#0A0F25;} + .d2-943304765 .color-N2{color:#676C7E;} + .d2-943304765 .color-N3{color:#9499AB;} + .d2-943304765 .color-N4{color:#CFD2DD;} + .d2-943304765 .color-N5{color:#DEE1EB;} + .d2-943304765 .color-N6{color:#EEF1F8;} + .d2-943304765 .color-N7{color:#FFFFFF;} + .d2-943304765 .color-B1{color:#0D32B2;} + .d2-943304765 .color-B2{color:#0D32B2;} + .d2-943304765 .color-B3{color:#E3E9FD;} + .d2-943304765 .color-B4{color:#E3E9FD;} + .d2-943304765 .color-B5{color:#EDF0FD;} + .d2-943304765 .color-B6{color:#F7F8FE;} + .d2-943304765 .color-AA2{color:#4A6FF3;} + .d2-943304765 .color-AA4{color:#EDF0FD;} + .d2-943304765 .color-AA5{color:#F7F8FE;} + .d2-943304765 .color-AB4{color:#EDF0FD;} + .d2-943304765 .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}]]>askuhykfnsomsczrgtigsjjcfi 1234 diff --git a/e2etests/testdata/regression/dagre-disconnect/elk/board.exp.json b/e2etests/testdata/regression/dagre-disconnect/elk/board.exp.json index b5a1bf653b..5b82b49090 100644 --- a/e2etests/testdata/regression/dagre-disconnect/elk/board.exp.json +++ b/e2etests/testdata/regression/dagre-disconnect/elk/board.exp.json @@ -1094,6 +1094,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 309.5, @@ -1140,6 +1141,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 403, @@ -1194,6 +1196,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 88, @@ -1240,6 +1243,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 425, @@ -1286,6 +1290,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 475, @@ -1324,6 +1329,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 596.5, @@ -1362,6 +1368,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 413.75, @@ -1400,6 +1407,7 @@ "labelHeight": 69, "labelPosition": "INSIDE_MIDDLE_CENTER", "labelPercentage": 0, + "link": "", "route": [ { "x": 413.75, diff --git a/e2etests/testdata/regression/dagre-disconnect/elk/sketch.exp.svg b/e2etests/testdata/regression/dagre-disconnect/elk/sketch.exp.svg index 72801177f5..11d8f25122 100644 --- a/e2etests/testdata/regression/dagre-disconnect/elk/sketch.exp.svg +++ b/e2etests/testdata/regression/dagre-disconnect/elk/sketch.exp.svg @@ -1,23 +1,23 @@ -askuhykfnsomsczrgtigsjjcfi 1234 + .d2-2390731328 .fill-N1{fill:#0A0F25;} + .d2-2390731328 .fill-N2{fill:#676C7E;} + .d2-2390731328 .fill-N3{fill:#9499AB;} + .d2-2390731328 .fill-N4{fill:#CFD2DD;} + .d2-2390731328 .fill-N5{fill:#DEE1EB;} + .d2-2390731328 .fill-N6{fill:#EEF1F8;} + .d2-2390731328 .fill-N7{fill:#FFFFFF;} + .d2-2390731328 .fill-B1{fill:#0D32B2;} + .d2-2390731328 .fill-B2{fill:#0D32B2;} + .d2-2390731328 .fill-B3{fill:#E3E9FD;} + .d2-2390731328 .fill-B4{fill:#E3E9FD;} + .d2-2390731328 .fill-B5{fill:#EDF0FD;} + .d2-2390731328 .fill-B6{fill:#F7F8FE;} + .d2-2390731328 .fill-AA2{fill:#4A6FF3;} + .d2-2390731328 .fill-AA4{fill:#EDF0FD;} + .d2-2390731328 .fill-AA5{fill:#F7F8FE;} + .d2-2390731328 .fill-AB4{fill:#EDF0FD;} + .d2-2390731328 .fill-AB5{fill:#F7F8FE;} + .d2-2390731328 .stroke-N1{stroke:#0A0F25;} + .d2-2390731328 .stroke-N2{stroke:#676C7E;} + .d2-2390731328 .stroke-N3{stroke:#9499AB;} + .d2-2390731328 .stroke-N4{stroke:#CFD2DD;} + .d2-2390731328 .stroke-N5{stroke:#DEE1EB;} + .d2-2390731328 .stroke-N6{stroke:#EEF1F8;} + .d2-2390731328 .stroke-N7{stroke:#FFFFFF;} + .d2-2390731328 .stroke-B1{stroke:#0D32B2;} + .d2-2390731328 .stroke-B2{stroke:#0D32B2;} + .d2-2390731328 .stroke-B3{stroke:#E3E9FD;} + .d2-2390731328 .stroke-B4{stroke:#E3E9FD;} + .d2-2390731328 .stroke-B5{stroke:#EDF0FD;} + .d2-2390731328 .stroke-B6{stroke:#F7F8FE;} + .d2-2390731328 .stroke-AA2{stroke:#4A6FF3;} + .d2-2390731328 .stroke-AA4{stroke:#EDF0FD;} + .d2-2390731328 .stroke-AA5{stroke:#F7F8FE;} + .d2-2390731328 .stroke-AB4{stroke:#EDF0FD;} + .d2-2390731328 .stroke-AB5{stroke:#F7F8FE;} + .d2-2390731328 .background-color-N1{background-color:#0A0F25;} + .d2-2390731328 .background-color-N2{background-color:#676C7E;} + .d2-2390731328 .background-color-N3{background-color:#9499AB;} + .d2-2390731328 .background-color-N4{background-color:#CFD2DD;} + .d2-2390731328 .background-color-N5{background-color:#DEE1EB;} + .d2-2390731328 .background-color-N6{background-color:#EEF1F8;} + .d2-2390731328 .background-color-N7{background-color:#FFFFFF;} + .d2-2390731328 .background-color-B1{background-color:#0D32B2;} + .d2-2390731328 .background-color-B2{background-color:#0D32B2;} + .d2-2390731328 .background-color-B3{background-color:#E3E9FD;} + .d2-2390731328 .background-color-B4{background-color:#E3E9FD;} + .d2-2390731328 .background-color-B5{background-color:#EDF0FD;} + .d2-2390731328 .background-color-B6{background-color:#F7F8FE;} + .d2-2390731328 .background-color-AA2{background-color:#4A6FF3;} + .d2-2390731328 .background-color-AA4{background-color:#EDF0FD;} + .d2-2390731328 .background-color-AA5{background-color:#F7F8FE;} + .d2-2390731328 .background-color-AB4{background-color:#EDF0FD;} + .d2-2390731328 .background-color-AB5{background-color:#F7F8FE;} + .d2-2390731328 .color-N1{color:#0A0F25;} + .d2-2390731328 .color-N2{color:#676C7E;} + .d2-2390731328 .color-N3{color:#9499AB;} + .d2-2390731328 .color-N4{color:#CFD2DD;} + .d2-2390731328 .color-N5{color:#DEE1EB;} + .d2-2390731328 .color-N6{color:#EEF1F8;} + .d2-2390731328 .color-N7{color:#FFFFFF;} + .d2-2390731328 .color-B1{color:#0D32B2;} + .d2-2390731328 .color-B2{color:#0D32B2;} + .d2-2390731328 .color-B3{color:#E3E9FD;} + .d2-2390731328 .color-B4{color:#E3E9FD;} + .d2-2390731328 .color-B5{color:#EDF0FD;} + .d2-2390731328 .color-B6{color:#F7F8FE;} + .d2-2390731328 .color-AA2{color:#4A6FF3;} + .d2-2390731328 .color-AA4{color:#EDF0FD;} + .d2-2390731328 .color-AA5{color:#F7F8FE;} + .d2-2390731328 .color-AB4{color:#EDF0FD;} + .d2-2390731328 .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}]]>askuhykfnsomsczrgtigsjjcfi 1234 diff --git a/e2etests/testdata/regression/dagre_broken_arrowhead/dagre/board.exp.json b/e2etests/testdata/regression/dagre_broken_arrowhead/dagre/board.exp.json index 4b5bdb62fd..114ba03b77 100644 --- a/e2etests/testdata/regression/dagre_broken_arrowhead/dagre/board.exp.json +++ b/e2etests/testdata/regression/dagre_broken_arrowhead/dagre/board.exp.json @@ -274,6 +274,7 @@ "labelHeight": 69, "labelPosition": "INSIDE_MIDDLE_CENTER", "labelPercentage": 0, + "link": "", "route": [ { "x": 66.5, @@ -321,6 +322,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 179, @@ -368,6 +370,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 291.5, diff --git a/e2etests/testdata/regression/dagre_broken_arrowhead/dagre/sketch.exp.svg b/e2etests/testdata/regression/dagre_broken_arrowhead/dagre/sketch.exp.svg index 3b7a554b07..a410fba6c9 100644 --- a/e2etests/testdata/regression/dagre_broken_arrowhead/dagre/sketch.exp.svg +++ b/e2etests/testdata/regression/dagre_broken_arrowhead/dagre/sketch.exp.svg @@ -1,23 +1,23 @@ -abc12d line 1line 2line 3line 4 + .d2-3759113337 .fill-N1{fill:#0A0F25;} + .d2-3759113337 .fill-N2{fill:#676C7E;} + .d2-3759113337 .fill-N3{fill:#9499AB;} + .d2-3759113337 .fill-N4{fill:#CFD2DD;} + .d2-3759113337 .fill-N5{fill:#DEE1EB;} + .d2-3759113337 .fill-N6{fill:#EEF1F8;} + .d2-3759113337 .fill-N7{fill:#FFFFFF;} + .d2-3759113337 .fill-B1{fill:#0D32B2;} + .d2-3759113337 .fill-B2{fill:#0D32B2;} + .d2-3759113337 .fill-B3{fill:#E3E9FD;} + .d2-3759113337 .fill-B4{fill:#E3E9FD;} + .d2-3759113337 .fill-B5{fill:#EDF0FD;} + .d2-3759113337 .fill-B6{fill:#F7F8FE;} + .d2-3759113337 .fill-AA2{fill:#4A6FF3;} + .d2-3759113337 .fill-AA4{fill:#EDF0FD;} + .d2-3759113337 .fill-AA5{fill:#F7F8FE;} + .d2-3759113337 .fill-AB4{fill:#EDF0FD;} + .d2-3759113337 .fill-AB5{fill:#F7F8FE;} + .d2-3759113337 .stroke-N1{stroke:#0A0F25;} + .d2-3759113337 .stroke-N2{stroke:#676C7E;} + .d2-3759113337 .stroke-N3{stroke:#9499AB;} + .d2-3759113337 .stroke-N4{stroke:#CFD2DD;} + .d2-3759113337 .stroke-N5{stroke:#DEE1EB;} + .d2-3759113337 .stroke-N6{stroke:#EEF1F8;} + .d2-3759113337 .stroke-N7{stroke:#FFFFFF;} + .d2-3759113337 .stroke-B1{stroke:#0D32B2;} + .d2-3759113337 .stroke-B2{stroke:#0D32B2;} + .d2-3759113337 .stroke-B3{stroke:#E3E9FD;} + .d2-3759113337 .stroke-B4{stroke:#E3E9FD;} + .d2-3759113337 .stroke-B5{stroke:#EDF0FD;} + .d2-3759113337 .stroke-B6{stroke:#F7F8FE;} + .d2-3759113337 .stroke-AA2{stroke:#4A6FF3;} + .d2-3759113337 .stroke-AA4{stroke:#EDF0FD;} + .d2-3759113337 .stroke-AA5{stroke:#F7F8FE;} + .d2-3759113337 .stroke-AB4{stroke:#EDF0FD;} + .d2-3759113337 .stroke-AB5{stroke:#F7F8FE;} + .d2-3759113337 .background-color-N1{background-color:#0A0F25;} + .d2-3759113337 .background-color-N2{background-color:#676C7E;} + .d2-3759113337 .background-color-N3{background-color:#9499AB;} + .d2-3759113337 .background-color-N4{background-color:#CFD2DD;} + .d2-3759113337 .background-color-N5{background-color:#DEE1EB;} + .d2-3759113337 .background-color-N6{background-color:#EEF1F8;} + .d2-3759113337 .background-color-N7{background-color:#FFFFFF;} + .d2-3759113337 .background-color-B1{background-color:#0D32B2;} + .d2-3759113337 .background-color-B2{background-color:#0D32B2;} + .d2-3759113337 .background-color-B3{background-color:#E3E9FD;} + .d2-3759113337 .background-color-B4{background-color:#E3E9FD;} + .d2-3759113337 .background-color-B5{background-color:#EDF0FD;} + .d2-3759113337 .background-color-B6{background-color:#F7F8FE;} + .d2-3759113337 .background-color-AA2{background-color:#4A6FF3;} + .d2-3759113337 .background-color-AA4{background-color:#EDF0FD;} + .d2-3759113337 .background-color-AA5{background-color:#F7F8FE;} + .d2-3759113337 .background-color-AB4{background-color:#EDF0FD;} + .d2-3759113337 .background-color-AB5{background-color:#F7F8FE;} + .d2-3759113337 .color-N1{color:#0A0F25;} + .d2-3759113337 .color-N2{color:#676C7E;} + .d2-3759113337 .color-N3{color:#9499AB;} + .d2-3759113337 .color-N4{color:#CFD2DD;} + .d2-3759113337 .color-N5{color:#DEE1EB;} + .d2-3759113337 .color-N6{color:#EEF1F8;} + .d2-3759113337 .color-N7{color:#FFFFFF;} + .d2-3759113337 .color-B1{color:#0D32B2;} + .d2-3759113337 .color-B2{color:#0D32B2;} + .d2-3759113337 .color-B3{color:#E3E9FD;} + .d2-3759113337 .color-B4{color:#E3E9FD;} + .d2-3759113337 .color-B5{color:#EDF0FD;} + .d2-3759113337 .color-B6{color:#F7F8FE;} + .d2-3759113337 .color-AA2{color:#4A6FF3;} + .d2-3759113337 .color-AA4{color:#EDF0FD;} + .d2-3759113337 .color-AA5{color:#F7F8FE;} + .d2-3759113337 .color-AB4{color:#EDF0FD;} + .d2-3759113337 .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}]]>abc12d line 1line 2line 3line 4 diff --git a/e2etests/testdata/regression/dagre_broken_arrowhead/elk/board.exp.json b/e2etests/testdata/regression/dagre_broken_arrowhead/elk/board.exp.json index f30d0fe43e..f1e9aa91f8 100644 --- a/e2etests/testdata/regression/dagre_broken_arrowhead/elk/board.exp.json +++ b/e2etests/testdata/regression/dagre_broken_arrowhead/elk/board.exp.json @@ -274,6 +274,7 @@ "labelHeight": 69, "labelPosition": "INSIDE_MIDDLE_CENTER", "labelPercentage": 0, + "link": "", "route": [ { "x": 88.5, @@ -312,6 +313,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 153.5, @@ -350,6 +352,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 226, diff --git a/e2etests/testdata/regression/dagre_broken_arrowhead/elk/sketch.exp.svg b/e2etests/testdata/regression/dagre_broken_arrowhead/elk/sketch.exp.svg index 475661c984..d20286d6ad 100644 --- a/e2etests/testdata/regression/dagre_broken_arrowhead/elk/sketch.exp.svg +++ b/e2etests/testdata/regression/dagre_broken_arrowhead/elk/sketch.exp.svg @@ -1,23 +1,23 @@ -abc12d line 1line 2line 3line 4 + .d2-1955283115 .fill-N1{fill:#0A0F25;} + .d2-1955283115 .fill-N2{fill:#676C7E;} + .d2-1955283115 .fill-N3{fill:#9499AB;} + .d2-1955283115 .fill-N4{fill:#CFD2DD;} + .d2-1955283115 .fill-N5{fill:#DEE1EB;} + .d2-1955283115 .fill-N6{fill:#EEF1F8;} + .d2-1955283115 .fill-N7{fill:#FFFFFF;} + .d2-1955283115 .fill-B1{fill:#0D32B2;} + .d2-1955283115 .fill-B2{fill:#0D32B2;} + .d2-1955283115 .fill-B3{fill:#E3E9FD;} + .d2-1955283115 .fill-B4{fill:#E3E9FD;} + .d2-1955283115 .fill-B5{fill:#EDF0FD;} + .d2-1955283115 .fill-B6{fill:#F7F8FE;} + .d2-1955283115 .fill-AA2{fill:#4A6FF3;} + .d2-1955283115 .fill-AA4{fill:#EDF0FD;} + .d2-1955283115 .fill-AA5{fill:#F7F8FE;} + .d2-1955283115 .fill-AB4{fill:#EDF0FD;} + .d2-1955283115 .fill-AB5{fill:#F7F8FE;} + .d2-1955283115 .stroke-N1{stroke:#0A0F25;} + .d2-1955283115 .stroke-N2{stroke:#676C7E;} + .d2-1955283115 .stroke-N3{stroke:#9499AB;} + .d2-1955283115 .stroke-N4{stroke:#CFD2DD;} + .d2-1955283115 .stroke-N5{stroke:#DEE1EB;} + .d2-1955283115 .stroke-N6{stroke:#EEF1F8;} + .d2-1955283115 .stroke-N7{stroke:#FFFFFF;} + .d2-1955283115 .stroke-B1{stroke:#0D32B2;} + .d2-1955283115 .stroke-B2{stroke:#0D32B2;} + .d2-1955283115 .stroke-B3{stroke:#E3E9FD;} + .d2-1955283115 .stroke-B4{stroke:#E3E9FD;} + .d2-1955283115 .stroke-B5{stroke:#EDF0FD;} + .d2-1955283115 .stroke-B6{stroke:#F7F8FE;} + .d2-1955283115 .stroke-AA2{stroke:#4A6FF3;} + .d2-1955283115 .stroke-AA4{stroke:#EDF0FD;} + .d2-1955283115 .stroke-AA5{stroke:#F7F8FE;} + .d2-1955283115 .stroke-AB4{stroke:#EDF0FD;} + .d2-1955283115 .stroke-AB5{stroke:#F7F8FE;} + .d2-1955283115 .background-color-N1{background-color:#0A0F25;} + .d2-1955283115 .background-color-N2{background-color:#676C7E;} + .d2-1955283115 .background-color-N3{background-color:#9499AB;} + .d2-1955283115 .background-color-N4{background-color:#CFD2DD;} + .d2-1955283115 .background-color-N5{background-color:#DEE1EB;} + .d2-1955283115 .background-color-N6{background-color:#EEF1F8;} + .d2-1955283115 .background-color-N7{background-color:#FFFFFF;} + .d2-1955283115 .background-color-B1{background-color:#0D32B2;} + .d2-1955283115 .background-color-B2{background-color:#0D32B2;} + .d2-1955283115 .background-color-B3{background-color:#E3E9FD;} + .d2-1955283115 .background-color-B4{background-color:#E3E9FD;} + .d2-1955283115 .background-color-B5{background-color:#EDF0FD;} + .d2-1955283115 .background-color-B6{background-color:#F7F8FE;} + .d2-1955283115 .background-color-AA2{background-color:#4A6FF3;} + .d2-1955283115 .background-color-AA4{background-color:#EDF0FD;} + .d2-1955283115 .background-color-AA5{background-color:#F7F8FE;} + .d2-1955283115 .background-color-AB4{background-color:#EDF0FD;} + .d2-1955283115 .background-color-AB5{background-color:#F7F8FE;} + .d2-1955283115 .color-N1{color:#0A0F25;} + .d2-1955283115 .color-N2{color:#676C7E;} + .d2-1955283115 .color-N3{color:#9499AB;} + .d2-1955283115 .color-N4{color:#CFD2DD;} + .d2-1955283115 .color-N5{color:#DEE1EB;} + .d2-1955283115 .color-N6{color:#EEF1F8;} + .d2-1955283115 .color-N7{color:#FFFFFF;} + .d2-1955283115 .color-B1{color:#0D32B2;} + .d2-1955283115 .color-B2{color:#0D32B2;} + .d2-1955283115 .color-B3{color:#E3E9FD;} + .d2-1955283115 .color-B4{color:#E3E9FD;} + .d2-1955283115 .color-B5{color:#EDF0FD;} + .d2-1955283115 .color-B6{color:#F7F8FE;} + .d2-1955283115 .color-AA2{color:#4A6FF3;} + .d2-1955283115 .color-AA4{color:#EDF0FD;} + .d2-1955283115 .color-AA5{color:#F7F8FE;} + .d2-1955283115 .color-AB4{color:#EDF0FD;} + .d2-1955283115 .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}]]>abc12d line 1line 2line 3line 4 diff --git a/e2etests/testdata/regression/dagre_child_id_id/dagre/board.exp.json b/e2etests/testdata/regression/dagre_child_id_id/dagre/board.exp.json index 4113154577..f0744e0470 100644 --- a/e2etests/testdata/regression/dagre_child_id_id/dagre/board.exp.json +++ b/e2etests/testdata/regression/dagre_child_id_id/dagre/board.exp.json @@ -274,6 +274,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 59, @@ -321,6 +322,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 268, diff --git a/e2etests/testdata/regression/dagre_child_id_id/dagre/sketch.exp.svg b/e2etests/testdata/regression/dagre_child_id_id/dagre/sketch.exp.svg index 8a522964b3..4e1230587f 100644 --- a/e2etests/testdata/regression/dagre_child_id_id/dagre/sketch.exp.svg +++ b/e2etests/testdata/regression/dagre_child_id_id/dagre/sketch.exp.svg @@ -1,16 +1,16 @@ -idxyidzid + .d2-966517206 .fill-N1{fill:#0A0F25;} + .d2-966517206 .fill-N2{fill:#676C7E;} + .d2-966517206 .fill-N3{fill:#9499AB;} + .d2-966517206 .fill-N4{fill:#CFD2DD;} + .d2-966517206 .fill-N5{fill:#DEE1EB;} + .d2-966517206 .fill-N6{fill:#EEF1F8;} + .d2-966517206 .fill-N7{fill:#FFFFFF;} + .d2-966517206 .fill-B1{fill:#0D32B2;} + .d2-966517206 .fill-B2{fill:#0D32B2;} + .d2-966517206 .fill-B3{fill:#E3E9FD;} + .d2-966517206 .fill-B4{fill:#E3E9FD;} + .d2-966517206 .fill-B5{fill:#EDF0FD;} + .d2-966517206 .fill-B6{fill:#F7F8FE;} + .d2-966517206 .fill-AA2{fill:#4A6FF3;} + .d2-966517206 .fill-AA4{fill:#EDF0FD;} + .d2-966517206 .fill-AA5{fill:#F7F8FE;} + .d2-966517206 .fill-AB4{fill:#EDF0FD;} + .d2-966517206 .fill-AB5{fill:#F7F8FE;} + .d2-966517206 .stroke-N1{stroke:#0A0F25;} + .d2-966517206 .stroke-N2{stroke:#676C7E;} + .d2-966517206 .stroke-N3{stroke:#9499AB;} + .d2-966517206 .stroke-N4{stroke:#CFD2DD;} + .d2-966517206 .stroke-N5{stroke:#DEE1EB;} + .d2-966517206 .stroke-N6{stroke:#EEF1F8;} + .d2-966517206 .stroke-N7{stroke:#FFFFFF;} + .d2-966517206 .stroke-B1{stroke:#0D32B2;} + .d2-966517206 .stroke-B2{stroke:#0D32B2;} + .d2-966517206 .stroke-B3{stroke:#E3E9FD;} + .d2-966517206 .stroke-B4{stroke:#E3E9FD;} + .d2-966517206 .stroke-B5{stroke:#EDF0FD;} + .d2-966517206 .stroke-B6{stroke:#F7F8FE;} + .d2-966517206 .stroke-AA2{stroke:#4A6FF3;} + .d2-966517206 .stroke-AA4{stroke:#EDF0FD;} + .d2-966517206 .stroke-AA5{stroke:#F7F8FE;} + .d2-966517206 .stroke-AB4{stroke:#EDF0FD;} + .d2-966517206 .stroke-AB5{stroke:#F7F8FE;} + .d2-966517206 .background-color-N1{background-color:#0A0F25;} + .d2-966517206 .background-color-N2{background-color:#676C7E;} + .d2-966517206 .background-color-N3{background-color:#9499AB;} + .d2-966517206 .background-color-N4{background-color:#CFD2DD;} + .d2-966517206 .background-color-N5{background-color:#DEE1EB;} + .d2-966517206 .background-color-N6{background-color:#EEF1F8;} + .d2-966517206 .background-color-N7{background-color:#FFFFFF;} + .d2-966517206 .background-color-B1{background-color:#0D32B2;} + .d2-966517206 .background-color-B2{background-color:#0D32B2;} + .d2-966517206 .background-color-B3{background-color:#E3E9FD;} + .d2-966517206 .background-color-B4{background-color:#E3E9FD;} + .d2-966517206 .background-color-B5{background-color:#EDF0FD;} + .d2-966517206 .background-color-B6{background-color:#F7F8FE;} + .d2-966517206 .background-color-AA2{background-color:#4A6FF3;} + .d2-966517206 .background-color-AA4{background-color:#EDF0FD;} + .d2-966517206 .background-color-AA5{background-color:#F7F8FE;} + .d2-966517206 .background-color-AB4{background-color:#EDF0FD;} + .d2-966517206 .background-color-AB5{background-color:#F7F8FE;} + .d2-966517206 .color-N1{color:#0A0F25;} + .d2-966517206 .color-N2{color:#676C7E;} + .d2-966517206 .color-N3{color:#9499AB;} + .d2-966517206 .color-N4{color:#CFD2DD;} + .d2-966517206 .color-N5{color:#DEE1EB;} + .d2-966517206 .color-N6{color:#EEF1F8;} + .d2-966517206 .color-N7{color:#FFFFFF;} + .d2-966517206 .color-B1{color:#0D32B2;} + .d2-966517206 .color-B2{color:#0D32B2;} + .d2-966517206 .color-B3{color:#E3E9FD;} + .d2-966517206 .color-B4{color:#E3E9FD;} + .d2-966517206 .color-B5{color:#EDF0FD;} + .d2-966517206 .color-B6{color:#F7F8FE;} + .d2-966517206 .color-AA2{color:#4A6FF3;} + .d2-966517206 .color-AA4{color:#EDF0FD;} + .d2-966517206 .color-AA5{color:#F7F8FE;} + .d2-966517206 .color-AB4{color:#EDF0FD;} + .d2-966517206 .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}]]>idxyidzid diff --git a/e2etests/testdata/regression/dagre_child_id_id/elk/board.exp.json b/e2etests/testdata/regression/dagre_child_id_id/elk/board.exp.json index c6cab2da29..fb91792aed 100644 --- a/e2etests/testdata/regression/dagre_child_id_id/elk/board.exp.json +++ b/e2etests/testdata/regression/dagre_child_id_id/elk/board.exp.json @@ -274,6 +274,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 71, @@ -312,6 +313,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 255, diff --git a/e2etests/testdata/regression/dagre_child_id_id/elk/sketch.exp.svg b/e2etests/testdata/regression/dagre_child_id_id/elk/sketch.exp.svg index d4ea716bba..cd4694c06f 100644 --- a/e2etests/testdata/regression/dagre_child_id_id/elk/sketch.exp.svg +++ b/e2etests/testdata/regression/dagre_child_id_id/elk/sketch.exp.svg @@ -1,16 +1,16 @@ -idxyidzid + .d2-1783928571 .fill-N1{fill:#0A0F25;} + .d2-1783928571 .fill-N2{fill:#676C7E;} + .d2-1783928571 .fill-N3{fill:#9499AB;} + .d2-1783928571 .fill-N4{fill:#CFD2DD;} + .d2-1783928571 .fill-N5{fill:#DEE1EB;} + .d2-1783928571 .fill-N6{fill:#EEF1F8;} + .d2-1783928571 .fill-N7{fill:#FFFFFF;} + .d2-1783928571 .fill-B1{fill:#0D32B2;} + .d2-1783928571 .fill-B2{fill:#0D32B2;} + .d2-1783928571 .fill-B3{fill:#E3E9FD;} + .d2-1783928571 .fill-B4{fill:#E3E9FD;} + .d2-1783928571 .fill-B5{fill:#EDF0FD;} + .d2-1783928571 .fill-B6{fill:#F7F8FE;} + .d2-1783928571 .fill-AA2{fill:#4A6FF3;} + .d2-1783928571 .fill-AA4{fill:#EDF0FD;} + .d2-1783928571 .fill-AA5{fill:#F7F8FE;} + .d2-1783928571 .fill-AB4{fill:#EDF0FD;} + .d2-1783928571 .fill-AB5{fill:#F7F8FE;} + .d2-1783928571 .stroke-N1{stroke:#0A0F25;} + .d2-1783928571 .stroke-N2{stroke:#676C7E;} + .d2-1783928571 .stroke-N3{stroke:#9499AB;} + .d2-1783928571 .stroke-N4{stroke:#CFD2DD;} + .d2-1783928571 .stroke-N5{stroke:#DEE1EB;} + .d2-1783928571 .stroke-N6{stroke:#EEF1F8;} + .d2-1783928571 .stroke-N7{stroke:#FFFFFF;} + .d2-1783928571 .stroke-B1{stroke:#0D32B2;} + .d2-1783928571 .stroke-B2{stroke:#0D32B2;} + .d2-1783928571 .stroke-B3{stroke:#E3E9FD;} + .d2-1783928571 .stroke-B4{stroke:#E3E9FD;} + .d2-1783928571 .stroke-B5{stroke:#EDF0FD;} + .d2-1783928571 .stroke-B6{stroke:#F7F8FE;} + .d2-1783928571 .stroke-AA2{stroke:#4A6FF3;} + .d2-1783928571 .stroke-AA4{stroke:#EDF0FD;} + .d2-1783928571 .stroke-AA5{stroke:#F7F8FE;} + .d2-1783928571 .stroke-AB4{stroke:#EDF0FD;} + .d2-1783928571 .stroke-AB5{stroke:#F7F8FE;} + .d2-1783928571 .background-color-N1{background-color:#0A0F25;} + .d2-1783928571 .background-color-N2{background-color:#676C7E;} + .d2-1783928571 .background-color-N3{background-color:#9499AB;} + .d2-1783928571 .background-color-N4{background-color:#CFD2DD;} + .d2-1783928571 .background-color-N5{background-color:#DEE1EB;} + .d2-1783928571 .background-color-N6{background-color:#EEF1F8;} + .d2-1783928571 .background-color-N7{background-color:#FFFFFF;} + .d2-1783928571 .background-color-B1{background-color:#0D32B2;} + .d2-1783928571 .background-color-B2{background-color:#0D32B2;} + .d2-1783928571 .background-color-B3{background-color:#E3E9FD;} + .d2-1783928571 .background-color-B4{background-color:#E3E9FD;} + .d2-1783928571 .background-color-B5{background-color:#EDF0FD;} + .d2-1783928571 .background-color-B6{background-color:#F7F8FE;} + .d2-1783928571 .background-color-AA2{background-color:#4A6FF3;} + .d2-1783928571 .background-color-AA4{background-color:#EDF0FD;} + .d2-1783928571 .background-color-AA5{background-color:#F7F8FE;} + .d2-1783928571 .background-color-AB4{background-color:#EDF0FD;} + .d2-1783928571 .background-color-AB5{background-color:#F7F8FE;} + .d2-1783928571 .color-N1{color:#0A0F25;} + .d2-1783928571 .color-N2{color:#676C7E;} + .d2-1783928571 .color-N3{color:#9499AB;} + .d2-1783928571 .color-N4{color:#CFD2DD;} + .d2-1783928571 .color-N5{color:#DEE1EB;} + .d2-1783928571 .color-N6{color:#EEF1F8;} + .d2-1783928571 .color-N7{color:#FFFFFF;} + .d2-1783928571 .color-B1{color:#0D32B2;} + .d2-1783928571 .color-B2{color:#0D32B2;} + .d2-1783928571 .color-B3{color:#E3E9FD;} + .d2-1783928571 .color-B4{color:#E3E9FD;} + .d2-1783928571 .color-B5{color:#EDF0FD;} + .d2-1783928571 .color-B6{color:#F7F8FE;} + .d2-1783928571 .color-AA2{color:#4A6FF3;} + .d2-1783928571 .color-AA4{color:#EDF0FD;} + .d2-1783928571 .color-AA5{color:#F7F8FE;} + .d2-1783928571 .color-AB4{color:#EDF0FD;} + .d2-1783928571 .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}]]>idxyidzid diff --git a/e2etests/testdata/regression/dagre_disconnected_edge/dagre/board.exp.json b/e2etests/testdata/regression/dagre_disconnected_edge/dagre/board.exp.json index f74f94ee7f..b3933dcaeb 100644 --- a/e2etests/testdata/regression/dagre_disconnected_edge/dagre/board.exp.json +++ b/e2etests/testdata/regression/dagre_disconnected_edge/dagre/board.exp.json @@ -134,6 +134,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 139.5, diff --git a/e2etests/testdata/regression/dagre_disconnected_edge/dagre/sketch.exp.svg b/e2etests/testdata/regression/dagre_disconnected_edge/dagre/sketch.exp.svg index bf5c4b4a8e..ab901224ba 100644 --- a/e2etests/testdata/regression/dagre_disconnected_edge/dagre/sketch.exp.svg +++ b/e2etests/testdata/regression/dagre_disconnected_edge/dagre/sketch.exp.svg @@ -1,9 +1,9 @@ -programprofits + .d2-2564580976 .fill-N1{fill:#0A0F25;} + .d2-2564580976 .fill-N2{fill:#676C7E;} + .d2-2564580976 .fill-N3{fill:#9499AB;} + .d2-2564580976 .fill-N4{fill:#CFD2DD;} + .d2-2564580976 .fill-N5{fill:#DEE1EB;} + .d2-2564580976 .fill-N6{fill:#EEF1F8;} + .d2-2564580976 .fill-N7{fill:#FFFFFF;} + .d2-2564580976 .fill-B1{fill:#0D32B2;} + .d2-2564580976 .fill-B2{fill:#0D32B2;} + .d2-2564580976 .fill-B3{fill:#E3E9FD;} + .d2-2564580976 .fill-B4{fill:#E3E9FD;} + .d2-2564580976 .fill-B5{fill:#EDF0FD;} + .d2-2564580976 .fill-B6{fill:#F7F8FE;} + .d2-2564580976 .fill-AA2{fill:#4A6FF3;} + .d2-2564580976 .fill-AA4{fill:#EDF0FD;} + .d2-2564580976 .fill-AA5{fill:#F7F8FE;} + .d2-2564580976 .fill-AB4{fill:#EDF0FD;} + .d2-2564580976 .fill-AB5{fill:#F7F8FE;} + .d2-2564580976 .stroke-N1{stroke:#0A0F25;} + .d2-2564580976 .stroke-N2{stroke:#676C7E;} + .d2-2564580976 .stroke-N3{stroke:#9499AB;} + .d2-2564580976 .stroke-N4{stroke:#CFD2DD;} + .d2-2564580976 .stroke-N5{stroke:#DEE1EB;} + .d2-2564580976 .stroke-N6{stroke:#EEF1F8;} + .d2-2564580976 .stroke-N7{stroke:#FFFFFF;} + .d2-2564580976 .stroke-B1{stroke:#0D32B2;} + .d2-2564580976 .stroke-B2{stroke:#0D32B2;} + .d2-2564580976 .stroke-B3{stroke:#E3E9FD;} + .d2-2564580976 .stroke-B4{stroke:#E3E9FD;} + .d2-2564580976 .stroke-B5{stroke:#EDF0FD;} + .d2-2564580976 .stroke-B6{stroke:#F7F8FE;} + .d2-2564580976 .stroke-AA2{stroke:#4A6FF3;} + .d2-2564580976 .stroke-AA4{stroke:#EDF0FD;} + .d2-2564580976 .stroke-AA5{stroke:#F7F8FE;} + .d2-2564580976 .stroke-AB4{stroke:#EDF0FD;} + .d2-2564580976 .stroke-AB5{stroke:#F7F8FE;} + .d2-2564580976 .background-color-N1{background-color:#0A0F25;} + .d2-2564580976 .background-color-N2{background-color:#676C7E;} + .d2-2564580976 .background-color-N3{background-color:#9499AB;} + .d2-2564580976 .background-color-N4{background-color:#CFD2DD;} + .d2-2564580976 .background-color-N5{background-color:#DEE1EB;} + .d2-2564580976 .background-color-N6{background-color:#EEF1F8;} + .d2-2564580976 .background-color-N7{background-color:#FFFFFF;} + .d2-2564580976 .background-color-B1{background-color:#0D32B2;} + .d2-2564580976 .background-color-B2{background-color:#0D32B2;} + .d2-2564580976 .background-color-B3{background-color:#E3E9FD;} + .d2-2564580976 .background-color-B4{background-color:#E3E9FD;} + .d2-2564580976 .background-color-B5{background-color:#EDF0FD;} + .d2-2564580976 .background-color-B6{background-color:#F7F8FE;} + .d2-2564580976 .background-color-AA2{background-color:#4A6FF3;} + .d2-2564580976 .background-color-AA4{background-color:#EDF0FD;} + .d2-2564580976 .background-color-AA5{background-color:#F7F8FE;} + .d2-2564580976 .background-color-AB4{background-color:#EDF0FD;} + .d2-2564580976 .background-color-AB5{background-color:#F7F8FE;} + .d2-2564580976 .color-N1{color:#0A0F25;} + .d2-2564580976 .color-N2{color:#676C7E;} + .d2-2564580976 .color-N3{color:#9499AB;} + .d2-2564580976 .color-N4{color:#CFD2DD;} + .d2-2564580976 .color-N5{color:#DEE1EB;} + .d2-2564580976 .color-N6{color:#EEF1F8;} + .d2-2564580976 .color-N7{color:#FFFFFF;} + .d2-2564580976 .color-B1{color:#0D32B2;} + .d2-2564580976 .color-B2{color:#0D32B2;} + .d2-2564580976 .color-B3{color:#E3E9FD;} + .d2-2564580976 .color-B4{color:#E3E9FD;} + .d2-2564580976 .color-B5{color:#EDF0FD;} + .d2-2564580976 .color-B6{color:#F7F8FE;} + .d2-2564580976 .color-AA2{color:#4A6FF3;} + .d2-2564580976 .color-AA4{color:#EDF0FD;} + .d2-2564580976 .color-AA5{color:#F7F8FE;} + .d2-2564580976 .color-AB4{color:#EDF0FD;} + .d2-2564580976 .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}]]>programprofits diff --git a/e2etests/testdata/regression/dagre_disconnected_edge/elk/board.exp.json b/e2etests/testdata/regression/dagre_disconnected_edge/elk/board.exp.json index 0573103e70..2012942a7f 100644 --- a/e2etests/testdata/regression/dagre_disconnected_edge/elk/board.exp.json +++ b/e2etests/testdata/regression/dagre_disconnected_edge/elk/board.exp.json @@ -134,6 +134,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 103, diff --git a/e2etests/testdata/regression/dagre_disconnected_edge/elk/sketch.exp.svg b/e2etests/testdata/regression/dagre_disconnected_edge/elk/sketch.exp.svg index fe7c63ee34..d8e6557dc8 100644 --- a/e2etests/testdata/regression/dagre_disconnected_edge/elk/sketch.exp.svg +++ b/e2etests/testdata/regression/dagre_disconnected_edge/elk/sketch.exp.svg @@ -1,9 +1,9 @@ -programprofits + .d2-788656292 .fill-N1{fill:#0A0F25;} + .d2-788656292 .fill-N2{fill:#676C7E;} + .d2-788656292 .fill-N3{fill:#9499AB;} + .d2-788656292 .fill-N4{fill:#CFD2DD;} + .d2-788656292 .fill-N5{fill:#DEE1EB;} + .d2-788656292 .fill-N6{fill:#EEF1F8;} + .d2-788656292 .fill-N7{fill:#FFFFFF;} + .d2-788656292 .fill-B1{fill:#0D32B2;} + .d2-788656292 .fill-B2{fill:#0D32B2;} + .d2-788656292 .fill-B3{fill:#E3E9FD;} + .d2-788656292 .fill-B4{fill:#E3E9FD;} + .d2-788656292 .fill-B5{fill:#EDF0FD;} + .d2-788656292 .fill-B6{fill:#F7F8FE;} + .d2-788656292 .fill-AA2{fill:#4A6FF3;} + .d2-788656292 .fill-AA4{fill:#EDF0FD;} + .d2-788656292 .fill-AA5{fill:#F7F8FE;} + .d2-788656292 .fill-AB4{fill:#EDF0FD;} + .d2-788656292 .fill-AB5{fill:#F7F8FE;} + .d2-788656292 .stroke-N1{stroke:#0A0F25;} + .d2-788656292 .stroke-N2{stroke:#676C7E;} + .d2-788656292 .stroke-N3{stroke:#9499AB;} + .d2-788656292 .stroke-N4{stroke:#CFD2DD;} + .d2-788656292 .stroke-N5{stroke:#DEE1EB;} + .d2-788656292 .stroke-N6{stroke:#EEF1F8;} + .d2-788656292 .stroke-N7{stroke:#FFFFFF;} + .d2-788656292 .stroke-B1{stroke:#0D32B2;} + .d2-788656292 .stroke-B2{stroke:#0D32B2;} + .d2-788656292 .stroke-B3{stroke:#E3E9FD;} + .d2-788656292 .stroke-B4{stroke:#E3E9FD;} + .d2-788656292 .stroke-B5{stroke:#EDF0FD;} + .d2-788656292 .stroke-B6{stroke:#F7F8FE;} + .d2-788656292 .stroke-AA2{stroke:#4A6FF3;} + .d2-788656292 .stroke-AA4{stroke:#EDF0FD;} + .d2-788656292 .stroke-AA5{stroke:#F7F8FE;} + .d2-788656292 .stroke-AB4{stroke:#EDF0FD;} + .d2-788656292 .stroke-AB5{stroke:#F7F8FE;} + .d2-788656292 .background-color-N1{background-color:#0A0F25;} + .d2-788656292 .background-color-N2{background-color:#676C7E;} + .d2-788656292 .background-color-N3{background-color:#9499AB;} + .d2-788656292 .background-color-N4{background-color:#CFD2DD;} + .d2-788656292 .background-color-N5{background-color:#DEE1EB;} + .d2-788656292 .background-color-N6{background-color:#EEF1F8;} + .d2-788656292 .background-color-N7{background-color:#FFFFFF;} + .d2-788656292 .background-color-B1{background-color:#0D32B2;} + .d2-788656292 .background-color-B2{background-color:#0D32B2;} + .d2-788656292 .background-color-B3{background-color:#E3E9FD;} + .d2-788656292 .background-color-B4{background-color:#E3E9FD;} + .d2-788656292 .background-color-B5{background-color:#EDF0FD;} + .d2-788656292 .background-color-B6{background-color:#F7F8FE;} + .d2-788656292 .background-color-AA2{background-color:#4A6FF3;} + .d2-788656292 .background-color-AA4{background-color:#EDF0FD;} + .d2-788656292 .background-color-AA5{background-color:#F7F8FE;} + .d2-788656292 .background-color-AB4{background-color:#EDF0FD;} + .d2-788656292 .background-color-AB5{background-color:#F7F8FE;} + .d2-788656292 .color-N1{color:#0A0F25;} + .d2-788656292 .color-N2{color:#676C7E;} + .d2-788656292 .color-N3{color:#9499AB;} + .d2-788656292 .color-N4{color:#CFD2DD;} + .d2-788656292 .color-N5{color:#DEE1EB;} + .d2-788656292 .color-N6{color:#EEF1F8;} + .d2-788656292 .color-N7{color:#FFFFFF;} + .d2-788656292 .color-B1{color:#0D32B2;} + .d2-788656292 .color-B2{color:#0D32B2;} + .d2-788656292 .color-B3{color:#E3E9FD;} + .d2-788656292 .color-B4{color:#E3E9FD;} + .d2-788656292 .color-B5{color:#EDF0FD;} + .d2-788656292 .color-B6{color:#F7F8FE;} + .d2-788656292 .color-AA2{color:#4A6FF3;} + .d2-788656292 .color-AA4{color:#EDF0FD;} + .d2-788656292 .color-AA5{color:#F7F8FE;} + .d2-788656292 .color-AB4{color:#EDF0FD;} + .d2-788656292 .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}]]>programprofits diff --git a/e2etests/testdata/regression/dagre_edge_label_spacing/dagre/board.exp.json b/e2etests/testdata/regression/dagre_edge_label_spacing/dagre/board.exp.json index 31bf03db65..ac0a8059b6 100644 --- a/e2etests/testdata/regression/dagre_edge_label_spacing/dagre/board.exp.json +++ b/e2etests/testdata/regression/dagre_edge_label_spacing/dagre/board.exp.json @@ -274,6 +274,7 @@ "labelHeight": 21, "labelPosition": "INSIDE_MIDDLE_CENTER", "labelPercentage": 0, + "link": "", "route": [ { "x": 375.5, @@ -321,6 +322,7 @@ "labelHeight": 21, "labelPosition": "INSIDE_MIDDLE_CENTER", "labelPercentage": 0, + "link": "", "route": [ { "x": 847, @@ -368,6 +370,7 @@ "labelHeight": 21, "labelPosition": "INSIDE_MIDDLE_CENTER", "labelPercentage": 0, + "link": "", "route": [ { "x": 1265.5, @@ -415,6 +418,7 @@ "labelHeight": 21, "labelPosition": "INSIDE_MIDDLE_CENTER", "labelPercentage": 0, + "link": "", "route": [ { "x": 1751.5, diff --git a/e2etests/testdata/regression/dagre_edge_label_spacing/dagre/sketch.exp.svg b/e2etests/testdata/regression/dagre_edge_label_spacing/dagre/sketch.exp.svg index d6f3acf2cd..5ded353def 100644 --- a/e2etests/testdata/regression/dagre_edge_label_spacing/dagre/sketch.exp.svg +++ b/e2etests/testdata/regression/dagre_edge_label_spacing/dagre/sketch.exp.svg @@ -1,23 +1,23 @@ -lambda-build.yamlPush to main branchGitHub ActionsS3TerraformAWS TriggersBuilds zip & pushes it Pulls zip to deployChanges the live lambdas + .d2-2078406637 .fill-N1{fill:#0A0F25;} + .d2-2078406637 .fill-N2{fill:#676C7E;} + .d2-2078406637 .fill-N3{fill:#9499AB;} + .d2-2078406637 .fill-N4{fill:#CFD2DD;} + .d2-2078406637 .fill-N5{fill:#DEE1EB;} + .d2-2078406637 .fill-N6{fill:#EEF1F8;} + .d2-2078406637 .fill-N7{fill:#FFFFFF;} + .d2-2078406637 .fill-B1{fill:#0D32B2;} + .d2-2078406637 .fill-B2{fill:#0D32B2;} + .d2-2078406637 .fill-B3{fill:#E3E9FD;} + .d2-2078406637 .fill-B4{fill:#E3E9FD;} + .d2-2078406637 .fill-B5{fill:#EDF0FD;} + .d2-2078406637 .fill-B6{fill:#F7F8FE;} + .d2-2078406637 .fill-AA2{fill:#4A6FF3;} + .d2-2078406637 .fill-AA4{fill:#EDF0FD;} + .d2-2078406637 .fill-AA5{fill:#F7F8FE;} + .d2-2078406637 .fill-AB4{fill:#EDF0FD;} + .d2-2078406637 .fill-AB5{fill:#F7F8FE;} + .d2-2078406637 .stroke-N1{stroke:#0A0F25;} + .d2-2078406637 .stroke-N2{stroke:#676C7E;} + .d2-2078406637 .stroke-N3{stroke:#9499AB;} + .d2-2078406637 .stroke-N4{stroke:#CFD2DD;} + .d2-2078406637 .stroke-N5{stroke:#DEE1EB;} + .d2-2078406637 .stroke-N6{stroke:#EEF1F8;} + .d2-2078406637 .stroke-N7{stroke:#FFFFFF;} + .d2-2078406637 .stroke-B1{stroke:#0D32B2;} + .d2-2078406637 .stroke-B2{stroke:#0D32B2;} + .d2-2078406637 .stroke-B3{stroke:#E3E9FD;} + .d2-2078406637 .stroke-B4{stroke:#E3E9FD;} + .d2-2078406637 .stroke-B5{stroke:#EDF0FD;} + .d2-2078406637 .stroke-B6{stroke:#F7F8FE;} + .d2-2078406637 .stroke-AA2{stroke:#4A6FF3;} + .d2-2078406637 .stroke-AA4{stroke:#EDF0FD;} + .d2-2078406637 .stroke-AA5{stroke:#F7F8FE;} + .d2-2078406637 .stroke-AB4{stroke:#EDF0FD;} + .d2-2078406637 .stroke-AB5{stroke:#F7F8FE;} + .d2-2078406637 .background-color-N1{background-color:#0A0F25;} + .d2-2078406637 .background-color-N2{background-color:#676C7E;} + .d2-2078406637 .background-color-N3{background-color:#9499AB;} + .d2-2078406637 .background-color-N4{background-color:#CFD2DD;} + .d2-2078406637 .background-color-N5{background-color:#DEE1EB;} + .d2-2078406637 .background-color-N6{background-color:#EEF1F8;} + .d2-2078406637 .background-color-N7{background-color:#FFFFFF;} + .d2-2078406637 .background-color-B1{background-color:#0D32B2;} + .d2-2078406637 .background-color-B2{background-color:#0D32B2;} + .d2-2078406637 .background-color-B3{background-color:#E3E9FD;} + .d2-2078406637 .background-color-B4{background-color:#E3E9FD;} + .d2-2078406637 .background-color-B5{background-color:#EDF0FD;} + .d2-2078406637 .background-color-B6{background-color:#F7F8FE;} + .d2-2078406637 .background-color-AA2{background-color:#4A6FF3;} + .d2-2078406637 .background-color-AA4{background-color:#EDF0FD;} + .d2-2078406637 .background-color-AA5{background-color:#F7F8FE;} + .d2-2078406637 .background-color-AB4{background-color:#EDF0FD;} + .d2-2078406637 .background-color-AB5{background-color:#F7F8FE;} + .d2-2078406637 .color-N1{color:#0A0F25;} + .d2-2078406637 .color-N2{color:#676C7E;} + .d2-2078406637 .color-N3{color:#9499AB;} + .d2-2078406637 .color-N4{color:#CFD2DD;} + .d2-2078406637 .color-N5{color:#DEE1EB;} + .d2-2078406637 .color-N6{color:#EEF1F8;} + .d2-2078406637 .color-N7{color:#FFFFFF;} + .d2-2078406637 .color-B1{color:#0D32B2;} + .d2-2078406637 .color-B2{color:#0D32B2;} + .d2-2078406637 .color-B3{color:#E3E9FD;} + .d2-2078406637 .color-B4{color:#E3E9FD;} + .d2-2078406637 .color-B5{color:#EDF0FD;} + .d2-2078406637 .color-B6{color:#F7F8FE;} + .d2-2078406637 .color-AA2{color:#4A6FF3;} + .d2-2078406637 .color-AA4{color:#EDF0FD;} + .d2-2078406637 .color-AA5{color:#F7F8FE;} + .d2-2078406637 .color-AB4{color:#EDF0FD;} + .d2-2078406637 .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}]]>lambda-build.yamlPush to main branchGitHub ActionsS3TerraformAWS TriggersBuilds zip & pushes it Pulls zip to deployChanges the live lambdas diff --git a/e2etests/testdata/regression/dagre_edge_label_spacing/elk/board.exp.json b/e2etests/testdata/regression/dagre_edge_label_spacing/elk/board.exp.json index b14ddea490..0a3a241ba1 100644 --- a/e2etests/testdata/regression/dagre_edge_label_spacing/elk/board.exp.json +++ b/e2etests/testdata/regression/dagre_edge_label_spacing/elk/board.exp.json @@ -274,6 +274,7 @@ "labelHeight": 21, "labelPosition": "INSIDE_MIDDLE_CENTER", "labelPercentage": 0, + "link": "", "route": [ { "x": 332, @@ -312,6 +313,7 @@ "labelHeight": 21, "labelPosition": "INSIDE_MIDDLE_CENTER", "labelPercentage": 0, + "link": "", "route": [ { "x": 735, @@ -350,6 +352,7 @@ "labelHeight": 21, "labelPosition": "INSIDE_MIDDLE_CENTER", "labelPercentage": 0, + "link": "", "route": [ { "x": 1084, @@ -388,6 +391,7 @@ "labelHeight": 21, "labelPosition": "INSIDE_MIDDLE_CENTER", "labelPercentage": 0, + "link": "", "route": [ { "x": 1501, diff --git a/e2etests/testdata/regression/dagre_edge_label_spacing/elk/sketch.exp.svg b/e2etests/testdata/regression/dagre_edge_label_spacing/elk/sketch.exp.svg index 176cd1231b..c946b7476d 100644 --- a/e2etests/testdata/regression/dagre_edge_label_spacing/elk/sketch.exp.svg +++ b/e2etests/testdata/regression/dagre_edge_label_spacing/elk/sketch.exp.svg @@ -1,23 +1,23 @@ -lambda-build.yamlPush to main branchGitHub ActionsS3TerraformAWS TriggersBuilds zip & pushes it Pulls zip to deployChanges the live lambdas + .d2-625343851 .fill-N1{fill:#0A0F25;} + .d2-625343851 .fill-N2{fill:#676C7E;} + .d2-625343851 .fill-N3{fill:#9499AB;} + .d2-625343851 .fill-N4{fill:#CFD2DD;} + .d2-625343851 .fill-N5{fill:#DEE1EB;} + .d2-625343851 .fill-N6{fill:#EEF1F8;} + .d2-625343851 .fill-N7{fill:#FFFFFF;} + .d2-625343851 .fill-B1{fill:#0D32B2;} + .d2-625343851 .fill-B2{fill:#0D32B2;} + .d2-625343851 .fill-B3{fill:#E3E9FD;} + .d2-625343851 .fill-B4{fill:#E3E9FD;} + .d2-625343851 .fill-B5{fill:#EDF0FD;} + .d2-625343851 .fill-B6{fill:#F7F8FE;} + .d2-625343851 .fill-AA2{fill:#4A6FF3;} + .d2-625343851 .fill-AA4{fill:#EDF0FD;} + .d2-625343851 .fill-AA5{fill:#F7F8FE;} + .d2-625343851 .fill-AB4{fill:#EDF0FD;} + .d2-625343851 .fill-AB5{fill:#F7F8FE;} + .d2-625343851 .stroke-N1{stroke:#0A0F25;} + .d2-625343851 .stroke-N2{stroke:#676C7E;} + .d2-625343851 .stroke-N3{stroke:#9499AB;} + .d2-625343851 .stroke-N4{stroke:#CFD2DD;} + .d2-625343851 .stroke-N5{stroke:#DEE1EB;} + .d2-625343851 .stroke-N6{stroke:#EEF1F8;} + .d2-625343851 .stroke-N7{stroke:#FFFFFF;} + .d2-625343851 .stroke-B1{stroke:#0D32B2;} + .d2-625343851 .stroke-B2{stroke:#0D32B2;} + .d2-625343851 .stroke-B3{stroke:#E3E9FD;} + .d2-625343851 .stroke-B4{stroke:#E3E9FD;} + .d2-625343851 .stroke-B5{stroke:#EDF0FD;} + .d2-625343851 .stroke-B6{stroke:#F7F8FE;} + .d2-625343851 .stroke-AA2{stroke:#4A6FF3;} + .d2-625343851 .stroke-AA4{stroke:#EDF0FD;} + .d2-625343851 .stroke-AA5{stroke:#F7F8FE;} + .d2-625343851 .stroke-AB4{stroke:#EDF0FD;} + .d2-625343851 .stroke-AB5{stroke:#F7F8FE;} + .d2-625343851 .background-color-N1{background-color:#0A0F25;} + .d2-625343851 .background-color-N2{background-color:#676C7E;} + .d2-625343851 .background-color-N3{background-color:#9499AB;} + .d2-625343851 .background-color-N4{background-color:#CFD2DD;} + .d2-625343851 .background-color-N5{background-color:#DEE1EB;} + .d2-625343851 .background-color-N6{background-color:#EEF1F8;} + .d2-625343851 .background-color-N7{background-color:#FFFFFF;} + .d2-625343851 .background-color-B1{background-color:#0D32B2;} + .d2-625343851 .background-color-B2{background-color:#0D32B2;} + .d2-625343851 .background-color-B3{background-color:#E3E9FD;} + .d2-625343851 .background-color-B4{background-color:#E3E9FD;} + .d2-625343851 .background-color-B5{background-color:#EDF0FD;} + .d2-625343851 .background-color-B6{background-color:#F7F8FE;} + .d2-625343851 .background-color-AA2{background-color:#4A6FF3;} + .d2-625343851 .background-color-AA4{background-color:#EDF0FD;} + .d2-625343851 .background-color-AA5{background-color:#F7F8FE;} + .d2-625343851 .background-color-AB4{background-color:#EDF0FD;} + .d2-625343851 .background-color-AB5{background-color:#F7F8FE;} + .d2-625343851 .color-N1{color:#0A0F25;} + .d2-625343851 .color-N2{color:#676C7E;} + .d2-625343851 .color-N3{color:#9499AB;} + .d2-625343851 .color-N4{color:#CFD2DD;} + .d2-625343851 .color-N5{color:#DEE1EB;} + .d2-625343851 .color-N6{color:#EEF1F8;} + .d2-625343851 .color-N7{color:#FFFFFF;} + .d2-625343851 .color-B1{color:#0D32B2;} + .d2-625343851 .color-B2{color:#0D32B2;} + .d2-625343851 .color-B3{color:#E3E9FD;} + .d2-625343851 .color-B4{color:#E3E9FD;} + .d2-625343851 .color-B5{color:#EDF0FD;} + .d2-625343851 .color-B6{color:#F7F8FE;} + .d2-625343851 .color-AA2{color:#4A6FF3;} + .d2-625343851 .color-AA4{color:#EDF0FD;} + .d2-625343851 .color-AA5{color:#F7F8FE;} + .d2-625343851 .color-AB4{color:#EDF0FD;} + .d2-625343851 .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}]]>lambda-build.yamlPush to main branchGitHub ActionsS3TerraformAWS TriggersBuilds zip & pushes it Pulls zip to deployChanges the live lambdas diff --git a/e2etests/testdata/regression/dagre_special_ids/dagre/board.exp.json b/e2etests/testdata/regression/dagre_special_ids/dagre/board.exp.json index 07cb0d89e7..143e3504cc 100644 --- a/e2etests/testdata/regression/dagre_special_ids/dagre/board.exp.json +++ b/e2etests/testdata/regression/dagre_special_ids/dagre/board.exp.json @@ -315,6 +315,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 511, @@ -362,6 +363,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 665, @@ -409,6 +411,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 819.5, diff --git a/e2etests/testdata/regression/dagre_special_ids/dagre/sketch.exp.svg b/e2etests/testdata/regression/dagre_special_ids/dagre/sketch.exp.svg index ad64f215cd..7cc16f3a6d 100644 --- a/e2etests/testdata/regression/dagre_special_ids/dagre/sketch.exp.svg +++ b/e2etests/testdata/regression/dagre_special_ids/dagre/sketch.exp.svg @@ -1,9 +1,9 @@ -ninetynineeighty eightseventy sevena\yodetherea\"odea\node + .d2-276060075 .fill-N1{fill:#0A0F25;} + .d2-276060075 .fill-N2{fill:#676C7E;} + .d2-276060075 .fill-N3{fill:#9499AB;} + .d2-276060075 .fill-N4{fill:#CFD2DD;} + .d2-276060075 .fill-N5{fill:#DEE1EB;} + .d2-276060075 .fill-N6{fill:#EEF1F8;} + .d2-276060075 .fill-N7{fill:#FFFFFF;} + .d2-276060075 .fill-B1{fill:#0D32B2;} + .d2-276060075 .fill-B2{fill:#0D32B2;} + .d2-276060075 .fill-B3{fill:#E3E9FD;} + .d2-276060075 .fill-B4{fill:#E3E9FD;} + .d2-276060075 .fill-B5{fill:#EDF0FD;} + .d2-276060075 .fill-B6{fill:#F7F8FE;} + .d2-276060075 .fill-AA2{fill:#4A6FF3;} + .d2-276060075 .fill-AA4{fill:#EDF0FD;} + .d2-276060075 .fill-AA5{fill:#F7F8FE;} + .d2-276060075 .fill-AB4{fill:#EDF0FD;} + .d2-276060075 .fill-AB5{fill:#F7F8FE;} + .d2-276060075 .stroke-N1{stroke:#0A0F25;} + .d2-276060075 .stroke-N2{stroke:#676C7E;} + .d2-276060075 .stroke-N3{stroke:#9499AB;} + .d2-276060075 .stroke-N4{stroke:#CFD2DD;} + .d2-276060075 .stroke-N5{stroke:#DEE1EB;} + .d2-276060075 .stroke-N6{stroke:#EEF1F8;} + .d2-276060075 .stroke-N7{stroke:#FFFFFF;} + .d2-276060075 .stroke-B1{stroke:#0D32B2;} + .d2-276060075 .stroke-B2{stroke:#0D32B2;} + .d2-276060075 .stroke-B3{stroke:#E3E9FD;} + .d2-276060075 .stroke-B4{stroke:#E3E9FD;} + .d2-276060075 .stroke-B5{stroke:#EDF0FD;} + .d2-276060075 .stroke-B6{stroke:#F7F8FE;} + .d2-276060075 .stroke-AA2{stroke:#4A6FF3;} + .d2-276060075 .stroke-AA4{stroke:#EDF0FD;} + .d2-276060075 .stroke-AA5{stroke:#F7F8FE;} + .d2-276060075 .stroke-AB4{stroke:#EDF0FD;} + .d2-276060075 .stroke-AB5{stroke:#F7F8FE;} + .d2-276060075 .background-color-N1{background-color:#0A0F25;} + .d2-276060075 .background-color-N2{background-color:#676C7E;} + .d2-276060075 .background-color-N3{background-color:#9499AB;} + .d2-276060075 .background-color-N4{background-color:#CFD2DD;} + .d2-276060075 .background-color-N5{background-color:#DEE1EB;} + .d2-276060075 .background-color-N6{background-color:#EEF1F8;} + .d2-276060075 .background-color-N7{background-color:#FFFFFF;} + .d2-276060075 .background-color-B1{background-color:#0D32B2;} + .d2-276060075 .background-color-B2{background-color:#0D32B2;} + .d2-276060075 .background-color-B3{background-color:#E3E9FD;} + .d2-276060075 .background-color-B4{background-color:#E3E9FD;} + .d2-276060075 .background-color-B5{background-color:#EDF0FD;} + .d2-276060075 .background-color-B6{background-color:#F7F8FE;} + .d2-276060075 .background-color-AA2{background-color:#4A6FF3;} + .d2-276060075 .background-color-AA4{background-color:#EDF0FD;} + .d2-276060075 .background-color-AA5{background-color:#F7F8FE;} + .d2-276060075 .background-color-AB4{background-color:#EDF0FD;} + .d2-276060075 .background-color-AB5{background-color:#F7F8FE;} + .d2-276060075 .color-N1{color:#0A0F25;} + .d2-276060075 .color-N2{color:#676C7E;} + .d2-276060075 .color-N3{color:#9499AB;} + .d2-276060075 .color-N4{color:#CFD2DD;} + .d2-276060075 .color-N5{color:#DEE1EB;} + .d2-276060075 .color-N6{color:#EEF1F8;} + .d2-276060075 .color-N7{color:#FFFFFF;} + .d2-276060075 .color-B1{color:#0D32B2;} + .d2-276060075 .color-B2{color:#0D32B2;} + .d2-276060075 .color-B3{color:#E3E9FD;} + .d2-276060075 .color-B4{color:#E3E9FD;} + .d2-276060075 .color-B5{color:#EDF0FD;} + .d2-276060075 .color-B6{color:#F7F8FE;} + .d2-276060075 .color-AA2{color:#4A6FF3;} + .d2-276060075 .color-AA4{color:#EDF0FD;} + .d2-276060075 .color-AA5{color:#F7F8FE;} + .d2-276060075 .color-AB4{color:#EDF0FD;} + .d2-276060075 .color-AB5{color:#F7F8FE;}.appendix text.text{fill:#0A0F25}.md{--color-fg-default:#0A0F25;--color-fg-muted:#676C7E;--color-fg-subtle:#9499AB;--color-canvas-default:#FFFFFF;--color-canvas-subtle:#EEF1F8;--color-border-default:#0D32B2;--color-border-muted:#0D32B2;--color-neutral-muted:#EEF1F8;--color-accent-fg:#0D32B2;--color-accent-emphasis:#0D32B2;--color-attention-subtle:#676C7E;--color-danger-fg:red;}.sketch-overlay-B1{fill:url(#streaks-darker);mix-blend-mode:lighten}.sketch-overlay-B2{fill:url(#streaks-darker);mix-blend-mode:lighten}.sketch-overlay-B3{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-B4{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-B5{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-B6{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-AA2{fill:url(#streaks-dark);mix-blend-mode:overlay}.sketch-overlay-AA4{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-AA5{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-AB4{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-AB5{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-N1{fill:url(#streaks-darker);mix-blend-mode:lighten}.sketch-overlay-N2{fill:url(#streaks-dark);mix-blend-mode:overlay}.sketch-overlay-N3{fill:url(#streaks-normal);mix-blend-mode:color-burn}.sketch-overlay-N4{fill:url(#streaks-normal);mix-blend-mode:color-burn}.sketch-overlay-N5{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-N6{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-N7{fill:url(#streaks-bright);mix-blend-mode:darken}.light-code{display: block}.dark-code{display: none}]]>ninetynineeighty eightseventy sevena\yodetherea\"odea\node diff --git a/e2etests/testdata/regression/dagre_special_ids/elk/board.exp.json b/e2etests/testdata/regression/dagre_special_ids/elk/board.exp.json index 1d5b8048cd..308d1059ff 100644 --- a/e2etests/testdata/regression/dagre_special_ids/elk/board.exp.json +++ b/e2etests/testdata/regression/dagre_special_ids/elk/board.exp.json @@ -315,6 +315,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 403, @@ -361,6 +362,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 517, @@ -399,6 +401,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 631.5, diff --git a/e2etests/testdata/regression/dagre_special_ids/elk/sketch.exp.svg b/e2etests/testdata/regression/dagre_special_ids/elk/sketch.exp.svg index 9a73266221..69f49f8d3a 100644 --- a/e2etests/testdata/regression/dagre_special_ids/elk/sketch.exp.svg +++ b/e2etests/testdata/regression/dagre_special_ids/elk/sketch.exp.svg @@ -1,9 +1,9 @@ -ninetynineeighty eightseventy sevena\yodetherea\"odea\node + .d2-1047469682 .fill-N1{fill:#0A0F25;} + .d2-1047469682 .fill-N2{fill:#676C7E;} + .d2-1047469682 .fill-N3{fill:#9499AB;} + .d2-1047469682 .fill-N4{fill:#CFD2DD;} + .d2-1047469682 .fill-N5{fill:#DEE1EB;} + .d2-1047469682 .fill-N6{fill:#EEF1F8;} + .d2-1047469682 .fill-N7{fill:#FFFFFF;} + .d2-1047469682 .fill-B1{fill:#0D32B2;} + .d2-1047469682 .fill-B2{fill:#0D32B2;} + .d2-1047469682 .fill-B3{fill:#E3E9FD;} + .d2-1047469682 .fill-B4{fill:#E3E9FD;} + .d2-1047469682 .fill-B5{fill:#EDF0FD;} + .d2-1047469682 .fill-B6{fill:#F7F8FE;} + .d2-1047469682 .fill-AA2{fill:#4A6FF3;} + .d2-1047469682 .fill-AA4{fill:#EDF0FD;} + .d2-1047469682 .fill-AA5{fill:#F7F8FE;} + .d2-1047469682 .fill-AB4{fill:#EDF0FD;} + .d2-1047469682 .fill-AB5{fill:#F7F8FE;} + .d2-1047469682 .stroke-N1{stroke:#0A0F25;} + .d2-1047469682 .stroke-N2{stroke:#676C7E;} + .d2-1047469682 .stroke-N3{stroke:#9499AB;} + .d2-1047469682 .stroke-N4{stroke:#CFD2DD;} + .d2-1047469682 .stroke-N5{stroke:#DEE1EB;} + .d2-1047469682 .stroke-N6{stroke:#EEF1F8;} + .d2-1047469682 .stroke-N7{stroke:#FFFFFF;} + .d2-1047469682 .stroke-B1{stroke:#0D32B2;} + .d2-1047469682 .stroke-B2{stroke:#0D32B2;} + .d2-1047469682 .stroke-B3{stroke:#E3E9FD;} + .d2-1047469682 .stroke-B4{stroke:#E3E9FD;} + .d2-1047469682 .stroke-B5{stroke:#EDF0FD;} + .d2-1047469682 .stroke-B6{stroke:#F7F8FE;} + .d2-1047469682 .stroke-AA2{stroke:#4A6FF3;} + .d2-1047469682 .stroke-AA4{stroke:#EDF0FD;} + .d2-1047469682 .stroke-AA5{stroke:#F7F8FE;} + .d2-1047469682 .stroke-AB4{stroke:#EDF0FD;} + .d2-1047469682 .stroke-AB5{stroke:#F7F8FE;} + .d2-1047469682 .background-color-N1{background-color:#0A0F25;} + .d2-1047469682 .background-color-N2{background-color:#676C7E;} + .d2-1047469682 .background-color-N3{background-color:#9499AB;} + .d2-1047469682 .background-color-N4{background-color:#CFD2DD;} + .d2-1047469682 .background-color-N5{background-color:#DEE1EB;} + .d2-1047469682 .background-color-N6{background-color:#EEF1F8;} + .d2-1047469682 .background-color-N7{background-color:#FFFFFF;} + .d2-1047469682 .background-color-B1{background-color:#0D32B2;} + .d2-1047469682 .background-color-B2{background-color:#0D32B2;} + .d2-1047469682 .background-color-B3{background-color:#E3E9FD;} + .d2-1047469682 .background-color-B4{background-color:#E3E9FD;} + .d2-1047469682 .background-color-B5{background-color:#EDF0FD;} + .d2-1047469682 .background-color-B6{background-color:#F7F8FE;} + .d2-1047469682 .background-color-AA2{background-color:#4A6FF3;} + .d2-1047469682 .background-color-AA4{background-color:#EDF0FD;} + .d2-1047469682 .background-color-AA5{background-color:#F7F8FE;} + .d2-1047469682 .background-color-AB4{background-color:#EDF0FD;} + .d2-1047469682 .background-color-AB5{background-color:#F7F8FE;} + .d2-1047469682 .color-N1{color:#0A0F25;} + .d2-1047469682 .color-N2{color:#676C7E;} + .d2-1047469682 .color-N3{color:#9499AB;} + .d2-1047469682 .color-N4{color:#CFD2DD;} + .d2-1047469682 .color-N5{color:#DEE1EB;} + .d2-1047469682 .color-N6{color:#EEF1F8;} + .d2-1047469682 .color-N7{color:#FFFFFF;} + .d2-1047469682 .color-B1{color:#0D32B2;} + .d2-1047469682 .color-B2{color:#0D32B2;} + .d2-1047469682 .color-B3{color:#E3E9FD;} + .d2-1047469682 .color-B4{color:#E3E9FD;} + .d2-1047469682 .color-B5{color:#EDF0FD;} + .d2-1047469682 .color-B6{color:#F7F8FE;} + .d2-1047469682 .color-AA2{color:#4A6FF3;} + .d2-1047469682 .color-AA4{color:#EDF0FD;} + .d2-1047469682 .color-AA5{color:#F7F8FE;} + .d2-1047469682 .color-AB4{color:#EDF0FD;} + .d2-1047469682 .color-AB5{color:#F7F8FE;}.appendix text.text{fill:#0A0F25}.md{--color-fg-default:#0A0F25;--color-fg-muted:#676C7E;--color-fg-subtle:#9499AB;--color-canvas-default:#FFFFFF;--color-canvas-subtle:#EEF1F8;--color-border-default:#0D32B2;--color-border-muted:#0D32B2;--color-neutral-muted:#EEF1F8;--color-accent-fg:#0D32B2;--color-accent-emphasis:#0D32B2;--color-attention-subtle:#676C7E;--color-danger-fg:red;}.sketch-overlay-B1{fill:url(#streaks-darker);mix-blend-mode:lighten}.sketch-overlay-B2{fill:url(#streaks-darker);mix-blend-mode:lighten}.sketch-overlay-B3{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-B4{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-B5{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-B6{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-AA2{fill:url(#streaks-dark);mix-blend-mode:overlay}.sketch-overlay-AA4{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-AA5{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-AB4{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-AB5{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-N1{fill:url(#streaks-darker);mix-blend-mode:lighten}.sketch-overlay-N2{fill:url(#streaks-dark);mix-blend-mode:overlay}.sketch-overlay-N3{fill:url(#streaks-normal);mix-blend-mode:color-burn}.sketch-overlay-N4{fill:url(#streaks-normal);mix-blend-mode:color-burn}.sketch-overlay-N5{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-N6{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-N7{fill:url(#streaks-bright);mix-blend-mode:darken}.light-code{display: block}.dark-code{display: none}]]>ninetynineeighty eightseventy sevena\yodetherea\"odea\node diff --git a/e2etests/testdata/regression/disconnect_direction_right/dagre/board.exp.json b/e2etests/testdata/regression/disconnect_direction_right/dagre/board.exp.json index 0702d7c9e6..db7a7ec478 100644 --- a/e2etests/testdata/regression/disconnect_direction_right/dagre/board.exp.json +++ b/e2etests/testdata/regression/disconnect_direction_right/dagre/board.exp.json @@ -274,6 +274,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 103, @@ -333,6 +334,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 103, diff --git a/e2etests/testdata/regression/disconnect_direction_right/dagre/sketch.exp.svg b/e2etests/testdata/regression/disconnect_direction_right/dagre/sketch.exp.svg index f0531bfb02..dec5549c8f 100644 --- a/e2etests/testdata/regression/disconnect_direction_right/dagre/sketch.exp.svg +++ b/e2etests/testdata/regression/disconnect_direction_right/dagre/sketch.exp.svg @@ -1,16 +1,16 @@ -acebdf + .d2-634827364 .fill-N1{fill:#0A0F25;} + .d2-634827364 .fill-N2{fill:#676C7E;} + .d2-634827364 .fill-N3{fill:#9499AB;} + .d2-634827364 .fill-N4{fill:#CFD2DD;} + .d2-634827364 .fill-N5{fill:#DEE1EB;} + .d2-634827364 .fill-N6{fill:#EEF1F8;} + .d2-634827364 .fill-N7{fill:#FFFFFF;} + .d2-634827364 .fill-B1{fill:#0D32B2;} + .d2-634827364 .fill-B2{fill:#0D32B2;} + .d2-634827364 .fill-B3{fill:#E3E9FD;} + .d2-634827364 .fill-B4{fill:#E3E9FD;} + .d2-634827364 .fill-B5{fill:#EDF0FD;} + .d2-634827364 .fill-B6{fill:#F7F8FE;} + .d2-634827364 .fill-AA2{fill:#4A6FF3;} + .d2-634827364 .fill-AA4{fill:#EDF0FD;} + .d2-634827364 .fill-AA5{fill:#F7F8FE;} + .d2-634827364 .fill-AB4{fill:#EDF0FD;} + .d2-634827364 .fill-AB5{fill:#F7F8FE;} + .d2-634827364 .stroke-N1{stroke:#0A0F25;} + .d2-634827364 .stroke-N2{stroke:#676C7E;} + .d2-634827364 .stroke-N3{stroke:#9499AB;} + .d2-634827364 .stroke-N4{stroke:#CFD2DD;} + .d2-634827364 .stroke-N5{stroke:#DEE1EB;} + .d2-634827364 .stroke-N6{stroke:#EEF1F8;} + .d2-634827364 .stroke-N7{stroke:#FFFFFF;} + .d2-634827364 .stroke-B1{stroke:#0D32B2;} + .d2-634827364 .stroke-B2{stroke:#0D32B2;} + .d2-634827364 .stroke-B3{stroke:#E3E9FD;} + .d2-634827364 .stroke-B4{stroke:#E3E9FD;} + .d2-634827364 .stroke-B5{stroke:#EDF0FD;} + .d2-634827364 .stroke-B6{stroke:#F7F8FE;} + .d2-634827364 .stroke-AA2{stroke:#4A6FF3;} + .d2-634827364 .stroke-AA4{stroke:#EDF0FD;} + .d2-634827364 .stroke-AA5{stroke:#F7F8FE;} + .d2-634827364 .stroke-AB4{stroke:#EDF0FD;} + .d2-634827364 .stroke-AB5{stroke:#F7F8FE;} + .d2-634827364 .background-color-N1{background-color:#0A0F25;} + .d2-634827364 .background-color-N2{background-color:#676C7E;} + .d2-634827364 .background-color-N3{background-color:#9499AB;} + .d2-634827364 .background-color-N4{background-color:#CFD2DD;} + .d2-634827364 .background-color-N5{background-color:#DEE1EB;} + .d2-634827364 .background-color-N6{background-color:#EEF1F8;} + .d2-634827364 .background-color-N7{background-color:#FFFFFF;} + .d2-634827364 .background-color-B1{background-color:#0D32B2;} + .d2-634827364 .background-color-B2{background-color:#0D32B2;} + .d2-634827364 .background-color-B3{background-color:#E3E9FD;} + .d2-634827364 .background-color-B4{background-color:#E3E9FD;} + .d2-634827364 .background-color-B5{background-color:#EDF0FD;} + .d2-634827364 .background-color-B6{background-color:#F7F8FE;} + .d2-634827364 .background-color-AA2{background-color:#4A6FF3;} + .d2-634827364 .background-color-AA4{background-color:#EDF0FD;} + .d2-634827364 .background-color-AA5{background-color:#F7F8FE;} + .d2-634827364 .background-color-AB4{background-color:#EDF0FD;} + .d2-634827364 .background-color-AB5{background-color:#F7F8FE;} + .d2-634827364 .color-N1{color:#0A0F25;} + .d2-634827364 .color-N2{color:#676C7E;} + .d2-634827364 .color-N3{color:#9499AB;} + .d2-634827364 .color-N4{color:#CFD2DD;} + .d2-634827364 .color-N5{color:#DEE1EB;} + .d2-634827364 .color-N6{color:#EEF1F8;} + .d2-634827364 .color-N7{color:#FFFFFF;} + .d2-634827364 .color-B1{color:#0D32B2;} + .d2-634827364 .color-B2{color:#0D32B2;} + .d2-634827364 .color-B3{color:#E3E9FD;} + .d2-634827364 .color-B4{color:#E3E9FD;} + .d2-634827364 .color-B5{color:#EDF0FD;} + .d2-634827364 .color-B6{color:#F7F8FE;} + .d2-634827364 .color-AA2{color:#4A6FF3;} + .d2-634827364 .color-AA4{color:#EDF0FD;} + .d2-634827364 .color-AA5{color:#F7F8FE;} + .d2-634827364 .color-AB4{color:#EDF0FD;} + .d2-634827364 .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}]]>acebdf diff --git a/e2etests/testdata/regression/disconnect_direction_right/elk/board.exp.json b/e2etests/testdata/regression/disconnect_direction_right/elk/board.exp.json index 52dd59166d..2ce0ef9ac4 100644 --- a/e2etests/testdata/regression/disconnect_direction_right/elk/board.exp.json +++ b/e2etests/testdata/regression/disconnect_direction_right/elk/board.exp.json @@ -274,6 +274,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 115, @@ -320,6 +321,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 115, diff --git a/e2etests/testdata/regression/disconnect_direction_right/elk/sketch.exp.svg b/e2etests/testdata/regression/disconnect_direction_right/elk/sketch.exp.svg index 6d13fd967e..5f10b50f99 100644 --- a/e2etests/testdata/regression/disconnect_direction_right/elk/sketch.exp.svg +++ b/e2etests/testdata/regression/disconnect_direction_right/elk/sketch.exp.svg @@ -1,16 +1,16 @@ -acebdf + .d2-1569895272 .fill-N1{fill:#0A0F25;} + .d2-1569895272 .fill-N2{fill:#676C7E;} + .d2-1569895272 .fill-N3{fill:#9499AB;} + .d2-1569895272 .fill-N4{fill:#CFD2DD;} + .d2-1569895272 .fill-N5{fill:#DEE1EB;} + .d2-1569895272 .fill-N6{fill:#EEF1F8;} + .d2-1569895272 .fill-N7{fill:#FFFFFF;} + .d2-1569895272 .fill-B1{fill:#0D32B2;} + .d2-1569895272 .fill-B2{fill:#0D32B2;} + .d2-1569895272 .fill-B3{fill:#E3E9FD;} + .d2-1569895272 .fill-B4{fill:#E3E9FD;} + .d2-1569895272 .fill-B5{fill:#EDF0FD;} + .d2-1569895272 .fill-B6{fill:#F7F8FE;} + .d2-1569895272 .fill-AA2{fill:#4A6FF3;} + .d2-1569895272 .fill-AA4{fill:#EDF0FD;} + .d2-1569895272 .fill-AA5{fill:#F7F8FE;} + .d2-1569895272 .fill-AB4{fill:#EDF0FD;} + .d2-1569895272 .fill-AB5{fill:#F7F8FE;} + .d2-1569895272 .stroke-N1{stroke:#0A0F25;} + .d2-1569895272 .stroke-N2{stroke:#676C7E;} + .d2-1569895272 .stroke-N3{stroke:#9499AB;} + .d2-1569895272 .stroke-N4{stroke:#CFD2DD;} + .d2-1569895272 .stroke-N5{stroke:#DEE1EB;} + .d2-1569895272 .stroke-N6{stroke:#EEF1F8;} + .d2-1569895272 .stroke-N7{stroke:#FFFFFF;} + .d2-1569895272 .stroke-B1{stroke:#0D32B2;} + .d2-1569895272 .stroke-B2{stroke:#0D32B2;} + .d2-1569895272 .stroke-B3{stroke:#E3E9FD;} + .d2-1569895272 .stroke-B4{stroke:#E3E9FD;} + .d2-1569895272 .stroke-B5{stroke:#EDF0FD;} + .d2-1569895272 .stroke-B6{stroke:#F7F8FE;} + .d2-1569895272 .stroke-AA2{stroke:#4A6FF3;} + .d2-1569895272 .stroke-AA4{stroke:#EDF0FD;} + .d2-1569895272 .stroke-AA5{stroke:#F7F8FE;} + .d2-1569895272 .stroke-AB4{stroke:#EDF0FD;} + .d2-1569895272 .stroke-AB5{stroke:#F7F8FE;} + .d2-1569895272 .background-color-N1{background-color:#0A0F25;} + .d2-1569895272 .background-color-N2{background-color:#676C7E;} + .d2-1569895272 .background-color-N3{background-color:#9499AB;} + .d2-1569895272 .background-color-N4{background-color:#CFD2DD;} + .d2-1569895272 .background-color-N5{background-color:#DEE1EB;} + .d2-1569895272 .background-color-N6{background-color:#EEF1F8;} + .d2-1569895272 .background-color-N7{background-color:#FFFFFF;} + .d2-1569895272 .background-color-B1{background-color:#0D32B2;} + .d2-1569895272 .background-color-B2{background-color:#0D32B2;} + .d2-1569895272 .background-color-B3{background-color:#E3E9FD;} + .d2-1569895272 .background-color-B4{background-color:#E3E9FD;} + .d2-1569895272 .background-color-B5{background-color:#EDF0FD;} + .d2-1569895272 .background-color-B6{background-color:#F7F8FE;} + .d2-1569895272 .background-color-AA2{background-color:#4A6FF3;} + .d2-1569895272 .background-color-AA4{background-color:#EDF0FD;} + .d2-1569895272 .background-color-AA5{background-color:#F7F8FE;} + .d2-1569895272 .background-color-AB4{background-color:#EDF0FD;} + .d2-1569895272 .background-color-AB5{background-color:#F7F8FE;} + .d2-1569895272 .color-N1{color:#0A0F25;} + .d2-1569895272 .color-N2{color:#676C7E;} + .d2-1569895272 .color-N3{color:#9499AB;} + .d2-1569895272 .color-N4{color:#CFD2DD;} + .d2-1569895272 .color-N5{color:#DEE1EB;} + .d2-1569895272 .color-N6{color:#EEF1F8;} + .d2-1569895272 .color-N7{color:#FFFFFF;} + .d2-1569895272 .color-B1{color:#0D32B2;} + .d2-1569895272 .color-B2{color:#0D32B2;} + .d2-1569895272 .color-B3{color:#E3E9FD;} + .d2-1569895272 .color-B4{color:#E3E9FD;} + .d2-1569895272 .color-B5{color:#EDF0FD;} + .d2-1569895272 .color-B6{color:#F7F8FE;} + .d2-1569895272 .color-AA2{color:#4A6FF3;} + .d2-1569895272 .color-AA4{color:#EDF0FD;} + .d2-1569895272 .color-AA5{color:#F7F8FE;} + .d2-1569895272 .color-AB4{color:#EDF0FD;} + .d2-1569895272 .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}]]>acebdf diff --git a/e2etests/testdata/regression/elk_alignment/dagre/board.exp.json b/e2etests/testdata/regression/elk_alignment/dagre/board.exp.json index 0bd9461d51..f7d57ceed9 100644 --- a/e2etests/testdata/regression/elk_alignment/dagre/board.exp.json +++ b/e2etests/testdata/regression/elk_alignment/dagre/board.exp.json @@ -602,6 +602,7 @@ "labelHeight": 26, "labelPosition": "INSIDE_MIDDLE_CENTER", "labelPercentage": 0, + "link": "", "route": [ { "x": 175, @@ -649,6 +650,7 @@ "labelHeight": 26, "labelPosition": "INSIDE_MIDDLE_CENTER", "labelPercentage": 0, + "link": "", "route": [ { "x": 175, @@ -696,6 +698,7 @@ "labelHeight": 26, "labelPosition": "INSIDE_MIDDLE_CENTER", "labelPercentage": 0, + "link": "", "route": [ { "x": 175, @@ -743,6 +746,7 @@ "labelHeight": 26, "labelPosition": "INSIDE_MIDDLE_CENTER", "labelPercentage": 0, + "link": "", "route": [ { "x": 175, @@ -790,6 +794,7 @@ "labelHeight": 26, "labelPosition": "INSIDE_MIDDLE_CENTER", "labelPercentage": 0, + "link": "", "route": [ { "x": 515.5, @@ -837,6 +842,7 @@ "labelHeight": 106, "labelPosition": "INSIDE_MIDDLE_CENTER", "labelPercentage": 0, + "link": "", "route": [ { "x": 515.5, @@ -884,6 +890,7 @@ "labelHeight": 26, "labelPosition": "INSIDE_MIDDLE_CENTER", "labelPercentage": 0, + "link": "", "route": [ { "x": 967.5, @@ -931,6 +938,7 @@ "labelHeight": 26, "labelPosition": "INSIDE_MIDDLE_CENTER", "labelPercentage": 0, + "link": "", "route": [ { "x": 967.5, diff --git a/e2etests/testdata/regression/elk_alignment/dagre/sketch.exp.svg b/e2etests/testdata/regression/elk_alignment/dagre/sketch.exp.svg index d7dc940d67..b06312c7d1 100644 --- a/e2etests/testdata/regression/elk_alignment/dagre/sketch.exp.svg +++ b/e2etests/testdata/regression/elk_alignment/dagre/sketch.exp.svg @@ -1,23 +1,23 @@ -lambda-build.yamllambda-deploy.yamlapollo-deploy.yamlPush to main branchGitHub ActionsS3TerraformAWSManual TriggerGitHub ActionsAWSApollo RepoGitHub ActionsAWS TriggersBuilds zip and pushes it Pulls zip to deployChanges live lambdasLaunchesBuilds zippushes them to S3. Deploys lambdasusing TerraformTriggered manually/push to master test test test test test test testtest + .d2-3780985022 .fill-N1{fill:#0A0F25;} + .d2-3780985022 .fill-N2{fill:#676C7E;} + .d2-3780985022 .fill-N3{fill:#9499AB;} + .d2-3780985022 .fill-N4{fill:#CFD2DD;} + .d2-3780985022 .fill-N5{fill:#DEE1EB;} + .d2-3780985022 .fill-N6{fill:#EEF1F8;} + .d2-3780985022 .fill-N7{fill:#FFFFFF;} + .d2-3780985022 .fill-B1{fill:#0D32B2;} + .d2-3780985022 .fill-B2{fill:#0D32B2;} + .d2-3780985022 .fill-B3{fill:#E3E9FD;} + .d2-3780985022 .fill-B4{fill:#E3E9FD;} + .d2-3780985022 .fill-B5{fill:#EDF0FD;} + .d2-3780985022 .fill-B6{fill:#F7F8FE;} + .d2-3780985022 .fill-AA2{fill:#4A6FF3;} + .d2-3780985022 .fill-AA4{fill:#EDF0FD;} + .d2-3780985022 .fill-AA5{fill:#F7F8FE;} + .d2-3780985022 .fill-AB4{fill:#EDF0FD;} + .d2-3780985022 .fill-AB5{fill:#F7F8FE;} + .d2-3780985022 .stroke-N1{stroke:#0A0F25;} + .d2-3780985022 .stroke-N2{stroke:#676C7E;} + .d2-3780985022 .stroke-N3{stroke:#9499AB;} + .d2-3780985022 .stroke-N4{stroke:#CFD2DD;} + .d2-3780985022 .stroke-N5{stroke:#DEE1EB;} + .d2-3780985022 .stroke-N6{stroke:#EEF1F8;} + .d2-3780985022 .stroke-N7{stroke:#FFFFFF;} + .d2-3780985022 .stroke-B1{stroke:#0D32B2;} + .d2-3780985022 .stroke-B2{stroke:#0D32B2;} + .d2-3780985022 .stroke-B3{stroke:#E3E9FD;} + .d2-3780985022 .stroke-B4{stroke:#E3E9FD;} + .d2-3780985022 .stroke-B5{stroke:#EDF0FD;} + .d2-3780985022 .stroke-B6{stroke:#F7F8FE;} + .d2-3780985022 .stroke-AA2{stroke:#4A6FF3;} + .d2-3780985022 .stroke-AA4{stroke:#EDF0FD;} + .d2-3780985022 .stroke-AA5{stroke:#F7F8FE;} + .d2-3780985022 .stroke-AB4{stroke:#EDF0FD;} + .d2-3780985022 .stroke-AB5{stroke:#F7F8FE;} + .d2-3780985022 .background-color-N1{background-color:#0A0F25;} + .d2-3780985022 .background-color-N2{background-color:#676C7E;} + .d2-3780985022 .background-color-N3{background-color:#9499AB;} + .d2-3780985022 .background-color-N4{background-color:#CFD2DD;} + .d2-3780985022 .background-color-N5{background-color:#DEE1EB;} + .d2-3780985022 .background-color-N6{background-color:#EEF1F8;} + .d2-3780985022 .background-color-N7{background-color:#FFFFFF;} + .d2-3780985022 .background-color-B1{background-color:#0D32B2;} + .d2-3780985022 .background-color-B2{background-color:#0D32B2;} + .d2-3780985022 .background-color-B3{background-color:#E3E9FD;} + .d2-3780985022 .background-color-B4{background-color:#E3E9FD;} + .d2-3780985022 .background-color-B5{background-color:#EDF0FD;} + .d2-3780985022 .background-color-B6{background-color:#F7F8FE;} + .d2-3780985022 .background-color-AA2{background-color:#4A6FF3;} + .d2-3780985022 .background-color-AA4{background-color:#EDF0FD;} + .d2-3780985022 .background-color-AA5{background-color:#F7F8FE;} + .d2-3780985022 .background-color-AB4{background-color:#EDF0FD;} + .d2-3780985022 .background-color-AB5{background-color:#F7F8FE;} + .d2-3780985022 .color-N1{color:#0A0F25;} + .d2-3780985022 .color-N2{color:#676C7E;} + .d2-3780985022 .color-N3{color:#9499AB;} + .d2-3780985022 .color-N4{color:#CFD2DD;} + .d2-3780985022 .color-N5{color:#DEE1EB;} + .d2-3780985022 .color-N6{color:#EEF1F8;} + .d2-3780985022 .color-N7{color:#FFFFFF;} + .d2-3780985022 .color-B1{color:#0D32B2;} + .d2-3780985022 .color-B2{color:#0D32B2;} + .d2-3780985022 .color-B3{color:#E3E9FD;} + .d2-3780985022 .color-B4{color:#E3E9FD;} + .d2-3780985022 .color-B5{color:#EDF0FD;} + .d2-3780985022 .color-B6{color:#F7F8FE;} + .d2-3780985022 .color-AA2{color:#4A6FF3;} + .d2-3780985022 .color-AA4{color:#EDF0FD;} + .d2-3780985022 .color-AA5{color:#F7F8FE;} + .d2-3780985022 .color-AB4{color:#EDF0FD;} + .d2-3780985022 .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}]]>lambda-build.yamllambda-deploy.yamlapollo-deploy.yamlPush to main branchGitHub ActionsS3TerraformAWSManual TriggerGitHub ActionsAWSApollo RepoGitHub ActionsAWS TriggersBuilds zip and pushes it Pulls zip to deployChanges live lambdasLaunchesBuilds zippushes them to S3. Deploys lambdasusing TerraformTriggered manually/push to master test test test test test test testtest diff --git a/e2etests/testdata/regression/elk_alignment/elk/board.exp.json b/e2etests/testdata/regression/elk_alignment/elk/board.exp.json index f3683eb179..2430a61c16 100644 --- a/e2etests/testdata/regression/elk_alignment/elk/board.exp.json +++ b/e2etests/testdata/regression/elk_alignment/elk/board.exp.json @@ -602,6 +602,7 @@ "labelHeight": 26, "labelPosition": "INSIDE_MIDDLE_CENTER", "labelPercentage": 0, + "link": "", "route": [ { "x": 197, @@ -640,6 +641,7 @@ "labelHeight": 26, "labelPosition": "INSIDE_MIDDLE_CENTER", "labelPercentage": 0, + "link": "", "route": [ { "x": 197, @@ -678,6 +680,7 @@ "labelHeight": 26, "labelPosition": "INSIDE_MIDDLE_CENTER", "labelPercentage": 0, + "link": "", "route": [ { "x": 197, @@ -716,6 +719,7 @@ "labelHeight": 26, "labelPosition": "INSIDE_MIDDLE_CENTER", "labelPercentage": 0, + "link": "", "route": [ { "x": 197, @@ -754,6 +758,7 @@ "labelHeight": 26, "labelPosition": "INSIDE_MIDDLE_CENTER", "labelPercentage": 0, + "link": "", "route": [ { "x": 557.5, @@ -792,6 +797,7 @@ "labelHeight": 106, "labelPosition": "INSIDE_MIDDLE_CENTER", "labelPercentage": 0, + "link": "", "route": [ { "x": 557.5, @@ -830,6 +836,7 @@ "labelHeight": 26, "labelPosition": "INSIDE_MIDDLE_CENTER", "labelPercentage": 0, + "link": "", "route": [ { "x": 1049.5, @@ -868,6 +875,7 @@ "labelHeight": 26, "labelPosition": "INSIDE_MIDDLE_CENTER", "labelPercentage": 0, + "link": "", "route": [ { "x": 1049.5, diff --git a/e2etests/testdata/regression/elk_alignment/elk/sketch.exp.svg b/e2etests/testdata/regression/elk_alignment/elk/sketch.exp.svg index e083e32d4e..543d108480 100644 --- a/e2etests/testdata/regression/elk_alignment/elk/sketch.exp.svg +++ b/e2etests/testdata/regression/elk_alignment/elk/sketch.exp.svg @@ -1,23 +1,23 @@ -lambda-build.yamllambda-deploy.yamlapollo-deploy.yamlPush to main branchGitHub ActionsS3TerraformAWSManual TriggerGitHub ActionsAWSApollo RepoGitHub ActionsAWS TriggersBuilds zip and pushes it Pulls zip to deployChanges live lambdasLaunchesBuilds zippushes them to S3. Deploys lambdasusing TerraformTriggered manually/push to master test test test test test test testtest + .d2-117687050 .fill-N1{fill:#0A0F25;} + .d2-117687050 .fill-N2{fill:#676C7E;} + .d2-117687050 .fill-N3{fill:#9499AB;} + .d2-117687050 .fill-N4{fill:#CFD2DD;} + .d2-117687050 .fill-N5{fill:#DEE1EB;} + .d2-117687050 .fill-N6{fill:#EEF1F8;} + .d2-117687050 .fill-N7{fill:#FFFFFF;} + .d2-117687050 .fill-B1{fill:#0D32B2;} + .d2-117687050 .fill-B2{fill:#0D32B2;} + .d2-117687050 .fill-B3{fill:#E3E9FD;} + .d2-117687050 .fill-B4{fill:#E3E9FD;} + .d2-117687050 .fill-B5{fill:#EDF0FD;} + .d2-117687050 .fill-B6{fill:#F7F8FE;} + .d2-117687050 .fill-AA2{fill:#4A6FF3;} + .d2-117687050 .fill-AA4{fill:#EDF0FD;} + .d2-117687050 .fill-AA5{fill:#F7F8FE;} + .d2-117687050 .fill-AB4{fill:#EDF0FD;} + .d2-117687050 .fill-AB5{fill:#F7F8FE;} + .d2-117687050 .stroke-N1{stroke:#0A0F25;} + .d2-117687050 .stroke-N2{stroke:#676C7E;} + .d2-117687050 .stroke-N3{stroke:#9499AB;} + .d2-117687050 .stroke-N4{stroke:#CFD2DD;} + .d2-117687050 .stroke-N5{stroke:#DEE1EB;} + .d2-117687050 .stroke-N6{stroke:#EEF1F8;} + .d2-117687050 .stroke-N7{stroke:#FFFFFF;} + .d2-117687050 .stroke-B1{stroke:#0D32B2;} + .d2-117687050 .stroke-B2{stroke:#0D32B2;} + .d2-117687050 .stroke-B3{stroke:#E3E9FD;} + .d2-117687050 .stroke-B4{stroke:#E3E9FD;} + .d2-117687050 .stroke-B5{stroke:#EDF0FD;} + .d2-117687050 .stroke-B6{stroke:#F7F8FE;} + .d2-117687050 .stroke-AA2{stroke:#4A6FF3;} + .d2-117687050 .stroke-AA4{stroke:#EDF0FD;} + .d2-117687050 .stroke-AA5{stroke:#F7F8FE;} + .d2-117687050 .stroke-AB4{stroke:#EDF0FD;} + .d2-117687050 .stroke-AB5{stroke:#F7F8FE;} + .d2-117687050 .background-color-N1{background-color:#0A0F25;} + .d2-117687050 .background-color-N2{background-color:#676C7E;} + .d2-117687050 .background-color-N3{background-color:#9499AB;} + .d2-117687050 .background-color-N4{background-color:#CFD2DD;} + .d2-117687050 .background-color-N5{background-color:#DEE1EB;} + .d2-117687050 .background-color-N6{background-color:#EEF1F8;} + .d2-117687050 .background-color-N7{background-color:#FFFFFF;} + .d2-117687050 .background-color-B1{background-color:#0D32B2;} + .d2-117687050 .background-color-B2{background-color:#0D32B2;} + .d2-117687050 .background-color-B3{background-color:#E3E9FD;} + .d2-117687050 .background-color-B4{background-color:#E3E9FD;} + .d2-117687050 .background-color-B5{background-color:#EDF0FD;} + .d2-117687050 .background-color-B6{background-color:#F7F8FE;} + .d2-117687050 .background-color-AA2{background-color:#4A6FF3;} + .d2-117687050 .background-color-AA4{background-color:#EDF0FD;} + .d2-117687050 .background-color-AA5{background-color:#F7F8FE;} + .d2-117687050 .background-color-AB4{background-color:#EDF0FD;} + .d2-117687050 .background-color-AB5{background-color:#F7F8FE;} + .d2-117687050 .color-N1{color:#0A0F25;} + .d2-117687050 .color-N2{color:#676C7E;} + .d2-117687050 .color-N3{color:#9499AB;} + .d2-117687050 .color-N4{color:#CFD2DD;} + .d2-117687050 .color-N5{color:#DEE1EB;} + .d2-117687050 .color-N6{color:#EEF1F8;} + .d2-117687050 .color-N7{color:#FFFFFF;} + .d2-117687050 .color-B1{color:#0D32B2;} + .d2-117687050 .color-B2{color:#0D32B2;} + .d2-117687050 .color-B3{color:#E3E9FD;} + .d2-117687050 .color-B4{color:#E3E9FD;} + .d2-117687050 .color-B5{color:#EDF0FD;} + .d2-117687050 .color-B6{color:#F7F8FE;} + .d2-117687050 .color-AA2{color:#4A6FF3;} + .d2-117687050 .color-AA4{color:#EDF0FD;} + .d2-117687050 .color-AA5{color:#F7F8FE;} + .d2-117687050 .color-AB4{color:#EDF0FD;} + .d2-117687050 .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}]]>lambda-build.yamllambda-deploy.yamlapollo-deploy.yamlPush to main branchGitHub ActionsS3TerraformAWSManual TriggerGitHub ActionsAWSApollo RepoGitHub ActionsAWS TriggersBuilds zip and pushes it Pulls zip to deployChanges live lambdasLaunchesBuilds zippushes them to S3. Deploys lambdasusing TerraformTriggered manually/push to master test test test test test test testtest diff --git a/e2etests/testdata/regression/elk_loop_panic/dagre/board.exp.json b/e2etests/testdata/regression/elk_loop_panic/dagre/board.exp.json index c31719ee2d..c02b2d8225 100644 --- a/e2etests/testdata/regression/elk_loop_panic/dagre/board.exp.json +++ b/e2etests/testdata/regression/elk_loop_panic/dagre/board.exp.json @@ -151,6 +151,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 92.66600036621094, diff --git a/e2etests/testdata/regression/elk_loop_panic/dagre/sketch.exp.svg b/e2etests/testdata/regression/elk_loop_panic/dagre/sketch.exp.svg index 7ee11c670b..e68ef18a77 100644 --- a/e2etests/testdata/regression/elk_loop_panic/dagre/sketch.exp.svg +++ b/e2etests/testdata/regression/elk_loop_panic/dagre/sketch.exp.svg @@ -1,16 +1,16 @@ -xab + .d2-1110461100 .fill-N1{fill:#0A0F25;} + .d2-1110461100 .fill-N2{fill:#676C7E;} + .d2-1110461100 .fill-N3{fill:#9499AB;} + .d2-1110461100 .fill-N4{fill:#CFD2DD;} + .d2-1110461100 .fill-N5{fill:#DEE1EB;} + .d2-1110461100 .fill-N6{fill:#EEF1F8;} + .d2-1110461100 .fill-N7{fill:#FFFFFF;} + .d2-1110461100 .fill-B1{fill:#0D32B2;} + .d2-1110461100 .fill-B2{fill:#0D32B2;} + .d2-1110461100 .fill-B3{fill:#E3E9FD;} + .d2-1110461100 .fill-B4{fill:#E3E9FD;} + .d2-1110461100 .fill-B5{fill:#EDF0FD;} + .d2-1110461100 .fill-B6{fill:#F7F8FE;} + .d2-1110461100 .fill-AA2{fill:#4A6FF3;} + .d2-1110461100 .fill-AA4{fill:#EDF0FD;} + .d2-1110461100 .fill-AA5{fill:#F7F8FE;} + .d2-1110461100 .fill-AB4{fill:#EDF0FD;} + .d2-1110461100 .fill-AB5{fill:#F7F8FE;} + .d2-1110461100 .stroke-N1{stroke:#0A0F25;} + .d2-1110461100 .stroke-N2{stroke:#676C7E;} + .d2-1110461100 .stroke-N3{stroke:#9499AB;} + .d2-1110461100 .stroke-N4{stroke:#CFD2DD;} + .d2-1110461100 .stroke-N5{stroke:#DEE1EB;} + .d2-1110461100 .stroke-N6{stroke:#EEF1F8;} + .d2-1110461100 .stroke-N7{stroke:#FFFFFF;} + .d2-1110461100 .stroke-B1{stroke:#0D32B2;} + .d2-1110461100 .stroke-B2{stroke:#0D32B2;} + .d2-1110461100 .stroke-B3{stroke:#E3E9FD;} + .d2-1110461100 .stroke-B4{stroke:#E3E9FD;} + .d2-1110461100 .stroke-B5{stroke:#EDF0FD;} + .d2-1110461100 .stroke-B6{stroke:#F7F8FE;} + .d2-1110461100 .stroke-AA2{stroke:#4A6FF3;} + .d2-1110461100 .stroke-AA4{stroke:#EDF0FD;} + .d2-1110461100 .stroke-AA5{stroke:#F7F8FE;} + .d2-1110461100 .stroke-AB4{stroke:#EDF0FD;} + .d2-1110461100 .stroke-AB5{stroke:#F7F8FE;} + .d2-1110461100 .background-color-N1{background-color:#0A0F25;} + .d2-1110461100 .background-color-N2{background-color:#676C7E;} + .d2-1110461100 .background-color-N3{background-color:#9499AB;} + .d2-1110461100 .background-color-N4{background-color:#CFD2DD;} + .d2-1110461100 .background-color-N5{background-color:#DEE1EB;} + .d2-1110461100 .background-color-N6{background-color:#EEF1F8;} + .d2-1110461100 .background-color-N7{background-color:#FFFFFF;} + .d2-1110461100 .background-color-B1{background-color:#0D32B2;} + .d2-1110461100 .background-color-B2{background-color:#0D32B2;} + .d2-1110461100 .background-color-B3{background-color:#E3E9FD;} + .d2-1110461100 .background-color-B4{background-color:#E3E9FD;} + .d2-1110461100 .background-color-B5{background-color:#EDF0FD;} + .d2-1110461100 .background-color-B6{background-color:#F7F8FE;} + .d2-1110461100 .background-color-AA2{background-color:#4A6FF3;} + .d2-1110461100 .background-color-AA4{background-color:#EDF0FD;} + .d2-1110461100 .background-color-AA5{background-color:#F7F8FE;} + .d2-1110461100 .background-color-AB4{background-color:#EDF0FD;} + .d2-1110461100 .background-color-AB5{background-color:#F7F8FE;} + .d2-1110461100 .color-N1{color:#0A0F25;} + .d2-1110461100 .color-N2{color:#676C7E;} + .d2-1110461100 .color-N3{color:#9499AB;} + .d2-1110461100 .color-N4{color:#CFD2DD;} + .d2-1110461100 .color-N5{color:#DEE1EB;} + .d2-1110461100 .color-N6{color:#EEF1F8;} + .d2-1110461100 .color-N7{color:#FFFFFF;} + .d2-1110461100 .color-B1{color:#0D32B2;} + .d2-1110461100 .color-B2{color:#0D32B2;} + .d2-1110461100 .color-B3{color:#E3E9FD;} + .d2-1110461100 .color-B4{color:#E3E9FD;} + .d2-1110461100 .color-B5{color:#EDF0FD;} + .d2-1110461100 .color-B6{color:#F7F8FE;} + .d2-1110461100 .color-AA2{color:#4A6FF3;} + .d2-1110461100 .color-AA4{color:#EDF0FD;} + .d2-1110461100 .color-AA5{color:#F7F8FE;} + .d2-1110461100 .color-AB4{color:#EDF0FD;} + .d2-1110461100 .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}]]>xab diff --git a/e2etests/testdata/regression/elk_loop_panic/elk/board.exp.json b/e2etests/testdata/regression/elk_loop_panic/elk/board.exp.json index ee92f21ead..afdbca8251 100644 --- a/e2etests/testdata/regression/elk_loop_panic/elk/board.exp.json +++ b/e2etests/testdata/regression/elk_loop_panic/elk/board.exp.json @@ -151,6 +151,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 112, diff --git a/e2etests/testdata/regression/elk_loop_panic/elk/sketch.exp.svg b/e2etests/testdata/regression/elk_loop_panic/elk/sketch.exp.svg index 5492f67fae..d958a2d7f9 100644 --- a/e2etests/testdata/regression/elk_loop_panic/elk/sketch.exp.svg +++ b/e2etests/testdata/regression/elk_loop_panic/elk/sketch.exp.svg @@ -1,16 +1,16 @@ -xab + .d2-582755485 .fill-N1{fill:#0A0F25;} + .d2-582755485 .fill-N2{fill:#676C7E;} + .d2-582755485 .fill-N3{fill:#9499AB;} + .d2-582755485 .fill-N4{fill:#CFD2DD;} + .d2-582755485 .fill-N5{fill:#DEE1EB;} + .d2-582755485 .fill-N6{fill:#EEF1F8;} + .d2-582755485 .fill-N7{fill:#FFFFFF;} + .d2-582755485 .fill-B1{fill:#0D32B2;} + .d2-582755485 .fill-B2{fill:#0D32B2;} + .d2-582755485 .fill-B3{fill:#E3E9FD;} + .d2-582755485 .fill-B4{fill:#E3E9FD;} + .d2-582755485 .fill-B5{fill:#EDF0FD;} + .d2-582755485 .fill-B6{fill:#F7F8FE;} + .d2-582755485 .fill-AA2{fill:#4A6FF3;} + .d2-582755485 .fill-AA4{fill:#EDF0FD;} + .d2-582755485 .fill-AA5{fill:#F7F8FE;} + .d2-582755485 .fill-AB4{fill:#EDF0FD;} + .d2-582755485 .fill-AB5{fill:#F7F8FE;} + .d2-582755485 .stroke-N1{stroke:#0A0F25;} + .d2-582755485 .stroke-N2{stroke:#676C7E;} + .d2-582755485 .stroke-N3{stroke:#9499AB;} + .d2-582755485 .stroke-N4{stroke:#CFD2DD;} + .d2-582755485 .stroke-N5{stroke:#DEE1EB;} + .d2-582755485 .stroke-N6{stroke:#EEF1F8;} + .d2-582755485 .stroke-N7{stroke:#FFFFFF;} + .d2-582755485 .stroke-B1{stroke:#0D32B2;} + .d2-582755485 .stroke-B2{stroke:#0D32B2;} + .d2-582755485 .stroke-B3{stroke:#E3E9FD;} + .d2-582755485 .stroke-B4{stroke:#E3E9FD;} + .d2-582755485 .stroke-B5{stroke:#EDF0FD;} + .d2-582755485 .stroke-B6{stroke:#F7F8FE;} + .d2-582755485 .stroke-AA2{stroke:#4A6FF3;} + .d2-582755485 .stroke-AA4{stroke:#EDF0FD;} + .d2-582755485 .stroke-AA5{stroke:#F7F8FE;} + .d2-582755485 .stroke-AB4{stroke:#EDF0FD;} + .d2-582755485 .stroke-AB5{stroke:#F7F8FE;} + .d2-582755485 .background-color-N1{background-color:#0A0F25;} + .d2-582755485 .background-color-N2{background-color:#676C7E;} + .d2-582755485 .background-color-N3{background-color:#9499AB;} + .d2-582755485 .background-color-N4{background-color:#CFD2DD;} + .d2-582755485 .background-color-N5{background-color:#DEE1EB;} + .d2-582755485 .background-color-N6{background-color:#EEF1F8;} + .d2-582755485 .background-color-N7{background-color:#FFFFFF;} + .d2-582755485 .background-color-B1{background-color:#0D32B2;} + .d2-582755485 .background-color-B2{background-color:#0D32B2;} + .d2-582755485 .background-color-B3{background-color:#E3E9FD;} + .d2-582755485 .background-color-B4{background-color:#E3E9FD;} + .d2-582755485 .background-color-B5{background-color:#EDF0FD;} + .d2-582755485 .background-color-B6{background-color:#F7F8FE;} + .d2-582755485 .background-color-AA2{background-color:#4A6FF3;} + .d2-582755485 .background-color-AA4{background-color:#EDF0FD;} + .d2-582755485 .background-color-AA5{background-color:#F7F8FE;} + .d2-582755485 .background-color-AB4{background-color:#EDF0FD;} + .d2-582755485 .background-color-AB5{background-color:#F7F8FE;} + .d2-582755485 .color-N1{color:#0A0F25;} + .d2-582755485 .color-N2{color:#676C7E;} + .d2-582755485 .color-N3{color:#9499AB;} + .d2-582755485 .color-N4{color:#CFD2DD;} + .d2-582755485 .color-N5{color:#DEE1EB;} + .d2-582755485 .color-N6{color:#EEF1F8;} + .d2-582755485 .color-N7{color:#FFFFFF;} + .d2-582755485 .color-B1{color:#0D32B2;} + .d2-582755485 .color-B2{color:#0D32B2;} + .d2-582755485 .color-B3{color:#E3E9FD;} + .d2-582755485 .color-B4{color:#E3E9FD;} + .d2-582755485 .color-B5{color:#EDF0FD;} + .d2-582755485 .color-B6{color:#F7F8FE;} + .d2-582755485 .color-AA2{color:#4A6FF3;} + .d2-582755485 .color-AA4{color:#EDF0FD;} + .d2-582755485 .color-AA5{color:#F7F8FE;} + .d2-582755485 .color-AB4{color:#EDF0FD;} + .d2-582755485 .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}]]>xab diff --git a/e2etests/testdata/regression/elk_order/dagre/board.exp.json b/e2etests/testdata/regression/elk_order/dagre/board.exp.json index 0acb8aca91..4e2c261a9b 100644 --- a/e2etests/testdata/regression/elk_order/dagre/board.exp.json +++ b/e2etests/testdata/regression/elk_order/dagre/board.exp.json @@ -515,6 +515,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 72.5, @@ -562,6 +563,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 322.5, @@ -609,6 +611,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 698.5, @@ -656,6 +659,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 873.5, diff --git a/e2etests/testdata/regression/elk_order/dagre/sketch.exp.svg b/e2etests/testdata/regression/elk_order/dagre/sketch.exp.svg index b17edc4653..63542572fb 100644 --- a/e2etests/testdata/regression/elk_order/dagre/sketch.exp.svg +++ b/e2etests/testdata/regression/elk_order/dagre/sketch.exp.svg @@ -1,20 +1,20 @@ -

    Oldest message

    @@ -841,7 +841,7 @@

    Last message

    Next message will be
    inserted here

    -
    M0M1M2M3M4M5M6 +
    M0M1M2M3M4M5M6 diff --git a/e2etests/testdata/regression/elk_order/elk/board.exp.json b/e2etests/testdata/regression/elk_order/elk/board.exp.json index d3302483b3..39ce9a2ec5 100644 --- a/e2etests/testdata/regression/elk_order/elk/board.exp.json +++ b/e2etests/testdata/regression/elk_order/elk/board.exp.json @@ -515,6 +515,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 94.5, @@ -553,6 +554,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 264.5, @@ -591,6 +593,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 520.5, @@ -629,6 +632,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 605.5, diff --git a/e2etests/testdata/regression/elk_order/elk/sketch.exp.svg b/e2etests/testdata/regression/elk_order/elk/sketch.exp.svg index b68b0e4d59..e3168729ba 100644 --- a/e2etests/testdata/regression/elk_order/elk/sketch.exp.svg +++ b/e2etests/testdata/regression/elk_order/elk/sketch.exp.svg @@ -1,20 +1,20 @@ -

    Oldest message

    @@ -841,7 +841,7 @@

    Last message

    Next message will be
    inserted here

    -
    M0M1M2M3M4M5M6 +
    M0M1M2M3M4M5M6 diff --git a/e2etests/testdata/regression/empty_sequence/dagre/board.exp.json b/e2etests/testdata/regression/empty_sequence/dagre/board.exp.json index f532c14a2a..44d89bc264 100644 --- a/e2etests/testdata/regression/empty_sequence/dagre/board.exp.json +++ b/e2etests/testdata/regression/empty_sequence/dagre/board.exp.json @@ -110,6 +110,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 53, diff --git a/e2etests/testdata/regression/empty_sequence/dagre/sketch.exp.svg b/e2etests/testdata/regression/empty_sequence/dagre/sketch.exp.svg index 81249e44ec..f8a40bfd2e 100644 --- a/e2etests/testdata/regression/empty_sequence/dagre/sketch.exp.svg +++ b/e2etests/testdata/regression/empty_sequence/dagre/sketch.exp.svg @@ -1,9 +1,9 @@ -hellogoodbye + .d2-2986276831 .fill-N1{fill:#0A0F25;} + .d2-2986276831 .fill-N2{fill:#676C7E;} + .d2-2986276831 .fill-N3{fill:#9499AB;} + .d2-2986276831 .fill-N4{fill:#CFD2DD;} + .d2-2986276831 .fill-N5{fill:#DEE1EB;} + .d2-2986276831 .fill-N6{fill:#EEF1F8;} + .d2-2986276831 .fill-N7{fill:#FFFFFF;} + .d2-2986276831 .fill-B1{fill:#0D32B2;} + .d2-2986276831 .fill-B2{fill:#0D32B2;} + .d2-2986276831 .fill-B3{fill:#E3E9FD;} + .d2-2986276831 .fill-B4{fill:#E3E9FD;} + .d2-2986276831 .fill-B5{fill:#EDF0FD;} + .d2-2986276831 .fill-B6{fill:#F7F8FE;} + .d2-2986276831 .fill-AA2{fill:#4A6FF3;} + .d2-2986276831 .fill-AA4{fill:#EDF0FD;} + .d2-2986276831 .fill-AA5{fill:#F7F8FE;} + .d2-2986276831 .fill-AB4{fill:#EDF0FD;} + .d2-2986276831 .fill-AB5{fill:#F7F8FE;} + .d2-2986276831 .stroke-N1{stroke:#0A0F25;} + .d2-2986276831 .stroke-N2{stroke:#676C7E;} + .d2-2986276831 .stroke-N3{stroke:#9499AB;} + .d2-2986276831 .stroke-N4{stroke:#CFD2DD;} + .d2-2986276831 .stroke-N5{stroke:#DEE1EB;} + .d2-2986276831 .stroke-N6{stroke:#EEF1F8;} + .d2-2986276831 .stroke-N7{stroke:#FFFFFF;} + .d2-2986276831 .stroke-B1{stroke:#0D32B2;} + .d2-2986276831 .stroke-B2{stroke:#0D32B2;} + .d2-2986276831 .stroke-B3{stroke:#E3E9FD;} + .d2-2986276831 .stroke-B4{stroke:#E3E9FD;} + .d2-2986276831 .stroke-B5{stroke:#EDF0FD;} + .d2-2986276831 .stroke-B6{stroke:#F7F8FE;} + .d2-2986276831 .stroke-AA2{stroke:#4A6FF3;} + .d2-2986276831 .stroke-AA4{stroke:#EDF0FD;} + .d2-2986276831 .stroke-AA5{stroke:#F7F8FE;} + .d2-2986276831 .stroke-AB4{stroke:#EDF0FD;} + .d2-2986276831 .stroke-AB5{stroke:#F7F8FE;} + .d2-2986276831 .background-color-N1{background-color:#0A0F25;} + .d2-2986276831 .background-color-N2{background-color:#676C7E;} + .d2-2986276831 .background-color-N3{background-color:#9499AB;} + .d2-2986276831 .background-color-N4{background-color:#CFD2DD;} + .d2-2986276831 .background-color-N5{background-color:#DEE1EB;} + .d2-2986276831 .background-color-N6{background-color:#EEF1F8;} + .d2-2986276831 .background-color-N7{background-color:#FFFFFF;} + .d2-2986276831 .background-color-B1{background-color:#0D32B2;} + .d2-2986276831 .background-color-B2{background-color:#0D32B2;} + .d2-2986276831 .background-color-B3{background-color:#E3E9FD;} + .d2-2986276831 .background-color-B4{background-color:#E3E9FD;} + .d2-2986276831 .background-color-B5{background-color:#EDF0FD;} + .d2-2986276831 .background-color-B6{background-color:#F7F8FE;} + .d2-2986276831 .background-color-AA2{background-color:#4A6FF3;} + .d2-2986276831 .background-color-AA4{background-color:#EDF0FD;} + .d2-2986276831 .background-color-AA5{background-color:#F7F8FE;} + .d2-2986276831 .background-color-AB4{background-color:#EDF0FD;} + .d2-2986276831 .background-color-AB5{background-color:#F7F8FE;} + .d2-2986276831 .color-N1{color:#0A0F25;} + .d2-2986276831 .color-N2{color:#676C7E;} + .d2-2986276831 .color-N3{color:#9499AB;} + .d2-2986276831 .color-N4{color:#CFD2DD;} + .d2-2986276831 .color-N5{color:#DEE1EB;} + .d2-2986276831 .color-N6{color:#EEF1F8;} + .d2-2986276831 .color-N7{color:#FFFFFF;} + .d2-2986276831 .color-B1{color:#0D32B2;} + .d2-2986276831 .color-B2{color:#0D32B2;} + .d2-2986276831 .color-B3{color:#E3E9FD;} + .d2-2986276831 .color-B4{color:#E3E9FD;} + .d2-2986276831 .color-B5{color:#EDF0FD;} + .d2-2986276831 .color-B6{color:#F7F8FE;} + .d2-2986276831 .color-AA2{color:#4A6FF3;} + .d2-2986276831 .color-AA4{color:#EDF0FD;} + .d2-2986276831 .color-AA5{color:#F7F8FE;} + .d2-2986276831 .color-AB4{color:#EDF0FD;} + .d2-2986276831 .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}]]>hellogoodbye diff --git a/e2etests/testdata/regression/empty_sequence/elk/board.exp.json b/e2etests/testdata/regression/empty_sequence/elk/board.exp.json index 8a6ec72b49..cbbd9f2748 100644 --- a/e2etests/testdata/regression/empty_sequence/elk/board.exp.json +++ b/e2etests/testdata/regression/empty_sequence/elk/board.exp.json @@ -110,6 +110,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 65, diff --git a/e2etests/testdata/regression/empty_sequence/elk/sketch.exp.svg b/e2etests/testdata/regression/empty_sequence/elk/sketch.exp.svg index 040ff3a3b0..46b183ba00 100644 --- a/e2etests/testdata/regression/empty_sequence/elk/sketch.exp.svg +++ b/e2etests/testdata/regression/empty_sequence/elk/sketch.exp.svg @@ -1,9 +1,9 @@ -hellogoodbye + .d2-3267986010 .fill-N1{fill:#0A0F25;} + .d2-3267986010 .fill-N2{fill:#676C7E;} + .d2-3267986010 .fill-N3{fill:#9499AB;} + .d2-3267986010 .fill-N4{fill:#CFD2DD;} + .d2-3267986010 .fill-N5{fill:#DEE1EB;} + .d2-3267986010 .fill-N6{fill:#EEF1F8;} + .d2-3267986010 .fill-N7{fill:#FFFFFF;} + .d2-3267986010 .fill-B1{fill:#0D32B2;} + .d2-3267986010 .fill-B2{fill:#0D32B2;} + .d2-3267986010 .fill-B3{fill:#E3E9FD;} + .d2-3267986010 .fill-B4{fill:#E3E9FD;} + .d2-3267986010 .fill-B5{fill:#EDF0FD;} + .d2-3267986010 .fill-B6{fill:#F7F8FE;} + .d2-3267986010 .fill-AA2{fill:#4A6FF3;} + .d2-3267986010 .fill-AA4{fill:#EDF0FD;} + .d2-3267986010 .fill-AA5{fill:#F7F8FE;} + .d2-3267986010 .fill-AB4{fill:#EDF0FD;} + .d2-3267986010 .fill-AB5{fill:#F7F8FE;} + .d2-3267986010 .stroke-N1{stroke:#0A0F25;} + .d2-3267986010 .stroke-N2{stroke:#676C7E;} + .d2-3267986010 .stroke-N3{stroke:#9499AB;} + .d2-3267986010 .stroke-N4{stroke:#CFD2DD;} + .d2-3267986010 .stroke-N5{stroke:#DEE1EB;} + .d2-3267986010 .stroke-N6{stroke:#EEF1F8;} + .d2-3267986010 .stroke-N7{stroke:#FFFFFF;} + .d2-3267986010 .stroke-B1{stroke:#0D32B2;} + .d2-3267986010 .stroke-B2{stroke:#0D32B2;} + .d2-3267986010 .stroke-B3{stroke:#E3E9FD;} + .d2-3267986010 .stroke-B4{stroke:#E3E9FD;} + .d2-3267986010 .stroke-B5{stroke:#EDF0FD;} + .d2-3267986010 .stroke-B6{stroke:#F7F8FE;} + .d2-3267986010 .stroke-AA2{stroke:#4A6FF3;} + .d2-3267986010 .stroke-AA4{stroke:#EDF0FD;} + .d2-3267986010 .stroke-AA5{stroke:#F7F8FE;} + .d2-3267986010 .stroke-AB4{stroke:#EDF0FD;} + .d2-3267986010 .stroke-AB5{stroke:#F7F8FE;} + .d2-3267986010 .background-color-N1{background-color:#0A0F25;} + .d2-3267986010 .background-color-N2{background-color:#676C7E;} + .d2-3267986010 .background-color-N3{background-color:#9499AB;} + .d2-3267986010 .background-color-N4{background-color:#CFD2DD;} + .d2-3267986010 .background-color-N5{background-color:#DEE1EB;} + .d2-3267986010 .background-color-N6{background-color:#EEF1F8;} + .d2-3267986010 .background-color-N7{background-color:#FFFFFF;} + .d2-3267986010 .background-color-B1{background-color:#0D32B2;} + .d2-3267986010 .background-color-B2{background-color:#0D32B2;} + .d2-3267986010 .background-color-B3{background-color:#E3E9FD;} + .d2-3267986010 .background-color-B4{background-color:#E3E9FD;} + .d2-3267986010 .background-color-B5{background-color:#EDF0FD;} + .d2-3267986010 .background-color-B6{background-color:#F7F8FE;} + .d2-3267986010 .background-color-AA2{background-color:#4A6FF3;} + .d2-3267986010 .background-color-AA4{background-color:#EDF0FD;} + .d2-3267986010 .background-color-AA5{background-color:#F7F8FE;} + .d2-3267986010 .background-color-AB4{background-color:#EDF0FD;} + .d2-3267986010 .background-color-AB5{background-color:#F7F8FE;} + .d2-3267986010 .color-N1{color:#0A0F25;} + .d2-3267986010 .color-N2{color:#676C7E;} + .d2-3267986010 .color-N3{color:#9499AB;} + .d2-3267986010 .color-N4{color:#CFD2DD;} + .d2-3267986010 .color-N5{color:#DEE1EB;} + .d2-3267986010 .color-N6{color:#EEF1F8;} + .d2-3267986010 .color-N7{color:#FFFFFF;} + .d2-3267986010 .color-B1{color:#0D32B2;} + .d2-3267986010 .color-B2{color:#0D32B2;} + .d2-3267986010 .color-B3{color:#E3E9FD;} + .d2-3267986010 .color-B4{color:#E3E9FD;} + .d2-3267986010 .color-B5{color:#EDF0FD;} + .d2-3267986010 .color-B6{color:#F7F8FE;} + .d2-3267986010 .color-AA2{color:#4A6FF3;} + .d2-3267986010 .color-AA4{color:#EDF0FD;} + .d2-3267986010 .color-AA5{color:#F7F8FE;} + .d2-3267986010 .color-AB4{color:#EDF0FD;} + .d2-3267986010 .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}]]>hellogoodbye diff --git a/e2etests/testdata/regression/glob_dimensions/dagre/board.exp.json b/e2etests/testdata/regression/glob_dimensions/dagre/board.exp.json index d16374a7f6..dec2fdfbbe 100644 --- a/e2etests/testdata/regression/glob_dimensions/dagre/board.exp.json +++ b/e2etests/testdata/regression/glob_dimensions/dagre/board.exp.json @@ -396,6 +396,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 153, @@ -443,6 +444,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 153, @@ -490,6 +492,7 @@ "labelHeight": 21, "labelPosition": "INSIDE_MIDDLE_CENTER", "labelPercentage": 0, + "link": "", "route": [ { "x": 127.75, @@ -537,6 +540,7 @@ "labelHeight": 21, "labelPosition": "INSIDE_MIDDLE_CENTER", "labelPercentage": 0, + "link": "", "route": [ { "x": 158, @@ -584,6 +588,7 @@ "labelHeight": 21, "labelPosition": "INSIDE_MIDDLE_CENTER", "labelPercentage": 0, + "link": "", "route": [ { "x": 153, @@ -631,6 +636,7 @@ "labelHeight": 21, "labelPosition": "INSIDE_MIDDLE_CENTER", "labelPercentage": 0, + "link": "", "route": [ { "x": 212.75, @@ -678,6 +684,7 @@ "labelHeight": 21, "labelPosition": "INSIDE_MIDDLE_CENTER", "labelPercentage": 0, + "link": "", "route": [ { "x": 233.5, @@ -725,6 +732,7 @@ "labelHeight": 21, "labelPosition": "INSIDE_MIDDLE_CENTER", "labelPercentage": 0, + "link": "", "route": [ { "x": 67.75, @@ -808,6 +816,7 @@ "labelHeight": 21, "labelPosition": "INSIDE_MIDDLE_CENTER", "labelPercentage": 0, + "link": "", "route": [ { "x": 192, @@ -867,6 +876,7 @@ "labelHeight": 21, "labelPosition": "INSIDE_MIDDLE_CENTER", "labelPercentage": 0, + "link": "", "route": [ { "x": 271.5, diff --git a/e2etests/testdata/regression/glob_dimensions/dagre/sketch.exp.svg b/e2etests/testdata/regression/glob_dimensions/dagre/sketch.exp.svg index bbf29c0409..faa91f9c53 100644 --- a/e2etests/testdata/regression/glob_dimensions/dagre/sketch.exp.svg +++ b/e2etests/testdata/regression/glob_dimensions/dagre/sketch.exp.svg @@ -1,23 +1,23 @@ -Check PINSearch NetworkReadyOffEnter PIN /check PIN[pin invalid][pin OK][pin OK]network foundpower offpower offpower off + .d2-4179043663 .fill-N1{fill:#0A0F25;} + .d2-4179043663 .fill-N2{fill:#676C7E;} + .d2-4179043663 .fill-N3{fill:#9499AB;} + .d2-4179043663 .fill-N4{fill:#CFD2DD;} + .d2-4179043663 .fill-N5{fill:#DEE1EB;} + .d2-4179043663 .fill-N6{fill:#EEF1F8;} + .d2-4179043663 .fill-N7{fill:#FFFFFF;} + .d2-4179043663 .fill-B1{fill:#0D32B2;} + .d2-4179043663 .fill-B2{fill:#0D32B2;} + .d2-4179043663 .fill-B3{fill:#E3E9FD;} + .d2-4179043663 .fill-B4{fill:#E3E9FD;} + .d2-4179043663 .fill-B5{fill:#EDF0FD;} + .d2-4179043663 .fill-B6{fill:#F7F8FE;} + .d2-4179043663 .fill-AA2{fill:#4A6FF3;} + .d2-4179043663 .fill-AA4{fill:#EDF0FD;} + .d2-4179043663 .fill-AA5{fill:#F7F8FE;} + .d2-4179043663 .fill-AB4{fill:#EDF0FD;} + .d2-4179043663 .fill-AB5{fill:#F7F8FE;} + .d2-4179043663 .stroke-N1{stroke:#0A0F25;} + .d2-4179043663 .stroke-N2{stroke:#676C7E;} + .d2-4179043663 .stroke-N3{stroke:#9499AB;} + .d2-4179043663 .stroke-N4{stroke:#CFD2DD;} + .d2-4179043663 .stroke-N5{stroke:#DEE1EB;} + .d2-4179043663 .stroke-N6{stroke:#EEF1F8;} + .d2-4179043663 .stroke-N7{stroke:#FFFFFF;} + .d2-4179043663 .stroke-B1{stroke:#0D32B2;} + .d2-4179043663 .stroke-B2{stroke:#0D32B2;} + .d2-4179043663 .stroke-B3{stroke:#E3E9FD;} + .d2-4179043663 .stroke-B4{stroke:#E3E9FD;} + .d2-4179043663 .stroke-B5{stroke:#EDF0FD;} + .d2-4179043663 .stroke-B6{stroke:#F7F8FE;} + .d2-4179043663 .stroke-AA2{stroke:#4A6FF3;} + .d2-4179043663 .stroke-AA4{stroke:#EDF0FD;} + .d2-4179043663 .stroke-AA5{stroke:#F7F8FE;} + .d2-4179043663 .stroke-AB4{stroke:#EDF0FD;} + .d2-4179043663 .stroke-AB5{stroke:#F7F8FE;} + .d2-4179043663 .background-color-N1{background-color:#0A0F25;} + .d2-4179043663 .background-color-N2{background-color:#676C7E;} + .d2-4179043663 .background-color-N3{background-color:#9499AB;} + .d2-4179043663 .background-color-N4{background-color:#CFD2DD;} + .d2-4179043663 .background-color-N5{background-color:#DEE1EB;} + .d2-4179043663 .background-color-N6{background-color:#EEF1F8;} + .d2-4179043663 .background-color-N7{background-color:#FFFFFF;} + .d2-4179043663 .background-color-B1{background-color:#0D32B2;} + .d2-4179043663 .background-color-B2{background-color:#0D32B2;} + .d2-4179043663 .background-color-B3{background-color:#E3E9FD;} + .d2-4179043663 .background-color-B4{background-color:#E3E9FD;} + .d2-4179043663 .background-color-B5{background-color:#EDF0FD;} + .d2-4179043663 .background-color-B6{background-color:#F7F8FE;} + .d2-4179043663 .background-color-AA2{background-color:#4A6FF3;} + .d2-4179043663 .background-color-AA4{background-color:#EDF0FD;} + .d2-4179043663 .background-color-AA5{background-color:#F7F8FE;} + .d2-4179043663 .background-color-AB4{background-color:#EDF0FD;} + .d2-4179043663 .background-color-AB5{background-color:#F7F8FE;} + .d2-4179043663 .color-N1{color:#0A0F25;} + .d2-4179043663 .color-N2{color:#676C7E;} + .d2-4179043663 .color-N3{color:#9499AB;} + .d2-4179043663 .color-N4{color:#CFD2DD;} + .d2-4179043663 .color-N5{color:#DEE1EB;} + .d2-4179043663 .color-N6{color:#EEF1F8;} + .d2-4179043663 .color-N7{color:#FFFFFF;} + .d2-4179043663 .color-B1{color:#0D32B2;} + .d2-4179043663 .color-B2{color:#0D32B2;} + .d2-4179043663 .color-B3{color:#E3E9FD;} + .d2-4179043663 .color-B4{color:#E3E9FD;} + .d2-4179043663 .color-B5{color:#EDF0FD;} + .d2-4179043663 .color-B6{color:#F7F8FE;} + .d2-4179043663 .color-AA2{color:#4A6FF3;} + .d2-4179043663 .color-AA4{color:#EDF0FD;} + .d2-4179043663 .color-AA5{color:#F7F8FE;} + .d2-4179043663 .color-AB4{color:#EDF0FD;} + .d2-4179043663 .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}]]>Check PINSearch NetworkReadyOffEnter PIN /check PIN[pin invalid][pin OK][pin OK]network foundpower offpower offpower off diff --git a/e2etests/testdata/regression/glob_dimensions/elk/board.exp.json b/e2etests/testdata/regression/glob_dimensions/elk/board.exp.json index d6f22abdc6..a6578a2e02 100644 --- a/e2etests/testdata/regression/glob_dimensions/elk/board.exp.json +++ b/e2etests/testdata/regression/glob_dimensions/elk/board.exp.json @@ -396,6 +396,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 169, @@ -434,6 +435,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 167, @@ -472,6 +474,7 @@ "labelHeight": 21, "labelPosition": "INSIDE_MIDDLE_CENTER", "labelPercentage": 0, + "link": "", "route": [ { "x": 123.5, @@ -518,6 +521,7 @@ "labelHeight": 21, "labelPosition": "INSIDE_MIDDLE_CENTER", "labelPercentage": 0, + "link": "", "route": [ { "x": 170, @@ -564,6 +568,7 @@ "labelHeight": 21, "labelPosition": "INSIDE_MIDDLE_CENTER", "labelPercentage": 0, + "link": "", "route": [ { "x": 166, @@ -602,6 +607,7 @@ "labelHeight": 21, "labelPosition": "INSIDE_MIDDLE_CENTER", "labelPercentage": 0, + "link": "", "route": [ { "x": 108.75, @@ -640,6 +646,7 @@ "labelHeight": 21, "labelPosition": "INSIDE_MIDDLE_CENTER", "labelPercentage": 0, + "link": "", "route": [ { "x": 60, @@ -678,6 +685,7 @@ "labelHeight": 21, "labelPosition": "INSIDE_MIDDLE_CENTER", "labelPercentage": 0, + "link": "", "route": [ { "x": 240.99899291992188, @@ -724,6 +732,7 @@ "labelHeight": 21, "labelPosition": "INSIDE_MIDDLE_CENTER", "labelPercentage": 0, + "link": "", "route": [ { "x": 157.5, @@ -762,6 +771,7 @@ "labelHeight": 21, "labelPosition": "INSIDE_MIDDLE_CENTER", "labelPercentage": 0, + "link": "", "route": [ { "x": 60, diff --git a/e2etests/testdata/regression/glob_dimensions/elk/sketch.exp.svg b/e2etests/testdata/regression/glob_dimensions/elk/sketch.exp.svg index 9effb131aa..f8aa4316e1 100644 --- a/e2etests/testdata/regression/glob_dimensions/elk/sketch.exp.svg +++ b/e2etests/testdata/regression/glob_dimensions/elk/sketch.exp.svg @@ -1,23 +1,23 @@ -Check PINSearch NetworkReadyOffEnter PIN /check PIN[pin invalid][pin OK][pin OK]network foundpower offpower offpower off + .d2-1833690584 .fill-N1{fill:#0A0F25;} + .d2-1833690584 .fill-N2{fill:#676C7E;} + .d2-1833690584 .fill-N3{fill:#9499AB;} + .d2-1833690584 .fill-N4{fill:#CFD2DD;} + .d2-1833690584 .fill-N5{fill:#DEE1EB;} + .d2-1833690584 .fill-N6{fill:#EEF1F8;} + .d2-1833690584 .fill-N7{fill:#FFFFFF;} + .d2-1833690584 .fill-B1{fill:#0D32B2;} + .d2-1833690584 .fill-B2{fill:#0D32B2;} + .d2-1833690584 .fill-B3{fill:#E3E9FD;} + .d2-1833690584 .fill-B4{fill:#E3E9FD;} + .d2-1833690584 .fill-B5{fill:#EDF0FD;} + .d2-1833690584 .fill-B6{fill:#F7F8FE;} + .d2-1833690584 .fill-AA2{fill:#4A6FF3;} + .d2-1833690584 .fill-AA4{fill:#EDF0FD;} + .d2-1833690584 .fill-AA5{fill:#F7F8FE;} + .d2-1833690584 .fill-AB4{fill:#EDF0FD;} + .d2-1833690584 .fill-AB5{fill:#F7F8FE;} + .d2-1833690584 .stroke-N1{stroke:#0A0F25;} + .d2-1833690584 .stroke-N2{stroke:#676C7E;} + .d2-1833690584 .stroke-N3{stroke:#9499AB;} + .d2-1833690584 .stroke-N4{stroke:#CFD2DD;} + .d2-1833690584 .stroke-N5{stroke:#DEE1EB;} + .d2-1833690584 .stroke-N6{stroke:#EEF1F8;} + .d2-1833690584 .stroke-N7{stroke:#FFFFFF;} + .d2-1833690584 .stroke-B1{stroke:#0D32B2;} + .d2-1833690584 .stroke-B2{stroke:#0D32B2;} + .d2-1833690584 .stroke-B3{stroke:#E3E9FD;} + .d2-1833690584 .stroke-B4{stroke:#E3E9FD;} + .d2-1833690584 .stroke-B5{stroke:#EDF0FD;} + .d2-1833690584 .stroke-B6{stroke:#F7F8FE;} + .d2-1833690584 .stroke-AA2{stroke:#4A6FF3;} + .d2-1833690584 .stroke-AA4{stroke:#EDF0FD;} + .d2-1833690584 .stroke-AA5{stroke:#F7F8FE;} + .d2-1833690584 .stroke-AB4{stroke:#EDF0FD;} + .d2-1833690584 .stroke-AB5{stroke:#F7F8FE;} + .d2-1833690584 .background-color-N1{background-color:#0A0F25;} + .d2-1833690584 .background-color-N2{background-color:#676C7E;} + .d2-1833690584 .background-color-N3{background-color:#9499AB;} + .d2-1833690584 .background-color-N4{background-color:#CFD2DD;} + .d2-1833690584 .background-color-N5{background-color:#DEE1EB;} + .d2-1833690584 .background-color-N6{background-color:#EEF1F8;} + .d2-1833690584 .background-color-N7{background-color:#FFFFFF;} + .d2-1833690584 .background-color-B1{background-color:#0D32B2;} + .d2-1833690584 .background-color-B2{background-color:#0D32B2;} + .d2-1833690584 .background-color-B3{background-color:#E3E9FD;} + .d2-1833690584 .background-color-B4{background-color:#E3E9FD;} + .d2-1833690584 .background-color-B5{background-color:#EDF0FD;} + .d2-1833690584 .background-color-B6{background-color:#F7F8FE;} + .d2-1833690584 .background-color-AA2{background-color:#4A6FF3;} + .d2-1833690584 .background-color-AA4{background-color:#EDF0FD;} + .d2-1833690584 .background-color-AA5{background-color:#F7F8FE;} + .d2-1833690584 .background-color-AB4{background-color:#EDF0FD;} + .d2-1833690584 .background-color-AB5{background-color:#F7F8FE;} + .d2-1833690584 .color-N1{color:#0A0F25;} + .d2-1833690584 .color-N2{color:#676C7E;} + .d2-1833690584 .color-N3{color:#9499AB;} + .d2-1833690584 .color-N4{color:#CFD2DD;} + .d2-1833690584 .color-N5{color:#DEE1EB;} + .d2-1833690584 .color-N6{color:#EEF1F8;} + .d2-1833690584 .color-N7{color:#FFFFFF;} + .d2-1833690584 .color-B1{color:#0D32B2;} + .d2-1833690584 .color-B2{color:#0D32B2;} + .d2-1833690584 .color-B3{color:#E3E9FD;} + .d2-1833690584 .color-B4{color:#E3E9FD;} + .d2-1833690584 .color-B5{color:#EDF0FD;} + .d2-1833690584 .color-B6{color:#F7F8FE;} + .d2-1833690584 .color-AA2{color:#4A6FF3;} + .d2-1833690584 .color-AA4{color:#EDF0FD;} + .d2-1833690584 .color-AA5{color:#F7F8FE;} + .d2-1833690584 .color-AB4{color:#EDF0FD;} + .d2-1833690584 .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}]]>Check PINSearch NetworkReadyOffEnter PIN /check PIN[pin invalid][pin OK][pin OK]network foundpower offpower offpower off diff --git a/e2etests/testdata/regression/long_arrowhead_label/dagre/board.exp.json b/e2etests/testdata/regression/long_arrowhead_label/dagre/board.exp.json index cdbacb0fc9..9dcda82011 100644 --- a/e2etests/testdata/regression/long_arrowhead_label/dagre/board.exp.json +++ b/e2etests/testdata/regression/long_arrowhead_label/dagre/board.exp.json @@ -122,6 +122,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 26.5, diff --git a/e2etests/testdata/regression/long_arrowhead_label/dagre/sketch.exp.svg b/e2etests/testdata/regression/long_arrowhead_label/dagre/sketch.exp.svg index b0fa276fd3..1d4148995d 100644 --- a/e2etests/testdata/regression/long_arrowhead_label/dagre/sketch.exp.svg +++ b/e2etests/testdata/regression/long_arrowhead_label/dagre/sketch.exp.svg @@ -1,16 +1,16 @@ -ab a to b with unexpectedly long target arrowhead label + .d2-370076573 .fill-N1{fill:#0A0F25;} + .d2-370076573 .fill-N2{fill:#676C7E;} + .d2-370076573 .fill-N3{fill:#9499AB;} + .d2-370076573 .fill-N4{fill:#CFD2DD;} + .d2-370076573 .fill-N5{fill:#DEE1EB;} + .d2-370076573 .fill-N6{fill:#EEF1F8;} + .d2-370076573 .fill-N7{fill:#FFFFFF;} + .d2-370076573 .fill-B1{fill:#0D32B2;} + .d2-370076573 .fill-B2{fill:#0D32B2;} + .d2-370076573 .fill-B3{fill:#E3E9FD;} + .d2-370076573 .fill-B4{fill:#E3E9FD;} + .d2-370076573 .fill-B5{fill:#EDF0FD;} + .d2-370076573 .fill-B6{fill:#F7F8FE;} + .d2-370076573 .fill-AA2{fill:#4A6FF3;} + .d2-370076573 .fill-AA4{fill:#EDF0FD;} + .d2-370076573 .fill-AA5{fill:#F7F8FE;} + .d2-370076573 .fill-AB4{fill:#EDF0FD;} + .d2-370076573 .fill-AB5{fill:#F7F8FE;} + .d2-370076573 .stroke-N1{stroke:#0A0F25;} + .d2-370076573 .stroke-N2{stroke:#676C7E;} + .d2-370076573 .stroke-N3{stroke:#9499AB;} + .d2-370076573 .stroke-N4{stroke:#CFD2DD;} + .d2-370076573 .stroke-N5{stroke:#DEE1EB;} + .d2-370076573 .stroke-N6{stroke:#EEF1F8;} + .d2-370076573 .stroke-N7{stroke:#FFFFFF;} + .d2-370076573 .stroke-B1{stroke:#0D32B2;} + .d2-370076573 .stroke-B2{stroke:#0D32B2;} + .d2-370076573 .stroke-B3{stroke:#E3E9FD;} + .d2-370076573 .stroke-B4{stroke:#E3E9FD;} + .d2-370076573 .stroke-B5{stroke:#EDF0FD;} + .d2-370076573 .stroke-B6{stroke:#F7F8FE;} + .d2-370076573 .stroke-AA2{stroke:#4A6FF3;} + .d2-370076573 .stroke-AA4{stroke:#EDF0FD;} + .d2-370076573 .stroke-AA5{stroke:#F7F8FE;} + .d2-370076573 .stroke-AB4{stroke:#EDF0FD;} + .d2-370076573 .stroke-AB5{stroke:#F7F8FE;} + .d2-370076573 .background-color-N1{background-color:#0A0F25;} + .d2-370076573 .background-color-N2{background-color:#676C7E;} + .d2-370076573 .background-color-N3{background-color:#9499AB;} + .d2-370076573 .background-color-N4{background-color:#CFD2DD;} + .d2-370076573 .background-color-N5{background-color:#DEE1EB;} + .d2-370076573 .background-color-N6{background-color:#EEF1F8;} + .d2-370076573 .background-color-N7{background-color:#FFFFFF;} + .d2-370076573 .background-color-B1{background-color:#0D32B2;} + .d2-370076573 .background-color-B2{background-color:#0D32B2;} + .d2-370076573 .background-color-B3{background-color:#E3E9FD;} + .d2-370076573 .background-color-B4{background-color:#E3E9FD;} + .d2-370076573 .background-color-B5{background-color:#EDF0FD;} + .d2-370076573 .background-color-B6{background-color:#F7F8FE;} + .d2-370076573 .background-color-AA2{background-color:#4A6FF3;} + .d2-370076573 .background-color-AA4{background-color:#EDF0FD;} + .d2-370076573 .background-color-AA5{background-color:#F7F8FE;} + .d2-370076573 .background-color-AB4{background-color:#EDF0FD;} + .d2-370076573 .background-color-AB5{background-color:#F7F8FE;} + .d2-370076573 .color-N1{color:#0A0F25;} + .d2-370076573 .color-N2{color:#676C7E;} + .d2-370076573 .color-N3{color:#9499AB;} + .d2-370076573 .color-N4{color:#CFD2DD;} + .d2-370076573 .color-N5{color:#DEE1EB;} + .d2-370076573 .color-N6{color:#EEF1F8;} + .d2-370076573 .color-N7{color:#FFFFFF;} + .d2-370076573 .color-B1{color:#0D32B2;} + .d2-370076573 .color-B2{color:#0D32B2;} + .d2-370076573 .color-B3{color:#E3E9FD;} + .d2-370076573 .color-B4{color:#E3E9FD;} + .d2-370076573 .color-B5{color:#EDF0FD;} + .d2-370076573 .color-B6{color:#F7F8FE;} + .d2-370076573 .color-AA2{color:#4A6FF3;} + .d2-370076573 .color-AA4{color:#EDF0FD;} + .d2-370076573 .color-AA5{color:#F7F8FE;} + .d2-370076573 .color-AB4{color:#EDF0FD;} + .d2-370076573 .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}]]>ab a to b with unexpectedly long target arrowhead label diff --git a/e2etests/testdata/regression/long_arrowhead_label/elk/board.exp.json b/e2etests/testdata/regression/long_arrowhead_label/elk/board.exp.json index f2c06801c6..e5efeab1e9 100644 --- a/e2etests/testdata/regression/long_arrowhead_label/elk/board.exp.json +++ b/e2etests/testdata/regression/long_arrowhead_label/elk/board.exp.json @@ -122,6 +122,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 38.5, diff --git a/e2etests/testdata/regression/long_arrowhead_label/elk/sketch.exp.svg b/e2etests/testdata/regression/long_arrowhead_label/elk/sketch.exp.svg index 03445b7437..f8051a8cc0 100644 --- a/e2etests/testdata/regression/long_arrowhead_label/elk/sketch.exp.svg +++ b/e2etests/testdata/regression/long_arrowhead_label/elk/sketch.exp.svg @@ -1,16 +1,16 @@ -ab a to b with unexpectedly long target arrowhead label + .d2-4260858234 .fill-N1{fill:#0A0F25;} + .d2-4260858234 .fill-N2{fill:#676C7E;} + .d2-4260858234 .fill-N3{fill:#9499AB;} + .d2-4260858234 .fill-N4{fill:#CFD2DD;} + .d2-4260858234 .fill-N5{fill:#DEE1EB;} + .d2-4260858234 .fill-N6{fill:#EEF1F8;} + .d2-4260858234 .fill-N7{fill:#FFFFFF;} + .d2-4260858234 .fill-B1{fill:#0D32B2;} + .d2-4260858234 .fill-B2{fill:#0D32B2;} + .d2-4260858234 .fill-B3{fill:#E3E9FD;} + .d2-4260858234 .fill-B4{fill:#E3E9FD;} + .d2-4260858234 .fill-B5{fill:#EDF0FD;} + .d2-4260858234 .fill-B6{fill:#F7F8FE;} + .d2-4260858234 .fill-AA2{fill:#4A6FF3;} + .d2-4260858234 .fill-AA4{fill:#EDF0FD;} + .d2-4260858234 .fill-AA5{fill:#F7F8FE;} + .d2-4260858234 .fill-AB4{fill:#EDF0FD;} + .d2-4260858234 .fill-AB5{fill:#F7F8FE;} + .d2-4260858234 .stroke-N1{stroke:#0A0F25;} + .d2-4260858234 .stroke-N2{stroke:#676C7E;} + .d2-4260858234 .stroke-N3{stroke:#9499AB;} + .d2-4260858234 .stroke-N4{stroke:#CFD2DD;} + .d2-4260858234 .stroke-N5{stroke:#DEE1EB;} + .d2-4260858234 .stroke-N6{stroke:#EEF1F8;} + .d2-4260858234 .stroke-N7{stroke:#FFFFFF;} + .d2-4260858234 .stroke-B1{stroke:#0D32B2;} + .d2-4260858234 .stroke-B2{stroke:#0D32B2;} + .d2-4260858234 .stroke-B3{stroke:#E3E9FD;} + .d2-4260858234 .stroke-B4{stroke:#E3E9FD;} + .d2-4260858234 .stroke-B5{stroke:#EDF0FD;} + .d2-4260858234 .stroke-B6{stroke:#F7F8FE;} + .d2-4260858234 .stroke-AA2{stroke:#4A6FF3;} + .d2-4260858234 .stroke-AA4{stroke:#EDF0FD;} + .d2-4260858234 .stroke-AA5{stroke:#F7F8FE;} + .d2-4260858234 .stroke-AB4{stroke:#EDF0FD;} + .d2-4260858234 .stroke-AB5{stroke:#F7F8FE;} + .d2-4260858234 .background-color-N1{background-color:#0A0F25;} + .d2-4260858234 .background-color-N2{background-color:#676C7E;} + .d2-4260858234 .background-color-N3{background-color:#9499AB;} + .d2-4260858234 .background-color-N4{background-color:#CFD2DD;} + .d2-4260858234 .background-color-N5{background-color:#DEE1EB;} + .d2-4260858234 .background-color-N6{background-color:#EEF1F8;} + .d2-4260858234 .background-color-N7{background-color:#FFFFFF;} + .d2-4260858234 .background-color-B1{background-color:#0D32B2;} + .d2-4260858234 .background-color-B2{background-color:#0D32B2;} + .d2-4260858234 .background-color-B3{background-color:#E3E9FD;} + .d2-4260858234 .background-color-B4{background-color:#E3E9FD;} + .d2-4260858234 .background-color-B5{background-color:#EDF0FD;} + .d2-4260858234 .background-color-B6{background-color:#F7F8FE;} + .d2-4260858234 .background-color-AA2{background-color:#4A6FF3;} + .d2-4260858234 .background-color-AA4{background-color:#EDF0FD;} + .d2-4260858234 .background-color-AA5{background-color:#F7F8FE;} + .d2-4260858234 .background-color-AB4{background-color:#EDF0FD;} + .d2-4260858234 .background-color-AB5{background-color:#F7F8FE;} + .d2-4260858234 .color-N1{color:#0A0F25;} + .d2-4260858234 .color-N2{color:#676C7E;} + .d2-4260858234 .color-N3{color:#9499AB;} + .d2-4260858234 .color-N4{color:#CFD2DD;} + .d2-4260858234 .color-N5{color:#DEE1EB;} + .d2-4260858234 .color-N6{color:#EEF1F8;} + .d2-4260858234 .color-N7{color:#FFFFFF;} + .d2-4260858234 .color-B1{color:#0D32B2;} + .d2-4260858234 .color-B2{color:#0D32B2;} + .d2-4260858234 .color-B3{color:#E3E9FD;} + .d2-4260858234 .color-B4{color:#E3E9FD;} + .d2-4260858234 .color-B5{color:#EDF0FD;} + .d2-4260858234 .color-B6{color:#F7F8FE;} + .d2-4260858234 .color-AA2{color:#4A6FF3;} + .d2-4260858234 .color-AA4{color:#EDF0FD;} + .d2-4260858234 .color-AA5{color:#F7F8FE;} + .d2-4260858234 .color-AB4{color:#EDF0FD;} + .d2-4260858234 .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}]]>ab a to b with unexpectedly long target arrowhead label diff --git a/e2etests/testdata/regression/md_h1_li_li/dagre/board.exp.json b/e2etests/testdata/regression/md_h1_li_li/dagre/board.exp.json index 8dc09c03e6..41425d098b 100644 --- a/e2etests/testdata/regression/md_h1_li_li/dagre/board.exp.json +++ b/e2etests/testdata/regression/md_h1_li_li/dagre/board.exp.json @@ -150,6 +150,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 47.5, @@ -197,6 +198,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 47.5, diff --git a/e2etests/testdata/regression/md_h1_li_li/dagre/sketch.exp.svg b/e2etests/testdata/regression/md_h1_li_li/dagre/sketch.exp.svg index e157bfacf1..048fa7ab37 100644 --- a/e2etests/testdata/regression/md_h1_li_li/dagre/sketch.exp.svg +++ b/e2etests/testdata/regression/md_h1_li_li/dagre/sketch.exp.svg @@ -1,20 +1,20 @@ -

    hey

    @@ -844,7 +844,7 @@ -
    ab +
    ab diff --git a/e2etests/testdata/regression/md_h1_li_li/elk/board.exp.json b/e2etests/testdata/regression/md_h1_li_li/elk/board.exp.json index b3c0a86721..4e7e524dee 100644 --- a/e2etests/testdata/regression/md_h1_li_li/elk/board.exp.json +++ b/e2etests/testdata/regression/md_h1_li_li/elk/board.exp.json @@ -150,6 +150,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 59.5, @@ -188,6 +189,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 59.5, diff --git a/e2etests/testdata/regression/md_h1_li_li/elk/sketch.exp.svg b/e2etests/testdata/regression/md_h1_li_li/elk/sketch.exp.svg index 1aaf1aa70d..886c18cde4 100644 --- a/e2etests/testdata/regression/md_h1_li_li/elk/sketch.exp.svg +++ b/e2etests/testdata/regression/md_h1_li_li/elk/sketch.exp.svg @@ -1,20 +1,20 @@ -

    hey

    @@ -844,7 +844,7 @@ -
    ab +ab diff --git a/e2etests/testdata/regression/multiple_constant_nears/dagre/board.exp.json b/e2etests/testdata/regression/multiple_constant_nears/dagre/board.exp.json index d6231ed4b5..49c0eb5f1b 100644 --- a/e2etests/testdata/regression/multiple_constant_nears/dagre/board.exp.json +++ b/e2etests/testdata/regression/multiple_constant_nears/dagre/board.exp.json @@ -356,6 +356,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 129.5, @@ -403,6 +404,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 129.5, @@ -450,6 +452,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 142.5, diff --git a/e2etests/testdata/regression/multiple_constant_nears/dagre/sketch.exp.svg b/e2etests/testdata/regression/multiple_constant_nears/dagre/sketch.exp.svg index a511b9b09d..6faf9e888d 100644 --- a/e2etests/testdata/regression/multiple_constant_nears/dagre/sketch.exp.svg +++ b/e2etests/testdata/regression/multiple_constant_nears/dagre/sketch.exp.svg @@ -1,16 +1,16 @@ -abc12311112222 + .d2-3075709646 .fill-N1{fill:#0A0F25;} + .d2-3075709646 .fill-N2{fill:#676C7E;} + .d2-3075709646 .fill-N3{fill:#9499AB;} + .d2-3075709646 .fill-N4{fill:#CFD2DD;} + .d2-3075709646 .fill-N5{fill:#DEE1EB;} + .d2-3075709646 .fill-N6{fill:#EEF1F8;} + .d2-3075709646 .fill-N7{fill:#FFFFFF;} + .d2-3075709646 .fill-B1{fill:#0D32B2;} + .d2-3075709646 .fill-B2{fill:#0D32B2;} + .d2-3075709646 .fill-B3{fill:#E3E9FD;} + .d2-3075709646 .fill-B4{fill:#E3E9FD;} + .d2-3075709646 .fill-B5{fill:#EDF0FD;} + .d2-3075709646 .fill-B6{fill:#F7F8FE;} + .d2-3075709646 .fill-AA2{fill:#4A6FF3;} + .d2-3075709646 .fill-AA4{fill:#EDF0FD;} + .d2-3075709646 .fill-AA5{fill:#F7F8FE;} + .d2-3075709646 .fill-AB4{fill:#EDF0FD;} + .d2-3075709646 .fill-AB5{fill:#F7F8FE;} + .d2-3075709646 .stroke-N1{stroke:#0A0F25;} + .d2-3075709646 .stroke-N2{stroke:#676C7E;} + .d2-3075709646 .stroke-N3{stroke:#9499AB;} + .d2-3075709646 .stroke-N4{stroke:#CFD2DD;} + .d2-3075709646 .stroke-N5{stroke:#DEE1EB;} + .d2-3075709646 .stroke-N6{stroke:#EEF1F8;} + .d2-3075709646 .stroke-N7{stroke:#FFFFFF;} + .d2-3075709646 .stroke-B1{stroke:#0D32B2;} + .d2-3075709646 .stroke-B2{stroke:#0D32B2;} + .d2-3075709646 .stroke-B3{stroke:#E3E9FD;} + .d2-3075709646 .stroke-B4{stroke:#E3E9FD;} + .d2-3075709646 .stroke-B5{stroke:#EDF0FD;} + .d2-3075709646 .stroke-B6{stroke:#F7F8FE;} + .d2-3075709646 .stroke-AA2{stroke:#4A6FF3;} + .d2-3075709646 .stroke-AA4{stroke:#EDF0FD;} + .d2-3075709646 .stroke-AA5{stroke:#F7F8FE;} + .d2-3075709646 .stroke-AB4{stroke:#EDF0FD;} + .d2-3075709646 .stroke-AB5{stroke:#F7F8FE;} + .d2-3075709646 .background-color-N1{background-color:#0A0F25;} + .d2-3075709646 .background-color-N2{background-color:#676C7E;} + .d2-3075709646 .background-color-N3{background-color:#9499AB;} + .d2-3075709646 .background-color-N4{background-color:#CFD2DD;} + .d2-3075709646 .background-color-N5{background-color:#DEE1EB;} + .d2-3075709646 .background-color-N6{background-color:#EEF1F8;} + .d2-3075709646 .background-color-N7{background-color:#FFFFFF;} + .d2-3075709646 .background-color-B1{background-color:#0D32B2;} + .d2-3075709646 .background-color-B2{background-color:#0D32B2;} + .d2-3075709646 .background-color-B3{background-color:#E3E9FD;} + .d2-3075709646 .background-color-B4{background-color:#E3E9FD;} + .d2-3075709646 .background-color-B5{background-color:#EDF0FD;} + .d2-3075709646 .background-color-B6{background-color:#F7F8FE;} + .d2-3075709646 .background-color-AA2{background-color:#4A6FF3;} + .d2-3075709646 .background-color-AA4{background-color:#EDF0FD;} + .d2-3075709646 .background-color-AA5{background-color:#F7F8FE;} + .d2-3075709646 .background-color-AB4{background-color:#EDF0FD;} + .d2-3075709646 .background-color-AB5{background-color:#F7F8FE;} + .d2-3075709646 .color-N1{color:#0A0F25;} + .d2-3075709646 .color-N2{color:#676C7E;} + .d2-3075709646 .color-N3{color:#9499AB;} + .d2-3075709646 .color-N4{color:#CFD2DD;} + .d2-3075709646 .color-N5{color:#DEE1EB;} + .d2-3075709646 .color-N6{color:#EEF1F8;} + .d2-3075709646 .color-N7{color:#FFFFFF;} + .d2-3075709646 .color-B1{color:#0D32B2;} + .d2-3075709646 .color-B2{color:#0D32B2;} + .d2-3075709646 .color-B3{color:#E3E9FD;} + .d2-3075709646 .color-B4{color:#E3E9FD;} + .d2-3075709646 .color-B5{color:#EDF0FD;} + .d2-3075709646 .color-B6{color:#F7F8FE;} + .d2-3075709646 .color-AA2{color:#4A6FF3;} + .d2-3075709646 .color-AA4{color:#EDF0FD;} + .d2-3075709646 .color-AA5{color:#F7F8FE;} + .d2-3075709646 .color-AB4{color:#EDF0FD;} + .d2-3075709646 .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}]]>abc12311112222 diff --git a/e2etests/testdata/regression/multiple_constant_nears/elk/board.exp.json b/e2etests/testdata/regression/multiple_constant_nears/elk/board.exp.json index 2ce8912396..ed31c84f44 100644 --- a/e2etests/testdata/regression/multiple_constant_nears/elk/board.exp.json +++ b/e2etests/testdata/regression/multiple_constant_nears/elk/board.exp.json @@ -356,6 +356,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 161.5, @@ -394,6 +395,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 161.5, @@ -432,6 +434,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 174.5, diff --git a/e2etests/testdata/regression/multiple_constant_nears/elk/sketch.exp.svg b/e2etests/testdata/regression/multiple_constant_nears/elk/sketch.exp.svg index 0a0d1d7175..53ce743c11 100644 --- a/e2etests/testdata/regression/multiple_constant_nears/elk/sketch.exp.svg +++ b/e2etests/testdata/regression/multiple_constant_nears/elk/sketch.exp.svg @@ -1,16 +1,16 @@ -abc12311112222 + .d2-2710455609 .fill-N1{fill:#0A0F25;} + .d2-2710455609 .fill-N2{fill:#676C7E;} + .d2-2710455609 .fill-N3{fill:#9499AB;} + .d2-2710455609 .fill-N4{fill:#CFD2DD;} + .d2-2710455609 .fill-N5{fill:#DEE1EB;} + .d2-2710455609 .fill-N6{fill:#EEF1F8;} + .d2-2710455609 .fill-N7{fill:#FFFFFF;} + .d2-2710455609 .fill-B1{fill:#0D32B2;} + .d2-2710455609 .fill-B2{fill:#0D32B2;} + .d2-2710455609 .fill-B3{fill:#E3E9FD;} + .d2-2710455609 .fill-B4{fill:#E3E9FD;} + .d2-2710455609 .fill-B5{fill:#EDF0FD;} + .d2-2710455609 .fill-B6{fill:#F7F8FE;} + .d2-2710455609 .fill-AA2{fill:#4A6FF3;} + .d2-2710455609 .fill-AA4{fill:#EDF0FD;} + .d2-2710455609 .fill-AA5{fill:#F7F8FE;} + .d2-2710455609 .fill-AB4{fill:#EDF0FD;} + .d2-2710455609 .fill-AB5{fill:#F7F8FE;} + .d2-2710455609 .stroke-N1{stroke:#0A0F25;} + .d2-2710455609 .stroke-N2{stroke:#676C7E;} + .d2-2710455609 .stroke-N3{stroke:#9499AB;} + .d2-2710455609 .stroke-N4{stroke:#CFD2DD;} + .d2-2710455609 .stroke-N5{stroke:#DEE1EB;} + .d2-2710455609 .stroke-N6{stroke:#EEF1F8;} + .d2-2710455609 .stroke-N7{stroke:#FFFFFF;} + .d2-2710455609 .stroke-B1{stroke:#0D32B2;} + .d2-2710455609 .stroke-B2{stroke:#0D32B2;} + .d2-2710455609 .stroke-B3{stroke:#E3E9FD;} + .d2-2710455609 .stroke-B4{stroke:#E3E9FD;} + .d2-2710455609 .stroke-B5{stroke:#EDF0FD;} + .d2-2710455609 .stroke-B6{stroke:#F7F8FE;} + .d2-2710455609 .stroke-AA2{stroke:#4A6FF3;} + .d2-2710455609 .stroke-AA4{stroke:#EDF0FD;} + .d2-2710455609 .stroke-AA5{stroke:#F7F8FE;} + .d2-2710455609 .stroke-AB4{stroke:#EDF0FD;} + .d2-2710455609 .stroke-AB5{stroke:#F7F8FE;} + .d2-2710455609 .background-color-N1{background-color:#0A0F25;} + .d2-2710455609 .background-color-N2{background-color:#676C7E;} + .d2-2710455609 .background-color-N3{background-color:#9499AB;} + .d2-2710455609 .background-color-N4{background-color:#CFD2DD;} + .d2-2710455609 .background-color-N5{background-color:#DEE1EB;} + .d2-2710455609 .background-color-N6{background-color:#EEF1F8;} + .d2-2710455609 .background-color-N7{background-color:#FFFFFF;} + .d2-2710455609 .background-color-B1{background-color:#0D32B2;} + .d2-2710455609 .background-color-B2{background-color:#0D32B2;} + .d2-2710455609 .background-color-B3{background-color:#E3E9FD;} + .d2-2710455609 .background-color-B4{background-color:#E3E9FD;} + .d2-2710455609 .background-color-B5{background-color:#EDF0FD;} + .d2-2710455609 .background-color-B6{background-color:#F7F8FE;} + .d2-2710455609 .background-color-AA2{background-color:#4A6FF3;} + .d2-2710455609 .background-color-AA4{background-color:#EDF0FD;} + .d2-2710455609 .background-color-AA5{background-color:#F7F8FE;} + .d2-2710455609 .background-color-AB4{background-color:#EDF0FD;} + .d2-2710455609 .background-color-AB5{background-color:#F7F8FE;} + .d2-2710455609 .color-N1{color:#0A0F25;} + .d2-2710455609 .color-N2{color:#676C7E;} + .d2-2710455609 .color-N3{color:#9499AB;} + .d2-2710455609 .color-N4{color:#CFD2DD;} + .d2-2710455609 .color-N5{color:#DEE1EB;} + .d2-2710455609 .color-N6{color:#EEF1F8;} + .d2-2710455609 .color-N7{color:#FFFFFF;} + .d2-2710455609 .color-B1{color:#0D32B2;} + .d2-2710455609 .color-B2{color:#0D32B2;} + .d2-2710455609 .color-B3{color:#E3E9FD;} + .d2-2710455609 .color-B4{color:#E3E9FD;} + .d2-2710455609 .color-B5{color:#EDF0FD;} + .d2-2710455609 .color-B6{color:#F7F8FE;} + .d2-2710455609 .color-AA2{color:#4A6FF3;} + .d2-2710455609 .color-AA4{color:#EDF0FD;} + .d2-2710455609 .color-AA5{color:#F7F8FE;} + .d2-2710455609 .color-AB4{color:#EDF0FD;} + .d2-2710455609 .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}]]>abc12311112222 diff --git a/e2etests/testdata/regression/nested_layout_bug/dagre/board.exp.json b/e2etests/testdata/regression/nested_layout_bug/dagre/board.exp.json index 8562bc26ad..0913528c2f 100644 --- a/e2etests/testdata/regression/nested_layout_bug/dagre/board.exp.json +++ b/e2etests/testdata/regression/nested_layout_bug/dagre/board.exp.json @@ -192,6 +192,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 53, diff --git a/e2etests/testdata/regression/nested_layout_bug/dagre/sketch.exp.svg b/e2etests/testdata/regression/nested_layout_bug/dagre/sketch.exp.svg index 9b5e6c8b4f..c393ca1923 100644 --- a/e2etests/testdata/regression/nested_layout_bug/dagre/sketch.exp.svg +++ b/e2etests/testdata/regression/nested_layout_bug/dagre/sketch.exp.svg @@ -1,16 +1,16 @@ -abAABB + .d2-3712551575 .fill-N1{fill:#0A0F25;} + .d2-3712551575 .fill-N2{fill:#676C7E;} + .d2-3712551575 .fill-N3{fill:#9499AB;} + .d2-3712551575 .fill-N4{fill:#CFD2DD;} + .d2-3712551575 .fill-N5{fill:#DEE1EB;} + .d2-3712551575 .fill-N6{fill:#EEF1F8;} + .d2-3712551575 .fill-N7{fill:#FFFFFF;} + .d2-3712551575 .fill-B1{fill:#0D32B2;} + .d2-3712551575 .fill-B2{fill:#0D32B2;} + .d2-3712551575 .fill-B3{fill:#E3E9FD;} + .d2-3712551575 .fill-B4{fill:#E3E9FD;} + .d2-3712551575 .fill-B5{fill:#EDF0FD;} + .d2-3712551575 .fill-B6{fill:#F7F8FE;} + .d2-3712551575 .fill-AA2{fill:#4A6FF3;} + .d2-3712551575 .fill-AA4{fill:#EDF0FD;} + .d2-3712551575 .fill-AA5{fill:#F7F8FE;} + .d2-3712551575 .fill-AB4{fill:#EDF0FD;} + .d2-3712551575 .fill-AB5{fill:#F7F8FE;} + .d2-3712551575 .stroke-N1{stroke:#0A0F25;} + .d2-3712551575 .stroke-N2{stroke:#676C7E;} + .d2-3712551575 .stroke-N3{stroke:#9499AB;} + .d2-3712551575 .stroke-N4{stroke:#CFD2DD;} + .d2-3712551575 .stroke-N5{stroke:#DEE1EB;} + .d2-3712551575 .stroke-N6{stroke:#EEF1F8;} + .d2-3712551575 .stroke-N7{stroke:#FFFFFF;} + .d2-3712551575 .stroke-B1{stroke:#0D32B2;} + .d2-3712551575 .stroke-B2{stroke:#0D32B2;} + .d2-3712551575 .stroke-B3{stroke:#E3E9FD;} + .d2-3712551575 .stroke-B4{stroke:#E3E9FD;} + .d2-3712551575 .stroke-B5{stroke:#EDF0FD;} + .d2-3712551575 .stroke-B6{stroke:#F7F8FE;} + .d2-3712551575 .stroke-AA2{stroke:#4A6FF3;} + .d2-3712551575 .stroke-AA4{stroke:#EDF0FD;} + .d2-3712551575 .stroke-AA5{stroke:#F7F8FE;} + .d2-3712551575 .stroke-AB4{stroke:#EDF0FD;} + .d2-3712551575 .stroke-AB5{stroke:#F7F8FE;} + .d2-3712551575 .background-color-N1{background-color:#0A0F25;} + .d2-3712551575 .background-color-N2{background-color:#676C7E;} + .d2-3712551575 .background-color-N3{background-color:#9499AB;} + .d2-3712551575 .background-color-N4{background-color:#CFD2DD;} + .d2-3712551575 .background-color-N5{background-color:#DEE1EB;} + .d2-3712551575 .background-color-N6{background-color:#EEF1F8;} + .d2-3712551575 .background-color-N7{background-color:#FFFFFF;} + .d2-3712551575 .background-color-B1{background-color:#0D32B2;} + .d2-3712551575 .background-color-B2{background-color:#0D32B2;} + .d2-3712551575 .background-color-B3{background-color:#E3E9FD;} + .d2-3712551575 .background-color-B4{background-color:#E3E9FD;} + .d2-3712551575 .background-color-B5{background-color:#EDF0FD;} + .d2-3712551575 .background-color-B6{background-color:#F7F8FE;} + .d2-3712551575 .background-color-AA2{background-color:#4A6FF3;} + .d2-3712551575 .background-color-AA4{background-color:#EDF0FD;} + .d2-3712551575 .background-color-AA5{background-color:#F7F8FE;} + .d2-3712551575 .background-color-AB4{background-color:#EDF0FD;} + .d2-3712551575 .background-color-AB5{background-color:#F7F8FE;} + .d2-3712551575 .color-N1{color:#0A0F25;} + .d2-3712551575 .color-N2{color:#676C7E;} + .d2-3712551575 .color-N3{color:#9499AB;} + .d2-3712551575 .color-N4{color:#CFD2DD;} + .d2-3712551575 .color-N5{color:#DEE1EB;} + .d2-3712551575 .color-N6{color:#EEF1F8;} + .d2-3712551575 .color-N7{color:#FFFFFF;} + .d2-3712551575 .color-B1{color:#0D32B2;} + .d2-3712551575 .color-B2{color:#0D32B2;} + .d2-3712551575 .color-B3{color:#E3E9FD;} + .d2-3712551575 .color-B4{color:#E3E9FD;} + .d2-3712551575 .color-B5{color:#EDF0FD;} + .d2-3712551575 .color-B6{color:#F7F8FE;} + .d2-3712551575 .color-AA2{color:#4A6FF3;} + .d2-3712551575 .color-AA4{color:#EDF0FD;} + .d2-3712551575 .color-AA5{color:#F7F8FE;} + .d2-3712551575 .color-AB4{color:#EDF0FD;} + .d2-3712551575 .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}]]>abAABB diff --git a/e2etests/testdata/regression/nested_layout_bug/elk/board.exp.json b/e2etests/testdata/regression/nested_layout_bug/elk/board.exp.json index d2fb5269e4..4955709496 100644 --- a/e2etests/testdata/regression/nested_layout_bug/elk/board.exp.json +++ b/e2etests/testdata/regression/nested_layout_bug/elk/board.exp.json @@ -192,6 +192,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 53, diff --git a/e2etests/testdata/regression/nested_layout_bug/elk/sketch.exp.svg b/e2etests/testdata/regression/nested_layout_bug/elk/sketch.exp.svg index 110b3da7ad..210dd30150 100644 --- a/e2etests/testdata/regression/nested_layout_bug/elk/sketch.exp.svg +++ b/e2etests/testdata/regression/nested_layout_bug/elk/sketch.exp.svg @@ -1,16 +1,16 @@ -abAABB + .d2-579376013 .fill-N1{fill:#0A0F25;} + .d2-579376013 .fill-N2{fill:#676C7E;} + .d2-579376013 .fill-N3{fill:#9499AB;} + .d2-579376013 .fill-N4{fill:#CFD2DD;} + .d2-579376013 .fill-N5{fill:#DEE1EB;} + .d2-579376013 .fill-N6{fill:#EEF1F8;} + .d2-579376013 .fill-N7{fill:#FFFFFF;} + .d2-579376013 .fill-B1{fill:#0D32B2;} + .d2-579376013 .fill-B2{fill:#0D32B2;} + .d2-579376013 .fill-B3{fill:#E3E9FD;} + .d2-579376013 .fill-B4{fill:#E3E9FD;} + .d2-579376013 .fill-B5{fill:#EDF0FD;} + .d2-579376013 .fill-B6{fill:#F7F8FE;} + .d2-579376013 .fill-AA2{fill:#4A6FF3;} + .d2-579376013 .fill-AA4{fill:#EDF0FD;} + .d2-579376013 .fill-AA5{fill:#F7F8FE;} + .d2-579376013 .fill-AB4{fill:#EDF0FD;} + .d2-579376013 .fill-AB5{fill:#F7F8FE;} + .d2-579376013 .stroke-N1{stroke:#0A0F25;} + .d2-579376013 .stroke-N2{stroke:#676C7E;} + .d2-579376013 .stroke-N3{stroke:#9499AB;} + .d2-579376013 .stroke-N4{stroke:#CFD2DD;} + .d2-579376013 .stroke-N5{stroke:#DEE1EB;} + .d2-579376013 .stroke-N6{stroke:#EEF1F8;} + .d2-579376013 .stroke-N7{stroke:#FFFFFF;} + .d2-579376013 .stroke-B1{stroke:#0D32B2;} + .d2-579376013 .stroke-B2{stroke:#0D32B2;} + .d2-579376013 .stroke-B3{stroke:#E3E9FD;} + .d2-579376013 .stroke-B4{stroke:#E3E9FD;} + .d2-579376013 .stroke-B5{stroke:#EDF0FD;} + .d2-579376013 .stroke-B6{stroke:#F7F8FE;} + .d2-579376013 .stroke-AA2{stroke:#4A6FF3;} + .d2-579376013 .stroke-AA4{stroke:#EDF0FD;} + .d2-579376013 .stroke-AA5{stroke:#F7F8FE;} + .d2-579376013 .stroke-AB4{stroke:#EDF0FD;} + .d2-579376013 .stroke-AB5{stroke:#F7F8FE;} + .d2-579376013 .background-color-N1{background-color:#0A0F25;} + .d2-579376013 .background-color-N2{background-color:#676C7E;} + .d2-579376013 .background-color-N3{background-color:#9499AB;} + .d2-579376013 .background-color-N4{background-color:#CFD2DD;} + .d2-579376013 .background-color-N5{background-color:#DEE1EB;} + .d2-579376013 .background-color-N6{background-color:#EEF1F8;} + .d2-579376013 .background-color-N7{background-color:#FFFFFF;} + .d2-579376013 .background-color-B1{background-color:#0D32B2;} + .d2-579376013 .background-color-B2{background-color:#0D32B2;} + .d2-579376013 .background-color-B3{background-color:#E3E9FD;} + .d2-579376013 .background-color-B4{background-color:#E3E9FD;} + .d2-579376013 .background-color-B5{background-color:#EDF0FD;} + .d2-579376013 .background-color-B6{background-color:#F7F8FE;} + .d2-579376013 .background-color-AA2{background-color:#4A6FF3;} + .d2-579376013 .background-color-AA4{background-color:#EDF0FD;} + .d2-579376013 .background-color-AA5{background-color:#F7F8FE;} + .d2-579376013 .background-color-AB4{background-color:#EDF0FD;} + .d2-579376013 .background-color-AB5{background-color:#F7F8FE;} + .d2-579376013 .color-N1{color:#0A0F25;} + .d2-579376013 .color-N2{color:#676C7E;} + .d2-579376013 .color-N3{color:#9499AB;} + .d2-579376013 .color-N4{color:#CFD2DD;} + .d2-579376013 .color-N5{color:#DEE1EB;} + .d2-579376013 .color-N6{color:#EEF1F8;} + .d2-579376013 .color-N7{color:#FFFFFF;} + .d2-579376013 .color-B1{color:#0D32B2;} + .d2-579376013 .color-B2{color:#0D32B2;} + .d2-579376013 .color-B3{color:#E3E9FD;} + .d2-579376013 .color-B4{color:#E3E9FD;} + .d2-579376013 .color-B5{color:#EDF0FD;} + .d2-579376013 .color-B6{color:#F7F8FE;} + .d2-579376013 .color-AA2{color:#4A6FF3;} + .d2-579376013 .color-AA4{color:#EDF0FD;} + .d2-579376013 .color-AA5{color:#F7F8FE;} + .d2-579376013 .color-AB4{color:#EDF0FD;} + .d2-579376013 .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}]]>abAABB diff --git a/e2etests/testdata/regression/nested_steps/dagre/board.exp.json b/e2etests/testdata/regression/nested_steps/dagre/board.exp.json index a05bdd6e06..d8cb54b5b7 100644 --- a/e2etests/testdata/regression/nested_steps/dagre/board.exp.json +++ b/e2etests/testdata/regression/nested_steps/dagre/board.exp.json @@ -233,6 +233,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 86, @@ -280,6 +281,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 260, diff --git a/e2etests/testdata/regression/nested_steps/dagre/sketch.exp.svg b/e2etests/testdata/regression/nested_steps/dagre/sketch.exp.svg index 840e32cb54..78adf3e2fc 100644 --- a/e2etests/testdata/regression/nested_steps/dagre/sketch.exp.svg +++ b/e2etests/testdata/regression/nested_steps/dagre/sketch.exp.svg @@ -1,16 +1,16 @@ -acdab + .d2-1141560556 .fill-N1{fill:#0A0F25;} + .d2-1141560556 .fill-N2{fill:#676C7E;} + .d2-1141560556 .fill-N3{fill:#9499AB;} + .d2-1141560556 .fill-N4{fill:#CFD2DD;} + .d2-1141560556 .fill-N5{fill:#DEE1EB;} + .d2-1141560556 .fill-N6{fill:#EEF1F8;} + .d2-1141560556 .fill-N7{fill:#FFFFFF;} + .d2-1141560556 .fill-B1{fill:#0D32B2;} + .d2-1141560556 .fill-B2{fill:#0D32B2;} + .d2-1141560556 .fill-B3{fill:#E3E9FD;} + .d2-1141560556 .fill-B4{fill:#E3E9FD;} + .d2-1141560556 .fill-B5{fill:#EDF0FD;} + .d2-1141560556 .fill-B6{fill:#F7F8FE;} + .d2-1141560556 .fill-AA2{fill:#4A6FF3;} + .d2-1141560556 .fill-AA4{fill:#EDF0FD;} + .d2-1141560556 .fill-AA5{fill:#F7F8FE;} + .d2-1141560556 .fill-AB4{fill:#EDF0FD;} + .d2-1141560556 .fill-AB5{fill:#F7F8FE;} + .d2-1141560556 .stroke-N1{stroke:#0A0F25;} + .d2-1141560556 .stroke-N2{stroke:#676C7E;} + .d2-1141560556 .stroke-N3{stroke:#9499AB;} + .d2-1141560556 .stroke-N4{stroke:#CFD2DD;} + .d2-1141560556 .stroke-N5{stroke:#DEE1EB;} + .d2-1141560556 .stroke-N6{stroke:#EEF1F8;} + .d2-1141560556 .stroke-N7{stroke:#FFFFFF;} + .d2-1141560556 .stroke-B1{stroke:#0D32B2;} + .d2-1141560556 .stroke-B2{stroke:#0D32B2;} + .d2-1141560556 .stroke-B3{stroke:#E3E9FD;} + .d2-1141560556 .stroke-B4{stroke:#E3E9FD;} + .d2-1141560556 .stroke-B5{stroke:#EDF0FD;} + .d2-1141560556 .stroke-B6{stroke:#F7F8FE;} + .d2-1141560556 .stroke-AA2{stroke:#4A6FF3;} + .d2-1141560556 .stroke-AA4{stroke:#EDF0FD;} + .d2-1141560556 .stroke-AA5{stroke:#F7F8FE;} + .d2-1141560556 .stroke-AB4{stroke:#EDF0FD;} + .d2-1141560556 .stroke-AB5{stroke:#F7F8FE;} + .d2-1141560556 .background-color-N1{background-color:#0A0F25;} + .d2-1141560556 .background-color-N2{background-color:#676C7E;} + .d2-1141560556 .background-color-N3{background-color:#9499AB;} + .d2-1141560556 .background-color-N4{background-color:#CFD2DD;} + .d2-1141560556 .background-color-N5{background-color:#DEE1EB;} + .d2-1141560556 .background-color-N6{background-color:#EEF1F8;} + .d2-1141560556 .background-color-N7{background-color:#FFFFFF;} + .d2-1141560556 .background-color-B1{background-color:#0D32B2;} + .d2-1141560556 .background-color-B2{background-color:#0D32B2;} + .d2-1141560556 .background-color-B3{background-color:#E3E9FD;} + .d2-1141560556 .background-color-B4{background-color:#E3E9FD;} + .d2-1141560556 .background-color-B5{background-color:#EDF0FD;} + .d2-1141560556 .background-color-B6{background-color:#F7F8FE;} + .d2-1141560556 .background-color-AA2{background-color:#4A6FF3;} + .d2-1141560556 .background-color-AA4{background-color:#EDF0FD;} + .d2-1141560556 .background-color-AA5{background-color:#F7F8FE;} + .d2-1141560556 .background-color-AB4{background-color:#EDF0FD;} + .d2-1141560556 .background-color-AB5{background-color:#F7F8FE;} + .d2-1141560556 .color-N1{color:#0A0F25;} + .d2-1141560556 .color-N2{color:#676C7E;} + .d2-1141560556 .color-N3{color:#9499AB;} + .d2-1141560556 .color-N4{color:#CFD2DD;} + .d2-1141560556 .color-N5{color:#DEE1EB;} + .d2-1141560556 .color-N6{color:#EEF1F8;} + .d2-1141560556 .color-N7{color:#FFFFFF;} + .d2-1141560556 .color-B1{color:#0D32B2;} + .d2-1141560556 .color-B2{color:#0D32B2;} + .d2-1141560556 .color-B3{color:#E3E9FD;} + .d2-1141560556 .color-B4{color:#E3E9FD;} + .d2-1141560556 .color-B5{color:#EDF0FD;} + .d2-1141560556 .color-B6{color:#F7F8FE;} + .d2-1141560556 .color-AA2{color:#4A6FF3;} + .d2-1141560556 .color-AA4{color:#EDF0FD;} + .d2-1141560556 .color-AA5{color:#F7F8FE;} + .d2-1141560556 .color-AB4{color:#EDF0FD;} + .d2-1141560556 .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}]]>acdab diff --git a/e2etests/testdata/regression/nested_steps/elk/board.exp.json b/e2etests/testdata/regression/nested_steps/elk/board.exp.json index 165657d4fb..a93d43c7cc 100644 --- a/e2etests/testdata/regression/nested_steps/elk/board.exp.json +++ b/e2etests/testdata/regression/nested_steps/elk/board.exp.json @@ -233,6 +233,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 108, @@ -271,6 +272,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 271, diff --git a/e2etests/testdata/regression/nested_steps/elk/sketch.exp.svg b/e2etests/testdata/regression/nested_steps/elk/sketch.exp.svg index a2faa18b80..289f5b5297 100644 --- a/e2etests/testdata/regression/nested_steps/elk/sketch.exp.svg +++ b/e2etests/testdata/regression/nested_steps/elk/sketch.exp.svg @@ -1,16 +1,16 @@ -acdab + .d2-135479044 .fill-N1{fill:#0A0F25;} + .d2-135479044 .fill-N2{fill:#676C7E;} + .d2-135479044 .fill-N3{fill:#9499AB;} + .d2-135479044 .fill-N4{fill:#CFD2DD;} + .d2-135479044 .fill-N5{fill:#DEE1EB;} + .d2-135479044 .fill-N6{fill:#EEF1F8;} + .d2-135479044 .fill-N7{fill:#FFFFFF;} + .d2-135479044 .fill-B1{fill:#0D32B2;} + .d2-135479044 .fill-B2{fill:#0D32B2;} + .d2-135479044 .fill-B3{fill:#E3E9FD;} + .d2-135479044 .fill-B4{fill:#E3E9FD;} + .d2-135479044 .fill-B5{fill:#EDF0FD;} + .d2-135479044 .fill-B6{fill:#F7F8FE;} + .d2-135479044 .fill-AA2{fill:#4A6FF3;} + .d2-135479044 .fill-AA4{fill:#EDF0FD;} + .d2-135479044 .fill-AA5{fill:#F7F8FE;} + .d2-135479044 .fill-AB4{fill:#EDF0FD;} + .d2-135479044 .fill-AB5{fill:#F7F8FE;} + .d2-135479044 .stroke-N1{stroke:#0A0F25;} + .d2-135479044 .stroke-N2{stroke:#676C7E;} + .d2-135479044 .stroke-N3{stroke:#9499AB;} + .d2-135479044 .stroke-N4{stroke:#CFD2DD;} + .d2-135479044 .stroke-N5{stroke:#DEE1EB;} + .d2-135479044 .stroke-N6{stroke:#EEF1F8;} + .d2-135479044 .stroke-N7{stroke:#FFFFFF;} + .d2-135479044 .stroke-B1{stroke:#0D32B2;} + .d2-135479044 .stroke-B2{stroke:#0D32B2;} + .d2-135479044 .stroke-B3{stroke:#E3E9FD;} + .d2-135479044 .stroke-B4{stroke:#E3E9FD;} + .d2-135479044 .stroke-B5{stroke:#EDF0FD;} + .d2-135479044 .stroke-B6{stroke:#F7F8FE;} + .d2-135479044 .stroke-AA2{stroke:#4A6FF3;} + .d2-135479044 .stroke-AA4{stroke:#EDF0FD;} + .d2-135479044 .stroke-AA5{stroke:#F7F8FE;} + .d2-135479044 .stroke-AB4{stroke:#EDF0FD;} + .d2-135479044 .stroke-AB5{stroke:#F7F8FE;} + .d2-135479044 .background-color-N1{background-color:#0A0F25;} + .d2-135479044 .background-color-N2{background-color:#676C7E;} + .d2-135479044 .background-color-N3{background-color:#9499AB;} + .d2-135479044 .background-color-N4{background-color:#CFD2DD;} + .d2-135479044 .background-color-N5{background-color:#DEE1EB;} + .d2-135479044 .background-color-N6{background-color:#EEF1F8;} + .d2-135479044 .background-color-N7{background-color:#FFFFFF;} + .d2-135479044 .background-color-B1{background-color:#0D32B2;} + .d2-135479044 .background-color-B2{background-color:#0D32B2;} + .d2-135479044 .background-color-B3{background-color:#E3E9FD;} + .d2-135479044 .background-color-B4{background-color:#E3E9FD;} + .d2-135479044 .background-color-B5{background-color:#EDF0FD;} + .d2-135479044 .background-color-B6{background-color:#F7F8FE;} + .d2-135479044 .background-color-AA2{background-color:#4A6FF3;} + .d2-135479044 .background-color-AA4{background-color:#EDF0FD;} + .d2-135479044 .background-color-AA5{background-color:#F7F8FE;} + .d2-135479044 .background-color-AB4{background-color:#EDF0FD;} + .d2-135479044 .background-color-AB5{background-color:#F7F8FE;} + .d2-135479044 .color-N1{color:#0A0F25;} + .d2-135479044 .color-N2{color:#676C7E;} + .d2-135479044 .color-N3{color:#9499AB;} + .d2-135479044 .color-N4{color:#CFD2DD;} + .d2-135479044 .color-N5{color:#DEE1EB;} + .d2-135479044 .color-N6{color:#EEF1F8;} + .d2-135479044 .color-N7{color:#FFFFFF;} + .d2-135479044 .color-B1{color:#0D32B2;} + .d2-135479044 .color-B2{color:#0D32B2;} + .d2-135479044 .color-B3{color:#E3E9FD;} + .d2-135479044 .color-B4{color:#E3E9FD;} + .d2-135479044 .color-B5{color:#EDF0FD;} + .d2-135479044 .color-B6{color:#F7F8FE;} + .d2-135479044 .color-AA2{color:#4A6FF3;} + .d2-135479044 .color-AA4{color:#EDF0FD;} + .d2-135479044 .color-AA5{color:#F7F8FE;} + .d2-135479044 .color-AB4{color:#EDF0FD;} + .d2-135479044 .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}]]>acdab diff --git a/e2etests/testdata/regression/only_header_class_table/dagre/board.exp.json b/e2etests/testdata/regression/only_header_class_table/dagre/board.exp.json index 1421415d8d..b3bacddfcf 100644 --- a/e2etests/testdata/regression/only_header_class_table/dagre/board.exp.json +++ b/e2etests/testdata/regression/only_header_class_table/dagre/board.exp.json @@ -186,6 +186,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 541, @@ -233,6 +234,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 541, diff --git a/e2etests/testdata/regression/only_header_class_table/dagre/sketch.exp.svg b/e2etests/testdata/regression/only_header_class_table/dagre/sketch.exp.svg index b60f1e509a..a297511cf6 100644 --- a/e2etests/testdata/regression/only_header_class_table/dagre/sketch.exp.svg +++ b/e2etests/testdata/regression/only_header_class_table/dagre/sketch.exp.svg @@ -1,16 +1,16 @@ -RefreshAuthorizationPolicyProtocolServerSideTranslatorProtocolBufferRefreshAuthorizationPolicyCacheRefreshAuthorizationPolicyCacheok + .d2-135452814 .fill-N1{fill:#0A0F25;} + .d2-135452814 .fill-N2{fill:#676C7E;} + .d2-135452814 .fill-N3{fill:#9499AB;} + .d2-135452814 .fill-N4{fill:#CFD2DD;} + .d2-135452814 .fill-N5{fill:#DEE1EB;} + .d2-135452814 .fill-N6{fill:#EEF1F8;} + .d2-135452814 .fill-N7{fill:#FFFFFF;} + .d2-135452814 .fill-B1{fill:#0D32B2;} + .d2-135452814 .fill-B2{fill:#0D32B2;} + .d2-135452814 .fill-B3{fill:#E3E9FD;} + .d2-135452814 .fill-B4{fill:#E3E9FD;} + .d2-135452814 .fill-B5{fill:#EDF0FD;} + .d2-135452814 .fill-B6{fill:#F7F8FE;} + .d2-135452814 .fill-AA2{fill:#4A6FF3;} + .d2-135452814 .fill-AA4{fill:#EDF0FD;} + .d2-135452814 .fill-AA5{fill:#F7F8FE;} + .d2-135452814 .fill-AB4{fill:#EDF0FD;} + .d2-135452814 .fill-AB5{fill:#F7F8FE;} + .d2-135452814 .stroke-N1{stroke:#0A0F25;} + .d2-135452814 .stroke-N2{stroke:#676C7E;} + .d2-135452814 .stroke-N3{stroke:#9499AB;} + .d2-135452814 .stroke-N4{stroke:#CFD2DD;} + .d2-135452814 .stroke-N5{stroke:#DEE1EB;} + .d2-135452814 .stroke-N6{stroke:#EEF1F8;} + .d2-135452814 .stroke-N7{stroke:#FFFFFF;} + .d2-135452814 .stroke-B1{stroke:#0D32B2;} + .d2-135452814 .stroke-B2{stroke:#0D32B2;} + .d2-135452814 .stroke-B3{stroke:#E3E9FD;} + .d2-135452814 .stroke-B4{stroke:#E3E9FD;} + .d2-135452814 .stroke-B5{stroke:#EDF0FD;} + .d2-135452814 .stroke-B6{stroke:#F7F8FE;} + .d2-135452814 .stroke-AA2{stroke:#4A6FF3;} + .d2-135452814 .stroke-AA4{stroke:#EDF0FD;} + .d2-135452814 .stroke-AA5{stroke:#F7F8FE;} + .d2-135452814 .stroke-AB4{stroke:#EDF0FD;} + .d2-135452814 .stroke-AB5{stroke:#F7F8FE;} + .d2-135452814 .background-color-N1{background-color:#0A0F25;} + .d2-135452814 .background-color-N2{background-color:#676C7E;} + .d2-135452814 .background-color-N3{background-color:#9499AB;} + .d2-135452814 .background-color-N4{background-color:#CFD2DD;} + .d2-135452814 .background-color-N5{background-color:#DEE1EB;} + .d2-135452814 .background-color-N6{background-color:#EEF1F8;} + .d2-135452814 .background-color-N7{background-color:#FFFFFF;} + .d2-135452814 .background-color-B1{background-color:#0D32B2;} + .d2-135452814 .background-color-B2{background-color:#0D32B2;} + .d2-135452814 .background-color-B3{background-color:#E3E9FD;} + .d2-135452814 .background-color-B4{background-color:#E3E9FD;} + .d2-135452814 .background-color-B5{background-color:#EDF0FD;} + .d2-135452814 .background-color-B6{background-color:#F7F8FE;} + .d2-135452814 .background-color-AA2{background-color:#4A6FF3;} + .d2-135452814 .background-color-AA4{background-color:#EDF0FD;} + .d2-135452814 .background-color-AA5{background-color:#F7F8FE;} + .d2-135452814 .background-color-AB4{background-color:#EDF0FD;} + .d2-135452814 .background-color-AB5{background-color:#F7F8FE;} + .d2-135452814 .color-N1{color:#0A0F25;} + .d2-135452814 .color-N2{color:#676C7E;} + .d2-135452814 .color-N3{color:#9499AB;} + .d2-135452814 .color-N4{color:#CFD2DD;} + .d2-135452814 .color-N5{color:#DEE1EB;} + .d2-135452814 .color-N6{color:#EEF1F8;} + .d2-135452814 .color-N7{color:#FFFFFF;} + .d2-135452814 .color-B1{color:#0D32B2;} + .d2-135452814 .color-B2{color:#0D32B2;} + .d2-135452814 .color-B3{color:#E3E9FD;} + .d2-135452814 .color-B4{color:#E3E9FD;} + .d2-135452814 .color-B5{color:#EDF0FD;} + .d2-135452814 .color-B6{color:#F7F8FE;} + .d2-135452814 .color-AA2{color:#4A6FF3;} + .d2-135452814 .color-AA4{color:#EDF0FD;} + .d2-135452814 .color-AA5{color:#F7F8FE;} + .d2-135452814 .color-AB4{color:#EDF0FD;} + .d2-135452814 .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}]]>RefreshAuthorizationPolicyProtocolServerSideTranslatorProtocolBufferRefreshAuthorizationPolicyCacheRefreshAuthorizationPolicyCacheok \ No newline at end of file diff --git a/e2etests/testdata/regression/only_header_class_table/elk/board.exp.json b/e2etests/testdata/regression/only_header_class_table/elk/board.exp.json index 978739f12c..3fb44c64fe 100644 --- a/e2etests/testdata/regression/only_header_class_table/elk/board.exp.json +++ b/e2etests/testdata/regression/only_header_class_table/elk/board.exp.json @@ -186,6 +186,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 553, @@ -224,6 +225,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 553, diff --git a/e2etests/testdata/regression/only_header_class_table/elk/sketch.exp.svg b/e2etests/testdata/regression/only_header_class_table/elk/sketch.exp.svg index f32d8b9e4d..0991ba801d 100644 --- a/e2etests/testdata/regression/only_header_class_table/elk/sketch.exp.svg +++ b/e2etests/testdata/regression/only_header_class_table/elk/sketch.exp.svg @@ -1,16 +1,16 @@ -RefreshAuthorizationPolicyProtocolServerSideTranslatorProtocolBufferRefreshAuthorizationPolicyCacheRefreshAuthorizationPolicyCacheok + .d2-266917553 .fill-N1{fill:#0A0F25;} + .d2-266917553 .fill-N2{fill:#676C7E;} + .d2-266917553 .fill-N3{fill:#9499AB;} + .d2-266917553 .fill-N4{fill:#CFD2DD;} + .d2-266917553 .fill-N5{fill:#DEE1EB;} + .d2-266917553 .fill-N6{fill:#EEF1F8;} + .d2-266917553 .fill-N7{fill:#FFFFFF;} + .d2-266917553 .fill-B1{fill:#0D32B2;} + .d2-266917553 .fill-B2{fill:#0D32B2;} + .d2-266917553 .fill-B3{fill:#E3E9FD;} + .d2-266917553 .fill-B4{fill:#E3E9FD;} + .d2-266917553 .fill-B5{fill:#EDF0FD;} + .d2-266917553 .fill-B6{fill:#F7F8FE;} + .d2-266917553 .fill-AA2{fill:#4A6FF3;} + .d2-266917553 .fill-AA4{fill:#EDF0FD;} + .d2-266917553 .fill-AA5{fill:#F7F8FE;} + .d2-266917553 .fill-AB4{fill:#EDF0FD;} + .d2-266917553 .fill-AB5{fill:#F7F8FE;} + .d2-266917553 .stroke-N1{stroke:#0A0F25;} + .d2-266917553 .stroke-N2{stroke:#676C7E;} + .d2-266917553 .stroke-N3{stroke:#9499AB;} + .d2-266917553 .stroke-N4{stroke:#CFD2DD;} + .d2-266917553 .stroke-N5{stroke:#DEE1EB;} + .d2-266917553 .stroke-N6{stroke:#EEF1F8;} + .d2-266917553 .stroke-N7{stroke:#FFFFFF;} + .d2-266917553 .stroke-B1{stroke:#0D32B2;} + .d2-266917553 .stroke-B2{stroke:#0D32B2;} + .d2-266917553 .stroke-B3{stroke:#E3E9FD;} + .d2-266917553 .stroke-B4{stroke:#E3E9FD;} + .d2-266917553 .stroke-B5{stroke:#EDF0FD;} + .d2-266917553 .stroke-B6{stroke:#F7F8FE;} + .d2-266917553 .stroke-AA2{stroke:#4A6FF3;} + .d2-266917553 .stroke-AA4{stroke:#EDF0FD;} + .d2-266917553 .stroke-AA5{stroke:#F7F8FE;} + .d2-266917553 .stroke-AB4{stroke:#EDF0FD;} + .d2-266917553 .stroke-AB5{stroke:#F7F8FE;} + .d2-266917553 .background-color-N1{background-color:#0A0F25;} + .d2-266917553 .background-color-N2{background-color:#676C7E;} + .d2-266917553 .background-color-N3{background-color:#9499AB;} + .d2-266917553 .background-color-N4{background-color:#CFD2DD;} + .d2-266917553 .background-color-N5{background-color:#DEE1EB;} + .d2-266917553 .background-color-N6{background-color:#EEF1F8;} + .d2-266917553 .background-color-N7{background-color:#FFFFFF;} + .d2-266917553 .background-color-B1{background-color:#0D32B2;} + .d2-266917553 .background-color-B2{background-color:#0D32B2;} + .d2-266917553 .background-color-B3{background-color:#E3E9FD;} + .d2-266917553 .background-color-B4{background-color:#E3E9FD;} + .d2-266917553 .background-color-B5{background-color:#EDF0FD;} + .d2-266917553 .background-color-B6{background-color:#F7F8FE;} + .d2-266917553 .background-color-AA2{background-color:#4A6FF3;} + .d2-266917553 .background-color-AA4{background-color:#EDF0FD;} + .d2-266917553 .background-color-AA5{background-color:#F7F8FE;} + .d2-266917553 .background-color-AB4{background-color:#EDF0FD;} + .d2-266917553 .background-color-AB5{background-color:#F7F8FE;} + .d2-266917553 .color-N1{color:#0A0F25;} + .d2-266917553 .color-N2{color:#676C7E;} + .d2-266917553 .color-N3{color:#9499AB;} + .d2-266917553 .color-N4{color:#CFD2DD;} + .d2-266917553 .color-N5{color:#DEE1EB;} + .d2-266917553 .color-N6{color:#EEF1F8;} + .d2-266917553 .color-N7{color:#FFFFFF;} + .d2-266917553 .color-B1{color:#0D32B2;} + .d2-266917553 .color-B2{color:#0D32B2;} + .d2-266917553 .color-B3{color:#E3E9FD;} + .d2-266917553 .color-B4{color:#E3E9FD;} + .d2-266917553 .color-B5{color:#EDF0FD;} + .d2-266917553 .color-B6{color:#F7F8FE;} + .d2-266917553 .color-AA2{color:#4A6FF3;} + .d2-266917553 .color-AA4{color:#EDF0FD;} + .d2-266917553 .color-AA5{color:#F7F8FE;} + .d2-266917553 .color-AB4{color:#EDF0FD;} + .d2-266917553 .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}]]>RefreshAuthorizationPolicyProtocolServerSideTranslatorProtocolBufferRefreshAuthorizationPolicyCacheRefreshAuthorizationPolicyCacheok \ No newline at end of file diff --git a/e2etests/testdata/regression/opacity-on-label/dagre/board.exp.json b/e2etests/testdata/regression/opacity-on-label/dagre/board.exp.json index 4a2c0b80a9..2b572a4b3a 100644 --- a/e2etests/testdata/regression/opacity-on-label/dagre/board.exp.json +++ b/e2etests/testdata/regression/opacity-on-label/dagre/board.exp.json @@ -150,6 +150,7 @@ "labelHeight": 37, "labelPosition": "INSIDE_MIDDLE_CENTER", "labelPercentage": 0, + "link": "", "route": [ { "x": 161, diff --git a/e2etests/testdata/regression/opacity-on-label/dagre/sketch.exp.svg b/e2etests/testdata/regression/opacity-on-label/dagre/sketch.exp.svg index 12f71f1f77..949d5a8363 100644 --- a/e2etests/testdata/regression/opacity-on-label/dagre/sketch.exp.svg +++ b/e2etests/testdata/regression/opacity-on-label/dagre/sketch.exp.svg @@ -1,27 +1,27 @@ -x

    linux: because a PC is a terrible thing to waste

    -
    a You don't have to know how the computer works,just how to work the computer. +a You don't have to know how the computer works,just how to work the computer. diff --git a/e2etests/testdata/regression/opacity-on-label/elk/board.exp.json b/e2etests/testdata/regression/opacity-on-label/elk/board.exp.json index 09a5c754f0..2ecaa2362d 100644 --- a/e2etests/testdata/regression/opacity-on-label/elk/board.exp.json +++ b/e2etests/testdata/regression/opacity-on-label/elk/board.exp.json @@ -150,6 +150,7 @@ "labelHeight": 37, "labelPosition": "INSIDE_MIDDLE_CENTER", "labelPercentage": 0, + "link": "", "route": [ { "x": 173, diff --git a/e2etests/testdata/regression/opacity-on-label/elk/sketch.exp.svg b/e2etests/testdata/regression/opacity-on-label/elk/sketch.exp.svg index 87d3e8f9a7..7a50ae27f3 100644 --- a/e2etests/testdata/regression/opacity-on-label/elk/sketch.exp.svg +++ b/e2etests/testdata/regression/opacity-on-label/elk/sketch.exp.svg @@ -1,27 +1,27 @@ -x

    linux: because a PC is a terrible thing to waste

    -
    a You don't have to know how the computer works,just how to work the computer. +a You don't have to know how the computer works,just how to work the computer. diff --git a/e2etests/testdata/regression/overlapping-edge-label/dagre/board.exp.json b/e2etests/testdata/regression/overlapping-edge-label/dagre/board.exp.json index d09ceeafe6..fb8b135c9a 100644 --- a/e2etests/testdata/regression/overlapping-edge-label/dagre/board.exp.json +++ b/e2etests/testdata/regression/overlapping-edge-label/dagre/board.exp.json @@ -438,6 +438,7 @@ "labelHeight": 21, "labelPosition": "INSIDE_MIDDLE_CENTER", "labelPercentage": 0, + "link": "", "route": [ { "x": 532.5, @@ -485,6 +486,7 @@ "labelHeight": 21, "labelPosition": "INSIDE_MIDDLE_CENTER", "labelPercentage": 0, + "link": "", "route": [ { "x": 634.5, @@ -532,6 +534,7 @@ "labelHeight": 21, "labelPosition": "INSIDE_MIDDLE_CENTER", "labelPercentage": 0, + "link": "", "route": [ { "x": 730.5, @@ -579,6 +582,7 @@ "labelHeight": 21, "labelPosition": "INSIDE_MIDDLE_CENTER", "labelPercentage": 0, + "link": "", "route": [ { "x": 811.5, diff --git a/e2etests/testdata/regression/overlapping-edge-label/dagre/sketch.exp.svg b/e2etests/testdata/regression/overlapping-edge-label/dagre/sketch.exp.svg index ade0da252b..d0c826770d 100644 --- a/e2etests/testdata/regression/overlapping-edge-label/dagre/sketch.exp.svg +++ b/e2etests/testdata/regression/overlapping-edge-label/dagre/sketch.exp.svg @@ -1,23 +1,23 @@ -Kubernetesopensvck8s-master1k8s-master2k8s-master3k8s-worker1k8s-worker2k8s-worker3VM1VM2 keycloakheptapodharborvault + .d2-1084299464 .fill-N1{fill:#0A0F25;} + .d2-1084299464 .fill-N2{fill:#676C7E;} + .d2-1084299464 .fill-N3{fill:#9499AB;} + .d2-1084299464 .fill-N4{fill:#CFD2DD;} + .d2-1084299464 .fill-N5{fill:#DEE1EB;} + .d2-1084299464 .fill-N6{fill:#EEF1F8;} + .d2-1084299464 .fill-N7{fill:#FFFFFF;} + .d2-1084299464 .fill-B1{fill:#0D32B2;} + .d2-1084299464 .fill-B2{fill:#0D32B2;} + .d2-1084299464 .fill-B3{fill:#E3E9FD;} + .d2-1084299464 .fill-B4{fill:#E3E9FD;} + .d2-1084299464 .fill-B5{fill:#EDF0FD;} + .d2-1084299464 .fill-B6{fill:#F7F8FE;} + .d2-1084299464 .fill-AA2{fill:#4A6FF3;} + .d2-1084299464 .fill-AA4{fill:#EDF0FD;} + .d2-1084299464 .fill-AA5{fill:#F7F8FE;} + .d2-1084299464 .fill-AB4{fill:#EDF0FD;} + .d2-1084299464 .fill-AB5{fill:#F7F8FE;} + .d2-1084299464 .stroke-N1{stroke:#0A0F25;} + .d2-1084299464 .stroke-N2{stroke:#676C7E;} + .d2-1084299464 .stroke-N3{stroke:#9499AB;} + .d2-1084299464 .stroke-N4{stroke:#CFD2DD;} + .d2-1084299464 .stroke-N5{stroke:#DEE1EB;} + .d2-1084299464 .stroke-N6{stroke:#EEF1F8;} + .d2-1084299464 .stroke-N7{stroke:#FFFFFF;} + .d2-1084299464 .stroke-B1{stroke:#0D32B2;} + .d2-1084299464 .stroke-B2{stroke:#0D32B2;} + .d2-1084299464 .stroke-B3{stroke:#E3E9FD;} + .d2-1084299464 .stroke-B4{stroke:#E3E9FD;} + .d2-1084299464 .stroke-B5{stroke:#EDF0FD;} + .d2-1084299464 .stroke-B6{stroke:#F7F8FE;} + .d2-1084299464 .stroke-AA2{stroke:#4A6FF3;} + .d2-1084299464 .stroke-AA4{stroke:#EDF0FD;} + .d2-1084299464 .stroke-AA5{stroke:#F7F8FE;} + .d2-1084299464 .stroke-AB4{stroke:#EDF0FD;} + .d2-1084299464 .stroke-AB5{stroke:#F7F8FE;} + .d2-1084299464 .background-color-N1{background-color:#0A0F25;} + .d2-1084299464 .background-color-N2{background-color:#676C7E;} + .d2-1084299464 .background-color-N3{background-color:#9499AB;} + .d2-1084299464 .background-color-N4{background-color:#CFD2DD;} + .d2-1084299464 .background-color-N5{background-color:#DEE1EB;} + .d2-1084299464 .background-color-N6{background-color:#EEF1F8;} + .d2-1084299464 .background-color-N7{background-color:#FFFFFF;} + .d2-1084299464 .background-color-B1{background-color:#0D32B2;} + .d2-1084299464 .background-color-B2{background-color:#0D32B2;} + .d2-1084299464 .background-color-B3{background-color:#E3E9FD;} + .d2-1084299464 .background-color-B4{background-color:#E3E9FD;} + .d2-1084299464 .background-color-B5{background-color:#EDF0FD;} + .d2-1084299464 .background-color-B6{background-color:#F7F8FE;} + .d2-1084299464 .background-color-AA2{background-color:#4A6FF3;} + .d2-1084299464 .background-color-AA4{background-color:#EDF0FD;} + .d2-1084299464 .background-color-AA5{background-color:#F7F8FE;} + .d2-1084299464 .background-color-AB4{background-color:#EDF0FD;} + .d2-1084299464 .background-color-AB5{background-color:#F7F8FE;} + .d2-1084299464 .color-N1{color:#0A0F25;} + .d2-1084299464 .color-N2{color:#676C7E;} + .d2-1084299464 .color-N3{color:#9499AB;} + .d2-1084299464 .color-N4{color:#CFD2DD;} + .d2-1084299464 .color-N5{color:#DEE1EB;} + .d2-1084299464 .color-N6{color:#EEF1F8;} + .d2-1084299464 .color-N7{color:#FFFFFF;} + .d2-1084299464 .color-B1{color:#0D32B2;} + .d2-1084299464 .color-B2{color:#0D32B2;} + .d2-1084299464 .color-B3{color:#E3E9FD;} + .d2-1084299464 .color-B4{color:#E3E9FD;} + .d2-1084299464 .color-B5{color:#EDF0FD;} + .d2-1084299464 .color-B6{color:#F7F8FE;} + .d2-1084299464 .color-AA2{color:#4A6FF3;} + .d2-1084299464 .color-AA4{color:#EDF0FD;} + .d2-1084299464 .color-AA5{color:#F7F8FE;} + .d2-1084299464 .color-AB4{color:#EDF0FD;} + .d2-1084299464 .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}]]>Kubernetesopensvck8s-master1k8s-master2k8s-master3k8s-worker1k8s-worker2k8s-worker3VM1VM2 keycloakheptapodharborvault diff --git a/e2etests/testdata/regression/overlapping-edge-label/elk/board.exp.json b/e2etests/testdata/regression/overlapping-edge-label/elk/board.exp.json index a57d70a04d..c5cb968ce1 100644 --- a/e2etests/testdata/regression/overlapping-edge-label/elk/board.exp.json +++ b/e2etests/testdata/regression/overlapping-edge-label/elk/board.exp.json @@ -438,6 +438,7 @@ "labelHeight": 21, "labelPosition": "INSIDE_MIDDLE_CENTER", "labelPercentage": 0, + "link": "", "route": [ { "x": 274, @@ -484,6 +485,7 @@ "labelHeight": 21, "labelPosition": "INSIDE_MIDDLE_CENTER", "labelPercentage": 0, + "link": "", "route": [ { "x": 482.29998779296875, @@ -522,6 +524,7 @@ "labelHeight": 21, "labelPosition": "INSIDE_MIDDLE_CENTER", "labelPercentage": 0, + "link": "", "route": [ { "x": 536.7000122070312, @@ -560,6 +563,7 @@ "labelHeight": 21, "labelPosition": "INSIDE_MIDDLE_CENTER", "labelPercentage": 0, + "link": "", "route": [ { "x": 735.7000122070312, diff --git a/e2etests/testdata/regression/overlapping-edge-label/elk/sketch.exp.svg b/e2etests/testdata/regression/overlapping-edge-label/elk/sketch.exp.svg index d3473d991a..689808a703 100644 --- a/e2etests/testdata/regression/overlapping-edge-label/elk/sketch.exp.svg +++ b/e2etests/testdata/regression/overlapping-edge-label/elk/sketch.exp.svg @@ -1,23 +1,23 @@ -Kubernetesopensvck8s-master1k8s-master2k8s-master3k8s-worker1k8s-worker2k8s-worker3VM1VM2 keycloakheptapodharborvault + .d2-2491348673 .fill-N1{fill:#0A0F25;} + .d2-2491348673 .fill-N2{fill:#676C7E;} + .d2-2491348673 .fill-N3{fill:#9499AB;} + .d2-2491348673 .fill-N4{fill:#CFD2DD;} + .d2-2491348673 .fill-N5{fill:#DEE1EB;} + .d2-2491348673 .fill-N6{fill:#EEF1F8;} + .d2-2491348673 .fill-N7{fill:#FFFFFF;} + .d2-2491348673 .fill-B1{fill:#0D32B2;} + .d2-2491348673 .fill-B2{fill:#0D32B2;} + .d2-2491348673 .fill-B3{fill:#E3E9FD;} + .d2-2491348673 .fill-B4{fill:#E3E9FD;} + .d2-2491348673 .fill-B5{fill:#EDF0FD;} + .d2-2491348673 .fill-B6{fill:#F7F8FE;} + .d2-2491348673 .fill-AA2{fill:#4A6FF3;} + .d2-2491348673 .fill-AA4{fill:#EDF0FD;} + .d2-2491348673 .fill-AA5{fill:#F7F8FE;} + .d2-2491348673 .fill-AB4{fill:#EDF0FD;} + .d2-2491348673 .fill-AB5{fill:#F7F8FE;} + .d2-2491348673 .stroke-N1{stroke:#0A0F25;} + .d2-2491348673 .stroke-N2{stroke:#676C7E;} + .d2-2491348673 .stroke-N3{stroke:#9499AB;} + .d2-2491348673 .stroke-N4{stroke:#CFD2DD;} + .d2-2491348673 .stroke-N5{stroke:#DEE1EB;} + .d2-2491348673 .stroke-N6{stroke:#EEF1F8;} + .d2-2491348673 .stroke-N7{stroke:#FFFFFF;} + .d2-2491348673 .stroke-B1{stroke:#0D32B2;} + .d2-2491348673 .stroke-B2{stroke:#0D32B2;} + .d2-2491348673 .stroke-B3{stroke:#E3E9FD;} + .d2-2491348673 .stroke-B4{stroke:#E3E9FD;} + .d2-2491348673 .stroke-B5{stroke:#EDF0FD;} + .d2-2491348673 .stroke-B6{stroke:#F7F8FE;} + .d2-2491348673 .stroke-AA2{stroke:#4A6FF3;} + .d2-2491348673 .stroke-AA4{stroke:#EDF0FD;} + .d2-2491348673 .stroke-AA5{stroke:#F7F8FE;} + .d2-2491348673 .stroke-AB4{stroke:#EDF0FD;} + .d2-2491348673 .stroke-AB5{stroke:#F7F8FE;} + .d2-2491348673 .background-color-N1{background-color:#0A0F25;} + .d2-2491348673 .background-color-N2{background-color:#676C7E;} + .d2-2491348673 .background-color-N3{background-color:#9499AB;} + .d2-2491348673 .background-color-N4{background-color:#CFD2DD;} + .d2-2491348673 .background-color-N5{background-color:#DEE1EB;} + .d2-2491348673 .background-color-N6{background-color:#EEF1F8;} + .d2-2491348673 .background-color-N7{background-color:#FFFFFF;} + .d2-2491348673 .background-color-B1{background-color:#0D32B2;} + .d2-2491348673 .background-color-B2{background-color:#0D32B2;} + .d2-2491348673 .background-color-B3{background-color:#E3E9FD;} + .d2-2491348673 .background-color-B4{background-color:#E3E9FD;} + .d2-2491348673 .background-color-B5{background-color:#EDF0FD;} + .d2-2491348673 .background-color-B6{background-color:#F7F8FE;} + .d2-2491348673 .background-color-AA2{background-color:#4A6FF3;} + .d2-2491348673 .background-color-AA4{background-color:#EDF0FD;} + .d2-2491348673 .background-color-AA5{background-color:#F7F8FE;} + .d2-2491348673 .background-color-AB4{background-color:#EDF0FD;} + .d2-2491348673 .background-color-AB5{background-color:#F7F8FE;} + .d2-2491348673 .color-N1{color:#0A0F25;} + .d2-2491348673 .color-N2{color:#676C7E;} + .d2-2491348673 .color-N3{color:#9499AB;} + .d2-2491348673 .color-N4{color:#CFD2DD;} + .d2-2491348673 .color-N5{color:#DEE1EB;} + .d2-2491348673 .color-N6{color:#EEF1F8;} + .d2-2491348673 .color-N7{color:#FFFFFF;} + .d2-2491348673 .color-B1{color:#0D32B2;} + .d2-2491348673 .color-B2{color:#0D32B2;} + .d2-2491348673 .color-B3{color:#E3E9FD;} + .d2-2491348673 .color-B4{color:#E3E9FD;} + .d2-2491348673 .color-B5{color:#EDF0FD;} + .d2-2491348673 .color-B6{color:#F7F8FE;} + .d2-2491348673 .color-AA2{color:#4A6FF3;} + .d2-2491348673 .color-AA4{color:#EDF0FD;} + .d2-2491348673 .color-AA5{color:#F7F8FE;} + .d2-2491348673 .color-AB4{color:#EDF0FD;} + .d2-2491348673 .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}]]>Kubernetesopensvck8s-master1k8s-master2k8s-master3k8s-worker1k8s-worker2k8s-worker3VM1VM2 keycloakheptapodharborvault diff --git a/e2etests/testdata/regression/root-container/dagre/board.exp.json b/e2etests/testdata/regression/root-container/dagre/board.exp.json index 3110ea8620..be301b4261 100644 --- a/e2etests/testdata/regression/root-container/dagre/board.exp.json +++ b/e2etests/testdata/regression/root-container/dagre/board.exp.json @@ -356,6 +356,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 66.75, @@ -403,6 +404,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 145.25, @@ -450,6 +452,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 332.5, @@ -497,6 +500,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 411, diff --git a/e2etests/testdata/regression/root-container/dagre/sketch.exp.svg b/e2etests/testdata/regression/root-container/dagre/sketch.exp.svg index 781996b35f..44d40a74a5 100644 --- a/e2etests/testdata/regression/root-container/dagre/sketch.exp.svg +++ b/e2etests/testdata/regression/root-container/dagre/sketch.exp.svg @@ -1,16 +1,16 @@ -mainrootxyzxyz + .d2-3260597002 .fill-N1{fill:#0A0F25;} + .d2-3260597002 .fill-N2{fill:#676C7E;} + .d2-3260597002 .fill-N3{fill:#9499AB;} + .d2-3260597002 .fill-N4{fill:#CFD2DD;} + .d2-3260597002 .fill-N5{fill:#DEE1EB;} + .d2-3260597002 .fill-N6{fill:#EEF1F8;} + .d2-3260597002 .fill-N7{fill:#FFFFFF;} + .d2-3260597002 .fill-B1{fill:#0D32B2;} + .d2-3260597002 .fill-B2{fill:#0D32B2;} + .d2-3260597002 .fill-B3{fill:#E3E9FD;} + .d2-3260597002 .fill-B4{fill:#E3E9FD;} + .d2-3260597002 .fill-B5{fill:#EDF0FD;} + .d2-3260597002 .fill-B6{fill:#F7F8FE;} + .d2-3260597002 .fill-AA2{fill:#4A6FF3;} + .d2-3260597002 .fill-AA4{fill:#EDF0FD;} + .d2-3260597002 .fill-AA5{fill:#F7F8FE;} + .d2-3260597002 .fill-AB4{fill:#EDF0FD;} + .d2-3260597002 .fill-AB5{fill:#F7F8FE;} + .d2-3260597002 .stroke-N1{stroke:#0A0F25;} + .d2-3260597002 .stroke-N2{stroke:#676C7E;} + .d2-3260597002 .stroke-N3{stroke:#9499AB;} + .d2-3260597002 .stroke-N4{stroke:#CFD2DD;} + .d2-3260597002 .stroke-N5{stroke:#DEE1EB;} + .d2-3260597002 .stroke-N6{stroke:#EEF1F8;} + .d2-3260597002 .stroke-N7{stroke:#FFFFFF;} + .d2-3260597002 .stroke-B1{stroke:#0D32B2;} + .d2-3260597002 .stroke-B2{stroke:#0D32B2;} + .d2-3260597002 .stroke-B3{stroke:#E3E9FD;} + .d2-3260597002 .stroke-B4{stroke:#E3E9FD;} + .d2-3260597002 .stroke-B5{stroke:#EDF0FD;} + .d2-3260597002 .stroke-B6{stroke:#F7F8FE;} + .d2-3260597002 .stroke-AA2{stroke:#4A6FF3;} + .d2-3260597002 .stroke-AA4{stroke:#EDF0FD;} + .d2-3260597002 .stroke-AA5{stroke:#F7F8FE;} + .d2-3260597002 .stroke-AB4{stroke:#EDF0FD;} + .d2-3260597002 .stroke-AB5{stroke:#F7F8FE;} + .d2-3260597002 .background-color-N1{background-color:#0A0F25;} + .d2-3260597002 .background-color-N2{background-color:#676C7E;} + .d2-3260597002 .background-color-N3{background-color:#9499AB;} + .d2-3260597002 .background-color-N4{background-color:#CFD2DD;} + .d2-3260597002 .background-color-N5{background-color:#DEE1EB;} + .d2-3260597002 .background-color-N6{background-color:#EEF1F8;} + .d2-3260597002 .background-color-N7{background-color:#FFFFFF;} + .d2-3260597002 .background-color-B1{background-color:#0D32B2;} + .d2-3260597002 .background-color-B2{background-color:#0D32B2;} + .d2-3260597002 .background-color-B3{background-color:#E3E9FD;} + .d2-3260597002 .background-color-B4{background-color:#E3E9FD;} + .d2-3260597002 .background-color-B5{background-color:#EDF0FD;} + .d2-3260597002 .background-color-B6{background-color:#F7F8FE;} + .d2-3260597002 .background-color-AA2{background-color:#4A6FF3;} + .d2-3260597002 .background-color-AA4{background-color:#EDF0FD;} + .d2-3260597002 .background-color-AA5{background-color:#F7F8FE;} + .d2-3260597002 .background-color-AB4{background-color:#EDF0FD;} + .d2-3260597002 .background-color-AB5{background-color:#F7F8FE;} + .d2-3260597002 .color-N1{color:#0A0F25;} + .d2-3260597002 .color-N2{color:#676C7E;} + .d2-3260597002 .color-N3{color:#9499AB;} + .d2-3260597002 .color-N4{color:#CFD2DD;} + .d2-3260597002 .color-N5{color:#DEE1EB;} + .d2-3260597002 .color-N6{color:#EEF1F8;} + .d2-3260597002 .color-N7{color:#FFFFFF;} + .d2-3260597002 .color-B1{color:#0D32B2;} + .d2-3260597002 .color-B2{color:#0D32B2;} + .d2-3260597002 .color-B3{color:#E3E9FD;} + .d2-3260597002 .color-B4{color:#E3E9FD;} + .d2-3260597002 .color-B5{color:#EDF0FD;} + .d2-3260597002 .color-B6{color:#F7F8FE;} + .d2-3260597002 .color-AA2{color:#4A6FF3;} + .d2-3260597002 .color-AA4{color:#EDF0FD;} + .d2-3260597002 .color-AA5{color:#F7F8FE;} + .d2-3260597002 .color-AB4{color:#EDF0FD;} + .d2-3260597002 .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}]]>mainrootxyzxyz diff --git a/e2etests/testdata/regression/root-container/elk/board.exp.json b/e2etests/testdata/regression/root-container/elk/board.exp.json index 0e8f8e2c98..8dedbeaa97 100644 --- a/e2etests/testdata/regression/root-container/elk/board.exp.json +++ b/e2etests/testdata/regression/root-container/elk/board.exp.json @@ -356,6 +356,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 89, @@ -394,6 +395,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 89, @@ -432,6 +434,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 263, @@ -470,6 +473,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 263, diff --git a/e2etests/testdata/regression/root-container/elk/sketch.exp.svg b/e2etests/testdata/regression/root-container/elk/sketch.exp.svg index d337c1ca1f..7b4b009316 100644 --- a/e2etests/testdata/regression/root-container/elk/sketch.exp.svg +++ b/e2etests/testdata/regression/root-container/elk/sketch.exp.svg @@ -1,16 +1,16 @@ -mainrootxyzxyz + .d2-1085390292 .fill-N1{fill:#0A0F25;} + .d2-1085390292 .fill-N2{fill:#676C7E;} + .d2-1085390292 .fill-N3{fill:#9499AB;} + .d2-1085390292 .fill-N4{fill:#CFD2DD;} + .d2-1085390292 .fill-N5{fill:#DEE1EB;} + .d2-1085390292 .fill-N6{fill:#EEF1F8;} + .d2-1085390292 .fill-N7{fill:#FFFFFF;} + .d2-1085390292 .fill-B1{fill:#0D32B2;} + .d2-1085390292 .fill-B2{fill:#0D32B2;} + .d2-1085390292 .fill-B3{fill:#E3E9FD;} + .d2-1085390292 .fill-B4{fill:#E3E9FD;} + .d2-1085390292 .fill-B5{fill:#EDF0FD;} + .d2-1085390292 .fill-B6{fill:#F7F8FE;} + .d2-1085390292 .fill-AA2{fill:#4A6FF3;} + .d2-1085390292 .fill-AA4{fill:#EDF0FD;} + .d2-1085390292 .fill-AA5{fill:#F7F8FE;} + .d2-1085390292 .fill-AB4{fill:#EDF0FD;} + .d2-1085390292 .fill-AB5{fill:#F7F8FE;} + .d2-1085390292 .stroke-N1{stroke:#0A0F25;} + .d2-1085390292 .stroke-N2{stroke:#676C7E;} + .d2-1085390292 .stroke-N3{stroke:#9499AB;} + .d2-1085390292 .stroke-N4{stroke:#CFD2DD;} + .d2-1085390292 .stroke-N5{stroke:#DEE1EB;} + .d2-1085390292 .stroke-N6{stroke:#EEF1F8;} + .d2-1085390292 .stroke-N7{stroke:#FFFFFF;} + .d2-1085390292 .stroke-B1{stroke:#0D32B2;} + .d2-1085390292 .stroke-B2{stroke:#0D32B2;} + .d2-1085390292 .stroke-B3{stroke:#E3E9FD;} + .d2-1085390292 .stroke-B4{stroke:#E3E9FD;} + .d2-1085390292 .stroke-B5{stroke:#EDF0FD;} + .d2-1085390292 .stroke-B6{stroke:#F7F8FE;} + .d2-1085390292 .stroke-AA2{stroke:#4A6FF3;} + .d2-1085390292 .stroke-AA4{stroke:#EDF0FD;} + .d2-1085390292 .stroke-AA5{stroke:#F7F8FE;} + .d2-1085390292 .stroke-AB4{stroke:#EDF0FD;} + .d2-1085390292 .stroke-AB5{stroke:#F7F8FE;} + .d2-1085390292 .background-color-N1{background-color:#0A0F25;} + .d2-1085390292 .background-color-N2{background-color:#676C7E;} + .d2-1085390292 .background-color-N3{background-color:#9499AB;} + .d2-1085390292 .background-color-N4{background-color:#CFD2DD;} + .d2-1085390292 .background-color-N5{background-color:#DEE1EB;} + .d2-1085390292 .background-color-N6{background-color:#EEF1F8;} + .d2-1085390292 .background-color-N7{background-color:#FFFFFF;} + .d2-1085390292 .background-color-B1{background-color:#0D32B2;} + .d2-1085390292 .background-color-B2{background-color:#0D32B2;} + .d2-1085390292 .background-color-B3{background-color:#E3E9FD;} + .d2-1085390292 .background-color-B4{background-color:#E3E9FD;} + .d2-1085390292 .background-color-B5{background-color:#EDF0FD;} + .d2-1085390292 .background-color-B6{background-color:#F7F8FE;} + .d2-1085390292 .background-color-AA2{background-color:#4A6FF3;} + .d2-1085390292 .background-color-AA4{background-color:#EDF0FD;} + .d2-1085390292 .background-color-AA5{background-color:#F7F8FE;} + .d2-1085390292 .background-color-AB4{background-color:#EDF0FD;} + .d2-1085390292 .background-color-AB5{background-color:#F7F8FE;} + .d2-1085390292 .color-N1{color:#0A0F25;} + .d2-1085390292 .color-N2{color:#676C7E;} + .d2-1085390292 .color-N3{color:#9499AB;} + .d2-1085390292 .color-N4{color:#CFD2DD;} + .d2-1085390292 .color-N5{color:#DEE1EB;} + .d2-1085390292 .color-N6{color:#EEF1F8;} + .d2-1085390292 .color-N7{color:#FFFFFF;} + .d2-1085390292 .color-B1{color:#0D32B2;} + .d2-1085390292 .color-B2{color:#0D32B2;} + .d2-1085390292 .color-B3{color:#E3E9FD;} + .d2-1085390292 .color-B4{color:#E3E9FD;} + .d2-1085390292 .color-B5{color:#EDF0FD;} + .d2-1085390292 .color-B6{color:#F7F8FE;} + .d2-1085390292 .color-AA2{color:#4A6FF3;} + .d2-1085390292 .color-AA4{color:#EDF0FD;} + .d2-1085390292 .color-AA5{color:#F7F8FE;} + .d2-1085390292 .color-AB4{color:#EDF0FD;} + .d2-1085390292 .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}]]>mainrootxyzxyz diff --git a/e2etests/testdata/regression/sequence-note-escape-group/dagre/board.exp.json b/e2etests/testdata/regression/sequence-note-escape-group/dagre/board.exp.json index cca6bc0228..0dbde65b3f 100644 --- a/e2etests/testdata/regression/sequence-note-escape-group/dagre/board.exp.json +++ b/e2etests/testdata/regression/sequence-note-escape-group/dagre/board.exp.json @@ -235,6 +235,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 62, @@ -273,6 +274,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 62, @@ -311,6 +313,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 247, diff --git a/e2etests/testdata/regression/sequence-note-escape-group/dagre/sketch.exp.svg b/e2etests/testdata/regression/sequence-note-escape-group/dagre/sketch.exp.svg index e405fb29b1..ff3404ca03 100644 --- a/e2etests/testdata/regression/sequence-note-escape-group/dagre/sketch.exp.svg +++ b/e2etests/testdata/regression/sequence-note-escape-group/dagre/sketch.exp.svg @@ -1,9 +1,9 @@ -ab04:20,11:20loop through each table start_time = datetime.datetime.now + .d2-4180404608 .fill-N1{fill:#0A0F25;} + .d2-4180404608 .fill-N2{fill:#676C7E;} + .d2-4180404608 .fill-N3{fill:#9499AB;} + .d2-4180404608 .fill-N4{fill:#CFD2DD;} + .d2-4180404608 .fill-N5{fill:#DEE1EB;} + .d2-4180404608 .fill-N6{fill:#EEF1F8;} + .d2-4180404608 .fill-N7{fill:#FFFFFF;} + .d2-4180404608 .fill-B1{fill:#0D32B2;} + .d2-4180404608 .fill-B2{fill:#0D32B2;} + .d2-4180404608 .fill-B3{fill:#E3E9FD;} + .d2-4180404608 .fill-B4{fill:#E3E9FD;} + .d2-4180404608 .fill-B5{fill:#EDF0FD;} + .d2-4180404608 .fill-B6{fill:#F7F8FE;} + .d2-4180404608 .fill-AA2{fill:#4A6FF3;} + .d2-4180404608 .fill-AA4{fill:#EDF0FD;} + .d2-4180404608 .fill-AA5{fill:#F7F8FE;} + .d2-4180404608 .fill-AB4{fill:#EDF0FD;} + .d2-4180404608 .fill-AB5{fill:#F7F8FE;} + .d2-4180404608 .stroke-N1{stroke:#0A0F25;} + .d2-4180404608 .stroke-N2{stroke:#676C7E;} + .d2-4180404608 .stroke-N3{stroke:#9499AB;} + .d2-4180404608 .stroke-N4{stroke:#CFD2DD;} + .d2-4180404608 .stroke-N5{stroke:#DEE1EB;} + .d2-4180404608 .stroke-N6{stroke:#EEF1F8;} + .d2-4180404608 .stroke-N7{stroke:#FFFFFF;} + .d2-4180404608 .stroke-B1{stroke:#0D32B2;} + .d2-4180404608 .stroke-B2{stroke:#0D32B2;} + .d2-4180404608 .stroke-B3{stroke:#E3E9FD;} + .d2-4180404608 .stroke-B4{stroke:#E3E9FD;} + .d2-4180404608 .stroke-B5{stroke:#EDF0FD;} + .d2-4180404608 .stroke-B6{stroke:#F7F8FE;} + .d2-4180404608 .stroke-AA2{stroke:#4A6FF3;} + .d2-4180404608 .stroke-AA4{stroke:#EDF0FD;} + .d2-4180404608 .stroke-AA5{stroke:#F7F8FE;} + .d2-4180404608 .stroke-AB4{stroke:#EDF0FD;} + .d2-4180404608 .stroke-AB5{stroke:#F7F8FE;} + .d2-4180404608 .background-color-N1{background-color:#0A0F25;} + .d2-4180404608 .background-color-N2{background-color:#676C7E;} + .d2-4180404608 .background-color-N3{background-color:#9499AB;} + .d2-4180404608 .background-color-N4{background-color:#CFD2DD;} + .d2-4180404608 .background-color-N5{background-color:#DEE1EB;} + .d2-4180404608 .background-color-N6{background-color:#EEF1F8;} + .d2-4180404608 .background-color-N7{background-color:#FFFFFF;} + .d2-4180404608 .background-color-B1{background-color:#0D32B2;} + .d2-4180404608 .background-color-B2{background-color:#0D32B2;} + .d2-4180404608 .background-color-B3{background-color:#E3E9FD;} + .d2-4180404608 .background-color-B4{background-color:#E3E9FD;} + .d2-4180404608 .background-color-B5{background-color:#EDF0FD;} + .d2-4180404608 .background-color-B6{background-color:#F7F8FE;} + .d2-4180404608 .background-color-AA2{background-color:#4A6FF3;} + .d2-4180404608 .background-color-AA4{background-color:#EDF0FD;} + .d2-4180404608 .background-color-AA5{background-color:#F7F8FE;} + .d2-4180404608 .background-color-AB4{background-color:#EDF0FD;} + .d2-4180404608 .background-color-AB5{background-color:#F7F8FE;} + .d2-4180404608 .color-N1{color:#0A0F25;} + .d2-4180404608 .color-N2{color:#676C7E;} + .d2-4180404608 .color-N3{color:#9499AB;} + .d2-4180404608 .color-N4{color:#CFD2DD;} + .d2-4180404608 .color-N5{color:#DEE1EB;} + .d2-4180404608 .color-N6{color:#EEF1F8;} + .d2-4180404608 .color-N7{color:#FFFFFF;} + .d2-4180404608 .color-B1{color:#0D32B2;} + .d2-4180404608 .color-B2{color:#0D32B2;} + .d2-4180404608 .color-B3{color:#E3E9FD;} + .d2-4180404608 .color-B4{color:#E3E9FD;} + .d2-4180404608 .color-B5{color:#EDF0FD;} + .d2-4180404608 .color-B6{color:#F7F8FE;} + .d2-4180404608 .color-AA2{color:#4A6FF3;} + .d2-4180404608 .color-AA4{color:#EDF0FD;} + .d2-4180404608 .color-AA5{color:#F7F8FE;} + .d2-4180404608 .color-AB4{color:#EDF0FD;} + .d2-4180404608 .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}]]>ab04:20,11:20loop through each table start_time = datetime.datetime.now diff --git a/e2etests/testdata/regression/sequence-note-escape-group/elk/board.exp.json b/e2etests/testdata/regression/sequence-note-escape-group/elk/board.exp.json index cca6bc0228..0dbde65b3f 100644 --- a/e2etests/testdata/regression/sequence-note-escape-group/elk/board.exp.json +++ b/e2etests/testdata/regression/sequence-note-escape-group/elk/board.exp.json @@ -235,6 +235,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 62, @@ -273,6 +274,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 62, @@ -311,6 +313,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 247, diff --git a/e2etests/testdata/regression/sequence-note-escape-group/elk/sketch.exp.svg b/e2etests/testdata/regression/sequence-note-escape-group/elk/sketch.exp.svg index e405fb29b1..ff3404ca03 100644 --- a/e2etests/testdata/regression/sequence-note-escape-group/elk/sketch.exp.svg +++ b/e2etests/testdata/regression/sequence-note-escape-group/elk/sketch.exp.svg @@ -1,9 +1,9 @@ -ab04:20,11:20loop through each table start_time = datetime.datetime.now + .d2-4180404608 .fill-N1{fill:#0A0F25;} + .d2-4180404608 .fill-N2{fill:#676C7E;} + .d2-4180404608 .fill-N3{fill:#9499AB;} + .d2-4180404608 .fill-N4{fill:#CFD2DD;} + .d2-4180404608 .fill-N5{fill:#DEE1EB;} + .d2-4180404608 .fill-N6{fill:#EEF1F8;} + .d2-4180404608 .fill-N7{fill:#FFFFFF;} + .d2-4180404608 .fill-B1{fill:#0D32B2;} + .d2-4180404608 .fill-B2{fill:#0D32B2;} + .d2-4180404608 .fill-B3{fill:#E3E9FD;} + .d2-4180404608 .fill-B4{fill:#E3E9FD;} + .d2-4180404608 .fill-B5{fill:#EDF0FD;} + .d2-4180404608 .fill-B6{fill:#F7F8FE;} + .d2-4180404608 .fill-AA2{fill:#4A6FF3;} + .d2-4180404608 .fill-AA4{fill:#EDF0FD;} + .d2-4180404608 .fill-AA5{fill:#F7F8FE;} + .d2-4180404608 .fill-AB4{fill:#EDF0FD;} + .d2-4180404608 .fill-AB5{fill:#F7F8FE;} + .d2-4180404608 .stroke-N1{stroke:#0A0F25;} + .d2-4180404608 .stroke-N2{stroke:#676C7E;} + .d2-4180404608 .stroke-N3{stroke:#9499AB;} + .d2-4180404608 .stroke-N4{stroke:#CFD2DD;} + .d2-4180404608 .stroke-N5{stroke:#DEE1EB;} + .d2-4180404608 .stroke-N6{stroke:#EEF1F8;} + .d2-4180404608 .stroke-N7{stroke:#FFFFFF;} + .d2-4180404608 .stroke-B1{stroke:#0D32B2;} + .d2-4180404608 .stroke-B2{stroke:#0D32B2;} + .d2-4180404608 .stroke-B3{stroke:#E3E9FD;} + .d2-4180404608 .stroke-B4{stroke:#E3E9FD;} + .d2-4180404608 .stroke-B5{stroke:#EDF0FD;} + .d2-4180404608 .stroke-B6{stroke:#F7F8FE;} + .d2-4180404608 .stroke-AA2{stroke:#4A6FF3;} + .d2-4180404608 .stroke-AA4{stroke:#EDF0FD;} + .d2-4180404608 .stroke-AA5{stroke:#F7F8FE;} + .d2-4180404608 .stroke-AB4{stroke:#EDF0FD;} + .d2-4180404608 .stroke-AB5{stroke:#F7F8FE;} + .d2-4180404608 .background-color-N1{background-color:#0A0F25;} + .d2-4180404608 .background-color-N2{background-color:#676C7E;} + .d2-4180404608 .background-color-N3{background-color:#9499AB;} + .d2-4180404608 .background-color-N4{background-color:#CFD2DD;} + .d2-4180404608 .background-color-N5{background-color:#DEE1EB;} + .d2-4180404608 .background-color-N6{background-color:#EEF1F8;} + .d2-4180404608 .background-color-N7{background-color:#FFFFFF;} + .d2-4180404608 .background-color-B1{background-color:#0D32B2;} + .d2-4180404608 .background-color-B2{background-color:#0D32B2;} + .d2-4180404608 .background-color-B3{background-color:#E3E9FD;} + .d2-4180404608 .background-color-B4{background-color:#E3E9FD;} + .d2-4180404608 .background-color-B5{background-color:#EDF0FD;} + .d2-4180404608 .background-color-B6{background-color:#F7F8FE;} + .d2-4180404608 .background-color-AA2{background-color:#4A6FF3;} + .d2-4180404608 .background-color-AA4{background-color:#EDF0FD;} + .d2-4180404608 .background-color-AA5{background-color:#F7F8FE;} + .d2-4180404608 .background-color-AB4{background-color:#EDF0FD;} + .d2-4180404608 .background-color-AB5{background-color:#F7F8FE;} + .d2-4180404608 .color-N1{color:#0A0F25;} + .d2-4180404608 .color-N2{color:#676C7E;} + .d2-4180404608 .color-N3{color:#9499AB;} + .d2-4180404608 .color-N4{color:#CFD2DD;} + .d2-4180404608 .color-N5{color:#DEE1EB;} + .d2-4180404608 .color-N6{color:#EEF1F8;} + .d2-4180404608 .color-N7{color:#FFFFFF;} + .d2-4180404608 .color-B1{color:#0D32B2;} + .d2-4180404608 .color-B2{color:#0D32B2;} + .d2-4180404608 .color-B3{color:#E3E9FD;} + .d2-4180404608 .color-B4{color:#E3E9FD;} + .d2-4180404608 .color-B5{color:#EDF0FD;} + .d2-4180404608 .color-B6{color:#F7F8FE;} + .d2-4180404608 .color-AA2{color:#4A6FF3;} + .d2-4180404608 .color-AA4{color:#EDF0FD;} + .d2-4180404608 .color-AA5{color:#F7F8FE;} + .d2-4180404608 .color-AB4{color:#EDF0FD;} + .d2-4180404608 .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}]]>ab04:20,11:20loop through each table start_time = datetime.datetime.now diff --git a/e2etests/testdata/regression/sequence_diagram_name_crash/dagre/board.exp.json b/e2etests/testdata/regression/sequence_diagram_name_crash/dagre/board.exp.json index 10505fd6d4..3487e538b1 100644 --- a/e2etests/testdata/regression/sequence_diagram_name_crash/dagre/board.exp.json +++ b/e2etests/testdata/regression/sequence_diagram_name_crash/dagre/board.exp.json @@ -274,6 +274,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 62, @@ -312,6 +313,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 62, @@ -350,6 +352,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 137, @@ -397,6 +400,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 62, @@ -435,6 +439,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 212, @@ -473,6 +478,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 62, @@ -511,6 +517,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 212, diff --git a/e2etests/testdata/regression/sequence_diagram_name_crash/dagre/sketch.exp.svg b/e2etests/testdata/regression/sequence_diagram_name_crash/dagre/sketch.exp.svg index 1447b8f8e3..7f057014bb 100644 --- a/e2etests/testdata/regression/sequence_diagram_name_crash/dagre/sketch.exp.svg +++ b/e2etests/testdata/regression/sequence_diagram_name_crash/dagre/sketch.exp.svg @@ -1,9 +1,9 @@ -foofoobarabcd + .d2-645264819 .fill-N1{fill:#0A0F25;} + .d2-645264819 .fill-N2{fill:#676C7E;} + .d2-645264819 .fill-N3{fill:#9499AB;} + .d2-645264819 .fill-N4{fill:#CFD2DD;} + .d2-645264819 .fill-N5{fill:#DEE1EB;} + .d2-645264819 .fill-N6{fill:#EEF1F8;} + .d2-645264819 .fill-N7{fill:#FFFFFF;} + .d2-645264819 .fill-B1{fill:#0D32B2;} + .d2-645264819 .fill-B2{fill:#0D32B2;} + .d2-645264819 .fill-B3{fill:#E3E9FD;} + .d2-645264819 .fill-B4{fill:#E3E9FD;} + .d2-645264819 .fill-B5{fill:#EDF0FD;} + .d2-645264819 .fill-B6{fill:#F7F8FE;} + .d2-645264819 .fill-AA2{fill:#4A6FF3;} + .d2-645264819 .fill-AA4{fill:#EDF0FD;} + .d2-645264819 .fill-AA5{fill:#F7F8FE;} + .d2-645264819 .fill-AB4{fill:#EDF0FD;} + .d2-645264819 .fill-AB5{fill:#F7F8FE;} + .d2-645264819 .stroke-N1{stroke:#0A0F25;} + .d2-645264819 .stroke-N2{stroke:#676C7E;} + .d2-645264819 .stroke-N3{stroke:#9499AB;} + .d2-645264819 .stroke-N4{stroke:#CFD2DD;} + .d2-645264819 .stroke-N5{stroke:#DEE1EB;} + .d2-645264819 .stroke-N6{stroke:#EEF1F8;} + .d2-645264819 .stroke-N7{stroke:#FFFFFF;} + .d2-645264819 .stroke-B1{stroke:#0D32B2;} + .d2-645264819 .stroke-B2{stroke:#0D32B2;} + .d2-645264819 .stroke-B3{stroke:#E3E9FD;} + .d2-645264819 .stroke-B4{stroke:#E3E9FD;} + .d2-645264819 .stroke-B5{stroke:#EDF0FD;} + .d2-645264819 .stroke-B6{stroke:#F7F8FE;} + .d2-645264819 .stroke-AA2{stroke:#4A6FF3;} + .d2-645264819 .stroke-AA4{stroke:#EDF0FD;} + .d2-645264819 .stroke-AA5{stroke:#F7F8FE;} + .d2-645264819 .stroke-AB4{stroke:#EDF0FD;} + .d2-645264819 .stroke-AB5{stroke:#F7F8FE;} + .d2-645264819 .background-color-N1{background-color:#0A0F25;} + .d2-645264819 .background-color-N2{background-color:#676C7E;} + .d2-645264819 .background-color-N3{background-color:#9499AB;} + .d2-645264819 .background-color-N4{background-color:#CFD2DD;} + .d2-645264819 .background-color-N5{background-color:#DEE1EB;} + .d2-645264819 .background-color-N6{background-color:#EEF1F8;} + .d2-645264819 .background-color-N7{background-color:#FFFFFF;} + .d2-645264819 .background-color-B1{background-color:#0D32B2;} + .d2-645264819 .background-color-B2{background-color:#0D32B2;} + .d2-645264819 .background-color-B3{background-color:#E3E9FD;} + .d2-645264819 .background-color-B4{background-color:#E3E9FD;} + .d2-645264819 .background-color-B5{background-color:#EDF0FD;} + .d2-645264819 .background-color-B6{background-color:#F7F8FE;} + .d2-645264819 .background-color-AA2{background-color:#4A6FF3;} + .d2-645264819 .background-color-AA4{background-color:#EDF0FD;} + .d2-645264819 .background-color-AA5{background-color:#F7F8FE;} + .d2-645264819 .background-color-AB4{background-color:#EDF0FD;} + .d2-645264819 .background-color-AB5{background-color:#F7F8FE;} + .d2-645264819 .color-N1{color:#0A0F25;} + .d2-645264819 .color-N2{color:#676C7E;} + .d2-645264819 .color-N3{color:#9499AB;} + .d2-645264819 .color-N4{color:#CFD2DD;} + .d2-645264819 .color-N5{color:#DEE1EB;} + .d2-645264819 .color-N6{color:#EEF1F8;} + .d2-645264819 .color-N7{color:#FFFFFF;} + .d2-645264819 .color-B1{color:#0D32B2;} + .d2-645264819 .color-B2{color:#0D32B2;} + .d2-645264819 .color-B3{color:#E3E9FD;} + .d2-645264819 .color-B4{color:#E3E9FD;} + .d2-645264819 .color-B5{color:#EDF0FD;} + .d2-645264819 .color-B6{color:#F7F8FE;} + .d2-645264819 .color-AA2{color:#4A6FF3;} + .d2-645264819 .color-AA4{color:#EDF0FD;} + .d2-645264819 .color-AA5{color:#F7F8FE;} + .d2-645264819 .color-AB4{color:#EDF0FD;} + .d2-645264819 .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}]]>foofoobarabcd diff --git a/e2etests/testdata/regression/sequence_diagram_name_crash/elk/board.exp.json b/e2etests/testdata/regression/sequence_diagram_name_crash/elk/board.exp.json index 6ebbf66cb2..3d57865635 100644 --- a/e2etests/testdata/regression/sequence_diagram_name_crash/elk/board.exp.json +++ b/e2etests/testdata/regression/sequence_diagram_name_crash/elk/board.exp.json @@ -274,6 +274,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 74, @@ -312,6 +313,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 74, @@ -350,6 +352,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 149, @@ -388,6 +391,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 74, @@ -426,6 +430,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 224, @@ -464,6 +469,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 74, @@ -502,6 +508,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 224, diff --git a/e2etests/testdata/regression/sequence_diagram_name_crash/elk/sketch.exp.svg b/e2etests/testdata/regression/sequence_diagram_name_crash/elk/sketch.exp.svg index 5ebffd52ec..e14ec17c94 100644 --- a/e2etests/testdata/regression/sequence_diagram_name_crash/elk/sketch.exp.svg +++ b/e2etests/testdata/regression/sequence_diagram_name_crash/elk/sketch.exp.svg @@ -1,9 +1,9 @@ -foofoobarabcd + .d2-3754475100 .fill-N1{fill:#0A0F25;} + .d2-3754475100 .fill-N2{fill:#676C7E;} + .d2-3754475100 .fill-N3{fill:#9499AB;} + .d2-3754475100 .fill-N4{fill:#CFD2DD;} + .d2-3754475100 .fill-N5{fill:#DEE1EB;} + .d2-3754475100 .fill-N6{fill:#EEF1F8;} + .d2-3754475100 .fill-N7{fill:#FFFFFF;} + .d2-3754475100 .fill-B1{fill:#0D32B2;} + .d2-3754475100 .fill-B2{fill:#0D32B2;} + .d2-3754475100 .fill-B3{fill:#E3E9FD;} + .d2-3754475100 .fill-B4{fill:#E3E9FD;} + .d2-3754475100 .fill-B5{fill:#EDF0FD;} + .d2-3754475100 .fill-B6{fill:#F7F8FE;} + .d2-3754475100 .fill-AA2{fill:#4A6FF3;} + .d2-3754475100 .fill-AA4{fill:#EDF0FD;} + .d2-3754475100 .fill-AA5{fill:#F7F8FE;} + .d2-3754475100 .fill-AB4{fill:#EDF0FD;} + .d2-3754475100 .fill-AB5{fill:#F7F8FE;} + .d2-3754475100 .stroke-N1{stroke:#0A0F25;} + .d2-3754475100 .stroke-N2{stroke:#676C7E;} + .d2-3754475100 .stroke-N3{stroke:#9499AB;} + .d2-3754475100 .stroke-N4{stroke:#CFD2DD;} + .d2-3754475100 .stroke-N5{stroke:#DEE1EB;} + .d2-3754475100 .stroke-N6{stroke:#EEF1F8;} + .d2-3754475100 .stroke-N7{stroke:#FFFFFF;} + .d2-3754475100 .stroke-B1{stroke:#0D32B2;} + .d2-3754475100 .stroke-B2{stroke:#0D32B2;} + .d2-3754475100 .stroke-B3{stroke:#E3E9FD;} + .d2-3754475100 .stroke-B4{stroke:#E3E9FD;} + .d2-3754475100 .stroke-B5{stroke:#EDF0FD;} + .d2-3754475100 .stroke-B6{stroke:#F7F8FE;} + .d2-3754475100 .stroke-AA2{stroke:#4A6FF3;} + .d2-3754475100 .stroke-AA4{stroke:#EDF0FD;} + .d2-3754475100 .stroke-AA5{stroke:#F7F8FE;} + .d2-3754475100 .stroke-AB4{stroke:#EDF0FD;} + .d2-3754475100 .stroke-AB5{stroke:#F7F8FE;} + .d2-3754475100 .background-color-N1{background-color:#0A0F25;} + .d2-3754475100 .background-color-N2{background-color:#676C7E;} + .d2-3754475100 .background-color-N3{background-color:#9499AB;} + .d2-3754475100 .background-color-N4{background-color:#CFD2DD;} + .d2-3754475100 .background-color-N5{background-color:#DEE1EB;} + .d2-3754475100 .background-color-N6{background-color:#EEF1F8;} + .d2-3754475100 .background-color-N7{background-color:#FFFFFF;} + .d2-3754475100 .background-color-B1{background-color:#0D32B2;} + .d2-3754475100 .background-color-B2{background-color:#0D32B2;} + .d2-3754475100 .background-color-B3{background-color:#E3E9FD;} + .d2-3754475100 .background-color-B4{background-color:#E3E9FD;} + .d2-3754475100 .background-color-B5{background-color:#EDF0FD;} + .d2-3754475100 .background-color-B6{background-color:#F7F8FE;} + .d2-3754475100 .background-color-AA2{background-color:#4A6FF3;} + .d2-3754475100 .background-color-AA4{background-color:#EDF0FD;} + .d2-3754475100 .background-color-AA5{background-color:#F7F8FE;} + .d2-3754475100 .background-color-AB4{background-color:#EDF0FD;} + .d2-3754475100 .background-color-AB5{background-color:#F7F8FE;} + .d2-3754475100 .color-N1{color:#0A0F25;} + .d2-3754475100 .color-N2{color:#676C7E;} + .d2-3754475100 .color-N3{color:#9499AB;} + .d2-3754475100 .color-N4{color:#CFD2DD;} + .d2-3754475100 .color-N5{color:#DEE1EB;} + .d2-3754475100 .color-N6{color:#EEF1F8;} + .d2-3754475100 .color-N7{color:#FFFFFF;} + .d2-3754475100 .color-B1{color:#0D32B2;} + .d2-3754475100 .color-B2{color:#0D32B2;} + .d2-3754475100 .color-B3{color:#E3E9FD;} + .d2-3754475100 .color-B4{color:#E3E9FD;} + .d2-3754475100 .color-B5{color:#EDF0FD;} + .d2-3754475100 .color-B6{color:#F7F8FE;} + .d2-3754475100 .color-AA2{color:#4A6FF3;} + .d2-3754475100 .color-AA4{color:#EDF0FD;} + .d2-3754475100 .color-AA5{color:#F7F8FE;} + .d2-3754475100 .color-AB4{color:#EDF0FD;} + .d2-3754475100 .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}]]>foofoobarabcd diff --git a/e2etests/testdata/regression/sequence_diagram_no_message/dagre/board.exp.json b/e2etests/testdata/regression/sequence_diagram_no_message/dagre/board.exp.json index 5e45e7529b..3852b48ca7 100644 --- a/e2etests/testdata/regression/sequence_diagram_no_message/dagre/board.exp.json +++ b/e2etests/testdata/regression/sequence_diagram_no_message/dagre/board.exp.json @@ -110,6 +110,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 62, @@ -148,6 +149,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 212, diff --git a/e2etests/testdata/regression/sequence_diagram_no_message/dagre/sketch.exp.svg b/e2etests/testdata/regression/sequence_diagram_no_message/dagre/sketch.exp.svg index d4f0787a3f..91a1560c91 100644 --- a/e2etests/testdata/regression/sequence_diagram_no_message/dagre/sketch.exp.svg +++ b/e2etests/testdata/regression/sequence_diagram_no_message/dagre/sketch.exp.svg @@ -1,9 +1,9 @@ -AB + .d2-843416118 .fill-N1{fill:#0A0F25;} + .d2-843416118 .fill-N2{fill:#676C7E;} + .d2-843416118 .fill-N3{fill:#9499AB;} + .d2-843416118 .fill-N4{fill:#CFD2DD;} + .d2-843416118 .fill-N5{fill:#DEE1EB;} + .d2-843416118 .fill-N6{fill:#EEF1F8;} + .d2-843416118 .fill-N7{fill:#FFFFFF;} + .d2-843416118 .fill-B1{fill:#0D32B2;} + .d2-843416118 .fill-B2{fill:#0D32B2;} + .d2-843416118 .fill-B3{fill:#E3E9FD;} + .d2-843416118 .fill-B4{fill:#E3E9FD;} + .d2-843416118 .fill-B5{fill:#EDF0FD;} + .d2-843416118 .fill-B6{fill:#F7F8FE;} + .d2-843416118 .fill-AA2{fill:#4A6FF3;} + .d2-843416118 .fill-AA4{fill:#EDF0FD;} + .d2-843416118 .fill-AA5{fill:#F7F8FE;} + .d2-843416118 .fill-AB4{fill:#EDF0FD;} + .d2-843416118 .fill-AB5{fill:#F7F8FE;} + .d2-843416118 .stroke-N1{stroke:#0A0F25;} + .d2-843416118 .stroke-N2{stroke:#676C7E;} + .d2-843416118 .stroke-N3{stroke:#9499AB;} + .d2-843416118 .stroke-N4{stroke:#CFD2DD;} + .d2-843416118 .stroke-N5{stroke:#DEE1EB;} + .d2-843416118 .stroke-N6{stroke:#EEF1F8;} + .d2-843416118 .stroke-N7{stroke:#FFFFFF;} + .d2-843416118 .stroke-B1{stroke:#0D32B2;} + .d2-843416118 .stroke-B2{stroke:#0D32B2;} + .d2-843416118 .stroke-B3{stroke:#E3E9FD;} + .d2-843416118 .stroke-B4{stroke:#E3E9FD;} + .d2-843416118 .stroke-B5{stroke:#EDF0FD;} + .d2-843416118 .stroke-B6{stroke:#F7F8FE;} + .d2-843416118 .stroke-AA2{stroke:#4A6FF3;} + .d2-843416118 .stroke-AA4{stroke:#EDF0FD;} + .d2-843416118 .stroke-AA5{stroke:#F7F8FE;} + .d2-843416118 .stroke-AB4{stroke:#EDF0FD;} + .d2-843416118 .stroke-AB5{stroke:#F7F8FE;} + .d2-843416118 .background-color-N1{background-color:#0A0F25;} + .d2-843416118 .background-color-N2{background-color:#676C7E;} + .d2-843416118 .background-color-N3{background-color:#9499AB;} + .d2-843416118 .background-color-N4{background-color:#CFD2DD;} + .d2-843416118 .background-color-N5{background-color:#DEE1EB;} + .d2-843416118 .background-color-N6{background-color:#EEF1F8;} + .d2-843416118 .background-color-N7{background-color:#FFFFFF;} + .d2-843416118 .background-color-B1{background-color:#0D32B2;} + .d2-843416118 .background-color-B2{background-color:#0D32B2;} + .d2-843416118 .background-color-B3{background-color:#E3E9FD;} + .d2-843416118 .background-color-B4{background-color:#E3E9FD;} + .d2-843416118 .background-color-B5{background-color:#EDF0FD;} + .d2-843416118 .background-color-B6{background-color:#F7F8FE;} + .d2-843416118 .background-color-AA2{background-color:#4A6FF3;} + .d2-843416118 .background-color-AA4{background-color:#EDF0FD;} + .d2-843416118 .background-color-AA5{background-color:#F7F8FE;} + .d2-843416118 .background-color-AB4{background-color:#EDF0FD;} + .d2-843416118 .background-color-AB5{background-color:#F7F8FE;} + .d2-843416118 .color-N1{color:#0A0F25;} + .d2-843416118 .color-N2{color:#676C7E;} + .d2-843416118 .color-N3{color:#9499AB;} + .d2-843416118 .color-N4{color:#CFD2DD;} + .d2-843416118 .color-N5{color:#DEE1EB;} + .d2-843416118 .color-N6{color:#EEF1F8;} + .d2-843416118 .color-N7{color:#FFFFFF;} + .d2-843416118 .color-B1{color:#0D32B2;} + .d2-843416118 .color-B2{color:#0D32B2;} + .d2-843416118 .color-B3{color:#E3E9FD;} + .d2-843416118 .color-B4{color:#E3E9FD;} + .d2-843416118 .color-B5{color:#EDF0FD;} + .d2-843416118 .color-B6{color:#F7F8FE;} + .d2-843416118 .color-AA2{color:#4A6FF3;} + .d2-843416118 .color-AA4{color:#EDF0FD;} + .d2-843416118 .color-AA5{color:#F7F8FE;} + .d2-843416118 .color-AB4{color:#EDF0FD;} + .d2-843416118 .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}]]>AB diff --git a/e2etests/testdata/regression/sequence_diagram_no_message/elk/board.exp.json b/e2etests/testdata/regression/sequence_diagram_no_message/elk/board.exp.json index 5e45e7529b..3852b48ca7 100644 --- a/e2etests/testdata/regression/sequence_diagram_no_message/elk/board.exp.json +++ b/e2etests/testdata/regression/sequence_diagram_no_message/elk/board.exp.json @@ -110,6 +110,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 62, @@ -148,6 +149,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 212, diff --git a/e2etests/testdata/regression/sequence_diagram_no_message/elk/sketch.exp.svg b/e2etests/testdata/regression/sequence_diagram_no_message/elk/sketch.exp.svg index d4f0787a3f..91a1560c91 100644 --- a/e2etests/testdata/regression/sequence_diagram_no_message/elk/sketch.exp.svg +++ b/e2etests/testdata/regression/sequence_diagram_no_message/elk/sketch.exp.svg @@ -1,9 +1,9 @@ -AB + .d2-843416118 .fill-N1{fill:#0A0F25;} + .d2-843416118 .fill-N2{fill:#676C7E;} + .d2-843416118 .fill-N3{fill:#9499AB;} + .d2-843416118 .fill-N4{fill:#CFD2DD;} + .d2-843416118 .fill-N5{fill:#DEE1EB;} + .d2-843416118 .fill-N6{fill:#EEF1F8;} + .d2-843416118 .fill-N7{fill:#FFFFFF;} + .d2-843416118 .fill-B1{fill:#0D32B2;} + .d2-843416118 .fill-B2{fill:#0D32B2;} + .d2-843416118 .fill-B3{fill:#E3E9FD;} + .d2-843416118 .fill-B4{fill:#E3E9FD;} + .d2-843416118 .fill-B5{fill:#EDF0FD;} + .d2-843416118 .fill-B6{fill:#F7F8FE;} + .d2-843416118 .fill-AA2{fill:#4A6FF3;} + .d2-843416118 .fill-AA4{fill:#EDF0FD;} + .d2-843416118 .fill-AA5{fill:#F7F8FE;} + .d2-843416118 .fill-AB4{fill:#EDF0FD;} + .d2-843416118 .fill-AB5{fill:#F7F8FE;} + .d2-843416118 .stroke-N1{stroke:#0A0F25;} + .d2-843416118 .stroke-N2{stroke:#676C7E;} + .d2-843416118 .stroke-N3{stroke:#9499AB;} + .d2-843416118 .stroke-N4{stroke:#CFD2DD;} + .d2-843416118 .stroke-N5{stroke:#DEE1EB;} + .d2-843416118 .stroke-N6{stroke:#EEF1F8;} + .d2-843416118 .stroke-N7{stroke:#FFFFFF;} + .d2-843416118 .stroke-B1{stroke:#0D32B2;} + .d2-843416118 .stroke-B2{stroke:#0D32B2;} + .d2-843416118 .stroke-B3{stroke:#E3E9FD;} + .d2-843416118 .stroke-B4{stroke:#E3E9FD;} + .d2-843416118 .stroke-B5{stroke:#EDF0FD;} + .d2-843416118 .stroke-B6{stroke:#F7F8FE;} + .d2-843416118 .stroke-AA2{stroke:#4A6FF3;} + .d2-843416118 .stroke-AA4{stroke:#EDF0FD;} + .d2-843416118 .stroke-AA5{stroke:#F7F8FE;} + .d2-843416118 .stroke-AB4{stroke:#EDF0FD;} + .d2-843416118 .stroke-AB5{stroke:#F7F8FE;} + .d2-843416118 .background-color-N1{background-color:#0A0F25;} + .d2-843416118 .background-color-N2{background-color:#676C7E;} + .d2-843416118 .background-color-N3{background-color:#9499AB;} + .d2-843416118 .background-color-N4{background-color:#CFD2DD;} + .d2-843416118 .background-color-N5{background-color:#DEE1EB;} + .d2-843416118 .background-color-N6{background-color:#EEF1F8;} + .d2-843416118 .background-color-N7{background-color:#FFFFFF;} + .d2-843416118 .background-color-B1{background-color:#0D32B2;} + .d2-843416118 .background-color-B2{background-color:#0D32B2;} + .d2-843416118 .background-color-B3{background-color:#E3E9FD;} + .d2-843416118 .background-color-B4{background-color:#E3E9FD;} + .d2-843416118 .background-color-B5{background-color:#EDF0FD;} + .d2-843416118 .background-color-B6{background-color:#F7F8FE;} + .d2-843416118 .background-color-AA2{background-color:#4A6FF3;} + .d2-843416118 .background-color-AA4{background-color:#EDF0FD;} + .d2-843416118 .background-color-AA5{background-color:#F7F8FE;} + .d2-843416118 .background-color-AB4{background-color:#EDF0FD;} + .d2-843416118 .background-color-AB5{background-color:#F7F8FE;} + .d2-843416118 .color-N1{color:#0A0F25;} + .d2-843416118 .color-N2{color:#676C7E;} + .d2-843416118 .color-N3{color:#9499AB;} + .d2-843416118 .color-N4{color:#CFD2DD;} + .d2-843416118 .color-N5{color:#DEE1EB;} + .d2-843416118 .color-N6{color:#EEF1F8;} + .d2-843416118 .color-N7{color:#FFFFFF;} + .d2-843416118 .color-B1{color:#0D32B2;} + .d2-843416118 .color-B2{color:#0D32B2;} + .d2-843416118 .color-B3{color:#E3E9FD;} + .d2-843416118 .color-B4{color:#E3E9FD;} + .d2-843416118 .color-B5{color:#EDF0FD;} + .d2-843416118 .color-B6{color:#F7F8FE;} + .d2-843416118 .color-AA2{color:#4A6FF3;} + .d2-843416118 .color-AA4{color:#EDF0FD;} + .d2-843416118 .color-AA5{color:#F7F8FE;} + .d2-843416118 .color-AB4{color:#EDF0FD;} + .d2-843416118 .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}]]>AB diff --git a/e2etests/testdata/regression/sequence_diagram_self_edge_group_overlap/dagre/board.exp.json b/e2etests/testdata/regression/sequence_diagram_self_edge_group_overlap/dagre/board.exp.json index e14feb56f2..f16d8c2306 100644 --- a/e2etests/testdata/regression/sequence_diagram_self_edge_group_overlap/dagre/board.exp.json +++ b/e2etests/testdata/regression/sequence_diagram_self_edge_group_overlap/dagre/board.exp.json @@ -653,6 +653,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 62, @@ -699,6 +700,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 62, @@ -737,6 +739,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 62, @@ -783,6 +786,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 68, @@ -821,6 +825,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 212, @@ -867,6 +872,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 212, @@ -913,6 +919,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 212, @@ -951,6 +958,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 62, @@ -997,6 +1005,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 62, @@ -1043,6 +1052,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 62, @@ -1089,6 +1099,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 62, @@ -1135,6 +1146,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 62, @@ -1181,6 +1193,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 212, @@ -1219,6 +1232,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 362, @@ -1265,6 +1279,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 212, @@ -1303,6 +1318,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 362, @@ -1349,6 +1365,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 212, @@ -1387,6 +1404,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 62, @@ -1425,6 +1443,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 212, @@ -1463,6 +1482,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 362, diff --git a/e2etests/testdata/regression/sequence_diagram_self_edge_group_overlap/dagre/sketch.exp.svg b/e2etests/testdata/regression/sequence_diagram_self_edge_group_overlap/dagre/sketch.exp.svg index bb27108919..2864680eb6 100644 --- a/e2etests/testdata/regression/sequence_diagram_self_edge_group_overlap/dagre/sketch.exp.svg +++ b/e2etests/testdata/regression/sequence_diagram_self_edge_group_overlap/dagre/sketch.exp.svg @@ -1,9 +1,9 @@ -ABCgroup 1group 2group 3group 4group 5group 6group 7group 8group 9group 10group 11 + .d2-914740314 .fill-N1{fill:#0A0F25;} + .d2-914740314 .fill-N2{fill:#676C7E;} + .d2-914740314 .fill-N3{fill:#9499AB;} + .d2-914740314 .fill-N4{fill:#CFD2DD;} + .d2-914740314 .fill-N5{fill:#DEE1EB;} + .d2-914740314 .fill-N6{fill:#EEF1F8;} + .d2-914740314 .fill-N7{fill:#FFFFFF;} + .d2-914740314 .fill-B1{fill:#0D32B2;} + .d2-914740314 .fill-B2{fill:#0D32B2;} + .d2-914740314 .fill-B3{fill:#E3E9FD;} + .d2-914740314 .fill-B4{fill:#E3E9FD;} + .d2-914740314 .fill-B5{fill:#EDF0FD;} + .d2-914740314 .fill-B6{fill:#F7F8FE;} + .d2-914740314 .fill-AA2{fill:#4A6FF3;} + .d2-914740314 .fill-AA4{fill:#EDF0FD;} + .d2-914740314 .fill-AA5{fill:#F7F8FE;} + .d2-914740314 .fill-AB4{fill:#EDF0FD;} + .d2-914740314 .fill-AB5{fill:#F7F8FE;} + .d2-914740314 .stroke-N1{stroke:#0A0F25;} + .d2-914740314 .stroke-N2{stroke:#676C7E;} + .d2-914740314 .stroke-N3{stroke:#9499AB;} + .d2-914740314 .stroke-N4{stroke:#CFD2DD;} + .d2-914740314 .stroke-N5{stroke:#DEE1EB;} + .d2-914740314 .stroke-N6{stroke:#EEF1F8;} + .d2-914740314 .stroke-N7{stroke:#FFFFFF;} + .d2-914740314 .stroke-B1{stroke:#0D32B2;} + .d2-914740314 .stroke-B2{stroke:#0D32B2;} + .d2-914740314 .stroke-B3{stroke:#E3E9FD;} + .d2-914740314 .stroke-B4{stroke:#E3E9FD;} + .d2-914740314 .stroke-B5{stroke:#EDF0FD;} + .d2-914740314 .stroke-B6{stroke:#F7F8FE;} + .d2-914740314 .stroke-AA2{stroke:#4A6FF3;} + .d2-914740314 .stroke-AA4{stroke:#EDF0FD;} + .d2-914740314 .stroke-AA5{stroke:#F7F8FE;} + .d2-914740314 .stroke-AB4{stroke:#EDF0FD;} + .d2-914740314 .stroke-AB5{stroke:#F7F8FE;} + .d2-914740314 .background-color-N1{background-color:#0A0F25;} + .d2-914740314 .background-color-N2{background-color:#676C7E;} + .d2-914740314 .background-color-N3{background-color:#9499AB;} + .d2-914740314 .background-color-N4{background-color:#CFD2DD;} + .d2-914740314 .background-color-N5{background-color:#DEE1EB;} + .d2-914740314 .background-color-N6{background-color:#EEF1F8;} + .d2-914740314 .background-color-N7{background-color:#FFFFFF;} + .d2-914740314 .background-color-B1{background-color:#0D32B2;} + .d2-914740314 .background-color-B2{background-color:#0D32B2;} + .d2-914740314 .background-color-B3{background-color:#E3E9FD;} + .d2-914740314 .background-color-B4{background-color:#E3E9FD;} + .d2-914740314 .background-color-B5{background-color:#EDF0FD;} + .d2-914740314 .background-color-B6{background-color:#F7F8FE;} + .d2-914740314 .background-color-AA2{background-color:#4A6FF3;} + .d2-914740314 .background-color-AA4{background-color:#EDF0FD;} + .d2-914740314 .background-color-AA5{background-color:#F7F8FE;} + .d2-914740314 .background-color-AB4{background-color:#EDF0FD;} + .d2-914740314 .background-color-AB5{background-color:#F7F8FE;} + .d2-914740314 .color-N1{color:#0A0F25;} + .d2-914740314 .color-N2{color:#676C7E;} + .d2-914740314 .color-N3{color:#9499AB;} + .d2-914740314 .color-N4{color:#CFD2DD;} + .d2-914740314 .color-N5{color:#DEE1EB;} + .d2-914740314 .color-N6{color:#EEF1F8;} + .d2-914740314 .color-N7{color:#FFFFFF;} + .d2-914740314 .color-B1{color:#0D32B2;} + .d2-914740314 .color-B2{color:#0D32B2;} + .d2-914740314 .color-B3{color:#E3E9FD;} + .d2-914740314 .color-B4{color:#E3E9FD;} + .d2-914740314 .color-B5{color:#EDF0FD;} + .d2-914740314 .color-B6{color:#F7F8FE;} + .d2-914740314 .color-AA2{color:#4A6FF3;} + .d2-914740314 .color-AA4{color:#EDF0FD;} + .d2-914740314 .color-AA5{color:#F7F8FE;} + .d2-914740314 .color-AB4{color:#EDF0FD;} + .d2-914740314 .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}]]>ABCgroup 1group 2group 3group 4group 5group 6group 7group 8group 9group 10group 11 diff --git a/e2etests/testdata/regression/sequence_diagram_self_edge_group_overlap/elk/board.exp.json b/e2etests/testdata/regression/sequence_diagram_self_edge_group_overlap/elk/board.exp.json index e14feb56f2..f16d8c2306 100644 --- a/e2etests/testdata/regression/sequence_diagram_self_edge_group_overlap/elk/board.exp.json +++ b/e2etests/testdata/regression/sequence_diagram_self_edge_group_overlap/elk/board.exp.json @@ -653,6 +653,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 62, @@ -699,6 +700,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 62, @@ -737,6 +739,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 62, @@ -783,6 +786,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 68, @@ -821,6 +825,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 212, @@ -867,6 +872,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 212, @@ -913,6 +919,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 212, @@ -951,6 +958,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 62, @@ -997,6 +1005,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 62, @@ -1043,6 +1052,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 62, @@ -1089,6 +1099,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 62, @@ -1135,6 +1146,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 62, @@ -1181,6 +1193,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 212, @@ -1219,6 +1232,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 362, @@ -1265,6 +1279,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 212, @@ -1303,6 +1318,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 362, @@ -1349,6 +1365,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 212, @@ -1387,6 +1404,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 62, @@ -1425,6 +1443,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 212, @@ -1463,6 +1482,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 362, diff --git a/e2etests/testdata/regression/sequence_diagram_self_edge_group_overlap/elk/sketch.exp.svg b/e2etests/testdata/regression/sequence_diagram_self_edge_group_overlap/elk/sketch.exp.svg index bb27108919..2864680eb6 100644 --- a/e2etests/testdata/regression/sequence_diagram_self_edge_group_overlap/elk/sketch.exp.svg +++ b/e2etests/testdata/regression/sequence_diagram_self_edge_group_overlap/elk/sketch.exp.svg @@ -1,9 +1,9 @@ -ABCgroup 1group 2group 3group 4group 5group 6group 7group 8group 9group 10group 11 + .d2-914740314 .fill-N1{fill:#0A0F25;} + .d2-914740314 .fill-N2{fill:#676C7E;} + .d2-914740314 .fill-N3{fill:#9499AB;} + .d2-914740314 .fill-N4{fill:#CFD2DD;} + .d2-914740314 .fill-N5{fill:#DEE1EB;} + .d2-914740314 .fill-N6{fill:#EEF1F8;} + .d2-914740314 .fill-N7{fill:#FFFFFF;} + .d2-914740314 .fill-B1{fill:#0D32B2;} + .d2-914740314 .fill-B2{fill:#0D32B2;} + .d2-914740314 .fill-B3{fill:#E3E9FD;} + .d2-914740314 .fill-B4{fill:#E3E9FD;} + .d2-914740314 .fill-B5{fill:#EDF0FD;} + .d2-914740314 .fill-B6{fill:#F7F8FE;} + .d2-914740314 .fill-AA2{fill:#4A6FF3;} + .d2-914740314 .fill-AA4{fill:#EDF0FD;} + .d2-914740314 .fill-AA5{fill:#F7F8FE;} + .d2-914740314 .fill-AB4{fill:#EDF0FD;} + .d2-914740314 .fill-AB5{fill:#F7F8FE;} + .d2-914740314 .stroke-N1{stroke:#0A0F25;} + .d2-914740314 .stroke-N2{stroke:#676C7E;} + .d2-914740314 .stroke-N3{stroke:#9499AB;} + .d2-914740314 .stroke-N4{stroke:#CFD2DD;} + .d2-914740314 .stroke-N5{stroke:#DEE1EB;} + .d2-914740314 .stroke-N6{stroke:#EEF1F8;} + .d2-914740314 .stroke-N7{stroke:#FFFFFF;} + .d2-914740314 .stroke-B1{stroke:#0D32B2;} + .d2-914740314 .stroke-B2{stroke:#0D32B2;} + .d2-914740314 .stroke-B3{stroke:#E3E9FD;} + .d2-914740314 .stroke-B4{stroke:#E3E9FD;} + .d2-914740314 .stroke-B5{stroke:#EDF0FD;} + .d2-914740314 .stroke-B6{stroke:#F7F8FE;} + .d2-914740314 .stroke-AA2{stroke:#4A6FF3;} + .d2-914740314 .stroke-AA4{stroke:#EDF0FD;} + .d2-914740314 .stroke-AA5{stroke:#F7F8FE;} + .d2-914740314 .stroke-AB4{stroke:#EDF0FD;} + .d2-914740314 .stroke-AB5{stroke:#F7F8FE;} + .d2-914740314 .background-color-N1{background-color:#0A0F25;} + .d2-914740314 .background-color-N2{background-color:#676C7E;} + .d2-914740314 .background-color-N3{background-color:#9499AB;} + .d2-914740314 .background-color-N4{background-color:#CFD2DD;} + .d2-914740314 .background-color-N5{background-color:#DEE1EB;} + .d2-914740314 .background-color-N6{background-color:#EEF1F8;} + .d2-914740314 .background-color-N7{background-color:#FFFFFF;} + .d2-914740314 .background-color-B1{background-color:#0D32B2;} + .d2-914740314 .background-color-B2{background-color:#0D32B2;} + .d2-914740314 .background-color-B3{background-color:#E3E9FD;} + .d2-914740314 .background-color-B4{background-color:#E3E9FD;} + .d2-914740314 .background-color-B5{background-color:#EDF0FD;} + .d2-914740314 .background-color-B6{background-color:#F7F8FE;} + .d2-914740314 .background-color-AA2{background-color:#4A6FF3;} + .d2-914740314 .background-color-AA4{background-color:#EDF0FD;} + .d2-914740314 .background-color-AA5{background-color:#F7F8FE;} + .d2-914740314 .background-color-AB4{background-color:#EDF0FD;} + .d2-914740314 .background-color-AB5{background-color:#F7F8FE;} + .d2-914740314 .color-N1{color:#0A0F25;} + .d2-914740314 .color-N2{color:#676C7E;} + .d2-914740314 .color-N3{color:#9499AB;} + .d2-914740314 .color-N4{color:#CFD2DD;} + .d2-914740314 .color-N5{color:#DEE1EB;} + .d2-914740314 .color-N6{color:#EEF1F8;} + .d2-914740314 .color-N7{color:#FFFFFF;} + .d2-914740314 .color-B1{color:#0D32B2;} + .d2-914740314 .color-B2{color:#0D32B2;} + .d2-914740314 .color-B3{color:#E3E9FD;} + .d2-914740314 .color-B4{color:#E3E9FD;} + .d2-914740314 .color-B5{color:#EDF0FD;} + .d2-914740314 .color-B6{color:#F7F8FE;} + .d2-914740314 .color-AA2{color:#4A6FF3;} + .d2-914740314 .color-AA4{color:#EDF0FD;} + .d2-914740314 .color-AA5{color:#F7F8FE;} + .d2-914740314 .color-AB4{color:#EDF0FD;} + .d2-914740314 .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}]]>ABCgroup 1group 2group 3group 4group 5group 6group 7group 8group 9group 10group 11 diff --git a/e2etests/testdata/regression/sequence_diagram_span_cover/dagre/board.exp.json b/e2etests/testdata/regression/sequence_diagram_span_cover/dagre/board.exp.json index 8a164ee41b..3a8e72078e 100644 --- a/e2etests/testdata/regression/sequence_diagram_span_cover/dagre/board.exp.json +++ b/e2etests/testdata/regression/sequence_diagram_span_cover/dagre/board.exp.json @@ -109,6 +109,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 68, @@ -155,6 +156,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 68, @@ -201,6 +203,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 62, diff --git a/e2etests/testdata/regression/sequence_diagram_span_cover/dagre/sketch.exp.svg b/e2etests/testdata/regression/sequence_diagram_span_cover/dagre/sketch.exp.svg index aedb308995..a683647deb 100644 --- a/e2etests/testdata/regression/sequence_diagram_span_cover/dagre/sketch.exp.svg +++ b/e2etests/testdata/regression/sequence_diagram_span_cover/dagre/sketch.exp.svg @@ -1,9 +1,9 @@ -b + .d2-3555812628 .fill-N1{fill:#0A0F25;} + .d2-3555812628 .fill-N2{fill:#676C7E;} + .d2-3555812628 .fill-N3{fill:#9499AB;} + .d2-3555812628 .fill-N4{fill:#CFD2DD;} + .d2-3555812628 .fill-N5{fill:#DEE1EB;} + .d2-3555812628 .fill-N6{fill:#EEF1F8;} + .d2-3555812628 .fill-N7{fill:#FFFFFF;} + .d2-3555812628 .fill-B1{fill:#0D32B2;} + .d2-3555812628 .fill-B2{fill:#0D32B2;} + .d2-3555812628 .fill-B3{fill:#E3E9FD;} + .d2-3555812628 .fill-B4{fill:#E3E9FD;} + .d2-3555812628 .fill-B5{fill:#EDF0FD;} + .d2-3555812628 .fill-B6{fill:#F7F8FE;} + .d2-3555812628 .fill-AA2{fill:#4A6FF3;} + .d2-3555812628 .fill-AA4{fill:#EDF0FD;} + .d2-3555812628 .fill-AA5{fill:#F7F8FE;} + .d2-3555812628 .fill-AB4{fill:#EDF0FD;} + .d2-3555812628 .fill-AB5{fill:#F7F8FE;} + .d2-3555812628 .stroke-N1{stroke:#0A0F25;} + .d2-3555812628 .stroke-N2{stroke:#676C7E;} + .d2-3555812628 .stroke-N3{stroke:#9499AB;} + .d2-3555812628 .stroke-N4{stroke:#CFD2DD;} + .d2-3555812628 .stroke-N5{stroke:#DEE1EB;} + .d2-3555812628 .stroke-N6{stroke:#EEF1F8;} + .d2-3555812628 .stroke-N7{stroke:#FFFFFF;} + .d2-3555812628 .stroke-B1{stroke:#0D32B2;} + .d2-3555812628 .stroke-B2{stroke:#0D32B2;} + .d2-3555812628 .stroke-B3{stroke:#E3E9FD;} + .d2-3555812628 .stroke-B4{stroke:#E3E9FD;} + .d2-3555812628 .stroke-B5{stroke:#EDF0FD;} + .d2-3555812628 .stroke-B6{stroke:#F7F8FE;} + .d2-3555812628 .stroke-AA2{stroke:#4A6FF3;} + .d2-3555812628 .stroke-AA4{stroke:#EDF0FD;} + .d2-3555812628 .stroke-AA5{stroke:#F7F8FE;} + .d2-3555812628 .stroke-AB4{stroke:#EDF0FD;} + .d2-3555812628 .stroke-AB5{stroke:#F7F8FE;} + .d2-3555812628 .background-color-N1{background-color:#0A0F25;} + .d2-3555812628 .background-color-N2{background-color:#676C7E;} + .d2-3555812628 .background-color-N3{background-color:#9499AB;} + .d2-3555812628 .background-color-N4{background-color:#CFD2DD;} + .d2-3555812628 .background-color-N5{background-color:#DEE1EB;} + .d2-3555812628 .background-color-N6{background-color:#EEF1F8;} + .d2-3555812628 .background-color-N7{background-color:#FFFFFF;} + .d2-3555812628 .background-color-B1{background-color:#0D32B2;} + .d2-3555812628 .background-color-B2{background-color:#0D32B2;} + .d2-3555812628 .background-color-B3{background-color:#E3E9FD;} + .d2-3555812628 .background-color-B4{background-color:#E3E9FD;} + .d2-3555812628 .background-color-B5{background-color:#EDF0FD;} + .d2-3555812628 .background-color-B6{background-color:#F7F8FE;} + .d2-3555812628 .background-color-AA2{background-color:#4A6FF3;} + .d2-3555812628 .background-color-AA4{background-color:#EDF0FD;} + .d2-3555812628 .background-color-AA5{background-color:#F7F8FE;} + .d2-3555812628 .background-color-AB4{background-color:#EDF0FD;} + .d2-3555812628 .background-color-AB5{background-color:#F7F8FE;} + .d2-3555812628 .color-N1{color:#0A0F25;} + .d2-3555812628 .color-N2{color:#676C7E;} + .d2-3555812628 .color-N3{color:#9499AB;} + .d2-3555812628 .color-N4{color:#CFD2DD;} + .d2-3555812628 .color-N5{color:#DEE1EB;} + .d2-3555812628 .color-N6{color:#EEF1F8;} + .d2-3555812628 .color-N7{color:#FFFFFF;} + .d2-3555812628 .color-B1{color:#0D32B2;} + .d2-3555812628 .color-B2{color:#0D32B2;} + .d2-3555812628 .color-B3{color:#E3E9FD;} + .d2-3555812628 .color-B4{color:#E3E9FD;} + .d2-3555812628 .color-B5{color:#EDF0FD;} + .d2-3555812628 .color-B6{color:#F7F8FE;} + .d2-3555812628 .color-AA2{color:#4A6FF3;} + .d2-3555812628 .color-AA4{color:#EDF0FD;} + .d2-3555812628 .color-AA5{color:#F7F8FE;} + .d2-3555812628 .color-AB4{color:#EDF0FD;} + .d2-3555812628 .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}]]>b \ No newline at end of file diff --git a/e2etests/testdata/regression/sequence_diagram_span_cover/elk/board.exp.json b/e2etests/testdata/regression/sequence_diagram_span_cover/elk/board.exp.json index 8a164ee41b..3a8e72078e 100644 --- a/e2etests/testdata/regression/sequence_diagram_span_cover/elk/board.exp.json +++ b/e2etests/testdata/regression/sequence_diagram_span_cover/elk/board.exp.json @@ -109,6 +109,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 68, @@ -155,6 +156,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 68, @@ -201,6 +203,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 62, diff --git a/e2etests/testdata/regression/sequence_diagram_span_cover/elk/sketch.exp.svg b/e2etests/testdata/regression/sequence_diagram_span_cover/elk/sketch.exp.svg index aedb308995..a683647deb 100644 --- a/e2etests/testdata/regression/sequence_diagram_span_cover/elk/sketch.exp.svg +++ b/e2etests/testdata/regression/sequence_diagram_span_cover/elk/sketch.exp.svg @@ -1,9 +1,9 @@ -b + .d2-3555812628 .fill-N1{fill:#0A0F25;} + .d2-3555812628 .fill-N2{fill:#676C7E;} + .d2-3555812628 .fill-N3{fill:#9499AB;} + .d2-3555812628 .fill-N4{fill:#CFD2DD;} + .d2-3555812628 .fill-N5{fill:#DEE1EB;} + .d2-3555812628 .fill-N6{fill:#EEF1F8;} + .d2-3555812628 .fill-N7{fill:#FFFFFF;} + .d2-3555812628 .fill-B1{fill:#0D32B2;} + .d2-3555812628 .fill-B2{fill:#0D32B2;} + .d2-3555812628 .fill-B3{fill:#E3E9FD;} + .d2-3555812628 .fill-B4{fill:#E3E9FD;} + .d2-3555812628 .fill-B5{fill:#EDF0FD;} + .d2-3555812628 .fill-B6{fill:#F7F8FE;} + .d2-3555812628 .fill-AA2{fill:#4A6FF3;} + .d2-3555812628 .fill-AA4{fill:#EDF0FD;} + .d2-3555812628 .fill-AA5{fill:#F7F8FE;} + .d2-3555812628 .fill-AB4{fill:#EDF0FD;} + .d2-3555812628 .fill-AB5{fill:#F7F8FE;} + .d2-3555812628 .stroke-N1{stroke:#0A0F25;} + .d2-3555812628 .stroke-N2{stroke:#676C7E;} + .d2-3555812628 .stroke-N3{stroke:#9499AB;} + .d2-3555812628 .stroke-N4{stroke:#CFD2DD;} + .d2-3555812628 .stroke-N5{stroke:#DEE1EB;} + .d2-3555812628 .stroke-N6{stroke:#EEF1F8;} + .d2-3555812628 .stroke-N7{stroke:#FFFFFF;} + .d2-3555812628 .stroke-B1{stroke:#0D32B2;} + .d2-3555812628 .stroke-B2{stroke:#0D32B2;} + .d2-3555812628 .stroke-B3{stroke:#E3E9FD;} + .d2-3555812628 .stroke-B4{stroke:#E3E9FD;} + .d2-3555812628 .stroke-B5{stroke:#EDF0FD;} + .d2-3555812628 .stroke-B6{stroke:#F7F8FE;} + .d2-3555812628 .stroke-AA2{stroke:#4A6FF3;} + .d2-3555812628 .stroke-AA4{stroke:#EDF0FD;} + .d2-3555812628 .stroke-AA5{stroke:#F7F8FE;} + .d2-3555812628 .stroke-AB4{stroke:#EDF0FD;} + .d2-3555812628 .stroke-AB5{stroke:#F7F8FE;} + .d2-3555812628 .background-color-N1{background-color:#0A0F25;} + .d2-3555812628 .background-color-N2{background-color:#676C7E;} + .d2-3555812628 .background-color-N3{background-color:#9499AB;} + .d2-3555812628 .background-color-N4{background-color:#CFD2DD;} + .d2-3555812628 .background-color-N5{background-color:#DEE1EB;} + .d2-3555812628 .background-color-N6{background-color:#EEF1F8;} + .d2-3555812628 .background-color-N7{background-color:#FFFFFF;} + .d2-3555812628 .background-color-B1{background-color:#0D32B2;} + .d2-3555812628 .background-color-B2{background-color:#0D32B2;} + .d2-3555812628 .background-color-B3{background-color:#E3E9FD;} + .d2-3555812628 .background-color-B4{background-color:#E3E9FD;} + .d2-3555812628 .background-color-B5{background-color:#EDF0FD;} + .d2-3555812628 .background-color-B6{background-color:#F7F8FE;} + .d2-3555812628 .background-color-AA2{background-color:#4A6FF3;} + .d2-3555812628 .background-color-AA4{background-color:#EDF0FD;} + .d2-3555812628 .background-color-AA5{background-color:#F7F8FE;} + .d2-3555812628 .background-color-AB4{background-color:#EDF0FD;} + .d2-3555812628 .background-color-AB5{background-color:#F7F8FE;} + .d2-3555812628 .color-N1{color:#0A0F25;} + .d2-3555812628 .color-N2{color:#676C7E;} + .d2-3555812628 .color-N3{color:#9499AB;} + .d2-3555812628 .color-N4{color:#CFD2DD;} + .d2-3555812628 .color-N5{color:#DEE1EB;} + .d2-3555812628 .color-N6{color:#EEF1F8;} + .d2-3555812628 .color-N7{color:#FFFFFF;} + .d2-3555812628 .color-B1{color:#0D32B2;} + .d2-3555812628 .color-B2{color:#0D32B2;} + .d2-3555812628 .color-B3{color:#E3E9FD;} + .d2-3555812628 .color-B4{color:#E3E9FD;} + .d2-3555812628 .color-B5{color:#EDF0FD;} + .d2-3555812628 .color-B6{color:#F7F8FE;} + .d2-3555812628 .color-AA2{color:#4A6FF3;} + .d2-3555812628 .color-AA4{color:#EDF0FD;} + .d2-3555812628 .color-AA5{color:#F7F8FE;} + .d2-3555812628 .color-AB4{color:#EDF0FD;} + .d2-3555812628 .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}]]>b \ No newline at end of file diff --git a/e2etests/testdata/regression/straight_hierarchy_container_direction_right/dagre/board.exp.json b/e2etests/testdata/regression/straight_hierarchy_container_direction_right/dagre/board.exp.json index f59d425060..16f80cf5df 100644 --- a/e2etests/testdata/regression/straight_hierarchy_container_direction_right/dagre/board.exp.json +++ b/e2etests/testdata/regression/straight_hierarchy_container_direction_right/dagre/board.exp.json @@ -1053,6 +1053,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 53, @@ -1100,6 +1101,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 53, @@ -1147,6 +1149,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 53, @@ -1194,6 +1197,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 256, @@ -1253,6 +1257,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 256, @@ -1312,6 +1317,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 256, @@ -1371,6 +1377,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 509, @@ -1430,6 +1437,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 509, @@ -1489,6 +1497,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 509, @@ -1548,6 +1557,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 762, @@ -1619,6 +1629,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 762, @@ -1690,6 +1701,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 762, diff --git a/e2etests/testdata/regression/straight_hierarchy_container_direction_right/dagre/sketch.exp.svg b/e2etests/testdata/regression/straight_hierarchy_container_direction_right/dagre/sketch.exp.svg index 300758c4c8..2b649413f3 100644 --- a/e2etests/testdata/regression/straight_hierarchy_container_direction_right/dagre/sketch.exp.svg +++ b/e2etests/testdata/regression/straight_hierarchy_container_direction_right/dagre/sketch.exp.svg @@ -1,16 +1,16 @@ -acbl1l2c1l2c3l2c2l3c1l3c2l4bacacbabcc1c2c3abc + .d2-766141488 .fill-N1{fill:#0A0F25;} + .d2-766141488 .fill-N2{fill:#676C7E;} + .d2-766141488 .fill-N3{fill:#9499AB;} + .d2-766141488 .fill-N4{fill:#CFD2DD;} + .d2-766141488 .fill-N5{fill:#DEE1EB;} + .d2-766141488 .fill-N6{fill:#EEF1F8;} + .d2-766141488 .fill-N7{fill:#FFFFFF;} + .d2-766141488 .fill-B1{fill:#0D32B2;} + .d2-766141488 .fill-B2{fill:#0D32B2;} + .d2-766141488 .fill-B3{fill:#E3E9FD;} + .d2-766141488 .fill-B4{fill:#E3E9FD;} + .d2-766141488 .fill-B5{fill:#EDF0FD;} + .d2-766141488 .fill-B6{fill:#F7F8FE;} + .d2-766141488 .fill-AA2{fill:#4A6FF3;} + .d2-766141488 .fill-AA4{fill:#EDF0FD;} + .d2-766141488 .fill-AA5{fill:#F7F8FE;} + .d2-766141488 .fill-AB4{fill:#EDF0FD;} + .d2-766141488 .fill-AB5{fill:#F7F8FE;} + .d2-766141488 .stroke-N1{stroke:#0A0F25;} + .d2-766141488 .stroke-N2{stroke:#676C7E;} + .d2-766141488 .stroke-N3{stroke:#9499AB;} + .d2-766141488 .stroke-N4{stroke:#CFD2DD;} + .d2-766141488 .stroke-N5{stroke:#DEE1EB;} + .d2-766141488 .stroke-N6{stroke:#EEF1F8;} + .d2-766141488 .stroke-N7{stroke:#FFFFFF;} + .d2-766141488 .stroke-B1{stroke:#0D32B2;} + .d2-766141488 .stroke-B2{stroke:#0D32B2;} + .d2-766141488 .stroke-B3{stroke:#E3E9FD;} + .d2-766141488 .stroke-B4{stroke:#E3E9FD;} + .d2-766141488 .stroke-B5{stroke:#EDF0FD;} + .d2-766141488 .stroke-B6{stroke:#F7F8FE;} + .d2-766141488 .stroke-AA2{stroke:#4A6FF3;} + .d2-766141488 .stroke-AA4{stroke:#EDF0FD;} + .d2-766141488 .stroke-AA5{stroke:#F7F8FE;} + .d2-766141488 .stroke-AB4{stroke:#EDF0FD;} + .d2-766141488 .stroke-AB5{stroke:#F7F8FE;} + .d2-766141488 .background-color-N1{background-color:#0A0F25;} + .d2-766141488 .background-color-N2{background-color:#676C7E;} + .d2-766141488 .background-color-N3{background-color:#9499AB;} + .d2-766141488 .background-color-N4{background-color:#CFD2DD;} + .d2-766141488 .background-color-N5{background-color:#DEE1EB;} + .d2-766141488 .background-color-N6{background-color:#EEF1F8;} + .d2-766141488 .background-color-N7{background-color:#FFFFFF;} + .d2-766141488 .background-color-B1{background-color:#0D32B2;} + .d2-766141488 .background-color-B2{background-color:#0D32B2;} + .d2-766141488 .background-color-B3{background-color:#E3E9FD;} + .d2-766141488 .background-color-B4{background-color:#E3E9FD;} + .d2-766141488 .background-color-B5{background-color:#EDF0FD;} + .d2-766141488 .background-color-B6{background-color:#F7F8FE;} + .d2-766141488 .background-color-AA2{background-color:#4A6FF3;} + .d2-766141488 .background-color-AA4{background-color:#EDF0FD;} + .d2-766141488 .background-color-AA5{background-color:#F7F8FE;} + .d2-766141488 .background-color-AB4{background-color:#EDF0FD;} + .d2-766141488 .background-color-AB5{background-color:#F7F8FE;} + .d2-766141488 .color-N1{color:#0A0F25;} + .d2-766141488 .color-N2{color:#676C7E;} + .d2-766141488 .color-N3{color:#9499AB;} + .d2-766141488 .color-N4{color:#CFD2DD;} + .d2-766141488 .color-N5{color:#DEE1EB;} + .d2-766141488 .color-N6{color:#EEF1F8;} + .d2-766141488 .color-N7{color:#FFFFFF;} + .d2-766141488 .color-B1{color:#0D32B2;} + .d2-766141488 .color-B2{color:#0D32B2;} + .d2-766141488 .color-B3{color:#E3E9FD;} + .d2-766141488 .color-B4{color:#E3E9FD;} + .d2-766141488 .color-B5{color:#EDF0FD;} + .d2-766141488 .color-B6{color:#F7F8FE;} + .d2-766141488 .color-AA2{color:#4A6FF3;} + .d2-766141488 .color-AA4{color:#EDF0FD;} + .d2-766141488 .color-AA5{color:#F7F8FE;} + .d2-766141488 .color-AB4{color:#EDF0FD;} + .d2-766141488 .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}]]>acbl1l2c1l2c3l2c2l3c1l3c2l4bacacbabcc1c2c3abc diff --git a/e2etests/testdata/regression/straight_hierarchy_container_direction_right/elk/board.exp.json b/e2etests/testdata/regression/straight_hierarchy_container_direction_right/elk/board.exp.json index 3eabfc40cd..ede516f051 100644 --- a/e2etests/testdata/regression/straight_hierarchy_container_direction_right/elk/board.exp.json +++ b/e2etests/testdata/regression/straight_hierarchy_container_direction_right/elk/board.exp.json @@ -1053,6 +1053,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 65, @@ -1091,6 +1092,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 65, @@ -1129,6 +1131,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 65, @@ -1167,6 +1170,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 243, @@ -1213,6 +1217,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 243, @@ -1259,6 +1264,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 243, @@ -1305,6 +1311,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 616, @@ -1351,6 +1358,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 616, @@ -1397,6 +1405,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 616, @@ -1435,6 +1444,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 859, @@ -1473,6 +1483,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 859, @@ -1519,6 +1530,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 859, diff --git a/e2etests/testdata/regression/straight_hierarchy_container_direction_right/elk/sketch.exp.svg b/e2etests/testdata/regression/straight_hierarchy_container_direction_right/elk/sketch.exp.svg index 7512367bf1..9dcced5111 100644 --- a/e2etests/testdata/regression/straight_hierarchy_container_direction_right/elk/sketch.exp.svg +++ b/e2etests/testdata/regression/straight_hierarchy_container_direction_right/elk/sketch.exp.svg @@ -1,16 +1,16 @@ -acbl1l2c1l2c3l2c2l3c1l3c2l4bacacbabcc1c2c3abc + .d2-975789907 .fill-N1{fill:#0A0F25;} + .d2-975789907 .fill-N2{fill:#676C7E;} + .d2-975789907 .fill-N3{fill:#9499AB;} + .d2-975789907 .fill-N4{fill:#CFD2DD;} + .d2-975789907 .fill-N5{fill:#DEE1EB;} + .d2-975789907 .fill-N6{fill:#EEF1F8;} + .d2-975789907 .fill-N7{fill:#FFFFFF;} + .d2-975789907 .fill-B1{fill:#0D32B2;} + .d2-975789907 .fill-B2{fill:#0D32B2;} + .d2-975789907 .fill-B3{fill:#E3E9FD;} + .d2-975789907 .fill-B4{fill:#E3E9FD;} + .d2-975789907 .fill-B5{fill:#EDF0FD;} + .d2-975789907 .fill-B6{fill:#F7F8FE;} + .d2-975789907 .fill-AA2{fill:#4A6FF3;} + .d2-975789907 .fill-AA4{fill:#EDF0FD;} + .d2-975789907 .fill-AA5{fill:#F7F8FE;} + .d2-975789907 .fill-AB4{fill:#EDF0FD;} + .d2-975789907 .fill-AB5{fill:#F7F8FE;} + .d2-975789907 .stroke-N1{stroke:#0A0F25;} + .d2-975789907 .stroke-N2{stroke:#676C7E;} + .d2-975789907 .stroke-N3{stroke:#9499AB;} + .d2-975789907 .stroke-N4{stroke:#CFD2DD;} + .d2-975789907 .stroke-N5{stroke:#DEE1EB;} + .d2-975789907 .stroke-N6{stroke:#EEF1F8;} + .d2-975789907 .stroke-N7{stroke:#FFFFFF;} + .d2-975789907 .stroke-B1{stroke:#0D32B2;} + .d2-975789907 .stroke-B2{stroke:#0D32B2;} + .d2-975789907 .stroke-B3{stroke:#E3E9FD;} + .d2-975789907 .stroke-B4{stroke:#E3E9FD;} + .d2-975789907 .stroke-B5{stroke:#EDF0FD;} + .d2-975789907 .stroke-B6{stroke:#F7F8FE;} + .d2-975789907 .stroke-AA2{stroke:#4A6FF3;} + .d2-975789907 .stroke-AA4{stroke:#EDF0FD;} + .d2-975789907 .stroke-AA5{stroke:#F7F8FE;} + .d2-975789907 .stroke-AB4{stroke:#EDF0FD;} + .d2-975789907 .stroke-AB5{stroke:#F7F8FE;} + .d2-975789907 .background-color-N1{background-color:#0A0F25;} + .d2-975789907 .background-color-N2{background-color:#676C7E;} + .d2-975789907 .background-color-N3{background-color:#9499AB;} + .d2-975789907 .background-color-N4{background-color:#CFD2DD;} + .d2-975789907 .background-color-N5{background-color:#DEE1EB;} + .d2-975789907 .background-color-N6{background-color:#EEF1F8;} + .d2-975789907 .background-color-N7{background-color:#FFFFFF;} + .d2-975789907 .background-color-B1{background-color:#0D32B2;} + .d2-975789907 .background-color-B2{background-color:#0D32B2;} + .d2-975789907 .background-color-B3{background-color:#E3E9FD;} + .d2-975789907 .background-color-B4{background-color:#E3E9FD;} + .d2-975789907 .background-color-B5{background-color:#EDF0FD;} + .d2-975789907 .background-color-B6{background-color:#F7F8FE;} + .d2-975789907 .background-color-AA2{background-color:#4A6FF3;} + .d2-975789907 .background-color-AA4{background-color:#EDF0FD;} + .d2-975789907 .background-color-AA5{background-color:#F7F8FE;} + .d2-975789907 .background-color-AB4{background-color:#EDF0FD;} + .d2-975789907 .background-color-AB5{background-color:#F7F8FE;} + .d2-975789907 .color-N1{color:#0A0F25;} + .d2-975789907 .color-N2{color:#676C7E;} + .d2-975789907 .color-N3{color:#9499AB;} + .d2-975789907 .color-N4{color:#CFD2DD;} + .d2-975789907 .color-N5{color:#DEE1EB;} + .d2-975789907 .color-N6{color:#EEF1F8;} + .d2-975789907 .color-N7{color:#FFFFFF;} + .d2-975789907 .color-B1{color:#0D32B2;} + .d2-975789907 .color-B2{color:#0D32B2;} + .d2-975789907 .color-B3{color:#E3E9FD;} + .d2-975789907 .color-B4{color:#E3E9FD;} + .d2-975789907 .color-B5{color:#EDF0FD;} + .d2-975789907 .color-B6{color:#F7F8FE;} + .d2-975789907 .color-AA2{color:#4A6FF3;} + .d2-975789907 .color-AA4{color:#EDF0FD;} + .d2-975789907 .color-AA5{color:#F7F8FE;} + .d2-975789907 .color-AB4{color:#EDF0FD;} + .d2-975789907 .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}]]>acbl1l2c1l2c3l2c2l3c1l3c2l4bacacbabcc1c2c3abc diff --git a/e2etests/testdata/regression/unconnected/dagre/board.exp.json b/e2etests/testdata/regression/unconnected/dagre/board.exp.json index 1ab1067fa8..77f9a6a93b 100644 --- a/e2etests/testdata/regression/unconnected/dagre/board.exp.json +++ b/e2etests/testdata/regression/unconnected/dagre/board.exp.json @@ -559,6 +559,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 185, @@ -606,6 +607,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 146, @@ -653,6 +655,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 179, @@ -724,6 +727,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 780.8489990234375, @@ -771,6 +775,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 779.2559814453125, @@ -830,6 +835,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 762.5640258789062, @@ -913,6 +919,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 1003, @@ -960,6 +967,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 1223, @@ -1007,6 +1015,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 1367, @@ -1066,6 +1075,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 517.5, @@ -1113,6 +1123,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 539, diff --git a/e2etests/testdata/regression/unconnected/dagre/sketch.exp.svg b/e2etests/testdata/regression/unconnected/dagre/sketch.exp.svg index 8ab7d9a77a..1079116286 100644 --- a/e2etests/testdata/regression/unconnected/dagre/sketch.exp.svg +++ b/e2etests/testdata/regression/unconnected/dagre/sketch.exp.svg @@ -1,20 +1,20 @@ -Workflow-I (Warehousing, Installation)OEM FactoryOEM WarehouseDistributor WarehouseGos WarehouseCustomer SiteMasterRegional-1Regional-2Regional-N
      @@ -842,7 +842,7 @@
    • Staging
    • Dispatch to Site
    -
    InstallationSupport +InstallationSupport diff --git a/e2etests/testdata/regression/unconnected/elk/board.exp.json b/e2etests/testdata/regression/unconnected/elk/board.exp.json index d45f7a548b..7c287359a6 100644 --- a/e2etests/testdata/regression/unconnected/elk/board.exp.json +++ b/e2etests/testdata/regression/unconnected/elk/board.exp.json @@ -559,6 +559,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 238, @@ -605,6 +606,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 238, @@ -651,6 +653,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 238, @@ -697,6 +700,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 840, @@ -735,6 +739,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 840, @@ -781,6 +786,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 840, @@ -835,6 +841,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 1090, @@ -881,6 +888,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 1290, @@ -919,6 +927,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 1420, @@ -965,6 +974,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 549, @@ -1003,6 +1013,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 572, diff --git a/e2etests/testdata/regression/unconnected/elk/sketch.exp.svg b/e2etests/testdata/regression/unconnected/elk/sketch.exp.svg index b0b0ee39f2..08f4f73b61 100644 --- a/e2etests/testdata/regression/unconnected/elk/sketch.exp.svg +++ b/e2etests/testdata/regression/unconnected/elk/sketch.exp.svg @@ -1,20 +1,20 @@ -Workflow-I (Warehousing, Installation)OEM FactoryOEM WarehouseDistributor WarehouseGos WarehouseCustomer SiteMasterRegional-1Regional-2Regional-N
      @@ -842,7 +842,7 @@
    • Staging
    • Dispatch to Site
    -
    InstallationSupport +InstallationSupport diff --git a/e2etests/testdata/regression/unnamed_class_table_code/dagre/board.exp.json b/e2etests/testdata/regression/unnamed_class_table_code/dagre/board.exp.json index 29430c79d3..09c98f3e24 100644 --- a/e2etests/testdata/regression/unnamed_class_table_code/dagre/board.exp.json +++ b/e2etests/testdata/regression/unnamed_class_table_code/dagre/board.exp.json @@ -327,6 +327,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 211, @@ -374,6 +375,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 211, diff --git a/e2etests/testdata/regression/unnamed_class_table_code/dagre/sketch.exp.svg b/e2etests/testdata/regression/unnamed_class_table_code/dagre/sketch.exp.svg index ff974a19e9..5af7403bba 100644 --- a/e2etests/testdata/regression/unnamed_class_table_code/dagre/sketch.exp.svg +++ b/e2etests/testdata/regression/unnamed_class_table_code/dagre/sketch.exp.svg @@ -1,23 +1,23 @@ --numint-timeoutint-pid+getStatus()Enum+getJobs()Job[]+setTimeout(seconds int)voididintnamestringemailstringpasswordstringlast_logindatetime:= 5 + .d2-3162692253 .fill-N1{fill:#0A0F25;} + .d2-3162692253 .fill-N2{fill:#676C7E;} + .d2-3162692253 .fill-N3{fill:#9499AB;} + .d2-3162692253 .fill-N4{fill:#CFD2DD;} + .d2-3162692253 .fill-N5{fill:#DEE1EB;} + .d2-3162692253 .fill-N6{fill:#EEF1F8;} + .d2-3162692253 .fill-N7{fill:#FFFFFF;} + .d2-3162692253 .fill-B1{fill:#0D32B2;} + .d2-3162692253 .fill-B2{fill:#0D32B2;} + .d2-3162692253 .fill-B3{fill:#E3E9FD;} + .d2-3162692253 .fill-B4{fill:#E3E9FD;} + .d2-3162692253 .fill-B5{fill:#EDF0FD;} + .d2-3162692253 .fill-B6{fill:#F7F8FE;} + .d2-3162692253 .fill-AA2{fill:#4A6FF3;} + .d2-3162692253 .fill-AA4{fill:#EDF0FD;} + .d2-3162692253 .fill-AA5{fill:#F7F8FE;} + .d2-3162692253 .fill-AB4{fill:#EDF0FD;} + .d2-3162692253 .fill-AB5{fill:#F7F8FE;} + .d2-3162692253 .stroke-N1{stroke:#0A0F25;} + .d2-3162692253 .stroke-N2{stroke:#676C7E;} + .d2-3162692253 .stroke-N3{stroke:#9499AB;} + .d2-3162692253 .stroke-N4{stroke:#CFD2DD;} + .d2-3162692253 .stroke-N5{stroke:#DEE1EB;} + .d2-3162692253 .stroke-N6{stroke:#EEF1F8;} + .d2-3162692253 .stroke-N7{stroke:#FFFFFF;} + .d2-3162692253 .stroke-B1{stroke:#0D32B2;} + .d2-3162692253 .stroke-B2{stroke:#0D32B2;} + .d2-3162692253 .stroke-B3{stroke:#E3E9FD;} + .d2-3162692253 .stroke-B4{stroke:#E3E9FD;} + .d2-3162692253 .stroke-B5{stroke:#EDF0FD;} + .d2-3162692253 .stroke-B6{stroke:#F7F8FE;} + .d2-3162692253 .stroke-AA2{stroke:#4A6FF3;} + .d2-3162692253 .stroke-AA4{stroke:#EDF0FD;} + .d2-3162692253 .stroke-AA5{stroke:#F7F8FE;} + .d2-3162692253 .stroke-AB4{stroke:#EDF0FD;} + .d2-3162692253 .stroke-AB5{stroke:#F7F8FE;} + .d2-3162692253 .background-color-N1{background-color:#0A0F25;} + .d2-3162692253 .background-color-N2{background-color:#676C7E;} + .d2-3162692253 .background-color-N3{background-color:#9499AB;} + .d2-3162692253 .background-color-N4{background-color:#CFD2DD;} + .d2-3162692253 .background-color-N5{background-color:#DEE1EB;} + .d2-3162692253 .background-color-N6{background-color:#EEF1F8;} + .d2-3162692253 .background-color-N7{background-color:#FFFFFF;} + .d2-3162692253 .background-color-B1{background-color:#0D32B2;} + .d2-3162692253 .background-color-B2{background-color:#0D32B2;} + .d2-3162692253 .background-color-B3{background-color:#E3E9FD;} + .d2-3162692253 .background-color-B4{background-color:#E3E9FD;} + .d2-3162692253 .background-color-B5{background-color:#EDF0FD;} + .d2-3162692253 .background-color-B6{background-color:#F7F8FE;} + .d2-3162692253 .background-color-AA2{background-color:#4A6FF3;} + .d2-3162692253 .background-color-AA4{background-color:#EDF0FD;} + .d2-3162692253 .background-color-AA5{background-color:#F7F8FE;} + .d2-3162692253 .background-color-AB4{background-color:#EDF0FD;} + .d2-3162692253 .background-color-AB5{background-color:#F7F8FE;} + .d2-3162692253 .color-N1{color:#0A0F25;} + .d2-3162692253 .color-N2{color:#676C7E;} + .d2-3162692253 .color-N3{color:#9499AB;} + .d2-3162692253 .color-N4{color:#CFD2DD;} + .d2-3162692253 .color-N5{color:#DEE1EB;} + .d2-3162692253 .color-N6{color:#EEF1F8;} + .d2-3162692253 .color-N7{color:#FFFFFF;} + .d2-3162692253 .color-B1{color:#0D32B2;} + .d2-3162692253 .color-B2{color:#0D32B2;} + .d2-3162692253 .color-B3{color:#E3E9FD;} + .d2-3162692253 .color-B4{color:#E3E9FD;} + .d2-3162692253 .color-B5{color:#EDF0FD;} + .d2-3162692253 .color-B6{color:#F7F8FE;} + .d2-3162692253 .color-AA2{color:#4A6FF3;} + .d2-3162692253 .color-AA4{color:#EDF0FD;} + .d2-3162692253 .color-AA5{color:#F7F8FE;} + .d2-3162692253 .color-AB4{color:#EDF0FD;} + .d2-3162692253 .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}]]>-numint-timeoutint-pid+getStatus()Enum+getJobs()Job[]+setTimeout(seconds int)voididintnamestringemailstringpasswordstringlast_logindatetime:= 5 := a + 7 fmt.Printf("%d", b)a := 5 b := a + 7 -fmt.Printf("%d", b) +fmt.Printf("%d", b) \ No newline at end of file diff --git a/e2etests/testdata/regression/unnamed_class_table_code/elk/board.exp.json b/e2etests/testdata/regression/unnamed_class_table_code/elk/board.exp.json index e98b6ca391..860bbe0b9d 100644 --- a/e2etests/testdata/regression/unnamed_class_table_code/elk/board.exp.json +++ b/e2etests/testdata/regression/unnamed_class_table_code/elk/board.exp.json @@ -327,6 +327,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 223, @@ -365,6 +366,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 223, diff --git a/e2etests/testdata/regression/unnamed_class_table_code/elk/sketch.exp.svg b/e2etests/testdata/regression/unnamed_class_table_code/elk/sketch.exp.svg index 4a8c33dca3..75aa3fefe8 100644 --- a/e2etests/testdata/regression/unnamed_class_table_code/elk/sketch.exp.svg +++ b/e2etests/testdata/regression/unnamed_class_table_code/elk/sketch.exp.svg @@ -1,23 +1,23 @@ --numint-timeoutint-pid+getStatus()Enum+getJobs()Job[]+setTimeout(seconds int)voididintnamestringemailstringpasswordstringlast_logindatetime:= 5 + .d2-1176019395 .fill-N1{fill:#0A0F25;} + .d2-1176019395 .fill-N2{fill:#676C7E;} + .d2-1176019395 .fill-N3{fill:#9499AB;} + .d2-1176019395 .fill-N4{fill:#CFD2DD;} + .d2-1176019395 .fill-N5{fill:#DEE1EB;} + .d2-1176019395 .fill-N6{fill:#EEF1F8;} + .d2-1176019395 .fill-N7{fill:#FFFFFF;} + .d2-1176019395 .fill-B1{fill:#0D32B2;} + .d2-1176019395 .fill-B2{fill:#0D32B2;} + .d2-1176019395 .fill-B3{fill:#E3E9FD;} + .d2-1176019395 .fill-B4{fill:#E3E9FD;} + .d2-1176019395 .fill-B5{fill:#EDF0FD;} + .d2-1176019395 .fill-B6{fill:#F7F8FE;} + .d2-1176019395 .fill-AA2{fill:#4A6FF3;} + .d2-1176019395 .fill-AA4{fill:#EDF0FD;} + .d2-1176019395 .fill-AA5{fill:#F7F8FE;} + .d2-1176019395 .fill-AB4{fill:#EDF0FD;} + .d2-1176019395 .fill-AB5{fill:#F7F8FE;} + .d2-1176019395 .stroke-N1{stroke:#0A0F25;} + .d2-1176019395 .stroke-N2{stroke:#676C7E;} + .d2-1176019395 .stroke-N3{stroke:#9499AB;} + .d2-1176019395 .stroke-N4{stroke:#CFD2DD;} + .d2-1176019395 .stroke-N5{stroke:#DEE1EB;} + .d2-1176019395 .stroke-N6{stroke:#EEF1F8;} + .d2-1176019395 .stroke-N7{stroke:#FFFFFF;} + .d2-1176019395 .stroke-B1{stroke:#0D32B2;} + .d2-1176019395 .stroke-B2{stroke:#0D32B2;} + .d2-1176019395 .stroke-B3{stroke:#E3E9FD;} + .d2-1176019395 .stroke-B4{stroke:#E3E9FD;} + .d2-1176019395 .stroke-B5{stroke:#EDF0FD;} + .d2-1176019395 .stroke-B6{stroke:#F7F8FE;} + .d2-1176019395 .stroke-AA2{stroke:#4A6FF3;} + .d2-1176019395 .stroke-AA4{stroke:#EDF0FD;} + .d2-1176019395 .stroke-AA5{stroke:#F7F8FE;} + .d2-1176019395 .stroke-AB4{stroke:#EDF0FD;} + .d2-1176019395 .stroke-AB5{stroke:#F7F8FE;} + .d2-1176019395 .background-color-N1{background-color:#0A0F25;} + .d2-1176019395 .background-color-N2{background-color:#676C7E;} + .d2-1176019395 .background-color-N3{background-color:#9499AB;} + .d2-1176019395 .background-color-N4{background-color:#CFD2DD;} + .d2-1176019395 .background-color-N5{background-color:#DEE1EB;} + .d2-1176019395 .background-color-N6{background-color:#EEF1F8;} + .d2-1176019395 .background-color-N7{background-color:#FFFFFF;} + .d2-1176019395 .background-color-B1{background-color:#0D32B2;} + .d2-1176019395 .background-color-B2{background-color:#0D32B2;} + .d2-1176019395 .background-color-B3{background-color:#E3E9FD;} + .d2-1176019395 .background-color-B4{background-color:#E3E9FD;} + .d2-1176019395 .background-color-B5{background-color:#EDF0FD;} + .d2-1176019395 .background-color-B6{background-color:#F7F8FE;} + .d2-1176019395 .background-color-AA2{background-color:#4A6FF3;} + .d2-1176019395 .background-color-AA4{background-color:#EDF0FD;} + .d2-1176019395 .background-color-AA5{background-color:#F7F8FE;} + .d2-1176019395 .background-color-AB4{background-color:#EDF0FD;} + .d2-1176019395 .background-color-AB5{background-color:#F7F8FE;} + .d2-1176019395 .color-N1{color:#0A0F25;} + .d2-1176019395 .color-N2{color:#676C7E;} + .d2-1176019395 .color-N3{color:#9499AB;} + .d2-1176019395 .color-N4{color:#CFD2DD;} + .d2-1176019395 .color-N5{color:#DEE1EB;} + .d2-1176019395 .color-N6{color:#EEF1F8;} + .d2-1176019395 .color-N7{color:#FFFFFF;} + .d2-1176019395 .color-B1{color:#0D32B2;} + .d2-1176019395 .color-B2{color:#0D32B2;} + .d2-1176019395 .color-B3{color:#E3E9FD;} + .d2-1176019395 .color-B4{color:#E3E9FD;} + .d2-1176019395 .color-B5{color:#EDF0FD;} + .d2-1176019395 .color-B6{color:#F7F8FE;} + .d2-1176019395 .color-AA2{color:#4A6FF3;} + .d2-1176019395 .color-AA4{color:#EDF0FD;} + .d2-1176019395 .color-AA5{color:#F7F8FE;} + .d2-1176019395 .color-AB4{color:#EDF0FD;} + .d2-1176019395 .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}]]>-numint-timeoutint-pid+getStatus()Enum+getJobs()Job[]+setTimeout(seconds int)voididintnamestringemailstringpasswordstringlast_logindatetime:= 5 := a + 7 fmt.Printf("%d", b)a := 5 b := a + 7 -fmt.Printf("%d", b) +fmt.Printf("%d", b) \ No newline at end of file diff --git a/e2etests/testdata/sanity/1_to_2/dagre/board.exp.json b/e2etests/testdata/sanity/1_to_2/dagre/board.exp.json index ea5199e2c0..f12afe8ed5 100644 --- a/e2etests/testdata/sanity/1_to_2/dagre/board.exp.json +++ b/e2etests/testdata/sanity/1_to_2/dagre/board.exp.json @@ -151,6 +151,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 60.5, @@ -198,6 +199,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 105.5, diff --git a/e2etests/testdata/sanity/1_to_2/dagre/sketch.exp.svg b/e2etests/testdata/sanity/1_to_2/dagre/sketch.exp.svg index d7c5768ec4..c5a4867060 100644 --- a/e2etests/testdata/sanity/1_to_2/dagre/sketch.exp.svg +++ b/e2etests/testdata/sanity/1_to_2/dagre/sketch.exp.svg @@ -1,9 +1,9 @@ -abc + .d2-2910214799 .fill-N1{fill:#0A0F25;} + .d2-2910214799 .fill-N2{fill:#676C7E;} + .d2-2910214799 .fill-N3{fill:#9499AB;} + .d2-2910214799 .fill-N4{fill:#CFD2DD;} + .d2-2910214799 .fill-N5{fill:#DEE1EB;} + .d2-2910214799 .fill-N6{fill:#EEF1F8;} + .d2-2910214799 .fill-N7{fill:#FFFFFF;} + .d2-2910214799 .fill-B1{fill:#0D32B2;} + .d2-2910214799 .fill-B2{fill:#0D32B2;} + .d2-2910214799 .fill-B3{fill:#E3E9FD;} + .d2-2910214799 .fill-B4{fill:#E3E9FD;} + .d2-2910214799 .fill-B5{fill:#EDF0FD;} + .d2-2910214799 .fill-B6{fill:#F7F8FE;} + .d2-2910214799 .fill-AA2{fill:#4A6FF3;} + .d2-2910214799 .fill-AA4{fill:#EDF0FD;} + .d2-2910214799 .fill-AA5{fill:#F7F8FE;} + .d2-2910214799 .fill-AB4{fill:#EDF0FD;} + .d2-2910214799 .fill-AB5{fill:#F7F8FE;} + .d2-2910214799 .stroke-N1{stroke:#0A0F25;} + .d2-2910214799 .stroke-N2{stroke:#676C7E;} + .d2-2910214799 .stroke-N3{stroke:#9499AB;} + .d2-2910214799 .stroke-N4{stroke:#CFD2DD;} + .d2-2910214799 .stroke-N5{stroke:#DEE1EB;} + .d2-2910214799 .stroke-N6{stroke:#EEF1F8;} + .d2-2910214799 .stroke-N7{stroke:#FFFFFF;} + .d2-2910214799 .stroke-B1{stroke:#0D32B2;} + .d2-2910214799 .stroke-B2{stroke:#0D32B2;} + .d2-2910214799 .stroke-B3{stroke:#E3E9FD;} + .d2-2910214799 .stroke-B4{stroke:#E3E9FD;} + .d2-2910214799 .stroke-B5{stroke:#EDF0FD;} + .d2-2910214799 .stroke-B6{stroke:#F7F8FE;} + .d2-2910214799 .stroke-AA2{stroke:#4A6FF3;} + .d2-2910214799 .stroke-AA4{stroke:#EDF0FD;} + .d2-2910214799 .stroke-AA5{stroke:#F7F8FE;} + .d2-2910214799 .stroke-AB4{stroke:#EDF0FD;} + .d2-2910214799 .stroke-AB5{stroke:#F7F8FE;} + .d2-2910214799 .background-color-N1{background-color:#0A0F25;} + .d2-2910214799 .background-color-N2{background-color:#676C7E;} + .d2-2910214799 .background-color-N3{background-color:#9499AB;} + .d2-2910214799 .background-color-N4{background-color:#CFD2DD;} + .d2-2910214799 .background-color-N5{background-color:#DEE1EB;} + .d2-2910214799 .background-color-N6{background-color:#EEF1F8;} + .d2-2910214799 .background-color-N7{background-color:#FFFFFF;} + .d2-2910214799 .background-color-B1{background-color:#0D32B2;} + .d2-2910214799 .background-color-B2{background-color:#0D32B2;} + .d2-2910214799 .background-color-B3{background-color:#E3E9FD;} + .d2-2910214799 .background-color-B4{background-color:#E3E9FD;} + .d2-2910214799 .background-color-B5{background-color:#EDF0FD;} + .d2-2910214799 .background-color-B6{background-color:#F7F8FE;} + .d2-2910214799 .background-color-AA2{background-color:#4A6FF3;} + .d2-2910214799 .background-color-AA4{background-color:#EDF0FD;} + .d2-2910214799 .background-color-AA5{background-color:#F7F8FE;} + .d2-2910214799 .background-color-AB4{background-color:#EDF0FD;} + .d2-2910214799 .background-color-AB5{background-color:#F7F8FE;} + .d2-2910214799 .color-N1{color:#0A0F25;} + .d2-2910214799 .color-N2{color:#676C7E;} + .d2-2910214799 .color-N3{color:#9499AB;} + .d2-2910214799 .color-N4{color:#CFD2DD;} + .d2-2910214799 .color-N5{color:#DEE1EB;} + .d2-2910214799 .color-N6{color:#EEF1F8;} + .d2-2910214799 .color-N7{color:#FFFFFF;} + .d2-2910214799 .color-B1{color:#0D32B2;} + .d2-2910214799 .color-B2{color:#0D32B2;} + .d2-2910214799 .color-B3{color:#E3E9FD;} + .d2-2910214799 .color-B4{color:#E3E9FD;} + .d2-2910214799 .color-B5{color:#EDF0FD;} + .d2-2910214799 .color-B6{color:#F7F8FE;} + .d2-2910214799 .color-AA2{color:#4A6FF3;} + .d2-2910214799 .color-AA4{color:#EDF0FD;} + .d2-2910214799 .color-AA5{color:#F7F8FE;} + .d2-2910214799 .color-AB4{color:#EDF0FD;} + .d2-2910214799 .color-AB5{color:#F7F8FE;}.appendix text.text{fill:#0A0F25}.md{--color-fg-default:#0A0F25;--color-fg-muted:#676C7E;--color-fg-subtle:#9499AB;--color-canvas-default:#FFFFFF;--color-canvas-subtle:#EEF1F8;--color-border-default:#0D32B2;--color-border-muted:#0D32B2;--color-neutral-muted:#EEF1F8;--color-accent-fg:#0D32B2;--color-accent-emphasis:#0D32B2;--color-attention-subtle:#676C7E;--color-danger-fg:red;}.sketch-overlay-B1{fill:url(#streaks-darker);mix-blend-mode:lighten}.sketch-overlay-B2{fill:url(#streaks-darker);mix-blend-mode:lighten}.sketch-overlay-B3{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-B4{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-B5{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-B6{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-AA2{fill:url(#streaks-dark);mix-blend-mode:overlay}.sketch-overlay-AA4{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-AA5{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-AB4{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-AB5{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-N1{fill:url(#streaks-darker);mix-blend-mode:lighten}.sketch-overlay-N2{fill:url(#streaks-dark);mix-blend-mode:overlay}.sketch-overlay-N3{fill:url(#streaks-normal);mix-blend-mode:color-burn}.sketch-overlay-N4{fill:url(#streaks-normal);mix-blend-mode:color-burn}.sketch-overlay-N5{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-N6{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-N7{fill:url(#streaks-bright);mix-blend-mode:darken}.light-code{display: block}.dark-code{display: none}]]>abc diff --git a/e2etests/testdata/sanity/1_to_2/elk/board.exp.json b/e2etests/testdata/sanity/1_to_2/elk/board.exp.json index 8c23c067b2..016576345a 100644 --- a/e2etests/testdata/sanity/1_to_2/elk/board.exp.json +++ b/e2etests/testdata/sanity/1_to_2/elk/board.exp.json @@ -151,6 +151,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 61.66600036621094, @@ -197,6 +198,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 88.33300018310547, diff --git a/e2etests/testdata/sanity/1_to_2/elk/sketch.exp.svg b/e2etests/testdata/sanity/1_to_2/elk/sketch.exp.svg index ed1aa4236e..2c76f2d16c 100644 --- a/e2etests/testdata/sanity/1_to_2/elk/sketch.exp.svg +++ b/e2etests/testdata/sanity/1_to_2/elk/sketch.exp.svg @@ -1,9 +1,9 @@ -abc + .d2-925586621 .fill-N1{fill:#0A0F25;} + .d2-925586621 .fill-N2{fill:#676C7E;} + .d2-925586621 .fill-N3{fill:#9499AB;} + .d2-925586621 .fill-N4{fill:#CFD2DD;} + .d2-925586621 .fill-N5{fill:#DEE1EB;} + .d2-925586621 .fill-N6{fill:#EEF1F8;} + .d2-925586621 .fill-N7{fill:#FFFFFF;} + .d2-925586621 .fill-B1{fill:#0D32B2;} + .d2-925586621 .fill-B2{fill:#0D32B2;} + .d2-925586621 .fill-B3{fill:#E3E9FD;} + .d2-925586621 .fill-B4{fill:#E3E9FD;} + .d2-925586621 .fill-B5{fill:#EDF0FD;} + .d2-925586621 .fill-B6{fill:#F7F8FE;} + .d2-925586621 .fill-AA2{fill:#4A6FF3;} + .d2-925586621 .fill-AA4{fill:#EDF0FD;} + .d2-925586621 .fill-AA5{fill:#F7F8FE;} + .d2-925586621 .fill-AB4{fill:#EDF0FD;} + .d2-925586621 .fill-AB5{fill:#F7F8FE;} + .d2-925586621 .stroke-N1{stroke:#0A0F25;} + .d2-925586621 .stroke-N2{stroke:#676C7E;} + .d2-925586621 .stroke-N3{stroke:#9499AB;} + .d2-925586621 .stroke-N4{stroke:#CFD2DD;} + .d2-925586621 .stroke-N5{stroke:#DEE1EB;} + .d2-925586621 .stroke-N6{stroke:#EEF1F8;} + .d2-925586621 .stroke-N7{stroke:#FFFFFF;} + .d2-925586621 .stroke-B1{stroke:#0D32B2;} + .d2-925586621 .stroke-B2{stroke:#0D32B2;} + .d2-925586621 .stroke-B3{stroke:#E3E9FD;} + .d2-925586621 .stroke-B4{stroke:#E3E9FD;} + .d2-925586621 .stroke-B5{stroke:#EDF0FD;} + .d2-925586621 .stroke-B6{stroke:#F7F8FE;} + .d2-925586621 .stroke-AA2{stroke:#4A6FF3;} + .d2-925586621 .stroke-AA4{stroke:#EDF0FD;} + .d2-925586621 .stroke-AA5{stroke:#F7F8FE;} + .d2-925586621 .stroke-AB4{stroke:#EDF0FD;} + .d2-925586621 .stroke-AB5{stroke:#F7F8FE;} + .d2-925586621 .background-color-N1{background-color:#0A0F25;} + .d2-925586621 .background-color-N2{background-color:#676C7E;} + .d2-925586621 .background-color-N3{background-color:#9499AB;} + .d2-925586621 .background-color-N4{background-color:#CFD2DD;} + .d2-925586621 .background-color-N5{background-color:#DEE1EB;} + .d2-925586621 .background-color-N6{background-color:#EEF1F8;} + .d2-925586621 .background-color-N7{background-color:#FFFFFF;} + .d2-925586621 .background-color-B1{background-color:#0D32B2;} + .d2-925586621 .background-color-B2{background-color:#0D32B2;} + .d2-925586621 .background-color-B3{background-color:#E3E9FD;} + .d2-925586621 .background-color-B4{background-color:#E3E9FD;} + .d2-925586621 .background-color-B5{background-color:#EDF0FD;} + .d2-925586621 .background-color-B6{background-color:#F7F8FE;} + .d2-925586621 .background-color-AA2{background-color:#4A6FF3;} + .d2-925586621 .background-color-AA4{background-color:#EDF0FD;} + .d2-925586621 .background-color-AA5{background-color:#F7F8FE;} + .d2-925586621 .background-color-AB4{background-color:#EDF0FD;} + .d2-925586621 .background-color-AB5{background-color:#F7F8FE;} + .d2-925586621 .color-N1{color:#0A0F25;} + .d2-925586621 .color-N2{color:#676C7E;} + .d2-925586621 .color-N3{color:#9499AB;} + .d2-925586621 .color-N4{color:#CFD2DD;} + .d2-925586621 .color-N5{color:#DEE1EB;} + .d2-925586621 .color-N6{color:#EEF1F8;} + .d2-925586621 .color-N7{color:#FFFFFF;} + .d2-925586621 .color-B1{color:#0D32B2;} + .d2-925586621 .color-B2{color:#0D32B2;} + .d2-925586621 .color-B3{color:#E3E9FD;} + .d2-925586621 .color-B4{color:#E3E9FD;} + .d2-925586621 .color-B5{color:#EDF0FD;} + .d2-925586621 .color-B6{color:#F7F8FE;} + .d2-925586621 .color-AA2{color:#4A6FF3;} + .d2-925586621 .color-AA4{color:#EDF0FD;} + .d2-925586621 .color-AA5{color:#F7F8FE;} + .d2-925586621 .color-AB4{color:#EDF0FD;} + .d2-925586621 .color-AB5{color:#F7F8FE;}.appendix text.text{fill:#0A0F25}.md{--color-fg-default:#0A0F25;--color-fg-muted:#676C7E;--color-fg-subtle:#9499AB;--color-canvas-default:#FFFFFF;--color-canvas-subtle:#EEF1F8;--color-border-default:#0D32B2;--color-border-muted:#0D32B2;--color-neutral-muted:#EEF1F8;--color-accent-fg:#0D32B2;--color-accent-emphasis:#0D32B2;--color-attention-subtle:#676C7E;--color-danger-fg:red;}.sketch-overlay-B1{fill:url(#streaks-darker);mix-blend-mode:lighten}.sketch-overlay-B2{fill:url(#streaks-darker);mix-blend-mode:lighten}.sketch-overlay-B3{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-B4{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-B5{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-B6{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-AA2{fill:url(#streaks-dark);mix-blend-mode:overlay}.sketch-overlay-AA4{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-AA5{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-AB4{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-AB5{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-N1{fill:url(#streaks-darker);mix-blend-mode:lighten}.sketch-overlay-N2{fill:url(#streaks-dark);mix-blend-mode:overlay}.sketch-overlay-N3{fill:url(#streaks-normal);mix-blend-mode:color-burn}.sketch-overlay-N4{fill:url(#streaks-normal);mix-blend-mode:color-burn}.sketch-overlay-N5{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-N6{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-N7{fill:url(#streaks-bright);mix-blend-mode:darken}.light-code{display: block}.dark-code{display: none}]]>abc diff --git a/e2etests/testdata/sanity/basic/dagre/board.exp.json b/e2etests/testdata/sanity/basic/dagre/board.exp.json index bed9c2453d..751c387818 100644 --- a/e2etests/testdata/sanity/basic/dagre/board.exp.json +++ b/e2etests/testdata/sanity/basic/dagre/board.exp.json @@ -110,6 +110,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 26.5, diff --git a/e2etests/testdata/sanity/basic/dagre/sketch.exp.svg b/e2etests/testdata/sanity/basic/dagre/sketch.exp.svg index 5dd4dee499..12b615307e 100644 --- a/e2etests/testdata/sanity/basic/dagre/sketch.exp.svg +++ b/e2etests/testdata/sanity/basic/dagre/sketch.exp.svg @@ -1,9 +1,9 @@ -ab + .d2-3040958567 .fill-N1{fill:#0A0F25;} + .d2-3040958567 .fill-N2{fill:#676C7E;} + .d2-3040958567 .fill-N3{fill:#9499AB;} + .d2-3040958567 .fill-N4{fill:#CFD2DD;} + .d2-3040958567 .fill-N5{fill:#DEE1EB;} + .d2-3040958567 .fill-N6{fill:#EEF1F8;} + .d2-3040958567 .fill-N7{fill:#FFFFFF;} + .d2-3040958567 .fill-B1{fill:#0D32B2;} + .d2-3040958567 .fill-B2{fill:#0D32B2;} + .d2-3040958567 .fill-B3{fill:#E3E9FD;} + .d2-3040958567 .fill-B4{fill:#E3E9FD;} + .d2-3040958567 .fill-B5{fill:#EDF0FD;} + .d2-3040958567 .fill-B6{fill:#F7F8FE;} + .d2-3040958567 .fill-AA2{fill:#4A6FF3;} + .d2-3040958567 .fill-AA4{fill:#EDF0FD;} + .d2-3040958567 .fill-AA5{fill:#F7F8FE;} + .d2-3040958567 .fill-AB4{fill:#EDF0FD;} + .d2-3040958567 .fill-AB5{fill:#F7F8FE;} + .d2-3040958567 .stroke-N1{stroke:#0A0F25;} + .d2-3040958567 .stroke-N2{stroke:#676C7E;} + .d2-3040958567 .stroke-N3{stroke:#9499AB;} + .d2-3040958567 .stroke-N4{stroke:#CFD2DD;} + .d2-3040958567 .stroke-N5{stroke:#DEE1EB;} + .d2-3040958567 .stroke-N6{stroke:#EEF1F8;} + .d2-3040958567 .stroke-N7{stroke:#FFFFFF;} + .d2-3040958567 .stroke-B1{stroke:#0D32B2;} + .d2-3040958567 .stroke-B2{stroke:#0D32B2;} + .d2-3040958567 .stroke-B3{stroke:#E3E9FD;} + .d2-3040958567 .stroke-B4{stroke:#E3E9FD;} + .d2-3040958567 .stroke-B5{stroke:#EDF0FD;} + .d2-3040958567 .stroke-B6{stroke:#F7F8FE;} + .d2-3040958567 .stroke-AA2{stroke:#4A6FF3;} + .d2-3040958567 .stroke-AA4{stroke:#EDF0FD;} + .d2-3040958567 .stroke-AA5{stroke:#F7F8FE;} + .d2-3040958567 .stroke-AB4{stroke:#EDF0FD;} + .d2-3040958567 .stroke-AB5{stroke:#F7F8FE;} + .d2-3040958567 .background-color-N1{background-color:#0A0F25;} + .d2-3040958567 .background-color-N2{background-color:#676C7E;} + .d2-3040958567 .background-color-N3{background-color:#9499AB;} + .d2-3040958567 .background-color-N4{background-color:#CFD2DD;} + .d2-3040958567 .background-color-N5{background-color:#DEE1EB;} + .d2-3040958567 .background-color-N6{background-color:#EEF1F8;} + .d2-3040958567 .background-color-N7{background-color:#FFFFFF;} + .d2-3040958567 .background-color-B1{background-color:#0D32B2;} + .d2-3040958567 .background-color-B2{background-color:#0D32B2;} + .d2-3040958567 .background-color-B3{background-color:#E3E9FD;} + .d2-3040958567 .background-color-B4{background-color:#E3E9FD;} + .d2-3040958567 .background-color-B5{background-color:#EDF0FD;} + .d2-3040958567 .background-color-B6{background-color:#F7F8FE;} + .d2-3040958567 .background-color-AA2{background-color:#4A6FF3;} + .d2-3040958567 .background-color-AA4{background-color:#EDF0FD;} + .d2-3040958567 .background-color-AA5{background-color:#F7F8FE;} + .d2-3040958567 .background-color-AB4{background-color:#EDF0FD;} + .d2-3040958567 .background-color-AB5{background-color:#F7F8FE;} + .d2-3040958567 .color-N1{color:#0A0F25;} + .d2-3040958567 .color-N2{color:#676C7E;} + .d2-3040958567 .color-N3{color:#9499AB;} + .d2-3040958567 .color-N4{color:#CFD2DD;} + .d2-3040958567 .color-N5{color:#DEE1EB;} + .d2-3040958567 .color-N6{color:#EEF1F8;} + .d2-3040958567 .color-N7{color:#FFFFFF;} + .d2-3040958567 .color-B1{color:#0D32B2;} + .d2-3040958567 .color-B2{color:#0D32B2;} + .d2-3040958567 .color-B3{color:#E3E9FD;} + .d2-3040958567 .color-B4{color:#E3E9FD;} + .d2-3040958567 .color-B5{color:#EDF0FD;} + .d2-3040958567 .color-B6{color:#F7F8FE;} + .d2-3040958567 .color-AA2{color:#4A6FF3;} + .d2-3040958567 .color-AA4{color:#EDF0FD;} + .d2-3040958567 .color-AA5{color:#F7F8FE;} + .d2-3040958567 .color-AB4{color:#EDF0FD;} + .d2-3040958567 .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}]]>ab diff --git a/e2etests/testdata/sanity/basic/elk/board.exp.json b/e2etests/testdata/sanity/basic/elk/board.exp.json index 25d953d26a..74937eb0a6 100644 --- a/e2etests/testdata/sanity/basic/elk/board.exp.json +++ b/e2etests/testdata/sanity/basic/elk/board.exp.json @@ -110,6 +110,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 38.5, diff --git a/e2etests/testdata/sanity/basic/elk/sketch.exp.svg b/e2etests/testdata/sanity/basic/elk/sketch.exp.svg index f8ba470453..5c1a9a39dc 100644 --- a/e2etests/testdata/sanity/basic/elk/sketch.exp.svg +++ b/e2etests/testdata/sanity/basic/elk/sketch.exp.svg @@ -1,9 +1,9 @@ -ab + .d2-592164744 .fill-N1{fill:#0A0F25;} + .d2-592164744 .fill-N2{fill:#676C7E;} + .d2-592164744 .fill-N3{fill:#9499AB;} + .d2-592164744 .fill-N4{fill:#CFD2DD;} + .d2-592164744 .fill-N5{fill:#DEE1EB;} + .d2-592164744 .fill-N6{fill:#EEF1F8;} + .d2-592164744 .fill-N7{fill:#FFFFFF;} + .d2-592164744 .fill-B1{fill:#0D32B2;} + .d2-592164744 .fill-B2{fill:#0D32B2;} + .d2-592164744 .fill-B3{fill:#E3E9FD;} + .d2-592164744 .fill-B4{fill:#E3E9FD;} + .d2-592164744 .fill-B5{fill:#EDF0FD;} + .d2-592164744 .fill-B6{fill:#F7F8FE;} + .d2-592164744 .fill-AA2{fill:#4A6FF3;} + .d2-592164744 .fill-AA4{fill:#EDF0FD;} + .d2-592164744 .fill-AA5{fill:#F7F8FE;} + .d2-592164744 .fill-AB4{fill:#EDF0FD;} + .d2-592164744 .fill-AB5{fill:#F7F8FE;} + .d2-592164744 .stroke-N1{stroke:#0A0F25;} + .d2-592164744 .stroke-N2{stroke:#676C7E;} + .d2-592164744 .stroke-N3{stroke:#9499AB;} + .d2-592164744 .stroke-N4{stroke:#CFD2DD;} + .d2-592164744 .stroke-N5{stroke:#DEE1EB;} + .d2-592164744 .stroke-N6{stroke:#EEF1F8;} + .d2-592164744 .stroke-N7{stroke:#FFFFFF;} + .d2-592164744 .stroke-B1{stroke:#0D32B2;} + .d2-592164744 .stroke-B2{stroke:#0D32B2;} + .d2-592164744 .stroke-B3{stroke:#E3E9FD;} + .d2-592164744 .stroke-B4{stroke:#E3E9FD;} + .d2-592164744 .stroke-B5{stroke:#EDF0FD;} + .d2-592164744 .stroke-B6{stroke:#F7F8FE;} + .d2-592164744 .stroke-AA2{stroke:#4A6FF3;} + .d2-592164744 .stroke-AA4{stroke:#EDF0FD;} + .d2-592164744 .stroke-AA5{stroke:#F7F8FE;} + .d2-592164744 .stroke-AB4{stroke:#EDF0FD;} + .d2-592164744 .stroke-AB5{stroke:#F7F8FE;} + .d2-592164744 .background-color-N1{background-color:#0A0F25;} + .d2-592164744 .background-color-N2{background-color:#676C7E;} + .d2-592164744 .background-color-N3{background-color:#9499AB;} + .d2-592164744 .background-color-N4{background-color:#CFD2DD;} + .d2-592164744 .background-color-N5{background-color:#DEE1EB;} + .d2-592164744 .background-color-N6{background-color:#EEF1F8;} + .d2-592164744 .background-color-N7{background-color:#FFFFFF;} + .d2-592164744 .background-color-B1{background-color:#0D32B2;} + .d2-592164744 .background-color-B2{background-color:#0D32B2;} + .d2-592164744 .background-color-B3{background-color:#E3E9FD;} + .d2-592164744 .background-color-B4{background-color:#E3E9FD;} + .d2-592164744 .background-color-B5{background-color:#EDF0FD;} + .d2-592164744 .background-color-B6{background-color:#F7F8FE;} + .d2-592164744 .background-color-AA2{background-color:#4A6FF3;} + .d2-592164744 .background-color-AA4{background-color:#EDF0FD;} + .d2-592164744 .background-color-AA5{background-color:#F7F8FE;} + .d2-592164744 .background-color-AB4{background-color:#EDF0FD;} + .d2-592164744 .background-color-AB5{background-color:#F7F8FE;} + .d2-592164744 .color-N1{color:#0A0F25;} + .d2-592164744 .color-N2{color:#676C7E;} + .d2-592164744 .color-N3{color:#9499AB;} + .d2-592164744 .color-N4{color:#CFD2DD;} + .d2-592164744 .color-N5{color:#DEE1EB;} + .d2-592164744 .color-N6{color:#EEF1F8;} + .d2-592164744 .color-N7{color:#FFFFFF;} + .d2-592164744 .color-B1{color:#0D32B2;} + .d2-592164744 .color-B2{color:#0D32B2;} + .d2-592164744 .color-B3{color:#E3E9FD;} + .d2-592164744 .color-B4{color:#E3E9FD;} + .d2-592164744 .color-B5{color:#EDF0FD;} + .d2-592164744 .color-B6{color:#F7F8FE;} + .d2-592164744 .color-AA2{color:#4A6FF3;} + .d2-592164744 .color-AA4{color:#EDF0FD;} + .d2-592164744 .color-AA5{color:#F7F8FE;} + .d2-592164744 .color-AB4{color:#EDF0FD;} + .d2-592164744 .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}]]>ab diff --git a/e2etests/testdata/sanity/child_to_child/dagre/board.exp.json b/e2etests/testdata/sanity/child_to_child/dagre/board.exp.json index bbc33c06d7..8cef8ec365 100644 --- a/e2etests/testdata/sanity/child_to_child/dagre/board.exp.json +++ b/e2etests/testdata/sanity/child_to_child/dagre/board.exp.json @@ -192,6 +192,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 67, diff --git a/e2etests/testdata/sanity/child_to_child/dagre/sketch.exp.svg b/e2etests/testdata/sanity/child_to_child/dagre/sketch.exp.svg index d64e9df7c0..4ff72adb6b 100644 --- a/e2etests/testdata/sanity/child_to_child/dagre/sketch.exp.svg +++ b/e2etests/testdata/sanity/child_to_child/dagre/sketch.exp.svg @@ -1,16 +1,16 @@ -acbd + .d2-59210035 .fill-N1{fill:#0A0F25;} + .d2-59210035 .fill-N2{fill:#676C7E;} + .d2-59210035 .fill-N3{fill:#9499AB;} + .d2-59210035 .fill-N4{fill:#CFD2DD;} + .d2-59210035 .fill-N5{fill:#DEE1EB;} + .d2-59210035 .fill-N6{fill:#EEF1F8;} + .d2-59210035 .fill-N7{fill:#FFFFFF;} + .d2-59210035 .fill-B1{fill:#0D32B2;} + .d2-59210035 .fill-B2{fill:#0D32B2;} + .d2-59210035 .fill-B3{fill:#E3E9FD;} + .d2-59210035 .fill-B4{fill:#E3E9FD;} + .d2-59210035 .fill-B5{fill:#EDF0FD;} + .d2-59210035 .fill-B6{fill:#F7F8FE;} + .d2-59210035 .fill-AA2{fill:#4A6FF3;} + .d2-59210035 .fill-AA4{fill:#EDF0FD;} + .d2-59210035 .fill-AA5{fill:#F7F8FE;} + .d2-59210035 .fill-AB4{fill:#EDF0FD;} + .d2-59210035 .fill-AB5{fill:#F7F8FE;} + .d2-59210035 .stroke-N1{stroke:#0A0F25;} + .d2-59210035 .stroke-N2{stroke:#676C7E;} + .d2-59210035 .stroke-N3{stroke:#9499AB;} + .d2-59210035 .stroke-N4{stroke:#CFD2DD;} + .d2-59210035 .stroke-N5{stroke:#DEE1EB;} + .d2-59210035 .stroke-N6{stroke:#EEF1F8;} + .d2-59210035 .stroke-N7{stroke:#FFFFFF;} + .d2-59210035 .stroke-B1{stroke:#0D32B2;} + .d2-59210035 .stroke-B2{stroke:#0D32B2;} + .d2-59210035 .stroke-B3{stroke:#E3E9FD;} + .d2-59210035 .stroke-B4{stroke:#E3E9FD;} + .d2-59210035 .stroke-B5{stroke:#EDF0FD;} + .d2-59210035 .stroke-B6{stroke:#F7F8FE;} + .d2-59210035 .stroke-AA2{stroke:#4A6FF3;} + .d2-59210035 .stroke-AA4{stroke:#EDF0FD;} + .d2-59210035 .stroke-AA5{stroke:#F7F8FE;} + .d2-59210035 .stroke-AB4{stroke:#EDF0FD;} + .d2-59210035 .stroke-AB5{stroke:#F7F8FE;} + .d2-59210035 .background-color-N1{background-color:#0A0F25;} + .d2-59210035 .background-color-N2{background-color:#676C7E;} + .d2-59210035 .background-color-N3{background-color:#9499AB;} + .d2-59210035 .background-color-N4{background-color:#CFD2DD;} + .d2-59210035 .background-color-N5{background-color:#DEE1EB;} + .d2-59210035 .background-color-N6{background-color:#EEF1F8;} + .d2-59210035 .background-color-N7{background-color:#FFFFFF;} + .d2-59210035 .background-color-B1{background-color:#0D32B2;} + .d2-59210035 .background-color-B2{background-color:#0D32B2;} + .d2-59210035 .background-color-B3{background-color:#E3E9FD;} + .d2-59210035 .background-color-B4{background-color:#E3E9FD;} + .d2-59210035 .background-color-B5{background-color:#EDF0FD;} + .d2-59210035 .background-color-B6{background-color:#F7F8FE;} + .d2-59210035 .background-color-AA2{background-color:#4A6FF3;} + .d2-59210035 .background-color-AA4{background-color:#EDF0FD;} + .d2-59210035 .background-color-AA5{background-color:#F7F8FE;} + .d2-59210035 .background-color-AB4{background-color:#EDF0FD;} + .d2-59210035 .background-color-AB5{background-color:#F7F8FE;} + .d2-59210035 .color-N1{color:#0A0F25;} + .d2-59210035 .color-N2{color:#676C7E;} + .d2-59210035 .color-N3{color:#9499AB;} + .d2-59210035 .color-N4{color:#CFD2DD;} + .d2-59210035 .color-N5{color:#DEE1EB;} + .d2-59210035 .color-N6{color:#EEF1F8;} + .d2-59210035 .color-N7{color:#FFFFFF;} + .d2-59210035 .color-B1{color:#0D32B2;} + .d2-59210035 .color-B2{color:#0D32B2;} + .d2-59210035 .color-B3{color:#E3E9FD;} + .d2-59210035 .color-B4{color:#E3E9FD;} + .d2-59210035 .color-B5{color:#EDF0FD;} + .d2-59210035 .color-B6{color:#F7F8FE;} + .d2-59210035 .color-AA2{color:#4A6FF3;} + .d2-59210035 .color-AA4{color:#EDF0FD;} + .d2-59210035 .color-AA5{color:#F7F8FE;} + .d2-59210035 .color-AB4{color:#EDF0FD;} + .d2-59210035 .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}]]>acbd diff --git a/e2etests/testdata/sanity/child_to_child/elk/board.exp.json b/e2etests/testdata/sanity/child_to_child/elk/board.exp.json index 30d201203c..ba22135e93 100644 --- a/e2etests/testdata/sanity/child_to_child/elk/board.exp.json +++ b/e2etests/testdata/sanity/child_to_child/elk/board.exp.json @@ -192,6 +192,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 89, diff --git a/e2etests/testdata/sanity/child_to_child/elk/sketch.exp.svg b/e2etests/testdata/sanity/child_to_child/elk/sketch.exp.svg index b6743cec6b..e7c921ed23 100644 --- a/e2etests/testdata/sanity/child_to_child/elk/sketch.exp.svg +++ b/e2etests/testdata/sanity/child_to_child/elk/sketch.exp.svg @@ -1,16 +1,16 @@ -acbd + .d2-2349687548 .fill-N1{fill:#0A0F25;} + .d2-2349687548 .fill-N2{fill:#676C7E;} + .d2-2349687548 .fill-N3{fill:#9499AB;} + .d2-2349687548 .fill-N4{fill:#CFD2DD;} + .d2-2349687548 .fill-N5{fill:#DEE1EB;} + .d2-2349687548 .fill-N6{fill:#EEF1F8;} + .d2-2349687548 .fill-N7{fill:#FFFFFF;} + .d2-2349687548 .fill-B1{fill:#0D32B2;} + .d2-2349687548 .fill-B2{fill:#0D32B2;} + .d2-2349687548 .fill-B3{fill:#E3E9FD;} + .d2-2349687548 .fill-B4{fill:#E3E9FD;} + .d2-2349687548 .fill-B5{fill:#EDF0FD;} + .d2-2349687548 .fill-B6{fill:#F7F8FE;} + .d2-2349687548 .fill-AA2{fill:#4A6FF3;} + .d2-2349687548 .fill-AA4{fill:#EDF0FD;} + .d2-2349687548 .fill-AA5{fill:#F7F8FE;} + .d2-2349687548 .fill-AB4{fill:#EDF0FD;} + .d2-2349687548 .fill-AB5{fill:#F7F8FE;} + .d2-2349687548 .stroke-N1{stroke:#0A0F25;} + .d2-2349687548 .stroke-N2{stroke:#676C7E;} + .d2-2349687548 .stroke-N3{stroke:#9499AB;} + .d2-2349687548 .stroke-N4{stroke:#CFD2DD;} + .d2-2349687548 .stroke-N5{stroke:#DEE1EB;} + .d2-2349687548 .stroke-N6{stroke:#EEF1F8;} + .d2-2349687548 .stroke-N7{stroke:#FFFFFF;} + .d2-2349687548 .stroke-B1{stroke:#0D32B2;} + .d2-2349687548 .stroke-B2{stroke:#0D32B2;} + .d2-2349687548 .stroke-B3{stroke:#E3E9FD;} + .d2-2349687548 .stroke-B4{stroke:#E3E9FD;} + .d2-2349687548 .stroke-B5{stroke:#EDF0FD;} + .d2-2349687548 .stroke-B6{stroke:#F7F8FE;} + .d2-2349687548 .stroke-AA2{stroke:#4A6FF3;} + .d2-2349687548 .stroke-AA4{stroke:#EDF0FD;} + .d2-2349687548 .stroke-AA5{stroke:#F7F8FE;} + .d2-2349687548 .stroke-AB4{stroke:#EDF0FD;} + .d2-2349687548 .stroke-AB5{stroke:#F7F8FE;} + .d2-2349687548 .background-color-N1{background-color:#0A0F25;} + .d2-2349687548 .background-color-N2{background-color:#676C7E;} + .d2-2349687548 .background-color-N3{background-color:#9499AB;} + .d2-2349687548 .background-color-N4{background-color:#CFD2DD;} + .d2-2349687548 .background-color-N5{background-color:#DEE1EB;} + .d2-2349687548 .background-color-N6{background-color:#EEF1F8;} + .d2-2349687548 .background-color-N7{background-color:#FFFFFF;} + .d2-2349687548 .background-color-B1{background-color:#0D32B2;} + .d2-2349687548 .background-color-B2{background-color:#0D32B2;} + .d2-2349687548 .background-color-B3{background-color:#E3E9FD;} + .d2-2349687548 .background-color-B4{background-color:#E3E9FD;} + .d2-2349687548 .background-color-B5{background-color:#EDF0FD;} + .d2-2349687548 .background-color-B6{background-color:#F7F8FE;} + .d2-2349687548 .background-color-AA2{background-color:#4A6FF3;} + .d2-2349687548 .background-color-AA4{background-color:#EDF0FD;} + .d2-2349687548 .background-color-AA5{background-color:#F7F8FE;} + .d2-2349687548 .background-color-AB4{background-color:#EDF0FD;} + .d2-2349687548 .background-color-AB5{background-color:#F7F8FE;} + .d2-2349687548 .color-N1{color:#0A0F25;} + .d2-2349687548 .color-N2{color:#676C7E;} + .d2-2349687548 .color-N3{color:#9499AB;} + .d2-2349687548 .color-N4{color:#CFD2DD;} + .d2-2349687548 .color-N5{color:#DEE1EB;} + .d2-2349687548 .color-N6{color:#EEF1F8;} + .d2-2349687548 .color-N7{color:#FFFFFF;} + .d2-2349687548 .color-B1{color:#0D32B2;} + .d2-2349687548 .color-B2{color:#0D32B2;} + .d2-2349687548 .color-B3{color:#E3E9FD;} + .d2-2349687548 .color-B4{color:#E3E9FD;} + .d2-2349687548 .color-B5{color:#EDF0FD;} + .d2-2349687548 .color-B6{color:#F7F8FE;} + .d2-2349687548 .color-AA2{color:#4A6FF3;} + .d2-2349687548 .color-AA4{color:#EDF0FD;} + .d2-2349687548 .color-AA5{color:#F7F8FE;} + .d2-2349687548 .color-AB4{color:#EDF0FD;} + .d2-2349687548 .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}]]>acbd diff --git a/e2etests/testdata/sanity/connection_label/dagre/board.exp.json b/e2etests/testdata/sanity/connection_label/dagre/board.exp.json index 434db15e4d..c48415d189 100644 --- a/e2etests/testdata/sanity/connection_label/dagre/board.exp.json +++ b/e2etests/testdata/sanity/connection_label/dagre/board.exp.json @@ -110,6 +110,7 @@ "labelHeight": 21, "labelPosition": "INSIDE_MIDDLE_CENTER", "labelPercentage": 0, + "link": "", "route": [ { "x": 26.5, diff --git a/e2etests/testdata/sanity/connection_label/dagre/sketch.exp.svg b/e2etests/testdata/sanity/connection_label/dagre/sketch.exp.svg index 8696e9ceb9..d3cffdd21b 100644 --- a/e2etests/testdata/sanity/connection_label/dagre/sketch.exp.svg +++ b/e2etests/testdata/sanity/connection_label/dagre/sketch.exp.svg @@ -1,16 +1,16 @@ -ab hello + .d2-3049216668 .fill-N1{fill:#0A0F25;} + .d2-3049216668 .fill-N2{fill:#676C7E;} + .d2-3049216668 .fill-N3{fill:#9499AB;} + .d2-3049216668 .fill-N4{fill:#CFD2DD;} + .d2-3049216668 .fill-N5{fill:#DEE1EB;} + .d2-3049216668 .fill-N6{fill:#EEF1F8;} + .d2-3049216668 .fill-N7{fill:#FFFFFF;} + .d2-3049216668 .fill-B1{fill:#0D32B2;} + .d2-3049216668 .fill-B2{fill:#0D32B2;} + .d2-3049216668 .fill-B3{fill:#E3E9FD;} + .d2-3049216668 .fill-B4{fill:#E3E9FD;} + .d2-3049216668 .fill-B5{fill:#EDF0FD;} + .d2-3049216668 .fill-B6{fill:#F7F8FE;} + .d2-3049216668 .fill-AA2{fill:#4A6FF3;} + .d2-3049216668 .fill-AA4{fill:#EDF0FD;} + .d2-3049216668 .fill-AA5{fill:#F7F8FE;} + .d2-3049216668 .fill-AB4{fill:#EDF0FD;} + .d2-3049216668 .fill-AB5{fill:#F7F8FE;} + .d2-3049216668 .stroke-N1{stroke:#0A0F25;} + .d2-3049216668 .stroke-N2{stroke:#676C7E;} + .d2-3049216668 .stroke-N3{stroke:#9499AB;} + .d2-3049216668 .stroke-N4{stroke:#CFD2DD;} + .d2-3049216668 .stroke-N5{stroke:#DEE1EB;} + .d2-3049216668 .stroke-N6{stroke:#EEF1F8;} + .d2-3049216668 .stroke-N7{stroke:#FFFFFF;} + .d2-3049216668 .stroke-B1{stroke:#0D32B2;} + .d2-3049216668 .stroke-B2{stroke:#0D32B2;} + .d2-3049216668 .stroke-B3{stroke:#E3E9FD;} + .d2-3049216668 .stroke-B4{stroke:#E3E9FD;} + .d2-3049216668 .stroke-B5{stroke:#EDF0FD;} + .d2-3049216668 .stroke-B6{stroke:#F7F8FE;} + .d2-3049216668 .stroke-AA2{stroke:#4A6FF3;} + .d2-3049216668 .stroke-AA4{stroke:#EDF0FD;} + .d2-3049216668 .stroke-AA5{stroke:#F7F8FE;} + .d2-3049216668 .stroke-AB4{stroke:#EDF0FD;} + .d2-3049216668 .stroke-AB5{stroke:#F7F8FE;} + .d2-3049216668 .background-color-N1{background-color:#0A0F25;} + .d2-3049216668 .background-color-N2{background-color:#676C7E;} + .d2-3049216668 .background-color-N3{background-color:#9499AB;} + .d2-3049216668 .background-color-N4{background-color:#CFD2DD;} + .d2-3049216668 .background-color-N5{background-color:#DEE1EB;} + .d2-3049216668 .background-color-N6{background-color:#EEF1F8;} + .d2-3049216668 .background-color-N7{background-color:#FFFFFF;} + .d2-3049216668 .background-color-B1{background-color:#0D32B2;} + .d2-3049216668 .background-color-B2{background-color:#0D32B2;} + .d2-3049216668 .background-color-B3{background-color:#E3E9FD;} + .d2-3049216668 .background-color-B4{background-color:#E3E9FD;} + .d2-3049216668 .background-color-B5{background-color:#EDF0FD;} + .d2-3049216668 .background-color-B6{background-color:#F7F8FE;} + .d2-3049216668 .background-color-AA2{background-color:#4A6FF3;} + .d2-3049216668 .background-color-AA4{background-color:#EDF0FD;} + .d2-3049216668 .background-color-AA5{background-color:#F7F8FE;} + .d2-3049216668 .background-color-AB4{background-color:#EDF0FD;} + .d2-3049216668 .background-color-AB5{background-color:#F7F8FE;} + .d2-3049216668 .color-N1{color:#0A0F25;} + .d2-3049216668 .color-N2{color:#676C7E;} + .d2-3049216668 .color-N3{color:#9499AB;} + .d2-3049216668 .color-N4{color:#CFD2DD;} + .d2-3049216668 .color-N5{color:#DEE1EB;} + .d2-3049216668 .color-N6{color:#EEF1F8;} + .d2-3049216668 .color-N7{color:#FFFFFF;} + .d2-3049216668 .color-B1{color:#0D32B2;} + .d2-3049216668 .color-B2{color:#0D32B2;} + .d2-3049216668 .color-B3{color:#E3E9FD;} + .d2-3049216668 .color-B4{color:#E3E9FD;} + .d2-3049216668 .color-B5{color:#EDF0FD;} + .d2-3049216668 .color-B6{color:#F7F8FE;} + .d2-3049216668 .color-AA2{color:#4A6FF3;} + .d2-3049216668 .color-AA4{color:#EDF0FD;} + .d2-3049216668 .color-AA5{color:#F7F8FE;} + .d2-3049216668 .color-AB4{color:#EDF0FD;} + .d2-3049216668 .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}]]>ab hello diff --git a/e2etests/testdata/sanity/connection_label/elk/board.exp.json b/e2etests/testdata/sanity/connection_label/elk/board.exp.json index bb0ef2bdff..f25e1e246d 100644 --- a/e2etests/testdata/sanity/connection_label/elk/board.exp.json +++ b/e2etests/testdata/sanity/connection_label/elk/board.exp.json @@ -110,6 +110,7 @@ "labelHeight": 21, "labelPosition": "INSIDE_MIDDLE_CENTER", "labelPercentage": 0, + "link": "", "route": [ { "x": 38.5, diff --git a/e2etests/testdata/sanity/connection_label/elk/sketch.exp.svg b/e2etests/testdata/sanity/connection_label/elk/sketch.exp.svg index 923119a70b..82e6506c5b 100644 --- a/e2etests/testdata/sanity/connection_label/elk/sketch.exp.svg +++ b/e2etests/testdata/sanity/connection_label/elk/sketch.exp.svg @@ -1,16 +1,16 @@ -ab hello + .d2-3225149769 .fill-N1{fill:#0A0F25;} + .d2-3225149769 .fill-N2{fill:#676C7E;} + .d2-3225149769 .fill-N3{fill:#9499AB;} + .d2-3225149769 .fill-N4{fill:#CFD2DD;} + .d2-3225149769 .fill-N5{fill:#DEE1EB;} + .d2-3225149769 .fill-N6{fill:#EEF1F8;} + .d2-3225149769 .fill-N7{fill:#FFFFFF;} + .d2-3225149769 .fill-B1{fill:#0D32B2;} + .d2-3225149769 .fill-B2{fill:#0D32B2;} + .d2-3225149769 .fill-B3{fill:#E3E9FD;} + .d2-3225149769 .fill-B4{fill:#E3E9FD;} + .d2-3225149769 .fill-B5{fill:#EDF0FD;} + .d2-3225149769 .fill-B6{fill:#F7F8FE;} + .d2-3225149769 .fill-AA2{fill:#4A6FF3;} + .d2-3225149769 .fill-AA4{fill:#EDF0FD;} + .d2-3225149769 .fill-AA5{fill:#F7F8FE;} + .d2-3225149769 .fill-AB4{fill:#EDF0FD;} + .d2-3225149769 .fill-AB5{fill:#F7F8FE;} + .d2-3225149769 .stroke-N1{stroke:#0A0F25;} + .d2-3225149769 .stroke-N2{stroke:#676C7E;} + .d2-3225149769 .stroke-N3{stroke:#9499AB;} + .d2-3225149769 .stroke-N4{stroke:#CFD2DD;} + .d2-3225149769 .stroke-N5{stroke:#DEE1EB;} + .d2-3225149769 .stroke-N6{stroke:#EEF1F8;} + .d2-3225149769 .stroke-N7{stroke:#FFFFFF;} + .d2-3225149769 .stroke-B1{stroke:#0D32B2;} + .d2-3225149769 .stroke-B2{stroke:#0D32B2;} + .d2-3225149769 .stroke-B3{stroke:#E3E9FD;} + .d2-3225149769 .stroke-B4{stroke:#E3E9FD;} + .d2-3225149769 .stroke-B5{stroke:#EDF0FD;} + .d2-3225149769 .stroke-B6{stroke:#F7F8FE;} + .d2-3225149769 .stroke-AA2{stroke:#4A6FF3;} + .d2-3225149769 .stroke-AA4{stroke:#EDF0FD;} + .d2-3225149769 .stroke-AA5{stroke:#F7F8FE;} + .d2-3225149769 .stroke-AB4{stroke:#EDF0FD;} + .d2-3225149769 .stroke-AB5{stroke:#F7F8FE;} + .d2-3225149769 .background-color-N1{background-color:#0A0F25;} + .d2-3225149769 .background-color-N2{background-color:#676C7E;} + .d2-3225149769 .background-color-N3{background-color:#9499AB;} + .d2-3225149769 .background-color-N4{background-color:#CFD2DD;} + .d2-3225149769 .background-color-N5{background-color:#DEE1EB;} + .d2-3225149769 .background-color-N6{background-color:#EEF1F8;} + .d2-3225149769 .background-color-N7{background-color:#FFFFFF;} + .d2-3225149769 .background-color-B1{background-color:#0D32B2;} + .d2-3225149769 .background-color-B2{background-color:#0D32B2;} + .d2-3225149769 .background-color-B3{background-color:#E3E9FD;} + .d2-3225149769 .background-color-B4{background-color:#E3E9FD;} + .d2-3225149769 .background-color-B5{background-color:#EDF0FD;} + .d2-3225149769 .background-color-B6{background-color:#F7F8FE;} + .d2-3225149769 .background-color-AA2{background-color:#4A6FF3;} + .d2-3225149769 .background-color-AA4{background-color:#EDF0FD;} + .d2-3225149769 .background-color-AA5{background-color:#F7F8FE;} + .d2-3225149769 .background-color-AB4{background-color:#EDF0FD;} + .d2-3225149769 .background-color-AB5{background-color:#F7F8FE;} + .d2-3225149769 .color-N1{color:#0A0F25;} + .d2-3225149769 .color-N2{color:#676C7E;} + .d2-3225149769 .color-N3{color:#9499AB;} + .d2-3225149769 .color-N4{color:#CFD2DD;} + .d2-3225149769 .color-N5{color:#DEE1EB;} + .d2-3225149769 .color-N6{color:#EEF1F8;} + .d2-3225149769 .color-N7{color:#FFFFFF;} + .d2-3225149769 .color-B1{color:#0D32B2;} + .d2-3225149769 .color-B2{color:#0D32B2;} + .d2-3225149769 .color-B3{color:#E3E9FD;} + .d2-3225149769 .color-B4{color:#E3E9FD;} + .d2-3225149769 .color-B5{color:#EDF0FD;} + .d2-3225149769 .color-B6{color:#F7F8FE;} + .d2-3225149769 .color-AA2{color:#4A6FF3;} + .d2-3225149769 .color-AA4{color:#EDF0FD;} + .d2-3225149769 .color-AA5{color:#F7F8FE;} + .d2-3225149769 .color-AB4{color:#EDF0FD;} + .d2-3225149769 .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}]]>ab hello diff --git a/e2etests/testdata/stable/3d_fill_and_stroke/dagre/board.exp.json b/e2etests/testdata/stable/3d_fill_and_stroke/dagre/board.exp.json index 34bc15428e..3c0ada10ee 100644 --- a/e2etests/testdata/stable/3d_fill_and_stroke/dagre/board.exp.json +++ b/e2etests/testdata/stable/3d_fill_and_stroke/dagre/board.exp.json @@ -151,6 +151,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 64, @@ -198,6 +199,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 64, diff --git a/e2etests/testdata/stable/3d_fill_and_stroke/dagre/sketch.exp.svg b/e2etests/testdata/stable/3d_fill_and_stroke/dagre/sketch.exp.svg index 0d6c3c406b..cf81f35213 100644 --- a/e2etests/testdata/stable/3d_fill_and_stroke/dagre/sketch.exp.svg +++ b/e2etests/testdata/stable/3d_fill_and_stroke/dagre/sketch.exp.svg @@ -1,9 +1,9 @@ - + .d2-2917221797 .fill-N1{fill:#0A0F25;} + .d2-2917221797 .fill-N2{fill:#676C7E;} + .d2-2917221797 .fill-N3{fill:#9499AB;} + .d2-2917221797 .fill-N4{fill:#CFD2DD;} + .d2-2917221797 .fill-N5{fill:#DEE1EB;} + .d2-2917221797 .fill-N6{fill:#EEF1F8;} + .d2-2917221797 .fill-N7{fill:#FFFFFF;} + .d2-2917221797 .fill-B1{fill:#0D32B2;} + .d2-2917221797 .fill-B2{fill:#0D32B2;} + .d2-2917221797 .fill-B3{fill:#E3E9FD;} + .d2-2917221797 .fill-B4{fill:#E3E9FD;} + .d2-2917221797 .fill-B5{fill:#EDF0FD;} + .d2-2917221797 .fill-B6{fill:#F7F8FE;} + .d2-2917221797 .fill-AA2{fill:#4A6FF3;} + .d2-2917221797 .fill-AA4{fill:#EDF0FD;} + .d2-2917221797 .fill-AA5{fill:#F7F8FE;} + .d2-2917221797 .fill-AB4{fill:#EDF0FD;} + .d2-2917221797 .fill-AB5{fill:#F7F8FE;} + .d2-2917221797 .stroke-N1{stroke:#0A0F25;} + .d2-2917221797 .stroke-N2{stroke:#676C7E;} + .d2-2917221797 .stroke-N3{stroke:#9499AB;} + .d2-2917221797 .stroke-N4{stroke:#CFD2DD;} + .d2-2917221797 .stroke-N5{stroke:#DEE1EB;} + .d2-2917221797 .stroke-N6{stroke:#EEF1F8;} + .d2-2917221797 .stroke-N7{stroke:#FFFFFF;} + .d2-2917221797 .stroke-B1{stroke:#0D32B2;} + .d2-2917221797 .stroke-B2{stroke:#0D32B2;} + .d2-2917221797 .stroke-B3{stroke:#E3E9FD;} + .d2-2917221797 .stroke-B4{stroke:#E3E9FD;} + .d2-2917221797 .stroke-B5{stroke:#EDF0FD;} + .d2-2917221797 .stroke-B6{stroke:#F7F8FE;} + .d2-2917221797 .stroke-AA2{stroke:#4A6FF3;} + .d2-2917221797 .stroke-AA4{stroke:#EDF0FD;} + .d2-2917221797 .stroke-AA5{stroke:#F7F8FE;} + .d2-2917221797 .stroke-AB4{stroke:#EDF0FD;} + .d2-2917221797 .stroke-AB5{stroke:#F7F8FE;} + .d2-2917221797 .background-color-N1{background-color:#0A0F25;} + .d2-2917221797 .background-color-N2{background-color:#676C7E;} + .d2-2917221797 .background-color-N3{background-color:#9499AB;} + .d2-2917221797 .background-color-N4{background-color:#CFD2DD;} + .d2-2917221797 .background-color-N5{background-color:#DEE1EB;} + .d2-2917221797 .background-color-N6{background-color:#EEF1F8;} + .d2-2917221797 .background-color-N7{background-color:#FFFFFF;} + .d2-2917221797 .background-color-B1{background-color:#0D32B2;} + .d2-2917221797 .background-color-B2{background-color:#0D32B2;} + .d2-2917221797 .background-color-B3{background-color:#E3E9FD;} + .d2-2917221797 .background-color-B4{background-color:#E3E9FD;} + .d2-2917221797 .background-color-B5{background-color:#EDF0FD;} + .d2-2917221797 .background-color-B6{background-color:#F7F8FE;} + .d2-2917221797 .background-color-AA2{background-color:#4A6FF3;} + .d2-2917221797 .background-color-AA4{background-color:#EDF0FD;} + .d2-2917221797 .background-color-AA5{background-color:#F7F8FE;} + .d2-2917221797 .background-color-AB4{background-color:#EDF0FD;} + .d2-2917221797 .background-color-AB5{background-color:#F7F8FE;} + .d2-2917221797 .color-N1{color:#0A0F25;} + .d2-2917221797 .color-N2{color:#676C7E;} + .d2-2917221797 .color-N3{color:#9499AB;} + .d2-2917221797 .color-N4{color:#CFD2DD;} + .d2-2917221797 .color-N5{color:#DEE1EB;} + .d2-2917221797 .color-N6{color:#EEF1F8;} + .d2-2917221797 .color-N7{color:#FFFFFF;} + .d2-2917221797 .color-B1{color:#0D32B2;} + .d2-2917221797 .color-B2{color:#0D32B2;} + .d2-2917221797 .color-B3{color:#E3E9FD;} + .d2-2917221797 .color-B4{color:#E3E9FD;} + .d2-2917221797 .color-B5{color:#EDF0FD;} + .d2-2917221797 .color-B6{color:#F7F8FE;} + .d2-2917221797 .color-AA2{color:#4A6FF3;} + .d2-2917221797 .color-AA4{color:#EDF0FD;} + .d2-2917221797 .color-AA5{color:#F7F8FE;} + .d2-2917221797 .color-AB4{color:#EDF0FD;} + .d2-2917221797 .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}]]> hexagon rect -square +square diff --git a/e2etests/testdata/stable/3d_fill_and_stroke/elk/board.exp.json b/e2etests/testdata/stable/3d_fill_and_stroke/elk/board.exp.json index 23adad5c42..6302b1ad2d 100644 --- a/e2etests/testdata/stable/3d_fill_and_stroke/elk/board.exp.json +++ b/e2etests/testdata/stable/3d_fill_and_stroke/elk/board.exp.json @@ -151,6 +151,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 84, @@ -189,6 +190,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 83.5, diff --git a/e2etests/testdata/stable/3d_fill_and_stroke/elk/sketch.exp.svg b/e2etests/testdata/stable/3d_fill_and_stroke/elk/sketch.exp.svg index eda8a0de00..d046340ad8 100644 --- a/e2etests/testdata/stable/3d_fill_and_stroke/elk/sketch.exp.svg +++ b/e2etests/testdata/stable/3d_fill_and_stroke/elk/sketch.exp.svg @@ -1,9 +1,9 @@ - + .d2-1344858361 .fill-N1{fill:#0A0F25;} + .d2-1344858361 .fill-N2{fill:#676C7E;} + .d2-1344858361 .fill-N3{fill:#9499AB;} + .d2-1344858361 .fill-N4{fill:#CFD2DD;} + .d2-1344858361 .fill-N5{fill:#DEE1EB;} + .d2-1344858361 .fill-N6{fill:#EEF1F8;} + .d2-1344858361 .fill-N7{fill:#FFFFFF;} + .d2-1344858361 .fill-B1{fill:#0D32B2;} + .d2-1344858361 .fill-B2{fill:#0D32B2;} + .d2-1344858361 .fill-B3{fill:#E3E9FD;} + .d2-1344858361 .fill-B4{fill:#E3E9FD;} + .d2-1344858361 .fill-B5{fill:#EDF0FD;} + .d2-1344858361 .fill-B6{fill:#F7F8FE;} + .d2-1344858361 .fill-AA2{fill:#4A6FF3;} + .d2-1344858361 .fill-AA4{fill:#EDF0FD;} + .d2-1344858361 .fill-AA5{fill:#F7F8FE;} + .d2-1344858361 .fill-AB4{fill:#EDF0FD;} + .d2-1344858361 .fill-AB5{fill:#F7F8FE;} + .d2-1344858361 .stroke-N1{stroke:#0A0F25;} + .d2-1344858361 .stroke-N2{stroke:#676C7E;} + .d2-1344858361 .stroke-N3{stroke:#9499AB;} + .d2-1344858361 .stroke-N4{stroke:#CFD2DD;} + .d2-1344858361 .stroke-N5{stroke:#DEE1EB;} + .d2-1344858361 .stroke-N6{stroke:#EEF1F8;} + .d2-1344858361 .stroke-N7{stroke:#FFFFFF;} + .d2-1344858361 .stroke-B1{stroke:#0D32B2;} + .d2-1344858361 .stroke-B2{stroke:#0D32B2;} + .d2-1344858361 .stroke-B3{stroke:#E3E9FD;} + .d2-1344858361 .stroke-B4{stroke:#E3E9FD;} + .d2-1344858361 .stroke-B5{stroke:#EDF0FD;} + .d2-1344858361 .stroke-B6{stroke:#F7F8FE;} + .d2-1344858361 .stroke-AA2{stroke:#4A6FF3;} + .d2-1344858361 .stroke-AA4{stroke:#EDF0FD;} + .d2-1344858361 .stroke-AA5{stroke:#F7F8FE;} + .d2-1344858361 .stroke-AB4{stroke:#EDF0FD;} + .d2-1344858361 .stroke-AB5{stroke:#F7F8FE;} + .d2-1344858361 .background-color-N1{background-color:#0A0F25;} + .d2-1344858361 .background-color-N2{background-color:#676C7E;} + .d2-1344858361 .background-color-N3{background-color:#9499AB;} + .d2-1344858361 .background-color-N4{background-color:#CFD2DD;} + .d2-1344858361 .background-color-N5{background-color:#DEE1EB;} + .d2-1344858361 .background-color-N6{background-color:#EEF1F8;} + .d2-1344858361 .background-color-N7{background-color:#FFFFFF;} + .d2-1344858361 .background-color-B1{background-color:#0D32B2;} + .d2-1344858361 .background-color-B2{background-color:#0D32B2;} + .d2-1344858361 .background-color-B3{background-color:#E3E9FD;} + .d2-1344858361 .background-color-B4{background-color:#E3E9FD;} + .d2-1344858361 .background-color-B5{background-color:#EDF0FD;} + .d2-1344858361 .background-color-B6{background-color:#F7F8FE;} + .d2-1344858361 .background-color-AA2{background-color:#4A6FF3;} + .d2-1344858361 .background-color-AA4{background-color:#EDF0FD;} + .d2-1344858361 .background-color-AA5{background-color:#F7F8FE;} + .d2-1344858361 .background-color-AB4{background-color:#EDF0FD;} + .d2-1344858361 .background-color-AB5{background-color:#F7F8FE;} + .d2-1344858361 .color-N1{color:#0A0F25;} + .d2-1344858361 .color-N2{color:#676C7E;} + .d2-1344858361 .color-N3{color:#9499AB;} + .d2-1344858361 .color-N4{color:#CFD2DD;} + .d2-1344858361 .color-N5{color:#DEE1EB;} + .d2-1344858361 .color-N6{color:#EEF1F8;} + .d2-1344858361 .color-N7{color:#FFFFFF;} + .d2-1344858361 .color-B1{color:#0D32B2;} + .d2-1344858361 .color-B2{color:#0D32B2;} + .d2-1344858361 .color-B3{color:#E3E9FD;} + .d2-1344858361 .color-B4{color:#E3E9FD;} + .d2-1344858361 .color-B5{color:#EDF0FD;} + .d2-1344858361 .color-B6{color:#F7F8FE;} + .d2-1344858361 .color-AA2{color:#4A6FF3;} + .d2-1344858361 .color-AA4{color:#EDF0FD;} + .d2-1344858361 .color-AA5{color:#F7F8FE;} + .d2-1344858361 .color-AB4{color:#EDF0FD;} + .d2-1344858361 .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}]]> hexagon rect -square +square diff --git a/e2etests/testdata/stable/all_shapes/dagre/board.exp.json b/e2etests/testdata/stable/all_shapes/dagre/board.exp.json index 27bd77abee..b1500c78a9 100644 --- a/e2etests/testdata/stable/all_shapes/dagre/board.exp.json +++ b/e2etests/testdata/stable/all_shapes/dagre/board.exp.json @@ -726,6 +726,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 55.5, @@ -773,6 +774,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 55.5, @@ -820,6 +822,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 269, @@ -867,6 +870,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 269, @@ -914,6 +918,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 497, @@ -961,6 +966,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 497, @@ -1008,6 +1014,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 685, @@ -1055,6 +1062,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 684, @@ -1102,6 +1110,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 870, @@ -1149,6 +1158,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 870, @@ -1196,6 +1206,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 1072, diff --git a/e2etests/testdata/stable/all_shapes/dagre/sketch.exp.svg b/e2etests/testdata/stable/all_shapes/dagre/sketch.exp.svg index 60973ab841..aa01bca1a1 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-1581150626 .fill-N1{fill:#0A0F25;} + .d2-1581150626 .fill-N2{fill:#676C7E;} + .d2-1581150626 .fill-N3{fill:#9499AB;} + .d2-1581150626 .fill-N4{fill:#CFD2DD;} + .d2-1581150626 .fill-N5{fill:#DEE1EB;} + .d2-1581150626 .fill-N6{fill:#EEF1F8;} + .d2-1581150626 .fill-N7{fill:#FFFFFF;} + .d2-1581150626 .fill-B1{fill:#0D32B2;} + .d2-1581150626 .fill-B2{fill:#0D32B2;} + .d2-1581150626 .fill-B3{fill:#E3E9FD;} + .d2-1581150626 .fill-B4{fill:#E3E9FD;} + .d2-1581150626 .fill-B5{fill:#EDF0FD;} + .d2-1581150626 .fill-B6{fill:#F7F8FE;} + .d2-1581150626 .fill-AA2{fill:#4A6FF3;} + .d2-1581150626 .fill-AA4{fill:#EDF0FD;} + .d2-1581150626 .fill-AA5{fill:#F7F8FE;} + .d2-1581150626 .fill-AB4{fill:#EDF0FD;} + .d2-1581150626 .fill-AB5{fill:#F7F8FE;} + .d2-1581150626 .stroke-N1{stroke:#0A0F25;} + .d2-1581150626 .stroke-N2{stroke:#676C7E;} + .d2-1581150626 .stroke-N3{stroke:#9499AB;} + .d2-1581150626 .stroke-N4{stroke:#CFD2DD;} + .d2-1581150626 .stroke-N5{stroke:#DEE1EB;} + .d2-1581150626 .stroke-N6{stroke:#EEF1F8;} + .d2-1581150626 .stroke-N7{stroke:#FFFFFF;} + .d2-1581150626 .stroke-B1{stroke:#0D32B2;} + .d2-1581150626 .stroke-B2{stroke:#0D32B2;} + .d2-1581150626 .stroke-B3{stroke:#E3E9FD;} + .d2-1581150626 .stroke-B4{stroke:#E3E9FD;} + .d2-1581150626 .stroke-B5{stroke:#EDF0FD;} + .d2-1581150626 .stroke-B6{stroke:#F7F8FE;} + .d2-1581150626 .stroke-AA2{stroke:#4A6FF3;} + .d2-1581150626 .stroke-AA4{stroke:#EDF0FD;} + .d2-1581150626 .stroke-AA5{stroke:#F7F8FE;} + .d2-1581150626 .stroke-AB4{stroke:#EDF0FD;} + .d2-1581150626 .stroke-AB5{stroke:#F7F8FE;} + .d2-1581150626 .background-color-N1{background-color:#0A0F25;} + .d2-1581150626 .background-color-N2{background-color:#676C7E;} + .d2-1581150626 .background-color-N3{background-color:#9499AB;} + .d2-1581150626 .background-color-N4{background-color:#CFD2DD;} + .d2-1581150626 .background-color-N5{background-color:#DEE1EB;} + .d2-1581150626 .background-color-N6{background-color:#EEF1F8;} + .d2-1581150626 .background-color-N7{background-color:#FFFFFF;} + .d2-1581150626 .background-color-B1{background-color:#0D32B2;} + .d2-1581150626 .background-color-B2{background-color:#0D32B2;} + .d2-1581150626 .background-color-B3{background-color:#E3E9FD;} + .d2-1581150626 .background-color-B4{background-color:#E3E9FD;} + .d2-1581150626 .background-color-B5{background-color:#EDF0FD;} + .d2-1581150626 .background-color-B6{background-color:#F7F8FE;} + .d2-1581150626 .background-color-AA2{background-color:#4A6FF3;} + .d2-1581150626 .background-color-AA4{background-color:#EDF0FD;} + .d2-1581150626 .background-color-AA5{background-color:#F7F8FE;} + .d2-1581150626 .background-color-AB4{background-color:#EDF0FD;} + .d2-1581150626 .background-color-AB5{background-color:#F7F8FE;} + .d2-1581150626 .color-N1{color:#0A0F25;} + .d2-1581150626 .color-N2{color:#676C7E;} + .d2-1581150626 .color-N3{color:#9499AB;} + .d2-1581150626 .color-N4{color:#CFD2DD;} + .d2-1581150626 .color-N5{color:#DEE1EB;} + .d2-1581150626 .color-N6{color:#EEF1F8;} + .d2-1581150626 .color-N7{color:#FFFFFF;} + .d2-1581150626 .color-B1{color:#0D32B2;} + .d2-1581150626 .color-B2{color:#0D32B2;} + .d2-1581150626 .color-B3{color:#E3E9FD;} + .d2-1581150626 .color-B4{color:#E3E9FD;} + .d2-1581150626 .color-B5{color:#EDF0FD;} + .d2-1581150626 .color-B6{color:#F7F8FE;} + .d2-1581150626 .color-AA2{color:#4A6FF3;} + .d2-1581150626 .color-AA4{color:#EDF0FD;} + .d2-1581150626 .color-AA5{color:#F7F8FE;} + .d2-1581150626 .color-AB4{color:#EDF0FD;} + .d2-1581150626 .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..5c32d0d166 100644 --- a/e2etests/testdata/stable/all_shapes/elk/board.exp.json +++ b/e2etests/testdata/stable/all_shapes/elk/board.exp.json @@ -726,6 +726,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 67.5, @@ -764,6 +765,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 67.5, @@ -802,6 +804,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 241, @@ -840,6 +843,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 241, @@ -878,6 +882,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 429, @@ -916,6 +921,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 429, @@ -954,6 +960,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 577, @@ -992,6 +999,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 576, @@ -1030,6 +1038,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 722, @@ -1068,6 +1077,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 722, @@ -1106,6 +1116,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 884, diff --git a/e2etests/testdata/stable/all_shapes/elk/sketch.exp.svg b/e2etests/testdata/stable/all_shapes/elk/sketch.exp.svg index 7819c78715..2541f537f1 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-359842428 .fill-N1{fill:#0A0F25;} + .d2-359842428 .fill-N2{fill:#676C7E;} + .d2-359842428 .fill-N3{fill:#9499AB;} + .d2-359842428 .fill-N4{fill:#CFD2DD;} + .d2-359842428 .fill-N5{fill:#DEE1EB;} + .d2-359842428 .fill-N6{fill:#EEF1F8;} + .d2-359842428 .fill-N7{fill:#FFFFFF;} + .d2-359842428 .fill-B1{fill:#0D32B2;} + .d2-359842428 .fill-B2{fill:#0D32B2;} + .d2-359842428 .fill-B3{fill:#E3E9FD;} + .d2-359842428 .fill-B4{fill:#E3E9FD;} + .d2-359842428 .fill-B5{fill:#EDF0FD;} + .d2-359842428 .fill-B6{fill:#F7F8FE;} + .d2-359842428 .fill-AA2{fill:#4A6FF3;} + .d2-359842428 .fill-AA4{fill:#EDF0FD;} + .d2-359842428 .fill-AA5{fill:#F7F8FE;} + .d2-359842428 .fill-AB4{fill:#EDF0FD;} + .d2-359842428 .fill-AB5{fill:#F7F8FE;} + .d2-359842428 .stroke-N1{stroke:#0A0F25;} + .d2-359842428 .stroke-N2{stroke:#676C7E;} + .d2-359842428 .stroke-N3{stroke:#9499AB;} + .d2-359842428 .stroke-N4{stroke:#CFD2DD;} + .d2-359842428 .stroke-N5{stroke:#DEE1EB;} + .d2-359842428 .stroke-N6{stroke:#EEF1F8;} + .d2-359842428 .stroke-N7{stroke:#FFFFFF;} + .d2-359842428 .stroke-B1{stroke:#0D32B2;} + .d2-359842428 .stroke-B2{stroke:#0D32B2;} + .d2-359842428 .stroke-B3{stroke:#E3E9FD;} + .d2-359842428 .stroke-B4{stroke:#E3E9FD;} + .d2-359842428 .stroke-B5{stroke:#EDF0FD;} + .d2-359842428 .stroke-B6{stroke:#F7F8FE;} + .d2-359842428 .stroke-AA2{stroke:#4A6FF3;} + .d2-359842428 .stroke-AA4{stroke:#EDF0FD;} + .d2-359842428 .stroke-AA5{stroke:#F7F8FE;} + .d2-359842428 .stroke-AB4{stroke:#EDF0FD;} + .d2-359842428 .stroke-AB5{stroke:#F7F8FE;} + .d2-359842428 .background-color-N1{background-color:#0A0F25;} + .d2-359842428 .background-color-N2{background-color:#676C7E;} + .d2-359842428 .background-color-N3{background-color:#9499AB;} + .d2-359842428 .background-color-N4{background-color:#CFD2DD;} + .d2-359842428 .background-color-N5{background-color:#DEE1EB;} + .d2-359842428 .background-color-N6{background-color:#EEF1F8;} + .d2-359842428 .background-color-N7{background-color:#FFFFFF;} + .d2-359842428 .background-color-B1{background-color:#0D32B2;} + .d2-359842428 .background-color-B2{background-color:#0D32B2;} + .d2-359842428 .background-color-B3{background-color:#E3E9FD;} + .d2-359842428 .background-color-B4{background-color:#E3E9FD;} + .d2-359842428 .background-color-B5{background-color:#EDF0FD;} + .d2-359842428 .background-color-B6{background-color:#F7F8FE;} + .d2-359842428 .background-color-AA2{background-color:#4A6FF3;} + .d2-359842428 .background-color-AA4{background-color:#EDF0FD;} + .d2-359842428 .background-color-AA5{background-color:#F7F8FE;} + .d2-359842428 .background-color-AB4{background-color:#EDF0FD;} + .d2-359842428 .background-color-AB5{background-color:#F7F8FE;} + .d2-359842428 .color-N1{color:#0A0F25;} + .d2-359842428 .color-N2{color:#676C7E;} + .d2-359842428 .color-N3{color:#9499AB;} + .d2-359842428 .color-N4{color:#CFD2DD;} + .d2-359842428 .color-N5{color:#DEE1EB;} + .d2-359842428 .color-N6{color:#EEF1F8;} + .d2-359842428 .color-N7{color:#FFFFFF;} + .d2-359842428 .color-B1{color:#0D32B2;} + .d2-359842428 .color-B2{color:#0D32B2;} + .d2-359842428 .color-B3{color:#E3E9FD;} + .d2-359842428 .color-B4{color:#E3E9FD;} + .d2-359842428 .color-B5{color:#EDF0FD;} + .d2-359842428 .color-B6{color:#F7F8FE;} + .d2-359842428 .color-AA2{color:#4A6FF3;} + .d2-359842428 .color-AA4{color:#EDF0FD;} + .d2-359842428 .color-AA5{color:#F7F8FE;} + .d2-359842428 .color-AB4{color:#EDF0FD;} + .d2-359842428 .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_link/dagre/board.exp.json b/e2etests/testdata/stable/all_shapes_link/dagre/board.exp.json index d4251ccc2d..412974e037 100644 --- a/e2etests/testdata/stable/all_shapes_link/dagre/board.exp.json +++ b/e2etests/testdata/stable/all_shapes_link/dagre/board.exp.json @@ -2415,6 +2415,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 95.5, @@ -2462,6 +2463,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 95.5, @@ -2509,6 +2511,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 309, @@ -2556,6 +2559,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 309, @@ -2603,6 +2607,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 537, @@ -2650,6 +2655,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 537, @@ -2697,6 +2703,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 725, @@ -2744,6 +2751,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 724, @@ -2791,6 +2799,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 910, @@ -2838,6 +2847,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 910, @@ -2885,6 +2895,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 1083, @@ -2932,6 +2943,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 95.5, @@ -2979,6 +2991,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 95.5, @@ -3026,6 +3039,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 309, @@ -3073,6 +3087,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 309, @@ -3120,6 +3135,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 537, @@ -3167,6 +3183,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 537, @@ -3214,6 +3231,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 725, @@ -3261,6 +3279,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 724, @@ -3308,6 +3327,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 910, @@ -3355,6 +3375,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 910, @@ -3402,6 +3423,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 1083, @@ -3449,6 +3471,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 95.5, @@ -3496,6 +3519,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 95.5, @@ -3543,6 +3567,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 309, @@ -3590,6 +3615,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 309, @@ -3637,6 +3663,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 537, @@ -3684,6 +3711,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 537, @@ -3731,6 +3759,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 725, @@ -3778,6 +3807,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 724, @@ -3825,6 +3855,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 910, @@ -3872,6 +3903,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 910, @@ -3919,6 +3951,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 1083, @@ -3966,6 +3999,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 537.5, @@ -4013,6 +4047,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 537.5, 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 adb5502eac..00f88f8c99 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-3641809301 .fill-N1{fill:#0A0F25;} + .d2-3641809301 .fill-N2{fill:#676C7E;} + .d2-3641809301 .fill-N3{fill:#9499AB;} + .d2-3641809301 .fill-N4{fill:#CFD2DD;} + .d2-3641809301 .fill-N5{fill:#DEE1EB;} + .d2-3641809301 .fill-N6{fill:#EEF1F8;} + .d2-3641809301 .fill-N7{fill:#FFFFFF;} + .d2-3641809301 .fill-B1{fill:#0D32B2;} + .d2-3641809301 .fill-B2{fill:#0D32B2;} + .d2-3641809301 .fill-B3{fill:#E3E9FD;} + .d2-3641809301 .fill-B4{fill:#E3E9FD;} + .d2-3641809301 .fill-B5{fill:#EDF0FD;} + .d2-3641809301 .fill-B6{fill:#F7F8FE;} + .d2-3641809301 .fill-AA2{fill:#4A6FF3;} + .d2-3641809301 .fill-AA4{fill:#EDF0FD;} + .d2-3641809301 .fill-AA5{fill:#F7F8FE;} + .d2-3641809301 .fill-AB4{fill:#EDF0FD;} + .d2-3641809301 .fill-AB5{fill:#F7F8FE;} + .d2-3641809301 .stroke-N1{stroke:#0A0F25;} + .d2-3641809301 .stroke-N2{stroke:#676C7E;} + .d2-3641809301 .stroke-N3{stroke:#9499AB;} + .d2-3641809301 .stroke-N4{stroke:#CFD2DD;} + .d2-3641809301 .stroke-N5{stroke:#DEE1EB;} + .d2-3641809301 .stroke-N6{stroke:#EEF1F8;} + .d2-3641809301 .stroke-N7{stroke:#FFFFFF;} + .d2-3641809301 .stroke-B1{stroke:#0D32B2;} + .d2-3641809301 .stroke-B2{stroke:#0D32B2;} + .d2-3641809301 .stroke-B3{stroke:#E3E9FD;} + .d2-3641809301 .stroke-B4{stroke:#E3E9FD;} + .d2-3641809301 .stroke-B5{stroke:#EDF0FD;} + .d2-3641809301 .stroke-B6{stroke:#F7F8FE;} + .d2-3641809301 .stroke-AA2{stroke:#4A6FF3;} + .d2-3641809301 .stroke-AA4{stroke:#EDF0FD;} + .d2-3641809301 .stroke-AA5{stroke:#F7F8FE;} + .d2-3641809301 .stroke-AB4{stroke:#EDF0FD;} + .d2-3641809301 .stroke-AB5{stroke:#F7F8FE;} + .d2-3641809301 .background-color-N1{background-color:#0A0F25;} + .d2-3641809301 .background-color-N2{background-color:#676C7E;} + .d2-3641809301 .background-color-N3{background-color:#9499AB;} + .d2-3641809301 .background-color-N4{background-color:#CFD2DD;} + .d2-3641809301 .background-color-N5{background-color:#DEE1EB;} + .d2-3641809301 .background-color-N6{background-color:#EEF1F8;} + .d2-3641809301 .background-color-N7{background-color:#FFFFFF;} + .d2-3641809301 .background-color-B1{background-color:#0D32B2;} + .d2-3641809301 .background-color-B2{background-color:#0D32B2;} + .d2-3641809301 .background-color-B3{background-color:#E3E9FD;} + .d2-3641809301 .background-color-B4{background-color:#E3E9FD;} + .d2-3641809301 .background-color-B5{background-color:#EDF0FD;} + .d2-3641809301 .background-color-B6{background-color:#F7F8FE;} + .d2-3641809301 .background-color-AA2{background-color:#4A6FF3;} + .d2-3641809301 .background-color-AA4{background-color:#EDF0FD;} + .d2-3641809301 .background-color-AA5{background-color:#F7F8FE;} + .d2-3641809301 .background-color-AB4{background-color:#EDF0FD;} + .d2-3641809301 .background-color-AB5{background-color:#F7F8FE;} + .d2-3641809301 .color-N1{color:#0A0F25;} + .d2-3641809301 .color-N2{color:#676C7E;} + .d2-3641809301 .color-N3{color:#9499AB;} + .d2-3641809301 .color-N4{color:#CFD2DD;} + .d2-3641809301 .color-N5{color:#DEE1EB;} + .d2-3641809301 .color-N6{color:#EEF1F8;} + .d2-3641809301 .color-N7{color:#FFFFFF;} + .d2-3641809301 .color-B1{color:#0D32B2;} + .d2-3641809301 .color-B2{color:#0D32B2;} + .d2-3641809301 .color-B3{color:#E3E9FD;} + .d2-3641809301 .color-B4{color:#E3E9FD;} + .d2-3641809301 .color-B5{color:#EDF0FD;} + .d2-3641809301 .color-B6{color:#F7F8FE;} + .d2-3641809301 .color-AA2{color:#4A6FF3;} + .d2-3641809301 .color-AA4{color:#EDF0FD;} + .d2-3641809301 .color-AA5{color:#F7F8FE;} + .d2-3641809301 .color-AB4{color:#EDF0FD;} + .d2-3641809301 .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 @@ -541,7 +541,7 @@ - + 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 fad2d77e4c..9b1667ff03 100644 --- a/e2etests/testdata/stable/all_shapes_link/elk/board.exp.json +++ b/e2etests/testdata/stable/all_shapes_link/elk/board.exp.json @@ -2415,6 +2415,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 117.5, @@ -2453,6 +2454,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 117.5, @@ -2491,6 +2493,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 291, @@ -2529,6 +2532,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 291, @@ -2567,6 +2571,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 479, @@ -2605,6 +2610,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 479, @@ -2643,6 +2649,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 627, @@ -2681,6 +2688,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 626, @@ -2719,6 +2727,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 772, @@ -2757,6 +2766,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 772, @@ -2795,6 +2805,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 934, @@ -2833,6 +2844,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 117.5, @@ -2871,6 +2883,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 117.5, @@ -2909,6 +2922,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 291, @@ -2947,6 +2961,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 291, @@ -2985,6 +3000,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 479, @@ -3023,6 +3039,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 479, @@ -3061,6 +3078,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 627, @@ -3099,6 +3117,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 626, @@ -3137,6 +3156,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 772, @@ -3175,6 +3195,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 772, @@ -3213,6 +3234,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 934, @@ -3251,6 +3273,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 117.5, @@ -3289,6 +3312,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 117.5, @@ -3327,6 +3351,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 291, @@ -3365,6 +3390,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 291, @@ -3403,6 +3429,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 479, @@ -3441,6 +3468,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 479, @@ -3479,6 +3507,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 627, @@ -3517,6 +3546,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 626, @@ -3555,6 +3585,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 772, @@ -3593,6 +3624,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 772, @@ -3631,6 +3663,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 934, @@ -3669,6 +3702,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 530, @@ -3707,6 +3741,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 530, 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 3bb6468f18..e5ca6e6548 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-3350207851 .fill-N1{fill:#0A0F25;} + .d2-3350207851 .fill-N2{fill:#676C7E;} + .d2-3350207851 .fill-N3{fill:#9499AB;} + .d2-3350207851 .fill-N4{fill:#CFD2DD;} + .d2-3350207851 .fill-N5{fill:#DEE1EB;} + .d2-3350207851 .fill-N6{fill:#EEF1F8;} + .d2-3350207851 .fill-N7{fill:#FFFFFF;} + .d2-3350207851 .fill-B1{fill:#0D32B2;} + .d2-3350207851 .fill-B2{fill:#0D32B2;} + .d2-3350207851 .fill-B3{fill:#E3E9FD;} + .d2-3350207851 .fill-B4{fill:#E3E9FD;} + .d2-3350207851 .fill-B5{fill:#EDF0FD;} + .d2-3350207851 .fill-B6{fill:#F7F8FE;} + .d2-3350207851 .fill-AA2{fill:#4A6FF3;} + .d2-3350207851 .fill-AA4{fill:#EDF0FD;} + .d2-3350207851 .fill-AA5{fill:#F7F8FE;} + .d2-3350207851 .fill-AB4{fill:#EDF0FD;} + .d2-3350207851 .fill-AB5{fill:#F7F8FE;} + .d2-3350207851 .stroke-N1{stroke:#0A0F25;} + .d2-3350207851 .stroke-N2{stroke:#676C7E;} + .d2-3350207851 .stroke-N3{stroke:#9499AB;} + .d2-3350207851 .stroke-N4{stroke:#CFD2DD;} + .d2-3350207851 .stroke-N5{stroke:#DEE1EB;} + .d2-3350207851 .stroke-N6{stroke:#EEF1F8;} + .d2-3350207851 .stroke-N7{stroke:#FFFFFF;} + .d2-3350207851 .stroke-B1{stroke:#0D32B2;} + .d2-3350207851 .stroke-B2{stroke:#0D32B2;} + .d2-3350207851 .stroke-B3{stroke:#E3E9FD;} + .d2-3350207851 .stroke-B4{stroke:#E3E9FD;} + .d2-3350207851 .stroke-B5{stroke:#EDF0FD;} + .d2-3350207851 .stroke-B6{stroke:#F7F8FE;} + .d2-3350207851 .stroke-AA2{stroke:#4A6FF3;} + .d2-3350207851 .stroke-AA4{stroke:#EDF0FD;} + .d2-3350207851 .stroke-AA5{stroke:#F7F8FE;} + .d2-3350207851 .stroke-AB4{stroke:#EDF0FD;} + .d2-3350207851 .stroke-AB5{stroke:#F7F8FE;} + .d2-3350207851 .background-color-N1{background-color:#0A0F25;} + .d2-3350207851 .background-color-N2{background-color:#676C7E;} + .d2-3350207851 .background-color-N3{background-color:#9499AB;} + .d2-3350207851 .background-color-N4{background-color:#CFD2DD;} + .d2-3350207851 .background-color-N5{background-color:#DEE1EB;} + .d2-3350207851 .background-color-N6{background-color:#EEF1F8;} + .d2-3350207851 .background-color-N7{background-color:#FFFFFF;} + .d2-3350207851 .background-color-B1{background-color:#0D32B2;} + .d2-3350207851 .background-color-B2{background-color:#0D32B2;} + .d2-3350207851 .background-color-B3{background-color:#E3E9FD;} + .d2-3350207851 .background-color-B4{background-color:#E3E9FD;} + .d2-3350207851 .background-color-B5{background-color:#EDF0FD;} + .d2-3350207851 .background-color-B6{background-color:#F7F8FE;} + .d2-3350207851 .background-color-AA2{background-color:#4A6FF3;} + .d2-3350207851 .background-color-AA4{background-color:#EDF0FD;} + .d2-3350207851 .background-color-AA5{background-color:#F7F8FE;} + .d2-3350207851 .background-color-AB4{background-color:#EDF0FD;} + .d2-3350207851 .background-color-AB5{background-color:#F7F8FE;} + .d2-3350207851 .color-N1{color:#0A0F25;} + .d2-3350207851 .color-N2{color:#676C7E;} + .d2-3350207851 .color-N3{color:#9499AB;} + .d2-3350207851 .color-N4{color:#CFD2DD;} + .d2-3350207851 .color-N5{color:#DEE1EB;} + .d2-3350207851 .color-N6{color:#EEF1F8;} + .d2-3350207851 .color-N7{color:#FFFFFF;} + .d2-3350207851 .color-B1{color:#0D32B2;} + .d2-3350207851 .color-B2{color:#0D32B2;} + .d2-3350207851 .color-B3{color:#E3E9FD;} + .d2-3350207851 .color-B4{color:#E3E9FD;} + .d2-3350207851 .color-B5{color:#EDF0FD;} + .d2-3350207851 .color-B6{color:#F7F8FE;} + .d2-3350207851 .color-AA2{color:#4A6FF3;} + .d2-3350207851 .color-AA4{color:#EDF0FD;} + .d2-3350207851 .color-AA5{color:#F7F8FE;} + .d2-3350207851 .color-AB4{color:#EDF0FD;} + .d2-3350207851 .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 @@ -541,7 +541,7 @@ - + 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..b80c3b5930 100644 --- a/e2etests/testdata/stable/all_shapes_multiple/dagre/board.exp.json +++ b/e2etests/testdata/stable/all_shapes_multiple/dagre/board.exp.json @@ -726,6 +726,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 55.5, @@ -773,6 +774,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 55.5, @@ -820,6 +822,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 279, @@ -867,6 +870,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 279, @@ -914,6 +918,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 507, @@ -961,6 +966,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 507, @@ -1008,6 +1014,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 705, @@ -1055,6 +1062,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 704, @@ -1102,6 +1110,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 890, @@ -1149,6 +1158,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 890, @@ -1196,6 +1206,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 1102, 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 8961b4fd0c..c8f8358100 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-955320857 .fill-N1{fill:#0A0F25;} + .d2-955320857 .fill-N2{fill:#676C7E;} + .d2-955320857 .fill-N3{fill:#9499AB;} + .d2-955320857 .fill-N4{fill:#CFD2DD;} + .d2-955320857 .fill-N5{fill:#DEE1EB;} + .d2-955320857 .fill-N6{fill:#EEF1F8;} + .d2-955320857 .fill-N7{fill:#FFFFFF;} + .d2-955320857 .fill-B1{fill:#0D32B2;} + .d2-955320857 .fill-B2{fill:#0D32B2;} + .d2-955320857 .fill-B3{fill:#E3E9FD;} + .d2-955320857 .fill-B4{fill:#E3E9FD;} + .d2-955320857 .fill-B5{fill:#EDF0FD;} + .d2-955320857 .fill-B6{fill:#F7F8FE;} + .d2-955320857 .fill-AA2{fill:#4A6FF3;} + .d2-955320857 .fill-AA4{fill:#EDF0FD;} + .d2-955320857 .fill-AA5{fill:#F7F8FE;} + .d2-955320857 .fill-AB4{fill:#EDF0FD;} + .d2-955320857 .fill-AB5{fill:#F7F8FE;} + .d2-955320857 .stroke-N1{stroke:#0A0F25;} + .d2-955320857 .stroke-N2{stroke:#676C7E;} + .d2-955320857 .stroke-N3{stroke:#9499AB;} + .d2-955320857 .stroke-N4{stroke:#CFD2DD;} + .d2-955320857 .stroke-N5{stroke:#DEE1EB;} + .d2-955320857 .stroke-N6{stroke:#EEF1F8;} + .d2-955320857 .stroke-N7{stroke:#FFFFFF;} + .d2-955320857 .stroke-B1{stroke:#0D32B2;} + .d2-955320857 .stroke-B2{stroke:#0D32B2;} + .d2-955320857 .stroke-B3{stroke:#E3E9FD;} + .d2-955320857 .stroke-B4{stroke:#E3E9FD;} + .d2-955320857 .stroke-B5{stroke:#EDF0FD;} + .d2-955320857 .stroke-B6{stroke:#F7F8FE;} + .d2-955320857 .stroke-AA2{stroke:#4A6FF3;} + .d2-955320857 .stroke-AA4{stroke:#EDF0FD;} + .d2-955320857 .stroke-AA5{stroke:#F7F8FE;} + .d2-955320857 .stroke-AB4{stroke:#EDF0FD;} + .d2-955320857 .stroke-AB5{stroke:#F7F8FE;} + .d2-955320857 .background-color-N1{background-color:#0A0F25;} + .d2-955320857 .background-color-N2{background-color:#676C7E;} + .d2-955320857 .background-color-N3{background-color:#9499AB;} + .d2-955320857 .background-color-N4{background-color:#CFD2DD;} + .d2-955320857 .background-color-N5{background-color:#DEE1EB;} + .d2-955320857 .background-color-N6{background-color:#EEF1F8;} + .d2-955320857 .background-color-N7{background-color:#FFFFFF;} + .d2-955320857 .background-color-B1{background-color:#0D32B2;} + .d2-955320857 .background-color-B2{background-color:#0D32B2;} + .d2-955320857 .background-color-B3{background-color:#E3E9FD;} + .d2-955320857 .background-color-B4{background-color:#E3E9FD;} + .d2-955320857 .background-color-B5{background-color:#EDF0FD;} + .d2-955320857 .background-color-B6{background-color:#F7F8FE;} + .d2-955320857 .background-color-AA2{background-color:#4A6FF3;} + .d2-955320857 .background-color-AA4{background-color:#EDF0FD;} + .d2-955320857 .background-color-AA5{background-color:#F7F8FE;} + .d2-955320857 .background-color-AB4{background-color:#EDF0FD;} + .d2-955320857 .background-color-AB5{background-color:#F7F8FE;} + .d2-955320857 .color-N1{color:#0A0F25;} + .d2-955320857 .color-N2{color:#676C7E;} + .d2-955320857 .color-N3{color:#9499AB;} + .d2-955320857 .color-N4{color:#CFD2DD;} + .d2-955320857 .color-N5{color:#DEE1EB;} + .d2-955320857 .color-N6{color:#EEF1F8;} + .d2-955320857 .color-N7{color:#FFFFFF;} + .d2-955320857 .color-B1{color:#0D32B2;} + .d2-955320857 .color-B2{color:#0D32B2;} + .d2-955320857 .color-B3{color:#E3E9FD;} + .d2-955320857 .color-B4{color:#E3E9FD;} + .d2-955320857 .color-B5{color:#EDF0FD;} + .d2-955320857 .color-B6{color:#F7F8FE;} + .d2-955320857 .color-AA2{color:#4A6FF3;} + .d2-955320857 .color-AA4{color:#EDF0FD;} + .d2-955320857 .color-AA5{color:#F7F8FE;} + .d2-955320857 .color-AB4{color:#EDF0FD;} + .d2-955320857 .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..b8e547efcf 100644 --- a/e2etests/testdata/stable/all_shapes_multiple/elk/board.exp.json +++ b/e2etests/testdata/stable/all_shapes_multiple/elk/board.exp.json @@ -726,6 +726,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 72.5, @@ -764,6 +765,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 72.5, @@ -802,6 +804,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 256, @@ -840,6 +843,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 256, @@ -878,6 +882,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 454, @@ -916,6 +921,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 454, @@ -954,6 +960,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 612, @@ -992,6 +999,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 611, @@ -1030,6 +1038,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 767, @@ -1068,6 +1077,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 767, @@ -1106,6 +1116,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 939, 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 6416525f82..d81c0fa94b 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-2027652092 .fill-N1{fill:#0A0F25;} + .d2-2027652092 .fill-N2{fill:#676C7E;} + .d2-2027652092 .fill-N3{fill:#9499AB;} + .d2-2027652092 .fill-N4{fill:#CFD2DD;} + .d2-2027652092 .fill-N5{fill:#DEE1EB;} + .d2-2027652092 .fill-N6{fill:#EEF1F8;} + .d2-2027652092 .fill-N7{fill:#FFFFFF;} + .d2-2027652092 .fill-B1{fill:#0D32B2;} + .d2-2027652092 .fill-B2{fill:#0D32B2;} + .d2-2027652092 .fill-B3{fill:#E3E9FD;} + .d2-2027652092 .fill-B4{fill:#E3E9FD;} + .d2-2027652092 .fill-B5{fill:#EDF0FD;} + .d2-2027652092 .fill-B6{fill:#F7F8FE;} + .d2-2027652092 .fill-AA2{fill:#4A6FF3;} + .d2-2027652092 .fill-AA4{fill:#EDF0FD;} + .d2-2027652092 .fill-AA5{fill:#F7F8FE;} + .d2-2027652092 .fill-AB4{fill:#EDF0FD;} + .d2-2027652092 .fill-AB5{fill:#F7F8FE;} + .d2-2027652092 .stroke-N1{stroke:#0A0F25;} + .d2-2027652092 .stroke-N2{stroke:#676C7E;} + .d2-2027652092 .stroke-N3{stroke:#9499AB;} + .d2-2027652092 .stroke-N4{stroke:#CFD2DD;} + .d2-2027652092 .stroke-N5{stroke:#DEE1EB;} + .d2-2027652092 .stroke-N6{stroke:#EEF1F8;} + .d2-2027652092 .stroke-N7{stroke:#FFFFFF;} + .d2-2027652092 .stroke-B1{stroke:#0D32B2;} + .d2-2027652092 .stroke-B2{stroke:#0D32B2;} + .d2-2027652092 .stroke-B3{stroke:#E3E9FD;} + .d2-2027652092 .stroke-B4{stroke:#E3E9FD;} + .d2-2027652092 .stroke-B5{stroke:#EDF0FD;} + .d2-2027652092 .stroke-B6{stroke:#F7F8FE;} + .d2-2027652092 .stroke-AA2{stroke:#4A6FF3;} + .d2-2027652092 .stroke-AA4{stroke:#EDF0FD;} + .d2-2027652092 .stroke-AA5{stroke:#F7F8FE;} + .d2-2027652092 .stroke-AB4{stroke:#EDF0FD;} + .d2-2027652092 .stroke-AB5{stroke:#F7F8FE;} + .d2-2027652092 .background-color-N1{background-color:#0A0F25;} + .d2-2027652092 .background-color-N2{background-color:#676C7E;} + .d2-2027652092 .background-color-N3{background-color:#9499AB;} + .d2-2027652092 .background-color-N4{background-color:#CFD2DD;} + .d2-2027652092 .background-color-N5{background-color:#DEE1EB;} + .d2-2027652092 .background-color-N6{background-color:#EEF1F8;} + .d2-2027652092 .background-color-N7{background-color:#FFFFFF;} + .d2-2027652092 .background-color-B1{background-color:#0D32B2;} + .d2-2027652092 .background-color-B2{background-color:#0D32B2;} + .d2-2027652092 .background-color-B3{background-color:#E3E9FD;} + .d2-2027652092 .background-color-B4{background-color:#E3E9FD;} + .d2-2027652092 .background-color-B5{background-color:#EDF0FD;} + .d2-2027652092 .background-color-B6{background-color:#F7F8FE;} + .d2-2027652092 .background-color-AA2{background-color:#4A6FF3;} + .d2-2027652092 .background-color-AA4{background-color:#EDF0FD;} + .d2-2027652092 .background-color-AA5{background-color:#F7F8FE;} + .d2-2027652092 .background-color-AB4{background-color:#EDF0FD;} + .d2-2027652092 .background-color-AB5{background-color:#F7F8FE;} + .d2-2027652092 .color-N1{color:#0A0F25;} + .d2-2027652092 .color-N2{color:#676C7E;} + .d2-2027652092 .color-N3{color:#9499AB;} + .d2-2027652092 .color-N4{color:#CFD2DD;} + .d2-2027652092 .color-N5{color:#DEE1EB;} + .d2-2027652092 .color-N6{color:#EEF1F8;} + .d2-2027652092 .color-N7{color:#FFFFFF;} + .d2-2027652092 .color-B1{color:#0D32B2;} + .d2-2027652092 .color-B2{color:#0D32B2;} + .d2-2027652092 .color-B3{color:#E3E9FD;} + .d2-2027652092 .color-B4{color:#E3E9FD;} + .d2-2027652092 .color-B5{color:#EDF0FD;} + .d2-2027652092 .color-B6{color:#F7F8FE;} + .d2-2027652092 .color-AA2{color:#4A6FF3;} + .d2-2027652092 .color-AA4{color:#EDF0FD;} + .d2-2027652092 .color-AA5{color:#F7F8FE;} + .d2-2027652092 .color-AB4{color:#EDF0FD;} + .d2-2027652092 .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_shadow/dagre/board.exp.json b/e2etests/testdata/stable/all_shapes_shadow/dagre/board.exp.json index bfd018b647..f66b2f5aeb 100644 --- a/e2etests/testdata/stable/all_shapes_shadow/dagre/board.exp.json +++ b/e2etests/testdata/stable/all_shapes_shadow/dagre/board.exp.json @@ -726,6 +726,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 55.5, @@ -773,6 +774,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 55.5, @@ -820,6 +822,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 269, @@ -867,6 +870,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 269, @@ -914,6 +918,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 497, @@ -961,6 +966,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 497, @@ -1008,6 +1014,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 685, @@ -1055,6 +1062,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 684, @@ -1102,6 +1110,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 870, @@ -1149,6 +1158,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 870, @@ -1196,6 +1206,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 1072, 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 994ee0cd5f..d216ae3ee1 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-226515763 .fill-N1{fill:#0A0F25;} + .d2-226515763 .fill-N2{fill:#676C7E;} + .d2-226515763 .fill-N3{fill:#9499AB;} + .d2-226515763 .fill-N4{fill:#CFD2DD;} + .d2-226515763 .fill-N5{fill:#DEE1EB;} + .d2-226515763 .fill-N6{fill:#EEF1F8;} + .d2-226515763 .fill-N7{fill:#FFFFFF;} + .d2-226515763 .fill-B1{fill:#0D32B2;} + .d2-226515763 .fill-B2{fill:#0D32B2;} + .d2-226515763 .fill-B3{fill:#E3E9FD;} + .d2-226515763 .fill-B4{fill:#E3E9FD;} + .d2-226515763 .fill-B5{fill:#EDF0FD;} + .d2-226515763 .fill-B6{fill:#F7F8FE;} + .d2-226515763 .fill-AA2{fill:#4A6FF3;} + .d2-226515763 .fill-AA4{fill:#EDF0FD;} + .d2-226515763 .fill-AA5{fill:#F7F8FE;} + .d2-226515763 .fill-AB4{fill:#EDF0FD;} + .d2-226515763 .fill-AB5{fill:#F7F8FE;} + .d2-226515763 .stroke-N1{stroke:#0A0F25;} + .d2-226515763 .stroke-N2{stroke:#676C7E;} + .d2-226515763 .stroke-N3{stroke:#9499AB;} + .d2-226515763 .stroke-N4{stroke:#CFD2DD;} + .d2-226515763 .stroke-N5{stroke:#DEE1EB;} + .d2-226515763 .stroke-N6{stroke:#EEF1F8;} + .d2-226515763 .stroke-N7{stroke:#FFFFFF;} + .d2-226515763 .stroke-B1{stroke:#0D32B2;} + .d2-226515763 .stroke-B2{stroke:#0D32B2;} + .d2-226515763 .stroke-B3{stroke:#E3E9FD;} + .d2-226515763 .stroke-B4{stroke:#E3E9FD;} + .d2-226515763 .stroke-B5{stroke:#EDF0FD;} + .d2-226515763 .stroke-B6{stroke:#F7F8FE;} + .d2-226515763 .stroke-AA2{stroke:#4A6FF3;} + .d2-226515763 .stroke-AA4{stroke:#EDF0FD;} + .d2-226515763 .stroke-AA5{stroke:#F7F8FE;} + .d2-226515763 .stroke-AB4{stroke:#EDF0FD;} + .d2-226515763 .stroke-AB5{stroke:#F7F8FE;} + .d2-226515763 .background-color-N1{background-color:#0A0F25;} + .d2-226515763 .background-color-N2{background-color:#676C7E;} + .d2-226515763 .background-color-N3{background-color:#9499AB;} + .d2-226515763 .background-color-N4{background-color:#CFD2DD;} + .d2-226515763 .background-color-N5{background-color:#DEE1EB;} + .d2-226515763 .background-color-N6{background-color:#EEF1F8;} + .d2-226515763 .background-color-N7{background-color:#FFFFFF;} + .d2-226515763 .background-color-B1{background-color:#0D32B2;} + .d2-226515763 .background-color-B2{background-color:#0D32B2;} + .d2-226515763 .background-color-B3{background-color:#E3E9FD;} + .d2-226515763 .background-color-B4{background-color:#E3E9FD;} + .d2-226515763 .background-color-B5{background-color:#EDF0FD;} + .d2-226515763 .background-color-B6{background-color:#F7F8FE;} + .d2-226515763 .background-color-AA2{background-color:#4A6FF3;} + .d2-226515763 .background-color-AA4{background-color:#EDF0FD;} + .d2-226515763 .background-color-AA5{background-color:#F7F8FE;} + .d2-226515763 .background-color-AB4{background-color:#EDF0FD;} + .d2-226515763 .background-color-AB5{background-color:#F7F8FE;} + .d2-226515763 .color-N1{color:#0A0F25;} + .d2-226515763 .color-N2{color:#676C7E;} + .d2-226515763 .color-N3{color:#9499AB;} + .d2-226515763 .color-N4{color:#CFD2DD;} + .d2-226515763 .color-N5{color:#DEE1EB;} + .d2-226515763 .color-N6{color:#EEF1F8;} + .d2-226515763 .color-N7{color:#FFFFFF;} + .d2-226515763 .color-B1{color:#0D32B2;} + .d2-226515763 .color-B2{color:#0D32B2;} + .d2-226515763 .color-B3{color:#E3E9FD;} + .d2-226515763 .color-B4{color:#E3E9FD;} + .d2-226515763 .color-B5{color:#EDF0FD;} + .d2-226515763 .color-B6{color:#F7F8FE;} + .d2-226515763 .color-AA2{color:#4A6FF3;} + .d2-226515763 .color-AA4{color:#EDF0FD;} + .d2-226515763 .color-AA5{color:#F7F8FE;} + .d2-226515763 .color-AB4{color:#EDF0FD;} + .d2-226515763 .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..a3437b9b62 100644 --- a/e2etests/testdata/stable/all_shapes_shadow/elk/board.exp.json +++ b/e2etests/testdata/stable/all_shapes_shadow/elk/board.exp.json @@ -726,6 +726,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 67.5, @@ -764,6 +765,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 67.5, @@ -802,6 +804,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 241, @@ -840,6 +843,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 241, @@ -878,6 +882,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 429, @@ -916,6 +921,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 429, @@ -954,6 +960,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 577, @@ -992,6 +999,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 576, @@ -1030,6 +1038,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 722, @@ -1068,6 +1077,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 722, @@ -1106,6 +1116,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 884, 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 e83abfc372..ec2314e55c 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-1358118447 .fill-N1{fill:#0A0F25;} + .d2-1358118447 .fill-N2{fill:#676C7E;} + .d2-1358118447 .fill-N3{fill:#9499AB;} + .d2-1358118447 .fill-N4{fill:#CFD2DD;} + .d2-1358118447 .fill-N5{fill:#DEE1EB;} + .d2-1358118447 .fill-N6{fill:#EEF1F8;} + .d2-1358118447 .fill-N7{fill:#FFFFFF;} + .d2-1358118447 .fill-B1{fill:#0D32B2;} + .d2-1358118447 .fill-B2{fill:#0D32B2;} + .d2-1358118447 .fill-B3{fill:#E3E9FD;} + .d2-1358118447 .fill-B4{fill:#E3E9FD;} + .d2-1358118447 .fill-B5{fill:#EDF0FD;} + .d2-1358118447 .fill-B6{fill:#F7F8FE;} + .d2-1358118447 .fill-AA2{fill:#4A6FF3;} + .d2-1358118447 .fill-AA4{fill:#EDF0FD;} + .d2-1358118447 .fill-AA5{fill:#F7F8FE;} + .d2-1358118447 .fill-AB4{fill:#EDF0FD;} + .d2-1358118447 .fill-AB5{fill:#F7F8FE;} + .d2-1358118447 .stroke-N1{stroke:#0A0F25;} + .d2-1358118447 .stroke-N2{stroke:#676C7E;} + .d2-1358118447 .stroke-N3{stroke:#9499AB;} + .d2-1358118447 .stroke-N4{stroke:#CFD2DD;} + .d2-1358118447 .stroke-N5{stroke:#DEE1EB;} + .d2-1358118447 .stroke-N6{stroke:#EEF1F8;} + .d2-1358118447 .stroke-N7{stroke:#FFFFFF;} + .d2-1358118447 .stroke-B1{stroke:#0D32B2;} + .d2-1358118447 .stroke-B2{stroke:#0D32B2;} + .d2-1358118447 .stroke-B3{stroke:#E3E9FD;} + .d2-1358118447 .stroke-B4{stroke:#E3E9FD;} + .d2-1358118447 .stroke-B5{stroke:#EDF0FD;} + .d2-1358118447 .stroke-B6{stroke:#F7F8FE;} + .d2-1358118447 .stroke-AA2{stroke:#4A6FF3;} + .d2-1358118447 .stroke-AA4{stroke:#EDF0FD;} + .d2-1358118447 .stroke-AA5{stroke:#F7F8FE;} + .d2-1358118447 .stroke-AB4{stroke:#EDF0FD;} + .d2-1358118447 .stroke-AB5{stroke:#F7F8FE;} + .d2-1358118447 .background-color-N1{background-color:#0A0F25;} + .d2-1358118447 .background-color-N2{background-color:#676C7E;} + .d2-1358118447 .background-color-N3{background-color:#9499AB;} + .d2-1358118447 .background-color-N4{background-color:#CFD2DD;} + .d2-1358118447 .background-color-N5{background-color:#DEE1EB;} + .d2-1358118447 .background-color-N6{background-color:#EEF1F8;} + .d2-1358118447 .background-color-N7{background-color:#FFFFFF;} + .d2-1358118447 .background-color-B1{background-color:#0D32B2;} + .d2-1358118447 .background-color-B2{background-color:#0D32B2;} + .d2-1358118447 .background-color-B3{background-color:#E3E9FD;} + .d2-1358118447 .background-color-B4{background-color:#E3E9FD;} + .d2-1358118447 .background-color-B5{background-color:#EDF0FD;} + .d2-1358118447 .background-color-B6{background-color:#F7F8FE;} + .d2-1358118447 .background-color-AA2{background-color:#4A6FF3;} + .d2-1358118447 .background-color-AA4{background-color:#EDF0FD;} + .d2-1358118447 .background-color-AA5{background-color:#F7F8FE;} + .d2-1358118447 .background-color-AB4{background-color:#EDF0FD;} + .d2-1358118447 .background-color-AB5{background-color:#F7F8FE;} + .d2-1358118447 .color-N1{color:#0A0F25;} + .d2-1358118447 .color-N2{color:#676C7E;} + .d2-1358118447 .color-N3{color:#9499AB;} + .d2-1358118447 .color-N4{color:#CFD2DD;} + .d2-1358118447 .color-N5{color:#DEE1EB;} + .d2-1358118447 .color-N6{color:#EEF1F8;} + .d2-1358118447 .color-N7{color:#FFFFFF;} + .d2-1358118447 .color-B1{color:#0D32B2;} + .d2-1358118447 .color-B2{color:#0D32B2;} + .d2-1358118447 .color-B3{color:#E3E9FD;} + .d2-1358118447 .color-B4{color:#E3E9FD;} + .d2-1358118447 .color-B5{color:#EDF0FD;} + .d2-1358118447 .color-B6{color:#F7F8FE;} + .d2-1358118447 .color-AA2{color:#4A6FF3;} + .d2-1358118447 .color-AA4{color:#EDF0FD;} + .d2-1358118447 .color-AA5{color:#F7F8FE;} + .d2-1358118447 .color-AB4{color:#EDF0FD;} + .d2-1358118447 .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/animated/dagre/board.exp.json b/e2etests/testdata/stable/animated/dagre/board.exp.json index 7ef09c9b6c..a85e156735 100644 --- a/e2etests/testdata/stable/animated/dagre/board.exp.json +++ b/e2etests/testdata/stable/animated/dagre/board.exp.json @@ -561,6 +561,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 94.5, @@ -608,6 +609,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 154, @@ -655,6 +657,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 405.25, @@ -702,6 +705,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 575.75, @@ -749,6 +753,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 828.25, @@ -796,6 +801,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 879.75, @@ -843,6 +849,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 931.25, @@ -890,6 +897,7 @@ "labelHeight": 21, "labelPosition": "INSIDE_MIDDLE_CENTER", "labelPercentage": 0, + "link": "", "route": [ { "x": 1175.5, diff --git a/e2etests/testdata/stable/animated/dagre/sketch.exp.svg b/e2etests/testdata/stable/animated/dagre/sketch.exp.svg index efade79390..53b236b217 100644 --- a/e2etests/testdata/stable/animated/dagre/sketch.exp.svg +++ b/e2etests/testdata/stable/animated/dagre/sketch.exp.svg @@ -1,22 +1,22 @@ -your love life will behappyharmoniousboredomimmortalityFridayMondayInsomniaSleepWakeDreamListenTalk hear + .d2-1623324019 .fill-N1{fill:#0A0F25;} + .d2-1623324019 .fill-N2{fill:#676C7E;} + .d2-1623324019 .fill-N3{fill:#9499AB;} + .d2-1623324019 .fill-N4{fill:#CFD2DD;} + .d2-1623324019 .fill-N5{fill:#DEE1EB;} + .d2-1623324019 .fill-N6{fill:#EEF1F8;} + .d2-1623324019 .fill-N7{fill:#FFFFFF;} + .d2-1623324019 .fill-B1{fill:#0D32B2;} + .d2-1623324019 .fill-B2{fill:#0D32B2;} + .d2-1623324019 .fill-B3{fill:#E3E9FD;} + .d2-1623324019 .fill-B4{fill:#E3E9FD;} + .d2-1623324019 .fill-B5{fill:#EDF0FD;} + .d2-1623324019 .fill-B6{fill:#F7F8FE;} + .d2-1623324019 .fill-AA2{fill:#4A6FF3;} + .d2-1623324019 .fill-AA4{fill:#EDF0FD;} + .d2-1623324019 .fill-AA5{fill:#F7F8FE;} + .d2-1623324019 .fill-AB4{fill:#EDF0FD;} + .d2-1623324019 .fill-AB5{fill:#F7F8FE;} + .d2-1623324019 .stroke-N1{stroke:#0A0F25;} + .d2-1623324019 .stroke-N2{stroke:#676C7E;} + .d2-1623324019 .stroke-N3{stroke:#9499AB;} + .d2-1623324019 .stroke-N4{stroke:#CFD2DD;} + .d2-1623324019 .stroke-N5{stroke:#DEE1EB;} + .d2-1623324019 .stroke-N6{stroke:#EEF1F8;} + .d2-1623324019 .stroke-N7{stroke:#FFFFFF;} + .d2-1623324019 .stroke-B1{stroke:#0D32B2;} + .d2-1623324019 .stroke-B2{stroke:#0D32B2;} + .d2-1623324019 .stroke-B3{stroke:#E3E9FD;} + .d2-1623324019 .stroke-B4{stroke:#E3E9FD;} + .d2-1623324019 .stroke-B5{stroke:#EDF0FD;} + .d2-1623324019 .stroke-B6{stroke:#F7F8FE;} + .d2-1623324019 .stroke-AA2{stroke:#4A6FF3;} + .d2-1623324019 .stroke-AA4{stroke:#EDF0FD;} + .d2-1623324019 .stroke-AA5{stroke:#F7F8FE;} + .d2-1623324019 .stroke-AB4{stroke:#EDF0FD;} + .d2-1623324019 .stroke-AB5{stroke:#F7F8FE;} + .d2-1623324019 .background-color-N1{background-color:#0A0F25;} + .d2-1623324019 .background-color-N2{background-color:#676C7E;} + .d2-1623324019 .background-color-N3{background-color:#9499AB;} + .d2-1623324019 .background-color-N4{background-color:#CFD2DD;} + .d2-1623324019 .background-color-N5{background-color:#DEE1EB;} + .d2-1623324019 .background-color-N6{background-color:#EEF1F8;} + .d2-1623324019 .background-color-N7{background-color:#FFFFFF;} + .d2-1623324019 .background-color-B1{background-color:#0D32B2;} + .d2-1623324019 .background-color-B2{background-color:#0D32B2;} + .d2-1623324019 .background-color-B3{background-color:#E3E9FD;} + .d2-1623324019 .background-color-B4{background-color:#E3E9FD;} + .d2-1623324019 .background-color-B5{background-color:#EDF0FD;} + .d2-1623324019 .background-color-B6{background-color:#F7F8FE;} + .d2-1623324019 .background-color-AA2{background-color:#4A6FF3;} + .d2-1623324019 .background-color-AA4{background-color:#EDF0FD;} + .d2-1623324019 .background-color-AA5{background-color:#F7F8FE;} + .d2-1623324019 .background-color-AB4{background-color:#EDF0FD;} + .d2-1623324019 .background-color-AB5{background-color:#F7F8FE;} + .d2-1623324019 .color-N1{color:#0A0F25;} + .d2-1623324019 .color-N2{color:#676C7E;} + .d2-1623324019 .color-N3{color:#9499AB;} + .d2-1623324019 .color-N4{color:#CFD2DD;} + .d2-1623324019 .color-N5{color:#DEE1EB;} + .d2-1623324019 .color-N6{color:#EEF1F8;} + .d2-1623324019 .color-N7{color:#FFFFFF;} + .d2-1623324019 .color-B1{color:#0D32B2;} + .d2-1623324019 .color-B2{color:#0D32B2;} + .d2-1623324019 .color-B3{color:#E3E9FD;} + .d2-1623324019 .color-B4{color:#E3E9FD;} + .d2-1623324019 .color-B5{color:#EDF0FD;} + .d2-1623324019 .color-B6{color:#F7F8FE;} + .d2-1623324019 .color-AA2{color:#4A6FF3;} + .d2-1623324019 .color-AA4{color:#EDF0FD;} + .d2-1623324019 .color-AA5{color:#F7F8FE;} + .d2-1623324019 .color-AB4{color:#EDF0FD;} + .d2-1623324019 .color-AB5{color:#F7F8FE;}.appendix text.text{fill:#0A0F25}.md{--color-fg-default:#0A0F25;--color-fg-muted:#676C7E;--color-fg-subtle:#9499AB;--color-canvas-default:#FFFFFF;--color-canvas-subtle:#EEF1F8;--color-border-default:#0D32B2;--color-border-muted:#0D32B2;--color-neutral-muted:#EEF1F8;--color-accent-fg:#0D32B2;--color-accent-emphasis:#0D32B2;--color-attention-subtle:#676C7E;--color-danger-fg:red;}.sketch-overlay-B1{fill:url(#streaks-darker);mix-blend-mode:lighten}.sketch-overlay-B2{fill:url(#streaks-darker);mix-blend-mode:lighten}.sketch-overlay-B3{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-B4{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-B5{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-B6{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-AA2{fill:url(#streaks-dark);mix-blend-mode:overlay}.sketch-overlay-AA4{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-AA5{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-AB4{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-AB5{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-N1{fill:url(#streaks-darker);mix-blend-mode:lighten}.sketch-overlay-N2{fill:url(#streaks-dark);mix-blend-mode:overlay}.sketch-overlay-N3{fill:url(#streaks-normal);mix-blend-mode:color-burn}.sketch-overlay-N4{fill:url(#streaks-normal);mix-blend-mode:color-burn}.sketch-overlay-N5{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-N6{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-N7{fill:url(#streaks-bright);mix-blend-mode:darken}.light-code{display: block}.dark-code{display: none}]]>your love life will behappyharmoniousboredomimmortalityFridayMondayInsomniaSleepWakeDreamListenTalk hear diff --git a/e2etests/testdata/stable/animated/elk/board.exp.json b/e2etests/testdata/stable/animated/elk/board.exp.json index 334982f6e4..84d9ab1f04 100644 --- a/e2etests/testdata/stable/animated/elk/board.exp.json +++ b/e2etests/testdata/stable/animated/elk/board.exp.json @@ -561,6 +561,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 56.5, @@ -599,6 +600,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 186, @@ -637,6 +639,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 336.5, @@ -675,6 +678,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 472.4989929199219, @@ -713,6 +717,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 660, @@ -759,6 +764,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 690, @@ -797,6 +803,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 720, @@ -843,6 +850,7 @@ "labelHeight": 21, "labelPosition": "INSIDE_MIDDLE_CENTER", "labelPercentage": 0, + "link": "", "route": [ { "x": 879, diff --git a/e2etests/testdata/stable/animated/elk/sketch.exp.svg b/e2etests/testdata/stable/animated/elk/sketch.exp.svg index c57247daea..d22c6c2d0f 100644 --- a/e2etests/testdata/stable/animated/elk/sketch.exp.svg +++ b/e2etests/testdata/stable/animated/elk/sketch.exp.svg @@ -1,22 +1,22 @@ -your love life will behappyharmoniousboredomimmortalityFridayMondayInsomniaSleepWakeDreamListenTalk hear + .d2-4184520153 .fill-N1{fill:#0A0F25;} + .d2-4184520153 .fill-N2{fill:#676C7E;} + .d2-4184520153 .fill-N3{fill:#9499AB;} + .d2-4184520153 .fill-N4{fill:#CFD2DD;} + .d2-4184520153 .fill-N5{fill:#DEE1EB;} + .d2-4184520153 .fill-N6{fill:#EEF1F8;} + .d2-4184520153 .fill-N7{fill:#FFFFFF;} + .d2-4184520153 .fill-B1{fill:#0D32B2;} + .d2-4184520153 .fill-B2{fill:#0D32B2;} + .d2-4184520153 .fill-B3{fill:#E3E9FD;} + .d2-4184520153 .fill-B4{fill:#E3E9FD;} + .d2-4184520153 .fill-B5{fill:#EDF0FD;} + .d2-4184520153 .fill-B6{fill:#F7F8FE;} + .d2-4184520153 .fill-AA2{fill:#4A6FF3;} + .d2-4184520153 .fill-AA4{fill:#EDF0FD;} + .d2-4184520153 .fill-AA5{fill:#F7F8FE;} + .d2-4184520153 .fill-AB4{fill:#EDF0FD;} + .d2-4184520153 .fill-AB5{fill:#F7F8FE;} + .d2-4184520153 .stroke-N1{stroke:#0A0F25;} + .d2-4184520153 .stroke-N2{stroke:#676C7E;} + .d2-4184520153 .stroke-N3{stroke:#9499AB;} + .d2-4184520153 .stroke-N4{stroke:#CFD2DD;} + .d2-4184520153 .stroke-N5{stroke:#DEE1EB;} + .d2-4184520153 .stroke-N6{stroke:#EEF1F8;} + .d2-4184520153 .stroke-N7{stroke:#FFFFFF;} + .d2-4184520153 .stroke-B1{stroke:#0D32B2;} + .d2-4184520153 .stroke-B2{stroke:#0D32B2;} + .d2-4184520153 .stroke-B3{stroke:#E3E9FD;} + .d2-4184520153 .stroke-B4{stroke:#E3E9FD;} + .d2-4184520153 .stroke-B5{stroke:#EDF0FD;} + .d2-4184520153 .stroke-B6{stroke:#F7F8FE;} + .d2-4184520153 .stroke-AA2{stroke:#4A6FF3;} + .d2-4184520153 .stroke-AA4{stroke:#EDF0FD;} + .d2-4184520153 .stroke-AA5{stroke:#F7F8FE;} + .d2-4184520153 .stroke-AB4{stroke:#EDF0FD;} + .d2-4184520153 .stroke-AB5{stroke:#F7F8FE;} + .d2-4184520153 .background-color-N1{background-color:#0A0F25;} + .d2-4184520153 .background-color-N2{background-color:#676C7E;} + .d2-4184520153 .background-color-N3{background-color:#9499AB;} + .d2-4184520153 .background-color-N4{background-color:#CFD2DD;} + .d2-4184520153 .background-color-N5{background-color:#DEE1EB;} + .d2-4184520153 .background-color-N6{background-color:#EEF1F8;} + .d2-4184520153 .background-color-N7{background-color:#FFFFFF;} + .d2-4184520153 .background-color-B1{background-color:#0D32B2;} + .d2-4184520153 .background-color-B2{background-color:#0D32B2;} + .d2-4184520153 .background-color-B3{background-color:#E3E9FD;} + .d2-4184520153 .background-color-B4{background-color:#E3E9FD;} + .d2-4184520153 .background-color-B5{background-color:#EDF0FD;} + .d2-4184520153 .background-color-B6{background-color:#F7F8FE;} + .d2-4184520153 .background-color-AA2{background-color:#4A6FF3;} + .d2-4184520153 .background-color-AA4{background-color:#EDF0FD;} + .d2-4184520153 .background-color-AA5{background-color:#F7F8FE;} + .d2-4184520153 .background-color-AB4{background-color:#EDF0FD;} + .d2-4184520153 .background-color-AB5{background-color:#F7F8FE;} + .d2-4184520153 .color-N1{color:#0A0F25;} + .d2-4184520153 .color-N2{color:#676C7E;} + .d2-4184520153 .color-N3{color:#9499AB;} + .d2-4184520153 .color-N4{color:#CFD2DD;} + .d2-4184520153 .color-N5{color:#DEE1EB;} + .d2-4184520153 .color-N6{color:#EEF1F8;} + .d2-4184520153 .color-N7{color:#FFFFFF;} + .d2-4184520153 .color-B1{color:#0D32B2;} + .d2-4184520153 .color-B2{color:#0D32B2;} + .d2-4184520153 .color-B3{color:#E3E9FD;} + .d2-4184520153 .color-B4{color:#E3E9FD;} + .d2-4184520153 .color-B5{color:#EDF0FD;} + .d2-4184520153 .color-B6{color:#F7F8FE;} + .d2-4184520153 .color-AA2{color:#4A6FF3;} + .d2-4184520153 .color-AA4{color:#EDF0FD;} + .d2-4184520153 .color-AA5{color:#F7F8FE;} + .d2-4184520153 .color-AB4{color:#EDF0FD;} + .d2-4184520153 .color-AB5{color:#F7F8FE;}.appendix text.text{fill:#0A0F25}.md{--color-fg-default:#0A0F25;--color-fg-muted:#676C7E;--color-fg-subtle:#9499AB;--color-canvas-default:#FFFFFF;--color-canvas-subtle:#EEF1F8;--color-border-default:#0D32B2;--color-border-muted:#0D32B2;--color-neutral-muted:#EEF1F8;--color-accent-fg:#0D32B2;--color-accent-emphasis:#0D32B2;--color-attention-subtle:#676C7E;--color-danger-fg:red;}.sketch-overlay-B1{fill:url(#streaks-darker);mix-blend-mode:lighten}.sketch-overlay-B2{fill:url(#streaks-darker);mix-blend-mode:lighten}.sketch-overlay-B3{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-B4{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-B5{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-B6{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-AA2{fill:url(#streaks-dark);mix-blend-mode:overlay}.sketch-overlay-AA4{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-AA5{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-AB4{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-AB5{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-N1{fill:url(#streaks-darker);mix-blend-mode:lighten}.sketch-overlay-N2{fill:url(#streaks-dark);mix-blend-mode:overlay}.sketch-overlay-N3{fill:url(#streaks-normal);mix-blend-mode:color-burn}.sketch-overlay-N4{fill:url(#streaks-normal);mix-blend-mode:color-burn}.sketch-overlay-N5{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-N6{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-N7{fill:url(#streaks-bright);mix-blend-mode:darken}.light-code{display: block}.dark-code{display: none}]]>your love life will behappyharmoniousboredomimmortalityFridayMondayInsomniaSleepWakeDreamListenTalk hear diff --git a/e2etests/testdata/stable/arrowhead_adjustment/dagre/board.exp.json b/e2etests/testdata/stable/arrowhead_adjustment/dagre/board.exp.json index b23d23fe44..8357dd424a 100644 --- a/e2etests/testdata/stable/arrowhead_adjustment/dagre/board.exp.json +++ b/e2etests/testdata/stable/arrowhead_adjustment/dagre/board.exp.json @@ -191,6 +191,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 23.5, @@ -274,6 +275,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 95, @@ -333,6 +335,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 50, @@ -380,6 +383,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 114, @@ -439,6 +443,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 50, diff --git a/e2etests/testdata/stable/arrowhead_adjustment/dagre/sketch.exp.svg b/e2etests/testdata/stable/arrowhead_adjustment/dagre/sketch.exp.svg index 4a3cbd94e1..f51f4d1c9c 100644 --- a/e2etests/testdata/stable/arrowhead_adjustment/dagre/sketch.exp.svg +++ b/e2etests/testdata/stable/arrowhead_adjustment/dagre/sketch.exp.svg @@ -1,16 +1,16 @@ -abc * + .d2-3953868334 .fill-N1{fill:#0A0F25;} + .d2-3953868334 .fill-N2{fill:#676C7E;} + .d2-3953868334 .fill-N3{fill:#9499AB;} + .d2-3953868334 .fill-N4{fill:#CFD2DD;} + .d2-3953868334 .fill-N5{fill:#DEE1EB;} + .d2-3953868334 .fill-N6{fill:#EEF1F8;} + .d2-3953868334 .fill-N7{fill:#FFFFFF;} + .d2-3953868334 .fill-B1{fill:#0D32B2;} + .d2-3953868334 .fill-B2{fill:#0D32B2;} + .d2-3953868334 .fill-B3{fill:#E3E9FD;} + .d2-3953868334 .fill-B4{fill:#E3E9FD;} + .d2-3953868334 .fill-B5{fill:#EDF0FD;} + .d2-3953868334 .fill-B6{fill:#F7F8FE;} + .d2-3953868334 .fill-AA2{fill:#4A6FF3;} + .d2-3953868334 .fill-AA4{fill:#EDF0FD;} + .d2-3953868334 .fill-AA5{fill:#F7F8FE;} + .d2-3953868334 .fill-AB4{fill:#EDF0FD;} + .d2-3953868334 .fill-AB5{fill:#F7F8FE;} + .d2-3953868334 .stroke-N1{stroke:#0A0F25;} + .d2-3953868334 .stroke-N2{stroke:#676C7E;} + .d2-3953868334 .stroke-N3{stroke:#9499AB;} + .d2-3953868334 .stroke-N4{stroke:#CFD2DD;} + .d2-3953868334 .stroke-N5{stroke:#DEE1EB;} + .d2-3953868334 .stroke-N6{stroke:#EEF1F8;} + .d2-3953868334 .stroke-N7{stroke:#FFFFFF;} + .d2-3953868334 .stroke-B1{stroke:#0D32B2;} + .d2-3953868334 .stroke-B2{stroke:#0D32B2;} + .d2-3953868334 .stroke-B3{stroke:#E3E9FD;} + .d2-3953868334 .stroke-B4{stroke:#E3E9FD;} + .d2-3953868334 .stroke-B5{stroke:#EDF0FD;} + .d2-3953868334 .stroke-B6{stroke:#F7F8FE;} + .d2-3953868334 .stroke-AA2{stroke:#4A6FF3;} + .d2-3953868334 .stroke-AA4{stroke:#EDF0FD;} + .d2-3953868334 .stroke-AA5{stroke:#F7F8FE;} + .d2-3953868334 .stroke-AB4{stroke:#EDF0FD;} + .d2-3953868334 .stroke-AB5{stroke:#F7F8FE;} + .d2-3953868334 .background-color-N1{background-color:#0A0F25;} + .d2-3953868334 .background-color-N2{background-color:#676C7E;} + .d2-3953868334 .background-color-N3{background-color:#9499AB;} + .d2-3953868334 .background-color-N4{background-color:#CFD2DD;} + .d2-3953868334 .background-color-N5{background-color:#DEE1EB;} + .d2-3953868334 .background-color-N6{background-color:#EEF1F8;} + .d2-3953868334 .background-color-N7{background-color:#FFFFFF;} + .d2-3953868334 .background-color-B1{background-color:#0D32B2;} + .d2-3953868334 .background-color-B2{background-color:#0D32B2;} + .d2-3953868334 .background-color-B3{background-color:#E3E9FD;} + .d2-3953868334 .background-color-B4{background-color:#E3E9FD;} + .d2-3953868334 .background-color-B5{background-color:#EDF0FD;} + .d2-3953868334 .background-color-B6{background-color:#F7F8FE;} + .d2-3953868334 .background-color-AA2{background-color:#4A6FF3;} + .d2-3953868334 .background-color-AA4{background-color:#EDF0FD;} + .d2-3953868334 .background-color-AA5{background-color:#F7F8FE;} + .d2-3953868334 .background-color-AB4{background-color:#EDF0FD;} + .d2-3953868334 .background-color-AB5{background-color:#F7F8FE;} + .d2-3953868334 .color-N1{color:#0A0F25;} + .d2-3953868334 .color-N2{color:#676C7E;} + .d2-3953868334 .color-N3{color:#9499AB;} + .d2-3953868334 .color-N4{color:#CFD2DD;} + .d2-3953868334 .color-N5{color:#DEE1EB;} + .d2-3953868334 .color-N6{color:#EEF1F8;} + .d2-3953868334 .color-N7{color:#FFFFFF;} + .d2-3953868334 .color-B1{color:#0D32B2;} + .d2-3953868334 .color-B2{color:#0D32B2;} + .d2-3953868334 .color-B3{color:#E3E9FD;} + .d2-3953868334 .color-B4{color:#E3E9FD;} + .d2-3953868334 .color-B5{color:#EDF0FD;} + .d2-3953868334 .color-B6{color:#F7F8FE;} + .d2-3953868334 .color-AA2{color:#4A6FF3;} + .d2-3953868334 .color-AA4{color:#EDF0FD;} + .d2-3953868334 .color-AA5{color:#F7F8FE;} + .d2-3953868334 .color-AB4{color:#EDF0FD;} + .d2-3953868334 .color-AB5{color:#F7F8FE;}.appendix text.text{fill:#0A0F25}.md{--color-fg-default:#0A0F25;--color-fg-muted:#676C7E;--color-fg-subtle:#9499AB;--color-canvas-default:#FFFFFF;--color-canvas-subtle:#EEF1F8;--color-border-default:#0D32B2;--color-border-muted:#0D32B2;--color-neutral-muted:#EEF1F8;--color-accent-fg:#0D32B2;--color-accent-emphasis:#0D32B2;--color-attention-subtle:#676C7E;--color-danger-fg:red;}.sketch-overlay-B1{fill:url(#streaks-darker);mix-blend-mode:lighten}.sketch-overlay-B2{fill:url(#streaks-darker);mix-blend-mode:lighten}.sketch-overlay-B3{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-B4{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-B5{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-B6{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-AA2{fill:url(#streaks-dark);mix-blend-mode:overlay}.sketch-overlay-AA4{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-AA5{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-AB4{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-AB5{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-N1{fill:url(#streaks-darker);mix-blend-mode:lighten}.sketch-overlay-N2{fill:url(#streaks-dark);mix-blend-mode:overlay}.sketch-overlay-N3{fill:url(#streaks-normal);mix-blend-mode:color-burn}.sketch-overlay-N4{fill:url(#streaks-normal);mix-blend-mode:color-burn}.sketch-overlay-N5{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-N6{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-N7{fill:url(#streaks-bright);mix-blend-mode:darken}.light-code{display: block}.dark-code{display: none}]]>abc * diff --git a/e2etests/testdata/stable/arrowhead_adjustment/elk/board.exp.json b/e2etests/testdata/stable/arrowhead_adjustment/elk/board.exp.json index f449aba8d5..decd054abf 100644 --- a/e2etests/testdata/stable/arrowhead_adjustment/elk/board.exp.json +++ b/e2etests/testdata/stable/arrowhead_adjustment/elk/board.exp.json @@ -191,6 +191,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 83, @@ -245,6 +246,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 148, @@ -303,6 +305,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 103, @@ -341,6 +344,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 161, @@ -395,6 +399,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 135, diff --git a/e2etests/testdata/stable/arrowhead_adjustment/elk/sketch.exp.svg b/e2etests/testdata/stable/arrowhead_adjustment/elk/sketch.exp.svg index 49c338b57a..8c0fda576a 100644 --- a/e2etests/testdata/stable/arrowhead_adjustment/elk/sketch.exp.svg +++ b/e2etests/testdata/stable/arrowhead_adjustment/elk/sketch.exp.svg @@ -1,16 +1,16 @@ -abc * + .d2-1297511490 .fill-N1{fill:#0A0F25;} + .d2-1297511490 .fill-N2{fill:#676C7E;} + .d2-1297511490 .fill-N3{fill:#9499AB;} + .d2-1297511490 .fill-N4{fill:#CFD2DD;} + .d2-1297511490 .fill-N5{fill:#DEE1EB;} + .d2-1297511490 .fill-N6{fill:#EEF1F8;} + .d2-1297511490 .fill-N7{fill:#FFFFFF;} + .d2-1297511490 .fill-B1{fill:#0D32B2;} + .d2-1297511490 .fill-B2{fill:#0D32B2;} + .d2-1297511490 .fill-B3{fill:#E3E9FD;} + .d2-1297511490 .fill-B4{fill:#E3E9FD;} + .d2-1297511490 .fill-B5{fill:#EDF0FD;} + .d2-1297511490 .fill-B6{fill:#F7F8FE;} + .d2-1297511490 .fill-AA2{fill:#4A6FF3;} + .d2-1297511490 .fill-AA4{fill:#EDF0FD;} + .d2-1297511490 .fill-AA5{fill:#F7F8FE;} + .d2-1297511490 .fill-AB4{fill:#EDF0FD;} + .d2-1297511490 .fill-AB5{fill:#F7F8FE;} + .d2-1297511490 .stroke-N1{stroke:#0A0F25;} + .d2-1297511490 .stroke-N2{stroke:#676C7E;} + .d2-1297511490 .stroke-N3{stroke:#9499AB;} + .d2-1297511490 .stroke-N4{stroke:#CFD2DD;} + .d2-1297511490 .stroke-N5{stroke:#DEE1EB;} + .d2-1297511490 .stroke-N6{stroke:#EEF1F8;} + .d2-1297511490 .stroke-N7{stroke:#FFFFFF;} + .d2-1297511490 .stroke-B1{stroke:#0D32B2;} + .d2-1297511490 .stroke-B2{stroke:#0D32B2;} + .d2-1297511490 .stroke-B3{stroke:#E3E9FD;} + .d2-1297511490 .stroke-B4{stroke:#E3E9FD;} + .d2-1297511490 .stroke-B5{stroke:#EDF0FD;} + .d2-1297511490 .stroke-B6{stroke:#F7F8FE;} + .d2-1297511490 .stroke-AA2{stroke:#4A6FF3;} + .d2-1297511490 .stroke-AA4{stroke:#EDF0FD;} + .d2-1297511490 .stroke-AA5{stroke:#F7F8FE;} + .d2-1297511490 .stroke-AB4{stroke:#EDF0FD;} + .d2-1297511490 .stroke-AB5{stroke:#F7F8FE;} + .d2-1297511490 .background-color-N1{background-color:#0A0F25;} + .d2-1297511490 .background-color-N2{background-color:#676C7E;} + .d2-1297511490 .background-color-N3{background-color:#9499AB;} + .d2-1297511490 .background-color-N4{background-color:#CFD2DD;} + .d2-1297511490 .background-color-N5{background-color:#DEE1EB;} + .d2-1297511490 .background-color-N6{background-color:#EEF1F8;} + .d2-1297511490 .background-color-N7{background-color:#FFFFFF;} + .d2-1297511490 .background-color-B1{background-color:#0D32B2;} + .d2-1297511490 .background-color-B2{background-color:#0D32B2;} + .d2-1297511490 .background-color-B3{background-color:#E3E9FD;} + .d2-1297511490 .background-color-B4{background-color:#E3E9FD;} + .d2-1297511490 .background-color-B5{background-color:#EDF0FD;} + .d2-1297511490 .background-color-B6{background-color:#F7F8FE;} + .d2-1297511490 .background-color-AA2{background-color:#4A6FF3;} + .d2-1297511490 .background-color-AA4{background-color:#EDF0FD;} + .d2-1297511490 .background-color-AA5{background-color:#F7F8FE;} + .d2-1297511490 .background-color-AB4{background-color:#EDF0FD;} + .d2-1297511490 .background-color-AB5{background-color:#F7F8FE;} + .d2-1297511490 .color-N1{color:#0A0F25;} + .d2-1297511490 .color-N2{color:#676C7E;} + .d2-1297511490 .color-N3{color:#9499AB;} + .d2-1297511490 .color-N4{color:#CFD2DD;} + .d2-1297511490 .color-N5{color:#DEE1EB;} + .d2-1297511490 .color-N6{color:#EEF1F8;} + .d2-1297511490 .color-N7{color:#FFFFFF;} + .d2-1297511490 .color-B1{color:#0D32B2;} + .d2-1297511490 .color-B2{color:#0D32B2;} + .d2-1297511490 .color-B3{color:#E3E9FD;} + .d2-1297511490 .color-B4{color:#E3E9FD;} + .d2-1297511490 .color-B5{color:#EDF0FD;} + .d2-1297511490 .color-B6{color:#F7F8FE;} + .d2-1297511490 .color-AA2{color:#4A6FF3;} + .d2-1297511490 .color-AA4{color:#EDF0FD;} + .d2-1297511490 .color-AA5{color:#F7F8FE;} + .d2-1297511490 .color-AB4{color:#EDF0FD;} + .d2-1297511490 .color-AB5{color:#F7F8FE;}.appendix text.text{fill:#0A0F25}.md{--color-fg-default:#0A0F25;--color-fg-muted:#676C7E;--color-fg-subtle:#9499AB;--color-canvas-default:#FFFFFF;--color-canvas-subtle:#EEF1F8;--color-border-default:#0D32B2;--color-border-muted:#0D32B2;--color-neutral-muted:#EEF1F8;--color-accent-fg:#0D32B2;--color-accent-emphasis:#0D32B2;--color-attention-subtle:#676C7E;--color-danger-fg:red;}.sketch-overlay-B1{fill:url(#streaks-darker);mix-blend-mode:lighten}.sketch-overlay-B2{fill:url(#streaks-darker);mix-blend-mode:lighten}.sketch-overlay-B3{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-B4{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-B5{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-B6{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-AA2{fill:url(#streaks-dark);mix-blend-mode:overlay}.sketch-overlay-AA4{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-AA5{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-AB4{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-AB5{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-N1{fill:url(#streaks-darker);mix-blend-mode:lighten}.sketch-overlay-N2{fill:url(#streaks-dark);mix-blend-mode:overlay}.sketch-overlay-N3{fill:url(#streaks-normal);mix-blend-mode:color-burn}.sketch-overlay-N4{fill:url(#streaks-normal);mix-blend-mode:color-burn}.sketch-overlay-N5{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-N6{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-N7{fill:url(#streaks-bright);mix-blend-mode:darken}.light-code{display: block}.dark-code{display: none}]]>abc * diff --git a/e2etests/testdata/stable/arrowhead_labels/dagre/board.exp.json b/e2etests/testdata/stable/arrowhead_labels/dagre/board.exp.json index 3311c9b1e0..739067ebb6 100644 --- a/e2etests/testdata/stable/arrowhead_labels/dagre/board.exp.json +++ b/e2etests/testdata/stable/arrowhead_labels/dagre/board.exp.json @@ -134,6 +134,7 @@ "labelHeight": 21, "labelPosition": "INSIDE_MIDDLE_CENTER", "labelPercentage": 0, + "link": "", "route": [ { "x": 100.5, diff --git a/e2etests/testdata/stable/arrowhead_labels/dagre/sketch.exp.svg b/e2etests/testdata/stable/arrowhead_labels/dagre/sketch.exp.svg index 73d2d09f8d..7c3a6486c4 100644 --- a/e2etests/testdata/stable/arrowhead_labels/dagre/sketch.exp.svg +++ b/e2etests/testdata/stable/arrowhead_labels/dagre/sketch.exp.svg @@ -1,16 +1,16 @@ -ab To err is human, to moo bovine1* + .d2-1747631069 .fill-N1{fill:#0A0F25;} + .d2-1747631069 .fill-N2{fill:#676C7E;} + .d2-1747631069 .fill-N3{fill:#9499AB;} + .d2-1747631069 .fill-N4{fill:#CFD2DD;} + .d2-1747631069 .fill-N5{fill:#DEE1EB;} + .d2-1747631069 .fill-N6{fill:#EEF1F8;} + .d2-1747631069 .fill-N7{fill:#FFFFFF;} + .d2-1747631069 .fill-B1{fill:#0D32B2;} + .d2-1747631069 .fill-B2{fill:#0D32B2;} + .d2-1747631069 .fill-B3{fill:#E3E9FD;} + .d2-1747631069 .fill-B4{fill:#E3E9FD;} + .d2-1747631069 .fill-B5{fill:#EDF0FD;} + .d2-1747631069 .fill-B6{fill:#F7F8FE;} + .d2-1747631069 .fill-AA2{fill:#4A6FF3;} + .d2-1747631069 .fill-AA4{fill:#EDF0FD;} + .d2-1747631069 .fill-AA5{fill:#F7F8FE;} + .d2-1747631069 .fill-AB4{fill:#EDF0FD;} + .d2-1747631069 .fill-AB5{fill:#F7F8FE;} + .d2-1747631069 .stroke-N1{stroke:#0A0F25;} + .d2-1747631069 .stroke-N2{stroke:#676C7E;} + .d2-1747631069 .stroke-N3{stroke:#9499AB;} + .d2-1747631069 .stroke-N4{stroke:#CFD2DD;} + .d2-1747631069 .stroke-N5{stroke:#DEE1EB;} + .d2-1747631069 .stroke-N6{stroke:#EEF1F8;} + .d2-1747631069 .stroke-N7{stroke:#FFFFFF;} + .d2-1747631069 .stroke-B1{stroke:#0D32B2;} + .d2-1747631069 .stroke-B2{stroke:#0D32B2;} + .d2-1747631069 .stroke-B3{stroke:#E3E9FD;} + .d2-1747631069 .stroke-B4{stroke:#E3E9FD;} + .d2-1747631069 .stroke-B5{stroke:#EDF0FD;} + .d2-1747631069 .stroke-B6{stroke:#F7F8FE;} + .d2-1747631069 .stroke-AA2{stroke:#4A6FF3;} + .d2-1747631069 .stroke-AA4{stroke:#EDF0FD;} + .d2-1747631069 .stroke-AA5{stroke:#F7F8FE;} + .d2-1747631069 .stroke-AB4{stroke:#EDF0FD;} + .d2-1747631069 .stroke-AB5{stroke:#F7F8FE;} + .d2-1747631069 .background-color-N1{background-color:#0A0F25;} + .d2-1747631069 .background-color-N2{background-color:#676C7E;} + .d2-1747631069 .background-color-N3{background-color:#9499AB;} + .d2-1747631069 .background-color-N4{background-color:#CFD2DD;} + .d2-1747631069 .background-color-N5{background-color:#DEE1EB;} + .d2-1747631069 .background-color-N6{background-color:#EEF1F8;} + .d2-1747631069 .background-color-N7{background-color:#FFFFFF;} + .d2-1747631069 .background-color-B1{background-color:#0D32B2;} + .d2-1747631069 .background-color-B2{background-color:#0D32B2;} + .d2-1747631069 .background-color-B3{background-color:#E3E9FD;} + .d2-1747631069 .background-color-B4{background-color:#E3E9FD;} + .d2-1747631069 .background-color-B5{background-color:#EDF0FD;} + .d2-1747631069 .background-color-B6{background-color:#F7F8FE;} + .d2-1747631069 .background-color-AA2{background-color:#4A6FF3;} + .d2-1747631069 .background-color-AA4{background-color:#EDF0FD;} + .d2-1747631069 .background-color-AA5{background-color:#F7F8FE;} + .d2-1747631069 .background-color-AB4{background-color:#EDF0FD;} + .d2-1747631069 .background-color-AB5{background-color:#F7F8FE;} + .d2-1747631069 .color-N1{color:#0A0F25;} + .d2-1747631069 .color-N2{color:#676C7E;} + .d2-1747631069 .color-N3{color:#9499AB;} + .d2-1747631069 .color-N4{color:#CFD2DD;} + .d2-1747631069 .color-N5{color:#DEE1EB;} + .d2-1747631069 .color-N6{color:#EEF1F8;} + .d2-1747631069 .color-N7{color:#FFFFFF;} + .d2-1747631069 .color-B1{color:#0D32B2;} + .d2-1747631069 .color-B2{color:#0D32B2;} + .d2-1747631069 .color-B3{color:#E3E9FD;} + .d2-1747631069 .color-B4{color:#E3E9FD;} + .d2-1747631069 .color-B5{color:#EDF0FD;} + .d2-1747631069 .color-B6{color:#F7F8FE;} + .d2-1747631069 .color-AA2{color:#4A6FF3;} + .d2-1747631069 .color-AA4{color:#EDF0FD;} + .d2-1747631069 .color-AA5{color:#F7F8FE;} + .d2-1747631069 .color-AB4{color:#EDF0FD;} + .d2-1747631069 .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}]]>ab To err is human, to moo bovine1* diff --git a/e2etests/testdata/stable/arrowhead_labels/elk/board.exp.json b/e2etests/testdata/stable/arrowhead_labels/elk/board.exp.json index 621b52c5e7..467c2d30df 100644 --- a/e2etests/testdata/stable/arrowhead_labels/elk/board.exp.json +++ b/e2etests/testdata/stable/arrowhead_labels/elk/board.exp.json @@ -134,6 +134,7 @@ "labelHeight": 21, "labelPosition": "INSIDE_MIDDLE_CENTER", "labelPercentage": 0, + "link": "", "route": [ { "x": 112.5, diff --git a/e2etests/testdata/stable/arrowhead_labels/elk/sketch.exp.svg b/e2etests/testdata/stable/arrowhead_labels/elk/sketch.exp.svg index 21c8c9ba02..d08f4b8f72 100644 --- a/e2etests/testdata/stable/arrowhead_labels/elk/sketch.exp.svg +++ b/e2etests/testdata/stable/arrowhead_labels/elk/sketch.exp.svg @@ -1,16 +1,16 @@ -ab To err is human, to moo bovine1* + .d2-2912238582 .fill-N1{fill:#0A0F25;} + .d2-2912238582 .fill-N2{fill:#676C7E;} + .d2-2912238582 .fill-N3{fill:#9499AB;} + .d2-2912238582 .fill-N4{fill:#CFD2DD;} + .d2-2912238582 .fill-N5{fill:#DEE1EB;} + .d2-2912238582 .fill-N6{fill:#EEF1F8;} + .d2-2912238582 .fill-N7{fill:#FFFFFF;} + .d2-2912238582 .fill-B1{fill:#0D32B2;} + .d2-2912238582 .fill-B2{fill:#0D32B2;} + .d2-2912238582 .fill-B3{fill:#E3E9FD;} + .d2-2912238582 .fill-B4{fill:#E3E9FD;} + .d2-2912238582 .fill-B5{fill:#EDF0FD;} + .d2-2912238582 .fill-B6{fill:#F7F8FE;} + .d2-2912238582 .fill-AA2{fill:#4A6FF3;} + .d2-2912238582 .fill-AA4{fill:#EDF0FD;} + .d2-2912238582 .fill-AA5{fill:#F7F8FE;} + .d2-2912238582 .fill-AB4{fill:#EDF0FD;} + .d2-2912238582 .fill-AB5{fill:#F7F8FE;} + .d2-2912238582 .stroke-N1{stroke:#0A0F25;} + .d2-2912238582 .stroke-N2{stroke:#676C7E;} + .d2-2912238582 .stroke-N3{stroke:#9499AB;} + .d2-2912238582 .stroke-N4{stroke:#CFD2DD;} + .d2-2912238582 .stroke-N5{stroke:#DEE1EB;} + .d2-2912238582 .stroke-N6{stroke:#EEF1F8;} + .d2-2912238582 .stroke-N7{stroke:#FFFFFF;} + .d2-2912238582 .stroke-B1{stroke:#0D32B2;} + .d2-2912238582 .stroke-B2{stroke:#0D32B2;} + .d2-2912238582 .stroke-B3{stroke:#E3E9FD;} + .d2-2912238582 .stroke-B4{stroke:#E3E9FD;} + .d2-2912238582 .stroke-B5{stroke:#EDF0FD;} + .d2-2912238582 .stroke-B6{stroke:#F7F8FE;} + .d2-2912238582 .stroke-AA2{stroke:#4A6FF3;} + .d2-2912238582 .stroke-AA4{stroke:#EDF0FD;} + .d2-2912238582 .stroke-AA5{stroke:#F7F8FE;} + .d2-2912238582 .stroke-AB4{stroke:#EDF0FD;} + .d2-2912238582 .stroke-AB5{stroke:#F7F8FE;} + .d2-2912238582 .background-color-N1{background-color:#0A0F25;} + .d2-2912238582 .background-color-N2{background-color:#676C7E;} + .d2-2912238582 .background-color-N3{background-color:#9499AB;} + .d2-2912238582 .background-color-N4{background-color:#CFD2DD;} + .d2-2912238582 .background-color-N5{background-color:#DEE1EB;} + .d2-2912238582 .background-color-N6{background-color:#EEF1F8;} + .d2-2912238582 .background-color-N7{background-color:#FFFFFF;} + .d2-2912238582 .background-color-B1{background-color:#0D32B2;} + .d2-2912238582 .background-color-B2{background-color:#0D32B2;} + .d2-2912238582 .background-color-B3{background-color:#E3E9FD;} + .d2-2912238582 .background-color-B4{background-color:#E3E9FD;} + .d2-2912238582 .background-color-B5{background-color:#EDF0FD;} + .d2-2912238582 .background-color-B6{background-color:#F7F8FE;} + .d2-2912238582 .background-color-AA2{background-color:#4A6FF3;} + .d2-2912238582 .background-color-AA4{background-color:#EDF0FD;} + .d2-2912238582 .background-color-AA5{background-color:#F7F8FE;} + .d2-2912238582 .background-color-AB4{background-color:#EDF0FD;} + .d2-2912238582 .background-color-AB5{background-color:#F7F8FE;} + .d2-2912238582 .color-N1{color:#0A0F25;} + .d2-2912238582 .color-N2{color:#676C7E;} + .d2-2912238582 .color-N3{color:#9499AB;} + .d2-2912238582 .color-N4{color:#CFD2DD;} + .d2-2912238582 .color-N5{color:#DEE1EB;} + .d2-2912238582 .color-N6{color:#EEF1F8;} + .d2-2912238582 .color-N7{color:#FFFFFF;} + .d2-2912238582 .color-B1{color:#0D32B2;} + .d2-2912238582 .color-B2{color:#0D32B2;} + .d2-2912238582 .color-B3{color:#E3E9FD;} + .d2-2912238582 .color-B4{color:#E3E9FD;} + .d2-2912238582 .color-B5{color:#EDF0FD;} + .d2-2912238582 .color-B6{color:#F7F8FE;} + .d2-2912238582 .color-AA2{color:#4A6FF3;} + .d2-2912238582 .color-AA4{color:#EDF0FD;} + .d2-2912238582 .color-AA5{color:#F7F8FE;} + .d2-2912238582 .color-AB4{color:#EDF0FD;} + .d2-2912238582 .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}]]>ab To err is human, to moo bovine1* diff --git a/e2etests/testdata/stable/arrowhead_scaling/dagre/board.exp.json b/e2etests/testdata/stable/arrowhead_scaling/dagre/board.exp.json index da688e2876..4d9dd1953c 100644 --- a/e2etests/testdata/stable/arrowhead_scaling/dagre/board.exp.json +++ b/e2etests/testdata/stable/arrowhead_scaling/dagre/board.exp.json @@ -5869,6 +5869,7 @@ "labelHeight": 21, "labelPosition": "INSIDE_MIDDLE_CENTER", "labelPercentage": 0, + "link": "", "route": [ { "x": 86, @@ -5928,6 +5929,7 @@ "labelHeight": 21, "labelPosition": "INSIDE_MIDDLE_CENTER", "labelPercentage": 0, + "link": "", "route": [ { "x": 198.5, @@ -5987,6 +5989,7 @@ "labelHeight": 21, "labelPosition": "INSIDE_MIDDLE_CENTER", "labelPercentage": 0, + "link": "", "route": [ { "x": 312, @@ -6046,6 +6049,7 @@ "labelHeight": 21, "labelPosition": "INSIDE_MIDDLE_CENTER", "labelPercentage": 0, + "link": "", "route": [ { "x": 425.5, @@ -6105,6 +6109,7 @@ "labelHeight": 21, "labelPosition": "INSIDE_MIDDLE_CENTER", "labelPercentage": 0, + "link": "", "route": [ { "x": 542.5, @@ -6164,6 +6169,7 @@ "labelHeight": 21, "labelPosition": "INSIDE_MIDDLE_CENTER", "labelPercentage": 0, + "link": "", "route": [ { "x": 739, @@ -6223,6 +6229,7 @@ "labelHeight": 21, "labelPosition": "INSIDE_MIDDLE_CENTER", "labelPercentage": 0, + "link": "", "route": [ { "x": 851.5, @@ -6282,6 +6289,7 @@ "labelHeight": 21, "labelPosition": "INSIDE_MIDDLE_CENTER", "labelPercentage": 0, + "link": "", "route": [ { "x": 965, @@ -6341,6 +6349,7 @@ "labelHeight": 21, "labelPosition": "INSIDE_MIDDLE_CENTER", "labelPercentage": 0, + "link": "", "route": [ { "x": 1078.5, @@ -6400,6 +6409,7 @@ "labelHeight": 21, "labelPosition": "INSIDE_MIDDLE_CENTER", "labelPercentage": 0, + "link": "", "route": [ { "x": 1195.5, @@ -6459,6 +6469,7 @@ "labelHeight": 21, "labelPosition": "INSIDE_MIDDLE_CENTER", "labelPercentage": 0, + "link": "", "route": [ { "x": 1392, @@ -6518,6 +6529,7 @@ "labelHeight": 21, "labelPosition": "INSIDE_MIDDLE_CENTER", "labelPercentage": 0, + "link": "", "route": [ { "x": 1504.5, @@ -6577,6 +6589,7 @@ "labelHeight": 21, "labelPosition": "INSIDE_MIDDLE_CENTER", "labelPercentage": 0, + "link": "", "route": [ { "x": 1618, @@ -6636,6 +6649,7 @@ "labelHeight": 21, "labelPosition": "INSIDE_MIDDLE_CENTER", "labelPercentage": 0, + "link": "", "route": [ { "x": 1731.5, @@ -6695,6 +6709,7 @@ "labelHeight": 21, "labelPosition": "INSIDE_MIDDLE_CENTER", "labelPercentage": 0, + "link": "", "route": [ { "x": 1848.5, @@ -6754,6 +6769,7 @@ "labelHeight": 21, "labelPosition": "INSIDE_MIDDLE_CENTER", "labelPercentage": 0, + "link": "", "route": [ { "x": 2045, @@ -6813,6 +6829,7 @@ "labelHeight": 21, "labelPosition": "INSIDE_MIDDLE_CENTER", "labelPercentage": 0, + "link": "", "route": [ { "x": 2157.5, @@ -6872,6 +6889,7 @@ "labelHeight": 21, "labelPosition": "INSIDE_MIDDLE_CENTER", "labelPercentage": 0, + "link": "", "route": [ { "x": 2271, @@ -6931,6 +6949,7 @@ "labelHeight": 21, "labelPosition": "INSIDE_MIDDLE_CENTER", "labelPercentage": 0, + "link": "", "route": [ { "x": 2384.5, @@ -6990,6 +7009,7 @@ "labelHeight": 21, "labelPosition": "INSIDE_MIDDLE_CENTER", "labelPercentage": 0, + "link": "", "route": [ { "x": 2501.5, @@ -7049,6 +7069,7 @@ "labelHeight": 21, "labelPosition": "INSIDE_MIDDLE_CENTER", "labelPercentage": 0, + "link": "", "route": [ { "x": 2698, @@ -7108,6 +7129,7 @@ "labelHeight": 21, "labelPosition": "INSIDE_MIDDLE_CENTER", "labelPercentage": 0, + "link": "", "route": [ { "x": 2810.5, @@ -7167,6 +7189,7 @@ "labelHeight": 21, "labelPosition": "INSIDE_MIDDLE_CENTER", "labelPercentage": 0, + "link": "", "route": [ { "x": 2924, @@ -7226,6 +7249,7 @@ "labelHeight": 21, "labelPosition": "INSIDE_MIDDLE_CENTER", "labelPercentage": 0, + "link": "", "route": [ { "x": 3037.5, @@ -7285,6 +7309,7 @@ "labelHeight": 21, "labelPosition": "INSIDE_MIDDLE_CENTER", "labelPercentage": 0, + "link": "", "route": [ { "x": 3154.5, @@ -7344,6 +7369,7 @@ "labelHeight": 21, "labelPosition": "INSIDE_MIDDLE_CENTER", "labelPercentage": 0, + "link": "", "route": [ { "x": 3351, @@ -7403,6 +7429,7 @@ "labelHeight": 21, "labelPosition": "INSIDE_MIDDLE_CENTER", "labelPercentage": 0, + "link": "", "route": [ { "x": 3463.5, @@ -7462,6 +7489,7 @@ "labelHeight": 21, "labelPosition": "INSIDE_MIDDLE_CENTER", "labelPercentage": 0, + "link": "", "route": [ { "x": 3577, @@ -7521,6 +7549,7 @@ "labelHeight": 21, "labelPosition": "INSIDE_MIDDLE_CENTER", "labelPercentage": 0, + "link": "", "route": [ { "x": 3690.5, @@ -7580,6 +7609,7 @@ "labelHeight": 21, "labelPosition": "INSIDE_MIDDLE_CENTER", "labelPercentage": 0, + "link": "", "route": [ { "x": 3807.5, @@ -7639,6 +7669,7 @@ "labelHeight": 21, "labelPosition": "INSIDE_MIDDLE_CENTER", "labelPercentage": 0, + "link": "", "route": [ { "x": 4004, @@ -7698,6 +7729,7 @@ "labelHeight": 21, "labelPosition": "INSIDE_MIDDLE_CENTER", "labelPercentage": 0, + "link": "", "route": [ { "x": 4116.5, @@ -7757,6 +7789,7 @@ "labelHeight": 21, "labelPosition": "INSIDE_MIDDLE_CENTER", "labelPercentage": 0, + "link": "", "route": [ { "x": 4230, @@ -7816,6 +7849,7 @@ "labelHeight": 21, "labelPosition": "INSIDE_MIDDLE_CENTER", "labelPercentage": 0, + "link": "", "route": [ { "x": 4343.5, @@ -7875,6 +7909,7 @@ "labelHeight": 21, "labelPosition": "INSIDE_MIDDLE_CENTER", "labelPercentage": 0, + "link": "", "route": [ { "x": 4460.5, @@ -7934,6 +7969,7 @@ "labelHeight": 21, "labelPosition": "INSIDE_MIDDLE_CENTER", "labelPercentage": 0, + "link": "", "route": [ { "x": 4657, @@ -7993,6 +8029,7 @@ "labelHeight": 21, "labelPosition": "INSIDE_MIDDLE_CENTER", "labelPercentage": 0, + "link": "", "route": [ { "x": 4769.5, @@ -8052,6 +8089,7 @@ "labelHeight": 21, "labelPosition": "INSIDE_MIDDLE_CENTER", "labelPercentage": 0, + "link": "", "route": [ { "x": 4883, @@ -8111,6 +8149,7 @@ "labelHeight": 21, "labelPosition": "INSIDE_MIDDLE_CENTER", "labelPercentage": 0, + "link": "", "route": [ { "x": 4996.5, @@ -8170,6 +8209,7 @@ "labelHeight": 21, "labelPosition": "INSIDE_MIDDLE_CENTER", "labelPercentage": 0, + "link": "", "route": [ { "x": 5113.5, @@ -8229,6 +8269,7 @@ "labelHeight": 21, "labelPosition": "INSIDE_MIDDLE_CENTER", "labelPercentage": 0, + "link": "", "route": [ { "x": 5310, @@ -8288,6 +8329,7 @@ "labelHeight": 21, "labelPosition": "INSIDE_MIDDLE_CENTER", "labelPercentage": 0, + "link": "", "route": [ { "x": 5422.5, @@ -8347,6 +8389,7 @@ "labelHeight": 21, "labelPosition": "INSIDE_MIDDLE_CENTER", "labelPercentage": 0, + "link": "", "route": [ { "x": 5536, @@ -8406,6 +8449,7 @@ "labelHeight": 21, "labelPosition": "INSIDE_MIDDLE_CENTER", "labelPercentage": 0, + "link": "", "route": [ { "x": 5649.5, @@ -8465,6 +8509,7 @@ "labelHeight": 21, "labelPosition": "INSIDE_MIDDLE_CENTER", "labelPercentage": 0, + "link": "", "route": [ { "x": 5766.5, @@ -8524,6 +8569,7 @@ "labelHeight": 21, "labelPosition": "INSIDE_MIDDLE_CENTER", "labelPercentage": 0, + "link": "", "route": [ { "x": 5963, @@ -8583,6 +8629,7 @@ "labelHeight": 21, "labelPosition": "INSIDE_MIDDLE_CENTER", "labelPercentage": 0, + "link": "", "route": [ { "x": 6075.5, @@ -8642,6 +8689,7 @@ "labelHeight": 21, "labelPosition": "INSIDE_MIDDLE_CENTER", "labelPercentage": 0, + "link": "", "route": [ { "x": 6189, @@ -8701,6 +8749,7 @@ "labelHeight": 21, "labelPosition": "INSIDE_MIDDLE_CENTER", "labelPercentage": 0, + "link": "", "route": [ { "x": 6302.5, @@ -8760,6 +8809,7 @@ "labelHeight": 21, "labelPosition": "INSIDE_MIDDLE_CENTER", "labelPercentage": 0, + "link": "", "route": [ { "x": 6419.5, @@ -8819,6 +8869,7 @@ "labelHeight": 21, "labelPosition": "INSIDE_MIDDLE_CENTER", "labelPercentage": 0, + "link": "", "route": [ { "x": 6616, @@ -8878,6 +8929,7 @@ "labelHeight": 21, "labelPosition": "INSIDE_MIDDLE_CENTER", "labelPercentage": 0, + "link": "", "route": [ { "x": 6728.5, @@ -8937,6 +8989,7 @@ "labelHeight": 21, "labelPosition": "INSIDE_MIDDLE_CENTER", "labelPercentage": 0, + "link": "", "route": [ { "x": 6842, @@ -8996,6 +9049,7 @@ "labelHeight": 21, "labelPosition": "INSIDE_MIDDLE_CENTER", "labelPercentage": 0, + "link": "", "route": [ { "x": 6955.5, @@ -9055,6 +9109,7 @@ "labelHeight": 21, "labelPosition": "INSIDE_MIDDLE_CENTER", "labelPercentage": 0, + "link": "", "route": [ { "x": 7072.5, diff --git a/e2etests/testdata/stable/arrowhead_scaling/dagre/sketch.exp.svg b/e2etests/testdata/stable/arrowhead_scaling/dagre/sketch.exp.svg index 0365d64073..5952648d2a 100644 --- a/e2etests/testdata/stable/arrowhead_scaling/dagre/sketch.exp.svg +++ b/e2etests/testdata/stable/arrowhead_scaling/dagre/sketch.exp.svg @@ -1,23 +1,23 @@ -defaultlinearrowdiamondfilled diamondcirclefilled circlecf onecf one requiredcf manycf many required112244881515112244881515112244881515112244881515112244881515112244881515112244881515112244881515112244881515112244881515112244881515 1 2 4 8 15124815 1 2 4 8 15 1 2 4 8 15 1 2 4 8 15 1 2 4 8 15 1 2 4 8 15 1 2 4 8 15 1 2 4 8 15 1 2 4 8 15 1 2 4 8 15 + .d2-1634763040 .fill-N1{fill:#0A0F25;} + .d2-1634763040 .fill-N2{fill:#676C7E;} + .d2-1634763040 .fill-N3{fill:#9499AB;} + .d2-1634763040 .fill-N4{fill:#CFD2DD;} + .d2-1634763040 .fill-N5{fill:#DEE1EB;} + .d2-1634763040 .fill-N6{fill:#EEF1F8;} + .d2-1634763040 .fill-N7{fill:#FFFFFF;} + .d2-1634763040 .fill-B1{fill:#0D32B2;} + .d2-1634763040 .fill-B2{fill:#0D32B2;} + .d2-1634763040 .fill-B3{fill:#E3E9FD;} + .d2-1634763040 .fill-B4{fill:#E3E9FD;} + .d2-1634763040 .fill-B5{fill:#EDF0FD;} + .d2-1634763040 .fill-B6{fill:#F7F8FE;} + .d2-1634763040 .fill-AA2{fill:#4A6FF3;} + .d2-1634763040 .fill-AA4{fill:#EDF0FD;} + .d2-1634763040 .fill-AA5{fill:#F7F8FE;} + .d2-1634763040 .fill-AB4{fill:#EDF0FD;} + .d2-1634763040 .fill-AB5{fill:#F7F8FE;} + .d2-1634763040 .stroke-N1{stroke:#0A0F25;} + .d2-1634763040 .stroke-N2{stroke:#676C7E;} + .d2-1634763040 .stroke-N3{stroke:#9499AB;} + .d2-1634763040 .stroke-N4{stroke:#CFD2DD;} + .d2-1634763040 .stroke-N5{stroke:#DEE1EB;} + .d2-1634763040 .stroke-N6{stroke:#EEF1F8;} + .d2-1634763040 .stroke-N7{stroke:#FFFFFF;} + .d2-1634763040 .stroke-B1{stroke:#0D32B2;} + .d2-1634763040 .stroke-B2{stroke:#0D32B2;} + .d2-1634763040 .stroke-B3{stroke:#E3E9FD;} + .d2-1634763040 .stroke-B4{stroke:#E3E9FD;} + .d2-1634763040 .stroke-B5{stroke:#EDF0FD;} + .d2-1634763040 .stroke-B6{stroke:#F7F8FE;} + .d2-1634763040 .stroke-AA2{stroke:#4A6FF3;} + .d2-1634763040 .stroke-AA4{stroke:#EDF0FD;} + .d2-1634763040 .stroke-AA5{stroke:#F7F8FE;} + .d2-1634763040 .stroke-AB4{stroke:#EDF0FD;} + .d2-1634763040 .stroke-AB5{stroke:#F7F8FE;} + .d2-1634763040 .background-color-N1{background-color:#0A0F25;} + .d2-1634763040 .background-color-N2{background-color:#676C7E;} + .d2-1634763040 .background-color-N3{background-color:#9499AB;} + .d2-1634763040 .background-color-N4{background-color:#CFD2DD;} + .d2-1634763040 .background-color-N5{background-color:#DEE1EB;} + .d2-1634763040 .background-color-N6{background-color:#EEF1F8;} + .d2-1634763040 .background-color-N7{background-color:#FFFFFF;} + .d2-1634763040 .background-color-B1{background-color:#0D32B2;} + .d2-1634763040 .background-color-B2{background-color:#0D32B2;} + .d2-1634763040 .background-color-B3{background-color:#E3E9FD;} + .d2-1634763040 .background-color-B4{background-color:#E3E9FD;} + .d2-1634763040 .background-color-B5{background-color:#EDF0FD;} + .d2-1634763040 .background-color-B6{background-color:#F7F8FE;} + .d2-1634763040 .background-color-AA2{background-color:#4A6FF3;} + .d2-1634763040 .background-color-AA4{background-color:#EDF0FD;} + .d2-1634763040 .background-color-AA5{background-color:#F7F8FE;} + .d2-1634763040 .background-color-AB4{background-color:#EDF0FD;} + .d2-1634763040 .background-color-AB5{background-color:#F7F8FE;} + .d2-1634763040 .color-N1{color:#0A0F25;} + .d2-1634763040 .color-N2{color:#676C7E;} + .d2-1634763040 .color-N3{color:#9499AB;} + .d2-1634763040 .color-N4{color:#CFD2DD;} + .d2-1634763040 .color-N5{color:#DEE1EB;} + .d2-1634763040 .color-N6{color:#EEF1F8;} + .d2-1634763040 .color-N7{color:#FFFFFF;} + .d2-1634763040 .color-B1{color:#0D32B2;} + .d2-1634763040 .color-B2{color:#0D32B2;} + .d2-1634763040 .color-B3{color:#E3E9FD;} + .d2-1634763040 .color-B4{color:#E3E9FD;} + .d2-1634763040 .color-B5{color:#EDF0FD;} + .d2-1634763040 .color-B6{color:#F7F8FE;} + .d2-1634763040 .color-AA2{color:#4A6FF3;} + .d2-1634763040 .color-AA4{color:#EDF0FD;} + .d2-1634763040 .color-AA5{color:#F7F8FE;} + .d2-1634763040 .color-AB4{color:#EDF0FD;} + .d2-1634763040 .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}]]>defaultlinearrowdiamondfilled diamondcirclefilled circlecf onecf one requiredcf manycf many required112244881515112244881515112244881515112244881515112244881515112244881515112244881515112244881515112244881515112244881515112244881515 1 2 4 8 15124815 1 2 4 8 15 1 2 4 8 15 1 2 4 8 15 1 2 4 8 15 1 2 4 8 15 1 2 4 8 15 1 2 4 8 15 1 2 4 8 15 1 2 4 8 15 diff --git a/e2etests/testdata/stable/arrowhead_scaling/elk/board.exp.json b/e2etests/testdata/stable/arrowhead_scaling/elk/board.exp.json index 8c66ee4d49..83697a66b1 100644 --- a/e2etests/testdata/stable/arrowhead_scaling/elk/board.exp.json +++ b/e2etests/testdata/stable/arrowhead_scaling/elk/board.exp.json @@ -5869,6 +5869,7 @@ "labelHeight": 21, "labelPosition": "INSIDE_MIDDLE_CENTER", "labelPercentage": 0, + "link": "", "route": [ { "x": 138, @@ -5907,6 +5908,7 @@ "labelHeight": 21, "labelPosition": "INSIDE_MIDDLE_CENTER", "labelPercentage": 0, + "link": "", "route": [ { "x": 210.5, @@ -5945,6 +5947,7 @@ "labelHeight": 21, "labelPosition": "INSIDE_MIDDLE_CENTER", "labelPercentage": 0, + "link": "", "route": [ { "x": 284, @@ -5983,6 +5986,7 @@ "labelHeight": 21, "labelPosition": "INSIDE_MIDDLE_CENTER", "labelPercentage": 0, + "link": "", "route": [ { "x": 357.5, @@ -6021,6 +6025,7 @@ "labelHeight": 21, "labelPosition": "INSIDE_MIDDLE_CENTER", "labelPercentage": 0, + "link": "", "route": [ { "x": 434.5, @@ -6059,6 +6064,7 @@ "labelHeight": 21, "labelPosition": "INSIDE_MIDDLE_CENTER", "labelPercentage": 0, + "link": "", "route": [ { "x": 711, @@ -6097,6 +6103,7 @@ "labelHeight": 21, "labelPosition": "INSIDE_MIDDLE_CENTER", "labelPercentage": 0, + "link": "", "route": [ { "x": 783.5, @@ -6135,6 +6142,7 @@ "labelHeight": 21, "labelPosition": "INSIDE_MIDDLE_CENTER", "labelPercentage": 0, + "link": "", "route": [ { "x": 857, @@ -6173,6 +6181,7 @@ "labelHeight": 21, "labelPosition": "INSIDE_MIDDLE_CENTER", "labelPercentage": 0, + "link": "", "route": [ { "x": 930.5, @@ -6211,6 +6220,7 @@ "labelHeight": 21, "labelPosition": "INSIDE_MIDDLE_CENTER", "labelPercentage": 0, + "link": "", "route": [ { "x": 1007.5, @@ -6249,6 +6259,7 @@ "labelHeight": 21, "labelPosition": "INSIDE_MIDDLE_CENTER", "labelPercentage": 0, + "link": "", "route": [ { "x": 1284, @@ -6287,6 +6298,7 @@ "labelHeight": 21, "labelPosition": "INSIDE_MIDDLE_CENTER", "labelPercentage": 0, + "link": "", "route": [ { "x": 1356.5, @@ -6325,6 +6337,7 @@ "labelHeight": 21, "labelPosition": "INSIDE_MIDDLE_CENTER", "labelPercentage": 0, + "link": "", "route": [ { "x": 1430, @@ -6363,6 +6376,7 @@ "labelHeight": 21, "labelPosition": "INSIDE_MIDDLE_CENTER", "labelPercentage": 0, + "link": "", "route": [ { "x": 1503.5, @@ -6401,6 +6415,7 @@ "labelHeight": 21, "labelPosition": "INSIDE_MIDDLE_CENTER", "labelPercentage": 0, + "link": "", "route": [ { "x": 1580.5, @@ -6439,6 +6454,7 @@ "labelHeight": 21, "labelPosition": "INSIDE_MIDDLE_CENTER", "labelPercentage": 0, + "link": "", "route": [ { "x": 1857, @@ -6477,6 +6493,7 @@ "labelHeight": 21, "labelPosition": "INSIDE_MIDDLE_CENTER", "labelPercentage": 0, + "link": "", "route": [ { "x": 1929.5, @@ -6515,6 +6532,7 @@ "labelHeight": 21, "labelPosition": "INSIDE_MIDDLE_CENTER", "labelPercentage": 0, + "link": "", "route": [ { "x": 2003, @@ -6553,6 +6571,7 @@ "labelHeight": 21, "labelPosition": "INSIDE_MIDDLE_CENTER", "labelPercentage": 0, + "link": "", "route": [ { "x": 2076.5, @@ -6591,6 +6610,7 @@ "labelHeight": 21, "labelPosition": "INSIDE_MIDDLE_CENTER", "labelPercentage": 0, + "link": "", "route": [ { "x": 2153.5, @@ -6629,6 +6649,7 @@ "labelHeight": 21, "labelPosition": "INSIDE_MIDDLE_CENTER", "labelPercentage": 0, + "link": "", "route": [ { "x": 2430, @@ -6667,6 +6688,7 @@ "labelHeight": 21, "labelPosition": "INSIDE_MIDDLE_CENTER", "labelPercentage": 0, + "link": "", "route": [ { "x": 2502.5, @@ -6705,6 +6727,7 @@ "labelHeight": 21, "labelPosition": "INSIDE_MIDDLE_CENTER", "labelPercentage": 0, + "link": "", "route": [ { "x": 2576, @@ -6743,6 +6766,7 @@ "labelHeight": 21, "labelPosition": "INSIDE_MIDDLE_CENTER", "labelPercentage": 0, + "link": "", "route": [ { "x": 2649.5, @@ -6781,6 +6805,7 @@ "labelHeight": 21, "labelPosition": "INSIDE_MIDDLE_CENTER", "labelPercentage": 0, + "link": "", "route": [ { "x": 2726.5, @@ -6819,6 +6844,7 @@ "labelHeight": 21, "labelPosition": "INSIDE_MIDDLE_CENTER", "labelPercentage": 0, + "link": "", "route": [ { "x": 3003, @@ -6857,6 +6883,7 @@ "labelHeight": 21, "labelPosition": "INSIDE_MIDDLE_CENTER", "labelPercentage": 0, + "link": "", "route": [ { "x": 3075.5, @@ -6895,6 +6922,7 @@ "labelHeight": 21, "labelPosition": "INSIDE_MIDDLE_CENTER", "labelPercentage": 0, + "link": "", "route": [ { "x": 3149, @@ -6933,6 +6961,7 @@ "labelHeight": 21, "labelPosition": "INSIDE_MIDDLE_CENTER", "labelPercentage": 0, + "link": "", "route": [ { "x": 3222.5, @@ -6971,6 +7000,7 @@ "labelHeight": 21, "labelPosition": "INSIDE_MIDDLE_CENTER", "labelPercentage": 0, + "link": "", "route": [ { "x": 3299.5, @@ -7009,6 +7039,7 @@ "labelHeight": 21, "labelPosition": "INSIDE_MIDDLE_CENTER", "labelPercentage": 0, + "link": "", "route": [ { "x": 3576, @@ -7047,6 +7078,7 @@ "labelHeight": 21, "labelPosition": "INSIDE_MIDDLE_CENTER", "labelPercentage": 0, + "link": "", "route": [ { "x": 3648.5, @@ -7085,6 +7117,7 @@ "labelHeight": 21, "labelPosition": "INSIDE_MIDDLE_CENTER", "labelPercentage": 0, + "link": "", "route": [ { "x": 3722, @@ -7123,6 +7156,7 @@ "labelHeight": 21, "labelPosition": "INSIDE_MIDDLE_CENTER", "labelPercentage": 0, + "link": "", "route": [ { "x": 3795.5, @@ -7161,6 +7195,7 @@ "labelHeight": 21, "labelPosition": "INSIDE_MIDDLE_CENTER", "labelPercentage": 0, + "link": "", "route": [ { "x": 3872.5, @@ -7199,6 +7234,7 @@ "labelHeight": 21, "labelPosition": "INSIDE_MIDDLE_CENTER", "labelPercentage": 0, + "link": "", "route": [ { "x": 4149, @@ -7237,6 +7273,7 @@ "labelHeight": 21, "labelPosition": "INSIDE_MIDDLE_CENTER", "labelPercentage": 0, + "link": "", "route": [ { "x": 4221.5, @@ -7275,6 +7312,7 @@ "labelHeight": 21, "labelPosition": "INSIDE_MIDDLE_CENTER", "labelPercentage": 0, + "link": "", "route": [ { "x": 4295, @@ -7313,6 +7351,7 @@ "labelHeight": 21, "labelPosition": "INSIDE_MIDDLE_CENTER", "labelPercentage": 0, + "link": "", "route": [ { "x": 4368.5, @@ -7351,6 +7390,7 @@ "labelHeight": 21, "labelPosition": "INSIDE_MIDDLE_CENTER", "labelPercentage": 0, + "link": "", "route": [ { "x": 4445.5, @@ -7389,6 +7429,7 @@ "labelHeight": 21, "labelPosition": "INSIDE_MIDDLE_CENTER", "labelPercentage": 0, + "link": "", "route": [ { "x": 4722, @@ -7427,6 +7468,7 @@ "labelHeight": 21, "labelPosition": "INSIDE_MIDDLE_CENTER", "labelPercentage": 0, + "link": "", "route": [ { "x": 4794.5, @@ -7465,6 +7507,7 @@ "labelHeight": 21, "labelPosition": "INSIDE_MIDDLE_CENTER", "labelPercentage": 0, + "link": "", "route": [ { "x": 4868, @@ -7503,6 +7546,7 @@ "labelHeight": 21, "labelPosition": "INSIDE_MIDDLE_CENTER", "labelPercentage": 0, + "link": "", "route": [ { "x": 4941.5, @@ -7541,6 +7585,7 @@ "labelHeight": 21, "labelPosition": "INSIDE_MIDDLE_CENTER", "labelPercentage": 0, + "link": "", "route": [ { "x": 5018.5, @@ -7579,6 +7624,7 @@ "labelHeight": 21, "labelPosition": "INSIDE_MIDDLE_CENTER", "labelPercentage": 0, + "link": "", "route": [ { "x": 5295, @@ -7617,6 +7663,7 @@ "labelHeight": 21, "labelPosition": "INSIDE_MIDDLE_CENTER", "labelPercentage": 0, + "link": "", "route": [ { "x": 5367.5, @@ -7655,6 +7702,7 @@ "labelHeight": 21, "labelPosition": "INSIDE_MIDDLE_CENTER", "labelPercentage": 0, + "link": "", "route": [ { "x": 5441, @@ -7693,6 +7741,7 @@ "labelHeight": 21, "labelPosition": "INSIDE_MIDDLE_CENTER", "labelPercentage": 0, + "link": "", "route": [ { "x": 5514.5, @@ -7731,6 +7780,7 @@ "labelHeight": 21, "labelPosition": "INSIDE_MIDDLE_CENTER", "labelPercentage": 0, + "link": "", "route": [ { "x": 5591.5, @@ -7769,6 +7819,7 @@ "labelHeight": 21, "labelPosition": "INSIDE_MIDDLE_CENTER", "labelPercentage": 0, + "link": "", "route": [ { "x": 5868, @@ -7807,6 +7858,7 @@ "labelHeight": 21, "labelPosition": "INSIDE_MIDDLE_CENTER", "labelPercentage": 0, + "link": "", "route": [ { "x": 5940.5, @@ -7845,6 +7897,7 @@ "labelHeight": 21, "labelPosition": "INSIDE_MIDDLE_CENTER", "labelPercentage": 0, + "link": "", "route": [ { "x": 6014, @@ -7883,6 +7936,7 @@ "labelHeight": 21, "labelPosition": "INSIDE_MIDDLE_CENTER", "labelPercentage": 0, + "link": "", "route": [ { "x": 6087.5, @@ -7921,6 +7975,7 @@ "labelHeight": 21, "labelPosition": "INSIDE_MIDDLE_CENTER", "labelPercentage": 0, + "link": "", "route": [ { "x": 6164.5, diff --git a/e2etests/testdata/stable/arrowhead_scaling/elk/sketch.exp.svg b/e2etests/testdata/stable/arrowhead_scaling/elk/sketch.exp.svg index 09ff654af4..5f8203e37a 100644 --- a/e2etests/testdata/stable/arrowhead_scaling/elk/sketch.exp.svg +++ b/e2etests/testdata/stable/arrowhead_scaling/elk/sketch.exp.svg @@ -1,23 +1,23 @@ -defaultlinearrowdiamondfilled diamondcirclefilled circlecf onecf one requiredcf manycf many required112244881515112244881515112244881515112244881515112244881515112244881515112244881515112244881515112244881515112244881515112244881515 1 2 4 8 15124815 1 2 4 8 15 1 2 4 8 15 1 2 4 8 15 1 2 4 8 15 1 2 4 8 15 1 2 4 8 15 1 2 4 8 15 1 2 4 8 15 1 2 4 8 15 + .d2-3046051165 .fill-N1{fill:#0A0F25;} + .d2-3046051165 .fill-N2{fill:#676C7E;} + .d2-3046051165 .fill-N3{fill:#9499AB;} + .d2-3046051165 .fill-N4{fill:#CFD2DD;} + .d2-3046051165 .fill-N5{fill:#DEE1EB;} + .d2-3046051165 .fill-N6{fill:#EEF1F8;} + .d2-3046051165 .fill-N7{fill:#FFFFFF;} + .d2-3046051165 .fill-B1{fill:#0D32B2;} + .d2-3046051165 .fill-B2{fill:#0D32B2;} + .d2-3046051165 .fill-B3{fill:#E3E9FD;} + .d2-3046051165 .fill-B4{fill:#E3E9FD;} + .d2-3046051165 .fill-B5{fill:#EDF0FD;} + .d2-3046051165 .fill-B6{fill:#F7F8FE;} + .d2-3046051165 .fill-AA2{fill:#4A6FF3;} + .d2-3046051165 .fill-AA4{fill:#EDF0FD;} + .d2-3046051165 .fill-AA5{fill:#F7F8FE;} + .d2-3046051165 .fill-AB4{fill:#EDF0FD;} + .d2-3046051165 .fill-AB5{fill:#F7F8FE;} + .d2-3046051165 .stroke-N1{stroke:#0A0F25;} + .d2-3046051165 .stroke-N2{stroke:#676C7E;} + .d2-3046051165 .stroke-N3{stroke:#9499AB;} + .d2-3046051165 .stroke-N4{stroke:#CFD2DD;} + .d2-3046051165 .stroke-N5{stroke:#DEE1EB;} + .d2-3046051165 .stroke-N6{stroke:#EEF1F8;} + .d2-3046051165 .stroke-N7{stroke:#FFFFFF;} + .d2-3046051165 .stroke-B1{stroke:#0D32B2;} + .d2-3046051165 .stroke-B2{stroke:#0D32B2;} + .d2-3046051165 .stroke-B3{stroke:#E3E9FD;} + .d2-3046051165 .stroke-B4{stroke:#E3E9FD;} + .d2-3046051165 .stroke-B5{stroke:#EDF0FD;} + .d2-3046051165 .stroke-B6{stroke:#F7F8FE;} + .d2-3046051165 .stroke-AA2{stroke:#4A6FF3;} + .d2-3046051165 .stroke-AA4{stroke:#EDF0FD;} + .d2-3046051165 .stroke-AA5{stroke:#F7F8FE;} + .d2-3046051165 .stroke-AB4{stroke:#EDF0FD;} + .d2-3046051165 .stroke-AB5{stroke:#F7F8FE;} + .d2-3046051165 .background-color-N1{background-color:#0A0F25;} + .d2-3046051165 .background-color-N2{background-color:#676C7E;} + .d2-3046051165 .background-color-N3{background-color:#9499AB;} + .d2-3046051165 .background-color-N4{background-color:#CFD2DD;} + .d2-3046051165 .background-color-N5{background-color:#DEE1EB;} + .d2-3046051165 .background-color-N6{background-color:#EEF1F8;} + .d2-3046051165 .background-color-N7{background-color:#FFFFFF;} + .d2-3046051165 .background-color-B1{background-color:#0D32B2;} + .d2-3046051165 .background-color-B2{background-color:#0D32B2;} + .d2-3046051165 .background-color-B3{background-color:#E3E9FD;} + .d2-3046051165 .background-color-B4{background-color:#E3E9FD;} + .d2-3046051165 .background-color-B5{background-color:#EDF0FD;} + .d2-3046051165 .background-color-B6{background-color:#F7F8FE;} + .d2-3046051165 .background-color-AA2{background-color:#4A6FF3;} + .d2-3046051165 .background-color-AA4{background-color:#EDF0FD;} + .d2-3046051165 .background-color-AA5{background-color:#F7F8FE;} + .d2-3046051165 .background-color-AB4{background-color:#EDF0FD;} + .d2-3046051165 .background-color-AB5{background-color:#F7F8FE;} + .d2-3046051165 .color-N1{color:#0A0F25;} + .d2-3046051165 .color-N2{color:#676C7E;} + .d2-3046051165 .color-N3{color:#9499AB;} + .d2-3046051165 .color-N4{color:#CFD2DD;} + .d2-3046051165 .color-N5{color:#DEE1EB;} + .d2-3046051165 .color-N6{color:#EEF1F8;} + .d2-3046051165 .color-N7{color:#FFFFFF;} + .d2-3046051165 .color-B1{color:#0D32B2;} + .d2-3046051165 .color-B2{color:#0D32B2;} + .d2-3046051165 .color-B3{color:#E3E9FD;} + .d2-3046051165 .color-B4{color:#E3E9FD;} + .d2-3046051165 .color-B5{color:#EDF0FD;} + .d2-3046051165 .color-B6{color:#F7F8FE;} + .d2-3046051165 .color-AA2{color:#4A6FF3;} + .d2-3046051165 .color-AA4{color:#EDF0FD;} + .d2-3046051165 .color-AA5{color:#F7F8FE;} + .d2-3046051165 .color-AB4{color:#EDF0FD;} + .d2-3046051165 .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}]]>defaultlinearrowdiamondfilled diamondcirclefilled circlecf onecf one requiredcf manycf many required112244881515112244881515112244881515112244881515112244881515112244881515112244881515112244881515112244881515112244881515112244881515 1 2 4 8 15124815 1 2 4 8 15 1 2 4 8 15 1 2 4 8 15 1 2 4 8 15 1 2 4 8 15 1 2 4 8 15 1 2 4 8 15 1 2 4 8 15 1 2 4 8 15 diff --git a/e2etests/testdata/stable/basic-tooltips/dagre/board.exp.json b/e2etests/testdata/stable/basic-tooltips/dagre/board.exp.json index c42b857e9a..8cebcc900a 100644 --- a/e2etests/testdata/stable/basic-tooltips/dagre/board.exp.json +++ b/e2etests/testdata/stable/basic-tooltips/dagre/board.exp.json @@ -110,6 +110,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 27, diff --git a/e2etests/testdata/stable/basic-tooltips/dagre/sketch.exp.svg b/e2etests/testdata/stable/basic-tooltips/dagre/sketch.exp.svg index ebd2ea08ef..8b561352c1 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-1071335462 .fill-N1{fill:#0A0F25;} + .d2-1071335462 .fill-N2{fill:#676C7E;} + .d2-1071335462 .fill-N3{fill:#9499AB;} + .d2-1071335462 .fill-N4{fill:#CFD2DD;} + .d2-1071335462 .fill-N5{fill:#DEE1EB;} + .d2-1071335462 .fill-N6{fill:#EEF1F8;} + .d2-1071335462 .fill-N7{fill:#FFFFFF;} + .d2-1071335462 .fill-B1{fill:#0D32B2;} + .d2-1071335462 .fill-B2{fill:#0D32B2;} + .d2-1071335462 .fill-B3{fill:#E3E9FD;} + .d2-1071335462 .fill-B4{fill:#E3E9FD;} + .d2-1071335462 .fill-B5{fill:#EDF0FD;} + .d2-1071335462 .fill-B6{fill:#F7F8FE;} + .d2-1071335462 .fill-AA2{fill:#4A6FF3;} + .d2-1071335462 .fill-AA4{fill:#EDF0FD;} + .d2-1071335462 .fill-AA5{fill:#F7F8FE;} + .d2-1071335462 .fill-AB4{fill:#EDF0FD;} + .d2-1071335462 .fill-AB5{fill:#F7F8FE;} + .d2-1071335462 .stroke-N1{stroke:#0A0F25;} + .d2-1071335462 .stroke-N2{stroke:#676C7E;} + .d2-1071335462 .stroke-N3{stroke:#9499AB;} + .d2-1071335462 .stroke-N4{stroke:#CFD2DD;} + .d2-1071335462 .stroke-N5{stroke:#DEE1EB;} + .d2-1071335462 .stroke-N6{stroke:#EEF1F8;} + .d2-1071335462 .stroke-N7{stroke:#FFFFFF;} + .d2-1071335462 .stroke-B1{stroke:#0D32B2;} + .d2-1071335462 .stroke-B2{stroke:#0D32B2;} + .d2-1071335462 .stroke-B3{stroke:#E3E9FD;} + .d2-1071335462 .stroke-B4{stroke:#E3E9FD;} + .d2-1071335462 .stroke-B5{stroke:#EDF0FD;} + .d2-1071335462 .stroke-B6{stroke:#F7F8FE;} + .d2-1071335462 .stroke-AA2{stroke:#4A6FF3;} + .d2-1071335462 .stroke-AA4{stroke:#EDF0FD;} + .d2-1071335462 .stroke-AA5{stroke:#F7F8FE;} + .d2-1071335462 .stroke-AB4{stroke:#EDF0FD;} + .d2-1071335462 .stroke-AB5{stroke:#F7F8FE;} + .d2-1071335462 .background-color-N1{background-color:#0A0F25;} + .d2-1071335462 .background-color-N2{background-color:#676C7E;} + .d2-1071335462 .background-color-N3{background-color:#9499AB;} + .d2-1071335462 .background-color-N4{background-color:#CFD2DD;} + .d2-1071335462 .background-color-N5{background-color:#DEE1EB;} + .d2-1071335462 .background-color-N6{background-color:#EEF1F8;} + .d2-1071335462 .background-color-N7{background-color:#FFFFFF;} + .d2-1071335462 .background-color-B1{background-color:#0D32B2;} + .d2-1071335462 .background-color-B2{background-color:#0D32B2;} + .d2-1071335462 .background-color-B3{background-color:#E3E9FD;} + .d2-1071335462 .background-color-B4{background-color:#E3E9FD;} + .d2-1071335462 .background-color-B5{background-color:#EDF0FD;} + .d2-1071335462 .background-color-B6{background-color:#F7F8FE;} + .d2-1071335462 .background-color-AA2{background-color:#4A6FF3;} + .d2-1071335462 .background-color-AA4{background-color:#EDF0FD;} + .d2-1071335462 .background-color-AA5{background-color:#F7F8FE;} + .d2-1071335462 .background-color-AB4{background-color:#EDF0FD;} + .d2-1071335462 .background-color-AB5{background-color:#F7F8FE;} + .d2-1071335462 .color-N1{color:#0A0F25;} + .d2-1071335462 .color-N2{color:#676C7E;} + .d2-1071335462 .color-N3{color:#9499AB;} + .d2-1071335462 .color-N4{color:#CFD2DD;} + .d2-1071335462 .color-N5{color:#DEE1EB;} + .d2-1071335462 .color-N6{color:#EEF1F8;} + .d2-1071335462 .color-N7{color:#FFFFFF;} + .d2-1071335462 .color-B1{color:#0D32B2;} + .d2-1071335462 .color-B2{color:#0D32B2;} + .d2-1071335462 .color-B3{color:#E3E9FD;} + .d2-1071335462 .color-B4{color:#E3E9FD;} + .d2-1071335462 .color-B5{color:#EDF0FD;} + .d2-1071335462 .color-B6{color:#F7F8FE;} + .d2-1071335462 .color-AA2{color:#4A6FF3;} + .d2-1071335462 .color-AA4{color:#EDF0FD;} + .d2-1071335462 .color-AA5{color:#F7F8FE;} + .d2-1071335462 .color-AB4{color:#EDF0FD;} + .d2-1071335462 .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 @@ -118,7 +118,7 @@ - + diff --git a/e2etests/testdata/stable/basic-tooltips/elk/board.exp.json b/e2etests/testdata/stable/basic-tooltips/elk/board.exp.json index ab5072fff0..6101225c40 100644 --- a/e2etests/testdata/stable/basic-tooltips/elk/board.exp.json +++ b/e2etests/testdata/stable/basic-tooltips/elk/board.exp.json @@ -110,6 +110,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 39, diff --git a/e2etests/testdata/stable/basic-tooltips/elk/sketch.exp.svg b/e2etests/testdata/stable/basic-tooltips/elk/sketch.exp.svg index f844274335..10d20fa554 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-772877468 .fill-N1{fill:#0A0F25;} + .d2-772877468 .fill-N2{fill:#676C7E;} + .d2-772877468 .fill-N3{fill:#9499AB;} + .d2-772877468 .fill-N4{fill:#CFD2DD;} + .d2-772877468 .fill-N5{fill:#DEE1EB;} + .d2-772877468 .fill-N6{fill:#EEF1F8;} + .d2-772877468 .fill-N7{fill:#FFFFFF;} + .d2-772877468 .fill-B1{fill:#0D32B2;} + .d2-772877468 .fill-B2{fill:#0D32B2;} + .d2-772877468 .fill-B3{fill:#E3E9FD;} + .d2-772877468 .fill-B4{fill:#E3E9FD;} + .d2-772877468 .fill-B5{fill:#EDF0FD;} + .d2-772877468 .fill-B6{fill:#F7F8FE;} + .d2-772877468 .fill-AA2{fill:#4A6FF3;} + .d2-772877468 .fill-AA4{fill:#EDF0FD;} + .d2-772877468 .fill-AA5{fill:#F7F8FE;} + .d2-772877468 .fill-AB4{fill:#EDF0FD;} + .d2-772877468 .fill-AB5{fill:#F7F8FE;} + .d2-772877468 .stroke-N1{stroke:#0A0F25;} + .d2-772877468 .stroke-N2{stroke:#676C7E;} + .d2-772877468 .stroke-N3{stroke:#9499AB;} + .d2-772877468 .stroke-N4{stroke:#CFD2DD;} + .d2-772877468 .stroke-N5{stroke:#DEE1EB;} + .d2-772877468 .stroke-N6{stroke:#EEF1F8;} + .d2-772877468 .stroke-N7{stroke:#FFFFFF;} + .d2-772877468 .stroke-B1{stroke:#0D32B2;} + .d2-772877468 .stroke-B2{stroke:#0D32B2;} + .d2-772877468 .stroke-B3{stroke:#E3E9FD;} + .d2-772877468 .stroke-B4{stroke:#E3E9FD;} + .d2-772877468 .stroke-B5{stroke:#EDF0FD;} + .d2-772877468 .stroke-B6{stroke:#F7F8FE;} + .d2-772877468 .stroke-AA2{stroke:#4A6FF3;} + .d2-772877468 .stroke-AA4{stroke:#EDF0FD;} + .d2-772877468 .stroke-AA5{stroke:#F7F8FE;} + .d2-772877468 .stroke-AB4{stroke:#EDF0FD;} + .d2-772877468 .stroke-AB5{stroke:#F7F8FE;} + .d2-772877468 .background-color-N1{background-color:#0A0F25;} + .d2-772877468 .background-color-N2{background-color:#676C7E;} + .d2-772877468 .background-color-N3{background-color:#9499AB;} + .d2-772877468 .background-color-N4{background-color:#CFD2DD;} + .d2-772877468 .background-color-N5{background-color:#DEE1EB;} + .d2-772877468 .background-color-N6{background-color:#EEF1F8;} + .d2-772877468 .background-color-N7{background-color:#FFFFFF;} + .d2-772877468 .background-color-B1{background-color:#0D32B2;} + .d2-772877468 .background-color-B2{background-color:#0D32B2;} + .d2-772877468 .background-color-B3{background-color:#E3E9FD;} + .d2-772877468 .background-color-B4{background-color:#E3E9FD;} + .d2-772877468 .background-color-B5{background-color:#EDF0FD;} + .d2-772877468 .background-color-B6{background-color:#F7F8FE;} + .d2-772877468 .background-color-AA2{background-color:#4A6FF3;} + .d2-772877468 .background-color-AA4{background-color:#EDF0FD;} + .d2-772877468 .background-color-AA5{background-color:#F7F8FE;} + .d2-772877468 .background-color-AB4{background-color:#EDF0FD;} + .d2-772877468 .background-color-AB5{background-color:#F7F8FE;} + .d2-772877468 .color-N1{color:#0A0F25;} + .d2-772877468 .color-N2{color:#676C7E;} + .d2-772877468 .color-N3{color:#9499AB;} + .d2-772877468 .color-N4{color:#CFD2DD;} + .d2-772877468 .color-N5{color:#DEE1EB;} + .d2-772877468 .color-N6{color:#EEF1F8;} + .d2-772877468 .color-N7{color:#FFFFFF;} + .d2-772877468 .color-B1{color:#0D32B2;} + .d2-772877468 .color-B2{color:#0D32B2;} + .d2-772877468 .color-B3{color:#E3E9FD;} + .d2-772877468 .color-B4{color:#E3E9FD;} + .d2-772877468 .color-B5{color:#EDF0FD;} + .d2-772877468 .color-B6{color:#F7F8FE;} + .d2-772877468 .color-AA2{color:#4A6FF3;} + .d2-772877468 .color-AA4{color:#EDF0FD;} + .d2-772877468 .color-AA5{color:#F7F8FE;} + .d2-772877468 .color-AB4{color:#EDF0FD;} + .d2-772877468 .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 @@ -118,7 +118,7 @@ - + diff --git a/e2etests/testdata/stable/binary_tree/dagre/board.exp.json b/e2etests/testdata/stable/binary_tree/dagre/board.exp.json index 803757e7f9..aa0af356f1 100644 --- a/e2etests/testdata/stable/binary_tree/dagre/board.exp.json +++ b/e2etests/testdata/stable/binary_tree/dagre/board.exp.json @@ -643,6 +643,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 392.5, @@ -690,6 +691,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 445.25, @@ -737,6 +739,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 166, @@ -784,6 +787,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 218.75, @@ -831,6 +835,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 613.75, @@ -878,6 +883,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 667.25, @@ -925,6 +931,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 59.5, @@ -972,6 +979,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 104.5, @@ -1019,6 +1027,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 281, @@ -1066,6 +1075,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 324.5, @@ -1113,6 +1123,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 503.5, @@ -1160,6 +1171,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 548.5, @@ -1207,6 +1219,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 731.5, @@ -1254,6 +1267,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 777, diff --git a/e2etests/testdata/stable/binary_tree/dagre/sketch.exp.svg b/e2etests/testdata/stable/binary_tree/dagre/sketch.exp.svg index 2816958c93..214d9d8f53 100644 --- a/e2etests/testdata/stable/binary_tree/dagre/sketch.exp.svg +++ b/e2etests/testdata/stable/binary_tree/dagre/sketch.exp.svg @@ -1,9 +1,9 @@ -abcdefghijklmno + .d2-4070461641 .fill-N1{fill:#0A0F25;} + .d2-4070461641 .fill-N2{fill:#676C7E;} + .d2-4070461641 .fill-N3{fill:#9499AB;} + .d2-4070461641 .fill-N4{fill:#CFD2DD;} + .d2-4070461641 .fill-N5{fill:#DEE1EB;} + .d2-4070461641 .fill-N6{fill:#EEF1F8;} + .d2-4070461641 .fill-N7{fill:#FFFFFF;} + .d2-4070461641 .fill-B1{fill:#0D32B2;} + .d2-4070461641 .fill-B2{fill:#0D32B2;} + .d2-4070461641 .fill-B3{fill:#E3E9FD;} + .d2-4070461641 .fill-B4{fill:#E3E9FD;} + .d2-4070461641 .fill-B5{fill:#EDF0FD;} + .d2-4070461641 .fill-B6{fill:#F7F8FE;} + .d2-4070461641 .fill-AA2{fill:#4A6FF3;} + .d2-4070461641 .fill-AA4{fill:#EDF0FD;} + .d2-4070461641 .fill-AA5{fill:#F7F8FE;} + .d2-4070461641 .fill-AB4{fill:#EDF0FD;} + .d2-4070461641 .fill-AB5{fill:#F7F8FE;} + .d2-4070461641 .stroke-N1{stroke:#0A0F25;} + .d2-4070461641 .stroke-N2{stroke:#676C7E;} + .d2-4070461641 .stroke-N3{stroke:#9499AB;} + .d2-4070461641 .stroke-N4{stroke:#CFD2DD;} + .d2-4070461641 .stroke-N5{stroke:#DEE1EB;} + .d2-4070461641 .stroke-N6{stroke:#EEF1F8;} + .d2-4070461641 .stroke-N7{stroke:#FFFFFF;} + .d2-4070461641 .stroke-B1{stroke:#0D32B2;} + .d2-4070461641 .stroke-B2{stroke:#0D32B2;} + .d2-4070461641 .stroke-B3{stroke:#E3E9FD;} + .d2-4070461641 .stroke-B4{stroke:#E3E9FD;} + .d2-4070461641 .stroke-B5{stroke:#EDF0FD;} + .d2-4070461641 .stroke-B6{stroke:#F7F8FE;} + .d2-4070461641 .stroke-AA2{stroke:#4A6FF3;} + .d2-4070461641 .stroke-AA4{stroke:#EDF0FD;} + .d2-4070461641 .stroke-AA5{stroke:#F7F8FE;} + .d2-4070461641 .stroke-AB4{stroke:#EDF0FD;} + .d2-4070461641 .stroke-AB5{stroke:#F7F8FE;} + .d2-4070461641 .background-color-N1{background-color:#0A0F25;} + .d2-4070461641 .background-color-N2{background-color:#676C7E;} + .d2-4070461641 .background-color-N3{background-color:#9499AB;} + .d2-4070461641 .background-color-N4{background-color:#CFD2DD;} + .d2-4070461641 .background-color-N5{background-color:#DEE1EB;} + .d2-4070461641 .background-color-N6{background-color:#EEF1F8;} + .d2-4070461641 .background-color-N7{background-color:#FFFFFF;} + .d2-4070461641 .background-color-B1{background-color:#0D32B2;} + .d2-4070461641 .background-color-B2{background-color:#0D32B2;} + .d2-4070461641 .background-color-B3{background-color:#E3E9FD;} + .d2-4070461641 .background-color-B4{background-color:#E3E9FD;} + .d2-4070461641 .background-color-B5{background-color:#EDF0FD;} + .d2-4070461641 .background-color-B6{background-color:#F7F8FE;} + .d2-4070461641 .background-color-AA2{background-color:#4A6FF3;} + .d2-4070461641 .background-color-AA4{background-color:#EDF0FD;} + .d2-4070461641 .background-color-AA5{background-color:#F7F8FE;} + .d2-4070461641 .background-color-AB4{background-color:#EDF0FD;} + .d2-4070461641 .background-color-AB5{background-color:#F7F8FE;} + .d2-4070461641 .color-N1{color:#0A0F25;} + .d2-4070461641 .color-N2{color:#676C7E;} + .d2-4070461641 .color-N3{color:#9499AB;} + .d2-4070461641 .color-N4{color:#CFD2DD;} + .d2-4070461641 .color-N5{color:#DEE1EB;} + .d2-4070461641 .color-N6{color:#EEF1F8;} + .d2-4070461641 .color-N7{color:#FFFFFF;} + .d2-4070461641 .color-B1{color:#0D32B2;} + .d2-4070461641 .color-B2{color:#0D32B2;} + .d2-4070461641 .color-B3{color:#E3E9FD;} + .d2-4070461641 .color-B4{color:#E3E9FD;} + .d2-4070461641 .color-B5{color:#EDF0FD;} + .d2-4070461641 .color-B6{color:#F7F8FE;} + .d2-4070461641 .color-AA2{color:#4A6FF3;} + .d2-4070461641 .color-AA4{color:#EDF0FD;} + .d2-4070461641 .color-AA5{color:#F7F8FE;} + .d2-4070461641 .color-AB4{color:#EDF0FD;} + .d2-4070461641 .color-AB5{color:#F7F8FE;}.appendix text.text{fill:#0A0F25}.md{--color-fg-default:#0A0F25;--color-fg-muted:#676C7E;--color-fg-subtle:#9499AB;--color-canvas-default:#FFFFFF;--color-canvas-subtle:#EEF1F8;--color-border-default:#0D32B2;--color-border-muted:#0D32B2;--color-neutral-muted:#EEF1F8;--color-accent-fg:#0D32B2;--color-accent-emphasis:#0D32B2;--color-attention-subtle:#676C7E;--color-danger-fg:red;}.sketch-overlay-B1{fill:url(#streaks-darker);mix-blend-mode:lighten}.sketch-overlay-B2{fill:url(#streaks-darker);mix-blend-mode:lighten}.sketch-overlay-B3{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-B4{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-B5{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-B6{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-AA2{fill:url(#streaks-dark);mix-blend-mode:overlay}.sketch-overlay-AA4{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-AA5{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-AB4{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-AB5{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-N1{fill:url(#streaks-darker);mix-blend-mode:lighten}.sketch-overlay-N2{fill:url(#streaks-dark);mix-blend-mode:overlay}.sketch-overlay-N3{fill:url(#streaks-normal);mix-blend-mode:color-burn}.sketch-overlay-N4{fill:url(#streaks-normal);mix-blend-mode:color-burn}.sketch-overlay-N5{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-N6{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-N7{fill:url(#streaks-bright);mix-blend-mode:darken}.light-code{display: block}.dark-code{display: none}]]>abcdefghijklmno diff --git a/e2etests/testdata/stable/binary_tree/elk/board.exp.json b/e2etests/testdata/stable/binary_tree/elk/board.exp.json index 30f1361c53..4056970d12 100644 --- a/e2etests/testdata/stable/binary_tree/elk/board.exp.json +++ b/e2etests/testdata/stable/binary_tree/elk/board.exp.json @@ -643,6 +643,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 277.4159851074219, @@ -689,6 +690,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 304.0830078125, @@ -735,6 +737,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 131.16600036621094, @@ -781,6 +784,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 157.83299255371094, @@ -827,6 +831,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 418.9159851074219, @@ -873,6 +878,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 445.5830078125, @@ -919,6 +925,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 60.66600036621094, @@ -965,6 +972,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 87.33300018310547, @@ -1011,6 +1019,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 201.41600036621094, @@ -1057,6 +1066,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 228.08299255371094, @@ -1103,6 +1113,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 344.6659851074219, @@ -1149,6 +1160,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 371.3330078125, @@ -1195,6 +1207,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 492.9159851074219, @@ -1241,6 +1254,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 519.5830078125, diff --git a/e2etests/testdata/stable/binary_tree/elk/sketch.exp.svg b/e2etests/testdata/stable/binary_tree/elk/sketch.exp.svg index 1977a7ae48..991817385b 100644 --- a/e2etests/testdata/stable/binary_tree/elk/sketch.exp.svg +++ b/e2etests/testdata/stable/binary_tree/elk/sketch.exp.svg @@ -1,9 +1,9 @@ -abcdefghijklmno + .d2-980361313 .fill-N1{fill:#0A0F25;} + .d2-980361313 .fill-N2{fill:#676C7E;} + .d2-980361313 .fill-N3{fill:#9499AB;} + .d2-980361313 .fill-N4{fill:#CFD2DD;} + .d2-980361313 .fill-N5{fill:#DEE1EB;} + .d2-980361313 .fill-N6{fill:#EEF1F8;} + .d2-980361313 .fill-N7{fill:#FFFFFF;} + .d2-980361313 .fill-B1{fill:#0D32B2;} + .d2-980361313 .fill-B2{fill:#0D32B2;} + .d2-980361313 .fill-B3{fill:#E3E9FD;} + .d2-980361313 .fill-B4{fill:#E3E9FD;} + .d2-980361313 .fill-B5{fill:#EDF0FD;} + .d2-980361313 .fill-B6{fill:#F7F8FE;} + .d2-980361313 .fill-AA2{fill:#4A6FF3;} + .d2-980361313 .fill-AA4{fill:#EDF0FD;} + .d2-980361313 .fill-AA5{fill:#F7F8FE;} + .d2-980361313 .fill-AB4{fill:#EDF0FD;} + .d2-980361313 .fill-AB5{fill:#F7F8FE;} + .d2-980361313 .stroke-N1{stroke:#0A0F25;} + .d2-980361313 .stroke-N2{stroke:#676C7E;} + .d2-980361313 .stroke-N3{stroke:#9499AB;} + .d2-980361313 .stroke-N4{stroke:#CFD2DD;} + .d2-980361313 .stroke-N5{stroke:#DEE1EB;} + .d2-980361313 .stroke-N6{stroke:#EEF1F8;} + .d2-980361313 .stroke-N7{stroke:#FFFFFF;} + .d2-980361313 .stroke-B1{stroke:#0D32B2;} + .d2-980361313 .stroke-B2{stroke:#0D32B2;} + .d2-980361313 .stroke-B3{stroke:#E3E9FD;} + .d2-980361313 .stroke-B4{stroke:#E3E9FD;} + .d2-980361313 .stroke-B5{stroke:#EDF0FD;} + .d2-980361313 .stroke-B6{stroke:#F7F8FE;} + .d2-980361313 .stroke-AA2{stroke:#4A6FF3;} + .d2-980361313 .stroke-AA4{stroke:#EDF0FD;} + .d2-980361313 .stroke-AA5{stroke:#F7F8FE;} + .d2-980361313 .stroke-AB4{stroke:#EDF0FD;} + .d2-980361313 .stroke-AB5{stroke:#F7F8FE;} + .d2-980361313 .background-color-N1{background-color:#0A0F25;} + .d2-980361313 .background-color-N2{background-color:#676C7E;} + .d2-980361313 .background-color-N3{background-color:#9499AB;} + .d2-980361313 .background-color-N4{background-color:#CFD2DD;} + .d2-980361313 .background-color-N5{background-color:#DEE1EB;} + .d2-980361313 .background-color-N6{background-color:#EEF1F8;} + .d2-980361313 .background-color-N7{background-color:#FFFFFF;} + .d2-980361313 .background-color-B1{background-color:#0D32B2;} + .d2-980361313 .background-color-B2{background-color:#0D32B2;} + .d2-980361313 .background-color-B3{background-color:#E3E9FD;} + .d2-980361313 .background-color-B4{background-color:#E3E9FD;} + .d2-980361313 .background-color-B5{background-color:#EDF0FD;} + .d2-980361313 .background-color-B6{background-color:#F7F8FE;} + .d2-980361313 .background-color-AA2{background-color:#4A6FF3;} + .d2-980361313 .background-color-AA4{background-color:#EDF0FD;} + .d2-980361313 .background-color-AA5{background-color:#F7F8FE;} + .d2-980361313 .background-color-AB4{background-color:#EDF0FD;} + .d2-980361313 .background-color-AB5{background-color:#F7F8FE;} + .d2-980361313 .color-N1{color:#0A0F25;} + .d2-980361313 .color-N2{color:#676C7E;} + .d2-980361313 .color-N3{color:#9499AB;} + .d2-980361313 .color-N4{color:#CFD2DD;} + .d2-980361313 .color-N5{color:#DEE1EB;} + .d2-980361313 .color-N6{color:#EEF1F8;} + .d2-980361313 .color-N7{color:#FFFFFF;} + .d2-980361313 .color-B1{color:#0D32B2;} + .d2-980361313 .color-B2{color:#0D32B2;} + .d2-980361313 .color-B3{color:#E3E9FD;} + .d2-980361313 .color-B4{color:#E3E9FD;} + .d2-980361313 .color-B5{color:#EDF0FD;} + .d2-980361313 .color-B6{color:#F7F8FE;} + .d2-980361313 .color-AA2{color:#4A6FF3;} + .d2-980361313 .color-AA4{color:#EDF0FD;} + .d2-980361313 .color-AA5{color:#F7F8FE;} + .d2-980361313 .color-AB4{color:#EDF0FD;} + .d2-980361313 .color-AB5{color:#F7F8FE;}.appendix text.text{fill:#0A0F25}.md{--color-fg-default:#0A0F25;--color-fg-muted:#676C7E;--color-fg-subtle:#9499AB;--color-canvas-default:#FFFFFF;--color-canvas-subtle:#EEF1F8;--color-border-default:#0D32B2;--color-border-muted:#0D32B2;--color-neutral-muted:#EEF1F8;--color-accent-fg:#0D32B2;--color-accent-emphasis:#0D32B2;--color-attention-subtle:#676C7E;--color-danger-fg:red;}.sketch-overlay-B1{fill:url(#streaks-darker);mix-blend-mode:lighten}.sketch-overlay-B2{fill:url(#streaks-darker);mix-blend-mode:lighten}.sketch-overlay-B3{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-B4{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-B5{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-B6{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-AA2{fill:url(#streaks-dark);mix-blend-mode:overlay}.sketch-overlay-AA4{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-AA5{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-AB4{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-AB5{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-N1{fill:url(#streaks-darker);mix-blend-mode:lighten}.sketch-overlay-N2{fill:url(#streaks-dark);mix-blend-mode:overlay}.sketch-overlay-N3{fill:url(#streaks-normal);mix-blend-mode:color-burn}.sketch-overlay-N4{fill:url(#streaks-normal);mix-blend-mode:color-burn}.sketch-overlay-N5{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-N6{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-N7{fill:url(#streaks-bright);mix-blend-mode:darken}.light-code{display: block}.dark-code{display: none}]]>abcdefghijklmno diff --git a/e2etests/testdata/stable/centered_horizontal_connections/dagre/board.exp.json b/e2etests/testdata/stable/centered_horizontal_connections/dagre/board.exp.json index 56fda7bc9c..d148e8b6c8 100644 --- a/e2etests/testdata/stable/centered_horizontal_connections/dagre/board.exp.json +++ b/e2etests/testdata/stable/centered_horizontal_connections/dagre/board.exp.json @@ -164,6 +164,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 32, diff --git a/e2etests/testdata/stable/centered_horizontal_connections/dagre/sketch.exp.svg b/e2etests/testdata/stable/centered_horizontal_connections/dagre/sketch.exp.svg index 1c4d493088..e86c2d7b31 100644 --- a/e2etests/testdata/stable/centered_horizontal_connections/dagre/sketch.exp.svg +++ b/e2etests/testdata/stable/centered_horizontal_connections/dagre/sketch.exp.svg @@ -1,16 +1,16 @@ -r1r2 eth1eth1 + .d2-2693743037 .fill-N1{fill:#0A0F25;} + .d2-2693743037 .fill-N2{fill:#676C7E;} + .d2-2693743037 .fill-N3{fill:#9499AB;} + .d2-2693743037 .fill-N4{fill:#CFD2DD;} + .d2-2693743037 .fill-N5{fill:#DEE1EB;} + .d2-2693743037 .fill-N6{fill:#EEF1F8;} + .d2-2693743037 .fill-N7{fill:#FFFFFF;} + .d2-2693743037 .fill-B1{fill:#0D32B2;} + .d2-2693743037 .fill-B2{fill:#0D32B2;} + .d2-2693743037 .fill-B3{fill:#E3E9FD;} + .d2-2693743037 .fill-B4{fill:#E3E9FD;} + .d2-2693743037 .fill-B5{fill:#EDF0FD;} + .d2-2693743037 .fill-B6{fill:#F7F8FE;} + .d2-2693743037 .fill-AA2{fill:#4A6FF3;} + .d2-2693743037 .fill-AA4{fill:#EDF0FD;} + .d2-2693743037 .fill-AA5{fill:#F7F8FE;} + .d2-2693743037 .fill-AB4{fill:#EDF0FD;} + .d2-2693743037 .fill-AB5{fill:#F7F8FE;} + .d2-2693743037 .stroke-N1{stroke:#0A0F25;} + .d2-2693743037 .stroke-N2{stroke:#676C7E;} + .d2-2693743037 .stroke-N3{stroke:#9499AB;} + .d2-2693743037 .stroke-N4{stroke:#CFD2DD;} + .d2-2693743037 .stroke-N5{stroke:#DEE1EB;} + .d2-2693743037 .stroke-N6{stroke:#EEF1F8;} + .d2-2693743037 .stroke-N7{stroke:#FFFFFF;} + .d2-2693743037 .stroke-B1{stroke:#0D32B2;} + .d2-2693743037 .stroke-B2{stroke:#0D32B2;} + .d2-2693743037 .stroke-B3{stroke:#E3E9FD;} + .d2-2693743037 .stroke-B4{stroke:#E3E9FD;} + .d2-2693743037 .stroke-B5{stroke:#EDF0FD;} + .d2-2693743037 .stroke-B6{stroke:#F7F8FE;} + .d2-2693743037 .stroke-AA2{stroke:#4A6FF3;} + .d2-2693743037 .stroke-AA4{stroke:#EDF0FD;} + .d2-2693743037 .stroke-AA5{stroke:#F7F8FE;} + .d2-2693743037 .stroke-AB4{stroke:#EDF0FD;} + .d2-2693743037 .stroke-AB5{stroke:#F7F8FE;} + .d2-2693743037 .background-color-N1{background-color:#0A0F25;} + .d2-2693743037 .background-color-N2{background-color:#676C7E;} + .d2-2693743037 .background-color-N3{background-color:#9499AB;} + .d2-2693743037 .background-color-N4{background-color:#CFD2DD;} + .d2-2693743037 .background-color-N5{background-color:#DEE1EB;} + .d2-2693743037 .background-color-N6{background-color:#EEF1F8;} + .d2-2693743037 .background-color-N7{background-color:#FFFFFF;} + .d2-2693743037 .background-color-B1{background-color:#0D32B2;} + .d2-2693743037 .background-color-B2{background-color:#0D32B2;} + .d2-2693743037 .background-color-B3{background-color:#E3E9FD;} + .d2-2693743037 .background-color-B4{background-color:#E3E9FD;} + .d2-2693743037 .background-color-B5{background-color:#EDF0FD;} + .d2-2693743037 .background-color-B6{background-color:#F7F8FE;} + .d2-2693743037 .background-color-AA2{background-color:#4A6FF3;} + .d2-2693743037 .background-color-AA4{background-color:#EDF0FD;} + .d2-2693743037 .background-color-AA5{background-color:#F7F8FE;} + .d2-2693743037 .background-color-AB4{background-color:#EDF0FD;} + .d2-2693743037 .background-color-AB5{background-color:#F7F8FE;} + .d2-2693743037 .color-N1{color:#0A0F25;} + .d2-2693743037 .color-N2{color:#676C7E;} + .d2-2693743037 .color-N3{color:#9499AB;} + .d2-2693743037 .color-N4{color:#CFD2DD;} + .d2-2693743037 .color-N5{color:#DEE1EB;} + .d2-2693743037 .color-N6{color:#EEF1F8;} + .d2-2693743037 .color-N7{color:#FFFFFF;} + .d2-2693743037 .color-B1{color:#0D32B2;} + .d2-2693743037 .color-B2{color:#0D32B2;} + .d2-2693743037 .color-B3{color:#E3E9FD;} + .d2-2693743037 .color-B4{color:#E3E9FD;} + .d2-2693743037 .color-B5{color:#EDF0FD;} + .d2-2693743037 .color-B6{color:#F7F8FE;} + .d2-2693743037 .color-AA2{color:#4A6FF3;} + .d2-2693743037 .color-AA4{color:#EDF0FD;} + .d2-2693743037 .color-AA5{color:#F7F8FE;} + .d2-2693743037 .color-AB4{color:#EDF0FD;} + .d2-2693743037 .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}]]>r1r2 eth1eth1 diff --git a/e2etests/testdata/stable/centered_horizontal_connections/elk/board.exp.json b/e2etests/testdata/stable/centered_horizontal_connections/elk/board.exp.json index fdf65ac74c..04a4b44aaa 100644 --- a/e2etests/testdata/stable/centered_horizontal_connections/elk/board.exp.json +++ b/e2etests/testdata/stable/centered_horizontal_connections/elk/board.exp.json @@ -164,6 +164,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 44, diff --git a/e2etests/testdata/stable/centered_horizontal_connections/elk/sketch.exp.svg b/e2etests/testdata/stable/centered_horizontal_connections/elk/sketch.exp.svg index c3689efe75..0de22d81a0 100644 --- a/e2etests/testdata/stable/centered_horizontal_connections/elk/sketch.exp.svg +++ b/e2etests/testdata/stable/centered_horizontal_connections/elk/sketch.exp.svg @@ -1,16 +1,16 @@ -r1r2 eth1eth1 + .d2-2839028722 .fill-N1{fill:#0A0F25;} + .d2-2839028722 .fill-N2{fill:#676C7E;} + .d2-2839028722 .fill-N3{fill:#9499AB;} + .d2-2839028722 .fill-N4{fill:#CFD2DD;} + .d2-2839028722 .fill-N5{fill:#DEE1EB;} + .d2-2839028722 .fill-N6{fill:#EEF1F8;} + .d2-2839028722 .fill-N7{fill:#FFFFFF;} + .d2-2839028722 .fill-B1{fill:#0D32B2;} + .d2-2839028722 .fill-B2{fill:#0D32B2;} + .d2-2839028722 .fill-B3{fill:#E3E9FD;} + .d2-2839028722 .fill-B4{fill:#E3E9FD;} + .d2-2839028722 .fill-B5{fill:#EDF0FD;} + .d2-2839028722 .fill-B6{fill:#F7F8FE;} + .d2-2839028722 .fill-AA2{fill:#4A6FF3;} + .d2-2839028722 .fill-AA4{fill:#EDF0FD;} + .d2-2839028722 .fill-AA5{fill:#F7F8FE;} + .d2-2839028722 .fill-AB4{fill:#EDF0FD;} + .d2-2839028722 .fill-AB5{fill:#F7F8FE;} + .d2-2839028722 .stroke-N1{stroke:#0A0F25;} + .d2-2839028722 .stroke-N2{stroke:#676C7E;} + .d2-2839028722 .stroke-N3{stroke:#9499AB;} + .d2-2839028722 .stroke-N4{stroke:#CFD2DD;} + .d2-2839028722 .stroke-N5{stroke:#DEE1EB;} + .d2-2839028722 .stroke-N6{stroke:#EEF1F8;} + .d2-2839028722 .stroke-N7{stroke:#FFFFFF;} + .d2-2839028722 .stroke-B1{stroke:#0D32B2;} + .d2-2839028722 .stroke-B2{stroke:#0D32B2;} + .d2-2839028722 .stroke-B3{stroke:#E3E9FD;} + .d2-2839028722 .stroke-B4{stroke:#E3E9FD;} + .d2-2839028722 .stroke-B5{stroke:#EDF0FD;} + .d2-2839028722 .stroke-B6{stroke:#F7F8FE;} + .d2-2839028722 .stroke-AA2{stroke:#4A6FF3;} + .d2-2839028722 .stroke-AA4{stroke:#EDF0FD;} + .d2-2839028722 .stroke-AA5{stroke:#F7F8FE;} + .d2-2839028722 .stroke-AB4{stroke:#EDF0FD;} + .d2-2839028722 .stroke-AB5{stroke:#F7F8FE;} + .d2-2839028722 .background-color-N1{background-color:#0A0F25;} + .d2-2839028722 .background-color-N2{background-color:#676C7E;} + .d2-2839028722 .background-color-N3{background-color:#9499AB;} + .d2-2839028722 .background-color-N4{background-color:#CFD2DD;} + .d2-2839028722 .background-color-N5{background-color:#DEE1EB;} + .d2-2839028722 .background-color-N6{background-color:#EEF1F8;} + .d2-2839028722 .background-color-N7{background-color:#FFFFFF;} + .d2-2839028722 .background-color-B1{background-color:#0D32B2;} + .d2-2839028722 .background-color-B2{background-color:#0D32B2;} + .d2-2839028722 .background-color-B3{background-color:#E3E9FD;} + .d2-2839028722 .background-color-B4{background-color:#E3E9FD;} + .d2-2839028722 .background-color-B5{background-color:#EDF0FD;} + .d2-2839028722 .background-color-B6{background-color:#F7F8FE;} + .d2-2839028722 .background-color-AA2{background-color:#4A6FF3;} + .d2-2839028722 .background-color-AA4{background-color:#EDF0FD;} + .d2-2839028722 .background-color-AA5{background-color:#F7F8FE;} + .d2-2839028722 .background-color-AB4{background-color:#EDF0FD;} + .d2-2839028722 .background-color-AB5{background-color:#F7F8FE;} + .d2-2839028722 .color-N1{color:#0A0F25;} + .d2-2839028722 .color-N2{color:#676C7E;} + .d2-2839028722 .color-N3{color:#9499AB;} + .d2-2839028722 .color-N4{color:#CFD2DD;} + .d2-2839028722 .color-N5{color:#DEE1EB;} + .d2-2839028722 .color-N6{color:#EEF1F8;} + .d2-2839028722 .color-N7{color:#FFFFFF;} + .d2-2839028722 .color-B1{color:#0D32B2;} + .d2-2839028722 .color-B2{color:#0D32B2;} + .d2-2839028722 .color-B3{color:#E3E9FD;} + .d2-2839028722 .color-B4{color:#E3E9FD;} + .d2-2839028722 .color-B5{color:#EDF0FD;} + .d2-2839028722 .color-B6{color:#F7F8FE;} + .d2-2839028722 .color-AA2{color:#4A6FF3;} + .d2-2839028722 .color-AA4{color:#EDF0FD;} + .d2-2839028722 .color-AA5{color:#F7F8FE;} + .d2-2839028722 .color-AB4{color:#EDF0FD;} + .d2-2839028722 .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}]]>r1r2 eth1eth1 diff --git a/e2etests/testdata/stable/chaos2/dagre/board.exp.json b/e2etests/testdata/stable/chaos2/dagre/board.exp.json index 6ebf9adfcd..d40e4ca984 100644 --- a/e2etests/testdata/stable/chaos2/dagre/board.exp.json +++ b/e2etests/testdata/stable/chaos2/dagre/board.exp.json @@ -640,6 +640,7 @@ "labelHeight": 21, "labelPosition": "INSIDE_MIDDLE_CENTER", "labelPercentage": 0, + "link": "", "route": [ { "x": 109.75, @@ -687,6 +688,7 @@ "labelHeight": 21, "labelPosition": "INSIDE_MIDDLE_CENTER", "labelPercentage": 0, + "link": "", "route": [ { "x": 179.75, @@ -734,6 +736,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 192, @@ -805,6 +808,7 @@ "labelHeight": 21, "labelPosition": "INSIDE_MIDDLE_CENTER", "labelPercentage": 0, + "link": "", "route": [ { "x": 675.75, @@ -843,6 +847,7 @@ "labelHeight": 21, "labelPosition": "INSIDE_MIDDLE_CENTER", "labelPercentage": 0, + "link": "", "route": [ { "x": 667, @@ -890,6 +895,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 703, @@ -949,6 +955,7 @@ "labelHeight": 21, "labelPosition": "INSIDE_MIDDLE_CENTER", "labelPercentage": 0, + "link": "", "route": [ { "x": 667, @@ -987,6 +994,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 675.75, @@ -1034,6 +1042,7 @@ "labelHeight": 21, "labelPosition": "INSIDE_MIDDLE_CENTER", "labelPercentage": 0, + "link": "", "route": [ { "x": 667, @@ -1081,6 +1090,7 @@ "labelHeight": 21, "labelPosition": "INSIDE_MIDDLE_CENTER", "labelPercentage": 0, + "link": "", "route": [ { "x": 294.75, @@ -1119,6 +1129,7 @@ "labelHeight": 21, "labelPosition": "INSIDE_MIDDLE_CENTER", "labelPercentage": 0, + "link": "", "route": [ { "x": 403, diff --git a/e2etests/testdata/stable/chaos2/dagre/sketch.exp.svg b/e2etests/testdata/stable/chaos2/dagre/sketch.exp.svg index e5d44d18dd..6ce14ee34e 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..53b1f9e57e 100644 --- a/e2etests/testdata/stable/chaos2/elk/board.exp.json +++ b/e2etests/testdata/stable/chaos2/elk/board.exp.json @@ -640,6 +640,7 @@ "labelHeight": 21, "labelPosition": "INSIDE_MIDDLE_CENTER", "labelPercentage": 0, + "link": "", "route": [ { "x": 349, @@ -686,6 +687,7 @@ "labelHeight": 21, "labelPosition": "INSIDE_MIDDLE_CENTER", "labelPercentage": 0, + "link": "", "route": [ { "x": 436.5, @@ -724,6 +726,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 250, @@ -770,6 +773,7 @@ "labelHeight": 21, "labelPosition": "INSIDE_MIDDLE_CENTER", "labelPercentage": 0, + "link": "", "route": [ { "x": 279.8330078125, @@ -824,6 +828,7 @@ "labelHeight": 21, "labelPosition": "INSIDE_MIDDLE_CENTER", "labelPercentage": 0, + "link": "", "route": [ { "x": 409, @@ -870,6 +875,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 441, @@ -924,6 +930,7 @@ "labelHeight": 21, "labelPosition": "INSIDE_MIDDLE_CENTER", "labelPercentage": 0, + "link": "", "route": [ { "x": 377, @@ -962,6 +969,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 339.8330078125, @@ -1024,6 +1032,7 @@ "labelHeight": 21, "labelPosition": "INSIDE_MIDDLE_CENTER", "labelPercentage": 0, + "link": "", "route": [ { "x": 345, @@ -1070,6 +1079,7 @@ "labelHeight": 21, "labelPosition": "INSIDE_MIDDLE_CENTER", "labelPercentage": 0, + "link": "", "route": [ { "x": 309.6659851074219, @@ -1116,6 +1126,7 @@ "labelHeight": 21, "labelPosition": "INSIDE_MIDDLE_CENTER", "labelPercentage": 0, + "link": "", "route": [ { "x": 200, diff --git a/e2etests/testdata/stable/chaos2/elk/sketch.exp.svg b/e2etests/testdata/stable/chaos2/elk/sketch.exp.svg index f63c78eb44..fc8ba723f4 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 diff --git a/e2etests/testdata/stable/circle_arrowhead/dagre/board.exp.json b/e2etests/testdata/stable/circle_arrowhead/dagre/board.exp.json index 233454bdb8..fa5c060bda 100644 --- a/e2etests/testdata/stable/circle_arrowhead/dagre/board.exp.json +++ b/e2etests/testdata/stable/circle_arrowhead/dagre/board.exp.json @@ -192,6 +192,7 @@ "labelHeight": 21, "labelPosition": "INSIDE_MIDDLE_CENTER", "labelPercentage": 0, + "link": "", "route": [ { "x": 26.5, @@ -239,6 +240,7 @@ "labelHeight": 21, "labelPosition": "INSIDE_MIDDLE_CENTER", "labelPercentage": 0, + "link": "", "route": [ { "x": 140, diff --git a/e2etests/testdata/stable/circle_arrowhead/dagre/sketch.exp.svg b/e2etests/testdata/stable/circle_arrowhead/dagre/sketch.exp.svg index d4932d6974..a32fd19634 100644 --- a/e2etests/testdata/stable/circle_arrowhead/dagre/sketch.exp.svg +++ b/e2etests/testdata/stable/circle_arrowhead/dagre/sketch.exp.svg @@ -1,16 +1,16 @@ -abcd circle filled-circle + .d2-2944241002 .fill-N1{fill:#0A0F25;} + .d2-2944241002 .fill-N2{fill:#676C7E;} + .d2-2944241002 .fill-N3{fill:#9499AB;} + .d2-2944241002 .fill-N4{fill:#CFD2DD;} + .d2-2944241002 .fill-N5{fill:#DEE1EB;} + .d2-2944241002 .fill-N6{fill:#EEF1F8;} + .d2-2944241002 .fill-N7{fill:#FFFFFF;} + .d2-2944241002 .fill-B1{fill:#0D32B2;} + .d2-2944241002 .fill-B2{fill:#0D32B2;} + .d2-2944241002 .fill-B3{fill:#E3E9FD;} + .d2-2944241002 .fill-B4{fill:#E3E9FD;} + .d2-2944241002 .fill-B5{fill:#EDF0FD;} + .d2-2944241002 .fill-B6{fill:#F7F8FE;} + .d2-2944241002 .fill-AA2{fill:#4A6FF3;} + .d2-2944241002 .fill-AA4{fill:#EDF0FD;} + .d2-2944241002 .fill-AA5{fill:#F7F8FE;} + .d2-2944241002 .fill-AB4{fill:#EDF0FD;} + .d2-2944241002 .fill-AB5{fill:#F7F8FE;} + .d2-2944241002 .stroke-N1{stroke:#0A0F25;} + .d2-2944241002 .stroke-N2{stroke:#676C7E;} + .d2-2944241002 .stroke-N3{stroke:#9499AB;} + .d2-2944241002 .stroke-N4{stroke:#CFD2DD;} + .d2-2944241002 .stroke-N5{stroke:#DEE1EB;} + .d2-2944241002 .stroke-N6{stroke:#EEF1F8;} + .d2-2944241002 .stroke-N7{stroke:#FFFFFF;} + .d2-2944241002 .stroke-B1{stroke:#0D32B2;} + .d2-2944241002 .stroke-B2{stroke:#0D32B2;} + .d2-2944241002 .stroke-B3{stroke:#E3E9FD;} + .d2-2944241002 .stroke-B4{stroke:#E3E9FD;} + .d2-2944241002 .stroke-B5{stroke:#EDF0FD;} + .d2-2944241002 .stroke-B6{stroke:#F7F8FE;} + .d2-2944241002 .stroke-AA2{stroke:#4A6FF3;} + .d2-2944241002 .stroke-AA4{stroke:#EDF0FD;} + .d2-2944241002 .stroke-AA5{stroke:#F7F8FE;} + .d2-2944241002 .stroke-AB4{stroke:#EDF0FD;} + .d2-2944241002 .stroke-AB5{stroke:#F7F8FE;} + .d2-2944241002 .background-color-N1{background-color:#0A0F25;} + .d2-2944241002 .background-color-N2{background-color:#676C7E;} + .d2-2944241002 .background-color-N3{background-color:#9499AB;} + .d2-2944241002 .background-color-N4{background-color:#CFD2DD;} + .d2-2944241002 .background-color-N5{background-color:#DEE1EB;} + .d2-2944241002 .background-color-N6{background-color:#EEF1F8;} + .d2-2944241002 .background-color-N7{background-color:#FFFFFF;} + .d2-2944241002 .background-color-B1{background-color:#0D32B2;} + .d2-2944241002 .background-color-B2{background-color:#0D32B2;} + .d2-2944241002 .background-color-B3{background-color:#E3E9FD;} + .d2-2944241002 .background-color-B4{background-color:#E3E9FD;} + .d2-2944241002 .background-color-B5{background-color:#EDF0FD;} + .d2-2944241002 .background-color-B6{background-color:#F7F8FE;} + .d2-2944241002 .background-color-AA2{background-color:#4A6FF3;} + .d2-2944241002 .background-color-AA4{background-color:#EDF0FD;} + .d2-2944241002 .background-color-AA5{background-color:#F7F8FE;} + .d2-2944241002 .background-color-AB4{background-color:#EDF0FD;} + .d2-2944241002 .background-color-AB5{background-color:#F7F8FE;} + .d2-2944241002 .color-N1{color:#0A0F25;} + .d2-2944241002 .color-N2{color:#676C7E;} + .d2-2944241002 .color-N3{color:#9499AB;} + .d2-2944241002 .color-N4{color:#CFD2DD;} + .d2-2944241002 .color-N5{color:#DEE1EB;} + .d2-2944241002 .color-N6{color:#EEF1F8;} + .d2-2944241002 .color-N7{color:#FFFFFF;} + .d2-2944241002 .color-B1{color:#0D32B2;} + .d2-2944241002 .color-B2{color:#0D32B2;} + .d2-2944241002 .color-B3{color:#E3E9FD;} + .d2-2944241002 .color-B4{color:#E3E9FD;} + .d2-2944241002 .color-B5{color:#EDF0FD;} + .d2-2944241002 .color-B6{color:#F7F8FE;} + .d2-2944241002 .color-AA2{color:#4A6FF3;} + .d2-2944241002 .color-AA4{color:#EDF0FD;} + .d2-2944241002 .color-AA5{color:#F7F8FE;} + .d2-2944241002 .color-AB4{color:#EDF0FD;} + .d2-2944241002 .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}]]>abcd circle filled-circle diff --git a/e2etests/testdata/stable/circle_arrowhead/elk/board.exp.json b/e2etests/testdata/stable/circle_arrowhead/elk/board.exp.json index 58861b443b..17f2157245 100644 --- a/e2etests/testdata/stable/circle_arrowhead/elk/board.exp.json +++ b/e2etests/testdata/stable/circle_arrowhead/elk/board.exp.json @@ -192,6 +192,7 @@ "labelHeight": 21, "labelPosition": "INSIDE_MIDDLE_CENTER", "labelPercentage": 0, + "link": "", "route": [ { "x": 38.5, @@ -230,6 +231,7 @@ "labelHeight": 21, "labelPosition": "INSIDE_MIDDLE_CENTER", "labelPercentage": 0, + "link": "", "route": [ { "x": 112, diff --git a/e2etests/testdata/stable/circle_arrowhead/elk/sketch.exp.svg b/e2etests/testdata/stable/circle_arrowhead/elk/sketch.exp.svg index b24d84c08b..f7147b44d8 100644 --- a/e2etests/testdata/stable/circle_arrowhead/elk/sketch.exp.svg +++ b/e2etests/testdata/stable/circle_arrowhead/elk/sketch.exp.svg @@ -1,16 +1,16 @@ -abcd circle filled-circle + .d2-3911433299 .fill-N1{fill:#0A0F25;} + .d2-3911433299 .fill-N2{fill:#676C7E;} + .d2-3911433299 .fill-N3{fill:#9499AB;} + .d2-3911433299 .fill-N4{fill:#CFD2DD;} + .d2-3911433299 .fill-N5{fill:#DEE1EB;} + .d2-3911433299 .fill-N6{fill:#EEF1F8;} + .d2-3911433299 .fill-N7{fill:#FFFFFF;} + .d2-3911433299 .fill-B1{fill:#0D32B2;} + .d2-3911433299 .fill-B2{fill:#0D32B2;} + .d2-3911433299 .fill-B3{fill:#E3E9FD;} + .d2-3911433299 .fill-B4{fill:#E3E9FD;} + .d2-3911433299 .fill-B5{fill:#EDF0FD;} + .d2-3911433299 .fill-B6{fill:#F7F8FE;} + .d2-3911433299 .fill-AA2{fill:#4A6FF3;} + .d2-3911433299 .fill-AA4{fill:#EDF0FD;} + .d2-3911433299 .fill-AA5{fill:#F7F8FE;} + .d2-3911433299 .fill-AB4{fill:#EDF0FD;} + .d2-3911433299 .fill-AB5{fill:#F7F8FE;} + .d2-3911433299 .stroke-N1{stroke:#0A0F25;} + .d2-3911433299 .stroke-N2{stroke:#676C7E;} + .d2-3911433299 .stroke-N3{stroke:#9499AB;} + .d2-3911433299 .stroke-N4{stroke:#CFD2DD;} + .d2-3911433299 .stroke-N5{stroke:#DEE1EB;} + .d2-3911433299 .stroke-N6{stroke:#EEF1F8;} + .d2-3911433299 .stroke-N7{stroke:#FFFFFF;} + .d2-3911433299 .stroke-B1{stroke:#0D32B2;} + .d2-3911433299 .stroke-B2{stroke:#0D32B2;} + .d2-3911433299 .stroke-B3{stroke:#E3E9FD;} + .d2-3911433299 .stroke-B4{stroke:#E3E9FD;} + .d2-3911433299 .stroke-B5{stroke:#EDF0FD;} + .d2-3911433299 .stroke-B6{stroke:#F7F8FE;} + .d2-3911433299 .stroke-AA2{stroke:#4A6FF3;} + .d2-3911433299 .stroke-AA4{stroke:#EDF0FD;} + .d2-3911433299 .stroke-AA5{stroke:#F7F8FE;} + .d2-3911433299 .stroke-AB4{stroke:#EDF0FD;} + .d2-3911433299 .stroke-AB5{stroke:#F7F8FE;} + .d2-3911433299 .background-color-N1{background-color:#0A0F25;} + .d2-3911433299 .background-color-N2{background-color:#676C7E;} + .d2-3911433299 .background-color-N3{background-color:#9499AB;} + .d2-3911433299 .background-color-N4{background-color:#CFD2DD;} + .d2-3911433299 .background-color-N5{background-color:#DEE1EB;} + .d2-3911433299 .background-color-N6{background-color:#EEF1F8;} + .d2-3911433299 .background-color-N7{background-color:#FFFFFF;} + .d2-3911433299 .background-color-B1{background-color:#0D32B2;} + .d2-3911433299 .background-color-B2{background-color:#0D32B2;} + .d2-3911433299 .background-color-B3{background-color:#E3E9FD;} + .d2-3911433299 .background-color-B4{background-color:#E3E9FD;} + .d2-3911433299 .background-color-B5{background-color:#EDF0FD;} + .d2-3911433299 .background-color-B6{background-color:#F7F8FE;} + .d2-3911433299 .background-color-AA2{background-color:#4A6FF3;} + .d2-3911433299 .background-color-AA4{background-color:#EDF0FD;} + .d2-3911433299 .background-color-AA5{background-color:#F7F8FE;} + .d2-3911433299 .background-color-AB4{background-color:#EDF0FD;} + .d2-3911433299 .background-color-AB5{background-color:#F7F8FE;} + .d2-3911433299 .color-N1{color:#0A0F25;} + .d2-3911433299 .color-N2{color:#676C7E;} + .d2-3911433299 .color-N3{color:#9499AB;} + .d2-3911433299 .color-N4{color:#CFD2DD;} + .d2-3911433299 .color-N5{color:#DEE1EB;} + .d2-3911433299 .color-N6{color:#EEF1F8;} + .d2-3911433299 .color-N7{color:#FFFFFF;} + .d2-3911433299 .color-B1{color:#0D32B2;} + .d2-3911433299 .color-B2{color:#0D32B2;} + .d2-3911433299 .color-B3{color:#E3E9FD;} + .d2-3911433299 .color-B4{color:#E3E9FD;} + .d2-3911433299 .color-B5{color:#EDF0FD;} + .d2-3911433299 .color-B6{color:#F7F8FE;} + .d2-3911433299 .color-AA2{color:#4A6FF3;} + .d2-3911433299 .color-AA4{color:#EDF0FD;} + .d2-3911433299 .color-AA5{color:#F7F8FE;} + .d2-3911433299 .color-AB4{color:#EDF0FD;} + .d2-3911433299 .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}]]>abcd circle filled-circle diff --git a/e2etests/testdata/stable/circular_dependency/dagre/board.exp.json b/e2etests/testdata/stable/circular_dependency/dagre/board.exp.json index 92810f68ea..4927994677 100644 --- a/e2etests/testdata/stable/circular_dependency/dagre/board.exp.json +++ b/e2etests/testdata/stable/circular_dependency/dagre/board.exp.json @@ -151,6 +151,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 22.5, @@ -198,6 +199,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 22.5, @@ -245,6 +247,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 30.5, @@ -292,6 +295,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 30.5, diff --git a/e2etests/testdata/stable/circular_dependency/dagre/sketch.exp.svg b/e2etests/testdata/stable/circular_dependency/dagre/sketch.exp.svg index e529df25dc..9c122da220 100644 --- a/e2etests/testdata/stable/circular_dependency/dagre/sketch.exp.svg +++ b/e2etests/testdata/stable/circular_dependency/dagre/sketch.exp.svg @@ -1,9 +1,9 @@ -abc + .d2-1404699995 .fill-N1{fill:#0A0F25;} + .d2-1404699995 .fill-N2{fill:#676C7E;} + .d2-1404699995 .fill-N3{fill:#9499AB;} + .d2-1404699995 .fill-N4{fill:#CFD2DD;} + .d2-1404699995 .fill-N5{fill:#DEE1EB;} + .d2-1404699995 .fill-N6{fill:#EEF1F8;} + .d2-1404699995 .fill-N7{fill:#FFFFFF;} + .d2-1404699995 .fill-B1{fill:#0D32B2;} + .d2-1404699995 .fill-B2{fill:#0D32B2;} + .d2-1404699995 .fill-B3{fill:#E3E9FD;} + .d2-1404699995 .fill-B4{fill:#E3E9FD;} + .d2-1404699995 .fill-B5{fill:#EDF0FD;} + .d2-1404699995 .fill-B6{fill:#F7F8FE;} + .d2-1404699995 .fill-AA2{fill:#4A6FF3;} + .d2-1404699995 .fill-AA4{fill:#EDF0FD;} + .d2-1404699995 .fill-AA5{fill:#F7F8FE;} + .d2-1404699995 .fill-AB4{fill:#EDF0FD;} + .d2-1404699995 .fill-AB5{fill:#F7F8FE;} + .d2-1404699995 .stroke-N1{stroke:#0A0F25;} + .d2-1404699995 .stroke-N2{stroke:#676C7E;} + .d2-1404699995 .stroke-N3{stroke:#9499AB;} + .d2-1404699995 .stroke-N4{stroke:#CFD2DD;} + .d2-1404699995 .stroke-N5{stroke:#DEE1EB;} + .d2-1404699995 .stroke-N6{stroke:#EEF1F8;} + .d2-1404699995 .stroke-N7{stroke:#FFFFFF;} + .d2-1404699995 .stroke-B1{stroke:#0D32B2;} + .d2-1404699995 .stroke-B2{stroke:#0D32B2;} + .d2-1404699995 .stroke-B3{stroke:#E3E9FD;} + .d2-1404699995 .stroke-B4{stroke:#E3E9FD;} + .d2-1404699995 .stroke-B5{stroke:#EDF0FD;} + .d2-1404699995 .stroke-B6{stroke:#F7F8FE;} + .d2-1404699995 .stroke-AA2{stroke:#4A6FF3;} + .d2-1404699995 .stroke-AA4{stroke:#EDF0FD;} + .d2-1404699995 .stroke-AA5{stroke:#F7F8FE;} + .d2-1404699995 .stroke-AB4{stroke:#EDF0FD;} + .d2-1404699995 .stroke-AB5{stroke:#F7F8FE;} + .d2-1404699995 .background-color-N1{background-color:#0A0F25;} + .d2-1404699995 .background-color-N2{background-color:#676C7E;} + .d2-1404699995 .background-color-N3{background-color:#9499AB;} + .d2-1404699995 .background-color-N4{background-color:#CFD2DD;} + .d2-1404699995 .background-color-N5{background-color:#DEE1EB;} + .d2-1404699995 .background-color-N6{background-color:#EEF1F8;} + .d2-1404699995 .background-color-N7{background-color:#FFFFFF;} + .d2-1404699995 .background-color-B1{background-color:#0D32B2;} + .d2-1404699995 .background-color-B2{background-color:#0D32B2;} + .d2-1404699995 .background-color-B3{background-color:#E3E9FD;} + .d2-1404699995 .background-color-B4{background-color:#E3E9FD;} + .d2-1404699995 .background-color-B5{background-color:#EDF0FD;} + .d2-1404699995 .background-color-B6{background-color:#F7F8FE;} + .d2-1404699995 .background-color-AA2{background-color:#4A6FF3;} + .d2-1404699995 .background-color-AA4{background-color:#EDF0FD;} + .d2-1404699995 .background-color-AA5{background-color:#F7F8FE;} + .d2-1404699995 .background-color-AB4{background-color:#EDF0FD;} + .d2-1404699995 .background-color-AB5{background-color:#F7F8FE;} + .d2-1404699995 .color-N1{color:#0A0F25;} + .d2-1404699995 .color-N2{color:#676C7E;} + .d2-1404699995 .color-N3{color:#9499AB;} + .d2-1404699995 .color-N4{color:#CFD2DD;} + .d2-1404699995 .color-N5{color:#DEE1EB;} + .d2-1404699995 .color-N6{color:#EEF1F8;} + .d2-1404699995 .color-N7{color:#FFFFFF;} + .d2-1404699995 .color-B1{color:#0D32B2;} + .d2-1404699995 .color-B2{color:#0D32B2;} + .d2-1404699995 .color-B3{color:#E3E9FD;} + .d2-1404699995 .color-B4{color:#E3E9FD;} + .d2-1404699995 .color-B5{color:#EDF0FD;} + .d2-1404699995 .color-B6{color:#F7F8FE;} + .d2-1404699995 .color-AA2{color:#4A6FF3;} + .d2-1404699995 .color-AA4{color:#EDF0FD;} + .d2-1404699995 .color-AA5{color:#F7F8FE;} + .d2-1404699995 .color-AB4{color:#EDF0FD;} + .d2-1404699995 .color-AB5{color:#F7F8FE;}.appendix text.text{fill:#0A0F25}.md{--color-fg-default:#0A0F25;--color-fg-muted:#676C7E;--color-fg-subtle:#9499AB;--color-canvas-default:#FFFFFF;--color-canvas-subtle:#EEF1F8;--color-border-default:#0D32B2;--color-border-muted:#0D32B2;--color-neutral-muted:#EEF1F8;--color-accent-fg:#0D32B2;--color-accent-emphasis:#0D32B2;--color-attention-subtle:#676C7E;--color-danger-fg:red;}.sketch-overlay-B1{fill:url(#streaks-darker);mix-blend-mode:lighten}.sketch-overlay-B2{fill:url(#streaks-darker);mix-blend-mode:lighten}.sketch-overlay-B3{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-B4{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-B5{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-B6{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-AA2{fill:url(#streaks-dark);mix-blend-mode:overlay}.sketch-overlay-AA4{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-AA5{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-AB4{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-AB5{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-N1{fill:url(#streaks-darker);mix-blend-mode:lighten}.sketch-overlay-N2{fill:url(#streaks-dark);mix-blend-mode:overlay}.sketch-overlay-N3{fill:url(#streaks-normal);mix-blend-mode:color-burn}.sketch-overlay-N4{fill:url(#streaks-normal);mix-blend-mode:color-burn}.sketch-overlay-N5{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-N6{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-N7{fill:url(#streaks-bright);mix-blend-mode:darken}.light-code{display: block}.dark-code{display: none}]]>abc diff --git a/e2etests/testdata/stable/circular_dependency/elk/board.exp.json b/e2etests/testdata/stable/circular_dependency/elk/board.exp.json index 2fa8fc7c5d..a9378681b0 100644 --- a/e2etests/testdata/stable/circular_dependency/elk/board.exp.json +++ b/e2etests/testdata/stable/circular_dependency/elk/board.exp.json @@ -151,6 +151,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 38.66600036621094, @@ -189,6 +190,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 38.66600036621094, @@ -227,6 +229,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 65.33300018310547, @@ -265,6 +268,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 60.83300018310547, diff --git a/e2etests/testdata/stable/circular_dependency/elk/sketch.exp.svg b/e2etests/testdata/stable/circular_dependency/elk/sketch.exp.svg index 6058a3cc0b..03e2e47eb4 100644 --- a/e2etests/testdata/stable/circular_dependency/elk/sketch.exp.svg +++ b/e2etests/testdata/stable/circular_dependency/elk/sketch.exp.svg @@ -1,9 +1,9 @@ -abc + .d2-1081912832 .fill-N1{fill:#0A0F25;} + .d2-1081912832 .fill-N2{fill:#676C7E;} + .d2-1081912832 .fill-N3{fill:#9499AB;} + .d2-1081912832 .fill-N4{fill:#CFD2DD;} + .d2-1081912832 .fill-N5{fill:#DEE1EB;} + .d2-1081912832 .fill-N6{fill:#EEF1F8;} + .d2-1081912832 .fill-N7{fill:#FFFFFF;} + .d2-1081912832 .fill-B1{fill:#0D32B2;} + .d2-1081912832 .fill-B2{fill:#0D32B2;} + .d2-1081912832 .fill-B3{fill:#E3E9FD;} + .d2-1081912832 .fill-B4{fill:#E3E9FD;} + .d2-1081912832 .fill-B5{fill:#EDF0FD;} + .d2-1081912832 .fill-B6{fill:#F7F8FE;} + .d2-1081912832 .fill-AA2{fill:#4A6FF3;} + .d2-1081912832 .fill-AA4{fill:#EDF0FD;} + .d2-1081912832 .fill-AA5{fill:#F7F8FE;} + .d2-1081912832 .fill-AB4{fill:#EDF0FD;} + .d2-1081912832 .fill-AB5{fill:#F7F8FE;} + .d2-1081912832 .stroke-N1{stroke:#0A0F25;} + .d2-1081912832 .stroke-N2{stroke:#676C7E;} + .d2-1081912832 .stroke-N3{stroke:#9499AB;} + .d2-1081912832 .stroke-N4{stroke:#CFD2DD;} + .d2-1081912832 .stroke-N5{stroke:#DEE1EB;} + .d2-1081912832 .stroke-N6{stroke:#EEF1F8;} + .d2-1081912832 .stroke-N7{stroke:#FFFFFF;} + .d2-1081912832 .stroke-B1{stroke:#0D32B2;} + .d2-1081912832 .stroke-B2{stroke:#0D32B2;} + .d2-1081912832 .stroke-B3{stroke:#E3E9FD;} + .d2-1081912832 .stroke-B4{stroke:#E3E9FD;} + .d2-1081912832 .stroke-B5{stroke:#EDF0FD;} + .d2-1081912832 .stroke-B6{stroke:#F7F8FE;} + .d2-1081912832 .stroke-AA2{stroke:#4A6FF3;} + .d2-1081912832 .stroke-AA4{stroke:#EDF0FD;} + .d2-1081912832 .stroke-AA5{stroke:#F7F8FE;} + .d2-1081912832 .stroke-AB4{stroke:#EDF0FD;} + .d2-1081912832 .stroke-AB5{stroke:#F7F8FE;} + .d2-1081912832 .background-color-N1{background-color:#0A0F25;} + .d2-1081912832 .background-color-N2{background-color:#676C7E;} + .d2-1081912832 .background-color-N3{background-color:#9499AB;} + .d2-1081912832 .background-color-N4{background-color:#CFD2DD;} + .d2-1081912832 .background-color-N5{background-color:#DEE1EB;} + .d2-1081912832 .background-color-N6{background-color:#EEF1F8;} + .d2-1081912832 .background-color-N7{background-color:#FFFFFF;} + .d2-1081912832 .background-color-B1{background-color:#0D32B2;} + .d2-1081912832 .background-color-B2{background-color:#0D32B2;} + .d2-1081912832 .background-color-B3{background-color:#E3E9FD;} + .d2-1081912832 .background-color-B4{background-color:#E3E9FD;} + .d2-1081912832 .background-color-B5{background-color:#EDF0FD;} + .d2-1081912832 .background-color-B6{background-color:#F7F8FE;} + .d2-1081912832 .background-color-AA2{background-color:#4A6FF3;} + .d2-1081912832 .background-color-AA4{background-color:#EDF0FD;} + .d2-1081912832 .background-color-AA5{background-color:#F7F8FE;} + .d2-1081912832 .background-color-AB4{background-color:#EDF0FD;} + .d2-1081912832 .background-color-AB5{background-color:#F7F8FE;} + .d2-1081912832 .color-N1{color:#0A0F25;} + .d2-1081912832 .color-N2{color:#676C7E;} + .d2-1081912832 .color-N3{color:#9499AB;} + .d2-1081912832 .color-N4{color:#CFD2DD;} + .d2-1081912832 .color-N5{color:#DEE1EB;} + .d2-1081912832 .color-N6{color:#EEF1F8;} + .d2-1081912832 .color-N7{color:#FFFFFF;} + .d2-1081912832 .color-B1{color:#0D32B2;} + .d2-1081912832 .color-B2{color:#0D32B2;} + .d2-1081912832 .color-B3{color:#E3E9FD;} + .d2-1081912832 .color-B4{color:#E3E9FD;} + .d2-1081912832 .color-B5{color:#EDF0FD;} + .d2-1081912832 .color-B6{color:#F7F8FE;} + .d2-1081912832 .color-AA2{color:#4A6FF3;} + .d2-1081912832 .color-AA4{color:#EDF0FD;} + .d2-1081912832 .color-AA5{color:#F7F8FE;} + .d2-1081912832 .color-AB4{color:#EDF0FD;} + .d2-1081912832 .color-AB5{color:#F7F8FE;}.appendix text.text{fill:#0A0F25}.md{--color-fg-default:#0A0F25;--color-fg-muted:#676C7E;--color-fg-subtle:#9499AB;--color-canvas-default:#FFFFFF;--color-canvas-subtle:#EEF1F8;--color-border-default:#0D32B2;--color-border-muted:#0D32B2;--color-neutral-muted:#EEF1F8;--color-accent-fg:#0D32B2;--color-accent-emphasis:#0D32B2;--color-attention-subtle:#676C7E;--color-danger-fg:red;}.sketch-overlay-B1{fill:url(#streaks-darker);mix-blend-mode:lighten}.sketch-overlay-B2{fill:url(#streaks-darker);mix-blend-mode:lighten}.sketch-overlay-B3{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-B4{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-B5{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-B6{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-AA2{fill:url(#streaks-dark);mix-blend-mode:overlay}.sketch-overlay-AA4{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-AA5{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-AB4{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-AB5{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-N1{fill:url(#streaks-darker);mix-blend-mode:lighten}.sketch-overlay-N2{fill:url(#streaks-dark);mix-blend-mode:overlay}.sketch-overlay-N3{fill:url(#streaks-normal);mix-blend-mode:color-burn}.sketch-overlay-N4{fill:url(#streaks-normal);mix-blend-mode:color-burn}.sketch-overlay-N5{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-N6{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-N7{fill:url(#streaks-bright);mix-blend-mode:darken}.light-code{display: block}.dark-code{display: none}]]>abc diff --git a/e2etests/testdata/stable/classes/dagre/board.exp.json b/e2etests/testdata/stable/classes/dagre/board.exp.json index 49f6bf8e6a..c28d5aeed1 100644 --- a/e2etests/testdata/stable/classes/dagre/board.exp.json +++ b/e2etests/testdata/stable/classes/dagre/board.exp.json @@ -162,6 +162,7 @@ "labelHeight": 21, "labelPosition": "INSIDE_MIDDLE_CENTER", "labelPercentage": 0, + "link": "", "route": [ { "x": 35, @@ -212,6 +213,7 @@ "labelHeight": 21, "labelPosition": "INSIDE_MIDDLE_CENTER", "labelPercentage": 0, + "link": "", "route": [ { "x": 35, diff --git a/e2etests/testdata/stable/classes/dagre/sketch.exp.svg b/e2etests/testdata/stable/classes/dagre/sketch.exp.svg index fbdd7f6426..e69779040a 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-2750620662 .fill-N1{fill:#0A0F25;} + .d2-2750620662 .fill-N2{fill:#676C7E;} + .d2-2750620662 .fill-N3{fill:#9499AB;} + .d2-2750620662 .fill-N4{fill:#CFD2DD;} + .d2-2750620662 .fill-N5{fill:#DEE1EB;} + .d2-2750620662 .fill-N6{fill:#EEF1F8;} + .d2-2750620662 .fill-N7{fill:#FFFFFF;} + .d2-2750620662 .fill-B1{fill:#0D32B2;} + .d2-2750620662 .fill-B2{fill:#0D32B2;} + .d2-2750620662 .fill-B3{fill:#E3E9FD;} + .d2-2750620662 .fill-B4{fill:#E3E9FD;} + .d2-2750620662 .fill-B5{fill:#EDF0FD;} + .d2-2750620662 .fill-B6{fill:#F7F8FE;} + .d2-2750620662 .fill-AA2{fill:#4A6FF3;} + .d2-2750620662 .fill-AA4{fill:#EDF0FD;} + .d2-2750620662 .fill-AA5{fill:#F7F8FE;} + .d2-2750620662 .fill-AB4{fill:#EDF0FD;} + .d2-2750620662 .fill-AB5{fill:#F7F8FE;} + .d2-2750620662 .stroke-N1{stroke:#0A0F25;} + .d2-2750620662 .stroke-N2{stroke:#676C7E;} + .d2-2750620662 .stroke-N3{stroke:#9499AB;} + .d2-2750620662 .stroke-N4{stroke:#CFD2DD;} + .d2-2750620662 .stroke-N5{stroke:#DEE1EB;} + .d2-2750620662 .stroke-N6{stroke:#EEF1F8;} + .d2-2750620662 .stroke-N7{stroke:#FFFFFF;} + .d2-2750620662 .stroke-B1{stroke:#0D32B2;} + .d2-2750620662 .stroke-B2{stroke:#0D32B2;} + .d2-2750620662 .stroke-B3{stroke:#E3E9FD;} + .d2-2750620662 .stroke-B4{stroke:#E3E9FD;} + .d2-2750620662 .stroke-B5{stroke:#EDF0FD;} + .d2-2750620662 .stroke-B6{stroke:#F7F8FE;} + .d2-2750620662 .stroke-AA2{stroke:#4A6FF3;} + .d2-2750620662 .stroke-AA4{stroke:#EDF0FD;} + .d2-2750620662 .stroke-AA5{stroke:#F7F8FE;} + .d2-2750620662 .stroke-AB4{stroke:#EDF0FD;} + .d2-2750620662 .stroke-AB5{stroke:#F7F8FE;} + .d2-2750620662 .background-color-N1{background-color:#0A0F25;} + .d2-2750620662 .background-color-N2{background-color:#676C7E;} + .d2-2750620662 .background-color-N3{background-color:#9499AB;} + .d2-2750620662 .background-color-N4{background-color:#CFD2DD;} + .d2-2750620662 .background-color-N5{background-color:#DEE1EB;} + .d2-2750620662 .background-color-N6{background-color:#EEF1F8;} + .d2-2750620662 .background-color-N7{background-color:#FFFFFF;} + .d2-2750620662 .background-color-B1{background-color:#0D32B2;} + .d2-2750620662 .background-color-B2{background-color:#0D32B2;} + .d2-2750620662 .background-color-B3{background-color:#E3E9FD;} + .d2-2750620662 .background-color-B4{background-color:#E3E9FD;} + .d2-2750620662 .background-color-B5{background-color:#EDF0FD;} + .d2-2750620662 .background-color-B6{background-color:#F7F8FE;} + .d2-2750620662 .background-color-AA2{background-color:#4A6FF3;} + .d2-2750620662 .background-color-AA4{background-color:#EDF0FD;} + .d2-2750620662 .background-color-AA5{background-color:#F7F8FE;} + .d2-2750620662 .background-color-AB4{background-color:#EDF0FD;} + .d2-2750620662 .background-color-AB5{background-color:#F7F8FE;} + .d2-2750620662 .color-N1{color:#0A0F25;} + .d2-2750620662 .color-N2{color:#676C7E;} + .d2-2750620662 .color-N3{color:#9499AB;} + .d2-2750620662 .color-N4{color:#CFD2DD;} + .d2-2750620662 .color-N5{color:#DEE1EB;} + .d2-2750620662 .color-N6{color:#EEF1F8;} + .d2-2750620662 .color-N7{color:#FFFFFF;} + .d2-2750620662 .color-B1{color:#0D32B2;} + .d2-2750620662 .color-B2{color:#0D32B2;} + .d2-2750620662 .color-B3{color:#E3E9FD;} + .d2-2750620662 .color-B4{color:#E3E9FD;} + .d2-2750620662 .color-B5{color:#EDF0FD;} + .d2-2750620662 .color-B6{color:#F7F8FE;} + .d2-2750620662 .color-AA2{color:#4A6FF3;} + .d2-2750620662 .color-AA4{color:#EDF0FD;} + .d2-2750620662 .color-AA5{color:#F7F8FE;} + .d2-2750620662 .color-AB4{color:#EDF0FD;} + .d2-2750620662 .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 diff --git a/e2etests/testdata/stable/classes/elk/board.exp.json b/e2etests/testdata/stable/classes/elk/board.exp.json index d496941ec2..4884a8a2ee 100644 --- a/e2etests/testdata/stable/classes/elk/board.exp.json +++ b/e2etests/testdata/stable/classes/elk/board.exp.json @@ -162,6 +162,7 @@ "labelHeight": 21, "labelPosition": "INSIDE_MIDDLE_CENTER", "labelPercentage": 0, + "link": "", "route": [ { "x": 47, @@ -203,6 +204,7 @@ "labelHeight": 21, "labelPosition": "INSIDE_MIDDLE_CENTER", "labelPercentage": 0, + "link": "", "route": [ { "x": 47, diff --git a/e2etests/testdata/stable/classes/elk/sketch.exp.svg b/e2etests/testdata/stable/classes/elk/sketch.exp.svg index 06fde9560a..adb1afff79 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-2024900768 .fill-N1{fill:#0A0F25;} + .d2-2024900768 .fill-N2{fill:#676C7E;} + .d2-2024900768 .fill-N3{fill:#9499AB;} + .d2-2024900768 .fill-N4{fill:#CFD2DD;} + .d2-2024900768 .fill-N5{fill:#DEE1EB;} + .d2-2024900768 .fill-N6{fill:#EEF1F8;} + .d2-2024900768 .fill-N7{fill:#FFFFFF;} + .d2-2024900768 .fill-B1{fill:#0D32B2;} + .d2-2024900768 .fill-B2{fill:#0D32B2;} + .d2-2024900768 .fill-B3{fill:#E3E9FD;} + .d2-2024900768 .fill-B4{fill:#E3E9FD;} + .d2-2024900768 .fill-B5{fill:#EDF0FD;} + .d2-2024900768 .fill-B6{fill:#F7F8FE;} + .d2-2024900768 .fill-AA2{fill:#4A6FF3;} + .d2-2024900768 .fill-AA4{fill:#EDF0FD;} + .d2-2024900768 .fill-AA5{fill:#F7F8FE;} + .d2-2024900768 .fill-AB4{fill:#EDF0FD;} + .d2-2024900768 .fill-AB5{fill:#F7F8FE;} + .d2-2024900768 .stroke-N1{stroke:#0A0F25;} + .d2-2024900768 .stroke-N2{stroke:#676C7E;} + .d2-2024900768 .stroke-N3{stroke:#9499AB;} + .d2-2024900768 .stroke-N4{stroke:#CFD2DD;} + .d2-2024900768 .stroke-N5{stroke:#DEE1EB;} + .d2-2024900768 .stroke-N6{stroke:#EEF1F8;} + .d2-2024900768 .stroke-N7{stroke:#FFFFFF;} + .d2-2024900768 .stroke-B1{stroke:#0D32B2;} + .d2-2024900768 .stroke-B2{stroke:#0D32B2;} + .d2-2024900768 .stroke-B3{stroke:#E3E9FD;} + .d2-2024900768 .stroke-B4{stroke:#E3E9FD;} + .d2-2024900768 .stroke-B5{stroke:#EDF0FD;} + .d2-2024900768 .stroke-B6{stroke:#F7F8FE;} + .d2-2024900768 .stroke-AA2{stroke:#4A6FF3;} + .d2-2024900768 .stroke-AA4{stroke:#EDF0FD;} + .d2-2024900768 .stroke-AA5{stroke:#F7F8FE;} + .d2-2024900768 .stroke-AB4{stroke:#EDF0FD;} + .d2-2024900768 .stroke-AB5{stroke:#F7F8FE;} + .d2-2024900768 .background-color-N1{background-color:#0A0F25;} + .d2-2024900768 .background-color-N2{background-color:#676C7E;} + .d2-2024900768 .background-color-N3{background-color:#9499AB;} + .d2-2024900768 .background-color-N4{background-color:#CFD2DD;} + .d2-2024900768 .background-color-N5{background-color:#DEE1EB;} + .d2-2024900768 .background-color-N6{background-color:#EEF1F8;} + .d2-2024900768 .background-color-N7{background-color:#FFFFFF;} + .d2-2024900768 .background-color-B1{background-color:#0D32B2;} + .d2-2024900768 .background-color-B2{background-color:#0D32B2;} + .d2-2024900768 .background-color-B3{background-color:#E3E9FD;} + .d2-2024900768 .background-color-B4{background-color:#E3E9FD;} + .d2-2024900768 .background-color-B5{background-color:#EDF0FD;} + .d2-2024900768 .background-color-B6{background-color:#F7F8FE;} + .d2-2024900768 .background-color-AA2{background-color:#4A6FF3;} + .d2-2024900768 .background-color-AA4{background-color:#EDF0FD;} + .d2-2024900768 .background-color-AA5{background-color:#F7F8FE;} + .d2-2024900768 .background-color-AB4{background-color:#EDF0FD;} + .d2-2024900768 .background-color-AB5{background-color:#F7F8FE;} + .d2-2024900768 .color-N1{color:#0A0F25;} + .d2-2024900768 .color-N2{color:#676C7E;} + .d2-2024900768 .color-N3{color:#9499AB;} + .d2-2024900768 .color-N4{color:#CFD2DD;} + .d2-2024900768 .color-N5{color:#DEE1EB;} + .d2-2024900768 .color-N6{color:#EEF1F8;} + .d2-2024900768 .color-N7{color:#FFFFFF;} + .d2-2024900768 .color-B1{color:#0D32B2;} + .d2-2024900768 .color-B2{color:#0D32B2;} + .d2-2024900768 .color-B3{color:#E3E9FD;} + .d2-2024900768 .color-B4{color:#E3E9FD;} + .d2-2024900768 .color-B5{color:#EDF0FD;} + .d2-2024900768 .color-B6{color:#F7F8FE;} + .d2-2024900768 .color-AA2{color:#4A6FF3;} + .d2-2024900768 .color-AA4{color:#EDF0FD;} + .d2-2024900768 .color-AA5{color:#F7F8FE;} + .d2-2024900768 .color-AB4{color:#EDF0FD;} + .d2-2024900768 .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 diff --git a/e2etests/testdata/stable/code_snippet/dagre/board.exp.json b/e2etests/testdata/stable/code_snippet/dagre/board.exp.json index 5ad185be78..bd4bfd300b 100644 --- a/e2etests/testdata/stable/code_snippet/dagre/board.exp.json +++ b/e2etests/testdata/stable/code_snippet/dagre/board.exp.json @@ -150,6 +150,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 377.5, @@ -197,6 +198,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 377.5, diff --git a/e2etests/testdata/stable/code_snippet/dagre/sketch.exp.svg b/e2etests/testdata/stable/code_snippet/dagre/sketch.exp.svg index 6b81db4af0..d9370ce172 100644 --- a/e2etests/testdata/stable/code_snippet/dagre/sketch.exp.svg +++ b/e2etests/testdata/stable/code_snippet/dagre/sketch.exp.svg @@ -1,30 +1,30 @@ -// RegisterHash registers a function that returns a new instance of the given + .d2-4018680361 .fill-N1{fill:#0A0F25;} + .d2-4018680361 .fill-N2{fill:#676C7E;} + .d2-4018680361 .fill-N3{fill:#9499AB;} + .d2-4018680361 .fill-N4{fill:#CFD2DD;} + .d2-4018680361 .fill-N5{fill:#DEE1EB;} + .d2-4018680361 .fill-N6{fill:#EEF1F8;} + .d2-4018680361 .fill-N7{fill:#FFFFFF;} + .d2-4018680361 .fill-B1{fill:#0D32B2;} + .d2-4018680361 .fill-B2{fill:#0D32B2;} + .d2-4018680361 .fill-B3{fill:#E3E9FD;} + .d2-4018680361 .fill-B4{fill:#E3E9FD;} + .d2-4018680361 .fill-B5{fill:#EDF0FD;} + .d2-4018680361 .fill-B6{fill:#F7F8FE;} + .d2-4018680361 .fill-AA2{fill:#4A6FF3;} + .d2-4018680361 .fill-AA4{fill:#EDF0FD;} + .d2-4018680361 .fill-AA5{fill:#F7F8FE;} + .d2-4018680361 .fill-AB4{fill:#EDF0FD;} + .d2-4018680361 .fill-AB5{fill:#F7F8FE;} + .d2-4018680361 .stroke-N1{stroke:#0A0F25;} + .d2-4018680361 .stroke-N2{stroke:#676C7E;} + .d2-4018680361 .stroke-N3{stroke:#9499AB;} + .d2-4018680361 .stroke-N4{stroke:#CFD2DD;} + .d2-4018680361 .stroke-N5{stroke:#DEE1EB;} + .d2-4018680361 .stroke-N6{stroke:#EEF1F8;} + .d2-4018680361 .stroke-N7{stroke:#FFFFFF;} + .d2-4018680361 .stroke-B1{stroke:#0D32B2;} + .d2-4018680361 .stroke-B2{stroke:#0D32B2;} + .d2-4018680361 .stroke-B3{stroke:#E3E9FD;} + .d2-4018680361 .stroke-B4{stroke:#E3E9FD;} + .d2-4018680361 .stroke-B5{stroke:#EDF0FD;} + .d2-4018680361 .stroke-B6{stroke:#F7F8FE;} + .d2-4018680361 .stroke-AA2{stroke:#4A6FF3;} + .d2-4018680361 .stroke-AA4{stroke:#EDF0FD;} + .d2-4018680361 .stroke-AA5{stroke:#F7F8FE;} + .d2-4018680361 .stroke-AB4{stroke:#EDF0FD;} + .d2-4018680361 .stroke-AB5{stroke:#F7F8FE;} + .d2-4018680361 .background-color-N1{background-color:#0A0F25;} + .d2-4018680361 .background-color-N2{background-color:#676C7E;} + .d2-4018680361 .background-color-N3{background-color:#9499AB;} + .d2-4018680361 .background-color-N4{background-color:#CFD2DD;} + .d2-4018680361 .background-color-N5{background-color:#DEE1EB;} + .d2-4018680361 .background-color-N6{background-color:#EEF1F8;} + .d2-4018680361 .background-color-N7{background-color:#FFFFFF;} + .d2-4018680361 .background-color-B1{background-color:#0D32B2;} + .d2-4018680361 .background-color-B2{background-color:#0D32B2;} + .d2-4018680361 .background-color-B3{background-color:#E3E9FD;} + .d2-4018680361 .background-color-B4{background-color:#E3E9FD;} + .d2-4018680361 .background-color-B5{background-color:#EDF0FD;} + .d2-4018680361 .background-color-B6{background-color:#F7F8FE;} + .d2-4018680361 .background-color-AA2{background-color:#4A6FF3;} + .d2-4018680361 .background-color-AA4{background-color:#EDF0FD;} + .d2-4018680361 .background-color-AA5{background-color:#F7F8FE;} + .d2-4018680361 .background-color-AB4{background-color:#EDF0FD;} + .d2-4018680361 .background-color-AB5{background-color:#F7F8FE;} + .d2-4018680361 .color-N1{color:#0A0F25;} + .d2-4018680361 .color-N2{color:#676C7E;} + .d2-4018680361 .color-N3{color:#9499AB;} + .d2-4018680361 .color-N4{color:#CFD2DD;} + .d2-4018680361 .color-N5{color:#DEE1EB;} + .d2-4018680361 .color-N6{color:#EEF1F8;} + .d2-4018680361 .color-N7{color:#FFFFFF;} + .d2-4018680361 .color-B1{color:#0D32B2;} + .d2-4018680361 .color-B2{color:#0D32B2;} + .d2-4018680361 .color-B3{color:#E3E9FD;} + .d2-4018680361 .color-B4{color:#E3E9FD;} + .d2-4018680361 .color-B5{color:#EDF0FD;} + .d2-4018680361 .color-B6{color:#F7F8FE;} + .d2-4018680361 .color-AA2{color:#4A6FF3;} + .d2-4018680361 .color-AA4{color:#EDF0FD;} + .d2-4018680361 .color-AA5{color:#F7F8FE;} + .d2-4018680361 .color-AB4{color:#EDF0FD;} + .d2-4018680361 .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}]]>// RegisterHash registers a function that returns a new instance of the given // hash function. This is intended to be called from the init function in // packages that implement hash functions. func RegisterHash(h Hash, f func() hash.Hash) { @@ -126,7 +126,7 @@         panic("crypto: RegisterHash of unknown hash function")     }     hashes[h] = f -}xy +}xy diff --git a/e2etests/testdata/stable/code_snippet/elk/board.exp.json b/e2etests/testdata/stable/code_snippet/elk/board.exp.json index b5f7645e61..ac7968f318 100644 --- a/e2etests/testdata/stable/code_snippet/elk/board.exp.json +++ b/e2etests/testdata/stable/code_snippet/elk/board.exp.json @@ -150,6 +150,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 389.5, @@ -188,6 +189,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 389.5, diff --git a/e2etests/testdata/stable/code_snippet/elk/sketch.exp.svg b/e2etests/testdata/stable/code_snippet/elk/sketch.exp.svg index 831783d6d1..412b09e145 100644 --- a/e2etests/testdata/stable/code_snippet/elk/sketch.exp.svg +++ b/e2etests/testdata/stable/code_snippet/elk/sketch.exp.svg @@ -1,30 +1,30 @@ -// RegisterHash registers a function that returns a new instance of the given + .d2-637161018 .fill-N1{fill:#0A0F25;} + .d2-637161018 .fill-N2{fill:#676C7E;} + .d2-637161018 .fill-N3{fill:#9499AB;} + .d2-637161018 .fill-N4{fill:#CFD2DD;} + .d2-637161018 .fill-N5{fill:#DEE1EB;} + .d2-637161018 .fill-N6{fill:#EEF1F8;} + .d2-637161018 .fill-N7{fill:#FFFFFF;} + .d2-637161018 .fill-B1{fill:#0D32B2;} + .d2-637161018 .fill-B2{fill:#0D32B2;} + .d2-637161018 .fill-B3{fill:#E3E9FD;} + .d2-637161018 .fill-B4{fill:#E3E9FD;} + .d2-637161018 .fill-B5{fill:#EDF0FD;} + .d2-637161018 .fill-B6{fill:#F7F8FE;} + .d2-637161018 .fill-AA2{fill:#4A6FF3;} + .d2-637161018 .fill-AA4{fill:#EDF0FD;} + .d2-637161018 .fill-AA5{fill:#F7F8FE;} + .d2-637161018 .fill-AB4{fill:#EDF0FD;} + .d2-637161018 .fill-AB5{fill:#F7F8FE;} + .d2-637161018 .stroke-N1{stroke:#0A0F25;} + .d2-637161018 .stroke-N2{stroke:#676C7E;} + .d2-637161018 .stroke-N3{stroke:#9499AB;} + .d2-637161018 .stroke-N4{stroke:#CFD2DD;} + .d2-637161018 .stroke-N5{stroke:#DEE1EB;} + .d2-637161018 .stroke-N6{stroke:#EEF1F8;} + .d2-637161018 .stroke-N7{stroke:#FFFFFF;} + .d2-637161018 .stroke-B1{stroke:#0D32B2;} + .d2-637161018 .stroke-B2{stroke:#0D32B2;} + .d2-637161018 .stroke-B3{stroke:#E3E9FD;} + .d2-637161018 .stroke-B4{stroke:#E3E9FD;} + .d2-637161018 .stroke-B5{stroke:#EDF0FD;} + .d2-637161018 .stroke-B6{stroke:#F7F8FE;} + .d2-637161018 .stroke-AA2{stroke:#4A6FF3;} + .d2-637161018 .stroke-AA4{stroke:#EDF0FD;} + .d2-637161018 .stroke-AA5{stroke:#F7F8FE;} + .d2-637161018 .stroke-AB4{stroke:#EDF0FD;} + .d2-637161018 .stroke-AB5{stroke:#F7F8FE;} + .d2-637161018 .background-color-N1{background-color:#0A0F25;} + .d2-637161018 .background-color-N2{background-color:#676C7E;} + .d2-637161018 .background-color-N3{background-color:#9499AB;} + .d2-637161018 .background-color-N4{background-color:#CFD2DD;} + .d2-637161018 .background-color-N5{background-color:#DEE1EB;} + .d2-637161018 .background-color-N6{background-color:#EEF1F8;} + .d2-637161018 .background-color-N7{background-color:#FFFFFF;} + .d2-637161018 .background-color-B1{background-color:#0D32B2;} + .d2-637161018 .background-color-B2{background-color:#0D32B2;} + .d2-637161018 .background-color-B3{background-color:#E3E9FD;} + .d2-637161018 .background-color-B4{background-color:#E3E9FD;} + .d2-637161018 .background-color-B5{background-color:#EDF0FD;} + .d2-637161018 .background-color-B6{background-color:#F7F8FE;} + .d2-637161018 .background-color-AA2{background-color:#4A6FF3;} + .d2-637161018 .background-color-AA4{background-color:#EDF0FD;} + .d2-637161018 .background-color-AA5{background-color:#F7F8FE;} + .d2-637161018 .background-color-AB4{background-color:#EDF0FD;} + .d2-637161018 .background-color-AB5{background-color:#F7F8FE;} + .d2-637161018 .color-N1{color:#0A0F25;} + .d2-637161018 .color-N2{color:#676C7E;} + .d2-637161018 .color-N3{color:#9499AB;} + .d2-637161018 .color-N4{color:#CFD2DD;} + .d2-637161018 .color-N5{color:#DEE1EB;} + .d2-637161018 .color-N6{color:#EEF1F8;} + .d2-637161018 .color-N7{color:#FFFFFF;} + .d2-637161018 .color-B1{color:#0D32B2;} + .d2-637161018 .color-B2{color:#0D32B2;} + .d2-637161018 .color-B3{color:#E3E9FD;} + .d2-637161018 .color-B4{color:#E3E9FD;} + .d2-637161018 .color-B5{color:#EDF0FD;} + .d2-637161018 .color-B6{color:#F7F8FE;} + .d2-637161018 .color-AA2{color:#4A6FF3;} + .d2-637161018 .color-AA4{color:#EDF0FD;} + .d2-637161018 .color-AA5{color:#F7F8FE;} + .d2-637161018 .color-AB4{color:#EDF0FD;} + .d2-637161018 .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}]]>// RegisterHash registers a function that returns a new instance of the given // hash function. This is intended to be called from the init function in // packages that implement hash functions. func RegisterHash(h Hash, f func() hash.Hash) { @@ -126,7 +126,7 @@         panic("crypto: RegisterHash of unknown hash function")     }     hashes[h] = f -}xy +}xy diff --git a/e2etests/testdata/stable/complex-layers/dagre/board.exp.json b/e2etests/testdata/stable/complex-layers/dagre/board.exp.json index 3ceacbac4f..2d1bddefa1 100644 --- a/e2etests/testdata/stable/complex-layers/dagre/board.exp.json +++ b/e2etests/testdata/stable/complex-layers/dagre/board.exp.json @@ -1012,6 +1012,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 265.5, @@ -1354,6 +1355,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 265.5, @@ -1401,6 +1403,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 472.5, @@ -1784,6 +1787,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 265.5, @@ -1831,6 +1835,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 472.5, @@ -1878,6 +1883,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 472.5, diff --git a/e2etests/testdata/stable/complex-layers/dagre/sketch.exp.svg b/e2etests/testdata/stable/complex-layers/dagre/sketch.exp.svg index bb27209fe0..16d1770217 100644 --- a/e2etests/testdata/stable/complex-layers/dagre/sketch.exp.svg +++ b/e2etests/testdata/stable/complex-layers/dagre/sketch.exp.svg @@ -1,16 +1,16 @@ windowroofgarage +}]]>windowroofgarage -blindsglass +blindsglass -shinglesstarlinkutility hookup +shinglesstarlinkutility hookup -toolsvehicles +toolsvehicles -find contractorscraigslistfacebook +find contractorscraigslistfacebook -find contractorssolicit quotescraigslistfacebook +find contractorssolicit quotescraigslistfacebook -find contractorssolicit quotesobtain quotesnegotiatecraigslistfacebook +find contractorssolicit quotesobtain quotesnegotiatecraigslistfacebook @@ -220,7 +220,7 @@ -find contractorssolicit quotesobtain quotesnegotiatebook the best bidcraigslistfacebook +find contractorssolicit quotesobtain quotesnegotiatebook the best bidcraigslistfacebook @@ -229,7 +229,7 @@ -windowroofgaragewaterrainthunder +windowroofgaragewaterrainthunder diff --git a/e2etests/testdata/stable/complex-layers/elk/board.exp.json b/e2etests/testdata/stable/complex-layers/elk/board.exp.json index 4e4aca6ab6..2c4a579e0b 100644 --- a/e2etests/testdata/stable/complex-layers/elk/board.exp.json +++ b/e2etests/testdata/stable/complex-layers/elk/board.exp.json @@ -1012,6 +1012,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 182.5, @@ -1345,6 +1346,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 182.5, @@ -1383,6 +1385,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 444.5, @@ -1757,6 +1760,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 182.5, @@ -1795,6 +1799,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 444.5, @@ -1833,6 +1838,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 444.5, diff --git a/e2etests/testdata/stable/complex-layers/elk/sketch.exp.svg b/e2etests/testdata/stable/complex-layers/elk/sketch.exp.svg index 03ce812ce4..560828cfec 100644 --- a/e2etests/testdata/stable/complex-layers/elk/sketch.exp.svg +++ b/e2etests/testdata/stable/complex-layers/elk/sketch.exp.svg @@ -1,16 +1,16 @@ windowroofgarage +}]]>windowroofgarage -blindsglass +blindsglass -shinglesstarlinkutility hookup +shinglesstarlinkutility hookup -toolsvehicles +toolsvehicles -find contractorscraigslistfacebook +find contractorscraigslistfacebook -find contractorssolicit quotescraigslistfacebook +find contractorssolicit quotescraigslistfacebook -find contractorssolicit quotesobtain quotesnegotiatecraigslistfacebook +find contractorssolicit quotesobtain quotesnegotiatecraigslistfacebook @@ -220,7 +220,7 @@ -find contractorssolicit quotesobtain quotesnegotiatebook the best bidcraigslistfacebook +find contractorssolicit quotesobtain quotesnegotiatebook the best bidcraigslistfacebook @@ -229,7 +229,7 @@ -windowroofgaragewaterrainthunder +windowroofgaragewaterrainthunder diff --git a/e2etests/testdata/stable/connected_container/dagre/board.exp.json b/e2etests/testdata/stable/connected_container/dagre/board.exp.json index a90ceb89c6..f6ae761097 100644 --- a/e2etests/testdata/stable/connected_container/dagre/board.exp.json +++ b/e2etests/testdata/stable/connected_container/dagre/board.exp.json @@ -315,6 +315,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 87, @@ -374,6 +375,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 87, diff --git a/e2etests/testdata/stable/connected_container/dagre/sketch.exp.svg b/e2etests/testdata/stable/connected_container/dagre/sketch.exp.svg index 6d688b0d48..7260d3a07a 100644 --- a/e2etests/testdata/stable/connected_container/dagre/sketch.exp.svg +++ b/e2etests/testdata/stable/connected_container/dagre/sketch.exp.svg @@ -1,16 +1,16 @@ -acfbdhg + .d2-1439024777 .fill-N1{fill:#0A0F25;} + .d2-1439024777 .fill-N2{fill:#676C7E;} + .d2-1439024777 .fill-N3{fill:#9499AB;} + .d2-1439024777 .fill-N4{fill:#CFD2DD;} + .d2-1439024777 .fill-N5{fill:#DEE1EB;} + .d2-1439024777 .fill-N6{fill:#EEF1F8;} + .d2-1439024777 .fill-N7{fill:#FFFFFF;} + .d2-1439024777 .fill-B1{fill:#0D32B2;} + .d2-1439024777 .fill-B2{fill:#0D32B2;} + .d2-1439024777 .fill-B3{fill:#E3E9FD;} + .d2-1439024777 .fill-B4{fill:#E3E9FD;} + .d2-1439024777 .fill-B5{fill:#EDF0FD;} + .d2-1439024777 .fill-B6{fill:#F7F8FE;} + .d2-1439024777 .fill-AA2{fill:#4A6FF3;} + .d2-1439024777 .fill-AA4{fill:#EDF0FD;} + .d2-1439024777 .fill-AA5{fill:#F7F8FE;} + .d2-1439024777 .fill-AB4{fill:#EDF0FD;} + .d2-1439024777 .fill-AB5{fill:#F7F8FE;} + .d2-1439024777 .stroke-N1{stroke:#0A0F25;} + .d2-1439024777 .stroke-N2{stroke:#676C7E;} + .d2-1439024777 .stroke-N3{stroke:#9499AB;} + .d2-1439024777 .stroke-N4{stroke:#CFD2DD;} + .d2-1439024777 .stroke-N5{stroke:#DEE1EB;} + .d2-1439024777 .stroke-N6{stroke:#EEF1F8;} + .d2-1439024777 .stroke-N7{stroke:#FFFFFF;} + .d2-1439024777 .stroke-B1{stroke:#0D32B2;} + .d2-1439024777 .stroke-B2{stroke:#0D32B2;} + .d2-1439024777 .stroke-B3{stroke:#E3E9FD;} + .d2-1439024777 .stroke-B4{stroke:#E3E9FD;} + .d2-1439024777 .stroke-B5{stroke:#EDF0FD;} + .d2-1439024777 .stroke-B6{stroke:#F7F8FE;} + .d2-1439024777 .stroke-AA2{stroke:#4A6FF3;} + .d2-1439024777 .stroke-AA4{stroke:#EDF0FD;} + .d2-1439024777 .stroke-AA5{stroke:#F7F8FE;} + .d2-1439024777 .stroke-AB4{stroke:#EDF0FD;} + .d2-1439024777 .stroke-AB5{stroke:#F7F8FE;} + .d2-1439024777 .background-color-N1{background-color:#0A0F25;} + .d2-1439024777 .background-color-N2{background-color:#676C7E;} + .d2-1439024777 .background-color-N3{background-color:#9499AB;} + .d2-1439024777 .background-color-N4{background-color:#CFD2DD;} + .d2-1439024777 .background-color-N5{background-color:#DEE1EB;} + .d2-1439024777 .background-color-N6{background-color:#EEF1F8;} + .d2-1439024777 .background-color-N7{background-color:#FFFFFF;} + .d2-1439024777 .background-color-B1{background-color:#0D32B2;} + .d2-1439024777 .background-color-B2{background-color:#0D32B2;} + .d2-1439024777 .background-color-B3{background-color:#E3E9FD;} + .d2-1439024777 .background-color-B4{background-color:#E3E9FD;} + .d2-1439024777 .background-color-B5{background-color:#EDF0FD;} + .d2-1439024777 .background-color-B6{background-color:#F7F8FE;} + .d2-1439024777 .background-color-AA2{background-color:#4A6FF3;} + .d2-1439024777 .background-color-AA4{background-color:#EDF0FD;} + .d2-1439024777 .background-color-AA5{background-color:#F7F8FE;} + .d2-1439024777 .background-color-AB4{background-color:#EDF0FD;} + .d2-1439024777 .background-color-AB5{background-color:#F7F8FE;} + .d2-1439024777 .color-N1{color:#0A0F25;} + .d2-1439024777 .color-N2{color:#676C7E;} + .d2-1439024777 .color-N3{color:#9499AB;} + .d2-1439024777 .color-N4{color:#CFD2DD;} + .d2-1439024777 .color-N5{color:#DEE1EB;} + .d2-1439024777 .color-N6{color:#EEF1F8;} + .d2-1439024777 .color-N7{color:#FFFFFF;} + .d2-1439024777 .color-B1{color:#0D32B2;} + .d2-1439024777 .color-B2{color:#0D32B2;} + .d2-1439024777 .color-B3{color:#E3E9FD;} + .d2-1439024777 .color-B4{color:#E3E9FD;} + .d2-1439024777 .color-B5{color:#EDF0FD;} + .d2-1439024777 .color-B6{color:#F7F8FE;} + .d2-1439024777 .color-AA2{color:#4A6FF3;} + .d2-1439024777 .color-AA4{color:#EDF0FD;} + .d2-1439024777 .color-AA5{color:#F7F8FE;} + .d2-1439024777 .color-AB4{color:#EDF0FD;} + .d2-1439024777 .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}]]>acfbdhg diff --git a/e2etests/testdata/stable/connected_container/elk/board.exp.json b/e2etests/testdata/stable/connected_container/elk/board.exp.json index 86e61496e6..5b9a29d919 100644 --- a/e2etests/testdata/stable/connected_container/elk/board.exp.json +++ b/e2etests/testdata/stable/connected_container/elk/board.exp.json @@ -315,6 +315,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 139, @@ -353,6 +354,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 139, diff --git a/e2etests/testdata/stable/connected_container/elk/sketch.exp.svg b/e2etests/testdata/stable/connected_container/elk/sketch.exp.svg index d8af6afe62..ffb3ba2e1a 100644 --- a/e2etests/testdata/stable/connected_container/elk/sketch.exp.svg +++ b/e2etests/testdata/stable/connected_container/elk/sketch.exp.svg @@ -1,16 +1,16 @@ -acfbdhg + .d2-1130993745 .fill-N1{fill:#0A0F25;} + .d2-1130993745 .fill-N2{fill:#676C7E;} + .d2-1130993745 .fill-N3{fill:#9499AB;} + .d2-1130993745 .fill-N4{fill:#CFD2DD;} + .d2-1130993745 .fill-N5{fill:#DEE1EB;} + .d2-1130993745 .fill-N6{fill:#EEF1F8;} + .d2-1130993745 .fill-N7{fill:#FFFFFF;} + .d2-1130993745 .fill-B1{fill:#0D32B2;} + .d2-1130993745 .fill-B2{fill:#0D32B2;} + .d2-1130993745 .fill-B3{fill:#E3E9FD;} + .d2-1130993745 .fill-B4{fill:#E3E9FD;} + .d2-1130993745 .fill-B5{fill:#EDF0FD;} + .d2-1130993745 .fill-B6{fill:#F7F8FE;} + .d2-1130993745 .fill-AA2{fill:#4A6FF3;} + .d2-1130993745 .fill-AA4{fill:#EDF0FD;} + .d2-1130993745 .fill-AA5{fill:#F7F8FE;} + .d2-1130993745 .fill-AB4{fill:#EDF0FD;} + .d2-1130993745 .fill-AB5{fill:#F7F8FE;} + .d2-1130993745 .stroke-N1{stroke:#0A0F25;} + .d2-1130993745 .stroke-N2{stroke:#676C7E;} + .d2-1130993745 .stroke-N3{stroke:#9499AB;} + .d2-1130993745 .stroke-N4{stroke:#CFD2DD;} + .d2-1130993745 .stroke-N5{stroke:#DEE1EB;} + .d2-1130993745 .stroke-N6{stroke:#EEF1F8;} + .d2-1130993745 .stroke-N7{stroke:#FFFFFF;} + .d2-1130993745 .stroke-B1{stroke:#0D32B2;} + .d2-1130993745 .stroke-B2{stroke:#0D32B2;} + .d2-1130993745 .stroke-B3{stroke:#E3E9FD;} + .d2-1130993745 .stroke-B4{stroke:#E3E9FD;} + .d2-1130993745 .stroke-B5{stroke:#EDF0FD;} + .d2-1130993745 .stroke-B6{stroke:#F7F8FE;} + .d2-1130993745 .stroke-AA2{stroke:#4A6FF3;} + .d2-1130993745 .stroke-AA4{stroke:#EDF0FD;} + .d2-1130993745 .stroke-AA5{stroke:#F7F8FE;} + .d2-1130993745 .stroke-AB4{stroke:#EDF0FD;} + .d2-1130993745 .stroke-AB5{stroke:#F7F8FE;} + .d2-1130993745 .background-color-N1{background-color:#0A0F25;} + .d2-1130993745 .background-color-N2{background-color:#676C7E;} + .d2-1130993745 .background-color-N3{background-color:#9499AB;} + .d2-1130993745 .background-color-N4{background-color:#CFD2DD;} + .d2-1130993745 .background-color-N5{background-color:#DEE1EB;} + .d2-1130993745 .background-color-N6{background-color:#EEF1F8;} + .d2-1130993745 .background-color-N7{background-color:#FFFFFF;} + .d2-1130993745 .background-color-B1{background-color:#0D32B2;} + .d2-1130993745 .background-color-B2{background-color:#0D32B2;} + .d2-1130993745 .background-color-B3{background-color:#E3E9FD;} + .d2-1130993745 .background-color-B4{background-color:#E3E9FD;} + .d2-1130993745 .background-color-B5{background-color:#EDF0FD;} + .d2-1130993745 .background-color-B6{background-color:#F7F8FE;} + .d2-1130993745 .background-color-AA2{background-color:#4A6FF3;} + .d2-1130993745 .background-color-AA4{background-color:#EDF0FD;} + .d2-1130993745 .background-color-AA5{background-color:#F7F8FE;} + .d2-1130993745 .background-color-AB4{background-color:#EDF0FD;} + .d2-1130993745 .background-color-AB5{background-color:#F7F8FE;} + .d2-1130993745 .color-N1{color:#0A0F25;} + .d2-1130993745 .color-N2{color:#676C7E;} + .d2-1130993745 .color-N3{color:#9499AB;} + .d2-1130993745 .color-N4{color:#CFD2DD;} + .d2-1130993745 .color-N5{color:#DEE1EB;} + .d2-1130993745 .color-N6{color:#EEF1F8;} + .d2-1130993745 .color-N7{color:#FFFFFF;} + .d2-1130993745 .color-B1{color:#0D32B2;} + .d2-1130993745 .color-B2{color:#0D32B2;} + .d2-1130993745 .color-B3{color:#E3E9FD;} + .d2-1130993745 .color-B4{color:#E3E9FD;} + .d2-1130993745 .color-B5{color:#EDF0FD;} + .d2-1130993745 .color-B6{color:#F7F8FE;} + .d2-1130993745 .color-AA2{color:#4A6FF3;} + .d2-1130993745 .color-AA4{color:#EDF0FD;} + .d2-1130993745 .color-AA5{color:#F7F8FE;} + .d2-1130993745 .color-AB4{color:#EDF0FD;} + .d2-1130993745 .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}]]>acfbdhg diff --git a/e2etests/testdata/stable/constant_near_stress/dagre/board.exp.json b/e2etests/testdata/stable/constant_near_stress/dagre/board.exp.json index b550af1dd6..164ca93562 100644 --- a/e2etests/testdata/stable/constant_near_stress/dagre/board.exp.json +++ b/e2etests/testdata/stable/constant_near_stress/dagre/board.exp.json @@ -432,6 +432,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 27, diff --git a/e2etests/testdata/stable/constant_near_stress/dagre/sketch.exp.svg b/e2etests/testdata/stable/constant_near_stress/dagre/sketch.exp.svg index 36ebb388ab..022df6e154 100644 --- a/e2etests/testdata/stable/constant_near_stress/dagre/sketch.exp.svg +++ b/e2etests/testdata/stable/constant_near_stress/dagre/sketch.exp.svg @@ -1,20 +1,20 @@ -xyThe top of the mountainJoeDonald

    Cats, no less liquid than their shadows, offer no angles to the wind.

    If we can't fix it, it ain't broke.

    Dieters live life in the fasting lane.

    -
    i am top lefti am top righti am bottom lefti am bottom right +
    i am top lefti am top righti am bottom lefti am bottom right diff --git a/e2etests/testdata/stable/constant_near_stress/elk/board.exp.json b/e2etests/testdata/stable/constant_near_stress/elk/board.exp.json index 603b35fc4b..fd2a051bd2 100644 --- a/e2etests/testdata/stable/constant_near_stress/elk/board.exp.json +++ b/e2etests/testdata/stable/constant_near_stress/elk/board.exp.json @@ -432,6 +432,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 39, diff --git a/e2etests/testdata/stable/constant_near_stress/elk/sketch.exp.svg b/e2etests/testdata/stable/constant_near_stress/elk/sketch.exp.svg index 9b394ed94b..0ba2c991a7 100644 --- a/e2etests/testdata/stable/constant_near_stress/elk/sketch.exp.svg +++ b/e2etests/testdata/stable/constant_near_stress/elk/sketch.exp.svg @@ -1,20 +1,20 @@ -xyThe top of the mountainJoeDonald

    Cats, no less liquid than their shadows, offer no angles to the wind.

    If we can't fix it, it ain't broke.

    Dieters live life in the fasting lane.

    -
    i am top lefti am top righti am bottom lefti am bottom right +
    i am top lefti am top righti am bottom lefti am bottom right diff --git a/e2etests/testdata/stable/constant_near_title/dagre/board.exp.json b/e2etests/testdata/stable/constant_near_title/dagre/board.exp.json index 62e89f0062..8efd1f8fb1 100644 --- a/e2etests/testdata/stable/constant_near_title/dagre/board.exp.json +++ b/e2etests/testdata/stable/constant_near_title/dagre/board.exp.json @@ -273,6 +273,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 188.5, @@ -320,6 +321,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 201.5, @@ -367,6 +369,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 61.5, @@ -426,6 +429,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 241.5, @@ -473,6 +477,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 247.5, diff --git a/e2etests/testdata/stable/constant_near_title/dagre/sketch.exp.svg b/e2etests/testdata/stable/constant_near_title/dagre/sketch.exp.svg index 05d68cfb0f..bbe00f3e49 100644 --- a/e2etests/testdata/stable/constant_near_title/dagre/sketch.exp.svg +++ b/e2etests/testdata/stable/constant_near_title/dagre/sketch.exp.svg @@ -1,20 +1,20 @@ -

    A winning strategy

    -
    poll the peopleresultsunfavorablefavorablewill of the people +poll the peopleresultsunfavorablefavorablewill of the people diff --git a/e2etests/testdata/stable/constant_near_title/elk/board.exp.json b/e2etests/testdata/stable/constant_near_title/elk/board.exp.json index 1eb62f0b75..f923634c50 100644 --- a/e2etests/testdata/stable/constant_near_title/elk/board.exp.json +++ b/e2etests/testdata/stable/constant_near_title/elk/board.exp.json @@ -273,6 +273,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 160.16600036621094, @@ -319,6 +320,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 126.5, @@ -365,6 +367,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 259.3330078125, @@ -411,6 +414,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 95.5, @@ -449,6 +453,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 95.5, diff --git a/e2etests/testdata/stable/constant_near_title/elk/sketch.exp.svg b/e2etests/testdata/stable/constant_near_title/elk/sketch.exp.svg index a34d89db5e..96c7f1a3bc 100644 --- a/e2etests/testdata/stable/constant_near_title/elk/sketch.exp.svg +++ b/e2etests/testdata/stable/constant_near_title/elk/sketch.exp.svg @@ -1,20 +1,20 @@ -

    A winning strategy

    -
    poll the peopleresultsunfavorablefavorablewill of the people +poll the peopleresultsunfavorablefavorablewill of the people diff --git a/e2etests/testdata/stable/container_edges/dagre/board.exp.json b/e2etests/testdata/stable/container_edges/dagre/board.exp.json index 94aba95e20..b21d4a0bfa 100644 --- a/e2etests/testdata/stable/container_edges/dagre/board.exp.json +++ b/e2etests/testdata/stable/container_edges/dagre/board.exp.json @@ -356,6 +356,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 66.5, @@ -403,6 +404,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 66.5, @@ -462,6 +464,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 226.25, @@ -509,6 +512,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 61.25, @@ -556,6 +560,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 75.75, @@ -603,6 +608,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 122.75, diff --git a/e2etests/testdata/stable/container_edges/dagre/sketch.exp.svg b/e2etests/testdata/stable/container_edges/dagre/sketch.exp.svg index 5a65d043b6..d8ecc953b7 100644 --- a/e2etests/testdata/stable/container_edges/dagre/sketch.exp.svg +++ b/e2etests/testdata/stable/container_edges/dagre/sketch.exp.svg @@ -1,16 +1,16 @@ -agdfbhec + .d2-3483235013 .fill-N1{fill:#0A0F25;} + .d2-3483235013 .fill-N2{fill:#676C7E;} + .d2-3483235013 .fill-N3{fill:#9499AB;} + .d2-3483235013 .fill-N4{fill:#CFD2DD;} + .d2-3483235013 .fill-N5{fill:#DEE1EB;} + .d2-3483235013 .fill-N6{fill:#EEF1F8;} + .d2-3483235013 .fill-N7{fill:#FFFFFF;} + .d2-3483235013 .fill-B1{fill:#0D32B2;} + .d2-3483235013 .fill-B2{fill:#0D32B2;} + .d2-3483235013 .fill-B3{fill:#E3E9FD;} + .d2-3483235013 .fill-B4{fill:#E3E9FD;} + .d2-3483235013 .fill-B5{fill:#EDF0FD;} + .d2-3483235013 .fill-B6{fill:#F7F8FE;} + .d2-3483235013 .fill-AA2{fill:#4A6FF3;} + .d2-3483235013 .fill-AA4{fill:#EDF0FD;} + .d2-3483235013 .fill-AA5{fill:#F7F8FE;} + .d2-3483235013 .fill-AB4{fill:#EDF0FD;} + .d2-3483235013 .fill-AB5{fill:#F7F8FE;} + .d2-3483235013 .stroke-N1{stroke:#0A0F25;} + .d2-3483235013 .stroke-N2{stroke:#676C7E;} + .d2-3483235013 .stroke-N3{stroke:#9499AB;} + .d2-3483235013 .stroke-N4{stroke:#CFD2DD;} + .d2-3483235013 .stroke-N5{stroke:#DEE1EB;} + .d2-3483235013 .stroke-N6{stroke:#EEF1F8;} + .d2-3483235013 .stroke-N7{stroke:#FFFFFF;} + .d2-3483235013 .stroke-B1{stroke:#0D32B2;} + .d2-3483235013 .stroke-B2{stroke:#0D32B2;} + .d2-3483235013 .stroke-B3{stroke:#E3E9FD;} + .d2-3483235013 .stroke-B4{stroke:#E3E9FD;} + .d2-3483235013 .stroke-B5{stroke:#EDF0FD;} + .d2-3483235013 .stroke-B6{stroke:#F7F8FE;} + .d2-3483235013 .stroke-AA2{stroke:#4A6FF3;} + .d2-3483235013 .stroke-AA4{stroke:#EDF0FD;} + .d2-3483235013 .stroke-AA5{stroke:#F7F8FE;} + .d2-3483235013 .stroke-AB4{stroke:#EDF0FD;} + .d2-3483235013 .stroke-AB5{stroke:#F7F8FE;} + .d2-3483235013 .background-color-N1{background-color:#0A0F25;} + .d2-3483235013 .background-color-N2{background-color:#676C7E;} + .d2-3483235013 .background-color-N3{background-color:#9499AB;} + .d2-3483235013 .background-color-N4{background-color:#CFD2DD;} + .d2-3483235013 .background-color-N5{background-color:#DEE1EB;} + .d2-3483235013 .background-color-N6{background-color:#EEF1F8;} + .d2-3483235013 .background-color-N7{background-color:#FFFFFF;} + .d2-3483235013 .background-color-B1{background-color:#0D32B2;} + .d2-3483235013 .background-color-B2{background-color:#0D32B2;} + .d2-3483235013 .background-color-B3{background-color:#E3E9FD;} + .d2-3483235013 .background-color-B4{background-color:#E3E9FD;} + .d2-3483235013 .background-color-B5{background-color:#EDF0FD;} + .d2-3483235013 .background-color-B6{background-color:#F7F8FE;} + .d2-3483235013 .background-color-AA2{background-color:#4A6FF3;} + .d2-3483235013 .background-color-AA4{background-color:#EDF0FD;} + .d2-3483235013 .background-color-AA5{background-color:#F7F8FE;} + .d2-3483235013 .background-color-AB4{background-color:#EDF0FD;} + .d2-3483235013 .background-color-AB5{background-color:#F7F8FE;} + .d2-3483235013 .color-N1{color:#0A0F25;} + .d2-3483235013 .color-N2{color:#676C7E;} + .d2-3483235013 .color-N3{color:#9499AB;} + .d2-3483235013 .color-N4{color:#CFD2DD;} + .d2-3483235013 .color-N5{color:#DEE1EB;} + .d2-3483235013 .color-N6{color:#EEF1F8;} + .d2-3483235013 .color-N7{color:#FFFFFF;} + .d2-3483235013 .color-B1{color:#0D32B2;} + .d2-3483235013 .color-B2{color:#0D32B2;} + .d2-3483235013 .color-B3{color:#E3E9FD;} + .d2-3483235013 .color-B4{color:#E3E9FD;} + .d2-3483235013 .color-B5{color:#EDF0FD;} + .d2-3483235013 .color-B6{color:#F7F8FE;} + .d2-3483235013 .color-AA2{color:#4A6FF3;} + .d2-3483235013 .color-AA4{color:#EDF0FD;} + .d2-3483235013 .color-AA5{color:#F7F8FE;} + .d2-3483235013 .color-AB4{color:#EDF0FD;} + .d2-3483235013 .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}]]>agdfbhec diff --git a/e2etests/testdata/stable/container_edges/elk/board.exp.json b/e2etests/testdata/stable/container_edges/elk/board.exp.json index 3be49b9c6d..0ef62baf7f 100644 --- a/e2etests/testdata/stable/container_edges/elk/board.exp.json +++ b/e2etests/testdata/stable/container_edges/elk/board.exp.json @@ -356,6 +356,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 120.75, @@ -394,6 +395,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 120.75, @@ -440,6 +442,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 62, @@ -494,6 +497,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 193.75, @@ -540,6 +544,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 319, @@ -586,6 +591,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 148.5, diff --git a/e2etests/testdata/stable/container_edges/elk/sketch.exp.svg b/e2etests/testdata/stable/container_edges/elk/sketch.exp.svg index 3f4403e878..b3e67f22f5 100644 --- a/e2etests/testdata/stable/container_edges/elk/sketch.exp.svg +++ b/e2etests/testdata/stable/container_edges/elk/sketch.exp.svg @@ -1,16 +1,16 @@ -agdfbhec + .d2-2761197570 .fill-N1{fill:#0A0F25;} + .d2-2761197570 .fill-N2{fill:#676C7E;} + .d2-2761197570 .fill-N3{fill:#9499AB;} + .d2-2761197570 .fill-N4{fill:#CFD2DD;} + .d2-2761197570 .fill-N5{fill:#DEE1EB;} + .d2-2761197570 .fill-N6{fill:#EEF1F8;} + .d2-2761197570 .fill-N7{fill:#FFFFFF;} + .d2-2761197570 .fill-B1{fill:#0D32B2;} + .d2-2761197570 .fill-B2{fill:#0D32B2;} + .d2-2761197570 .fill-B3{fill:#E3E9FD;} + .d2-2761197570 .fill-B4{fill:#E3E9FD;} + .d2-2761197570 .fill-B5{fill:#EDF0FD;} + .d2-2761197570 .fill-B6{fill:#F7F8FE;} + .d2-2761197570 .fill-AA2{fill:#4A6FF3;} + .d2-2761197570 .fill-AA4{fill:#EDF0FD;} + .d2-2761197570 .fill-AA5{fill:#F7F8FE;} + .d2-2761197570 .fill-AB4{fill:#EDF0FD;} + .d2-2761197570 .fill-AB5{fill:#F7F8FE;} + .d2-2761197570 .stroke-N1{stroke:#0A0F25;} + .d2-2761197570 .stroke-N2{stroke:#676C7E;} + .d2-2761197570 .stroke-N3{stroke:#9499AB;} + .d2-2761197570 .stroke-N4{stroke:#CFD2DD;} + .d2-2761197570 .stroke-N5{stroke:#DEE1EB;} + .d2-2761197570 .stroke-N6{stroke:#EEF1F8;} + .d2-2761197570 .stroke-N7{stroke:#FFFFFF;} + .d2-2761197570 .stroke-B1{stroke:#0D32B2;} + .d2-2761197570 .stroke-B2{stroke:#0D32B2;} + .d2-2761197570 .stroke-B3{stroke:#E3E9FD;} + .d2-2761197570 .stroke-B4{stroke:#E3E9FD;} + .d2-2761197570 .stroke-B5{stroke:#EDF0FD;} + .d2-2761197570 .stroke-B6{stroke:#F7F8FE;} + .d2-2761197570 .stroke-AA2{stroke:#4A6FF3;} + .d2-2761197570 .stroke-AA4{stroke:#EDF0FD;} + .d2-2761197570 .stroke-AA5{stroke:#F7F8FE;} + .d2-2761197570 .stroke-AB4{stroke:#EDF0FD;} + .d2-2761197570 .stroke-AB5{stroke:#F7F8FE;} + .d2-2761197570 .background-color-N1{background-color:#0A0F25;} + .d2-2761197570 .background-color-N2{background-color:#676C7E;} + .d2-2761197570 .background-color-N3{background-color:#9499AB;} + .d2-2761197570 .background-color-N4{background-color:#CFD2DD;} + .d2-2761197570 .background-color-N5{background-color:#DEE1EB;} + .d2-2761197570 .background-color-N6{background-color:#EEF1F8;} + .d2-2761197570 .background-color-N7{background-color:#FFFFFF;} + .d2-2761197570 .background-color-B1{background-color:#0D32B2;} + .d2-2761197570 .background-color-B2{background-color:#0D32B2;} + .d2-2761197570 .background-color-B3{background-color:#E3E9FD;} + .d2-2761197570 .background-color-B4{background-color:#E3E9FD;} + .d2-2761197570 .background-color-B5{background-color:#EDF0FD;} + .d2-2761197570 .background-color-B6{background-color:#F7F8FE;} + .d2-2761197570 .background-color-AA2{background-color:#4A6FF3;} + .d2-2761197570 .background-color-AA4{background-color:#EDF0FD;} + .d2-2761197570 .background-color-AA5{background-color:#F7F8FE;} + .d2-2761197570 .background-color-AB4{background-color:#EDF0FD;} + .d2-2761197570 .background-color-AB5{background-color:#F7F8FE;} + .d2-2761197570 .color-N1{color:#0A0F25;} + .d2-2761197570 .color-N2{color:#676C7E;} + .d2-2761197570 .color-N3{color:#9499AB;} + .d2-2761197570 .color-N4{color:#CFD2DD;} + .d2-2761197570 .color-N5{color:#DEE1EB;} + .d2-2761197570 .color-N6{color:#EEF1F8;} + .d2-2761197570 .color-N7{color:#FFFFFF;} + .d2-2761197570 .color-B1{color:#0D32B2;} + .d2-2761197570 .color-B2{color:#0D32B2;} + .d2-2761197570 .color-B3{color:#E3E9FD;} + .d2-2761197570 .color-B4{color:#E3E9FD;} + .d2-2761197570 .color-B5{color:#EDF0FD;} + .d2-2761197570 .color-B6{color:#F7F8FE;} + .d2-2761197570 .color-AA2{color:#4A6FF3;} + .d2-2761197570 .color-AA4{color:#EDF0FD;} + .d2-2761197570 .color-AA5{color:#F7F8FE;} + .d2-2761197570 .color-AB4{color:#EDF0FD;} + .d2-2761197570 .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}]]>agdfbhec diff --git a/e2etests/testdata/stable/crow_foot_arrowhead/dagre/board.exp.json b/e2etests/testdata/stable/crow_foot_arrowhead/dagre/board.exp.json index fe4dfc7099..ab1afa6605 100644 --- a/e2etests/testdata/stable/crow_foot_arrowhead/dagre/board.exp.json +++ b/e2etests/testdata/stable/crow_foot_arrowhead/dagre/board.exp.json @@ -1135,6 +1135,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 31, @@ -1182,6 +1183,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 153, @@ -1229,6 +1231,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 275, @@ -1276,6 +1279,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 397.5, @@ -1323,6 +1327,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 520.5, @@ -1370,6 +1375,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 643.5, @@ -1417,6 +1423,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 765, @@ -1464,6 +1471,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 887, @@ -1511,6 +1519,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 1009, @@ -1558,6 +1567,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 1131, @@ -1605,6 +1615,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 1253, @@ -1652,6 +1663,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 1375, @@ -1699,6 +1711,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 1493, @@ -1746,6 +1759,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 1493, diff --git a/e2etests/testdata/stable/crow_foot_arrowhead/dagre/sketch.exp.svg b/e2etests/testdata/stable/crow_foot_arrowhead/dagre/sketch.exp.svg index 56237d95c7..e917d15472 100644 --- a/e2etests/testdata/stable/crow_foot_arrowhead/dagre/sketch.exp.svg +++ b/e2etests/testdata/stable/crow_foot_arrowhead/dagre/sketch.exp.svg @@ -1,9 +1,9 @@ -a1b1a2b2a3b3c1d1c2d2c3d3e1f1e2f2e3f3g1h1g2h2g3h3cdf + .d2-2257826249 .fill-N1{fill:#0A0F25;} + .d2-2257826249 .fill-N2{fill:#676C7E;} + .d2-2257826249 .fill-N3{fill:#9499AB;} + .d2-2257826249 .fill-N4{fill:#CFD2DD;} + .d2-2257826249 .fill-N5{fill:#DEE1EB;} + .d2-2257826249 .fill-N6{fill:#EEF1F8;} + .d2-2257826249 .fill-N7{fill:#FFFFFF;} + .d2-2257826249 .fill-B1{fill:#0D32B2;} + .d2-2257826249 .fill-B2{fill:#0D32B2;} + .d2-2257826249 .fill-B3{fill:#E3E9FD;} + .d2-2257826249 .fill-B4{fill:#E3E9FD;} + .d2-2257826249 .fill-B5{fill:#EDF0FD;} + .d2-2257826249 .fill-B6{fill:#F7F8FE;} + .d2-2257826249 .fill-AA2{fill:#4A6FF3;} + .d2-2257826249 .fill-AA4{fill:#EDF0FD;} + .d2-2257826249 .fill-AA5{fill:#F7F8FE;} + .d2-2257826249 .fill-AB4{fill:#EDF0FD;} + .d2-2257826249 .fill-AB5{fill:#F7F8FE;} + .d2-2257826249 .stroke-N1{stroke:#0A0F25;} + .d2-2257826249 .stroke-N2{stroke:#676C7E;} + .d2-2257826249 .stroke-N3{stroke:#9499AB;} + .d2-2257826249 .stroke-N4{stroke:#CFD2DD;} + .d2-2257826249 .stroke-N5{stroke:#DEE1EB;} + .d2-2257826249 .stroke-N6{stroke:#EEF1F8;} + .d2-2257826249 .stroke-N7{stroke:#FFFFFF;} + .d2-2257826249 .stroke-B1{stroke:#0D32B2;} + .d2-2257826249 .stroke-B2{stroke:#0D32B2;} + .d2-2257826249 .stroke-B3{stroke:#E3E9FD;} + .d2-2257826249 .stroke-B4{stroke:#E3E9FD;} + .d2-2257826249 .stroke-B5{stroke:#EDF0FD;} + .d2-2257826249 .stroke-B6{stroke:#F7F8FE;} + .d2-2257826249 .stroke-AA2{stroke:#4A6FF3;} + .d2-2257826249 .stroke-AA4{stroke:#EDF0FD;} + .d2-2257826249 .stroke-AA5{stroke:#F7F8FE;} + .d2-2257826249 .stroke-AB4{stroke:#EDF0FD;} + .d2-2257826249 .stroke-AB5{stroke:#F7F8FE;} + .d2-2257826249 .background-color-N1{background-color:#0A0F25;} + .d2-2257826249 .background-color-N2{background-color:#676C7E;} + .d2-2257826249 .background-color-N3{background-color:#9499AB;} + .d2-2257826249 .background-color-N4{background-color:#CFD2DD;} + .d2-2257826249 .background-color-N5{background-color:#DEE1EB;} + .d2-2257826249 .background-color-N6{background-color:#EEF1F8;} + .d2-2257826249 .background-color-N7{background-color:#FFFFFF;} + .d2-2257826249 .background-color-B1{background-color:#0D32B2;} + .d2-2257826249 .background-color-B2{background-color:#0D32B2;} + .d2-2257826249 .background-color-B3{background-color:#E3E9FD;} + .d2-2257826249 .background-color-B4{background-color:#E3E9FD;} + .d2-2257826249 .background-color-B5{background-color:#EDF0FD;} + .d2-2257826249 .background-color-B6{background-color:#F7F8FE;} + .d2-2257826249 .background-color-AA2{background-color:#4A6FF3;} + .d2-2257826249 .background-color-AA4{background-color:#EDF0FD;} + .d2-2257826249 .background-color-AA5{background-color:#F7F8FE;} + .d2-2257826249 .background-color-AB4{background-color:#EDF0FD;} + .d2-2257826249 .background-color-AB5{background-color:#F7F8FE;} + .d2-2257826249 .color-N1{color:#0A0F25;} + .d2-2257826249 .color-N2{color:#676C7E;} + .d2-2257826249 .color-N3{color:#9499AB;} + .d2-2257826249 .color-N4{color:#CFD2DD;} + .d2-2257826249 .color-N5{color:#DEE1EB;} + .d2-2257826249 .color-N6{color:#EEF1F8;} + .d2-2257826249 .color-N7{color:#FFFFFF;} + .d2-2257826249 .color-B1{color:#0D32B2;} + .d2-2257826249 .color-B2{color:#0D32B2;} + .d2-2257826249 .color-B3{color:#E3E9FD;} + .d2-2257826249 .color-B4{color:#E3E9FD;} + .d2-2257826249 .color-B5{color:#EDF0FD;} + .d2-2257826249 .color-B6{color:#F7F8FE;} + .d2-2257826249 .color-AA2{color:#4A6FF3;} + .d2-2257826249 .color-AA4{color:#EDF0FD;} + .d2-2257826249 .color-AA5{color:#F7F8FE;} + .d2-2257826249 .color-AB4{color:#EDF0FD;} + .d2-2257826249 .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}]]>a1b1a2b2a3b3c1d1c2d2c3d3e1f1e2f2e3f3g1h1g2h2g3h3cdf diff --git a/e2etests/testdata/stable/crow_foot_arrowhead/elk/board.exp.json b/e2etests/testdata/stable/crow_foot_arrowhead/elk/board.exp.json index cd8a64f35f..dec50f8705 100644 --- a/e2etests/testdata/stable/crow_foot_arrowhead/elk/board.exp.json +++ b/e2etests/testdata/stable/crow_foot_arrowhead/elk/board.exp.json @@ -1135,6 +1135,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 43, @@ -1173,6 +1174,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 125, @@ -1211,6 +1213,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 207, @@ -1249,6 +1252,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 289.5, @@ -1287,6 +1291,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 372.5, @@ -1325,6 +1330,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 455.5, @@ -1363,6 +1369,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 537, @@ -1401,6 +1408,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 619, @@ -1439,6 +1447,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 701, @@ -1477,6 +1486,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 783, @@ -1515,6 +1525,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 865, @@ -1553,6 +1564,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 947, @@ -1591,6 +1603,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 1025, @@ -1629,6 +1642,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 1025, diff --git a/e2etests/testdata/stable/crow_foot_arrowhead/elk/sketch.exp.svg b/e2etests/testdata/stable/crow_foot_arrowhead/elk/sketch.exp.svg index 6f5f38de56..6e7ca3089e 100644 --- a/e2etests/testdata/stable/crow_foot_arrowhead/elk/sketch.exp.svg +++ b/e2etests/testdata/stable/crow_foot_arrowhead/elk/sketch.exp.svg @@ -1,9 +1,9 @@ -a1b1a2b2a3b3c1d1c2d2c3d3e1f1e2f2e3f3g1h1g2h2g3h3cdf + .d2-2487059389 .fill-N1{fill:#0A0F25;} + .d2-2487059389 .fill-N2{fill:#676C7E;} + .d2-2487059389 .fill-N3{fill:#9499AB;} + .d2-2487059389 .fill-N4{fill:#CFD2DD;} + .d2-2487059389 .fill-N5{fill:#DEE1EB;} + .d2-2487059389 .fill-N6{fill:#EEF1F8;} + .d2-2487059389 .fill-N7{fill:#FFFFFF;} + .d2-2487059389 .fill-B1{fill:#0D32B2;} + .d2-2487059389 .fill-B2{fill:#0D32B2;} + .d2-2487059389 .fill-B3{fill:#E3E9FD;} + .d2-2487059389 .fill-B4{fill:#E3E9FD;} + .d2-2487059389 .fill-B5{fill:#EDF0FD;} + .d2-2487059389 .fill-B6{fill:#F7F8FE;} + .d2-2487059389 .fill-AA2{fill:#4A6FF3;} + .d2-2487059389 .fill-AA4{fill:#EDF0FD;} + .d2-2487059389 .fill-AA5{fill:#F7F8FE;} + .d2-2487059389 .fill-AB4{fill:#EDF0FD;} + .d2-2487059389 .fill-AB5{fill:#F7F8FE;} + .d2-2487059389 .stroke-N1{stroke:#0A0F25;} + .d2-2487059389 .stroke-N2{stroke:#676C7E;} + .d2-2487059389 .stroke-N3{stroke:#9499AB;} + .d2-2487059389 .stroke-N4{stroke:#CFD2DD;} + .d2-2487059389 .stroke-N5{stroke:#DEE1EB;} + .d2-2487059389 .stroke-N6{stroke:#EEF1F8;} + .d2-2487059389 .stroke-N7{stroke:#FFFFFF;} + .d2-2487059389 .stroke-B1{stroke:#0D32B2;} + .d2-2487059389 .stroke-B2{stroke:#0D32B2;} + .d2-2487059389 .stroke-B3{stroke:#E3E9FD;} + .d2-2487059389 .stroke-B4{stroke:#E3E9FD;} + .d2-2487059389 .stroke-B5{stroke:#EDF0FD;} + .d2-2487059389 .stroke-B6{stroke:#F7F8FE;} + .d2-2487059389 .stroke-AA2{stroke:#4A6FF3;} + .d2-2487059389 .stroke-AA4{stroke:#EDF0FD;} + .d2-2487059389 .stroke-AA5{stroke:#F7F8FE;} + .d2-2487059389 .stroke-AB4{stroke:#EDF0FD;} + .d2-2487059389 .stroke-AB5{stroke:#F7F8FE;} + .d2-2487059389 .background-color-N1{background-color:#0A0F25;} + .d2-2487059389 .background-color-N2{background-color:#676C7E;} + .d2-2487059389 .background-color-N3{background-color:#9499AB;} + .d2-2487059389 .background-color-N4{background-color:#CFD2DD;} + .d2-2487059389 .background-color-N5{background-color:#DEE1EB;} + .d2-2487059389 .background-color-N6{background-color:#EEF1F8;} + .d2-2487059389 .background-color-N7{background-color:#FFFFFF;} + .d2-2487059389 .background-color-B1{background-color:#0D32B2;} + .d2-2487059389 .background-color-B2{background-color:#0D32B2;} + .d2-2487059389 .background-color-B3{background-color:#E3E9FD;} + .d2-2487059389 .background-color-B4{background-color:#E3E9FD;} + .d2-2487059389 .background-color-B5{background-color:#EDF0FD;} + .d2-2487059389 .background-color-B6{background-color:#F7F8FE;} + .d2-2487059389 .background-color-AA2{background-color:#4A6FF3;} + .d2-2487059389 .background-color-AA4{background-color:#EDF0FD;} + .d2-2487059389 .background-color-AA5{background-color:#F7F8FE;} + .d2-2487059389 .background-color-AB4{background-color:#EDF0FD;} + .d2-2487059389 .background-color-AB5{background-color:#F7F8FE;} + .d2-2487059389 .color-N1{color:#0A0F25;} + .d2-2487059389 .color-N2{color:#676C7E;} + .d2-2487059389 .color-N3{color:#9499AB;} + .d2-2487059389 .color-N4{color:#CFD2DD;} + .d2-2487059389 .color-N5{color:#DEE1EB;} + .d2-2487059389 .color-N6{color:#EEF1F8;} + .d2-2487059389 .color-N7{color:#FFFFFF;} + .d2-2487059389 .color-B1{color:#0D32B2;} + .d2-2487059389 .color-B2{color:#0D32B2;} + .d2-2487059389 .color-B3{color:#E3E9FD;} + .d2-2487059389 .color-B4{color:#E3E9FD;} + .d2-2487059389 .color-B5{color:#EDF0FD;} + .d2-2487059389 .color-B6{color:#F7F8FE;} + .d2-2487059389 .color-AA2{color:#4A6FF3;} + .d2-2487059389 .color-AA4{color:#EDF0FD;} + .d2-2487059389 .color-AA5{color:#F7F8FE;} + .d2-2487059389 .color-AB4{color:#EDF0FD;} + .d2-2487059389 .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}]]>a1b1a2b2a3b3c1d1c2d2c3d3e1f1e2f2e3f3g1h1g2h2g3h3cdf diff --git a/e2etests/testdata/stable/cycle-order/dagre/board.exp.json b/e2etests/testdata/stable/cycle-order/dagre/board.exp.json index aae8b0aa51..dc5d579014 100644 --- a/e2etests/testdata/stable/cycle-order/dagre/board.exp.json +++ b/e2etests/testdata/stable/cycle-order/dagre/board.exp.json @@ -928,6 +928,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 150, @@ -975,6 +976,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 420, @@ -1022,6 +1024,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 690, @@ -1069,6 +1072,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 960, @@ -1116,6 +1120,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 1230, @@ -1163,6 +1168,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 1500, @@ -1210,6 +1216,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 1770, @@ -1257,6 +1264,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 2040, @@ -1304,6 +1312,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 2180, diff --git a/e2etests/testdata/stable/cycle-order/dagre/sketch.exp.svg b/e2etests/testdata/stable/cycle-order/dagre/sketch.exp.svg index 29bb4c557d..7f844ff1f2 100644 --- a/e2etests/testdata/stable/cycle-order/dagre/sketch.exp.svg +++ b/e2etests/testdata/stable/cycle-order/dagre/sketch.exp.svg @@ -1,16 +1,16 @@ -PlanCodeBuildTestCheckReleaseDeployOperateMonitorClickUpGitDockerPlaywrightTruffleHogGithub ActionAWS CopilotAWS ECSGrafana + .d2-1686362016 .fill-N1{fill:#0A0F25;} + .d2-1686362016 .fill-N2{fill:#676C7E;} + .d2-1686362016 .fill-N3{fill:#9499AB;} + .d2-1686362016 .fill-N4{fill:#CFD2DD;} + .d2-1686362016 .fill-N5{fill:#DEE1EB;} + .d2-1686362016 .fill-N6{fill:#EEF1F8;} + .d2-1686362016 .fill-N7{fill:#FFFFFF;} + .d2-1686362016 .fill-B1{fill:#0D32B2;} + .d2-1686362016 .fill-B2{fill:#0D32B2;} + .d2-1686362016 .fill-B3{fill:#E3E9FD;} + .d2-1686362016 .fill-B4{fill:#E3E9FD;} + .d2-1686362016 .fill-B5{fill:#EDF0FD;} + .d2-1686362016 .fill-B6{fill:#F7F8FE;} + .d2-1686362016 .fill-AA2{fill:#4A6FF3;} + .d2-1686362016 .fill-AA4{fill:#EDF0FD;} + .d2-1686362016 .fill-AA5{fill:#F7F8FE;} + .d2-1686362016 .fill-AB4{fill:#EDF0FD;} + .d2-1686362016 .fill-AB5{fill:#F7F8FE;} + .d2-1686362016 .stroke-N1{stroke:#0A0F25;} + .d2-1686362016 .stroke-N2{stroke:#676C7E;} + .d2-1686362016 .stroke-N3{stroke:#9499AB;} + .d2-1686362016 .stroke-N4{stroke:#CFD2DD;} + .d2-1686362016 .stroke-N5{stroke:#DEE1EB;} + .d2-1686362016 .stroke-N6{stroke:#EEF1F8;} + .d2-1686362016 .stroke-N7{stroke:#FFFFFF;} + .d2-1686362016 .stroke-B1{stroke:#0D32B2;} + .d2-1686362016 .stroke-B2{stroke:#0D32B2;} + .d2-1686362016 .stroke-B3{stroke:#E3E9FD;} + .d2-1686362016 .stroke-B4{stroke:#E3E9FD;} + .d2-1686362016 .stroke-B5{stroke:#EDF0FD;} + .d2-1686362016 .stroke-B6{stroke:#F7F8FE;} + .d2-1686362016 .stroke-AA2{stroke:#4A6FF3;} + .d2-1686362016 .stroke-AA4{stroke:#EDF0FD;} + .d2-1686362016 .stroke-AA5{stroke:#F7F8FE;} + .d2-1686362016 .stroke-AB4{stroke:#EDF0FD;} + .d2-1686362016 .stroke-AB5{stroke:#F7F8FE;} + .d2-1686362016 .background-color-N1{background-color:#0A0F25;} + .d2-1686362016 .background-color-N2{background-color:#676C7E;} + .d2-1686362016 .background-color-N3{background-color:#9499AB;} + .d2-1686362016 .background-color-N4{background-color:#CFD2DD;} + .d2-1686362016 .background-color-N5{background-color:#DEE1EB;} + .d2-1686362016 .background-color-N6{background-color:#EEF1F8;} + .d2-1686362016 .background-color-N7{background-color:#FFFFFF;} + .d2-1686362016 .background-color-B1{background-color:#0D32B2;} + .d2-1686362016 .background-color-B2{background-color:#0D32B2;} + .d2-1686362016 .background-color-B3{background-color:#E3E9FD;} + .d2-1686362016 .background-color-B4{background-color:#E3E9FD;} + .d2-1686362016 .background-color-B5{background-color:#EDF0FD;} + .d2-1686362016 .background-color-B6{background-color:#F7F8FE;} + .d2-1686362016 .background-color-AA2{background-color:#4A6FF3;} + .d2-1686362016 .background-color-AA4{background-color:#EDF0FD;} + .d2-1686362016 .background-color-AA5{background-color:#F7F8FE;} + .d2-1686362016 .background-color-AB4{background-color:#EDF0FD;} + .d2-1686362016 .background-color-AB5{background-color:#F7F8FE;} + .d2-1686362016 .color-N1{color:#0A0F25;} + .d2-1686362016 .color-N2{color:#676C7E;} + .d2-1686362016 .color-N3{color:#9499AB;} + .d2-1686362016 .color-N4{color:#CFD2DD;} + .d2-1686362016 .color-N5{color:#DEE1EB;} + .d2-1686362016 .color-N6{color:#EEF1F8;} + .d2-1686362016 .color-N7{color:#FFFFFF;} + .d2-1686362016 .color-B1{color:#0D32B2;} + .d2-1686362016 .color-B2{color:#0D32B2;} + .d2-1686362016 .color-B3{color:#E3E9FD;} + .d2-1686362016 .color-B4{color:#E3E9FD;} + .d2-1686362016 .color-B5{color:#EDF0FD;} + .d2-1686362016 .color-B6{color:#F7F8FE;} + .d2-1686362016 .color-AA2{color:#4A6FF3;} + .d2-1686362016 .color-AA4{color:#EDF0FD;} + .d2-1686362016 .color-AA5{color:#F7F8FE;} + .d2-1686362016 .color-AB4{color:#EDF0FD;} + .d2-1686362016 .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}]]>PlanCodeBuildTestCheckReleaseDeployOperateMonitorClickUpGitDockerPlaywrightTruffleHogGithub ActionAWS CopilotAWS ECSGrafana diff --git a/e2etests/testdata/stable/cycle-order/elk/board.exp.json b/e2etests/testdata/stable/cycle-order/elk/board.exp.json index 013018d814..c8991c1595 100644 --- a/e2etests/testdata/stable/cycle-order/elk/board.exp.json +++ b/e2etests/testdata/stable/cycle-order/elk/board.exp.json @@ -928,6 +928,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 182, @@ -966,6 +967,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 432, @@ -1004,6 +1006,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 672, @@ -1042,6 +1045,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 919, @@ -1080,6 +1084,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 1166, @@ -1118,6 +1123,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 1433, @@ -1156,6 +1162,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 1690, @@ -1194,6 +1201,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 1930, @@ -1232,6 +1240,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 2010, diff --git a/e2etests/testdata/stable/cycle-order/elk/sketch.exp.svg b/e2etests/testdata/stable/cycle-order/elk/sketch.exp.svg index 9e4edd2e8d..811bc1f5e4 100644 --- a/e2etests/testdata/stable/cycle-order/elk/sketch.exp.svg +++ b/e2etests/testdata/stable/cycle-order/elk/sketch.exp.svg @@ -1,16 +1,16 @@ -PlanCodeBuildTestCheckReleaseDeployOperateMonitorClickUpGitDockerPlaywrightTruffleHogGithub ActionAWS CopilotAWS ECSGrafana + .d2-1906685131 .fill-N1{fill:#0A0F25;} + .d2-1906685131 .fill-N2{fill:#676C7E;} + .d2-1906685131 .fill-N3{fill:#9499AB;} + .d2-1906685131 .fill-N4{fill:#CFD2DD;} + .d2-1906685131 .fill-N5{fill:#DEE1EB;} + .d2-1906685131 .fill-N6{fill:#EEF1F8;} + .d2-1906685131 .fill-N7{fill:#FFFFFF;} + .d2-1906685131 .fill-B1{fill:#0D32B2;} + .d2-1906685131 .fill-B2{fill:#0D32B2;} + .d2-1906685131 .fill-B3{fill:#E3E9FD;} + .d2-1906685131 .fill-B4{fill:#E3E9FD;} + .d2-1906685131 .fill-B5{fill:#EDF0FD;} + .d2-1906685131 .fill-B6{fill:#F7F8FE;} + .d2-1906685131 .fill-AA2{fill:#4A6FF3;} + .d2-1906685131 .fill-AA4{fill:#EDF0FD;} + .d2-1906685131 .fill-AA5{fill:#F7F8FE;} + .d2-1906685131 .fill-AB4{fill:#EDF0FD;} + .d2-1906685131 .fill-AB5{fill:#F7F8FE;} + .d2-1906685131 .stroke-N1{stroke:#0A0F25;} + .d2-1906685131 .stroke-N2{stroke:#676C7E;} + .d2-1906685131 .stroke-N3{stroke:#9499AB;} + .d2-1906685131 .stroke-N4{stroke:#CFD2DD;} + .d2-1906685131 .stroke-N5{stroke:#DEE1EB;} + .d2-1906685131 .stroke-N6{stroke:#EEF1F8;} + .d2-1906685131 .stroke-N7{stroke:#FFFFFF;} + .d2-1906685131 .stroke-B1{stroke:#0D32B2;} + .d2-1906685131 .stroke-B2{stroke:#0D32B2;} + .d2-1906685131 .stroke-B3{stroke:#E3E9FD;} + .d2-1906685131 .stroke-B4{stroke:#E3E9FD;} + .d2-1906685131 .stroke-B5{stroke:#EDF0FD;} + .d2-1906685131 .stroke-B6{stroke:#F7F8FE;} + .d2-1906685131 .stroke-AA2{stroke:#4A6FF3;} + .d2-1906685131 .stroke-AA4{stroke:#EDF0FD;} + .d2-1906685131 .stroke-AA5{stroke:#F7F8FE;} + .d2-1906685131 .stroke-AB4{stroke:#EDF0FD;} + .d2-1906685131 .stroke-AB5{stroke:#F7F8FE;} + .d2-1906685131 .background-color-N1{background-color:#0A0F25;} + .d2-1906685131 .background-color-N2{background-color:#676C7E;} + .d2-1906685131 .background-color-N3{background-color:#9499AB;} + .d2-1906685131 .background-color-N4{background-color:#CFD2DD;} + .d2-1906685131 .background-color-N5{background-color:#DEE1EB;} + .d2-1906685131 .background-color-N6{background-color:#EEF1F8;} + .d2-1906685131 .background-color-N7{background-color:#FFFFFF;} + .d2-1906685131 .background-color-B1{background-color:#0D32B2;} + .d2-1906685131 .background-color-B2{background-color:#0D32B2;} + .d2-1906685131 .background-color-B3{background-color:#E3E9FD;} + .d2-1906685131 .background-color-B4{background-color:#E3E9FD;} + .d2-1906685131 .background-color-B5{background-color:#EDF0FD;} + .d2-1906685131 .background-color-B6{background-color:#F7F8FE;} + .d2-1906685131 .background-color-AA2{background-color:#4A6FF3;} + .d2-1906685131 .background-color-AA4{background-color:#EDF0FD;} + .d2-1906685131 .background-color-AA5{background-color:#F7F8FE;} + .d2-1906685131 .background-color-AB4{background-color:#EDF0FD;} + .d2-1906685131 .background-color-AB5{background-color:#F7F8FE;} + .d2-1906685131 .color-N1{color:#0A0F25;} + .d2-1906685131 .color-N2{color:#676C7E;} + .d2-1906685131 .color-N3{color:#9499AB;} + .d2-1906685131 .color-N4{color:#CFD2DD;} + .d2-1906685131 .color-N5{color:#DEE1EB;} + .d2-1906685131 .color-N6{color:#EEF1F8;} + .d2-1906685131 .color-N7{color:#FFFFFF;} + .d2-1906685131 .color-B1{color:#0D32B2;} + .d2-1906685131 .color-B2{color:#0D32B2;} + .d2-1906685131 .color-B3{color:#E3E9FD;} + .d2-1906685131 .color-B4{color:#E3E9FD;} + .d2-1906685131 .color-B5{color:#EDF0FD;} + .d2-1906685131 .color-B6{color:#F7F8FE;} + .d2-1906685131 .color-AA2{color:#4A6FF3;} + .d2-1906685131 .color-AA4{color:#EDF0FD;} + .d2-1906685131 .color-AA5{color:#F7F8FE;} + .d2-1906685131 .color-AB4{color:#EDF0FD;} + .d2-1906685131 .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}]]>PlanCodeBuildTestCheckReleaseDeployOperateMonitorClickUpGitDockerPlaywrightTruffleHogGithub ActionAWS CopilotAWS ECSGrafana diff --git a/e2etests/testdata/stable/dagre-container/dagre/board.exp.json b/e2etests/testdata/stable/dagre-container/dagre/board.exp.json index e749346545..a53d0fc8e1 100644 --- a/e2etests/testdata/stable/dagre-container/dagre/board.exp.json +++ b/e2etests/testdata/stable/dagre-container/dagre/board.exp.json @@ -356,6 +356,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 179.5, diff --git a/e2etests/testdata/stable/dagre-container/dagre/sketch.exp.svg b/e2etests/testdata/stable/dagre-container/dagre/sketch.exp.svg index f70942e042..e54c973033 100644 --- a/e2etests/testdata/stable/dagre-container/dagre/sketch.exp.svg +++ b/e2etests/testdata/stable/dagre-container/dagre/sketch.exp.svg @@ -1,16 +1,16 @@ -ababcabc + .d2-1140613891 .fill-N1{fill:#0A0F25;} + .d2-1140613891 .fill-N2{fill:#676C7E;} + .d2-1140613891 .fill-N3{fill:#9499AB;} + .d2-1140613891 .fill-N4{fill:#CFD2DD;} + .d2-1140613891 .fill-N5{fill:#DEE1EB;} + .d2-1140613891 .fill-N6{fill:#EEF1F8;} + .d2-1140613891 .fill-N7{fill:#FFFFFF;} + .d2-1140613891 .fill-B1{fill:#0D32B2;} + .d2-1140613891 .fill-B2{fill:#0D32B2;} + .d2-1140613891 .fill-B3{fill:#E3E9FD;} + .d2-1140613891 .fill-B4{fill:#E3E9FD;} + .d2-1140613891 .fill-B5{fill:#EDF0FD;} + .d2-1140613891 .fill-B6{fill:#F7F8FE;} + .d2-1140613891 .fill-AA2{fill:#4A6FF3;} + .d2-1140613891 .fill-AA4{fill:#EDF0FD;} + .d2-1140613891 .fill-AA5{fill:#F7F8FE;} + .d2-1140613891 .fill-AB4{fill:#EDF0FD;} + .d2-1140613891 .fill-AB5{fill:#F7F8FE;} + .d2-1140613891 .stroke-N1{stroke:#0A0F25;} + .d2-1140613891 .stroke-N2{stroke:#676C7E;} + .d2-1140613891 .stroke-N3{stroke:#9499AB;} + .d2-1140613891 .stroke-N4{stroke:#CFD2DD;} + .d2-1140613891 .stroke-N5{stroke:#DEE1EB;} + .d2-1140613891 .stroke-N6{stroke:#EEF1F8;} + .d2-1140613891 .stroke-N7{stroke:#FFFFFF;} + .d2-1140613891 .stroke-B1{stroke:#0D32B2;} + .d2-1140613891 .stroke-B2{stroke:#0D32B2;} + .d2-1140613891 .stroke-B3{stroke:#E3E9FD;} + .d2-1140613891 .stroke-B4{stroke:#E3E9FD;} + .d2-1140613891 .stroke-B5{stroke:#EDF0FD;} + .d2-1140613891 .stroke-B6{stroke:#F7F8FE;} + .d2-1140613891 .stroke-AA2{stroke:#4A6FF3;} + .d2-1140613891 .stroke-AA4{stroke:#EDF0FD;} + .d2-1140613891 .stroke-AA5{stroke:#F7F8FE;} + .d2-1140613891 .stroke-AB4{stroke:#EDF0FD;} + .d2-1140613891 .stroke-AB5{stroke:#F7F8FE;} + .d2-1140613891 .background-color-N1{background-color:#0A0F25;} + .d2-1140613891 .background-color-N2{background-color:#676C7E;} + .d2-1140613891 .background-color-N3{background-color:#9499AB;} + .d2-1140613891 .background-color-N4{background-color:#CFD2DD;} + .d2-1140613891 .background-color-N5{background-color:#DEE1EB;} + .d2-1140613891 .background-color-N6{background-color:#EEF1F8;} + .d2-1140613891 .background-color-N7{background-color:#FFFFFF;} + .d2-1140613891 .background-color-B1{background-color:#0D32B2;} + .d2-1140613891 .background-color-B2{background-color:#0D32B2;} + .d2-1140613891 .background-color-B3{background-color:#E3E9FD;} + .d2-1140613891 .background-color-B4{background-color:#E3E9FD;} + .d2-1140613891 .background-color-B5{background-color:#EDF0FD;} + .d2-1140613891 .background-color-B6{background-color:#F7F8FE;} + .d2-1140613891 .background-color-AA2{background-color:#4A6FF3;} + .d2-1140613891 .background-color-AA4{background-color:#EDF0FD;} + .d2-1140613891 .background-color-AA5{background-color:#F7F8FE;} + .d2-1140613891 .background-color-AB4{background-color:#EDF0FD;} + .d2-1140613891 .background-color-AB5{background-color:#F7F8FE;} + .d2-1140613891 .color-N1{color:#0A0F25;} + .d2-1140613891 .color-N2{color:#676C7E;} + .d2-1140613891 .color-N3{color:#9499AB;} + .d2-1140613891 .color-N4{color:#CFD2DD;} + .d2-1140613891 .color-N5{color:#DEE1EB;} + .d2-1140613891 .color-N6{color:#EEF1F8;} + .d2-1140613891 .color-N7{color:#FFFFFF;} + .d2-1140613891 .color-B1{color:#0D32B2;} + .d2-1140613891 .color-B2{color:#0D32B2;} + .d2-1140613891 .color-B3{color:#E3E9FD;} + .d2-1140613891 .color-B4{color:#E3E9FD;} + .d2-1140613891 .color-B5{color:#EDF0FD;} + .d2-1140613891 .color-B6{color:#F7F8FE;} + .d2-1140613891 .color-AA2{color:#4A6FF3;} + .d2-1140613891 .color-AA4{color:#EDF0FD;} + .d2-1140613891 .color-AA5{color:#F7F8FE;} + .d2-1140613891 .color-AB4{color:#EDF0FD;} + .d2-1140613891 .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}]]>ababcabc diff --git a/e2etests/testdata/stable/dagre-container/elk/board.exp.json b/e2etests/testdata/stable/dagre-container/elk/board.exp.json index 09e17e0374..a2460a211d 100644 --- a/e2etests/testdata/stable/dagre-container/elk/board.exp.json +++ b/e2etests/testdata/stable/dagre-container/elk/board.exp.json @@ -356,6 +356,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 161.5, diff --git a/e2etests/testdata/stable/dagre-container/elk/sketch.exp.svg b/e2etests/testdata/stable/dagre-container/elk/sketch.exp.svg index db305d3855..da29a9f264 100644 --- a/e2etests/testdata/stable/dagre-container/elk/sketch.exp.svg +++ b/e2etests/testdata/stable/dagre-container/elk/sketch.exp.svg @@ -1,16 +1,16 @@ -ababcabc + .d2-2673984254 .fill-N1{fill:#0A0F25;} + .d2-2673984254 .fill-N2{fill:#676C7E;} + .d2-2673984254 .fill-N3{fill:#9499AB;} + .d2-2673984254 .fill-N4{fill:#CFD2DD;} + .d2-2673984254 .fill-N5{fill:#DEE1EB;} + .d2-2673984254 .fill-N6{fill:#EEF1F8;} + .d2-2673984254 .fill-N7{fill:#FFFFFF;} + .d2-2673984254 .fill-B1{fill:#0D32B2;} + .d2-2673984254 .fill-B2{fill:#0D32B2;} + .d2-2673984254 .fill-B3{fill:#E3E9FD;} + .d2-2673984254 .fill-B4{fill:#E3E9FD;} + .d2-2673984254 .fill-B5{fill:#EDF0FD;} + .d2-2673984254 .fill-B6{fill:#F7F8FE;} + .d2-2673984254 .fill-AA2{fill:#4A6FF3;} + .d2-2673984254 .fill-AA4{fill:#EDF0FD;} + .d2-2673984254 .fill-AA5{fill:#F7F8FE;} + .d2-2673984254 .fill-AB4{fill:#EDF0FD;} + .d2-2673984254 .fill-AB5{fill:#F7F8FE;} + .d2-2673984254 .stroke-N1{stroke:#0A0F25;} + .d2-2673984254 .stroke-N2{stroke:#676C7E;} + .d2-2673984254 .stroke-N3{stroke:#9499AB;} + .d2-2673984254 .stroke-N4{stroke:#CFD2DD;} + .d2-2673984254 .stroke-N5{stroke:#DEE1EB;} + .d2-2673984254 .stroke-N6{stroke:#EEF1F8;} + .d2-2673984254 .stroke-N7{stroke:#FFFFFF;} + .d2-2673984254 .stroke-B1{stroke:#0D32B2;} + .d2-2673984254 .stroke-B2{stroke:#0D32B2;} + .d2-2673984254 .stroke-B3{stroke:#E3E9FD;} + .d2-2673984254 .stroke-B4{stroke:#E3E9FD;} + .d2-2673984254 .stroke-B5{stroke:#EDF0FD;} + .d2-2673984254 .stroke-B6{stroke:#F7F8FE;} + .d2-2673984254 .stroke-AA2{stroke:#4A6FF3;} + .d2-2673984254 .stroke-AA4{stroke:#EDF0FD;} + .d2-2673984254 .stroke-AA5{stroke:#F7F8FE;} + .d2-2673984254 .stroke-AB4{stroke:#EDF0FD;} + .d2-2673984254 .stroke-AB5{stroke:#F7F8FE;} + .d2-2673984254 .background-color-N1{background-color:#0A0F25;} + .d2-2673984254 .background-color-N2{background-color:#676C7E;} + .d2-2673984254 .background-color-N3{background-color:#9499AB;} + .d2-2673984254 .background-color-N4{background-color:#CFD2DD;} + .d2-2673984254 .background-color-N5{background-color:#DEE1EB;} + .d2-2673984254 .background-color-N6{background-color:#EEF1F8;} + .d2-2673984254 .background-color-N7{background-color:#FFFFFF;} + .d2-2673984254 .background-color-B1{background-color:#0D32B2;} + .d2-2673984254 .background-color-B2{background-color:#0D32B2;} + .d2-2673984254 .background-color-B3{background-color:#E3E9FD;} + .d2-2673984254 .background-color-B4{background-color:#E3E9FD;} + .d2-2673984254 .background-color-B5{background-color:#EDF0FD;} + .d2-2673984254 .background-color-B6{background-color:#F7F8FE;} + .d2-2673984254 .background-color-AA2{background-color:#4A6FF3;} + .d2-2673984254 .background-color-AA4{background-color:#EDF0FD;} + .d2-2673984254 .background-color-AA5{background-color:#F7F8FE;} + .d2-2673984254 .background-color-AB4{background-color:#EDF0FD;} + .d2-2673984254 .background-color-AB5{background-color:#F7F8FE;} + .d2-2673984254 .color-N1{color:#0A0F25;} + .d2-2673984254 .color-N2{color:#676C7E;} + .d2-2673984254 .color-N3{color:#9499AB;} + .d2-2673984254 .color-N4{color:#CFD2DD;} + .d2-2673984254 .color-N5{color:#DEE1EB;} + .d2-2673984254 .color-N6{color:#EEF1F8;} + .d2-2673984254 .color-N7{color:#FFFFFF;} + .d2-2673984254 .color-B1{color:#0D32B2;} + .d2-2673984254 .color-B2{color:#0D32B2;} + .d2-2673984254 .color-B3{color:#E3E9FD;} + .d2-2673984254 .color-B4{color:#E3E9FD;} + .d2-2673984254 .color-B5{color:#EDF0FD;} + .d2-2673984254 .color-B6{color:#F7F8FE;} + .d2-2673984254 .color-AA2{color:#4A6FF3;} + .d2-2673984254 .color-AA4{color:#EDF0FD;} + .d2-2673984254 .color-AA5{color:#F7F8FE;} + .d2-2673984254 .color-AB4{color:#EDF0FD;} + .d2-2673984254 .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}]]>ababcabc diff --git a/e2etests/testdata/stable/dagre_spacing/dagre/board.exp.json b/e2etests/testdata/stable/dagre_spacing/dagre/board.exp.json index e8ecc9ba9c..42c3b86169 100644 --- a/e2etests/testdata/stable/dagre_spacing/dagre/board.exp.json +++ b/e2etests/testdata/stable/dagre_spacing/dagre/board.exp.json @@ -1137,6 +1137,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 87, @@ -1220,6 +1221,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 201, @@ -1303,6 +1305,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 1579.5, @@ -1386,6 +1389,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 928.25, @@ -1469,6 +1473,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 400, @@ -1552,6 +1557,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 1235, @@ -1635,6 +1641,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 754.5, @@ -1706,6 +1713,7 @@ "labelHeight": 69, "labelPosition": "INSIDE_MIDDLE_CENTER", "labelPercentage": 0, + "link": "", "route": [ { "x": 583.5, diff --git a/e2etests/testdata/stable/dagre_spacing/dagre/sketch.exp.svg b/e2etests/testdata/stable/dagre_spacing/dagre/sketch.exp.svg index 76103736fe..3c8b26269d 100644 --- a/e2etests/testdata/stable/dagre_spacing/dagre/sketch.exp.svg +++ b/e2etests/testdata/stable/dagre_spacing/dagre/sketch.exp.svg @@ -1,23 +1,23 @@ -askuhykfnsomsssscccccccccccccccccccczrgtiiigsjjcfi 1234 + .d2-167658915 .fill-N1{fill:#0A0F25;} + .d2-167658915 .fill-N2{fill:#676C7E;} + .d2-167658915 .fill-N3{fill:#9499AB;} + .d2-167658915 .fill-N4{fill:#CFD2DD;} + .d2-167658915 .fill-N5{fill:#DEE1EB;} + .d2-167658915 .fill-N6{fill:#EEF1F8;} + .d2-167658915 .fill-N7{fill:#FFFFFF;} + .d2-167658915 .fill-B1{fill:#0D32B2;} + .d2-167658915 .fill-B2{fill:#0D32B2;} + .d2-167658915 .fill-B3{fill:#E3E9FD;} + .d2-167658915 .fill-B4{fill:#E3E9FD;} + .d2-167658915 .fill-B5{fill:#EDF0FD;} + .d2-167658915 .fill-B6{fill:#F7F8FE;} + .d2-167658915 .fill-AA2{fill:#4A6FF3;} + .d2-167658915 .fill-AA4{fill:#EDF0FD;} + .d2-167658915 .fill-AA5{fill:#F7F8FE;} + .d2-167658915 .fill-AB4{fill:#EDF0FD;} + .d2-167658915 .fill-AB5{fill:#F7F8FE;} + .d2-167658915 .stroke-N1{stroke:#0A0F25;} + .d2-167658915 .stroke-N2{stroke:#676C7E;} + .d2-167658915 .stroke-N3{stroke:#9499AB;} + .d2-167658915 .stroke-N4{stroke:#CFD2DD;} + .d2-167658915 .stroke-N5{stroke:#DEE1EB;} + .d2-167658915 .stroke-N6{stroke:#EEF1F8;} + .d2-167658915 .stroke-N7{stroke:#FFFFFF;} + .d2-167658915 .stroke-B1{stroke:#0D32B2;} + .d2-167658915 .stroke-B2{stroke:#0D32B2;} + .d2-167658915 .stroke-B3{stroke:#E3E9FD;} + .d2-167658915 .stroke-B4{stroke:#E3E9FD;} + .d2-167658915 .stroke-B5{stroke:#EDF0FD;} + .d2-167658915 .stroke-B6{stroke:#F7F8FE;} + .d2-167658915 .stroke-AA2{stroke:#4A6FF3;} + .d2-167658915 .stroke-AA4{stroke:#EDF0FD;} + .d2-167658915 .stroke-AA5{stroke:#F7F8FE;} + .d2-167658915 .stroke-AB4{stroke:#EDF0FD;} + .d2-167658915 .stroke-AB5{stroke:#F7F8FE;} + .d2-167658915 .background-color-N1{background-color:#0A0F25;} + .d2-167658915 .background-color-N2{background-color:#676C7E;} + .d2-167658915 .background-color-N3{background-color:#9499AB;} + .d2-167658915 .background-color-N4{background-color:#CFD2DD;} + .d2-167658915 .background-color-N5{background-color:#DEE1EB;} + .d2-167658915 .background-color-N6{background-color:#EEF1F8;} + .d2-167658915 .background-color-N7{background-color:#FFFFFF;} + .d2-167658915 .background-color-B1{background-color:#0D32B2;} + .d2-167658915 .background-color-B2{background-color:#0D32B2;} + .d2-167658915 .background-color-B3{background-color:#E3E9FD;} + .d2-167658915 .background-color-B4{background-color:#E3E9FD;} + .d2-167658915 .background-color-B5{background-color:#EDF0FD;} + .d2-167658915 .background-color-B6{background-color:#F7F8FE;} + .d2-167658915 .background-color-AA2{background-color:#4A6FF3;} + .d2-167658915 .background-color-AA4{background-color:#EDF0FD;} + .d2-167658915 .background-color-AA5{background-color:#F7F8FE;} + .d2-167658915 .background-color-AB4{background-color:#EDF0FD;} + .d2-167658915 .background-color-AB5{background-color:#F7F8FE;} + .d2-167658915 .color-N1{color:#0A0F25;} + .d2-167658915 .color-N2{color:#676C7E;} + .d2-167658915 .color-N3{color:#9499AB;} + .d2-167658915 .color-N4{color:#CFD2DD;} + .d2-167658915 .color-N5{color:#DEE1EB;} + .d2-167658915 .color-N6{color:#EEF1F8;} + .d2-167658915 .color-N7{color:#FFFFFF;} + .d2-167658915 .color-B1{color:#0D32B2;} + .d2-167658915 .color-B2{color:#0D32B2;} + .d2-167658915 .color-B3{color:#E3E9FD;} + .d2-167658915 .color-B4{color:#E3E9FD;} + .d2-167658915 .color-B5{color:#EDF0FD;} + .d2-167658915 .color-B6{color:#F7F8FE;} + .d2-167658915 .color-AA2{color:#4A6FF3;} + .d2-167658915 .color-AA4{color:#EDF0FD;} + .d2-167658915 .color-AA5{color:#F7F8FE;} + .d2-167658915 .color-AB4{color:#EDF0FD;} + .d2-167658915 .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}]]>askuhykfnsomsssscccccccccccccccccccczrgtiiigsjjcfi 1234 diff --git a/e2etests/testdata/stable/dagre_spacing/elk/board.exp.json b/e2etests/testdata/stable/dagre_spacing/elk/board.exp.json index e6a4ed52fc..846cc7ba77 100644 --- a/e2etests/testdata/stable/dagre_spacing/elk/board.exp.json +++ b/e2etests/testdata/stable/dagre_spacing/elk/board.exp.json @@ -1137,6 +1137,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 309.5, @@ -1183,6 +1184,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 404.25, @@ -1237,6 +1239,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 88, @@ -1283,6 +1286,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 425, @@ -1329,6 +1333,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 510.75, @@ -1375,6 +1380,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 678.5, @@ -1413,6 +1419,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 506.5, @@ -1451,6 +1458,7 @@ "labelHeight": 69, "labelPosition": "INSIDE_MIDDLE_CENTER", "labelPercentage": 0, + "link": "", "route": [ { "x": 506.5, diff --git a/e2etests/testdata/stable/dagre_spacing/elk/sketch.exp.svg b/e2etests/testdata/stable/dagre_spacing/elk/sketch.exp.svg index a38c1ddbe9..93178bb666 100644 --- a/e2etests/testdata/stable/dagre_spacing/elk/sketch.exp.svg +++ b/e2etests/testdata/stable/dagre_spacing/elk/sketch.exp.svg @@ -1,23 +1,23 @@ -askuhykfnsomsssscccccccccccccccccccczrgtiiigsjjcfi 1234 + .d2-124072347 .fill-N1{fill:#0A0F25;} + .d2-124072347 .fill-N2{fill:#676C7E;} + .d2-124072347 .fill-N3{fill:#9499AB;} + .d2-124072347 .fill-N4{fill:#CFD2DD;} + .d2-124072347 .fill-N5{fill:#DEE1EB;} + .d2-124072347 .fill-N6{fill:#EEF1F8;} + .d2-124072347 .fill-N7{fill:#FFFFFF;} + .d2-124072347 .fill-B1{fill:#0D32B2;} + .d2-124072347 .fill-B2{fill:#0D32B2;} + .d2-124072347 .fill-B3{fill:#E3E9FD;} + .d2-124072347 .fill-B4{fill:#E3E9FD;} + .d2-124072347 .fill-B5{fill:#EDF0FD;} + .d2-124072347 .fill-B6{fill:#F7F8FE;} + .d2-124072347 .fill-AA2{fill:#4A6FF3;} + .d2-124072347 .fill-AA4{fill:#EDF0FD;} + .d2-124072347 .fill-AA5{fill:#F7F8FE;} + .d2-124072347 .fill-AB4{fill:#EDF0FD;} + .d2-124072347 .fill-AB5{fill:#F7F8FE;} + .d2-124072347 .stroke-N1{stroke:#0A0F25;} + .d2-124072347 .stroke-N2{stroke:#676C7E;} + .d2-124072347 .stroke-N3{stroke:#9499AB;} + .d2-124072347 .stroke-N4{stroke:#CFD2DD;} + .d2-124072347 .stroke-N5{stroke:#DEE1EB;} + .d2-124072347 .stroke-N6{stroke:#EEF1F8;} + .d2-124072347 .stroke-N7{stroke:#FFFFFF;} + .d2-124072347 .stroke-B1{stroke:#0D32B2;} + .d2-124072347 .stroke-B2{stroke:#0D32B2;} + .d2-124072347 .stroke-B3{stroke:#E3E9FD;} + .d2-124072347 .stroke-B4{stroke:#E3E9FD;} + .d2-124072347 .stroke-B5{stroke:#EDF0FD;} + .d2-124072347 .stroke-B6{stroke:#F7F8FE;} + .d2-124072347 .stroke-AA2{stroke:#4A6FF3;} + .d2-124072347 .stroke-AA4{stroke:#EDF0FD;} + .d2-124072347 .stroke-AA5{stroke:#F7F8FE;} + .d2-124072347 .stroke-AB4{stroke:#EDF0FD;} + .d2-124072347 .stroke-AB5{stroke:#F7F8FE;} + .d2-124072347 .background-color-N1{background-color:#0A0F25;} + .d2-124072347 .background-color-N2{background-color:#676C7E;} + .d2-124072347 .background-color-N3{background-color:#9499AB;} + .d2-124072347 .background-color-N4{background-color:#CFD2DD;} + .d2-124072347 .background-color-N5{background-color:#DEE1EB;} + .d2-124072347 .background-color-N6{background-color:#EEF1F8;} + .d2-124072347 .background-color-N7{background-color:#FFFFFF;} + .d2-124072347 .background-color-B1{background-color:#0D32B2;} + .d2-124072347 .background-color-B2{background-color:#0D32B2;} + .d2-124072347 .background-color-B3{background-color:#E3E9FD;} + .d2-124072347 .background-color-B4{background-color:#E3E9FD;} + .d2-124072347 .background-color-B5{background-color:#EDF0FD;} + .d2-124072347 .background-color-B6{background-color:#F7F8FE;} + .d2-124072347 .background-color-AA2{background-color:#4A6FF3;} + .d2-124072347 .background-color-AA4{background-color:#EDF0FD;} + .d2-124072347 .background-color-AA5{background-color:#F7F8FE;} + .d2-124072347 .background-color-AB4{background-color:#EDF0FD;} + .d2-124072347 .background-color-AB5{background-color:#F7F8FE;} + .d2-124072347 .color-N1{color:#0A0F25;} + .d2-124072347 .color-N2{color:#676C7E;} + .d2-124072347 .color-N3{color:#9499AB;} + .d2-124072347 .color-N4{color:#CFD2DD;} + .d2-124072347 .color-N5{color:#DEE1EB;} + .d2-124072347 .color-N6{color:#EEF1F8;} + .d2-124072347 .color-N7{color:#FFFFFF;} + .d2-124072347 .color-B1{color:#0D32B2;} + .d2-124072347 .color-B2{color:#0D32B2;} + .d2-124072347 .color-B3{color:#E3E9FD;} + .d2-124072347 .color-B4{color:#E3E9FD;} + .d2-124072347 .color-B5{color:#EDF0FD;} + .d2-124072347 .color-B6{color:#F7F8FE;} + .d2-124072347 .color-AA2{color:#4A6FF3;} + .d2-124072347 .color-AA4{color:#EDF0FD;} + .d2-124072347 .color-AA5{color:#F7F8FE;} + .d2-124072347 .color-AB4{color:#EDF0FD;} + .d2-124072347 .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}]]>askuhykfnsomsssscccccccccccccccccccczrgtiiigsjjcfi 1234 diff --git a/e2etests/testdata/stable/dagre_spacing_right/dagre/board.exp.json b/e2etests/testdata/stable/dagre_spacing_right/dagre/board.exp.json index b2a164720c..e878820255 100644 --- a/e2etests/testdata/stable/dagre_spacing_right/dagre/board.exp.json +++ b/e2etests/testdata/stable/dagre_spacing_right/dagre/board.exp.json @@ -1137,6 +1137,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 128.5, @@ -1220,6 +1221,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 517, @@ -1303,6 +1305,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 516, @@ -1386,6 +1389,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 128, @@ -1469,6 +1473,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 528, @@ -1552,6 +1557,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 1023, @@ -1635,6 +1641,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 981, @@ -1706,6 +1713,7 @@ "labelHeight": 69, "labelPosition": "INSIDE_MIDDLE_CENTER", "labelPercentage": 0, + "link": "", "route": [ { "x": 1435, diff --git a/e2etests/testdata/stable/dagre_spacing_right/dagre/sketch.exp.svg b/e2etests/testdata/stable/dagre_spacing_right/dagre/sketch.exp.svg index 5ac3c3e33b..0ac6f67e35 100644 --- a/e2etests/testdata/stable/dagre_spacing_right/dagre/sketch.exp.svg +++ b/e2etests/testdata/stable/dagre_spacing_right/dagre/sketch.exp.svg @@ -1,23 +1,23 @@ -askuhykfnsomsssscccccccccccccccccccczrgtiiigsjjcfi 1234 + .d2-3518654467 .fill-N1{fill:#0A0F25;} + .d2-3518654467 .fill-N2{fill:#676C7E;} + .d2-3518654467 .fill-N3{fill:#9499AB;} + .d2-3518654467 .fill-N4{fill:#CFD2DD;} + .d2-3518654467 .fill-N5{fill:#DEE1EB;} + .d2-3518654467 .fill-N6{fill:#EEF1F8;} + .d2-3518654467 .fill-N7{fill:#FFFFFF;} + .d2-3518654467 .fill-B1{fill:#0D32B2;} + .d2-3518654467 .fill-B2{fill:#0D32B2;} + .d2-3518654467 .fill-B3{fill:#E3E9FD;} + .d2-3518654467 .fill-B4{fill:#E3E9FD;} + .d2-3518654467 .fill-B5{fill:#EDF0FD;} + .d2-3518654467 .fill-B6{fill:#F7F8FE;} + .d2-3518654467 .fill-AA2{fill:#4A6FF3;} + .d2-3518654467 .fill-AA4{fill:#EDF0FD;} + .d2-3518654467 .fill-AA5{fill:#F7F8FE;} + .d2-3518654467 .fill-AB4{fill:#EDF0FD;} + .d2-3518654467 .fill-AB5{fill:#F7F8FE;} + .d2-3518654467 .stroke-N1{stroke:#0A0F25;} + .d2-3518654467 .stroke-N2{stroke:#676C7E;} + .d2-3518654467 .stroke-N3{stroke:#9499AB;} + .d2-3518654467 .stroke-N4{stroke:#CFD2DD;} + .d2-3518654467 .stroke-N5{stroke:#DEE1EB;} + .d2-3518654467 .stroke-N6{stroke:#EEF1F8;} + .d2-3518654467 .stroke-N7{stroke:#FFFFFF;} + .d2-3518654467 .stroke-B1{stroke:#0D32B2;} + .d2-3518654467 .stroke-B2{stroke:#0D32B2;} + .d2-3518654467 .stroke-B3{stroke:#E3E9FD;} + .d2-3518654467 .stroke-B4{stroke:#E3E9FD;} + .d2-3518654467 .stroke-B5{stroke:#EDF0FD;} + .d2-3518654467 .stroke-B6{stroke:#F7F8FE;} + .d2-3518654467 .stroke-AA2{stroke:#4A6FF3;} + .d2-3518654467 .stroke-AA4{stroke:#EDF0FD;} + .d2-3518654467 .stroke-AA5{stroke:#F7F8FE;} + .d2-3518654467 .stroke-AB4{stroke:#EDF0FD;} + .d2-3518654467 .stroke-AB5{stroke:#F7F8FE;} + .d2-3518654467 .background-color-N1{background-color:#0A0F25;} + .d2-3518654467 .background-color-N2{background-color:#676C7E;} + .d2-3518654467 .background-color-N3{background-color:#9499AB;} + .d2-3518654467 .background-color-N4{background-color:#CFD2DD;} + .d2-3518654467 .background-color-N5{background-color:#DEE1EB;} + .d2-3518654467 .background-color-N6{background-color:#EEF1F8;} + .d2-3518654467 .background-color-N7{background-color:#FFFFFF;} + .d2-3518654467 .background-color-B1{background-color:#0D32B2;} + .d2-3518654467 .background-color-B2{background-color:#0D32B2;} + .d2-3518654467 .background-color-B3{background-color:#E3E9FD;} + .d2-3518654467 .background-color-B4{background-color:#E3E9FD;} + .d2-3518654467 .background-color-B5{background-color:#EDF0FD;} + .d2-3518654467 .background-color-B6{background-color:#F7F8FE;} + .d2-3518654467 .background-color-AA2{background-color:#4A6FF3;} + .d2-3518654467 .background-color-AA4{background-color:#EDF0FD;} + .d2-3518654467 .background-color-AA5{background-color:#F7F8FE;} + .d2-3518654467 .background-color-AB4{background-color:#EDF0FD;} + .d2-3518654467 .background-color-AB5{background-color:#F7F8FE;} + .d2-3518654467 .color-N1{color:#0A0F25;} + .d2-3518654467 .color-N2{color:#676C7E;} + .d2-3518654467 .color-N3{color:#9499AB;} + .d2-3518654467 .color-N4{color:#CFD2DD;} + .d2-3518654467 .color-N5{color:#DEE1EB;} + .d2-3518654467 .color-N6{color:#EEF1F8;} + .d2-3518654467 .color-N7{color:#FFFFFF;} + .d2-3518654467 .color-B1{color:#0D32B2;} + .d2-3518654467 .color-B2{color:#0D32B2;} + .d2-3518654467 .color-B3{color:#E3E9FD;} + .d2-3518654467 .color-B4{color:#E3E9FD;} + .d2-3518654467 .color-B5{color:#EDF0FD;} + .d2-3518654467 .color-B6{color:#F7F8FE;} + .d2-3518654467 .color-AA2{color:#4A6FF3;} + .d2-3518654467 .color-AA4{color:#EDF0FD;} + .d2-3518654467 .color-AA5{color:#F7F8FE;} + .d2-3518654467 .color-AB4{color:#EDF0FD;} + .d2-3518654467 .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}]]>askuhykfnsomsssscccccccccccccccccccczrgtiiigsjjcfi 1234 diff --git a/e2etests/testdata/stable/dagre_spacing_right/elk/board.exp.json b/e2etests/testdata/stable/dagre_spacing_right/elk/board.exp.json index a25b67e74e..bfe5c9189c 100644 --- a/e2etests/testdata/stable/dagre_spacing_right/elk/board.exp.json +++ b/e2etests/testdata/stable/dagre_spacing_right/elk/board.exp.json @@ -1137,6 +1137,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 510, @@ -1175,6 +1176,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 786, @@ -1229,6 +1231,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 874, @@ -1275,6 +1278,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 164, @@ -1313,6 +1317,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 819, @@ -1351,6 +1356,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 1469, @@ -1397,6 +1403,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 1808, @@ -1435,6 +1442,7 @@ "labelHeight": 69, "labelPosition": "INSIDE_MIDDLE_CENTER", "labelPercentage": 0, + "link": "", "route": [ { "x": 2043, diff --git a/e2etests/testdata/stable/dagre_spacing_right/elk/sketch.exp.svg b/e2etests/testdata/stable/dagre_spacing_right/elk/sketch.exp.svg index 3c7ffcc4e5..d164e5640f 100644 --- a/e2etests/testdata/stable/dagre_spacing_right/elk/sketch.exp.svg +++ b/e2etests/testdata/stable/dagre_spacing_right/elk/sketch.exp.svg @@ -1,23 +1,23 @@ -askuhykfnsomsssscccccccccccccccccccczrgtiiigsjjcfi 1234 + .d2-359663691 .fill-N1{fill:#0A0F25;} + .d2-359663691 .fill-N2{fill:#676C7E;} + .d2-359663691 .fill-N3{fill:#9499AB;} + .d2-359663691 .fill-N4{fill:#CFD2DD;} + .d2-359663691 .fill-N5{fill:#DEE1EB;} + .d2-359663691 .fill-N6{fill:#EEF1F8;} + .d2-359663691 .fill-N7{fill:#FFFFFF;} + .d2-359663691 .fill-B1{fill:#0D32B2;} + .d2-359663691 .fill-B2{fill:#0D32B2;} + .d2-359663691 .fill-B3{fill:#E3E9FD;} + .d2-359663691 .fill-B4{fill:#E3E9FD;} + .d2-359663691 .fill-B5{fill:#EDF0FD;} + .d2-359663691 .fill-B6{fill:#F7F8FE;} + .d2-359663691 .fill-AA2{fill:#4A6FF3;} + .d2-359663691 .fill-AA4{fill:#EDF0FD;} + .d2-359663691 .fill-AA5{fill:#F7F8FE;} + .d2-359663691 .fill-AB4{fill:#EDF0FD;} + .d2-359663691 .fill-AB5{fill:#F7F8FE;} + .d2-359663691 .stroke-N1{stroke:#0A0F25;} + .d2-359663691 .stroke-N2{stroke:#676C7E;} + .d2-359663691 .stroke-N3{stroke:#9499AB;} + .d2-359663691 .stroke-N4{stroke:#CFD2DD;} + .d2-359663691 .stroke-N5{stroke:#DEE1EB;} + .d2-359663691 .stroke-N6{stroke:#EEF1F8;} + .d2-359663691 .stroke-N7{stroke:#FFFFFF;} + .d2-359663691 .stroke-B1{stroke:#0D32B2;} + .d2-359663691 .stroke-B2{stroke:#0D32B2;} + .d2-359663691 .stroke-B3{stroke:#E3E9FD;} + .d2-359663691 .stroke-B4{stroke:#E3E9FD;} + .d2-359663691 .stroke-B5{stroke:#EDF0FD;} + .d2-359663691 .stroke-B6{stroke:#F7F8FE;} + .d2-359663691 .stroke-AA2{stroke:#4A6FF3;} + .d2-359663691 .stroke-AA4{stroke:#EDF0FD;} + .d2-359663691 .stroke-AA5{stroke:#F7F8FE;} + .d2-359663691 .stroke-AB4{stroke:#EDF0FD;} + .d2-359663691 .stroke-AB5{stroke:#F7F8FE;} + .d2-359663691 .background-color-N1{background-color:#0A0F25;} + .d2-359663691 .background-color-N2{background-color:#676C7E;} + .d2-359663691 .background-color-N3{background-color:#9499AB;} + .d2-359663691 .background-color-N4{background-color:#CFD2DD;} + .d2-359663691 .background-color-N5{background-color:#DEE1EB;} + .d2-359663691 .background-color-N6{background-color:#EEF1F8;} + .d2-359663691 .background-color-N7{background-color:#FFFFFF;} + .d2-359663691 .background-color-B1{background-color:#0D32B2;} + .d2-359663691 .background-color-B2{background-color:#0D32B2;} + .d2-359663691 .background-color-B3{background-color:#E3E9FD;} + .d2-359663691 .background-color-B4{background-color:#E3E9FD;} + .d2-359663691 .background-color-B5{background-color:#EDF0FD;} + .d2-359663691 .background-color-B6{background-color:#F7F8FE;} + .d2-359663691 .background-color-AA2{background-color:#4A6FF3;} + .d2-359663691 .background-color-AA4{background-color:#EDF0FD;} + .d2-359663691 .background-color-AA5{background-color:#F7F8FE;} + .d2-359663691 .background-color-AB4{background-color:#EDF0FD;} + .d2-359663691 .background-color-AB5{background-color:#F7F8FE;} + .d2-359663691 .color-N1{color:#0A0F25;} + .d2-359663691 .color-N2{color:#676C7E;} + .d2-359663691 .color-N3{color:#9499AB;} + .d2-359663691 .color-N4{color:#CFD2DD;} + .d2-359663691 .color-N5{color:#DEE1EB;} + .d2-359663691 .color-N6{color:#EEF1F8;} + .d2-359663691 .color-N7{color:#FFFFFF;} + .d2-359663691 .color-B1{color:#0D32B2;} + .d2-359663691 .color-B2{color:#0D32B2;} + .d2-359663691 .color-B3{color:#E3E9FD;} + .d2-359663691 .color-B4{color:#E3E9FD;} + .d2-359663691 .color-B5{color:#EDF0FD;} + .d2-359663691 .color-B6{color:#F7F8FE;} + .d2-359663691 .color-AA2{color:#4A6FF3;} + .d2-359663691 .color-AA4{color:#EDF0FD;} + .d2-359663691 .color-AA5{color:#F7F8FE;} + .d2-359663691 .color-AB4{color:#EDF0FD;} + .d2-359663691 .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}]]>askuhykfnsomsssscccccccccccccccccccczrgtiiigsjjcfi 1234 diff --git a/e2etests/testdata/stable/dense/dagre/board.exp.json b/e2etests/testdata/stable/dense/dagre/board.exp.json index 1e0ce88044..e8e494727e 100644 --- a/e2etests/testdata/stable/dense/dagre/board.exp.json +++ b/e2etests/testdata/stable/dense/dagre/board.exp.json @@ -725,6 +725,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 263.25, @@ -772,6 +773,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 117, @@ -831,6 +833,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 480, @@ -890,6 +893,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 592.5, @@ -949,6 +953,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 340.25, @@ -1008,6 +1013,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 339.5, @@ -1055,6 +1061,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 602.5, @@ -1102,6 +1109,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 287.5, @@ -1149,6 +1157,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 323, @@ -1256,6 +1265,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 340, @@ -1315,6 +1325,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 25, @@ -1362,6 +1373,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 37.5, @@ -1421,6 +1433,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 287, @@ -1468,6 +1481,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 346.75, @@ -1515,6 +1529,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 506.5, @@ -1562,6 +1577,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 759, @@ -1609,6 +1625,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 710.5, @@ -1656,6 +1673,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 678.25, @@ -1703,6 +1721,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 413.5, @@ -1750,6 +1769,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 453.5, @@ -1797,6 +1817,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 566.75, @@ -1844,6 +1865,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 296, @@ -1891,6 +1913,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 826.5, @@ -1938,6 +1961,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 603.5, diff --git a/e2etests/testdata/stable/dense/dagre/sketch.exp.svg b/e2etests/testdata/stable/dense/dagre/sketch.exp.svg index f01ead8de5..05e0e435af 100644 --- a/e2etests/testdata/stable/dense/dagre/sketch.exp.svg +++ b/e2etests/testdata/stable/dense/dagre/sketch.exp.svg @@ -1,9 +1,9 @@ -abcdefghijklmnopq + .d2-157913151 .fill-N1{fill:#0A0F25;} + .d2-157913151 .fill-N2{fill:#676C7E;} + .d2-157913151 .fill-N3{fill:#9499AB;} + .d2-157913151 .fill-N4{fill:#CFD2DD;} + .d2-157913151 .fill-N5{fill:#DEE1EB;} + .d2-157913151 .fill-N6{fill:#EEF1F8;} + .d2-157913151 .fill-N7{fill:#FFFFFF;} + .d2-157913151 .fill-B1{fill:#0D32B2;} + .d2-157913151 .fill-B2{fill:#0D32B2;} + .d2-157913151 .fill-B3{fill:#E3E9FD;} + .d2-157913151 .fill-B4{fill:#E3E9FD;} + .d2-157913151 .fill-B5{fill:#EDF0FD;} + .d2-157913151 .fill-B6{fill:#F7F8FE;} + .d2-157913151 .fill-AA2{fill:#4A6FF3;} + .d2-157913151 .fill-AA4{fill:#EDF0FD;} + .d2-157913151 .fill-AA5{fill:#F7F8FE;} + .d2-157913151 .fill-AB4{fill:#EDF0FD;} + .d2-157913151 .fill-AB5{fill:#F7F8FE;} + .d2-157913151 .stroke-N1{stroke:#0A0F25;} + .d2-157913151 .stroke-N2{stroke:#676C7E;} + .d2-157913151 .stroke-N3{stroke:#9499AB;} + .d2-157913151 .stroke-N4{stroke:#CFD2DD;} + .d2-157913151 .stroke-N5{stroke:#DEE1EB;} + .d2-157913151 .stroke-N6{stroke:#EEF1F8;} + .d2-157913151 .stroke-N7{stroke:#FFFFFF;} + .d2-157913151 .stroke-B1{stroke:#0D32B2;} + .d2-157913151 .stroke-B2{stroke:#0D32B2;} + .d2-157913151 .stroke-B3{stroke:#E3E9FD;} + .d2-157913151 .stroke-B4{stroke:#E3E9FD;} + .d2-157913151 .stroke-B5{stroke:#EDF0FD;} + .d2-157913151 .stroke-B6{stroke:#F7F8FE;} + .d2-157913151 .stroke-AA2{stroke:#4A6FF3;} + .d2-157913151 .stroke-AA4{stroke:#EDF0FD;} + .d2-157913151 .stroke-AA5{stroke:#F7F8FE;} + .d2-157913151 .stroke-AB4{stroke:#EDF0FD;} + .d2-157913151 .stroke-AB5{stroke:#F7F8FE;} + .d2-157913151 .background-color-N1{background-color:#0A0F25;} + .d2-157913151 .background-color-N2{background-color:#676C7E;} + .d2-157913151 .background-color-N3{background-color:#9499AB;} + .d2-157913151 .background-color-N4{background-color:#CFD2DD;} + .d2-157913151 .background-color-N5{background-color:#DEE1EB;} + .d2-157913151 .background-color-N6{background-color:#EEF1F8;} + .d2-157913151 .background-color-N7{background-color:#FFFFFF;} + .d2-157913151 .background-color-B1{background-color:#0D32B2;} + .d2-157913151 .background-color-B2{background-color:#0D32B2;} + .d2-157913151 .background-color-B3{background-color:#E3E9FD;} + .d2-157913151 .background-color-B4{background-color:#E3E9FD;} + .d2-157913151 .background-color-B5{background-color:#EDF0FD;} + .d2-157913151 .background-color-B6{background-color:#F7F8FE;} + .d2-157913151 .background-color-AA2{background-color:#4A6FF3;} + .d2-157913151 .background-color-AA4{background-color:#EDF0FD;} + .d2-157913151 .background-color-AA5{background-color:#F7F8FE;} + .d2-157913151 .background-color-AB4{background-color:#EDF0FD;} + .d2-157913151 .background-color-AB5{background-color:#F7F8FE;} + .d2-157913151 .color-N1{color:#0A0F25;} + .d2-157913151 .color-N2{color:#676C7E;} + .d2-157913151 .color-N3{color:#9499AB;} + .d2-157913151 .color-N4{color:#CFD2DD;} + .d2-157913151 .color-N5{color:#DEE1EB;} + .d2-157913151 .color-N6{color:#EEF1F8;} + .d2-157913151 .color-N7{color:#FFFFFF;} + .d2-157913151 .color-B1{color:#0D32B2;} + .d2-157913151 .color-B2{color:#0D32B2;} + .d2-157913151 .color-B3{color:#E3E9FD;} + .d2-157913151 .color-B4{color:#E3E9FD;} + .d2-157913151 .color-B5{color:#EDF0FD;} + .d2-157913151 .color-B6{color:#F7F8FE;} + .d2-157913151 .color-AA2{color:#4A6FF3;} + .d2-157913151 .color-AA4{color:#EDF0FD;} + .d2-157913151 .color-AA5{color:#F7F8FE;} + .d2-157913151 .color-AB4{color:#EDF0FD;} + .d2-157913151 .color-AB5{color:#F7F8FE;}.appendix text.text{fill:#0A0F25}.md{--color-fg-default:#0A0F25;--color-fg-muted:#676C7E;--color-fg-subtle:#9499AB;--color-canvas-default:#FFFFFF;--color-canvas-subtle:#EEF1F8;--color-border-default:#0D32B2;--color-border-muted:#0D32B2;--color-neutral-muted:#EEF1F8;--color-accent-fg:#0D32B2;--color-accent-emphasis:#0D32B2;--color-attention-subtle:#676C7E;--color-danger-fg:red;}.sketch-overlay-B1{fill:url(#streaks-darker);mix-blend-mode:lighten}.sketch-overlay-B2{fill:url(#streaks-darker);mix-blend-mode:lighten}.sketch-overlay-B3{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-B4{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-B5{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-B6{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-AA2{fill:url(#streaks-dark);mix-blend-mode:overlay}.sketch-overlay-AA4{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-AA5{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-AB4{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-AB5{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-N1{fill:url(#streaks-darker);mix-blend-mode:lighten}.sketch-overlay-N2{fill:url(#streaks-dark);mix-blend-mode:overlay}.sketch-overlay-N3{fill:url(#streaks-normal);mix-blend-mode:color-burn}.sketch-overlay-N4{fill:url(#streaks-normal);mix-blend-mode:color-burn}.sketch-overlay-N5{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-N6{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-N7{fill:url(#streaks-bright);mix-blend-mode:darken}.light-code{display: block}.dark-code{display: none}]]>abcdefghijklmnopq diff --git a/e2etests/testdata/stable/dense/elk/board.exp.json b/e2etests/testdata/stable/dense/elk/board.exp.json index d1aca654b5..f67a82528c 100644 --- a/e2etests/testdata/stable/dense/elk/board.exp.json +++ b/e2etests/testdata/stable/dense/elk/board.exp.json @@ -725,6 +725,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 192.16600036621094, @@ -763,6 +764,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 122.16600036621094, @@ -801,6 +803,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 439.5, @@ -847,6 +850,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 275, @@ -893,6 +897,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 227.66600036621094, @@ -939,6 +944,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 252.16600036621094, @@ -985,6 +991,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 295.6659851074219, @@ -1031,6 +1038,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 112.5, @@ -1069,6 +1077,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 179, @@ -1115,6 +1124,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 292.1659851074219, @@ -1161,6 +1171,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 173.66600036621094, @@ -1207,6 +1218,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 193.66600036621094, @@ -1245,6 +1257,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 262.1659851074219, @@ -1291,6 +1304,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 253, @@ -1329,6 +1343,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 459.8330078125, @@ -1375,6 +1390,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 629.8330078125, @@ -1421,6 +1437,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 570.3330078125, @@ -1467,6 +1484,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 543.666015625, @@ -1513,6 +1531,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 359.3330078125, @@ -1559,6 +1578,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 399.8330078125, @@ -1605,6 +1625,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 248.33299255371094, @@ -1651,6 +1672,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 92.16600036621094, @@ -1697,6 +1719,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 659.8330078125, @@ -1735,6 +1758,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 499.3330078125, diff --git a/e2etests/testdata/stable/dense/elk/sketch.exp.svg b/e2etests/testdata/stable/dense/elk/sketch.exp.svg index c01d36d65f..1e0ec9448e 100644 --- a/e2etests/testdata/stable/dense/elk/sketch.exp.svg +++ b/e2etests/testdata/stable/dense/elk/sketch.exp.svg @@ -1,9 +1,9 @@ -abcdefghijklmnopq + .d2-3081161686 .fill-N1{fill:#0A0F25;} + .d2-3081161686 .fill-N2{fill:#676C7E;} + .d2-3081161686 .fill-N3{fill:#9499AB;} + .d2-3081161686 .fill-N4{fill:#CFD2DD;} + .d2-3081161686 .fill-N5{fill:#DEE1EB;} + .d2-3081161686 .fill-N6{fill:#EEF1F8;} + .d2-3081161686 .fill-N7{fill:#FFFFFF;} + .d2-3081161686 .fill-B1{fill:#0D32B2;} + .d2-3081161686 .fill-B2{fill:#0D32B2;} + .d2-3081161686 .fill-B3{fill:#E3E9FD;} + .d2-3081161686 .fill-B4{fill:#E3E9FD;} + .d2-3081161686 .fill-B5{fill:#EDF0FD;} + .d2-3081161686 .fill-B6{fill:#F7F8FE;} + .d2-3081161686 .fill-AA2{fill:#4A6FF3;} + .d2-3081161686 .fill-AA4{fill:#EDF0FD;} + .d2-3081161686 .fill-AA5{fill:#F7F8FE;} + .d2-3081161686 .fill-AB4{fill:#EDF0FD;} + .d2-3081161686 .fill-AB5{fill:#F7F8FE;} + .d2-3081161686 .stroke-N1{stroke:#0A0F25;} + .d2-3081161686 .stroke-N2{stroke:#676C7E;} + .d2-3081161686 .stroke-N3{stroke:#9499AB;} + .d2-3081161686 .stroke-N4{stroke:#CFD2DD;} + .d2-3081161686 .stroke-N5{stroke:#DEE1EB;} + .d2-3081161686 .stroke-N6{stroke:#EEF1F8;} + .d2-3081161686 .stroke-N7{stroke:#FFFFFF;} + .d2-3081161686 .stroke-B1{stroke:#0D32B2;} + .d2-3081161686 .stroke-B2{stroke:#0D32B2;} + .d2-3081161686 .stroke-B3{stroke:#E3E9FD;} + .d2-3081161686 .stroke-B4{stroke:#E3E9FD;} + .d2-3081161686 .stroke-B5{stroke:#EDF0FD;} + .d2-3081161686 .stroke-B6{stroke:#F7F8FE;} + .d2-3081161686 .stroke-AA2{stroke:#4A6FF3;} + .d2-3081161686 .stroke-AA4{stroke:#EDF0FD;} + .d2-3081161686 .stroke-AA5{stroke:#F7F8FE;} + .d2-3081161686 .stroke-AB4{stroke:#EDF0FD;} + .d2-3081161686 .stroke-AB5{stroke:#F7F8FE;} + .d2-3081161686 .background-color-N1{background-color:#0A0F25;} + .d2-3081161686 .background-color-N2{background-color:#676C7E;} + .d2-3081161686 .background-color-N3{background-color:#9499AB;} + .d2-3081161686 .background-color-N4{background-color:#CFD2DD;} + .d2-3081161686 .background-color-N5{background-color:#DEE1EB;} + .d2-3081161686 .background-color-N6{background-color:#EEF1F8;} + .d2-3081161686 .background-color-N7{background-color:#FFFFFF;} + .d2-3081161686 .background-color-B1{background-color:#0D32B2;} + .d2-3081161686 .background-color-B2{background-color:#0D32B2;} + .d2-3081161686 .background-color-B3{background-color:#E3E9FD;} + .d2-3081161686 .background-color-B4{background-color:#E3E9FD;} + .d2-3081161686 .background-color-B5{background-color:#EDF0FD;} + .d2-3081161686 .background-color-B6{background-color:#F7F8FE;} + .d2-3081161686 .background-color-AA2{background-color:#4A6FF3;} + .d2-3081161686 .background-color-AA4{background-color:#EDF0FD;} + .d2-3081161686 .background-color-AA5{background-color:#F7F8FE;} + .d2-3081161686 .background-color-AB4{background-color:#EDF0FD;} + .d2-3081161686 .background-color-AB5{background-color:#F7F8FE;} + .d2-3081161686 .color-N1{color:#0A0F25;} + .d2-3081161686 .color-N2{color:#676C7E;} + .d2-3081161686 .color-N3{color:#9499AB;} + .d2-3081161686 .color-N4{color:#CFD2DD;} + .d2-3081161686 .color-N5{color:#DEE1EB;} + .d2-3081161686 .color-N6{color:#EEF1F8;} + .d2-3081161686 .color-N7{color:#FFFFFF;} + .d2-3081161686 .color-B1{color:#0D32B2;} + .d2-3081161686 .color-B2{color:#0D32B2;} + .d2-3081161686 .color-B3{color:#E3E9FD;} + .d2-3081161686 .color-B4{color:#E3E9FD;} + .d2-3081161686 .color-B5{color:#EDF0FD;} + .d2-3081161686 .color-B6{color:#F7F8FE;} + .d2-3081161686 .color-AA2{color:#4A6FF3;} + .d2-3081161686 .color-AA4{color:#EDF0FD;} + .d2-3081161686 .color-AA5{color:#F7F8FE;} + .d2-3081161686 .color-AB4{color:#EDF0FD;} + .d2-3081161686 .color-AB5{color:#F7F8FE;}.appendix text.text{fill:#0A0F25}.md{--color-fg-default:#0A0F25;--color-fg-muted:#676C7E;--color-fg-subtle:#9499AB;--color-canvas-default:#FFFFFF;--color-canvas-subtle:#EEF1F8;--color-border-default:#0D32B2;--color-border-muted:#0D32B2;--color-neutral-muted:#EEF1F8;--color-accent-fg:#0D32B2;--color-accent-emphasis:#0D32B2;--color-attention-subtle:#676C7E;--color-danger-fg:red;}.sketch-overlay-B1{fill:url(#streaks-darker);mix-blend-mode:lighten}.sketch-overlay-B2{fill:url(#streaks-darker);mix-blend-mode:lighten}.sketch-overlay-B3{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-B4{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-B5{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-B6{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-AA2{fill:url(#streaks-dark);mix-blend-mode:overlay}.sketch-overlay-AA4{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-AA5{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-AB4{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-AB5{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-N1{fill:url(#streaks-darker);mix-blend-mode:lighten}.sketch-overlay-N2{fill:url(#streaks-dark);mix-blend-mode:overlay}.sketch-overlay-N3{fill:url(#streaks-normal);mix-blend-mode:color-burn}.sketch-overlay-N4{fill:url(#streaks-normal);mix-blend-mode:color-burn}.sketch-overlay-N5{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-N6{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-N7{fill:url(#streaks-bright);mix-blend-mode:darken}.light-code{display: block}.dark-code{display: none}]]>abcdefghijklmnopq diff --git a/e2etests/testdata/stable/different_subgraphs/dagre/board.exp.json b/e2etests/testdata/stable/different_subgraphs/dagre/board.exp.json index 641c7ddcd4..07819d10b9 100644 --- a/e2etests/testdata/stable/different_subgraphs/dagre/board.exp.json +++ b/e2etests/testdata/stable/different_subgraphs/dagre/board.exp.json @@ -930,6 +930,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 301, @@ -977,6 +978,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 327.5, @@ -1024,6 +1026,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 354, @@ -1071,6 +1074,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 327.5, @@ -1118,6 +1122,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 83.5, @@ -1165,6 +1170,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 140.5, @@ -1212,6 +1218,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 614.5, @@ -1259,6 +1266,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 608.5, @@ -1306,6 +1314,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 774.75, @@ -1353,6 +1362,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 648.75, @@ -1400,6 +1410,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 930.75, @@ -1447,6 +1458,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 930.75, @@ -1494,6 +1506,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 1263.25, @@ -1541,6 +1554,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 1055, @@ -1588,6 +1602,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 999.75, @@ -1635,6 +1650,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 1026.25, @@ -1682,6 +1698,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 959, @@ -1729,6 +1746,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 1052.5, diff --git a/e2etests/testdata/stable/different_subgraphs/dagre/sketch.exp.svg b/e2etests/testdata/stable/different_subgraphs/dagre/sketch.exp.svg index 224095e933..cae2d0830b 100644 --- a/e2etests/testdata/stable/different_subgraphs/dagre/sketch.exp.svg +++ b/e2etests/testdata/stable/different_subgraphs/dagre/sketch.exp.svg @@ -1,16 +1,16 @@ -atreeandnodessomemoremanythenhereyouhavehierarchyfinallyanotherofnestingtreesatreeinsidehierarchyroot + .d2-42533050 .fill-N1{fill:#0A0F25;} + .d2-42533050 .fill-N2{fill:#676C7E;} + .d2-42533050 .fill-N3{fill:#9499AB;} + .d2-42533050 .fill-N4{fill:#CFD2DD;} + .d2-42533050 .fill-N5{fill:#DEE1EB;} + .d2-42533050 .fill-N6{fill:#EEF1F8;} + .d2-42533050 .fill-N7{fill:#FFFFFF;} + .d2-42533050 .fill-B1{fill:#0D32B2;} + .d2-42533050 .fill-B2{fill:#0D32B2;} + .d2-42533050 .fill-B3{fill:#E3E9FD;} + .d2-42533050 .fill-B4{fill:#E3E9FD;} + .d2-42533050 .fill-B5{fill:#EDF0FD;} + .d2-42533050 .fill-B6{fill:#F7F8FE;} + .d2-42533050 .fill-AA2{fill:#4A6FF3;} + .d2-42533050 .fill-AA4{fill:#EDF0FD;} + .d2-42533050 .fill-AA5{fill:#F7F8FE;} + .d2-42533050 .fill-AB4{fill:#EDF0FD;} + .d2-42533050 .fill-AB5{fill:#F7F8FE;} + .d2-42533050 .stroke-N1{stroke:#0A0F25;} + .d2-42533050 .stroke-N2{stroke:#676C7E;} + .d2-42533050 .stroke-N3{stroke:#9499AB;} + .d2-42533050 .stroke-N4{stroke:#CFD2DD;} + .d2-42533050 .stroke-N5{stroke:#DEE1EB;} + .d2-42533050 .stroke-N6{stroke:#EEF1F8;} + .d2-42533050 .stroke-N7{stroke:#FFFFFF;} + .d2-42533050 .stroke-B1{stroke:#0D32B2;} + .d2-42533050 .stroke-B2{stroke:#0D32B2;} + .d2-42533050 .stroke-B3{stroke:#E3E9FD;} + .d2-42533050 .stroke-B4{stroke:#E3E9FD;} + .d2-42533050 .stroke-B5{stroke:#EDF0FD;} + .d2-42533050 .stroke-B6{stroke:#F7F8FE;} + .d2-42533050 .stroke-AA2{stroke:#4A6FF3;} + .d2-42533050 .stroke-AA4{stroke:#EDF0FD;} + .d2-42533050 .stroke-AA5{stroke:#F7F8FE;} + .d2-42533050 .stroke-AB4{stroke:#EDF0FD;} + .d2-42533050 .stroke-AB5{stroke:#F7F8FE;} + .d2-42533050 .background-color-N1{background-color:#0A0F25;} + .d2-42533050 .background-color-N2{background-color:#676C7E;} + .d2-42533050 .background-color-N3{background-color:#9499AB;} + .d2-42533050 .background-color-N4{background-color:#CFD2DD;} + .d2-42533050 .background-color-N5{background-color:#DEE1EB;} + .d2-42533050 .background-color-N6{background-color:#EEF1F8;} + .d2-42533050 .background-color-N7{background-color:#FFFFFF;} + .d2-42533050 .background-color-B1{background-color:#0D32B2;} + .d2-42533050 .background-color-B2{background-color:#0D32B2;} + .d2-42533050 .background-color-B3{background-color:#E3E9FD;} + .d2-42533050 .background-color-B4{background-color:#E3E9FD;} + .d2-42533050 .background-color-B5{background-color:#EDF0FD;} + .d2-42533050 .background-color-B6{background-color:#F7F8FE;} + .d2-42533050 .background-color-AA2{background-color:#4A6FF3;} + .d2-42533050 .background-color-AA4{background-color:#EDF0FD;} + .d2-42533050 .background-color-AA5{background-color:#F7F8FE;} + .d2-42533050 .background-color-AB4{background-color:#EDF0FD;} + .d2-42533050 .background-color-AB5{background-color:#F7F8FE;} + .d2-42533050 .color-N1{color:#0A0F25;} + .d2-42533050 .color-N2{color:#676C7E;} + .d2-42533050 .color-N3{color:#9499AB;} + .d2-42533050 .color-N4{color:#CFD2DD;} + .d2-42533050 .color-N5{color:#DEE1EB;} + .d2-42533050 .color-N6{color:#EEF1F8;} + .d2-42533050 .color-N7{color:#FFFFFF;} + .d2-42533050 .color-B1{color:#0D32B2;} + .d2-42533050 .color-B2{color:#0D32B2;} + .d2-42533050 .color-B3{color:#E3E9FD;} + .d2-42533050 .color-B4{color:#E3E9FD;} + .d2-42533050 .color-B5{color:#EDF0FD;} + .d2-42533050 .color-B6{color:#F7F8FE;} + .d2-42533050 .color-AA2{color:#4A6FF3;} + .d2-42533050 .color-AA4{color:#EDF0FD;} + .d2-42533050 .color-AA5{color:#F7F8FE;} + .d2-42533050 .color-AB4{color:#EDF0FD;} + .d2-42533050 .color-AB5{color:#F7F8FE;}.appendix text.text{fill:#0A0F25}.md{--color-fg-default:#0A0F25;--color-fg-muted:#676C7E;--color-fg-subtle:#9499AB;--color-canvas-default:#FFFFFF;--color-canvas-subtle:#EEF1F8;--color-border-default:#0D32B2;--color-border-muted:#0D32B2;--color-neutral-muted:#EEF1F8;--color-accent-fg:#0D32B2;--color-accent-emphasis:#0D32B2;--color-attention-subtle:#676C7E;--color-danger-fg:red;}.sketch-overlay-B1{fill:url(#streaks-darker);mix-blend-mode:lighten}.sketch-overlay-B2{fill:url(#streaks-darker);mix-blend-mode:lighten}.sketch-overlay-B3{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-B4{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-B5{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-B6{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-AA2{fill:url(#streaks-dark);mix-blend-mode:overlay}.sketch-overlay-AA4{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-AA5{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-AB4{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-AB5{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-N1{fill:url(#streaks-darker);mix-blend-mode:lighten}.sketch-overlay-N2{fill:url(#streaks-dark);mix-blend-mode:overlay}.sketch-overlay-N3{fill:url(#streaks-normal);mix-blend-mode:color-burn}.sketch-overlay-N4{fill:url(#streaks-normal);mix-blend-mode:color-burn}.sketch-overlay-N5{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-N6{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-N7{fill:url(#streaks-bright);mix-blend-mode:darken}.light-code{display: block}.dark-code{display: none}]]>atreeandnodessomemoremanythenhereyouhavehierarchyfinallyanotherofnestingtreesatreeinsidehierarchyroot diff --git a/e2etests/testdata/stable/different_subgraphs/elk/board.exp.json b/e2etests/testdata/stable/different_subgraphs/elk/board.exp.json index 0256134d03..03a6483501 100644 --- a/e2etests/testdata/stable/different_subgraphs/elk/board.exp.json +++ b/e2etests/testdata/stable/different_subgraphs/elk/board.exp.json @@ -930,6 +930,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 229.5, @@ -976,6 +977,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 259.5, @@ -1014,6 +1016,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 289.5, @@ -1060,6 +1063,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 259.5, @@ -1098,6 +1102,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 90.66600036621094, @@ -1144,6 +1149,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 117.33300018310547, @@ -1190,6 +1196,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 460.5, @@ -1228,6 +1235,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 460.5, @@ -1266,6 +1274,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 593.8330078125, @@ -1304,6 +1313,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 487.1659851074219, @@ -1350,6 +1360,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 749, @@ -1388,6 +1399,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 749, @@ -1426,6 +1438,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 1010.3330078125, @@ -1464,6 +1477,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 845.166015625, @@ -1510,6 +1524,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 793.25, @@ -1556,6 +1571,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 806.5830078125, @@ -1594,6 +1610,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 759.3330078125, @@ -1632,6 +1649,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 819.916015625, diff --git a/e2etests/testdata/stable/different_subgraphs/elk/sketch.exp.svg b/e2etests/testdata/stable/different_subgraphs/elk/sketch.exp.svg index 988f1f3ce0..fce15a2b78 100644 --- a/e2etests/testdata/stable/different_subgraphs/elk/sketch.exp.svg +++ b/e2etests/testdata/stable/different_subgraphs/elk/sketch.exp.svg @@ -1,16 +1,16 @@ -atreeandnodessomemoremanythenhereyouhavehierarchyfinallyanotherofnestingtreesatreeinsidehierarchyroot + .d2-2796703163 .fill-N1{fill:#0A0F25;} + .d2-2796703163 .fill-N2{fill:#676C7E;} + .d2-2796703163 .fill-N3{fill:#9499AB;} + .d2-2796703163 .fill-N4{fill:#CFD2DD;} + .d2-2796703163 .fill-N5{fill:#DEE1EB;} + .d2-2796703163 .fill-N6{fill:#EEF1F8;} + .d2-2796703163 .fill-N7{fill:#FFFFFF;} + .d2-2796703163 .fill-B1{fill:#0D32B2;} + .d2-2796703163 .fill-B2{fill:#0D32B2;} + .d2-2796703163 .fill-B3{fill:#E3E9FD;} + .d2-2796703163 .fill-B4{fill:#E3E9FD;} + .d2-2796703163 .fill-B5{fill:#EDF0FD;} + .d2-2796703163 .fill-B6{fill:#F7F8FE;} + .d2-2796703163 .fill-AA2{fill:#4A6FF3;} + .d2-2796703163 .fill-AA4{fill:#EDF0FD;} + .d2-2796703163 .fill-AA5{fill:#F7F8FE;} + .d2-2796703163 .fill-AB4{fill:#EDF0FD;} + .d2-2796703163 .fill-AB5{fill:#F7F8FE;} + .d2-2796703163 .stroke-N1{stroke:#0A0F25;} + .d2-2796703163 .stroke-N2{stroke:#676C7E;} + .d2-2796703163 .stroke-N3{stroke:#9499AB;} + .d2-2796703163 .stroke-N4{stroke:#CFD2DD;} + .d2-2796703163 .stroke-N5{stroke:#DEE1EB;} + .d2-2796703163 .stroke-N6{stroke:#EEF1F8;} + .d2-2796703163 .stroke-N7{stroke:#FFFFFF;} + .d2-2796703163 .stroke-B1{stroke:#0D32B2;} + .d2-2796703163 .stroke-B2{stroke:#0D32B2;} + .d2-2796703163 .stroke-B3{stroke:#E3E9FD;} + .d2-2796703163 .stroke-B4{stroke:#E3E9FD;} + .d2-2796703163 .stroke-B5{stroke:#EDF0FD;} + .d2-2796703163 .stroke-B6{stroke:#F7F8FE;} + .d2-2796703163 .stroke-AA2{stroke:#4A6FF3;} + .d2-2796703163 .stroke-AA4{stroke:#EDF0FD;} + .d2-2796703163 .stroke-AA5{stroke:#F7F8FE;} + .d2-2796703163 .stroke-AB4{stroke:#EDF0FD;} + .d2-2796703163 .stroke-AB5{stroke:#F7F8FE;} + .d2-2796703163 .background-color-N1{background-color:#0A0F25;} + .d2-2796703163 .background-color-N2{background-color:#676C7E;} + .d2-2796703163 .background-color-N3{background-color:#9499AB;} + .d2-2796703163 .background-color-N4{background-color:#CFD2DD;} + .d2-2796703163 .background-color-N5{background-color:#DEE1EB;} + .d2-2796703163 .background-color-N6{background-color:#EEF1F8;} + .d2-2796703163 .background-color-N7{background-color:#FFFFFF;} + .d2-2796703163 .background-color-B1{background-color:#0D32B2;} + .d2-2796703163 .background-color-B2{background-color:#0D32B2;} + .d2-2796703163 .background-color-B3{background-color:#E3E9FD;} + .d2-2796703163 .background-color-B4{background-color:#E3E9FD;} + .d2-2796703163 .background-color-B5{background-color:#EDF0FD;} + .d2-2796703163 .background-color-B6{background-color:#F7F8FE;} + .d2-2796703163 .background-color-AA2{background-color:#4A6FF3;} + .d2-2796703163 .background-color-AA4{background-color:#EDF0FD;} + .d2-2796703163 .background-color-AA5{background-color:#F7F8FE;} + .d2-2796703163 .background-color-AB4{background-color:#EDF0FD;} + .d2-2796703163 .background-color-AB5{background-color:#F7F8FE;} + .d2-2796703163 .color-N1{color:#0A0F25;} + .d2-2796703163 .color-N2{color:#676C7E;} + .d2-2796703163 .color-N3{color:#9499AB;} + .d2-2796703163 .color-N4{color:#CFD2DD;} + .d2-2796703163 .color-N5{color:#DEE1EB;} + .d2-2796703163 .color-N6{color:#EEF1F8;} + .d2-2796703163 .color-N7{color:#FFFFFF;} + .d2-2796703163 .color-B1{color:#0D32B2;} + .d2-2796703163 .color-B2{color:#0D32B2;} + .d2-2796703163 .color-B3{color:#E3E9FD;} + .d2-2796703163 .color-B4{color:#E3E9FD;} + .d2-2796703163 .color-B5{color:#EDF0FD;} + .d2-2796703163 .color-B6{color:#F7F8FE;} + .d2-2796703163 .color-AA2{color:#4A6FF3;} + .d2-2796703163 .color-AA4{color:#EDF0FD;} + .d2-2796703163 .color-AA5{color:#F7F8FE;} + .d2-2796703163 .color-AB4{color:#EDF0FD;} + .d2-2796703163 .color-AB5{color:#F7F8FE;}.appendix text.text{fill:#0A0F25}.md{--color-fg-default:#0A0F25;--color-fg-muted:#676C7E;--color-fg-subtle:#9499AB;--color-canvas-default:#FFFFFF;--color-canvas-subtle:#EEF1F8;--color-border-default:#0D32B2;--color-border-muted:#0D32B2;--color-neutral-muted:#EEF1F8;--color-accent-fg:#0D32B2;--color-accent-emphasis:#0D32B2;--color-attention-subtle:#676C7E;--color-danger-fg:red;}.sketch-overlay-B1{fill:url(#streaks-darker);mix-blend-mode:lighten}.sketch-overlay-B2{fill:url(#streaks-darker);mix-blend-mode:lighten}.sketch-overlay-B3{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-B4{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-B5{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-B6{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-AA2{fill:url(#streaks-dark);mix-blend-mode:overlay}.sketch-overlay-AA4{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-AA5{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-AB4{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-AB5{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-N1{fill:url(#streaks-darker);mix-blend-mode:lighten}.sketch-overlay-N2{fill:url(#streaks-dark);mix-blend-mode:overlay}.sketch-overlay-N3{fill:url(#streaks-normal);mix-blend-mode:color-burn}.sketch-overlay-N4{fill:url(#streaks-normal);mix-blend-mode:color-burn}.sketch-overlay-N5{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-N6{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-N7{fill:url(#streaks-bright);mix-blend-mode:darken}.light-code{display: block}.dark-code{display: none}]]>atreeandnodessomemoremanythenhereyouhavehierarchyfinallyanotherofnestingtreesatreeinsidehierarchyroot diff --git a/e2etests/testdata/stable/direction/dagre/board.exp.json b/e2etests/testdata/stable/direction/dagre/board.exp.json index 51c75f9e18..212d159ab8 100644 --- a/e2etests/testdata/stable/direction/dagre/board.exp.json +++ b/e2etests/testdata/stable/direction/dagre/board.exp.json @@ -643,6 +643,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 87, @@ -690,6 +691,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 87, @@ -737,6 +739,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 87, @@ -784,6 +787,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 87, @@ -831,6 +835,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 87, @@ -878,6 +883,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 87, @@ -925,6 +931,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 87, @@ -972,6 +979,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 87, @@ -1019,6 +1027,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 87, @@ -1066,6 +1075,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 87, @@ -1113,6 +1123,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 87, @@ -1160,6 +1171,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 87, diff --git a/e2etests/testdata/stable/direction/dagre/sketch.exp.svg b/e2etests/testdata/stable/direction/dagre/sketch.exp.svg index 184eb87d8c..103e1c60cc 100644 --- a/e2etests/testdata/stable/direction/dagre/sketch.exp.svg +++ b/e2etests/testdata/stable/direction/dagre/sketch.exp.svg @@ -1,16 +1,16 @@ -abcde12345abcde + .d2-1704811701 .fill-N1{fill:#0A0F25;} + .d2-1704811701 .fill-N2{fill:#676C7E;} + .d2-1704811701 .fill-N3{fill:#9499AB;} + .d2-1704811701 .fill-N4{fill:#CFD2DD;} + .d2-1704811701 .fill-N5{fill:#DEE1EB;} + .d2-1704811701 .fill-N6{fill:#EEF1F8;} + .d2-1704811701 .fill-N7{fill:#FFFFFF;} + .d2-1704811701 .fill-B1{fill:#0D32B2;} + .d2-1704811701 .fill-B2{fill:#0D32B2;} + .d2-1704811701 .fill-B3{fill:#E3E9FD;} + .d2-1704811701 .fill-B4{fill:#E3E9FD;} + .d2-1704811701 .fill-B5{fill:#EDF0FD;} + .d2-1704811701 .fill-B6{fill:#F7F8FE;} + .d2-1704811701 .fill-AA2{fill:#4A6FF3;} + .d2-1704811701 .fill-AA4{fill:#EDF0FD;} + .d2-1704811701 .fill-AA5{fill:#F7F8FE;} + .d2-1704811701 .fill-AB4{fill:#EDF0FD;} + .d2-1704811701 .fill-AB5{fill:#F7F8FE;} + .d2-1704811701 .stroke-N1{stroke:#0A0F25;} + .d2-1704811701 .stroke-N2{stroke:#676C7E;} + .d2-1704811701 .stroke-N3{stroke:#9499AB;} + .d2-1704811701 .stroke-N4{stroke:#CFD2DD;} + .d2-1704811701 .stroke-N5{stroke:#DEE1EB;} + .d2-1704811701 .stroke-N6{stroke:#EEF1F8;} + .d2-1704811701 .stroke-N7{stroke:#FFFFFF;} + .d2-1704811701 .stroke-B1{stroke:#0D32B2;} + .d2-1704811701 .stroke-B2{stroke:#0D32B2;} + .d2-1704811701 .stroke-B3{stroke:#E3E9FD;} + .d2-1704811701 .stroke-B4{stroke:#E3E9FD;} + .d2-1704811701 .stroke-B5{stroke:#EDF0FD;} + .d2-1704811701 .stroke-B6{stroke:#F7F8FE;} + .d2-1704811701 .stroke-AA2{stroke:#4A6FF3;} + .d2-1704811701 .stroke-AA4{stroke:#EDF0FD;} + .d2-1704811701 .stroke-AA5{stroke:#F7F8FE;} + .d2-1704811701 .stroke-AB4{stroke:#EDF0FD;} + .d2-1704811701 .stroke-AB5{stroke:#F7F8FE;} + .d2-1704811701 .background-color-N1{background-color:#0A0F25;} + .d2-1704811701 .background-color-N2{background-color:#676C7E;} + .d2-1704811701 .background-color-N3{background-color:#9499AB;} + .d2-1704811701 .background-color-N4{background-color:#CFD2DD;} + .d2-1704811701 .background-color-N5{background-color:#DEE1EB;} + .d2-1704811701 .background-color-N6{background-color:#EEF1F8;} + .d2-1704811701 .background-color-N7{background-color:#FFFFFF;} + .d2-1704811701 .background-color-B1{background-color:#0D32B2;} + .d2-1704811701 .background-color-B2{background-color:#0D32B2;} + .d2-1704811701 .background-color-B3{background-color:#E3E9FD;} + .d2-1704811701 .background-color-B4{background-color:#E3E9FD;} + .d2-1704811701 .background-color-B5{background-color:#EDF0FD;} + .d2-1704811701 .background-color-B6{background-color:#F7F8FE;} + .d2-1704811701 .background-color-AA2{background-color:#4A6FF3;} + .d2-1704811701 .background-color-AA4{background-color:#EDF0FD;} + .d2-1704811701 .background-color-AA5{background-color:#F7F8FE;} + .d2-1704811701 .background-color-AB4{background-color:#EDF0FD;} + .d2-1704811701 .background-color-AB5{background-color:#F7F8FE;} + .d2-1704811701 .color-N1{color:#0A0F25;} + .d2-1704811701 .color-N2{color:#676C7E;} + .d2-1704811701 .color-N3{color:#9499AB;} + .d2-1704811701 .color-N4{color:#CFD2DD;} + .d2-1704811701 .color-N5{color:#DEE1EB;} + .d2-1704811701 .color-N6{color:#EEF1F8;} + .d2-1704811701 .color-N7{color:#FFFFFF;} + .d2-1704811701 .color-B1{color:#0D32B2;} + .d2-1704811701 .color-B2{color:#0D32B2;} + .d2-1704811701 .color-B3{color:#E3E9FD;} + .d2-1704811701 .color-B4{color:#E3E9FD;} + .d2-1704811701 .color-B5{color:#EDF0FD;} + .d2-1704811701 .color-B6{color:#F7F8FE;} + .d2-1704811701 .color-AA2{color:#4A6FF3;} + .d2-1704811701 .color-AA4{color:#EDF0FD;} + .d2-1704811701 .color-AA5{color:#F7F8FE;} + .d2-1704811701 .color-AB4{color:#EDF0FD;} + .d2-1704811701 .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}]]>abcde12345abcde diff --git a/e2etests/testdata/stable/direction/elk/board.exp.json b/e2etests/testdata/stable/direction/elk/board.exp.json index af31943780..411b992783 100644 --- a/e2etests/testdata/stable/direction/elk/board.exp.json +++ b/e2etests/testdata/stable/direction/elk/board.exp.json @@ -643,6 +643,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 139, @@ -681,6 +682,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 139, @@ -719,6 +721,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 139, @@ -757,6 +760,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 139, @@ -795,6 +799,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 139, @@ -833,6 +838,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 139, @@ -871,6 +877,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 139, @@ -909,6 +916,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 139, @@ -947,6 +955,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 139, @@ -985,6 +994,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 139, @@ -1023,6 +1033,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 139, @@ -1061,6 +1072,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 139, diff --git a/e2etests/testdata/stable/direction/elk/sketch.exp.svg b/e2etests/testdata/stable/direction/elk/sketch.exp.svg index ca8cd37cf2..ff5bfa28f8 100644 --- a/e2etests/testdata/stable/direction/elk/sketch.exp.svg +++ b/e2etests/testdata/stable/direction/elk/sketch.exp.svg @@ -1,16 +1,16 @@ -abcde12345abcde + .d2-55429049 .fill-N1{fill:#0A0F25;} + .d2-55429049 .fill-N2{fill:#676C7E;} + .d2-55429049 .fill-N3{fill:#9499AB;} + .d2-55429049 .fill-N4{fill:#CFD2DD;} + .d2-55429049 .fill-N5{fill:#DEE1EB;} + .d2-55429049 .fill-N6{fill:#EEF1F8;} + .d2-55429049 .fill-N7{fill:#FFFFFF;} + .d2-55429049 .fill-B1{fill:#0D32B2;} + .d2-55429049 .fill-B2{fill:#0D32B2;} + .d2-55429049 .fill-B3{fill:#E3E9FD;} + .d2-55429049 .fill-B4{fill:#E3E9FD;} + .d2-55429049 .fill-B5{fill:#EDF0FD;} + .d2-55429049 .fill-B6{fill:#F7F8FE;} + .d2-55429049 .fill-AA2{fill:#4A6FF3;} + .d2-55429049 .fill-AA4{fill:#EDF0FD;} + .d2-55429049 .fill-AA5{fill:#F7F8FE;} + .d2-55429049 .fill-AB4{fill:#EDF0FD;} + .d2-55429049 .fill-AB5{fill:#F7F8FE;} + .d2-55429049 .stroke-N1{stroke:#0A0F25;} + .d2-55429049 .stroke-N2{stroke:#676C7E;} + .d2-55429049 .stroke-N3{stroke:#9499AB;} + .d2-55429049 .stroke-N4{stroke:#CFD2DD;} + .d2-55429049 .stroke-N5{stroke:#DEE1EB;} + .d2-55429049 .stroke-N6{stroke:#EEF1F8;} + .d2-55429049 .stroke-N7{stroke:#FFFFFF;} + .d2-55429049 .stroke-B1{stroke:#0D32B2;} + .d2-55429049 .stroke-B2{stroke:#0D32B2;} + .d2-55429049 .stroke-B3{stroke:#E3E9FD;} + .d2-55429049 .stroke-B4{stroke:#E3E9FD;} + .d2-55429049 .stroke-B5{stroke:#EDF0FD;} + .d2-55429049 .stroke-B6{stroke:#F7F8FE;} + .d2-55429049 .stroke-AA2{stroke:#4A6FF3;} + .d2-55429049 .stroke-AA4{stroke:#EDF0FD;} + .d2-55429049 .stroke-AA5{stroke:#F7F8FE;} + .d2-55429049 .stroke-AB4{stroke:#EDF0FD;} + .d2-55429049 .stroke-AB5{stroke:#F7F8FE;} + .d2-55429049 .background-color-N1{background-color:#0A0F25;} + .d2-55429049 .background-color-N2{background-color:#676C7E;} + .d2-55429049 .background-color-N3{background-color:#9499AB;} + .d2-55429049 .background-color-N4{background-color:#CFD2DD;} + .d2-55429049 .background-color-N5{background-color:#DEE1EB;} + .d2-55429049 .background-color-N6{background-color:#EEF1F8;} + .d2-55429049 .background-color-N7{background-color:#FFFFFF;} + .d2-55429049 .background-color-B1{background-color:#0D32B2;} + .d2-55429049 .background-color-B2{background-color:#0D32B2;} + .d2-55429049 .background-color-B3{background-color:#E3E9FD;} + .d2-55429049 .background-color-B4{background-color:#E3E9FD;} + .d2-55429049 .background-color-B5{background-color:#EDF0FD;} + .d2-55429049 .background-color-B6{background-color:#F7F8FE;} + .d2-55429049 .background-color-AA2{background-color:#4A6FF3;} + .d2-55429049 .background-color-AA4{background-color:#EDF0FD;} + .d2-55429049 .background-color-AA5{background-color:#F7F8FE;} + .d2-55429049 .background-color-AB4{background-color:#EDF0FD;} + .d2-55429049 .background-color-AB5{background-color:#F7F8FE;} + .d2-55429049 .color-N1{color:#0A0F25;} + .d2-55429049 .color-N2{color:#676C7E;} + .d2-55429049 .color-N3{color:#9499AB;} + .d2-55429049 .color-N4{color:#CFD2DD;} + .d2-55429049 .color-N5{color:#DEE1EB;} + .d2-55429049 .color-N6{color:#EEF1F8;} + .d2-55429049 .color-N7{color:#FFFFFF;} + .d2-55429049 .color-B1{color:#0D32B2;} + .d2-55429049 .color-B2{color:#0D32B2;} + .d2-55429049 .color-B3{color:#E3E9FD;} + .d2-55429049 .color-B4{color:#E3E9FD;} + .d2-55429049 .color-B5{color:#EDF0FD;} + .d2-55429049 .color-B6{color:#F7F8FE;} + .d2-55429049 .color-AA2{color:#4A6FF3;} + .d2-55429049 .color-AA4{color:#EDF0FD;} + .d2-55429049 .color-AA5{color:#F7F8FE;} + .d2-55429049 .color-AB4{color:#EDF0FD;} + .d2-55429049 .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}]]>abcde12345abcde diff --git a/e2etests/testdata/stable/edge-label-overflow/dagre/board.exp.json b/e2etests/testdata/stable/edge-label-overflow/dagre/board.exp.json index 4b32647079..af3e9b6b91 100644 --- a/e2etests/testdata/stable/edge-label-overflow/dagre/board.exp.json +++ b/e2etests/testdata/stable/edge-label-overflow/dagre/board.exp.json @@ -151,6 +151,7 @@ "labelHeight": 21, "labelPosition": "INSIDE_MIDDLE_CENTER", "labelPercentage": 0, + "link": "", "route": [ { "x": 126.5, @@ -198,6 +199,7 @@ "labelHeight": 21, "labelPosition": "INSIDE_MIDDLE_CENTER", "labelPercentage": 0, + "link": "", "route": [ { "x": 193, @@ -245,6 +247,7 @@ "labelHeight": 21, "labelPosition": "INSIDE_MIDDLE_CENTER", "labelPercentage": 0, + "link": "", "route": [ { "x": 159.75, diff --git a/e2etests/testdata/stable/edge-label-overflow/dagre/sketch.exp.svg b/e2etests/testdata/stable/edge-label-overflow/dagre/sketch.exp.svg index fcc54ea71f..1da0c9ced5 100644 --- a/e2etests/testdata/stable/edge-label-overflow/dagre/sketch.exp.svg +++ b/e2etests/testdata/stable/edge-label-overflow/dagre/sketch.exp.svg @@ -1,16 +1,16 @@ -studentcommittee chaircommittee Apply for appeal Deny. Need more informationAccept appeal + .d2-828254482 .fill-N1{fill:#0A0F25;} + .d2-828254482 .fill-N2{fill:#676C7E;} + .d2-828254482 .fill-N3{fill:#9499AB;} + .d2-828254482 .fill-N4{fill:#CFD2DD;} + .d2-828254482 .fill-N5{fill:#DEE1EB;} + .d2-828254482 .fill-N6{fill:#EEF1F8;} + .d2-828254482 .fill-N7{fill:#FFFFFF;} + .d2-828254482 .fill-B1{fill:#0D32B2;} + .d2-828254482 .fill-B2{fill:#0D32B2;} + .d2-828254482 .fill-B3{fill:#E3E9FD;} + .d2-828254482 .fill-B4{fill:#E3E9FD;} + .d2-828254482 .fill-B5{fill:#EDF0FD;} + .d2-828254482 .fill-B6{fill:#F7F8FE;} + .d2-828254482 .fill-AA2{fill:#4A6FF3;} + .d2-828254482 .fill-AA4{fill:#EDF0FD;} + .d2-828254482 .fill-AA5{fill:#F7F8FE;} + .d2-828254482 .fill-AB4{fill:#EDF0FD;} + .d2-828254482 .fill-AB5{fill:#F7F8FE;} + .d2-828254482 .stroke-N1{stroke:#0A0F25;} + .d2-828254482 .stroke-N2{stroke:#676C7E;} + .d2-828254482 .stroke-N3{stroke:#9499AB;} + .d2-828254482 .stroke-N4{stroke:#CFD2DD;} + .d2-828254482 .stroke-N5{stroke:#DEE1EB;} + .d2-828254482 .stroke-N6{stroke:#EEF1F8;} + .d2-828254482 .stroke-N7{stroke:#FFFFFF;} + .d2-828254482 .stroke-B1{stroke:#0D32B2;} + .d2-828254482 .stroke-B2{stroke:#0D32B2;} + .d2-828254482 .stroke-B3{stroke:#E3E9FD;} + .d2-828254482 .stroke-B4{stroke:#E3E9FD;} + .d2-828254482 .stroke-B5{stroke:#EDF0FD;} + .d2-828254482 .stroke-B6{stroke:#F7F8FE;} + .d2-828254482 .stroke-AA2{stroke:#4A6FF3;} + .d2-828254482 .stroke-AA4{stroke:#EDF0FD;} + .d2-828254482 .stroke-AA5{stroke:#F7F8FE;} + .d2-828254482 .stroke-AB4{stroke:#EDF0FD;} + .d2-828254482 .stroke-AB5{stroke:#F7F8FE;} + .d2-828254482 .background-color-N1{background-color:#0A0F25;} + .d2-828254482 .background-color-N2{background-color:#676C7E;} + .d2-828254482 .background-color-N3{background-color:#9499AB;} + .d2-828254482 .background-color-N4{background-color:#CFD2DD;} + .d2-828254482 .background-color-N5{background-color:#DEE1EB;} + .d2-828254482 .background-color-N6{background-color:#EEF1F8;} + .d2-828254482 .background-color-N7{background-color:#FFFFFF;} + .d2-828254482 .background-color-B1{background-color:#0D32B2;} + .d2-828254482 .background-color-B2{background-color:#0D32B2;} + .d2-828254482 .background-color-B3{background-color:#E3E9FD;} + .d2-828254482 .background-color-B4{background-color:#E3E9FD;} + .d2-828254482 .background-color-B5{background-color:#EDF0FD;} + .d2-828254482 .background-color-B6{background-color:#F7F8FE;} + .d2-828254482 .background-color-AA2{background-color:#4A6FF3;} + .d2-828254482 .background-color-AA4{background-color:#EDF0FD;} + .d2-828254482 .background-color-AA5{background-color:#F7F8FE;} + .d2-828254482 .background-color-AB4{background-color:#EDF0FD;} + .d2-828254482 .background-color-AB5{background-color:#F7F8FE;} + .d2-828254482 .color-N1{color:#0A0F25;} + .d2-828254482 .color-N2{color:#676C7E;} + .d2-828254482 .color-N3{color:#9499AB;} + .d2-828254482 .color-N4{color:#CFD2DD;} + .d2-828254482 .color-N5{color:#DEE1EB;} + .d2-828254482 .color-N6{color:#EEF1F8;} + .d2-828254482 .color-N7{color:#FFFFFF;} + .d2-828254482 .color-B1{color:#0D32B2;} + .d2-828254482 .color-B2{color:#0D32B2;} + .d2-828254482 .color-B3{color:#E3E9FD;} + .d2-828254482 .color-B4{color:#E3E9FD;} + .d2-828254482 .color-B5{color:#EDF0FD;} + .d2-828254482 .color-B6{color:#F7F8FE;} + .d2-828254482 .color-AA2{color:#4A6FF3;} + .d2-828254482 .color-AA4{color:#EDF0FD;} + .d2-828254482 .color-AA5{color:#F7F8FE;} + .d2-828254482 .color-AB4{color:#EDF0FD;} + .d2-828254482 .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}]]>studentcommittee chaircommittee Apply for appeal Deny. Need more informationAccept appeal diff --git a/e2etests/testdata/stable/edge-label-overflow/elk/board.exp.json b/e2etests/testdata/stable/edge-label-overflow/elk/board.exp.json index ba7cc813d8..ce43bdceff 100644 --- a/e2etests/testdata/stable/edge-label-overflow/elk/board.exp.json +++ b/e2etests/testdata/stable/edge-label-overflow/elk/board.exp.json @@ -151,6 +151,7 @@ "labelHeight": 21, "labelPosition": "INSIDE_MIDDLE_CENTER", "labelPercentage": 0, + "link": "", "route": [ { "x": 130.58299255371094, @@ -205,6 +206,7 @@ "labelHeight": 21, "labelPosition": "INSIDE_MIDDLE_CENTER", "labelPercentage": 0, + "link": "", "route": [ { "x": 163.91600036621094, @@ -259,6 +261,7 @@ "labelHeight": 21, "labelPosition": "INSIDE_MIDDLE_CENTER", "labelPercentage": 0, + "link": "", "route": [ { "x": 147.25, diff --git a/e2etests/testdata/stable/edge-label-overflow/elk/sketch.exp.svg b/e2etests/testdata/stable/edge-label-overflow/elk/sketch.exp.svg index 7138c2889d..a3b44e1012 100644 --- a/e2etests/testdata/stable/edge-label-overflow/elk/sketch.exp.svg +++ b/e2etests/testdata/stable/edge-label-overflow/elk/sketch.exp.svg @@ -1,16 +1,16 @@ -studentcommittee chaircommittee Apply for appeal Deny. Need more informationAccept appeal + .d2-1299507912 .fill-N1{fill:#0A0F25;} + .d2-1299507912 .fill-N2{fill:#676C7E;} + .d2-1299507912 .fill-N3{fill:#9499AB;} + .d2-1299507912 .fill-N4{fill:#CFD2DD;} + .d2-1299507912 .fill-N5{fill:#DEE1EB;} + .d2-1299507912 .fill-N6{fill:#EEF1F8;} + .d2-1299507912 .fill-N7{fill:#FFFFFF;} + .d2-1299507912 .fill-B1{fill:#0D32B2;} + .d2-1299507912 .fill-B2{fill:#0D32B2;} + .d2-1299507912 .fill-B3{fill:#E3E9FD;} + .d2-1299507912 .fill-B4{fill:#E3E9FD;} + .d2-1299507912 .fill-B5{fill:#EDF0FD;} + .d2-1299507912 .fill-B6{fill:#F7F8FE;} + .d2-1299507912 .fill-AA2{fill:#4A6FF3;} + .d2-1299507912 .fill-AA4{fill:#EDF0FD;} + .d2-1299507912 .fill-AA5{fill:#F7F8FE;} + .d2-1299507912 .fill-AB4{fill:#EDF0FD;} + .d2-1299507912 .fill-AB5{fill:#F7F8FE;} + .d2-1299507912 .stroke-N1{stroke:#0A0F25;} + .d2-1299507912 .stroke-N2{stroke:#676C7E;} + .d2-1299507912 .stroke-N3{stroke:#9499AB;} + .d2-1299507912 .stroke-N4{stroke:#CFD2DD;} + .d2-1299507912 .stroke-N5{stroke:#DEE1EB;} + .d2-1299507912 .stroke-N6{stroke:#EEF1F8;} + .d2-1299507912 .stroke-N7{stroke:#FFFFFF;} + .d2-1299507912 .stroke-B1{stroke:#0D32B2;} + .d2-1299507912 .stroke-B2{stroke:#0D32B2;} + .d2-1299507912 .stroke-B3{stroke:#E3E9FD;} + .d2-1299507912 .stroke-B4{stroke:#E3E9FD;} + .d2-1299507912 .stroke-B5{stroke:#EDF0FD;} + .d2-1299507912 .stroke-B6{stroke:#F7F8FE;} + .d2-1299507912 .stroke-AA2{stroke:#4A6FF3;} + .d2-1299507912 .stroke-AA4{stroke:#EDF0FD;} + .d2-1299507912 .stroke-AA5{stroke:#F7F8FE;} + .d2-1299507912 .stroke-AB4{stroke:#EDF0FD;} + .d2-1299507912 .stroke-AB5{stroke:#F7F8FE;} + .d2-1299507912 .background-color-N1{background-color:#0A0F25;} + .d2-1299507912 .background-color-N2{background-color:#676C7E;} + .d2-1299507912 .background-color-N3{background-color:#9499AB;} + .d2-1299507912 .background-color-N4{background-color:#CFD2DD;} + .d2-1299507912 .background-color-N5{background-color:#DEE1EB;} + .d2-1299507912 .background-color-N6{background-color:#EEF1F8;} + .d2-1299507912 .background-color-N7{background-color:#FFFFFF;} + .d2-1299507912 .background-color-B1{background-color:#0D32B2;} + .d2-1299507912 .background-color-B2{background-color:#0D32B2;} + .d2-1299507912 .background-color-B3{background-color:#E3E9FD;} + .d2-1299507912 .background-color-B4{background-color:#E3E9FD;} + .d2-1299507912 .background-color-B5{background-color:#EDF0FD;} + .d2-1299507912 .background-color-B6{background-color:#F7F8FE;} + .d2-1299507912 .background-color-AA2{background-color:#4A6FF3;} + .d2-1299507912 .background-color-AA4{background-color:#EDF0FD;} + .d2-1299507912 .background-color-AA5{background-color:#F7F8FE;} + .d2-1299507912 .background-color-AB4{background-color:#EDF0FD;} + .d2-1299507912 .background-color-AB5{background-color:#F7F8FE;} + .d2-1299507912 .color-N1{color:#0A0F25;} + .d2-1299507912 .color-N2{color:#676C7E;} + .d2-1299507912 .color-N3{color:#9499AB;} + .d2-1299507912 .color-N4{color:#CFD2DD;} + .d2-1299507912 .color-N5{color:#DEE1EB;} + .d2-1299507912 .color-N6{color:#EEF1F8;} + .d2-1299507912 .color-N7{color:#FFFFFF;} + .d2-1299507912 .color-B1{color:#0D32B2;} + .d2-1299507912 .color-B2{color:#0D32B2;} + .d2-1299507912 .color-B3{color:#E3E9FD;} + .d2-1299507912 .color-B4{color:#E3E9FD;} + .d2-1299507912 .color-B5{color:#EDF0FD;} + .d2-1299507912 .color-B6{color:#F7F8FE;} + .d2-1299507912 .color-AA2{color:#4A6FF3;} + .d2-1299507912 .color-AA4{color:#EDF0FD;} + .d2-1299507912 .color-AA5{color:#F7F8FE;} + .d2-1299507912 .color-AB4{color:#EDF0FD;} + .d2-1299507912 .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}]]>studentcommittee chaircommittee Apply for appeal Deny. Need more informationAccept appeal diff --git a/e2etests/testdata/stable/elk_border_radius/dagre/board.exp.json b/e2etests/testdata/stable/elk_border_radius/dagre/board.exp.json index 8539ce2874..f8e1582539 100644 --- a/e2etests/testdata/stable/elk_border_radius/dagre/board.exp.json +++ b/e2etests/testdata/stable/elk_border_radius/dagre/board.exp.json @@ -274,6 +274,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 226.5, @@ -320,6 +321,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 226.5, @@ -367,6 +369,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 252.5, @@ -414,6 +417,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 278.5, @@ -461,6 +465,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 279, diff --git a/e2etests/testdata/stable/elk_border_radius/dagre/sketch.exp.svg b/e2etests/testdata/stable/elk_border_radius/dagre/sketch.exp.svg index 8395914f92..281a055d25 100644 --- a/e2etests/testdata/stable/elk_border_radius/dagre/sketch.exp.svg +++ b/e2etests/testdata/stable/elk_border_radius/dagre/sketch.exp.svg @@ -1,9 +1,9 @@ -abcefg + .d2-876572791 .fill-N1{fill:#0A0F25;} + .d2-876572791 .fill-N2{fill:#676C7E;} + .d2-876572791 .fill-N3{fill:#9499AB;} + .d2-876572791 .fill-N4{fill:#CFD2DD;} + .d2-876572791 .fill-N5{fill:#DEE1EB;} + .d2-876572791 .fill-N6{fill:#EEF1F8;} + .d2-876572791 .fill-N7{fill:#FFFFFF;} + .d2-876572791 .fill-B1{fill:#0D32B2;} + .d2-876572791 .fill-B2{fill:#0D32B2;} + .d2-876572791 .fill-B3{fill:#E3E9FD;} + .d2-876572791 .fill-B4{fill:#E3E9FD;} + .d2-876572791 .fill-B5{fill:#EDF0FD;} + .d2-876572791 .fill-B6{fill:#F7F8FE;} + .d2-876572791 .fill-AA2{fill:#4A6FF3;} + .d2-876572791 .fill-AA4{fill:#EDF0FD;} + .d2-876572791 .fill-AA5{fill:#F7F8FE;} + .d2-876572791 .fill-AB4{fill:#EDF0FD;} + .d2-876572791 .fill-AB5{fill:#F7F8FE;} + .d2-876572791 .stroke-N1{stroke:#0A0F25;} + .d2-876572791 .stroke-N2{stroke:#676C7E;} + .d2-876572791 .stroke-N3{stroke:#9499AB;} + .d2-876572791 .stroke-N4{stroke:#CFD2DD;} + .d2-876572791 .stroke-N5{stroke:#DEE1EB;} + .d2-876572791 .stroke-N6{stroke:#EEF1F8;} + .d2-876572791 .stroke-N7{stroke:#FFFFFF;} + .d2-876572791 .stroke-B1{stroke:#0D32B2;} + .d2-876572791 .stroke-B2{stroke:#0D32B2;} + .d2-876572791 .stroke-B3{stroke:#E3E9FD;} + .d2-876572791 .stroke-B4{stroke:#E3E9FD;} + .d2-876572791 .stroke-B5{stroke:#EDF0FD;} + .d2-876572791 .stroke-B6{stroke:#F7F8FE;} + .d2-876572791 .stroke-AA2{stroke:#4A6FF3;} + .d2-876572791 .stroke-AA4{stroke:#EDF0FD;} + .d2-876572791 .stroke-AA5{stroke:#F7F8FE;} + .d2-876572791 .stroke-AB4{stroke:#EDF0FD;} + .d2-876572791 .stroke-AB5{stroke:#F7F8FE;} + .d2-876572791 .background-color-N1{background-color:#0A0F25;} + .d2-876572791 .background-color-N2{background-color:#676C7E;} + .d2-876572791 .background-color-N3{background-color:#9499AB;} + .d2-876572791 .background-color-N4{background-color:#CFD2DD;} + .d2-876572791 .background-color-N5{background-color:#DEE1EB;} + .d2-876572791 .background-color-N6{background-color:#EEF1F8;} + .d2-876572791 .background-color-N7{background-color:#FFFFFF;} + .d2-876572791 .background-color-B1{background-color:#0D32B2;} + .d2-876572791 .background-color-B2{background-color:#0D32B2;} + .d2-876572791 .background-color-B3{background-color:#E3E9FD;} + .d2-876572791 .background-color-B4{background-color:#E3E9FD;} + .d2-876572791 .background-color-B5{background-color:#EDF0FD;} + .d2-876572791 .background-color-B6{background-color:#F7F8FE;} + .d2-876572791 .background-color-AA2{background-color:#4A6FF3;} + .d2-876572791 .background-color-AA4{background-color:#EDF0FD;} + .d2-876572791 .background-color-AA5{background-color:#F7F8FE;} + .d2-876572791 .background-color-AB4{background-color:#EDF0FD;} + .d2-876572791 .background-color-AB5{background-color:#F7F8FE;} + .d2-876572791 .color-N1{color:#0A0F25;} + .d2-876572791 .color-N2{color:#676C7E;} + .d2-876572791 .color-N3{color:#9499AB;} + .d2-876572791 .color-N4{color:#CFD2DD;} + .d2-876572791 .color-N5{color:#DEE1EB;} + .d2-876572791 .color-N6{color:#EEF1F8;} + .d2-876572791 .color-N7{color:#FFFFFF;} + .d2-876572791 .color-B1{color:#0D32B2;} + .d2-876572791 .color-B2{color:#0D32B2;} + .d2-876572791 .color-B3{color:#E3E9FD;} + .d2-876572791 .color-B4{color:#E3E9FD;} + .d2-876572791 .color-B5{color:#EDF0FD;} + .d2-876572791 .color-B6{color:#F7F8FE;} + .d2-876572791 .color-AA2{color:#4A6FF3;} + .d2-876572791 .color-AA4{color:#EDF0FD;} + .d2-876572791 .color-AA5{color:#F7F8FE;} + .d2-876572791 .color-AB4{color:#EDF0FD;} + .d2-876572791 .color-AB5{color:#F7F8FE;}.appendix text.text{fill:#0A0F25}.md{--color-fg-default:#0A0F25;--color-fg-muted:#676C7E;--color-fg-subtle:#9499AB;--color-canvas-default:#FFFFFF;--color-canvas-subtle:#EEF1F8;--color-border-default:#0D32B2;--color-border-muted:#0D32B2;--color-neutral-muted:#EEF1F8;--color-accent-fg:#0D32B2;--color-accent-emphasis:#0D32B2;--color-attention-subtle:#676C7E;--color-danger-fg:red;}.sketch-overlay-B1{fill:url(#streaks-darker);mix-blend-mode:lighten}.sketch-overlay-B2{fill:url(#streaks-darker);mix-blend-mode:lighten}.sketch-overlay-B3{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-B4{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-B5{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-B6{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-AA2{fill:url(#streaks-dark);mix-blend-mode:overlay}.sketch-overlay-AA4{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-AA5{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-AB4{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-AB5{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-N1{fill:url(#streaks-darker);mix-blend-mode:lighten}.sketch-overlay-N2{fill:url(#streaks-dark);mix-blend-mode:overlay}.sketch-overlay-N3{fill:url(#streaks-normal);mix-blend-mode:color-burn}.sketch-overlay-N4{fill:url(#streaks-normal);mix-blend-mode:color-burn}.sketch-overlay-N5{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-N6{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-N7{fill:url(#streaks-bright);mix-blend-mode:darken}.light-code{display: block}.dark-code{display: none}]]>abcefg diff --git a/e2etests/testdata/stable/elk_border_radius/elk/board.exp.json b/e2etests/testdata/stable/elk_border_radius/elk/board.exp.json index 823bb7a763..528f2b4f9b 100644 --- a/e2etests/testdata/stable/elk_border_radius/elk/board.exp.json +++ b/e2etests/testdata/stable/elk_border_radius/elk/board.exp.json @@ -274,6 +274,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 117.83300018310547, @@ -319,6 +320,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 151.16600036621094, @@ -365,6 +367,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 184.5, @@ -403,6 +406,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 217.83299255371094, @@ -449,6 +453,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 251.16600036621094, diff --git a/e2etests/testdata/stable/elk_border_radius/elk/sketch.exp.svg b/e2etests/testdata/stable/elk_border_radius/elk/sketch.exp.svg index 169fa0e513..5422986a41 100644 --- a/e2etests/testdata/stable/elk_border_radius/elk/sketch.exp.svg +++ b/e2etests/testdata/stable/elk_border_radius/elk/sketch.exp.svg @@ -1,9 +1,9 @@ -abcefg + .d2-319236909 .fill-N1{fill:#0A0F25;} + .d2-319236909 .fill-N2{fill:#676C7E;} + .d2-319236909 .fill-N3{fill:#9499AB;} + .d2-319236909 .fill-N4{fill:#CFD2DD;} + .d2-319236909 .fill-N5{fill:#DEE1EB;} + .d2-319236909 .fill-N6{fill:#EEF1F8;} + .d2-319236909 .fill-N7{fill:#FFFFFF;} + .d2-319236909 .fill-B1{fill:#0D32B2;} + .d2-319236909 .fill-B2{fill:#0D32B2;} + .d2-319236909 .fill-B3{fill:#E3E9FD;} + .d2-319236909 .fill-B4{fill:#E3E9FD;} + .d2-319236909 .fill-B5{fill:#EDF0FD;} + .d2-319236909 .fill-B6{fill:#F7F8FE;} + .d2-319236909 .fill-AA2{fill:#4A6FF3;} + .d2-319236909 .fill-AA4{fill:#EDF0FD;} + .d2-319236909 .fill-AA5{fill:#F7F8FE;} + .d2-319236909 .fill-AB4{fill:#EDF0FD;} + .d2-319236909 .fill-AB5{fill:#F7F8FE;} + .d2-319236909 .stroke-N1{stroke:#0A0F25;} + .d2-319236909 .stroke-N2{stroke:#676C7E;} + .d2-319236909 .stroke-N3{stroke:#9499AB;} + .d2-319236909 .stroke-N4{stroke:#CFD2DD;} + .d2-319236909 .stroke-N5{stroke:#DEE1EB;} + .d2-319236909 .stroke-N6{stroke:#EEF1F8;} + .d2-319236909 .stroke-N7{stroke:#FFFFFF;} + .d2-319236909 .stroke-B1{stroke:#0D32B2;} + .d2-319236909 .stroke-B2{stroke:#0D32B2;} + .d2-319236909 .stroke-B3{stroke:#E3E9FD;} + .d2-319236909 .stroke-B4{stroke:#E3E9FD;} + .d2-319236909 .stroke-B5{stroke:#EDF0FD;} + .d2-319236909 .stroke-B6{stroke:#F7F8FE;} + .d2-319236909 .stroke-AA2{stroke:#4A6FF3;} + .d2-319236909 .stroke-AA4{stroke:#EDF0FD;} + .d2-319236909 .stroke-AA5{stroke:#F7F8FE;} + .d2-319236909 .stroke-AB4{stroke:#EDF0FD;} + .d2-319236909 .stroke-AB5{stroke:#F7F8FE;} + .d2-319236909 .background-color-N1{background-color:#0A0F25;} + .d2-319236909 .background-color-N2{background-color:#676C7E;} + .d2-319236909 .background-color-N3{background-color:#9499AB;} + .d2-319236909 .background-color-N4{background-color:#CFD2DD;} + .d2-319236909 .background-color-N5{background-color:#DEE1EB;} + .d2-319236909 .background-color-N6{background-color:#EEF1F8;} + .d2-319236909 .background-color-N7{background-color:#FFFFFF;} + .d2-319236909 .background-color-B1{background-color:#0D32B2;} + .d2-319236909 .background-color-B2{background-color:#0D32B2;} + .d2-319236909 .background-color-B3{background-color:#E3E9FD;} + .d2-319236909 .background-color-B4{background-color:#E3E9FD;} + .d2-319236909 .background-color-B5{background-color:#EDF0FD;} + .d2-319236909 .background-color-B6{background-color:#F7F8FE;} + .d2-319236909 .background-color-AA2{background-color:#4A6FF3;} + .d2-319236909 .background-color-AA4{background-color:#EDF0FD;} + .d2-319236909 .background-color-AA5{background-color:#F7F8FE;} + .d2-319236909 .background-color-AB4{background-color:#EDF0FD;} + .d2-319236909 .background-color-AB5{background-color:#F7F8FE;} + .d2-319236909 .color-N1{color:#0A0F25;} + .d2-319236909 .color-N2{color:#676C7E;} + .d2-319236909 .color-N3{color:#9499AB;} + .d2-319236909 .color-N4{color:#CFD2DD;} + .d2-319236909 .color-N5{color:#DEE1EB;} + .d2-319236909 .color-N6{color:#EEF1F8;} + .d2-319236909 .color-N7{color:#FFFFFF;} + .d2-319236909 .color-B1{color:#0D32B2;} + .d2-319236909 .color-B2{color:#0D32B2;} + .d2-319236909 .color-B3{color:#E3E9FD;} + .d2-319236909 .color-B4{color:#E3E9FD;} + .d2-319236909 .color-B5{color:#EDF0FD;} + .d2-319236909 .color-B6{color:#F7F8FE;} + .d2-319236909 .color-AA2{color:#4A6FF3;} + .d2-319236909 .color-AA4{color:#EDF0FD;} + .d2-319236909 .color-AA5{color:#F7F8FE;} + .d2-319236909 .color-AB4{color:#EDF0FD;} + .d2-319236909 .color-AB5{color:#F7F8FE;}.appendix text.text{fill:#0A0F25}.md{--color-fg-default:#0A0F25;--color-fg-muted:#676C7E;--color-fg-subtle:#9499AB;--color-canvas-default:#FFFFFF;--color-canvas-subtle:#EEF1F8;--color-border-default:#0D32B2;--color-border-muted:#0D32B2;--color-neutral-muted:#EEF1F8;--color-accent-fg:#0D32B2;--color-accent-emphasis:#0D32B2;--color-attention-subtle:#676C7E;--color-danger-fg:red;}.sketch-overlay-B1{fill:url(#streaks-darker);mix-blend-mode:lighten}.sketch-overlay-B2{fill:url(#streaks-darker);mix-blend-mode:lighten}.sketch-overlay-B3{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-B4{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-B5{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-B6{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-AA2{fill:url(#streaks-dark);mix-blend-mode:overlay}.sketch-overlay-AA4{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-AA5{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-AB4{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-AB5{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-N1{fill:url(#streaks-darker);mix-blend-mode:lighten}.sketch-overlay-N2{fill:url(#streaks-dark);mix-blend-mode:overlay}.sketch-overlay-N3{fill:url(#streaks-normal);mix-blend-mode:color-burn}.sketch-overlay-N4{fill:url(#streaks-normal);mix-blend-mode:color-burn}.sketch-overlay-N5{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-N6{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-N7{fill:url(#streaks-bright);mix-blend-mode:darken}.light-code{display: block}.dark-code{display: none}]]>abcefg diff --git a/e2etests/testdata/stable/elk_shim/dagre/board.exp.json b/e2etests/testdata/stable/elk_shim/dagre/board.exp.json index cbad13b6ec..b5648931a3 100644 --- a/e2etests/testdata/stable/elk_shim/dagre/board.exp.json +++ b/e2etests/testdata/stable/elk_shim/dagre/board.exp.json @@ -479,6 +479,7 @@ "labelHeight": 21, "labelPosition": "INSIDE_MIDDLE_CENTER", "labelPercentage": 0, + "link": "", "route": [ { "x": 222, @@ -526,6 +527,7 @@ "labelHeight": 21, "labelPosition": "INSIDE_MIDDLE_CENTER", "labelPercentage": 0, + "link": "", "route": [ { "x": 246, @@ -573,6 +575,7 @@ "labelHeight": 21, "labelPosition": "INSIDE_MIDDLE_CENTER", "labelPercentage": 0, + "link": "", "route": [ { "x": 270, @@ -620,6 +623,7 @@ "labelHeight": 21, "labelPosition": "INSIDE_MIDDLE_CENTER", "labelPercentage": 0, + "link": "", "route": [ { "x": 246, @@ -679,6 +683,7 @@ "labelHeight": 21, "labelPosition": "INSIDE_MIDDLE_CENTER", "labelPercentage": 0, + "link": "", "route": [ { "x": 187, @@ -726,6 +731,7 @@ "labelHeight": 21, "labelPosition": "INSIDE_MIDDLE_CENTER", "labelPercentage": 0, + "link": "", "route": [ { "x": 115, @@ -929,6 +935,7 @@ "labelHeight": 21, "labelPosition": "INSIDE_MIDDLE_CENTER", "labelPercentage": 0, + "link": "", "route": [ { "x": 477.5, @@ -976,6 +983,7 @@ "labelHeight": 21, "labelPosition": "INSIDE_MIDDLE_CENTER", "labelPercentage": 0, + "link": "", "route": [ { "x": 535.25, @@ -1023,6 +1031,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 246, diff --git a/e2etests/testdata/stable/elk_shim/dagre/sketch.exp.svg b/e2etests/testdata/stable/elk_shim/dagre/sketch.exp.svg index 990916c6e8..0984805f67 100644 --- a/e2etests/testdata/stable/elk_shim/dagre/sketch.exp.svg +++ b/e2etests/testdata/stable/elk_shim/dagre/sketch.exp.svg @@ -1,23 +1,23 @@ -networkuserapi serverlogscell towerONLINE PORTALLLLdata processorsatellitestransmitteruistorage sendsendsendphone logsmake call accessdisplaypersist + .d2-3936198194 .fill-N1{fill:#0A0F25;} + .d2-3936198194 .fill-N2{fill:#676C7E;} + .d2-3936198194 .fill-N3{fill:#9499AB;} + .d2-3936198194 .fill-N4{fill:#CFD2DD;} + .d2-3936198194 .fill-N5{fill:#DEE1EB;} + .d2-3936198194 .fill-N6{fill:#EEF1F8;} + .d2-3936198194 .fill-N7{fill:#FFFFFF;} + .d2-3936198194 .fill-B1{fill:#0D32B2;} + .d2-3936198194 .fill-B2{fill:#0D32B2;} + .d2-3936198194 .fill-B3{fill:#E3E9FD;} + .d2-3936198194 .fill-B4{fill:#E3E9FD;} + .d2-3936198194 .fill-B5{fill:#EDF0FD;} + .d2-3936198194 .fill-B6{fill:#F7F8FE;} + .d2-3936198194 .fill-AA2{fill:#4A6FF3;} + .d2-3936198194 .fill-AA4{fill:#EDF0FD;} + .d2-3936198194 .fill-AA5{fill:#F7F8FE;} + .d2-3936198194 .fill-AB4{fill:#EDF0FD;} + .d2-3936198194 .fill-AB5{fill:#F7F8FE;} + .d2-3936198194 .stroke-N1{stroke:#0A0F25;} + .d2-3936198194 .stroke-N2{stroke:#676C7E;} + .d2-3936198194 .stroke-N3{stroke:#9499AB;} + .d2-3936198194 .stroke-N4{stroke:#CFD2DD;} + .d2-3936198194 .stroke-N5{stroke:#DEE1EB;} + .d2-3936198194 .stroke-N6{stroke:#EEF1F8;} + .d2-3936198194 .stroke-N7{stroke:#FFFFFF;} + .d2-3936198194 .stroke-B1{stroke:#0D32B2;} + .d2-3936198194 .stroke-B2{stroke:#0D32B2;} + .d2-3936198194 .stroke-B3{stroke:#E3E9FD;} + .d2-3936198194 .stroke-B4{stroke:#E3E9FD;} + .d2-3936198194 .stroke-B5{stroke:#EDF0FD;} + .d2-3936198194 .stroke-B6{stroke:#F7F8FE;} + .d2-3936198194 .stroke-AA2{stroke:#4A6FF3;} + .d2-3936198194 .stroke-AA4{stroke:#EDF0FD;} + .d2-3936198194 .stroke-AA5{stroke:#F7F8FE;} + .d2-3936198194 .stroke-AB4{stroke:#EDF0FD;} + .d2-3936198194 .stroke-AB5{stroke:#F7F8FE;} + .d2-3936198194 .background-color-N1{background-color:#0A0F25;} + .d2-3936198194 .background-color-N2{background-color:#676C7E;} + .d2-3936198194 .background-color-N3{background-color:#9499AB;} + .d2-3936198194 .background-color-N4{background-color:#CFD2DD;} + .d2-3936198194 .background-color-N5{background-color:#DEE1EB;} + .d2-3936198194 .background-color-N6{background-color:#EEF1F8;} + .d2-3936198194 .background-color-N7{background-color:#FFFFFF;} + .d2-3936198194 .background-color-B1{background-color:#0D32B2;} + .d2-3936198194 .background-color-B2{background-color:#0D32B2;} + .d2-3936198194 .background-color-B3{background-color:#E3E9FD;} + .d2-3936198194 .background-color-B4{background-color:#E3E9FD;} + .d2-3936198194 .background-color-B5{background-color:#EDF0FD;} + .d2-3936198194 .background-color-B6{background-color:#F7F8FE;} + .d2-3936198194 .background-color-AA2{background-color:#4A6FF3;} + .d2-3936198194 .background-color-AA4{background-color:#EDF0FD;} + .d2-3936198194 .background-color-AA5{background-color:#F7F8FE;} + .d2-3936198194 .background-color-AB4{background-color:#EDF0FD;} + .d2-3936198194 .background-color-AB5{background-color:#F7F8FE;} + .d2-3936198194 .color-N1{color:#0A0F25;} + .d2-3936198194 .color-N2{color:#676C7E;} + .d2-3936198194 .color-N3{color:#9499AB;} + .d2-3936198194 .color-N4{color:#CFD2DD;} + .d2-3936198194 .color-N5{color:#DEE1EB;} + .d2-3936198194 .color-N6{color:#EEF1F8;} + .d2-3936198194 .color-N7{color:#FFFFFF;} + .d2-3936198194 .color-B1{color:#0D32B2;} + .d2-3936198194 .color-B2{color:#0D32B2;} + .d2-3936198194 .color-B3{color:#E3E9FD;} + .d2-3936198194 .color-B4{color:#E3E9FD;} + .d2-3936198194 .color-B5{color:#EDF0FD;} + .d2-3936198194 .color-B6{color:#F7F8FE;} + .d2-3936198194 .color-AA2{color:#4A6FF3;} + .d2-3936198194 .color-AA4{color:#EDF0FD;} + .d2-3936198194 .color-AA5{color:#F7F8FE;} + .d2-3936198194 .color-AB4{color:#EDF0FD;} + .d2-3936198194 .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}]]>networkuserapi serverlogscell towerONLINE PORTALLLLdata processorsatellitestransmitteruistorage sendsendsendphone logsmake call accessdisplaypersist diff --git a/e2etests/testdata/stable/elk_shim/elk/board.exp.json b/e2etests/testdata/stable/elk_shim/elk/board.exp.json index e70b9c475b..32d9b0767c 100644 --- a/e2etests/testdata/stable/elk_shim/elk/board.exp.json +++ b/e2etests/testdata/stable/elk_shim/elk/board.exp.json @@ -479,6 +479,7 @@ "labelHeight": 21, "labelPosition": "INSIDE_MIDDLE_CENTER", "labelPercentage": 0, + "link": "", "route": [ { "x": 143, @@ -517,6 +518,7 @@ "labelHeight": 21, "labelPosition": "INSIDE_MIDDLE_CENTER", "labelPercentage": 0, + "link": "", "route": [ { "x": 187, @@ -555,6 +557,7 @@ "labelHeight": 21, "labelPosition": "INSIDE_MIDDLE_CENTER", "labelPercentage": 0, + "link": "", "route": [ { "x": 231, @@ -593,6 +596,7 @@ "labelHeight": 21, "labelPosition": "INSIDE_MIDDLE_CENTER", "labelPercentage": 0, + "link": "", "route": [ { "x": 187, @@ -631,6 +635,7 @@ "labelHeight": 21, "labelPosition": "INSIDE_MIDDLE_CENTER", "labelPercentage": 0, + "link": "", "route": [ { "x": 254, @@ -677,6 +682,7 @@ "labelHeight": 21, "labelPosition": "INSIDE_MIDDLE_CENTER", "labelPercentage": 0, + "link": "", "route": [ { "x": 298, @@ -723,6 +729,7 @@ "labelHeight": 21, "labelPosition": "INSIDE_MIDDLE_CENTER", "labelPercentage": 0, + "link": "", "route": [ { "x": 420.0830078125, @@ -777,6 +784,7 @@ "labelHeight": 21, "labelPosition": "INSIDE_MIDDLE_CENTER", "labelPercentage": 0, + "link": "", "route": [ { "x": 400.75, @@ -815,6 +823,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 132.5, diff --git a/e2etests/testdata/stable/elk_shim/elk/sketch.exp.svg b/e2etests/testdata/stable/elk_shim/elk/sketch.exp.svg index e72eb25346..e475fdfed7 100644 --- a/e2etests/testdata/stable/elk_shim/elk/sketch.exp.svg +++ b/e2etests/testdata/stable/elk_shim/elk/sketch.exp.svg @@ -1,23 +1,23 @@ -networkuserapi serverlogscell towerONLINE PORTALLLLdata processorsatellitestransmitteruistorage sendsendsendphone logsmake call accessdisplaypersist + .d2-3809872294 .fill-N1{fill:#0A0F25;} + .d2-3809872294 .fill-N2{fill:#676C7E;} + .d2-3809872294 .fill-N3{fill:#9499AB;} + .d2-3809872294 .fill-N4{fill:#CFD2DD;} + .d2-3809872294 .fill-N5{fill:#DEE1EB;} + .d2-3809872294 .fill-N6{fill:#EEF1F8;} + .d2-3809872294 .fill-N7{fill:#FFFFFF;} + .d2-3809872294 .fill-B1{fill:#0D32B2;} + .d2-3809872294 .fill-B2{fill:#0D32B2;} + .d2-3809872294 .fill-B3{fill:#E3E9FD;} + .d2-3809872294 .fill-B4{fill:#E3E9FD;} + .d2-3809872294 .fill-B5{fill:#EDF0FD;} + .d2-3809872294 .fill-B6{fill:#F7F8FE;} + .d2-3809872294 .fill-AA2{fill:#4A6FF3;} + .d2-3809872294 .fill-AA4{fill:#EDF0FD;} + .d2-3809872294 .fill-AA5{fill:#F7F8FE;} + .d2-3809872294 .fill-AB4{fill:#EDF0FD;} + .d2-3809872294 .fill-AB5{fill:#F7F8FE;} + .d2-3809872294 .stroke-N1{stroke:#0A0F25;} + .d2-3809872294 .stroke-N2{stroke:#676C7E;} + .d2-3809872294 .stroke-N3{stroke:#9499AB;} + .d2-3809872294 .stroke-N4{stroke:#CFD2DD;} + .d2-3809872294 .stroke-N5{stroke:#DEE1EB;} + .d2-3809872294 .stroke-N6{stroke:#EEF1F8;} + .d2-3809872294 .stroke-N7{stroke:#FFFFFF;} + .d2-3809872294 .stroke-B1{stroke:#0D32B2;} + .d2-3809872294 .stroke-B2{stroke:#0D32B2;} + .d2-3809872294 .stroke-B3{stroke:#E3E9FD;} + .d2-3809872294 .stroke-B4{stroke:#E3E9FD;} + .d2-3809872294 .stroke-B5{stroke:#EDF0FD;} + .d2-3809872294 .stroke-B6{stroke:#F7F8FE;} + .d2-3809872294 .stroke-AA2{stroke:#4A6FF3;} + .d2-3809872294 .stroke-AA4{stroke:#EDF0FD;} + .d2-3809872294 .stroke-AA5{stroke:#F7F8FE;} + .d2-3809872294 .stroke-AB4{stroke:#EDF0FD;} + .d2-3809872294 .stroke-AB5{stroke:#F7F8FE;} + .d2-3809872294 .background-color-N1{background-color:#0A0F25;} + .d2-3809872294 .background-color-N2{background-color:#676C7E;} + .d2-3809872294 .background-color-N3{background-color:#9499AB;} + .d2-3809872294 .background-color-N4{background-color:#CFD2DD;} + .d2-3809872294 .background-color-N5{background-color:#DEE1EB;} + .d2-3809872294 .background-color-N6{background-color:#EEF1F8;} + .d2-3809872294 .background-color-N7{background-color:#FFFFFF;} + .d2-3809872294 .background-color-B1{background-color:#0D32B2;} + .d2-3809872294 .background-color-B2{background-color:#0D32B2;} + .d2-3809872294 .background-color-B3{background-color:#E3E9FD;} + .d2-3809872294 .background-color-B4{background-color:#E3E9FD;} + .d2-3809872294 .background-color-B5{background-color:#EDF0FD;} + .d2-3809872294 .background-color-B6{background-color:#F7F8FE;} + .d2-3809872294 .background-color-AA2{background-color:#4A6FF3;} + .d2-3809872294 .background-color-AA4{background-color:#EDF0FD;} + .d2-3809872294 .background-color-AA5{background-color:#F7F8FE;} + .d2-3809872294 .background-color-AB4{background-color:#EDF0FD;} + .d2-3809872294 .background-color-AB5{background-color:#F7F8FE;} + .d2-3809872294 .color-N1{color:#0A0F25;} + .d2-3809872294 .color-N2{color:#676C7E;} + .d2-3809872294 .color-N3{color:#9499AB;} + .d2-3809872294 .color-N4{color:#CFD2DD;} + .d2-3809872294 .color-N5{color:#DEE1EB;} + .d2-3809872294 .color-N6{color:#EEF1F8;} + .d2-3809872294 .color-N7{color:#FFFFFF;} + .d2-3809872294 .color-B1{color:#0D32B2;} + .d2-3809872294 .color-B2{color:#0D32B2;} + .d2-3809872294 .color-B3{color:#E3E9FD;} + .d2-3809872294 .color-B4{color:#E3E9FD;} + .d2-3809872294 .color-B5{color:#EDF0FD;} + .d2-3809872294 .color-B6{color:#F7F8FE;} + .d2-3809872294 .color-AA2{color:#4A6FF3;} + .d2-3809872294 .color-AA4{color:#EDF0FD;} + .d2-3809872294 .color-AA5{color:#F7F8FE;} + .d2-3809872294 .color-AB4{color:#EDF0FD;} + .d2-3809872294 .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}]]>networkuserapi serverlogscell towerONLINE PORTALLLLdata processorsatellitestransmitteruistorage sendsendsendphone logsmake call accessdisplaypersist diff --git a/e2etests/testdata/stable/ent2d2_basic/dagre/board.exp.json b/e2etests/testdata/stable/ent2d2_basic/dagre/board.exp.json index 50be0ee607..482872295c 100644 --- a/e2etests/testdata/stable/ent2d2_basic/dagre/board.exp.json +++ b/e2etests/testdata/stable/ent2d2_basic/dagre/board.exp.json @@ -706,6 +706,7 @@ "labelHeight": 21, "labelPosition": "INSIDE_MIDDLE_CENTER", "labelPercentage": 0, + "link": "", "route": [ { "x": 719.8330078125, @@ -789,6 +790,7 @@ "labelHeight": 21, "labelPosition": "INSIDE_MIDDLE_CENTER", "labelPercentage": 0, + "link": "", "route": [ { "x": 720.166015625, @@ -872,6 +874,7 @@ "labelHeight": 21, "labelPosition": "INSIDE_MIDDLE_CENTER", "labelPercentage": 0, + "link": "", "route": [ { "x": 518.5, @@ -919,6 +922,7 @@ "labelHeight": 21, "labelPosition": "INSIDE_MIDDLE_CENTER", "labelPercentage": 0, + "link": "", "route": [ { "x": 518.5, @@ -966,6 +970,7 @@ "labelHeight": 21, "labelPosition": "INSIDE_MIDDLE_CENTER", "labelPercentage": 0, + "link": "", "route": [ { "x": 619, @@ -1013,6 +1018,7 @@ "labelHeight": 21, "labelPosition": "INSIDE_MIDDLE_CENTER", "labelPercentage": 0, + "link": "", "route": [ { "x": 720.5, @@ -1060,6 +1066,7 @@ "labelHeight": 21, "labelPosition": "INSIDE_MIDDLE_CENTER", "labelPercentage": 0, + "link": "", "route": [ { "x": 720.5, diff --git a/e2etests/testdata/stable/ent2d2_basic/dagre/sketch.exp.svg b/e2etests/testdata/stable/ent2d2_basic/dagre/sketch.exp.svg index 6ac52a3493..4631b0a216 100644 --- a/e2etests/testdata/stable/ent2d2_basic/dagre/sketch.exp.svg +++ b/e2etests/testdata/stable/ent2d2_basic/dagre/sketch.exp.svg @@ -1,16 +1,16 @@ -UseridintPKparent_idintFKspouse_idintFKPetidintPKowner_idintFKCardidintPKowner_idintFKPostidintPKtextstringauthor_idintFKMetadataidintPKageintInfoidintPKcontentjson.RawMessage spouse children/parent/ancestorpets/ownercard/ownerposts/authormetadata/userinfo/user + .d2-3683838457 .fill-N1{fill:#0A0F25;} + .d2-3683838457 .fill-N2{fill:#676C7E;} + .d2-3683838457 .fill-N3{fill:#9499AB;} + .d2-3683838457 .fill-N4{fill:#CFD2DD;} + .d2-3683838457 .fill-N5{fill:#DEE1EB;} + .d2-3683838457 .fill-N6{fill:#EEF1F8;} + .d2-3683838457 .fill-N7{fill:#FFFFFF;} + .d2-3683838457 .fill-B1{fill:#0D32B2;} + .d2-3683838457 .fill-B2{fill:#0D32B2;} + .d2-3683838457 .fill-B3{fill:#E3E9FD;} + .d2-3683838457 .fill-B4{fill:#E3E9FD;} + .d2-3683838457 .fill-B5{fill:#EDF0FD;} + .d2-3683838457 .fill-B6{fill:#F7F8FE;} + .d2-3683838457 .fill-AA2{fill:#4A6FF3;} + .d2-3683838457 .fill-AA4{fill:#EDF0FD;} + .d2-3683838457 .fill-AA5{fill:#F7F8FE;} + .d2-3683838457 .fill-AB4{fill:#EDF0FD;} + .d2-3683838457 .fill-AB5{fill:#F7F8FE;} + .d2-3683838457 .stroke-N1{stroke:#0A0F25;} + .d2-3683838457 .stroke-N2{stroke:#676C7E;} + .d2-3683838457 .stroke-N3{stroke:#9499AB;} + .d2-3683838457 .stroke-N4{stroke:#CFD2DD;} + .d2-3683838457 .stroke-N5{stroke:#DEE1EB;} + .d2-3683838457 .stroke-N6{stroke:#EEF1F8;} + .d2-3683838457 .stroke-N7{stroke:#FFFFFF;} + .d2-3683838457 .stroke-B1{stroke:#0D32B2;} + .d2-3683838457 .stroke-B2{stroke:#0D32B2;} + .d2-3683838457 .stroke-B3{stroke:#E3E9FD;} + .d2-3683838457 .stroke-B4{stroke:#E3E9FD;} + .d2-3683838457 .stroke-B5{stroke:#EDF0FD;} + .d2-3683838457 .stroke-B6{stroke:#F7F8FE;} + .d2-3683838457 .stroke-AA2{stroke:#4A6FF3;} + .d2-3683838457 .stroke-AA4{stroke:#EDF0FD;} + .d2-3683838457 .stroke-AA5{stroke:#F7F8FE;} + .d2-3683838457 .stroke-AB4{stroke:#EDF0FD;} + .d2-3683838457 .stroke-AB5{stroke:#F7F8FE;} + .d2-3683838457 .background-color-N1{background-color:#0A0F25;} + .d2-3683838457 .background-color-N2{background-color:#676C7E;} + .d2-3683838457 .background-color-N3{background-color:#9499AB;} + .d2-3683838457 .background-color-N4{background-color:#CFD2DD;} + .d2-3683838457 .background-color-N5{background-color:#DEE1EB;} + .d2-3683838457 .background-color-N6{background-color:#EEF1F8;} + .d2-3683838457 .background-color-N7{background-color:#FFFFFF;} + .d2-3683838457 .background-color-B1{background-color:#0D32B2;} + .d2-3683838457 .background-color-B2{background-color:#0D32B2;} + .d2-3683838457 .background-color-B3{background-color:#E3E9FD;} + .d2-3683838457 .background-color-B4{background-color:#E3E9FD;} + .d2-3683838457 .background-color-B5{background-color:#EDF0FD;} + .d2-3683838457 .background-color-B6{background-color:#F7F8FE;} + .d2-3683838457 .background-color-AA2{background-color:#4A6FF3;} + .d2-3683838457 .background-color-AA4{background-color:#EDF0FD;} + .d2-3683838457 .background-color-AA5{background-color:#F7F8FE;} + .d2-3683838457 .background-color-AB4{background-color:#EDF0FD;} + .d2-3683838457 .background-color-AB5{background-color:#F7F8FE;} + .d2-3683838457 .color-N1{color:#0A0F25;} + .d2-3683838457 .color-N2{color:#676C7E;} + .d2-3683838457 .color-N3{color:#9499AB;} + .d2-3683838457 .color-N4{color:#CFD2DD;} + .d2-3683838457 .color-N5{color:#DEE1EB;} + .d2-3683838457 .color-N6{color:#EEF1F8;} + .d2-3683838457 .color-N7{color:#FFFFFF;} + .d2-3683838457 .color-B1{color:#0D32B2;} + .d2-3683838457 .color-B2{color:#0D32B2;} + .d2-3683838457 .color-B3{color:#E3E9FD;} + .d2-3683838457 .color-B4{color:#E3E9FD;} + .d2-3683838457 .color-B5{color:#EDF0FD;} + .d2-3683838457 .color-B6{color:#F7F8FE;} + .d2-3683838457 .color-AA2{color:#4A6FF3;} + .d2-3683838457 .color-AA4{color:#EDF0FD;} + .d2-3683838457 .color-AA5{color:#F7F8FE;} + .d2-3683838457 .color-AB4{color:#EDF0FD;} + .d2-3683838457 .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}]]>UseridintPKparent_idintFKspouse_idintFKPetidintPKowner_idintFKCardidintPKowner_idintFKPostidintPKtextstringauthor_idintFKMetadataidintPKageintInfoidintPKcontentjson.RawMessage spouse children/parent/ancestorpets/ownercard/ownerposts/authormetadata/userinfo/user diff --git a/e2etests/testdata/stable/ent2d2_basic/elk/board.exp.json b/e2etests/testdata/stable/ent2d2_basic/elk/board.exp.json index 296c132a9b..d87c338ad4 100644 --- a/e2etests/testdata/stable/ent2d2_basic/elk/board.exp.json +++ b/e2etests/testdata/stable/ent2d2_basic/elk/board.exp.json @@ -706,6 +706,7 @@ "labelHeight": 21, "labelPosition": "INSIDE_MIDDLE_CENTER", "labelPercentage": 0, + "link": "", "route": [ { "x": 411, @@ -760,6 +761,7 @@ "labelHeight": 21, "labelPosition": "INSIDE_MIDDLE_CENTER", "labelPercentage": 0, + "link": "", "route": [ { "x": 446, @@ -814,6 +816,7 @@ "labelHeight": 21, "labelPosition": "INSIDE_MIDDLE_CENTER", "labelPercentage": 0, + "link": "", "route": [ { "x": 481, @@ -860,6 +863,7 @@ "labelHeight": 21, "labelPosition": "INSIDE_MIDDLE_CENTER", "labelPercentage": 0, + "link": "", "route": [ { "x": 516, @@ -906,6 +910,7 @@ "labelHeight": 21, "labelPosition": "INSIDE_MIDDLE_CENTER", "labelPercentage": 0, + "link": "", "route": [ { "x": 551, @@ -944,6 +949,7 @@ "labelHeight": 21, "labelPosition": "INSIDE_MIDDLE_CENTER", "labelPercentage": 0, + "link": "", "route": [ { "x": 586, @@ -990,6 +996,7 @@ "labelHeight": 21, "labelPosition": "INSIDE_MIDDLE_CENTER", "labelPercentage": 0, + "link": "", "route": [ { "x": 621, diff --git a/e2etests/testdata/stable/ent2d2_basic/elk/sketch.exp.svg b/e2etests/testdata/stable/ent2d2_basic/elk/sketch.exp.svg index 8aa4bf4faa..1b0257b318 100644 --- a/e2etests/testdata/stable/ent2d2_basic/elk/sketch.exp.svg +++ b/e2etests/testdata/stable/ent2d2_basic/elk/sketch.exp.svg @@ -1,16 +1,16 @@ -UseridintPKparent_idintFKspouse_idintFKPetidintPKowner_idintFKCardidintPKowner_idintFKPostidintPKtextstringauthor_idintFKMetadataidintPKageintInfoidintPKcontentjson.RawMessage spouse children/parent/ancestorpets/ownercard/ownerposts/authormetadata/userinfo/user + .d2-1236166627 .fill-N1{fill:#0A0F25;} + .d2-1236166627 .fill-N2{fill:#676C7E;} + .d2-1236166627 .fill-N3{fill:#9499AB;} + .d2-1236166627 .fill-N4{fill:#CFD2DD;} + .d2-1236166627 .fill-N5{fill:#DEE1EB;} + .d2-1236166627 .fill-N6{fill:#EEF1F8;} + .d2-1236166627 .fill-N7{fill:#FFFFFF;} + .d2-1236166627 .fill-B1{fill:#0D32B2;} + .d2-1236166627 .fill-B2{fill:#0D32B2;} + .d2-1236166627 .fill-B3{fill:#E3E9FD;} + .d2-1236166627 .fill-B4{fill:#E3E9FD;} + .d2-1236166627 .fill-B5{fill:#EDF0FD;} + .d2-1236166627 .fill-B6{fill:#F7F8FE;} + .d2-1236166627 .fill-AA2{fill:#4A6FF3;} + .d2-1236166627 .fill-AA4{fill:#EDF0FD;} + .d2-1236166627 .fill-AA5{fill:#F7F8FE;} + .d2-1236166627 .fill-AB4{fill:#EDF0FD;} + .d2-1236166627 .fill-AB5{fill:#F7F8FE;} + .d2-1236166627 .stroke-N1{stroke:#0A0F25;} + .d2-1236166627 .stroke-N2{stroke:#676C7E;} + .d2-1236166627 .stroke-N3{stroke:#9499AB;} + .d2-1236166627 .stroke-N4{stroke:#CFD2DD;} + .d2-1236166627 .stroke-N5{stroke:#DEE1EB;} + .d2-1236166627 .stroke-N6{stroke:#EEF1F8;} + .d2-1236166627 .stroke-N7{stroke:#FFFFFF;} + .d2-1236166627 .stroke-B1{stroke:#0D32B2;} + .d2-1236166627 .stroke-B2{stroke:#0D32B2;} + .d2-1236166627 .stroke-B3{stroke:#E3E9FD;} + .d2-1236166627 .stroke-B4{stroke:#E3E9FD;} + .d2-1236166627 .stroke-B5{stroke:#EDF0FD;} + .d2-1236166627 .stroke-B6{stroke:#F7F8FE;} + .d2-1236166627 .stroke-AA2{stroke:#4A6FF3;} + .d2-1236166627 .stroke-AA4{stroke:#EDF0FD;} + .d2-1236166627 .stroke-AA5{stroke:#F7F8FE;} + .d2-1236166627 .stroke-AB4{stroke:#EDF0FD;} + .d2-1236166627 .stroke-AB5{stroke:#F7F8FE;} + .d2-1236166627 .background-color-N1{background-color:#0A0F25;} + .d2-1236166627 .background-color-N2{background-color:#676C7E;} + .d2-1236166627 .background-color-N3{background-color:#9499AB;} + .d2-1236166627 .background-color-N4{background-color:#CFD2DD;} + .d2-1236166627 .background-color-N5{background-color:#DEE1EB;} + .d2-1236166627 .background-color-N6{background-color:#EEF1F8;} + .d2-1236166627 .background-color-N7{background-color:#FFFFFF;} + .d2-1236166627 .background-color-B1{background-color:#0D32B2;} + .d2-1236166627 .background-color-B2{background-color:#0D32B2;} + .d2-1236166627 .background-color-B3{background-color:#E3E9FD;} + .d2-1236166627 .background-color-B4{background-color:#E3E9FD;} + .d2-1236166627 .background-color-B5{background-color:#EDF0FD;} + .d2-1236166627 .background-color-B6{background-color:#F7F8FE;} + .d2-1236166627 .background-color-AA2{background-color:#4A6FF3;} + .d2-1236166627 .background-color-AA4{background-color:#EDF0FD;} + .d2-1236166627 .background-color-AA5{background-color:#F7F8FE;} + .d2-1236166627 .background-color-AB4{background-color:#EDF0FD;} + .d2-1236166627 .background-color-AB5{background-color:#F7F8FE;} + .d2-1236166627 .color-N1{color:#0A0F25;} + .d2-1236166627 .color-N2{color:#676C7E;} + .d2-1236166627 .color-N3{color:#9499AB;} + .d2-1236166627 .color-N4{color:#CFD2DD;} + .d2-1236166627 .color-N5{color:#DEE1EB;} + .d2-1236166627 .color-N6{color:#EEF1F8;} + .d2-1236166627 .color-N7{color:#FFFFFF;} + .d2-1236166627 .color-B1{color:#0D32B2;} + .d2-1236166627 .color-B2{color:#0D32B2;} + .d2-1236166627 .color-B3{color:#E3E9FD;} + .d2-1236166627 .color-B4{color:#E3E9FD;} + .d2-1236166627 .color-B5{color:#EDF0FD;} + .d2-1236166627 .color-B6{color:#F7F8FE;} + .d2-1236166627 .color-AA2{color:#4A6FF3;} + .d2-1236166627 .color-AA4{color:#EDF0FD;} + .d2-1236166627 .color-AA5{color:#F7F8FE;} + .d2-1236166627 .color-AB4{color:#EDF0FD;} + .d2-1236166627 .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}]]>UseridintPKparent_idintFKspouse_idintFKPetidintPKowner_idintFKCardidintPKowner_idintFKPostidintPKtextstringauthor_idintFKMetadataidintPKageintInfoidintPKcontentjson.RawMessage spouse children/parent/ancestorpets/ownercard/ownerposts/authormetadata/userinfo/user diff --git a/e2etests/testdata/stable/ent2d2_right/dagre/board.exp.json b/e2etests/testdata/stable/ent2d2_right/dagre/board.exp.json index 04c9f62087..63e79debfd 100644 --- a/e2etests/testdata/stable/ent2d2_right/dagre/board.exp.json +++ b/e2etests/testdata/stable/ent2d2_right/dagre/board.exp.json @@ -706,6 +706,7 @@ "labelHeight": 37, "labelPosition": "INSIDE_MIDDLE_CENTER", "labelPercentage": 0, + "link": "", "route": [ { "x": 39, @@ -789,6 +790,7 @@ "labelHeight": 85, "labelPosition": "INSIDE_MIDDLE_CENTER", "labelPercentage": 0, + "link": "", "route": [ { "x": 61, @@ -872,6 +874,7 @@ "labelHeight": 21, "labelPosition": "INSIDE_MIDDLE_CENTER", "labelPercentage": 0, + "link": "", "route": [ { "x": 146, @@ -919,6 +922,7 @@ "labelHeight": 21, "labelPosition": "INSIDE_MIDDLE_CENTER", "labelPercentage": 0, + "link": "", "route": [ { "x": 186, @@ -966,6 +970,7 @@ "labelHeight": 21, "labelPosition": "INSIDE_MIDDLE_CENTER", "labelPercentage": 0, + "link": "", "route": [ { "x": 201, @@ -1013,6 +1018,7 @@ "labelHeight": 21, "labelPosition": "INSIDE_MIDDLE_CENTER", "labelPercentage": 0, + "link": "", "route": [ { "x": 186, @@ -1060,6 +1066,7 @@ "labelHeight": 21, "labelPosition": "INSIDE_MIDDLE_CENTER", "labelPercentage": 0, + "link": "", "route": [ { "x": 146, diff --git a/e2etests/testdata/stable/ent2d2_right/dagre/sketch.exp.svg b/e2etests/testdata/stable/ent2d2_right/dagre/sketch.exp.svg index eb2c91ded6..c521d01318 100644 --- a/e2etests/testdata/stable/ent2d2_right/dagre/sketch.exp.svg +++ b/e2etests/testdata/stable/ent2d2_right/dagre/sketch.exp.svg @@ -1,16 +1,16 @@ -UseridintPKparent_idintFKspouse_idintFKPetidintPKowner_idintFKCardidintPKowner_idintFKPostidintPKtextstringauthor_idintFKMetadataidintPKageintInfoidintPKcontentjson.RawMessage spousespouse childrenparentyowhoaheypets/ownercard/ownerposts/authormetadata/userinfo/user + .d2-4135108908 .fill-N1{fill:#0A0F25;} + .d2-4135108908 .fill-N2{fill:#676C7E;} + .d2-4135108908 .fill-N3{fill:#9499AB;} + .d2-4135108908 .fill-N4{fill:#CFD2DD;} + .d2-4135108908 .fill-N5{fill:#DEE1EB;} + .d2-4135108908 .fill-N6{fill:#EEF1F8;} + .d2-4135108908 .fill-N7{fill:#FFFFFF;} + .d2-4135108908 .fill-B1{fill:#0D32B2;} + .d2-4135108908 .fill-B2{fill:#0D32B2;} + .d2-4135108908 .fill-B3{fill:#E3E9FD;} + .d2-4135108908 .fill-B4{fill:#E3E9FD;} + .d2-4135108908 .fill-B5{fill:#EDF0FD;} + .d2-4135108908 .fill-B6{fill:#F7F8FE;} + .d2-4135108908 .fill-AA2{fill:#4A6FF3;} + .d2-4135108908 .fill-AA4{fill:#EDF0FD;} + .d2-4135108908 .fill-AA5{fill:#F7F8FE;} + .d2-4135108908 .fill-AB4{fill:#EDF0FD;} + .d2-4135108908 .fill-AB5{fill:#F7F8FE;} + .d2-4135108908 .stroke-N1{stroke:#0A0F25;} + .d2-4135108908 .stroke-N2{stroke:#676C7E;} + .d2-4135108908 .stroke-N3{stroke:#9499AB;} + .d2-4135108908 .stroke-N4{stroke:#CFD2DD;} + .d2-4135108908 .stroke-N5{stroke:#DEE1EB;} + .d2-4135108908 .stroke-N6{stroke:#EEF1F8;} + .d2-4135108908 .stroke-N7{stroke:#FFFFFF;} + .d2-4135108908 .stroke-B1{stroke:#0D32B2;} + .d2-4135108908 .stroke-B2{stroke:#0D32B2;} + .d2-4135108908 .stroke-B3{stroke:#E3E9FD;} + .d2-4135108908 .stroke-B4{stroke:#E3E9FD;} + .d2-4135108908 .stroke-B5{stroke:#EDF0FD;} + .d2-4135108908 .stroke-B6{stroke:#F7F8FE;} + .d2-4135108908 .stroke-AA2{stroke:#4A6FF3;} + .d2-4135108908 .stroke-AA4{stroke:#EDF0FD;} + .d2-4135108908 .stroke-AA5{stroke:#F7F8FE;} + .d2-4135108908 .stroke-AB4{stroke:#EDF0FD;} + .d2-4135108908 .stroke-AB5{stroke:#F7F8FE;} + .d2-4135108908 .background-color-N1{background-color:#0A0F25;} + .d2-4135108908 .background-color-N2{background-color:#676C7E;} + .d2-4135108908 .background-color-N3{background-color:#9499AB;} + .d2-4135108908 .background-color-N4{background-color:#CFD2DD;} + .d2-4135108908 .background-color-N5{background-color:#DEE1EB;} + .d2-4135108908 .background-color-N6{background-color:#EEF1F8;} + .d2-4135108908 .background-color-N7{background-color:#FFFFFF;} + .d2-4135108908 .background-color-B1{background-color:#0D32B2;} + .d2-4135108908 .background-color-B2{background-color:#0D32B2;} + .d2-4135108908 .background-color-B3{background-color:#E3E9FD;} + .d2-4135108908 .background-color-B4{background-color:#E3E9FD;} + .d2-4135108908 .background-color-B5{background-color:#EDF0FD;} + .d2-4135108908 .background-color-B6{background-color:#F7F8FE;} + .d2-4135108908 .background-color-AA2{background-color:#4A6FF3;} + .d2-4135108908 .background-color-AA4{background-color:#EDF0FD;} + .d2-4135108908 .background-color-AA5{background-color:#F7F8FE;} + .d2-4135108908 .background-color-AB4{background-color:#EDF0FD;} + .d2-4135108908 .background-color-AB5{background-color:#F7F8FE;} + .d2-4135108908 .color-N1{color:#0A0F25;} + .d2-4135108908 .color-N2{color:#676C7E;} + .d2-4135108908 .color-N3{color:#9499AB;} + .d2-4135108908 .color-N4{color:#CFD2DD;} + .d2-4135108908 .color-N5{color:#DEE1EB;} + .d2-4135108908 .color-N6{color:#EEF1F8;} + .d2-4135108908 .color-N7{color:#FFFFFF;} + .d2-4135108908 .color-B1{color:#0D32B2;} + .d2-4135108908 .color-B2{color:#0D32B2;} + .d2-4135108908 .color-B3{color:#E3E9FD;} + .d2-4135108908 .color-B4{color:#E3E9FD;} + .d2-4135108908 .color-B5{color:#EDF0FD;} + .d2-4135108908 .color-B6{color:#F7F8FE;} + .d2-4135108908 .color-AA2{color:#4A6FF3;} + .d2-4135108908 .color-AA4{color:#EDF0FD;} + .d2-4135108908 .color-AA5{color:#F7F8FE;} + .d2-4135108908 .color-AB4{color:#EDF0FD;} + .d2-4135108908 .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}]]>UseridintPKparent_idintFKspouse_idintFKPetidintPKowner_idintFKCardidintPKowner_idintFKPostidintPKtextstringauthor_idintFKMetadataidintPKageintInfoidintPKcontentjson.RawMessage spousespouse childrenparentyowhoaheypets/ownercard/ownerposts/authormetadata/userinfo/user diff --git a/e2etests/testdata/stable/ent2d2_right/elk/board.exp.json b/e2etests/testdata/stable/ent2d2_right/elk/board.exp.json index 498bfb7067..7c2db919fd 100644 --- a/e2etests/testdata/stable/ent2d2_right/elk/board.exp.json +++ b/e2etests/testdata/stable/ent2d2_right/elk/board.exp.json @@ -706,6 +706,7 @@ "labelHeight": 37, "labelPosition": "INSIDE_MIDDLE_CENTER", "labelPercentage": 0, + "link": "", "route": [ { "x": 97.125, @@ -760,6 +761,7 @@ "labelHeight": 85, "labelPosition": "INSIDE_MIDDLE_CENTER", "labelPercentage": 0, + "link": "", "route": [ { "x": 122.25, @@ -814,6 +816,7 @@ "labelHeight": 21, "labelPosition": "INSIDE_MIDDLE_CENTER", "labelPercentage": 0, + "link": "", "route": [ { "x": 147.375, @@ -860,6 +863,7 @@ "labelHeight": 21, "labelPosition": "INSIDE_MIDDLE_CENTER", "labelPercentage": 0, + "link": "", "route": [ { "x": 172.5, @@ -906,6 +910,7 @@ "labelHeight": 21, "labelPosition": "INSIDE_MIDDLE_CENTER", "labelPercentage": 0, + "link": "", "route": [ { "x": 197.625, @@ -952,6 +957,7 @@ "labelHeight": 21, "labelPosition": "INSIDE_MIDDLE_CENTER", "labelPercentage": 0, + "link": "", "route": [ { "x": 222.75, @@ -998,6 +1004,7 @@ "labelHeight": 21, "labelPosition": "INSIDE_MIDDLE_CENTER", "labelPercentage": 0, + "link": "", "route": [ { "x": 247.875, diff --git a/e2etests/testdata/stable/ent2d2_right/elk/sketch.exp.svg b/e2etests/testdata/stable/ent2d2_right/elk/sketch.exp.svg index a3fa0c43c3..b4b05a6beb 100644 --- a/e2etests/testdata/stable/ent2d2_right/elk/sketch.exp.svg +++ b/e2etests/testdata/stable/ent2d2_right/elk/sketch.exp.svg @@ -1,16 +1,16 @@ -UseridintPKparent_idintFKspouse_idintFKPetidintPKowner_idintFKCardidintPKowner_idintFKPostidintPKtextstringauthor_idintFKMetadataidintPKageintInfoidintPKcontentjson.RawMessage spousespouse childrenparentyowhoaheypets/ownercard/ownerposts/authormetadata/userinfo/user + .d2-2028736040 .fill-N1{fill:#0A0F25;} + .d2-2028736040 .fill-N2{fill:#676C7E;} + .d2-2028736040 .fill-N3{fill:#9499AB;} + .d2-2028736040 .fill-N4{fill:#CFD2DD;} + .d2-2028736040 .fill-N5{fill:#DEE1EB;} + .d2-2028736040 .fill-N6{fill:#EEF1F8;} + .d2-2028736040 .fill-N7{fill:#FFFFFF;} + .d2-2028736040 .fill-B1{fill:#0D32B2;} + .d2-2028736040 .fill-B2{fill:#0D32B2;} + .d2-2028736040 .fill-B3{fill:#E3E9FD;} + .d2-2028736040 .fill-B4{fill:#E3E9FD;} + .d2-2028736040 .fill-B5{fill:#EDF0FD;} + .d2-2028736040 .fill-B6{fill:#F7F8FE;} + .d2-2028736040 .fill-AA2{fill:#4A6FF3;} + .d2-2028736040 .fill-AA4{fill:#EDF0FD;} + .d2-2028736040 .fill-AA5{fill:#F7F8FE;} + .d2-2028736040 .fill-AB4{fill:#EDF0FD;} + .d2-2028736040 .fill-AB5{fill:#F7F8FE;} + .d2-2028736040 .stroke-N1{stroke:#0A0F25;} + .d2-2028736040 .stroke-N2{stroke:#676C7E;} + .d2-2028736040 .stroke-N3{stroke:#9499AB;} + .d2-2028736040 .stroke-N4{stroke:#CFD2DD;} + .d2-2028736040 .stroke-N5{stroke:#DEE1EB;} + .d2-2028736040 .stroke-N6{stroke:#EEF1F8;} + .d2-2028736040 .stroke-N7{stroke:#FFFFFF;} + .d2-2028736040 .stroke-B1{stroke:#0D32B2;} + .d2-2028736040 .stroke-B2{stroke:#0D32B2;} + .d2-2028736040 .stroke-B3{stroke:#E3E9FD;} + .d2-2028736040 .stroke-B4{stroke:#E3E9FD;} + .d2-2028736040 .stroke-B5{stroke:#EDF0FD;} + .d2-2028736040 .stroke-B6{stroke:#F7F8FE;} + .d2-2028736040 .stroke-AA2{stroke:#4A6FF3;} + .d2-2028736040 .stroke-AA4{stroke:#EDF0FD;} + .d2-2028736040 .stroke-AA5{stroke:#F7F8FE;} + .d2-2028736040 .stroke-AB4{stroke:#EDF0FD;} + .d2-2028736040 .stroke-AB5{stroke:#F7F8FE;} + .d2-2028736040 .background-color-N1{background-color:#0A0F25;} + .d2-2028736040 .background-color-N2{background-color:#676C7E;} + .d2-2028736040 .background-color-N3{background-color:#9499AB;} + .d2-2028736040 .background-color-N4{background-color:#CFD2DD;} + .d2-2028736040 .background-color-N5{background-color:#DEE1EB;} + .d2-2028736040 .background-color-N6{background-color:#EEF1F8;} + .d2-2028736040 .background-color-N7{background-color:#FFFFFF;} + .d2-2028736040 .background-color-B1{background-color:#0D32B2;} + .d2-2028736040 .background-color-B2{background-color:#0D32B2;} + .d2-2028736040 .background-color-B3{background-color:#E3E9FD;} + .d2-2028736040 .background-color-B4{background-color:#E3E9FD;} + .d2-2028736040 .background-color-B5{background-color:#EDF0FD;} + .d2-2028736040 .background-color-B6{background-color:#F7F8FE;} + .d2-2028736040 .background-color-AA2{background-color:#4A6FF3;} + .d2-2028736040 .background-color-AA4{background-color:#EDF0FD;} + .d2-2028736040 .background-color-AA5{background-color:#F7F8FE;} + .d2-2028736040 .background-color-AB4{background-color:#EDF0FD;} + .d2-2028736040 .background-color-AB5{background-color:#F7F8FE;} + .d2-2028736040 .color-N1{color:#0A0F25;} + .d2-2028736040 .color-N2{color:#676C7E;} + .d2-2028736040 .color-N3{color:#9499AB;} + .d2-2028736040 .color-N4{color:#CFD2DD;} + .d2-2028736040 .color-N5{color:#DEE1EB;} + .d2-2028736040 .color-N6{color:#EEF1F8;} + .d2-2028736040 .color-N7{color:#FFFFFF;} + .d2-2028736040 .color-B1{color:#0D32B2;} + .d2-2028736040 .color-B2{color:#0D32B2;} + .d2-2028736040 .color-B3{color:#E3E9FD;} + .d2-2028736040 .color-B4{color:#E3E9FD;} + .d2-2028736040 .color-B5{color:#EDF0FD;} + .d2-2028736040 .color-B6{color:#F7F8FE;} + .d2-2028736040 .color-AA2{color:#4A6FF3;} + .d2-2028736040 .color-AA4{color:#EDF0FD;} + .d2-2028736040 .color-AA5{color:#F7F8FE;} + .d2-2028736040 .color-AB4{color:#EDF0FD;} + .d2-2028736040 .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}]]>UseridintPKparent_idintFKspouse_idintFKPetidintPKowner_idintFKCardidintPKowner_idintFKPostidintPKtextstringauthor_idintFKMetadataidintPKageintInfoidintPKcontentjson.RawMessage spousespouse childrenparentyowhoaheypets/ownercard/ownerposts/authormetadata/userinfo/user diff --git a/e2etests/testdata/stable/font_colors/dagre/board.exp.json b/e2etests/testdata/stable/font_colors/dagre/board.exp.json index f866fb0928..49f4c6d37f 100644 --- a/e2etests/testdata/stable/font_colors/dagre/board.exp.json +++ b/e2etests/testdata/stable/font_colors/dagre/board.exp.json @@ -150,6 +150,7 @@ "labelHeight": 21, "labelPosition": "INSIDE_MIDDLE_CENTER", "labelPercentage": 0, + "link": "", "route": [ { "x": 42.5, diff --git a/e2etests/testdata/stable/font_colors/dagre/sketch.exp.svg b/e2etests/testdata/stable/font_colors/dagre/sketch.exp.svg index dffc725c78..238801e5a3 100644 --- a/e2etests/testdata/stable/font_colors/dagre/sketch.exp.svg +++ b/e2etests/testdata/stable/font_colors/dagre/sketch.exp.svg @@ -1,27 +1,27 @@ -alphabeta

    colored

    -
    gamma + gamma diff --git a/e2etests/testdata/stable/font_colors/elk/board.exp.json b/e2etests/testdata/stable/font_colors/elk/board.exp.json index 7362626fe4..e1ccb11432 100644 --- a/e2etests/testdata/stable/font_colors/elk/board.exp.json +++ b/e2etests/testdata/stable/font_colors/elk/board.exp.json @@ -150,6 +150,7 @@ "labelHeight": 21, "labelPosition": "INSIDE_MIDDLE_CENTER", "labelPercentage": 0, + "link": "", "route": [ { "x": 54.5, diff --git a/e2etests/testdata/stable/font_colors/elk/sketch.exp.svg b/e2etests/testdata/stable/font_colors/elk/sketch.exp.svg index a27e75afb8..e7ddbef864 100644 --- a/e2etests/testdata/stable/font_colors/elk/sketch.exp.svg +++ b/e2etests/testdata/stable/font_colors/elk/sketch.exp.svg @@ -1,27 +1,27 @@ -alphabeta

    colored

    -
    gamma + gamma diff --git a/e2etests/testdata/stable/font_sizes/dagre/board.exp.json b/e2etests/testdata/stable/font_sizes/dagre/board.exp.json index b1c7f74840..2a35e1de6a 100644 --- a/e2etests/testdata/stable/font_sizes/dagre/board.exp.json +++ b/e2etests/testdata/stable/font_sizes/dagre/board.exp.json @@ -520,6 +520,7 @@ "labelHeight": 13, "labelPosition": "INSIDE_MIDDLE_CENTER", "labelPercentage": 0, + "link": "", "route": [ { "x": 1035, @@ -567,6 +568,7 @@ "labelHeight": 19, "labelPosition": "INSIDE_MIDDLE_CENTER", "labelPercentage": 0, + "link": "", "route": [ { "x": 43.5, @@ -615,6 +617,7 @@ "labelHeight": 61, "labelPosition": "INSIDE_MIDDLE_CENTER", "labelPercentage": 0, + "link": "", "route": [ { "x": 766, diff --git a/e2etests/testdata/stable/font_sizes/dagre/sketch.exp.svg b/e2etests/testdata/stable/font_sizes/dagre/sketch.exp.svg index 2c5dfd0af6..c53b550cc4 100644 --- a/e2etests/testdata/stable/font_sizes/dagre/sketch.exp.svg +++ b/e2etests/testdata/stable/font_sizes/dagre/sketch.exp.svg @@ -1,16 +1,16 @@ -size XSsize Ssize Msize Lsize XLsize XXLsize XXXLcustom 8custom 12custom 18custom 21custom 64 custom 10custom 15custom 48 + .d2-2181559084 .fill-N1{fill:#0A0F25;} + .d2-2181559084 .fill-N2{fill:#676C7E;} + .d2-2181559084 .fill-N3{fill:#9499AB;} + .d2-2181559084 .fill-N4{fill:#CFD2DD;} + .d2-2181559084 .fill-N5{fill:#DEE1EB;} + .d2-2181559084 .fill-N6{fill:#EEF1F8;} + .d2-2181559084 .fill-N7{fill:#FFFFFF;} + .d2-2181559084 .fill-B1{fill:#0D32B2;} + .d2-2181559084 .fill-B2{fill:#0D32B2;} + .d2-2181559084 .fill-B3{fill:#E3E9FD;} + .d2-2181559084 .fill-B4{fill:#E3E9FD;} + .d2-2181559084 .fill-B5{fill:#EDF0FD;} + .d2-2181559084 .fill-B6{fill:#F7F8FE;} + .d2-2181559084 .fill-AA2{fill:#4A6FF3;} + .d2-2181559084 .fill-AA4{fill:#EDF0FD;} + .d2-2181559084 .fill-AA5{fill:#F7F8FE;} + .d2-2181559084 .fill-AB4{fill:#EDF0FD;} + .d2-2181559084 .fill-AB5{fill:#F7F8FE;} + .d2-2181559084 .stroke-N1{stroke:#0A0F25;} + .d2-2181559084 .stroke-N2{stroke:#676C7E;} + .d2-2181559084 .stroke-N3{stroke:#9499AB;} + .d2-2181559084 .stroke-N4{stroke:#CFD2DD;} + .d2-2181559084 .stroke-N5{stroke:#DEE1EB;} + .d2-2181559084 .stroke-N6{stroke:#EEF1F8;} + .d2-2181559084 .stroke-N7{stroke:#FFFFFF;} + .d2-2181559084 .stroke-B1{stroke:#0D32B2;} + .d2-2181559084 .stroke-B2{stroke:#0D32B2;} + .d2-2181559084 .stroke-B3{stroke:#E3E9FD;} + .d2-2181559084 .stroke-B4{stroke:#E3E9FD;} + .d2-2181559084 .stroke-B5{stroke:#EDF0FD;} + .d2-2181559084 .stroke-B6{stroke:#F7F8FE;} + .d2-2181559084 .stroke-AA2{stroke:#4A6FF3;} + .d2-2181559084 .stroke-AA4{stroke:#EDF0FD;} + .d2-2181559084 .stroke-AA5{stroke:#F7F8FE;} + .d2-2181559084 .stroke-AB4{stroke:#EDF0FD;} + .d2-2181559084 .stroke-AB5{stroke:#F7F8FE;} + .d2-2181559084 .background-color-N1{background-color:#0A0F25;} + .d2-2181559084 .background-color-N2{background-color:#676C7E;} + .d2-2181559084 .background-color-N3{background-color:#9499AB;} + .d2-2181559084 .background-color-N4{background-color:#CFD2DD;} + .d2-2181559084 .background-color-N5{background-color:#DEE1EB;} + .d2-2181559084 .background-color-N6{background-color:#EEF1F8;} + .d2-2181559084 .background-color-N7{background-color:#FFFFFF;} + .d2-2181559084 .background-color-B1{background-color:#0D32B2;} + .d2-2181559084 .background-color-B2{background-color:#0D32B2;} + .d2-2181559084 .background-color-B3{background-color:#E3E9FD;} + .d2-2181559084 .background-color-B4{background-color:#E3E9FD;} + .d2-2181559084 .background-color-B5{background-color:#EDF0FD;} + .d2-2181559084 .background-color-B6{background-color:#F7F8FE;} + .d2-2181559084 .background-color-AA2{background-color:#4A6FF3;} + .d2-2181559084 .background-color-AA4{background-color:#EDF0FD;} + .d2-2181559084 .background-color-AA5{background-color:#F7F8FE;} + .d2-2181559084 .background-color-AB4{background-color:#EDF0FD;} + .d2-2181559084 .background-color-AB5{background-color:#F7F8FE;} + .d2-2181559084 .color-N1{color:#0A0F25;} + .d2-2181559084 .color-N2{color:#676C7E;} + .d2-2181559084 .color-N3{color:#9499AB;} + .d2-2181559084 .color-N4{color:#CFD2DD;} + .d2-2181559084 .color-N5{color:#DEE1EB;} + .d2-2181559084 .color-N6{color:#EEF1F8;} + .d2-2181559084 .color-N7{color:#FFFFFF;} + .d2-2181559084 .color-B1{color:#0D32B2;} + .d2-2181559084 .color-B2{color:#0D32B2;} + .d2-2181559084 .color-B3{color:#E3E9FD;} + .d2-2181559084 .color-B4{color:#E3E9FD;} + .d2-2181559084 .color-B5{color:#EDF0FD;} + .d2-2181559084 .color-B6{color:#F7F8FE;} + .d2-2181559084 .color-AA2{color:#4A6FF3;} + .d2-2181559084 .color-AA4{color:#EDF0FD;} + .d2-2181559084 .color-AA5{color:#F7F8FE;} + .d2-2181559084 .color-AB4{color:#EDF0FD;} + .d2-2181559084 .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}]]>size XSsize Ssize Msize Lsize XLsize XXLsize XXXLcustom 8custom 12custom 18custom 21custom 64 custom 10custom 15custom 48 diff --git a/e2etests/testdata/stable/font_sizes/elk/board.exp.json b/e2etests/testdata/stable/font_sizes/elk/board.exp.json index 735ab1761c..496a93f2dd 100644 --- a/e2etests/testdata/stable/font_sizes/elk/board.exp.json +++ b/e2etests/testdata/stable/font_sizes/elk/board.exp.json @@ -520,6 +520,7 @@ "labelHeight": 13, "labelPosition": "INSIDE_MIDDLE_CENTER", "labelPercentage": 0, + "link": "", "route": [ { "x": 847, @@ -558,6 +559,7 @@ "labelHeight": 19, "labelPosition": "INSIDE_MIDDLE_CENTER", "labelPercentage": 0, + "link": "", "route": [ { "x": 55.5, @@ -597,6 +599,7 @@ "labelHeight": 61, "labelPosition": "INSIDE_MIDDLE_CENTER", "labelPercentage": 0, + "link": "", "route": [ { "x": 618, diff --git a/e2etests/testdata/stable/font_sizes/elk/sketch.exp.svg b/e2etests/testdata/stable/font_sizes/elk/sketch.exp.svg index 610e24a70e..65a85bca1a 100644 --- a/e2etests/testdata/stable/font_sizes/elk/sketch.exp.svg +++ b/e2etests/testdata/stable/font_sizes/elk/sketch.exp.svg @@ -1,16 +1,16 @@ -size XSsize Ssize Msize Lsize XLsize XXLsize XXXLcustom 8custom 12custom 18custom 21custom 64 custom 10custom 15custom 48 + .d2-486037045 .fill-N1{fill:#0A0F25;} + .d2-486037045 .fill-N2{fill:#676C7E;} + .d2-486037045 .fill-N3{fill:#9499AB;} + .d2-486037045 .fill-N4{fill:#CFD2DD;} + .d2-486037045 .fill-N5{fill:#DEE1EB;} + .d2-486037045 .fill-N6{fill:#EEF1F8;} + .d2-486037045 .fill-N7{fill:#FFFFFF;} + .d2-486037045 .fill-B1{fill:#0D32B2;} + .d2-486037045 .fill-B2{fill:#0D32B2;} + .d2-486037045 .fill-B3{fill:#E3E9FD;} + .d2-486037045 .fill-B4{fill:#E3E9FD;} + .d2-486037045 .fill-B5{fill:#EDF0FD;} + .d2-486037045 .fill-B6{fill:#F7F8FE;} + .d2-486037045 .fill-AA2{fill:#4A6FF3;} + .d2-486037045 .fill-AA4{fill:#EDF0FD;} + .d2-486037045 .fill-AA5{fill:#F7F8FE;} + .d2-486037045 .fill-AB4{fill:#EDF0FD;} + .d2-486037045 .fill-AB5{fill:#F7F8FE;} + .d2-486037045 .stroke-N1{stroke:#0A0F25;} + .d2-486037045 .stroke-N2{stroke:#676C7E;} + .d2-486037045 .stroke-N3{stroke:#9499AB;} + .d2-486037045 .stroke-N4{stroke:#CFD2DD;} + .d2-486037045 .stroke-N5{stroke:#DEE1EB;} + .d2-486037045 .stroke-N6{stroke:#EEF1F8;} + .d2-486037045 .stroke-N7{stroke:#FFFFFF;} + .d2-486037045 .stroke-B1{stroke:#0D32B2;} + .d2-486037045 .stroke-B2{stroke:#0D32B2;} + .d2-486037045 .stroke-B3{stroke:#E3E9FD;} + .d2-486037045 .stroke-B4{stroke:#E3E9FD;} + .d2-486037045 .stroke-B5{stroke:#EDF0FD;} + .d2-486037045 .stroke-B6{stroke:#F7F8FE;} + .d2-486037045 .stroke-AA2{stroke:#4A6FF3;} + .d2-486037045 .stroke-AA4{stroke:#EDF0FD;} + .d2-486037045 .stroke-AA5{stroke:#F7F8FE;} + .d2-486037045 .stroke-AB4{stroke:#EDF0FD;} + .d2-486037045 .stroke-AB5{stroke:#F7F8FE;} + .d2-486037045 .background-color-N1{background-color:#0A0F25;} + .d2-486037045 .background-color-N2{background-color:#676C7E;} + .d2-486037045 .background-color-N3{background-color:#9499AB;} + .d2-486037045 .background-color-N4{background-color:#CFD2DD;} + .d2-486037045 .background-color-N5{background-color:#DEE1EB;} + .d2-486037045 .background-color-N6{background-color:#EEF1F8;} + .d2-486037045 .background-color-N7{background-color:#FFFFFF;} + .d2-486037045 .background-color-B1{background-color:#0D32B2;} + .d2-486037045 .background-color-B2{background-color:#0D32B2;} + .d2-486037045 .background-color-B3{background-color:#E3E9FD;} + .d2-486037045 .background-color-B4{background-color:#E3E9FD;} + .d2-486037045 .background-color-B5{background-color:#EDF0FD;} + .d2-486037045 .background-color-B6{background-color:#F7F8FE;} + .d2-486037045 .background-color-AA2{background-color:#4A6FF3;} + .d2-486037045 .background-color-AA4{background-color:#EDF0FD;} + .d2-486037045 .background-color-AA5{background-color:#F7F8FE;} + .d2-486037045 .background-color-AB4{background-color:#EDF0FD;} + .d2-486037045 .background-color-AB5{background-color:#F7F8FE;} + .d2-486037045 .color-N1{color:#0A0F25;} + .d2-486037045 .color-N2{color:#676C7E;} + .d2-486037045 .color-N3{color:#9499AB;} + .d2-486037045 .color-N4{color:#CFD2DD;} + .d2-486037045 .color-N5{color:#DEE1EB;} + .d2-486037045 .color-N6{color:#EEF1F8;} + .d2-486037045 .color-N7{color:#FFFFFF;} + .d2-486037045 .color-B1{color:#0D32B2;} + .d2-486037045 .color-B2{color:#0D32B2;} + .d2-486037045 .color-B3{color:#E3E9FD;} + .d2-486037045 .color-B4{color:#E3E9FD;} + .d2-486037045 .color-B5{color:#EDF0FD;} + .d2-486037045 .color-B6{color:#F7F8FE;} + .d2-486037045 .color-AA2{color:#4A6FF3;} + .d2-486037045 .color-AA4{color:#EDF0FD;} + .d2-486037045 .color-AA5{color:#F7F8FE;} + .d2-486037045 .color-AB4{color:#EDF0FD;} + .d2-486037045 .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}]]>size XSsize Ssize Msize Lsize XLsize XXLsize XXXLcustom 8custom 12custom 18custom 21custom 64 custom 10custom 15custom 48 diff --git a/e2etests/testdata/stable/giant_markdown_test/dagre/board.exp.json b/e2etests/testdata/stable/giant_markdown_test/dagre/board.exp.json index f42b09620b..1654a29563 100644 --- a/e2etests/testdata/stable/giant_markdown_test/dagre/board.exp.json +++ b/e2etests/testdata/stable/giant_markdown_test/dagre/board.exp.json @@ -150,6 +150,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 1525.5, @@ -197,6 +198,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 1525.5, diff --git a/e2etests/testdata/stable/giant_markdown_test/dagre/sketch.exp.svg b/e2etests/testdata/stable/giant_markdown_test/dagre/sketch.exp.svg index f2b6275c8e..e7b587e8a0 100644 --- a/e2etests/testdata/stable/giant_markdown_test/dagre/sketch.exp.svg +++ b/e2etests/testdata/stable/giant_markdown_test/dagre/sketch.exp.svg @@ -1,34 +1,34 @@ -

    Markdown: Syntax

    @@ -1107,7 +1107,7 @@ title for the link, surrounded in quotes. For example:

    Code

    Unlike a pre-formatted code block, a code span indicates code within a normal paragraph. For example:

    -
    ab +ab diff --git a/e2etests/testdata/stable/giant_markdown_test/elk/board.exp.json b/e2etests/testdata/stable/giant_markdown_test/elk/board.exp.json index 08f802e1d7..ca19a02f2e 100644 --- a/e2etests/testdata/stable/giant_markdown_test/elk/board.exp.json +++ b/e2etests/testdata/stable/giant_markdown_test/elk/board.exp.json @@ -150,6 +150,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 1537.5, @@ -188,6 +189,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 1537.5, diff --git a/e2etests/testdata/stable/giant_markdown_test/elk/sketch.exp.svg b/e2etests/testdata/stable/giant_markdown_test/elk/sketch.exp.svg index 60b4e8a32e..29ee221ee7 100644 --- a/e2etests/testdata/stable/giant_markdown_test/elk/sketch.exp.svg +++ b/e2etests/testdata/stable/giant_markdown_test/elk/sketch.exp.svg @@ -1,34 +1,34 @@ -

    Markdown: Syntax

    @@ -1107,7 +1107,7 @@ title for the link, surrounded in quotes. For example:

    Code

    Unlike a pre-formatted code block, a code span indicates code within a normal paragraph. For example:

    -
    ab +ab diff --git a/e2etests/testdata/stable/grid_edge_across_cell/dagre/board.exp.json b/e2etests/testdata/stable/grid_edge_across_cell/dagre/board.exp.json index d2cd110232..45373934de 100644 --- a/e2etests/testdata/stable/grid_edge_across_cell/dagre/board.exp.json +++ b/e2etests/testdata/stable/grid_edge_across_cell/dagre/board.exp.json @@ -482,6 +482,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 66.875, @@ -523,6 +524,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 93.625, @@ -561,6 +563,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 193.375, @@ -608,6 +611,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 286.875, @@ -670,6 +674,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 299.875, diff --git a/e2etests/testdata/stable/grid_edge_across_cell/dagre/sketch.exp.svg b/e2etests/testdata/stable/grid_edge_across_cell/dagre/sketch.exp.svg index 9840e42570..351715307f 100644 --- a/e2etests/testdata/stable/grid_edge_across_cell/dagre/sketch.exp.svg +++ b/e2etests/testdata/stable/grid_edge_across_cell/dagre/sketch.exp.svg @@ -1,16 +1,16 @@ -gridcell 1cell 2cell 3abcefdg + .d2-3064456510 .fill-N1{fill:#0A0F25;} + .d2-3064456510 .fill-N2{fill:#676C7E;} + .d2-3064456510 .fill-N3{fill:#9499AB;} + .d2-3064456510 .fill-N4{fill:#CFD2DD;} + .d2-3064456510 .fill-N5{fill:#DEE1EB;} + .d2-3064456510 .fill-N6{fill:#EEF1F8;} + .d2-3064456510 .fill-N7{fill:#FFFFFF;} + .d2-3064456510 .fill-B1{fill:#0D32B2;} + .d2-3064456510 .fill-B2{fill:#0D32B2;} + .d2-3064456510 .fill-B3{fill:#E3E9FD;} + .d2-3064456510 .fill-B4{fill:#E3E9FD;} + .d2-3064456510 .fill-B5{fill:#EDF0FD;} + .d2-3064456510 .fill-B6{fill:#F7F8FE;} + .d2-3064456510 .fill-AA2{fill:#4A6FF3;} + .d2-3064456510 .fill-AA4{fill:#EDF0FD;} + .d2-3064456510 .fill-AA5{fill:#F7F8FE;} + .d2-3064456510 .fill-AB4{fill:#EDF0FD;} + .d2-3064456510 .fill-AB5{fill:#F7F8FE;} + .d2-3064456510 .stroke-N1{stroke:#0A0F25;} + .d2-3064456510 .stroke-N2{stroke:#676C7E;} + .d2-3064456510 .stroke-N3{stroke:#9499AB;} + .d2-3064456510 .stroke-N4{stroke:#CFD2DD;} + .d2-3064456510 .stroke-N5{stroke:#DEE1EB;} + .d2-3064456510 .stroke-N6{stroke:#EEF1F8;} + .d2-3064456510 .stroke-N7{stroke:#FFFFFF;} + .d2-3064456510 .stroke-B1{stroke:#0D32B2;} + .d2-3064456510 .stroke-B2{stroke:#0D32B2;} + .d2-3064456510 .stroke-B3{stroke:#E3E9FD;} + .d2-3064456510 .stroke-B4{stroke:#E3E9FD;} + .d2-3064456510 .stroke-B5{stroke:#EDF0FD;} + .d2-3064456510 .stroke-B6{stroke:#F7F8FE;} + .d2-3064456510 .stroke-AA2{stroke:#4A6FF3;} + .d2-3064456510 .stroke-AA4{stroke:#EDF0FD;} + .d2-3064456510 .stroke-AA5{stroke:#F7F8FE;} + .d2-3064456510 .stroke-AB4{stroke:#EDF0FD;} + .d2-3064456510 .stroke-AB5{stroke:#F7F8FE;} + .d2-3064456510 .background-color-N1{background-color:#0A0F25;} + .d2-3064456510 .background-color-N2{background-color:#676C7E;} + .d2-3064456510 .background-color-N3{background-color:#9499AB;} + .d2-3064456510 .background-color-N4{background-color:#CFD2DD;} + .d2-3064456510 .background-color-N5{background-color:#DEE1EB;} + .d2-3064456510 .background-color-N6{background-color:#EEF1F8;} + .d2-3064456510 .background-color-N7{background-color:#FFFFFF;} + .d2-3064456510 .background-color-B1{background-color:#0D32B2;} + .d2-3064456510 .background-color-B2{background-color:#0D32B2;} + .d2-3064456510 .background-color-B3{background-color:#E3E9FD;} + .d2-3064456510 .background-color-B4{background-color:#E3E9FD;} + .d2-3064456510 .background-color-B5{background-color:#EDF0FD;} + .d2-3064456510 .background-color-B6{background-color:#F7F8FE;} + .d2-3064456510 .background-color-AA2{background-color:#4A6FF3;} + .d2-3064456510 .background-color-AA4{background-color:#EDF0FD;} + .d2-3064456510 .background-color-AA5{background-color:#F7F8FE;} + .d2-3064456510 .background-color-AB4{background-color:#EDF0FD;} + .d2-3064456510 .background-color-AB5{background-color:#F7F8FE;} + .d2-3064456510 .color-N1{color:#0A0F25;} + .d2-3064456510 .color-N2{color:#676C7E;} + .d2-3064456510 .color-N3{color:#9499AB;} + .d2-3064456510 .color-N4{color:#CFD2DD;} + .d2-3064456510 .color-N5{color:#DEE1EB;} + .d2-3064456510 .color-N6{color:#EEF1F8;} + .d2-3064456510 .color-N7{color:#FFFFFF;} + .d2-3064456510 .color-B1{color:#0D32B2;} + .d2-3064456510 .color-B2{color:#0D32B2;} + .d2-3064456510 .color-B3{color:#E3E9FD;} + .d2-3064456510 .color-B4{color:#E3E9FD;} + .d2-3064456510 .color-B5{color:#EDF0FD;} + .d2-3064456510 .color-B6{color:#F7F8FE;} + .d2-3064456510 .color-AA2{color:#4A6FF3;} + .d2-3064456510 .color-AA4{color:#EDF0FD;} + .d2-3064456510 .color-AA5{color:#F7F8FE;} + .d2-3064456510 .color-AB4{color:#EDF0FD;} + .d2-3064456510 .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}]]>gridcell 1cell 2cell 3abcefdg diff --git a/e2etests/testdata/stable/grid_edge_across_cell/elk/board.exp.json b/e2etests/testdata/stable/grid_edge_across_cell/elk/board.exp.json index ee976406eb..445eed59a4 100644 --- a/e2etests/testdata/stable/grid_edge_across_cell/elk/board.exp.json +++ b/e2etests/testdata/stable/grid_edge_across_cell/elk/board.exp.json @@ -482,6 +482,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 98.5, @@ -523,6 +524,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 125.25, @@ -561,6 +563,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 261.5, @@ -599,6 +602,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 328.25, @@ -648,6 +652,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 358.5, diff --git a/e2etests/testdata/stable/grid_edge_across_cell/elk/sketch.exp.svg b/e2etests/testdata/stable/grid_edge_across_cell/elk/sketch.exp.svg index 04c3aff6a7..e6ac57fe3c 100644 --- a/e2etests/testdata/stable/grid_edge_across_cell/elk/sketch.exp.svg +++ b/e2etests/testdata/stable/grid_edge_across_cell/elk/sketch.exp.svg @@ -1,16 +1,16 @@ -gridcell 1cell 2cell 3abcefdg + .d2-2681609462 .fill-N1{fill:#0A0F25;} + .d2-2681609462 .fill-N2{fill:#676C7E;} + .d2-2681609462 .fill-N3{fill:#9499AB;} + .d2-2681609462 .fill-N4{fill:#CFD2DD;} + .d2-2681609462 .fill-N5{fill:#DEE1EB;} + .d2-2681609462 .fill-N6{fill:#EEF1F8;} + .d2-2681609462 .fill-N7{fill:#FFFFFF;} + .d2-2681609462 .fill-B1{fill:#0D32B2;} + .d2-2681609462 .fill-B2{fill:#0D32B2;} + .d2-2681609462 .fill-B3{fill:#E3E9FD;} + .d2-2681609462 .fill-B4{fill:#E3E9FD;} + .d2-2681609462 .fill-B5{fill:#EDF0FD;} + .d2-2681609462 .fill-B6{fill:#F7F8FE;} + .d2-2681609462 .fill-AA2{fill:#4A6FF3;} + .d2-2681609462 .fill-AA4{fill:#EDF0FD;} + .d2-2681609462 .fill-AA5{fill:#F7F8FE;} + .d2-2681609462 .fill-AB4{fill:#EDF0FD;} + .d2-2681609462 .fill-AB5{fill:#F7F8FE;} + .d2-2681609462 .stroke-N1{stroke:#0A0F25;} + .d2-2681609462 .stroke-N2{stroke:#676C7E;} + .d2-2681609462 .stroke-N3{stroke:#9499AB;} + .d2-2681609462 .stroke-N4{stroke:#CFD2DD;} + .d2-2681609462 .stroke-N5{stroke:#DEE1EB;} + .d2-2681609462 .stroke-N6{stroke:#EEF1F8;} + .d2-2681609462 .stroke-N7{stroke:#FFFFFF;} + .d2-2681609462 .stroke-B1{stroke:#0D32B2;} + .d2-2681609462 .stroke-B2{stroke:#0D32B2;} + .d2-2681609462 .stroke-B3{stroke:#E3E9FD;} + .d2-2681609462 .stroke-B4{stroke:#E3E9FD;} + .d2-2681609462 .stroke-B5{stroke:#EDF0FD;} + .d2-2681609462 .stroke-B6{stroke:#F7F8FE;} + .d2-2681609462 .stroke-AA2{stroke:#4A6FF3;} + .d2-2681609462 .stroke-AA4{stroke:#EDF0FD;} + .d2-2681609462 .stroke-AA5{stroke:#F7F8FE;} + .d2-2681609462 .stroke-AB4{stroke:#EDF0FD;} + .d2-2681609462 .stroke-AB5{stroke:#F7F8FE;} + .d2-2681609462 .background-color-N1{background-color:#0A0F25;} + .d2-2681609462 .background-color-N2{background-color:#676C7E;} + .d2-2681609462 .background-color-N3{background-color:#9499AB;} + .d2-2681609462 .background-color-N4{background-color:#CFD2DD;} + .d2-2681609462 .background-color-N5{background-color:#DEE1EB;} + .d2-2681609462 .background-color-N6{background-color:#EEF1F8;} + .d2-2681609462 .background-color-N7{background-color:#FFFFFF;} + .d2-2681609462 .background-color-B1{background-color:#0D32B2;} + .d2-2681609462 .background-color-B2{background-color:#0D32B2;} + .d2-2681609462 .background-color-B3{background-color:#E3E9FD;} + .d2-2681609462 .background-color-B4{background-color:#E3E9FD;} + .d2-2681609462 .background-color-B5{background-color:#EDF0FD;} + .d2-2681609462 .background-color-B6{background-color:#F7F8FE;} + .d2-2681609462 .background-color-AA2{background-color:#4A6FF3;} + .d2-2681609462 .background-color-AA4{background-color:#EDF0FD;} + .d2-2681609462 .background-color-AA5{background-color:#F7F8FE;} + .d2-2681609462 .background-color-AB4{background-color:#EDF0FD;} + .d2-2681609462 .background-color-AB5{background-color:#F7F8FE;} + .d2-2681609462 .color-N1{color:#0A0F25;} + .d2-2681609462 .color-N2{color:#676C7E;} + .d2-2681609462 .color-N3{color:#9499AB;} + .d2-2681609462 .color-N4{color:#CFD2DD;} + .d2-2681609462 .color-N5{color:#DEE1EB;} + .d2-2681609462 .color-N6{color:#EEF1F8;} + .d2-2681609462 .color-N7{color:#FFFFFF;} + .d2-2681609462 .color-B1{color:#0D32B2;} + .d2-2681609462 .color-B2{color:#0D32B2;} + .d2-2681609462 .color-B3{color:#E3E9FD;} + .d2-2681609462 .color-B4{color:#E3E9FD;} + .d2-2681609462 .color-B5{color:#EDF0FD;} + .d2-2681609462 .color-B6{color:#F7F8FE;} + .d2-2681609462 .color-AA2{color:#4A6FF3;} + .d2-2681609462 .color-AA4{color:#EDF0FD;} + .d2-2681609462 .color-AA5{color:#F7F8FE;} + .d2-2681609462 .color-AB4{color:#EDF0FD;} + .d2-2681609462 .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}]]>gridcell 1cell 2cell 3abcefdg diff --git a/e2etests/testdata/stable/grid_label_positions/dagre/board.exp.json b/e2etests/testdata/stable/grid_label_positions/dagre/board.exp.json index a089e0b7da..798fb259b5 100644 --- a/e2etests/testdata/stable/grid_label_positions/dagre/board.exp.json +++ b/e2etests/testdata/stable/grid_label_positions/dagre/board.exp.json @@ -9859,6 +9859,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 942.5, @@ -9906,6 +9907,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 942.5, @@ -9953,6 +9955,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 942.5, @@ -10000,6 +10003,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 942.5, diff --git a/e2etests/testdata/stable/grid_label_positions/dagre/sketch.exp.svg b/e2etests/testdata/stable/grid_label_positions/dagre/sketch.exp.svg index 68041465eb..6bc4732451 100644 --- a/e2etests/testdata/stable/grid_label_positions/dagre/sketch.exp.svg +++ b/e2etests/testdata/stable/grid_label_positions/dagre/sketch.exp.svg @@ -1,16 +1,16 @@ -OutsideTopLeftOutsideTopCenterOutsideTopRightOutsideLeftTopTopLeftTopCenterTopRightOutsideRightTopOutsideLeftCenterCenterLeftCenterCenterCenterRightOutsideRightCenterOutsideLeftBottomBottomLeftBottomCenterBottomRightOutsideRightBottomOutsideBottomLeftOutsideBottomCenterOutsideBottomRightabcdefghijabcdefghijabcdefghijabcdefghijabcdefghijabcdefghijabcdefghijabcdefghijabcdefghijabcdefghijabcdefghijabcdefghijabcdefghijabcdefghijabcdefghijabcdefghijabcdefghijabcdefghijabcdefghijabcdefghijabcdefghij + .d2-3006468073 .fill-N1{fill:#0A0F25;} + .d2-3006468073 .fill-N2{fill:#676C7E;} + .d2-3006468073 .fill-N3{fill:#9499AB;} + .d2-3006468073 .fill-N4{fill:#CFD2DD;} + .d2-3006468073 .fill-N5{fill:#DEE1EB;} + .d2-3006468073 .fill-N6{fill:#EEF1F8;} + .d2-3006468073 .fill-N7{fill:#FFFFFF;} + .d2-3006468073 .fill-B1{fill:#0D32B2;} + .d2-3006468073 .fill-B2{fill:#0D32B2;} + .d2-3006468073 .fill-B3{fill:#E3E9FD;} + .d2-3006468073 .fill-B4{fill:#E3E9FD;} + .d2-3006468073 .fill-B5{fill:#EDF0FD;} + .d2-3006468073 .fill-B6{fill:#F7F8FE;} + .d2-3006468073 .fill-AA2{fill:#4A6FF3;} + .d2-3006468073 .fill-AA4{fill:#EDF0FD;} + .d2-3006468073 .fill-AA5{fill:#F7F8FE;} + .d2-3006468073 .fill-AB4{fill:#EDF0FD;} + .d2-3006468073 .fill-AB5{fill:#F7F8FE;} + .d2-3006468073 .stroke-N1{stroke:#0A0F25;} + .d2-3006468073 .stroke-N2{stroke:#676C7E;} + .d2-3006468073 .stroke-N3{stroke:#9499AB;} + .d2-3006468073 .stroke-N4{stroke:#CFD2DD;} + .d2-3006468073 .stroke-N5{stroke:#DEE1EB;} + .d2-3006468073 .stroke-N6{stroke:#EEF1F8;} + .d2-3006468073 .stroke-N7{stroke:#FFFFFF;} + .d2-3006468073 .stroke-B1{stroke:#0D32B2;} + .d2-3006468073 .stroke-B2{stroke:#0D32B2;} + .d2-3006468073 .stroke-B3{stroke:#E3E9FD;} + .d2-3006468073 .stroke-B4{stroke:#E3E9FD;} + .d2-3006468073 .stroke-B5{stroke:#EDF0FD;} + .d2-3006468073 .stroke-B6{stroke:#F7F8FE;} + .d2-3006468073 .stroke-AA2{stroke:#4A6FF3;} + .d2-3006468073 .stroke-AA4{stroke:#EDF0FD;} + .d2-3006468073 .stroke-AA5{stroke:#F7F8FE;} + .d2-3006468073 .stroke-AB4{stroke:#EDF0FD;} + .d2-3006468073 .stroke-AB5{stroke:#F7F8FE;} + .d2-3006468073 .background-color-N1{background-color:#0A0F25;} + .d2-3006468073 .background-color-N2{background-color:#676C7E;} + .d2-3006468073 .background-color-N3{background-color:#9499AB;} + .d2-3006468073 .background-color-N4{background-color:#CFD2DD;} + .d2-3006468073 .background-color-N5{background-color:#DEE1EB;} + .d2-3006468073 .background-color-N6{background-color:#EEF1F8;} + .d2-3006468073 .background-color-N7{background-color:#FFFFFF;} + .d2-3006468073 .background-color-B1{background-color:#0D32B2;} + .d2-3006468073 .background-color-B2{background-color:#0D32B2;} + .d2-3006468073 .background-color-B3{background-color:#E3E9FD;} + .d2-3006468073 .background-color-B4{background-color:#E3E9FD;} + .d2-3006468073 .background-color-B5{background-color:#EDF0FD;} + .d2-3006468073 .background-color-B6{background-color:#F7F8FE;} + .d2-3006468073 .background-color-AA2{background-color:#4A6FF3;} + .d2-3006468073 .background-color-AA4{background-color:#EDF0FD;} + .d2-3006468073 .background-color-AA5{background-color:#F7F8FE;} + .d2-3006468073 .background-color-AB4{background-color:#EDF0FD;} + .d2-3006468073 .background-color-AB5{background-color:#F7F8FE;} + .d2-3006468073 .color-N1{color:#0A0F25;} + .d2-3006468073 .color-N2{color:#676C7E;} + .d2-3006468073 .color-N3{color:#9499AB;} + .d2-3006468073 .color-N4{color:#CFD2DD;} + .d2-3006468073 .color-N5{color:#DEE1EB;} + .d2-3006468073 .color-N6{color:#EEF1F8;} + .d2-3006468073 .color-N7{color:#FFFFFF;} + .d2-3006468073 .color-B1{color:#0D32B2;} + .d2-3006468073 .color-B2{color:#0D32B2;} + .d2-3006468073 .color-B3{color:#E3E9FD;} + .d2-3006468073 .color-B4{color:#E3E9FD;} + .d2-3006468073 .color-B5{color:#EDF0FD;} + .d2-3006468073 .color-B6{color:#F7F8FE;} + .d2-3006468073 .color-AA2{color:#4A6FF3;} + .d2-3006468073 .color-AA4{color:#EDF0FD;} + .d2-3006468073 .color-AA5{color:#F7F8FE;} + .d2-3006468073 .color-AB4{color:#EDF0FD;} + .d2-3006468073 .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}]]>OutsideTopLeftOutsideTopCenterOutsideTopRightOutsideLeftTopTopLeftTopCenterTopRightOutsideRightTopOutsideLeftCenterCenterLeftCenterCenterCenterRightOutsideRightCenterOutsideLeftBottomBottomLeftBottomCenterBottomRightOutsideRightBottomOutsideBottomLeftOutsideBottomCenterOutsideBottomRightabcdefghijabcdefghijabcdefghijabcdefghijabcdefghijabcdefghijabcdefghijabcdefghijabcdefghijabcdefghijabcdefghijabcdefghijabcdefghijabcdefghijabcdefghijabcdefghijabcdefghijabcdefghijabcdefghijabcdefghijabcdefghij diff --git a/e2etests/testdata/stable/grid_label_positions/elk/board.exp.json b/e2etests/testdata/stable/grid_label_positions/elk/board.exp.json index 30297164f1..11cc6f4a6b 100644 --- a/e2etests/testdata/stable/grid_label_positions/elk/board.exp.json +++ b/e2etests/testdata/stable/grid_label_positions/elk/board.exp.json @@ -9859,6 +9859,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 1087.5, @@ -9897,6 +9898,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 1087.5, @@ -9935,6 +9937,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 1087.5, @@ -9973,6 +9976,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 1087.5, diff --git a/e2etests/testdata/stable/grid_label_positions/elk/sketch.exp.svg b/e2etests/testdata/stable/grid_label_positions/elk/sketch.exp.svg index 52a3f67482..b35b00319a 100644 --- a/e2etests/testdata/stable/grid_label_positions/elk/sketch.exp.svg +++ b/e2etests/testdata/stable/grid_label_positions/elk/sketch.exp.svg @@ -1,16 +1,16 @@ -OutsideTopLeftOutsideTopCenterOutsideTopRightOutsideLeftTopTopLeftTopCenterTopRightOutsideRightTopOutsideLeftCenterCenterLeftCenterCenterCenterRightOutsideRightCenterOutsideLeftBottomBottomLeftBottomCenterBottomRightOutsideRightBottomOutsideBottomLeftOutsideBottomCenterOutsideBottomRightabcdefghijabcdefghijabcdefghijabcdefghijabcdefghijabcdefghijabcdefghijabcdefghijabcdefghijabcdefghijabcdefghijabcdefghijabcdefghijabcdefghijabcdefghijabcdefghijabcdefghijabcdefghijabcdefghijabcdefghijabcdefghij + .d2-1289720173 .fill-N1{fill:#0A0F25;} + .d2-1289720173 .fill-N2{fill:#676C7E;} + .d2-1289720173 .fill-N3{fill:#9499AB;} + .d2-1289720173 .fill-N4{fill:#CFD2DD;} + .d2-1289720173 .fill-N5{fill:#DEE1EB;} + .d2-1289720173 .fill-N6{fill:#EEF1F8;} + .d2-1289720173 .fill-N7{fill:#FFFFFF;} + .d2-1289720173 .fill-B1{fill:#0D32B2;} + .d2-1289720173 .fill-B2{fill:#0D32B2;} + .d2-1289720173 .fill-B3{fill:#E3E9FD;} + .d2-1289720173 .fill-B4{fill:#E3E9FD;} + .d2-1289720173 .fill-B5{fill:#EDF0FD;} + .d2-1289720173 .fill-B6{fill:#F7F8FE;} + .d2-1289720173 .fill-AA2{fill:#4A6FF3;} + .d2-1289720173 .fill-AA4{fill:#EDF0FD;} + .d2-1289720173 .fill-AA5{fill:#F7F8FE;} + .d2-1289720173 .fill-AB4{fill:#EDF0FD;} + .d2-1289720173 .fill-AB5{fill:#F7F8FE;} + .d2-1289720173 .stroke-N1{stroke:#0A0F25;} + .d2-1289720173 .stroke-N2{stroke:#676C7E;} + .d2-1289720173 .stroke-N3{stroke:#9499AB;} + .d2-1289720173 .stroke-N4{stroke:#CFD2DD;} + .d2-1289720173 .stroke-N5{stroke:#DEE1EB;} + .d2-1289720173 .stroke-N6{stroke:#EEF1F8;} + .d2-1289720173 .stroke-N7{stroke:#FFFFFF;} + .d2-1289720173 .stroke-B1{stroke:#0D32B2;} + .d2-1289720173 .stroke-B2{stroke:#0D32B2;} + .d2-1289720173 .stroke-B3{stroke:#E3E9FD;} + .d2-1289720173 .stroke-B4{stroke:#E3E9FD;} + .d2-1289720173 .stroke-B5{stroke:#EDF0FD;} + .d2-1289720173 .stroke-B6{stroke:#F7F8FE;} + .d2-1289720173 .stroke-AA2{stroke:#4A6FF3;} + .d2-1289720173 .stroke-AA4{stroke:#EDF0FD;} + .d2-1289720173 .stroke-AA5{stroke:#F7F8FE;} + .d2-1289720173 .stroke-AB4{stroke:#EDF0FD;} + .d2-1289720173 .stroke-AB5{stroke:#F7F8FE;} + .d2-1289720173 .background-color-N1{background-color:#0A0F25;} + .d2-1289720173 .background-color-N2{background-color:#676C7E;} + .d2-1289720173 .background-color-N3{background-color:#9499AB;} + .d2-1289720173 .background-color-N4{background-color:#CFD2DD;} + .d2-1289720173 .background-color-N5{background-color:#DEE1EB;} + .d2-1289720173 .background-color-N6{background-color:#EEF1F8;} + .d2-1289720173 .background-color-N7{background-color:#FFFFFF;} + .d2-1289720173 .background-color-B1{background-color:#0D32B2;} + .d2-1289720173 .background-color-B2{background-color:#0D32B2;} + .d2-1289720173 .background-color-B3{background-color:#E3E9FD;} + .d2-1289720173 .background-color-B4{background-color:#E3E9FD;} + .d2-1289720173 .background-color-B5{background-color:#EDF0FD;} + .d2-1289720173 .background-color-B6{background-color:#F7F8FE;} + .d2-1289720173 .background-color-AA2{background-color:#4A6FF3;} + .d2-1289720173 .background-color-AA4{background-color:#EDF0FD;} + .d2-1289720173 .background-color-AA5{background-color:#F7F8FE;} + .d2-1289720173 .background-color-AB4{background-color:#EDF0FD;} + .d2-1289720173 .background-color-AB5{background-color:#F7F8FE;} + .d2-1289720173 .color-N1{color:#0A0F25;} + .d2-1289720173 .color-N2{color:#676C7E;} + .d2-1289720173 .color-N3{color:#9499AB;} + .d2-1289720173 .color-N4{color:#CFD2DD;} + .d2-1289720173 .color-N5{color:#DEE1EB;} + .d2-1289720173 .color-N6{color:#EEF1F8;} + .d2-1289720173 .color-N7{color:#FFFFFF;} + .d2-1289720173 .color-B1{color:#0D32B2;} + .d2-1289720173 .color-B2{color:#0D32B2;} + .d2-1289720173 .color-B3{color:#E3E9FD;} + .d2-1289720173 .color-B4{color:#E3E9FD;} + .d2-1289720173 .color-B5{color:#EDF0FD;} + .d2-1289720173 .color-B6{color:#F7F8FE;} + .d2-1289720173 .color-AA2{color:#4A6FF3;} + .d2-1289720173 .color-AA4{color:#EDF0FD;} + .d2-1289720173 .color-AA5{color:#F7F8FE;} + .d2-1289720173 .color-AB4{color:#EDF0FD;} + .d2-1289720173 .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}]]>OutsideTopLeftOutsideTopCenterOutsideTopRightOutsideLeftTopTopLeftTopCenterTopRightOutsideRightTopOutsideLeftCenterCenterLeftCenterCenterCenterRightOutsideRightCenterOutsideLeftBottomBottomLeftBottomCenterBottomRightOutsideRightBottomOutsideBottomLeftOutsideBottomCenterOutsideBottomRightabcdefghijabcdefghijabcdefghijabcdefghijabcdefghijabcdefghijabcdefghijabcdefghijabcdefghijabcdefghijabcdefghijabcdefghijabcdefghijabcdefghijabcdefghijabcdefghijabcdefghijabcdefghijabcdefghijabcdefghijabcdefghij diff --git a/e2etests/testdata/stable/grid_nested_simple_edges/dagre/board.exp.json b/e2etests/testdata/stable/grid_nested_simple_edges/dagre/board.exp.json index 45b186a93a..2e63459994 100644 --- a/e2etests/testdata/stable/grid_nested_simple_edges/dagre/board.exp.json +++ b/e2etests/testdata/stable/grid_nested_simple_edges/dagre/board.exp.json @@ -1176,6 +1176,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 554, @@ -1223,6 +1224,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 277, @@ -1261,6 +1263,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 277, @@ -1302,6 +1305,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 182, @@ -1352,6 +1356,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 187.75, @@ -1414,6 +1419,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 107.25, @@ -1500,6 +1506,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 396, @@ -1550,6 +1557,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 437, @@ -1612,6 +1620,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 351, @@ -1662,6 +1671,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 325, @@ -1712,6 +1722,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 231, @@ -1762,6 +1773,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 171.5, @@ -1803,6 +1815,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 264.5, @@ -1841,6 +1854,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 1062, @@ -1888,6 +1902,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 815.5, @@ -1926,6 +1941,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 908.5, @@ -1964,6 +1980,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 1266, @@ -2011,6 +2028,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 1469, @@ -2058,6 +2076,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 1469, diff --git a/e2etests/testdata/stable/grid_nested_simple_edges/dagre/sketch.exp.svg b/e2etests/testdata/stable/grid_nested_simple_edges/dagre/sketch.exp.svg index 4f872aa19c..2b9cc16771 100644 --- a/e2etests/testdata/stable/grid_nested_simple_edges/dagre/sketch.exp.svg +++ b/e2etests/testdata/stable/grid_nested_simple_edges/dagre/sketch.exp.svg @@ -1,16 +1,16 @@ -outer-gridouter-containerinner-gridcontaineretcgridcontainerabcdegf123123456nested containerh78i + .d2-2065775566 .fill-N1{fill:#0A0F25;} + .d2-2065775566 .fill-N2{fill:#676C7E;} + .d2-2065775566 .fill-N3{fill:#9499AB;} + .d2-2065775566 .fill-N4{fill:#CFD2DD;} + .d2-2065775566 .fill-N5{fill:#DEE1EB;} + .d2-2065775566 .fill-N6{fill:#EEF1F8;} + .d2-2065775566 .fill-N7{fill:#FFFFFF;} + .d2-2065775566 .fill-B1{fill:#0D32B2;} + .d2-2065775566 .fill-B2{fill:#0D32B2;} + .d2-2065775566 .fill-B3{fill:#E3E9FD;} + .d2-2065775566 .fill-B4{fill:#E3E9FD;} + .d2-2065775566 .fill-B5{fill:#EDF0FD;} + .d2-2065775566 .fill-B6{fill:#F7F8FE;} + .d2-2065775566 .fill-AA2{fill:#4A6FF3;} + .d2-2065775566 .fill-AA4{fill:#EDF0FD;} + .d2-2065775566 .fill-AA5{fill:#F7F8FE;} + .d2-2065775566 .fill-AB4{fill:#EDF0FD;} + .d2-2065775566 .fill-AB5{fill:#F7F8FE;} + .d2-2065775566 .stroke-N1{stroke:#0A0F25;} + .d2-2065775566 .stroke-N2{stroke:#676C7E;} + .d2-2065775566 .stroke-N3{stroke:#9499AB;} + .d2-2065775566 .stroke-N4{stroke:#CFD2DD;} + .d2-2065775566 .stroke-N5{stroke:#DEE1EB;} + .d2-2065775566 .stroke-N6{stroke:#EEF1F8;} + .d2-2065775566 .stroke-N7{stroke:#FFFFFF;} + .d2-2065775566 .stroke-B1{stroke:#0D32B2;} + .d2-2065775566 .stroke-B2{stroke:#0D32B2;} + .d2-2065775566 .stroke-B3{stroke:#E3E9FD;} + .d2-2065775566 .stroke-B4{stroke:#E3E9FD;} + .d2-2065775566 .stroke-B5{stroke:#EDF0FD;} + .d2-2065775566 .stroke-B6{stroke:#F7F8FE;} + .d2-2065775566 .stroke-AA2{stroke:#4A6FF3;} + .d2-2065775566 .stroke-AA4{stroke:#EDF0FD;} + .d2-2065775566 .stroke-AA5{stroke:#F7F8FE;} + .d2-2065775566 .stroke-AB4{stroke:#EDF0FD;} + .d2-2065775566 .stroke-AB5{stroke:#F7F8FE;} + .d2-2065775566 .background-color-N1{background-color:#0A0F25;} + .d2-2065775566 .background-color-N2{background-color:#676C7E;} + .d2-2065775566 .background-color-N3{background-color:#9499AB;} + .d2-2065775566 .background-color-N4{background-color:#CFD2DD;} + .d2-2065775566 .background-color-N5{background-color:#DEE1EB;} + .d2-2065775566 .background-color-N6{background-color:#EEF1F8;} + .d2-2065775566 .background-color-N7{background-color:#FFFFFF;} + .d2-2065775566 .background-color-B1{background-color:#0D32B2;} + .d2-2065775566 .background-color-B2{background-color:#0D32B2;} + .d2-2065775566 .background-color-B3{background-color:#E3E9FD;} + .d2-2065775566 .background-color-B4{background-color:#E3E9FD;} + .d2-2065775566 .background-color-B5{background-color:#EDF0FD;} + .d2-2065775566 .background-color-B6{background-color:#F7F8FE;} + .d2-2065775566 .background-color-AA2{background-color:#4A6FF3;} + .d2-2065775566 .background-color-AA4{background-color:#EDF0FD;} + .d2-2065775566 .background-color-AA5{background-color:#F7F8FE;} + .d2-2065775566 .background-color-AB4{background-color:#EDF0FD;} + .d2-2065775566 .background-color-AB5{background-color:#F7F8FE;} + .d2-2065775566 .color-N1{color:#0A0F25;} + .d2-2065775566 .color-N2{color:#676C7E;} + .d2-2065775566 .color-N3{color:#9499AB;} + .d2-2065775566 .color-N4{color:#CFD2DD;} + .d2-2065775566 .color-N5{color:#DEE1EB;} + .d2-2065775566 .color-N6{color:#EEF1F8;} + .d2-2065775566 .color-N7{color:#FFFFFF;} + .d2-2065775566 .color-B1{color:#0D32B2;} + .d2-2065775566 .color-B2{color:#0D32B2;} + .d2-2065775566 .color-B3{color:#E3E9FD;} + .d2-2065775566 .color-B4{color:#E3E9FD;} + .d2-2065775566 .color-B5{color:#EDF0FD;} + .d2-2065775566 .color-B6{color:#F7F8FE;} + .d2-2065775566 .color-AA2{color:#4A6FF3;} + .d2-2065775566 .color-AA4{color:#EDF0FD;} + .d2-2065775566 .color-AA5{color:#F7F8FE;} + .d2-2065775566 .color-AB4{color:#EDF0FD;} + .d2-2065775566 .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}]]>outer-gridouter-containerinner-gridcontaineretcgridcontainerabcdegf123123456nested containerh78i diff --git a/e2etests/testdata/stable/grid_nested_simple_edges/elk/board.exp.json b/e2etests/testdata/stable/grid_nested_simple_edges/elk/board.exp.json index 1a40e79891..770b9d6714 100644 --- a/e2etests/testdata/stable/grid_nested_simple_edges/elk/board.exp.json +++ b/e2etests/testdata/stable/grid_nested_simple_edges/elk/board.exp.json @@ -1176,6 +1176,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 562, @@ -1214,6 +1215,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 287, @@ -1252,6 +1254,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 287, @@ -1293,6 +1296,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 171.33299255371094, @@ -1342,6 +1346,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 189.66600036621094, @@ -1391,6 +1396,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 147, @@ -1448,6 +1454,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 349.5, @@ -1497,6 +1504,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 326.8330078125, @@ -1538,6 +1546,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 376.1659851074219, @@ -1587,6 +1596,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 398.8330078125, @@ -1636,6 +1646,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 216.33299255371094, @@ -1685,6 +1696,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 183.5, @@ -1726,6 +1738,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 276.5, @@ -1764,6 +1777,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 1040, @@ -1802,6 +1816,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 793.5, @@ -1840,6 +1855,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 886.5, @@ -1878,6 +1894,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 1436, @@ -1916,6 +1933,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 1559, @@ -1954,6 +1972,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 1263, diff --git a/e2etests/testdata/stable/grid_nested_simple_edges/elk/sketch.exp.svg b/e2etests/testdata/stable/grid_nested_simple_edges/elk/sketch.exp.svg index 97bff81177..b0a52c23b7 100644 --- a/e2etests/testdata/stable/grid_nested_simple_edges/elk/sketch.exp.svg +++ b/e2etests/testdata/stable/grid_nested_simple_edges/elk/sketch.exp.svg @@ -1,16 +1,16 @@ -outer-gridouter-containerinner-gridcontaineretcgridcontainerabcdegf123123456nested containerh78i + .d2-3631546089 .fill-N1{fill:#0A0F25;} + .d2-3631546089 .fill-N2{fill:#676C7E;} + .d2-3631546089 .fill-N3{fill:#9499AB;} + .d2-3631546089 .fill-N4{fill:#CFD2DD;} + .d2-3631546089 .fill-N5{fill:#DEE1EB;} + .d2-3631546089 .fill-N6{fill:#EEF1F8;} + .d2-3631546089 .fill-N7{fill:#FFFFFF;} + .d2-3631546089 .fill-B1{fill:#0D32B2;} + .d2-3631546089 .fill-B2{fill:#0D32B2;} + .d2-3631546089 .fill-B3{fill:#E3E9FD;} + .d2-3631546089 .fill-B4{fill:#E3E9FD;} + .d2-3631546089 .fill-B5{fill:#EDF0FD;} + .d2-3631546089 .fill-B6{fill:#F7F8FE;} + .d2-3631546089 .fill-AA2{fill:#4A6FF3;} + .d2-3631546089 .fill-AA4{fill:#EDF0FD;} + .d2-3631546089 .fill-AA5{fill:#F7F8FE;} + .d2-3631546089 .fill-AB4{fill:#EDF0FD;} + .d2-3631546089 .fill-AB5{fill:#F7F8FE;} + .d2-3631546089 .stroke-N1{stroke:#0A0F25;} + .d2-3631546089 .stroke-N2{stroke:#676C7E;} + .d2-3631546089 .stroke-N3{stroke:#9499AB;} + .d2-3631546089 .stroke-N4{stroke:#CFD2DD;} + .d2-3631546089 .stroke-N5{stroke:#DEE1EB;} + .d2-3631546089 .stroke-N6{stroke:#EEF1F8;} + .d2-3631546089 .stroke-N7{stroke:#FFFFFF;} + .d2-3631546089 .stroke-B1{stroke:#0D32B2;} + .d2-3631546089 .stroke-B2{stroke:#0D32B2;} + .d2-3631546089 .stroke-B3{stroke:#E3E9FD;} + .d2-3631546089 .stroke-B4{stroke:#E3E9FD;} + .d2-3631546089 .stroke-B5{stroke:#EDF0FD;} + .d2-3631546089 .stroke-B6{stroke:#F7F8FE;} + .d2-3631546089 .stroke-AA2{stroke:#4A6FF3;} + .d2-3631546089 .stroke-AA4{stroke:#EDF0FD;} + .d2-3631546089 .stroke-AA5{stroke:#F7F8FE;} + .d2-3631546089 .stroke-AB4{stroke:#EDF0FD;} + .d2-3631546089 .stroke-AB5{stroke:#F7F8FE;} + .d2-3631546089 .background-color-N1{background-color:#0A0F25;} + .d2-3631546089 .background-color-N2{background-color:#676C7E;} + .d2-3631546089 .background-color-N3{background-color:#9499AB;} + .d2-3631546089 .background-color-N4{background-color:#CFD2DD;} + .d2-3631546089 .background-color-N5{background-color:#DEE1EB;} + .d2-3631546089 .background-color-N6{background-color:#EEF1F8;} + .d2-3631546089 .background-color-N7{background-color:#FFFFFF;} + .d2-3631546089 .background-color-B1{background-color:#0D32B2;} + .d2-3631546089 .background-color-B2{background-color:#0D32B2;} + .d2-3631546089 .background-color-B3{background-color:#E3E9FD;} + .d2-3631546089 .background-color-B4{background-color:#E3E9FD;} + .d2-3631546089 .background-color-B5{background-color:#EDF0FD;} + .d2-3631546089 .background-color-B6{background-color:#F7F8FE;} + .d2-3631546089 .background-color-AA2{background-color:#4A6FF3;} + .d2-3631546089 .background-color-AA4{background-color:#EDF0FD;} + .d2-3631546089 .background-color-AA5{background-color:#F7F8FE;} + .d2-3631546089 .background-color-AB4{background-color:#EDF0FD;} + .d2-3631546089 .background-color-AB5{background-color:#F7F8FE;} + .d2-3631546089 .color-N1{color:#0A0F25;} + .d2-3631546089 .color-N2{color:#676C7E;} + .d2-3631546089 .color-N3{color:#9499AB;} + .d2-3631546089 .color-N4{color:#CFD2DD;} + .d2-3631546089 .color-N5{color:#DEE1EB;} + .d2-3631546089 .color-N6{color:#EEF1F8;} + .d2-3631546089 .color-N7{color:#FFFFFF;} + .d2-3631546089 .color-B1{color:#0D32B2;} + .d2-3631546089 .color-B2{color:#0D32B2;} + .d2-3631546089 .color-B3{color:#E3E9FD;} + .d2-3631546089 .color-B4{color:#E3E9FD;} + .d2-3631546089 .color-B5{color:#EDF0FD;} + .d2-3631546089 .color-B6{color:#F7F8FE;} + .d2-3631546089 .color-AA2{color:#4A6FF3;} + .d2-3631546089 .color-AA4{color:#EDF0FD;} + .d2-3631546089 .color-AA5{color:#F7F8FE;} + .d2-3631546089 .color-AB4{color:#EDF0FD;} + .d2-3631546089 .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}]]>outer-gridouter-containerinner-gridcontaineretcgridcontainerabcdegf123123456nested containerh78i diff --git a/e2etests/testdata/stable/hr/dagre/board.exp.json b/e2etests/testdata/stable/hr/dagre/board.exp.json index 419f224344..c38f26f4e1 100644 --- a/e2etests/testdata/stable/hr/dagre/board.exp.json +++ b/e2etests/testdata/stable/hr/dagre/board.exp.json @@ -150,6 +150,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 369, @@ -197,6 +198,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 369, diff --git a/e2etests/testdata/stable/hr/dagre/sketch.exp.svg b/e2etests/testdata/stable/hr/dagre/sketch.exp.svg index 059c1c6324..518875dddc 100644 --- a/e2etests/testdata/stable/hr/dagre/sketch.exp.svg +++ b/e2etests/testdata/stable/hr/dagre/sketch.exp.svg @@ -1,20 +1,20 @@ -

    Note: This document is itself written using Markdown; you can see the source for it by adding '.text' to the URL.


    Overview

    -
    ab +ab diff --git a/e2etests/testdata/stable/hr/elk/board.exp.json b/e2etests/testdata/stable/hr/elk/board.exp.json index b379b245a8..052cb7760b 100644 --- a/e2etests/testdata/stable/hr/elk/board.exp.json +++ b/e2etests/testdata/stable/hr/elk/board.exp.json @@ -150,6 +150,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 381, @@ -188,6 +189,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 381, diff --git a/e2etests/testdata/stable/hr/elk/sketch.exp.svg b/e2etests/testdata/stable/hr/elk/sketch.exp.svg index 671f724887..da83d31df0 100644 --- a/e2etests/testdata/stable/hr/elk/sketch.exp.svg +++ b/e2etests/testdata/stable/hr/elk/sketch.exp.svg @@ -1,20 +1,20 @@ -

    Note: This document is itself written using Markdown; you can see the source for it by adding '.text' to the URL.


    Overview

    -
    ab +ab diff --git a/e2etests/testdata/stable/icon_positions/dagre/board.exp.json b/e2etests/testdata/stable/icon_positions/dagre/board.exp.json index a2eecb56f2..2a132044c0 100644 --- a/e2etests/testdata/stable/icon_positions/dagre/board.exp.json +++ b/e2etests/testdata/stable/icon_positions/dagre/board.exp.json @@ -4834,6 +4834,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 3091, @@ -4881,6 +4882,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 3091, diff --git a/e2etests/testdata/stable/icon_positions/dagre/sketch.exp.svg b/e2etests/testdata/stable/icon_positions/dagre/sketch.exp.svg index 5f43682e77..5c4762d8a5 100644 --- a/e2etests/testdata/stable/icon_positions/dagre/sketch.exp.svg +++ b/e2etests/testdata/stable/icon_positions/dagre/sketch.exp.svg @@ -1,16 +1,16 @@ -non containercontainerimageDefaultOutsideTopLeftOutsideTopCenterOutsideTopRightOutsideLeftTopOutsideLeftMiddleOutsideLeftBottomOutsideRightTopOutsideRightMiddleOutsideRightBottomOutsideBottomLeftOutsideBottomCenterOutsideBottomRightInsideTopLeftInsideTopCenterInsideTopRightInsideMiddleLeftInsideMiddleCenterInsideMiddleRightInsideBottomLeftInsideBottomCenterInsideBottomRightDefaultOutsideTopLeftOutsideTopCenterOutsideTopRightOutsideLeftTopOutsideLeftMiddleOutsideLeftBottomOutsideRightTopOutsideRightMiddleOutsideRightBottomOutsideBottomLeftOutsideBottomCenterOutsideBottomRightInsideTopLeftInsideTopCenterInsideTopRightInsideMiddleLeftInsideMiddleCenterInsideMiddleRightInsideBottomLeftInsideBottomCenterInsideBottomRightDefaultOutsideTopLeftOutsideTopCenterOutsideTopRightOutsideLeftTopOutsideLeftMiddleOutsideLeftBottomOutsideRightTopOutsideRightMiddleOutsideRightBottomOutsideBottomLeftOutsideBottomCenterOutsideBottomRightInsideTopLeftInsideTopCenterInsideTopRightInsideMiddleLeftInsideMiddleCenterInsideMiddleRightInsideBottomLeftInsideBottomCenterInsideBottomRightDefaultOutsideTopLeftOutsideTopCenterOutsideTopRightOutsideLeftTopOutsideLeftMiddleOutsideLeftBottomOutsideRightTopOutsideRightMiddleOutsideRightBottomOutsideBottomLeftOutsideBottomCenterOutsideBottomRightInsideTopLeftInsideTopCenterInsideTopRightInsideMiddleLeftInsideMiddleCenterInsideMiddleRightInsideBottomLeftInsideBottomCenterInsideBottomRight + .d2-3363565171 .fill-N1{fill:#0A0F25;} + .d2-3363565171 .fill-N2{fill:#676C7E;} + .d2-3363565171 .fill-N3{fill:#9499AB;} + .d2-3363565171 .fill-N4{fill:#CFD2DD;} + .d2-3363565171 .fill-N5{fill:#DEE1EB;} + .d2-3363565171 .fill-N6{fill:#EEF1F8;} + .d2-3363565171 .fill-N7{fill:#FFFFFF;} + .d2-3363565171 .fill-B1{fill:#0D32B2;} + .d2-3363565171 .fill-B2{fill:#0D32B2;} + .d2-3363565171 .fill-B3{fill:#E3E9FD;} + .d2-3363565171 .fill-B4{fill:#E3E9FD;} + .d2-3363565171 .fill-B5{fill:#EDF0FD;} + .d2-3363565171 .fill-B6{fill:#F7F8FE;} + .d2-3363565171 .fill-AA2{fill:#4A6FF3;} + .d2-3363565171 .fill-AA4{fill:#EDF0FD;} + .d2-3363565171 .fill-AA5{fill:#F7F8FE;} + .d2-3363565171 .fill-AB4{fill:#EDF0FD;} + .d2-3363565171 .fill-AB5{fill:#F7F8FE;} + .d2-3363565171 .stroke-N1{stroke:#0A0F25;} + .d2-3363565171 .stroke-N2{stroke:#676C7E;} + .d2-3363565171 .stroke-N3{stroke:#9499AB;} + .d2-3363565171 .stroke-N4{stroke:#CFD2DD;} + .d2-3363565171 .stroke-N5{stroke:#DEE1EB;} + .d2-3363565171 .stroke-N6{stroke:#EEF1F8;} + .d2-3363565171 .stroke-N7{stroke:#FFFFFF;} + .d2-3363565171 .stroke-B1{stroke:#0D32B2;} + .d2-3363565171 .stroke-B2{stroke:#0D32B2;} + .d2-3363565171 .stroke-B3{stroke:#E3E9FD;} + .d2-3363565171 .stroke-B4{stroke:#E3E9FD;} + .d2-3363565171 .stroke-B5{stroke:#EDF0FD;} + .d2-3363565171 .stroke-B6{stroke:#F7F8FE;} + .d2-3363565171 .stroke-AA2{stroke:#4A6FF3;} + .d2-3363565171 .stroke-AA4{stroke:#EDF0FD;} + .d2-3363565171 .stroke-AA5{stroke:#F7F8FE;} + .d2-3363565171 .stroke-AB4{stroke:#EDF0FD;} + .d2-3363565171 .stroke-AB5{stroke:#F7F8FE;} + .d2-3363565171 .background-color-N1{background-color:#0A0F25;} + .d2-3363565171 .background-color-N2{background-color:#676C7E;} + .d2-3363565171 .background-color-N3{background-color:#9499AB;} + .d2-3363565171 .background-color-N4{background-color:#CFD2DD;} + .d2-3363565171 .background-color-N5{background-color:#DEE1EB;} + .d2-3363565171 .background-color-N6{background-color:#EEF1F8;} + .d2-3363565171 .background-color-N7{background-color:#FFFFFF;} + .d2-3363565171 .background-color-B1{background-color:#0D32B2;} + .d2-3363565171 .background-color-B2{background-color:#0D32B2;} + .d2-3363565171 .background-color-B3{background-color:#E3E9FD;} + .d2-3363565171 .background-color-B4{background-color:#E3E9FD;} + .d2-3363565171 .background-color-B5{background-color:#EDF0FD;} + .d2-3363565171 .background-color-B6{background-color:#F7F8FE;} + .d2-3363565171 .background-color-AA2{background-color:#4A6FF3;} + .d2-3363565171 .background-color-AA4{background-color:#EDF0FD;} + .d2-3363565171 .background-color-AA5{background-color:#F7F8FE;} + .d2-3363565171 .background-color-AB4{background-color:#EDF0FD;} + .d2-3363565171 .background-color-AB5{background-color:#F7F8FE;} + .d2-3363565171 .color-N1{color:#0A0F25;} + .d2-3363565171 .color-N2{color:#676C7E;} + .d2-3363565171 .color-N3{color:#9499AB;} + .d2-3363565171 .color-N4{color:#CFD2DD;} + .d2-3363565171 .color-N5{color:#DEE1EB;} + .d2-3363565171 .color-N6{color:#EEF1F8;} + .d2-3363565171 .color-N7{color:#FFFFFF;} + .d2-3363565171 .color-B1{color:#0D32B2;} + .d2-3363565171 .color-B2{color:#0D32B2;} + .d2-3363565171 .color-B3{color:#E3E9FD;} + .d2-3363565171 .color-B4{color:#E3E9FD;} + .d2-3363565171 .color-B5{color:#EDF0FD;} + .d2-3363565171 .color-B6{color:#F7F8FE;} + .d2-3363565171 .color-AA2{color:#4A6FF3;} + .d2-3363565171 .color-AA4{color:#EDF0FD;} + .d2-3363565171 .color-AA5{color:#F7F8FE;} + .d2-3363565171 .color-AB4{color:#EDF0FD;} + .d2-3363565171 .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}]]>non containercontainerimageDefaultOutsideTopLeftOutsideTopCenterOutsideTopRightOutsideLeftTopOutsideLeftMiddleOutsideLeftBottomOutsideRightTopOutsideRightMiddleOutsideRightBottomOutsideBottomLeftOutsideBottomCenterOutsideBottomRightInsideTopLeftInsideTopCenterInsideTopRightInsideMiddleLeftInsideMiddleCenterInsideMiddleRightInsideBottomLeftInsideBottomCenterInsideBottomRightDefaultOutsideTopLeftOutsideTopCenterOutsideTopRightOutsideLeftTopOutsideLeftMiddleOutsideLeftBottomOutsideRightTopOutsideRightMiddleOutsideRightBottomOutsideBottomLeftOutsideBottomCenterOutsideBottomRightInsideTopLeftInsideTopCenterInsideTopRightInsideMiddleLeftInsideMiddleCenterInsideMiddleRightInsideBottomLeftInsideBottomCenterInsideBottomRightDefaultOutsideTopLeftOutsideTopCenterOutsideTopRightOutsideLeftTopOutsideLeftMiddleOutsideLeftBottomOutsideRightTopOutsideRightMiddleOutsideRightBottomOutsideBottomLeftOutsideBottomCenterOutsideBottomRightInsideTopLeftInsideTopCenterInsideTopRightInsideMiddleLeftInsideMiddleCenterInsideMiddleRightInsideBottomLeftInsideBottomCenterInsideBottomRightDefaultOutsideTopLeftOutsideTopCenterOutsideTopRightOutsideLeftTopOutsideLeftMiddleOutsideLeftBottomOutsideRightTopOutsideRightMiddleOutsideRightBottomOutsideBottomLeftOutsideBottomCenterOutsideBottomRightInsideTopLeftInsideTopCenterInsideTopRightInsideMiddleLeftInsideMiddleCenterInsideMiddleRightInsideBottomLeftInsideBottomCenterInsideBottomRight diff --git a/e2etests/testdata/stable/icon_positions/elk/board.exp.json b/e2etests/testdata/stable/icon_positions/elk/board.exp.json index c5c6db1aab..97bea24318 100644 --- a/e2etests/testdata/stable/icon_positions/elk/board.exp.json +++ b/e2etests/testdata/stable/icon_positions/elk/board.exp.json @@ -4834,6 +4834,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 3439.5, @@ -4872,6 +4873,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 3439.5, diff --git a/e2etests/testdata/stable/icon_positions/elk/sketch.exp.svg b/e2etests/testdata/stable/icon_positions/elk/sketch.exp.svg index 1a66a886f6..2140f6165e 100644 --- a/e2etests/testdata/stable/icon_positions/elk/sketch.exp.svg +++ b/e2etests/testdata/stable/icon_positions/elk/sketch.exp.svg @@ -1,16 +1,16 @@ -non containercontainerimageDefaultOutsideTopLeftOutsideTopCenterOutsideTopRightOutsideLeftTopOutsideLeftMiddleOutsideLeftBottomOutsideRightTopOutsideRightMiddleOutsideRightBottomOutsideBottomLeftOutsideBottomCenterOutsideBottomRightInsideTopLeftInsideTopCenterInsideTopRightInsideMiddleLeftInsideMiddleCenterInsideMiddleRightInsideBottomLeftInsideBottomCenterInsideBottomRightDefaultOutsideTopLeftOutsideTopCenterOutsideTopRightOutsideLeftTopOutsideLeftMiddleOutsideLeftBottomOutsideRightTopOutsideRightMiddleOutsideRightBottomOutsideBottomLeftOutsideBottomCenterOutsideBottomRightInsideTopLeftInsideTopCenterInsideTopRightInsideMiddleLeftInsideMiddleCenterInsideMiddleRightInsideBottomLeftInsideBottomCenterInsideBottomRightDefaultOutsideTopLeftOutsideTopCenterOutsideTopRightOutsideLeftTopOutsideLeftMiddleOutsideLeftBottomOutsideRightTopOutsideRightMiddleOutsideRightBottomOutsideBottomLeftOutsideBottomCenterOutsideBottomRightInsideTopLeftInsideTopCenterInsideTopRightInsideMiddleLeftInsideMiddleCenterInsideMiddleRightInsideBottomLeftInsideBottomCenterInsideBottomRightDefaultOutsideTopLeftOutsideTopCenterOutsideTopRightOutsideLeftTopOutsideLeftMiddleOutsideLeftBottomOutsideRightTopOutsideRightMiddleOutsideRightBottomOutsideBottomLeftOutsideBottomCenterOutsideBottomRightInsideTopLeftInsideTopCenterInsideTopRightInsideMiddleLeftInsideMiddleCenterInsideMiddleRightInsideBottomLeftInsideBottomCenterInsideBottomRight + .d2-2563151469 .fill-N1{fill:#0A0F25;} + .d2-2563151469 .fill-N2{fill:#676C7E;} + .d2-2563151469 .fill-N3{fill:#9499AB;} + .d2-2563151469 .fill-N4{fill:#CFD2DD;} + .d2-2563151469 .fill-N5{fill:#DEE1EB;} + .d2-2563151469 .fill-N6{fill:#EEF1F8;} + .d2-2563151469 .fill-N7{fill:#FFFFFF;} + .d2-2563151469 .fill-B1{fill:#0D32B2;} + .d2-2563151469 .fill-B2{fill:#0D32B2;} + .d2-2563151469 .fill-B3{fill:#E3E9FD;} + .d2-2563151469 .fill-B4{fill:#E3E9FD;} + .d2-2563151469 .fill-B5{fill:#EDF0FD;} + .d2-2563151469 .fill-B6{fill:#F7F8FE;} + .d2-2563151469 .fill-AA2{fill:#4A6FF3;} + .d2-2563151469 .fill-AA4{fill:#EDF0FD;} + .d2-2563151469 .fill-AA5{fill:#F7F8FE;} + .d2-2563151469 .fill-AB4{fill:#EDF0FD;} + .d2-2563151469 .fill-AB5{fill:#F7F8FE;} + .d2-2563151469 .stroke-N1{stroke:#0A0F25;} + .d2-2563151469 .stroke-N2{stroke:#676C7E;} + .d2-2563151469 .stroke-N3{stroke:#9499AB;} + .d2-2563151469 .stroke-N4{stroke:#CFD2DD;} + .d2-2563151469 .stroke-N5{stroke:#DEE1EB;} + .d2-2563151469 .stroke-N6{stroke:#EEF1F8;} + .d2-2563151469 .stroke-N7{stroke:#FFFFFF;} + .d2-2563151469 .stroke-B1{stroke:#0D32B2;} + .d2-2563151469 .stroke-B2{stroke:#0D32B2;} + .d2-2563151469 .stroke-B3{stroke:#E3E9FD;} + .d2-2563151469 .stroke-B4{stroke:#E3E9FD;} + .d2-2563151469 .stroke-B5{stroke:#EDF0FD;} + .d2-2563151469 .stroke-B6{stroke:#F7F8FE;} + .d2-2563151469 .stroke-AA2{stroke:#4A6FF3;} + .d2-2563151469 .stroke-AA4{stroke:#EDF0FD;} + .d2-2563151469 .stroke-AA5{stroke:#F7F8FE;} + .d2-2563151469 .stroke-AB4{stroke:#EDF0FD;} + .d2-2563151469 .stroke-AB5{stroke:#F7F8FE;} + .d2-2563151469 .background-color-N1{background-color:#0A0F25;} + .d2-2563151469 .background-color-N2{background-color:#676C7E;} + .d2-2563151469 .background-color-N3{background-color:#9499AB;} + .d2-2563151469 .background-color-N4{background-color:#CFD2DD;} + .d2-2563151469 .background-color-N5{background-color:#DEE1EB;} + .d2-2563151469 .background-color-N6{background-color:#EEF1F8;} + .d2-2563151469 .background-color-N7{background-color:#FFFFFF;} + .d2-2563151469 .background-color-B1{background-color:#0D32B2;} + .d2-2563151469 .background-color-B2{background-color:#0D32B2;} + .d2-2563151469 .background-color-B3{background-color:#E3E9FD;} + .d2-2563151469 .background-color-B4{background-color:#E3E9FD;} + .d2-2563151469 .background-color-B5{background-color:#EDF0FD;} + .d2-2563151469 .background-color-B6{background-color:#F7F8FE;} + .d2-2563151469 .background-color-AA2{background-color:#4A6FF3;} + .d2-2563151469 .background-color-AA4{background-color:#EDF0FD;} + .d2-2563151469 .background-color-AA5{background-color:#F7F8FE;} + .d2-2563151469 .background-color-AB4{background-color:#EDF0FD;} + .d2-2563151469 .background-color-AB5{background-color:#F7F8FE;} + .d2-2563151469 .color-N1{color:#0A0F25;} + .d2-2563151469 .color-N2{color:#676C7E;} + .d2-2563151469 .color-N3{color:#9499AB;} + .d2-2563151469 .color-N4{color:#CFD2DD;} + .d2-2563151469 .color-N5{color:#DEE1EB;} + .d2-2563151469 .color-N6{color:#EEF1F8;} + .d2-2563151469 .color-N7{color:#FFFFFF;} + .d2-2563151469 .color-B1{color:#0D32B2;} + .d2-2563151469 .color-B2{color:#0D32B2;} + .d2-2563151469 .color-B3{color:#E3E9FD;} + .d2-2563151469 .color-B4{color:#E3E9FD;} + .d2-2563151469 .color-B5{color:#EDF0FD;} + .d2-2563151469 .color-B6{color:#F7F8FE;} + .d2-2563151469 .color-AA2{color:#4A6FF3;} + .d2-2563151469 .color-AA4{color:#EDF0FD;} + .d2-2563151469 .color-AA5{color:#F7F8FE;} + .d2-2563151469 .color-AB4{color:#EDF0FD;} + .d2-2563151469 .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}]]>non containercontainerimageDefaultOutsideTopLeftOutsideTopCenterOutsideTopRightOutsideLeftTopOutsideLeftMiddleOutsideLeftBottomOutsideRightTopOutsideRightMiddleOutsideRightBottomOutsideBottomLeftOutsideBottomCenterOutsideBottomRightInsideTopLeftInsideTopCenterInsideTopRightInsideMiddleLeftInsideMiddleCenterInsideMiddleRightInsideBottomLeftInsideBottomCenterInsideBottomRightDefaultOutsideTopLeftOutsideTopCenterOutsideTopRightOutsideLeftTopOutsideLeftMiddleOutsideLeftBottomOutsideRightTopOutsideRightMiddleOutsideRightBottomOutsideBottomLeftOutsideBottomCenterOutsideBottomRightInsideTopLeftInsideTopCenterInsideTopRightInsideMiddleLeftInsideMiddleCenterInsideMiddleRightInsideBottomLeftInsideBottomCenterInsideBottomRightDefaultOutsideTopLeftOutsideTopCenterOutsideTopRightOutsideLeftTopOutsideLeftMiddleOutsideLeftBottomOutsideRightTopOutsideRightMiddleOutsideRightBottomOutsideBottomLeftOutsideBottomCenterOutsideBottomRightInsideTopLeftInsideTopCenterInsideTopRightInsideMiddleLeftInsideMiddleCenterInsideMiddleRightInsideBottomLeftInsideBottomCenterInsideBottomRightDefaultOutsideTopLeftOutsideTopCenterOutsideTopRightOutsideLeftTopOutsideLeftMiddleOutsideLeftBottomOutsideRightTopOutsideRightMiddleOutsideRightBottomOutsideBottomLeftOutsideBottomCenterOutsideBottomRightInsideTopLeftInsideTopCenterInsideTopRightInsideMiddleLeftInsideMiddleCenterInsideMiddleRightInsideBottomLeftInsideBottomCenterInsideBottomRight diff --git a/e2etests/testdata/stable/images/dagre/board.exp.json b/e2etests/testdata/stable/images/dagre/board.exp.json index 0bff6ddbca..ded3980fd5 100644 --- a/e2etests/testdata/stable/images/dagre/board.exp.json +++ b/e2etests/testdata/stable/images/dagre/board.exp.json @@ -134,6 +134,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 64, diff --git a/e2etests/testdata/stable/images/dagre/sketch.exp.svg b/e2etests/testdata/stable/images/dagre/sketch.exp.svg index 0aabc5e16c..d181f33358 100644 --- a/e2etests/testdata/stable/images/dagre/sketch.exp.svg +++ b/e2etests/testdata/stable/images/dagre/sketch.exp.svg @@ -1,9 +1,9 @@ -ab + .d2-1273604111 .fill-N1{fill:#0A0F25;} + .d2-1273604111 .fill-N2{fill:#676C7E;} + .d2-1273604111 .fill-N3{fill:#9499AB;} + .d2-1273604111 .fill-N4{fill:#CFD2DD;} + .d2-1273604111 .fill-N5{fill:#DEE1EB;} + .d2-1273604111 .fill-N6{fill:#EEF1F8;} + .d2-1273604111 .fill-N7{fill:#FFFFFF;} + .d2-1273604111 .fill-B1{fill:#0D32B2;} + .d2-1273604111 .fill-B2{fill:#0D32B2;} + .d2-1273604111 .fill-B3{fill:#E3E9FD;} + .d2-1273604111 .fill-B4{fill:#E3E9FD;} + .d2-1273604111 .fill-B5{fill:#EDF0FD;} + .d2-1273604111 .fill-B6{fill:#F7F8FE;} + .d2-1273604111 .fill-AA2{fill:#4A6FF3;} + .d2-1273604111 .fill-AA4{fill:#EDF0FD;} + .d2-1273604111 .fill-AA5{fill:#F7F8FE;} + .d2-1273604111 .fill-AB4{fill:#EDF0FD;} + .d2-1273604111 .fill-AB5{fill:#F7F8FE;} + .d2-1273604111 .stroke-N1{stroke:#0A0F25;} + .d2-1273604111 .stroke-N2{stroke:#676C7E;} + .d2-1273604111 .stroke-N3{stroke:#9499AB;} + .d2-1273604111 .stroke-N4{stroke:#CFD2DD;} + .d2-1273604111 .stroke-N5{stroke:#DEE1EB;} + .d2-1273604111 .stroke-N6{stroke:#EEF1F8;} + .d2-1273604111 .stroke-N7{stroke:#FFFFFF;} + .d2-1273604111 .stroke-B1{stroke:#0D32B2;} + .d2-1273604111 .stroke-B2{stroke:#0D32B2;} + .d2-1273604111 .stroke-B3{stroke:#E3E9FD;} + .d2-1273604111 .stroke-B4{stroke:#E3E9FD;} + .d2-1273604111 .stroke-B5{stroke:#EDF0FD;} + .d2-1273604111 .stroke-B6{stroke:#F7F8FE;} + .d2-1273604111 .stroke-AA2{stroke:#4A6FF3;} + .d2-1273604111 .stroke-AA4{stroke:#EDF0FD;} + .d2-1273604111 .stroke-AA5{stroke:#F7F8FE;} + .d2-1273604111 .stroke-AB4{stroke:#EDF0FD;} + .d2-1273604111 .stroke-AB5{stroke:#F7F8FE;} + .d2-1273604111 .background-color-N1{background-color:#0A0F25;} + .d2-1273604111 .background-color-N2{background-color:#676C7E;} + .d2-1273604111 .background-color-N3{background-color:#9499AB;} + .d2-1273604111 .background-color-N4{background-color:#CFD2DD;} + .d2-1273604111 .background-color-N5{background-color:#DEE1EB;} + .d2-1273604111 .background-color-N6{background-color:#EEF1F8;} + .d2-1273604111 .background-color-N7{background-color:#FFFFFF;} + .d2-1273604111 .background-color-B1{background-color:#0D32B2;} + .d2-1273604111 .background-color-B2{background-color:#0D32B2;} + .d2-1273604111 .background-color-B3{background-color:#E3E9FD;} + .d2-1273604111 .background-color-B4{background-color:#E3E9FD;} + .d2-1273604111 .background-color-B5{background-color:#EDF0FD;} + .d2-1273604111 .background-color-B6{background-color:#F7F8FE;} + .d2-1273604111 .background-color-AA2{background-color:#4A6FF3;} + .d2-1273604111 .background-color-AA4{background-color:#EDF0FD;} + .d2-1273604111 .background-color-AA5{background-color:#F7F8FE;} + .d2-1273604111 .background-color-AB4{background-color:#EDF0FD;} + .d2-1273604111 .background-color-AB5{background-color:#F7F8FE;} + .d2-1273604111 .color-N1{color:#0A0F25;} + .d2-1273604111 .color-N2{color:#676C7E;} + .d2-1273604111 .color-N3{color:#9499AB;} + .d2-1273604111 .color-N4{color:#CFD2DD;} + .d2-1273604111 .color-N5{color:#DEE1EB;} + .d2-1273604111 .color-N6{color:#EEF1F8;} + .d2-1273604111 .color-N7{color:#FFFFFF;} + .d2-1273604111 .color-B1{color:#0D32B2;} + .d2-1273604111 .color-B2{color:#0D32B2;} + .d2-1273604111 .color-B3{color:#E3E9FD;} + .d2-1273604111 .color-B4{color:#E3E9FD;} + .d2-1273604111 .color-B5{color:#EDF0FD;} + .d2-1273604111 .color-B6{color:#F7F8FE;} + .d2-1273604111 .color-AA2{color:#4A6FF3;} + .d2-1273604111 .color-AA4{color:#EDF0FD;} + .d2-1273604111 .color-AA5{color:#F7F8FE;} + .d2-1273604111 .color-AB4{color:#EDF0FD;} + .d2-1273604111 .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}]]>ab diff --git a/e2etests/testdata/stable/images/elk/board.exp.json b/e2etests/testdata/stable/images/elk/board.exp.json index 06af1dac13..d5a7932e22 100644 --- a/e2etests/testdata/stable/images/elk/board.exp.json +++ b/e2etests/testdata/stable/images/elk/board.exp.json @@ -134,6 +134,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 76, diff --git a/e2etests/testdata/stable/images/elk/sketch.exp.svg b/e2etests/testdata/stable/images/elk/sketch.exp.svg index c8da384e7c..47457678ed 100644 --- a/e2etests/testdata/stable/images/elk/sketch.exp.svg +++ b/e2etests/testdata/stable/images/elk/sketch.exp.svg @@ -1,9 +1,9 @@ -ab + .d2-3786807752 .fill-N1{fill:#0A0F25;} + .d2-3786807752 .fill-N2{fill:#676C7E;} + .d2-3786807752 .fill-N3{fill:#9499AB;} + .d2-3786807752 .fill-N4{fill:#CFD2DD;} + .d2-3786807752 .fill-N5{fill:#DEE1EB;} + .d2-3786807752 .fill-N6{fill:#EEF1F8;} + .d2-3786807752 .fill-N7{fill:#FFFFFF;} + .d2-3786807752 .fill-B1{fill:#0D32B2;} + .d2-3786807752 .fill-B2{fill:#0D32B2;} + .d2-3786807752 .fill-B3{fill:#E3E9FD;} + .d2-3786807752 .fill-B4{fill:#E3E9FD;} + .d2-3786807752 .fill-B5{fill:#EDF0FD;} + .d2-3786807752 .fill-B6{fill:#F7F8FE;} + .d2-3786807752 .fill-AA2{fill:#4A6FF3;} + .d2-3786807752 .fill-AA4{fill:#EDF0FD;} + .d2-3786807752 .fill-AA5{fill:#F7F8FE;} + .d2-3786807752 .fill-AB4{fill:#EDF0FD;} + .d2-3786807752 .fill-AB5{fill:#F7F8FE;} + .d2-3786807752 .stroke-N1{stroke:#0A0F25;} + .d2-3786807752 .stroke-N2{stroke:#676C7E;} + .d2-3786807752 .stroke-N3{stroke:#9499AB;} + .d2-3786807752 .stroke-N4{stroke:#CFD2DD;} + .d2-3786807752 .stroke-N5{stroke:#DEE1EB;} + .d2-3786807752 .stroke-N6{stroke:#EEF1F8;} + .d2-3786807752 .stroke-N7{stroke:#FFFFFF;} + .d2-3786807752 .stroke-B1{stroke:#0D32B2;} + .d2-3786807752 .stroke-B2{stroke:#0D32B2;} + .d2-3786807752 .stroke-B3{stroke:#E3E9FD;} + .d2-3786807752 .stroke-B4{stroke:#E3E9FD;} + .d2-3786807752 .stroke-B5{stroke:#EDF0FD;} + .d2-3786807752 .stroke-B6{stroke:#F7F8FE;} + .d2-3786807752 .stroke-AA2{stroke:#4A6FF3;} + .d2-3786807752 .stroke-AA4{stroke:#EDF0FD;} + .d2-3786807752 .stroke-AA5{stroke:#F7F8FE;} + .d2-3786807752 .stroke-AB4{stroke:#EDF0FD;} + .d2-3786807752 .stroke-AB5{stroke:#F7F8FE;} + .d2-3786807752 .background-color-N1{background-color:#0A0F25;} + .d2-3786807752 .background-color-N2{background-color:#676C7E;} + .d2-3786807752 .background-color-N3{background-color:#9499AB;} + .d2-3786807752 .background-color-N4{background-color:#CFD2DD;} + .d2-3786807752 .background-color-N5{background-color:#DEE1EB;} + .d2-3786807752 .background-color-N6{background-color:#EEF1F8;} + .d2-3786807752 .background-color-N7{background-color:#FFFFFF;} + .d2-3786807752 .background-color-B1{background-color:#0D32B2;} + .d2-3786807752 .background-color-B2{background-color:#0D32B2;} + .d2-3786807752 .background-color-B3{background-color:#E3E9FD;} + .d2-3786807752 .background-color-B4{background-color:#E3E9FD;} + .d2-3786807752 .background-color-B5{background-color:#EDF0FD;} + .d2-3786807752 .background-color-B6{background-color:#F7F8FE;} + .d2-3786807752 .background-color-AA2{background-color:#4A6FF3;} + .d2-3786807752 .background-color-AA4{background-color:#EDF0FD;} + .d2-3786807752 .background-color-AA5{background-color:#F7F8FE;} + .d2-3786807752 .background-color-AB4{background-color:#EDF0FD;} + .d2-3786807752 .background-color-AB5{background-color:#F7F8FE;} + .d2-3786807752 .color-N1{color:#0A0F25;} + .d2-3786807752 .color-N2{color:#676C7E;} + .d2-3786807752 .color-N3{color:#9499AB;} + .d2-3786807752 .color-N4{color:#CFD2DD;} + .d2-3786807752 .color-N5{color:#DEE1EB;} + .d2-3786807752 .color-N6{color:#EEF1F8;} + .d2-3786807752 .color-N7{color:#FFFFFF;} + .d2-3786807752 .color-B1{color:#0D32B2;} + .d2-3786807752 .color-B2{color:#0D32B2;} + .d2-3786807752 .color-B3{color:#E3E9FD;} + .d2-3786807752 .color-B4{color:#E3E9FD;} + .d2-3786807752 .color-B5{color:#EDF0FD;} + .d2-3786807752 .color-B6{color:#F7F8FE;} + .d2-3786807752 .color-AA2{color:#4A6FF3;} + .d2-3786807752 .color-AA4{color:#EDF0FD;} + .d2-3786807752 .color-AA5{color:#F7F8FE;} + .d2-3786807752 .color-AB4{color:#EDF0FD;} + .d2-3786807752 .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}]]>ab diff --git a/e2etests/testdata/stable/investigate/dagre/board.exp.json b/e2etests/testdata/stable/investigate/dagre/board.exp.json index 00f4bf257e..dfd222ad5d 100644 --- a/e2etests/testdata/stable/investigate/dagre/board.exp.json +++ b/e2etests/testdata/stable/investigate/dagre/board.exp.json @@ -1323,6 +1323,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 164, @@ -1370,6 +1371,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 333, @@ -1417,6 +1419,7 @@ "labelHeight": 21, "labelPosition": "INSIDE_MIDDLE_CENTER", "labelPercentage": 0, + "link": "", "route": [ { "x": 103, @@ -1512,6 +1515,7 @@ "labelHeight": 21, "labelPosition": "INSIDE_MIDDLE_CENTER", "labelPercentage": 0, + "link": "", "route": [ { "x": 374, @@ -1775,6 +1779,7 @@ "labelHeight": 21, "labelPosition": "INSIDE_MIDDLE_CENTER", "labelPercentage": 0, + "link": "", "route": [ { "x": 308, @@ -1822,6 +1827,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 82, @@ -1869,6 +1875,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 82, @@ -1916,6 +1923,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 82, @@ -1975,6 +1983,7 @@ "labelHeight": 21, "labelPosition": "INSIDE_MIDDLE_CENTER", "labelPercentage": 0, + "link": "", "route": [ { "x": 82, @@ -2082,6 +2091,7 @@ "labelHeight": 21, "labelPosition": "INSIDE_MIDDLE_CENTER", "labelPercentage": 0, + "link": "", "route": [ { "x": 82, @@ -2165,6 +2175,7 @@ "labelHeight": 21, "labelPosition": "INSIDE_MIDDLE_CENTER", "labelPercentage": 0, + "link": "", "route": [ { "x": 82, @@ -2296,6 +2307,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 282, @@ -2343,6 +2355,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 282.25, @@ -2402,6 +2415,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 282.25, @@ -2449,6 +2463,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 308, @@ -2532,6 +2547,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 457.25, @@ -2591,6 +2607,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 113, @@ -2638,6 +2655,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 457.25, @@ -2685,6 +2703,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 421, @@ -2828,6 +2847,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 422.5, @@ -2959,6 +2979,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 282.25, @@ -3018,6 +3039,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 441.25, @@ -3077,6 +3099,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 408, @@ -3124,6 +3147,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 408.5, @@ -3183,6 +3207,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 408.5, @@ -3230,6 +3255,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 380, diff --git a/e2etests/testdata/stable/investigate/dagre/sketch.exp.svg b/e2etests/testdata/stable/investigate/dagre/sketch.exp.svg index 466644f6b0..92f7aba9d4 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-972689705 .fill-N1{fill:#0A0F25;} + .d2-972689705 .fill-N2{fill:#676C7E;} + .d2-972689705 .fill-N3{fill:#9499AB;} + .d2-972689705 .fill-N4{fill:#CFD2DD;} + .d2-972689705 .fill-N5{fill:#DEE1EB;} + .d2-972689705 .fill-N6{fill:#EEF1F8;} + .d2-972689705 .fill-N7{fill:#FFFFFF;} + .d2-972689705 .fill-B1{fill:#0D32B2;} + .d2-972689705 .fill-B2{fill:#0D32B2;} + .d2-972689705 .fill-B3{fill:#E3E9FD;} + .d2-972689705 .fill-B4{fill:#E3E9FD;} + .d2-972689705 .fill-B5{fill:#EDF0FD;} + .d2-972689705 .fill-B6{fill:#F7F8FE;} + .d2-972689705 .fill-AA2{fill:#4A6FF3;} + .d2-972689705 .fill-AA4{fill:#EDF0FD;} + .d2-972689705 .fill-AA5{fill:#F7F8FE;} + .d2-972689705 .fill-AB4{fill:#EDF0FD;} + .d2-972689705 .fill-AB5{fill:#F7F8FE;} + .d2-972689705 .stroke-N1{stroke:#0A0F25;} + .d2-972689705 .stroke-N2{stroke:#676C7E;} + .d2-972689705 .stroke-N3{stroke:#9499AB;} + .d2-972689705 .stroke-N4{stroke:#CFD2DD;} + .d2-972689705 .stroke-N5{stroke:#DEE1EB;} + .d2-972689705 .stroke-N6{stroke:#EEF1F8;} + .d2-972689705 .stroke-N7{stroke:#FFFFFF;} + .d2-972689705 .stroke-B1{stroke:#0D32B2;} + .d2-972689705 .stroke-B2{stroke:#0D32B2;} + .d2-972689705 .stroke-B3{stroke:#E3E9FD;} + .d2-972689705 .stroke-B4{stroke:#E3E9FD;} + .d2-972689705 .stroke-B5{stroke:#EDF0FD;} + .d2-972689705 .stroke-B6{stroke:#F7F8FE;} + .d2-972689705 .stroke-AA2{stroke:#4A6FF3;} + .d2-972689705 .stroke-AA4{stroke:#EDF0FD;} + .d2-972689705 .stroke-AA5{stroke:#F7F8FE;} + .d2-972689705 .stroke-AB4{stroke:#EDF0FD;} + .d2-972689705 .stroke-AB5{stroke:#F7F8FE;} + .d2-972689705 .background-color-N1{background-color:#0A0F25;} + .d2-972689705 .background-color-N2{background-color:#676C7E;} + .d2-972689705 .background-color-N3{background-color:#9499AB;} + .d2-972689705 .background-color-N4{background-color:#CFD2DD;} + .d2-972689705 .background-color-N5{background-color:#DEE1EB;} + .d2-972689705 .background-color-N6{background-color:#EEF1F8;} + .d2-972689705 .background-color-N7{background-color:#FFFFFF;} + .d2-972689705 .background-color-B1{background-color:#0D32B2;} + .d2-972689705 .background-color-B2{background-color:#0D32B2;} + .d2-972689705 .background-color-B3{background-color:#E3E9FD;} + .d2-972689705 .background-color-B4{background-color:#E3E9FD;} + .d2-972689705 .background-color-B5{background-color:#EDF0FD;} + .d2-972689705 .background-color-B6{background-color:#F7F8FE;} + .d2-972689705 .background-color-AA2{background-color:#4A6FF3;} + .d2-972689705 .background-color-AA4{background-color:#EDF0FD;} + .d2-972689705 .background-color-AA5{background-color:#F7F8FE;} + .d2-972689705 .background-color-AB4{background-color:#EDF0FD;} + .d2-972689705 .background-color-AB5{background-color:#F7F8FE;} + .d2-972689705 .color-N1{color:#0A0F25;} + .d2-972689705 .color-N2{color:#676C7E;} + .d2-972689705 .color-N3{color:#9499AB;} + .d2-972689705 .color-N4{color:#CFD2DD;} + .d2-972689705 .color-N5{color:#DEE1EB;} + .d2-972689705 .color-N6{color:#EEF1F8;} + .d2-972689705 .color-N7{color:#FFFFFF;} + .d2-972689705 .color-B1{color:#0D32B2;} + .d2-972689705 .color-B2{color:#0D32B2;} + .d2-972689705 .color-B3{color:#E3E9FD;} + .d2-972689705 .color-B4{color:#E3E9FD;} + .d2-972689705 .color-B5{color:#EDF0FD;} + .d2-972689705 .color-B6{color:#F7F8FE;} + .d2-972689705 .color-AA2{color:#4A6FF3;} + .d2-972689705 .color-AA4{color:#EDF0FD;} + .d2-972689705 .color-AA5{color:#F7F8FE;} + .d2-972689705 .color-AB4{color:#EDF0FD;} + .d2-972689705 .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 diff --git a/e2etests/testdata/stable/investigate/elk/board.exp.json b/e2etests/testdata/stable/investigate/elk/board.exp.json index 35304cfc62..f90615384a 100644 --- a/e2etests/testdata/stable/investigate/elk/board.exp.json +++ b/e2etests/testdata/stable/investigate/elk/board.exp.json @@ -1323,6 +1323,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 263, @@ -1361,6 +1362,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 280, @@ -1407,6 +1409,7 @@ "labelHeight": 21, "labelPosition": "INSIDE_MIDDLE_CENTER", "labelPercentage": 0, + "link": "", "route": [ { "x": 229, @@ -1453,6 +1456,7 @@ "labelHeight": 21, "labelPosition": "INSIDE_MIDDLE_CENTER", "labelPercentage": 0, + "link": "", "route": [ { "x": 314, @@ -1499,6 +1503,7 @@ "labelHeight": 21, "labelPosition": "INSIDE_MIDDLE_CENTER", "labelPercentage": 0, + "link": "", "route": [ { "x": 236, @@ -1537,6 +1542,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 151, @@ -1583,6 +1589,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 235, @@ -1621,6 +1628,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 235, @@ -1659,6 +1667,7 @@ "labelHeight": 21, "labelPosition": "INSIDE_MIDDLE_CENTER", "labelPercentage": 0, + "link": "", "route": [ { "x": 248.33299255371094, @@ -1705,6 +1714,7 @@ "labelHeight": 21, "labelPosition": "INSIDE_MIDDLE_CENTER", "labelPercentage": 0, + "link": "", "route": [ { "x": 465, @@ -1751,6 +1761,7 @@ "labelHeight": 21, "labelPosition": "INSIDE_MIDDLE_CENTER", "labelPercentage": 0, + "link": "", "route": [ { "x": 342, @@ -1805,6 +1816,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 363, @@ -1851,6 +1863,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 435.6659851074219, @@ -1889,6 +1902,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 435.6659851074219, @@ -1927,6 +1941,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 236, @@ -1973,6 +1988,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 93.5, @@ -2011,6 +2027,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 221.66600036621094, @@ -2049,6 +2066,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 93.5, @@ -2095,6 +2113,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 153, @@ -2133,6 +2152,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 139.66600036621094, @@ -2179,6 +2199,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 454.0830078125, @@ -2217,6 +2238,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 166.33299255371094, @@ -2263,6 +2285,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 431, @@ -2301,6 +2324,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 431.0830078125, @@ -2347,6 +2371,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 325.8330078125, @@ -2385,6 +2410,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 203, diff --git a/e2etests/testdata/stable/investigate/elk/sketch.exp.svg b/e2etests/testdata/stable/investigate/elk/sketch.exp.svg index 7d0174b4ab..a86309a43e 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-465613311 .fill-N1{fill:#0A0F25;} + .d2-465613311 .fill-N2{fill:#676C7E;} + .d2-465613311 .fill-N3{fill:#9499AB;} + .d2-465613311 .fill-N4{fill:#CFD2DD;} + .d2-465613311 .fill-N5{fill:#DEE1EB;} + .d2-465613311 .fill-N6{fill:#EEF1F8;} + .d2-465613311 .fill-N7{fill:#FFFFFF;} + .d2-465613311 .fill-B1{fill:#0D32B2;} + .d2-465613311 .fill-B2{fill:#0D32B2;} + .d2-465613311 .fill-B3{fill:#E3E9FD;} + .d2-465613311 .fill-B4{fill:#E3E9FD;} + .d2-465613311 .fill-B5{fill:#EDF0FD;} + .d2-465613311 .fill-B6{fill:#F7F8FE;} + .d2-465613311 .fill-AA2{fill:#4A6FF3;} + .d2-465613311 .fill-AA4{fill:#EDF0FD;} + .d2-465613311 .fill-AA5{fill:#F7F8FE;} + .d2-465613311 .fill-AB4{fill:#EDF0FD;} + .d2-465613311 .fill-AB5{fill:#F7F8FE;} + .d2-465613311 .stroke-N1{stroke:#0A0F25;} + .d2-465613311 .stroke-N2{stroke:#676C7E;} + .d2-465613311 .stroke-N3{stroke:#9499AB;} + .d2-465613311 .stroke-N4{stroke:#CFD2DD;} + .d2-465613311 .stroke-N5{stroke:#DEE1EB;} + .d2-465613311 .stroke-N6{stroke:#EEF1F8;} + .d2-465613311 .stroke-N7{stroke:#FFFFFF;} + .d2-465613311 .stroke-B1{stroke:#0D32B2;} + .d2-465613311 .stroke-B2{stroke:#0D32B2;} + .d2-465613311 .stroke-B3{stroke:#E3E9FD;} + .d2-465613311 .stroke-B4{stroke:#E3E9FD;} + .d2-465613311 .stroke-B5{stroke:#EDF0FD;} + .d2-465613311 .stroke-B6{stroke:#F7F8FE;} + .d2-465613311 .stroke-AA2{stroke:#4A6FF3;} + .d2-465613311 .stroke-AA4{stroke:#EDF0FD;} + .d2-465613311 .stroke-AA5{stroke:#F7F8FE;} + .d2-465613311 .stroke-AB4{stroke:#EDF0FD;} + .d2-465613311 .stroke-AB5{stroke:#F7F8FE;} + .d2-465613311 .background-color-N1{background-color:#0A0F25;} + .d2-465613311 .background-color-N2{background-color:#676C7E;} + .d2-465613311 .background-color-N3{background-color:#9499AB;} + .d2-465613311 .background-color-N4{background-color:#CFD2DD;} + .d2-465613311 .background-color-N5{background-color:#DEE1EB;} + .d2-465613311 .background-color-N6{background-color:#EEF1F8;} + .d2-465613311 .background-color-N7{background-color:#FFFFFF;} + .d2-465613311 .background-color-B1{background-color:#0D32B2;} + .d2-465613311 .background-color-B2{background-color:#0D32B2;} + .d2-465613311 .background-color-B3{background-color:#E3E9FD;} + .d2-465613311 .background-color-B4{background-color:#E3E9FD;} + .d2-465613311 .background-color-B5{background-color:#EDF0FD;} + .d2-465613311 .background-color-B6{background-color:#F7F8FE;} + .d2-465613311 .background-color-AA2{background-color:#4A6FF3;} + .d2-465613311 .background-color-AA4{background-color:#EDF0FD;} + .d2-465613311 .background-color-AA5{background-color:#F7F8FE;} + .d2-465613311 .background-color-AB4{background-color:#EDF0FD;} + .d2-465613311 .background-color-AB5{background-color:#F7F8FE;} + .d2-465613311 .color-N1{color:#0A0F25;} + .d2-465613311 .color-N2{color:#676C7E;} + .d2-465613311 .color-N3{color:#9499AB;} + .d2-465613311 .color-N4{color:#CFD2DD;} + .d2-465613311 .color-N5{color:#DEE1EB;} + .d2-465613311 .color-N6{color:#EEF1F8;} + .d2-465613311 .color-N7{color:#FFFFFF;} + .d2-465613311 .color-B1{color:#0D32B2;} + .d2-465613311 .color-B2{color:#0D32B2;} + .d2-465613311 .color-B3{color:#E3E9FD;} + .d2-465613311 .color-B4{color:#E3E9FD;} + .d2-465613311 .color-B5{color:#EDF0FD;} + .d2-465613311 .color-B6{color:#F7F8FE;} + .d2-465613311 .color-AA2{color:#4A6FF3;} + .d2-465613311 .color-AA4{color:#EDF0FD;} + .d2-465613311 .color-AA5{color:#F7F8FE;} + .d2-465613311 .color-AB4{color:#EDF0FD;} + .d2-465613311 .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 diff --git a/e2etests/testdata/stable/label-near/dagre/board.exp.json b/e2etests/testdata/stable/label-near/dagre/board.exp.json index 58330c06c0..6532bb417c 100644 --- a/e2etests/testdata/stable/label-near/dagre/board.exp.json +++ b/e2etests/testdata/stable/label-near/dagre/board.exp.json @@ -134,6 +134,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 123, diff --git a/e2etests/testdata/stable/label-near/dagre/sketch.exp.svg b/e2etests/testdata/stable/label-near/dagre/sketch.exp.svg index f98bcf2505..0d2e230e47 100644 --- a/e2etests/testdata/stable/label-near/dagre/sketch.exp.svg +++ b/e2etests/testdata/stable/label-near/dagre/sketch.exp.svg @@ -1,9 +1,9 @@ -workerprofits + .d2-3578601471 .fill-N1{fill:#0A0F25;} + .d2-3578601471 .fill-N2{fill:#676C7E;} + .d2-3578601471 .fill-N3{fill:#9499AB;} + .d2-3578601471 .fill-N4{fill:#CFD2DD;} + .d2-3578601471 .fill-N5{fill:#DEE1EB;} + .d2-3578601471 .fill-N6{fill:#EEF1F8;} + .d2-3578601471 .fill-N7{fill:#FFFFFF;} + .d2-3578601471 .fill-B1{fill:#0D32B2;} + .d2-3578601471 .fill-B2{fill:#0D32B2;} + .d2-3578601471 .fill-B3{fill:#E3E9FD;} + .d2-3578601471 .fill-B4{fill:#E3E9FD;} + .d2-3578601471 .fill-B5{fill:#EDF0FD;} + .d2-3578601471 .fill-B6{fill:#F7F8FE;} + .d2-3578601471 .fill-AA2{fill:#4A6FF3;} + .d2-3578601471 .fill-AA4{fill:#EDF0FD;} + .d2-3578601471 .fill-AA5{fill:#F7F8FE;} + .d2-3578601471 .fill-AB4{fill:#EDF0FD;} + .d2-3578601471 .fill-AB5{fill:#F7F8FE;} + .d2-3578601471 .stroke-N1{stroke:#0A0F25;} + .d2-3578601471 .stroke-N2{stroke:#676C7E;} + .d2-3578601471 .stroke-N3{stroke:#9499AB;} + .d2-3578601471 .stroke-N4{stroke:#CFD2DD;} + .d2-3578601471 .stroke-N5{stroke:#DEE1EB;} + .d2-3578601471 .stroke-N6{stroke:#EEF1F8;} + .d2-3578601471 .stroke-N7{stroke:#FFFFFF;} + .d2-3578601471 .stroke-B1{stroke:#0D32B2;} + .d2-3578601471 .stroke-B2{stroke:#0D32B2;} + .d2-3578601471 .stroke-B3{stroke:#E3E9FD;} + .d2-3578601471 .stroke-B4{stroke:#E3E9FD;} + .d2-3578601471 .stroke-B5{stroke:#EDF0FD;} + .d2-3578601471 .stroke-B6{stroke:#F7F8FE;} + .d2-3578601471 .stroke-AA2{stroke:#4A6FF3;} + .d2-3578601471 .stroke-AA4{stroke:#EDF0FD;} + .d2-3578601471 .stroke-AA5{stroke:#F7F8FE;} + .d2-3578601471 .stroke-AB4{stroke:#EDF0FD;} + .d2-3578601471 .stroke-AB5{stroke:#F7F8FE;} + .d2-3578601471 .background-color-N1{background-color:#0A0F25;} + .d2-3578601471 .background-color-N2{background-color:#676C7E;} + .d2-3578601471 .background-color-N3{background-color:#9499AB;} + .d2-3578601471 .background-color-N4{background-color:#CFD2DD;} + .d2-3578601471 .background-color-N5{background-color:#DEE1EB;} + .d2-3578601471 .background-color-N6{background-color:#EEF1F8;} + .d2-3578601471 .background-color-N7{background-color:#FFFFFF;} + .d2-3578601471 .background-color-B1{background-color:#0D32B2;} + .d2-3578601471 .background-color-B2{background-color:#0D32B2;} + .d2-3578601471 .background-color-B3{background-color:#E3E9FD;} + .d2-3578601471 .background-color-B4{background-color:#E3E9FD;} + .d2-3578601471 .background-color-B5{background-color:#EDF0FD;} + .d2-3578601471 .background-color-B6{background-color:#F7F8FE;} + .d2-3578601471 .background-color-AA2{background-color:#4A6FF3;} + .d2-3578601471 .background-color-AA4{background-color:#EDF0FD;} + .d2-3578601471 .background-color-AA5{background-color:#F7F8FE;} + .d2-3578601471 .background-color-AB4{background-color:#EDF0FD;} + .d2-3578601471 .background-color-AB5{background-color:#F7F8FE;} + .d2-3578601471 .color-N1{color:#0A0F25;} + .d2-3578601471 .color-N2{color:#676C7E;} + .d2-3578601471 .color-N3{color:#9499AB;} + .d2-3578601471 .color-N4{color:#CFD2DD;} + .d2-3578601471 .color-N5{color:#DEE1EB;} + .d2-3578601471 .color-N6{color:#EEF1F8;} + .d2-3578601471 .color-N7{color:#FFFFFF;} + .d2-3578601471 .color-B1{color:#0D32B2;} + .d2-3578601471 .color-B2{color:#0D32B2;} + .d2-3578601471 .color-B3{color:#E3E9FD;} + .d2-3578601471 .color-B4{color:#E3E9FD;} + .d2-3578601471 .color-B5{color:#EDF0FD;} + .d2-3578601471 .color-B6{color:#F7F8FE;} + .d2-3578601471 .color-AA2{color:#4A6FF3;} + .d2-3578601471 .color-AA4{color:#EDF0FD;} + .d2-3578601471 .color-AA5{color:#F7F8FE;} + .d2-3578601471 .color-AB4{color:#EDF0FD;} + .d2-3578601471 .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}]]>workerprofits diff --git a/e2etests/testdata/stable/label-near/elk/board.exp.json b/e2etests/testdata/stable/label-near/elk/board.exp.json index 8dd364c106..767df1a5c1 100644 --- a/e2etests/testdata/stable/label-near/elk/board.exp.json +++ b/e2etests/testdata/stable/label-near/elk/board.exp.json @@ -134,6 +134,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 135, diff --git a/e2etests/testdata/stable/label-near/elk/sketch.exp.svg b/e2etests/testdata/stable/label-near/elk/sketch.exp.svg index dee97c6450..4d2c91dbb2 100644 --- a/e2etests/testdata/stable/label-near/elk/sketch.exp.svg +++ b/e2etests/testdata/stable/label-near/elk/sketch.exp.svg @@ -1,9 +1,9 @@ -workerprofits + .d2-761476988 .fill-N1{fill:#0A0F25;} + .d2-761476988 .fill-N2{fill:#676C7E;} + .d2-761476988 .fill-N3{fill:#9499AB;} + .d2-761476988 .fill-N4{fill:#CFD2DD;} + .d2-761476988 .fill-N5{fill:#DEE1EB;} + .d2-761476988 .fill-N6{fill:#EEF1F8;} + .d2-761476988 .fill-N7{fill:#FFFFFF;} + .d2-761476988 .fill-B1{fill:#0D32B2;} + .d2-761476988 .fill-B2{fill:#0D32B2;} + .d2-761476988 .fill-B3{fill:#E3E9FD;} + .d2-761476988 .fill-B4{fill:#E3E9FD;} + .d2-761476988 .fill-B5{fill:#EDF0FD;} + .d2-761476988 .fill-B6{fill:#F7F8FE;} + .d2-761476988 .fill-AA2{fill:#4A6FF3;} + .d2-761476988 .fill-AA4{fill:#EDF0FD;} + .d2-761476988 .fill-AA5{fill:#F7F8FE;} + .d2-761476988 .fill-AB4{fill:#EDF0FD;} + .d2-761476988 .fill-AB5{fill:#F7F8FE;} + .d2-761476988 .stroke-N1{stroke:#0A0F25;} + .d2-761476988 .stroke-N2{stroke:#676C7E;} + .d2-761476988 .stroke-N3{stroke:#9499AB;} + .d2-761476988 .stroke-N4{stroke:#CFD2DD;} + .d2-761476988 .stroke-N5{stroke:#DEE1EB;} + .d2-761476988 .stroke-N6{stroke:#EEF1F8;} + .d2-761476988 .stroke-N7{stroke:#FFFFFF;} + .d2-761476988 .stroke-B1{stroke:#0D32B2;} + .d2-761476988 .stroke-B2{stroke:#0D32B2;} + .d2-761476988 .stroke-B3{stroke:#E3E9FD;} + .d2-761476988 .stroke-B4{stroke:#E3E9FD;} + .d2-761476988 .stroke-B5{stroke:#EDF0FD;} + .d2-761476988 .stroke-B6{stroke:#F7F8FE;} + .d2-761476988 .stroke-AA2{stroke:#4A6FF3;} + .d2-761476988 .stroke-AA4{stroke:#EDF0FD;} + .d2-761476988 .stroke-AA5{stroke:#F7F8FE;} + .d2-761476988 .stroke-AB4{stroke:#EDF0FD;} + .d2-761476988 .stroke-AB5{stroke:#F7F8FE;} + .d2-761476988 .background-color-N1{background-color:#0A0F25;} + .d2-761476988 .background-color-N2{background-color:#676C7E;} + .d2-761476988 .background-color-N3{background-color:#9499AB;} + .d2-761476988 .background-color-N4{background-color:#CFD2DD;} + .d2-761476988 .background-color-N5{background-color:#DEE1EB;} + .d2-761476988 .background-color-N6{background-color:#EEF1F8;} + .d2-761476988 .background-color-N7{background-color:#FFFFFF;} + .d2-761476988 .background-color-B1{background-color:#0D32B2;} + .d2-761476988 .background-color-B2{background-color:#0D32B2;} + .d2-761476988 .background-color-B3{background-color:#E3E9FD;} + .d2-761476988 .background-color-B4{background-color:#E3E9FD;} + .d2-761476988 .background-color-B5{background-color:#EDF0FD;} + .d2-761476988 .background-color-B6{background-color:#F7F8FE;} + .d2-761476988 .background-color-AA2{background-color:#4A6FF3;} + .d2-761476988 .background-color-AA4{background-color:#EDF0FD;} + .d2-761476988 .background-color-AA5{background-color:#F7F8FE;} + .d2-761476988 .background-color-AB4{background-color:#EDF0FD;} + .d2-761476988 .background-color-AB5{background-color:#F7F8FE;} + .d2-761476988 .color-N1{color:#0A0F25;} + .d2-761476988 .color-N2{color:#676C7E;} + .d2-761476988 .color-N3{color:#9499AB;} + .d2-761476988 .color-N4{color:#CFD2DD;} + .d2-761476988 .color-N5{color:#DEE1EB;} + .d2-761476988 .color-N6{color:#EEF1F8;} + .d2-761476988 .color-N7{color:#FFFFFF;} + .d2-761476988 .color-B1{color:#0D32B2;} + .d2-761476988 .color-B2{color:#0D32B2;} + .d2-761476988 .color-B3{color:#E3E9FD;} + .d2-761476988 .color-B4{color:#E3E9FD;} + .d2-761476988 .color-B5{color:#EDF0FD;} + .d2-761476988 .color-B6{color:#F7F8FE;} + .d2-761476988 .color-AA2{color:#4A6FF3;} + .d2-761476988 .color-AA4{color:#EDF0FD;} + .d2-761476988 .color-AA5{color:#F7F8FE;} + .d2-761476988 .color-AB4{color:#EDF0FD;} + .d2-761476988 .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}]]>workerprofits diff --git a/e2etests/testdata/stable/label_positions/dagre/board.exp.json b/e2etests/testdata/stable/label_positions/dagre/board.exp.json index 2e5f24e9e5..898986be18 100644 --- a/e2etests/testdata/stable/label_positions/dagre/board.exp.json +++ b/e2etests/testdata/stable/label_positions/dagre/board.exp.json @@ -6432,6 +6432,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 3091, @@ -6479,6 +6480,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 3091, @@ -6526,6 +6528,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 3091, diff --git a/e2etests/testdata/stable/label_positions/dagre/sketch.exp.svg b/e2etests/testdata/stable/label_positions/dagre/sketch.exp.svg index fd1e922bc6..e6830e2df3 100644 --- a/e2etests/testdata/stable/label_positions/dagre/sketch.exp.svg +++ b/e2etests/testdata/stable/label_positions/dagre/sketch.exp.svg @@ -1,16 +1,16 @@ -non containercontainerwith iconcontainer with iconDefaultOutsideTopLeftOutsideTopCenterOutsideTopRightOutsideLeftTopOutsideLeftMiddleOutsideLeftBottomOutsideRightTopOutsideRightMiddleOutsideRightBottomOutsideBottomLeftOutsideBottomCenterOutsideBottomRightInsideTopLeftInsideTopCenterInsideTopRightInsideMiddleLeftInsideMiddleCenterInsideMiddleRightInsideBottomLeftInsideBottomCenterInsideBottomRightDefaultOutsideTopLeftOutsideTopCenterOutsideTopRightOutsideLeftTopOutsideLeftMiddleOutsideLeftBottomOutsideRightTopOutsideRightMiddleOutsideRightBottomOutsideBottomLeftOutsideBottomCenterOutsideBottomRightInsideTopLeftInsideTopCenterInsideTopRightInsideMiddleLeftInsideMiddleCenterInsideMiddleRightInsideBottomLeftInsideBottomCenterInsideBottomRightDefaultOutsideTopLeftOutsideTopCenterOutsideTopRightOutsideLeftTopOutsideLeftMiddleOutsideLeftBottomOutsideRightTopOutsideRightMiddleOutsideRightBottomOutsideBottomLeftOutsideBottomCenterOutsideBottomRightInsideTopLeftInsideTopCenterInsideTopRightInsideMiddleLeftInsideMiddleCenterInsideMiddleRightInsideBottomLeftInsideBottomCenterInsideBottomRightDefaultOutsideTopLeftOutsideTopCenterOutsideTopRightOutsideLeftTopOutsideLeftMiddleOutsideLeftBottomOutsideRightTopOutsideRightMiddleOutsideRightBottomOutsideBottomLeftOutsideBottomCenterOutsideBottomRightInsideTopLeftInsideTopCenterInsideTopRightInsideMiddleLeftInsideMiddleCenterInsideMiddleRightInsideBottomLeftInsideBottomCenterInsideBottomRightDefaultOutsideTopLeftOutsideTopCenterOutsideTopRightOutsideLeftTopOutsideLeftMiddleOutsideLeftBottomOutsideRightTopOutsideRightMiddleOutsideRightBottomOutsideBottomLeftOutsideBottomCenterOutsideBottomRightInsideTopLeftInsideTopCenterInsideTopRightInsideMiddleLeftInsideMiddleCenterInsideMiddleRightInsideBottomLeftInsideBottomCenterInsideBottomRightDefaultOutsideTopLeftOutsideTopCenterOutsideTopRightOutsideLeftTopOutsideLeftMiddleOutsideLeftBottomOutsideRightTopOutsideRightMiddleOutsideRightBottomOutsideBottomLeftOutsideBottomCenterOutsideBottomRightInsideTopLeftInsideTopCenterInsideTopRightInsideMiddleLeftInsideMiddleCenterInsideMiddleRightInsideBottomLeftInsideBottomCenterInsideBottomRight + .d2-2638316818 .fill-N1{fill:#0A0F25;} + .d2-2638316818 .fill-N2{fill:#676C7E;} + .d2-2638316818 .fill-N3{fill:#9499AB;} + .d2-2638316818 .fill-N4{fill:#CFD2DD;} + .d2-2638316818 .fill-N5{fill:#DEE1EB;} + .d2-2638316818 .fill-N6{fill:#EEF1F8;} + .d2-2638316818 .fill-N7{fill:#FFFFFF;} + .d2-2638316818 .fill-B1{fill:#0D32B2;} + .d2-2638316818 .fill-B2{fill:#0D32B2;} + .d2-2638316818 .fill-B3{fill:#E3E9FD;} + .d2-2638316818 .fill-B4{fill:#E3E9FD;} + .d2-2638316818 .fill-B5{fill:#EDF0FD;} + .d2-2638316818 .fill-B6{fill:#F7F8FE;} + .d2-2638316818 .fill-AA2{fill:#4A6FF3;} + .d2-2638316818 .fill-AA4{fill:#EDF0FD;} + .d2-2638316818 .fill-AA5{fill:#F7F8FE;} + .d2-2638316818 .fill-AB4{fill:#EDF0FD;} + .d2-2638316818 .fill-AB5{fill:#F7F8FE;} + .d2-2638316818 .stroke-N1{stroke:#0A0F25;} + .d2-2638316818 .stroke-N2{stroke:#676C7E;} + .d2-2638316818 .stroke-N3{stroke:#9499AB;} + .d2-2638316818 .stroke-N4{stroke:#CFD2DD;} + .d2-2638316818 .stroke-N5{stroke:#DEE1EB;} + .d2-2638316818 .stroke-N6{stroke:#EEF1F8;} + .d2-2638316818 .stroke-N7{stroke:#FFFFFF;} + .d2-2638316818 .stroke-B1{stroke:#0D32B2;} + .d2-2638316818 .stroke-B2{stroke:#0D32B2;} + .d2-2638316818 .stroke-B3{stroke:#E3E9FD;} + .d2-2638316818 .stroke-B4{stroke:#E3E9FD;} + .d2-2638316818 .stroke-B5{stroke:#EDF0FD;} + .d2-2638316818 .stroke-B6{stroke:#F7F8FE;} + .d2-2638316818 .stroke-AA2{stroke:#4A6FF3;} + .d2-2638316818 .stroke-AA4{stroke:#EDF0FD;} + .d2-2638316818 .stroke-AA5{stroke:#F7F8FE;} + .d2-2638316818 .stroke-AB4{stroke:#EDF0FD;} + .d2-2638316818 .stroke-AB5{stroke:#F7F8FE;} + .d2-2638316818 .background-color-N1{background-color:#0A0F25;} + .d2-2638316818 .background-color-N2{background-color:#676C7E;} + .d2-2638316818 .background-color-N3{background-color:#9499AB;} + .d2-2638316818 .background-color-N4{background-color:#CFD2DD;} + .d2-2638316818 .background-color-N5{background-color:#DEE1EB;} + .d2-2638316818 .background-color-N6{background-color:#EEF1F8;} + .d2-2638316818 .background-color-N7{background-color:#FFFFFF;} + .d2-2638316818 .background-color-B1{background-color:#0D32B2;} + .d2-2638316818 .background-color-B2{background-color:#0D32B2;} + .d2-2638316818 .background-color-B3{background-color:#E3E9FD;} + .d2-2638316818 .background-color-B4{background-color:#E3E9FD;} + .d2-2638316818 .background-color-B5{background-color:#EDF0FD;} + .d2-2638316818 .background-color-B6{background-color:#F7F8FE;} + .d2-2638316818 .background-color-AA2{background-color:#4A6FF3;} + .d2-2638316818 .background-color-AA4{background-color:#EDF0FD;} + .d2-2638316818 .background-color-AA5{background-color:#F7F8FE;} + .d2-2638316818 .background-color-AB4{background-color:#EDF0FD;} + .d2-2638316818 .background-color-AB5{background-color:#F7F8FE;} + .d2-2638316818 .color-N1{color:#0A0F25;} + .d2-2638316818 .color-N2{color:#676C7E;} + .d2-2638316818 .color-N3{color:#9499AB;} + .d2-2638316818 .color-N4{color:#CFD2DD;} + .d2-2638316818 .color-N5{color:#DEE1EB;} + .d2-2638316818 .color-N6{color:#EEF1F8;} + .d2-2638316818 .color-N7{color:#FFFFFF;} + .d2-2638316818 .color-B1{color:#0D32B2;} + .d2-2638316818 .color-B2{color:#0D32B2;} + .d2-2638316818 .color-B3{color:#E3E9FD;} + .d2-2638316818 .color-B4{color:#E3E9FD;} + .d2-2638316818 .color-B5{color:#EDF0FD;} + .d2-2638316818 .color-B6{color:#F7F8FE;} + .d2-2638316818 .color-AA2{color:#4A6FF3;} + .d2-2638316818 .color-AA4{color:#EDF0FD;} + .d2-2638316818 .color-AA5{color:#F7F8FE;} + .d2-2638316818 .color-AB4{color:#EDF0FD;} + .d2-2638316818 .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}]]>non containercontainerwith iconcontainer with iconDefaultOutsideTopLeftOutsideTopCenterOutsideTopRightOutsideLeftTopOutsideLeftMiddleOutsideLeftBottomOutsideRightTopOutsideRightMiddleOutsideRightBottomOutsideBottomLeftOutsideBottomCenterOutsideBottomRightInsideTopLeftInsideTopCenterInsideTopRightInsideMiddleLeftInsideMiddleCenterInsideMiddleRightInsideBottomLeftInsideBottomCenterInsideBottomRightDefaultOutsideTopLeftOutsideTopCenterOutsideTopRightOutsideLeftTopOutsideLeftMiddleOutsideLeftBottomOutsideRightTopOutsideRightMiddleOutsideRightBottomOutsideBottomLeftOutsideBottomCenterOutsideBottomRightInsideTopLeftInsideTopCenterInsideTopRightInsideMiddleLeftInsideMiddleCenterInsideMiddleRightInsideBottomLeftInsideBottomCenterInsideBottomRightDefaultOutsideTopLeftOutsideTopCenterOutsideTopRightOutsideLeftTopOutsideLeftMiddleOutsideLeftBottomOutsideRightTopOutsideRightMiddleOutsideRightBottomOutsideBottomLeftOutsideBottomCenterOutsideBottomRightInsideTopLeftInsideTopCenterInsideTopRightInsideMiddleLeftInsideMiddleCenterInsideMiddleRightInsideBottomLeftInsideBottomCenterInsideBottomRightDefaultOutsideTopLeftOutsideTopCenterOutsideTopRightOutsideLeftTopOutsideLeftMiddleOutsideLeftBottomOutsideRightTopOutsideRightMiddleOutsideRightBottomOutsideBottomLeftOutsideBottomCenterOutsideBottomRightInsideTopLeftInsideTopCenterInsideTopRightInsideMiddleLeftInsideMiddleCenterInsideMiddleRightInsideBottomLeftInsideBottomCenterInsideBottomRightDefaultOutsideTopLeftOutsideTopCenterOutsideTopRightOutsideLeftTopOutsideLeftMiddleOutsideLeftBottomOutsideRightTopOutsideRightMiddleOutsideRightBottomOutsideBottomLeftOutsideBottomCenterOutsideBottomRightInsideTopLeftInsideTopCenterInsideTopRightInsideMiddleLeftInsideMiddleCenterInsideMiddleRightInsideBottomLeftInsideBottomCenterInsideBottomRightDefaultOutsideTopLeftOutsideTopCenterOutsideTopRightOutsideLeftTopOutsideLeftMiddleOutsideLeftBottomOutsideRightTopOutsideRightMiddleOutsideRightBottomOutsideBottomLeftOutsideBottomCenterOutsideBottomRightInsideTopLeftInsideTopCenterInsideTopRightInsideMiddleLeftInsideMiddleCenterInsideMiddleRightInsideBottomLeftInsideBottomCenterInsideBottomRight diff --git a/e2etests/testdata/stable/label_positions/elk/board.exp.json b/e2etests/testdata/stable/label_positions/elk/board.exp.json index eba6a5c35c..d2f364a455 100644 --- a/e2etests/testdata/stable/label_positions/elk/board.exp.json +++ b/e2etests/testdata/stable/label_positions/elk/board.exp.json @@ -6432,6 +6432,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 3908.5, @@ -6470,6 +6471,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 3908.5, @@ -6508,6 +6510,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 3908.5, diff --git a/e2etests/testdata/stable/label_positions/elk/sketch.exp.svg b/e2etests/testdata/stable/label_positions/elk/sketch.exp.svg index d9b5709985..f006531c28 100644 --- a/e2etests/testdata/stable/label_positions/elk/sketch.exp.svg +++ b/e2etests/testdata/stable/label_positions/elk/sketch.exp.svg @@ -1,16 +1,16 @@ -non containercontainerwith iconcontainer with iconDefaultOutsideTopLeftOutsideTopCenterOutsideTopRightOutsideLeftTopOutsideLeftMiddleOutsideLeftBottomOutsideRightTopOutsideRightMiddleOutsideRightBottomOutsideBottomLeftOutsideBottomCenterOutsideBottomRightInsideTopLeftInsideTopCenterInsideTopRightInsideMiddleLeftInsideMiddleCenterInsideMiddleRightInsideBottomLeftInsideBottomCenterInsideBottomRightDefaultOutsideTopLeftOutsideTopCenterOutsideTopRightOutsideLeftTopOutsideLeftMiddleOutsideLeftBottomOutsideRightTopOutsideRightMiddleOutsideRightBottomOutsideBottomLeftOutsideBottomCenterOutsideBottomRightInsideTopLeftInsideTopCenterInsideTopRightInsideMiddleLeftInsideMiddleCenterInsideMiddleRightInsideBottomLeftInsideBottomCenterInsideBottomRightDefaultOutsideTopLeftOutsideTopCenterOutsideTopRightOutsideLeftTopOutsideLeftMiddleOutsideLeftBottomOutsideRightTopOutsideRightMiddleOutsideRightBottomOutsideBottomLeftOutsideBottomCenterOutsideBottomRightInsideTopLeftInsideTopCenterInsideTopRightInsideMiddleLeftInsideMiddleCenterInsideMiddleRightInsideBottomLeftInsideBottomCenterInsideBottomRightDefaultOutsideTopLeftOutsideTopCenterOutsideTopRightOutsideLeftTopOutsideLeftMiddleOutsideLeftBottomOutsideRightTopOutsideRightMiddleOutsideRightBottomOutsideBottomLeftOutsideBottomCenterOutsideBottomRightInsideTopLeftInsideTopCenterInsideTopRightInsideMiddleLeftInsideMiddleCenterInsideMiddleRightInsideBottomLeftInsideBottomCenterInsideBottomRightDefaultOutsideTopLeftOutsideTopCenterOutsideTopRightOutsideLeftTopOutsideLeftMiddleOutsideLeftBottomOutsideRightTopOutsideRightMiddleOutsideRightBottomOutsideBottomLeftOutsideBottomCenterOutsideBottomRightInsideTopLeftInsideTopCenterInsideTopRightInsideMiddleLeftInsideMiddleCenterInsideMiddleRightInsideBottomLeftInsideBottomCenterInsideBottomRightDefaultOutsideTopLeftOutsideTopCenterOutsideTopRightOutsideLeftTopOutsideLeftMiddleOutsideLeftBottomOutsideRightTopOutsideRightMiddleOutsideRightBottomOutsideBottomLeftOutsideBottomCenterOutsideBottomRightInsideTopLeftInsideTopCenterInsideTopRightInsideMiddleLeftInsideMiddleCenterInsideMiddleRightInsideBottomLeftInsideBottomCenterInsideBottomRight + .d2-2227691374 .fill-N1{fill:#0A0F25;} + .d2-2227691374 .fill-N2{fill:#676C7E;} + .d2-2227691374 .fill-N3{fill:#9499AB;} + .d2-2227691374 .fill-N4{fill:#CFD2DD;} + .d2-2227691374 .fill-N5{fill:#DEE1EB;} + .d2-2227691374 .fill-N6{fill:#EEF1F8;} + .d2-2227691374 .fill-N7{fill:#FFFFFF;} + .d2-2227691374 .fill-B1{fill:#0D32B2;} + .d2-2227691374 .fill-B2{fill:#0D32B2;} + .d2-2227691374 .fill-B3{fill:#E3E9FD;} + .d2-2227691374 .fill-B4{fill:#E3E9FD;} + .d2-2227691374 .fill-B5{fill:#EDF0FD;} + .d2-2227691374 .fill-B6{fill:#F7F8FE;} + .d2-2227691374 .fill-AA2{fill:#4A6FF3;} + .d2-2227691374 .fill-AA4{fill:#EDF0FD;} + .d2-2227691374 .fill-AA5{fill:#F7F8FE;} + .d2-2227691374 .fill-AB4{fill:#EDF0FD;} + .d2-2227691374 .fill-AB5{fill:#F7F8FE;} + .d2-2227691374 .stroke-N1{stroke:#0A0F25;} + .d2-2227691374 .stroke-N2{stroke:#676C7E;} + .d2-2227691374 .stroke-N3{stroke:#9499AB;} + .d2-2227691374 .stroke-N4{stroke:#CFD2DD;} + .d2-2227691374 .stroke-N5{stroke:#DEE1EB;} + .d2-2227691374 .stroke-N6{stroke:#EEF1F8;} + .d2-2227691374 .stroke-N7{stroke:#FFFFFF;} + .d2-2227691374 .stroke-B1{stroke:#0D32B2;} + .d2-2227691374 .stroke-B2{stroke:#0D32B2;} + .d2-2227691374 .stroke-B3{stroke:#E3E9FD;} + .d2-2227691374 .stroke-B4{stroke:#E3E9FD;} + .d2-2227691374 .stroke-B5{stroke:#EDF0FD;} + .d2-2227691374 .stroke-B6{stroke:#F7F8FE;} + .d2-2227691374 .stroke-AA2{stroke:#4A6FF3;} + .d2-2227691374 .stroke-AA4{stroke:#EDF0FD;} + .d2-2227691374 .stroke-AA5{stroke:#F7F8FE;} + .d2-2227691374 .stroke-AB4{stroke:#EDF0FD;} + .d2-2227691374 .stroke-AB5{stroke:#F7F8FE;} + .d2-2227691374 .background-color-N1{background-color:#0A0F25;} + .d2-2227691374 .background-color-N2{background-color:#676C7E;} + .d2-2227691374 .background-color-N3{background-color:#9499AB;} + .d2-2227691374 .background-color-N4{background-color:#CFD2DD;} + .d2-2227691374 .background-color-N5{background-color:#DEE1EB;} + .d2-2227691374 .background-color-N6{background-color:#EEF1F8;} + .d2-2227691374 .background-color-N7{background-color:#FFFFFF;} + .d2-2227691374 .background-color-B1{background-color:#0D32B2;} + .d2-2227691374 .background-color-B2{background-color:#0D32B2;} + .d2-2227691374 .background-color-B3{background-color:#E3E9FD;} + .d2-2227691374 .background-color-B4{background-color:#E3E9FD;} + .d2-2227691374 .background-color-B5{background-color:#EDF0FD;} + .d2-2227691374 .background-color-B6{background-color:#F7F8FE;} + .d2-2227691374 .background-color-AA2{background-color:#4A6FF3;} + .d2-2227691374 .background-color-AA4{background-color:#EDF0FD;} + .d2-2227691374 .background-color-AA5{background-color:#F7F8FE;} + .d2-2227691374 .background-color-AB4{background-color:#EDF0FD;} + .d2-2227691374 .background-color-AB5{background-color:#F7F8FE;} + .d2-2227691374 .color-N1{color:#0A0F25;} + .d2-2227691374 .color-N2{color:#676C7E;} + .d2-2227691374 .color-N3{color:#9499AB;} + .d2-2227691374 .color-N4{color:#CFD2DD;} + .d2-2227691374 .color-N5{color:#DEE1EB;} + .d2-2227691374 .color-N6{color:#EEF1F8;} + .d2-2227691374 .color-N7{color:#FFFFFF;} + .d2-2227691374 .color-B1{color:#0D32B2;} + .d2-2227691374 .color-B2{color:#0D32B2;} + .d2-2227691374 .color-B3{color:#E3E9FD;} + .d2-2227691374 .color-B4{color:#E3E9FD;} + .d2-2227691374 .color-B5{color:#EDF0FD;} + .d2-2227691374 .color-B6{color:#F7F8FE;} + .d2-2227691374 .color-AA2{color:#4A6FF3;} + .d2-2227691374 .color-AA4{color:#EDF0FD;} + .d2-2227691374 .color-AA5{color:#F7F8FE;} + .d2-2227691374 .color-AB4{color:#EDF0FD;} + .d2-2227691374 .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}]]>non containercontainerwith iconcontainer with iconDefaultOutsideTopLeftOutsideTopCenterOutsideTopRightOutsideLeftTopOutsideLeftMiddleOutsideLeftBottomOutsideRightTopOutsideRightMiddleOutsideRightBottomOutsideBottomLeftOutsideBottomCenterOutsideBottomRightInsideTopLeftInsideTopCenterInsideTopRightInsideMiddleLeftInsideMiddleCenterInsideMiddleRightInsideBottomLeftInsideBottomCenterInsideBottomRightDefaultOutsideTopLeftOutsideTopCenterOutsideTopRightOutsideLeftTopOutsideLeftMiddleOutsideLeftBottomOutsideRightTopOutsideRightMiddleOutsideRightBottomOutsideBottomLeftOutsideBottomCenterOutsideBottomRightInsideTopLeftInsideTopCenterInsideTopRightInsideMiddleLeftInsideMiddleCenterInsideMiddleRightInsideBottomLeftInsideBottomCenterInsideBottomRightDefaultOutsideTopLeftOutsideTopCenterOutsideTopRightOutsideLeftTopOutsideLeftMiddleOutsideLeftBottomOutsideRightTopOutsideRightMiddleOutsideRightBottomOutsideBottomLeftOutsideBottomCenterOutsideBottomRightInsideTopLeftInsideTopCenterInsideTopRightInsideMiddleLeftInsideMiddleCenterInsideMiddleRightInsideBottomLeftInsideBottomCenterInsideBottomRightDefaultOutsideTopLeftOutsideTopCenterOutsideTopRightOutsideLeftTopOutsideLeftMiddleOutsideLeftBottomOutsideRightTopOutsideRightMiddleOutsideRightBottomOutsideBottomLeftOutsideBottomCenterOutsideBottomRightInsideTopLeftInsideTopCenterInsideTopRightInsideMiddleLeftInsideMiddleCenterInsideMiddleRightInsideBottomLeftInsideBottomCenterInsideBottomRightDefaultOutsideTopLeftOutsideTopCenterOutsideTopRightOutsideLeftTopOutsideLeftMiddleOutsideLeftBottomOutsideRightTopOutsideRightMiddleOutsideRightBottomOutsideBottomLeftOutsideBottomCenterOutsideBottomRightInsideTopLeftInsideTopCenterInsideTopRightInsideMiddleLeftInsideMiddleCenterInsideMiddleRightInsideBottomLeftInsideBottomCenterInsideBottomRightDefaultOutsideTopLeftOutsideTopCenterOutsideTopRightOutsideLeftTopOutsideLeftMiddleOutsideLeftBottomOutsideRightTopOutsideRightMiddleOutsideRightBottomOutsideBottomLeftOutsideBottomCenterOutsideBottomRightInsideTopLeftInsideTopCenterInsideTopRightInsideMiddleLeftInsideMiddleCenterInsideMiddleRightInsideBottomLeftInsideBottomCenterInsideBottomRight diff --git a/e2etests/testdata/stable/large_arch/dagre/board.exp.json b/e2etests/testdata/stable/large_arch/dagre/board.exp.json index 28358af13b..f8cc62f41a 100644 --- a/e2etests/testdata/stable/large_arch/dagre/board.exp.json +++ b/e2etests/testdata/stable/large_arch/dagre/board.exp.json @@ -1381,6 +1381,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 1731.5, @@ -1452,6 +1453,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 1513.75, @@ -1523,6 +1525,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 1814, @@ -1582,6 +1585,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 1749.75, @@ -1641,6 +1645,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 1836.5, @@ -1700,6 +1705,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 1693.5, @@ -1759,6 +1765,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 1693.5, @@ -1818,6 +1825,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 1736, @@ -1877,6 +1885,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 1699.25, @@ -1936,6 +1945,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 1007.25, @@ -1983,6 +1993,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 629, @@ -2054,6 +2065,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 657.5, @@ -2125,6 +2137,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 431, @@ -2196,6 +2209,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 781.75, @@ -2267,6 +2281,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 307.75, @@ -2338,6 +2353,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 671.5, @@ -2409,6 +2425,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 576.25, @@ -2528,6 +2545,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 543.75, @@ -2599,6 +2617,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 1053.75, diff --git a/e2etests/testdata/stable/large_arch/dagre/sketch.exp.svg b/e2etests/testdata/stable/large_arch/dagre/sketch.exp.svg index e357ef2416..28b7055a9a 100644 --- a/e2etests/testdata/stable/large_arch/dagre/sketch.exp.svg +++ b/e2etests/testdata/stable/large_arch/dagre/sketch.exp.svg @@ -1,16 +1,16 @@ -abcdefghiqrjmnoszaabbeeffggklptuwxyccddv + .d2-2857932959 .fill-N1{fill:#0A0F25;} + .d2-2857932959 .fill-N2{fill:#676C7E;} + .d2-2857932959 .fill-N3{fill:#9499AB;} + .d2-2857932959 .fill-N4{fill:#CFD2DD;} + .d2-2857932959 .fill-N5{fill:#DEE1EB;} + .d2-2857932959 .fill-N6{fill:#EEF1F8;} + .d2-2857932959 .fill-N7{fill:#FFFFFF;} + .d2-2857932959 .fill-B1{fill:#0D32B2;} + .d2-2857932959 .fill-B2{fill:#0D32B2;} + .d2-2857932959 .fill-B3{fill:#E3E9FD;} + .d2-2857932959 .fill-B4{fill:#E3E9FD;} + .d2-2857932959 .fill-B5{fill:#EDF0FD;} + .d2-2857932959 .fill-B6{fill:#F7F8FE;} + .d2-2857932959 .fill-AA2{fill:#4A6FF3;} + .d2-2857932959 .fill-AA4{fill:#EDF0FD;} + .d2-2857932959 .fill-AA5{fill:#F7F8FE;} + .d2-2857932959 .fill-AB4{fill:#EDF0FD;} + .d2-2857932959 .fill-AB5{fill:#F7F8FE;} + .d2-2857932959 .stroke-N1{stroke:#0A0F25;} + .d2-2857932959 .stroke-N2{stroke:#676C7E;} + .d2-2857932959 .stroke-N3{stroke:#9499AB;} + .d2-2857932959 .stroke-N4{stroke:#CFD2DD;} + .d2-2857932959 .stroke-N5{stroke:#DEE1EB;} + .d2-2857932959 .stroke-N6{stroke:#EEF1F8;} + .d2-2857932959 .stroke-N7{stroke:#FFFFFF;} + .d2-2857932959 .stroke-B1{stroke:#0D32B2;} + .d2-2857932959 .stroke-B2{stroke:#0D32B2;} + .d2-2857932959 .stroke-B3{stroke:#E3E9FD;} + .d2-2857932959 .stroke-B4{stroke:#E3E9FD;} + .d2-2857932959 .stroke-B5{stroke:#EDF0FD;} + .d2-2857932959 .stroke-B6{stroke:#F7F8FE;} + .d2-2857932959 .stroke-AA2{stroke:#4A6FF3;} + .d2-2857932959 .stroke-AA4{stroke:#EDF0FD;} + .d2-2857932959 .stroke-AA5{stroke:#F7F8FE;} + .d2-2857932959 .stroke-AB4{stroke:#EDF0FD;} + .d2-2857932959 .stroke-AB5{stroke:#F7F8FE;} + .d2-2857932959 .background-color-N1{background-color:#0A0F25;} + .d2-2857932959 .background-color-N2{background-color:#676C7E;} + .d2-2857932959 .background-color-N3{background-color:#9499AB;} + .d2-2857932959 .background-color-N4{background-color:#CFD2DD;} + .d2-2857932959 .background-color-N5{background-color:#DEE1EB;} + .d2-2857932959 .background-color-N6{background-color:#EEF1F8;} + .d2-2857932959 .background-color-N7{background-color:#FFFFFF;} + .d2-2857932959 .background-color-B1{background-color:#0D32B2;} + .d2-2857932959 .background-color-B2{background-color:#0D32B2;} + .d2-2857932959 .background-color-B3{background-color:#E3E9FD;} + .d2-2857932959 .background-color-B4{background-color:#E3E9FD;} + .d2-2857932959 .background-color-B5{background-color:#EDF0FD;} + .d2-2857932959 .background-color-B6{background-color:#F7F8FE;} + .d2-2857932959 .background-color-AA2{background-color:#4A6FF3;} + .d2-2857932959 .background-color-AA4{background-color:#EDF0FD;} + .d2-2857932959 .background-color-AA5{background-color:#F7F8FE;} + .d2-2857932959 .background-color-AB4{background-color:#EDF0FD;} + .d2-2857932959 .background-color-AB5{background-color:#F7F8FE;} + .d2-2857932959 .color-N1{color:#0A0F25;} + .d2-2857932959 .color-N2{color:#676C7E;} + .d2-2857932959 .color-N3{color:#9499AB;} + .d2-2857932959 .color-N4{color:#CFD2DD;} + .d2-2857932959 .color-N5{color:#DEE1EB;} + .d2-2857932959 .color-N6{color:#EEF1F8;} + .d2-2857932959 .color-N7{color:#FFFFFF;} + .d2-2857932959 .color-B1{color:#0D32B2;} + .d2-2857932959 .color-B2{color:#0D32B2;} + .d2-2857932959 .color-B3{color:#E3E9FD;} + .d2-2857932959 .color-B4{color:#E3E9FD;} + .d2-2857932959 .color-B5{color:#EDF0FD;} + .d2-2857932959 .color-B6{color:#F7F8FE;} + .d2-2857932959 .color-AA2{color:#4A6FF3;} + .d2-2857932959 .color-AA4{color:#EDF0FD;} + .d2-2857932959 .color-AA5{color:#F7F8FE;} + .d2-2857932959 .color-AB4{color:#EDF0FD;} + .d2-2857932959 .color-AB5{color:#F7F8FE;}.appendix text.text{fill:#0A0F25}.md{--color-fg-default:#0A0F25;--color-fg-muted:#676C7E;--color-fg-subtle:#9499AB;--color-canvas-default:#FFFFFF;--color-canvas-subtle:#EEF1F8;--color-border-default:#0D32B2;--color-border-muted:#0D32B2;--color-neutral-muted:#EEF1F8;--color-accent-fg:#0D32B2;--color-accent-emphasis:#0D32B2;--color-attention-subtle:#676C7E;--color-danger-fg:red;}.sketch-overlay-B1{fill:url(#streaks-darker);mix-blend-mode:lighten}.sketch-overlay-B2{fill:url(#streaks-darker);mix-blend-mode:lighten}.sketch-overlay-B3{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-B4{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-B5{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-B6{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-AA2{fill:url(#streaks-dark);mix-blend-mode:overlay}.sketch-overlay-AA4{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-AA5{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-AB4{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-AB5{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-N1{fill:url(#streaks-darker);mix-blend-mode:lighten}.sketch-overlay-N2{fill:url(#streaks-dark);mix-blend-mode:overlay}.sketch-overlay-N3{fill:url(#streaks-normal);mix-blend-mode:color-burn}.sketch-overlay-N4{fill:url(#streaks-normal);mix-blend-mode:color-burn}.sketch-overlay-N5{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-N6{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-N7{fill:url(#streaks-bright);mix-blend-mode:darken}.light-code{display: block}.dark-code{display: none}]]>abcdefghiqrjmnoszaabbeeffggklptuwxyccddv diff --git a/e2etests/testdata/stable/large_arch/elk/board.exp.json b/e2etests/testdata/stable/large_arch/elk/board.exp.json index 331db4ae7a..f3ca3f697a 100644 --- a/e2etests/testdata/stable/large_arch/elk/board.exp.json +++ b/e2etests/testdata/stable/large_arch/elk/board.exp.json @@ -1381,6 +1381,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 801.25, @@ -1427,6 +1428,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 872.25, @@ -1465,6 +1467,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 1028.75, @@ -1519,6 +1522,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 669.416015625, @@ -1565,6 +1569,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 749.25, @@ -1611,6 +1616,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 646.166015625, @@ -1649,6 +1655,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 602.75, @@ -1695,6 +1702,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 536.0830078125, @@ -1741,6 +1749,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 569.416015625, @@ -1787,6 +1796,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 572.666015625, @@ -1825,6 +1835,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 574.3330078125, @@ -1871,6 +1882,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 601, @@ -1909,6 +1921,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 882.666015625, @@ -1955,6 +1968,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 475, @@ -1993,6 +2007,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 288, @@ -2031,6 +2046,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 601, @@ -2077,6 +2093,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 270.5, @@ -2115,6 +2132,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 338, @@ -2153,6 +2171,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 800.166015625, diff --git a/e2etests/testdata/stable/large_arch/elk/sketch.exp.svg b/e2etests/testdata/stable/large_arch/elk/sketch.exp.svg index 3a6adf26a7..4aa2e68a17 100644 --- a/e2etests/testdata/stable/large_arch/elk/sketch.exp.svg +++ b/e2etests/testdata/stable/large_arch/elk/sketch.exp.svg @@ -1,16 +1,16 @@ -abcdefghiqrjmnoszaabbeeffggklptuwxyccddv + .d2-442297741 .fill-N1{fill:#0A0F25;} + .d2-442297741 .fill-N2{fill:#676C7E;} + .d2-442297741 .fill-N3{fill:#9499AB;} + .d2-442297741 .fill-N4{fill:#CFD2DD;} + .d2-442297741 .fill-N5{fill:#DEE1EB;} + .d2-442297741 .fill-N6{fill:#EEF1F8;} + .d2-442297741 .fill-N7{fill:#FFFFFF;} + .d2-442297741 .fill-B1{fill:#0D32B2;} + .d2-442297741 .fill-B2{fill:#0D32B2;} + .d2-442297741 .fill-B3{fill:#E3E9FD;} + .d2-442297741 .fill-B4{fill:#E3E9FD;} + .d2-442297741 .fill-B5{fill:#EDF0FD;} + .d2-442297741 .fill-B6{fill:#F7F8FE;} + .d2-442297741 .fill-AA2{fill:#4A6FF3;} + .d2-442297741 .fill-AA4{fill:#EDF0FD;} + .d2-442297741 .fill-AA5{fill:#F7F8FE;} + .d2-442297741 .fill-AB4{fill:#EDF0FD;} + .d2-442297741 .fill-AB5{fill:#F7F8FE;} + .d2-442297741 .stroke-N1{stroke:#0A0F25;} + .d2-442297741 .stroke-N2{stroke:#676C7E;} + .d2-442297741 .stroke-N3{stroke:#9499AB;} + .d2-442297741 .stroke-N4{stroke:#CFD2DD;} + .d2-442297741 .stroke-N5{stroke:#DEE1EB;} + .d2-442297741 .stroke-N6{stroke:#EEF1F8;} + .d2-442297741 .stroke-N7{stroke:#FFFFFF;} + .d2-442297741 .stroke-B1{stroke:#0D32B2;} + .d2-442297741 .stroke-B2{stroke:#0D32B2;} + .d2-442297741 .stroke-B3{stroke:#E3E9FD;} + .d2-442297741 .stroke-B4{stroke:#E3E9FD;} + .d2-442297741 .stroke-B5{stroke:#EDF0FD;} + .d2-442297741 .stroke-B6{stroke:#F7F8FE;} + .d2-442297741 .stroke-AA2{stroke:#4A6FF3;} + .d2-442297741 .stroke-AA4{stroke:#EDF0FD;} + .d2-442297741 .stroke-AA5{stroke:#F7F8FE;} + .d2-442297741 .stroke-AB4{stroke:#EDF0FD;} + .d2-442297741 .stroke-AB5{stroke:#F7F8FE;} + .d2-442297741 .background-color-N1{background-color:#0A0F25;} + .d2-442297741 .background-color-N2{background-color:#676C7E;} + .d2-442297741 .background-color-N3{background-color:#9499AB;} + .d2-442297741 .background-color-N4{background-color:#CFD2DD;} + .d2-442297741 .background-color-N5{background-color:#DEE1EB;} + .d2-442297741 .background-color-N6{background-color:#EEF1F8;} + .d2-442297741 .background-color-N7{background-color:#FFFFFF;} + .d2-442297741 .background-color-B1{background-color:#0D32B2;} + .d2-442297741 .background-color-B2{background-color:#0D32B2;} + .d2-442297741 .background-color-B3{background-color:#E3E9FD;} + .d2-442297741 .background-color-B4{background-color:#E3E9FD;} + .d2-442297741 .background-color-B5{background-color:#EDF0FD;} + .d2-442297741 .background-color-B6{background-color:#F7F8FE;} + .d2-442297741 .background-color-AA2{background-color:#4A6FF3;} + .d2-442297741 .background-color-AA4{background-color:#EDF0FD;} + .d2-442297741 .background-color-AA5{background-color:#F7F8FE;} + .d2-442297741 .background-color-AB4{background-color:#EDF0FD;} + .d2-442297741 .background-color-AB5{background-color:#F7F8FE;} + .d2-442297741 .color-N1{color:#0A0F25;} + .d2-442297741 .color-N2{color:#676C7E;} + .d2-442297741 .color-N3{color:#9499AB;} + .d2-442297741 .color-N4{color:#CFD2DD;} + .d2-442297741 .color-N5{color:#DEE1EB;} + .d2-442297741 .color-N6{color:#EEF1F8;} + .d2-442297741 .color-N7{color:#FFFFFF;} + .d2-442297741 .color-B1{color:#0D32B2;} + .d2-442297741 .color-B2{color:#0D32B2;} + .d2-442297741 .color-B3{color:#E3E9FD;} + .d2-442297741 .color-B4{color:#E3E9FD;} + .d2-442297741 .color-B5{color:#EDF0FD;} + .d2-442297741 .color-B6{color:#F7F8FE;} + .d2-442297741 .color-AA2{color:#4A6FF3;} + .d2-442297741 .color-AA4{color:#EDF0FD;} + .d2-442297741 .color-AA5{color:#F7F8FE;} + .d2-442297741 .color-AB4{color:#EDF0FD;} + .d2-442297741 .color-AB5{color:#F7F8FE;}.appendix text.text{fill:#0A0F25}.md{--color-fg-default:#0A0F25;--color-fg-muted:#676C7E;--color-fg-subtle:#9499AB;--color-canvas-default:#FFFFFF;--color-canvas-subtle:#EEF1F8;--color-border-default:#0D32B2;--color-border-muted:#0D32B2;--color-neutral-muted:#EEF1F8;--color-accent-fg:#0D32B2;--color-accent-emphasis:#0D32B2;--color-attention-subtle:#676C7E;--color-danger-fg:red;}.sketch-overlay-B1{fill:url(#streaks-darker);mix-blend-mode:lighten}.sketch-overlay-B2{fill:url(#streaks-darker);mix-blend-mode:lighten}.sketch-overlay-B3{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-B4{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-B5{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-B6{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-AA2{fill:url(#streaks-dark);mix-blend-mode:overlay}.sketch-overlay-AA4{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-AA5{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-AB4{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-AB5{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-N1{fill:url(#streaks-darker);mix-blend-mode:lighten}.sketch-overlay-N2{fill:url(#streaks-dark);mix-blend-mode:overlay}.sketch-overlay-N3{fill:url(#streaks-normal);mix-blend-mode:color-burn}.sketch-overlay-N4{fill:url(#streaks-normal);mix-blend-mode:color-burn}.sketch-overlay-N5{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-N6{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-N7{fill:url(#streaks-bright);mix-blend-mode:darken}.light-code{display: block}.dark-code{display: none}]]>abcdefghiqrjmnoszaabbeeffggklptuwxyccddv diff --git a/e2etests/testdata/stable/latex/dagre/board.exp.json b/e2etests/testdata/stable/latex/dagre/board.exp.json index fd550384b4..f2db49e6d1 100644 --- a/e2etests/testdata/stable/latex/dagre/board.exp.json +++ b/e2etests/testdata/stable/latex/dagre/board.exp.json @@ -352,6 +352,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 310.75, @@ -399,6 +400,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 406.25, @@ -446,6 +448,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 216.75, @@ -493,6 +496,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 500.25, @@ -540,6 +544,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 635.75, @@ -587,6 +592,7 @@ "labelHeight": 21, "labelPosition": "INSIDE_MIDDLE_CENTER", "labelPercentage": 0, + "link": "", "route": [ { "x": 500.25, diff --git a/e2etests/testdata/stable/latex/dagre/sketch.exp.svg b/e2etests/testdata/stable/latex/dagre/sketch.exp.svg index 1c82835cf5..254141ff00 100644 --- a/e2etests/testdata/stable/latex/dagre/sketch.exp.svg +++ b/e2etests/testdata/stable/latex/dagre/sketch.exp.svg @@ -1,23 +1,23 @@ -mixed togethersugarsolutionLinear program we get +mixed togethersugarsolutionLinear program we get diff --git a/e2etests/testdata/stable/latex/elk/board.exp.json b/e2etests/testdata/stable/latex/elk/board.exp.json index a12309b84c..cbfc5a3bb4 100644 --- a/e2etests/testdata/stable/latex/elk/board.exp.json +++ b/e2etests/testdata/stable/latex/elk/board.exp.json @@ -352,6 +352,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 294.9159851074219, @@ -390,6 +391,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 354.5830078125, @@ -436,6 +438,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 354.4159851074219, @@ -474,6 +477,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 446.5, @@ -520,6 +524,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 542, @@ -566,6 +571,7 @@ "labelHeight": 21, "labelPosition": "INSIDE_MIDDLE_CENTER", "labelPercentage": 0, + "link": "", "route": [ { "x": 392.9159851074219, diff --git a/e2etests/testdata/stable/latex/elk/sketch.exp.svg b/e2etests/testdata/stable/latex/elk/sketch.exp.svg index 4f677863fa..7c6220656c 100644 --- a/e2etests/testdata/stable/latex/elk/sketch.exp.svg +++ b/e2etests/testdata/stable/latex/elk/sketch.exp.svg @@ -1,23 +1,23 @@ -mixed togethersugarsolutionLinear program we get +mixed togethersugarsolutionLinear program we get diff --git a/e2etests/testdata/stable/legend_with_near_key/dagre/board.exp.json b/e2etests/testdata/stable/legend_with_near_key/dagre/board.exp.json index 66f51a747d..6a95166871 100644 --- a/e2etests/testdata/stable/legend_with_near_key/dagre/board.exp.json +++ b/e2etests/testdata/stable/legend_with_near_key/dagre/board.exp.json @@ -272,6 +272,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 53, @@ -319,6 +320,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 207, diff --git a/e2etests/testdata/stable/legend_with_near_key/dagre/sketch.exp.svg b/e2etests/testdata/stable/legend_with_near_key/dagre/sketch.exp.svg index 422cd84196..90bf9b891d 100644 --- a/e2etests/testdata/stable/legend_with_near_key/dagre/sketch.exp.svg +++ b/e2etests/testdata/stable/legend_with_near_key/dagre/sketch.exp.svg @@ -1,16 +1,16 @@ -xyzlegendfoobar +xyzlegendfoobar diff --git a/e2etests/testdata/stable/legend_with_near_key/elk/board.exp.json b/e2etests/testdata/stable/legend_with_near_key/elk/board.exp.json index 4c4053a0c3..e6f393e4d4 100644 --- a/e2etests/testdata/stable/legend_with_near_key/elk/board.exp.json +++ b/e2etests/testdata/stable/legend_with_near_key/elk/board.exp.json @@ -272,6 +272,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 65, @@ -310,6 +311,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 189, diff --git a/e2etests/testdata/stable/legend_with_near_key/elk/sketch.exp.svg b/e2etests/testdata/stable/legend_with_near_key/elk/sketch.exp.svg index 83e1e99fb0..ad63a5fe75 100644 --- a/e2etests/testdata/stable/legend_with_near_key/elk/sketch.exp.svg +++ b/e2etests/testdata/stable/legend_with_near_key/elk/sketch.exp.svg @@ -1,16 +1,16 @@ -xyzlegendfoobar +xyzlegendfoobar diff --git a/e2etests/testdata/stable/li1/dagre/board.exp.json b/e2etests/testdata/stable/li1/dagre/board.exp.json index ee30644ec5..b76620b16b 100644 --- a/e2etests/testdata/stable/li1/dagre/board.exp.json +++ b/e2etests/testdata/stable/li1/dagre/board.exp.json @@ -150,6 +150,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 189.5, @@ -197,6 +198,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 189.5, diff --git a/e2etests/testdata/stable/li1/dagre/sketch.exp.svg b/e2etests/testdata/stable/li1/dagre/sketch.exp.svg index 828e048583..cf462c4e76 100644 --- a/e2etests/testdata/stable/li1/dagre/sketch.exp.svg +++ b/e2etests/testdata/stable/li1/dagre/sketch.exp.svg @@ -1,20 +1,20 @@ -
      @@ -848,7 +848,7 @@
    -
    ab +ab diff --git a/e2etests/testdata/stable/li1/elk/board.exp.json b/e2etests/testdata/stable/li1/elk/board.exp.json index 211e446e7a..c5ed136a42 100644 --- a/e2etests/testdata/stable/li1/elk/board.exp.json +++ b/e2etests/testdata/stable/li1/elk/board.exp.json @@ -150,6 +150,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 201.5, @@ -188,6 +189,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 201.5, diff --git a/e2etests/testdata/stable/li1/elk/sketch.exp.svg b/e2etests/testdata/stable/li1/elk/sketch.exp.svg index 119fae57b7..8496d679b0 100644 --- a/e2etests/testdata/stable/li1/elk/sketch.exp.svg +++ b/e2etests/testdata/stable/li1/elk/sketch.exp.svg @@ -1,20 +1,20 @@ -
      @@ -848,7 +848,7 @@
    -
    ab +ab diff --git a/e2etests/testdata/stable/li2/dagre/board.exp.json b/e2etests/testdata/stable/li2/dagre/board.exp.json index 30d438f055..2fb02a1a21 100644 --- a/e2etests/testdata/stable/li2/dagre/board.exp.json +++ b/e2etests/testdata/stable/li2/dagre/board.exp.json @@ -150,6 +150,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 122.5, @@ -197,6 +198,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 122.5, diff --git a/e2etests/testdata/stable/li2/dagre/sketch.exp.svg b/e2etests/testdata/stable/li2/dagre/sketch.exp.svg index 62746a3123..bf00d97c87 100644 --- a/e2etests/testdata/stable/li2/dagre/sketch.exp.svg +++ b/e2etests/testdata/stable/li2/dagre/sketch.exp.svg @@ -1,27 +1,27 @@ -
      @@ -851,7 +851,7 @@
    -
    ab +ab diff --git a/e2etests/testdata/stable/li2/elk/board.exp.json b/e2etests/testdata/stable/li2/elk/board.exp.json index c6e49bf400..0e7159ae8b 100644 --- a/e2etests/testdata/stable/li2/elk/board.exp.json +++ b/e2etests/testdata/stable/li2/elk/board.exp.json @@ -150,6 +150,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 134.5, @@ -188,6 +189,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 134.5, diff --git a/e2etests/testdata/stable/li2/elk/sketch.exp.svg b/e2etests/testdata/stable/li2/elk/sketch.exp.svg index 3c2255413a..7ebee2b43a 100644 --- a/e2etests/testdata/stable/li2/elk/sketch.exp.svg +++ b/e2etests/testdata/stable/li2/elk/sketch.exp.svg @@ -1,27 +1,27 @@ -
      @@ -851,7 +851,7 @@
    -
    ab +ab diff --git a/e2etests/testdata/stable/li3/dagre/board.exp.json b/e2etests/testdata/stable/li3/dagre/board.exp.json index db4b055e92..f313890e1d 100644 --- a/e2etests/testdata/stable/li3/dagre/board.exp.json +++ b/e2etests/testdata/stable/li3/dagre/board.exp.json @@ -150,6 +150,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 173.5, @@ -197,6 +198,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 173.5, diff --git a/e2etests/testdata/stable/li3/dagre/sketch.exp.svg b/e2etests/testdata/stable/li3/dagre/sketch.exp.svg index a2ad180a6e..68e95575e6 100644 --- a/e2etests/testdata/stable/li3/dagre/sketch.exp.svg +++ b/e2etests/testdata/stable/li3/dagre/sketch.exp.svg @@ -1,20 +1,20 @@ -
      @@ -869,7 +869,7 @@
    -
    ab +ab diff --git a/e2etests/testdata/stable/li3/elk/board.exp.json b/e2etests/testdata/stable/li3/elk/board.exp.json index 48e3e3a4b9..5557e7d757 100644 --- a/e2etests/testdata/stable/li3/elk/board.exp.json +++ b/e2etests/testdata/stable/li3/elk/board.exp.json @@ -150,6 +150,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 185.5, @@ -188,6 +189,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 185.5, diff --git a/e2etests/testdata/stable/li3/elk/sketch.exp.svg b/e2etests/testdata/stable/li3/elk/sketch.exp.svg index 8291e7fdd0..e834202815 100644 --- a/e2etests/testdata/stable/li3/elk/sketch.exp.svg +++ b/e2etests/testdata/stable/li3/elk/sketch.exp.svg @@ -1,20 +1,20 @@ -
      @@ -869,7 +869,7 @@
    -
    ab +ab diff --git a/e2etests/testdata/stable/li4/dagre/board.exp.json b/e2etests/testdata/stable/li4/dagre/board.exp.json index 7956cd4aa6..b1310c54c4 100644 --- a/e2etests/testdata/stable/li4/dagre/board.exp.json +++ b/e2etests/testdata/stable/li4/dagre/board.exp.json @@ -150,6 +150,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 460, @@ -197,6 +198,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 460, diff --git a/e2etests/testdata/stable/li4/dagre/sketch.exp.svg b/e2etests/testdata/stable/li4/dagre/sketch.exp.svg index 3f359c4606..b90406ab51 100644 --- a/e2etests/testdata/stable/li4/dagre/sketch.exp.svg +++ b/e2etests/testdata/stable/li4/dagre/sketch.exp.svg @@ -1,27 +1,27 @@ -

    List items may consist of multiple paragraphs. Each subsequent @@ -874,7 +874,7 @@ sit amet, consectetuer adipiscing elit.

    Another item in the same list.

    -
    ab +ab diff --git a/e2etests/testdata/stable/li4/elk/board.exp.json b/e2etests/testdata/stable/li4/elk/board.exp.json index 24a1774dd7..cfb2b40694 100644 --- a/e2etests/testdata/stable/li4/elk/board.exp.json +++ b/e2etests/testdata/stable/li4/elk/board.exp.json @@ -150,6 +150,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 472, @@ -188,6 +189,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 472, diff --git a/e2etests/testdata/stable/li4/elk/sketch.exp.svg b/e2etests/testdata/stable/li4/elk/sketch.exp.svg index a691cecdd6..fe805be2e8 100644 --- a/e2etests/testdata/stable/li4/elk/sketch.exp.svg +++ b/e2etests/testdata/stable/li4/elk/sketch.exp.svg @@ -1,27 +1,27 @@ -

    List items may consist of multiple paragraphs. Each subsequent @@ -874,7 +874,7 @@ sit amet, consectetuer adipiscing elit.

    Another item in the same list.

    -
    ab +ab diff --git a/e2etests/testdata/stable/links/dagre/board.exp.json b/e2etests/testdata/stable/links/dagre/board.exp.json index 24b2fa3dca..bf040220ec 100644 --- a/e2etests/testdata/stable/links/dagre/board.exp.json +++ b/e2etests/testdata/stable/links/dagre/board.exp.json @@ -112,6 +112,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 59, diff --git a/e2etests/testdata/stable/links/dagre/sketch.exp.svg b/e2etests/testdata/stable/links/dagre/sketch.exp.svg index 3101a6d941..5f29005225 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-1998242947 .fill-N1{fill:#0A0F25;} + .d2-1998242947 .fill-N2{fill:#676C7E;} + .d2-1998242947 .fill-N3{fill:#9499AB;} + .d2-1998242947 .fill-N4{fill:#CFD2DD;} + .d2-1998242947 .fill-N5{fill:#DEE1EB;} + .d2-1998242947 .fill-N6{fill:#EEF1F8;} + .d2-1998242947 .fill-N7{fill:#FFFFFF;} + .d2-1998242947 .fill-B1{fill:#0D32B2;} + .d2-1998242947 .fill-B2{fill:#0D32B2;} + .d2-1998242947 .fill-B3{fill:#E3E9FD;} + .d2-1998242947 .fill-B4{fill:#E3E9FD;} + .d2-1998242947 .fill-B5{fill:#EDF0FD;} + .d2-1998242947 .fill-B6{fill:#F7F8FE;} + .d2-1998242947 .fill-AA2{fill:#4A6FF3;} + .d2-1998242947 .fill-AA4{fill:#EDF0FD;} + .d2-1998242947 .fill-AA5{fill:#F7F8FE;} + .d2-1998242947 .fill-AB4{fill:#EDF0FD;} + .d2-1998242947 .fill-AB5{fill:#F7F8FE;} + .d2-1998242947 .stroke-N1{stroke:#0A0F25;} + .d2-1998242947 .stroke-N2{stroke:#676C7E;} + .d2-1998242947 .stroke-N3{stroke:#9499AB;} + .d2-1998242947 .stroke-N4{stroke:#CFD2DD;} + .d2-1998242947 .stroke-N5{stroke:#DEE1EB;} + .d2-1998242947 .stroke-N6{stroke:#EEF1F8;} + .d2-1998242947 .stroke-N7{stroke:#FFFFFF;} + .d2-1998242947 .stroke-B1{stroke:#0D32B2;} + .d2-1998242947 .stroke-B2{stroke:#0D32B2;} + .d2-1998242947 .stroke-B3{stroke:#E3E9FD;} + .d2-1998242947 .stroke-B4{stroke:#E3E9FD;} + .d2-1998242947 .stroke-B5{stroke:#EDF0FD;} + .d2-1998242947 .stroke-B6{stroke:#F7F8FE;} + .d2-1998242947 .stroke-AA2{stroke:#4A6FF3;} + .d2-1998242947 .stroke-AA4{stroke:#EDF0FD;} + .d2-1998242947 .stroke-AA5{stroke:#F7F8FE;} + .d2-1998242947 .stroke-AB4{stroke:#EDF0FD;} + .d2-1998242947 .stroke-AB5{stroke:#F7F8FE;} + .d2-1998242947 .background-color-N1{background-color:#0A0F25;} + .d2-1998242947 .background-color-N2{background-color:#676C7E;} + .d2-1998242947 .background-color-N3{background-color:#9499AB;} + .d2-1998242947 .background-color-N4{background-color:#CFD2DD;} + .d2-1998242947 .background-color-N5{background-color:#DEE1EB;} + .d2-1998242947 .background-color-N6{background-color:#EEF1F8;} + .d2-1998242947 .background-color-N7{background-color:#FFFFFF;} + .d2-1998242947 .background-color-B1{background-color:#0D32B2;} + .d2-1998242947 .background-color-B2{background-color:#0D32B2;} + .d2-1998242947 .background-color-B3{background-color:#E3E9FD;} + .d2-1998242947 .background-color-B4{background-color:#E3E9FD;} + .d2-1998242947 .background-color-B5{background-color:#EDF0FD;} + .d2-1998242947 .background-color-B6{background-color:#F7F8FE;} + .d2-1998242947 .background-color-AA2{background-color:#4A6FF3;} + .d2-1998242947 .background-color-AA4{background-color:#EDF0FD;} + .d2-1998242947 .background-color-AA5{background-color:#F7F8FE;} + .d2-1998242947 .background-color-AB4{background-color:#EDF0FD;} + .d2-1998242947 .background-color-AB5{background-color:#F7F8FE;} + .d2-1998242947 .color-N1{color:#0A0F25;} + .d2-1998242947 .color-N2{color:#676C7E;} + .d2-1998242947 .color-N3{color:#9499AB;} + .d2-1998242947 .color-N4{color:#CFD2DD;} + .d2-1998242947 .color-N5{color:#DEE1EB;} + .d2-1998242947 .color-N6{color:#EEF1F8;} + .d2-1998242947 .color-N7{color:#FFFFFF;} + .d2-1998242947 .color-B1{color:#0D32B2;} + .d2-1998242947 .color-B2{color:#0D32B2;} + .d2-1998242947 .color-B3{color:#E3E9FD;} + .d2-1998242947 .color-B4{color:#E3E9FD;} + .d2-1998242947 .color-B5{color:#EDF0FD;} + .d2-1998242947 .color-B6{color:#F7F8FE;} + .d2-1998242947 .color-AA2{color:#4A6FF3;} + .d2-1998242947 .color-AA4{color:#EDF0FD;} + .d2-1998242947 .color-AA5{color:#F7F8FE;} + .d2-1998242947 .color-AB4{color:#EDF0FD;} + .d2-1998242947 .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 fbeb77398a..eca11a599d 100644 --- a/e2etests/testdata/stable/links/elk/board.exp.json +++ b/e2etests/testdata/stable/links/elk/board.exp.json @@ -112,6 +112,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 71, diff --git a/e2etests/testdata/stable/links/elk/sketch.exp.svg b/e2etests/testdata/stable/links/elk/sketch.exp.svg index 82212abf82..7962173260 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-1976704325 .fill-N1{fill:#0A0F25;} + .d2-1976704325 .fill-N2{fill:#676C7E;} + .d2-1976704325 .fill-N3{fill:#9499AB;} + .d2-1976704325 .fill-N4{fill:#CFD2DD;} + .d2-1976704325 .fill-N5{fill:#DEE1EB;} + .d2-1976704325 .fill-N6{fill:#EEF1F8;} + .d2-1976704325 .fill-N7{fill:#FFFFFF;} + .d2-1976704325 .fill-B1{fill:#0D32B2;} + .d2-1976704325 .fill-B2{fill:#0D32B2;} + .d2-1976704325 .fill-B3{fill:#E3E9FD;} + .d2-1976704325 .fill-B4{fill:#E3E9FD;} + .d2-1976704325 .fill-B5{fill:#EDF0FD;} + .d2-1976704325 .fill-B6{fill:#F7F8FE;} + .d2-1976704325 .fill-AA2{fill:#4A6FF3;} + .d2-1976704325 .fill-AA4{fill:#EDF0FD;} + .d2-1976704325 .fill-AA5{fill:#F7F8FE;} + .d2-1976704325 .fill-AB4{fill:#EDF0FD;} + .d2-1976704325 .fill-AB5{fill:#F7F8FE;} + .d2-1976704325 .stroke-N1{stroke:#0A0F25;} + .d2-1976704325 .stroke-N2{stroke:#676C7E;} + .d2-1976704325 .stroke-N3{stroke:#9499AB;} + .d2-1976704325 .stroke-N4{stroke:#CFD2DD;} + .d2-1976704325 .stroke-N5{stroke:#DEE1EB;} + .d2-1976704325 .stroke-N6{stroke:#EEF1F8;} + .d2-1976704325 .stroke-N7{stroke:#FFFFFF;} + .d2-1976704325 .stroke-B1{stroke:#0D32B2;} + .d2-1976704325 .stroke-B2{stroke:#0D32B2;} + .d2-1976704325 .stroke-B3{stroke:#E3E9FD;} + .d2-1976704325 .stroke-B4{stroke:#E3E9FD;} + .d2-1976704325 .stroke-B5{stroke:#EDF0FD;} + .d2-1976704325 .stroke-B6{stroke:#F7F8FE;} + .d2-1976704325 .stroke-AA2{stroke:#4A6FF3;} + .d2-1976704325 .stroke-AA4{stroke:#EDF0FD;} + .d2-1976704325 .stroke-AA5{stroke:#F7F8FE;} + .d2-1976704325 .stroke-AB4{stroke:#EDF0FD;} + .d2-1976704325 .stroke-AB5{stroke:#F7F8FE;} + .d2-1976704325 .background-color-N1{background-color:#0A0F25;} + .d2-1976704325 .background-color-N2{background-color:#676C7E;} + .d2-1976704325 .background-color-N3{background-color:#9499AB;} + .d2-1976704325 .background-color-N4{background-color:#CFD2DD;} + .d2-1976704325 .background-color-N5{background-color:#DEE1EB;} + .d2-1976704325 .background-color-N6{background-color:#EEF1F8;} + .d2-1976704325 .background-color-N7{background-color:#FFFFFF;} + .d2-1976704325 .background-color-B1{background-color:#0D32B2;} + .d2-1976704325 .background-color-B2{background-color:#0D32B2;} + .d2-1976704325 .background-color-B3{background-color:#E3E9FD;} + .d2-1976704325 .background-color-B4{background-color:#E3E9FD;} + .d2-1976704325 .background-color-B5{background-color:#EDF0FD;} + .d2-1976704325 .background-color-B6{background-color:#F7F8FE;} + .d2-1976704325 .background-color-AA2{background-color:#4A6FF3;} + .d2-1976704325 .background-color-AA4{background-color:#EDF0FD;} + .d2-1976704325 .background-color-AA5{background-color:#F7F8FE;} + .d2-1976704325 .background-color-AB4{background-color:#EDF0FD;} + .d2-1976704325 .background-color-AB5{background-color:#F7F8FE;} + .d2-1976704325 .color-N1{color:#0A0F25;} + .d2-1976704325 .color-N2{color:#676C7E;} + .d2-1976704325 .color-N3{color:#9499AB;} + .d2-1976704325 .color-N4{color:#CFD2DD;} + .d2-1976704325 .color-N5{color:#DEE1EB;} + .d2-1976704325 .color-N6{color:#EEF1F8;} + .d2-1976704325 .color-N7{color:#FFFFFF;} + .d2-1976704325 .color-B1{color:#0D32B2;} + .d2-1976704325 .color-B2{color:#0D32B2;} + .d2-1976704325 .color-B3{color:#E3E9FD;} + .d2-1976704325 .color-B4{color:#E3E9FD;} + .d2-1976704325 .color-B5{color:#EDF0FD;} + .d2-1976704325 .color-B6{color:#F7F8FE;} + .d2-1976704325 .color-AA2{color:#4A6FF3;} + .d2-1976704325 .color-AA4{color:#EDF0FD;} + .d2-1976704325 .color-AA5{color:#F7F8FE;} + .d2-1976704325 .color-AB4{color:#EDF0FD;} + .d2-1976704325 .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/lone_h1/dagre/board.exp.json b/e2etests/testdata/stable/lone_h1/dagre/board.exp.json index 505d6d68e1..c21c7e4d70 100644 --- a/e2etests/testdata/stable/lone_h1/dagre/board.exp.json +++ b/e2etests/testdata/stable/lone_h1/dagre/board.exp.json @@ -150,6 +150,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 128.5, @@ -197,6 +198,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 128.5, diff --git a/e2etests/testdata/stable/lone_h1/dagre/sketch.exp.svg b/e2etests/testdata/stable/lone_h1/dagre/sketch.exp.svg index 9893d534e4..3a7477f634 100644 --- a/e2etests/testdata/stable/lone_h1/dagre/sketch.exp.svg +++ b/e2etests/testdata/stable/lone_h1/dagre/sketch.exp.svg @@ -1,20 +1,20 @@ -

    Markdown: Syntax

    -
    ab +ab diff --git a/e2etests/testdata/stable/lone_h1/elk/board.exp.json b/e2etests/testdata/stable/lone_h1/elk/board.exp.json index d19c13dd08..9bd51ae097 100644 --- a/e2etests/testdata/stable/lone_h1/elk/board.exp.json +++ b/e2etests/testdata/stable/lone_h1/elk/board.exp.json @@ -150,6 +150,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 140.5, @@ -188,6 +189,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 140.5, diff --git a/e2etests/testdata/stable/lone_h1/elk/sketch.exp.svg b/e2etests/testdata/stable/lone_h1/elk/sketch.exp.svg index b053ca21f5..20e311e7b7 100644 --- a/e2etests/testdata/stable/lone_h1/elk/sketch.exp.svg +++ b/e2etests/testdata/stable/lone_h1/elk/sketch.exp.svg @@ -1,20 +1,20 @@ -

    Markdown: Syntax

    -
    ab +ab diff --git a/e2etests/testdata/stable/markdown/dagre/board.exp.json b/e2etests/testdata/stable/markdown/dagre/board.exp.json index 28860c0ee2..0785217449 100644 --- a/e2etests/testdata/stable/markdown/dagre/board.exp.json +++ b/e2etests/testdata/stable/markdown/dagre/board.exp.json @@ -150,6 +150,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 265.5, @@ -197,6 +198,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 265.5, diff --git a/e2etests/testdata/stable/markdown/dagre/sketch.exp.svg b/e2etests/testdata/stable/markdown/dagre/sketch.exp.svg index 82cea2a87f..0994cc2c19 100644 --- a/e2etests/testdata/stable/markdown/dagre/sketch.exp.svg +++ b/e2etests/testdata/stable/markdown/dagre/sketch.exp.svg @@ -1,27 +1,27 @@ -

    Every frustum longs to be a cone

    @@ -851,7 +851,7 @@

    Festivity Level 1: Your guests are chatting amiably with each other.

    test strikethrough test

    -
    xy +xy diff --git a/e2etests/testdata/stable/markdown/elk/board.exp.json b/e2etests/testdata/stable/markdown/elk/board.exp.json index 92ac04bef0..ca78d56404 100644 --- a/e2etests/testdata/stable/markdown/elk/board.exp.json +++ b/e2etests/testdata/stable/markdown/elk/board.exp.json @@ -150,6 +150,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 277.5, @@ -188,6 +189,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 277.5, diff --git a/e2etests/testdata/stable/markdown/elk/sketch.exp.svg b/e2etests/testdata/stable/markdown/elk/sketch.exp.svg index 89956d2c8a..7bc6c56643 100644 --- a/e2etests/testdata/stable/markdown/elk/sketch.exp.svg +++ b/e2etests/testdata/stable/markdown/elk/sketch.exp.svg @@ -1,27 +1,27 @@ -

    Every frustum longs to be a cone

    @@ -851,7 +851,7 @@

    Festivity Level 1: Your guests are chatting amiably with each other.

    test strikethrough test

    -
    xy +xy diff --git a/e2etests/testdata/stable/markdown_stroke_fill/dagre/board.exp.json b/e2etests/testdata/stable/markdown_stroke_fill/dagre/board.exp.json index 9c152eae36..90ce26ca6e 100644 --- a/e2etests/testdata/stable/markdown_stroke_fill/dagre/board.exp.json +++ b/e2etests/testdata/stable/markdown_stroke_fill/dagre/board.exp.json @@ -149,6 +149,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 146, diff --git a/e2etests/testdata/stable/markdown_stroke_fill/dagre/sketch.exp.svg b/e2etests/testdata/stable/markdown_stroke_fill/dagre/sketch.exp.svg index 64d0f384f4..d6dddf22dd 100644 --- a/e2etests/testdata/stable/markdown_stroke_fill/dagre/sketch.exp.svg +++ b/e2etests/testdata/stable/markdown_stroke_fill/dagre/sketch.exp.svg @@ -1,20 +1,20 @@ -container

    they did it in style

    @@ -845,7 +845,7 @@ }

    walk into a bar.

    -
    + diff --git a/e2etests/testdata/stable/markdown_stroke_fill/elk/board.exp.json b/e2etests/testdata/stable/markdown_stroke_fill/elk/board.exp.json index 3a3f429c30..5dee46bf62 100644 --- a/e2etests/testdata/stable/markdown_stroke_fill/elk/board.exp.json +++ b/e2etests/testdata/stable/markdown_stroke_fill/elk/board.exp.json @@ -149,6 +149,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 168, diff --git a/e2etests/testdata/stable/markdown_stroke_fill/elk/sketch.exp.svg b/e2etests/testdata/stable/markdown_stroke_fill/elk/sketch.exp.svg index 3281b7437e..5138720d1f 100644 --- a/e2etests/testdata/stable/markdown_stroke_fill/elk/sketch.exp.svg +++ b/e2etests/testdata/stable/markdown_stroke_fill/elk/sketch.exp.svg @@ -1,20 +1,20 @@ -container

    they did it in style

    @@ -845,7 +845,7 @@ }

    walk into a bar.

    -
    + diff --git a/e2etests/testdata/stable/md_code_block_fenced/dagre/board.exp.json b/e2etests/testdata/stable/md_code_block_fenced/dagre/board.exp.json index c6fade64fb..1902ff9873 100644 --- a/e2etests/testdata/stable/md_code_block_fenced/dagre/board.exp.json +++ b/e2etests/testdata/stable/md_code_block_fenced/dagre/board.exp.json @@ -150,6 +150,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 98, @@ -197,6 +198,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 98, diff --git a/e2etests/testdata/stable/md_code_block_fenced/dagre/sketch.exp.svg b/e2etests/testdata/stable/md_code_block_fenced/dagre/sketch.exp.svg index 3ab5848b3f..36e47413ae 100644 --- a/e2etests/testdata/stable/md_code_block_fenced/dagre/sketch.exp.svg +++ b/e2etests/testdata/stable/md_code_block_fenced/dagre/sketch.exp.svg @@ -1,27 +1,27 @@ -
    {
    @@ -848,7 +848,7 @@
     	of: "json",
     }
     
    -
    ab +ab diff --git a/e2etests/testdata/stable/md_code_block_fenced/elk/board.exp.json b/e2etests/testdata/stable/md_code_block_fenced/elk/board.exp.json index cc732dc11b..a418ed5a0f 100644 --- a/e2etests/testdata/stable/md_code_block_fenced/elk/board.exp.json +++ b/e2etests/testdata/stable/md_code_block_fenced/elk/board.exp.json @@ -150,6 +150,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 110, @@ -188,6 +189,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 110, diff --git a/e2etests/testdata/stable/md_code_block_fenced/elk/sketch.exp.svg b/e2etests/testdata/stable/md_code_block_fenced/elk/sketch.exp.svg index 471c141c85..2a58e8961c 100644 --- a/e2etests/testdata/stable/md_code_block_fenced/elk/sketch.exp.svg +++ b/e2etests/testdata/stable/md_code_block_fenced/elk/sketch.exp.svg @@ -1,27 +1,27 @@ -
    {
    @@ -848,7 +848,7 @@
     	of: "json",
     }
     
    -
    ab +ab diff --git a/e2etests/testdata/stable/md_code_block_indented/dagre/board.exp.json b/e2etests/testdata/stable/md_code_block_indented/dagre/board.exp.json index 392c9757a9..d75d138233 100644 --- a/e2etests/testdata/stable/md_code_block_indented/dagre/board.exp.json +++ b/e2etests/testdata/stable/md_code_block_indented/dagre/board.exp.json @@ -150,6 +150,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 106, @@ -197,6 +198,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 106, diff --git a/e2etests/testdata/stable/md_code_block_indented/dagre/sketch.exp.svg b/e2etests/testdata/stable/md_code_block_indented/dagre/sketch.exp.svg index 34cf1ca54d..72a404f02e 100644 --- a/e2etests/testdata/stable/md_code_block_indented/dagre/sketch.exp.svg +++ b/e2etests/testdata/stable/md_code_block_indented/dagre/sketch.exp.svg @@ -1,27 +1,27 @@ -

    a line of text and an

    @@ -849,7 +849,7 @@ of: "json", } -
    ab +ab diff --git a/e2etests/testdata/stable/md_code_block_indented/elk/board.exp.json b/e2etests/testdata/stable/md_code_block_indented/elk/board.exp.json index 1856b2a098..e9d63a990d 100644 --- a/e2etests/testdata/stable/md_code_block_indented/elk/board.exp.json +++ b/e2etests/testdata/stable/md_code_block_indented/elk/board.exp.json @@ -150,6 +150,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 118, @@ -188,6 +189,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 118, diff --git a/e2etests/testdata/stable/md_code_block_indented/elk/sketch.exp.svg b/e2etests/testdata/stable/md_code_block_indented/elk/sketch.exp.svg index 02c1465e6c..bdae71797b 100644 --- a/e2etests/testdata/stable/md_code_block_indented/elk/sketch.exp.svg +++ b/e2etests/testdata/stable/md_code_block_indented/elk/sketch.exp.svg @@ -1,27 +1,27 @@ -

    a line of text and an

    @@ -849,7 +849,7 @@ of: "json", } -
    ab +ab diff --git a/e2etests/testdata/stable/md_code_inline/dagre/board.exp.json b/e2etests/testdata/stable/md_code_inline/dagre/board.exp.json index e09e0e2f68..365edff3ab 100644 --- a/e2etests/testdata/stable/md_code_inline/dagre/board.exp.json +++ b/e2etests/testdata/stable/md_code_inline/dagre/board.exp.json @@ -150,6 +150,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 26.5, @@ -197,6 +198,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 26.5, diff --git a/e2etests/testdata/stable/md_code_inline/dagre/sketch.exp.svg b/e2etests/testdata/stable/md_code_inline/dagre/sketch.exp.svg index b458620709..ab9ac2e102 100644 --- a/e2etests/testdata/stable/md_code_inline/dagre/sketch.exp.svg +++ b/e2etests/testdata/stable/md_code_inline/dagre/sketch.exp.svg @@ -1,27 +1,27 @@ -

    code

    -
    ab +ab diff --git a/e2etests/testdata/stable/md_code_inline/elk/board.exp.json b/e2etests/testdata/stable/md_code_inline/elk/board.exp.json index 98251845a9..c370f35ed6 100644 --- a/e2etests/testdata/stable/md_code_inline/elk/board.exp.json +++ b/e2etests/testdata/stable/md_code_inline/elk/board.exp.json @@ -150,6 +150,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 38.5, @@ -188,6 +189,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 38.5, diff --git a/e2etests/testdata/stable/md_code_inline/elk/sketch.exp.svg b/e2etests/testdata/stable/md_code_inline/elk/sketch.exp.svg index 7901501769..bb87c47f39 100644 --- a/e2etests/testdata/stable/md_code_inline/elk/sketch.exp.svg +++ b/e2etests/testdata/stable/md_code_inline/elk/sketch.exp.svg @@ -1,27 +1,27 @@ -

    code

    -
    ab +ab diff --git a/e2etests/testdata/stable/md_fontsize_10/dagre/board.exp.json b/e2etests/testdata/stable/md_fontsize_10/dagre/board.exp.json index 40662f9b03..01aa01a4aa 100644 --- a/e2etests/testdata/stable/md_fontsize_10/dagre/board.exp.json +++ b/e2etests/testdata/stable/md_fontsize_10/dagre/board.exp.json @@ -150,6 +150,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 166, @@ -197,6 +198,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 166, diff --git a/e2etests/testdata/stable/md_fontsize_10/dagre/sketch.exp.svg b/e2etests/testdata/stable/md_fontsize_10/dagre/sketch.exp.svg index c7c6e303c1..fbae5f8983 100644 --- a/e2etests/testdata/stable/md_fontsize_10/dagre/sketch.exp.svg +++ b/e2etests/testdata/stable/md_fontsize_10/dagre/sketch.exp.svg @@ -1,27 +1,27 @@ -

    Every frustum longs to be a cone

    @@ -851,7 +851,7 @@

    Festivity Level 1: Your guests are chatting amiably with each other.

    test strikethrough test

    -
    xy +xy diff --git a/e2etests/testdata/stable/md_fontsize_10/elk/board.exp.json b/e2etests/testdata/stable/md_fontsize_10/elk/board.exp.json index 4092969805..010e32a318 100644 --- a/e2etests/testdata/stable/md_fontsize_10/elk/board.exp.json +++ b/e2etests/testdata/stable/md_fontsize_10/elk/board.exp.json @@ -150,6 +150,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 178, @@ -188,6 +189,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 178, diff --git a/e2etests/testdata/stable/md_fontsize_10/elk/sketch.exp.svg b/e2etests/testdata/stable/md_fontsize_10/elk/sketch.exp.svg index 170be82bf9..3d89bf962a 100644 --- a/e2etests/testdata/stable/md_fontsize_10/elk/sketch.exp.svg +++ b/e2etests/testdata/stable/md_fontsize_10/elk/sketch.exp.svg @@ -1,27 +1,27 @@ -

    Every frustum longs to be a cone

    @@ -851,7 +851,7 @@

    Festivity Level 1: Your guests are chatting amiably with each other.

    test strikethrough test

    -
    xy +xy diff --git a/e2etests/testdata/stable/mono-edge/dagre/board.exp.json b/e2etests/testdata/stable/mono-edge/dagre/board.exp.json index e356ca3cec..08915d1543 100644 --- a/e2etests/testdata/stable/mono-edge/dagre/board.exp.json +++ b/e2etests/testdata/stable/mono-edge/dagre/board.exp.json @@ -110,6 +110,7 @@ "labelHeight": 21, "labelPosition": "INSIDE_MIDDLE_CENTER", "labelPercentage": 0, + "link": "", "route": [ { "x": 53, diff --git a/e2etests/testdata/stable/mono-edge/dagre/sketch.exp.svg b/e2etests/testdata/stable/mono-edge/dagre/sketch.exp.svg index d0e1029a90..c138b83f9c 100644 --- a/e2etests/testdata/stable/mono-edge/dagre/sketch.exp.svg +++ b/e2etests/testdata/stable/mono-edge/dagre/sketch.exp.svg @@ -1,23 +1,23 @@ -xy hi + .d2-4000994026 .fill-N1{fill:#0A0F25;} + .d2-4000994026 .fill-N2{fill:#676C7E;} + .d2-4000994026 .fill-N3{fill:#9499AB;} + .d2-4000994026 .fill-N4{fill:#CFD2DD;} + .d2-4000994026 .fill-N5{fill:#DEE1EB;} + .d2-4000994026 .fill-N6{fill:#EEF1F8;} + .d2-4000994026 .fill-N7{fill:#FFFFFF;} + .d2-4000994026 .fill-B1{fill:#0D32B2;} + .d2-4000994026 .fill-B2{fill:#0D32B2;} + .d2-4000994026 .fill-B3{fill:#E3E9FD;} + .d2-4000994026 .fill-B4{fill:#E3E9FD;} + .d2-4000994026 .fill-B5{fill:#EDF0FD;} + .d2-4000994026 .fill-B6{fill:#F7F8FE;} + .d2-4000994026 .fill-AA2{fill:#4A6FF3;} + .d2-4000994026 .fill-AA4{fill:#EDF0FD;} + .d2-4000994026 .fill-AA5{fill:#F7F8FE;} + .d2-4000994026 .fill-AB4{fill:#EDF0FD;} + .d2-4000994026 .fill-AB5{fill:#F7F8FE;} + .d2-4000994026 .stroke-N1{stroke:#0A0F25;} + .d2-4000994026 .stroke-N2{stroke:#676C7E;} + .d2-4000994026 .stroke-N3{stroke:#9499AB;} + .d2-4000994026 .stroke-N4{stroke:#CFD2DD;} + .d2-4000994026 .stroke-N5{stroke:#DEE1EB;} + .d2-4000994026 .stroke-N6{stroke:#EEF1F8;} + .d2-4000994026 .stroke-N7{stroke:#FFFFFF;} + .d2-4000994026 .stroke-B1{stroke:#0D32B2;} + .d2-4000994026 .stroke-B2{stroke:#0D32B2;} + .d2-4000994026 .stroke-B3{stroke:#E3E9FD;} + .d2-4000994026 .stroke-B4{stroke:#E3E9FD;} + .d2-4000994026 .stroke-B5{stroke:#EDF0FD;} + .d2-4000994026 .stroke-B6{stroke:#F7F8FE;} + .d2-4000994026 .stroke-AA2{stroke:#4A6FF3;} + .d2-4000994026 .stroke-AA4{stroke:#EDF0FD;} + .d2-4000994026 .stroke-AA5{stroke:#F7F8FE;} + .d2-4000994026 .stroke-AB4{stroke:#EDF0FD;} + .d2-4000994026 .stroke-AB5{stroke:#F7F8FE;} + .d2-4000994026 .background-color-N1{background-color:#0A0F25;} + .d2-4000994026 .background-color-N2{background-color:#676C7E;} + .d2-4000994026 .background-color-N3{background-color:#9499AB;} + .d2-4000994026 .background-color-N4{background-color:#CFD2DD;} + .d2-4000994026 .background-color-N5{background-color:#DEE1EB;} + .d2-4000994026 .background-color-N6{background-color:#EEF1F8;} + .d2-4000994026 .background-color-N7{background-color:#FFFFFF;} + .d2-4000994026 .background-color-B1{background-color:#0D32B2;} + .d2-4000994026 .background-color-B2{background-color:#0D32B2;} + .d2-4000994026 .background-color-B3{background-color:#E3E9FD;} + .d2-4000994026 .background-color-B4{background-color:#E3E9FD;} + .d2-4000994026 .background-color-B5{background-color:#EDF0FD;} + .d2-4000994026 .background-color-B6{background-color:#F7F8FE;} + .d2-4000994026 .background-color-AA2{background-color:#4A6FF3;} + .d2-4000994026 .background-color-AA4{background-color:#EDF0FD;} + .d2-4000994026 .background-color-AA5{background-color:#F7F8FE;} + .d2-4000994026 .background-color-AB4{background-color:#EDF0FD;} + .d2-4000994026 .background-color-AB5{background-color:#F7F8FE;} + .d2-4000994026 .color-N1{color:#0A0F25;} + .d2-4000994026 .color-N2{color:#676C7E;} + .d2-4000994026 .color-N3{color:#9499AB;} + .d2-4000994026 .color-N4{color:#CFD2DD;} + .d2-4000994026 .color-N5{color:#DEE1EB;} + .d2-4000994026 .color-N6{color:#EEF1F8;} + .d2-4000994026 .color-N7{color:#FFFFFF;} + .d2-4000994026 .color-B1{color:#0D32B2;} + .d2-4000994026 .color-B2{color:#0D32B2;} + .d2-4000994026 .color-B3{color:#E3E9FD;} + .d2-4000994026 .color-B4{color:#E3E9FD;} + .d2-4000994026 .color-B5{color:#EDF0FD;} + .d2-4000994026 .color-B6{color:#F7F8FE;} + .d2-4000994026 .color-AA2{color:#4A6FF3;} + .d2-4000994026 .color-AA4{color:#EDF0FD;} + .d2-4000994026 .color-AA5{color:#F7F8FE;} + .d2-4000994026 .color-AB4{color:#EDF0FD;} + .d2-4000994026 .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 hi diff --git a/e2etests/testdata/stable/mono-edge/elk/board.exp.json b/e2etests/testdata/stable/mono-edge/elk/board.exp.json index 5a6cab54be..8a771e3217 100644 --- a/e2etests/testdata/stable/mono-edge/elk/board.exp.json +++ b/e2etests/testdata/stable/mono-edge/elk/board.exp.json @@ -110,6 +110,7 @@ "labelHeight": 21, "labelPosition": "INSIDE_MIDDLE_CENTER", "labelPercentage": 0, + "link": "", "route": [ { "x": 65, diff --git a/e2etests/testdata/stable/mono-edge/elk/sketch.exp.svg b/e2etests/testdata/stable/mono-edge/elk/sketch.exp.svg index e57190707a..0badc74251 100644 --- a/e2etests/testdata/stable/mono-edge/elk/sketch.exp.svg +++ b/e2etests/testdata/stable/mono-edge/elk/sketch.exp.svg @@ -1,23 +1,23 @@ -xy hi + .d2-2810654117 .fill-N1{fill:#0A0F25;} + .d2-2810654117 .fill-N2{fill:#676C7E;} + .d2-2810654117 .fill-N3{fill:#9499AB;} + .d2-2810654117 .fill-N4{fill:#CFD2DD;} + .d2-2810654117 .fill-N5{fill:#DEE1EB;} + .d2-2810654117 .fill-N6{fill:#EEF1F8;} + .d2-2810654117 .fill-N7{fill:#FFFFFF;} + .d2-2810654117 .fill-B1{fill:#0D32B2;} + .d2-2810654117 .fill-B2{fill:#0D32B2;} + .d2-2810654117 .fill-B3{fill:#E3E9FD;} + .d2-2810654117 .fill-B4{fill:#E3E9FD;} + .d2-2810654117 .fill-B5{fill:#EDF0FD;} + .d2-2810654117 .fill-B6{fill:#F7F8FE;} + .d2-2810654117 .fill-AA2{fill:#4A6FF3;} + .d2-2810654117 .fill-AA4{fill:#EDF0FD;} + .d2-2810654117 .fill-AA5{fill:#F7F8FE;} + .d2-2810654117 .fill-AB4{fill:#EDF0FD;} + .d2-2810654117 .fill-AB5{fill:#F7F8FE;} + .d2-2810654117 .stroke-N1{stroke:#0A0F25;} + .d2-2810654117 .stroke-N2{stroke:#676C7E;} + .d2-2810654117 .stroke-N3{stroke:#9499AB;} + .d2-2810654117 .stroke-N4{stroke:#CFD2DD;} + .d2-2810654117 .stroke-N5{stroke:#DEE1EB;} + .d2-2810654117 .stroke-N6{stroke:#EEF1F8;} + .d2-2810654117 .stroke-N7{stroke:#FFFFFF;} + .d2-2810654117 .stroke-B1{stroke:#0D32B2;} + .d2-2810654117 .stroke-B2{stroke:#0D32B2;} + .d2-2810654117 .stroke-B3{stroke:#E3E9FD;} + .d2-2810654117 .stroke-B4{stroke:#E3E9FD;} + .d2-2810654117 .stroke-B5{stroke:#EDF0FD;} + .d2-2810654117 .stroke-B6{stroke:#F7F8FE;} + .d2-2810654117 .stroke-AA2{stroke:#4A6FF3;} + .d2-2810654117 .stroke-AA4{stroke:#EDF0FD;} + .d2-2810654117 .stroke-AA5{stroke:#F7F8FE;} + .d2-2810654117 .stroke-AB4{stroke:#EDF0FD;} + .d2-2810654117 .stroke-AB5{stroke:#F7F8FE;} + .d2-2810654117 .background-color-N1{background-color:#0A0F25;} + .d2-2810654117 .background-color-N2{background-color:#676C7E;} + .d2-2810654117 .background-color-N3{background-color:#9499AB;} + .d2-2810654117 .background-color-N4{background-color:#CFD2DD;} + .d2-2810654117 .background-color-N5{background-color:#DEE1EB;} + .d2-2810654117 .background-color-N6{background-color:#EEF1F8;} + .d2-2810654117 .background-color-N7{background-color:#FFFFFF;} + .d2-2810654117 .background-color-B1{background-color:#0D32B2;} + .d2-2810654117 .background-color-B2{background-color:#0D32B2;} + .d2-2810654117 .background-color-B3{background-color:#E3E9FD;} + .d2-2810654117 .background-color-B4{background-color:#E3E9FD;} + .d2-2810654117 .background-color-B5{background-color:#EDF0FD;} + .d2-2810654117 .background-color-B6{background-color:#F7F8FE;} + .d2-2810654117 .background-color-AA2{background-color:#4A6FF3;} + .d2-2810654117 .background-color-AA4{background-color:#EDF0FD;} + .d2-2810654117 .background-color-AA5{background-color:#F7F8FE;} + .d2-2810654117 .background-color-AB4{background-color:#EDF0FD;} + .d2-2810654117 .background-color-AB5{background-color:#F7F8FE;} + .d2-2810654117 .color-N1{color:#0A0F25;} + .d2-2810654117 .color-N2{color:#676C7E;} + .d2-2810654117 .color-N3{color:#9499AB;} + .d2-2810654117 .color-N4{color:#CFD2DD;} + .d2-2810654117 .color-N5{color:#DEE1EB;} + .d2-2810654117 .color-N6{color:#EEF1F8;} + .d2-2810654117 .color-N7{color:#FFFFFF;} + .d2-2810654117 .color-B1{color:#0D32B2;} + .d2-2810654117 .color-B2{color:#0D32B2;} + .d2-2810654117 .color-B3{color:#E3E9FD;} + .d2-2810654117 .color-B4{color:#E3E9FD;} + .d2-2810654117 .color-B5{color:#EDF0FD;} + .d2-2810654117 .color-B6{color:#F7F8FE;} + .d2-2810654117 .color-AA2{color:#4A6FF3;} + .d2-2810654117 .color-AA4{color:#EDF0FD;} + .d2-2810654117 .color-AA5{color:#F7F8FE;} + .d2-2810654117 .color-AB4{color:#EDF0FD;} + .d2-2810654117 .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 hi diff --git a/e2etests/testdata/stable/mono-font/dagre/board.exp.json b/e2etests/testdata/stable/mono-font/dagre/board.exp.json index 35ed1a099a..931ce246a2 100644 --- a/e2etests/testdata/stable/mono-font/dagre/board.exp.json +++ b/e2etests/testdata/stable/mono-font/dagre/board.exp.json @@ -110,6 +110,7 @@ "labelHeight": 21, "labelPosition": "INSIDE_MIDDLE_CENTER", "labelPercentage": 0, + "link": "", "route": [ { "x": 79, @@ -157,6 +158,7 @@ "labelHeight": 21, "labelPosition": "INSIDE_MIDDLE_CENTER", "labelPercentage": 0, + "link": "", "route": [ { "x": 107, @@ -204,6 +206,7 @@ "labelHeight": 21, "labelPosition": "INSIDE_MIDDLE_CENTER", "labelPercentage": 0, + "link": "", "route": [ { "x": 135, diff --git a/e2etests/testdata/stable/mono-font/dagre/sketch.exp.svg b/e2etests/testdata/stable/mono-font/dagre/sketch.exp.svg index 4d8bf15398..4e261a1dcc 100644 --- a/e2etests/testdata/stable/mono-font/dagre/sketch.exp.svg +++ b/e2etests/testdata/stable/mono-font/dagre/sketch.exp.svg @@ -1,23 +1,23 @@ -SATELLITESTRANSMITTER SENDSENDSEND + .d2-472807872 .fill-N1{fill:#0A0F25;} + .d2-472807872 .fill-N2{fill:#676C7E;} + .d2-472807872 .fill-N3{fill:#9499AB;} + .d2-472807872 .fill-N4{fill:#CFD2DD;} + .d2-472807872 .fill-N5{fill:#DEE1EB;} + .d2-472807872 .fill-N6{fill:#EEF1F8;} + .d2-472807872 .fill-N7{fill:#FFFFFF;} + .d2-472807872 .fill-B1{fill:#0D32B2;} + .d2-472807872 .fill-B2{fill:#0D32B2;} + .d2-472807872 .fill-B3{fill:#E3E9FD;} + .d2-472807872 .fill-B4{fill:#E3E9FD;} + .d2-472807872 .fill-B5{fill:#EDF0FD;} + .d2-472807872 .fill-B6{fill:#F7F8FE;} + .d2-472807872 .fill-AA2{fill:#4A6FF3;} + .d2-472807872 .fill-AA4{fill:#EDF0FD;} + .d2-472807872 .fill-AA5{fill:#F7F8FE;} + .d2-472807872 .fill-AB4{fill:#EDF0FD;} + .d2-472807872 .fill-AB5{fill:#F7F8FE;} + .d2-472807872 .stroke-N1{stroke:#0A0F25;} + .d2-472807872 .stroke-N2{stroke:#676C7E;} + .d2-472807872 .stroke-N3{stroke:#9499AB;} + .d2-472807872 .stroke-N4{stroke:#CFD2DD;} + .d2-472807872 .stroke-N5{stroke:#DEE1EB;} + .d2-472807872 .stroke-N6{stroke:#EEF1F8;} + .d2-472807872 .stroke-N7{stroke:#FFFFFF;} + .d2-472807872 .stroke-B1{stroke:#0D32B2;} + .d2-472807872 .stroke-B2{stroke:#0D32B2;} + .d2-472807872 .stroke-B3{stroke:#E3E9FD;} + .d2-472807872 .stroke-B4{stroke:#E3E9FD;} + .d2-472807872 .stroke-B5{stroke:#EDF0FD;} + .d2-472807872 .stroke-B6{stroke:#F7F8FE;} + .d2-472807872 .stroke-AA2{stroke:#4A6FF3;} + .d2-472807872 .stroke-AA4{stroke:#EDF0FD;} + .d2-472807872 .stroke-AA5{stroke:#F7F8FE;} + .d2-472807872 .stroke-AB4{stroke:#EDF0FD;} + .d2-472807872 .stroke-AB5{stroke:#F7F8FE;} + .d2-472807872 .background-color-N1{background-color:#0A0F25;} + .d2-472807872 .background-color-N2{background-color:#676C7E;} + .d2-472807872 .background-color-N3{background-color:#9499AB;} + .d2-472807872 .background-color-N4{background-color:#CFD2DD;} + .d2-472807872 .background-color-N5{background-color:#DEE1EB;} + .d2-472807872 .background-color-N6{background-color:#EEF1F8;} + .d2-472807872 .background-color-N7{background-color:#FFFFFF;} + .d2-472807872 .background-color-B1{background-color:#0D32B2;} + .d2-472807872 .background-color-B2{background-color:#0D32B2;} + .d2-472807872 .background-color-B3{background-color:#E3E9FD;} + .d2-472807872 .background-color-B4{background-color:#E3E9FD;} + .d2-472807872 .background-color-B5{background-color:#EDF0FD;} + .d2-472807872 .background-color-B6{background-color:#F7F8FE;} + .d2-472807872 .background-color-AA2{background-color:#4A6FF3;} + .d2-472807872 .background-color-AA4{background-color:#EDF0FD;} + .d2-472807872 .background-color-AA5{background-color:#F7F8FE;} + .d2-472807872 .background-color-AB4{background-color:#EDF0FD;} + .d2-472807872 .background-color-AB5{background-color:#F7F8FE;} + .d2-472807872 .color-N1{color:#0A0F25;} + .d2-472807872 .color-N2{color:#676C7E;} + .d2-472807872 .color-N3{color:#9499AB;} + .d2-472807872 .color-N4{color:#CFD2DD;} + .d2-472807872 .color-N5{color:#DEE1EB;} + .d2-472807872 .color-N6{color:#EEF1F8;} + .d2-472807872 .color-N7{color:#FFFFFF;} + .d2-472807872 .color-B1{color:#0D32B2;} + .d2-472807872 .color-B2{color:#0D32B2;} + .d2-472807872 .color-B3{color:#E3E9FD;} + .d2-472807872 .color-B4{color:#E3E9FD;} + .d2-472807872 .color-B5{color:#EDF0FD;} + .d2-472807872 .color-B6{color:#F7F8FE;} + .d2-472807872 .color-AA2{color:#4A6FF3;} + .d2-472807872 .color-AA4{color:#EDF0FD;} + .d2-472807872 .color-AA5{color:#F7F8FE;} + .d2-472807872 .color-AB4{color:#EDF0FD;} + .d2-472807872 .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}]]>SATELLITESTRANSMITTER SENDSENDSEND diff --git a/e2etests/testdata/stable/mono-font/elk/board.exp.json b/e2etests/testdata/stable/mono-font/elk/board.exp.json index 9609194e39..686ce11ccf 100644 --- a/e2etests/testdata/stable/mono-font/elk/board.exp.json +++ b/e2etests/testdata/stable/mono-font/elk/board.exp.json @@ -110,6 +110,7 @@ "labelHeight": 21, "labelPosition": "INSIDE_MIDDLE_CENTER", "labelPercentage": 0, + "link": "", "route": [ { "x": 48, @@ -148,6 +149,7 @@ "labelHeight": 21, "labelPosition": "INSIDE_MIDDLE_CENTER", "labelPercentage": 0, + "link": "", "route": [ { "x": 97, @@ -186,6 +188,7 @@ "labelHeight": 21, "labelPosition": "INSIDE_MIDDLE_CENTER", "labelPercentage": 0, + "link": "", "route": [ { "x": 146, diff --git a/e2etests/testdata/stable/mono-font/elk/sketch.exp.svg b/e2etests/testdata/stable/mono-font/elk/sketch.exp.svg index 83e833ed7e..8a28bb3151 100644 --- a/e2etests/testdata/stable/mono-font/elk/sketch.exp.svg +++ b/e2etests/testdata/stable/mono-font/elk/sketch.exp.svg @@ -1,23 +1,23 @@ -SATELLITESTRANSMITTER SENDSENDSEND + .d2-2802467950 .fill-N1{fill:#0A0F25;} + .d2-2802467950 .fill-N2{fill:#676C7E;} + .d2-2802467950 .fill-N3{fill:#9499AB;} + .d2-2802467950 .fill-N4{fill:#CFD2DD;} + .d2-2802467950 .fill-N5{fill:#DEE1EB;} + .d2-2802467950 .fill-N6{fill:#EEF1F8;} + .d2-2802467950 .fill-N7{fill:#FFFFFF;} + .d2-2802467950 .fill-B1{fill:#0D32B2;} + .d2-2802467950 .fill-B2{fill:#0D32B2;} + .d2-2802467950 .fill-B3{fill:#E3E9FD;} + .d2-2802467950 .fill-B4{fill:#E3E9FD;} + .d2-2802467950 .fill-B5{fill:#EDF0FD;} + .d2-2802467950 .fill-B6{fill:#F7F8FE;} + .d2-2802467950 .fill-AA2{fill:#4A6FF3;} + .d2-2802467950 .fill-AA4{fill:#EDF0FD;} + .d2-2802467950 .fill-AA5{fill:#F7F8FE;} + .d2-2802467950 .fill-AB4{fill:#EDF0FD;} + .d2-2802467950 .fill-AB5{fill:#F7F8FE;} + .d2-2802467950 .stroke-N1{stroke:#0A0F25;} + .d2-2802467950 .stroke-N2{stroke:#676C7E;} + .d2-2802467950 .stroke-N3{stroke:#9499AB;} + .d2-2802467950 .stroke-N4{stroke:#CFD2DD;} + .d2-2802467950 .stroke-N5{stroke:#DEE1EB;} + .d2-2802467950 .stroke-N6{stroke:#EEF1F8;} + .d2-2802467950 .stroke-N7{stroke:#FFFFFF;} + .d2-2802467950 .stroke-B1{stroke:#0D32B2;} + .d2-2802467950 .stroke-B2{stroke:#0D32B2;} + .d2-2802467950 .stroke-B3{stroke:#E3E9FD;} + .d2-2802467950 .stroke-B4{stroke:#E3E9FD;} + .d2-2802467950 .stroke-B5{stroke:#EDF0FD;} + .d2-2802467950 .stroke-B6{stroke:#F7F8FE;} + .d2-2802467950 .stroke-AA2{stroke:#4A6FF3;} + .d2-2802467950 .stroke-AA4{stroke:#EDF0FD;} + .d2-2802467950 .stroke-AA5{stroke:#F7F8FE;} + .d2-2802467950 .stroke-AB4{stroke:#EDF0FD;} + .d2-2802467950 .stroke-AB5{stroke:#F7F8FE;} + .d2-2802467950 .background-color-N1{background-color:#0A0F25;} + .d2-2802467950 .background-color-N2{background-color:#676C7E;} + .d2-2802467950 .background-color-N3{background-color:#9499AB;} + .d2-2802467950 .background-color-N4{background-color:#CFD2DD;} + .d2-2802467950 .background-color-N5{background-color:#DEE1EB;} + .d2-2802467950 .background-color-N6{background-color:#EEF1F8;} + .d2-2802467950 .background-color-N7{background-color:#FFFFFF;} + .d2-2802467950 .background-color-B1{background-color:#0D32B2;} + .d2-2802467950 .background-color-B2{background-color:#0D32B2;} + .d2-2802467950 .background-color-B3{background-color:#E3E9FD;} + .d2-2802467950 .background-color-B4{background-color:#E3E9FD;} + .d2-2802467950 .background-color-B5{background-color:#EDF0FD;} + .d2-2802467950 .background-color-B6{background-color:#F7F8FE;} + .d2-2802467950 .background-color-AA2{background-color:#4A6FF3;} + .d2-2802467950 .background-color-AA4{background-color:#EDF0FD;} + .d2-2802467950 .background-color-AA5{background-color:#F7F8FE;} + .d2-2802467950 .background-color-AB4{background-color:#EDF0FD;} + .d2-2802467950 .background-color-AB5{background-color:#F7F8FE;} + .d2-2802467950 .color-N1{color:#0A0F25;} + .d2-2802467950 .color-N2{color:#676C7E;} + .d2-2802467950 .color-N3{color:#9499AB;} + .d2-2802467950 .color-N4{color:#CFD2DD;} + .d2-2802467950 .color-N5{color:#DEE1EB;} + .d2-2802467950 .color-N6{color:#EEF1F8;} + .d2-2802467950 .color-N7{color:#FFFFFF;} + .d2-2802467950 .color-B1{color:#0D32B2;} + .d2-2802467950 .color-B2{color:#0D32B2;} + .d2-2802467950 .color-B3{color:#E3E9FD;} + .d2-2802467950 .color-B4{color:#E3E9FD;} + .d2-2802467950 .color-B5{color:#EDF0FD;} + .d2-2802467950 .color-B6{color:#F7F8FE;} + .d2-2802467950 .color-AA2{color:#4A6FF3;} + .d2-2802467950 .color-AA4{color:#EDF0FD;} + .d2-2802467950 .color-AA5{color:#F7F8FE;} + .d2-2802467950 .color-AB4{color:#EDF0FD;} + .d2-2802467950 .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}]]>SATELLITESTRANSMITTER SENDSENDSEND diff --git a/e2etests/testdata/stable/multiple_box_selection/dagre/board.exp.json b/e2etests/testdata/stable/multiple_box_selection/dagre/board.exp.json index 65b1e99915..76bfe5022e 100644 --- a/e2etests/testdata/stable/multiple_box_selection/dagre/board.exp.json +++ b/e2etests/testdata/stable/multiple_box_selection/dagre/board.exp.json @@ -274,6 +274,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 129, @@ -345,6 +346,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 129, diff --git a/e2etests/testdata/stable/multiple_box_selection/dagre/sketch.exp.svg b/e2etests/testdata/stable/multiple_box_selection/dagre/sketch.exp.svg index 35e747912a..8e490c8c8e 100644 --- a/e2etests/testdata/stable/multiple_box_selection/dagre/sketch.exp.svg +++ b/e2etests/testdata/stable/multiple_box_selection/dagre/sketch.exp.svg @@ -1,16 +1,16 @@ -outerstartendvolume groupvolume definitionvolume + .d2-1897650299 .fill-N1{fill:#0A0F25;} + .d2-1897650299 .fill-N2{fill:#676C7E;} + .d2-1897650299 .fill-N3{fill:#9499AB;} + .d2-1897650299 .fill-N4{fill:#CFD2DD;} + .d2-1897650299 .fill-N5{fill:#DEE1EB;} + .d2-1897650299 .fill-N6{fill:#EEF1F8;} + .d2-1897650299 .fill-N7{fill:#FFFFFF;} + .d2-1897650299 .fill-B1{fill:#0D32B2;} + .d2-1897650299 .fill-B2{fill:#0D32B2;} + .d2-1897650299 .fill-B3{fill:#E3E9FD;} + .d2-1897650299 .fill-B4{fill:#E3E9FD;} + .d2-1897650299 .fill-B5{fill:#EDF0FD;} + .d2-1897650299 .fill-B6{fill:#F7F8FE;} + .d2-1897650299 .fill-AA2{fill:#4A6FF3;} + .d2-1897650299 .fill-AA4{fill:#EDF0FD;} + .d2-1897650299 .fill-AA5{fill:#F7F8FE;} + .d2-1897650299 .fill-AB4{fill:#EDF0FD;} + .d2-1897650299 .fill-AB5{fill:#F7F8FE;} + .d2-1897650299 .stroke-N1{stroke:#0A0F25;} + .d2-1897650299 .stroke-N2{stroke:#676C7E;} + .d2-1897650299 .stroke-N3{stroke:#9499AB;} + .d2-1897650299 .stroke-N4{stroke:#CFD2DD;} + .d2-1897650299 .stroke-N5{stroke:#DEE1EB;} + .d2-1897650299 .stroke-N6{stroke:#EEF1F8;} + .d2-1897650299 .stroke-N7{stroke:#FFFFFF;} + .d2-1897650299 .stroke-B1{stroke:#0D32B2;} + .d2-1897650299 .stroke-B2{stroke:#0D32B2;} + .d2-1897650299 .stroke-B3{stroke:#E3E9FD;} + .d2-1897650299 .stroke-B4{stroke:#E3E9FD;} + .d2-1897650299 .stroke-B5{stroke:#EDF0FD;} + .d2-1897650299 .stroke-B6{stroke:#F7F8FE;} + .d2-1897650299 .stroke-AA2{stroke:#4A6FF3;} + .d2-1897650299 .stroke-AA4{stroke:#EDF0FD;} + .d2-1897650299 .stroke-AA5{stroke:#F7F8FE;} + .d2-1897650299 .stroke-AB4{stroke:#EDF0FD;} + .d2-1897650299 .stroke-AB5{stroke:#F7F8FE;} + .d2-1897650299 .background-color-N1{background-color:#0A0F25;} + .d2-1897650299 .background-color-N2{background-color:#676C7E;} + .d2-1897650299 .background-color-N3{background-color:#9499AB;} + .d2-1897650299 .background-color-N4{background-color:#CFD2DD;} + .d2-1897650299 .background-color-N5{background-color:#DEE1EB;} + .d2-1897650299 .background-color-N6{background-color:#EEF1F8;} + .d2-1897650299 .background-color-N7{background-color:#FFFFFF;} + .d2-1897650299 .background-color-B1{background-color:#0D32B2;} + .d2-1897650299 .background-color-B2{background-color:#0D32B2;} + .d2-1897650299 .background-color-B3{background-color:#E3E9FD;} + .d2-1897650299 .background-color-B4{background-color:#E3E9FD;} + .d2-1897650299 .background-color-B5{background-color:#EDF0FD;} + .d2-1897650299 .background-color-B6{background-color:#F7F8FE;} + .d2-1897650299 .background-color-AA2{background-color:#4A6FF3;} + .d2-1897650299 .background-color-AA4{background-color:#EDF0FD;} + .d2-1897650299 .background-color-AA5{background-color:#F7F8FE;} + .d2-1897650299 .background-color-AB4{background-color:#EDF0FD;} + .d2-1897650299 .background-color-AB5{background-color:#F7F8FE;} + .d2-1897650299 .color-N1{color:#0A0F25;} + .d2-1897650299 .color-N2{color:#676C7E;} + .d2-1897650299 .color-N3{color:#9499AB;} + .d2-1897650299 .color-N4{color:#CFD2DD;} + .d2-1897650299 .color-N5{color:#DEE1EB;} + .d2-1897650299 .color-N6{color:#EEF1F8;} + .d2-1897650299 .color-N7{color:#FFFFFF;} + .d2-1897650299 .color-B1{color:#0D32B2;} + .d2-1897650299 .color-B2{color:#0D32B2;} + .d2-1897650299 .color-B3{color:#E3E9FD;} + .d2-1897650299 .color-B4{color:#E3E9FD;} + .d2-1897650299 .color-B5{color:#EDF0FD;} + .d2-1897650299 .color-B6{color:#F7F8FE;} + .d2-1897650299 .color-AA2{color:#4A6FF3;} + .d2-1897650299 .color-AA4{color:#EDF0FD;} + .d2-1897650299 .color-AA5{color:#F7F8FE;} + .d2-1897650299 .color-AB4{color:#EDF0FD;} + .d2-1897650299 .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}]]>outerstartendvolume groupvolume definitionvolume diff --git a/e2etests/testdata/stable/multiple_box_selection/elk/board.exp.json b/e2etests/testdata/stable/multiple_box_selection/elk/board.exp.json index 07a9ea89ad..a7baf38b8e 100644 --- a/e2etests/testdata/stable/multiple_box_selection/elk/board.exp.json +++ b/e2etests/testdata/stable/multiple_box_selection/elk/board.exp.json @@ -274,6 +274,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 216, @@ -312,6 +313,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 211, diff --git a/e2etests/testdata/stable/multiple_box_selection/elk/sketch.exp.svg b/e2etests/testdata/stable/multiple_box_selection/elk/sketch.exp.svg index 23720207c3..e573a5b558 100644 --- a/e2etests/testdata/stable/multiple_box_selection/elk/sketch.exp.svg +++ b/e2etests/testdata/stable/multiple_box_selection/elk/sketch.exp.svg @@ -1,16 +1,16 @@ -outerstartendvolume groupvolume definitionvolume + .d2-4093003925 .fill-N1{fill:#0A0F25;} + .d2-4093003925 .fill-N2{fill:#676C7E;} + .d2-4093003925 .fill-N3{fill:#9499AB;} + .d2-4093003925 .fill-N4{fill:#CFD2DD;} + .d2-4093003925 .fill-N5{fill:#DEE1EB;} + .d2-4093003925 .fill-N6{fill:#EEF1F8;} + .d2-4093003925 .fill-N7{fill:#FFFFFF;} + .d2-4093003925 .fill-B1{fill:#0D32B2;} + .d2-4093003925 .fill-B2{fill:#0D32B2;} + .d2-4093003925 .fill-B3{fill:#E3E9FD;} + .d2-4093003925 .fill-B4{fill:#E3E9FD;} + .d2-4093003925 .fill-B5{fill:#EDF0FD;} + .d2-4093003925 .fill-B6{fill:#F7F8FE;} + .d2-4093003925 .fill-AA2{fill:#4A6FF3;} + .d2-4093003925 .fill-AA4{fill:#EDF0FD;} + .d2-4093003925 .fill-AA5{fill:#F7F8FE;} + .d2-4093003925 .fill-AB4{fill:#EDF0FD;} + .d2-4093003925 .fill-AB5{fill:#F7F8FE;} + .d2-4093003925 .stroke-N1{stroke:#0A0F25;} + .d2-4093003925 .stroke-N2{stroke:#676C7E;} + .d2-4093003925 .stroke-N3{stroke:#9499AB;} + .d2-4093003925 .stroke-N4{stroke:#CFD2DD;} + .d2-4093003925 .stroke-N5{stroke:#DEE1EB;} + .d2-4093003925 .stroke-N6{stroke:#EEF1F8;} + .d2-4093003925 .stroke-N7{stroke:#FFFFFF;} + .d2-4093003925 .stroke-B1{stroke:#0D32B2;} + .d2-4093003925 .stroke-B2{stroke:#0D32B2;} + .d2-4093003925 .stroke-B3{stroke:#E3E9FD;} + .d2-4093003925 .stroke-B4{stroke:#E3E9FD;} + .d2-4093003925 .stroke-B5{stroke:#EDF0FD;} + .d2-4093003925 .stroke-B6{stroke:#F7F8FE;} + .d2-4093003925 .stroke-AA2{stroke:#4A6FF3;} + .d2-4093003925 .stroke-AA4{stroke:#EDF0FD;} + .d2-4093003925 .stroke-AA5{stroke:#F7F8FE;} + .d2-4093003925 .stroke-AB4{stroke:#EDF0FD;} + .d2-4093003925 .stroke-AB5{stroke:#F7F8FE;} + .d2-4093003925 .background-color-N1{background-color:#0A0F25;} + .d2-4093003925 .background-color-N2{background-color:#676C7E;} + .d2-4093003925 .background-color-N3{background-color:#9499AB;} + .d2-4093003925 .background-color-N4{background-color:#CFD2DD;} + .d2-4093003925 .background-color-N5{background-color:#DEE1EB;} + .d2-4093003925 .background-color-N6{background-color:#EEF1F8;} + .d2-4093003925 .background-color-N7{background-color:#FFFFFF;} + .d2-4093003925 .background-color-B1{background-color:#0D32B2;} + .d2-4093003925 .background-color-B2{background-color:#0D32B2;} + .d2-4093003925 .background-color-B3{background-color:#E3E9FD;} + .d2-4093003925 .background-color-B4{background-color:#E3E9FD;} + .d2-4093003925 .background-color-B5{background-color:#EDF0FD;} + .d2-4093003925 .background-color-B6{background-color:#F7F8FE;} + .d2-4093003925 .background-color-AA2{background-color:#4A6FF3;} + .d2-4093003925 .background-color-AA4{background-color:#EDF0FD;} + .d2-4093003925 .background-color-AA5{background-color:#F7F8FE;} + .d2-4093003925 .background-color-AB4{background-color:#EDF0FD;} + .d2-4093003925 .background-color-AB5{background-color:#F7F8FE;} + .d2-4093003925 .color-N1{color:#0A0F25;} + .d2-4093003925 .color-N2{color:#676C7E;} + .d2-4093003925 .color-N3{color:#9499AB;} + .d2-4093003925 .color-N4{color:#CFD2DD;} + .d2-4093003925 .color-N5{color:#DEE1EB;} + .d2-4093003925 .color-N6{color:#EEF1F8;} + .d2-4093003925 .color-N7{color:#FFFFFF;} + .d2-4093003925 .color-B1{color:#0D32B2;} + .d2-4093003925 .color-B2{color:#0D32B2;} + .d2-4093003925 .color-B3{color:#E3E9FD;} + .d2-4093003925 .color-B4{color:#E3E9FD;} + .d2-4093003925 .color-B5{color:#EDF0FD;} + .d2-4093003925 .color-B6{color:#F7F8FE;} + .d2-4093003925 .color-AA2{color:#4A6FF3;} + .d2-4093003925 .color-AA4{color:#EDF0FD;} + .d2-4093003925 .color-AA5{color:#F7F8FE;} + .d2-4093003925 .color-AB4{color:#EDF0FD;} + .d2-4093003925 .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}]]>outerstartendvolume groupvolume definitionvolume diff --git a/e2etests/testdata/stable/multiple_offset/dagre/board.exp.json b/e2etests/testdata/stable/multiple_offset/dagre/board.exp.json index 33fe35aad2..5e60ab5faa 100644 --- a/e2etests/testdata/stable/multiple_offset/dagre/board.exp.json +++ b/e2etests/testdata/stable/multiple_offset/dagre/board.exp.json @@ -1258,6 +1258,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 66.5, @@ -1305,6 +1306,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 229.5, @@ -1352,6 +1354,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 397.5, @@ -1399,6 +1402,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 570.5, @@ -1446,6 +1450,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 743.5, @@ -1493,6 +1498,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 901.5, @@ -1540,6 +1546,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 1064.5, @@ -1587,6 +1594,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 1227.5, @@ -1634,6 +1642,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 1410.5, @@ -1681,6 +1690,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 1583.5, diff --git a/e2etests/testdata/stable/multiple_offset/dagre/sketch.exp.svg b/e2etests/testdata/stable/multiple_offset/dagre/sketch.exp.svg index e59f1eb8b3..ce0d957be1 100644 --- a/e2etests/testdata/stable/multiple_offset/dagre/sketch.exp.svg +++ b/e2etests/testdata/stable/multiple_offset/dagre/sketch.exp.svg @@ -1,16 +1,16 @@ -n1n2n3 + .d2-2610931625 .fill-N1{fill:#0A0F25;} + .d2-2610931625 .fill-N2{fill:#676C7E;} + .d2-2610931625 .fill-N3{fill:#9499AB;} + .d2-2610931625 .fill-N4{fill:#CFD2DD;} + .d2-2610931625 .fill-N5{fill:#DEE1EB;} + .d2-2610931625 .fill-N6{fill:#EEF1F8;} + .d2-2610931625 .fill-N7{fill:#FFFFFF;} + .d2-2610931625 .fill-B1{fill:#0D32B2;} + .d2-2610931625 .fill-B2{fill:#0D32B2;} + .d2-2610931625 .fill-B3{fill:#E3E9FD;} + .d2-2610931625 .fill-B4{fill:#E3E9FD;} + .d2-2610931625 .fill-B5{fill:#EDF0FD;} + .d2-2610931625 .fill-B6{fill:#F7F8FE;} + .d2-2610931625 .fill-AA2{fill:#4A6FF3;} + .d2-2610931625 .fill-AA4{fill:#EDF0FD;} + .d2-2610931625 .fill-AA5{fill:#F7F8FE;} + .d2-2610931625 .fill-AB4{fill:#EDF0FD;} + .d2-2610931625 .fill-AB5{fill:#F7F8FE;} + .d2-2610931625 .stroke-N1{stroke:#0A0F25;} + .d2-2610931625 .stroke-N2{stroke:#676C7E;} + .d2-2610931625 .stroke-N3{stroke:#9499AB;} + .d2-2610931625 .stroke-N4{stroke:#CFD2DD;} + .d2-2610931625 .stroke-N5{stroke:#DEE1EB;} + .d2-2610931625 .stroke-N6{stroke:#EEF1F8;} + .d2-2610931625 .stroke-N7{stroke:#FFFFFF;} + .d2-2610931625 .stroke-B1{stroke:#0D32B2;} + .d2-2610931625 .stroke-B2{stroke:#0D32B2;} + .d2-2610931625 .stroke-B3{stroke:#E3E9FD;} + .d2-2610931625 .stroke-B4{stroke:#E3E9FD;} + .d2-2610931625 .stroke-B5{stroke:#EDF0FD;} + .d2-2610931625 .stroke-B6{stroke:#F7F8FE;} + .d2-2610931625 .stroke-AA2{stroke:#4A6FF3;} + .d2-2610931625 .stroke-AA4{stroke:#EDF0FD;} + .d2-2610931625 .stroke-AA5{stroke:#F7F8FE;} + .d2-2610931625 .stroke-AB4{stroke:#EDF0FD;} + .d2-2610931625 .stroke-AB5{stroke:#F7F8FE;} + .d2-2610931625 .background-color-N1{background-color:#0A0F25;} + .d2-2610931625 .background-color-N2{background-color:#676C7E;} + .d2-2610931625 .background-color-N3{background-color:#9499AB;} + .d2-2610931625 .background-color-N4{background-color:#CFD2DD;} + .d2-2610931625 .background-color-N5{background-color:#DEE1EB;} + .d2-2610931625 .background-color-N6{background-color:#EEF1F8;} + .d2-2610931625 .background-color-N7{background-color:#FFFFFF;} + .d2-2610931625 .background-color-B1{background-color:#0D32B2;} + .d2-2610931625 .background-color-B2{background-color:#0D32B2;} + .d2-2610931625 .background-color-B3{background-color:#E3E9FD;} + .d2-2610931625 .background-color-B4{background-color:#E3E9FD;} + .d2-2610931625 .background-color-B5{background-color:#EDF0FD;} + .d2-2610931625 .background-color-B6{background-color:#F7F8FE;} + .d2-2610931625 .background-color-AA2{background-color:#4A6FF3;} + .d2-2610931625 .background-color-AA4{background-color:#EDF0FD;} + .d2-2610931625 .background-color-AA5{background-color:#F7F8FE;} + .d2-2610931625 .background-color-AB4{background-color:#EDF0FD;} + .d2-2610931625 .background-color-AB5{background-color:#F7F8FE;} + .d2-2610931625 .color-N1{color:#0A0F25;} + .d2-2610931625 .color-N2{color:#676C7E;} + .d2-2610931625 .color-N3{color:#9499AB;} + .d2-2610931625 .color-N4{color:#CFD2DD;} + .d2-2610931625 .color-N5{color:#DEE1EB;} + .d2-2610931625 .color-N6{color:#EEF1F8;} + .d2-2610931625 .color-N7{color:#FFFFFF;} + .d2-2610931625 .color-B1{color:#0D32B2;} + .d2-2610931625 .color-B2{color:#0D32B2;} + .d2-2610931625 .color-B3{color:#E3E9FD;} + .d2-2610931625 .color-B4{color:#E3E9FD;} + .d2-2610931625 .color-B5{color:#EDF0FD;} + .d2-2610931625 .color-B6{color:#F7F8FE;} + .d2-2610931625 .color-AA2{color:#4A6FF3;} + .d2-2610931625 .color-AA4{color:#EDF0FD;} + .d2-2610931625 .color-AA5{color:#F7F8FE;} + .d2-2610931625 .color-AB4{color:#EDF0FD;} + .d2-2610931625 .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}]]>n1n2n3 n4n5 @@ -114,7 +114,7 @@ a -b +b diff --git a/e2etests/testdata/stable/multiple_offset/elk/board.exp.json b/e2etests/testdata/stable/multiple_offset/elk/board.exp.json index be7577a123..9ae79e219e 100644 --- a/e2etests/testdata/stable/multiple_offset/elk/board.exp.json +++ b/e2etests/testdata/stable/multiple_offset/elk/board.exp.json @@ -1258,6 +1258,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 93.5, @@ -1296,6 +1297,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 279, @@ -1334,6 +1336,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 459.5, @@ -1372,6 +1375,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 642.5, @@ -1410,6 +1414,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 825.5, @@ -1448,6 +1453,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 996, @@ -1486,6 +1492,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 1176.5, @@ -1524,6 +1531,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 1359.5, @@ -1562,6 +1570,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 1547.5, @@ -1600,6 +1609,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 1730.5, diff --git a/e2etests/testdata/stable/multiple_offset/elk/sketch.exp.svg b/e2etests/testdata/stable/multiple_offset/elk/sketch.exp.svg index 3c7b1145c4..a5a21a9f7b 100644 --- a/e2etests/testdata/stable/multiple_offset/elk/sketch.exp.svg +++ b/e2etests/testdata/stable/multiple_offset/elk/sketch.exp.svg @@ -1,16 +1,16 @@ -n1n2n3 + .d2-2037312574 .fill-N1{fill:#0A0F25;} + .d2-2037312574 .fill-N2{fill:#676C7E;} + .d2-2037312574 .fill-N3{fill:#9499AB;} + .d2-2037312574 .fill-N4{fill:#CFD2DD;} + .d2-2037312574 .fill-N5{fill:#DEE1EB;} + .d2-2037312574 .fill-N6{fill:#EEF1F8;} + .d2-2037312574 .fill-N7{fill:#FFFFFF;} + .d2-2037312574 .fill-B1{fill:#0D32B2;} + .d2-2037312574 .fill-B2{fill:#0D32B2;} + .d2-2037312574 .fill-B3{fill:#E3E9FD;} + .d2-2037312574 .fill-B4{fill:#E3E9FD;} + .d2-2037312574 .fill-B5{fill:#EDF0FD;} + .d2-2037312574 .fill-B6{fill:#F7F8FE;} + .d2-2037312574 .fill-AA2{fill:#4A6FF3;} + .d2-2037312574 .fill-AA4{fill:#EDF0FD;} + .d2-2037312574 .fill-AA5{fill:#F7F8FE;} + .d2-2037312574 .fill-AB4{fill:#EDF0FD;} + .d2-2037312574 .fill-AB5{fill:#F7F8FE;} + .d2-2037312574 .stroke-N1{stroke:#0A0F25;} + .d2-2037312574 .stroke-N2{stroke:#676C7E;} + .d2-2037312574 .stroke-N3{stroke:#9499AB;} + .d2-2037312574 .stroke-N4{stroke:#CFD2DD;} + .d2-2037312574 .stroke-N5{stroke:#DEE1EB;} + .d2-2037312574 .stroke-N6{stroke:#EEF1F8;} + .d2-2037312574 .stroke-N7{stroke:#FFFFFF;} + .d2-2037312574 .stroke-B1{stroke:#0D32B2;} + .d2-2037312574 .stroke-B2{stroke:#0D32B2;} + .d2-2037312574 .stroke-B3{stroke:#E3E9FD;} + .d2-2037312574 .stroke-B4{stroke:#E3E9FD;} + .d2-2037312574 .stroke-B5{stroke:#EDF0FD;} + .d2-2037312574 .stroke-B6{stroke:#F7F8FE;} + .d2-2037312574 .stroke-AA2{stroke:#4A6FF3;} + .d2-2037312574 .stroke-AA4{stroke:#EDF0FD;} + .d2-2037312574 .stroke-AA5{stroke:#F7F8FE;} + .d2-2037312574 .stroke-AB4{stroke:#EDF0FD;} + .d2-2037312574 .stroke-AB5{stroke:#F7F8FE;} + .d2-2037312574 .background-color-N1{background-color:#0A0F25;} + .d2-2037312574 .background-color-N2{background-color:#676C7E;} + .d2-2037312574 .background-color-N3{background-color:#9499AB;} + .d2-2037312574 .background-color-N4{background-color:#CFD2DD;} + .d2-2037312574 .background-color-N5{background-color:#DEE1EB;} + .d2-2037312574 .background-color-N6{background-color:#EEF1F8;} + .d2-2037312574 .background-color-N7{background-color:#FFFFFF;} + .d2-2037312574 .background-color-B1{background-color:#0D32B2;} + .d2-2037312574 .background-color-B2{background-color:#0D32B2;} + .d2-2037312574 .background-color-B3{background-color:#E3E9FD;} + .d2-2037312574 .background-color-B4{background-color:#E3E9FD;} + .d2-2037312574 .background-color-B5{background-color:#EDF0FD;} + .d2-2037312574 .background-color-B6{background-color:#F7F8FE;} + .d2-2037312574 .background-color-AA2{background-color:#4A6FF3;} + .d2-2037312574 .background-color-AA4{background-color:#EDF0FD;} + .d2-2037312574 .background-color-AA5{background-color:#F7F8FE;} + .d2-2037312574 .background-color-AB4{background-color:#EDF0FD;} + .d2-2037312574 .background-color-AB5{background-color:#F7F8FE;} + .d2-2037312574 .color-N1{color:#0A0F25;} + .d2-2037312574 .color-N2{color:#676C7E;} + .d2-2037312574 .color-N3{color:#9499AB;} + .d2-2037312574 .color-N4{color:#CFD2DD;} + .d2-2037312574 .color-N5{color:#DEE1EB;} + .d2-2037312574 .color-N6{color:#EEF1F8;} + .d2-2037312574 .color-N7{color:#FFFFFF;} + .d2-2037312574 .color-B1{color:#0D32B2;} + .d2-2037312574 .color-B2{color:#0D32B2;} + .d2-2037312574 .color-B3{color:#E3E9FD;} + .d2-2037312574 .color-B4{color:#E3E9FD;} + .d2-2037312574 .color-B5{color:#EDF0FD;} + .d2-2037312574 .color-B6{color:#F7F8FE;} + .d2-2037312574 .color-AA2{color:#4A6FF3;} + .d2-2037312574 .color-AA4{color:#EDF0FD;} + .d2-2037312574 .color-AA5{color:#F7F8FE;} + .d2-2037312574 .color-AB4{color:#EDF0FD;} + .d2-2037312574 .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}]]>n1n2n3 n4n5 @@ -114,7 +114,7 @@ a -b +b diff --git a/e2etests/testdata/stable/multiple_offset_left/dagre/board.exp.json b/e2etests/testdata/stable/multiple_offset_left/dagre/board.exp.json index 3d6c59d59b..1285ccb2dc 100644 --- a/e2etests/testdata/stable/multiple_offset_left/dagre/board.exp.json +++ b/e2etests/testdata/stable/multiple_offset_left/dagre/board.exp.json @@ -1258,6 +1258,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 203, @@ -1305,6 +1306,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 203, @@ -1352,6 +1354,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 203, @@ -1399,6 +1402,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 203, @@ -1446,6 +1450,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 203, @@ -1493,6 +1498,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 203, @@ -1540,6 +1546,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 203, @@ -1587,6 +1594,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 203, @@ -1634,6 +1642,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 203, @@ -1681,6 +1690,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 203, diff --git a/e2etests/testdata/stable/multiple_offset_left/dagre/sketch.exp.svg b/e2etests/testdata/stable/multiple_offset_left/dagre/sketch.exp.svg index f05c51a25f..da8d4b69f4 100644 --- a/e2etests/testdata/stable/multiple_offset_left/dagre/sketch.exp.svg +++ b/e2etests/testdata/stable/multiple_offset_left/dagre/sketch.exp.svg @@ -1,16 +1,16 @@ -n1n2n3 + .d2-2219946450 .fill-N1{fill:#0A0F25;} + .d2-2219946450 .fill-N2{fill:#676C7E;} + .d2-2219946450 .fill-N3{fill:#9499AB;} + .d2-2219946450 .fill-N4{fill:#CFD2DD;} + .d2-2219946450 .fill-N5{fill:#DEE1EB;} + .d2-2219946450 .fill-N6{fill:#EEF1F8;} + .d2-2219946450 .fill-N7{fill:#FFFFFF;} + .d2-2219946450 .fill-B1{fill:#0D32B2;} + .d2-2219946450 .fill-B2{fill:#0D32B2;} + .d2-2219946450 .fill-B3{fill:#E3E9FD;} + .d2-2219946450 .fill-B4{fill:#E3E9FD;} + .d2-2219946450 .fill-B5{fill:#EDF0FD;} + .d2-2219946450 .fill-B6{fill:#F7F8FE;} + .d2-2219946450 .fill-AA2{fill:#4A6FF3;} + .d2-2219946450 .fill-AA4{fill:#EDF0FD;} + .d2-2219946450 .fill-AA5{fill:#F7F8FE;} + .d2-2219946450 .fill-AB4{fill:#EDF0FD;} + .d2-2219946450 .fill-AB5{fill:#F7F8FE;} + .d2-2219946450 .stroke-N1{stroke:#0A0F25;} + .d2-2219946450 .stroke-N2{stroke:#676C7E;} + .d2-2219946450 .stroke-N3{stroke:#9499AB;} + .d2-2219946450 .stroke-N4{stroke:#CFD2DD;} + .d2-2219946450 .stroke-N5{stroke:#DEE1EB;} + .d2-2219946450 .stroke-N6{stroke:#EEF1F8;} + .d2-2219946450 .stroke-N7{stroke:#FFFFFF;} + .d2-2219946450 .stroke-B1{stroke:#0D32B2;} + .d2-2219946450 .stroke-B2{stroke:#0D32B2;} + .d2-2219946450 .stroke-B3{stroke:#E3E9FD;} + .d2-2219946450 .stroke-B4{stroke:#E3E9FD;} + .d2-2219946450 .stroke-B5{stroke:#EDF0FD;} + .d2-2219946450 .stroke-B6{stroke:#F7F8FE;} + .d2-2219946450 .stroke-AA2{stroke:#4A6FF3;} + .d2-2219946450 .stroke-AA4{stroke:#EDF0FD;} + .d2-2219946450 .stroke-AA5{stroke:#F7F8FE;} + .d2-2219946450 .stroke-AB4{stroke:#EDF0FD;} + .d2-2219946450 .stroke-AB5{stroke:#F7F8FE;} + .d2-2219946450 .background-color-N1{background-color:#0A0F25;} + .d2-2219946450 .background-color-N2{background-color:#676C7E;} + .d2-2219946450 .background-color-N3{background-color:#9499AB;} + .d2-2219946450 .background-color-N4{background-color:#CFD2DD;} + .d2-2219946450 .background-color-N5{background-color:#DEE1EB;} + .d2-2219946450 .background-color-N6{background-color:#EEF1F8;} + .d2-2219946450 .background-color-N7{background-color:#FFFFFF;} + .d2-2219946450 .background-color-B1{background-color:#0D32B2;} + .d2-2219946450 .background-color-B2{background-color:#0D32B2;} + .d2-2219946450 .background-color-B3{background-color:#E3E9FD;} + .d2-2219946450 .background-color-B4{background-color:#E3E9FD;} + .d2-2219946450 .background-color-B5{background-color:#EDF0FD;} + .d2-2219946450 .background-color-B6{background-color:#F7F8FE;} + .d2-2219946450 .background-color-AA2{background-color:#4A6FF3;} + .d2-2219946450 .background-color-AA4{background-color:#EDF0FD;} + .d2-2219946450 .background-color-AA5{background-color:#F7F8FE;} + .d2-2219946450 .background-color-AB4{background-color:#EDF0FD;} + .d2-2219946450 .background-color-AB5{background-color:#F7F8FE;} + .d2-2219946450 .color-N1{color:#0A0F25;} + .d2-2219946450 .color-N2{color:#676C7E;} + .d2-2219946450 .color-N3{color:#9499AB;} + .d2-2219946450 .color-N4{color:#CFD2DD;} + .d2-2219946450 .color-N5{color:#DEE1EB;} + .d2-2219946450 .color-N6{color:#EEF1F8;} + .d2-2219946450 .color-N7{color:#FFFFFF;} + .d2-2219946450 .color-B1{color:#0D32B2;} + .d2-2219946450 .color-B2{color:#0D32B2;} + .d2-2219946450 .color-B3{color:#E3E9FD;} + .d2-2219946450 .color-B4{color:#E3E9FD;} + .d2-2219946450 .color-B5{color:#EDF0FD;} + .d2-2219946450 .color-B6{color:#F7F8FE;} + .d2-2219946450 .color-AA2{color:#4A6FF3;} + .d2-2219946450 .color-AA4{color:#EDF0FD;} + .d2-2219946450 .color-AA5{color:#F7F8FE;} + .d2-2219946450 .color-AB4{color:#EDF0FD;} + .d2-2219946450 .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}]]>n1n2n3 n4n5 @@ -114,7 +114,7 @@ a -b +b diff --git a/e2etests/testdata/stable/multiple_offset_left/elk/board.exp.json b/e2etests/testdata/stable/multiple_offset_left/elk/board.exp.json index 54075d48af..6aae78d2e8 100644 --- a/e2etests/testdata/stable/multiple_offset_left/elk/board.exp.json +++ b/e2etests/testdata/stable/multiple_offset_left/elk/board.exp.json @@ -1258,6 +1258,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 205, @@ -1296,6 +1297,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 207.5, @@ -1334,6 +1336,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 200, @@ -1372,6 +1375,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 200, @@ -1410,6 +1414,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 195, @@ -1448,6 +1453,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 192.5, @@ -1486,6 +1492,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 190, @@ -1524,6 +1531,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 185, @@ -1562,6 +1570,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 195, @@ -1600,6 +1609,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 192.5, diff --git a/e2etests/testdata/stable/multiple_offset_left/elk/sketch.exp.svg b/e2etests/testdata/stable/multiple_offset_left/elk/sketch.exp.svg index eadd52c709..133e45ca4c 100644 --- a/e2etests/testdata/stable/multiple_offset_left/elk/sketch.exp.svg +++ b/e2etests/testdata/stable/multiple_offset_left/elk/sketch.exp.svg @@ -1,16 +1,16 @@ -n1n2n3 + .d2-942166334 .fill-N1{fill:#0A0F25;} + .d2-942166334 .fill-N2{fill:#676C7E;} + .d2-942166334 .fill-N3{fill:#9499AB;} + .d2-942166334 .fill-N4{fill:#CFD2DD;} + .d2-942166334 .fill-N5{fill:#DEE1EB;} + .d2-942166334 .fill-N6{fill:#EEF1F8;} + .d2-942166334 .fill-N7{fill:#FFFFFF;} + .d2-942166334 .fill-B1{fill:#0D32B2;} + .d2-942166334 .fill-B2{fill:#0D32B2;} + .d2-942166334 .fill-B3{fill:#E3E9FD;} + .d2-942166334 .fill-B4{fill:#E3E9FD;} + .d2-942166334 .fill-B5{fill:#EDF0FD;} + .d2-942166334 .fill-B6{fill:#F7F8FE;} + .d2-942166334 .fill-AA2{fill:#4A6FF3;} + .d2-942166334 .fill-AA4{fill:#EDF0FD;} + .d2-942166334 .fill-AA5{fill:#F7F8FE;} + .d2-942166334 .fill-AB4{fill:#EDF0FD;} + .d2-942166334 .fill-AB5{fill:#F7F8FE;} + .d2-942166334 .stroke-N1{stroke:#0A0F25;} + .d2-942166334 .stroke-N2{stroke:#676C7E;} + .d2-942166334 .stroke-N3{stroke:#9499AB;} + .d2-942166334 .stroke-N4{stroke:#CFD2DD;} + .d2-942166334 .stroke-N5{stroke:#DEE1EB;} + .d2-942166334 .stroke-N6{stroke:#EEF1F8;} + .d2-942166334 .stroke-N7{stroke:#FFFFFF;} + .d2-942166334 .stroke-B1{stroke:#0D32B2;} + .d2-942166334 .stroke-B2{stroke:#0D32B2;} + .d2-942166334 .stroke-B3{stroke:#E3E9FD;} + .d2-942166334 .stroke-B4{stroke:#E3E9FD;} + .d2-942166334 .stroke-B5{stroke:#EDF0FD;} + .d2-942166334 .stroke-B6{stroke:#F7F8FE;} + .d2-942166334 .stroke-AA2{stroke:#4A6FF3;} + .d2-942166334 .stroke-AA4{stroke:#EDF0FD;} + .d2-942166334 .stroke-AA5{stroke:#F7F8FE;} + .d2-942166334 .stroke-AB4{stroke:#EDF0FD;} + .d2-942166334 .stroke-AB5{stroke:#F7F8FE;} + .d2-942166334 .background-color-N1{background-color:#0A0F25;} + .d2-942166334 .background-color-N2{background-color:#676C7E;} + .d2-942166334 .background-color-N3{background-color:#9499AB;} + .d2-942166334 .background-color-N4{background-color:#CFD2DD;} + .d2-942166334 .background-color-N5{background-color:#DEE1EB;} + .d2-942166334 .background-color-N6{background-color:#EEF1F8;} + .d2-942166334 .background-color-N7{background-color:#FFFFFF;} + .d2-942166334 .background-color-B1{background-color:#0D32B2;} + .d2-942166334 .background-color-B2{background-color:#0D32B2;} + .d2-942166334 .background-color-B3{background-color:#E3E9FD;} + .d2-942166334 .background-color-B4{background-color:#E3E9FD;} + .d2-942166334 .background-color-B5{background-color:#EDF0FD;} + .d2-942166334 .background-color-B6{background-color:#F7F8FE;} + .d2-942166334 .background-color-AA2{background-color:#4A6FF3;} + .d2-942166334 .background-color-AA4{background-color:#EDF0FD;} + .d2-942166334 .background-color-AA5{background-color:#F7F8FE;} + .d2-942166334 .background-color-AB4{background-color:#EDF0FD;} + .d2-942166334 .background-color-AB5{background-color:#F7F8FE;} + .d2-942166334 .color-N1{color:#0A0F25;} + .d2-942166334 .color-N2{color:#676C7E;} + .d2-942166334 .color-N3{color:#9499AB;} + .d2-942166334 .color-N4{color:#CFD2DD;} + .d2-942166334 .color-N5{color:#DEE1EB;} + .d2-942166334 .color-N6{color:#EEF1F8;} + .d2-942166334 .color-N7{color:#FFFFFF;} + .d2-942166334 .color-B1{color:#0D32B2;} + .d2-942166334 .color-B2{color:#0D32B2;} + .d2-942166334 .color-B3{color:#E3E9FD;} + .d2-942166334 .color-B4{color:#E3E9FD;} + .d2-942166334 .color-B5{color:#EDF0FD;} + .d2-942166334 .color-B6{color:#F7F8FE;} + .d2-942166334 .color-AA2{color:#4A6FF3;} + .d2-942166334 .color-AA4{color:#EDF0FD;} + .d2-942166334 .color-AA5{color:#F7F8FE;} + .d2-942166334 .color-AB4{color:#EDF0FD;} + .d2-942166334 .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}]]>n1n2n3 n4n5 @@ -114,7 +114,7 @@ a -b +b diff --git a/e2etests/testdata/stable/multiple_trees/dagre/board.exp.json b/e2etests/testdata/stable/multiple_trees/dagre/board.exp.json index 2140eaba00..e1bd8f0798 100644 --- a/e2etests/testdata/stable/multiple_trees/dagre/board.exp.json +++ b/e2etests/testdata/stable/multiple_trees/dagre/board.exp.json @@ -971,6 +971,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 514.75, @@ -1018,6 +1019,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 514.75, @@ -1065,6 +1067,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 515.5, @@ -1112,6 +1115,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 568, @@ -1159,6 +1163,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 567.5, @@ -1206,6 +1211,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 541.5, @@ -1253,6 +1259,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 567.5, @@ -1300,6 +1307,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 24.75, @@ -1347,6 +1355,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 134.25, @@ -1394,6 +1403,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 486, @@ -1441,6 +1451,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 597, @@ -1488,6 +1499,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 178.25, @@ -1535,6 +1547,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 223.25, @@ -1582,6 +1595,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 405.75, @@ -1629,6 +1643,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 451.25, @@ -1676,6 +1691,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 632.75, @@ -1723,6 +1739,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 677.25, @@ -1770,6 +1787,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 485.25, @@ -1817,6 +1835,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 856.25, @@ -1864,6 +1883,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 900.75, @@ -1911,6 +1931,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 964.5, @@ -1958,6 +1979,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 1080.5, diff --git a/e2etests/testdata/stable/multiple_trees/dagre/sketch.exp.svg b/e2etests/testdata/stable/multiple_trees/dagre/sketch.exp.svg index b4d0c375cd..97d98303f1 100644 --- a/e2etests/testdata/stable/multiple_trees/dagre/sketch.exp.svg +++ b/e2etests/testdata/stable/multiple_trees/dagre/sketch.exp.svg @@ -1,9 +1,9 @@ -abcdefghijklmnopqrstuvw + .d2-1191862573 .fill-N1{fill:#0A0F25;} + .d2-1191862573 .fill-N2{fill:#676C7E;} + .d2-1191862573 .fill-N3{fill:#9499AB;} + .d2-1191862573 .fill-N4{fill:#CFD2DD;} + .d2-1191862573 .fill-N5{fill:#DEE1EB;} + .d2-1191862573 .fill-N6{fill:#EEF1F8;} + .d2-1191862573 .fill-N7{fill:#FFFFFF;} + .d2-1191862573 .fill-B1{fill:#0D32B2;} + .d2-1191862573 .fill-B2{fill:#0D32B2;} + .d2-1191862573 .fill-B3{fill:#E3E9FD;} + .d2-1191862573 .fill-B4{fill:#E3E9FD;} + .d2-1191862573 .fill-B5{fill:#EDF0FD;} + .d2-1191862573 .fill-B6{fill:#F7F8FE;} + .d2-1191862573 .fill-AA2{fill:#4A6FF3;} + .d2-1191862573 .fill-AA4{fill:#EDF0FD;} + .d2-1191862573 .fill-AA5{fill:#F7F8FE;} + .d2-1191862573 .fill-AB4{fill:#EDF0FD;} + .d2-1191862573 .fill-AB5{fill:#F7F8FE;} + .d2-1191862573 .stroke-N1{stroke:#0A0F25;} + .d2-1191862573 .stroke-N2{stroke:#676C7E;} + .d2-1191862573 .stroke-N3{stroke:#9499AB;} + .d2-1191862573 .stroke-N4{stroke:#CFD2DD;} + .d2-1191862573 .stroke-N5{stroke:#DEE1EB;} + .d2-1191862573 .stroke-N6{stroke:#EEF1F8;} + .d2-1191862573 .stroke-N7{stroke:#FFFFFF;} + .d2-1191862573 .stroke-B1{stroke:#0D32B2;} + .d2-1191862573 .stroke-B2{stroke:#0D32B2;} + .d2-1191862573 .stroke-B3{stroke:#E3E9FD;} + .d2-1191862573 .stroke-B4{stroke:#E3E9FD;} + .d2-1191862573 .stroke-B5{stroke:#EDF0FD;} + .d2-1191862573 .stroke-B6{stroke:#F7F8FE;} + .d2-1191862573 .stroke-AA2{stroke:#4A6FF3;} + .d2-1191862573 .stroke-AA4{stroke:#EDF0FD;} + .d2-1191862573 .stroke-AA5{stroke:#F7F8FE;} + .d2-1191862573 .stroke-AB4{stroke:#EDF0FD;} + .d2-1191862573 .stroke-AB5{stroke:#F7F8FE;} + .d2-1191862573 .background-color-N1{background-color:#0A0F25;} + .d2-1191862573 .background-color-N2{background-color:#676C7E;} + .d2-1191862573 .background-color-N3{background-color:#9499AB;} + .d2-1191862573 .background-color-N4{background-color:#CFD2DD;} + .d2-1191862573 .background-color-N5{background-color:#DEE1EB;} + .d2-1191862573 .background-color-N6{background-color:#EEF1F8;} + .d2-1191862573 .background-color-N7{background-color:#FFFFFF;} + .d2-1191862573 .background-color-B1{background-color:#0D32B2;} + .d2-1191862573 .background-color-B2{background-color:#0D32B2;} + .d2-1191862573 .background-color-B3{background-color:#E3E9FD;} + .d2-1191862573 .background-color-B4{background-color:#E3E9FD;} + .d2-1191862573 .background-color-B5{background-color:#EDF0FD;} + .d2-1191862573 .background-color-B6{background-color:#F7F8FE;} + .d2-1191862573 .background-color-AA2{background-color:#4A6FF3;} + .d2-1191862573 .background-color-AA4{background-color:#EDF0FD;} + .d2-1191862573 .background-color-AA5{background-color:#F7F8FE;} + .d2-1191862573 .background-color-AB4{background-color:#EDF0FD;} + .d2-1191862573 .background-color-AB5{background-color:#F7F8FE;} + .d2-1191862573 .color-N1{color:#0A0F25;} + .d2-1191862573 .color-N2{color:#676C7E;} + .d2-1191862573 .color-N3{color:#9499AB;} + .d2-1191862573 .color-N4{color:#CFD2DD;} + .d2-1191862573 .color-N5{color:#DEE1EB;} + .d2-1191862573 .color-N6{color:#EEF1F8;} + .d2-1191862573 .color-N7{color:#FFFFFF;} + .d2-1191862573 .color-B1{color:#0D32B2;} + .d2-1191862573 .color-B2{color:#0D32B2;} + .d2-1191862573 .color-B3{color:#E3E9FD;} + .d2-1191862573 .color-B4{color:#E3E9FD;} + .d2-1191862573 .color-B5{color:#EDF0FD;} + .d2-1191862573 .color-B6{color:#F7F8FE;} + .d2-1191862573 .color-AA2{color:#4A6FF3;} + .d2-1191862573 .color-AA4{color:#EDF0FD;} + .d2-1191862573 .color-AA5{color:#F7F8FE;} + .d2-1191862573 .color-AB4{color:#EDF0FD;} + .d2-1191862573 .color-AB5{color:#F7F8FE;}.appendix text.text{fill:#0A0F25}.md{--color-fg-default:#0A0F25;--color-fg-muted:#676C7E;--color-fg-subtle:#9499AB;--color-canvas-default:#FFFFFF;--color-canvas-subtle:#EEF1F8;--color-border-default:#0D32B2;--color-border-muted:#0D32B2;--color-neutral-muted:#EEF1F8;--color-accent-fg:#0D32B2;--color-accent-emphasis:#0D32B2;--color-attention-subtle:#676C7E;--color-danger-fg:red;}.sketch-overlay-B1{fill:url(#streaks-darker);mix-blend-mode:lighten}.sketch-overlay-B2{fill:url(#streaks-darker);mix-blend-mode:lighten}.sketch-overlay-B3{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-B4{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-B5{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-B6{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-AA2{fill:url(#streaks-dark);mix-blend-mode:overlay}.sketch-overlay-AA4{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-AA5{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-AB4{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-AB5{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-N1{fill:url(#streaks-darker);mix-blend-mode:lighten}.sketch-overlay-N2{fill:url(#streaks-dark);mix-blend-mode:overlay}.sketch-overlay-N3{fill:url(#streaks-normal);mix-blend-mode:color-burn}.sketch-overlay-N4{fill:url(#streaks-normal);mix-blend-mode:color-burn}.sketch-overlay-N5{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-N6{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-N7{fill:url(#streaks-bright);mix-blend-mode:darken}.light-code{display: block}.dark-code{display: none}]]>abcdefghijklmnopqrstuvw diff --git a/e2etests/testdata/stable/multiple_trees/elk/board.exp.json b/e2etests/testdata/stable/multiple_trees/elk/board.exp.json index 06d7589dc3..bcbd1a71e7 100644 --- a/e2etests/testdata/stable/multiple_trees/elk/board.exp.json +++ b/e2etests/testdata/stable/multiple_trees/elk/board.exp.json @@ -971,6 +971,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 344.2850036621094, @@ -1017,6 +1018,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 378.5710144042969, @@ -1063,6 +1065,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 412.85699462890625, @@ -1109,6 +1112,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 447.1419982910156, @@ -1155,6 +1159,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 481.4280090332031, @@ -1201,6 +1206,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 430, @@ -1239,6 +1245,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 515.7139892578125, @@ -1285,6 +1292,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 106.5, @@ -1331,6 +1339,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 37, @@ -1377,6 +1386,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 465.5, @@ -1423,6 +1433,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 394.5, @@ -1469,6 +1480,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 195.91600036621094, @@ -1515,6 +1527,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 222.58299255371094, @@ -1561,6 +1574,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 343.6659851074219, @@ -1607,6 +1621,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 370.3330078125, @@ -1653,6 +1668,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 490.1659851074219, @@ -1699,6 +1715,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 516.8330078125, @@ -1745,6 +1762,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 393.75, @@ -1783,6 +1801,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 633.666015625, @@ -1829,6 +1848,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 660.3330078125, @@ -1875,6 +1895,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 744.5, @@ -1921,6 +1942,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 820.5, diff --git a/e2etests/testdata/stable/multiple_trees/elk/sketch.exp.svg b/e2etests/testdata/stable/multiple_trees/elk/sketch.exp.svg index 0ebfb34835..3834fa4ad0 100644 --- a/e2etests/testdata/stable/multiple_trees/elk/sketch.exp.svg +++ b/e2etests/testdata/stable/multiple_trees/elk/sketch.exp.svg @@ -1,9 +1,9 @@ -abcdefghijklmnopqrstuvw + .d2-483835560 .fill-N1{fill:#0A0F25;} + .d2-483835560 .fill-N2{fill:#676C7E;} + .d2-483835560 .fill-N3{fill:#9499AB;} + .d2-483835560 .fill-N4{fill:#CFD2DD;} + .d2-483835560 .fill-N5{fill:#DEE1EB;} + .d2-483835560 .fill-N6{fill:#EEF1F8;} + .d2-483835560 .fill-N7{fill:#FFFFFF;} + .d2-483835560 .fill-B1{fill:#0D32B2;} + .d2-483835560 .fill-B2{fill:#0D32B2;} + .d2-483835560 .fill-B3{fill:#E3E9FD;} + .d2-483835560 .fill-B4{fill:#E3E9FD;} + .d2-483835560 .fill-B5{fill:#EDF0FD;} + .d2-483835560 .fill-B6{fill:#F7F8FE;} + .d2-483835560 .fill-AA2{fill:#4A6FF3;} + .d2-483835560 .fill-AA4{fill:#EDF0FD;} + .d2-483835560 .fill-AA5{fill:#F7F8FE;} + .d2-483835560 .fill-AB4{fill:#EDF0FD;} + .d2-483835560 .fill-AB5{fill:#F7F8FE;} + .d2-483835560 .stroke-N1{stroke:#0A0F25;} + .d2-483835560 .stroke-N2{stroke:#676C7E;} + .d2-483835560 .stroke-N3{stroke:#9499AB;} + .d2-483835560 .stroke-N4{stroke:#CFD2DD;} + .d2-483835560 .stroke-N5{stroke:#DEE1EB;} + .d2-483835560 .stroke-N6{stroke:#EEF1F8;} + .d2-483835560 .stroke-N7{stroke:#FFFFFF;} + .d2-483835560 .stroke-B1{stroke:#0D32B2;} + .d2-483835560 .stroke-B2{stroke:#0D32B2;} + .d2-483835560 .stroke-B3{stroke:#E3E9FD;} + .d2-483835560 .stroke-B4{stroke:#E3E9FD;} + .d2-483835560 .stroke-B5{stroke:#EDF0FD;} + .d2-483835560 .stroke-B6{stroke:#F7F8FE;} + .d2-483835560 .stroke-AA2{stroke:#4A6FF3;} + .d2-483835560 .stroke-AA4{stroke:#EDF0FD;} + .d2-483835560 .stroke-AA5{stroke:#F7F8FE;} + .d2-483835560 .stroke-AB4{stroke:#EDF0FD;} + .d2-483835560 .stroke-AB5{stroke:#F7F8FE;} + .d2-483835560 .background-color-N1{background-color:#0A0F25;} + .d2-483835560 .background-color-N2{background-color:#676C7E;} + .d2-483835560 .background-color-N3{background-color:#9499AB;} + .d2-483835560 .background-color-N4{background-color:#CFD2DD;} + .d2-483835560 .background-color-N5{background-color:#DEE1EB;} + .d2-483835560 .background-color-N6{background-color:#EEF1F8;} + .d2-483835560 .background-color-N7{background-color:#FFFFFF;} + .d2-483835560 .background-color-B1{background-color:#0D32B2;} + .d2-483835560 .background-color-B2{background-color:#0D32B2;} + .d2-483835560 .background-color-B3{background-color:#E3E9FD;} + .d2-483835560 .background-color-B4{background-color:#E3E9FD;} + .d2-483835560 .background-color-B5{background-color:#EDF0FD;} + .d2-483835560 .background-color-B6{background-color:#F7F8FE;} + .d2-483835560 .background-color-AA2{background-color:#4A6FF3;} + .d2-483835560 .background-color-AA4{background-color:#EDF0FD;} + .d2-483835560 .background-color-AA5{background-color:#F7F8FE;} + .d2-483835560 .background-color-AB4{background-color:#EDF0FD;} + .d2-483835560 .background-color-AB5{background-color:#F7F8FE;} + .d2-483835560 .color-N1{color:#0A0F25;} + .d2-483835560 .color-N2{color:#676C7E;} + .d2-483835560 .color-N3{color:#9499AB;} + .d2-483835560 .color-N4{color:#CFD2DD;} + .d2-483835560 .color-N5{color:#DEE1EB;} + .d2-483835560 .color-N6{color:#EEF1F8;} + .d2-483835560 .color-N7{color:#FFFFFF;} + .d2-483835560 .color-B1{color:#0D32B2;} + .d2-483835560 .color-B2{color:#0D32B2;} + .d2-483835560 .color-B3{color:#E3E9FD;} + .d2-483835560 .color-B4{color:#E3E9FD;} + .d2-483835560 .color-B5{color:#EDF0FD;} + .d2-483835560 .color-B6{color:#F7F8FE;} + .d2-483835560 .color-AA2{color:#4A6FF3;} + .d2-483835560 .color-AA4{color:#EDF0FD;} + .d2-483835560 .color-AA5{color:#F7F8FE;} + .d2-483835560 .color-AB4{color:#EDF0FD;} + .d2-483835560 .color-AB5{color:#F7F8FE;}.appendix text.text{fill:#0A0F25}.md{--color-fg-default:#0A0F25;--color-fg-muted:#676C7E;--color-fg-subtle:#9499AB;--color-canvas-default:#FFFFFF;--color-canvas-subtle:#EEF1F8;--color-border-default:#0D32B2;--color-border-muted:#0D32B2;--color-neutral-muted:#EEF1F8;--color-accent-fg:#0D32B2;--color-accent-emphasis:#0D32B2;--color-attention-subtle:#676C7E;--color-danger-fg:red;}.sketch-overlay-B1{fill:url(#streaks-darker);mix-blend-mode:lighten}.sketch-overlay-B2{fill:url(#streaks-darker);mix-blend-mode:lighten}.sketch-overlay-B3{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-B4{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-B5{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-B6{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-AA2{fill:url(#streaks-dark);mix-blend-mode:overlay}.sketch-overlay-AA4{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-AA5{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-AB4{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-AB5{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-N1{fill:url(#streaks-darker);mix-blend-mode:lighten}.sketch-overlay-N2{fill:url(#streaks-dark);mix-blend-mode:overlay}.sketch-overlay-N3{fill:url(#streaks-normal);mix-blend-mode:color-burn}.sketch-overlay-N4{fill:url(#streaks-normal);mix-blend-mode:color-burn}.sketch-overlay-N5{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-N6{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-N7{fill:url(#streaks-bright);mix-blend-mode:darken}.light-code{display: block}.dark-code{display: none}]]>abcdefghijklmnopqrstuvw diff --git a/e2etests/testdata/stable/n22_e32/dagre/board.exp.json b/e2etests/testdata/stable/n22_e32/dagre/board.exp.json index 82cc56b500..83a0bac940 100644 --- a/e2etests/testdata/stable/n22_e32/dagre/board.exp.json +++ b/e2etests/testdata/stable/n22_e32/dagre/board.exp.json @@ -889,6 +889,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 259.25, @@ -948,6 +949,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 279, @@ -1031,6 +1033,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 189.25, @@ -1078,6 +1081,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 162.25, @@ -1161,6 +1165,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 139.5, @@ -1208,6 +1213,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 68.75, @@ -1255,6 +1261,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 25.5, @@ -1302,6 +1309,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 252.5, @@ -1409,6 +1417,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 186, @@ -1468,6 +1477,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 131.75, @@ -1515,6 +1525,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 48.75, @@ -1562,6 +1573,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 48.75, @@ -1609,6 +1621,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 48.75, @@ -1656,6 +1669,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 48.75, @@ -1703,6 +1717,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 23.75, @@ -1786,6 +1801,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 631.5, @@ -1845,6 +1861,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 603.5, @@ -1892,6 +1909,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 590.25, @@ -1939,6 +1957,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 574, @@ -2022,6 +2041,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 556.5, @@ -2069,6 +2089,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 500, @@ -2116,6 +2137,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 456.75, @@ -2163,6 +2185,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 552, @@ -2222,6 +2245,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 551.5, @@ -2329,6 +2353,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 507.25, @@ -2376,6 +2401,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 403.25, @@ -2423,6 +2449,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 425, @@ -2470,6 +2497,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 380, @@ -2517,6 +2545,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 372.5, @@ -2564,6 +2593,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 407, @@ -2647,6 +2677,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 296.5, @@ -2694,6 +2725,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 377, @@ -2777,6 +2809,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 319.5, diff --git a/e2etests/testdata/stable/n22_e32/dagre/sketch.exp.svg b/e2etests/testdata/stable/n22_e32/dagre/sketch.exp.svg index 2b172feb5d..7ac69e243b 100644 --- a/e2etests/testdata/stable/n22_e32/dagre/sketch.exp.svg +++ b/e2etests/testdata/stable/n22_e32/dagre/sketch.exp.svg @@ -1,9 +1,9 @@ -abcdefghijklmnopqrstu + .d2-1683454100 .fill-N1{fill:#0A0F25;} + .d2-1683454100 .fill-N2{fill:#676C7E;} + .d2-1683454100 .fill-N3{fill:#9499AB;} + .d2-1683454100 .fill-N4{fill:#CFD2DD;} + .d2-1683454100 .fill-N5{fill:#DEE1EB;} + .d2-1683454100 .fill-N6{fill:#EEF1F8;} + .d2-1683454100 .fill-N7{fill:#FFFFFF;} + .d2-1683454100 .fill-B1{fill:#0D32B2;} + .d2-1683454100 .fill-B2{fill:#0D32B2;} + .d2-1683454100 .fill-B3{fill:#E3E9FD;} + .d2-1683454100 .fill-B4{fill:#E3E9FD;} + .d2-1683454100 .fill-B5{fill:#EDF0FD;} + .d2-1683454100 .fill-B6{fill:#F7F8FE;} + .d2-1683454100 .fill-AA2{fill:#4A6FF3;} + .d2-1683454100 .fill-AA4{fill:#EDF0FD;} + .d2-1683454100 .fill-AA5{fill:#F7F8FE;} + .d2-1683454100 .fill-AB4{fill:#EDF0FD;} + .d2-1683454100 .fill-AB5{fill:#F7F8FE;} + .d2-1683454100 .stroke-N1{stroke:#0A0F25;} + .d2-1683454100 .stroke-N2{stroke:#676C7E;} + .d2-1683454100 .stroke-N3{stroke:#9499AB;} + .d2-1683454100 .stroke-N4{stroke:#CFD2DD;} + .d2-1683454100 .stroke-N5{stroke:#DEE1EB;} + .d2-1683454100 .stroke-N6{stroke:#EEF1F8;} + .d2-1683454100 .stroke-N7{stroke:#FFFFFF;} + .d2-1683454100 .stroke-B1{stroke:#0D32B2;} + .d2-1683454100 .stroke-B2{stroke:#0D32B2;} + .d2-1683454100 .stroke-B3{stroke:#E3E9FD;} + .d2-1683454100 .stroke-B4{stroke:#E3E9FD;} + .d2-1683454100 .stroke-B5{stroke:#EDF0FD;} + .d2-1683454100 .stroke-B6{stroke:#F7F8FE;} + .d2-1683454100 .stroke-AA2{stroke:#4A6FF3;} + .d2-1683454100 .stroke-AA4{stroke:#EDF0FD;} + .d2-1683454100 .stroke-AA5{stroke:#F7F8FE;} + .d2-1683454100 .stroke-AB4{stroke:#EDF0FD;} + .d2-1683454100 .stroke-AB5{stroke:#F7F8FE;} + .d2-1683454100 .background-color-N1{background-color:#0A0F25;} + .d2-1683454100 .background-color-N2{background-color:#676C7E;} + .d2-1683454100 .background-color-N3{background-color:#9499AB;} + .d2-1683454100 .background-color-N4{background-color:#CFD2DD;} + .d2-1683454100 .background-color-N5{background-color:#DEE1EB;} + .d2-1683454100 .background-color-N6{background-color:#EEF1F8;} + .d2-1683454100 .background-color-N7{background-color:#FFFFFF;} + .d2-1683454100 .background-color-B1{background-color:#0D32B2;} + .d2-1683454100 .background-color-B2{background-color:#0D32B2;} + .d2-1683454100 .background-color-B3{background-color:#E3E9FD;} + .d2-1683454100 .background-color-B4{background-color:#E3E9FD;} + .d2-1683454100 .background-color-B5{background-color:#EDF0FD;} + .d2-1683454100 .background-color-B6{background-color:#F7F8FE;} + .d2-1683454100 .background-color-AA2{background-color:#4A6FF3;} + .d2-1683454100 .background-color-AA4{background-color:#EDF0FD;} + .d2-1683454100 .background-color-AA5{background-color:#F7F8FE;} + .d2-1683454100 .background-color-AB4{background-color:#EDF0FD;} + .d2-1683454100 .background-color-AB5{background-color:#F7F8FE;} + .d2-1683454100 .color-N1{color:#0A0F25;} + .d2-1683454100 .color-N2{color:#676C7E;} + .d2-1683454100 .color-N3{color:#9499AB;} + .d2-1683454100 .color-N4{color:#CFD2DD;} + .d2-1683454100 .color-N5{color:#DEE1EB;} + .d2-1683454100 .color-N6{color:#EEF1F8;} + .d2-1683454100 .color-N7{color:#FFFFFF;} + .d2-1683454100 .color-B1{color:#0D32B2;} + .d2-1683454100 .color-B2{color:#0D32B2;} + .d2-1683454100 .color-B3{color:#E3E9FD;} + .d2-1683454100 .color-B4{color:#E3E9FD;} + .d2-1683454100 .color-B5{color:#EDF0FD;} + .d2-1683454100 .color-B6{color:#F7F8FE;} + .d2-1683454100 .color-AA2{color:#4A6FF3;} + .d2-1683454100 .color-AA4{color:#EDF0FD;} + .d2-1683454100 .color-AA5{color:#F7F8FE;} + .d2-1683454100 .color-AB4{color:#EDF0FD;} + .d2-1683454100 .color-AB5{color:#F7F8FE;}.appendix text.text{fill:#0A0F25}.md{--color-fg-default:#0A0F25;--color-fg-muted:#676C7E;--color-fg-subtle:#9499AB;--color-canvas-default:#FFFFFF;--color-canvas-subtle:#EEF1F8;--color-border-default:#0D32B2;--color-border-muted:#0D32B2;--color-neutral-muted:#EEF1F8;--color-accent-fg:#0D32B2;--color-accent-emphasis:#0D32B2;--color-attention-subtle:#676C7E;--color-danger-fg:red;}.sketch-overlay-B1{fill:url(#streaks-darker);mix-blend-mode:lighten}.sketch-overlay-B2{fill:url(#streaks-darker);mix-blend-mode:lighten}.sketch-overlay-B3{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-B4{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-B5{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-B6{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-AA2{fill:url(#streaks-dark);mix-blend-mode:overlay}.sketch-overlay-AA4{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-AA5{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-AB4{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-AB5{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-N1{fill:url(#streaks-darker);mix-blend-mode:lighten}.sketch-overlay-N2{fill:url(#streaks-dark);mix-blend-mode:overlay}.sketch-overlay-N3{fill:url(#streaks-normal);mix-blend-mode:color-burn}.sketch-overlay-N4{fill:url(#streaks-normal);mix-blend-mode:color-burn}.sketch-overlay-N5{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-N6{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-N7{fill:url(#streaks-bright);mix-blend-mode:darken}.light-code{display: block}.dark-code{display: none}]]>abcdefghijklmnopqrstu diff --git a/e2etests/testdata/stable/n22_e32/elk/board.exp.json b/e2etests/testdata/stable/n22_e32/elk/board.exp.json index fdd25bc6b3..3e6d135896 100644 --- a/e2etests/testdata/stable/n22_e32/elk/board.exp.json +++ b/e2etests/testdata/stable/n22_e32/elk/board.exp.json @@ -889,6 +889,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 493.3330078125, @@ -935,6 +936,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 524.3330078125, @@ -981,6 +983,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 583.3330078125, @@ -1027,6 +1030,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 613.3330078125, @@ -1065,6 +1069,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 643.3330078125, @@ -1111,6 +1116,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 706.5, @@ -1157,6 +1163,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 786.4990234375, @@ -1203,6 +1210,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 554.3330078125, @@ -1249,6 +1257,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 685.0830078125, @@ -1295,6 +1304,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 711.75, @@ -1341,6 +1351,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 867.4990234375, @@ -1379,6 +1390,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 867.4990234375, @@ -1417,6 +1429,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 854.166015625, @@ -1463,6 +1476,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 719.8330078125, @@ -1501,6 +1515,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 880.8330078125, @@ -1547,6 +1562,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 52, @@ -1593,6 +1609,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 38.66600036621094, @@ -1631,6 +1648,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 65.33300018310547, @@ -1669,6 +1687,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 122, @@ -1715,6 +1734,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 188.66600036621094, @@ -1761,6 +1781,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 233, @@ -1799,6 +1820,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 233, @@ -1845,6 +1867,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 150.83299255371094, @@ -1891,6 +1914,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 243.99899291992188, @@ -1937,6 +1961,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 270.6659851074219, @@ -1983,6 +2008,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 380, @@ -2021,6 +2047,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 366.6659851074219, @@ -2067,6 +2094,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 368.4989929199219, @@ -2105,6 +2133,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 383.9989929199219, @@ -2151,6 +2180,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 341.8330078125, @@ -2205,6 +2235,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 494.3330078125, @@ -2251,6 +2282,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 393.3330078125, @@ -2297,6 +2329,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 410.6659851074219, diff --git a/e2etests/testdata/stable/n22_e32/elk/sketch.exp.svg b/e2etests/testdata/stable/n22_e32/elk/sketch.exp.svg index f0ad38cf81..389935043b 100644 --- a/e2etests/testdata/stable/n22_e32/elk/sketch.exp.svg +++ b/e2etests/testdata/stable/n22_e32/elk/sketch.exp.svg @@ -1,9 +1,9 @@ -abcdefghijklmnopqrstu + .d2-1525222109 .fill-N1{fill:#0A0F25;} + .d2-1525222109 .fill-N2{fill:#676C7E;} + .d2-1525222109 .fill-N3{fill:#9499AB;} + .d2-1525222109 .fill-N4{fill:#CFD2DD;} + .d2-1525222109 .fill-N5{fill:#DEE1EB;} + .d2-1525222109 .fill-N6{fill:#EEF1F8;} + .d2-1525222109 .fill-N7{fill:#FFFFFF;} + .d2-1525222109 .fill-B1{fill:#0D32B2;} + .d2-1525222109 .fill-B2{fill:#0D32B2;} + .d2-1525222109 .fill-B3{fill:#E3E9FD;} + .d2-1525222109 .fill-B4{fill:#E3E9FD;} + .d2-1525222109 .fill-B5{fill:#EDF0FD;} + .d2-1525222109 .fill-B6{fill:#F7F8FE;} + .d2-1525222109 .fill-AA2{fill:#4A6FF3;} + .d2-1525222109 .fill-AA4{fill:#EDF0FD;} + .d2-1525222109 .fill-AA5{fill:#F7F8FE;} + .d2-1525222109 .fill-AB4{fill:#EDF0FD;} + .d2-1525222109 .fill-AB5{fill:#F7F8FE;} + .d2-1525222109 .stroke-N1{stroke:#0A0F25;} + .d2-1525222109 .stroke-N2{stroke:#676C7E;} + .d2-1525222109 .stroke-N3{stroke:#9499AB;} + .d2-1525222109 .stroke-N4{stroke:#CFD2DD;} + .d2-1525222109 .stroke-N5{stroke:#DEE1EB;} + .d2-1525222109 .stroke-N6{stroke:#EEF1F8;} + .d2-1525222109 .stroke-N7{stroke:#FFFFFF;} + .d2-1525222109 .stroke-B1{stroke:#0D32B2;} + .d2-1525222109 .stroke-B2{stroke:#0D32B2;} + .d2-1525222109 .stroke-B3{stroke:#E3E9FD;} + .d2-1525222109 .stroke-B4{stroke:#E3E9FD;} + .d2-1525222109 .stroke-B5{stroke:#EDF0FD;} + .d2-1525222109 .stroke-B6{stroke:#F7F8FE;} + .d2-1525222109 .stroke-AA2{stroke:#4A6FF3;} + .d2-1525222109 .stroke-AA4{stroke:#EDF0FD;} + .d2-1525222109 .stroke-AA5{stroke:#F7F8FE;} + .d2-1525222109 .stroke-AB4{stroke:#EDF0FD;} + .d2-1525222109 .stroke-AB5{stroke:#F7F8FE;} + .d2-1525222109 .background-color-N1{background-color:#0A0F25;} + .d2-1525222109 .background-color-N2{background-color:#676C7E;} + .d2-1525222109 .background-color-N3{background-color:#9499AB;} + .d2-1525222109 .background-color-N4{background-color:#CFD2DD;} + .d2-1525222109 .background-color-N5{background-color:#DEE1EB;} + .d2-1525222109 .background-color-N6{background-color:#EEF1F8;} + .d2-1525222109 .background-color-N7{background-color:#FFFFFF;} + .d2-1525222109 .background-color-B1{background-color:#0D32B2;} + .d2-1525222109 .background-color-B2{background-color:#0D32B2;} + .d2-1525222109 .background-color-B3{background-color:#E3E9FD;} + .d2-1525222109 .background-color-B4{background-color:#E3E9FD;} + .d2-1525222109 .background-color-B5{background-color:#EDF0FD;} + .d2-1525222109 .background-color-B6{background-color:#F7F8FE;} + .d2-1525222109 .background-color-AA2{background-color:#4A6FF3;} + .d2-1525222109 .background-color-AA4{background-color:#EDF0FD;} + .d2-1525222109 .background-color-AA5{background-color:#F7F8FE;} + .d2-1525222109 .background-color-AB4{background-color:#EDF0FD;} + .d2-1525222109 .background-color-AB5{background-color:#F7F8FE;} + .d2-1525222109 .color-N1{color:#0A0F25;} + .d2-1525222109 .color-N2{color:#676C7E;} + .d2-1525222109 .color-N3{color:#9499AB;} + .d2-1525222109 .color-N4{color:#CFD2DD;} + .d2-1525222109 .color-N5{color:#DEE1EB;} + .d2-1525222109 .color-N6{color:#EEF1F8;} + .d2-1525222109 .color-N7{color:#FFFFFF;} + .d2-1525222109 .color-B1{color:#0D32B2;} + .d2-1525222109 .color-B2{color:#0D32B2;} + .d2-1525222109 .color-B3{color:#E3E9FD;} + .d2-1525222109 .color-B4{color:#E3E9FD;} + .d2-1525222109 .color-B5{color:#EDF0FD;} + .d2-1525222109 .color-B6{color:#F7F8FE;} + .d2-1525222109 .color-AA2{color:#4A6FF3;} + .d2-1525222109 .color-AA4{color:#EDF0FD;} + .d2-1525222109 .color-AA5{color:#F7F8FE;} + .d2-1525222109 .color-AB4{color:#EDF0FD;} + .d2-1525222109 .color-AB5{color:#F7F8FE;}.appendix text.text{fill:#0A0F25}.md{--color-fg-default:#0A0F25;--color-fg-muted:#676C7E;--color-fg-subtle:#9499AB;--color-canvas-default:#FFFFFF;--color-canvas-subtle:#EEF1F8;--color-border-default:#0D32B2;--color-border-muted:#0D32B2;--color-neutral-muted:#EEF1F8;--color-accent-fg:#0D32B2;--color-accent-emphasis:#0D32B2;--color-attention-subtle:#676C7E;--color-danger-fg:red;}.sketch-overlay-B1{fill:url(#streaks-darker);mix-blend-mode:lighten}.sketch-overlay-B2{fill:url(#streaks-darker);mix-blend-mode:lighten}.sketch-overlay-B3{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-B4{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-B5{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-B6{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-AA2{fill:url(#streaks-dark);mix-blend-mode:overlay}.sketch-overlay-AA4{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-AA5{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-AB4{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-AB5{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-N1{fill:url(#streaks-darker);mix-blend-mode:lighten}.sketch-overlay-N2{fill:url(#streaks-dark);mix-blend-mode:overlay}.sketch-overlay-N3{fill:url(#streaks-normal);mix-blend-mode:color-burn}.sketch-overlay-N4{fill:url(#streaks-normal);mix-blend-mode:color-burn}.sketch-overlay-N5{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-N6{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-N7{fill:url(#streaks-bright);mix-blend-mode:darken}.light-code{display: block}.dark-code{display: none}]]>abcdefghijklmnopqrstu diff --git a/e2etests/testdata/stable/near_keys_for_container#01/dagre/board.exp.json b/e2etests/testdata/stable/near_keys_for_container#01/dagre/board.exp.json index f0d9f8c63c..03cc64fca1 100644 --- a/e2etests/testdata/stable/near_keys_for_container#01/dagre/board.exp.json +++ b/e2etests/testdata/stable/near_keys_for_container#01/dagre/board.exp.json @@ -930,6 +930,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": -304, @@ -977,6 +978,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": -190.5, @@ -1024,6 +1026,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 190, @@ -1071,6 +1074,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 303.5, @@ -1118,6 +1122,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": -57, @@ -1165,6 +1170,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 56.5, diff --git a/e2etests/testdata/stable/near_keys_for_container#01/dagre/sketch.exp.svg b/e2etests/testdata/stable/near_keys_for_container#01/dagre/sketch.exp.svg index 0a4f0b4822..c8edb299c8 100644 --- a/e2etests/testdata/stable/near_keys_for_container#01/dagre/sketch.exp.svg +++ b/e2etests/testdata/stable/near_keys_for_container#01/dagre/sketch.exp.svg @@ -1,16 +1,16 @@ -xyzababcdabcdabcdbaccd + .d2-1048288769 .fill-N1{fill:#0A0F25;} + .d2-1048288769 .fill-N2{fill:#676C7E;} + .d2-1048288769 .fill-N3{fill:#9499AB;} + .d2-1048288769 .fill-N4{fill:#CFD2DD;} + .d2-1048288769 .fill-N5{fill:#DEE1EB;} + .d2-1048288769 .fill-N6{fill:#EEF1F8;} + .d2-1048288769 .fill-N7{fill:#FFFFFF;} + .d2-1048288769 .fill-B1{fill:#0D32B2;} + .d2-1048288769 .fill-B2{fill:#0D32B2;} + .d2-1048288769 .fill-B3{fill:#E3E9FD;} + .d2-1048288769 .fill-B4{fill:#E3E9FD;} + .d2-1048288769 .fill-B5{fill:#EDF0FD;} + .d2-1048288769 .fill-B6{fill:#F7F8FE;} + .d2-1048288769 .fill-AA2{fill:#4A6FF3;} + .d2-1048288769 .fill-AA4{fill:#EDF0FD;} + .d2-1048288769 .fill-AA5{fill:#F7F8FE;} + .d2-1048288769 .fill-AB4{fill:#EDF0FD;} + .d2-1048288769 .fill-AB5{fill:#F7F8FE;} + .d2-1048288769 .stroke-N1{stroke:#0A0F25;} + .d2-1048288769 .stroke-N2{stroke:#676C7E;} + .d2-1048288769 .stroke-N3{stroke:#9499AB;} + .d2-1048288769 .stroke-N4{stroke:#CFD2DD;} + .d2-1048288769 .stroke-N5{stroke:#DEE1EB;} + .d2-1048288769 .stroke-N6{stroke:#EEF1F8;} + .d2-1048288769 .stroke-N7{stroke:#FFFFFF;} + .d2-1048288769 .stroke-B1{stroke:#0D32B2;} + .d2-1048288769 .stroke-B2{stroke:#0D32B2;} + .d2-1048288769 .stroke-B3{stroke:#E3E9FD;} + .d2-1048288769 .stroke-B4{stroke:#E3E9FD;} + .d2-1048288769 .stroke-B5{stroke:#EDF0FD;} + .d2-1048288769 .stroke-B6{stroke:#F7F8FE;} + .d2-1048288769 .stroke-AA2{stroke:#4A6FF3;} + .d2-1048288769 .stroke-AA4{stroke:#EDF0FD;} + .d2-1048288769 .stroke-AA5{stroke:#F7F8FE;} + .d2-1048288769 .stroke-AB4{stroke:#EDF0FD;} + .d2-1048288769 .stroke-AB5{stroke:#F7F8FE;} + .d2-1048288769 .background-color-N1{background-color:#0A0F25;} + .d2-1048288769 .background-color-N2{background-color:#676C7E;} + .d2-1048288769 .background-color-N3{background-color:#9499AB;} + .d2-1048288769 .background-color-N4{background-color:#CFD2DD;} + .d2-1048288769 .background-color-N5{background-color:#DEE1EB;} + .d2-1048288769 .background-color-N6{background-color:#EEF1F8;} + .d2-1048288769 .background-color-N7{background-color:#FFFFFF;} + .d2-1048288769 .background-color-B1{background-color:#0D32B2;} + .d2-1048288769 .background-color-B2{background-color:#0D32B2;} + .d2-1048288769 .background-color-B3{background-color:#E3E9FD;} + .d2-1048288769 .background-color-B4{background-color:#E3E9FD;} + .d2-1048288769 .background-color-B5{background-color:#EDF0FD;} + .d2-1048288769 .background-color-B6{background-color:#F7F8FE;} + .d2-1048288769 .background-color-AA2{background-color:#4A6FF3;} + .d2-1048288769 .background-color-AA4{background-color:#EDF0FD;} + .d2-1048288769 .background-color-AA5{background-color:#F7F8FE;} + .d2-1048288769 .background-color-AB4{background-color:#EDF0FD;} + .d2-1048288769 .background-color-AB5{background-color:#F7F8FE;} + .d2-1048288769 .color-N1{color:#0A0F25;} + .d2-1048288769 .color-N2{color:#676C7E;} + .d2-1048288769 .color-N3{color:#9499AB;} + .d2-1048288769 .color-N4{color:#CFD2DD;} + .d2-1048288769 .color-N5{color:#DEE1EB;} + .d2-1048288769 .color-N6{color:#EEF1F8;} + .d2-1048288769 .color-N7{color:#FFFFFF;} + .d2-1048288769 .color-B1{color:#0D32B2;} + .d2-1048288769 .color-B2{color:#0D32B2;} + .d2-1048288769 .color-B3{color:#E3E9FD;} + .d2-1048288769 .color-B4{color:#E3E9FD;} + .d2-1048288769 .color-B5{color:#EDF0FD;} + .d2-1048288769 .color-B6{color:#F7F8FE;} + .d2-1048288769 .color-AA2{color:#4A6FF3;} + .d2-1048288769 .color-AA4{color:#EDF0FD;} + .d2-1048288769 .color-AA5{color:#F7F8FE;} + .d2-1048288769 .color-AB4{color:#EDF0FD;} + .d2-1048288769 .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}]]>xyzababcdabcdabcdbaccd diff --git a/e2etests/testdata/stable/near_keys_for_container#01/elk/board.exp.json b/e2etests/testdata/stable/near_keys_for_container#01/elk/board.exp.json index 461bd39c7d..757be2d4e4 100644 --- a/e2etests/testdata/stable/near_keys_for_container#01/elk/board.exp.json +++ b/e2etests/testdata/stable/near_keys_for_container#01/elk/board.exp.json @@ -930,6 +930,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": -297, @@ -968,6 +969,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": -223.5, @@ -1006,6 +1008,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 223, @@ -1044,6 +1047,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 296.5, @@ -1082,6 +1086,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": -37, @@ -1120,6 +1125,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 36.5, diff --git a/e2etests/testdata/stable/near_keys_for_container#01/elk/sketch.exp.svg b/e2etests/testdata/stable/near_keys_for_container#01/elk/sketch.exp.svg index b56424068f..31161acfd0 100644 --- a/e2etests/testdata/stable/near_keys_for_container#01/elk/sketch.exp.svg +++ b/e2etests/testdata/stable/near_keys_for_container#01/elk/sketch.exp.svg @@ -1,16 +1,16 @@ -xyzababcdabcdabcdbaccd + .d2-3487940360 .fill-N1{fill:#0A0F25;} + .d2-3487940360 .fill-N2{fill:#676C7E;} + .d2-3487940360 .fill-N3{fill:#9499AB;} + .d2-3487940360 .fill-N4{fill:#CFD2DD;} + .d2-3487940360 .fill-N5{fill:#DEE1EB;} + .d2-3487940360 .fill-N6{fill:#EEF1F8;} + .d2-3487940360 .fill-N7{fill:#FFFFFF;} + .d2-3487940360 .fill-B1{fill:#0D32B2;} + .d2-3487940360 .fill-B2{fill:#0D32B2;} + .d2-3487940360 .fill-B3{fill:#E3E9FD;} + .d2-3487940360 .fill-B4{fill:#E3E9FD;} + .d2-3487940360 .fill-B5{fill:#EDF0FD;} + .d2-3487940360 .fill-B6{fill:#F7F8FE;} + .d2-3487940360 .fill-AA2{fill:#4A6FF3;} + .d2-3487940360 .fill-AA4{fill:#EDF0FD;} + .d2-3487940360 .fill-AA5{fill:#F7F8FE;} + .d2-3487940360 .fill-AB4{fill:#EDF0FD;} + .d2-3487940360 .fill-AB5{fill:#F7F8FE;} + .d2-3487940360 .stroke-N1{stroke:#0A0F25;} + .d2-3487940360 .stroke-N2{stroke:#676C7E;} + .d2-3487940360 .stroke-N3{stroke:#9499AB;} + .d2-3487940360 .stroke-N4{stroke:#CFD2DD;} + .d2-3487940360 .stroke-N5{stroke:#DEE1EB;} + .d2-3487940360 .stroke-N6{stroke:#EEF1F8;} + .d2-3487940360 .stroke-N7{stroke:#FFFFFF;} + .d2-3487940360 .stroke-B1{stroke:#0D32B2;} + .d2-3487940360 .stroke-B2{stroke:#0D32B2;} + .d2-3487940360 .stroke-B3{stroke:#E3E9FD;} + .d2-3487940360 .stroke-B4{stroke:#E3E9FD;} + .d2-3487940360 .stroke-B5{stroke:#EDF0FD;} + .d2-3487940360 .stroke-B6{stroke:#F7F8FE;} + .d2-3487940360 .stroke-AA2{stroke:#4A6FF3;} + .d2-3487940360 .stroke-AA4{stroke:#EDF0FD;} + .d2-3487940360 .stroke-AA5{stroke:#F7F8FE;} + .d2-3487940360 .stroke-AB4{stroke:#EDF0FD;} + .d2-3487940360 .stroke-AB5{stroke:#F7F8FE;} + .d2-3487940360 .background-color-N1{background-color:#0A0F25;} + .d2-3487940360 .background-color-N2{background-color:#676C7E;} + .d2-3487940360 .background-color-N3{background-color:#9499AB;} + .d2-3487940360 .background-color-N4{background-color:#CFD2DD;} + .d2-3487940360 .background-color-N5{background-color:#DEE1EB;} + .d2-3487940360 .background-color-N6{background-color:#EEF1F8;} + .d2-3487940360 .background-color-N7{background-color:#FFFFFF;} + .d2-3487940360 .background-color-B1{background-color:#0D32B2;} + .d2-3487940360 .background-color-B2{background-color:#0D32B2;} + .d2-3487940360 .background-color-B3{background-color:#E3E9FD;} + .d2-3487940360 .background-color-B4{background-color:#E3E9FD;} + .d2-3487940360 .background-color-B5{background-color:#EDF0FD;} + .d2-3487940360 .background-color-B6{background-color:#F7F8FE;} + .d2-3487940360 .background-color-AA2{background-color:#4A6FF3;} + .d2-3487940360 .background-color-AA4{background-color:#EDF0FD;} + .d2-3487940360 .background-color-AA5{background-color:#F7F8FE;} + .d2-3487940360 .background-color-AB4{background-color:#EDF0FD;} + .d2-3487940360 .background-color-AB5{background-color:#F7F8FE;} + .d2-3487940360 .color-N1{color:#0A0F25;} + .d2-3487940360 .color-N2{color:#676C7E;} + .d2-3487940360 .color-N3{color:#9499AB;} + .d2-3487940360 .color-N4{color:#CFD2DD;} + .d2-3487940360 .color-N5{color:#DEE1EB;} + .d2-3487940360 .color-N6{color:#EEF1F8;} + .d2-3487940360 .color-N7{color:#FFFFFF;} + .d2-3487940360 .color-B1{color:#0D32B2;} + .d2-3487940360 .color-B2{color:#0D32B2;} + .d2-3487940360 .color-B3{color:#E3E9FD;} + .d2-3487940360 .color-B4{color:#E3E9FD;} + .d2-3487940360 .color-B5{color:#EDF0FD;} + .d2-3487940360 .color-B6{color:#F7F8FE;} + .d2-3487940360 .color-AA2{color:#4A6FF3;} + .d2-3487940360 .color-AA4{color:#EDF0FD;} + .d2-3487940360 .color-AA5{color:#F7F8FE;} + .d2-3487940360 .color-AB4{color:#EDF0FD;} + .d2-3487940360 .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}]]>xyzababcdabcdabcdbaccd diff --git a/e2etests/testdata/stable/nested_diagram_types/dagre/board.exp.json b/e2etests/testdata/stable/nested_diagram_types/dagre/board.exp.json index 84d833a62e..5754dfc374 100644 --- a/e2etests/testdata/stable/nested_diagram_types/dagre/board.exp.json +++ b/e2etests/testdata/stable/nested_diagram_types/dagre/board.exp.json @@ -806,6 +806,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 184.5, @@ -844,6 +845,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 278, @@ -882,6 +884,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 135, @@ -920,6 +923,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 380, @@ -958,6 +962,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 530, @@ -996,6 +1001,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 135, @@ -1034,6 +1040,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 403.5, diff --git a/e2etests/testdata/stable/nested_diagram_types/dagre/sketch.exp.svg b/e2etests/testdata/stable/nested_diagram_types/dagre/sketch.exp.svg index da58890f2f..1f77e0219a 100644 --- a/e2etests/testdata/stable/nested_diagram_types/dagre/sketch.exp.svg +++ b/e2etests/testdata/stable/nested_diagram_types/dagre/sketch.exp.svg @@ -1,16 +1,16 @@ -abc12312xyxyz yzuvw + .d2-2186548987 .fill-N1{fill:#0A0F25;} + .d2-2186548987 .fill-N2{fill:#676C7E;} + .d2-2186548987 .fill-N3{fill:#9499AB;} + .d2-2186548987 .fill-N4{fill:#CFD2DD;} + .d2-2186548987 .fill-N5{fill:#DEE1EB;} + .d2-2186548987 .fill-N6{fill:#EEF1F8;} + .d2-2186548987 .fill-N7{fill:#FFFFFF;} + .d2-2186548987 .fill-B1{fill:#0D32B2;} + .d2-2186548987 .fill-B2{fill:#0D32B2;} + .d2-2186548987 .fill-B3{fill:#E3E9FD;} + .d2-2186548987 .fill-B4{fill:#E3E9FD;} + .d2-2186548987 .fill-B5{fill:#EDF0FD;} + .d2-2186548987 .fill-B6{fill:#F7F8FE;} + .d2-2186548987 .fill-AA2{fill:#4A6FF3;} + .d2-2186548987 .fill-AA4{fill:#EDF0FD;} + .d2-2186548987 .fill-AA5{fill:#F7F8FE;} + .d2-2186548987 .fill-AB4{fill:#EDF0FD;} + .d2-2186548987 .fill-AB5{fill:#F7F8FE;} + .d2-2186548987 .stroke-N1{stroke:#0A0F25;} + .d2-2186548987 .stroke-N2{stroke:#676C7E;} + .d2-2186548987 .stroke-N3{stroke:#9499AB;} + .d2-2186548987 .stroke-N4{stroke:#CFD2DD;} + .d2-2186548987 .stroke-N5{stroke:#DEE1EB;} + .d2-2186548987 .stroke-N6{stroke:#EEF1F8;} + .d2-2186548987 .stroke-N7{stroke:#FFFFFF;} + .d2-2186548987 .stroke-B1{stroke:#0D32B2;} + .d2-2186548987 .stroke-B2{stroke:#0D32B2;} + .d2-2186548987 .stroke-B3{stroke:#E3E9FD;} + .d2-2186548987 .stroke-B4{stroke:#E3E9FD;} + .d2-2186548987 .stroke-B5{stroke:#EDF0FD;} + .d2-2186548987 .stroke-B6{stroke:#F7F8FE;} + .d2-2186548987 .stroke-AA2{stroke:#4A6FF3;} + .d2-2186548987 .stroke-AA4{stroke:#EDF0FD;} + .d2-2186548987 .stroke-AA5{stroke:#F7F8FE;} + .d2-2186548987 .stroke-AB4{stroke:#EDF0FD;} + .d2-2186548987 .stroke-AB5{stroke:#F7F8FE;} + .d2-2186548987 .background-color-N1{background-color:#0A0F25;} + .d2-2186548987 .background-color-N2{background-color:#676C7E;} + .d2-2186548987 .background-color-N3{background-color:#9499AB;} + .d2-2186548987 .background-color-N4{background-color:#CFD2DD;} + .d2-2186548987 .background-color-N5{background-color:#DEE1EB;} + .d2-2186548987 .background-color-N6{background-color:#EEF1F8;} + .d2-2186548987 .background-color-N7{background-color:#FFFFFF;} + .d2-2186548987 .background-color-B1{background-color:#0D32B2;} + .d2-2186548987 .background-color-B2{background-color:#0D32B2;} + .d2-2186548987 .background-color-B3{background-color:#E3E9FD;} + .d2-2186548987 .background-color-B4{background-color:#E3E9FD;} + .d2-2186548987 .background-color-B5{background-color:#EDF0FD;} + .d2-2186548987 .background-color-B6{background-color:#F7F8FE;} + .d2-2186548987 .background-color-AA2{background-color:#4A6FF3;} + .d2-2186548987 .background-color-AA4{background-color:#EDF0FD;} + .d2-2186548987 .background-color-AA5{background-color:#F7F8FE;} + .d2-2186548987 .background-color-AB4{background-color:#EDF0FD;} + .d2-2186548987 .background-color-AB5{background-color:#F7F8FE;} + .d2-2186548987 .color-N1{color:#0A0F25;} + .d2-2186548987 .color-N2{color:#676C7E;} + .d2-2186548987 .color-N3{color:#9499AB;} + .d2-2186548987 .color-N4{color:#CFD2DD;} + .d2-2186548987 .color-N5{color:#DEE1EB;} + .d2-2186548987 .color-N6{color:#EEF1F8;} + .d2-2186548987 .color-N7{color:#FFFFFF;} + .d2-2186548987 .color-B1{color:#0D32B2;} + .d2-2186548987 .color-B2{color:#0D32B2;} + .d2-2186548987 .color-B3{color:#E3E9FD;} + .d2-2186548987 .color-B4{color:#E3E9FD;} + .d2-2186548987 .color-B5{color:#EDF0FD;} + .d2-2186548987 .color-B6{color:#F7F8FE;} + .d2-2186548987 .color-AA2{color:#4A6FF3;} + .d2-2186548987 .color-AA4{color:#EDF0FD;} + .d2-2186548987 .color-AA5{color:#F7F8FE;} + .d2-2186548987 .color-AB4{color:#EDF0FD;} + .d2-2186548987 .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}]]>abc12312xyxyz yzuvw diff --git a/e2etests/testdata/stable/nested_diagram_types/elk/board.exp.json b/e2etests/testdata/stable/nested_diagram_types/elk/board.exp.json index 2c26323ffd..a691c48981 100644 --- a/e2etests/testdata/stable/nested_diagram_types/elk/board.exp.json +++ b/e2etests/testdata/stable/nested_diagram_types/elk/board.exp.json @@ -806,6 +806,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 196.5, @@ -844,6 +845,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 290, @@ -882,6 +884,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 147, @@ -920,6 +923,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 392, @@ -958,6 +962,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 542, @@ -996,6 +1001,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 147, @@ -1034,6 +1040,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 415.5, diff --git a/e2etests/testdata/stable/nested_diagram_types/elk/sketch.exp.svg b/e2etests/testdata/stable/nested_diagram_types/elk/sketch.exp.svg index 939212e650..68b5ad8b93 100644 --- a/e2etests/testdata/stable/nested_diagram_types/elk/sketch.exp.svg +++ b/e2etests/testdata/stable/nested_diagram_types/elk/sketch.exp.svg @@ -1,16 +1,16 @@ -abc12312xyxyz yzuvw + .d2-2310225815 .fill-N1{fill:#0A0F25;} + .d2-2310225815 .fill-N2{fill:#676C7E;} + .d2-2310225815 .fill-N3{fill:#9499AB;} + .d2-2310225815 .fill-N4{fill:#CFD2DD;} + .d2-2310225815 .fill-N5{fill:#DEE1EB;} + .d2-2310225815 .fill-N6{fill:#EEF1F8;} + .d2-2310225815 .fill-N7{fill:#FFFFFF;} + .d2-2310225815 .fill-B1{fill:#0D32B2;} + .d2-2310225815 .fill-B2{fill:#0D32B2;} + .d2-2310225815 .fill-B3{fill:#E3E9FD;} + .d2-2310225815 .fill-B4{fill:#E3E9FD;} + .d2-2310225815 .fill-B5{fill:#EDF0FD;} + .d2-2310225815 .fill-B6{fill:#F7F8FE;} + .d2-2310225815 .fill-AA2{fill:#4A6FF3;} + .d2-2310225815 .fill-AA4{fill:#EDF0FD;} + .d2-2310225815 .fill-AA5{fill:#F7F8FE;} + .d2-2310225815 .fill-AB4{fill:#EDF0FD;} + .d2-2310225815 .fill-AB5{fill:#F7F8FE;} + .d2-2310225815 .stroke-N1{stroke:#0A0F25;} + .d2-2310225815 .stroke-N2{stroke:#676C7E;} + .d2-2310225815 .stroke-N3{stroke:#9499AB;} + .d2-2310225815 .stroke-N4{stroke:#CFD2DD;} + .d2-2310225815 .stroke-N5{stroke:#DEE1EB;} + .d2-2310225815 .stroke-N6{stroke:#EEF1F8;} + .d2-2310225815 .stroke-N7{stroke:#FFFFFF;} + .d2-2310225815 .stroke-B1{stroke:#0D32B2;} + .d2-2310225815 .stroke-B2{stroke:#0D32B2;} + .d2-2310225815 .stroke-B3{stroke:#E3E9FD;} + .d2-2310225815 .stroke-B4{stroke:#E3E9FD;} + .d2-2310225815 .stroke-B5{stroke:#EDF0FD;} + .d2-2310225815 .stroke-B6{stroke:#F7F8FE;} + .d2-2310225815 .stroke-AA2{stroke:#4A6FF3;} + .d2-2310225815 .stroke-AA4{stroke:#EDF0FD;} + .d2-2310225815 .stroke-AA5{stroke:#F7F8FE;} + .d2-2310225815 .stroke-AB4{stroke:#EDF0FD;} + .d2-2310225815 .stroke-AB5{stroke:#F7F8FE;} + .d2-2310225815 .background-color-N1{background-color:#0A0F25;} + .d2-2310225815 .background-color-N2{background-color:#676C7E;} + .d2-2310225815 .background-color-N3{background-color:#9499AB;} + .d2-2310225815 .background-color-N4{background-color:#CFD2DD;} + .d2-2310225815 .background-color-N5{background-color:#DEE1EB;} + .d2-2310225815 .background-color-N6{background-color:#EEF1F8;} + .d2-2310225815 .background-color-N7{background-color:#FFFFFF;} + .d2-2310225815 .background-color-B1{background-color:#0D32B2;} + .d2-2310225815 .background-color-B2{background-color:#0D32B2;} + .d2-2310225815 .background-color-B3{background-color:#E3E9FD;} + .d2-2310225815 .background-color-B4{background-color:#E3E9FD;} + .d2-2310225815 .background-color-B5{background-color:#EDF0FD;} + .d2-2310225815 .background-color-B6{background-color:#F7F8FE;} + .d2-2310225815 .background-color-AA2{background-color:#4A6FF3;} + .d2-2310225815 .background-color-AA4{background-color:#EDF0FD;} + .d2-2310225815 .background-color-AA5{background-color:#F7F8FE;} + .d2-2310225815 .background-color-AB4{background-color:#EDF0FD;} + .d2-2310225815 .background-color-AB5{background-color:#F7F8FE;} + .d2-2310225815 .color-N1{color:#0A0F25;} + .d2-2310225815 .color-N2{color:#676C7E;} + .d2-2310225815 .color-N3{color:#9499AB;} + .d2-2310225815 .color-N4{color:#CFD2DD;} + .d2-2310225815 .color-N5{color:#DEE1EB;} + .d2-2310225815 .color-N6{color:#EEF1F8;} + .d2-2310225815 .color-N7{color:#FFFFFF;} + .d2-2310225815 .color-B1{color:#0D32B2;} + .d2-2310225815 .color-B2{color:#0D32B2;} + .d2-2310225815 .color-B3{color:#E3E9FD;} + .d2-2310225815 .color-B4{color:#E3E9FD;} + .d2-2310225815 .color-B5{color:#EDF0FD;} + .d2-2310225815 .color-B6{color:#F7F8FE;} + .d2-2310225815 .color-AA2{color:#4A6FF3;} + .d2-2310225815 .color-AA4{color:#EDF0FD;} + .d2-2310225815 .color-AA5{color:#F7F8FE;} + .d2-2310225815 .color-AB4{color:#EDF0FD;} + .d2-2310225815 .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}]]>abc12312xyxyz yzuvw diff --git a/e2etests/testdata/stable/nesting_power/dagre/board.exp.json b/e2etests/testdata/stable/nesting_power/dagre/board.exp.json index 4ac89c2336..ad0811d7a1 100644 --- a/e2etests/testdata/stable/nesting_power/dagre/board.exp.json +++ b/e2etests/testdata/stable/nesting_power/dagre/board.exp.json @@ -6178,6 +6178,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": -1937.5, @@ -6225,6 +6226,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": -1670, @@ -6272,6 +6274,7 @@ "labelHeight": 21, "labelPosition": "INSIDE_MIDDLE_CENTER", "labelPercentage": 0, + "link": "", "route": [ { "x": -2380, @@ -6319,6 +6322,7 @@ "labelHeight": 21, "labelPosition": "INSIDE_MIDDLE_CENTER", "labelPercentage": 0, + "link": "", "route": [ { "x": -2197.5, @@ -6366,6 +6370,7 @@ "labelHeight": 21, "labelPosition": "INSIDE_MIDDLE_CENTER", "labelPercentage": 0, + "link": "", "route": [ { "x": -1967, @@ -6413,6 +6418,7 @@ "labelHeight": 21, "labelPosition": "INSIDE_MIDDLE_CENTER", "labelPercentage": 0, + "link": "", "route": [ { "x": -2380, @@ -6508,6 +6514,7 @@ "labelHeight": 21, "labelPosition": "INSIDE_MIDDLE_CENTER", "labelPercentage": 0, + "link": "", "route": [ { "x": -2197.5, @@ -6579,6 +6586,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": -1306, @@ -6617,6 +6625,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": -1408, @@ -6655,6 +6664,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": -1408, @@ -6693,6 +6703,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": -1408, @@ -6731,6 +6742,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": -1408, @@ -6769,6 +6781,7 @@ "labelHeight": 31, "labelPosition": "INSIDE_MIDDLE_CENTER", "labelPercentage": 0, + "link": "", "route": [ { "x": -1024, @@ -6807,6 +6820,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": -922, @@ -6845,6 +6859,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": -772, @@ -6883,6 +6898,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": -592, @@ -6921,6 +6937,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": -437.5, @@ -6959,6 +6976,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": -437.5, @@ -6997,6 +7015,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": -332.5, @@ -7038,6 +7057,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": -220, @@ -7079,6 +7099,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": -1366, @@ -7120,6 +7141,7 @@ "labelHeight": 21, "labelPosition": "INSIDE_MIDDLE_CENTER", "labelPercentage": 0, + "link": "", "route": [ { "x": -1450, @@ -7161,6 +7183,7 @@ "labelHeight": 21, "labelPosition": "INSIDE_MIDDLE_CENTER", "labelPercentage": 0, + "link": "", "route": [ { "x": -1449.5, @@ -7199,6 +7222,7 @@ "labelHeight": 21, "labelPosition": "INSIDE_MIDDLE_CENTER", "labelPercentage": 0, + "link": "", "route": [ { "x": 288.75, @@ -7246,6 +7270,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 249.5, @@ -7293,6 +7318,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 249.5, @@ -7340,6 +7366,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 473, @@ -7387,6 +7414,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 473, @@ -7434,6 +7462,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 1160, @@ -7481,6 +7510,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 1160, @@ -7528,6 +7558,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 2181, @@ -7575,6 +7606,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 2181, @@ -7622,6 +7654,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 2387, @@ -7669,6 +7702,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 2387, @@ -7716,6 +7750,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 2579, @@ -7763,6 +7798,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 144, @@ -7810,6 +7846,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 297, @@ -7857,6 +7894,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 297, @@ -7904,6 +7942,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 399, @@ -7951,6 +7990,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 246, @@ -7998,6 +8038,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 246, @@ -8045,6 +8086,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 175.25, @@ -8092,6 +8134,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 152.5, @@ -8139,6 +8182,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 198, @@ -8186,6 +8230,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 402.25, @@ -8233,6 +8278,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 379.5, @@ -8280,6 +8326,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 425, @@ -8330,6 +8377,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 3770.5, @@ -8371,6 +8419,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 3918, @@ -8412,6 +8461,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 4059.5, @@ -8453,6 +8503,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 4183, @@ -8491,6 +8542,7 @@ "labelHeight": 21, "labelPosition": "INSIDE_MIDDLE_CENTER", "labelPercentage": 0, + "link": "", "route": [ { "x": 1094.25, @@ -8538,6 +8590,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 698, @@ -8576,6 +8629,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 864, @@ -8614,6 +8668,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 1018, @@ -8652,6 +8707,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 1175, @@ -8690,6 +8746,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 1014, @@ -8728,6 +8785,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 1332, @@ -8766,6 +8824,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 704, @@ -8804,6 +8863,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 1450.5, @@ -8842,6 +8902,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 698, @@ -8880,6 +8941,7 @@ "labelHeight": 21, "labelPosition": "INSIDE_MIDDLE_CENTER", "labelPercentage": 0, + "link": "", "route": [ { "x": 2623.25, @@ -8928,6 +8990,7 @@ "labelHeight": 21, "labelPosition": "INSIDE_MIDDLE_CENTER", "labelPercentage": 0, + "link": "", "route": [ { "x": 1826, @@ -8969,6 +9032,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 1958.5, @@ -9007,6 +9071,7 @@ "labelHeight": 21, "labelPosition": "INSIDE_MIDDLE_CENTER", "labelPercentage": 0, + "link": "", "route": [ { "x": 1771, @@ -9045,6 +9110,7 @@ "labelHeight": 21, "labelPosition": "INSIDE_MIDDLE_CENTER", "labelPercentage": 0, + "link": "", "route": [ { "x": 1771, @@ -9083,6 +9149,7 @@ "labelHeight": 21, "labelPosition": "INSIDE_MIDDLE_CENTER", "labelPercentage": 0, + "link": "", "route": [ { "x": 1771, @@ -9121,6 +9188,7 @@ "labelHeight": 21, "labelPosition": "INSIDE_MIDDLE_CENTER", "labelPercentage": 0, + "link": "", "route": [ { "x": 1771, @@ -9159,6 +9227,7 @@ "labelHeight": 21, "labelPosition": "INSIDE_MIDDLE_CENTER", "labelPercentage": 0, + "link": "", "route": [ { "x": 1771, @@ -9197,6 +9266,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 1925, @@ -9235,6 +9305,7 @@ "labelHeight": 21, "labelPosition": "INSIDE_MIDDLE_CENTER", "labelPercentage": 0, + "link": "", "route": [ { "x": 2238, @@ -9273,6 +9344,7 @@ "labelHeight": 21, "labelPosition": "INSIDE_MIDDLE_CENTER", "labelPercentage": 0, + "link": "", "route": [ { "x": 1765, @@ -9311,6 +9383,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 2511, @@ -9358,6 +9431,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 2101.5, @@ -9405,6 +9479,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 2638, @@ -9452,6 +9527,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 3047, @@ -9499,6 +9575,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 3426, @@ -9537,6 +9614,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 3085, @@ -9575,6 +9653,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 2931, @@ -9613,6 +9692,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 3089, @@ -9651,6 +9731,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 2810, @@ -9689,6 +9770,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 2648, @@ -9727,6 +9809,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 3231.5, @@ -9765,6 +9848,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 2642, @@ -9806,6 +9890,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 1703, @@ -9847,6 +9932,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 299, @@ -9888,6 +9974,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 1201, @@ -9929,6 +10016,7 @@ "labelHeight": 21, "labelPosition": "INSIDE_MIDDLE_CENTER", "labelPercentage": 0, + "link": "", "route": [ { "x": 451, @@ -9970,6 +10058,7 @@ "labelHeight": 21, "labelPosition": "INSIDE_MIDDLE_CENTER", "labelPercentage": 0, + "link": "", "route": [ { "x": 451, @@ -10011,6 +10100,7 @@ "labelHeight": 21, "labelPosition": "INSIDE_MIDDLE_CENTER", "labelPercentage": 0, + "link": "", "route": [ { "x": 429, @@ -10052,6 +10142,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 2584, @@ -10093,6 +10184,7 @@ "labelHeight": 21, "labelPosition": "INSIDE_MIDDLE_CENTER", "labelPercentage": 0, + "link": "", "route": [ { "x": 2640, @@ -10134,6 +10226,7 @@ "labelHeight": 21, "labelPosition": "INSIDE_MIDDLE_CENTER", "labelPercentage": 0, + "link": "", "route": [ { "x": -1366, @@ -10175,6 +10268,7 @@ "labelHeight": 21, "labelPosition": "INSIDE_MIDDLE_CENTER", "labelPercentage": 0, + "link": "", "route": [ { "x": -253, @@ -10213,6 +10307,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": -922, @@ -10251,6 +10346,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": -772, @@ -10289,6 +10385,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": -598, @@ -10327,6 +10424,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": -297, @@ -10365,6 +10463,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": -332.5, @@ -10403,6 +10502,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": -182, @@ -10441,6 +10541,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 698, @@ -10479,6 +10580,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 858, @@ -10517,6 +10619,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 1008, @@ -10555,6 +10658,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 1161, @@ -10593,6 +10697,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 1314, @@ -10631,6 +10736,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 1472.5, @@ -10669,6 +10775,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 1765, @@ -10707,6 +10814,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 1925, @@ -10745,6 +10853,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 2075, @@ -10783,6 +10892,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 2228, @@ -10821,6 +10931,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 2438, @@ -10859,6 +10970,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 2642, @@ -10897,6 +11009,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 2792, @@ -10935,6 +11048,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 2945, @@ -10973,6 +11087,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 3095, @@ -11011,6 +11126,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 3253.5, @@ -11049,6 +11165,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 3432, diff --git a/e2etests/testdata/stable/nesting_power/dagre/sketch.exp.svg b/e2etests/testdata/stable/nesting_power/dagre/sketch.exp.svg index e9225fefd2..26456cd22e 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-2451180916 .fill-N1{fill:#0A0F25;} + .d2-2451180916 .fill-N2{fill:#676C7E;} + .d2-2451180916 .fill-N3{fill:#9499AB;} + .d2-2451180916 .fill-N4{fill:#CFD2DD;} + .d2-2451180916 .fill-N5{fill:#DEE1EB;} + .d2-2451180916 .fill-N6{fill:#EEF1F8;} + .d2-2451180916 .fill-N7{fill:#FFFFFF;} + .d2-2451180916 .fill-B1{fill:#0D32B2;} + .d2-2451180916 .fill-B2{fill:#0D32B2;} + .d2-2451180916 .fill-B3{fill:#E3E9FD;} + .d2-2451180916 .fill-B4{fill:#E3E9FD;} + .d2-2451180916 .fill-B5{fill:#EDF0FD;} + .d2-2451180916 .fill-B6{fill:#F7F8FE;} + .d2-2451180916 .fill-AA2{fill:#4A6FF3;} + .d2-2451180916 .fill-AA4{fill:#EDF0FD;} + .d2-2451180916 .fill-AA5{fill:#F7F8FE;} + .d2-2451180916 .fill-AB4{fill:#EDF0FD;} + .d2-2451180916 .fill-AB5{fill:#F7F8FE;} + .d2-2451180916 .stroke-N1{stroke:#0A0F25;} + .d2-2451180916 .stroke-N2{stroke:#676C7E;} + .d2-2451180916 .stroke-N3{stroke:#9499AB;} + .d2-2451180916 .stroke-N4{stroke:#CFD2DD;} + .d2-2451180916 .stroke-N5{stroke:#DEE1EB;} + .d2-2451180916 .stroke-N6{stroke:#EEF1F8;} + .d2-2451180916 .stroke-N7{stroke:#FFFFFF;} + .d2-2451180916 .stroke-B1{stroke:#0D32B2;} + .d2-2451180916 .stroke-B2{stroke:#0D32B2;} + .d2-2451180916 .stroke-B3{stroke:#E3E9FD;} + .d2-2451180916 .stroke-B4{stroke:#E3E9FD;} + .d2-2451180916 .stroke-B5{stroke:#EDF0FD;} + .d2-2451180916 .stroke-B6{stroke:#F7F8FE;} + .d2-2451180916 .stroke-AA2{stroke:#4A6FF3;} + .d2-2451180916 .stroke-AA4{stroke:#EDF0FD;} + .d2-2451180916 .stroke-AA5{stroke:#F7F8FE;} + .d2-2451180916 .stroke-AB4{stroke:#EDF0FD;} + .d2-2451180916 .stroke-AB5{stroke:#F7F8FE;} + .d2-2451180916 .background-color-N1{background-color:#0A0F25;} + .d2-2451180916 .background-color-N2{background-color:#676C7E;} + .d2-2451180916 .background-color-N3{background-color:#9499AB;} + .d2-2451180916 .background-color-N4{background-color:#CFD2DD;} + .d2-2451180916 .background-color-N5{background-color:#DEE1EB;} + .d2-2451180916 .background-color-N6{background-color:#EEF1F8;} + .d2-2451180916 .background-color-N7{background-color:#FFFFFF;} + .d2-2451180916 .background-color-B1{background-color:#0D32B2;} + .d2-2451180916 .background-color-B2{background-color:#0D32B2;} + .d2-2451180916 .background-color-B3{background-color:#E3E9FD;} + .d2-2451180916 .background-color-B4{background-color:#E3E9FD;} + .d2-2451180916 .background-color-B5{background-color:#EDF0FD;} + .d2-2451180916 .background-color-B6{background-color:#F7F8FE;} + .d2-2451180916 .background-color-AA2{background-color:#4A6FF3;} + .d2-2451180916 .background-color-AA4{background-color:#EDF0FD;} + .d2-2451180916 .background-color-AA5{background-color:#F7F8FE;} + .d2-2451180916 .background-color-AB4{background-color:#EDF0FD;} + .d2-2451180916 .background-color-AB5{background-color:#F7F8FE;} + .d2-2451180916 .color-N1{color:#0A0F25;} + .d2-2451180916 .color-N2{color:#676C7E;} + .d2-2451180916 .color-N3{color:#9499AB;} + .d2-2451180916 .color-N4{color:#CFD2DD;} + .d2-2451180916 .color-N5{color:#DEE1EB;} + .d2-2451180916 .color-N6{color:#EEF1F8;} + .d2-2451180916 .color-N7{color:#FFFFFF;} + .d2-2451180916 .color-B1{color:#0D32B2;} + .d2-2451180916 .color-B2{color:#0D32B2;} + .d2-2451180916 .color-B3{color:#E3E9FD;} + .d2-2451180916 .color-B4{color:#E3E9FD;} + .d2-2451180916 .color-B5{color:#EDF0FD;} + .d2-2451180916 .color-B6{color:#F7F8FE;} + .d2-2451180916 .color-AA2{color:#4A6FF3;} + .d2-2451180916 .color-AA4{color:#EDF0FD;} + .d2-2451180916 .color-AA5{color:#F7F8FE;} + .d2-2451180916 .color-AB4{color:#EDF0FD;} + .d2-2451180916 .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}]]> @@ -113,7 +113,7 @@ 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 diff --git a/e2etests/testdata/stable/nesting_power/elk/board.exp.json b/e2etests/testdata/stable/nesting_power/elk/board.exp.json index 2f3eb3fded..81c4d9638a 100644 --- a/e2etests/testdata/stable/nesting_power/elk/board.exp.json +++ b/e2etests/testdata/stable/nesting_power/elk/board.exp.json @@ -6178,6 +6178,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": -2092, @@ -6216,6 +6217,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": -1730, @@ -6254,6 +6256,7 @@ "labelHeight": 21, "labelPosition": "INSIDE_MIDDLE_CENTER", "labelPercentage": 0, + "link": "", "route": [ { "x": -2614, @@ -6292,6 +6295,7 @@ "labelHeight": 21, "labelPosition": "INSIDE_MIDDLE_CENTER", "labelPercentage": 0, + "link": "", "route": [ { "x": -2381, @@ -6338,6 +6342,7 @@ "labelHeight": 21, "labelPosition": "INSIDE_MIDDLE_CENTER", "labelPercentage": 0, + "link": "", "route": [ { "x": -2142, @@ -6384,6 +6389,7 @@ "labelHeight": 21, "labelPosition": "INSIDE_MIDDLE_CENTER", "labelPercentage": 0, + "link": "", "route": [ { "x": -2614, @@ -6430,6 +6436,7 @@ "labelHeight": 21, "labelPosition": "INSIDE_MIDDLE_CENTER", "labelPercentage": 0, + "link": "", "route": [ { "x": -2381, @@ -6476,6 +6483,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": -1396, @@ -6514,6 +6522,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": -1498, @@ -6552,6 +6561,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": -1498, @@ -6590,6 +6600,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": -1498, @@ -6628,6 +6639,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": -1498, @@ -6666,6 +6678,7 @@ "labelHeight": 31, "labelPosition": "INSIDE_MIDDLE_CENTER", "labelPercentage": 0, + "link": "", "route": [ { "x": -1034, @@ -6704,6 +6717,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": -932, @@ -6742,6 +6756,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": -782, @@ -6780,6 +6795,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": -602, @@ -6818,6 +6834,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": -447.5, @@ -6856,6 +6873,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": -447.5, @@ -6894,6 +6912,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": -342.5, @@ -6935,6 +6954,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": -230, @@ -6976,6 +6996,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": -1456, @@ -7017,6 +7038,7 @@ "labelHeight": 21, "labelPosition": "INSIDE_MIDDLE_CENTER", "labelPercentage": 0, + "link": "", "route": [ { "x": -1540, @@ -7058,6 +7080,7 @@ "labelHeight": 21, "labelPosition": "INSIDE_MIDDLE_CENTER", "labelPercentage": 0, + "link": "", "route": [ { "x": -1539.5, @@ -7096,6 +7119,7 @@ "labelHeight": 21, "labelPosition": "INSIDE_MIDDLE_CENTER", "labelPercentage": 0, + "link": "", "route": [ { "x": 790.5, @@ -7142,6 +7166,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 627, @@ -7180,6 +7205,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 627, @@ -7218,6 +7244,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 810, @@ -7256,6 +7283,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 811, @@ -7294,6 +7322,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 1009, @@ -7332,6 +7361,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 1009, @@ -7370,6 +7400,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 1166, @@ -7408,6 +7439,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 1166, @@ -7446,6 +7478,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 1321, @@ -7484,6 +7517,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 1322, @@ -7522,6 +7556,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 1494, @@ -7560,6 +7595,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 174, @@ -7598,6 +7634,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 297, @@ -7644,6 +7681,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 297, @@ -7690,6 +7728,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 379, @@ -7728,6 +7767,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 256, @@ -7774,6 +7814,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 256, @@ -7820,6 +7861,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 185.25, @@ -7858,6 +7900,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 171.91600036621094, @@ -7904,6 +7947,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 198.58299255371094, @@ -7950,6 +7994,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 412.25, @@ -7988,6 +8033,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 398.9159851074219, @@ -8034,6 +8080,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 425.5830078125, @@ -8083,6 +8130,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 3750.5, @@ -8124,6 +8172,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 3918, @@ -8165,6 +8214,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 4079.5, @@ -8206,6 +8256,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 4223, @@ -8244,6 +8295,7 @@ "labelHeight": 21, "labelPosition": "INSIDE_MIDDLE_CENTER", "labelPercentage": 0, + "link": "", "route": [ { "x": 1064.5, @@ -8282,6 +8334,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 668, @@ -8320,6 +8373,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 834, @@ -8358,6 +8412,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 988, @@ -8396,6 +8451,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 1145, @@ -8434,6 +8490,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 984, @@ -8472,6 +8529,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 1302, @@ -8510,6 +8568,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 674, @@ -8548,6 +8607,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 1420.5, @@ -8586,6 +8646,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 668, @@ -8624,6 +8685,7 @@ "labelHeight": 21, "labelPosition": "INSIDE_MIDDLE_CENTER", "labelPercentage": 0, + "link": "", "route": [ { "x": 1338.5, @@ -8671,6 +8733,7 @@ "labelHeight": 21, "labelPosition": "INSIDE_MIDDLE_CENTER", "labelPercentage": 0, + "link": "", "route": [ { "x": 1756, @@ -8712,6 +8775,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 1889.5, @@ -8750,6 +8814,7 @@ "labelHeight": 21, "labelPosition": "INSIDE_MIDDLE_CENTER", "labelPercentage": 0, + "link": "", "route": [ { "x": 1721, @@ -8788,6 +8853,7 @@ "labelHeight": 21, "labelPosition": "INSIDE_MIDDLE_CENTER", "labelPercentage": 0, + "link": "", "route": [ { "x": 1721, @@ -8826,6 +8892,7 @@ "labelHeight": 21, "labelPosition": "INSIDE_MIDDLE_CENTER", "labelPercentage": 0, + "link": "", "route": [ { "x": 1721, @@ -8864,6 +8931,7 @@ "labelHeight": 21, "labelPosition": "INSIDE_MIDDLE_CENTER", "labelPercentage": 0, + "link": "", "route": [ { "x": 1721, @@ -8902,6 +8970,7 @@ "labelHeight": 21, "labelPosition": "INSIDE_MIDDLE_CENTER", "labelPercentage": 0, + "link": "", "route": [ { "x": 1721, @@ -8940,6 +9009,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 1875, @@ -8978,6 +9048,7 @@ "labelHeight": 21, "labelPosition": "INSIDE_MIDDLE_CENTER", "labelPercentage": 0, + "link": "", "route": [ { "x": 2188, @@ -9016,6 +9087,7 @@ "labelHeight": 21, "labelPosition": "INSIDE_MIDDLE_CENTER", "labelPercentage": 0, + "link": "", "route": [ { "x": 1715, @@ -9054,6 +9126,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 2497, @@ -9100,6 +9173,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 2051.5, @@ -9146,6 +9220,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 2541, @@ -9184,6 +9259,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 2538, @@ -9222,6 +9298,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 3366, @@ -9260,6 +9337,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 3025, @@ -9298,6 +9376,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 2871, @@ -9336,6 +9415,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 3029, @@ -9374,6 +9454,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 2750, @@ -9412,6 +9493,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 2588, @@ -9450,6 +9532,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 3171.5, @@ -9488,6 +9571,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 2582, @@ -9529,6 +9613,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 1653, @@ -9570,6 +9655,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 309, @@ -9611,6 +9697,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 1045, @@ -9652,6 +9739,7 @@ "labelHeight": 21, "labelPosition": "INSIDE_MIDDLE_CENTER", "labelPercentage": 0, + "link": "", "route": [ { "x": 431, @@ -9693,6 +9781,7 @@ "labelHeight": 21, "labelPosition": "INSIDE_MIDDLE_CENTER", "labelPercentage": 0, + "link": "", "route": [ { "x": 431, @@ -9734,6 +9823,7 @@ "labelHeight": 21, "labelPosition": "INSIDE_MIDDLE_CENTER", "labelPercentage": 0, + "link": "", "route": [ { "x": 452, @@ -9775,6 +9865,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 1538, @@ -9816,6 +9907,7 @@ "labelHeight": 21, "labelPosition": "INSIDE_MIDDLE_CENTER", "labelPercentage": 0, + "link": "", "route": [ { "x": 2585, @@ -9857,6 +9949,7 @@ "labelHeight": 21, "labelPosition": "INSIDE_MIDDLE_CENTER", "labelPercentage": 0, + "link": "", "route": [ { "x": -1455.75, @@ -9898,6 +9991,7 @@ "labelHeight": 21, "labelPosition": "INSIDE_MIDDLE_CENTER", "labelPercentage": 0, + "link": "", "route": [ { "x": -318, @@ -9936,6 +10030,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": -932, @@ -9974,6 +10069,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": -782, @@ -10012,6 +10108,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": -608, @@ -10050,6 +10147,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": -307, @@ -10088,6 +10186,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": -342.5, @@ -10126,6 +10225,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": -192, @@ -10164,6 +10264,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 668, @@ -10202,6 +10303,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 828, @@ -10240,6 +10342,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 978, @@ -10278,6 +10381,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 1131, @@ -10316,6 +10420,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 1284, @@ -10354,6 +10459,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 1442.5, @@ -10392,6 +10498,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 1715, @@ -10430,6 +10537,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 1875, @@ -10468,6 +10576,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 2025, @@ -10506,6 +10615,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 2178, @@ -10544,6 +10654,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 2388, @@ -10582,6 +10693,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 2582, @@ -10620,6 +10732,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 2732, @@ -10658,6 +10771,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 2885, @@ -10696,6 +10810,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 3035, @@ -10734,6 +10849,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 3193.5, @@ -10772,6 +10888,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 3372, diff --git a/e2etests/testdata/stable/nesting_power/elk/sketch.exp.svg b/e2etests/testdata/stable/nesting_power/elk/sketch.exp.svg index 9f6fc7750a..30e9a7925d 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-2835789743 .fill-N1{fill:#0A0F25;} + .d2-2835789743 .fill-N2{fill:#676C7E;} + .d2-2835789743 .fill-N3{fill:#9499AB;} + .d2-2835789743 .fill-N4{fill:#CFD2DD;} + .d2-2835789743 .fill-N5{fill:#DEE1EB;} + .d2-2835789743 .fill-N6{fill:#EEF1F8;} + .d2-2835789743 .fill-N7{fill:#FFFFFF;} + .d2-2835789743 .fill-B1{fill:#0D32B2;} + .d2-2835789743 .fill-B2{fill:#0D32B2;} + .d2-2835789743 .fill-B3{fill:#E3E9FD;} + .d2-2835789743 .fill-B4{fill:#E3E9FD;} + .d2-2835789743 .fill-B5{fill:#EDF0FD;} + .d2-2835789743 .fill-B6{fill:#F7F8FE;} + .d2-2835789743 .fill-AA2{fill:#4A6FF3;} + .d2-2835789743 .fill-AA4{fill:#EDF0FD;} + .d2-2835789743 .fill-AA5{fill:#F7F8FE;} + .d2-2835789743 .fill-AB4{fill:#EDF0FD;} + .d2-2835789743 .fill-AB5{fill:#F7F8FE;} + .d2-2835789743 .stroke-N1{stroke:#0A0F25;} + .d2-2835789743 .stroke-N2{stroke:#676C7E;} + .d2-2835789743 .stroke-N3{stroke:#9499AB;} + .d2-2835789743 .stroke-N4{stroke:#CFD2DD;} + .d2-2835789743 .stroke-N5{stroke:#DEE1EB;} + .d2-2835789743 .stroke-N6{stroke:#EEF1F8;} + .d2-2835789743 .stroke-N7{stroke:#FFFFFF;} + .d2-2835789743 .stroke-B1{stroke:#0D32B2;} + .d2-2835789743 .stroke-B2{stroke:#0D32B2;} + .d2-2835789743 .stroke-B3{stroke:#E3E9FD;} + .d2-2835789743 .stroke-B4{stroke:#E3E9FD;} + .d2-2835789743 .stroke-B5{stroke:#EDF0FD;} + .d2-2835789743 .stroke-B6{stroke:#F7F8FE;} + .d2-2835789743 .stroke-AA2{stroke:#4A6FF3;} + .d2-2835789743 .stroke-AA4{stroke:#EDF0FD;} + .d2-2835789743 .stroke-AA5{stroke:#F7F8FE;} + .d2-2835789743 .stroke-AB4{stroke:#EDF0FD;} + .d2-2835789743 .stroke-AB5{stroke:#F7F8FE;} + .d2-2835789743 .background-color-N1{background-color:#0A0F25;} + .d2-2835789743 .background-color-N2{background-color:#676C7E;} + .d2-2835789743 .background-color-N3{background-color:#9499AB;} + .d2-2835789743 .background-color-N4{background-color:#CFD2DD;} + .d2-2835789743 .background-color-N5{background-color:#DEE1EB;} + .d2-2835789743 .background-color-N6{background-color:#EEF1F8;} + .d2-2835789743 .background-color-N7{background-color:#FFFFFF;} + .d2-2835789743 .background-color-B1{background-color:#0D32B2;} + .d2-2835789743 .background-color-B2{background-color:#0D32B2;} + .d2-2835789743 .background-color-B3{background-color:#E3E9FD;} + .d2-2835789743 .background-color-B4{background-color:#E3E9FD;} + .d2-2835789743 .background-color-B5{background-color:#EDF0FD;} + .d2-2835789743 .background-color-B6{background-color:#F7F8FE;} + .d2-2835789743 .background-color-AA2{background-color:#4A6FF3;} + .d2-2835789743 .background-color-AA4{background-color:#EDF0FD;} + .d2-2835789743 .background-color-AA5{background-color:#F7F8FE;} + .d2-2835789743 .background-color-AB4{background-color:#EDF0FD;} + .d2-2835789743 .background-color-AB5{background-color:#F7F8FE;} + .d2-2835789743 .color-N1{color:#0A0F25;} + .d2-2835789743 .color-N2{color:#676C7E;} + .d2-2835789743 .color-N3{color:#9499AB;} + .d2-2835789743 .color-N4{color:#CFD2DD;} + .d2-2835789743 .color-N5{color:#DEE1EB;} + .d2-2835789743 .color-N6{color:#EEF1F8;} + .d2-2835789743 .color-N7{color:#FFFFFF;} + .d2-2835789743 .color-B1{color:#0D32B2;} + .d2-2835789743 .color-B2{color:#0D32B2;} + .d2-2835789743 .color-B3{color:#E3E9FD;} + .d2-2835789743 .color-B4{color:#E3E9FD;} + .d2-2835789743 .color-B5{color:#EDF0FD;} + .d2-2835789743 .color-B6{color:#F7F8FE;} + .d2-2835789743 .color-AA2{color:#4A6FF3;} + .d2-2835789743 .color-AA4{color:#EDF0FD;} + .d2-2835789743 .color-AA5{color:#F7F8FE;} + .d2-2835789743 .color-AB4{color:#EDF0FD;} + .d2-2835789743 .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}]]> @@ -113,7 +113,7 @@ 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 diff --git a/e2etests/testdata/stable/number_connections/dagre/board.exp.json b/e2etests/testdata/stable/number_connections/dagre/board.exp.json index 7b55ac7093..249dad9108 100644 --- a/e2etests/testdata/stable/number_connections/dagre/board.exp.json +++ b/e2etests/testdata/stable/number_connections/dagre/board.exp.json @@ -192,6 +192,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 26.5, @@ -239,6 +240,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 162, diff --git a/e2etests/testdata/stable/number_connections/dagre/sketch.exp.svg b/e2etests/testdata/stable/number_connections/dagre/sketch.exp.svg index f9dac991df..58003fdd28 100644 --- a/e2etests/testdata/stable/number_connections/dagre/sketch.exp.svg +++ b/e2etests/testdata/stable/number_connections/dagre/sketch.exp.svg @@ -1,9 +1,9 @@ -12Foo Bazhello + .d2-815763335 .fill-N1{fill:#0A0F25;} + .d2-815763335 .fill-N2{fill:#676C7E;} + .d2-815763335 .fill-N3{fill:#9499AB;} + .d2-815763335 .fill-N4{fill:#CFD2DD;} + .d2-815763335 .fill-N5{fill:#DEE1EB;} + .d2-815763335 .fill-N6{fill:#EEF1F8;} + .d2-815763335 .fill-N7{fill:#FFFFFF;} + .d2-815763335 .fill-B1{fill:#0D32B2;} + .d2-815763335 .fill-B2{fill:#0D32B2;} + .d2-815763335 .fill-B3{fill:#E3E9FD;} + .d2-815763335 .fill-B4{fill:#E3E9FD;} + .d2-815763335 .fill-B5{fill:#EDF0FD;} + .d2-815763335 .fill-B6{fill:#F7F8FE;} + .d2-815763335 .fill-AA2{fill:#4A6FF3;} + .d2-815763335 .fill-AA4{fill:#EDF0FD;} + .d2-815763335 .fill-AA5{fill:#F7F8FE;} + .d2-815763335 .fill-AB4{fill:#EDF0FD;} + .d2-815763335 .fill-AB5{fill:#F7F8FE;} + .d2-815763335 .stroke-N1{stroke:#0A0F25;} + .d2-815763335 .stroke-N2{stroke:#676C7E;} + .d2-815763335 .stroke-N3{stroke:#9499AB;} + .d2-815763335 .stroke-N4{stroke:#CFD2DD;} + .d2-815763335 .stroke-N5{stroke:#DEE1EB;} + .d2-815763335 .stroke-N6{stroke:#EEF1F8;} + .d2-815763335 .stroke-N7{stroke:#FFFFFF;} + .d2-815763335 .stroke-B1{stroke:#0D32B2;} + .d2-815763335 .stroke-B2{stroke:#0D32B2;} + .d2-815763335 .stroke-B3{stroke:#E3E9FD;} + .d2-815763335 .stroke-B4{stroke:#E3E9FD;} + .d2-815763335 .stroke-B5{stroke:#EDF0FD;} + .d2-815763335 .stroke-B6{stroke:#F7F8FE;} + .d2-815763335 .stroke-AA2{stroke:#4A6FF3;} + .d2-815763335 .stroke-AA4{stroke:#EDF0FD;} + .d2-815763335 .stroke-AA5{stroke:#F7F8FE;} + .d2-815763335 .stroke-AB4{stroke:#EDF0FD;} + .d2-815763335 .stroke-AB5{stroke:#F7F8FE;} + .d2-815763335 .background-color-N1{background-color:#0A0F25;} + .d2-815763335 .background-color-N2{background-color:#676C7E;} + .d2-815763335 .background-color-N3{background-color:#9499AB;} + .d2-815763335 .background-color-N4{background-color:#CFD2DD;} + .d2-815763335 .background-color-N5{background-color:#DEE1EB;} + .d2-815763335 .background-color-N6{background-color:#EEF1F8;} + .d2-815763335 .background-color-N7{background-color:#FFFFFF;} + .d2-815763335 .background-color-B1{background-color:#0D32B2;} + .d2-815763335 .background-color-B2{background-color:#0D32B2;} + .d2-815763335 .background-color-B3{background-color:#E3E9FD;} + .d2-815763335 .background-color-B4{background-color:#E3E9FD;} + .d2-815763335 .background-color-B5{background-color:#EDF0FD;} + .d2-815763335 .background-color-B6{background-color:#F7F8FE;} + .d2-815763335 .background-color-AA2{background-color:#4A6FF3;} + .d2-815763335 .background-color-AA4{background-color:#EDF0FD;} + .d2-815763335 .background-color-AA5{background-color:#F7F8FE;} + .d2-815763335 .background-color-AB4{background-color:#EDF0FD;} + .d2-815763335 .background-color-AB5{background-color:#F7F8FE;} + .d2-815763335 .color-N1{color:#0A0F25;} + .d2-815763335 .color-N2{color:#676C7E;} + .d2-815763335 .color-N3{color:#9499AB;} + .d2-815763335 .color-N4{color:#CFD2DD;} + .d2-815763335 .color-N5{color:#DEE1EB;} + .d2-815763335 .color-N6{color:#EEF1F8;} + .d2-815763335 .color-N7{color:#FFFFFF;} + .d2-815763335 .color-B1{color:#0D32B2;} + .d2-815763335 .color-B2{color:#0D32B2;} + .d2-815763335 .color-B3{color:#E3E9FD;} + .d2-815763335 .color-B4{color:#E3E9FD;} + .d2-815763335 .color-B5{color:#EDF0FD;} + .d2-815763335 .color-B6{color:#F7F8FE;} + .d2-815763335 .color-AA2{color:#4A6FF3;} + .d2-815763335 .color-AA4{color:#EDF0FD;} + .d2-815763335 .color-AA5{color:#F7F8FE;} + .d2-815763335 .color-AB4{color:#EDF0FD;} + .d2-815763335 .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}]]>12Foo Bazhello diff --git a/e2etests/testdata/stable/number_connections/elk/board.exp.json b/e2etests/testdata/stable/number_connections/elk/board.exp.json index 65a6da4a52..1bbbfaa8eb 100644 --- a/e2etests/testdata/stable/number_connections/elk/board.exp.json +++ b/e2etests/testdata/stable/number_connections/elk/board.exp.json @@ -192,6 +192,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 38.5, @@ -230,6 +231,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 134, diff --git a/e2etests/testdata/stable/number_connections/elk/sketch.exp.svg b/e2etests/testdata/stable/number_connections/elk/sketch.exp.svg index d4d0085f36..8dce04f6c3 100644 --- a/e2etests/testdata/stable/number_connections/elk/sketch.exp.svg +++ b/e2etests/testdata/stable/number_connections/elk/sketch.exp.svg @@ -1,9 +1,9 @@ -12Foo Bazhello + .d2-28525603 .fill-N1{fill:#0A0F25;} + .d2-28525603 .fill-N2{fill:#676C7E;} + .d2-28525603 .fill-N3{fill:#9499AB;} + .d2-28525603 .fill-N4{fill:#CFD2DD;} + .d2-28525603 .fill-N5{fill:#DEE1EB;} + .d2-28525603 .fill-N6{fill:#EEF1F8;} + .d2-28525603 .fill-N7{fill:#FFFFFF;} + .d2-28525603 .fill-B1{fill:#0D32B2;} + .d2-28525603 .fill-B2{fill:#0D32B2;} + .d2-28525603 .fill-B3{fill:#E3E9FD;} + .d2-28525603 .fill-B4{fill:#E3E9FD;} + .d2-28525603 .fill-B5{fill:#EDF0FD;} + .d2-28525603 .fill-B6{fill:#F7F8FE;} + .d2-28525603 .fill-AA2{fill:#4A6FF3;} + .d2-28525603 .fill-AA4{fill:#EDF0FD;} + .d2-28525603 .fill-AA5{fill:#F7F8FE;} + .d2-28525603 .fill-AB4{fill:#EDF0FD;} + .d2-28525603 .fill-AB5{fill:#F7F8FE;} + .d2-28525603 .stroke-N1{stroke:#0A0F25;} + .d2-28525603 .stroke-N2{stroke:#676C7E;} + .d2-28525603 .stroke-N3{stroke:#9499AB;} + .d2-28525603 .stroke-N4{stroke:#CFD2DD;} + .d2-28525603 .stroke-N5{stroke:#DEE1EB;} + .d2-28525603 .stroke-N6{stroke:#EEF1F8;} + .d2-28525603 .stroke-N7{stroke:#FFFFFF;} + .d2-28525603 .stroke-B1{stroke:#0D32B2;} + .d2-28525603 .stroke-B2{stroke:#0D32B2;} + .d2-28525603 .stroke-B3{stroke:#E3E9FD;} + .d2-28525603 .stroke-B4{stroke:#E3E9FD;} + .d2-28525603 .stroke-B5{stroke:#EDF0FD;} + .d2-28525603 .stroke-B6{stroke:#F7F8FE;} + .d2-28525603 .stroke-AA2{stroke:#4A6FF3;} + .d2-28525603 .stroke-AA4{stroke:#EDF0FD;} + .d2-28525603 .stroke-AA5{stroke:#F7F8FE;} + .d2-28525603 .stroke-AB4{stroke:#EDF0FD;} + .d2-28525603 .stroke-AB5{stroke:#F7F8FE;} + .d2-28525603 .background-color-N1{background-color:#0A0F25;} + .d2-28525603 .background-color-N2{background-color:#676C7E;} + .d2-28525603 .background-color-N3{background-color:#9499AB;} + .d2-28525603 .background-color-N4{background-color:#CFD2DD;} + .d2-28525603 .background-color-N5{background-color:#DEE1EB;} + .d2-28525603 .background-color-N6{background-color:#EEF1F8;} + .d2-28525603 .background-color-N7{background-color:#FFFFFF;} + .d2-28525603 .background-color-B1{background-color:#0D32B2;} + .d2-28525603 .background-color-B2{background-color:#0D32B2;} + .d2-28525603 .background-color-B3{background-color:#E3E9FD;} + .d2-28525603 .background-color-B4{background-color:#E3E9FD;} + .d2-28525603 .background-color-B5{background-color:#EDF0FD;} + .d2-28525603 .background-color-B6{background-color:#F7F8FE;} + .d2-28525603 .background-color-AA2{background-color:#4A6FF3;} + .d2-28525603 .background-color-AA4{background-color:#EDF0FD;} + .d2-28525603 .background-color-AA5{background-color:#F7F8FE;} + .d2-28525603 .background-color-AB4{background-color:#EDF0FD;} + .d2-28525603 .background-color-AB5{background-color:#F7F8FE;} + .d2-28525603 .color-N1{color:#0A0F25;} + .d2-28525603 .color-N2{color:#676C7E;} + .d2-28525603 .color-N3{color:#9499AB;} + .d2-28525603 .color-N4{color:#CFD2DD;} + .d2-28525603 .color-N5{color:#DEE1EB;} + .d2-28525603 .color-N6{color:#EEF1F8;} + .d2-28525603 .color-N7{color:#FFFFFF;} + .d2-28525603 .color-B1{color:#0D32B2;} + .d2-28525603 .color-B2{color:#0D32B2;} + .d2-28525603 .color-B3{color:#E3E9FD;} + .d2-28525603 .color-B4{color:#E3E9FD;} + .d2-28525603 .color-B5{color:#EDF0FD;} + .d2-28525603 .color-B6{color:#F7F8FE;} + .d2-28525603 .color-AA2{color:#4A6FF3;} + .d2-28525603 .color-AA4{color:#EDF0FD;} + .d2-28525603 .color-AA5{color:#F7F8FE;} + .d2-28525603 .color-AB4{color:#EDF0FD;} + .d2-28525603 .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}]]>12Foo Bazhello diff --git a/e2etests/testdata/stable/one_container_loop/dagre/board.exp.json b/e2etests/testdata/stable/one_container_loop/dagre/board.exp.json index 16ddc4df3d..dc4d0b72dc 100644 --- a/e2etests/testdata/stable/one_container_loop/dagre/board.exp.json +++ b/e2etests/testdata/stable/one_container_loop/dagre/board.exp.json @@ -356,6 +356,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 66.5, @@ -475,6 +476,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 156.5, @@ -522,6 +524,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 270, @@ -569,6 +572,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 156.5, @@ -616,6 +620,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 270, @@ -699,6 +704,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 156.5, @@ -746,6 +752,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 190.5, diff --git a/e2etests/testdata/stable/one_container_loop/dagre/sketch.exp.svg b/e2etests/testdata/stable/one_container_loop/dagre/sketch.exp.svg index 6d83724c47..d7cd0beef3 100644 --- a/e2etests/testdata/stable/one_container_loop/dagre/sketch.exp.svg +++ b/e2etests/testdata/stable/one_container_loop/dagre/sketch.exp.svg @@ -1,16 +1,16 @@ -acdefgbh + .d2-1562824148 .fill-N1{fill:#0A0F25;} + .d2-1562824148 .fill-N2{fill:#676C7E;} + .d2-1562824148 .fill-N3{fill:#9499AB;} + .d2-1562824148 .fill-N4{fill:#CFD2DD;} + .d2-1562824148 .fill-N5{fill:#DEE1EB;} + .d2-1562824148 .fill-N6{fill:#EEF1F8;} + .d2-1562824148 .fill-N7{fill:#FFFFFF;} + .d2-1562824148 .fill-B1{fill:#0D32B2;} + .d2-1562824148 .fill-B2{fill:#0D32B2;} + .d2-1562824148 .fill-B3{fill:#E3E9FD;} + .d2-1562824148 .fill-B4{fill:#E3E9FD;} + .d2-1562824148 .fill-B5{fill:#EDF0FD;} + .d2-1562824148 .fill-B6{fill:#F7F8FE;} + .d2-1562824148 .fill-AA2{fill:#4A6FF3;} + .d2-1562824148 .fill-AA4{fill:#EDF0FD;} + .d2-1562824148 .fill-AA5{fill:#F7F8FE;} + .d2-1562824148 .fill-AB4{fill:#EDF0FD;} + .d2-1562824148 .fill-AB5{fill:#F7F8FE;} + .d2-1562824148 .stroke-N1{stroke:#0A0F25;} + .d2-1562824148 .stroke-N2{stroke:#676C7E;} + .d2-1562824148 .stroke-N3{stroke:#9499AB;} + .d2-1562824148 .stroke-N4{stroke:#CFD2DD;} + .d2-1562824148 .stroke-N5{stroke:#DEE1EB;} + .d2-1562824148 .stroke-N6{stroke:#EEF1F8;} + .d2-1562824148 .stroke-N7{stroke:#FFFFFF;} + .d2-1562824148 .stroke-B1{stroke:#0D32B2;} + .d2-1562824148 .stroke-B2{stroke:#0D32B2;} + .d2-1562824148 .stroke-B3{stroke:#E3E9FD;} + .d2-1562824148 .stroke-B4{stroke:#E3E9FD;} + .d2-1562824148 .stroke-B5{stroke:#EDF0FD;} + .d2-1562824148 .stroke-B6{stroke:#F7F8FE;} + .d2-1562824148 .stroke-AA2{stroke:#4A6FF3;} + .d2-1562824148 .stroke-AA4{stroke:#EDF0FD;} + .d2-1562824148 .stroke-AA5{stroke:#F7F8FE;} + .d2-1562824148 .stroke-AB4{stroke:#EDF0FD;} + .d2-1562824148 .stroke-AB5{stroke:#F7F8FE;} + .d2-1562824148 .background-color-N1{background-color:#0A0F25;} + .d2-1562824148 .background-color-N2{background-color:#676C7E;} + .d2-1562824148 .background-color-N3{background-color:#9499AB;} + .d2-1562824148 .background-color-N4{background-color:#CFD2DD;} + .d2-1562824148 .background-color-N5{background-color:#DEE1EB;} + .d2-1562824148 .background-color-N6{background-color:#EEF1F8;} + .d2-1562824148 .background-color-N7{background-color:#FFFFFF;} + .d2-1562824148 .background-color-B1{background-color:#0D32B2;} + .d2-1562824148 .background-color-B2{background-color:#0D32B2;} + .d2-1562824148 .background-color-B3{background-color:#E3E9FD;} + .d2-1562824148 .background-color-B4{background-color:#E3E9FD;} + .d2-1562824148 .background-color-B5{background-color:#EDF0FD;} + .d2-1562824148 .background-color-B6{background-color:#F7F8FE;} + .d2-1562824148 .background-color-AA2{background-color:#4A6FF3;} + .d2-1562824148 .background-color-AA4{background-color:#EDF0FD;} + .d2-1562824148 .background-color-AA5{background-color:#F7F8FE;} + .d2-1562824148 .background-color-AB4{background-color:#EDF0FD;} + .d2-1562824148 .background-color-AB5{background-color:#F7F8FE;} + .d2-1562824148 .color-N1{color:#0A0F25;} + .d2-1562824148 .color-N2{color:#676C7E;} + .d2-1562824148 .color-N3{color:#9499AB;} + .d2-1562824148 .color-N4{color:#CFD2DD;} + .d2-1562824148 .color-N5{color:#DEE1EB;} + .d2-1562824148 .color-N6{color:#EEF1F8;} + .d2-1562824148 .color-N7{color:#FFFFFF;} + .d2-1562824148 .color-B1{color:#0D32B2;} + .d2-1562824148 .color-B2{color:#0D32B2;} + .d2-1562824148 .color-B3{color:#E3E9FD;} + .d2-1562824148 .color-B4{color:#E3E9FD;} + .d2-1562824148 .color-B5{color:#EDF0FD;} + .d2-1562824148 .color-B6{color:#F7F8FE;} + .d2-1562824148 .color-AA2{color:#4A6FF3;} + .d2-1562824148 .color-AA4{color:#EDF0FD;} + .d2-1562824148 .color-AA5{color:#F7F8FE;} + .d2-1562824148 .color-AB4{color:#EDF0FD;} + .d2-1562824148 .color-AB5{color:#F7F8FE;}.appendix text.text{fill:#0A0F25}.md{--color-fg-default:#0A0F25;--color-fg-muted:#676C7E;--color-fg-subtle:#9499AB;--color-canvas-default:#FFFFFF;--color-canvas-subtle:#EEF1F8;--color-border-default:#0D32B2;--color-border-muted:#0D32B2;--color-neutral-muted:#EEF1F8;--color-accent-fg:#0D32B2;--color-accent-emphasis:#0D32B2;--color-attention-subtle:#676C7E;--color-danger-fg:red;}.sketch-overlay-B1{fill:url(#streaks-darker);mix-blend-mode:lighten}.sketch-overlay-B2{fill:url(#streaks-darker);mix-blend-mode:lighten}.sketch-overlay-B3{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-B4{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-B5{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-B6{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-AA2{fill:url(#streaks-dark);mix-blend-mode:overlay}.sketch-overlay-AA4{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-AA5{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-AB4{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-AB5{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-N1{fill:url(#streaks-darker);mix-blend-mode:lighten}.sketch-overlay-N2{fill:url(#streaks-dark);mix-blend-mode:overlay}.sketch-overlay-N3{fill:url(#streaks-normal);mix-blend-mode:color-burn}.sketch-overlay-N4{fill:url(#streaks-normal);mix-blend-mode:color-burn}.sketch-overlay-N5{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-N6{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-N7{fill:url(#streaks-bright);mix-blend-mode:darken}.light-code{display: block}.dark-code{display: none}]]>acdefgbh diff --git a/e2etests/testdata/stable/one_container_loop/elk/board.exp.json b/e2etests/testdata/stable/one_container_loop/elk/board.exp.json index dbbe7f64d0..34b6212ac2 100644 --- a/e2etests/testdata/stable/one_container_loop/elk/board.exp.json +++ b/e2etests/testdata/stable/one_container_loop/elk/board.exp.json @@ -356,6 +356,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 78.25, @@ -402,6 +403,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 142.5, @@ -440,6 +442,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 220.75, @@ -486,6 +489,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 148.75, @@ -524,6 +528,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 220.75, @@ -562,6 +567,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 148.75, @@ -600,6 +606,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 161.5, diff --git a/e2etests/testdata/stable/one_container_loop/elk/sketch.exp.svg b/e2etests/testdata/stable/one_container_loop/elk/sketch.exp.svg index 64a2c1b960..428123efae 100644 --- a/e2etests/testdata/stable/one_container_loop/elk/sketch.exp.svg +++ b/e2etests/testdata/stable/one_container_loop/elk/sketch.exp.svg @@ -1,16 +1,16 @@ -acdefgbh + .d2-4240902393 .fill-N1{fill:#0A0F25;} + .d2-4240902393 .fill-N2{fill:#676C7E;} + .d2-4240902393 .fill-N3{fill:#9499AB;} + .d2-4240902393 .fill-N4{fill:#CFD2DD;} + .d2-4240902393 .fill-N5{fill:#DEE1EB;} + .d2-4240902393 .fill-N6{fill:#EEF1F8;} + .d2-4240902393 .fill-N7{fill:#FFFFFF;} + .d2-4240902393 .fill-B1{fill:#0D32B2;} + .d2-4240902393 .fill-B2{fill:#0D32B2;} + .d2-4240902393 .fill-B3{fill:#E3E9FD;} + .d2-4240902393 .fill-B4{fill:#E3E9FD;} + .d2-4240902393 .fill-B5{fill:#EDF0FD;} + .d2-4240902393 .fill-B6{fill:#F7F8FE;} + .d2-4240902393 .fill-AA2{fill:#4A6FF3;} + .d2-4240902393 .fill-AA4{fill:#EDF0FD;} + .d2-4240902393 .fill-AA5{fill:#F7F8FE;} + .d2-4240902393 .fill-AB4{fill:#EDF0FD;} + .d2-4240902393 .fill-AB5{fill:#F7F8FE;} + .d2-4240902393 .stroke-N1{stroke:#0A0F25;} + .d2-4240902393 .stroke-N2{stroke:#676C7E;} + .d2-4240902393 .stroke-N3{stroke:#9499AB;} + .d2-4240902393 .stroke-N4{stroke:#CFD2DD;} + .d2-4240902393 .stroke-N5{stroke:#DEE1EB;} + .d2-4240902393 .stroke-N6{stroke:#EEF1F8;} + .d2-4240902393 .stroke-N7{stroke:#FFFFFF;} + .d2-4240902393 .stroke-B1{stroke:#0D32B2;} + .d2-4240902393 .stroke-B2{stroke:#0D32B2;} + .d2-4240902393 .stroke-B3{stroke:#E3E9FD;} + .d2-4240902393 .stroke-B4{stroke:#E3E9FD;} + .d2-4240902393 .stroke-B5{stroke:#EDF0FD;} + .d2-4240902393 .stroke-B6{stroke:#F7F8FE;} + .d2-4240902393 .stroke-AA2{stroke:#4A6FF3;} + .d2-4240902393 .stroke-AA4{stroke:#EDF0FD;} + .d2-4240902393 .stroke-AA5{stroke:#F7F8FE;} + .d2-4240902393 .stroke-AB4{stroke:#EDF0FD;} + .d2-4240902393 .stroke-AB5{stroke:#F7F8FE;} + .d2-4240902393 .background-color-N1{background-color:#0A0F25;} + .d2-4240902393 .background-color-N2{background-color:#676C7E;} + .d2-4240902393 .background-color-N3{background-color:#9499AB;} + .d2-4240902393 .background-color-N4{background-color:#CFD2DD;} + .d2-4240902393 .background-color-N5{background-color:#DEE1EB;} + .d2-4240902393 .background-color-N6{background-color:#EEF1F8;} + .d2-4240902393 .background-color-N7{background-color:#FFFFFF;} + .d2-4240902393 .background-color-B1{background-color:#0D32B2;} + .d2-4240902393 .background-color-B2{background-color:#0D32B2;} + .d2-4240902393 .background-color-B3{background-color:#E3E9FD;} + .d2-4240902393 .background-color-B4{background-color:#E3E9FD;} + .d2-4240902393 .background-color-B5{background-color:#EDF0FD;} + .d2-4240902393 .background-color-B6{background-color:#F7F8FE;} + .d2-4240902393 .background-color-AA2{background-color:#4A6FF3;} + .d2-4240902393 .background-color-AA4{background-color:#EDF0FD;} + .d2-4240902393 .background-color-AA5{background-color:#F7F8FE;} + .d2-4240902393 .background-color-AB4{background-color:#EDF0FD;} + .d2-4240902393 .background-color-AB5{background-color:#F7F8FE;} + .d2-4240902393 .color-N1{color:#0A0F25;} + .d2-4240902393 .color-N2{color:#676C7E;} + .d2-4240902393 .color-N3{color:#9499AB;} + .d2-4240902393 .color-N4{color:#CFD2DD;} + .d2-4240902393 .color-N5{color:#DEE1EB;} + .d2-4240902393 .color-N6{color:#EEF1F8;} + .d2-4240902393 .color-N7{color:#FFFFFF;} + .d2-4240902393 .color-B1{color:#0D32B2;} + .d2-4240902393 .color-B2{color:#0D32B2;} + .d2-4240902393 .color-B3{color:#E3E9FD;} + .d2-4240902393 .color-B4{color:#E3E9FD;} + .d2-4240902393 .color-B5{color:#EDF0FD;} + .d2-4240902393 .color-B6{color:#F7F8FE;} + .d2-4240902393 .color-AA2{color:#4A6FF3;} + .d2-4240902393 .color-AA4{color:#EDF0FD;} + .d2-4240902393 .color-AA5{color:#F7F8FE;} + .d2-4240902393 .color-AB4{color:#EDF0FD;} + .d2-4240902393 .color-AB5{color:#F7F8FE;}.appendix text.text{fill:#0A0F25}.md{--color-fg-default:#0A0F25;--color-fg-muted:#676C7E;--color-fg-subtle:#9499AB;--color-canvas-default:#FFFFFF;--color-canvas-subtle:#EEF1F8;--color-border-default:#0D32B2;--color-border-muted:#0D32B2;--color-neutral-muted:#EEF1F8;--color-accent-fg:#0D32B2;--color-accent-emphasis:#0D32B2;--color-attention-subtle:#676C7E;--color-danger-fg:red;}.sketch-overlay-B1{fill:url(#streaks-darker);mix-blend-mode:lighten}.sketch-overlay-B2{fill:url(#streaks-darker);mix-blend-mode:lighten}.sketch-overlay-B3{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-B4{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-B5{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-B6{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-AA2{fill:url(#streaks-dark);mix-blend-mode:overlay}.sketch-overlay-AA4{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-AA5{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-AB4{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-AB5{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-N1{fill:url(#streaks-darker);mix-blend-mode:lighten}.sketch-overlay-N2{fill:url(#streaks-dark);mix-blend-mode:overlay}.sketch-overlay-N3{fill:url(#streaks-normal);mix-blend-mode:color-burn}.sketch-overlay-N4{fill:url(#streaks-normal);mix-blend-mode:color-burn}.sketch-overlay-N5{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-N6{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-N7{fill:url(#streaks-bright);mix-blend-mode:darken}.light-code{display: block}.dark-code{display: none}]]>acdefgbh diff --git a/e2etests/testdata/stable/one_three_one_container/dagre/board.exp.json b/e2etests/testdata/stable/one_three_one_container/dagre/board.exp.json index a853f9265e..44b938a6a8 100644 --- a/e2etests/testdata/stable/one_three_one_container/dagre/board.exp.json +++ b/e2etests/testdata/stable/one_three_one_container/dagre/board.exp.json @@ -315,6 +315,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 123, @@ -362,6 +363,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 166, @@ -409,6 +411,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 203, @@ -456,6 +459,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 58, @@ -503,6 +507,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 171, @@ -550,6 +555,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 284, diff --git a/e2etests/testdata/stable/one_three_one_container/dagre/sketch.exp.svg b/e2etests/testdata/stable/one_three_one_container/dagre/sketch.exp.svg index f34cdd2fd6..69972201d6 100644 --- a/e2etests/testdata/stable/one_three_one_container/dagre/sketch.exp.svg +++ b/e2etests/testdata/stable/one_three_one_container/dagre/sketch.exp.svg @@ -1,16 +1,16 @@ -top2abcbottomstartend + .d2-3620310379 .fill-N1{fill:#0A0F25;} + .d2-3620310379 .fill-N2{fill:#676C7E;} + .d2-3620310379 .fill-N3{fill:#9499AB;} + .d2-3620310379 .fill-N4{fill:#CFD2DD;} + .d2-3620310379 .fill-N5{fill:#DEE1EB;} + .d2-3620310379 .fill-N6{fill:#EEF1F8;} + .d2-3620310379 .fill-N7{fill:#FFFFFF;} + .d2-3620310379 .fill-B1{fill:#0D32B2;} + .d2-3620310379 .fill-B2{fill:#0D32B2;} + .d2-3620310379 .fill-B3{fill:#E3E9FD;} + .d2-3620310379 .fill-B4{fill:#E3E9FD;} + .d2-3620310379 .fill-B5{fill:#EDF0FD;} + .d2-3620310379 .fill-B6{fill:#F7F8FE;} + .d2-3620310379 .fill-AA2{fill:#4A6FF3;} + .d2-3620310379 .fill-AA4{fill:#EDF0FD;} + .d2-3620310379 .fill-AA5{fill:#F7F8FE;} + .d2-3620310379 .fill-AB4{fill:#EDF0FD;} + .d2-3620310379 .fill-AB5{fill:#F7F8FE;} + .d2-3620310379 .stroke-N1{stroke:#0A0F25;} + .d2-3620310379 .stroke-N2{stroke:#676C7E;} + .d2-3620310379 .stroke-N3{stroke:#9499AB;} + .d2-3620310379 .stroke-N4{stroke:#CFD2DD;} + .d2-3620310379 .stroke-N5{stroke:#DEE1EB;} + .d2-3620310379 .stroke-N6{stroke:#EEF1F8;} + .d2-3620310379 .stroke-N7{stroke:#FFFFFF;} + .d2-3620310379 .stroke-B1{stroke:#0D32B2;} + .d2-3620310379 .stroke-B2{stroke:#0D32B2;} + .d2-3620310379 .stroke-B3{stroke:#E3E9FD;} + .d2-3620310379 .stroke-B4{stroke:#E3E9FD;} + .d2-3620310379 .stroke-B5{stroke:#EDF0FD;} + .d2-3620310379 .stroke-B6{stroke:#F7F8FE;} + .d2-3620310379 .stroke-AA2{stroke:#4A6FF3;} + .d2-3620310379 .stroke-AA4{stroke:#EDF0FD;} + .d2-3620310379 .stroke-AA5{stroke:#F7F8FE;} + .d2-3620310379 .stroke-AB4{stroke:#EDF0FD;} + .d2-3620310379 .stroke-AB5{stroke:#F7F8FE;} + .d2-3620310379 .background-color-N1{background-color:#0A0F25;} + .d2-3620310379 .background-color-N2{background-color:#676C7E;} + .d2-3620310379 .background-color-N3{background-color:#9499AB;} + .d2-3620310379 .background-color-N4{background-color:#CFD2DD;} + .d2-3620310379 .background-color-N5{background-color:#DEE1EB;} + .d2-3620310379 .background-color-N6{background-color:#EEF1F8;} + .d2-3620310379 .background-color-N7{background-color:#FFFFFF;} + .d2-3620310379 .background-color-B1{background-color:#0D32B2;} + .d2-3620310379 .background-color-B2{background-color:#0D32B2;} + .d2-3620310379 .background-color-B3{background-color:#E3E9FD;} + .d2-3620310379 .background-color-B4{background-color:#E3E9FD;} + .d2-3620310379 .background-color-B5{background-color:#EDF0FD;} + .d2-3620310379 .background-color-B6{background-color:#F7F8FE;} + .d2-3620310379 .background-color-AA2{background-color:#4A6FF3;} + .d2-3620310379 .background-color-AA4{background-color:#EDF0FD;} + .d2-3620310379 .background-color-AA5{background-color:#F7F8FE;} + .d2-3620310379 .background-color-AB4{background-color:#EDF0FD;} + .d2-3620310379 .background-color-AB5{background-color:#F7F8FE;} + .d2-3620310379 .color-N1{color:#0A0F25;} + .d2-3620310379 .color-N2{color:#676C7E;} + .d2-3620310379 .color-N3{color:#9499AB;} + .d2-3620310379 .color-N4{color:#CFD2DD;} + .d2-3620310379 .color-N5{color:#DEE1EB;} + .d2-3620310379 .color-N6{color:#EEF1F8;} + .d2-3620310379 .color-N7{color:#FFFFFF;} + .d2-3620310379 .color-B1{color:#0D32B2;} + .d2-3620310379 .color-B2{color:#0D32B2;} + .d2-3620310379 .color-B3{color:#E3E9FD;} + .d2-3620310379 .color-B4{color:#E3E9FD;} + .d2-3620310379 .color-B5{color:#EDF0FD;} + .d2-3620310379 .color-B6{color:#F7F8FE;} + .d2-3620310379 .color-AA2{color:#4A6FF3;} + .d2-3620310379 .color-AA4{color:#EDF0FD;} + .d2-3620310379 .color-AA5{color:#F7F8FE;} + .d2-3620310379 .color-AB4{color:#EDF0FD;} + .d2-3620310379 .color-AB5{color:#F7F8FE;}.appendix text.text{fill:#0A0F25}.md{--color-fg-default:#0A0F25;--color-fg-muted:#676C7E;--color-fg-subtle:#9499AB;--color-canvas-default:#FFFFFF;--color-canvas-subtle:#EEF1F8;--color-border-default:#0D32B2;--color-border-muted:#0D32B2;--color-neutral-muted:#EEF1F8;--color-accent-fg:#0D32B2;--color-accent-emphasis:#0D32B2;--color-attention-subtle:#676C7E;--color-danger-fg:red;}.sketch-overlay-B1{fill:url(#streaks-darker);mix-blend-mode:lighten}.sketch-overlay-B2{fill:url(#streaks-darker);mix-blend-mode:lighten}.sketch-overlay-B3{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-B4{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-B5{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-B6{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-AA2{fill:url(#streaks-dark);mix-blend-mode:overlay}.sketch-overlay-AA4{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-AA5{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-AB4{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-AB5{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-N1{fill:url(#streaks-darker);mix-blend-mode:lighten}.sketch-overlay-N2{fill:url(#streaks-dark);mix-blend-mode:overlay}.sketch-overlay-N3{fill:url(#streaks-normal);mix-blend-mode:color-burn}.sketch-overlay-N4{fill:url(#streaks-normal);mix-blend-mode:color-burn}.sketch-overlay-N5{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-N6{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-N7{fill:url(#streaks-bright);mix-blend-mode:darken}.light-code{display: block}.dark-code{display: none}]]>top2abcbottomstartend diff --git a/e2etests/testdata/stable/one_three_one_container/elk/board.exp.json b/e2etests/testdata/stable/one_three_one_container/elk/board.exp.json index a8953cb56e..83504ff02e 100644 --- a/e2etests/testdata/stable/one_three_one_container/elk/board.exp.json +++ b/e2etests/testdata/stable/one_three_one_container/elk/board.exp.json @@ -315,6 +315,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 92, @@ -361,6 +362,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 122, @@ -399,6 +401,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 152, @@ -445,6 +448,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 49, @@ -491,6 +495,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 122, @@ -529,6 +534,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 195, diff --git a/e2etests/testdata/stable/one_three_one_container/elk/sketch.exp.svg b/e2etests/testdata/stable/one_three_one_container/elk/sketch.exp.svg index f4d1848b9d..1b4bd920f1 100644 --- a/e2etests/testdata/stable/one_three_one_container/elk/sketch.exp.svg +++ b/e2etests/testdata/stable/one_three_one_container/elk/sketch.exp.svg @@ -1,16 +1,16 @@ -top2abcbottomstartend + .d2-3777529529 .fill-N1{fill:#0A0F25;} + .d2-3777529529 .fill-N2{fill:#676C7E;} + .d2-3777529529 .fill-N3{fill:#9499AB;} + .d2-3777529529 .fill-N4{fill:#CFD2DD;} + .d2-3777529529 .fill-N5{fill:#DEE1EB;} + .d2-3777529529 .fill-N6{fill:#EEF1F8;} + .d2-3777529529 .fill-N7{fill:#FFFFFF;} + .d2-3777529529 .fill-B1{fill:#0D32B2;} + .d2-3777529529 .fill-B2{fill:#0D32B2;} + .d2-3777529529 .fill-B3{fill:#E3E9FD;} + .d2-3777529529 .fill-B4{fill:#E3E9FD;} + .d2-3777529529 .fill-B5{fill:#EDF0FD;} + .d2-3777529529 .fill-B6{fill:#F7F8FE;} + .d2-3777529529 .fill-AA2{fill:#4A6FF3;} + .d2-3777529529 .fill-AA4{fill:#EDF0FD;} + .d2-3777529529 .fill-AA5{fill:#F7F8FE;} + .d2-3777529529 .fill-AB4{fill:#EDF0FD;} + .d2-3777529529 .fill-AB5{fill:#F7F8FE;} + .d2-3777529529 .stroke-N1{stroke:#0A0F25;} + .d2-3777529529 .stroke-N2{stroke:#676C7E;} + .d2-3777529529 .stroke-N3{stroke:#9499AB;} + .d2-3777529529 .stroke-N4{stroke:#CFD2DD;} + .d2-3777529529 .stroke-N5{stroke:#DEE1EB;} + .d2-3777529529 .stroke-N6{stroke:#EEF1F8;} + .d2-3777529529 .stroke-N7{stroke:#FFFFFF;} + .d2-3777529529 .stroke-B1{stroke:#0D32B2;} + .d2-3777529529 .stroke-B2{stroke:#0D32B2;} + .d2-3777529529 .stroke-B3{stroke:#E3E9FD;} + .d2-3777529529 .stroke-B4{stroke:#E3E9FD;} + .d2-3777529529 .stroke-B5{stroke:#EDF0FD;} + .d2-3777529529 .stroke-B6{stroke:#F7F8FE;} + .d2-3777529529 .stroke-AA2{stroke:#4A6FF3;} + .d2-3777529529 .stroke-AA4{stroke:#EDF0FD;} + .d2-3777529529 .stroke-AA5{stroke:#F7F8FE;} + .d2-3777529529 .stroke-AB4{stroke:#EDF0FD;} + .d2-3777529529 .stroke-AB5{stroke:#F7F8FE;} + .d2-3777529529 .background-color-N1{background-color:#0A0F25;} + .d2-3777529529 .background-color-N2{background-color:#676C7E;} + .d2-3777529529 .background-color-N3{background-color:#9499AB;} + .d2-3777529529 .background-color-N4{background-color:#CFD2DD;} + .d2-3777529529 .background-color-N5{background-color:#DEE1EB;} + .d2-3777529529 .background-color-N6{background-color:#EEF1F8;} + .d2-3777529529 .background-color-N7{background-color:#FFFFFF;} + .d2-3777529529 .background-color-B1{background-color:#0D32B2;} + .d2-3777529529 .background-color-B2{background-color:#0D32B2;} + .d2-3777529529 .background-color-B3{background-color:#E3E9FD;} + .d2-3777529529 .background-color-B4{background-color:#E3E9FD;} + .d2-3777529529 .background-color-B5{background-color:#EDF0FD;} + .d2-3777529529 .background-color-B6{background-color:#F7F8FE;} + .d2-3777529529 .background-color-AA2{background-color:#4A6FF3;} + .d2-3777529529 .background-color-AA4{background-color:#EDF0FD;} + .d2-3777529529 .background-color-AA5{background-color:#F7F8FE;} + .d2-3777529529 .background-color-AB4{background-color:#EDF0FD;} + .d2-3777529529 .background-color-AB5{background-color:#F7F8FE;} + .d2-3777529529 .color-N1{color:#0A0F25;} + .d2-3777529529 .color-N2{color:#676C7E;} + .d2-3777529529 .color-N3{color:#9499AB;} + .d2-3777529529 .color-N4{color:#CFD2DD;} + .d2-3777529529 .color-N5{color:#DEE1EB;} + .d2-3777529529 .color-N6{color:#EEF1F8;} + .d2-3777529529 .color-N7{color:#FFFFFF;} + .d2-3777529529 .color-B1{color:#0D32B2;} + .d2-3777529529 .color-B2{color:#0D32B2;} + .d2-3777529529 .color-B3{color:#E3E9FD;} + .d2-3777529529 .color-B4{color:#E3E9FD;} + .d2-3777529529 .color-B5{color:#EDF0FD;} + .d2-3777529529 .color-B6{color:#F7F8FE;} + .d2-3777529529 .color-AA2{color:#4A6FF3;} + .d2-3777529529 .color-AA4{color:#EDF0FD;} + .d2-3777529529 .color-AA5{color:#F7F8FE;} + .d2-3777529529 .color-AB4{color:#EDF0FD;} + .d2-3777529529 .color-AB5{color:#F7F8FE;}.appendix text.text{fill:#0A0F25}.md{--color-fg-default:#0A0F25;--color-fg-muted:#676C7E;--color-fg-subtle:#9499AB;--color-canvas-default:#FFFFFF;--color-canvas-subtle:#EEF1F8;--color-border-default:#0D32B2;--color-border-muted:#0D32B2;--color-neutral-muted:#EEF1F8;--color-accent-fg:#0D32B2;--color-accent-emphasis:#0D32B2;--color-attention-subtle:#676C7E;--color-danger-fg:red;}.sketch-overlay-B1{fill:url(#streaks-darker);mix-blend-mode:lighten}.sketch-overlay-B2{fill:url(#streaks-darker);mix-blend-mode:lighten}.sketch-overlay-B3{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-B4{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-B5{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-B6{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-AA2{fill:url(#streaks-dark);mix-blend-mode:overlay}.sketch-overlay-AA4{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-AA5{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-AB4{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-AB5{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-N1{fill:url(#streaks-darker);mix-blend-mode:lighten}.sketch-overlay-N2{fill:url(#streaks-dark);mix-blend-mode:overlay}.sketch-overlay-N3{fill:url(#streaks-normal);mix-blend-mode:color-burn}.sketch-overlay-N4{fill:url(#streaks-normal);mix-blend-mode:color-burn}.sketch-overlay-N5{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-N6{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-N7{fill:url(#streaks-bright);mix-blend-mode:darken}.light-code{display: block}.dark-code{display: none}]]>top2abcbottomstartend diff --git a/e2etests/testdata/stable/outside_bottom_labels/dagre/board.exp.json b/e2etests/testdata/stable/outside_bottom_labels/dagre/board.exp.json index f424c7cf9e..b011f12c23 100644 --- a/e2etests/testdata/stable/outside_bottom_labels/dagre/board.exp.json +++ b/e2etests/testdata/stable/outside_bottom_labels/dagre/board.exp.json @@ -151,6 +151,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 71, @@ -198,6 +199,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 87, @@ -245,6 +247,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 87, @@ -292,6 +295,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 97, @@ -339,6 +343,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 72, @@ -386,6 +391,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 96, diff --git a/e2etests/testdata/stable/outside_bottom_labels/dagre/sketch.exp.svg b/e2etests/testdata/stable/outside_bottom_labels/dagre/sketch.exp.svg index 1d68b09e8f..fc49ed0525 100644 --- a/e2etests/testdata/stable/outside_bottom_labels/dagre/sketch.exp.svg +++ b/e2etests/testdata/stable/outside_bottom_labels/dagre/sketch.exp.svg @@ -1,9 +1,9 @@ -Daphne SnickerdoodlePrudence McSnortlePolly Pizzazzle + .d2-2875667596 .fill-N1{fill:#0A0F25;} + .d2-2875667596 .fill-N2{fill:#676C7E;} + .d2-2875667596 .fill-N3{fill:#9499AB;} + .d2-2875667596 .fill-N4{fill:#CFD2DD;} + .d2-2875667596 .fill-N5{fill:#DEE1EB;} + .d2-2875667596 .fill-N6{fill:#EEF1F8;} + .d2-2875667596 .fill-N7{fill:#FFFFFF;} + .d2-2875667596 .fill-B1{fill:#0D32B2;} + .d2-2875667596 .fill-B2{fill:#0D32B2;} + .d2-2875667596 .fill-B3{fill:#E3E9FD;} + .d2-2875667596 .fill-B4{fill:#E3E9FD;} + .d2-2875667596 .fill-B5{fill:#EDF0FD;} + .d2-2875667596 .fill-B6{fill:#F7F8FE;} + .d2-2875667596 .fill-AA2{fill:#4A6FF3;} + .d2-2875667596 .fill-AA4{fill:#EDF0FD;} + .d2-2875667596 .fill-AA5{fill:#F7F8FE;} + .d2-2875667596 .fill-AB4{fill:#EDF0FD;} + .d2-2875667596 .fill-AB5{fill:#F7F8FE;} + .d2-2875667596 .stroke-N1{stroke:#0A0F25;} + .d2-2875667596 .stroke-N2{stroke:#676C7E;} + .d2-2875667596 .stroke-N3{stroke:#9499AB;} + .d2-2875667596 .stroke-N4{stroke:#CFD2DD;} + .d2-2875667596 .stroke-N5{stroke:#DEE1EB;} + .d2-2875667596 .stroke-N6{stroke:#EEF1F8;} + .d2-2875667596 .stroke-N7{stroke:#FFFFFF;} + .d2-2875667596 .stroke-B1{stroke:#0D32B2;} + .d2-2875667596 .stroke-B2{stroke:#0D32B2;} + .d2-2875667596 .stroke-B3{stroke:#E3E9FD;} + .d2-2875667596 .stroke-B4{stroke:#E3E9FD;} + .d2-2875667596 .stroke-B5{stroke:#EDF0FD;} + .d2-2875667596 .stroke-B6{stroke:#F7F8FE;} + .d2-2875667596 .stroke-AA2{stroke:#4A6FF3;} + .d2-2875667596 .stroke-AA4{stroke:#EDF0FD;} + .d2-2875667596 .stroke-AA5{stroke:#F7F8FE;} + .d2-2875667596 .stroke-AB4{stroke:#EDF0FD;} + .d2-2875667596 .stroke-AB5{stroke:#F7F8FE;} + .d2-2875667596 .background-color-N1{background-color:#0A0F25;} + .d2-2875667596 .background-color-N2{background-color:#676C7E;} + .d2-2875667596 .background-color-N3{background-color:#9499AB;} + .d2-2875667596 .background-color-N4{background-color:#CFD2DD;} + .d2-2875667596 .background-color-N5{background-color:#DEE1EB;} + .d2-2875667596 .background-color-N6{background-color:#EEF1F8;} + .d2-2875667596 .background-color-N7{background-color:#FFFFFF;} + .d2-2875667596 .background-color-B1{background-color:#0D32B2;} + .d2-2875667596 .background-color-B2{background-color:#0D32B2;} + .d2-2875667596 .background-color-B3{background-color:#E3E9FD;} + .d2-2875667596 .background-color-B4{background-color:#E3E9FD;} + .d2-2875667596 .background-color-B5{background-color:#EDF0FD;} + .d2-2875667596 .background-color-B6{background-color:#F7F8FE;} + .d2-2875667596 .background-color-AA2{background-color:#4A6FF3;} + .d2-2875667596 .background-color-AA4{background-color:#EDF0FD;} + .d2-2875667596 .background-color-AA5{background-color:#F7F8FE;} + .d2-2875667596 .background-color-AB4{background-color:#EDF0FD;} + .d2-2875667596 .background-color-AB5{background-color:#F7F8FE;} + .d2-2875667596 .color-N1{color:#0A0F25;} + .d2-2875667596 .color-N2{color:#676C7E;} + .d2-2875667596 .color-N3{color:#9499AB;} + .d2-2875667596 .color-N4{color:#CFD2DD;} + .d2-2875667596 .color-N5{color:#DEE1EB;} + .d2-2875667596 .color-N6{color:#EEF1F8;} + .d2-2875667596 .color-N7{color:#FFFFFF;} + .d2-2875667596 .color-B1{color:#0D32B2;} + .d2-2875667596 .color-B2{color:#0D32B2;} + .d2-2875667596 .color-B3{color:#E3E9FD;} + .d2-2875667596 .color-B4{color:#E3E9FD;} + .d2-2875667596 .color-B5{color:#EDF0FD;} + .d2-2875667596 .color-B6{color:#F7F8FE;} + .d2-2875667596 .color-AA2{color:#4A6FF3;} + .d2-2875667596 .color-AA4{color:#EDF0FD;} + .d2-2875667596 .color-AA5{color:#F7F8FE;} + .d2-2875667596 .color-AB4{color:#EDF0FD;} + .d2-2875667596 .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}]]>Daphne SnickerdoodlePrudence McSnortlePolly Pizzazzle diff --git a/e2etests/testdata/stable/outside_bottom_labels/elk/board.exp.json b/e2etests/testdata/stable/outside_bottom_labels/elk/board.exp.json index d679787427..6f99e78a3c 100644 --- a/e2etests/testdata/stable/outside_bottom_labels/elk/board.exp.json +++ b/e2etests/testdata/stable/outside_bottom_labels/elk/board.exp.json @@ -151,6 +151,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 55.5, @@ -197,6 +198,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 245.25, @@ -243,6 +245,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 99, @@ -289,6 +292,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 284.5, @@ -335,6 +339,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 251, @@ -381,6 +386,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 182, diff --git a/e2etests/testdata/stable/outside_bottom_labels/elk/sketch.exp.svg b/e2etests/testdata/stable/outside_bottom_labels/elk/sketch.exp.svg index 946cf99888..db331309c3 100644 --- a/e2etests/testdata/stable/outside_bottom_labels/elk/sketch.exp.svg +++ b/e2etests/testdata/stable/outside_bottom_labels/elk/sketch.exp.svg @@ -1,9 +1,9 @@ -Daphne SnickerdoodlePrudence McSnortlePolly Pizzazzle + .d2-1572108005 .fill-N1{fill:#0A0F25;} + .d2-1572108005 .fill-N2{fill:#676C7E;} + .d2-1572108005 .fill-N3{fill:#9499AB;} + .d2-1572108005 .fill-N4{fill:#CFD2DD;} + .d2-1572108005 .fill-N5{fill:#DEE1EB;} + .d2-1572108005 .fill-N6{fill:#EEF1F8;} + .d2-1572108005 .fill-N7{fill:#FFFFFF;} + .d2-1572108005 .fill-B1{fill:#0D32B2;} + .d2-1572108005 .fill-B2{fill:#0D32B2;} + .d2-1572108005 .fill-B3{fill:#E3E9FD;} + .d2-1572108005 .fill-B4{fill:#E3E9FD;} + .d2-1572108005 .fill-B5{fill:#EDF0FD;} + .d2-1572108005 .fill-B6{fill:#F7F8FE;} + .d2-1572108005 .fill-AA2{fill:#4A6FF3;} + .d2-1572108005 .fill-AA4{fill:#EDF0FD;} + .d2-1572108005 .fill-AA5{fill:#F7F8FE;} + .d2-1572108005 .fill-AB4{fill:#EDF0FD;} + .d2-1572108005 .fill-AB5{fill:#F7F8FE;} + .d2-1572108005 .stroke-N1{stroke:#0A0F25;} + .d2-1572108005 .stroke-N2{stroke:#676C7E;} + .d2-1572108005 .stroke-N3{stroke:#9499AB;} + .d2-1572108005 .stroke-N4{stroke:#CFD2DD;} + .d2-1572108005 .stroke-N5{stroke:#DEE1EB;} + .d2-1572108005 .stroke-N6{stroke:#EEF1F8;} + .d2-1572108005 .stroke-N7{stroke:#FFFFFF;} + .d2-1572108005 .stroke-B1{stroke:#0D32B2;} + .d2-1572108005 .stroke-B2{stroke:#0D32B2;} + .d2-1572108005 .stroke-B3{stroke:#E3E9FD;} + .d2-1572108005 .stroke-B4{stroke:#E3E9FD;} + .d2-1572108005 .stroke-B5{stroke:#EDF0FD;} + .d2-1572108005 .stroke-B6{stroke:#F7F8FE;} + .d2-1572108005 .stroke-AA2{stroke:#4A6FF3;} + .d2-1572108005 .stroke-AA4{stroke:#EDF0FD;} + .d2-1572108005 .stroke-AA5{stroke:#F7F8FE;} + .d2-1572108005 .stroke-AB4{stroke:#EDF0FD;} + .d2-1572108005 .stroke-AB5{stroke:#F7F8FE;} + .d2-1572108005 .background-color-N1{background-color:#0A0F25;} + .d2-1572108005 .background-color-N2{background-color:#676C7E;} + .d2-1572108005 .background-color-N3{background-color:#9499AB;} + .d2-1572108005 .background-color-N4{background-color:#CFD2DD;} + .d2-1572108005 .background-color-N5{background-color:#DEE1EB;} + .d2-1572108005 .background-color-N6{background-color:#EEF1F8;} + .d2-1572108005 .background-color-N7{background-color:#FFFFFF;} + .d2-1572108005 .background-color-B1{background-color:#0D32B2;} + .d2-1572108005 .background-color-B2{background-color:#0D32B2;} + .d2-1572108005 .background-color-B3{background-color:#E3E9FD;} + .d2-1572108005 .background-color-B4{background-color:#E3E9FD;} + .d2-1572108005 .background-color-B5{background-color:#EDF0FD;} + .d2-1572108005 .background-color-B6{background-color:#F7F8FE;} + .d2-1572108005 .background-color-AA2{background-color:#4A6FF3;} + .d2-1572108005 .background-color-AA4{background-color:#EDF0FD;} + .d2-1572108005 .background-color-AA5{background-color:#F7F8FE;} + .d2-1572108005 .background-color-AB4{background-color:#EDF0FD;} + .d2-1572108005 .background-color-AB5{background-color:#F7F8FE;} + .d2-1572108005 .color-N1{color:#0A0F25;} + .d2-1572108005 .color-N2{color:#676C7E;} + .d2-1572108005 .color-N3{color:#9499AB;} + .d2-1572108005 .color-N4{color:#CFD2DD;} + .d2-1572108005 .color-N5{color:#DEE1EB;} + .d2-1572108005 .color-N6{color:#EEF1F8;} + .d2-1572108005 .color-N7{color:#FFFFFF;} + .d2-1572108005 .color-B1{color:#0D32B2;} + .d2-1572108005 .color-B2{color:#0D32B2;} + .d2-1572108005 .color-B3{color:#E3E9FD;} + .d2-1572108005 .color-B4{color:#E3E9FD;} + .d2-1572108005 .color-B5{color:#EDF0FD;} + .d2-1572108005 .color-B6{color:#F7F8FE;} + .d2-1572108005 .color-AA2{color:#4A6FF3;} + .d2-1572108005 .color-AA4{color:#EDF0FD;} + .d2-1572108005 .color-AA5{color:#F7F8FE;} + .d2-1572108005 .color-AB4{color:#EDF0FD;} + .d2-1572108005 .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}]]>Daphne SnickerdoodlePrudence McSnortlePolly Pizzazzle diff --git a/e2etests/testdata/stable/overlapping_child_label/dagre/board.exp.json b/e2etests/testdata/stable/overlapping_child_label/dagre/board.exp.json index 68e4a89c82..37b8fc0758 100644 --- a/e2etests/testdata/stable/overlapping_child_label/dagre/board.exp.json +++ b/e2etests/testdata/stable/overlapping_child_label/dagre/board.exp.json @@ -487,6 +487,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 75.5, diff --git a/e2etests/testdata/stable/overlapping_child_label/dagre/sketch.exp.svg b/e2etests/testdata/stable/overlapping_child_label/dagre/sketch.exp.svg index 7fbf9cc8b5..dfa1539ebe 100644 --- a/e2etests/testdata/stable/overlapping_child_label/dagre/sketch.exp.svg +++ b/e2etests/testdata/stable/overlapping_child_label/dagre/sketch.exp.svg @@ -1,16 +1,16 @@ -heyyaaaacccceeeeeeeeeeeeeeeeeeeyoheybbbbddddfffffffffff + .d2-864913672 .fill-N1{fill:#0A0F25;} + .d2-864913672 .fill-N2{fill:#676C7E;} + .d2-864913672 .fill-N3{fill:#9499AB;} + .d2-864913672 .fill-N4{fill:#CFD2DD;} + .d2-864913672 .fill-N5{fill:#DEE1EB;} + .d2-864913672 .fill-N6{fill:#EEF1F8;} + .d2-864913672 .fill-N7{fill:#FFFFFF;} + .d2-864913672 .fill-B1{fill:#0D32B2;} + .d2-864913672 .fill-B2{fill:#0D32B2;} + .d2-864913672 .fill-B3{fill:#E3E9FD;} + .d2-864913672 .fill-B4{fill:#E3E9FD;} + .d2-864913672 .fill-B5{fill:#EDF0FD;} + .d2-864913672 .fill-B6{fill:#F7F8FE;} + .d2-864913672 .fill-AA2{fill:#4A6FF3;} + .d2-864913672 .fill-AA4{fill:#EDF0FD;} + .d2-864913672 .fill-AA5{fill:#F7F8FE;} + .d2-864913672 .fill-AB4{fill:#EDF0FD;} + .d2-864913672 .fill-AB5{fill:#F7F8FE;} + .d2-864913672 .stroke-N1{stroke:#0A0F25;} + .d2-864913672 .stroke-N2{stroke:#676C7E;} + .d2-864913672 .stroke-N3{stroke:#9499AB;} + .d2-864913672 .stroke-N4{stroke:#CFD2DD;} + .d2-864913672 .stroke-N5{stroke:#DEE1EB;} + .d2-864913672 .stroke-N6{stroke:#EEF1F8;} + .d2-864913672 .stroke-N7{stroke:#FFFFFF;} + .d2-864913672 .stroke-B1{stroke:#0D32B2;} + .d2-864913672 .stroke-B2{stroke:#0D32B2;} + .d2-864913672 .stroke-B3{stroke:#E3E9FD;} + .d2-864913672 .stroke-B4{stroke:#E3E9FD;} + .d2-864913672 .stroke-B5{stroke:#EDF0FD;} + .d2-864913672 .stroke-B6{stroke:#F7F8FE;} + .d2-864913672 .stroke-AA2{stroke:#4A6FF3;} + .d2-864913672 .stroke-AA4{stroke:#EDF0FD;} + .d2-864913672 .stroke-AA5{stroke:#F7F8FE;} + .d2-864913672 .stroke-AB4{stroke:#EDF0FD;} + .d2-864913672 .stroke-AB5{stroke:#F7F8FE;} + .d2-864913672 .background-color-N1{background-color:#0A0F25;} + .d2-864913672 .background-color-N2{background-color:#676C7E;} + .d2-864913672 .background-color-N3{background-color:#9499AB;} + .d2-864913672 .background-color-N4{background-color:#CFD2DD;} + .d2-864913672 .background-color-N5{background-color:#DEE1EB;} + .d2-864913672 .background-color-N6{background-color:#EEF1F8;} + .d2-864913672 .background-color-N7{background-color:#FFFFFF;} + .d2-864913672 .background-color-B1{background-color:#0D32B2;} + .d2-864913672 .background-color-B2{background-color:#0D32B2;} + .d2-864913672 .background-color-B3{background-color:#E3E9FD;} + .d2-864913672 .background-color-B4{background-color:#E3E9FD;} + .d2-864913672 .background-color-B5{background-color:#EDF0FD;} + .d2-864913672 .background-color-B6{background-color:#F7F8FE;} + .d2-864913672 .background-color-AA2{background-color:#4A6FF3;} + .d2-864913672 .background-color-AA4{background-color:#EDF0FD;} + .d2-864913672 .background-color-AA5{background-color:#F7F8FE;} + .d2-864913672 .background-color-AB4{background-color:#EDF0FD;} + .d2-864913672 .background-color-AB5{background-color:#F7F8FE;} + .d2-864913672 .color-N1{color:#0A0F25;} + .d2-864913672 .color-N2{color:#676C7E;} + .d2-864913672 .color-N3{color:#9499AB;} + .d2-864913672 .color-N4{color:#CFD2DD;} + .d2-864913672 .color-N5{color:#DEE1EB;} + .d2-864913672 .color-N6{color:#EEF1F8;} + .d2-864913672 .color-N7{color:#FFFFFF;} + .d2-864913672 .color-B1{color:#0D32B2;} + .d2-864913672 .color-B2{color:#0D32B2;} + .d2-864913672 .color-B3{color:#E3E9FD;} + .d2-864913672 .color-B4{color:#E3E9FD;} + .d2-864913672 .color-B5{color:#EDF0FD;} + .d2-864913672 .color-B6{color:#F7F8FE;} + .d2-864913672 .color-AA2{color:#4A6FF3;} + .d2-864913672 .color-AA4{color:#EDF0FD;} + .d2-864913672 .color-AA5{color:#F7F8FE;} + .d2-864913672 .color-AB4{color:#EDF0FD;} + .d2-864913672 .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}]]>heyyaaaacccceeeeeeeeeeeeeeeeeeeyoheybbbbddddfffffffffff diff --git a/e2etests/testdata/stable/overlapping_child_label/elk/board.exp.json b/e2etests/testdata/stable/overlapping_child_label/elk/board.exp.json index 1875b17a29..c3e9ce8f72 100644 --- a/e2etests/testdata/stable/overlapping_child_label/elk/board.exp.json +++ b/e2etests/testdata/stable/overlapping_child_label/elk/board.exp.json @@ -487,6 +487,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 97.5, diff --git a/e2etests/testdata/stable/overlapping_child_label/elk/sketch.exp.svg b/e2etests/testdata/stable/overlapping_child_label/elk/sketch.exp.svg index 9eb9a9b695..477eec7543 100644 --- a/e2etests/testdata/stable/overlapping_child_label/elk/sketch.exp.svg +++ b/e2etests/testdata/stable/overlapping_child_label/elk/sketch.exp.svg @@ -1,16 +1,16 @@ -heyyaaaacccceeeeeeeeeeeeeeeeeeeyoheybbbbddddfffffffffff + .d2-1244222456 .fill-N1{fill:#0A0F25;} + .d2-1244222456 .fill-N2{fill:#676C7E;} + .d2-1244222456 .fill-N3{fill:#9499AB;} + .d2-1244222456 .fill-N4{fill:#CFD2DD;} + .d2-1244222456 .fill-N5{fill:#DEE1EB;} + .d2-1244222456 .fill-N6{fill:#EEF1F8;} + .d2-1244222456 .fill-N7{fill:#FFFFFF;} + .d2-1244222456 .fill-B1{fill:#0D32B2;} + .d2-1244222456 .fill-B2{fill:#0D32B2;} + .d2-1244222456 .fill-B3{fill:#E3E9FD;} + .d2-1244222456 .fill-B4{fill:#E3E9FD;} + .d2-1244222456 .fill-B5{fill:#EDF0FD;} + .d2-1244222456 .fill-B6{fill:#F7F8FE;} + .d2-1244222456 .fill-AA2{fill:#4A6FF3;} + .d2-1244222456 .fill-AA4{fill:#EDF0FD;} + .d2-1244222456 .fill-AA5{fill:#F7F8FE;} + .d2-1244222456 .fill-AB4{fill:#EDF0FD;} + .d2-1244222456 .fill-AB5{fill:#F7F8FE;} + .d2-1244222456 .stroke-N1{stroke:#0A0F25;} + .d2-1244222456 .stroke-N2{stroke:#676C7E;} + .d2-1244222456 .stroke-N3{stroke:#9499AB;} + .d2-1244222456 .stroke-N4{stroke:#CFD2DD;} + .d2-1244222456 .stroke-N5{stroke:#DEE1EB;} + .d2-1244222456 .stroke-N6{stroke:#EEF1F8;} + .d2-1244222456 .stroke-N7{stroke:#FFFFFF;} + .d2-1244222456 .stroke-B1{stroke:#0D32B2;} + .d2-1244222456 .stroke-B2{stroke:#0D32B2;} + .d2-1244222456 .stroke-B3{stroke:#E3E9FD;} + .d2-1244222456 .stroke-B4{stroke:#E3E9FD;} + .d2-1244222456 .stroke-B5{stroke:#EDF0FD;} + .d2-1244222456 .stroke-B6{stroke:#F7F8FE;} + .d2-1244222456 .stroke-AA2{stroke:#4A6FF3;} + .d2-1244222456 .stroke-AA4{stroke:#EDF0FD;} + .d2-1244222456 .stroke-AA5{stroke:#F7F8FE;} + .d2-1244222456 .stroke-AB4{stroke:#EDF0FD;} + .d2-1244222456 .stroke-AB5{stroke:#F7F8FE;} + .d2-1244222456 .background-color-N1{background-color:#0A0F25;} + .d2-1244222456 .background-color-N2{background-color:#676C7E;} + .d2-1244222456 .background-color-N3{background-color:#9499AB;} + .d2-1244222456 .background-color-N4{background-color:#CFD2DD;} + .d2-1244222456 .background-color-N5{background-color:#DEE1EB;} + .d2-1244222456 .background-color-N6{background-color:#EEF1F8;} + .d2-1244222456 .background-color-N7{background-color:#FFFFFF;} + .d2-1244222456 .background-color-B1{background-color:#0D32B2;} + .d2-1244222456 .background-color-B2{background-color:#0D32B2;} + .d2-1244222456 .background-color-B3{background-color:#E3E9FD;} + .d2-1244222456 .background-color-B4{background-color:#E3E9FD;} + .d2-1244222456 .background-color-B5{background-color:#EDF0FD;} + .d2-1244222456 .background-color-B6{background-color:#F7F8FE;} + .d2-1244222456 .background-color-AA2{background-color:#4A6FF3;} + .d2-1244222456 .background-color-AA4{background-color:#EDF0FD;} + .d2-1244222456 .background-color-AA5{background-color:#F7F8FE;} + .d2-1244222456 .background-color-AB4{background-color:#EDF0FD;} + .d2-1244222456 .background-color-AB5{background-color:#F7F8FE;} + .d2-1244222456 .color-N1{color:#0A0F25;} + .d2-1244222456 .color-N2{color:#676C7E;} + .d2-1244222456 .color-N3{color:#9499AB;} + .d2-1244222456 .color-N4{color:#CFD2DD;} + .d2-1244222456 .color-N5{color:#DEE1EB;} + .d2-1244222456 .color-N6{color:#EEF1F8;} + .d2-1244222456 .color-N7{color:#FFFFFF;} + .d2-1244222456 .color-B1{color:#0D32B2;} + .d2-1244222456 .color-B2{color:#0D32B2;} + .d2-1244222456 .color-B3{color:#E3E9FD;} + .d2-1244222456 .color-B4{color:#E3E9FD;} + .d2-1244222456 .color-B5{color:#EDF0FD;} + .d2-1244222456 .color-B6{color:#F7F8FE;} + .d2-1244222456 .color-AA2{color:#4A6FF3;} + .d2-1244222456 .color-AA4{color:#EDF0FD;} + .d2-1244222456 .color-AA5{color:#F7F8FE;} + .d2-1244222456 .color-AB4{color:#EDF0FD;} + .d2-1244222456 .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}]]>heyyaaaacccceeeeeeeeeeeeeeeeeeeyoheybbbbddddfffffffffff diff --git a/e2etests/testdata/stable/overlapping_image_container_labels/dagre/board.exp.json b/e2etests/testdata/stable/overlapping_image_container_labels/dagre/board.exp.json index 8241c4499a..d49f1caa6d 100644 --- a/e2etests/testdata/stable/overlapping_image_container_labels/dagre/board.exp.json +++ b/e2etests/testdata/stable/overlapping_image_container_labels/dagre/board.exp.json @@ -657,6 +657,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 466, @@ -704,6 +705,7 @@ "labelHeight": 21, "labelPosition": "INSIDE_MIDDLE_CENTER", "labelPercentage": 0, + "link": "", "route": [ { "x": 190, @@ -751,6 +753,7 @@ "labelHeight": 21, "labelPosition": "INSIDE_MIDDLE_CENTER", "labelPercentage": 0, + "link": "", "route": [ { "x": 286, @@ -798,6 +801,7 @@ "labelHeight": 21, "labelPosition": "INSIDE_MIDDLE_CENTER", "labelPercentage": 0, + "link": "", "route": [ { "x": 646, @@ -845,6 +849,7 @@ "labelHeight": 21, "labelPosition": "INSIDE_MIDDLE_CENTER", "labelPercentage": 0, + "link": "", "route": [ { "x": 742, @@ -892,6 +897,7 @@ "labelHeight": 21, "labelPosition": "INSIDE_MIDDLE_CENTER", "labelPercentage": 0, + "link": "", "route": [ { "x": 402, @@ -939,6 +945,7 @@ "labelHeight": 21, "labelPosition": "INSIDE_MIDDLE_CENTER", "labelPercentage": 0, + "link": "", "route": [ { "x": 530, diff --git a/e2etests/testdata/stable/overlapping_image_container_labels/dagre/sketch.exp.svg b/e2etests/testdata/stable/overlapping_image_container_labels/dagre/sketch.exp.svg index 024090df4f..d4994e9994 100644 --- a/e2etests/testdata/stable/overlapping_image_container_labels/dagre/sketch.exp.svg +++ b/e2etests/testdata/stable/overlapping_image_container_labels/dagre/sketch.exp.svg @@ -1,23 +1,23 @@ -rootcontainerrootleft2rightrootinnerrootinnerleft2rightleft2right to inner left2to inner rightto inner left2to inner rightto left2 container rootto right container root + .d2-1870728008 .fill-N1{fill:#0A0F25;} + .d2-1870728008 .fill-N2{fill:#676C7E;} + .d2-1870728008 .fill-N3{fill:#9499AB;} + .d2-1870728008 .fill-N4{fill:#CFD2DD;} + .d2-1870728008 .fill-N5{fill:#DEE1EB;} + .d2-1870728008 .fill-N6{fill:#EEF1F8;} + .d2-1870728008 .fill-N7{fill:#FFFFFF;} + .d2-1870728008 .fill-B1{fill:#0D32B2;} + .d2-1870728008 .fill-B2{fill:#0D32B2;} + .d2-1870728008 .fill-B3{fill:#E3E9FD;} + .d2-1870728008 .fill-B4{fill:#E3E9FD;} + .d2-1870728008 .fill-B5{fill:#EDF0FD;} + .d2-1870728008 .fill-B6{fill:#F7F8FE;} + .d2-1870728008 .fill-AA2{fill:#4A6FF3;} + .d2-1870728008 .fill-AA4{fill:#EDF0FD;} + .d2-1870728008 .fill-AA5{fill:#F7F8FE;} + .d2-1870728008 .fill-AB4{fill:#EDF0FD;} + .d2-1870728008 .fill-AB5{fill:#F7F8FE;} + .d2-1870728008 .stroke-N1{stroke:#0A0F25;} + .d2-1870728008 .stroke-N2{stroke:#676C7E;} + .d2-1870728008 .stroke-N3{stroke:#9499AB;} + .d2-1870728008 .stroke-N4{stroke:#CFD2DD;} + .d2-1870728008 .stroke-N5{stroke:#DEE1EB;} + .d2-1870728008 .stroke-N6{stroke:#EEF1F8;} + .d2-1870728008 .stroke-N7{stroke:#FFFFFF;} + .d2-1870728008 .stroke-B1{stroke:#0D32B2;} + .d2-1870728008 .stroke-B2{stroke:#0D32B2;} + .d2-1870728008 .stroke-B3{stroke:#E3E9FD;} + .d2-1870728008 .stroke-B4{stroke:#E3E9FD;} + .d2-1870728008 .stroke-B5{stroke:#EDF0FD;} + .d2-1870728008 .stroke-B6{stroke:#F7F8FE;} + .d2-1870728008 .stroke-AA2{stroke:#4A6FF3;} + .d2-1870728008 .stroke-AA4{stroke:#EDF0FD;} + .d2-1870728008 .stroke-AA5{stroke:#F7F8FE;} + .d2-1870728008 .stroke-AB4{stroke:#EDF0FD;} + .d2-1870728008 .stroke-AB5{stroke:#F7F8FE;} + .d2-1870728008 .background-color-N1{background-color:#0A0F25;} + .d2-1870728008 .background-color-N2{background-color:#676C7E;} + .d2-1870728008 .background-color-N3{background-color:#9499AB;} + .d2-1870728008 .background-color-N4{background-color:#CFD2DD;} + .d2-1870728008 .background-color-N5{background-color:#DEE1EB;} + .d2-1870728008 .background-color-N6{background-color:#EEF1F8;} + .d2-1870728008 .background-color-N7{background-color:#FFFFFF;} + .d2-1870728008 .background-color-B1{background-color:#0D32B2;} + .d2-1870728008 .background-color-B2{background-color:#0D32B2;} + .d2-1870728008 .background-color-B3{background-color:#E3E9FD;} + .d2-1870728008 .background-color-B4{background-color:#E3E9FD;} + .d2-1870728008 .background-color-B5{background-color:#EDF0FD;} + .d2-1870728008 .background-color-B6{background-color:#F7F8FE;} + .d2-1870728008 .background-color-AA2{background-color:#4A6FF3;} + .d2-1870728008 .background-color-AA4{background-color:#EDF0FD;} + .d2-1870728008 .background-color-AA5{background-color:#F7F8FE;} + .d2-1870728008 .background-color-AB4{background-color:#EDF0FD;} + .d2-1870728008 .background-color-AB5{background-color:#F7F8FE;} + .d2-1870728008 .color-N1{color:#0A0F25;} + .d2-1870728008 .color-N2{color:#676C7E;} + .d2-1870728008 .color-N3{color:#9499AB;} + .d2-1870728008 .color-N4{color:#CFD2DD;} + .d2-1870728008 .color-N5{color:#DEE1EB;} + .d2-1870728008 .color-N6{color:#EEF1F8;} + .d2-1870728008 .color-N7{color:#FFFFFF;} + .d2-1870728008 .color-B1{color:#0D32B2;} + .d2-1870728008 .color-B2{color:#0D32B2;} + .d2-1870728008 .color-B3{color:#E3E9FD;} + .d2-1870728008 .color-B4{color:#E3E9FD;} + .d2-1870728008 .color-B5{color:#EDF0FD;} + .d2-1870728008 .color-B6{color:#F7F8FE;} + .d2-1870728008 .color-AA2{color:#4A6FF3;} + .d2-1870728008 .color-AA4{color:#EDF0FD;} + .d2-1870728008 .color-AA5{color:#F7F8FE;} + .d2-1870728008 .color-AB4{color:#EDF0FD;} + .d2-1870728008 .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}]]>rootcontainerrootleft2rightrootinnerrootinnerleft2rightleft2right to inner left2to inner rightto inner left2to inner rightto left2 container rootto right container root diff --git a/e2etests/testdata/stable/overlapping_image_container_labels/elk/board.exp.json b/e2etests/testdata/stable/overlapping_image_container_labels/elk/board.exp.json index a986f5e447..dd721596f4 100644 --- a/e2etests/testdata/stable/overlapping_image_container_labels/elk/board.exp.json +++ b/e2etests/testdata/stable/overlapping_image_container_labels/elk/board.exp.json @@ -657,6 +657,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 548, @@ -695,6 +696,7 @@ "labelHeight": 21, "labelPosition": "INSIDE_MIDDLE_CENTER", "labelPercentage": 0, + "link": "", "route": [ { "x": 278.6659851074219, @@ -741,6 +743,7 @@ "labelHeight": 21, "labelPosition": "INSIDE_MIDDLE_CENTER", "labelPercentage": 0, + "link": "", "route": [ { "x": 321.3330078125, @@ -787,6 +790,7 @@ "labelHeight": 21, "labelPosition": "INSIDE_MIDDLE_CENTER", "labelPercentage": 0, + "link": "", "route": [ { "x": 774.666015625, @@ -833,6 +837,7 @@ "labelHeight": 21, "labelPosition": "INSIDE_MIDDLE_CENTER", "labelPercentage": 0, + "link": "", "route": [ { "x": 817.3330078125, @@ -879,6 +884,7 @@ "labelHeight": 21, "labelPosition": "INSIDE_MIDDLE_CENTER", "labelPercentage": 0, + "link": "", "route": [ { "x": 526.666015625, @@ -925,6 +931,7 @@ "labelHeight": 21, "labelPosition": "INSIDE_MIDDLE_CENTER", "labelPercentage": 0, + "link": "", "route": [ { "x": 569.3330078125, diff --git a/e2etests/testdata/stable/overlapping_image_container_labels/elk/sketch.exp.svg b/e2etests/testdata/stable/overlapping_image_container_labels/elk/sketch.exp.svg index 2bc3a18017..533af19634 100644 --- a/e2etests/testdata/stable/overlapping_image_container_labels/elk/sketch.exp.svg +++ b/e2etests/testdata/stable/overlapping_image_container_labels/elk/sketch.exp.svg @@ -1,23 +1,23 @@ -rootcontainerrootleft2rightrootinnerrootinnerleft2rightleft2right to inner left2to inner rightto inner left2to inner rightto left2 container rootto right container root + .d2-1620395766 .fill-N1{fill:#0A0F25;} + .d2-1620395766 .fill-N2{fill:#676C7E;} + .d2-1620395766 .fill-N3{fill:#9499AB;} + .d2-1620395766 .fill-N4{fill:#CFD2DD;} + .d2-1620395766 .fill-N5{fill:#DEE1EB;} + .d2-1620395766 .fill-N6{fill:#EEF1F8;} + .d2-1620395766 .fill-N7{fill:#FFFFFF;} + .d2-1620395766 .fill-B1{fill:#0D32B2;} + .d2-1620395766 .fill-B2{fill:#0D32B2;} + .d2-1620395766 .fill-B3{fill:#E3E9FD;} + .d2-1620395766 .fill-B4{fill:#E3E9FD;} + .d2-1620395766 .fill-B5{fill:#EDF0FD;} + .d2-1620395766 .fill-B6{fill:#F7F8FE;} + .d2-1620395766 .fill-AA2{fill:#4A6FF3;} + .d2-1620395766 .fill-AA4{fill:#EDF0FD;} + .d2-1620395766 .fill-AA5{fill:#F7F8FE;} + .d2-1620395766 .fill-AB4{fill:#EDF0FD;} + .d2-1620395766 .fill-AB5{fill:#F7F8FE;} + .d2-1620395766 .stroke-N1{stroke:#0A0F25;} + .d2-1620395766 .stroke-N2{stroke:#676C7E;} + .d2-1620395766 .stroke-N3{stroke:#9499AB;} + .d2-1620395766 .stroke-N4{stroke:#CFD2DD;} + .d2-1620395766 .stroke-N5{stroke:#DEE1EB;} + .d2-1620395766 .stroke-N6{stroke:#EEF1F8;} + .d2-1620395766 .stroke-N7{stroke:#FFFFFF;} + .d2-1620395766 .stroke-B1{stroke:#0D32B2;} + .d2-1620395766 .stroke-B2{stroke:#0D32B2;} + .d2-1620395766 .stroke-B3{stroke:#E3E9FD;} + .d2-1620395766 .stroke-B4{stroke:#E3E9FD;} + .d2-1620395766 .stroke-B5{stroke:#EDF0FD;} + .d2-1620395766 .stroke-B6{stroke:#F7F8FE;} + .d2-1620395766 .stroke-AA2{stroke:#4A6FF3;} + .d2-1620395766 .stroke-AA4{stroke:#EDF0FD;} + .d2-1620395766 .stroke-AA5{stroke:#F7F8FE;} + .d2-1620395766 .stroke-AB4{stroke:#EDF0FD;} + .d2-1620395766 .stroke-AB5{stroke:#F7F8FE;} + .d2-1620395766 .background-color-N1{background-color:#0A0F25;} + .d2-1620395766 .background-color-N2{background-color:#676C7E;} + .d2-1620395766 .background-color-N3{background-color:#9499AB;} + .d2-1620395766 .background-color-N4{background-color:#CFD2DD;} + .d2-1620395766 .background-color-N5{background-color:#DEE1EB;} + .d2-1620395766 .background-color-N6{background-color:#EEF1F8;} + .d2-1620395766 .background-color-N7{background-color:#FFFFFF;} + .d2-1620395766 .background-color-B1{background-color:#0D32B2;} + .d2-1620395766 .background-color-B2{background-color:#0D32B2;} + .d2-1620395766 .background-color-B3{background-color:#E3E9FD;} + .d2-1620395766 .background-color-B4{background-color:#E3E9FD;} + .d2-1620395766 .background-color-B5{background-color:#EDF0FD;} + .d2-1620395766 .background-color-B6{background-color:#F7F8FE;} + .d2-1620395766 .background-color-AA2{background-color:#4A6FF3;} + .d2-1620395766 .background-color-AA4{background-color:#EDF0FD;} + .d2-1620395766 .background-color-AA5{background-color:#F7F8FE;} + .d2-1620395766 .background-color-AB4{background-color:#EDF0FD;} + .d2-1620395766 .background-color-AB5{background-color:#F7F8FE;} + .d2-1620395766 .color-N1{color:#0A0F25;} + .d2-1620395766 .color-N2{color:#676C7E;} + .d2-1620395766 .color-N3{color:#9499AB;} + .d2-1620395766 .color-N4{color:#CFD2DD;} + .d2-1620395766 .color-N5{color:#DEE1EB;} + .d2-1620395766 .color-N6{color:#EEF1F8;} + .d2-1620395766 .color-N7{color:#FFFFFF;} + .d2-1620395766 .color-B1{color:#0D32B2;} + .d2-1620395766 .color-B2{color:#0D32B2;} + .d2-1620395766 .color-B3{color:#E3E9FD;} + .d2-1620395766 .color-B4{color:#E3E9FD;} + .d2-1620395766 .color-B5{color:#EDF0FD;} + .d2-1620395766 .color-B6{color:#F7F8FE;} + .d2-1620395766 .color-AA2{color:#4A6FF3;} + .d2-1620395766 .color-AA4{color:#EDF0FD;} + .d2-1620395766 .color-AA5{color:#F7F8FE;} + .d2-1620395766 .color-AB4{color:#EDF0FD;} + .d2-1620395766 .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}]]>rootcontainerrootleft2rightrootinnerrootinnerleft2rightleft2right to inner left2to inner rightto inner left2to inner rightto left2 container rootto right container root diff --git a/e2etests/testdata/stable/p/dagre/board.exp.json b/e2etests/testdata/stable/p/dagre/board.exp.json index 74eaf40777..6b75d31b8e 100644 --- a/e2etests/testdata/stable/p/dagre/board.exp.json +++ b/e2etests/testdata/stable/p/dagre/board.exp.json @@ -150,6 +150,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 928.5, @@ -197,6 +198,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 928.5, diff --git a/e2etests/testdata/stable/p/dagre/sketch.exp.svg b/e2etests/testdata/stable/p/dagre/sketch.exp.svg index 6cb1a888ef..d34566d590 100644 --- a/e2etests/testdata/stable/p/dagre/sketch.exp.svg +++ b/e2etests/testdata/stable/p/dagre/sketch.exp.svg @@ -1,20 +1,20 @@ -

    A paragraph is simply one or more consecutive lines of text, separated by one or more blank lines. (A blank line is any line that looks like a blank line -- a line containing nothing but spaces or tabs is considered blank.) Normal paragraphs should not be indented with spaces or tabs.

    -
    ab +ab diff --git a/e2etests/testdata/stable/p/elk/board.exp.json b/e2etests/testdata/stable/p/elk/board.exp.json index 73da203185..fe2bce03cc 100644 --- a/e2etests/testdata/stable/p/elk/board.exp.json +++ b/e2etests/testdata/stable/p/elk/board.exp.json @@ -150,6 +150,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 940.5, @@ -188,6 +189,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 940.5, diff --git a/e2etests/testdata/stable/p/elk/sketch.exp.svg b/e2etests/testdata/stable/p/elk/sketch.exp.svg index d55f69850f..58cfe62958 100644 --- a/e2etests/testdata/stable/p/elk/sketch.exp.svg +++ b/e2etests/testdata/stable/p/elk/sketch.exp.svg @@ -1,20 +1,20 @@ -

    A paragraph is simply one or more consecutive lines of text, separated by one or more blank lines. (A blank line is any line that looks like a blank line -- a line containing nothing but spaces or tabs is considered blank.) Normal paragraphs should not be indented with spaces or tabs.

    -
    ab +ab diff --git a/e2etests/testdata/stable/pre/dagre/board.exp.json b/e2etests/testdata/stable/pre/dagre/board.exp.json index d272f4e630..625ac3073b 100644 --- a/e2etests/testdata/stable/pre/dagre/board.exp.json +++ b/e2etests/testdata/stable/pre/dagre/board.exp.json @@ -150,6 +150,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 301, @@ -197,6 +198,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 301, diff --git a/e2etests/testdata/stable/pre/dagre/sketch.exp.svg b/e2etests/testdata/stable/pre/dagre/sketch.exp.svg index d5823892f1..e791081d44 100644 --- a/e2etests/testdata/stable/pre/dagre/sketch.exp.svg +++ b/e2etests/testdata/stable/pre/dagre/sketch.exp.svg @@ -1,27 +1,27 @@ -

    Here is an example of AppleScript:

    @@ -850,7 +850,7 @@ end tell

    A code block continues until it reaches a line that is not indented (or the end of the article).

    -
    ab +ab diff --git a/e2etests/testdata/stable/pre/elk/board.exp.json b/e2etests/testdata/stable/pre/elk/board.exp.json index fecef5b092..10736165ee 100644 --- a/e2etests/testdata/stable/pre/elk/board.exp.json +++ b/e2etests/testdata/stable/pre/elk/board.exp.json @@ -150,6 +150,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 313, @@ -188,6 +189,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 313, diff --git a/e2etests/testdata/stable/pre/elk/sketch.exp.svg b/e2etests/testdata/stable/pre/elk/sketch.exp.svg index e55ed4a77e..11517cb3aa 100644 --- a/e2etests/testdata/stable/pre/elk/sketch.exp.svg +++ b/e2etests/testdata/stable/pre/elk/sketch.exp.svg @@ -1,27 +1,27 @@ -

    Here is an example of AppleScript:

    @@ -850,7 +850,7 @@ end tell

    A code block continues until it reaches a line that is not indented (or the end of the article).

    -
    ab +ab diff --git a/e2etests/testdata/stable/self-referencing/dagre/board.exp.json b/e2etests/testdata/stable/self-referencing/dagre/board.exp.json index 504fa726ac..d7fcaed2c3 100644 --- a/e2etests/testdata/stable/self-referencing/dagre/board.exp.json +++ b/e2etests/testdata/stable/self-referencing/dagre/board.exp.json @@ -151,6 +151,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 53.33300018310547, @@ -234,6 +235,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 53, @@ -317,6 +319,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 26.5, @@ -364,6 +367,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 219, @@ -411,6 +415,7 @@ "labelHeight": 21, "labelPosition": "INSIDE_MIDDLE_CENTER", "labelPercentage": 0, + "link": "", "route": [ { "x": 244.66600036621094, diff --git a/e2etests/testdata/stable/self-referencing/dagre/sketch.exp.svg b/e2etests/testdata/stable/self-referencing/dagre/sketch.exp.svg index 8e0aca411b..b4f05edc24 100644 --- a/e2etests/testdata/stable/self-referencing/dagre/sketch.exp.svg +++ b/e2etests/testdata/stable/self-referencing/dagre/sketch.exp.svg @@ -1,16 +1,16 @@ -xyz hello + .d2-2505876363 .fill-N1{fill:#0A0F25;} + .d2-2505876363 .fill-N2{fill:#676C7E;} + .d2-2505876363 .fill-N3{fill:#9499AB;} + .d2-2505876363 .fill-N4{fill:#CFD2DD;} + .d2-2505876363 .fill-N5{fill:#DEE1EB;} + .d2-2505876363 .fill-N6{fill:#EEF1F8;} + .d2-2505876363 .fill-N7{fill:#FFFFFF;} + .d2-2505876363 .fill-B1{fill:#0D32B2;} + .d2-2505876363 .fill-B2{fill:#0D32B2;} + .d2-2505876363 .fill-B3{fill:#E3E9FD;} + .d2-2505876363 .fill-B4{fill:#E3E9FD;} + .d2-2505876363 .fill-B5{fill:#EDF0FD;} + .d2-2505876363 .fill-B6{fill:#F7F8FE;} + .d2-2505876363 .fill-AA2{fill:#4A6FF3;} + .d2-2505876363 .fill-AA4{fill:#EDF0FD;} + .d2-2505876363 .fill-AA5{fill:#F7F8FE;} + .d2-2505876363 .fill-AB4{fill:#EDF0FD;} + .d2-2505876363 .fill-AB5{fill:#F7F8FE;} + .d2-2505876363 .stroke-N1{stroke:#0A0F25;} + .d2-2505876363 .stroke-N2{stroke:#676C7E;} + .d2-2505876363 .stroke-N3{stroke:#9499AB;} + .d2-2505876363 .stroke-N4{stroke:#CFD2DD;} + .d2-2505876363 .stroke-N5{stroke:#DEE1EB;} + .d2-2505876363 .stroke-N6{stroke:#EEF1F8;} + .d2-2505876363 .stroke-N7{stroke:#FFFFFF;} + .d2-2505876363 .stroke-B1{stroke:#0D32B2;} + .d2-2505876363 .stroke-B2{stroke:#0D32B2;} + .d2-2505876363 .stroke-B3{stroke:#E3E9FD;} + .d2-2505876363 .stroke-B4{stroke:#E3E9FD;} + .d2-2505876363 .stroke-B5{stroke:#EDF0FD;} + .d2-2505876363 .stroke-B6{stroke:#F7F8FE;} + .d2-2505876363 .stroke-AA2{stroke:#4A6FF3;} + .d2-2505876363 .stroke-AA4{stroke:#EDF0FD;} + .d2-2505876363 .stroke-AA5{stroke:#F7F8FE;} + .d2-2505876363 .stroke-AB4{stroke:#EDF0FD;} + .d2-2505876363 .stroke-AB5{stroke:#F7F8FE;} + .d2-2505876363 .background-color-N1{background-color:#0A0F25;} + .d2-2505876363 .background-color-N2{background-color:#676C7E;} + .d2-2505876363 .background-color-N3{background-color:#9499AB;} + .d2-2505876363 .background-color-N4{background-color:#CFD2DD;} + .d2-2505876363 .background-color-N5{background-color:#DEE1EB;} + .d2-2505876363 .background-color-N6{background-color:#EEF1F8;} + .d2-2505876363 .background-color-N7{background-color:#FFFFFF;} + .d2-2505876363 .background-color-B1{background-color:#0D32B2;} + .d2-2505876363 .background-color-B2{background-color:#0D32B2;} + .d2-2505876363 .background-color-B3{background-color:#E3E9FD;} + .d2-2505876363 .background-color-B4{background-color:#E3E9FD;} + .d2-2505876363 .background-color-B5{background-color:#EDF0FD;} + .d2-2505876363 .background-color-B6{background-color:#F7F8FE;} + .d2-2505876363 .background-color-AA2{background-color:#4A6FF3;} + .d2-2505876363 .background-color-AA4{background-color:#EDF0FD;} + .d2-2505876363 .background-color-AA5{background-color:#F7F8FE;} + .d2-2505876363 .background-color-AB4{background-color:#EDF0FD;} + .d2-2505876363 .background-color-AB5{background-color:#F7F8FE;} + .d2-2505876363 .color-N1{color:#0A0F25;} + .d2-2505876363 .color-N2{color:#676C7E;} + .d2-2505876363 .color-N3{color:#9499AB;} + .d2-2505876363 .color-N4{color:#CFD2DD;} + .d2-2505876363 .color-N5{color:#DEE1EB;} + .d2-2505876363 .color-N6{color:#EEF1F8;} + .d2-2505876363 .color-N7{color:#FFFFFF;} + .d2-2505876363 .color-B1{color:#0D32B2;} + .d2-2505876363 .color-B2{color:#0D32B2;} + .d2-2505876363 .color-B3{color:#E3E9FD;} + .d2-2505876363 .color-B4{color:#E3E9FD;} + .d2-2505876363 .color-B5{color:#EDF0FD;} + .d2-2505876363 .color-B6{color:#F7F8FE;} + .d2-2505876363 .color-AA2{color:#4A6FF3;} + .d2-2505876363 .color-AA4{color:#EDF0FD;} + .d2-2505876363 .color-AA5{color:#F7F8FE;} + .d2-2505876363 .color-AB4{color:#EDF0FD;} + .d2-2505876363 .color-AB5{color:#F7F8FE;}.appendix text.text{fill:#0A0F25}.md{--color-fg-default:#0A0F25;--color-fg-muted:#676C7E;--color-fg-subtle:#9499AB;--color-canvas-default:#FFFFFF;--color-canvas-subtle:#EEF1F8;--color-border-default:#0D32B2;--color-border-muted:#0D32B2;--color-neutral-muted:#EEF1F8;--color-accent-fg:#0D32B2;--color-accent-emphasis:#0D32B2;--color-attention-subtle:#676C7E;--color-danger-fg:red;}.sketch-overlay-B1{fill:url(#streaks-darker);mix-blend-mode:lighten}.sketch-overlay-B2{fill:url(#streaks-darker);mix-blend-mode:lighten}.sketch-overlay-B3{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-B4{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-B5{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-B6{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-AA2{fill:url(#streaks-dark);mix-blend-mode:overlay}.sketch-overlay-AA4{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-AA5{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-AB4{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-AB5{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-N1{fill:url(#streaks-darker);mix-blend-mode:lighten}.sketch-overlay-N2{fill:url(#streaks-dark);mix-blend-mode:overlay}.sketch-overlay-N3{fill:url(#streaks-normal);mix-blend-mode:color-burn}.sketch-overlay-N4{fill:url(#streaks-normal);mix-blend-mode:color-burn}.sketch-overlay-N5{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-N6{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-N7{fill:url(#streaks-bright);mix-blend-mode:darken}.light-code{display: block}.dark-code{display: none}]]>xyz hello diff --git a/e2etests/testdata/stable/self-referencing/elk/board.exp.json b/e2etests/testdata/stable/self-referencing/elk/board.exp.json index 91abeece7e..f627cb8333 100644 --- a/e2etests/testdata/stable/self-referencing/elk/board.exp.json +++ b/e2etests/testdata/stable/self-referencing/elk/board.exp.json @@ -151,6 +151,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 62, @@ -197,6 +198,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 182, @@ -243,6 +245,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 122, @@ -289,6 +292,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 377, @@ -335,6 +339,7 @@ "labelHeight": 21, "labelPosition": "INSIDE_MIDDLE_CENTER", "labelPercentage": 0, + "link": "", "route": [ { "x": 337, diff --git a/e2etests/testdata/stable/self-referencing/elk/sketch.exp.svg b/e2etests/testdata/stable/self-referencing/elk/sketch.exp.svg index fd9e13bce5..a9dc862f67 100644 --- a/e2etests/testdata/stable/self-referencing/elk/sketch.exp.svg +++ b/e2etests/testdata/stable/self-referencing/elk/sketch.exp.svg @@ -1,16 +1,16 @@ -xyz hello + .d2-2990203384 .fill-N1{fill:#0A0F25;} + .d2-2990203384 .fill-N2{fill:#676C7E;} + .d2-2990203384 .fill-N3{fill:#9499AB;} + .d2-2990203384 .fill-N4{fill:#CFD2DD;} + .d2-2990203384 .fill-N5{fill:#DEE1EB;} + .d2-2990203384 .fill-N6{fill:#EEF1F8;} + .d2-2990203384 .fill-N7{fill:#FFFFFF;} + .d2-2990203384 .fill-B1{fill:#0D32B2;} + .d2-2990203384 .fill-B2{fill:#0D32B2;} + .d2-2990203384 .fill-B3{fill:#E3E9FD;} + .d2-2990203384 .fill-B4{fill:#E3E9FD;} + .d2-2990203384 .fill-B5{fill:#EDF0FD;} + .d2-2990203384 .fill-B6{fill:#F7F8FE;} + .d2-2990203384 .fill-AA2{fill:#4A6FF3;} + .d2-2990203384 .fill-AA4{fill:#EDF0FD;} + .d2-2990203384 .fill-AA5{fill:#F7F8FE;} + .d2-2990203384 .fill-AB4{fill:#EDF0FD;} + .d2-2990203384 .fill-AB5{fill:#F7F8FE;} + .d2-2990203384 .stroke-N1{stroke:#0A0F25;} + .d2-2990203384 .stroke-N2{stroke:#676C7E;} + .d2-2990203384 .stroke-N3{stroke:#9499AB;} + .d2-2990203384 .stroke-N4{stroke:#CFD2DD;} + .d2-2990203384 .stroke-N5{stroke:#DEE1EB;} + .d2-2990203384 .stroke-N6{stroke:#EEF1F8;} + .d2-2990203384 .stroke-N7{stroke:#FFFFFF;} + .d2-2990203384 .stroke-B1{stroke:#0D32B2;} + .d2-2990203384 .stroke-B2{stroke:#0D32B2;} + .d2-2990203384 .stroke-B3{stroke:#E3E9FD;} + .d2-2990203384 .stroke-B4{stroke:#E3E9FD;} + .d2-2990203384 .stroke-B5{stroke:#EDF0FD;} + .d2-2990203384 .stroke-B6{stroke:#F7F8FE;} + .d2-2990203384 .stroke-AA2{stroke:#4A6FF3;} + .d2-2990203384 .stroke-AA4{stroke:#EDF0FD;} + .d2-2990203384 .stroke-AA5{stroke:#F7F8FE;} + .d2-2990203384 .stroke-AB4{stroke:#EDF0FD;} + .d2-2990203384 .stroke-AB5{stroke:#F7F8FE;} + .d2-2990203384 .background-color-N1{background-color:#0A0F25;} + .d2-2990203384 .background-color-N2{background-color:#676C7E;} + .d2-2990203384 .background-color-N3{background-color:#9499AB;} + .d2-2990203384 .background-color-N4{background-color:#CFD2DD;} + .d2-2990203384 .background-color-N5{background-color:#DEE1EB;} + .d2-2990203384 .background-color-N6{background-color:#EEF1F8;} + .d2-2990203384 .background-color-N7{background-color:#FFFFFF;} + .d2-2990203384 .background-color-B1{background-color:#0D32B2;} + .d2-2990203384 .background-color-B2{background-color:#0D32B2;} + .d2-2990203384 .background-color-B3{background-color:#E3E9FD;} + .d2-2990203384 .background-color-B4{background-color:#E3E9FD;} + .d2-2990203384 .background-color-B5{background-color:#EDF0FD;} + .d2-2990203384 .background-color-B6{background-color:#F7F8FE;} + .d2-2990203384 .background-color-AA2{background-color:#4A6FF3;} + .d2-2990203384 .background-color-AA4{background-color:#EDF0FD;} + .d2-2990203384 .background-color-AA5{background-color:#F7F8FE;} + .d2-2990203384 .background-color-AB4{background-color:#EDF0FD;} + .d2-2990203384 .background-color-AB5{background-color:#F7F8FE;} + .d2-2990203384 .color-N1{color:#0A0F25;} + .d2-2990203384 .color-N2{color:#676C7E;} + .d2-2990203384 .color-N3{color:#9499AB;} + .d2-2990203384 .color-N4{color:#CFD2DD;} + .d2-2990203384 .color-N5{color:#DEE1EB;} + .d2-2990203384 .color-N6{color:#EEF1F8;} + .d2-2990203384 .color-N7{color:#FFFFFF;} + .d2-2990203384 .color-B1{color:#0D32B2;} + .d2-2990203384 .color-B2{color:#0D32B2;} + .d2-2990203384 .color-B3{color:#E3E9FD;} + .d2-2990203384 .color-B4{color:#E3E9FD;} + .d2-2990203384 .color-B5{color:#EDF0FD;} + .d2-2990203384 .color-B6{color:#F7F8FE;} + .d2-2990203384 .color-AA2{color:#4A6FF3;} + .d2-2990203384 .color-AA4{color:#EDF0FD;} + .d2-2990203384 .color-AA5{color:#F7F8FE;} + .d2-2990203384 .color-AB4{color:#EDF0FD;} + .d2-2990203384 .color-AB5{color:#F7F8FE;}.appendix text.text{fill:#0A0F25}.md{--color-fg-default:#0A0F25;--color-fg-muted:#676C7E;--color-fg-subtle:#9499AB;--color-canvas-default:#FFFFFF;--color-canvas-subtle:#EEF1F8;--color-border-default:#0D32B2;--color-border-muted:#0D32B2;--color-neutral-muted:#EEF1F8;--color-accent-fg:#0D32B2;--color-accent-emphasis:#0D32B2;--color-attention-subtle:#676C7E;--color-danger-fg:red;}.sketch-overlay-B1{fill:url(#streaks-darker);mix-blend-mode:lighten}.sketch-overlay-B2{fill:url(#streaks-darker);mix-blend-mode:lighten}.sketch-overlay-B3{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-B4{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-B5{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-B6{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-AA2{fill:url(#streaks-dark);mix-blend-mode:overlay}.sketch-overlay-AA4{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-AA5{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-AB4{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-AB5{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-N1{fill:url(#streaks-darker);mix-blend-mode:lighten}.sketch-overlay-N2{fill:url(#streaks-dark);mix-blend-mode:overlay}.sketch-overlay-N3{fill:url(#streaks-normal);mix-blend-mode:color-burn}.sketch-overlay-N4{fill:url(#streaks-normal);mix-blend-mode:color-burn}.sketch-overlay-N5{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-N6{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-N7{fill:url(#streaks-bright);mix-blend-mode:darken}.light-code{display: block}.dark-code{display: none}]]>xyz hello diff --git a/e2etests/testdata/stable/sequence-inter-span-self/dagre/board.exp.json b/e2etests/testdata/stable/sequence-inter-span-self/dagre/board.exp.json index 8ee0375170..b4f4d41c78 100644 --- a/e2etests/testdata/stable/sequence-inter-span-self/dagre/board.exp.json +++ b/e2etests/testdata/stable/sequence-inter-span-self/dagre/board.exp.json @@ -190,6 +190,7 @@ "labelHeight": 21, "labelPosition": "INSIDE_MIDDLE_CENTER", "labelPercentage": 0, + "link": "", "route": [ { "x": 68, @@ -228,6 +229,7 @@ "labelHeight": 21, "labelPosition": "INSIDE_MIDDLE_CENTER", "labelPercentage": 0, + "link": "", "route": [ { "x": 68, @@ -274,6 +276,7 @@ "labelHeight": 21, "labelPosition": "INSIDE_MIDDLE_CENTER", "labelPercentage": 0, + "link": "", "route": [ { "x": 68, @@ -312,6 +315,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 62, @@ -350,6 +354,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 212, diff --git a/e2etests/testdata/stable/sequence-inter-span-self/dagre/sketch.exp.svg b/e2etests/testdata/stable/sequence-inter-span-self/dagre/sketch.exp.svg index cca4e6f562..94961341a7 100644 --- a/e2etests/testdata/stable/sequence-inter-span-self/dagre/sketch.exp.svg +++ b/e2etests/testdata/stable/sequence-inter-span-self/dagre/sketch.exp.svg @@ -1,16 +1,16 @@ -AB fooredirectbar + .d2-270751666 .fill-N1{fill:#0A0F25;} + .d2-270751666 .fill-N2{fill:#676C7E;} + .d2-270751666 .fill-N3{fill:#9499AB;} + .d2-270751666 .fill-N4{fill:#CFD2DD;} + .d2-270751666 .fill-N5{fill:#DEE1EB;} + .d2-270751666 .fill-N6{fill:#EEF1F8;} + .d2-270751666 .fill-N7{fill:#FFFFFF;} + .d2-270751666 .fill-B1{fill:#0D32B2;} + .d2-270751666 .fill-B2{fill:#0D32B2;} + .d2-270751666 .fill-B3{fill:#E3E9FD;} + .d2-270751666 .fill-B4{fill:#E3E9FD;} + .d2-270751666 .fill-B5{fill:#EDF0FD;} + .d2-270751666 .fill-B6{fill:#F7F8FE;} + .d2-270751666 .fill-AA2{fill:#4A6FF3;} + .d2-270751666 .fill-AA4{fill:#EDF0FD;} + .d2-270751666 .fill-AA5{fill:#F7F8FE;} + .d2-270751666 .fill-AB4{fill:#EDF0FD;} + .d2-270751666 .fill-AB5{fill:#F7F8FE;} + .d2-270751666 .stroke-N1{stroke:#0A0F25;} + .d2-270751666 .stroke-N2{stroke:#676C7E;} + .d2-270751666 .stroke-N3{stroke:#9499AB;} + .d2-270751666 .stroke-N4{stroke:#CFD2DD;} + .d2-270751666 .stroke-N5{stroke:#DEE1EB;} + .d2-270751666 .stroke-N6{stroke:#EEF1F8;} + .d2-270751666 .stroke-N7{stroke:#FFFFFF;} + .d2-270751666 .stroke-B1{stroke:#0D32B2;} + .d2-270751666 .stroke-B2{stroke:#0D32B2;} + .d2-270751666 .stroke-B3{stroke:#E3E9FD;} + .d2-270751666 .stroke-B4{stroke:#E3E9FD;} + .d2-270751666 .stroke-B5{stroke:#EDF0FD;} + .d2-270751666 .stroke-B6{stroke:#F7F8FE;} + .d2-270751666 .stroke-AA2{stroke:#4A6FF3;} + .d2-270751666 .stroke-AA4{stroke:#EDF0FD;} + .d2-270751666 .stroke-AA5{stroke:#F7F8FE;} + .d2-270751666 .stroke-AB4{stroke:#EDF0FD;} + .d2-270751666 .stroke-AB5{stroke:#F7F8FE;} + .d2-270751666 .background-color-N1{background-color:#0A0F25;} + .d2-270751666 .background-color-N2{background-color:#676C7E;} + .d2-270751666 .background-color-N3{background-color:#9499AB;} + .d2-270751666 .background-color-N4{background-color:#CFD2DD;} + .d2-270751666 .background-color-N5{background-color:#DEE1EB;} + .d2-270751666 .background-color-N6{background-color:#EEF1F8;} + .d2-270751666 .background-color-N7{background-color:#FFFFFF;} + .d2-270751666 .background-color-B1{background-color:#0D32B2;} + .d2-270751666 .background-color-B2{background-color:#0D32B2;} + .d2-270751666 .background-color-B3{background-color:#E3E9FD;} + .d2-270751666 .background-color-B4{background-color:#E3E9FD;} + .d2-270751666 .background-color-B5{background-color:#EDF0FD;} + .d2-270751666 .background-color-B6{background-color:#F7F8FE;} + .d2-270751666 .background-color-AA2{background-color:#4A6FF3;} + .d2-270751666 .background-color-AA4{background-color:#EDF0FD;} + .d2-270751666 .background-color-AA5{background-color:#F7F8FE;} + .d2-270751666 .background-color-AB4{background-color:#EDF0FD;} + .d2-270751666 .background-color-AB5{background-color:#F7F8FE;} + .d2-270751666 .color-N1{color:#0A0F25;} + .d2-270751666 .color-N2{color:#676C7E;} + .d2-270751666 .color-N3{color:#9499AB;} + .d2-270751666 .color-N4{color:#CFD2DD;} + .d2-270751666 .color-N5{color:#DEE1EB;} + .d2-270751666 .color-N6{color:#EEF1F8;} + .d2-270751666 .color-N7{color:#FFFFFF;} + .d2-270751666 .color-B1{color:#0D32B2;} + .d2-270751666 .color-B2{color:#0D32B2;} + .d2-270751666 .color-B3{color:#E3E9FD;} + .d2-270751666 .color-B4{color:#E3E9FD;} + .d2-270751666 .color-B5{color:#EDF0FD;} + .d2-270751666 .color-B6{color:#F7F8FE;} + .d2-270751666 .color-AA2{color:#4A6FF3;} + .d2-270751666 .color-AA4{color:#EDF0FD;} + .d2-270751666 .color-AA5{color:#F7F8FE;} + .d2-270751666 .color-AB4{color:#EDF0FD;} + .d2-270751666 .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}]]>AB fooredirectbar diff --git a/e2etests/testdata/stable/sequence-inter-span-self/elk/board.exp.json b/e2etests/testdata/stable/sequence-inter-span-self/elk/board.exp.json index 8ee0375170..b4f4d41c78 100644 --- a/e2etests/testdata/stable/sequence-inter-span-self/elk/board.exp.json +++ b/e2etests/testdata/stable/sequence-inter-span-self/elk/board.exp.json @@ -190,6 +190,7 @@ "labelHeight": 21, "labelPosition": "INSIDE_MIDDLE_CENTER", "labelPercentage": 0, + "link": "", "route": [ { "x": 68, @@ -228,6 +229,7 @@ "labelHeight": 21, "labelPosition": "INSIDE_MIDDLE_CENTER", "labelPercentage": 0, + "link": "", "route": [ { "x": 68, @@ -274,6 +276,7 @@ "labelHeight": 21, "labelPosition": "INSIDE_MIDDLE_CENTER", "labelPercentage": 0, + "link": "", "route": [ { "x": 68, @@ -312,6 +315,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 62, @@ -350,6 +354,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 212, diff --git a/e2etests/testdata/stable/sequence-inter-span-self/elk/sketch.exp.svg b/e2etests/testdata/stable/sequence-inter-span-self/elk/sketch.exp.svg index cca4e6f562..94961341a7 100644 --- a/e2etests/testdata/stable/sequence-inter-span-self/elk/sketch.exp.svg +++ b/e2etests/testdata/stable/sequence-inter-span-self/elk/sketch.exp.svg @@ -1,16 +1,16 @@ -AB fooredirectbar + .d2-270751666 .fill-N1{fill:#0A0F25;} + .d2-270751666 .fill-N2{fill:#676C7E;} + .d2-270751666 .fill-N3{fill:#9499AB;} + .d2-270751666 .fill-N4{fill:#CFD2DD;} + .d2-270751666 .fill-N5{fill:#DEE1EB;} + .d2-270751666 .fill-N6{fill:#EEF1F8;} + .d2-270751666 .fill-N7{fill:#FFFFFF;} + .d2-270751666 .fill-B1{fill:#0D32B2;} + .d2-270751666 .fill-B2{fill:#0D32B2;} + .d2-270751666 .fill-B3{fill:#E3E9FD;} + .d2-270751666 .fill-B4{fill:#E3E9FD;} + .d2-270751666 .fill-B5{fill:#EDF0FD;} + .d2-270751666 .fill-B6{fill:#F7F8FE;} + .d2-270751666 .fill-AA2{fill:#4A6FF3;} + .d2-270751666 .fill-AA4{fill:#EDF0FD;} + .d2-270751666 .fill-AA5{fill:#F7F8FE;} + .d2-270751666 .fill-AB4{fill:#EDF0FD;} + .d2-270751666 .fill-AB5{fill:#F7F8FE;} + .d2-270751666 .stroke-N1{stroke:#0A0F25;} + .d2-270751666 .stroke-N2{stroke:#676C7E;} + .d2-270751666 .stroke-N3{stroke:#9499AB;} + .d2-270751666 .stroke-N4{stroke:#CFD2DD;} + .d2-270751666 .stroke-N5{stroke:#DEE1EB;} + .d2-270751666 .stroke-N6{stroke:#EEF1F8;} + .d2-270751666 .stroke-N7{stroke:#FFFFFF;} + .d2-270751666 .stroke-B1{stroke:#0D32B2;} + .d2-270751666 .stroke-B2{stroke:#0D32B2;} + .d2-270751666 .stroke-B3{stroke:#E3E9FD;} + .d2-270751666 .stroke-B4{stroke:#E3E9FD;} + .d2-270751666 .stroke-B5{stroke:#EDF0FD;} + .d2-270751666 .stroke-B6{stroke:#F7F8FE;} + .d2-270751666 .stroke-AA2{stroke:#4A6FF3;} + .d2-270751666 .stroke-AA4{stroke:#EDF0FD;} + .d2-270751666 .stroke-AA5{stroke:#F7F8FE;} + .d2-270751666 .stroke-AB4{stroke:#EDF0FD;} + .d2-270751666 .stroke-AB5{stroke:#F7F8FE;} + .d2-270751666 .background-color-N1{background-color:#0A0F25;} + .d2-270751666 .background-color-N2{background-color:#676C7E;} + .d2-270751666 .background-color-N3{background-color:#9499AB;} + .d2-270751666 .background-color-N4{background-color:#CFD2DD;} + .d2-270751666 .background-color-N5{background-color:#DEE1EB;} + .d2-270751666 .background-color-N6{background-color:#EEF1F8;} + .d2-270751666 .background-color-N7{background-color:#FFFFFF;} + .d2-270751666 .background-color-B1{background-color:#0D32B2;} + .d2-270751666 .background-color-B2{background-color:#0D32B2;} + .d2-270751666 .background-color-B3{background-color:#E3E9FD;} + .d2-270751666 .background-color-B4{background-color:#E3E9FD;} + .d2-270751666 .background-color-B5{background-color:#EDF0FD;} + .d2-270751666 .background-color-B6{background-color:#F7F8FE;} + .d2-270751666 .background-color-AA2{background-color:#4A6FF3;} + .d2-270751666 .background-color-AA4{background-color:#EDF0FD;} + .d2-270751666 .background-color-AA5{background-color:#F7F8FE;} + .d2-270751666 .background-color-AB4{background-color:#EDF0FD;} + .d2-270751666 .background-color-AB5{background-color:#F7F8FE;} + .d2-270751666 .color-N1{color:#0A0F25;} + .d2-270751666 .color-N2{color:#676C7E;} + .d2-270751666 .color-N3{color:#9499AB;} + .d2-270751666 .color-N4{color:#CFD2DD;} + .d2-270751666 .color-N5{color:#DEE1EB;} + .d2-270751666 .color-N6{color:#EEF1F8;} + .d2-270751666 .color-N7{color:#FFFFFF;} + .d2-270751666 .color-B1{color:#0D32B2;} + .d2-270751666 .color-B2{color:#0D32B2;} + .d2-270751666 .color-B3{color:#E3E9FD;} + .d2-270751666 .color-B4{color:#E3E9FD;} + .d2-270751666 .color-B5{color:#EDF0FD;} + .d2-270751666 .color-B6{color:#F7F8FE;} + .d2-270751666 .color-AA2{color:#4A6FF3;} + .d2-270751666 .color-AA4{color:#EDF0FD;} + .d2-270751666 .color-AA5{color:#F7F8FE;} + .d2-270751666 .color-AB4{color:#EDF0FD;} + .d2-270751666 .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}]]>AB fooredirectbar diff --git a/e2etests/testdata/stable/sequence_diagram_actor_distance/dagre/board.exp.json b/e2etests/testdata/stable/sequence_diagram_actor_distance/dagre/board.exp.json index 055bab3847..1d2de17ecc 100644 --- a/e2etests/testdata/stable/sequence_diagram_actor_distance/dagre/board.exp.json +++ b/e2etests/testdata/stable/sequence_diagram_actor_distance/dagre/board.exp.json @@ -274,6 +274,7 @@ "labelHeight": 21, "labelPosition": "INSIDE_MIDDLE_CENTER", "labelPercentage": 0, + "link": "", "route": [ { "x": 225.5, @@ -312,6 +313,7 @@ "labelHeight": 21, "labelPosition": "INSIDE_MIDDLE_CENTER", "labelPercentage": 0, + "link": "", "route": [ { "x": 225.5, @@ -350,6 +352,7 @@ "labelHeight": 21, "labelPosition": "INSIDE_MIDDLE_CENTER", "labelPercentage": 0, + "link": "", "route": [ { "x": 658.5, @@ -388,6 +391,7 @@ "labelHeight": 21, "labelPosition": "INSIDE_MIDDLE_CENTER", "labelPercentage": 0, + "link": "", "route": [ { "x": 225.5, @@ -426,6 +430,7 @@ "labelHeight": 21, "labelPosition": "INSIDE_MIDDLE_CENTER", "labelPercentage": 0, + "link": "", "route": [ { "x": 1091, @@ -464,6 +469,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 225.5, @@ -502,6 +508,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 225.5, @@ -540,6 +547,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 658.5, @@ -578,6 +586,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 1091, @@ -616,6 +625,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 1562, @@ -654,6 +664,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 1724.5, @@ -692,6 +703,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 2066.5, diff --git a/e2etests/testdata/stable/sequence_diagram_actor_distance/dagre/sketch.exp.svg b/e2etests/testdata/stable/sequence_diagram_actor_distance/dagre/sketch.exp.svg index 3d35447f22..09494c7c13 100644 --- a/e2etests/testdata/stable/sequence_diagram_actor_distance/dagre/sketch.exp.svg +++ b/e2etests/testdata/stable/sequence_diagram_actor_distance/dagre/sketch.exp.svg @@ -1,16 +1,16 @@ -an actor with a really long label that will break everythinganactorwithareallylonglabelthatwillbreakeverythingsimplea short onefar awaywhat if there were no labels between this actor and the previous one shortlong label for testing purposes and it must be really, really longshortthis should span many actors lifelines so we know how it will look like when redering a long label over many actorslong label for testing purposes and it must be really, really long + .d2-1893158035 .fill-N1{fill:#0A0F25;} + .d2-1893158035 .fill-N2{fill:#676C7E;} + .d2-1893158035 .fill-N3{fill:#9499AB;} + .d2-1893158035 .fill-N4{fill:#CFD2DD;} + .d2-1893158035 .fill-N5{fill:#DEE1EB;} + .d2-1893158035 .fill-N6{fill:#EEF1F8;} + .d2-1893158035 .fill-N7{fill:#FFFFFF;} + .d2-1893158035 .fill-B1{fill:#0D32B2;} + .d2-1893158035 .fill-B2{fill:#0D32B2;} + .d2-1893158035 .fill-B3{fill:#E3E9FD;} + .d2-1893158035 .fill-B4{fill:#E3E9FD;} + .d2-1893158035 .fill-B5{fill:#EDF0FD;} + .d2-1893158035 .fill-B6{fill:#F7F8FE;} + .d2-1893158035 .fill-AA2{fill:#4A6FF3;} + .d2-1893158035 .fill-AA4{fill:#EDF0FD;} + .d2-1893158035 .fill-AA5{fill:#F7F8FE;} + .d2-1893158035 .fill-AB4{fill:#EDF0FD;} + .d2-1893158035 .fill-AB5{fill:#F7F8FE;} + .d2-1893158035 .stroke-N1{stroke:#0A0F25;} + .d2-1893158035 .stroke-N2{stroke:#676C7E;} + .d2-1893158035 .stroke-N3{stroke:#9499AB;} + .d2-1893158035 .stroke-N4{stroke:#CFD2DD;} + .d2-1893158035 .stroke-N5{stroke:#DEE1EB;} + .d2-1893158035 .stroke-N6{stroke:#EEF1F8;} + .d2-1893158035 .stroke-N7{stroke:#FFFFFF;} + .d2-1893158035 .stroke-B1{stroke:#0D32B2;} + .d2-1893158035 .stroke-B2{stroke:#0D32B2;} + .d2-1893158035 .stroke-B3{stroke:#E3E9FD;} + .d2-1893158035 .stroke-B4{stroke:#E3E9FD;} + .d2-1893158035 .stroke-B5{stroke:#EDF0FD;} + .d2-1893158035 .stroke-B6{stroke:#F7F8FE;} + .d2-1893158035 .stroke-AA2{stroke:#4A6FF3;} + .d2-1893158035 .stroke-AA4{stroke:#EDF0FD;} + .d2-1893158035 .stroke-AA5{stroke:#F7F8FE;} + .d2-1893158035 .stroke-AB4{stroke:#EDF0FD;} + .d2-1893158035 .stroke-AB5{stroke:#F7F8FE;} + .d2-1893158035 .background-color-N1{background-color:#0A0F25;} + .d2-1893158035 .background-color-N2{background-color:#676C7E;} + .d2-1893158035 .background-color-N3{background-color:#9499AB;} + .d2-1893158035 .background-color-N4{background-color:#CFD2DD;} + .d2-1893158035 .background-color-N5{background-color:#DEE1EB;} + .d2-1893158035 .background-color-N6{background-color:#EEF1F8;} + .d2-1893158035 .background-color-N7{background-color:#FFFFFF;} + .d2-1893158035 .background-color-B1{background-color:#0D32B2;} + .d2-1893158035 .background-color-B2{background-color:#0D32B2;} + .d2-1893158035 .background-color-B3{background-color:#E3E9FD;} + .d2-1893158035 .background-color-B4{background-color:#E3E9FD;} + .d2-1893158035 .background-color-B5{background-color:#EDF0FD;} + .d2-1893158035 .background-color-B6{background-color:#F7F8FE;} + .d2-1893158035 .background-color-AA2{background-color:#4A6FF3;} + .d2-1893158035 .background-color-AA4{background-color:#EDF0FD;} + .d2-1893158035 .background-color-AA5{background-color:#F7F8FE;} + .d2-1893158035 .background-color-AB4{background-color:#EDF0FD;} + .d2-1893158035 .background-color-AB5{background-color:#F7F8FE;} + .d2-1893158035 .color-N1{color:#0A0F25;} + .d2-1893158035 .color-N2{color:#676C7E;} + .d2-1893158035 .color-N3{color:#9499AB;} + .d2-1893158035 .color-N4{color:#CFD2DD;} + .d2-1893158035 .color-N5{color:#DEE1EB;} + .d2-1893158035 .color-N6{color:#EEF1F8;} + .d2-1893158035 .color-N7{color:#FFFFFF;} + .d2-1893158035 .color-B1{color:#0D32B2;} + .d2-1893158035 .color-B2{color:#0D32B2;} + .d2-1893158035 .color-B3{color:#E3E9FD;} + .d2-1893158035 .color-B4{color:#E3E9FD;} + .d2-1893158035 .color-B5{color:#EDF0FD;} + .d2-1893158035 .color-B6{color:#F7F8FE;} + .d2-1893158035 .color-AA2{color:#4A6FF3;} + .d2-1893158035 .color-AA4{color:#EDF0FD;} + .d2-1893158035 .color-AA5{color:#F7F8FE;} + .d2-1893158035 .color-AB4{color:#EDF0FD;} + .d2-1893158035 .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}]]>an actor with a really long label that will break everythinganactorwithareallylonglabelthatwillbreakeverythingsimplea short onefar awaywhat if there were no labels between this actor and the previous one shortlong label for testing purposes and it must be really, really longshortthis should span many actors lifelines so we know how it will look like when redering a long label over many actorslong label for testing purposes and it must be really, really long diff --git a/e2etests/testdata/stable/sequence_diagram_actor_distance/elk/board.exp.json b/e2etests/testdata/stable/sequence_diagram_actor_distance/elk/board.exp.json index 055bab3847..1d2de17ecc 100644 --- a/e2etests/testdata/stable/sequence_diagram_actor_distance/elk/board.exp.json +++ b/e2etests/testdata/stable/sequence_diagram_actor_distance/elk/board.exp.json @@ -274,6 +274,7 @@ "labelHeight": 21, "labelPosition": "INSIDE_MIDDLE_CENTER", "labelPercentage": 0, + "link": "", "route": [ { "x": 225.5, @@ -312,6 +313,7 @@ "labelHeight": 21, "labelPosition": "INSIDE_MIDDLE_CENTER", "labelPercentage": 0, + "link": "", "route": [ { "x": 225.5, @@ -350,6 +352,7 @@ "labelHeight": 21, "labelPosition": "INSIDE_MIDDLE_CENTER", "labelPercentage": 0, + "link": "", "route": [ { "x": 658.5, @@ -388,6 +391,7 @@ "labelHeight": 21, "labelPosition": "INSIDE_MIDDLE_CENTER", "labelPercentage": 0, + "link": "", "route": [ { "x": 225.5, @@ -426,6 +430,7 @@ "labelHeight": 21, "labelPosition": "INSIDE_MIDDLE_CENTER", "labelPercentage": 0, + "link": "", "route": [ { "x": 1091, @@ -464,6 +469,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 225.5, @@ -502,6 +508,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 225.5, @@ -540,6 +547,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 658.5, @@ -578,6 +586,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 1091, @@ -616,6 +625,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 1562, @@ -654,6 +664,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 1724.5, @@ -692,6 +703,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 2066.5, diff --git a/e2etests/testdata/stable/sequence_diagram_actor_distance/elk/sketch.exp.svg b/e2etests/testdata/stable/sequence_diagram_actor_distance/elk/sketch.exp.svg index 3d35447f22..09494c7c13 100644 --- a/e2etests/testdata/stable/sequence_diagram_actor_distance/elk/sketch.exp.svg +++ b/e2etests/testdata/stable/sequence_diagram_actor_distance/elk/sketch.exp.svg @@ -1,16 +1,16 @@ -an actor with a really long label that will break everythinganactorwithareallylonglabelthatwillbreakeverythingsimplea short onefar awaywhat if there were no labels between this actor and the previous one shortlong label for testing purposes and it must be really, really longshortthis should span many actors lifelines so we know how it will look like when redering a long label over many actorslong label for testing purposes and it must be really, really long + .d2-1893158035 .fill-N1{fill:#0A0F25;} + .d2-1893158035 .fill-N2{fill:#676C7E;} + .d2-1893158035 .fill-N3{fill:#9499AB;} + .d2-1893158035 .fill-N4{fill:#CFD2DD;} + .d2-1893158035 .fill-N5{fill:#DEE1EB;} + .d2-1893158035 .fill-N6{fill:#EEF1F8;} + .d2-1893158035 .fill-N7{fill:#FFFFFF;} + .d2-1893158035 .fill-B1{fill:#0D32B2;} + .d2-1893158035 .fill-B2{fill:#0D32B2;} + .d2-1893158035 .fill-B3{fill:#E3E9FD;} + .d2-1893158035 .fill-B4{fill:#E3E9FD;} + .d2-1893158035 .fill-B5{fill:#EDF0FD;} + .d2-1893158035 .fill-B6{fill:#F7F8FE;} + .d2-1893158035 .fill-AA2{fill:#4A6FF3;} + .d2-1893158035 .fill-AA4{fill:#EDF0FD;} + .d2-1893158035 .fill-AA5{fill:#F7F8FE;} + .d2-1893158035 .fill-AB4{fill:#EDF0FD;} + .d2-1893158035 .fill-AB5{fill:#F7F8FE;} + .d2-1893158035 .stroke-N1{stroke:#0A0F25;} + .d2-1893158035 .stroke-N2{stroke:#676C7E;} + .d2-1893158035 .stroke-N3{stroke:#9499AB;} + .d2-1893158035 .stroke-N4{stroke:#CFD2DD;} + .d2-1893158035 .stroke-N5{stroke:#DEE1EB;} + .d2-1893158035 .stroke-N6{stroke:#EEF1F8;} + .d2-1893158035 .stroke-N7{stroke:#FFFFFF;} + .d2-1893158035 .stroke-B1{stroke:#0D32B2;} + .d2-1893158035 .stroke-B2{stroke:#0D32B2;} + .d2-1893158035 .stroke-B3{stroke:#E3E9FD;} + .d2-1893158035 .stroke-B4{stroke:#E3E9FD;} + .d2-1893158035 .stroke-B5{stroke:#EDF0FD;} + .d2-1893158035 .stroke-B6{stroke:#F7F8FE;} + .d2-1893158035 .stroke-AA2{stroke:#4A6FF3;} + .d2-1893158035 .stroke-AA4{stroke:#EDF0FD;} + .d2-1893158035 .stroke-AA5{stroke:#F7F8FE;} + .d2-1893158035 .stroke-AB4{stroke:#EDF0FD;} + .d2-1893158035 .stroke-AB5{stroke:#F7F8FE;} + .d2-1893158035 .background-color-N1{background-color:#0A0F25;} + .d2-1893158035 .background-color-N2{background-color:#676C7E;} + .d2-1893158035 .background-color-N3{background-color:#9499AB;} + .d2-1893158035 .background-color-N4{background-color:#CFD2DD;} + .d2-1893158035 .background-color-N5{background-color:#DEE1EB;} + .d2-1893158035 .background-color-N6{background-color:#EEF1F8;} + .d2-1893158035 .background-color-N7{background-color:#FFFFFF;} + .d2-1893158035 .background-color-B1{background-color:#0D32B2;} + .d2-1893158035 .background-color-B2{background-color:#0D32B2;} + .d2-1893158035 .background-color-B3{background-color:#E3E9FD;} + .d2-1893158035 .background-color-B4{background-color:#E3E9FD;} + .d2-1893158035 .background-color-B5{background-color:#EDF0FD;} + .d2-1893158035 .background-color-B6{background-color:#F7F8FE;} + .d2-1893158035 .background-color-AA2{background-color:#4A6FF3;} + .d2-1893158035 .background-color-AA4{background-color:#EDF0FD;} + .d2-1893158035 .background-color-AA5{background-color:#F7F8FE;} + .d2-1893158035 .background-color-AB4{background-color:#EDF0FD;} + .d2-1893158035 .background-color-AB5{background-color:#F7F8FE;} + .d2-1893158035 .color-N1{color:#0A0F25;} + .d2-1893158035 .color-N2{color:#676C7E;} + .d2-1893158035 .color-N3{color:#9499AB;} + .d2-1893158035 .color-N4{color:#CFD2DD;} + .d2-1893158035 .color-N5{color:#DEE1EB;} + .d2-1893158035 .color-N6{color:#EEF1F8;} + .d2-1893158035 .color-N7{color:#FFFFFF;} + .d2-1893158035 .color-B1{color:#0D32B2;} + .d2-1893158035 .color-B2{color:#0D32B2;} + .d2-1893158035 .color-B3{color:#E3E9FD;} + .d2-1893158035 .color-B4{color:#E3E9FD;} + .d2-1893158035 .color-B5{color:#EDF0FD;} + .d2-1893158035 .color-B6{color:#F7F8FE;} + .d2-1893158035 .color-AA2{color:#4A6FF3;} + .d2-1893158035 .color-AA4{color:#EDF0FD;} + .d2-1893158035 .color-AA5{color:#F7F8FE;} + .d2-1893158035 .color-AB4{color:#EDF0FD;} + .d2-1893158035 .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}]]>an actor with a really long label that will break everythinganactorwithareallylonglabelthatwillbreakeverythingsimplea short onefar awaywhat if there were no labels between this actor and the previous one shortlong label for testing purposes and it must be really, really longshortthis should span many actors lifelines so we know how it will look like when redering a long label over many actorslong label for testing purposes and it must be really, really long 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..554781b645 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 @@ -935,6 +935,7 @@ "labelHeight": 21, "labelPosition": "INSIDE_MIDDLE_CENTER", "labelPercentage": 0, + "link": "", "route": [ { "x": 62, @@ -997,6 +998,7 @@ "labelHeight": 21, "labelPosition": "INSIDE_MIDDLE_CENTER", "labelPercentage": 0, + "link": "", "route": [ { "x": 329.5, @@ -1035,6 +1037,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 572, @@ -1073,6 +1076,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 833, @@ -1111,6 +1115,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 1042.5, @@ -1149,6 +1154,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 1214, @@ -1187,6 +1193,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 1364, @@ -1225,6 +1232,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 1514, @@ -1263,6 +1271,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 1677, @@ -1301,6 +1310,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 1854, @@ -1339,6 +1349,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 2006, @@ -1377,6 +1388,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 2156, @@ -1415,6 +1427,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 2306.5, @@ -1453,6 +1466,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 2487.5, @@ -1491,6 +1505,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 2642, @@ -1529,6 +1544,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 2807.5, @@ -1567,6 +1583,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 2974.5, @@ -1605,6 +1622,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 3159.5, @@ -1643,6 +1661,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 3341, @@ -1681,6 +1700,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 62, @@ -1719,6 +1739,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 329.5, @@ -1757,6 +1778,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 572, @@ -1795,6 +1817,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 833, @@ -1833,6 +1856,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 1042.5, @@ -1871,6 +1895,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 1214, @@ -1909,6 +1934,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 1364, @@ -1947,6 +1973,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 1514, @@ -1985,6 +2012,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 1677, @@ -2023,6 +2051,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 1854, @@ -2061,6 +2090,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 2006, @@ -2099,6 +2129,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 2156, @@ -2137,6 +2168,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 2306.5, @@ -2175,6 +2207,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 2487.5, @@ -2213,6 +2246,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 2642, @@ -2251,6 +2285,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 2807.5, @@ -2289,6 +2324,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 2974.5, @@ -2327,6 +2363,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 3159.5, @@ -2365,6 +2402,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 3341, @@ -2403,6 +2441,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 3511.5, 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 7738d71590..339ee52386 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-3769254545 .fill-N1{fill:#0A0F25;} + .d2-3769254545 .fill-N2{fill:#676C7E;} + .d2-3769254545 .fill-N3{fill:#9499AB;} + .d2-3769254545 .fill-N4{fill:#CFD2DD;} + .d2-3769254545 .fill-N5{fill:#DEE1EB;} + .d2-3769254545 .fill-N6{fill:#EEF1F8;} + .d2-3769254545 .fill-N7{fill:#FFFFFF;} + .d2-3769254545 .fill-B1{fill:#0D32B2;} + .d2-3769254545 .fill-B2{fill:#0D32B2;} + .d2-3769254545 .fill-B3{fill:#E3E9FD;} + .d2-3769254545 .fill-B4{fill:#E3E9FD;} + .d2-3769254545 .fill-B5{fill:#EDF0FD;} + .d2-3769254545 .fill-B6{fill:#F7F8FE;} + .d2-3769254545 .fill-AA2{fill:#4A6FF3;} + .d2-3769254545 .fill-AA4{fill:#EDF0FD;} + .d2-3769254545 .fill-AA5{fill:#F7F8FE;} + .d2-3769254545 .fill-AB4{fill:#EDF0FD;} + .d2-3769254545 .fill-AB5{fill:#F7F8FE;} + .d2-3769254545 .stroke-N1{stroke:#0A0F25;} + .d2-3769254545 .stroke-N2{stroke:#676C7E;} + .d2-3769254545 .stroke-N3{stroke:#9499AB;} + .d2-3769254545 .stroke-N4{stroke:#CFD2DD;} + .d2-3769254545 .stroke-N5{stroke:#DEE1EB;} + .d2-3769254545 .stroke-N6{stroke:#EEF1F8;} + .d2-3769254545 .stroke-N7{stroke:#FFFFFF;} + .d2-3769254545 .stroke-B1{stroke:#0D32B2;} + .d2-3769254545 .stroke-B2{stroke:#0D32B2;} + .d2-3769254545 .stroke-B3{stroke:#E3E9FD;} + .d2-3769254545 .stroke-B4{stroke:#E3E9FD;} + .d2-3769254545 .stroke-B5{stroke:#EDF0FD;} + .d2-3769254545 .stroke-B6{stroke:#F7F8FE;} + .d2-3769254545 .stroke-AA2{stroke:#4A6FF3;} + .d2-3769254545 .stroke-AA4{stroke:#EDF0FD;} + .d2-3769254545 .stroke-AA5{stroke:#F7F8FE;} + .d2-3769254545 .stroke-AB4{stroke:#EDF0FD;} + .d2-3769254545 .stroke-AB5{stroke:#F7F8FE;} + .d2-3769254545 .background-color-N1{background-color:#0A0F25;} + .d2-3769254545 .background-color-N2{background-color:#676C7E;} + .d2-3769254545 .background-color-N3{background-color:#9499AB;} + .d2-3769254545 .background-color-N4{background-color:#CFD2DD;} + .d2-3769254545 .background-color-N5{background-color:#DEE1EB;} + .d2-3769254545 .background-color-N6{background-color:#EEF1F8;} + .d2-3769254545 .background-color-N7{background-color:#FFFFFF;} + .d2-3769254545 .background-color-B1{background-color:#0D32B2;} + .d2-3769254545 .background-color-B2{background-color:#0D32B2;} + .d2-3769254545 .background-color-B3{background-color:#E3E9FD;} + .d2-3769254545 .background-color-B4{background-color:#E3E9FD;} + .d2-3769254545 .background-color-B5{background-color:#EDF0FD;} + .d2-3769254545 .background-color-B6{background-color:#F7F8FE;} + .d2-3769254545 .background-color-AA2{background-color:#4A6FF3;} + .d2-3769254545 .background-color-AA4{background-color:#EDF0FD;} + .d2-3769254545 .background-color-AA5{background-color:#F7F8FE;} + .d2-3769254545 .background-color-AB4{background-color:#EDF0FD;} + .d2-3769254545 .background-color-AB5{background-color:#F7F8FE;} + .d2-3769254545 .color-N1{color:#0A0F25;} + .d2-3769254545 .color-N2{color:#676C7E;} + .d2-3769254545 .color-N3{color:#9499AB;} + .d2-3769254545 .color-N4{color:#CFD2DD;} + .d2-3769254545 .color-N5{color:#DEE1EB;} + .d2-3769254545 .color-N6{color:#EEF1F8;} + .d2-3769254545 .color-N7{color:#FFFFFF;} + .d2-3769254545 .color-B1{color:#0D32B2;} + .d2-3769254545 .color-B2{color:#0D32B2;} + .d2-3769254545 .color-B3{color:#E3E9FD;} + .d2-3769254545 .color-B4{color:#E3E9FD;} + .d2-3769254545 .color-B5{color:#EDF0FD;} + .d2-3769254545 .color-B6{color:#F7F8FE;} + .d2-3769254545 .color-AA2{color:#4A6FF3;} + .d2-3769254545 .color-AA4{color:#EDF0FD;} + .d2-3769254545 .color-AA5{color:#F7F8FE;} + .d2-3769254545 .color-AB4{color:#EDF0FD;} + .d2-3769254545 .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 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 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..554781b645 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 @@ -935,6 +935,7 @@ "labelHeight": 21, "labelPosition": "INSIDE_MIDDLE_CENTER", "labelPercentage": 0, + "link": "", "route": [ { "x": 62, @@ -997,6 +998,7 @@ "labelHeight": 21, "labelPosition": "INSIDE_MIDDLE_CENTER", "labelPercentage": 0, + "link": "", "route": [ { "x": 329.5, @@ -1035,6 +1037,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 572, @@ -1073,6 +1076,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 833, @@ -1111,6 +1115,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 1042.5, @@ -1149,6 +1154,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 1214, @@ -1187,6 +1193,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 1364, @@ -1225,6 +1232,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 1514, @@ -1263,6 +1271,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 1677, @@ -1301,6 +1310,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 1854, @@ -1339,6 +1349,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 2006, @@ -1377,6 +1388,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 2156, @@ -1415,6 +1427,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 2306.5, @@ -1453,6 +1466,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 2487.5, @@ -1491,6 +1505,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 2642, @@ -1529,6 +1544,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 2807.5, @@ -1567,6 +1583,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 2974.5, @@ -1605,6 +1622,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 3159.5, @@ -1643,6 +1661,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 3341, @@ -1681,6 +1700,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 62, @@ -1719,6 +1739,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 329.5, @@ -1757,6 +1778,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 572, @@ -1795,6 +1817,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 833, @@ -1833,6 +1856,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 1042.5, @@ -1871,6 +1895,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 1214, @@ -1909,6 +1934,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 1364, @@ -1947,6 +1973,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 1514, @@ -1985,6 +2012,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 1677, @@ -2023,6 +2051,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 1854, @@ -2061,6 +2090,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 2006, @@ -2099,6 +2129,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 2156, @@ -2137,6 +2168,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 2306.5, @@ -2175,6 +2207,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 2487.5, @@ -2213,6 +2246,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 2642, @@ -2251,6 +2285,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 2807.5, @@ -2289,6 +2324,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 2974.5, @@ -2327,6 +2363,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 3159.5, @@ -2365,6 +2402,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 3341, @@ -2403,6 +2441,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 3511.5, 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 7738d71590..339ee52386 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-3769254545 .fill-N1{fill:#0A0F25;} + .d2-3769254545 .fill-N2{fill:#676C7E;} + .d2-3769254545 .fill-N3{fill:#9499AB;} + .d2-3769254545 .fill-N4{fill:#CFD2DD;} + .d2-3769254545 .fill-N5{fill:#DEE1EB;} + .d2-3769254545 .fill-N6{fill:#EEF1F8;} + .d2-3769254545 .fill-N7{fill:#FFFFFF;} + .d2-3769254545 .fill-B1{fill:#0D32B2;} + .d2-3769254545 .fill-B2{fill:#0D32B2;} + .d2-3769254545 .fill-B3{fill:#E3E9FD;} + .d2-3769254545 .fill-B4{fill:#E3E9FD;} + .d2-3769254545 .fill-B5{fill:#EDF0FD;} + .d2-3769254545 .fill-B6{fill:#F7F8FE;} + .d2-3769254545 .fill-AA2{fill:#4A6FF3;} + .d2-3769254545 .fill-AA4{fill:#EDF0FD;} + .d2-3769254545 .fill-AA5{fill:#F7F8FE;} + .d2-3769254545 .fill-AB4{fill:#EDF0FD;} + .d2-3769254545 .fill-AB5{fill:#F7F8FE;} + .d2-3769254545 .stroke-N1{stroke:#0A0F25;} + .d2-3769254545 .stroke-N2{stroke:#676C7E;} + .d2-3769254545 .stroke-N3{stroke:#9499AB;} + .d2-3769254545 .stroke-N4{stroke:#CFD2DD;} + .d2-3769254545 .stroke-N5{stroke:#DEE1EB;} + .d2-3769254545 .stroke-N6{stroke:#EEF1F8;} + .d2-3769254545 .stroke-N7{stroke:#FFFFFF;} + .d2-3769254545 .stroke-B1{stroke:#0D32B2;} + .d2-3769254545 .stroke-B2{stroke:#0D32B2;} + .d2-3769254545 .stroke-B3{stroke:#E3E9FD;} + .d2-3769254545 .stroke-B4{stroke:#E3E9FD;} + .d2-3769254545 .stroke-B5{stroke:#EDF0FD;} + .d2-3769254545 .stroke-B6{stroke:#F7F8FE;} + .d2-3769254545 .stroke-AA2{stroke:#4A6FF3;} + .d2-3769254545 .stroke-AA4{stroke:#EDF0FD;} + .d2-3769254545 .stroke-AA5{stroke:#F7F8FE;} + .d2-3769254545 .stroke-AB4{stroke:#EDF0FD;} + .d2-3769254545 .stroke-AB5{stroke:#F7F8FE;} + .d2-3769254545 .background-color-N1{background-color:#0A0F25;} + .d2-3769254545 .background-color-N2{background-color:#676C7E;} + .d2-3769254545 .background-color-N3{background-color:#9499AB;} + .d2-3769254545 .background-color-N4{background-color:#CFD2DD;} + .d2-3769254545 .background-color-N5{background-color:#DEE1EB;} + .d2-3769254545 .background-color-N6{background-color:#EEF1F8;} + .d2-3769254545 .background-color-N7{background-color:#FFFFFF;} + .d2-3769254545 .background-color-B1{background-color:#0D32B2;} + .d2-3769254545 .background-color-B2{background-color:#0D32B2;} + .d2-3769254545 .background-color-B3{background-color:#E3E9FD;} + .d2-3769254545 .background-color-B4{background-color:#E3E9FD;} + .d2-3769254545 .background-color-B5{background-color:#EDF0FD;} + .d2-3769254545 .background-color-B6{background-color:#F7F8FE;} + .d2-3769254545 .background-color-AA2{background-color:#4A6FF3;} + .d2-3769254545 .background-color-AA4{background-color:#EDF0FD;} + .d2-3769254545 .background-color-AA5{background-color:#F7F8FE;} + .d2-3769254545 .background-color-AB4{background-color:#EDF0FD;} + .d2-3769254545 .background-color-AB5{background-color:#F7F8FE;} + .d2-3769254545 .color-N1{color:#0A0F25;} + .d2-3769254545 .color-N2{color:#676C7E;} + .d2-3769254545 .color-N3{color:#9499AB;} + .d2-3769254545 .color-N4{color:#CFD2DD;} + .d2-3769254545 .color-N5{color:#DEE1EB;} + .d2-3769254545 .color-N6{color:#EEF1F8;} + .d2-3769254545 .color-N7{color:#FFFFFF;} + .d2-3769254545 .color-B1{color:#0D32B2;} + .d2-3769254545 .color-B2{color:#0D32B2;} + .d2-3769254545 .color-B3{color:#E3E9FD;} + .d2-3769254545 .color-B4{color:#E3E9FD;} + .d2-3769254545 .color-B5{color:#EDF0FD;} + .d2-3769254545 .color-B6{color:#F7F8FE;} + .d2-3769254545 .color-AA2{color:#4A6FF3;} + .d2-3769254545 .color-AA4{color:#EDF0FD;} + .d2-3769254545 .color-AA5{color:#F7F8FE;} + .d2-3769254545 .color-AB4{color:#EDF0FD;} + .d2-3769254545 .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 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 diff --git a/e2etests/testdata/stable/sequence_diagram_distance/dagre/board.exp.json b/e2etests/testdata/stable/sequence_diagram_distance/dagre/board.exp.json index ceafe1afed..9ab53c893e 100644 --- a/e2etests/testdata/stable/sequence_diagram_distance/dagre/board.exp.json +++ b/e2etests/testdata/stable/sequence_diagram_distance/dagre/board.exp.json @@ -110,6 +110,7 @@ "labelHeight": 21, "labelPosition": "INSIDE_MIDDLE_CENTER", "labelPercentage": 0, + "link": "", "route": [ { "x": 62, @@ -148,6 +149,7 @@ "labelHeight": 21, "labelPosition": "INSIDE_MIDDLE_CENTER", "labelPercentage": 0, + "link": "", "route": [ { "x": 474, @@ -186,6 +188,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 62, @@ -224,6 +227,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 474, diff --git a/e2etests/testdata/stable/sequence_diagram_distance/dagre/sketch.exp.svg b/e2etests/testdata/stable/sequence_diagram_distance/dagre/sketch.exp.svg index ecd064426a..32e2353285 100644 --- a/e2etests/testdata/stable/sequence_diagram_distance/dagre/sketch.exp.svg +++ b/e2etests/testdata/stable/sequence_diagram_distance/dagre/sketch.exp.svg @@ -1,16 +1,16 @@ -alicebob what does it mean to be well-adjustedThe ability to play bridge or golf as if they were games + .d2-2307968324 .fill-N1{fill:#0A0F25;} + .d2-2307968324 .fill-N2{fill:#676C7E;} + .d2-2307968324 .fill-N3{fill:#9499AB;} + .d2-2307968324 .fill-N4{fill:#CFD2DD;} + .d2-2307968324 .fill-N5{fill:#DEE1EB;} + .d2-2307968324 .fill-N6{fill:#EEF1F8;} + .d2-2307968324 .fill-N7{fill:#FFFFFF;} + .d2-2307968324 .fill-B1{fill:#0D32B2;} + .d2-2307968324 .fill-B2{fill:#0D32B2;} + .d2-2307968324 .fill-B3{fill:#E3E9FD;} + .d2-2307968324 .fill-B4{fill:#E3E9FD;} + .d2-2307968324 .fill-B5{fill:#EDF0FD;} + .d2-2307968324 .fill-B6{fill:#F7F8FE;} + .d2-2307968324 .fill-AA2{fill:#4A6FF3;} + .d2-2307968324 .fill-AA4{fill:#EDF0FD;} + .d2-2307968324 .fill-AA5{fill:#F7F8FE;} + .d2-2307968324 .fill-AB4{fill:#EDF0FD;} + .d2-2307968324 .fill-AB5{fill:#F7F8FE;} + .d2-2307968324 .stroke-N1{stroke:#0A0F25;} + .d2-2307968324 .stroke-N2{stroke:#676C7E;} + .d2-2307968324 .stroke-N3{stroke:#9499AB;} + .d2-2307968324 .stroke-N4{stroke:#CFD2DD;} + .d2-2307968324 .stroke-N5{stroke:#DEE1EB;} + .d2-2307968324 .stroke-N6{stroke:#EEF1F8;} + .d2-2307968324 .stroke-N7{stroke:#FFFFFF;} + .d2-2307968324 .stroke-B1{stroke:#0D32B2;} + .d2-2307968324 .stroke-B2{stroke:#0D32B2;} + .d2-2307968324 .stroke-B3{stroke:#E3E9FD;} + .d2-2307968324 .stroke-B4{stroke:#E3E9FD;} + .d2-2307968324 .stroke-B5{stroke:#EDF0FD;} + .d2-2307968324 .stroke-B6{stroke:#F7F8FE;} + .d2-2307968324 .stroke-AA2{stroke:#4A6FF3;} + .d2-2307968324 .stroke-AA4{stroke:#EDF0FD;} + .d2-2307968324 .stroke-AA5{stroke:#F7F8FE;} + .d2-2307968324 .stroke-AB4{stroke:#EDF0FD;} + .d2-2307968324 .stroke-AB5{stroke:#F7F8FE;} + .d2-2307968324 .background-color-N1{background-color:#0A0F25;} + .d2-2307968324 .background-color-N2{background-color:#676C7E;} + .d2-2307968324 .background-color-N3{background-color:#9499AB;} + .d2-2307968324 .background-color-N4{background-color:#CFD2DD;} + .d2-2307968324 .background-color-N5{background-color:#DEE1EB;} + .d2-2307968324 .background-color-N6{background-color:#EEF1F8;} + .d2-2307968324 .background-color-N7{background-color:#FFFFFF;} + .d2-2307968324 .background-color-B1{background-color:#0D32B2;} + .d2-2307968324 .background-color-B2{background-color:#0D32B2;} + .d2-2307968324 .background-color-B3{background-color:#E3E9FD;} + .d2-2307968324 .background-color-B4{background-color:#E3E9FD;} + .d2-2307968324 .background-color-B5{background-color:#EDF0FD;} + .d2-2307968324 .background-color-B6{background-color:#F7F8FE;} + .d2-2307968324 .background-color-AA2{background-color:#4A6FF3;} + .d2-2307968324 .background-color-AA4{background-color:#EDF0FD;} + .d2-2307968324 .background-color-AA5{background-color:#F7F8FE;} + .d2-2307968324 .background-color-AB4{background-color:#EDF0FD;} + .d2-2307968324 .background-color-AB5{background-color:#F7F8FE;} + .d2-2307968324 .color-N1{color:#0A0F25;} + .d2-2307968324 .color-N2{color:#676C7E;} + .d2-2307968324 .color-N3{color:#9499AB;} + .d2-2307968324 .color-N4{color:#CFD2DD;} + .d2-2307968324 .color-N5{color:#DEE1EB;} + .d2-2307968324 .color-N6{color:#EEF1F8;} + .d2-2307968324 .color-N7{color:#FFFFFF;} + .d2-2307968324 .color-B1{color:#0D32B2;} + .d2-2307968324 .color-B2{color:#0D32B2;} + .d2-2307968324 .color-B3{color:#E3E9FD;} + .d2-2307968324 .color-B4{color:#E3E9FD;} + .d2-2307968324 .color-B5{color:#EDF0FD;} + .d2-2307968324 .color-B6{color:#F7F8FE;} + .d2-2307968324 .color-AA2{color:#4A6FF3;} + .d2-2307968324 .color-AA4{color:#EDF0FD;} + .d2-2307968324 .color-AA5{color:#F7F8FE;} + .d2-2307968324 .color-AB4{color:#EDF0FD;} + .d2-2307968324 .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}]]>alicebob what does it mean to be well-adjustedThe ability to play bridge or golf as if they were games diff --git a/e2etests/testdata/stable/sequence_diagram_distance/elk/board.exp.json b/e2etests/testdata/stable/sequence_diagram_distance/elk/board.exp.json index ceafe1afed..9ab53c893e 100644 --- a/e2etests/testdata/stable/sequence_diagram_distance/elk/board.exp.json +++ b/e2etests/testdata/stable/sequence_diagram_distance/elk/board.exp.json @@ -110,6 +110,7 @@ "labelHeight": 21, "labelPosition": "INSIDE_MIDDLE_CENTER", "labelPercentage": 0, + "link": "", "route": [ { "x": 62, @@ -148,6 +149,7 @@ "labelHeight": 21, "labelPosition": "INSIDE_MIDDLE_CENTER", "labelPercentage": 0, + "link": "", "route": [ { "x": 474, @@ -186,6 +188,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 62, @@ -224,6 +227,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 474, diff --git a/e2etests/testdata/stable/sequence_diagram_distance/elk/sketch.exp.svg b/e2etests/testdata/stable/sequence_diagram_distance/elk/sketch.exp.svg index ecd064426a..32e2353285 100644 --- a/e2etests/testdata/stable/sequence_diagram_distance/elk/sketch.exp.svg +++ b/e2etests/testdata/stable/sequence_diagram_distance/elk/sketch.exp.svg @@ -1,16 +1,16 @@ -alicebob what does it mean to be well-adjustedThe ability to play bridge or golf as if they were games + .d2-2307968324 .fill-N1{fill:#0A0F25;} + .d2-2307968324 .fill-N2{fill:#676C7E;} + .d2-2307968324 .fill-N3{fill:#9499AB;} + .d2-2307968324 .fill-N4{fill:#CFD2DD;} + .d2-2307968324 .fill-N5{fill:#DEE1EB;} + .d2-2307968324 .fill-N6{fill:#EEF1F8;} + .d2-2307968324 .fill-N7{fill:#FFFFFF;} + .d2-2307968324 .fill-B1{fill:#0D32B2;} + .d2-2307968324 .fill-B2{fill:#0D32B2;} + .d2-2307968324 .fill-B3{fill:#E3E9FD;} + .d2-2307968324 .fill-B4{fill:#E3E9FD;} + .d2-2307968324 .fill-B5{fill:#EDF0FD;} + .d2-2307968324 .fill-B6{fill:#F7F8FE;} + .d2-2307968324 .fill-AA2{fill:#4A6FF3;} + .d2-2307968324 .fill-AA4{fill:#EDF0FD;} + .d2-2307968324 .fill-AA5{fill:#F7F8FE;} + .d2-2307968324 .fill-AB4{fill:#EDF0FD;} + .d2-2307968324 .fill-AB5{fill:#F7F8FE;} + .d2-2307968324 .stroke-N1{stroke:#0A0F25;} + .d2-2307968324 .stroke-N2{stroke:#676C7E;} + .d2-2307968324 .stroke-N3{stroke:#9499AB;} + .d2-2307968324 .stroke-N4{stroke:#CFD2DD;} + .d2-2307968324 .stroke-N5{stroke:#DEE1EB;} + .d2-2307968324 .stroke-N6{stroke:#EEF1F8;} + .d2-2307968324 .stroke-N7{stroke:#FFFFFF;} + .d2-2307968324 .stroke-B1{stroke:#0D32B2;} + .d2-2307968324 .stroke-B2{stroke:#0D32B2;} + .d2-2307968324 .stroke-B3{stroke:#E3E9FD;} + .d2-2307968324 .stroke-B4{stroke:#E3E9FD;} + .d2-2307968324 .stroke-B5{stroke:#EDF0FD;} + .d2-2307968324 .stroke-B6{stroke:#F7F8FE;} + .d2-2307968324 .stroke-AA2{stroke:#4A6FF3;} + .d2-2307968324 .stroke-AA4{stroke:#EDF0FD;} + .d2-2307968324 .stroke-AA5{stroke:#F7F8FE;} + .d2-2307968324 .stroke-AB4{stroke:#EDF0FD;} + .d2-2307968324 .stroke-AB5{stroke:#F7F8FE;} + .d2-2307968324 .background-color-N1{background-color:#0A0F25;} + .d2-2307968324 .background-color-N2{background-color:#676C7E;} + .d2-2307968324 .background-color-N3{background-color:#9499AB;} + .d2-2307968324 .background-color-N4{background-color:#CFD2DD;} + .d2-2307968324 .background-color-N5{background-color:#DEE1EB;} + .d2-2307968324 .background-color-N6{background-color:#EEF1F8;} + .d2-2307968324 .background-color-N7{background-color:#FFFFFF;} + .d2-2307968324 .background-color-B1{background-color:#0D32B2;} + .d2-2307968324 .background-color-B2{background-color:#0D32B2;} + .d2-2307968324 .background-color-B3{background-color:#E3E9FD;} + .d2-2307968324 .background-color-B4{background-color:#E3E9FD;} + .d2-2307968324 .background-color-B5{background-color:#EDF0FD;} + .d2-2307968324 .background-color-B6{background-color:#F7F8FE;} + .d2-2307968324 .background-color-AA2{background-color:#4A6FF3;} + .d2-2307968324 .background-color-AA4{background-color:#EDF0FD;} + .d2-2307968324 .background-color-AA5{background-color:#F7F8FE;} + .d2-2307968324 .background-color-AB4{background-color:#EDF0FD;} + .d2-2307968324 .background-color-AB5{background-color:#F7F8FE;} + .d2-2307968324 .color-N1{color:#0A0F25;} + .d2-2307968324 .color-N2{color:#676C7E;} + .d2-2307968324 .color-N3{color:#9499AB;} + .d2-2307968324 .color-N4{color:#CFD2DD;} + .d2-2307968324 .color-N5{color:#DEE1EB;} + .d2-2307968324 .color-N6{color:#EEF1F8;} + .d2-2307968324 .color-N7{color:#FFFFFF;} + .d2-2307968324 .color-B1{color:#0D32B2;} + .d2-2307968324 .color-B2{color:#0D32B2;} + .d2-2307968324 .color-B3{color:#E3E9FD;} + .d2-2307968324 .color-B4{color:#E3E9FD;} + .d2-2307968324 .color-B5{color:#EDF0FD;} + .d2-2307968324 .color-B6{color:#F7F8FE;} + .d2-2307968324 .color-AA2{color:#4A6FF3;} + .d2-2307968324 .color-AA4{color:#EDF0FD;} + .d2-2307968324 .color-AA5{color:#F7F8FE;} + .d2-2307968324 .color-AB4{color:#EDF0FD;} + .d2-2307968324 .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}]]>alicebob what does it mean to be well-adjustedThe ability to play bridge or golf as if they were games diff --git a/e2etests/testdata/stable/sequence_diagram_groups/dagre/board.exp.json b/e2etests/testdata/stable/sequence_diagram_groups/dagre/board.exp.json index 66e38b6606..2d80b4d378 100644 --- a/e2etests/testdata/stable/sequence_diagram_groups/dagre/board.exp.json +++ b/e2etests/testdata/stable/sequence_diagram_groups/dagre/board.exp.json @@ -604,6 +604,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 62, @@ -642,6 +643,7 @@ "labelHeight": 21, "labelPosition": "INSIDE_MIDDLE_CENTER", "labelPercentage": 0, + "link": "", "route": [ { "x": 62, @@ -680,6 +682,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 212, @@ -718,6 +721,7 @@ "labelHeight": 21, "labelPosition": "INSIDE_MIDDLE_CENTER", "labelPercentage": 0, + "link": "", "route": [ { "x": 362, @@ -756,6 +760,7 @@ "labelHeight": 21, "labelPosition": "INSIDE_MIDDLE_CENTER", "labelPercentage": 0, + "link": "", "route": [ { "x": 362, @@ -794,6 +799,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 218, @@ -832,6 +838,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 222, @@ -870,6 +877,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 356, @@ -908,6 +916,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 212, @@ -946,6 +955,7 @@ "labelHeight": 21, "labelPosition": "INSIDE_MIDDLE_CENTER", "labelPercentage": 0, + "link": "", "route": [ { "x": 362, @@ -984,6 +994,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 62, @@ -1022,6 +1033,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 212, @@ -1060,6 +1072,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 362, @@ -1098,6 +1111,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 512, diff --git a/e2etests/testdata/stable/sequence_diagram_groups/dagre/sketch.exp.svg b/e2etests/testdata/stable/sequence_diagram_groups/dagre/sketch.exp.svg index 853dbe6a20..c8326ad639 100644 --- a/e2etests/testdata/stable/sequence_diagram_groups/dagre/sketch.exp.svg +++ b/e2etests/testdata/stable/sequence_diagram_groups/dagre/sketch.exp.svg @@ -1,16 +1,16 @@ -abcdggggroup 1group bchoonested guy lalaeyokayokaywhat would arnold saythis note + .d2-2699818541 .fill-N1{fill:#0A0F25;} + .d2-2699818541 .fill-N2{fill:#676C7E;} + .d2-2699818541 .fill-N3{fill:#9499AB;} + .d2-2699818541 .fill-N4{fill:#CFD2DD;} + .d2-2699818541 .fill-N5{fill:#DEE1EB;} + .d2-2699818541 .fill-N6{fill:#EEF1F8;} + .d2-2699818541 .fill-N7{fill:#FFFFFF;} + .d2-2699818541 .fill-B1{fill:#0D32B2;} + .d2-2699818541 .fill-B2{fill:#0D32B2;} + .d2-2699818541 .fill-B3{fill:#E3E9FD;} + .d2-2699818541 .fill-B4{fill:#E3E9FD;} + .d2-2699818541 .fill-B5{fill:#EDF0FD;} + .d2-2699818541 .fill-B6{fill:#F7F8FE;} + .d2-2699818541 .fill-AA2{fill:#4A6FF3;} + .d2-2699818541 .fill-AA4{fill:#EDF0FD;} + .d2-2699818541 .fill-AA5{fill:#F7F8FE;} + .d2-2699818541 .fill-AB4{fill:#EDF0FD;} + .d2-2699818541 .fill-AB5{fill:#F7F8FE;} + .d2-2699818541 .stroke-N1{stroke:#0A0F25;} + .d2-2699818541 .stroke-N2{stroke:#676C7E;} + .d2-2699818541 .stroke-N3{stroke:#9499AB;} + .d2-2699818541 .stroke-N4{stroke:#CFD2DD;} + .d2-2699818541 .stroke-N5{stroke:#DEE1EB;} + .d2-2699818541 .stroke-N6{stroke:#EEF1F8;} + .d2-2699818541 .stroke-N7{stroke:#FFFFFF;} + .d2-2699818541 .stroke-B1{stroke:#0D32B2;} + .d2-2699818541 .stroke-B2{stroke:#0D32B2;} + .d2-2699818541 .stroke-B3{stroke:#E3E9FD;} + .d2-2699818541 .stroke-B4{stroke:#E3E9FD;} + .d2-2699818541 .stroke-B5{stroke:#EDF0FD;} + .d2-2699818541 .stroke-B6{stroke:#F7F8FE;} + .d2-2699818541 .stroke-AA2{stroke:#4A6FF3;} + .d2-2699818541 .stroke-AA4{stroke:#EDF0FD;} + .d2-2699818541 .stroke-AA5{stroke:#F7F8FE;} + .d2-2699818541 .stroke-AB4{stroke:#EDF0FD;} + .d2-2699818541 .stroke-AB5{stroke:#F7F8FE;} + .d2-2699818541 .background-color-N1{background-color:#0A0F25;} + .d2-2699818541 .background-color-N2{background-color:#676C7E;} + .d2-2699818541 .background-color-N3{background-color:#9499AB;} + .d2-2699818541 .background-color-N4{background-color:#CFD2DD;} + .d2-2699818541 .background-color-N5{background-color:#DEE1EB;} + .d2-2699818541 .background-color-N6{background-color:#EEF1F8;} + .d2-2699818541 .background-color-N7{background-color:#FFFFFF;} + .d2-2699818541 .background-color-B1{background-color:#0D32B2;} + .d2-2699818541 .background-color-B2{background-color:#0D32B2;} + .d2-2699818541 .background-color-B3{background-color:#E3E9FD;} + .d2-2699818541 .background-color-B4{background-color:#E3E9FD;} + .d2-2699818541 .background-color-B5{background-color:#EDF0FD;} + .d2-2699818541 .background-color-B6{background-color:#F7F8FE;} + .d2-2699818541 .background-color-AA2{background-color:#4A6FF3;} + .d2-2699818541 .background-color-AA4{background-color:#EDF0FD;} + .d2-2699818541 .background-color-AA5{background-color:#F7F8FE;} + .d2-2699818541 .background-color-AB4{background-color:#EDF0FD;} + .d2-2699818541 .background-color-AB5{background-color:#F7F8FE;} + .d2-2699818541 .color-N1{color:#0A0F25;} + .d2-2699818541 .color-N2{color:#676C7E;} + .d2-2699818541 .color-N3{color:#9499AB;} + .d2-2699818541 .color-N4{color:#CFD2DD;} + .d2-2699818541 .color-N5{color:#DEE1EB;} + .d2-2699818541 .color-N6{color:#EEF1F8;} + .d2-2699818541 .color-N7{color:#FFFFFF;} + .d2-2699818541 .color-B1{color:#0D32B2;} + .d2-2699818541 .color-B2{color:#0D32B2;} + .d2-2699818541 .color-B3{color:#E3E9FD;} + .d2-2699818541 .color-B4{color:#E3E9FD;} + .d2-2699818541 .color-B5{color:#EDF0FD;} + .d2-2699818541 .color-B6{color:#F7F8FE;} + .d2-2699818541 .color-AA2{color:#4A6FF3;} + .d2-2699818541 .color-AA4{color:#EDF0FD;} + .d2-2699818541 .color-AA5{color:#F7F8FE;} + .d2-2699818541 .color-AB4{color:#EDF0FD;} + .d2-2699818541 .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}]]>abcdggggroup 1group bchoonested guy lalaeyokayokaywhat would arnold saythis note diff --git a/e2etests/testdata/stable/sequence_diagram_groups/elk/board.exp.json b/e2etests/testdata/stable/sequence_diagram_groups/elk/board.exp.json index 66e38b6606..2d80b4d378 100644 --- a/e2etests/testdata/stable/sequence_diagram_groups/elk/board.exp.json +++ b/e2etests/testdata/stable/sequence_diagram_groups/elk/board.exp.json @@ -604,6 +604,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 62, @@ -642,6 +643,7 @@ "labelHeight": 21, "labelPosition": "INSIDE_MIDDLE_CENTER", "labelPercentage": 0, + "link": "", "route": [ { "x": 62, @@ -680,6 +682,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 212, @@ -718,6 +721,7 @@ "labelHeight": 21, "labelPosition": "INSIDE_MIDDLE_CENTER", "labelPercentage": 0, + "link": "", "route": [ { "x": 362, @@ -756,6 +760,7 @@ "labelHeight": 21, "labelPosition": "INSIDE_MIDDLE_CENTER", "labelPercentage": 0, + "link": "", "route": [ { "x": 362, @@ -794,6 +799,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 218, @@ -832,6 +838,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 222, @@ -870,6 +877,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 356, @@ -908,6 +916,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 212, @@ -946,6 +955,7 @@ "labelHeight": 21, "labelPosition": "INSIDE_MIDDLE_CENTER", "labelPercentage": 0, + "link": "", "route": [ { "x": 362, @@ -984,6 +994,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 62, @@ -1022,6 +1033,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 212, @@ -1060,6 +1072,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 362, @@ -1098,6 +1111,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 512, diff --git a/e2etests/testdata/stable/sequence_diagram_groups/elk/sketch.exp.svg b/e2etests/testdata/stable/sequence_diagram_groups/elk/sketch.exp.svg index 853dbe6a20..c8326ad639 100644 --- a/e2etests/testdata/stable/sequence_diagram_groups/elk/sketch.exp.svg +++ b/e2etests/testdata/stable/sequence_diagram_groups/elk/sketch.exp.svg @@ -1,16 +1,16 @@ -abcdggggroup 1group bchoonested guy lalaeyokayokaywhat would arnold saythis note + .d2-2699818541 .fill-N1{fill:#0A0F25;} + .d2-2699818541 .fill-N2{fill:#676C7E;} + .d2-2699818541 .fill-N3{fill:#9499AB;} + .d2-2699818541 .fill-N4{fill:#CFD2DD;} + .d2-2699818541 .fill-N5{fill:#DEE1EB;} + .d2-2699818541 .fill-N6{fill:#EEF1F8;} + .d2-2699818541 .fill-N7{fill:#FFFFFF;} + .d2-2699818541 .fill-B1{fill:#0D32B2;} + .d2-2699818541 .fill-B2{fill:#0D32B2;} + .d2-2699818541 .fill-B3{fill:#E3E9FD;} + .d2-2699818541 .fill-B4{fill:#E3E9FD;} + .d2-2699818541 .fill-B5{fill:#EDF0FD;} + .d2-2699818541 .fill-B6{fill:#F7F8FE;} + .d2-2699818541 .fill-AA2{fill:#4A6FF3;} + .d2-2699818541 .fill-AA4{fill:#EDF0FD;} + .d2-2699818541 .fill-AA5{fill:#F7F8FE;} + .d2-2699818541 .fill-AB4{fill:#EDF0FD;} + .d2-2699818541 .fill-AB5{fill:#F7F8FE;} + .d2-2699818541 .stroke-N1{stroke:#0A0F25;} + .d2-2699818541 .stroke-N2{stroke:#676C7E;} + .d2-2699818541 .stroke-N3{stroke:#9499AB;} + .d2-2699818541 .stroke-N4{stroke:#CFD2DD;} + .d2-2699818541 .stroke-N5{stroke:#DEE1EB;} + .d2-2699818541 .stroke-N6{stroke:#EEF1F8;} + .d2-2699818541 .stroke-N7{stroke:#FFFFFF;} + .d2-2699818541 .stroke-B1{stroke:#0D32B2;} + .d2-2699818541 .stroke-B2{stroke:#0D32B2;} + .d2-2699818541 .stroke-B3{stroke:#E3E9FD;} + .d2-2699818541 .stroke-B4{stroke:#E3E9FD;} + .d2-2699818541 .stroke-B5{stroke:#EDF0FD;} + .d2-2699818541 .stroke-B6{stroke:#F7F8FE;} + .d2-2699818541 .stroke-AA2{stroke:#4A6FF3;} + .d2-2699818541 .stroke-AA4{stroke:#EDF0FD;} + .d2-2699818541 .stroke-AA5{stroke:#F7F8FE;} + .d2-2699818541 .stroke-AB4{stroke:#EDF0FD;} + .d2-2699818541 .stroke-AB5{stroke:#F7F8FE;} + .d2-2699818541 .background-color-N1{background-color:#0A0F25;} + .d2-2699818541 .background-color-N2{background-color:#676C7E;} + .d2-2699818541 .background-color-N3{background-color:#9499AB;} + .d2-2699818541 .background-color-N4{background-color:#CFD2DD;} + .d2-2699818541 .background-color-N5{background-color:#DEE1EB;} + .d2-2699818541 .background-color-N6{background-color:#EEF1F8;} + .d2-2699818541 .background-color-N7{background-color:#FFFFFF;} + .d2-2699818541 .background-color-B1{background-color:#0D32B2;} + .d2-2699818541 .background-color-B2{background-color:#0D32B2;} + .d2-2699818541 .background-color-B3{background-color:#E3E9FD;} + .d2-2699818541 .background-color-B4{background-color:#E3E9FD;} + .d2-2699818541 .background-color-B5{background-color:#EDF0FD;} + .d2-2699818541 .background-color-B6{background-color:#F7F8FE;} + .d2-2699818541 .background-color-AA2{background-color:#4A6FF3;} + .d2-2699818541 .background-color-AA4{background-color:#EDF0FD;} + .d2-2699818541 .background-color-AA5{background-color:#F7F8FE;} + .d2-2699818541 .background-color-AB4{background-color:#EDF0FD;} + .d2-2699818541 .background-color-AB5{background-color:#F7F8FE;} + .d2-2699818541 .color-N1{color:#0A0F25;} + .d2-2699818541 .color-N2{color:#676C7E;} + .d2-2699818541 .color-N3{color:#9499AB;} + .d2-2699818541 .color-N4{color:#CFD2DD;} + .d2-2699818541 .color-N5{color:#DEE1EB;} + .d2-2699818541 .color-N6{color:#EEF1F8;} + .d2-2699818541 .color-N7{color:#FFFFFF;} + .d2-2699818541 .color-B1{color:#0D32B2;} + .d2-2699818541 .color-B2{color:#0D32B2;} + .d2-2699818541 .color-B3{color:#E3E9FD;} + .d2-2699818541 .color-B4{color:#E3E9FD;} + .d2-2699818541 .color-B5{color:#EDF0FD;} + .d2-2699818541 .color-B6{color:#F7F8FE;} + .d2-2699818541 .color-AA2{color:#4A6FF3;} + .d2-2699818541 .color-AA4{color:#EDF0FD;} + .d2-2699818541 .color-AA5{color:#F7F8FE;} + .d2-2699818541 .color-AB4{color:#EDF0FD;} + .d2-2699818541 .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}]]>abcdggggroup 1group bchoonested guy lalaeyokayokaywhat would arnold saythis note diff --git a/e2etests/testdata/stable/sequence_diagram_long_note/dagre/board.exp.json b/e2etests/testdata/stable/sequence_diagram_long_note/dagre/board.exp.json index 3bf4762eff..0ea9c17c5a 100644 --- a/e2etests/testdata/stable/sequence_diagram_long_note/dagre/board.exp.json +++ b/e2etests/testdata/stable/sequence_diagram_long_note/dagre/board.exp.json @@ -192,6 +192,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 62, @@ -230,6 +231,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 62, @@ -268,6 +270,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 212, diff --git a/e2etests/testdata/stable/sequence_diagram_long_note/dagre/sketch.exp.svg b/e2etests/testdata/stable/sequence_diagram_long_note/dagre/sketch.exp.svg index 9938278d4a..47bdd08641 100644 --- a/e2etests/testdata/stable/sequence_diagram_long_note/dagre/sketch.exp.svg +++ b/e2etests/testdata/stable/sequence_diagram_long_note/dagre/sketch.exp.svg @@ -1,9 +1,9 @@ -ab a note here to remember that padding must consider notes toojustalongnotehere + .d2-2741266979 .fill-N1{fill:#0A0F25;} + .d2-2741266979 .fill-N2{fill:#676C7E;} + .d2-2741266979 .fill-N3{fill:#9499AB;} + .d2-2741266979 .fill-N4{fill:#CFD2DD;} + .d2-2741266979 .fill-N5{fill:#DEE1EB;} + .d2-2741266979 .fill-N6{fill:#EEF1F8;} + .d2-2741266979 .fill-N7{fill:#FFFFFF;} + .d2-2741266979 .fill-B1{fill:#0D32B2;} + .d2-2741266979 .fill-B2{fill:#0D32B2;} + .d2-2741266979 .fill-B3{fill:#E3E9FD;} + .d2-2741266979 .fill-B4{fill:#E3E9FD;} + .d2-2741266979 .fill-B5{fill:#EDF0FD;} + .d2-2741266979 .fill-B6{fill:#F7F8FE;} + .d2-2741266979 .fill-AA2{fill:#4A6FF3;} + .d2-2741266979 .fill-AA4{fill:#EDF0FD;} + .d2-2741266979 .fill-AA5{fill:#F7F8FE;} + .d2-2741266979 .fill-AB4{fill:#EDF0FD;} + .d2-2741266979 .fill-AB5{fill:#F7F8FE;} + .d2-2741266979 .stroke-N1{stroke:#0A0F25;} + .d2-2741266979 .stroke-N2{stroke:#676C7E;} + .d2-2741266979 .stroke-N3{stroke:#9499AB;} + .d2-2741266979 .stroke-N4{stroke:#CFD2DD;} + .d2-2741266979 .stroke-N5{stroke:#DEE1EB;} + .d2-2741266979 .stroke-N6{stroke:#EEF1F8;} + .d2-2741266979 .stroke-N7{stroke:#FFFFFF;} + .d2-2741266979 .stroke-B1{stroke:#0D32B2;} + .d2-2741266979 .stroke-B2{stroke:#0D32B2;} + .d2-2741266979 .stroke-B3{stroke:#E3E9FD;} + .d2-2741266979 .stroke-B4{stroke:#E3E9FD;} + .d2-2741266979 .stroke-B5{stroke:#EDF0FD;} + .d2-2741266979 .stroke-B6{stroke:#F7F8FE;} + .d2-2741266979 .stroke-AA2{stroke:#4A6FF3;} + .d2-2741266979 .stroke-AA4{stroke:#EDF0FD;} + .d2-2741266979 .stroke-AA5{stroke:#F7F8FE;} + .d2-2741266979 .stroke-AB4{stroke:#EDF0FD;} + .d2-2741266979 .stroke-AB5{stroke:#F7F8FE;} + .d2-2741266979 .background-color-N1{background-color:#0A0F25;} + .d2-2741266979 .background-color-N2{background-color:#676C7E;} + .d2-2741266979 .background-color-N3{background-color:#9499AB;} + .d2-2741266979 .background-color-N4{background-color:#CFD2DD;} + .d2-2741266979 .background-color-N5{background-color:#DEE1EB;} + .d2-2741266979 .background-color-N6{background-color:#EEF1F8;} + .d2-2741266979 .background-color-N7{background-color:#FFFFFF;} + .d2-2741266979 .background-color-B1{background-color:#0D32B2;} + .d2-2741266979 .background-color-B2{background-color:#0D32B2;} + .d2-2741266979 .background-color-B3{background-color:#E3E9FD;} + .d2-2741266979 .background-color-B4{background-color:#E3E9FD;} + .d2-2741266979 .background-color-B5{background-color:#EDF0FD;} + .d2-2741266979 .background-color-B6{background-color:#F7F8FE;} + .d2-2741266979 .background-color-AA2{background-color:#4A6FF3;} + .d2-2741266979 .background-color-AA4{background-color:#EDF0FD;} + .d2-2741266979 .background-color-AA5{background-color:#F7F8FE;} + .d2-2741266979 .background-color-AB4{background-color:#EDF0FD;} + .d2-2741266979 .background-color-AB5{background-color:#F7F8FE;} + .d2-2741266979 .color-N1{color:#0A0F25;} + .d2-2741266979 .color-N2{color:#676C7E;} + .d2-2741266979 .color-N3{color:#9499AB;} + .d2-2741266979 .color-N4{color:#CFD2DD;} + .d2-2741266979 .color-N5{color:#DEE1EB;} + .d2-2741266979 .color-N6{color:#EEF1F8;} + .d2-2741266979 .color-N7{color:#FFFFFF;} + .d2-2741266979 .color-B1{color:#0D32B2;} + .d2-2741266979 .color-B2{color:#0D32B2;} + .d2-2741266979 .color-B3{color:#E3E9FD;} + .d2-2741266979 .color-B4{color:#E3E9FD;} + .d2-2741266979 .color-B5{color:#EDF0FD;} + .d2-2741266979 .color-B6{color:#F7F8FE;} + .d2-2741266979 .color-AA2{color:#4A6FF3;} + .d2-2741266979 .color-AA4{color:#EDF0FD;} + .d2-2741266979 .color-AA5{color:#F7F8FE;} + .d2-2741266979 .color-AB4{color:#EDF0FD;} + .d2-2741266979 .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}]]>ab a note here to remember that padding must consider notes toojustalongnotehere diff --git a/e2etests/testdata/stable/sequence_diagram_long_note/elk/board.exp.json b/e2etests/testdata/stable/sequence_diagram_long_note/elk/board.exp.json index 3bf4762eff..0ea9c17c5a 100644 --- a/e2etests/testdata/stable/sequence_diagram_long_note/elk/board.exp.json +++ b/e2etests/testdata/stable/sequence_diagram_long_note/elk/board.exp.json @@ -192,6 +192,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 62, @@ -230,6 +231,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 62, @@ -268,6 +270,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 212, diff --git a/e2etests/testdata/stable/sequence_diagram_long_note/elk/sketch.exp.svg b/e2etests/testdata/stable/sequence_diagram_long_note/elk/sketch.exp.svg index 9938278d4a..47bdd08641 100644 --- a/e2etests/testdata/stable/sequence_diagram_long_note/elk/sketch.exp.svg +++ b/e2etests/testdata/stable/sequence_diagram_long_note/elk/sketch.exp.svg @@ -1,9 +1,9 @@ -ab a note here to remember that padding must consider notes toojustalongnotehere + .d2-2741266979 .fill-N1{fill:#0A0F25;} + .d2-2741266979 .fill-N2{fill:#676C7E;} + .d2-2741266979 .fill-N3{fill:#9499AB;} + .d2-2741266979 .fill-N4{fill:#CFD2DD;} + .d2-2741266979 .fill-N5{fill:#DEE1EB;} + .d2-2741266979 .fill-N6{fill:#EEF1F8;} + .d2-2741266979 .fill-N7{fill:#FFFFFF;} + .d2-2741266979 .fill-B1{fill:#0D32B2;} + .d2-2741266979 .fill-B2{fill:#0D32B2;} + .d2-2741266979 .fill-B3{fill:#E3E9FD;} + .d2-2741266979 .fill-B4{fill:#E3E9FD;} + .d2-2741266979 .fill-B5{fill:#EDF0FD;} + .d2-2741266979 .fill-B6{fill:#F7F8FE;} + .d2-2741266979 .fill-AA2{fill:#4A6FF3;} + .d2-2741266979 .fill-AA4{fill:#EDF0FD;} + .d2-2741266979 .fill-AA5{fill:#F7F8FE;} + .d2-2741266979 .fill-AB4{fill:#EDF0FD;} + .d2-2741266979 .fill-AB5{fill:#F7F8FE;} + .d2-2741266979 .stroke-N1{stroke:#0A0F25;} + .d2-2741266979 .stroke-N2{stroke:#676C7E;} + .d2-2741266979 .stroke-N3{stroke:#9499AB;} + .d2-2741266979 .stroke-N4{stroke:#CFD2DD;} + .d2-2741266979 .stroke-N5{stroke:#DEE1EB;} + .d2-2741266979 .stroke-N6{stroke:#EEF1F8;} + .d2-2741266979 .stroke-N7{stroke:#FFFFFF;} + .d2-2741266979 .stroke-B1{stroke:#0D32B2;} + .d2-2741266979 .stroke-B2{stroke:#0D32B2;} + .d2-2741266979 .stroke-B3{stroke:#E3E9FD;} + .d2-2741266979 .stroke-B4{stroke:#E3E9FD;} + .d2-2741266979 .stroke-B5{stroke:#EDF0FD;} + .d2-2741266979 .stroke-B6{stroke:#F7F8FE;} + .d2-2741266979 .stroke-AA2{stroke:#4A6FF3;} + .d2-2741266979 .stroke-AA4{stroke:#EDF0FD;} + .d2-2741266979 .stroke-AA5{stroke:#F7F8FE;} + .d2-2741266979 .stroke-AB4{stroke:#EDF0FD;} + .d2-2741266979 .stroke-AB5{stroke:#F7F8FE;} + .d2-2741266979 .background-color-N1{background-color:#0A0F25;} + .d2-2741266979 .background-color-N2{background-color:#676C7E;} + .d2-2741266979 .background-color-N3{background-color:#9499AB;} + .d2-2741266979 .background-color-N4{background-color:#CFD2DD;} + .d2-2741266979 .background-color-N5{background-color:#DEE1EB;} + .d2-2741266979 .background-color-N6{background-color:#EEF1F8;} + .d2-2741266979 .background-color-N7{background-color:#FFFFFF;} + .d2-2741266979 .background-color-B1{background-color:#0D32B2;} + .d2-2741266979 .background-color-B2{background-color:#0D32B2;} + .d2-2741266979 .background-color-B3{background-color:#E3E9FD;} + .d2-2741266979 .background-color-B4{background-color:#E3E9FD;} + .d2-2741266979 .background-color-B5{background-color:#EDF0FD;} + .d2-2741266979 .background-color-B6{background-color:#F7F8FE;} + .d2-2741266979 .background-color-AA2{background-color:#4A6FF3;} + .d2-2741266979 .background-color-AA4{background-color:#EDF0FD;} + .d2-2741266979 .background-color-AA5{background-color:#F7F8FE;} + .d2-2741266979 .background-color-AB4{background-color:#EDF0FD;} + .d2-2741266979 .background-color-AB5{background-color:#F7F8FE;} + .d2-2741266979 .color-N1{color:#0A0F25;} + .d2-2741266979 .color-N2{color:#676C7E;} + .d2-2741266979 .color-N3{color:#9499AB;} + .d2-2741266979 .color-N4{color:#CFD2DD;} + .d2-2741266979 .color-N5{color:#DEE1EB;} + .d2-2741266979 .color-N6{color:#EEF1F8;} + .d2-2741266979 .color-N7{color:#FFFFFF;} + .d2-2741266979 .color-B1{color:#0D32B2;} + .d2-2741266979 .color-B2{color:#0D32B2;} + .d2-2741266979 .color-B3{color:#E3E9FD;} + .d2-2741266979 .color-B4{color:#E3E9FD;} + .d2-2741266979 .color-B5{color:#EDF0FD;} + .d2-2741266979 .color-B6{color:#F7F8FE;} + .d2-2741266979 .color-AA2{color:#4A6FF3;} + .d2-2741266979 .color-AA4{color:#EDF0FD;} + .d2-2741266979 .color-AA5{color:#F7F8FE;} + .d2-2741266979 .color-AB4{color:#EDF0FD;} + .d2-2741266979 .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}]]>ab a note here to remember that padding must consider notes toojustalongnotehere diff --git a/e2etests/testdata/stable/sequence_diagram_nested_groups/dagre/board.exp.json b/e2etests/testdata/stable/sequence_diagram_nested_groups/dagre/board.exp.json index d617703673..6c317f3fc5 100644 --- a/e2etests/testdata/stable/sequence_diagram_nested_groups/dagre/board.exp.json +++ b/e2etests/testdata/stable/sequence_diagram_nested_groups/dagre/board.exp.json @@ -694,6 +694,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 62, @@ -732,6 +733,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 62, @@ -770,6 +772,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 62, @@ -808,6 +811,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 62, @@ -846,6 +850,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 62, @@ -884,6 +889,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 335, @@ -922,6 +928,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 335, @@ -960,6 +967,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 335, @@ -998,6 +1006,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 335, @@ -1036,6 +1045,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 62, @@ -1074,6 +1084,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 335, @@ -1112,6 +1123,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 607, diff --git a/e2etests/testdata/stable/sequence_diagram_nested_groups/dagre/sketch.exp.svg b/e2etests/testdata/stable/sequence_diagram_nested_groups/dagre/sketch.exp.svg index e61adc9a8a..5fcc6315dc 100644 --- a/e2etests/testdata/stable/sequence_diagram_nested_groups/dagre/sketch.exp.svg +++ b/e2etests/testdata/stable/sequence_diagram_nested_groups/dagre/sketch.exp.svg @@ -1,9 +1,9 @@ -abjust an actorthis is a message groupaltand this is a nested message groupcase 1case 2case 3case 4what about more nestingcrazy townwhoa a notea note here to remember that padding must consider notes toojustalongnotehere + .d2-2433413595 .fill-N1{fill:#0A0F25;} + .d2-2433413595 .fill-N2{fill:#676C7E;} + .d2-2433413595 .fill-N3{fill:#9499AB;} + .d2-2433413595 .fill-N4{fill:#CFD2DD;} + .d2-2433413595 .fill-N5{fill:#DEE1EB;} + .d2-2433413595 .fill-N6{fill:#EEF1F8;} + .d2-2433413595 .fill-N7{fill:#FFFFFF;} + .d2-2433413595 .fill-B1{fill:#0D32B2;} + .d2-2433413595 .fill-B2{fill:#0D32B2;} + .d2-2433413595 .fill-B3{fill:#E3E9FD;} + .d2-2433413595 .fill-B4{fill:#E3E9FD;} + .d2-2433413595 .fill-B5{fill:#EDF0FD;} + .d2-2433413595 .fill-B6{fill:#F7F8FE;} + .d2-2433413595 .fill-AA2{fill:#4A6FF3;} + .d2-2433413595 .fill-AA4{fill:#EDF0FD;} + .d2-2433413595 .fill-AA5{fill:#F7F8FE;} + .d2-2433413595 .fill-AB4{fill:#EDF0FD;} + .d2-2433413595 .fill-AB5{fill:#F7F8FE;} + .d2-2433413595 .stroke-N1{stroke:#0A0F25;} + .d2-2433413595 .stroke-N2{stroke:#676C7E;} + .d2-2433413595 .stroke-N3{stroke:#9499AB;} + .d2-2433413595 .stroke-N4{stroke:#CFD2DD;} + .d2-2433413595 .stroke-N5{stroke:#DEE1EB;} + .d2-2433413595 .stroke-N6{stroke:#EEF1F8;} + .d2-2433413595 .stroke-N7{stroke:#FFFFFF;} + .d2-2433413595 .stroke-B1{stroke:#0D32B2;} + .d2-2433413595 .stroke-B2{stroke:#0D32B2;} + .d2-2433413595 .stroke-B3{stroke:#E3E9FD;} + .d2-2433413595 .stroke-B4{stroke:#E3E9FD;} + .d2-2433413595 .stroke-B5{stroke:#EDF0FD;} + .d2-2433413595 .stroke-B6{stroke:#F7F8FE;} + .d2-2433413595 .stroke-AA2{stroke:#4A6FF3;} + .d2-2433413595 .stroke-AA4{stroke:#EDF0FD;} + .d2-2433413595 .stroke-AA5{stroke:#F7F8FE;} + .d2-2433413595 .stroke-AB4{stroke:#EDF0FD;} + .d2-2433413595 .stroke-AB5{stroke:#F7F8FE;} + .d2-2433413595 .background-color-N1{background-color:#0A0F25;} + .d2-2433413595 .background-color-N2{background-color:#676C7E;} + .d2-2433413595 .background-color-N3{background-color:#9499AB;} + .d2-2433413595 .background-color-N4{background-color:#CFD2DD;} + .d2-2433413595 .background-color-N5{background-color:#DEE1EB;} + .d2-2433413595 .background-color-N6{background-color:#EEF1F8;} + .d2-2433413595 .background-color-N7{background-color:#FFFFFF;} + .d2-2433413595 .background-color-B1{background-color:#0D32B2;} + .d2-2433413595 .background-color-B2{background-color:#0D32B2;} + .d2-2433413595 .background-color-B3{background-color:#E3E9FD;} + .d2-2433413595 .background-color-B4{background-color:#E3E9FD;} + .d2-2433413595 .background-color-B5{background-color:#EDF0FD;} + .d2-2433413595 .background-color-B6{background-color:#F7F8FE;} + .d2-2433413595 .background-color-AA2{background-color:#4A6FF3;} + .d2-2433413595 .background-color-AA4{background-color:#EDF0FD;} + .d2-2433413595 .background-color-AA5{background-color:#F7F8FE;} + .d2-2433413595 .background-color-AB4{background-color:#EDF0FD;} + .d2-2433413595 .background-color-AB5{background-color:#F7F8FE;} + .d2-2433413595 .color-N1{color:#0A0F25;} + .d2-2433413595 .color-N2{color:#676C7E;} + .d2-2433413595 .color-N3{color:#9499AB;} + .d2-2433413595 .color-N4{color:#CFD2DD;} + .d2-2433413595 .color-N5{color:#DEE1EB;} + .d2-2433413595 .color-N6{color:#EEF1F8;} + .d2-2433413595 .color-N7{color:#FFFFFF;} + .d2-2433413595 .color-B1{color:#0D32B2;} + .d2-2433413595 .color-B2{color:#0D32B2;} + .d2-2433413595 .color-B3{color:#E3E9FD;} + .d2-2433413595 .color-B4{color:#E3E9FD;} + .d2-2433413595 .color-B5{color:#EDF0FD;} + .d2-2433413595 .color-B6{color:#F7F8FE;} + .d2-2433413595 .color-AA2{color:#4A6FF3;} + .d2-2433413595 .color-AA4{color:#EDF0FD;} + .d2-2433413595 .color-AA5{color:#F7F8FE;} + .d2-2433413595 .color-AB4{color:#EDF0FD;} + .d2-2433413595 .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}]]>abjust an actorthis is a message groupaltand this is a nested message groupcase 1case 2case 3case 4what about more nestingcrazy townwhoa a notea note here to remember that padding must consider notes toojustalongnotehere diff --git a/e2etests/testdata/stable/sequence_diagram_nested_groups/elk/board.exp.json b/e2etests/testdata/stable/sequence_diagram_nested_groups/elk/board.exp.json index d617703673..6c317f3fc5 100644 --- a/e2etests/testdata/stable/sequence_diagram_nested_groups/elk/board.exp.json +++ b/e2etests/testdata/stable/sequence_diagram_nested_groups/elk/board.exp.json @@ -694,6 +694,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 62, @@ -732,6 +733,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 62, @@ -770,6 +772,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 62, @@ -808,6 +811,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 62, @@ -846,6 +850,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 62, @@ -884,6 +889,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 335, @@ -922,6 +928,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 335, @@ -960,6 +967,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 335, @@ -998,6 +1006,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 335, @@ -1036,6 +1045,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 62, @@ -1074,6 +1084,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 335, @@ -1112,6 +1123,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 607, diff --git a/e2etests/testdata/stable/sequence_diagram_nested_groups/elk/sketch.exp.svg b/e2etests/testdata/stable/sequence_diagram_nested_groups/elk/sketch.exp.svg index e61adc9a8a..5fcc6315dc 100644 --- a/e2etests/testdata/stable/sequence_diagram_nested_groups/elk/sketch.exp.svg +++ b/e2etests/testdata/stable/sequence_diagram_nested_groups/elk/sketch.exp.svg @@ -1,9 +1,9 @@ -abjust an actorthis is a message groupaltand this is a nested message groupcase 1case 2case 3case 4what about more nestingcrazy townwhoa a notea note here to remember that padding must consider notes toojustalongnotehere + .d2-2433413595 .fill-N1{fill:#0A0F25;} + .d2-2433413595 .fill-N2{fill:#676C7E;} + .d2-2433413595 .fill-N3{fill:#9499AB;} + .d2-2433413595 .fill-N4{fill:#CFD2DD;} + .d2-2433413595 .fill-N5{fill:#DEE1EB;} + .d2-2433413595 .fill-N6{fill:#EEF1F8;} + .d2-2433413595 .fill-N7{fill:#FFFFFF;} + .d2-2433413595 .fill-B1{fill:#0D32B2;} + .d2-2433413595 .fill-B2{fill:#0D32B2;} + .d2-2433413595 .fill-B3{fill:#E3E9FD;} + .d2-2433413595 .fill-B4{fill:#E3E9FD;} + .d2-2433413595 .fill-B5{fill:#EDF0FD;} + .d2-2433413595 .fill-B6{fill:#F7F8FE;} + .d2-2433413595 .fill-AA2{fill:#4A6FF3;} + .d2-2433413595 .fill-AA4{fill:#EDF0FD;} + .d2-2433413595 .fill-AA5{fill:#F7F8FE;} + .d2-2433413595 .fill-AB4{fill:#EDF0FD;} + .d2-2433413595 .fill-AB5{fill:#F7F8FE;} + .d2-2433413595 .stroke-N1{stroke:#0A0F25;} + .d2-2433413595 .stroke-N2{stroke:#676C7E;} + .d2-2433413595 .stroke-N3{stroke:#9499AB;} + .d2-2433413595 .stroke-N4{stroke:#CFD2DD;} + .d2-2433413595 .stroke-N5{stroke:#DEE1EB;} + .d2-2433413595 .stroke-N6{stroke:#EEF1F8;} + .d2-2433413595 .stroke-N7{stroke:#FFFFFF;} + .d2-2433413595 .stroke-B1{stroke:#0D32B2;} + .d2-2433413595 .stroke-B2{stroke:#0D32B2;} + .d2-2433413595 .stroke-B3{stroke:#E3E9FD;} + .d2-2433413595 .stroke-B4{stroke:#E3E9FD;} + .d2-2433413595 .stroke-B5{stroke:#EDF0FD;} + .d2-2433413595 .stroke-B6{stroke:#F7F8FE;} + .d2-2433413595 .stroke-AA2{stroke:#4A6FF3;} + .d2-2433413595 .stroke-AA4{stroke:#EDF0FD;} + .d2-2433413595 .stroke-AA5{stroke:#F7F8FE;} + .d2-2433413595 .stroke-AB4{stroke:#EDF0FD;} + .d2-2433413595 .stroke-AB5{stroke:#F7F8FE;} + .d2-2433413595 .background-color-N1{background-color:#0A0F25;} + .d2-2433413595 .background-color-N2{background-color:#676C7E;} + .d2-2433413595 .background-color-N3{background-color:#9499AB;} + .d2-2433413595 .background-color-N4{background-color:#CFD2DD;} + .d2-2433413595 .background-color-N5{background-color:#DEE1EB;} + .d2-2433413595 .background-color-N6{background-color:#EEF1F8;} + .d2-2433413595 .background-color-N7{background-color:#FFFFFF;} + .d2-2433413595 .background-color-B1{background-color:#0D32B2;} + .d2-2433413595 .background-color-B2{background-color:#0D32B2;} + .d2-2433413595 .background-color-B3{background-color:#E3E9FD;} + .d2-2433413595 .background-color-B4{background-color:#E3E9FD;} + .d2-2433413595 .background-color-B5{background-color:#EDF0FD;} + .d2-2433413595 .background-color-B6{background-color:#F7F8FE;} + .d2-2433413595 .background-color-AA2{background-color:#4A6FF3;} + .d2-2433413595 .background-color-AA4{background-color:#EDF0FD;} + .d2-2433413595 .background-color-AA5{background-color:#F7F8FE;} + .d2-2433413595 .background-color-AB4{background-color:#EDF0FD;} + .d2-2433413595 .background-color-AB5{background-color:#F7F8FE;} + .d2-2433413595 .color-N1{color:#0A0F25;} + .d2-2433413595 .color-N2{color:#676C7E;} + .d2-2433413595 .color-N3{color:#9499AB;} + .d2-2433413595 .color-N4{color:#CFD2DD;} + .d2-2433413595 .color-N5{color:#DEE1EB;} + .d2-2433413595 .color-N6{color:#EEF1F8;} + .d2-2433413595 .color-N7{color:#FFFFFF;} + .d2-2433413595 .color-B1{color:#0D32B2;} + .d2-2433413595 .color-B2{color:#0D32B2;} + .d2-2433413595 .color-B3{color:#E3E9FD;} + .d2-2433413595 .color-B4{color:#E3E9FD;} + .d2-2433413595 .color-B5{color:#EDF0FD;} + .d2-2433413595 .color-B6{color:#F7F8FE;} + .d2-2433413595 .color-AA2{color:#4A6FF3;} + .d2-2433413595 .color-AA4{color:#EDF0FD;} + .d2-2433413595 .color-AA5{color:#F7F8FE;} + .d2-2433413595 .color-AB4{color:#EDF0FD;} + .d2-2433413595 .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}]]>abjust an actorthis is a message groupaltand this is a nested message groupcase 1case 2case 3case 4what about more nestingcrazy townwhoa a notea note here to remember that padding must consider notes toojustalongnotehere diff --git a/e2etests/testdata/stable/sequence_diagram_nested_span/dagre/board.exp.json b/e2etests/testdata/stable/sequence_diagram_nested_span/dagre/board.exp.json index 01de76e5dc..019e9822c8 100644 --- a/e2etests/testdata/stable/sequence_diagram_nested_span/dagre/board.exp.json +++ b/e2etests/testdata/stable/sequence_diagram_nested_span/dagre/board.exp.json @@ -954,6 +954,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 62, @@ -992,6 +993,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 228, @@ -1030,6 +1032,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 382, @@ -1068,6 +1071,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 539, @@ -1106,6 +1110,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 378, @@ -1144,6 +1149,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 696, @@ -1182,6 +1188,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 68, @@ -1220,6 +1227,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 814.5, @@ -1258,6 +1266,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 62, @@ -1296,6 +1305,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 62, @@ -1334,6 +1344,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 222, @@ -1372,6 +1383,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 372, @@ -1410,6 +1422,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 525, @@ -1448,6 +1461,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 678, @@ -1486,6 +1500,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 836.5, diff --git a/e2etests/testdata/stable/sequence_diagram_nested_span/dagre/sketch.exp.svg b/e2etests/testdata/stable/sequence_diagram_nested_span/dagre/sketch.exp.svg index b36c92aa79..743952afab 100644 --- a/e2etests/testdata/stable/sequence_diagram_nested_span/dagre/sketch.exp.svg +++ b/e2etests/testdata/stable/sequence_diagram_nested_span/dagre/sketch.exp.svg @@ -1,9 +1,9 @@ -scoreritemResponseitemessayRubricconceptitemOutcome + .d2-2798603426 .fill-N1{fill:#0A0F25;} + .d2-2798603426 .fill-N2{fill:#676C7E;} + .d2-2798603426 .fill-N3{fill:#9499AB;} + .d2-2798603426 .fill-N4{fill:#CFD2DD;} + .d2-2798603426 .fill-N5{fill:#DEE1EB;} + .d2-2798603426 .fill-N6{fill:#EEF1F8;} + .d2-2798603426 .fill-N7{fill:#FFFFFF;} + .d2-2798603426 .fill-B1{fill:#0D32B2;} + .d2-2798603426 .fill-B2{fill:#0D32B2;} + .d2-2798603426 .fill-B3{fill:#E3E9FD;} + .d2-2798603426 .fill-B4{fill:#E3E9FD;} + .d2-2798603426 .fill-B5{fill:#EDF0FD;} + .d2-2798603426 .fill-B6{fill:#F7F8FE;} + .d2-2798603426 .fill-AA2{fill:#4A6FF3;} + .d2-2798603426 .fill-AA4{fill:#EDF0FD;} + .d2-2798603426 .fill-AA5{fill:#F7F8FE;} + .d2-2798603426 .fill-AB4{fill:#EDF0FD;} + .d2-2798603426 .fill-AB5{fill:#F7F8FE;} + .d2-2798603426 .stroke-N1{stroke:#0A0F25;} + .d2-2798603426 .stroke-N2{stroke:#676C7E;} + .d2-2798603426 .stroke-N3{stroke:#9499AB;} + .d2-2798603426 .stroke-N4{stroke:#CFD2DD;} + .d2-2798603426 .stroke-N5{stroke:#DEE1EB;} + .d2-2798603426 .stroke-N6{stroke:#EEF1F8;} + .d2-2798603426 .stroke-N7{stroke:#FFFFFF;} + .d2-2798603426 .stroke-B1{stroke:#0D32B2;} + .d2-2798603426 .stroke-B2{stroke:#0D32B2;} + .d2-2798603426 .stroke-B3{stroke:#E3E9FD;} + .d2-2798603426 .stroke-B4{stroke:#E3E9FD;} + .d2-2798603426 .stroke-B5{stroke:#EDF0FD;} + .d2-2798603426 .stroke-B6{stroke:#F7F8FE;} + .d2-2798603426 .stroke-AA2{stroke:#4A6FF3;} + .d2-2798603426 .stroke-AA4{stroke:#EDF0FD;} + .d2-2798603426 .stroke-AA5{stroke:#F7F8FE;} + .d2-2798603426 .stroke-AB4{stroke:#EDF0FD;} + .d2-2798603426 .stroke-AB5{stroke:#F7F8FE;} + .d2-2798603426 .background-color-N1{background-color:#0A0F25;} + .d2-2798603426 .background-color-N2{background-color:#676C7E;} + .d2-2798603426 .background-color-N3{background-color:#9499AB;} + .d2-2798603426 .background-color-N4{background-color:#CFD2DD;} + .d2-2798603426 .background-color-N5{background-color:#DEE1EB;} + .d2-2798603426 .background-color-N6{background-color:#EEF1F8;} + .d2-2798603426 .background-color-N7{background-color:#FFFFFF;} + .d2-2798603426 .background-color-B1{background-color:#0D32B2;} + .d2-2798603426 .background-color-B2{background-color:#0D32B2;} + .d2-2798603426 .background-color-B3{background-color:#E3E9FD;} + .d2-2798603426 .background-color-B4{background-color:#E3E9FD;} + .d2-2798603426 .background-color-B5{background-color:#EDF0FD;} + .d2-2798603426 .background-color-B6{background-color:#F7F8FE;} + .d2-2798603426 .background-color-AA2{background-color:#4A6FF3;} + .d2-2798603426 .background-color-AA4{background-color:#EDF0FD;} + .d2-2798603426 .background-color-AA5{background-color:#F7F8FE;} + .d2-2798603426 .background-color-AB4{background-color:#EDF0FD;} + .d2-2798603426 .background-color-AB5{background-color:#F7F8FE;} + .d2-2798603426 .color-N1{color:#0A0F25;} + .d2-2798603426 .color-N2{color:#676C7E;} + .d2-2798603426 .color-N3{color:#9499AB;} + .d2-2798603426 .color-N4{color:#CFD2DD;} + .d2-2798603426 .color-N5{color:#DEE1EB;} + .d2-2798603426 .color-N6{color:#EEF1F8;} + .d2-2798603426 .color-N7{color:#FFFFFF;} + .d2-2798603426 .color-B1{color:#0D32B2;} + .d2-2798603426 .color-B2{color:#0D32B2;} + .d2-2798603426 .color-B3{color:#E3E9FD;} + .d2-2798603426 .color-B4{color:#E3E9FD;} + .d2-2798603426 .color-B5{color:#EDF0FD;} + .d2-2798603426 .color-B6{color:#F7F8FE;} + .d2-2798603426 .color-AA2{color:#4A6FF3;} + .d2-2798603426 .color-AA4{color:#EDF0FD;} + .d2-2798603426 .color-AA5{color:#F7F8FE;} + .d2-2798603426 .color-AB4{color:#EDF0FD;} + .d2-2798603426 .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}]]>scoreritemResponseitemessayRubricconceptitemOutcome diff --git a/e2etests/testdata/stable/sequence_diagram_nested_span/elk/board.exp.json b/e2etests/testdata/stable/sequence_diagram_nested_span/elk/board.exp.json index 01de76e5dc..019e9822c8 100644 --- a/e2etests/testdata/stable/sequence_diagram_nested_span/elk/board.exp.json +++ b/e2etests/testdata/stable/sequence_diagram_nested_span/elk/board.exp.json @@ -954,6 +954,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 62, @@ -992,6 +993,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 228, @@ -1030,6 +1032,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 382, @@ -1068,6 +1071,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 539, @@ -1106,6 +1110,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 378, @@ -1144,6 +1149,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 696, @@ -1182,6 +1188,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 68, @@ -1220,6 +1227,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 814.5, @@ -1258,6 +1266,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 62, @@ -1296,6 +1305,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 62, @@ -1334,6 +1344,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 222, @@ -1372,6 +1383,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 372, @@ -1410,6 +1422,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 525, @@ -1448,6 +1461,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 678, @@ -1486,6 +1500,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 836.5, diff --git a/e2etests/testdata/stable/sequence_diagram_nested_span/elk/sketch.exp.svg b/e2etests/testdata/stable/sequence_diagram_nested_span/elk/sketch.exp.svg index b36c92aa79..743952afab 100644 --- a/e2etests/testdata/stable/sequence_diagram_nested_span/elk/sketch.exp.svg +++ b/e2etests/testdata/stable/sequence_diagram_nested_span/elk/sketch.exp.svg @@ -1,9 +1,9 @@ -scoreritemResponseitemessayRubricconceptitemOutcome + .d2-2798603426 .fill-N1{fill:#0A0F25;} + .d2-2798603426 .fill-N2{fill:#676C7E;} + .d2-2798603426 .fill-N3{fill:#9499AB;} + .d2-2798603426 .fill-N4{fill:#CFD2DD;} + .d2-2798603426 .fill-N5{fill:#DEE1EB;} + .d2-2798603426 .fill-N6{fill:#EEF1F8;} + .d2-2798603426 .fill-N7{fill:#FFFFFF;} + .d2-2798603426 .fill-B1{fill:#0D32B2;} + .d2-2798603426 .fill-B2{fill:#0D32B2;} + .d2-2798603426 .fill-B3{fill:#E3E9FD;} + .d2-2798603426 .fill-B4{fill:#E3E9FD;} + .d2-2798603426 .fill-B5{fill:#EDF0FD;} + .d2-2798603426 .fill-B6{fill:#F7F8FE;} + .d2-2798603426 .fill-AA2{fill:#4A6FF3;} + .d2-2798603426 .fill-AA4{fill:#EDF0FD;} + .d2-2798603426 .fill-AA5{fill:#F7F8FE;} + .d2-2798603426 .fill-AB4{fill:#EDF0FD;} + .d2-2798603426 .fill-AB5{fill:#F7F8FE;} + .d2-2798603426 .stroke-N1{stroke:#0A0F25;} + .d2-2798603426 .stroke-N2{stroke:#676C7E;} + .d2-2798603426 .stroke-N3{stroke:#9499AB;} + .d2-2798603426 .stroke-N4{stroke:#CFD2DD;} + .d2-2798603426 .stroke-N5{stroke:#DEE1EB;} + .d2-2798603426 .stroke-N6{stroke:#EEF1F8;} + .d2-2798603426 .stroke-N7{stroke:#FFFFFF;} + .d2-2798603426 .stroke-B1{stroke:#0D32B2;} + .d2-2798603426 .stroke-B2{stroke:#0D32B2;} + .d2-2798603426 .stroke-B3{stroke:#E3E9FD;} + .d2-2798603426 .stroke-B4{stroke:#E3E9FD;} + .d2-2798603426 .stroke-B5{stroke:#EDF0FD;} + .d2-2798603426 .stroke-B6{stroke:#F7F8FE;} + .d2-2798603426 .stroke-AA2{stroke:#4A6FF3;} + .d2-2798603426 .stroke-AA4{stroke:#EDF0FD;} + .d2-2798603426 .stroke-AA5{stroke:#F7F8FE;} + .d2-2798603426 .stroke-AB4{stroke:#EDF0FD;} + .d2-2798603426 .stroke-AB5{stroke:#F7F8FE;} + .d2-2798603426 .background-color-N1{background-color:#0A0F25;} + .d2-2798603426 .background-color-N2{background-color:#676C7E;} + .d2-2798603426 .background-color-N3{background-color:#9499AB;} + .d2-2798603426 .background-color-N4{background-color:#CFD2DD;} + .d2-2798603426 .background-color-N5{background-color:#DEE1EB;} + .d2-2798603426 .background-color-N6{background-color:#EEF1F8;} + .d2-2798603426 .background-color-N7{background-color:#FFFFFF;} + .d2-2798603426 .background-color-B1{background-color:#0D32B2;} + .d2-2798603426 .background-color-B2{background-color:#0D32B2;} + .d2-2798603426 .background-color-B3{background-color:#E3E9FD;} + .d2-2798603426 .background-color-B4{background-color:#E3E9FD;} + .d2-2798603426 .background-color-B5{background-color:#EDF0FD;} + .d2-2798603426 .background-color-B6{background-color:#F7F8FE;} + .d2-2798603426 .background-color-AA2{background-color:#4A6FF3;} + .d2-2798603426 .background-color-AA4{background-color:#EDF0FD;} + .d2-2798603426 .background-color-AA5{background-color:#F7F8FE;} + .d2-2798603426 .background-color-AB4{background-color:#EDF0FD;} + .d2-2798603426 .background-color-AB5{background-color:#F7F8FE;} + .d2-2798603426 .color-N1{color:#0A0F25;} + .d2-2798603426 .color-N2{color:#676C7E;} + .d2-2798603426 .color-N3{color:#9499AB;} + .d2-2798603426 .color-N4{color:#CFD2DD;} + .d2-2798603426 .color-N5{color:#DEE1EB;} + .d2-2798603426 .color-N6{color:#EEF1F8;} + .d2-2798603426 .color-N7{color:#FFFFFF;} + .d2-2798603426 .color-B1{color:#0D32B2;} + .d2-2798603426 .color-B2{color:#0D32B2;} + .d2-2798603426 .color-B3{color:#E3E9FD;} + .d2-2798603426 .color-B4{color:#E3E9FD;} + .d2-2798603426 .color-B5{color:#EDF0FD;} + .d2-2798603426 .color-B6{color:#F7F8FE;} + .d2-2798603426 .color-AA2{color:#4A6FF3;} + .d2-2798603426 .color-AA4{color:#EDF0FD;} + .d2-2798603426 .color-AA5{color:#F7F8FE;} + .d2-2798603426 .color-AB4{color:#EDF0FD;} + .d2-2798603426 .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}]]>scoreritemResponseitemessayRubricconceptitemOutcome diff --git a/e2etests/testdata/stable/sequence_diagram_note/dagre/board.exp.json b/e2etests/testdata/stable/sequence_diagram_note/dagre/board.exp.json index 59218525e4..fa28d817c1 100644 --- a/e2etests/testdata/stable/sequence_diagram_note/dagre/board.exp.json +++ b/e2etests/testdata/stable/sequence_diagram_note/dagre/board.exp.json @@ -356,6 +356,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 62, @@ -394,6 +395,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 261, @@ -432,6 +434,7 @@ "labelHeight": 21, "labelPosition": "INSIDE_MIDDLE_CENTER", "labelPercentage": 0, + "link": "", "route": [ { "x": 460, @@ -470,6 +473,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 62, @@ -508,6 +512,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 261, @@ -546,6 +551,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 460, @@ -584,6 +590,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 610, diff --git a/e2etests/testdata/stable/sequence_diagram_note/dagre/sketch.exp.svg b/e2etests/testdata/stable/sequence_diagram_note/dagre/sketch.exp.svg index 597bd58ea3..0ee8c760c5 100644 --- a/e2etests/testdata/stable/sequence_diagram_note/dagre/sketch.exp.svg +++ b/e2etests/testdata/stable/sequence_diagram_note/dagre/sketch.exp.svg @@ -1,16 +1,16 @@ -abcd okayexplanationanother explanationSome one who believes imaginary things appear right before your i's.The earth is like a tiny grain of sand, only much, much heavier + .d2-4247551926 .fill-N1{fill:#0A0F25;} + .d2-4247551926 .fill-N2{fill:#676C7E;} + .d2-4247551926 .fill-N3{fill:#9499AB;} + .d2-4247551926 .fill-N4{fill:#CFD2DD;} + .d2-4247551926 .fill-N5{fill:#DEE1EB;} + .d2-4247551926 .fill-N6{fill:#EEF1F8;} + .d2-4247551926 .fill-N7{fill:#FFFFFF;} + .d2-4247551926 .fill-B1{fill:#0D32B2;} + .d2-4247551926 .fill-B2{fill:#0D32B2;} + .d2-4247551926 .fill-B3{fill:#E3E9FD;} + .d2-4247551926 .fill-B4{fill:#E3E9FD;} + .d2-4247551926 .fill-B5{fill:#EDF0FD;} + .d2-4247551926 .fill-B6{fill:#F7F8FE;} + .d2-4247551926 .fill-AA2{fill:#4A6FF3;} + .d2-4247551926 .fill-AA4{fill:#EDF0FD;} + .d2-4247551926 .fill-AA5{fill:#F7F8FE;} + .d2-4247551926 .fill-AB4{fill:#EDF0FD;} + .d2-4247551926 .fill-AB5{fill:#F7F8FE;} + .d2-4247551926 .stroke-N1{stroke:#0A0F25;} + .d2-4247551926 .stroke-N2{stroke:#676C7E;} + .d2-4247551926 .stroke-N3{stroke:#9499AB;} + .d2-4247551926 .stroke-N4{stroke:#CFD2DD;} + .d2-4247551926 .stroke-N5{stroke:#DEE1EB;} + .d2-4247551926 .stroke-N6{stroke:#EEF1F8;} + .d2-4247551926 .stroke-N7{stroke:#FFFFFF;} + .d2-4247551926 .stroke-B1{stroke:#0D32B2;} + .d2-4247551926 .stroke-B2{stroke:#0D32B2;} + .d2-4247551926 .stroke-B3{stroke:#E3E9FD;} + .d2-4247551926 .stroke-B4{stroke:#E3E9FD;} + .d2-4247551926 .stroke-B5{stroke:#EDF0FD;} + .d2-4247551926 .stroke-B6{stroke:#F7F8FE;} + .d2-4247551926 .stroke-AA2{stroke:#4A6FF3;} + .d2-4247551926 .stroke-AA4{stroke:#EDF0FD;} + .d2-4247551926 .stroke-AA5{stroke:#F7F8FE;} + .d2-4247551926 .stroke-AB4{stroke:#EDF0FD;} + .d2-4247551926 .stroke-AB5{stroke:#F7F8FE;} + .d2-4247551926 .background-color-N1{background-color:#0A0F25;} + .d2-4247551926 .background-color-N2{background-color:#676C7E;} + .d2-4247551926 .background-color-N3{background-color:#9499AB;} + .d2-4247551926 .background-color-N4{background-color:#CFD2DD;} + .d2-4247551926 .background-color-N5{background-color:#DEE1EB;} + .d2-4247551926 .background-color-N6{background-color:#EEF1F8;} + .d2-4247551926 .background-color-N7{background-color:#FFFFFF;} + .d2-4247551926 .background-color-B1{background-color:#0D32B2;} + .d2-4247551926 .background-color-B2{background-color:#0D32B2;} + .d2-4247551926 .background-color-B3{background-color:#E3E9FD;} + .d2-4247551926 .background-color-B4{background-color:#E3E9FD;} + .d2-4247551926 .background-color-B5{background-color:#EDF0FD;} + .d2-4247551926 .background-color-B6{background-color:#F7F8FE;} + .d2-4247551926 .background-color-AA2{background-color:#4A6FF3;} + .d2-4247551926 .background-color-AA4{background-color:#EDF0FD;} + .d2-4247551926 .background-color-AA5{background-color:#F7F8FE;} + .d2-4247551926 .background-color-AB4{background-color:#EDF0FD;} + .d2-4247551926 .background-color-AB5{background-color:#F7F8FE;} + .d2-4247551926 .color-N1{color:#0A0F25;} + .d2-4247551926 .color-N2{color:#676C7E;} + .d2-4247551926 .color-N3{color:#9499AB;} + .d2-4247551926 .color-N4{color:#CFD2DD;} + .d2-4247551926 .color-N5{color:#DEE1EB;} + .d2-4247551926 .color-N6{color:#EEF1F8;} + .d2-4247551926 .color-N7{color:#FFFFFF;} + .d2-4247551926 .color-B1{color:#0D32B2;} + .d2-4247551926 .color-B2{color:#0D32B2;} + .d2-4247551926 .color-B3{color:#E3E9FD;} + .d2-4247551926 .color-B4{color:#E3E9FD;} + .d2-4247551926 .color-B5{color:#EDF0FD;} + .d2-4247551926 .color-B6{color:#F7F8FE;} + .d2-4247551926 .color-AA2{color:#4A6FF3;} + .d2-4247551926 .color-AA4{color:#EDF0FD;} + .d2-4247551926 .color-AA5{color:#F7F8FE;} + .d2-4247551926 .color-AB4{color:#EDF0FD;} + .d2-4247551926 .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}]]>abcd okayexplanationanother explanationSome one who believes imaginary things appear right before your i's.The earth is like a tiny grain of sand, only much, much heavier diff --git a/e2etests/testdata/stable/sequence_diagram_note/elk/board.exp.json b/e2etests/testdata/stable/sequence_diagram_note/elk/board.exp.json index 59218525e4..fa28d817c1 100644 --- a/e2etests/testdata/stable/sequence_diagram_note/elk/board.exp.json +++ b/e2etests/testdata/stable/sequence_diagram_note/elk/board.exp.json @@ -356,6 +356,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 62, @@ -394,6 +395,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 261, @@ -432,6 +434,7 @@ "labelHeight": 21, "labelPosition": "INSIDE_MIDDLE_CENTER", "labelPercentage": 0, + "link": "", "route": [ { "x": 460, @@ -470,6 +473,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 62, @@ -508,6 +512,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 261, @@ -546,6 +551,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 460, @@ -584,6 +590,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 610, diff --git a/e2etests/testdata/stable/sequence_diagram_note/elk/sketch.exp.svg b/e2etests/testdata/stable/sequence_diagram_note/elk/sketch.exp.svg index 597bd58ea3..0ee8c760c5 100644 --- a/e2etests/testdata/stable/sequence_diagram_note/elk/sketch.exp.svg +++ b/e2etests/testdata/stable/sequence_diagram_note/elk/sketch.exp.svg @@ -1,16 +1,16 @@ -abcd okayexplanationanother explanationSome one who believes imaginary things appear right before your i's.The earth is like a tiny grain of sand, only much, much heavier + .d2-4247551926 .fill-N1{fill:#0A0F25;} + .d2-4247551926 .fill-N2{fill:#676C7E;} + .d2-4247551926 .fill-N3{fill:#9499AB;} + .d2-4247551926 .fill-N4{fill:#CFD2DD;} + .d2-4247551926 .fill-N5{fill:#DEE1EB;} + .d2-4247551926 .fill-N6{fill:#EEF1F8;} + .d2-4247551926 .fill-N7{fill:#FFFFFF;} + .d2-4247551926 .fill-B1{fill:#0D32B2;} + .d2-4247551926 .fill-B2{fill:#0D32B2;} + .d2-4247551926 .fill-B3{fill:#E3E9FD;} + .d2-4247551926 .fill-B4{fill:#E3E9FD;} + .d2-4247551926 .fill-B5{fill:#EDF0FD;} + .d2-4247551926 .fill-B6{fill:#F7F8FE;} + .d2-4247551926 .fill-AA2{fill:#4A6FF3;} + .d2-4247551926 .fill-AA4{fill:#EDF0FD;} + .d2-4247551926 .fill-AA5{fill:#F7F8FE;} + .d2-4247551926 .fill-AB4{fill:#EDF0FD;} + .d2-4247551926 .fill-AB5{fill:#F7F8FE;} + .d2-4247551926 .stroke-N1{stroke:#0A0F25;} + .d2-4247551926 .stroke-N2{stroke:#676C7E;} + .d2-4247551926 .stroke-N3{stroke:#9499AB;} + .d2-4247551926 .stroke-N4{stroke:#CFD2DD;} + .d2-4247551926 .stroke-N5{stroke:#DEE1EB;} + .d2-4247551926 .stroke-N6{stroke:#EEF1F8;} + .d2-4247551926 .stroke-N7{stroke:#FFFFFF;} + .d2-4247551926 .stroke-B1{stroke:#0D32B2;} + .d2-4247551926 .stroke-B2{stroke:#0D32B2;} + .d2-4247551926 .stroke-B3{stroke:#E3E9FD;} + .d2-4247551926 .stroke-B4{stroke:#E3E9FD;} + .d2-4247551926 .stroke-B5{stroke:#EDF0FD;} + .d2-4247551926 .stroke-B6{stroke:#F7F8FE;} + .d2-4247551926 .stroke-AA2{stroke:#4A6FF3;} + .d2-4247551926 .stroke-AA4{stroke:#EDF0FD;} + .d2-4247551926 .stroke-AA5{stroke:#F7F8FE;} + .d2-4247551926 .stroke-AB4{stroke:#EDF0FD;} + .d2-4247551926 .stroke-AB5{stroke:#F7F8FE;} + .d2-4247551926 .background-color-N1{background-color:#0A0F25;} + .d2-4247551926 .background-color-N2{background-color:#676C7E;} + .d2-4247551926 .background-color-N3{background-color:#9499AB;} + .d2-4247551926 .background-color-N4{background-color:#CFD2DD;} + .d2-4247551926 .background-color-N5{background-color:#DEE1EB;} + .d2-4247551926 .background-color-N6{background-color:#EEF1F8;} + .d2-4247551926 .background-color-N7{background-color:#FFFFFF;} + .d2-4247551926 .background-color-B1{background-color:#0D32B2;} + .d2-4247551926 .background-color-B2{background-color:#0D32B2;} + .d2-4247551926 .background-color-B3{background-color:#E3E9FD;} + .d2-4247551926 .background-color-B4{background-color:#E3E9FD;} + .d2-4247551926 .background-color-B5{background-color:#EDF0FD;} + .d2-4247551926 .background-color-B6{background-color:#F7F8FE;} + .d2-4247551926 .background-color-AA2{background-color:#4A6FF3;} + .d2-4247551926 .background-color-AA4{background-color:#EDF0FD;} + .d2-4247551926 .background-color-AA5{background-color:#F7F8FE;} + .d2-4247551926 .background-color-AB4{background-color:#EDF0FD;} + .d2-4247551926 .background-color-AB5{background-color:#F7F8FE;} + .d2-4247551926 .color-N1{color:#0A0F25;} + .d2-4247551926 .color-N2{color:#676C7E;} + .d2-4247551926 .color-N3{color:#9499AB;} + .d2-4247551926 .color-N4{color:#CFD2DD;} + .d2-4247551926 .color-N5{color:#DEE1EB;} + .d2-4247551926 .color-N6{color:#EEF1F8;} + .d2-4247551926 .color-N7{color:#FFFFFF;} + .d2-4247551926 .color-B1{color:#0D32B2;} + .d2-4247551926 .color-B2{color:#0D32B2;} + .d2-4247551926 .color-B3{color:#E3E9FD;} + .d2-4247551926 .color-B4{color:#E3E9FD;} + .d2-4247551926 .color-B5{color:#EDF0FD;} + .d2-4247551926 .color-B6{color:#F7F8FE;} + .d2-4247551926 .color-AA2{color:#4A6FF3;} + .d2-4247551926 .color-AA4{color:#EDF0FD;} + .d2-4247551926 .color-AA5{color:#F7F8FE;} + .d2-4247551926 .color-AB4{color:#EDF0FD;} + .d2-4247551926 .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}]]>abcd okayexplanationanother explanationSome one who believes imaginary things appear right before your i's.The earth is like a tiny grain of sand, only much, much heavier diff --git a/e2etests/testdata/stable/sequence_diagram_real/dagre/board.exp.json b/e2etests/testdata/stable/sequence_diagram_real/dagre/board.exp.json index ec3cc375e2..c19fe64fd4 100644 --- a/e2etests/testdata/stable/sequence_diagram_real/dagre/board.exp.json +++ b/e2etests/testdata/stable/sequence_diagram_real/dagre/board.exp.json @@ -601,6 +601,7 @@ "labelHeight": 21, "labelPosition": "INSIDE_MIDDLE_CENTER", "labelPercentage": 0, + "link": "", "route": [ { "x": 62, @@ -639,6 +640,7 @@ "labelHeight": 21, "labelPosition": "INSIDE_MIDDLE_CENTER", "labelPercentage": 0, + "link": "", "route": [ { "x": 289, @@ -677,6 +679,7 @@ "labelHeight": 21, "labelPosition": "INSIDE_MIDDLE_CENTER", "labelPercentage": 0, + "link": "", "route": [ { "x": 62, @@ -715,6 +718,7 @@ "labelHeight": 21, "labelPosition": "INSIDE_MIDDLE_CENTER", "labelPercentage": 0, + "link": "", "route": [ { "x": 453, @@ -753,6 +757,7 @@ "labelHeight": 21, "labelPosition": "INSIDE_MIDDLE_CENTER", "labelPercentage": 0, + "link": "", "route": [ { "x": 62, @@ -791,6 +796,7 @@ "labelHeight": 21, "labelPosition": "INSIDE_MIDDLE_CENTER", "labelPercentage": 0, + "link": "", "route": [ { "x": 622.5, @@ -829,6 +835,7 @@ "labelHeight": 21, "labelPosition": "INSIDE_MIDDLE_CENTER", "labelPercentage": 0, + "link": "", "route": [ { "x": 622.5, @@ -867,6 +874,7 @@ "labelHeight": 21, "labelPosition": "INSIDE_MIDDLE_CENTER", "labelPercentage": 0, + "link": "", "route": [ { "x": 622.5, @@ -905,6 +913,7 @@ "labelHeight": 21, "labelPosition": "INSIDE_MIDDLE_CENTER", "labelPercentage": 0, + "link": "", "route": [ { "x": 616.5, @@ -943,6 +952,7 @@ "labelHeight": 21, "labelPosition": "INSIDE_MIDDLE_CENTER", "labelPercentage": 0, + "link": "", "route": [ { "x": 62, @@ -981,6 +991,7 @@ "labelHeight": 21, "labelPosition": "INSIDE_MIDDLE_CENTER", "labelPercentage": 0, + "link": "", "route": [ { "x": 783, @@ -1019,6 +1030,7 @@ "labelHeight": 21, "labelPosition": "INSIDE_MIDDLE_CENTER", "labelPercentage": 0, + "link": "", "route": [ { "x": 783, @@ -1057,6 +1069,7 @@ "labelHeight": 21, "labelPosition": "INSIDE_MIDDLE_CENTER", "labelPercentage": 0, + "link": "", "route": [ { "x": 771, @@ -1095,6 +1108,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 62, @@ -1133,6 +1147,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 289, @@ -1171,6 +1186,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 453, @@ -1209,6 +1225,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 616.5, @@ -1247,6 +1264,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 777, @@ -1285,6 +1303,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 944.5, @@ -1323,6 +1342,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 1105.5, @@ -1361,6 +1381,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 1290.5, @@ -1399,6 +1420,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 1487, diff --git a/e2etests/testdata/stable/sequence_diagram_real/dagre/sketch.exp.svg b/e2etests/testdata/stable/sequence_diagram_real/dagre/sketch.exp.svg index 9b51c1be37..9c4442819c 100644 --- a/e2etests/testdata/stable/sequence_diagram_real/dagre/sketch.exp.svg +++ b/e2etests/testdata/stable/sequence_diagram_real/dagre/sketch.exp.svg @@ -1,16 +1,16 @@ -How this is renderedCLId2astd2compilerd2layoutd2exporterd2themesd2rendererd2sequencelayoutd2dagrelayoutonly if root is not sequence 'How this is rendered: {...}'tokenized ASTcompile ASTobjects and edgesrun layout enginesrun engine on shape: sequence_diagram, temporarily removerun core engine on rest add back in sequence diagramsdiagram with correct positions and dimensionsexport diagram with chosen theme and rendererget theme stylesrender to SVGresulting SVGmeasurements also take place + .d2-3964001802 .fill-N1{fill:#0A0F25;} + .d2-3964001802 .fill-N2{fill:#676C7E;} + .d2-3964001802 .fill-N3{fill:#9499AB;} + .d2-3964001802 .fill-N4{fill:#CFD2DD;} + .d2-3964001802 .fill-N5{fill:#DEE1EB;} + .d2-3964001802 .fill-N6{fill:#EEF1F8;} + .d2-3964001802 .fill-N7{fill:#FFFFFF;} + .d2-3964001802 .fill-B1{fill:#0D32B2;} + .d2-3964001802 .fill-B2{fill:#0D32B2;} + .d2-3964001802 .fill-B3{fill:#E3E9FD;} + .d2-3964001802 .fill-B4{fill:#E3E9FD;} + .d2-3964001802 .fill-B5{fill:#EDF0FD;} + .d2-3964001802 .fill-B6{fill:#F7F8FE;} + .d2-3964001802 .fill-AA2{fill:#4A6FF3;} + .d2-3964001802 .fill-AA4{fill:#EDF0FD;} + .d2-3964001802 .fill-AA5{fill:#F7F8FE;} + .d2-3964001802 .fill-AB4{fill:#EDF0FD;} + .d2-3964001802 .fill-AB5{fill:#F7F8FE;} + .d2-3964001802 .stroke-N1{stroke:#0A0F25;} + .d2-3964001802 .stroke-N2{stroke:#676C7E;} + .d2-3964001802 .stroke-N3{stroke:#9499AB;} + .d2-3964001802 .stroke-N4{stroke:#CFD2DD;} + .d2-3964001802 .stroke-N5{stroke:#DEE1EB;} + .d2-3964001802 .stroke-N6{stroke:#EEF1F8;} + .d2-3964001802 .stroke-N7{stroke:#FFFFFF;} + .d2-3964001802 .stroke-B1{stroke:#0D32B2;} + .d2-3964001802 .stroke-B2{stroke:#0D32B2;} + .d2-3964001802 .stroke-B3{stroke:#E3E9FD;} + .d2-3964001802 .stroke-B4{stroke:#E3E9FD;} + .d2-3964001802 .stroke-B5{stroke:#EDF0FD;} + .d2-3964001802 .stroke-B6{stroke:#F7F8FE;} + .d2-3964001802 .stroke-AA2{stroke:#4A6FF3;} + .d2-3964001802 .stroke-AA4{stroke:#EDF0FD;} + .d2-3964001802 .stroke-AA5{stroke:#F7F8FE;} + .d2-3964001802 .stroke-AB4{stroke:#EDF0FD;} + .d2-3964001802 .stroke-AB5{stroke:#F7F8FE;} + .d2-3964001802 .background-color-N1{background-color:#0A0F25;} + .d2-3964001802 .background-color-N2{background-color:#676C7E;} + .d2-3964001802 .background-color-N3{background-color:#9499AB;} + .d2-3964001802 .background-color-N4{background-color:#CFD2DD;} + .d2-3964001802 .background-color-N5{background-color:#DEE1EB;} + .d2-3964001802 .background-color-N6{background-color:#EEF1F8;} + .d2-3964001802 .background-color-N7{background-color:#FFFFFF;} + .d2-3964001802 .background-color-B1{background-color:#0D32B2;} + .d2-3964001802 .background-color-B2{background-color:#0D32B2;} + .d2-3964001802 .background-color-B3{background-color:#E3E9FD;} + .d2-3964001802 .background-color-B4{background-color:#E3E9FD;} + .d2-3964001802 .background-color-B5{background-color:#EDF0FD;} + .d2-3964001802 .background-color-B6{background-color:#F7F8FE;} + .d2-3964001802 .background-color-AA2{background-color:#4A6FF3;} + .d2-3964001802 .background-color-AA4{background-color:#EDF0FD;} + .d2-3964001802 .background-color-AA5{background-color:#F7F8FE;} + .d2-3964001802 .background-color-AB4{background-color:#EDF0FD;} + .d2-3964001802 .background-color-AB5{background-color:#F7F8FE;} + .d2-3964001802 .color-N1{color:#0A0F25;} + .d2-3964001802 .color-N2{color:#676C7E;} + .d2-3964001802 .color-N3{color:#9499AB;} + .d2-3964001802 .color-N4{color:#CFD2DD;} + .d2-3964001802 .color-N5{color:#DEE1EB;} + .d2-3964001802 .color-N6{color:#EEF1F8;} + .d2-3964001802 .color-N7{color:#FFFFFF;} + .d2-3964001802 .color-B1{color:#0D32B2;} + .d2-3964001802 .color-B2{color:#0D32B2;} + .d2-3964001802 .color-B3{color:#E3E9FD;} + .d2-3964001802 .color-B4{color:#E3E9FD;} + .d2-3964001802 .color-B5{color:#EDF0FD;} + .d2-3964001802 .color-B6{color:#F7F8FE;} + .d2-3964001802 .color-AA2{color:#4A6FF3;} + .d2-3964001802 .color-AA4{color:#EDF0FD;} + .d2-3964001802 .color-AA5{color:#F7F8FE;} + .d2-3964001802 .color-AB4{color:#EDF0FD;} + .d2-3964001802 .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}]]>How this is renderedCLId2astd2compilerd2layoutd2exporterd2themesd2rendererd2sequencelayoutd2dagrelayoutonly if root is not sequence 'How this is rendered: {...}'tokenized ASTcompile ASTobjects and edgesrun layout enginesrun engine on shape: sequence_diagram, temporarily removerun core engine on rest add back in sequence diagramsdiagram with correct positions and dimensionsexport diagram with chosen theme and rendererget theme stylesrender to SVGresulting SVGmeasurements also take place diff --git a/e2etests/testdata/stable/sequence_diagram_real/elk/board.exp.json b/e2etests/testdata/stable/sequence_diagram_real/elk/board.exp.json index ea3d3d9eb7..f91c0715da 100644 --- a/e2etests/testdata/stable/sequence_diagram_real/elk/board.exp.json +++ b/e2etests/testdata/stable/sequence_diagram_real/elk/board.exp.json @@ -601,6 +601,7 @@ "labelHeight": 21, "labelPosition": "INSIDE_MIDDLE_CENTER", "labelPercentage": 0, + "link": "", "route": [ { "x": 74, @@ -639,6 +640,7 @@ "labelHeight": 21, "labelPosition": "INSIDE_MIDDLE_CENTER", "labelPercentage": 0, + "link": "", "route": [ { "x": 301, @@ -677,6 +679,7 @@ "labelHeight": 21, "labelPosition": "INSIDE_MIDDLE_CENTER", "labelPercentage": 0, + "link": "", "route": [ { "x": 74, @@ -715,6 +718,7 @@ "labelHeight": 21, "labelPosition": "INSIDE_MIDDLE_CENTER", "labelPercentage": 0, + "link": "", "route": [ { "x": 465, @@ -753,6 +757,7 @@ "labelHeight": 21, "labelPosition": "INSIDE_MIDDLE_CENTER", "labelPercentage": 0, + "link": "", "route": [ { "x": 74, @@ -791,6 +796,7 @@ "labelHeight": 21, "labelPosition": "INSIDE_MIDDLE_CENTER", "labelPercentage": 0, + "link": "", "route": [ { "x": 634.5, @@ -829,6 +835,7 @@ "labelHeight": 21, "labelPosition": "INSIDE_MIDDLE_CENTER", "labelPercentage": 0, + "link": "", "route": [ { "x": 634.5, @@ -867,6 +874,7 @@ "labelHeight": 21, "labelPosition": "INSIDE_MIDDLE_CENTER", "labelPercentage": 0, + "link": "", "route": [ { "x": 634.5, @@ -905,6 +913,7 @@ "labelHeight": 21, "labelPosition": "INSIDE_MIDDLE_CENTER", "labelPercentage": 0, + "link": "", "route": [ { "x": 628.5, @@ -943,6 +952,7 @@ "labelHeight": 21, "labelPosition": "INSIDE_MIDDLE_CENTER", "labelPercentage": 0, + "link": "", "route": [ { "x": 74, @@ -981,6 +991,7 @@ "labelHeight": 21, "labelPosition": "INSIDE_MIDDLE_CENTER", "labelPercentage": 0, + "link": "", "route": [ { "x": 795, @@ -1019,6 +1030,7 @@ "labelHeight": 21, "labelPosition": "INSIDE_MIDDLE_CENTER", "labelPercentage": 0, + "link": "", "route": [ { "x": 795, @@ -1057,6 +1069,7 @@ "labelHeight": 21, "labelPosition": "INSIDE_MIDDLE_CENTER", "labelPercentage": 0, + "link": "", "route": [ { "x": 783, @@ -1095,6 +1108,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 74, @@ -1133,6 +1147,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 301, @@ -1171,6 +1186,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 465, @@ -1209,6 +1225,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 628.5, @@ -1247,6 +1264,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 789, @@ -1285,6 +1303,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 956.5, @@ -1323,6 +1342,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 1117.5, @@ -1361,6 +1381,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 1302.5, @@ -1399,6 +1420,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 1499, diff --git a/e2etests/testdata/stable/sequence_diagram_real/elk/sketch.exp.svg b/e2etests/testdata/stable/sequence_diagram_real/elk/sketch.exp.svg index 832198b68d..ea65178998 100644 --- a/e2etests/testdata/stable/sequence_diagram_real/elk/sketch.exp.svg +++ b/e2etests/testdata/stable/sequence_diagram_real/elk/sketch.exp.svg @@ -1,16 +1,16 @@ -How this is renderedCLId2astd2compilerd2layoutd2exporterd2themesd2rendererd2sequencelayoutd2dagrelayoutonly if root is not sequence 'How this is rendered: {...}'tokenized ASTcompile ASTobjects and edgesrun layout enginesrun engine on shape: sequence_diagram, temporarily removerun core engine on rest add back in sequence diagramsdiagram with correct positions and dimensionsexport diagram with chosen theme and rendererget theme stylesrender to SVGresulting SVGmeasurements also take place + .d2-2840663315 .fill-N1{fill:#0A0F25;} + .d2-2840663315 .fill-N2{fill:#676C7E;} + .d2-2840663315 .fill-N3{fill:#9499AB;} + .d2-2840663315 .fill-N4{fill:#CFD2DD;} + .d2-2840663315 .fill-N5{fill:#DEE1EB;} + .d2-2840663315 .fill-N6{fill:#EEF1F8;} + .d2-2840663315 .fill-N7{fill:#FFFFFF;} + .d2-2840663315 .fill-B1{fill:#0D32B2;} + .d2-2840663315 .fill-B2{fill:#0D32B2;} + .d2-2840663315 .fill-B3{fill:#E3E9FD;} + .d2-2840663315 .fill-B4{fill:#E3E9FD;} + .d2-2840663315 .fill-B5{fill:#EDF0FD;} + .d2-2840663315 .fill-B6{fill:#F7F8FE;} + .d2-2840663315 .fill-AA2{fill:#4A6FF3;} + .d2-2840663315 .fill-AA4{fill:#EDF0FD;} + .d2-2840663315 .fill-AA5{fill:#F7F8FE;} + .d2-2840663315 .fill-AB4{fill:#EDF0FD;} + .d2-2840663315 .fill-AB5{fill:#F7F8FE;} + .d2-2840663315 .stroke-N1{stroke:#0A0F25;} + .d2-2840663315 .stroke-N2{stroke:#676C7E;} + .d2-2840663315 .stroke-N3{stroke:#9499AB;} + .d2-2840663315 .stroke-N4{stroke:#CFD2DD;} + .d2-2840663315 .stroke-N5{stroke:#DEE1EB;} + .d2-2840663315 .stroke-N6{stroke:#EEF1F8;} + .d2-2840663315 .stroke-N7{stroke:#FFFFFF;} + .d2-2840663315 .stroke-B1{stroke:#0D32B2;} + .d2-2840663315 .stroke-B2{stroke:#0D32B2;} + .d2-2840663315 .stroke-B3{stroke:#E3E9FD;} + .d2-2840663315 .stroke-B4{stroke:#E3E9FD;} + .d2-2840663315 .stroke-B5{stroke:#EDF0FD;} + .d2-2840663315 .stroke-B6{stroke:#F7F8FE;} + .d2-2840663315 .stroke-AA2{stroke:#4A6FF3;} + .d2-2840663315 .stroke-AA4{stroke:#EDF0FD;} + .d2-2840663315 .stroke-AA5{stroke:#F7F8FE;} + .d2-2840663315 .stroke-AB4{stroke:#EDF0FD;} + .d2-2840663315 .stroke-AB5{stroke:#F7F8FE;} + .d2-2840663315 .background-color-N1{background-color:#0A0F25;} + .d2-2840663315 .background-color-N2{background-color:#676C7E;} + .d2-2840663315 .background-color-N3{background-color:#9499AB;} + .d2-2840663315 .background-color-N4{background-color:#CFD2DD;} + .d2-2840663315 .background-color-N5{background-color:#DEE1EB;} + .d2-2840663315 .background-color-N6{background-color:#EEF1F8;} + .d2-2840663315 .background-color-N7{background-color:#FFFFFF;} + .d2-2840663315 .background-color-B1{background-color:#0D32B2;} + .d2-2840663315 .background-color-B2{background-color:#0D32B2;} + .d2-2840663315 .background-color-B3{background-color:#E3E9FD;} + .d2-2840663315 .background-color-B4{background-color:#E3E9FD;} + .d2-2840663315 .background-color-B5{background-color:#EDF0FD;} + .d2-2840663315 .background-color-B6{background-color:#F7F8FE;} + .d2-2840663315 .background-color-AA2{background-color:#4A6FF3;} + .d2-2840663315 .background-color-AA4{background-color:#EDF0FD;} + .d2-2840663315 .background-color-AA5{background-color:#F7F8FE;} + .d2-2840663315 .background-color-AB4{background-color:#EDF0FD;} + .d2-2840663315 .background-color-AB5{background-color:#F7F8FE;} + .d2-2840663315 .color-N1{color:#0A0F25;} + .d2-2840663315 .color-N2{color:#676C7E;} + .d2-2840663315 .color-N3{color:#9499AB;} + .d2-2840663315 .color-N4{color:#CFD2DD;} + .d2-2840663315 .color-N5{color:#DEE1EB;} + .d2-2840663315 .color-N6{color:#EEF1F8;} + .d2-2840663315 .color-N7{color:#FFFFFF;} + .d2-2840663315 .color-B1{color:#0D32B2;} + .d2-2840663315 .color-B2{color:#0D32B2;} + .d2-2840663315 .color-B3{color:#E3E9FD;} + .d2-2840663315 .color-B4{color:#E3E9FD;} + .d2-2840663315 .color-B5{color:#EDF0FD;} + .d2-2840663315 .color-B6{color:#F7F8FE;} + .d2-2840663315 .color-AA2{color:#4A6FF3;} + .d2-2840663315 .color-AA4{color:#EDF0FD;} + .d2-2840663315 .color-AA5{color:#F7F8FE;} + .d2-2840663315 .color-AB4{color:#EDF0FD;} + .d2-2840663315 .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}]]>How this is renderedCLId2astd2compilerd2layoutd2exporterd2themesd2rendererd2sequencelayoutd2dagrelayoutonly if root is not sequence 'How this is rendered: {...}'tokenized ASTcompile ASTobjects and edgesrun layout enginesrun engine on shape: sequence_diagram, temporarily removerun core engine on rest add back in sequence diagramsdiagram with correct positions and dimensionsexport diagram with chosen theme and rendererget theme stylesrender to SVGresulting SVGmeasurements also take place diff --git a/e2etests/testdata/stable/sequence_diagram_self_edges/dagre/board.exp.json b/e2etests/testdata/stable/sequence_diagram_self_edges/dagre/board.exp.json index 4f41f89ebf..a6036cb1d0 100644 --- a/e2etests/testdata/stable/sequence_diagram_self_edges/dagre/board.exp.json +++ b/e2etests/testdata/stable/sequence_diagram_self_edges/dagre/board.exp.json @@ -310,6 +310,7 @@ "labelHeight": 21, "labelPosition": "INSIDE_MIDDLE_CENTER", "labelPercentage": 0, + "link": "", "route": [ { "x": 62, @@ -356,6 +357,7 @@ "labelHeight": 21, "labelPosition": "INSIDE_MIDDLE_CENTER", "labelPercentage": 0, + "link": "", "route": [ { "x": 62, @@ -394,6 +396,7 @@ "labelHeight": 21, "labelPosition": "INSIDE_MIDDLE_CENTER", "labelPercentage": 0, + "link": "", "route": [ { "x": 224, @@ -440,6 +443,7 @@ "labelHeight": 21, "labelPosition": "INSIDE_MIDDLE_CENTER", "labelPercentage": 0, + "link": "", "route": [ { "x": 230, @@ -486,6 +490,7 @@ "labelHeight": 21, "labelPosition": "INSIDE_MIDDLE_CENTER", "labelPercentage": 0, + "link": "", "route": [ { "x": 234, @@ -532,6 +537,7 @@ "labelHeight": 21, "labelPosition": "INSIDE_MIDDLE_CENTER", "labelPercentage": 0, + "link": "", "route": [ { "x": 224, @@ -570,6 +576,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 68, @@ -608,6 +615,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 62, @@ -646,6 +654,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 224, diff --git a/e2etests/testdata/stable/sequence_diagram_self_edges/dagre/sketch.exp.svg b/e2etests/testdata/stable/sequence_diagram_self_edges/dagre/sketch.exp.svg index f48f19db2f..77f0a94e7e 100644 --- a/e2etests/testdata/stable/sequence_diagram_self_edges/dagre/sketch.exp.svg +++ b/e2etests/testdata/stable/sequence_diagram_self_edges/dagre/sketch.exp.svg @@ -1,16 +1,16 @@ -ab a self edge herebetween actorsto descendantto deeper descendantto parentactor + .d2-3429764782 .fill-N1{fill:#0A0F25;} + .d2-3429764782 .fill-N2{fill:#676C7E;} + .d2-3429764782 .fill-N3{fill:#9499AB;} + .d2-3429764782 .fill-N4{fill:#CFD2DD;} + .d2-3429764782 .fill-N5{fill:#DEE1EB;} + .d2-3429764782 .fill-N6{fill:#EEF1F8;} + .d2-3429764782 .fill-N7{fill:#FFFFFF;} + .d2-3429764782 .fill-B1{fill:#0D32B2;} + .d2-3429764782 .fill-B2{fill:#0D32B2;} + .d2-3429764782 .fill-B3{fill:#E3E9FD;} + .d2-3429764782 .fill-B4{fill:#E3E9FD;} + .d2-3429764782 .fill-B5{fill:#EDF0FD;} + .d2-3429764782 .fill-B6{fill:#F7F8FE;} + .d2-3429764782 .fill-AA2{fill:#4A6FF3;} + .d2-3429764782 .fill-AA4{fill:#EDF0FD;} + .d2-3429764782 .fill-AA5{fill:#F7F8FE;} + .d2-3429764782 .fill-AB4{fill:#EDF0FD;} + .d2-3429764782 .fill-AB5{fill:#F7F8FE;} + .d2-3429764782 .stroke-N1{stroke:#0A0F25;} + .d2-3429764782 .stroke-N2{stroke:#676C7E;} + .d2-3429764782 .stroke-N3{stroke:#9499AB;} + .d2-3429764782 .stroke-N4{stroke:#CFD2DD;} + .d2-3429764782 .stroke-N5{stroke:#DEE1EB;} + .d2-3429764782 .stroke-N6{stroke:#EEF1F8;} + .d2-3429764782 .stroke-N7{stroke:#FFFFFF;} + .d2-3429764782 .stroke-B1{stroke:#0D32B2;} + .d2-3429764782 .stroke-B2{stroke:#0D32B2;} + .d2-3429764782 .stroke-B3{stroke:#E3E9FD;} + .d2-3429764782 .stroke-B4{stroke:#E3E9FD;} + .d2-3429764782 .stroke-B5{stroke:#EDF0FD;} + .d2-3429764782 .stroke-B6{stroke:#F7F8FE;} + .d2-3429764782 .stroke-AA2{stroke:#4A6FF3;} + .d2-3429764782 .stroke-AA4{stroke:#EDF0FD;} + .d2-3429764782 .stroke-AA5{stroke:#F7F8FE;} + .d2-3429764782 .stroke-AB4{stroke:#EDF0FD;} + .d2-3429764782 .stroke-AB5{stroke:#F7F8FE;} + .d2-3429764782 .background-color-N1{background-color:#0A0F25;} + .d2-3429764782 .background-color-N2{background-color:#676C7E;} + .d2-3429764782 .background-color-N3{background-color:#9499AB;} + .d2-3429764782 .background-color-N4{background-color:#CFD2DD;} + .d2-3429764782 .background-color-N5{background-color:#DEE1EB;} + .d2-3429764782 .background-color-N6{background-color:#EEF1F8;} + .d2-3429764782 .background-color-N7{background-color:#FFFFFF;} + .d2-3429764782 .background-color-B1{background-color:#0D32B2;} + .d2-3429764782 .background-color-B2{background-color:#0D32B2;} + .d2-3429764782 .background-color-B3{background-color:#E3E9FD;} + .d2-3429764782 .background-color-B4{background-color:#E3E9FD;} + .d2-3429764782 .background-color-B5{background-color:#EDF0FD;} + .d2-3429764782 .background-color-B6{background-color:#F7F8FE;} + .d2-3429764782 .background-color-AA2{background-color:#4A6FF3;} + .d2-3429764782 .background-color-AA4{background-color:#EDF0FD;} + .d2-3429764782 .background-color-AA5{background-color:#F7F8FE;} + .d2-3429764782 .background-color-AB4{background-color:#EDF0FD;} + .d2-3429764782 .background-color-AB5{background-color:#F7F8FE;} + .d2-3429764782 .color-N1{color:#0A0F25;} + .d2-3429764782 .color-N2{color:#676C7E;} + .d2-3429764782 .color-N3{color:#9499AB;} + .d2-3429764782 .color-N4{color:#CFD2DD;} + .d2-3429764782 .color-N5{color:#DEE1EB;} + .d2-3429764782 .color-N6{color:#EEF1F8;} + .d2-3429764782 .color-N7{color:#FFFFFF;} + .d2-3429764782 .color-B1{color:#0D32B2;} + .d2-3429764782 .color-B2{color:#0D32B2;} + .d2-3429764782 .color-B3{color:#E3E9FD;} + .d2-3429764782 .color-B4{color:#E3E9FD;} + .d2-3429764782 .color-B5{color:#EDF0FD;} + .d2-3429764782 .color-B6{color:#F7F8FE;} + .d2-3429764782 .color-AA2{color:#4A6FF3;} + .d2-3429764782 .color-AA4{color:#EDF0FD;} + .d2-3429764782 .color-AA5{color:#F7F8FE;} + .d2-3429764782 .color-AB4{color:#EDF0FD;} + .d2-3429764782 .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}]]>ab a self edge herebetween actorsto descendantto deeper descendantto parentactor diff --git a/e2etests/testdata/stable/sequence_diagram_self_edges/elk/board.exp.json b/e2etests/testdata/stable/sequence_diagram_self_edges/elk/board.exp.json index 4f41f89ebf..a6036cb1d0 100644 --- a/e2etests/testdata/stable/sequence_diagram_self_edges/elk/board.exp.json +++ b/e2etests/testdata/stable/sequence_diagram_self_edges/elk/board.exp.json @@ -310,6 +310,7 @@ "labelHeight": 21, "labelPosition": "INSIDE_MIDDLE_CENTER", "labelPercentage": 0, + "link": "", "route": [ { "x": 62, @@ -356,6 +357,7 @@ "labelHeight": 21, "labelPosition": "INSIDE_MIDDLE_CENTER", "labelPercentage": 0, + "link": "", "route": [ { "x": 62, @@ -394,6 +396,7 @@ "labelHeight": 21, "labelPosition": "INSIDE_MIDDLE_CENTER", "labelPercentage": 0, + "link": "", "route": [ { "x": 224, @@ -440,6 +443,7 @@ "labelHeight": 21, "labelPosition": "INSIDE_MIDDLE_CENTER", "labelPercentage": 0, + "link": "", "route": [ { "x": 230, @@ -486,6 +490,7 @@ "labelHeight": 21, "labelPosition": "INSIDE_MIDDLE_CENTER", "labelPercentage": 0, + "link": "", "route": [ { "x": 234, @@ -532,6 +537,7 @@ "labelHeight": 21, "labelPosition": "INSIDE_MIDDLE_CENTER", "labelPercentage": 0, + "link": "", "route": [ { "x": 224, @@ -570,6 +576,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 68, @@ -608,6 +615,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 62, @@ -646,6 +654,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 224, diff --git a/e2etests/testdata/stable/sequence_diagram_self_edges/elk/sketch.exp.svg b/e2etests/testdata/stable/sequence_diagram_self_edges/elk/sketch.exp.svg index f48f19db2f..77f0a94e7e 100644 --- a/e2etests/testdata/stable/sequence_diagram_self_edges/elk/sketch.exp.svg +++ b/e2etests/testdata/stable/sequence_diagram_self_edges/elk/sketch.exp.svg @@ -1,16 +1,16 @@ -ab a self edge herebetween actorsto descendantto deeper descendantto parentactor + .d2-3429764782 .fill-N1{fill:#0A0F25;} + .d2-3429764782 .fill-N2{fill:#676C7E;} + .d2-3429764782 .fill-N3{fill:#9499AB;} + .d2-3429764782 .fill-N4{fill:#CFD2DD;} + .d2-3429764782 .fill-N5{fill:#DEE1EB;} + .d2-3429764782 .fill-N6{fill:#EEF1F8;} + .d2-3429764782 .fill-N7{fill:#FFFFFF;} + .d2-3429764782 .fill-B1{fill:#0D32B2;} + .d2-3429764782 .fill-B2{fill:#0D32B2;} + .d2-3429764782 .fill-B3{fill:#E3E9FD;} + .d2-3429764782 .fill-B4{fill:#E3E9FD;} + .d2-3429764782 .fill-B5{fill:#EDF0FD;} + .d2-3429764782 .fill-B6{fill:#F7F8FE;} + .d2-3429764782 .fill-AA2{fill:#4A6FF3;} + .d2-3429764782 .fill-AA4{fill:#EDF0FD;} + .d2-3429764782 .fill-AA5{fill:#F7F8FE;} + .d2-3429764782 .fill-AB4{fill:#EDF0FD;} + .d2-3429764782 .fill-AB5{fill:#F7F8FE;} + .d2-3429764782 .stroke-N1{stroke:#0A0F25;} + .d2-3429764782 .stroke-N2{stroke:#676C7E;} + .d2-3429764782 .stroke-N3{stroke:#9499AB;} + .d2-3429764782 .stroke-N4{stroke:#CFD2DD;} + .d2-3429764782 .stroke-N5{stroke:#DEE1EB;} + .d2-3429764782 .stroke-N6{stroke:#EEF1F8;} + .d2-3429764782 .stroke-N7{stroke:#FFFFFF;} + .d2-3429764782 .stroke-B1{stroke:#0D32B2;} + .d2-3429764782 .stroke-B2{stroke:#0D32B2;} + .d2-3429764782 .stroke-B3{stroke:#E3E9FD;} + .d2-3429764782 .stroke-B4{stroke:#E3E9FD;} + .d2-3429764782 .stroke-B5{stroke:#EDF0FD;} + .d2-3429764782 .stroke-B6{stroke:#F7F8FE;} + .d2-3429764782 .stroke-AA2{stroke:#4A6FF3;} + .d2-3429764782 .stroke-AA4{stroke:#EDF0FD;} + .d2-3429764782 .stroke-AA5{stroke:#F7F8FE;} + .d2-3429764782 .stroke-AB4{stroke:#EDF0FD;} + .d2-3429764782 .stroke-AB5{stroke:#F7F8FE;} + .d2-3429764782 .background-color-N1{background-color:#0A0F25;} + .d2-3429764782 .background-color-N2{background-color:#676C7E;} + .d2-3429764782 .background-color-N3{background-color:#9499AB;} + .d2-3429764782 .background-color-N4{background-color:#CFD2DD;} + .d2-3429764782 .background-color-N5{background-color:#DEE1EB;} + .d2-3429764782 .background-color-N6{background-color:#EEF1F8;} + .d2-3429764782 .background-color-N7{background-color:#FFFFFF;} + .d2-3429764782 .background-color-B1{background-color:#0D32B2;} + .d2-3429764782 .background-color-B2{background-color:#0D32B2;} + .d2-3429764782 .background-color-B3{background-color:#E3E9FD;} + .d2-3429764782 .background-color-B4{background-color:#E3E9FD;} + .d2-3429764782 .background-color-B5{background-color:#EDF0FD;} + .d2-3429764782 .background-color-B6{background-color:#F7F8FE;} + .d2-3429764782 .background-color-AA2{background-color:#4A6FF3;} + .d2-3429764782 .background-color-AA4{background-color:#EDF0FD;} + .d2-3429764782 .background-color-AA5{background-color:#F7F8FE;} + .d2-3429764782 .background-color-AB4{background-color:#EDF0FD;} + .d2-3429764782 .background-color-AB5{background-color:#F7F8FE;} + .d2-3429764782 .color-N1{color:#0A0F25;} + .d2-3429764782 .color-N2{color:#676C7E;} + .d2-3429764782 .color-N3{color:#9499AB;} + .d2-3429764782 .color-N4{color:#CFD2DD;} + .d2-3429764782 .color-N5{color:#DEE1EB;} + .d2-3429764782 .color-N6{color:#EEF1F8;} + .d2-3429764782 .color-N7{color:#FFFFFF;} + .d2-3429764782 .color-B1{color:#0D32B2;} + .d2-3429764782 .color-B2{color:#0D32B2;} + .d2-3429764782 .color-B3{color:#E3E9FD;} + .d2-3429764782 .color-B4{color:#E3E9FD;} + .d2-3429764782 .color-B5{color:#EDF0FD;} + .d2-3429764782 .color-B6{color:#F7F8FE;} + .d2-3429764782 .color-AA2{color:#4A6FF3;} + .d2-3429764782 .color-AA4{color:#EDF0FD;} + .d2-3429764782 .color-AA5{color:#F7F8FE;} + .d2-3429764782 .color-AB4{color:#EDF0FD;} + .d2-3429764782 .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}]]>ab a self edge herebetween actorsto descendantto deeper descendantto parentactor diff --git a/e2etests/testdata/stable/sequence_diagram_simple/dagre/board.exp.json b/e2etests/testdata/stable/sequence_diagram_simple/dagre/board.exp.json index 5f057e7b8d..2769bec38d 100644 --- a/e2etests/testdata/stable/sequence_diagram_simple/dagre/board.exp.json +++ b/e2etests/testdata/stable/sequence_diagram_simple/dagre/board.exp.json @@ -233,6 +233,7 @@ "labelHeight": 21, "labelPosition": "INSIDE_MIDDLE_CENTER", "labelPercentage": 0, + "link": "", "route": [ { "x": 62, @@ -271,6 +272,7 @@ "labelHeight": 21, "labelPosition": "INSIDE_MIDDLE_CENTER", "labelPercentage": 0, + "link": "", "route": [ { "x": 341, @@ -309,6 +311,7 @@ "labelHeight": 21, "labelPosition": "INSIDE_MIDDLE_CENTER", "labelPercentage": 0, + "link": "", "route": [ { "x": 1322.5, @@ -347,6 +350,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 668, @@ -385,6 +389,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 1322.5, @@ -423,6 +428,7 @@ "labelHeight": 21, "labelPosition": "INSIDE_MIDDLE_CENTER", "labelPercentage": 0, + "link": "", "route": [ { "x": 341, @@ -461,6 +467,7 @@ "labelHeight": 21, "labelPosition": "INSIDE_MIDDLE_CENTER", "labelPercentage": 0, + "link": "", "route": [ { "x": 62, @@ -499,6 +506,7 @@ "labelHeight": 21, "labelPosition": "INSIDE_MIDDLE_CENTER", "labelPercentage": 0, + "link": "", "route": [ { "x": 341, @@ -537,6 +545,7 @@ "labelHeight": 21, "labelPosition": "INSIDE_MIDDLE_CENTER", "labelPercentage": 0, + "link": "", "route": [ { "x": 995, @@ -575,6 +584,7 @@ "labelHeight": 21, "labelPosition": "INSIDE_MIDDLE_CENTER", "labelPercentage": 0, + "link": "", "route": [ { "x": 341, @@ -613,6 +623,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 62, @@ -651,6 +662,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 341, @@ -689,6 +701,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 668, @@ -727,6 +740,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 995, @@ -765,6 +779,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 1322.5, diff --git a/e2etests/testdata/stable/sequence_diagram_simple/dagre/sketch.exp.svg b/e2etests/testdata/stable/sequence_diagram_simple/dagre/sketch.exp.svg index aef1e95367..b97843102a 100644 --- a/e2etests/testdata/stable/sequence_diagram_simple/dagre/sketch.exp.svg +++ b/e2etests/testdata/stable/sequence_diagram_simple/dagre/sketch.exp.svg @@ -1,16 +1,16 @@ -AlicelinebreakerBobdbqueueanoddservicewithanameinmultiple lines Authentication Requestmake request for something that is quite far away and requires a really long label to take all the space between the objectsvalidate credentials Authentication ResponseAnother authentication Requestdo it later storedAnother authentication Response + .d2-1872540771 .fill-N1{fill:#0A0F25;} + .d2-1872540771 .fill-N2{fill:#676C7E;} + .d2-1872540771 .fill-N3{fill:#9499AB;} + .d2-1872540771 .fill-N4{fill:#CFD2DD;} + .d2-1872540771 .fill-N5{fill:#DEE1EB;} + .d2-1872540771 .fill-N6{fill:#EEF1F8;} + .d2-1872540771 .fill-N7{fill:#FFFFFF;} + .d2-1872540771 .fill-B1{fill:#0D32B2;} + .d2-1872540771 .fill-B2{fill:#0D32B2;} + .d2-1872540771 .fill-B3{fill:#E3E9FD;} + .d2-1872540771 .fill-B4{fill:#E3E9FD;} + .d2-1872540771 .fill-B5{fill:#EDF0FD;} + .d2-1872540771 .fill-B6{fill:#F7F8FE;} + .d2-1872540771 .fill-AA2{fill:#4A6FF3;} + .d2-1872540771 .fill-AA4{fill:#EDF0FD;} + .d2-1872540771 .fill-AA5{fill:#F7F8FE;} + .d2-1872540771 .fill-AB4{fill:#EDF0FD;} + .d2-1872540771 .fill-AB5{fill:#F7F8FE;} + .d2-1872540771 .stroke-N1{stroke:#0A0F25;} + .d2-1872540771 .stroke-N2{stroke:#676C7E;} + .d2-1872540771 .stroke-N3{stroke:#9499AB;} + .d2-1872540771 .stroke-N4{stroke:#CFD2DD;} + .d2-1872540771 .stroke-N5{stroke:#DEE1EB;} + .d2-1872540771 .stroke-N6{stroke:#EEF1F8;} + .d2-1872540771 .stroke-N7{stroke:#FFFFFF;} + .d2-1872540771 .stroke-B1{stroke:#0D32B2;} + .d2-1872540771 .stroke-B2{stroke:#0D32B2;} + .d2-1872540771 .stroke-B3{stroke:#E3E9FD;} + .d2-1872540771 .stroke-B4{stroke:#E3E9FD;} + .d2-1872540771 .stroke-B5{stroke:#EDF0FD;} + .d2-1872540771 .stroke-B6{stroke:#F7F8FE;} + .d2-1872540771 .stroke-AA2{stroke:#4A6FF3;} + .d2-1872540771 .stroke-AA4{stroke:#EDF0FD;} + .d2-1872540771 .stroke-AA5{stroke:#F7F8FE;} + .d2-1872540771 .stroke-AB4{stroke:#EDF0FD;} + .d2-1872540771 .stroke-AB5{stroke:#F7F8FE;} + .d2-1872540771 .background-color-N1{background-color:#0A0F25;} + .d2-1872540771 .background-color-N2{background-color:#676C7E;} + .d2-1872540771 .background-color-N3{background-color:#9499AB;} + .d2-1872540771 .background-color-N4{background-color:#CFD2DD;} + .d2-1872540771 .background-color-N5{background-color:#DEE1EB;} + .d2-1872540771 .background-color-N6{background-color:#EEF1F8;} + .d2-1872540771 .background-color-N7{background-color:#FFFFFF;} + .d2-1872540771 .background-color-B1{background-color:#0D32B2;} + .d2-1872540771 .background-color-B2{background-color:#0D32B2;} + .d2-1872540771 .background-color-B3{background-color:#E3E9FD;} + .d2-1872540771 .background-color-B4{background-color:#E3E9FD;} + .d2-1872540771 .background-color-B5{background-color:#EDF0FD;} + .d2-1872540771 .background-color-B6{background-color:#F7F8FE;} + .d2-1872540771 .background-color-AA2{background-color:#4A6FF3;} + .d2-1872540771 .background-color-AA4{background-color:#EDF0FD;} + .d2-1872540771 .background-color-AA5{background-color:#F7F8FE;} + .d2-1872540771 .background-color-AB4{background-color:#EDF0FD;} + .d2-1872540771 .background-color-AB5{background-color:#F7F8FE;} + .d2-1872540771 .color-N1{color:#0A0F25;} + .d2-1872540771 .color-N2{color:#676C7E;} + .d2-1872540771 .color-N3{color:#9499AB;} + .d2-1872540771 .color-N4{color:#CFD2DD;} + .d2-1872540771 .color-N5{color:#DEE1EB;} + .d2-1872540771 .color-N6{color:#EEF1F8;} + .d2-1872540771 .color-N7{color:#FFFFFF;} + .d2-1872540771 .color-B1{color:#0D32B2;} + .d2-1872540771 .color-B2{color:#0D32B2;} + .d2-1872540771 .color-B3{color:#E3E9FD;} + .d2-1872540771 .color-B4{color:#E3E9FD;} + .d2-1872540771 .color-B5{color:#EDF0FD;} + .d2-1872540771 .color-B6{color:#F7F8FE;} + .d2-1872540771 .color-AA2{color:#4A6FF3;} + .d2-1872540771 .color-AA4{color:#EDF0FD;} + .d2-1872540771 .color-AA5{color:#F7F8FE;} + .d2-1872540771 .color-AB4{color:#EDF0FD;} + .d2-1872540771 .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}]]>AlicelinebreakerBobdbqueueanoddservicewithanameinmultiple lines Authentication Requestmake request for something that is quite far away and requires a really long label to take all the space between the objectsvalidate credentials Authentication ResponseAnother authentication Requestdo it later storedAnother authentication Response diff --git a/e2etests/testdata/stable/sequence_diagram_simple/elk/board.exp.json b/e2etests/testdata/stable/sequence_diagram_simple/elk/board.exp.json index 5f057e7b8d..2769bec38d 100644 --- a/e2etests/testdata/stable/sequence_diagram_simple/elk/board.exp.json +++ b/e2etests/testdata/stable/sequence_diagram_simple/elk/board.exp.json @@ -233,6 +233,7 @@ "labelHeight": 21, "labelPosition": "INSIDE_MIDDLE_CENTER", "labelPercentage": 0, + "link": "", "route": [ { "x": 62, @@ -271,6 +272,7 @@ "labelHeight": 21, "labelPosition": "INSIDE_MIDDLE_CENTER", "labelPercentage": 0, + "link": "", "route": [ { "x": 341, @@ -309,6 +311,7 @@ "labelHeight": 21, "labelPosition": "INSIDE_MIDDLE_CENTER", "labelPercentage": 0, + "link": "", "route": [ { "x": 1322.5, @@ -347,6 +350,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 668, @@ -385,6 +389,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 1322.5, @@ -423,6 +428,7 @@ "labelHeight": 21, "labelPosition": "INSIDE_MIDDLE_CENTER", "labelPercentage": 0, + "link": "", "route": [ { "x": 341, @@ -461,6 +467,7 @@ "labelHeight": 21, "labelPosition": "INSIDE_MIDDLE_CENTER", "labelPercentage": 0, + "link": "", "route": [ { "x": 62, @@ -499,6 +506,7 @@ "labelHeight": 21, "labelPosition": "INSIDE_MIDDLE_CENTER", "labelPercentage": 0, + "link": "", "route": [ { "x": 341, @@ -537,6 +545,7 @@ "labelHeight": 21, "labelPosition": "INSIDE_MIDDLE_CENTER", "labelPercentage": 0, + "link": "", "route": [ { "x": 995, @@ -575,6 +584,7 @@ "labelHeight": 21, "labelPosition": "INSIDE_MIDDLE_CENTER", "labelPercentage": 0, + "link": "", "route": [ { "x": 341, @@ -613,6 +623,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 62, @@ -651,6 +662,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 341, @@ -689,6 +701,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 668, @@ -727,6 +740,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 995, @@ -765,6 +779,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 1322.5, diff --git a/e2etests/testdata/stable/sequence_diagram_simple/elk/sketch.exp.svg b/e2etests/testdata/stable/sequence_diagram_simple/elk/sketch.exp.svg index aef1e95367..b97843102a 100644 --- a/e2etests/testdata/stable/sequence_diagram_simple/elk/sketch.exp.svg +++ b/e2etests/testdata/stable/sequence_diagram_simple/elk/sketch.exp.svg @@ -1,16 +1,16 @@ -AlicelinebreakerBobdbqueueanoddservicewithanameinmultiple lines Authentication Requestmake request for something that is quite far away and requires a really long label to take all the space between the objectsvalidate credentials Authentication ResponseAnother authentication Requestdo it later storedAnother authentication Response + .d2-1872540771 .fill-N1{fill:#0A0F25;} + .d2-1872540771 .fill-N2{fill:#676C7E;} + .d2-1872540771 .fill-N3{fill:#9499AB;} + .d2-1872540771 .fill-N4{fill:#CFD2DD;} + .d2-1872540771 .fill-N5{fill:#DEE1EB;} + .d2-1872540771 .fill-N6{fill:#EEF1F8;} + .d2-1872540771 .fill-N7{fill:#FFFFFF;} + .d2-1872540771 .fill-B1{fill:#0D32B2;} + .d2-1872540771 .fill-B2{fill:#0D32B2;} + .d2-1872540771 .fill-B3{fill:#E3E9FD;} + .d2-1872540771 .fill-B4{fill:#E3E9FD;} + .d2-1872540771 .fill-B5{fill:#EDF0FD;} + .d2-1872540771 .fill-B6{fill:#F7F8FE;} + .d2-1872540771 .fill-AA2{fill:#4A6FF3;} + .d2-1872540771 .fill-AA4{fill:#EDF0FD;} + .d2-1872540771 .fill-AA5{fill:#F7F8FE;} + .d2-1872540771 .fill-AB4{fill:#EDF0FD;} + .d2-1872540771 .fill-AB5{fill:#F7F8FE;} + .d2-1872540771 .stroke-N1{stroke:#0A0F25;} + .d2-1872540771 .stroke-N2{stroke:#676C7E;} + .d2-1872540771 .stroke-N3{stroke:#9499AB;} + .d2-1872540771 .stroke-N4{stroke:#CFD2DD;} + .d2-1872540771 .stroke-N5{stroke:#DEE1EB;} + .d2-1872540771 .stroke-N6{stroke:#EEF1F8;} + .d2-1872540771 .stroke-N7{stroke:#FFFFFF;} + .d2-1872540771 .stroke-B1{stroke:#0D32B2;} + .d2-1872540771 .stroke-B2{stroke:#0D32B2;} + .d2-1872540771 .stroke-B3{stroke:#E3E9FD;} + .d2-1872540771 .stroke-B4{stroke:#E3E9FD;} + .d2-1872540771 .stroke-B5{stroke:#EDF0FD;} + .d2-1872540771 .stroke-B6{stroke:#F7F8FE;} + .d2-1872540771 .stroke-AA2{stroke:#4A6FF3;} + .d2-1872540771 .stroke-AA4{stroke:#EDF0FD;} + .d2-1872540771 .stroke-AA5{stroke:#F7F8FE;} + .d2-1872540771 .stroke-AB4{stroke:#EDF0FD;} + .d2-1872540771 .stroke-AB5{stroke:#F7F8FE;} + .d2-1872540771 .background-color-N1{background-color:#0A0F25;} + .d2-1872540771 .background-color-N2{background-color:#676C7E;} + .d2-1872540771 .background-color-N3{background-color:#9499AB;} + .d2-1872540771 .background-color-N4{background-color:#CFD2DD;} + .d2-1872540771 .background-color-N5{background-color:#DEE1EB;} + .d2-1872540771 .background-color-N6{background-color:#EEF1F8;} + .d2-1872540771 .background-color-N7{background-color:#FFFFFF;} + .d2-1872540771 .background-color-B1{background-color:#0D32B2;} + .d2-1872540771 .background-color-B2{background-color:#0D32B2;} + .d2-1872540771 .background-color-B3{background-color:#E3E9FD;} + .d2-1872540771 .background-color-B4{background-color:#E3E9FD;} + .d2-1872540771 .background-color-B5{background-color:#EDF0FD;} + .d2-1872540771 .background-color-B6{background-color:#F7F8FE;} + .d2-1872540771 .background-color-AA2{background-color:#4A6FF3;} + .d2-1872540771 .background-color-AA4{background-color:#EDF0FD;} + .d2-1872540771 .background-color-AA5{background-color:#F7F8FE;} + .d2-1872540771 .background-color-AB4{background-color:#EDF0FD;} + .d2-1872540771 .background-color-AB5{background-color:#F7F8FE;} + .d2-1872540771 .color-N1{color:#0A0F25;} + .d2-1872540771 .color-N2{color:#676C7E;} + .d2-1872540771 .color-N3{color:#9499AB;} + .d2-1872540771 .color-N4{color:#CFD2DD;} + .d2-1872540771 .color-N5{color:#DEE1EB;} + .d2-1872540771 .color-N6{color:#EEF1F8;} + .d2-1872540771 .color-N7{color:#FFFFFF;} + .d2-1872540771 .color-B1{color:#0D32B2;} + .d2-1872540771 .color-B2{color:#0D32B2;} + .d2-1872540771 .color-B3{color:#E3E9FD;} + .d2-1872540771 .color-B4{color:#E3E9FD;} + .d2-1872540771 .color-B5{color:#EDF0FD;} + .d2-1872540771 .color-B6{color:#F7F8FE;} + .d2-1872540771 .color-AA2{color:#4A6FF3;} + .d2-1872540771 .color-AA4{color:#EDF0FD;} + .d2-1872540771 .color-AA5{color:#F7F8FE;} + .d2-1872540771 .color-AB4{color:#EDF0FD;} + .d2-1872540771 .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}]]>AlicelinebreakerBobdbqueueanoddservicewithanameinmultiple lines Authentication Requestmake request for something that is quite far away and requires a really long label to take all the space between the objectsvalidate credentials Authentication ResponseAnother authentication Requestdo it later storedAnother authentication Response diff --git a/e2etests/testdata/stable/sequence_diagram_span/dagre/board.exp.json b/e2etests/testdata/stable/sequence_diagram_span/dagre/board.exp.json index 9d25012347..8079707a02 100644 --- a/e2etests/testdata/stable/sequence_diagram_span/dagre/board.exp.json +++ b/e2etests/testdata/stable/sequence_diagram_span/dagre/board.exp.json @@ -714,6 +714,7 @@ "labelHeight": 21, "labelPosition": "INSIDE_MIDDLE_CENTER", "labelPercentage": 0, + "link": "", "route": [ { "x": 68, @@ -752,6 +753,7 @@ "labelHeight": 21, "labelPosition": "INSIDE_MIDDLE_CENTER", "labelPercentage": 0, + "link": "", "route": [ { "x": 68, @@ -790,6 +792,7 @@ "labelHeight": 21, "labelPosition": "INSIDE_MIDDLE_CENTER", "labelPercentage": 0, + "link": "", "route": [ { "x": 68, @@ -828,6 +831,7 @@ "labelHeight": 21, "labelPosition": "INSIDE_MIDDLE_CENTER", "labelPercentage": 0, + "link": "", "route": [ { "x": 68, @@ -866,6 +870,7 @@ "labelHeight": 21, "labelPosition": "INSIDE_MIDDLE_CENTER", "labelPercentage": 0, + "link": "", "route": [ { "x": 68, @@ -904,6 +909,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 222, @@ -942,6 +948,7 @@ "labelHeight": 21, "labelPosition": "INSIDE_MIDDLE_CENTER", "labelPercentage": 0, + "link": "", "route": [ { "x": 535, @@ -980,6 +987,7 @@ "labelHeight": 21, "labelPosition": "INSIDE_MIDDLE_CENTER", "labelPercentage": 0, + "link": "", "route": [ { "x": 62, @@ -1018,6 +1026,7 @@ "labelHeight": 21, "labelPosition": "INSIDE_MIDDLE_CENTER", "labelPercentage": 0, + "link": "", "route": [ { "x": 68, @@ -1056,6 +1065,7 @@ "labelHeight": 21, "labelPosition": "INSIDE_MIDDLE_CENTER", "labelPercentage": 0, + "link": "", "route": [ { "x": 68, @@ -1094,6 +1104,7 @@ "labelHeight": 21, "labelPosition": "INSIDE_MIDDLE_CENTER", "labelPercentage": 0, + "link": "", "route": [ { "x": 68, @@ -1132,6 +1143,7 @@ "labelHeight": 21, "labelPosition": "INSIDE_MIDDLE_CENTER", "labelPercentage": 0, + "link": "", "route": [ { "x": 68, @@ -1170,6 +1182,7 @@ "labelHeight": 21, "labelPosition": "INSIDE_MIDDLE_CENTER", "labelPercentage": 0, + "link": "", "route": [ { "x": 68, @@ -1208,6 +1221,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 62, @@ -1246,6 +1260,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 222, @@ -1284,6 +1299,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 372, @@ -1322,6 +1338,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 525, @@ -1360,6 +1377,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 735, @@ -1398,6 +1416,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 893.5, diff --git a/e2etests/testdata/stable/sequence_diagram_span/dagre/sketch.exp.svg b/e2etests/testdata/stable/sequence_diagram_span/dagre/sketch.exp.svg index ab906d85f6..8bf4d0bb85 100644 --- a/e2etests/testdata/stable/sequence_diagram_span/dagre/sketch.exp.svg +++ b/e2etests/testdata/stable/sequence_diagram_span/dagre/sketch.exp.svg @@ -1,16 +1,16 @@ -scoreritemResponseitemessayRubricconceptitemOutcome getItem() itemgetRubric()rubricapplyTo(essayResp)match(essayResponse)scorenewgetNormalMinimum()getNormalMaximum()setScore(score)setFeedback(missingConcepts) + .d2-2094605573 .fill-N1{fill:#0A0F25;} + .d2-2094605573 .fill-N2{fill:#676C7E;} + .d2-2094605573 .fill-N3{fill:#9499AB;} + .d2-2094605573 .fill-N4{fill:#CFD2DD;} + .d2-2094605573 .fill-N5{fill:#DEE1EB;} + .d2-2094605573 .fill-N6{fill:#EEF1F8;} + .d2-2094605573 .fill-N7{fill:#FFFFFF;} + .d2-2094605573 .fill-B1{fill:#0D32B2;} + .d2-2094605573 .fill-B2{fill:#0D32B2;} + .d2-2094605573 .fill-B3{fill:#E3E9FD;} + .d2-2094605573 .fill-B4{fill:#E3E9FD;} + .d2-2094605573 .fill-B5{fill:#EDF0FD;} + .d2-2094605573 .fill-B6{fill:#F7F8FE;} + .d2-2094605573 .fill-AA2{fill:#4A6FF3;} + .d2-2094605573 .fill-AA4{fill:#EDF0FD;} + .d2-2094605573 .fill-AA5{fill:#F7F8FE;} + .d2-2094605573 .fill-AB4{fill:#EDF0FD;} + .d2-2094605573 .fill-AB5{fill:#F7F8FE;} + .d2-2094605573 .stroke-N1{stroke:#0A0F25;} + .d2-2094605573 .stroke-N2{stroke:#676C7E;} + .d2-2094605573 .stroke-N3{stroke:#9499AB;} + .d2-2094605573 .stroke-N4{stroke:#CFD2DD;} + .d2-2094605573 .stroke-N5{stroke:#DEE1EB;} + .d2-2094605573 .stroke-N6{stroke:#EEF1F8;} + .d2-2094605573 .stroke-N7{stroke:#FFFFFF;} + .d2-2094605573 .stroke-B1{stroke:#0D32B2;} + .d2-2094605573 .stroke-B2{stroke:#0D32B2;} + .d2-2094605573 .stroke-B3{stroke:#E3E9FD;} + .d2-2094605573 .stroke-B4{stroke:#E3E9FD;} + .d2-2094605573 .stroke-B5{stroke:#EDF0FD;} + .d2-2094605573 .stroke-B6{stroke:#F7F8FE;} + .d2-2094605573 .stroke-AA2{stroke:#4A6FF3;} + .d2-2094605573 .stroke-AA4{stroke:#EDF0FD;} + .d2-2094605573 .stroke-AA5{stroke:#F7F8FE;} + .d2-2094605573 .stroke-AB4{stroke:#EDF0FD;} + .d2-2094605573 .stroke-AB5{stroke:#F7F8FE;} + .d2-2094605573 .background-color-N1{background-color:#0A0F25;} + .d2-2094605573 .background-color-N2{background-color:#676C7E;} + .d2-2094605573 .background-color-N3{background-color:#9499AB;} + .d2-2094605573 .background-color-N4{background-color:#CFD2DD;} + .d2-2094605573 .background-color-N5{background-color:#DEE1EB;} + .d2-2094605573 .background-color-N6{background-color:#EEF1F8;} + .d2-2094605573 .background-color-N7{background-color:#FFFFFF;} + .d2-2094605573 .background-color-B1{background-color:#0D32B2;} + .d2-2094605573 .background-color-B2{background-color:#0D32B2;} + .d2-2094605573 .background-color-B3{background-color:#E3E9FD;} + .d2-2094605573 .background-color-B4{background-color:#E3E9FD;} + .d2-2094605573 .background-color-B5{background-color:#EDF0FD;} + .d2-2094605573 .background-color-B6{background-color:#F7F8FE;} + .d2-2094605573 .background-color-AA2{background-color:#4A6FF3;} + .d2-2094605573 .background-color-AA4{background-color:#EDF0FD;} + .d2-2094605573 .background-color-AA5{background-color:#F7F8FE;} + .d2-2094605573 .background-color-AB4{background-color:#EDF0FD;} + .d2-2094605573 .background-color-AB5{background-color:#F7F8FE;} + .d2-2094605573 .color-N1{color:#0A0F25;} + .d2-2094605573 .color-N2{color:#676C7E;} + .d2-2094605573 .color-N3{color:#9499AB;} + .d2-2094605573 .color-N4{color:#CFD2DD;} + .d2-2094605573 .color-N5{color:#DEE1EB;} + .d2-2094605573 .color-N6{color:#EEF1F8;} + .d2-2094605573 .color-N7{color:#FFFFFF;} + .d2-2094605573 .color-B1{color:#0D32B2;} + .d2-2094605573 .color-B2{color:#0D32B2;} + .d2-2094605573 .color-B3{color:#E3E9FD;} + .d2-2094605573 .color-B4{color:#E3E9FD;} + .d2-2094605573 .color-B5{color:#EDF0FD;} + .d2-2094605573 .color-B6{color:#F7F8FE;} + .d2-2094605573 .color-AA2{color:#4A6FF3;} + .d2-2094605573 .color-AA4{color:#EDF0FD;} + .d2-2094605573 .color-AA5{color:#F7F8FE;} + .d2-2094605573 .color-AB4{color:#EDF0FD;} + .d2-2094605573 .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}]]>scoreritemResponseitemessayRubricconceptitemOutcome getItem() itemgetRubric()rubricapplyTo(essayResp)match(essayResponse)scorenewgetNormalMinimum()getNormalMaximum()setScore(score)setFeedback(missingConcepts) diff --git a/e2etests/testdata/stable/sequence_diagram_span/elk/board.exp.json b/e2etests/testdata/stable/sequence_diagram_span/elk/board.exp.json index 9d25012347..8079707a02 100644 --- a/e2etests/testdata/stable/sequence_diagram_span/elk/board.exp.json +++ b/e2etests/testdata/stable/sequence_diagram_span/elk/board.exp.json @@ -714,6 +714,7 @@ "labelHeight": 21, "labelPosition": "INSIDE_MIDDLE_CENTER", "labelPercentage": 0, + "link": "", "route": [ { "x": 68, @@ -752,6 +753,7 @@ "labelHeight": 21, "labelPosition": "INSIDE_MIDDLE_CENTER", "labelPercentage": 0, + "link": "", "route": [ { "x": 68, @@ -790,6 +792,7 @@ "labelHeight": 21, "labelPosition": "INSIDE_MIDDLE_CENTER", "labelPercentage": 0, + "link": "", "route": [ { "x": 68, @@ -828,6 +831,7 @@ "labelHeight": 21, "labelPosition": "INSIDE_MIDDLE_CENTER", "labelPercentage": 0, + "link": "", "route": [ { "x": 68, @@ -866,6 +870,7 @@ "labelHeight": 21, "labelPosition": "INSIDE_MIDDLE_CENTER", "labelPercentage": 0, + "link": "", "route": [ { "x": 68, @@ -904,6 +909,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 222, @@ -942,6 +948,7 @@ "labelHeight": 21, "labelPosition": "INSIDE_MIDDLE_CENTER", "labelPercentage": 0, + "link": "", "route": [ { "x": 535, @@ -980,6 +987,7 @@ "labelHeight": 21, "labelPosition": "INSIDE_MIDDLE_CENTER", "labelPercentage": 0, + "link": "", "route": [ { "x": 62, @@ -1018,6 +1026,7 @@ "labelHeight": 21, "labelPosition": "INSIDE_MIDDLE_CENTER", "labelPercentage": 0, + "link": "", "route": [ { "x": 68, @@ -1056,6 +1065,7 @@ "labelHeight": 21, "labelPosition": "INSIDE_MIDDLE_CENTER", "labelPercentage": 0, + "link": "", "route": [ { "x": 68, @@ -1094,6 +1104,7 @@ "labelHeight": 21, "labelPosition": "INSIDE_MIDDLE_CENTER", "labelPercentage": 0, + "link": "", "route": [ { "x": 68, @@ -1132,6 +1143,7 @@ "labelHeight": 21, "labelPosition": "INSIDE_MIDDLE_CENTER", "labelPercentage": 0, + "link": "", "route": [ { "x": 68, @@ -1170,6 +1182,7 @@ "labelHeight": 21, "labelPosition": "INSIDE_MIDDLE_CENTER", "labelPercentage": 0, + "link": "", "route": [ { "x": 68, @@ -1208,6 +1221,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 62, @@ -1246,6 +1260,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 222, @@ -1284,6 +1299,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 372, @@ -1322,6 +1338,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 525, @@ -1360,6 +1377,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 735, @@ -1398,6 +1416,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 893.5, diff --git a/e2etests/testdata/stable/sequence_diagram_span/elk/sketch.exp.svg b/e2etests/testdata/stable/sequence_diagram_span/elk/sketch.exp.svg index ab906d85f6..8bf4d0bb85 100644 --- a/e2etests/testdata/stable/sequence_diagram_span/elk/sketch.exp.svg +++ b/e2etests/testdata/stable/sequence_diagram_span/elk/sketch.exp.svg @@ -1,16 +1,16 @@ -scoreritemResponseitemessayRubricconceptitemOutcome getItem() itemgetRubric()rubricapplyTo(essayResp)match(essayResponse)scorenewgetNormalMinimum()getNormalMaximum()setScore(score)setFeedback(missingConcepts) + .d2-2094605573 .fill-N1{fill:#0A0F25;} + .d2-2094605573 .fill-N2{fill:#676C7E;} + .d2-2094605573 .fill-N3{fill:#9499AB;} + .d2-2094605573 .fill-N4{fill:#CFD2DD;} + .d2-2094605573 .fill-N5{fill:#DEE1EB;} + .d2-2094605573 .fill-N6{fill:#EEF1F8;} + .d2-2094605573 .fill-N7{fill:#FFFFFF;} + .d2-2094605573 .fill-B1{fill:#0D32B2;} + .d2-2094605573 .fill-B2{fill:#0D32B2;} + .d2-2094605573 .fill-B3{fill:#E3E9FD;} + .d2-2094605573 .fill-B4{fill:#E3E9FD;} + .d2-2094605573 .fill-B5{fill:#EDF0FD;} + .d2-2094605573 .fill-B6{fill:#F7F8FE;} + .d2-2094605573 .fill-AA2{fill:#4A6FF3;} + .d2-2094605573 .fill-AA4{fill:#EDF0FD;} + .d2-2094605573 .fill-AA5{fill:#F7F8FE;} + .d2-2094605573 .fill-AB4{fill:#EDF0FD;} + .d2-2094605573 .fill-AB5{fill:#F7F8FE;} + .d2-2094605573 .stroke-N1{stroke:#0A0F25;} + .d2-2094605573 .stroke-N2{stroke:#676C7E;} + .d2-2094605573 .stroke-N3{stroke:#9499AB;} + .d2-2094605573 .stroke-N4{stroke:#CFD2DD;} + .d2-2094605573 .stroke-N5{stroke:#DEE1EB;} + .d2-2094605573 .stroke-N6{stroke:#EEF1F8;} + .d2-2094605573 .stroke-N7{stroke:#FFFFFF;} + .d2-2094605573 .stroke-B1{stroke:#0D32B2;} + .d2-2094605573 .stroke-B2{stroke:#0D32B2;} + .d2-2094605573 .stroke-B3{stroke:#E3E9FD;} + .d2-2094605573 .stroke-B4{stroke:#E3E9FD;} + .d2-2094605573 .stroke-B5{stroke:#EDF0FD;} + .d2-2094605573 .stroke-B6{stroke:#F7F8FE;} + .d2-2094605573 .stroke-AA2{stroke:#4A6FF3;} + .d2-2094605573 .stroke-AA4{stroke:#EDF0FD;} + .d2-2094605573 .stroke-AA5{stroke:#F7F8FE;} + .d2-2094605573 .stroke-AB4{stroke:#EDF0FD;} + .d2-2094605573 .stroke-AB5{stroke:#F7F8FE;} + .d2-2094605573 .background-color-N1{background-color:#0A0F25;} + .d2-2094605573 .background-color-N2{background-color:#676C7E;} + .d2-2094605573 .background-color-N3{background-color:#9499AB;} + .d2-2094605573 .background-color-N4{background-color:#CFD2DD;} + .d2-2094605573 .background-color-N5{background-color:#DEE1EB;} + .d2-2094605573 .background-color-N6{background-color:#EEF1F8;} + .d2-2094605573 .background-color-N7{background-color:#FFFFFF;} + .d2-2094605573 .background-color-B1{background-color:#0D32B2;} + .d2-2094605573 .background-color-B2{background-color:#0D32B2;} + .d2-2094605573 .background-color-B3{background-color:#E3E9FD;} + .d2-2094605573 .background-color-B4{background-color:#E3E9FD;} + .d2-2094605573 .background-color-B5{background-color:#EDF0FD;} + .d2-2094605573 .background-color-B6{background-color:#F7F8FE;} + .d2-2094605573 .background-color-AA2{background-color:#4A6FF3;} + .d2-2094605573 .background-color-AA4{background-color:#EDF0FD;} + .d2-2094605573 .background-color-AA5{background-color:#F7F8FE;} + .d2-2094605573 .background-color-AB4{background-color:#EDF0FD;} + .d2-2094605573 .background-color-AB5{background-color:#F7F8FE;} + .d2-2094605573 .color-N1{color:#0A0F25;} + .d2-2094605573 .color-N2{color:#676C7E;} + .d2-2094605573 .color-N3{color:#9499AB;} + .d2-2094605573 .color-N4{color:#CFD2DD;} + .d2-2094605573 .color-N5{color:#DEE1EB;} + .d2-2094605573 .color-N6{color:#EEF1F8;} + .d2-2094605573 .color-N7{color:#FFFFFF;} + .d2-2094605573 .color-B1{color:#0D32B2;} + .d2-2094605573 .color-B2{color:#0D32B2;} + .d2-2094605573 .color-B3{color:#E3E9FD;} + .d2-2094605573 .color-B4{color:#E3E9FD;} + .d2-2094605573 .color-B5{color:#EDF0FD;} + .d2-2094605573 .color-B6{color:#F7F8FE;} + .d2-2094605573 .color-AA2{color:#4A6FF3;} + .d2-2094605573 .color-AA4{color:#EDF0FD;} + .d2-2094605573 .color-AA5{color:#F7F8FE;} + .d2-2094605573 .color-AB4{color:#EDF0FD;} + .d2-2094605573 .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}]]>scoreritemResponseitemessayRubricconceptitemOutcome getItem() itemgetRubric()rubricapplyTo(essayResp)match(essayResponse)scorenewgetNormalMinimum()getNormalMaximum()setScore(score)setFeedback(missingConcepts) diff --git a/e2etests/testdata/stable/sequence_diagrams/dagre/board.exp.json b/e2etests/testdata/stable/sequence_diagrams/dagre/board.exp.json index aa1bdaf767..1eb4ba88e8 100644 --- a/e2etests/testdata/stable/sequence_diagrams/dagre/board.exp.json +++ b/e2etests/testdata/stable/sequence_diagrams/dagre/board.exp.json @@ -2613,6 +2613,7 @@ "labelHeight": 21, "labelPosition": "INSIDE_MIDDLE_CENTER", "labelPercentage": 0, + "link": "", "route": [ { "x": 68, @@ -2651,6 +2652,7 @@ "labelHeight": 21, "labelPosition": "INSIDE_MIDDLE_CENTER", "labelPercentage": 0, + "link": "", "route": [ { "x": 68, @@ -2689,6 +2691,7 @@ "labelHeight": 21, "labelPosition": "INSIDE_MIDDLE_CENTER", "labelPercentage": 0, + "link": "", "route": [ { "x": 68, @@ -2727,6 +2730,7 @@ "labelHeight": 21, "labelPosition": "INSIDE_MIDDLE_CENTER", "labelPercentage": 0, + "link": "", "route": [ { "x": 68, @@ -2765,6 +2769,7 @@ "labelHeight": 21, "labelPosition": "INSIDE_MIDDLE_CENTER", "labelPercentage": 0, + "link": "", "route": [ { "x": 68, @@ -2803,6 +2808,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 222, @@ -2841,6 +2847,7 @@ "labelHeight": 21, "labelPosition": "INSIDE_MIDDLE_CENTER", "labelPercentage": 0, + "link": "", "route": [ { "x": 535, @@ -2879,6 +2886,7 @@ "labelHeight": 21, "labelPosition": "INSIDE_MIDDLE_CENTER", "labelPercentage": 0, + "link": "", "route": [ { "x": 62, @@ -2917,6 +2925,7 @@ "labelHeight": 21, "labelPosition": "INSIDE_MIDDLE_CENTER", "labelPercentage": 0, + "link": "", "route": [ { "x": 68, @@ -2955,6 +2964,7 @@ "labelHeight": 21, "labelPosition": "INSIDE_MIDDLE_CENTER", "labelPercentage": 0, + "link": "", "route": [ { "x": 68, @@ -2993,6 +3003,7 @@ "labelHeight": 21, "labelPosition": "INSIDE_MIDDLE_CENTER", "labelPercentage": 0, + "link": "", "route": [ { "x": 68, @@ -3031,6 +3042,7 @@ "labelHeight": 21, "labelPosition": "INSIDE_MIDDLE_CENTER", "labelPercentage": 0, + "link": "", "route": [ { "x": 68, @@ -3069,6 +3081,7 @@ "labelHeight": 21, "labelPosition": "INSIDE_MIDDLE_CENTER", "labelPercentage": 0, + "link": "", "route": [ { "x": 68, @@ -3107,6 +3120,7 @@ "labelHeight": 21, "labelPosition": "INSIDE_MIDDLE_CENTER", "labelPercentage": 0, + "link": "", "route": [ { "x": 1122, @@ -3145,6 +3159,7 @@ "labelHeight": 21, "labelPosition": "INSIDE_MIDDLE_CENTER", "labelPercentage": 0, + "link": "", "route": [ { "x": 1122, @@ -3183,6 +3198,7 @@ "labelHeight": 21, "labelPosition": "INSIDE_MIDDLE_CENTER", "labelPercentage": 0, + "link": "", "route": [ { "x": 1122, @@ -3221,6 +3237,7 @@ "labelHeight": 21, "labelPosition": "INSIDE_MIDDLE_CENTER", "labelPercentage": 0, + "link": "", "route": [ { "x": 1122, @@ -3259,6 +3276,7 @@ "labelHeight": 21, "labelPosition": "INSIDE_MIDDLE_CENTER", "labelPercentage": 0, + "link": "", "route": [ { "x": 1122, @@ -3297,6 +3315,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 1276, @@ -3335,6 +3354,7 @@ "labelHeight": 21, "labelPosition": "INSIDE_MIDDLE_CENTER", "labelPercentage": 0, + "link": "", "route": [ { "x": 1589, @@ -3373,6 +3393,7 @@ "labelHeight": 21, "labelPosition": "INSIDE_MIDDLE_CENTER", "labelPercentage": 0, + "link": "", "route": [ { "x": 1116, @@ -3411,6 +3432,7 @@ "labelHeight": 21, "labelPosition": "INSIDE_MIDDLE_CENTER", "labelPercentage": 0, + "link": "", "route": [ { "x": 1122, @@ -3449,6 +3471,7 @@ "labelHeight": 21, "labelPosition": "INSIDE_MIDDLE_CENTER", "labelPercentage": 0, + "link": "", "route": [ { "x": 1122, @@ -3487,6 +3510,7 @@ "labelHeight": 21, "labelPosition": "INSIDE_MIDDLE_CENTER", "labelPercentage": 0, + "link": "", "route": [ { "x": 1122, @@ -3525,6 +3549,7 @@ "labelHeight": 21, "labelPosition": "INSIDE_MIDDLE_CENTER", "labelPercentage": 0, + "link": "", "route": [ { "x": 1122, @@ -3563,6 +3588,7 @@ "labelHeight": 21, "labelPosition": "INSIDE_MIDDLE_CENTER", "labelPercentage": 0, + "link": "", "route": [ { "x": 1122, @@ -3601,6 +3627,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 1476, @@ -3648,6 +3675,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 1541, @@ -3695,6 +3723,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 487, @@ -3754,6 +3783,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 1541, @@ -3813,6 +3843,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 1606, @@ -3896,6 +3927,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 2194, @@ -3934,6 +3966,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 1853, @@ -3972,6 +4005,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 1699, @@ -4010,6 +4044,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 1857, @@ -4048,6 +4083,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 1578, @@ -4086,6 +4122,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 1416, @@ -4124,6 +4161,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 1999.5, @@ -4162,6 +4200,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 1410, @@ -4200,6 +4239,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 62, @@ -4238,6 +4278,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 222, @@ -4276,6 +4317,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 372, @@ -4314,6 +4356,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 525, @@ -4352,6 +4395,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 735, @@ -4390,6 +4434,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 893.5, @@ -4428,6 +4473,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 1116, @@ -4466,6 +4512,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 1276, @@ -4504,6 +4551,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 1426, @@ -4542,6 +4590,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 1579, @@ -4580,6 +4629,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 1789, @@ -4618,6 +4668,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 1947.5, @@ -4656,6 +4707,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 1410, @@ -4694,6 +4746,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 1560, @@ -4732,6 +4785,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 1713, @@ -4770,6 +4824,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 1863, @@ -4808,6 +4863,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 2021.5, @@ -4846,6 +4902,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 2200, diff --git a/e2etests/testdata/stable/sequence_diagrams/dagre/sketch.exp.svg b/e2etests/testdata/stable/sequence_diagrams/dagre/sketch.exp.svg index 23449d9c84..a00774e5f3 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-1481716508 .fill-N1{fill:#0A0F25;} + .d2-1481716508 .fill-N2{fill:#676C7E;} + .d2-1481716508 .fill-N3{fill:#9499AB;} + .d2-1481716508 .fill-N4{fill:#CFD2DD;} + .d2-1481716508 .fill-N5{fill:#DEE1EB;} + .d2-1481716508 .fill-N6{fill:#EEF1F8;} + .d2-1481716508 .fill-N7{fill:#FFFFFF;} + .d2-1481716508 .fill-B1{fill:#0D32B2;} + .d2-1481716508 .fill-B2{fill:#0D32B2;} + .d2-1481716508 .fill-B3{fill:#E3E9FD;} + .d2-1481716508 .fill-B4{fill:#E3E9FD;} + .d2-1481716508 .fill-B5{fill:#EDF0FD;} + .d2-1481716508 .fill-B6{fill:#F7F8FE;} + .d2-1481716508 .fill-AA2{fill:#4A6FF3;} + .d2-1481716508 .fill-AA4{fill:#EDF0FD;} + .d2-1481716508 .fill-AA5{fill:#F7F8FE;} + .d2-1481716508 .fill-AB4{fill:#EDF0FD;} + .d2-1481716508 .fill-AB5{fill:#F7F8FE;} + .d2-1481716508 .stroke-N1{stroke:#0A0F25;} + .d2-1481716508 .stroke-N2{stroke:#676C7E;} + .d2-1481716508 .stroke-N3{stroke:#9499AB;} + .d2-1481716508 .stroke-N4{stroke:#CFD2DD;} + .d2-1481716508 .stroke-N5{stroke:#DEE1EB;} + .d2-1481716508 .stroke-N6{stroke:#EEF1F8;} + .d2-1481716508 .stroke-N7{stroke:#FFFFFF;} + .d2-1481716508 .stroke-B1{stroke:#0D32B2;} + .d2-1481716508 .stroke-B2{stroke:#0D32B2;} + .d2-1481716508 .stroke-B3{stroke:#E3E9FD;} + .d2-1481716508 .stroke-B4{stroke:#E3E9FD;} + .d2-1481716508 .stroke-B5{stroke:#EDF0FD;} + .d2-1481716508 .stroke-B6{stroke:#F7F8FE;} + .d2-1481716508 .stroke-AA2{stroke:#4A6FF3;} + .d2-1481716508 .stroke-AA4{stroke:#EDF0FD;} + .d2-1481716508 .stroke-AA5{stroke:#F7F8FE;} + .d2-1481716508 .stroke-AB4{stroke:#EDF0FD;} + .d2-1481716508 .stroke-AB5{stroke:#F7F8FE;} + .d2-1481716508 .background-color-N1{background-color:#0A0F25;} + .d2-1481716508 .background-color-N2{background-color:#676C7E;} + .d2-1481716508 .background-color-N3{background-color:#9499AB;} + .d2-1481716508 .background-color-N4{background-color:#CFD2DD;} + .d2-1481716508 .background-color-N5{background-color:#DEE1EB;} + .d2-1481716508 .background-color-N6{background-color:#EEF1F8;} + .d2-1481716508 .background-color-N7{background-color:#FFFFFF;} + .d2-1481716508 .background-color-B1{background-color:#0D32B2;} + .d2-1481716508 .background-color-B2{background-color:#0D32B2;} + .d2-1481716508 .background-color-B3{background-color:#E3E9FD;} + .d2-1481716508 .background-color-B4{background-color:#E3E9FD;} + .d2-1481716508 .background-color-B5{background-color:#EDF0FD;} + .d2-1481716508 .background-color-B6{background-color:#F7F8FE;} + .d2-1481716508 .background-color-AA2{background-color:#4A6FF3;} + .d2-1481716508 .background-color-AA4{background-color:#EDF0FD;} + .d2-1481716508 .background-color-AA5{background-color:#F7F8FE;} + .d2-1481716508 .background-color-AB4{background-color:#EDF0FD;} + .d2-1481716508 .background-color-AB5{background-color:#F7F8FE;} + .d2-1481716508 .color-N1{color:#0A0F25;} + .d2-1481716508 .color-N2{color:#676C7E;} + .d2-1481716508 .color-N3{color:#9499AB;} + .d2-1481716508 .color-N4{color:#CFD2DD;} + .d2-1481716508 .color-N5{color:#DEE1EB;} + .d2-1481716508 .color-N6{color:#EEF1F8;} + .d2-1481716508 .color-N7{color:#FFFFFF;} + .d2-1481716508 .color-B1{color:#0D32B2;} + .d2-1481716508 .color-B2{color:#0D32B2;} + .d2-1481716508 .color-B3{color:#E3E9FD;} + .d2-1481716508 .color-B4{color:#E3E9FD;} + .d2-1481716508 .color-B5{color:#EDF0FD;} + .d2-1481716508 .color-B6{color:#F7F8FE;} + .d2-1481716508 .color-AA2{color:#4A6FF3;} + .d2-1481716508 .color-AA4{color:#EDF0FD;} + .d2-1481716508 .color-AA5{color:#F7F8FE;} + .d2-1481716508 .color-AB4{color:#EDF0FD;} + .d2-1481716508 .color-AB5{color:#F7F8FE;}.appendix text.text{fill:#0A0F25}.md{--color-fg-default:#0A0F25;--color-fg-muted:#676C7E;--color-fg-subtle:#9499AB;--color-canvas-default:#FFFFFF;--color-canvas-subtle:#EEF1F8;--color-border-default:#0D32B2;--color-border-muted:#0D32B2;--color-neutral-muted:#EEF1F8;--color-accent-fg:#0D32B2;--color-accent-emphasis:#0D32B2;--color-attention-subtle:#676C7E;--color-danger-fg:red;}.sketch-overlay-B1{fill:url(#streaks-darker);mix-blend-mode:lighten}.sketch-overlay-B2{fill:url(#streaks-darker);mix-blend-mode:lighten}.sketch-overlay-B3{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-B4{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-B5{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-B6{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-AA2{fill:url(#streaks-dark);mix-blend-mode:overlay}.sketch-overlay-AA4{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-AA5{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-AB4{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-AB5{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-N1{fill:url(#streaks-darker);mix-blend-mode:lighten}.sketch-overlay-N2{fill:url(#streaks-dark);mix-blend-mode:overlay}.sketch-overlay-N3{fill:url(#streaks-normal);mix-blend-mode:color-burn}.sketch-overlay-N4{fill:url(#streaks-normal);mix-blend-mode:color-burn}.sketch-overlay-N5{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-N6{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-N7{fill:url(#streaks-bright);mix-blend-mode:darken}.light-code{display: block}.dark-code{display: none}]]>a_shapea_sequenceanothersequencefinallyscoreritemResponseitemessayRubricconceptitemOutcomesequencesequencescoreritemResponseitemessayRubricconceptitemOutcomescorerconceptessayRubricitemitemOutcomeitemResponse getItem()itemgetRubric()rubricapplyTo(essayResp)match(essayResponse)scorenewgetNormalMinimum()getNormalMaximum()setScore(score)setFeedback(missingConcepts)getItem()itemgetRubric()rubricapplyTo(essayResp)match(essayResponse)scorenewgetNormalMinimum()getNormalMaximum()setScore(score)setFeedback(missingConcepts) diff --git a/e2etests/testdata/stable/sequence_diagrams/elk/board.exp.json b/e2etests/testdata/stable/sequence_diagrams/elk/board.exp.json index 08adb78036..f47b0cd236 100644 --- a/e2etests/testdata/stable/sequence_diagrams/elk/board.exp.json +++ b/e2etests/testdata/stable/sequence_diagrams/elk/board.exp.json @@ -2613,6 +2613,7 @@ "labelHeight": 21, "labelPosition": "INSIDE_MIDDLE_CENTER", "labelPercentage": 0, + "link": "", "route": [ { "x": 80, @@ -2651,6 +2652,7 @@ "labelHeight": 21, "labelPosition": "INSIDE_MIDDLE_CENTER", "labelPercentage": 0, + "link": "", "route": [ { "x": 80, @@ -2689,6 +2691,7 @@ "labelHeight": 21, "labelPosition": "INSIDE_MIDDLE_CENTER", "labelPercentage": 0, + "link": "", "route": [ { "x": 80, @@ -2727,6 +2730,7 @@ "labelHeight": 21, "labelPosition": "INSIDE_MIDDLE_CENTER", "labelPercentage": 0, + "link": "", "route": [ { "x": 80, @@ -2765,6 +2769,7 @@ "labelHeight": 21, "labelPosition": "INSIDE_MIDDLE_CENTER", "labelPercentage": 0, + "link": "", "route": [ { "x": 80, @@ -2803,6 +2808,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 234, @@ -2841,6 +2847,7 @@ "labelHeight": 21, "labelPosition": "INSIDE_MIDDLE_CENTER", "labelPercentage": 0, + "link": "", "route": [ { "x": 547, @@ -2879,6 +2886,7 @@ "labelHeight": 21, "labelPosition": "INSIDE_MIDDLE_CENTER", "labelPercentage": 0, + "link": "", "route": [ { "x": 74, @@ -2917,6 +2925,7 @@ "labelHeight": 21, "labelPosition": "INSIDE_MIDDLE_CENTER", "labelPercentage": 0, + "link": "", "route": [ { "x": 80, @@ -2955,6 +2964,7 @@ "labelHeight": 21, "labelPosition": "INSIDE_MIDDLE_CENTER", "labelPercentage": 0, + "link": "", "route": [ { "x": 80, @@ -2993,6 +3003,7 @@ "labelHeight": 21, "labelPosition": "INSIDE_MIDDLE_CENTER", "labelPercentage": 0, + "link": "", "route": [ { "x": 80, @@ -3031,6 +3042,7 @@ "labelHeight": 21, "labelPosition": "INSIDE_MIDDLE_CENTER", "labelPercentage": 0, + "link": "", "route": [ { "x": 80, @@ -3069,6 +3081,7 @@ "labelHeight": 21, "labelPosition": "INSIDE_MIDDLE_CENTER", "labelPercentage": 0, + "link": "", "route": [ { "x": 80, @@ -3107,6 +3120,7 @@ "labelHeight": 21, "labelPosition": "INSIDE_MIDDLE_CENTER", "labelPercentage": 0, + "link": "", "route": [ { "x": 1124, @@ -3145,6 +3159,7 @@ "labelHeight": 21, "labelPosition": "INSIDE_MIDDLE_CENTER", "labelPercentage": 0, + "link": "", "route": [ { "x": 1124, @@ -3183,6 +3198,7 @@ "labelHeight": 21, "labelPosition": "INSIDE_MIDDLE_CENTER", "labelPercentage": 0, + "link": "", "route": [ { "x": 1124, @@ -3221,6 +3237,7 @@ "labelHeight": 21, "labelPosition": "INSIDE_MIDDLE_CENTER", "labelPercentage": 0, + "link": "", "route": [ { "x": 1124, @@ -3259,6 +3276,7 @@ "labelHeight": 21, "labelPosition": "INSIDE_MIDDLE_CENTER", "labelPercentage": 0, + "link": "", "route": [ { "x": 1124, @@ -3297,6 +3315,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 1278, @@ -3335,6 +3354,7 @@ "labelHeight": 21, "labelPosition": "INSIDE_MIDDLE_CENTER", "labelPercentage": 0, + "link": "", "route": [ { "x": 1591, @@ -3373,6 +3393,7 @@ "labelHeight": 21, "labelPosition": "INSIDE_MIDDLE_CENTER", "labelPercentage": 0, + "link": "", "route": [ { "x": 1118, @@ -3411,6 +3432,7 @@ "labelHeight": 21, "labelPosition": "INSIDE_MIDDLE_CENTER", "labelPercentage": 0, + "link": "", "route": [ { "x": 1124, @@ -3449,6 +3471,7 @@ "labelHeight": 21, "labelPosition": "INSIDE_MIDDLE_CENTER", "labelPercentage": 0, + "link": "", "route": [ { "x": 1124, @@ -3487,6 +3510,7 @@ "labelHeight": 21, "labelPosition": "INSIDE_MIDDLE_CENTER", "labelPercentage": 0, + "link": "", "route": [ { "x": 1124, @@ -3525,6 +3549,7 @@ "labelHeight": 21, "labelPosition": "INSIDE_MIDDLE_CENTER", "labelPercentage": 0, + "link": "", "route": [ { "x": 1124, @@ -3563,6 +3588,7 @@ "labelHeight": 21, "labelPosition": "INSIDE_MIDDLE_CENTER", "labelPercentage": 0, + "link": "", "route": [ { "x": 1124, @@ -3601,6 +3627,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 1510, @@ -3647,6 +3674,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 1543, @@ -3685,6 +3713,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 499, @@ -3723,6 +3752,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 1826.5, @@ -3761,6 +3791,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 1576, @@ -3807,6 +3838,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 2205.5, @@ -3845,6 +3877,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 1864.5, @@ -3883,6 +3916,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 1710.5, @@ -3921,6 +3955,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 1868.5, @@ -3959,6 +3994,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 1589.5, @@ -3997,6 +4033,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 1427.5, @@ -4035,6 +4072,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 2011, @@ -4073,6 +4111,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 1421.5, @@ -4111,6 +4150,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 74, @@ -4149,6 +4189,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 234, @@ -4187,6 +4228,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 384, @@ -4225,6 +4267,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 537, @@ -4263,6 +4306,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 747, @@ -4301,6 +4345,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 905.5, @@ -4339,6 +4384,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 1118, @@ -4377,6 +4423,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 1278, @@ -4415,6 +4462,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 1428, @@ -4453,6 +4501,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 1581, @@ -4491,6 +4540,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 1791, @@ -4529,6 +4579,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 1949.5, @@ -4567,6 +4618,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 1421.5, @@ -4605,6 +4657,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 1571.5, @@ -4643,6 +4696,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 1724.5, @@ -4681,6 +4735,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 1874.5, @@ -4719,6 +4774,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 2033, @@ -4757,6 +4813,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 2211.5, diff --git a/e2etests/testdata/stable/sequence_diagrams/elk/sketch.exp.svg b/e2etests/testdata/stable/sequence_diagrams/elk/sketch.exp.svg index 147ba3875f..0509682c69 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-4197222062 .fill-N1{fill:#0A0F25;} + .d2-4197222062 .fill-N2{fill:#676C7E;} + .d2-4197222062 .fill-N3{fill:#9499AB;} + .d2-4197222062 .fill-N4{fill:#CFD2DD;} + .d2-4197222062 .fill-N5{fill:#DEE1EB;} + .d2-4197222062 .fill-N6{fill:#EEF1F8;} + .d2-4197222062 .fill-N7{fill:#FFFFFF;} + .d2-4197222062 .fill-B1{fill:#0D32B2;} + .d2-4197222062 .fill-B2{fill:#0D32B2;} + .d2-4197222062 .fill-B3{fill:#E3E9FD;} + .d2-4197222062 .fill-B4{fill:#E3E9FD;} + .d2-4197222062 .fill-B5{fill:#EDF0FD;} + .d2-4197222062 .fill-B6{fill:#F7F8FE;} + .d2-4197222062 .fill-AA2{fill:#4A6FF3;} + .d2-4197222062 .fill-AA4{fill:#EDF0FD;} + .d2-4197222062 .fill-AA5{fill:#F7F8FE;} + .d2-4197222062 .fill-AB4{fill:#EDF0FD;} + .d2-4197222062 .fill-AB5{fill:#F7F8FE;} + .d2-4197222062 .stroke-N1{stroke:#0A0F25;} + .d2-4197222062 .stroke-N2{stroke:#676C7E;} + .d2-4197222062 .stroke-N3{stroke:#9499AB;} + .d2-4197222062 .stroke-N4{stroke:#CFD2DD;} + .d2-4197222062 .stroke-N5{stroke:#DEE1EB;} + .d2-4197222062 .stroke-N6{stroke:#EEF1F8;} + .d2-4197222062 .stroke-N7{stroke:#FFFFFF;} + .d2-4197222062 .stroke-B1{stroke:#0D32B2;} + .d2-4197222062 .stroke-B2{stroke:#0D32B2;} + .d2-4197222062 .stroke-B3{stroke:#E3E9FD;} + .d2-4197222062 .stroke-B4{stroke:#E3E9FD;} + .d2-4197222062 .stroke-B5{stroke:#EDF0FD;} + .d2-4197222062 .stroke-B6{stroke:#F7F8FE;} + .d2-4197222062 .stroke-AA2{stroke:#4A6FF3;} + .d2-4197222062 .stroke-AA4{stroke:#EDF0FD;} + .d2-4197222062 .stroke-AA5{stroke:#F7F8FE;} + .d2-4197222062 .stroke-AB4{stroke:#EDF0FD;} + .d2-4197222062 .stroke-AB5{stroke:#F7F8FE;} + .d2-4197222062 .background-color-N1{background-color:#0A0F25;} + .d2-4197222062 .background-color-N2{background-color:#676C7E;} + .d2-4197222062 .background-color-N3{background-color:#9499AB;} + .d2-4197222062 .background-color-N4{background-color:#CFD2DD;} + .d2-4197222062 .background-color-N5{background-color:#DEE1EB;} + .d2-4197222062 .background-color-N6{background-color:#EEF1F8;} + .d2-4197222062 .background-color-N7{background-color:#FFFFFF;} + .d2-4197222062 .background-color-B1{background-color:#0D32B2;} + .d2-4197222062 .background-color-B2{background-color:#0D32B2;} + .d2-4197222062 .background-color-B3{background-color:#E3E9FD;} + .d2-4197222062 .background-color-B4{background-color:#E3E9FD;} + .d2-4197222062 .background-color-B5{background-color:#EDF0FD;} + .d2-4197222062 .background-color-B6{background-color:#F7F8FE;} + .d2-4197222062 .background-color-AA2{background-color:#4A6FF3;} + .d2-4197222062 .background-color-AA4{background-color:#EDF0FD;} + .d2-4197222062 .background-color-AA5{background-color:#F7F8FE;} + .d2-4197222062 .background-color-AB4{background-color:#EDF0FD;} + .d2-4197222062 .background-color-AB5{background-color:#F7F8FE;} + .d2-4197222062 .color-N1{color:#0A0F25;} + .d2-4197222062 .color-N2{color:#676C7E;} + .d2-4197222062 .color-N3{color:#9499AB;} + .d2-4197222062 .color-N4{color:#CFD2DD;} + .d2-4197222062 .color-N5{color:#DEE1EB;} + .d2-4197222062 .color-N6{color:#EEF1F8;} + .d2-4197222062 .color-N7{color:#FFFFFF;} + .d2-4197222062 .color-B1{color:#0D32B2;} + .d2-4197222062 .color-B2{color:#0D32B2;} + .d2-4197222062 .color-B3{color:#E3E9FD;} + .d2-4197222062 .color-B4{color:#E3E9FD;} + .d2-4197222062 .color-B5{color:#EDF0FD;} + .d2-4197222062 .color-B6{color:#F7F8FE;} + .d2-4197222062 .color-AA2{color:#4A6FF3;} + .d2-4197222062 .color-AA4{color:#EDF0FD;} + .d2-4197222062 .color-AA5{color:#F7F8FE;} + .d2-4197222062 .color-AB4{color:#EDF0FD;} + .d2-4197222062 .color-AB5{color:#F7F8FE;}.appendix text.text{fill:#0A0F25}.md{--color-fg-default:#0A0F25;--color-fg-muted:#676C7E;--color-fg-subtle:#9499AB;--color-canvas-default:#FFFFFF;--color-canvas-subtle:#EEF1F8;--color-border-default:#0D32B2;--color-border-muted:#0D32B2;--color-neutral-muted:#EEF1F8;--color-accent-fg:#0D32B2;--color-accent-emphasis:#0D32B2;--color-attention-subtle:#676C7E;--color-danger-fg:red;}.sketch-overlay-B1{fill:url(#streaks-darker);mix-blend-mode:lighten}.sketch-overlay-B2{fill:url(#streaks-darker);mix-blend-mode:lighten}.sketch-overlay-B3{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-B4{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-B5{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-B6{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-AA2{fill:url(#streaks-dark);mix-blend-mode:overlay}.sketch-overlay-AA4{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-AA5{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-AB4{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-AB5{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-N1{fill:url(#streaks-darker);mix-blend-mode:lighten}.sketch-overlay-N2{fill:url(#streaks-dark);mix-blend-mode:overlay}.sketch-overlay-N3{fill:url(#streaks-normal);mix-blend-mode:color-burn}.sketch-overlay-N4{fill:url(#streaks-normal);mix-blend-mode:color-burn}.sketch-overlay-N5{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-N6{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-N7{fill:url(#streaks-bright);mix-blend-mode:darken}.light-code{display: block}.dark-code{display: none}]]>a_shapea_sequenceanothersequencefinallyscoreritemResponseitemessayRubricconceptitemOutcomesequencesequencescoreritemResponseitemessayRubricconceptitemOutcomescorerconceptessayRubricitemitemOutcomeitemResponse getItem()itemgetRubric()rubricapplyTo(essayResp)match(essayResponse)scorenewgetNormalMinimum()getNormalMaximum()setScore(score)setFeedback(missingConcepts)getItem()itemgetRubric()rubricapplyTo(essayResp)match(essayResponse)scorenewgetNormalMinimum()getNormalMaximum()setScore(score)setFeedback(missingConcepts) diff --git a/e2etests/testdata/stable/simple_grid_edges/dagre/board.exp.json b/e2etests/testdata/stable/simple_grid_edges/dagre/board.exp.json index 52e639ce56..32f75b2714 100644 --- a/e2etests/testdata/stable/simple_grid_edges/dagre/board.exp.json +++ b/e2etests/testdata/stable/simple_grid_edges/dagre/board.exp.json @@ -1250,6 +1250,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 50, @@ -1291,6 +1292,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 100, @@ -1332,6 +1334,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 220, @@ -1373,6 +1376,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 340, @@ -1414,6 +1418,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 460, @@ -1455,6 +1460,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 170, @@ -1496,6 +1502,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 410, @@ -1537,6 +1544,7 @@ "labelHeight": 13, "labelPosition": "INSIDE_MIDDLE_CENTER", "labelPercentage": 0, + "link": "", "route": [ { "x": 530, @@ -1578,6 +1586,7 @@ "labelHeight": 13, "labelPosition": "INSIDE_MIDDLE_CENTER", "labelPercentage": 0, + "link": "", "route": [ { "x": 530, diff --git a/e2etests/testdata/stable/simple_grid_edges/dagre/sketch.exp.svg b/e2etests/testdata/stable/simple_grid_edges/dagre/sketch.exp.svg index f0b0e58d3e..bd8833bfec 100644 --- a/e2etests/testdata/stable/simple_grid_edges/dagre/sketch.exp.svg +++ b/e2etests/testdata/stable/simple_grid_edges/dagre/sketch.exp.svg @@ -1,23 +1,23 @@ -npm i -g@forge/cliSet up anAtlassian siteView the helloworld appforgetunnelforgeloginforgecreateforgedeployforgeinstallHot reloadchanges?Step 1Step 2Step 3Step 4forgedeploy⬤ Forge CLI⬤ Required⬤ Optional YesNo + .d2-2134875159 .fill-N1{fill:#0A0F25;} + .d2-2134875159 .fill-N2{fill:#676C7E;} + .d2-2134875159 .fill-N3{fill:#9499AB;} + .d2-2134875159 .fill-N4{fill:#CFD2DD;} + .d2-2134875159 .fill-N5{fill:#DEE1EB;} + .d2-2134875159 .fill-N6{fill:#EEF1F8;} + .d2-2134875159 .fill-N7{fill:#FFFFFF;} + .d2-2134875159 .fill-B1{fill:#0D32B2;} + .d2-2134875159 .fill-B2{fill:#0D32B2;} + .d2-2134875159 .fill-B3{fill:#E3E9FD;} + .d2-2134875159 .fill-B4{fill:#E3E9FD;} + .d2-2134875159 .fill-B5{fill:#EDF0FD;} + .d2-2134875159 .fill-B6{fill:#F7F8FE;} + .d2-2134875159 .fill-AA2{fill:#4A6FF3;} + .d2-2134875159 .fill-AA4{fill:#EDF0FD;} + .d2-2134875159 .fill-AA5{fill:#F7F8FE;} + .d2-2134875159 .fill-AB4{fill:#EDF0FD;} + .d2-2134875159 .fill-AB5{fill:#F7F8FE;} + .d2-2134875159 .stroke-N1{stroke:#0A0F25;} + .d2-2134875159 .stroke-N2{stroke:#676C7E;} + .d2-2134875159 .stroke-N3{stroke:#9499AB;} + .d2-2134875159 .stroke-N4{stroke:#CFD2DD;} + .d2-2134875159 .stroke-N5{stroke:#DEE1EB;} + .d2-2134875159 .stroke-N6{stroke:#EEF1F8;} + .d2-2134875159 .stroke-N7{stroke:#FFFFFF;} + .d2-2134875159 .stroke-B1{stroke:#0D32B2;} + .d2-2134875159 .stroke-B2{stroke:#0D32B2;} + .d2-2134875159 .stroke-B3{stroke:#E3E9FD;} + .d2-2134875159 .stroke-B4{stroke:#E3E9FD;} + .d2-2134875159 .stroke-B5{stroke:#EDF0FD;} + .d2-2134875159 .stroke-B6{stroke:#F7F8FE;} + .d2-2134875159 .stroke-AA2{stroke:#4A6FF3;} + .d2-2134875159 .stroke-AA4{stroke:#EDF0FD;} + .d2-2134875159 .stroke-AA5{stroke:#F7F8FE;} + .d2-2134875159 .stroke-AB4{stroke:#EDF0FD;} + .d2-2134875159 .stroke-AB5{stroke:#F7F8FE;} + .d2-2134875159 .background-color-N1{background-color:#0A0F25;} + .d2-2134875159 .background-color-N2{background-color:#676C7E;} + .d2-2134875159 .background-color-N3{background-color:#9499AB;} + .d2-2134875159 .background-color-N4{background-color:#CFD2DD;} + .d2-2134875159 .background-color-N5{background-color:#DEE1EB;} + .d2-2134875159 .background-color-N6{background-color:#EEF1F8;} + .d2-2134875159 .background-color-N7{background-color:#FFFFFF;} + .d2-2134875159 .background-color-B1{background-color:#0D32B2;} + .d2-2134875159 .background-color-B2{background-color:#0D32B2;} + .d2-2134875159 .background-color-B3{background-color:#E3E9FD;} + .d2-2134875159 .background-color-B4{background-color:#E3E9FD;} + .d2-2134875159 .background-color-B5{background-color:#EDF0FD;} + .d2-2134875159 .background-color-B6{background-color:#F7F8FE;} + .d2-2134875159 .background-color-AA2{background-color:#4A6FF3;} + .d2-2134875159 .background-color-AA4{background-color:#EDF0FD;} + .d2-2134875159 .background-color-AA5{background-color:#F7F8FE;} + .d2-2134875159 .background-color-AB4{background-color:#EDF0FD;} + .d2-2134875159 .background-color-AB5{background-color:#F7F8FE;} + .d2-2134875159 .color-N1{color:#0A0F25;} + .d2-2134875159 .color-N2{color:#676C7E;} + .d2-2134875159 .color-N3{color:#9499AB;} + .d2-2134875159 .color-N4{color:#CFD2DD;} + .d2-2134875159 .color-N5{color:#DEE1EB;} + .d2-2134875159 .color-N6{color:#EEF1F8;} + .d2-2134875159 .color-N7{color:#FFFFFF;} + .d2-2134875159 .color-B1{color:#0D32B2;} + .d2-2134875159 .color-B2{color:#0D32B2;} + .d2-2134875159 .color-B3{color:#E3E9FD;} + .d2-2134875159 .color-B4{color:#E3E9FD;} + .d2-2134875159 .color-B5{color:#EDF0FD;} + .d2-2134875159 .color-B6{color:#F7F8FE;} + .d2-2134875159 .color-AA2{color:#4A6FF3;} + .d2-2134875159 .color-AA4{color:#EDF0FD;} + .d2-2134875159 .color-AA5{color:#F7F8FE;} + .d2-2134875159 .color-AB4{color:#EDF0FD;} + .d2-2134875159 .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}]]>npm i -g@forge/cliSet up anAtlassian siteView the helloworld appforgetunnelforgeloginforgecreateforgedeployforgeinstallHot reloadchanges?Step 1Step 2Step 3Step 4forgedeploy⬤ Forge CLI⬤ Required⬤ Optional YesNo diff --git a/e2etests/testdata/stable/simple_grid_edges/elk/board.exp.json b/e2etests/testdata/stable/simple_grid_edges/elk/board.exp.json index 52e639ce56..32f75b2714 100644 --- a/e2etests/testdata/stable/simple_grid_edges/elk/board.exp.json +++ b/e2etests/testdata/stable/simple_grid_edges/elk/board.exp.json @@ -1250,6 +1250,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 50, @@ -1291,6 +1292,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 100, @@ -1332,6 +1334,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 220, @@ -1373,6 +1376,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 340, @@ -1414,6 +1418,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 460, @@ -1455,6 +1460,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 170, @@ -1496,6 +1502,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 410, @@ -1537,6 +1544,7 @@ "labelHeight": 13, "labelPosition": "INSIDE_MIDDLE_CENTER", "labelPercentage": 0, + "link": "", "route": [ { "x": 530, @@ -1578,6 +1586,7 @@ "labelHeight": 13, "labelPosition": "INSIDE_MIDDLE_CENTER", "labelPercentage": 0, + "link": "", "route": [ { "x": 530, diff --git a/e2etests/testdata/stable/simple_grid_edges/elk/sketch.exp.svg b/e2etests/testdata/stable/simple_grid_edges/elk/sketch.exp.svg index f0b0e58d3e..bd8833bfec 100644 --- a/e2etests/testdata/stable/simple_grid_edges/elk/sketch.exp.svg +++ b/e2etests/testdata/stable/simple_grid_edges/elk/sketch.exp.svg @@ -1,23 +1,23 @@ -npm i -g@forge/cliSet up anAtlassian siteView the helloworld appforgetunnelforgeloginforgecreateforgedeployforgeinstallHot reloadchanges?Step 1Step 2Step 3Step 4forgedeploy⬤ Forge CLI⬤ Required⬤ Optional YesNo + .d2-2134875159 .fill-N1{fill:#0A0F25;} + .d2-2134875159 .fill-N2{fill:#676C7E;} + .d2-2134875159 .fill-N3{fill:#9499AB;} + .d2-2134875159 .fill-N4{fill:#CFD2DD;} + .d2-2134875159 .fill-N5{fill:#DEE1EB;} + .d2-2134875159 .fill-N6{fill:#EEF1F8;} + .d2-2134875159 .fill-N7{fill:#FFFFFF;} + .d2-2134875159 .fill-B1{fill:#0D32B2;} + .d2-2134875159 .fill-B2{fill:#0D32B2;} + .d2-2134875159 .fill-B3{fill:#E3E9FD;} + .d2-2134875159 .fill-B4{fill:#E3E9FD;} + .d2-2134875159 .fill-B5{fill:#EDF0FD;} + .d2-2134875159 .fill-B6{fill:#F7F8FE;} + .d2-2134875159 .fill-AA2{fill:#4A6FF3;} + .d2-2134875159 .fill-AA4{fill:#EDF0FD;} + .d2-2134875159 .fill-AA5{fill:#F7F8FE;} + .d2-2134875159 .fill-AB4{fill:#EDF0FD;} + .d2-2134875159 .fill-AB5{fill:#F7F8FE;} + .d2-2134875159 .stroke-N1{stroke:#0A0F25;} + .d2-2134875159 .stroke-N2{stroke:#676C7E;} + .d2-2134875159 .stroke-N3{stroke:#9499AB;} + .d2-2134875159 .stroke-N4{stroke:#CFD2DD;} + .d2-2134875159 .stroke-N5{stroke:#DEE1EB;} + .d2-2134875159 .stroke-N6{stroke:#EEF1F8;} + .d2-2134875159 .stroke-N7{stroke:#FFFFFF;} + .d2-2134875159 .stroke-B1{stroke:#0D32B2;} + .d2-2134875159 .stroke-B2{stroke:#0D32B2;} + .d2-2134875159 .stroke-B3{stroke:#E3E9FD;} + .d2-2134875159 .stroke-B4{stroke:#E3E9FD;} + .d2-2134875159 .stroke-B5{stroke:#EDF0FD;} + .d2-2134875159 .stroke-B6{stroke:#F7F8FE;} + .d2-2134875159 .stroke-AA2{stroke:#4A6FF3;} + .d2-2134875159 .stroke-AA4{stroke:#EDF0FD;} + .d2-2134875159 .stroke-AA5{stroke:#F7F8FE;} + .d2-2134875159 .stroke-AB4{stroke:#EDF0FD;} + .d2-2134875159 .stroke-AB5{stroke:#F7F8FE;} + .d2-2134875159 .background-color-N1{background-color:#0A0F25;} + .d2-2134875159 .background-color-N2{background-color:#676C7E;} + .d2-2134875159 .background-color-N3{background-color:#9499AB;} + .d2-2134875159 .background-color-N4{background-color:#CFD2DD;} + .d2-2134875159 .background-color-N5{background-color:#DEE1EB;} + .d2-2134875159 .background-color-N6{background-color:#EEF1F8;} + .d2-2134875159 .background-color-N7{background-color:#FFFFFF;} + .d2-2134875159 .background-color-B1{background-color:#0D32B2;} + .d2-2134875159 .background-color-B2{background-color:#0D32B2;} + .d2-2134875159 .background-color-B3{background-color:#E3E9FD;} + .d2-2134875159 .background-color-B4{background-color:#E3E9FD;} + .d2-2134875159 .background-color-B5{background-color:#EDF0FD;} + .d2-2134875159 .background-color-B6{background-color:#F7F8FE;} + .d2-2134875159 .background-color-AA2{background-color:#4A6FF3;} + .d2-2134875159 .background-color-AA4{background-color:#EDF0FD;} + .d2-2134875159 .background-color-AA5{background-color:#F7F8FE;} + .d2-2134875159 .background-color-AB4{background-color:#EDF0FD;} + .d2-2134875159 .background-color-AB5{background-color:#F7F8FE;} + .d2-2134875159 .color-N1{color:#0A0F25;} + .d2-2134875159 .color-N2{color:#676C7E;} + .d2-2134875159 .color-N3{color:#9499AB;} + .d2-2134875159 .color-N4{color:#CFD2DD;} + .d2-2134875159 .color-N5{color:#DEE1EB;} + .d2-2134875159 .color-N6{color:#EEF1F8;} + .d2-2134875159 .color-N7{color:#FFFFFF;} + .d2-2134875159 .color-B1{color:#0D32B2;} + .d2-2134875159 .color-B2{color:#0D32B2;} + .d2-2134875159 .color-B3{color:#E3E9FD;} + .d2-2134875159 .color-B4{color:#E3E9FD;} + .d2-2134875159 .color-B5{color:#EDF0FD;} + .d2-2134875159 .color-B6{color:#F7F8FE;} + .d2-2134875159 .color-AA2{color:#4A6FF3;} + .d2-2134875159 .color-AA4{color:#EDF0FD;} + .d2-2134875159 .color-AA5{color:#F7F8FE;} + .d2-2134875159 .color-AB4{color:#EDF0FD;} + .d2-2134875159 .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}]]>npm i -g@forge/cliSet up anAtlassian siteView the helloworld appforgetunnelforgeloginforgecreateforgedeployforgeinstallHot reloadchanges?Step 1Step 2Step 3Step 4forgedeploy⬤ Forge CLI⬤ Required⬤ Optional YesNo diff --git a/e2etests/testdata/stable/sql_table_row_connections/dagre/board.exp.json b/e2etests/testdata/stable/sql_table_row_connections/dagre/board.exp.json index e9050aa8e6..d9c96f5f75 100644 --- a/e2etests/testdata/stable/sql_table_row_connections/dagre/board.exp.json +++ b/e2etests/testdata/stable/sql_table_row_connections/dagre/board.exp.json @@ -236,6 +236,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 231, @@ -283,6 +284,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 231, diff --git a/e2etests/testdata/stable/sql_table_row_connections/dagre/sketch.exp.svg b/e2etests/testdata/stable/sql_table_row_connections/dagre/sketch.exp.svg index 2f48072f43..807e7e3dfc 100644 --- a/e2etests/testdata/stable/sql_table_row_connections/dagre/sketch.exp.svg +++ b/e2etests/testdata/stable/sql_table_row_connections/dagre/sketch.exp.svg @@ -1,9 +1,9 @@ -aidintPKbidintPKa_1intFKa_2intFK + .d2-3621457819 .fill-N1{fill:#0A0F25;} + .d2-3621457819 .fill-N2{fill:#676C7E;} + .d2-3621457819 .fill-N3{fill:#9499AB;} + .d2-3621457819 .fill-N4{fill:#CFD2DD;} + .d2-3621457819 .fill-N5{fill:#DEE1EB;} + .d2-3621457819 .fill-N6{fill:#EEF1F8;} + .d2-3621457819 .fill-N7{fill:#FFFFFF;} + .d2-3621457819 .fill-B1{fill:#0D32B2;} + .d2-3621457819 .fill-B2{fill:#0D32B2;} + .d2-3621457819 .fill-B3{fill:#E3E9FD;} + .d2-3621457819 .fill-B4{fill:#E3E9FD;} + .d2-3621457819 .fill-B5{fill:#EDF0FD;} + .d2-3621457819 .fill-B6{fill:#F7F8FE;} + .d2-3621457819 .fill-AA2{fill:#4A6FF3;} + .d2-3621457819 .fill-AA4{fill:#EDF0FD;} + .d2-3621457819 .fill-AA5{fill:#F7F8FE;} + .d2-3621457819 .fill-AB4{fill:#EDF0FD;} + .d2-3621457819 .fill-AB5{fill:#F7F8FE;} + .d2-3621457819 .stroke-N1{stroke:#0A0F25;} + .d2-3621457819 .stroke-N2{stroke:#676C7E;} + .d2-3621457819 .stroke-N3{stroke:#9499AB;} + .d2-3621457819 .stroke-N4{stroke:#CFD2DD;} + .d2-3621457819 .stroke-N5{stroke:#DEE1EB;} + .d2-3621457819 .stroke-N6{stroke:#EEF1F8;} + .d2-3621457819 .stroke-N7{stroke:#FFFFFF;} + .d2-3621457819 .stroke-B1{stroke:#0D32B2;} + .d2-3621457819 .stroke-B2{stroke:#0D32B2;} + .d2-3621457819 .stroke-B3{stroke:#E3E9FD;} + .d2-3621457819 .stroke-B4{stroke:#E3E9FD;} + .d2-3621457819 .stroke-B5{stroke:#EDF0FD;} + .d2-3621457819 .stroke-B6{stroke:#F7F8FE;} + .d2-3621457819 .stroke-AA2{stroke:#4A6FF3;} + .d2-3621457819 .stroke-AA4{stroke:#EDF0FD;} + .d2-3621457819 .stroke-AA5{stroke:#F7F8FE;} + .d2-3621457819 .stroke-AB4{stroke:#EDF0FD;} + .d2-3621457819 .stroke-AB5{stroke:#F7F8FE;} + .d2-3621457819 .background-color-N1{background-color:#0A0F25;} + .d2-3621457819 .background-color-N2{background-color:#676C7E;} + .d2-3621457819 .background-color-N3{background-color:#9499AB;} + .d2-3621457819 .background-color-N4{background-color:#CFD2DD;} + .d2-3621457819 .background-color-N5{background-color:#DEE1EB;} + .d2-3621457819 .background-color-N6{background-color:#EEF1F8;} + .d2-3621457819 .background-color-N7{background-color:#FFFFFF;} + .d2-3621457819 .background-color-B1{background-color:#0D32B2;} + .d2-3621457819 .background-color-B2{background-color:#0D32B2;} + .d2-3621457819 .background-color-B3{background-color:#E3E9FD;} + .d2-3621457819 .background-color-B4{background-color:#E3E9FD;} + .d2-3621457819 .background-color-B5{background-color:#EDF0FD;} + .d2-3621457819 .background-color-B6{background-color:#F7F8FE;} + .d2-3621457819 .background-color-AA2{background-color:#4A6FF3;} + .d2-3621457819 .background-color-AA4{background-color:#EDF0FD;} + .d2-3621457819 .background-color-AA5{background-color:#F7F8FE;} + .d2-3621457819 .background-color-AB4{background-color:#EDF0FD;} + .d2-3621457819 .background-color-AB5{background-color:#F7F8FE;} + .d2-3621457819 .color-N1{color:#0A0F25;} + .d2-3621457819 .color-N2{color:#676C7E;} + .d2-3621457819 .color-N3{color:#9499AB;} + .d2-3621457819 .color-N4{color:#CFD2DD;} + .d2-3621457819 .color-N5{color:#DEE1EB;} + .d2-3621457819 .color-N6{color:#EEF1F8;} + .d2-3621457819 .color-N7{color:#FFFFFF;} + .d2-3621457819 .color-B1{color:#0D32B2;} + .d2-3621457819 .color-B2{color:#0D32B2;} + .d2-3621457819 .color-B3{color:#E3E9FD;} + .d2-3621457819 .color-B4{color:#E3E9FD;} + .d2-3621457819 .color-B5{color:#EDF0FD;} + .d2-3621457819 .color-B6{color:#F7F8FE;} + .d2-3621457819 .color-AA2{color:#4A6FF3;} + .d2-3621457819 .color-AA4{color:#EDF0FD;} + .d2-3621457819 .color-AA5{color:#F7F8FE;} + .d2-3621457819 .color-AB4{color:#EDF0FD;} + .d2-3621457819 .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}]]>aidintPKbidintPKa_1intFKa_2intFK \ No newline at end of file diff --git a/e2etests/testdata/stable/sql_table_row_connections/elk/board.exp.json b/e2etests/testdata/stable/sql_table_row_connections/elk/board.exp.json index d6757f9316..f2e13e0c34 100644 --- a/e2etests/testdata/stable/sql_table_row_connections/elk/board.exp.json +++ b/e2etests/testdata/stable/sql_table_row_connections/elk/board.exp.json @@ -236,6 +236,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 223, @@ -274,6 +275,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 223, diff --git a/e2etests/testdata/stable/sql_table_row_connections/elk/sketch.exp.svg b/e2etests/testdata/stable/sql_table_row_connections/elk/sketch.exp.svg index 87c1a3e8d9..93a8a9f566 100644 --- a/e2etests/testdata/stable/sql_table_row_connections/elk/sketch.exp.svg +++ b/e2etests/testdata/stable/sql_table_row_connections/elk/sketch.exp.svg @@ -1,9 +1,9 @@ -aidintPKbidintPKa_1intFKa_2intFK + .d2-242784462 .fill-N1{fill:#0A0F25;} + .d2-242784462 .fill-N2{fill:#676C7E;} + .d2-242784462 .fill-N3{fill:#9499AB;} + .d2-242784462 .fill-N4{fill:#CFD2DD;} + .d2-242784462 .fill-N5{fill:#DEE1EB;} + .d2-242784462 .fill-N6{fill:#EEF1F8;} + .d2-242784462 .fill-N7{fill:#FFFFFF;} + .d2-242784462 .fill-B1{fill:#0D32B2;} + .d2-242784462 .fill-B2{fill:#0D32B2;} + .d2-242784462 .fill-B3{fill:#E3E9FD;} + .d2-242784462 .fill-B4{fill:#E3E9FD;} + .d2-242784462 .fill-B5{fill:#EDF0FD;} + .d2-242784462 .fill-B6{fill:#F7F8FE;} + .d2-242784462 .fill-AA2{fill:#4A6FF3;} + .d2-242784462 .fill-AA4{fill:#EDF0FD;} + .d2-242784462 .fill-AA5{fill:#F7F8FE;} + .d2-242784462 .fill-AB4{fill:#EDF0FD;} + .d2-242784462 .fill-AB5{fill:#F7F8FE;} + .d2-242784462 .stroke-N1{stroke:#0A0F25;} + .d2-242784462 .stroke-N2{stroke:#676C7E;} + .d2-242784462 .stroke-N3{stroke:#9499AB;} + .d2-242784462 .stroke-N4{stroke:#CFD2DD;} + .d2-242784462 .stroke-N5{stroke:#DEE1EB;} + .d2-242784462 .stroke-N6{stroke:#EEF1F8;} + .d2-242784462 .stroke-N7{stroke:#FFFFFF;} + .d2-242784462 .stroke-B1{stroke:#0D32B2;} + .d2-242784462 .stroke-B2{stroke:#0D32B2;} + .d2-242784462 .stroke-B3{stroke:#E3E9FD;} + .d2-242784462 .stroke-B4{stroke:#E3E9FD;} + .d2-242784462 .stroke-B5{stroke:#EDF0FD;} + .d2-242784462 .stroke-B6{stroke:#F7F8FE;} + .d2-242784462 .stroke-AA2{stroke:#4A6FF3;} + .d2-242784462 .stroke-AA4{stroke:#EDF0FD;} + .d2-242784462 .stroke-AA5{stroke:#F7F8FE;} + .d2-242784462 .stroke-AB4{stroke:#EDF0FD;} + .d2-242784462 .stroke-AB5{stroke:#F7F8FE;} + .d2-242784462 .background-color-N1{background-color:#0A0F25;} + .d2-242784462 .background-color-N2{background-color:#676C7E;} + .d2-242784462 .background-color-N3{background-color:#9499AB;} + .d2-242784462 .background-color-N4{background-color:#CFD2DD;} + .d2-242784462 .background-color-N5{background-color:#DEE1EB;} + .d2-242784462 .background-color-N6{background-color:#EEF1F8;} + .d2-242784462 .background-color-N7{background-color:#FFFFFF;} + .d2-242784462 .background-color-B1{background-color:#0D32B2;} + .d2-242784462 .background-color-B2{background-color:#0D32B2;} + .d2-242784462 .background-color-B3{background-color:#E3E9FD;} + .d2-242784462 .background-color-B4{background-color:#E3E9FD;} + .d2-242784462 .background-color-B5{background-color:#EDF0FD;} + .d2-242784462 .background-color-B6{background-color:#F7F8FE;} + .d2-242784462 .background-color-AA2{background-color:#4A6FF3;} + .d2-242784462 .background-color-AA4{background-color:#EDF0FD;} + .d2-242784462 .background-color-AA5{background-color:#F7F8FE;} + .d2-242784462 .background-color-AB4{background-color:#EDF0FD;} + .d2-242784462 .background-color-AB5{background-color:#F7F8FE;} + .d2-242784462 .color-N1{color:#0A0F25;} + .d2-242784462 .color-N2{color:#676C7E;} + .d2-242784462 .color-N3{color:#9499AB;} + .d2-242784462 .color-N4{color:#CFD2DD;} + .d2-242784462 .color-N5{color:#DEE1EB;} + .d2-242784462 .color-N6{color:#EEF1F8;} + .d2-242784462 .color-N7{color:#FFFFFF;} + .d2-242784462 .color-B1{color:#0D32B2;} + .d2-242784462 .color-B2{color:#0D32B2;} + .d2-242784462 .color-B3{color:#E3E9FD;} + .d2-242784462 .color-B4{color:#E3E9FD;} + .d2-242784462 .color-B5{color:#EDF0FD;} + .d2-242784462 .color-B6{color:#F7F8FE;} + .d2-242784462 .color-AA2{color:#4A6FF3;} + .d2-242784462 .color-AA4{color:#EDF0FD;} + .d2-242784462 .color-AA5{color:#F7F8FE;} + .d2-242784462 .color-AB4{color:#EDF0FD;} + .d2-242784462 .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}]]>aidintPKbidintPKa_1intFKa_2intFK \ No newline at end of file diff --git a/e2etests/testdata/stable/sql_table_tooltip_animated/dagre/board.exp.json b/e2etests/testdata/stable/sql_table_tooltip_animated/dagre/board.exp.json index f64da567a1..9a8c5efbe2 100644 --- a/e2etests/testdata/stable/sql_table_tooltip_animated/dagre/board.exp.json +++ b/e2etests/testdata/stable/sql_table_tooltip_animated/dagre/board.exp.json @@ -176,6 +176,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 203, diff --git a/e2etests/testdata/stable/sql_table_tooltip_animated/dagre/sketch.exp.svg b/e2etests/testdata/stable/sql_table_tooltip_animated/dagre/sketch.exp.svg index 0a9601c9ad..b0fe7ee1e3 100644 --- a/e2etests/testdata/stable/sql_table_tooltip_animated/dagre/sketch.exp.svg +++ b/e2etests/testdata/stable/sql_table_tooltip_animated/dagre/sketch.exp.svg @@ -1,9 +1,9 @@ -xyPKabFK I like turtles + .d2-2656350679 .fill-N1{fill:#0A0F25;} + .d2-2656350679 .fill-N2{fill:#676C7E;} + .d2-2656350679 .fill-N3{fill:#9499AB;} + .d2-2656350679 .fill-N4{fill:#CFD2DD;} + .d2-2656350679 .fill-N5{fill:#DEE1EB;} + .d2-2656350679 .fill-N6{fill:#EEF1F8;} + .d2-2656350679 .fill-N7{fill:#FFFFFF;} + .d2-2656350679 .fill-B1{fill:#0D32B2;} + .d2-2656350679 .fill-B2{fill:#0D32B2;} + .d2-2656350679 .fill-B3{fill:#E3E9FD;} + .d2-2656350679 .fill-B4{fill:#E3E9FD;} + .d2-2656350679 .fill-B5{fill:#EDF0FD;} + .d2-2656350679 .fill-B6{fill:#F7F8FE;} + .d2-2656350679 .fill-AA2{fill:#4A6FF3;} + .d2-2656350679 .fill-AA4{fill:#EDF0FD;} + .d2-2656350679 .fill-AA5{fill:#F7F8FE;} + .d2-2656350679 .fill-AB4{fill:#EDF0FD;} + .d2-2656350679 .fill-AB5{fill:#F7F8FE;} + .d2-2656350679 .stroke-N1{stroke:#0A0F25;} + .d2-2656350679 .stroke-N2{stroke:#676C7E;} + .d2-2656350679 .stroke-N3{stroke:#9499AB;} + .d2-2656350679 .stroke-N4{stroke:#CFD2DD;} + .d2-2656350679 .stroke-N5{stroke:#DEE1EB;} + .d2-2656350679 .stroke-N6{stroke:#EEF1F8;} + .d2-2656350679 .stroke-N7{stroke:#FFFFFF;} + .d2-2656350679 .stroke-B1{stroke:#0D32B2;} + .d2-2656350679 .stroke-B2{stroke:#0D32B2;} + .d2-2656350679 .stroke-B3{stroke:#E3E9FD;} + .d2-2656350679 .stroke-B4{stroke:#E3E9FD;} + .d2-2656350679 .stroke-B5{stroke:#EDF0FD;} + .d2-2656350679 .stroke-B6{stroke:#F7F8FE;} + .d2-2656350679 .stroke-AA2{stroke:#4A6FF3;} + .d2-2656350679 .stroke-AA4{stroke:#EDF0FD;} + .d2-2656350679 .stroke-AA5{stroke:#F7F8FE;} + .d2-2656350679 .stroke-AB4{stroke:#EDF0FD;} + .d2-2656350679 .stroke-AB5{stroke:#F7F8FE;} + .d2-2656350679 .background-color-N1{background-color:#0A0F25;} + .d2-2656350679 .background-color-N2{background-color:#676C7E;} + .d2-2656350679 .background-color-N3{background-color:#9499AB;} + .d2-2656350679 .background-color-N4{background-color:#CFD2DD;} + .d2-2656350679 .background-color-N5{background-color:#DEE1EB;} + .d2-2656350679 .background-color-N6{background-color:#EEF1F8;} + .d2-2656350679 .background-color-N7{background-color:#FFFFFF;} + .d2-2656350679 .background-color-B1{background-color:#0D32B2;} + .d2-2656350679 .background-color-B2{background-color:#0D32B2;} + .d2-2656350679 .background-color-B3{background-color:#E3E9FD;} + .d2-2656350679 .background-color-B4{background-color:#E3E9FD;} + .d2-2656350679 .background-color-B5{background-color:#EDF0FD;} + .d2-2656350679 .background-color-B6{background-color:#F7F8FE;} + .d2-2656350679 .background-color-AA2{background-color:#4A6FF3;} + .d2-2656350679 .background-color-AA4{background-color:#EDF0FD;} + .d2-2656350679 .background-color-AA5{background-color:#F7F8FE;} + .d2-2656350679 .background-color-AB4{background-color:#EDF0FD;} + .d2-2656350679 .background-color-AB5{background-color:#F7F8FE;} + .d2-2656350679 .color-N1{color:#0A0F25;} + .d2-2656350679 .color-N2{color:#676C7E;} + .d2-2656350679 .color-N3{color:#9499AB;} + .d2-2656350679 .color-N4{color:#CFD2DD;} + .d2-2656350679 .color-N5{color:#DEE1EB;} + .d2-2656350679 .color-N6{color:#EEF1F8;} + .d2-2656350679 .color-N7{color:#FFFFFF;} + .d2-2656350679 .color-B1{color:#0D32B2;} + .d2-2656350679 .color-B2{color:#0D32B2;} + .d2-2656350679 .color-B3{color:#E3E9FD;} + .d2-2656350679 .color-B4{color:#E3E9FD;} + .d2-2656350679 .color-B5{color:#EDF0FD;} + .d2-2656350679 .color-B6{color:#F7F8FE;} + .d2-2656350679 .color-AA2{color:#4A6FF3;} + .d2-2656350679 .color-AA4{color:#EDF0FD;} + .d2-2656350679 .color-AA5{color:#F7F8FE;} + .d2-2656350679 .color-AB4{color:#EDF0FD;} + .d2-2656350679 .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}]]>xyPKabFK I like turtles @@ -111,7 +111,7 @@ - + \ No newline at end of file diff --git a/e2etests/testdata/stable/sql_table_tooltip_animated/elk/board.exp.json b/e2etests/testdata/stable/sql_table_tooltip_animated/elk/board.exp.json index 17929a5300..83ce03ba75 100644 --- a/e2etests/testdata/stable/sql_table_tooltip_animated/elk/board.exp.json +++ b/e2etests/testdata/stable/sql_table_tooltip_animated/elk/board.exp.json @@ -176,6 +176,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 185, diff --git a/e2etests/testdata/stable/sql_table_tooltip_animated/elk/sketch.exp.svg b/e2etests/testdata/stable/sql_table_tooltip_animated/elk/sketch.exp.svg index b85a6822da..4dd6cc6dbb 100644 --- a/e2etests/testdata/stable/sql_table_tooltip_animated/elk/sketch.exp.svg +++ b/e2etests/testdata/stable/sql_table_tooltip_animated/elk/sketch.exp.svg @@ -1,9 +1,9 @@ -xyPKabFK I like turtles + .d2-3338527134 .fill-N1{fill:#0A0F25;} + .d2-3338527134 .fill-N2{fill:#676C7E;} + .d2-3338527134 .fill-N3{fill:#9499AB;} + .d2-3338527134 .fill-N4{fill:#CFD2DD;} + .d2-3338527134 .fill-N5{fill:#DEE1EB;} + .d2-3338527134 .fill-N6{fill:#EEF1F8;} + .d2-3338527134 .fill-N7{fill:#FFFFFF;} + .d2-3338527134 .fill-B1{fill:#0D32B2;} + .d2-3338527134 .fill-B2{fill:#0D32B2;} + .d2-3338527134 .fill-B3{fill:#E3E9FD;} + .d2-3338527134 .fill-B4{fill:#E3E9FD;} + .d2-3338527134 .fill-B5{fill:#EDF0FD;} + .d2-3338527134 .fill-B6{fill:#F7F8FE;} + .d2-3338527134 .fill-AA2{fill:#4A6FF3;} + .d2-3338527134 .fill-AA4{fill:#EDF0FD;} + .d2-3338527134 .fill-AA5{fill:#F7F8FE;} + .d2-3338527134 .fill-AB4{fill:#EDF0FD;} + .d2-3338527134 .fill-AB5{fill:#F7F8FE;} + .d2-3338527134 .stroke-N1{stroke:#0A0F25;} + .d2-3338527134 .stroke-N2{stroke:#676C7E;} + .d2-3338527134 .stroke-N3{stroke:#9499AB;} + .d2-3338527134 .stroke-N4{stroke:#CFD2DD;} + .d2-3338527134 .stroke-N5{stroke:#DEE1EB;} + .d2-3338527134 .stroke-N6{stroke:#EEF1F8;} + .d2-3338527134 .stroke-N7{stroke:#FFFFFF;} + .d2-3338527134 .stroke-B1{stroke:#0D32B2;} + .d2-3338527134 .stroke-B2{stroke:#0D32B2;} + .d2-3338527134 .stroke-B3{stroke:#E3E9FD;} + .d2-3338527134 .stroke-B4{stroke:#E3E9FD;} + .d2-3338527134 .stroke-B5{stroke:#EDF0FD;} + .d2-3338527134 .stroke-B6{stroke:#F7F8FE;} + .d2-3338527134 .stroke-AA2{stroke:#4A6FF3;} + .d2-3338527134 .stroke-AA4{stroke:#EDF0FD;} + .d2-3338527134 .stroke-AA5{stroke:#F7F8FE;} + .d2-3338527134 .stroke-AB4{stroke:#EDF0FD;} + .d2-3338527134 .stroke-AB5{stroke:#F7F8FE;} + .d2-3338527134 .background-color-N1{background-color:#0A0F25;} + .d2-3338527134 .background-color-N2{background-color:#676C7E;} + .d2-3338527134 .background-color-N3{background-color:#9499AB;} + .d2-3338527134 .background-color-N4{background-color:#CFD2DD;} + .d2-3338527134 .background-color-N5{background-color:#DEE1EB;} + .d2-3338527134 .background-color-N6{background-color:#EEF1F8;} + .d2-3338527134 .background-color-N7{background-color:#FFFFFF;} + .d2-3338527134 .background-color-B1{background-color:#0D32B2;} + .d2-3338527134 .background-color-B2{background-color:#0D32B2;} + .d2-3338527134 .background-color-B3{background-color:#E3E9FD;} + .d2-3338527134 .background-color-B4{background-color:#E3E9FD;} + .d2-3338527134 .background-color-B5{background-color:#EDF0FD;} + .d2-3338527134 .background-color-B6{background-color:#F7F8FE;} + .d2-3338527134 .background-color-AA2{background-color:#4A6FF3;} + .d2-3338527134 .background-color-AA4{background-color:#EDF0FD;} + .d2-3338527134 .background-color-AA5{background-color:#F7F8FE;} + .d2-3338527134 .background-color-AB4{background-color:#EDF0FD;} + .d2-3338527134 .background-color-AB5{background-color:#F7F8FE;} + .d2-3338527134 .color-N1{color:#0A0F25;} + .d2-3338527134 .color-N2{color:#676C7E;} + .d2-3338527134 .color-N3{color:#9499AB;} + .d2-3338527134 .color-N4{color:#CFD2DD;} + .d2-3338527134 .color-N5{color:#DEE1EB;} + .d2-3338527134 .color-N6{color:#EEF1F8;} + .d2-3338527134 .color-N7{color:#FFFFFF;} + .d2-3338527134 .color-B1{color:#0D32B2;} + .d2-3338527134 .color-B2{color:#0D32B2;} + .d2-3338527134 .color-B3{color:#E3E9FD;} + .d2-3338527134 .color-B4{color:#E3E9FD;} + .d2-3338527134 .color-B5{color:#EDF0FD;} + .d2-3338527134 .color-B6{color:#F7F8FE;} + .d2-3338527134 .color-AA2{color:#4A6FF3;} + .d2-3338527134 .color-AA4{color:#EDF0FD;} + .d2-3338527134 .color-AA5{color:#F7F8FE;} + .d2-3338527134 .color-AB4{color:#EDF0FD;} + .d2-3338527134 .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}]]>xyPKabFK I like turtles @@ -111,7 +111,7 @@ - + \ No newline at end of file diff --git a/e2etests/testdata/stable/sql_tables/dagre/board.exp.json b/e2etests/testdata/stable/sql_tables/dagre/board.exp.json index 51aa78d860..6bf0acedab 100644 --- a/e2etests/testdata/stable/sql_tables/dagre/board.exp.json +++ b/e2etests/testdata/stable/sql_tables/dagre/board.exp.json @@ -666,6 +666,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 369, @@ -713,6 +714,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 369, @@ -760,6 +762,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 658, diff --git a/e2etests/testdata/stable/sql_tables/dagre/sketch.exp.svg b/e2etests/testdata/stable/sql_tables/dagre/sketch.exp.svg index 0f981496e0..798a96af47 100644 --- a/e2etests/testdata/stable/sql_tables/dagre/sketch.exp.svg +++ b/e2etests/testdata/stable/sql_tables/dagre/sketch.exp.svg @@ -1,9 +1,9 @@ -usersidintPKnamestringemailstringpasswordstringlast_logindatetimeproductsidintPKpricedecimalskustringnamestringordersidintPKuser_idintFKproduct_idintFKshipmentsidintPKorder_idintFKtracking_numberstringstatusstring + .d2-2963560652 .fill-N1{fill:#0A0F25;} + .d2-2963560652 .fill-N2{fill:#676C7E;} + .d2-2963560652 .fill-N3{fill:#9499AB;} + .d2-2963560652 .fill-N4{fill:#CFD2DD;} + .d2-2963560652 .fill-N5{fill:#DEE1EB;} + .d2-2963560652 .fill-N6{fill:#EEF1F8;} + .d2-2963560652 .fill-N7{fill:#FFFFFF;} + .d2-2963560652 .fill-B1{fill:#0D32B2;} + .d2-2963560652 .fill-B2{fill:#0D32B2;} + .d2-2963560652 .fill-B3{fill:#E3E9FD;} + .d2-2963560652 .fill-B4{fill:#E3E9FD;} + .d2-2963560652 .fill-B5{fill:#EDF0FD;} + .d2-2963560652 .fill-B6{fill:#F7F8FE;} + .d2-2963560652 .fill-AA2{fill:#4A6FF3;} + .d2-2963560652 .fill-AA4{fill:#EDF0FD;} + .d2-2963560652 .fill-AA5{fill:#F7F8FE;} + .d2-2963560652 .fill-AB4{fill:#EDF0FD;} + .d2-2963560652 .fill-AB5{fill:#F7F8FE;} + .d2-2963560652 .stroke-N1{stroke:#0A0F25;} + .d2-2963560652 .stroke-N2{stroke:#676C7E;} + .d2-2963560652 .stroke-N3{stroke:#9499AB;} + .d2-2963560652 .stroke-N4{stroke:#CFD2DD;} + .d2-2963560652 .stroke-N5{stroke:#DEE1EB;} + .d2-2963560652 .stroke-N6{stroke:#EEF1F8;} + .d2-2963560652 .stroke-N7{stroke:#FFFFFF;} + .d2-2963560652 .stroke-B1{stroke:#0D32B2;} + .d2-2963560652 .stroke-B2{stroke:#0D32B2;} + .d2-2963560652 .stroke-B3{stroke:#E3E9FD;} + .d2-2963560652 .stroke-B4{stroke:#E3E9FD;} + .d2-2963560652 .stroke-B5{stroke:#EDF0FD;} + .d2-2963560652 .stroke-B6{stroke:#F7F8FE;} + .d2-2963560652 .stroke-AA2{stroke:#4A6FF3;} + .d2-2963560652 .stroke-AA4{stroke:#EDF0FD;} + .d2-2963560652 .stroke-AA5{stroke:#F7F8FE;} + .d2-2963560652 .stroke-AB4{stroke:#EDF0FD;} + .d2-2963560652 .stroke-AB5{stroke:#F7F8FE;} + .d2-2963560652 .background-color-N1{background-color:#0A0F25;} + .d2-2963560652 .background-color-N2{background-color:#676C7E;} + .d2-2963560652 .background-color-N3{background-color:#9499AB;} + .d2-2963560652 .background-color-N4{background-color:#CFD2DD;} + .d2-2963560652 .background-color-N5{background-color:#DEE1EB;} + .d2-2963560652 .background-color-N6{background-color:#EEF1F8;} + .d2-2963560652 .background-color-N7{background-color:#FFFFFF;} + .d2-2963560652 .background-color-B1{background-color:#0D32B2;} + .d2-2963560652 .background-color-B2{background-color:#0D32B2;} + .d2-2963560652 .background-color-B3{background-color:#E3E9FD;} + .d2-2963560652 .background-color-B4{background-color:#E3E9FD;} + .d2-2963560652 .background-color-B5{background-color:#EDF0FD;} + .d2-2963560652 .background-color-B6{background-color:#F7F8FE;} + .d2-2963560652 .background-color-AA2{background-color:#4A6FF3;} + .d2-2963560652 .background-color-AA4{background-color:#EDF0FD;} + .d2-2963560652 .background-color-AA5{background-color:#F7F8FE;} + .d2-2963560652 .background-color-AB4{background-color:#EDF0FD;} + .d2-2963560652 .background-color-AB5{background-color:#F7F8FE;} + .d2-2963560652 .color-N1{color:#0A0F25;} + .d2-2963560652 .color-N2{color:#676C7E;} + .d2-2963560652 .color-N3{color:#9499AB;} + .d2-2963560652 .color-N4{color:#CFD2DD;} + .d2-2963560652 .color-N5{color:#DEE1EB;} + .d2-2963560652 .color-N6{color:#EEF1F8;} + .d2-2963560652 .color-N7{color:#FFFFFF;} + .d2-2963560652 .color-B1{color:#0D32B2;} + .d2-2963560652 .color-B2{color:#0D32B2;} + .d2-2963560652 .color-B3{color:#E3E9FD;} + .d2-2963560652 .color-B4{color:#E3E9FD;} + .d2-2963560652 .color-B5{color:#EDF0FD;} + .d2-2963560652 .color-B6{color:#F7F8FE;} + .d2-2963560652 .color-AA2{color:#4A6FF3;} + .d2-2963560652 .color-AA4{color:#EDF0FD;} + .d2-2963560652 .color-AA5{color:#F7F8FE;} + .d2-2963560652 .color-AB4{color:#EDF0FD;} + .d2-2963560652 .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}]]>usersidintPKnamestringemailstringpasswordstringlast_logindatetimeproductsidintPKpricedecimalskustringnamestringordersidintPKuser_idintFKproduct_idintFKshipmentsidintPKorder_idintFKtracking_numberstringstatusstring \ No newline at end of file diff --git a/e2etests/testdata/stable/sql_tables/elk/board.exp.json b/e2etests/testdata/stable/sql_tables/elk/board.exp.json index 6592421bde..370615c9cc 100644 --- a/e2etests/testdata/stable/sql_tables/elk/board.exp.json +++ b/e2etests/testdata/stable/sql_tables/elk/board.exp.json @@ -666,6 +666,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 343, @@ -712,6 +713,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 343, @@ -758,6 +760,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 620, diff --git a/e2etests/testdata/stable/sql_tables/elk/sketch.exp.svg b/e2etests/testdata/stable/sql_tables/elk/sketch.exp.svg index 9ae94cc0bc..3d4b0ea65d 100644 --- a/e2etests/testdata/stable/sql_tables/elk/sketch.exp.svg +++ b/e2etests/testdata/stable/sql_tables/elk/sketch.exp.svg @@ -1,9 +1,9 @@ -usersidintPKnamestringemailstringpasswordstringlast_logindatetimeproductsidintPKpricedecimalskustringnamestringordersidintPKuser_idintFKproduct_idintFKshipmentsidintPKorder_idintFKtracking_numberstringstatusstring + .d2-2987290171 .fill-N1{fill:#0A0F25;} + .d2-2987290171 .fill-N2{fill:#676C7E;} + .d2-2987290171 .fill-N3{fill:#9499AB;} + .d2-2987290171 .fill-N4{fill:#CFD2DD;} + .d2-2987290171 .fill-N5{fill:#DEE1EB;} + .d2-2987290171 .fill-N6{fill:#EEF1F8;} + .d2-2987290171 .fill-N7{fill:#FFFFFF;} + .d2-2987290171 .fill-B1{fill:#0D32B2;} + .d2-2987290171 .fill-B2{fill:#0D32B2;} + .d2-2987290171 .fill-B3{fill:#E3E9FD;} + .d2-2987290171 .fill-B4{fill:#E3E9FD;} + .d2-2987290171 .fill-B5{fill:#EDF0FD;} + .d2-2987290171 .fill-B6{fill:#F7F8FE;} + .d2-2987290171 .fill-AA2{fill:#4A6FF3;} + .d2-2987290171 .fill-AA4{fill:#EDF0FD;} + .d2-2987290171 .fill-AA5{fill:#F7F8FE;} + .d2-2987290171 .fill-AB4{fill:#EDF0FD;} + .d2-2987290171 .fill-AB5{fill:#F7F8FE;} + .d2-2987290171 .stroke-N1{stroke:#0A0F25;} + .d2-2987290171 .stroke-N2{stroke:#676C7E;} + .d2-2987290171 .stroke-N3{stroke:#9499AB;} + .d2-2987290171 .stroke-N4{stroke:#CFD2DD;} + .d2-2987290171 .stroke-N5{stroke:#DEE1EB;} + .d2-2987290171 .stroke-N6{stroke:#EEF1F8;} + .d2-2987290171 .stroke-N7{stroke:#FFFFFF;} + .d2-2987290171 .stroke-B1{stroke:#0D32B2;} + .d2-2987290171 .stroke-B2{stroke:#0D32B2;} + .d2-2987290171 .stroke-B3{stroke:#E3E9FD;} + .d2-2987290171 .stroke-B4{stroke:#E3E9FD;} + .d2-2987290171 .stroke-B5{stroke:#EDF0FD;} + .d2-2987290171 .stroke-B6{stroke:#F7F8FE;} + .d2-2987290171 .stroke-AA2{stroke:#4A6FF3;} + .d2-2987290171 .stroke-AA4{stroke:#EDF0FD;} + .d2-2987290171 .stroke-AA5{stroke:#F7F8FE;} + .d2-2987290171 .stroke-AB4{stroke:#EDF0FD;} + .d2-2987290171 .stroke-AB5{stroke:#F7F8FE;} + .d2-2987290171 .background-color-N1{background-color:#0A0F25;} + .d2-2987290171 .background-color-N2{background-color:#676C7E;} + .d2-2987290171 .background-color-N3{background-color:#9499AB;} + .d2-2987290171 .background-color-N4{background-color:#CFD2DD;} + .d2-2987290171 .background-color-N5{background-color:#DEE1EB;} + .d2-2987290171 .background-color-N6{background-color:#EEF1F8;} + .d2-2987290171 .background-color-N7{background-color:#FFFFFF;} + .d2-2987290171 .background-color-B1{background-color:#0D32B2;} + .d2-2987290171 .background-color-B2{background-color:#0D32B2;} + .d2-2987290171 .background-color-B3{background-color:#E3E9FD;} + .d2-2987290171 .background-color-B4{background-color:#E3E9FD;} + .d2-2987290171 .background-color-B5{background-color:#EDF0FD;} + .d2-2987290171 .background-color-B6{background-color:#F7F8FE;} + .d2-2987290171 .background-color-AA2{background-color:#4A6FF3;} + .d2-2987290171 .background-color-AA4{background-color:#EDF0FD;} + .d2-2987290171 .background-color-AA5{background-color:#F7F8FE;} + .d2-2987290171 .background-color-AB4{background-color:#EDF0FD;} + .d2-2987290171 .background-color-AB5{background-color:#F7F8FE;} + .d2-2987290171 .color-N1{color:#0A0F25;} + .d2-2987290171 .color-N2{color:#676C7E;} + .d2-2987290171 .color-N3{color:#9499AB;} + .d2-2987290171 .color-N4{color:#CFD2DD;} + .d2-2987290171 .color-N5{color:#DEE1EB;} + .d2-2987290171 .color-N6{color:#EEF1F8;} + .d2-2987290171 .color-N7{color:#FFFFFF;} + .d2-2987290171 .color-B1{color:#0D32B2;} + .d2-2987290171 .color-B2{color:#0D32B2;} + .d2-2987290171 .color-B3{color:#E3E9FD;} + .d2-2987290171 .color-B4{color:#E3E9FD;} + .d2-2987290171 .color-B5{color:#EDF0FD;} + .d2-2987290171 .color-B6{color:#F7F8FE;} + .d2-2987290171 .color-AA2{color:#4A6FF3;} + .d2-2987290171 .color-AA4{color:#EDF0FD;} + .d2-2987290171 .color-AA5{color:#F7F8FE;} + .d2-2987290171 .color-AB4{color:#EDF0FD;} + .d2-2987290171 .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}]]>usersidintPKnamestringemailstringpasswordstringlast_logindatetimeproductsidintPKpricedecimalskustringnamestringordersidintPKuser_idintFKproduct_idintFKshipmentsidintPKorder_idintFKtracking_numberstringstatusstring \ No newline at end of file diff --git a/e2etests/testdata/stable/square_3d/dagre/board.exp.json b/e2etests/testdata/stable/square_3d/dagre/board.exp.json index d5c0c9def1..9516cf5c99 100644 --- a/e2etests/testdata/stable/square_3d/dagre/board.exp.json +++ b/e2etests/testdata/stable/square_3d/dagre/board.exp.json @@ -110,6 +110,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 55.5, diff --git a/e2etests/testdata/stable/square_3d/dagre/sketch.exp.svg b/e2etests/testdata/stable/square_3d/dagre/sketch.exp.svg index cb1a60baa5..423274bb2c 100644 --- a/e2etests/testdata/stable/square_3d/dagre/sketch.exp.svg +++ b/e2etests/testdata/stable/square_3d/dagre/sketch.exp.svg @@ -1,9 +1,9 @@ - + .d2-1998247045 .fill-N1{fill:#0A0F25;} + .d2-1998247045 .fill-N2{fill:#676C7E;} + .d2-1998247045 .fill-N3{fill:#9499AB;} + .d2-1998247045 .fill-N4{fill:#CFD2DD;} + .d2-1998247045 .fill-N5{fill:#DEE1EB;} + .d2-1998247045 .fill-N6{fill:#EEF1F8;} + .d2-1998247045 .fill-N7{fill:#FFFFFF;} + .d2-1998247045 .fill-B1{fill:#0D32B2;} + .d2-1998247045 .fill-B2{fill:#0D32B2;} + .d2-1998247045 .fill-B3{fill:#E3E9FD;} + .d2-1998247045 .fill-B4{fill:#E3E9FD;} + .d2-1998247045 .fill-B5{fill:#EDF0FD;} + .d2-1998247045 .fill-B6{fill:#F7F8FE;} + .d2-1998247045 .fill-AA2{fill:#4A6FF3;} + .d2-1998247045 .fill-AA4{fill:#EDF0FD;} + .d2-1998247045 .fill-AA5{fill:#F7F8FE;} + .d2-1998247045 .fill-AB4{fill:#EDF0FD;} + .d2-1998247045 .fill-AB5{fill:#F7F8FE;} + .d2-1998247045 .stroke-N1{stroke:#0A0F25;} + .d2-1998247045 .stroke-N2{stroke:#676C7E;} + .d2-1998247045 .stroke-N3{stroke:#9499AB;} + .d2-1998247045 .stroke-N4{stroke:#CFD2DD;} + .d2-1998247045 .stroke-N5{stroke:#DEE1EB;} + .d2-1998247045 .stroke-N6{stroke:#EEF1F8;} + .d2-1998247045 .stroke-N7{stroke:#FFFFFF;} + .d2-1998247045 .stroke-B1{stroke:#0D32B2;} + .d2-1998247045 .stroke-B2{stroke:#0D32B2;} + .d2-1998247045 .stroke-B3{stroke:#E3E9FD;} + .d2-1998247045 .stroke-B4{stroke:#E3E9FD;} + .d2-1998247045 .stroke-B5{stroke:#EDF0FD;} + .d2-1998247045 .stroke-B6{stroke:#F7F8FE;} + .d2-1998247045 .stroke-AA2{stroke:#4A6FF3;} + .d2-1998247045 .stroke-AA4{stroke:#EDF0FD;} + .d2-1998247045 .stroke-AA5{stroke:#F7F8FE;} + .d2-1998247045 .stroke-AB4{stroke:#EDF0FD;} + .d2-1998247045 .stroke-AB5{stroke:#F7F8FE;} + .d2-1998247045 .background-color-N1{background-color:#0A0F25;} + .d2-1998247045 .background-color-N2{background-color:#676C7E;} + .d2-1998247045 .background-color-N3{background-color:#9499AB;} + .d2-1998247045 .background-color-N4{background-color:#CFD2DD;} + .d2-1998247045 .background-color-N5{background-color:#DEE1EB;} + .d2-1998247045 .background-color-N6{background-color:#EEF1F8;} + .d2-1998247045 .background-color-N7{background-color:#FFFFFF;} + .d2-1998247045 .background-color-B1{background-color:#0D32B2;} + .d2-1998247045 .background-color-B2{background-color:#0D32B2;} + .d2-1998247045 .background-color-B3{background-color:#E3E9FD;} + .d2-1998247045 .background-color-B4{background-color:#E3E9FD;} + .d2-1998247045 .background-color-B5{background-color:#EDF0FD;} + .d2-1998247045 .background-color-B6{background-color:#F7F8FE;} + .d2-1998247045 .background-color-AA2{background-color:#4A6FF3;} + .d2-1998247045 .background-color-AA4{background-color:#EDF0FD;} + .d2-1998247045 .background-color-AA5{background-color:#F7F8FE;} + .d2-1998247045 .background-color-AB4{background-color:#EDF0FD;} + .d2-1998247045 .background-color-AB5{background-color:#F7F8FE;} + .d2-1998247045 .color-N1{color:#0A0F25;} + .d2-1998247045 .color-N2{color:#676C7E;} + .d2-1998247045 .color-N3{color:#9499AB;} + .d2-1998247045 .color-N4{color:#CFD2DD;} + .d2-1998247045 .color-N5{color:#DEE1EB;} + .d2-1998247045 .color-N6{color:#EEF1F8;} + .d2-1998247045 .color-N7{color:#FFFFFF;} + .d2-1998247045 .color-B1{color:#0D32B2;} + .d2-1998247045 .color-B2{color:#0D32B2;} + .d2-1998247045 .color-B3{color:#E3E9FD;} + .d2-1998247045 .color-B4{color:#E3E9FD;} + .d2-1998247045 .color-B5{color:#EDF0FD;} + .d2-1998247045 .color-B6{color:#F7F8FE;} + .d2-1998247045 .color-AA2{color:#4A6FF3;} + .d2-1998247045 .color-AA4{color:#EDF0FD;} + .d2-1998247045 .color-AA5{color:#F7F8FE;} + .d2-1998247045 .color-AB4{color:#EDF0FD;} + .d2-1998247045 .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}]]> rectangle -square +square diff --git a/e2etests/testdata/stable/square_3d/elk/board.exp.json b/e2etests/testdata/stable/square_3d/elk/board.exp.json index f8b32dd555..fa14b5fee5 100644 --- a/e2etests/testdata/stable/square_3d/elk/board.exp.json +++ b/e2etests/testdata/stable/square_3d/elk/board.exp.json @@ -110,6 +110,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 75, diff --git a/e2etests/testdata/stable/square_3d/elk/sketch.exp.svg b/e2etests/testdata/stable/square_3d/elk/sketch.exp.svg index 903802392b..5af4e7fb1e 100644 --- a/e2etests/testdata/stable/square_3d/elk/sketch.exp.svg +++ b/e2etests/testdata/stable/square_3d/elk/sketch.exp.svg @@ -1,9 +1,9 @@ - + .d2-2326433852 .fill-N1{fill:#0A0F25;} + .d2-2326433852 .fill-N2{fill:#676C7E;} + .d2-2326433852 .fill-N3{fill:#9499AB;} + .d2-2326433852 .fill-N4{fill:#CFD2DD;} + .d2-2326433852 .fill-N5{fill:#DEE1EB;} + .d2-2326433852 .fill-N6{fill:#EEF1F8;} + .d2-2326433852 .fill-N7{fill:#FFFFFF;} + .d2-2326433852 .fill-B1{fill:#0D32B2;} + .d2-2326433852 .fill-B2{fill:#0D32B2;} + .d2-2326433852 .fill-B3{fill:#E3E9FD;} + .d2-2326433852 .fill-B4{fill:#E3E9FD;} + .d2-2326433852 .fill-B5{fill:#EDF0FD;} + .d2-2326433852 .fill-B6{fill:#F7F8FE;} + .d2-2326433852 .fill-AA2{fill:#4A6FF3;} + .d2-2326433852 .fill-AA4{fill:#EDF0FD;} + .d2-2326433852 .fill-AA5{fill:#F7F8FE;} + .d2-2326433852 .fill-AB4{fill:#EDF0FD;} + .d2-2326433852 .fill-AB5{fill:#F7F8FE;} + .d2-2326433852 .stroke-N1{stroke:#0A0F25;} + .d2-2326433852 .stroke-N2{stroke:#676C7E;} + .d2-2326433852 .stroke-N3{stroke:#9499AB;} + .d2-2326433852 .stroke-N4{stroke:#CFD2DD;} + .d2-2326433852 .stroke-N5{stroke:#DEE1EB;} + .d2-2326433852 .stroke-N6{stroke:#EEF1F8;} + .d2-2326433852 .stroke-N7{stroke:#FFFFFF;} + .d2-2326433852 .stroke-B1{stroke:#0D32B2;} + .d2-2326433852 .stroke-B2{stroke:#0D32B2;} + .d2-2326433852 .stroke-B3{stroke:#E3E9FD;} + .d2-2326433852 .stroke-B4{stroke:#E3E9FD;} + .d2-2326433852 .stroke-B5{stroke:#EDF0FD;} + .d2-2326433852 .stroke-B6{stroke:#F7F8FE;} + .d2-2326433852 .stroke-AA2{stroke:#4A6FF3;} + .d2-2326433852 .stroke-AA4{stroke:#EDF0FD;} + .d2-2326433852 .stroke-AA5{stroke:#F7F8FE;} + .d2-2326433852 .stroke-AB4{stroke:#EDF0FD;} + .d2-2326433852 .stroke-AB5{stroke:#F7F8FE;} + .d2-2326433852 .background-color-N1{background-color:#0A0F25;} + .d2-2326433852 .background-color-N2{background-color:#676C7E;} + .d2-2326433852 .background-color-N3{background-color:#9499AB;} + .d2-2326433852 .background-color-N4{background-color:#CFD2DD;} + .d2-2326433852 .background-color-N5{background-color:#DEE1EB;} + .d2-2326433852 .background-color-N6{background-color:#EEF1F8;} + .d2-2326433852 .background-color-N7{background-color:#FFFFFF;} + .d2-2326433852 .background-color-B1{background-color:#0D32B2;} + .d2-2326433852 .background-color-B2{background-color:#0D32B2;} + .d2-2326433852 .background-color-B3{background-color:#E3E9FD;} + .d2-2326433852 .background-color-B4{background-color:#E3E9FD;} + .d2-2326433852 .background-color-B5{background-color:#EDF0FD;} + .d2-2326433852 .background-color-B6{background-color:#F7F8FE;} + .d2-2326433852 .background-color-AA2{background-color:#4A6FF3;} + .d2-2326433852 .background-color-AA4{background-color:#EDF0FD;} + .d2-2326433852 .background-color-AA5{background-color:#F7F8FE;} + .d2-2326433852 .background-color-AB4{background-color:#EDF0FD;} + .d2-2326433852 .background-color-AB5{background-color:#F7F8FE;} + .d2-2326433852 .color-N1{color:#0A0F25;} + .d2-2326433852 .color-N2{color:#676C7E;} + .d2-2326433852 .color-N3{color:#9499AB;} + .d2-2326433852 .color-N4{color:#CFD2DD;} + .d2-2326433852 .color-N5{color:#DEE1EB;} + .d2-2326433852 .color-N6{color:#EEF1F8;} + .d2-2326433852 .color-N7{color:#FFFFFF;} + .d2-2326433852 .color-B1{color:#0D32B2;} + .d2-2326433852 .color-B2{color:#0D32B2;} + .d2-2326433852 .color-B3{color:#E3E9FD;} + .d2-2326433852 .color-B4{color:#E3E9FD;} + .d2-2326433852 .color-B5{color:#EDF0FD;} + .d2-2326433852 .color-B6{color:#F7F8FE;} + .d2-2326433852 .color-AA2{color:#4A6FF3;} + .d2-2326433852 .color-AA4{color:#EDF0FD;} + .d2-2326433852 .color-AA5{color:#F7F8FE;} + .d2-2326433852 .color-AB4{color:#EDF0FD;} + .d2-2326433852 .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}]]> rectangle -square +square diff --git a/e2etests/testdata/stable/straight_hierarchy_container/dagre/board.exp.json b/e2etests/testdata/stable/straight_hierarchy_container/dagre/board.exp.json index 2589ae8014..8bb2657fd6 100644 --- a/e2etests/testdata/stable/straight_hierarchy_container/dagre/board.exp.json +++ b/e2etests/testdata/stable/straight_hierarchy_container/dagre/board.exp.json @@ -1053,6 +1053,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 239.5, @@ -1100,6 +1101,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 86.5, @@ -1147,6 +1149,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 392.5, @@ -1194,6 +1197,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 86.5, @@ -1253,6 +1257,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 392.5, @@ -1312,6 +1317,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 239.5, @@ -1371,6 +1377,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 86.5, @@ -1430,6 +1437,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 239.5, @@ -1489,6 +1497,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 392.5, @@ -1548,6 +1557,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 86.5, @@ -1619,6 +1629,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 239.5, @@ -1690,6 +1701,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 392.5, diff --git a/e2etests/testdata/stable/straight_hierarchy_container/dagre/sketch.exp.svg b/e2etests/testdata/stable/straight_hierarchy_container/dagre/sketch.exp.svg index fdc46000a4..641b6095f4 100644 --- a/e2etests/testdata/stable/straight_hierarchy_container/dagre/sketch.exp.svg +++ b/e2etests/testdata/stable/straight_hierarchy_container/dagre/sketch.exp.svg @@ -1,16 +1,16 @@ -acbl1l2c1l2c3l2c2l3c1l3c2l4bacacbabcc1c2c3abc + .d2-121937204 .fill-N1{fill:#0A0F25;} + .d2-121937204 .fill-N2{fill:#676C7E;} + .d2-121937204 .fill-N3{fill:#9499AB;} + .d2-121937204 .fill-N4{fill:#CFD2DD;} + .d2-121937204 .fill-N5{fill:#DEE1EB;} + .d2-121937204 .fill-N6{fill:#EEF1F8;} + .d2-121937204 .fill-N7{fill:#FFFFFF;} + .d2-121937204 .fill-B1{fill:#0D32B2;} + .d2-121937204 .fill-B2{fill:#0D32B2;} + .d2-121937204 .fill-B3{fill:#E3E9FD;} + .d2-121937204 .fill-B4{fill:#E3E9FD;} + .d2-121937204 .fill-B5{fill:#EDF0FD;} + .d2-121937204 .fill-B6{fill:#F7F8FE;} + .d2-121937204 .fill-AA2{fill:#4A6FF3;} + .d2-121937204 .fill-AA4{fill:#EDF0FD;} + .d2-121937204 .fill-AA5{fill:#F7F8FE;} + .d2-121937204 .fill-AB4{fill:#EDF0FD;} + .d2-121937204 .fill-AB5{fill:#F7F8FE;} + .d2-121937204 .stroke-N1{stroke:#0A0F25;} + .d2-121937204 .stroke-N2{stroke:#676C7E;} + .d2-121937204 .stroke-N3{stroke:#9499AB;} + .d2-121937204 .stroke-N4{stroke:#CFD2DD;} + .d2-121937204 .stroke-N5{stroke:#DEE1EB;} + .d2-121937204 .stroke-N6{stroke:#EEF1F8;} + .d2-121937204 .stroke-N7{stroke:#FFFFFF;} + .d2-121937204 .stroke-B1{stroke:#0D32B2;} + .d2-121937204 .stroke-B2{stroke:#0D32B2;} + .d2-121937204 .stroke-B3{stroke:#E3E9FD;} + .d2-121937204 .stroke-B4{stroke:#E3E9FD;} + .d2-121937204 .stroke-B5{stroke:#EDF0FD;} + .d2-121937204 .stroke-B6{stroke:#F7F8FE;} + .d2-121937204 .stroke-AA2{stroke:#4A6FF3;} + .d2-121937204 .stroke-AA4{stroke:#EDF0FD;} + .d2-121937204 .stroke-AA5{stroke:#F7F8FE;} + .d2-121937204 .stroke-AB4{stroke:#EDF0FD;} + .d2-121937204 .stroke-AB5{stroke:#F7F8FE;} + .d2-121937204 .background-color-N1{background-color:#0A0F25;} + .d2-121937204 .background-color-N2{background-color:#676C7E;} + .d2-121937204 .background-color-N3{background-color:#9499AB;} + .d2-121937204 .background-color-N4{background-color:#CFD2DD;} + .d2-121937204 .background-color-N5{background-color:#DEE1EB;} + .d2-121937204 .background-color-N6{background-color:#EEF1F8;} + .d2-121937204 .background-color-N7{background-color:#FFFFFF;} + .d2-121937204 .background-color-B1{background-color:#0D32B2;} + .d2-121937204 .background-color-B2{background-color:#0D32B2;} + .d2-121937204 .background-color-B3{background-color:#E3E9FD;} + .d2-121937204 .background-color-B4{background-color:#E3E9FD;} + .d2-121937204 .background-color-B5{background-color:#EDF0FD;} + .d2-121937204 .background-color-B6{background-color:#F7F8FE;} + .d2-121937204 .background-color-AA2{background-color:#4A6FF3;} + .d2-121937204 .background-color-AA4{background-color:#EDF0FD;} + .d2-121937204 .background-color-AA5{background-color:#F7F8FE;} + .d2-121937204 .background-color-AB4{background-color:#EDF0FD;} + .d2-121937204 .background-color-AB5{background-color:#F7F8FE;} + .d2-121937204 .color-N1{color:#0A0F25;} + .d2-121937204 .color-N2{color:#676C7E;} + .d2-121937204 .color-N3{color:#9499AB;} + .d2-121937204 .color-N4{color:#CFD2DD;} + .d2-121937204 .color-N5{color:#DEE1EB;} + .d2-121937204 .color-N6{color:#EEF1F8;} + .d2-121937204 .color-N7{color:#FFFFFF;} + .d2-121937204 .color-B1{color:#0D32B2;} + .d2-121937204 .color-B2{color:#0D32B2;} + .d2-121937204 .color-B3{color:#E3E9FD;} + .d2-121937204 .color-B4{color:#E3E9FD;} + .d2-121937204 .color-B5{color:#EDF0FD;} + .d2-121937204 .color-B6{color:#F7F8FE;} + .d2-121937204 .color-AA2{color:#4A6FF3;} + .d2-121937204 .color-AA4{color:#EDF0FD;} + .d2-121937204 .color-AA5{color:#F7F8FE;} + .d2-121937204 .color-AB4{color:#EDF0FD;} + .d2-121937204 .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}]]>acbl1l2c1l2c3l2c2l3c1l3c2l4bacacbabcc1c2c3abc diff --git a/e2etests/testdata/stable/straight_hierarchy_container/elk/board.exp.json b/e2etests/testdata/stable/straight_hierarchy_container/elk/board.exp.json index 9818a0916c..f03a436723 100644 --- a/e2etests/testdata/stable/straight_hierarchy_container/elk/board.exp.json +++ b/e2etests/testdata/stable/straight_hierarchy_container/elk/board.exp.json @@ -1053,6 +1053,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 204.25, @@ -1091,6 +1092,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 277.25, @@ -1129,6 +1131,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 350.25, @@ -1167,6 +1170,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 277.25, @@ -1213,6 +1217,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 350.25, @@ -1259,6 +1264,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 204.25, @@ -1305,6 +1311,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 88.5, @@ -1351,6 +1358,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 261.5, @@ -1397,6 +1405,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 484.5, @@ -1435,6 +1444,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 138.5, @@ -1473,6 +1483,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 211.5, @@ -1519,6 +1530,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 484.5, diff --git a/e2etests/testdata/stable/straight_hierarchy_container/elk/sketch.exp.svg b/e2etests/testdata/stable/straight_hierarchy_container/elk/sketch.exp.svg index d3b80b3ab7..ab92dd531c 100644 --- a/e2etests/testdata/stable/straight_hierarchy_container/elk/sketch.exp.svg +++ b/e2etests/testdata/stable/straight_hierarchy_container/elk/sketch.exp.svg @@ -1,16 +1,16 @@ -acbl1l2c1l2c3l2c2l3c1l3c2l4bacacbabcc1c2c3abc + .d2-3895104826 .fill-N1{fill:#0A0F25;} + .d2-3895104826 .fill-N2{fill:#676C7E;} + .d2-3895104826 .fill-N3{fill:#9499AB;} + .d2-3895104826 .fill-N4{fill:#CFD2DD;} + .d2-3895104826 .fill-N5{fill:#DEE1EB;} + .d2-3895104826 .fill-N6{fill:#EEF1F8;} + .d2-3895104826 .fill-N7{fill:#FFFFFF;} + .d2-3895104826 .fill-B1{fill:#0D32B2;} + .d2-3895104826 .fill-B2{fill:#0D32B2;} + .d2-3895104826 .fill-B3{fill:#E3E9FD;} + .d2-3895104826 .fill-B4{fill:#E3E9FD;} + .d2-3895104826 .fill-B5{fill:#EDF0FD;} + .d2-3895104826 .fill-B6{fill:#F7F8FE;} + .d2-3895104826 .fill-AA2{fill:#4A6FF3;} + .d2-3895104826 .fill-AA4{fill:#EDF0FD;} + .d2-3895104826 .fill-AA5{fill:#F7F8FE;} + .d2-3895104826 .fill-AB4{fill:#EDF0FD;} + .d2-3895104826 .fill-AB5{fill:#F7F8FE;} + .d2-3895104826 .stroke-N1{stroke:#0A0F25;} + .d2-3895104826 .stroke-N2{stroke:#676C7E;} + .d2-3895104826 .stroke-N3{stroke:#9499AB;} + .d2-3895104826 .stroke-N4{stroke:#CFD2DD;} + .d2-3895104826 .stroke-N5{stroke:#DEE1EB;} + .d2-3895104826 .stroke-N6{stroke:#EEF1F8;} + .d2-3895104826 .stroke-N7{stroke:#FFFFFF;} + .d2-3895104826 .stroke-B1{stroke:#0D32B2;} + .d2-3895104826 .stroke-B2{stroke:#0D32B2;} + .d2-3895104826 .stroke-B3{stroke:#E3E9FD;} + .d2-3895104826 .stroke-B4{stroke:#E3E9FD;} + .d2-3895104826 .stroke-B5{stroke:#EDF0FD;} + .d2-3895104826 .stroke-B6{stroke:#F7F8FE;} + .d2-3895104826 .stroke-AA2{stroke:#4A6FF3;} + .d2-3895104826 .stroke-AA4{stroke:#EDF0FD;} + .d2-3895104826 .stroke-AA5{stroke:#F7F8FE;} + .d2-3895104826 .stroke-AB4{stroke:#EDF0FD;} + .d2-3895104826 .stroke-AB5{stroke:#F7F8FE;} + .d2-3895104826 .background-color-N1{background-color:#0A0F25;} + .d2-3895104826 .background-color-N2{background-color:#676C7E;} + .d2-3895104826 .background-color-N3{background-color:#9499AB;} + .d2-3895104826 .background-color-N4{background-color:#CFD2DD;} + .d2-3895104826 .background-color-N5{background-color:#DEE1EB;} + .d2-3895104826 .background-color-N6{background-color:#EEF1F8;} + .d2-3895104826 .background-color-N7{background-color:#FFFFFF;} + .d2-3895104826 .background-color-B1{background-color:#0D32B2;} + .d2-3895104826 .background-color-B2{background-color:#0D32B2;} + .d2-3895104826 .background-color-B3{background-color:#E3E9FD;} + .d2-3895104826 .background-color-B4{background-color:#E3E9FD;} + .d2-3895104826 .background-color-B5{background-color:#EDF0FD;} + .d2-3895104826 .background-color-B6{background-color:#F7F8FE;} + .d2-3895104826 .background-color-AA2{background-color:#4A6FF3;} + .d2-3895104826 .background-color-AA4{background-color:#EDF0FD;} + .d2-3895104826 .background-color-AA5{background-color:#F7F8FE;} + .d2-3895104826 .background-color-AB4{background-color:#EDF0FD;} + .d2-3895104826 .background-color-AB5{background-color:#F7F8FE;} + .d2-3895104826 .color-N1{color:#0A0F25;} + .d2-3895104826 .color-N2{color:#676C7E;} + .d2-3895104826 .color-N3{color:#9499AB;} + .d2-3895104826 .color-N4{color:#CFD2DD;} + .d2-3895104826 .color-N5{color:#DEE1EB;} + .d2-3895104826 .color-N6{color:#EEF1F8;} + .d2-3895104826 .color-N7{color:#FFFFFF;} + .d2-3895104826 .color-B1{color:#0D32B2;} + .d2-3895104826 .color-B2{color:#0D32B2;} + .d2-3895104826 .color-B3{color:#E3E9FD;} + .d2-3895104826 .color-B4{color:#E3E9FD;} + .d2-3895104826 .color-B5{color:#EDF0FD;} + .d2-3895104826 .color-B6{color:#F7F8FE;} + .d2-3895104826 .color-AA2{color:#4A6FF3;} + .d2-3895104826 .color-AA4{color:#EDF0FD;} + .d2-3895104826 .color-AA5{color:#F7F8FE;} + .d2-3895104826 .color-AB4{color:#EDF0FD;} + .d2-3895104826 .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}]]>acbl1l2c1l2c3l2c2l3c1l3c2l4bacacbabcc1c2c3abc diff --git a/e2etests/testdata/stable/stylish/dagre/board.exp.json b/e2etests/testdata/stable/stylish/dagre/board.exp.json index 49405db61f..7c48a18c79 100644 --- a/e2etests/testdata/stable/stylish/dagre/board.exp.json +++ b/e2etests/testdata/stable/stylish/dagre/board.exp.json @@ -111,6 +111,7 @@ "labelHeight": 21, "labelPosition": "INSIDE_MIDDLE_CENTER", "labelPercentage": 0, + "link": "", "route": [ { "x": 27, diff --git a/e2etests/testdata/stable/stylish/dagre/sketch.exp.svg b/e2etests/testdata/stable/stylish/dagre/sketch.exp.svg index 551253fa21..90b6943d36 100644 --- a/e2etests/testdata/stable/stylish/dagre/sketch.exp.svg +++ b/e2etests/testdata/stable/stylish/dagre/sketch.exp.svg @@ -1,16 +1,16 @@ - + .d2-1090651236 .fill-N1{fill:#0A0F25;} + .d2-1090651236 .fill-N2{fill:#676C7E;} + .d2-1090651236 .fill-N3{fill:#9499AB;} + .d2-1090651236 .fill-N4{fill:#CFD2DD;} + .d2-1090651236 .fill-N5{fill:#DEE1EB;} + .d2-1090651236 .fill-N6{fill:#EEF1F8;} + .d2-1090651236 .fill-N7{fill:#FFFFFF;} + .d2-1090651236 .fill-B1{fill:#0D32B2;} + .d2-1090651236 .fill-B2{fill:#0D32B2;} + .d2-1090651236 .fill-B3{fill:#E3E9FD;} + .d2-1090651236 .fill-B4{fill:#E3E9FD;} + .d2-1090651236 .fill-B5{fill:#EDF0FD;} + .d2-1090651236 .fill-B6{fill:#F7F8FE;} + .d2-1090651236 .fill-AA2{fill:#4A6FF3;} + .d2-1090651236 .fill-AA4{fill:#EDF0FD;} + .d2-1090651236 .fill-AA5{fill:#F7F8FE;} + .d2-1090651236 .fill-AB4{fill:#EDF0FD;} + .d2-1090651236 .fill-AB5{fill:#F7F8FE;} + .d2-1090651236 .stroke-N1{stroke:#0A0F25;} + .d2-1090651236 .stroke-N2{stroke:#676C7E;} + .d2-1090651236 .stroke-N3{stroke:#9499AB;} + .d2-1090651236 .stroke-N4{stroke:#CFD2DD;} + .d2-1090651236 .stroke-N5{stroke:#DEE1EB;} + .d2-1090651236 .stroke-N6{stroke:#EEF1F8;} + .d2-1090651236 .stroke-N7{stroke:#FFFFFF;} + .d2-1090651236 .stroke-B1{stroke:#0D32B2;} + .d2-1090651236 .stroke-B2{stroke:#0D32B2;} + .d2-1090651236 .stroke-B3{stroke:#E3E9FD;} + .d2-1090651236 .stroke-B4{stroke:#E3E9FD;} + .d2-1090651236 .stroke-B5{stroke:#EDF0FD;} + .d2-1090651236 .stroke-B6{stroke:#F7F8FE;} + .d2-1090651236 .stroke-AA2{stroke:#4A6FF3;} + .d2-1090651236 .stroke-AA4{stroke:#EDF0FD;} + .d2-1090651236 .stroke-AA5{stroke:#F7F8FE;} + .d2-1090651236 .stroke-AB4{stroke:#EDF0FD;} + .d2-1090651236 .stroke-AB5{stroke:#F7F8FE;} + .d2-1090651236 .background-color-N1{background-color:#0A0F25;} + .d2-1090651236 .background-color-N2{background-color:#676C7E;} + .d2-1090651236 .background-color-N3{background-color:#9499AB;} + .d2-1090651236 .background-color-N4{background-color:#CFD2DD;} + .d2-1090651236 .background-color-N5{background-color:#DEE1EB;} + .d2-1090651236 .background-color-N6{background-color:#EEF1F8;} + .d2-1090651236 .background-color-N7{background-color:#FFFFFF;} + .d2-1090651236 .background-color-B1{background-color:#0D32B2;} + .d2-1090651236 .background-color-B2{background-color:#0D32B2;} + .d2-1090651236 .background-color-B3{background-color:#E3E9FD;} + .d2-1090651236 .background-color-B4{background-color:#E3E9FD;} + .d2-1090651236 .background-color-B5{background-color:#EDF0FD;} + .d2-1090651236 .background-color-B6{background-color:#F7F8FE;} + .d2-1090651236 .background-color-AA2{background-color:#4A6FF3;} + .d2-1090651236 .background-color-AA4{background-color:#EDF0FD;} + .d2-1090651236 .background-color-AA5{background-color:#F7F8FE;} + .d2-1090651236 .background-color-AB4{background-color:#EDF0FD;} + .d2-1090651236 .background-color-AB5{background-color:#F7F8FE;} + .d2-1090651236 .color-N1{color:#0A0F25;} + .d2-1090651236 .color-N2{color:#676C7E;} + .d2-1090651236 .color-N3{color:#9499AB;} + .d2-1090651236 .color-N4{color:#CFD2DD;} + .d2-1090651236 .color-N5{color:#DEE1EB;} + .d2-1090651236 .color-N6{color:#EEF1F8;} + .d2-1090651236 .color-N7{color:#FFFFFF;} + .d2-1090651236 .color-B1{color:#0D32B2;} + .d2-1090651236 .color-B2{color:#0D32B2;} + .d2-1090651236 .color-B3{color:#E3E9FD;} + .d2-1090651236 .color-B4{color:#E3E9FD;} + .d2-1090651236 .color-B5{color:#EDF0FD;} + .d2-1090651236 .color-B6{color:#F7F8FE;} + .d2-1090651236 .color-AA2{color:#4A6FF3;} + .d2-1090651236 .color-AA4{color:#EDF0FD;} + .d2-1090651236 .color-AA5{color:#F7F8FE;} + .d2-1090651236 .color-AB4{color:#EDF0FD;} + .d2-1090651236 .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}]]> @@ -106,7 +106,7 @@ x -y in style +y in style diff --git a/e2etests/testdata/stable/stylish/elk/board.exp.json b/e2etests/testdata/stable/stylish/elk/board.exp.json index fd54b847b7..887948b92b 100644 --- a/e2etests/testdata/stable/stylish/elk/board.exp.json +++ b/e2etests/testdata/stable/stylish/elk/board.exp.json @@ -111,6 +111,7 @@ "labelHeight": 21, "labelPosition": "INSIDE_MIDDLE_CENTER", "labelPercentage": 0, + "link": "", "route": [ { "x": 46.5, diff --git a/e2etests/testdata/stable/stylish/elk/sketch.exp.svg b/e2etests/testdata/stable/stylish/elk/sketch.exp.svg index 0e7185814c..018dba79a3 100644 --- a/e2etests/testdata/stable/stylish/elk/sketch.exp.svg +++ b/e2etests/testdata/stable/stylish/elk/sketch.exp.svg @@ -1,16 +1,16 @@ - + .d2-2339834313 .fill-N1{fill:#0A0F25;} + .d2-2339834313 .fill-N2{fill:#676C7E;} + .d2-2339834313 .fill-N3{fill:#9499AB;} + .d2-2339834313 .fill-N4{fill:#CFD2DD;} + .d2-2339834313 .fill-N5{fill:#DEE1EB;} + .d2-2339834313 .fill-N6{fill:#EEF1F8;} + .d2-2339834313 .fill-N7{fill:#FFFFFF;} + .d2-2339834313 .fill-B1{fill:#0D32B2;} + .d2-2339834313 .fill-B2{fill:#0D32B2;} + .d2-2339834313 .fill-B3{fill:#E3E9FD;} + .d2-2339834313 .fill-B4{fill:#E3E9FD;} + .d2-2339834313 .fill-B5{fill:#EDF0FD;} + .d2-2339834313 .fill-B6{fill:#F7F8FE;} + .d2-2339834313 .fill-AA2{fill:#4A6FF3;} + .d2-2339834313 .fill-AA4{fill:#EDF0FD;} + .d2-2339834313 .fill-AA5{fill:#F7F8FE;} + .d2-2339834313 .fill-AB4{fill:#EDF0FD;} + .d2-2339834313 .fill-AB5{fill:#F7F8FE;} + .d2-2339834313 .stroke-N1{stroke:#0A0F25;} + .d2-2339834313 .stroke-N2{stroke:#676C7E;} + .d2-2339834313 .stroke-N3{stroke:#9499AB;} + .d2-2339834313 .stroke-N4{stroke:#CFD2DD;} + .d2-2339834313 .stroke-N5{stroke:#DEE1EB;} + .d2-2339834313 .stroke-N6{stroke:#EEF1F8;} + .d2-2339834313 .stroke-N7{stroke:#FFFFFF;} + .d2-2339834313 .stroke-B1{stroke:#0D32B2;} + .d2-2339834313 .stroke-B2{stroke:#0D32B2;} + .d2-2339834313 .stroke-B3{stroke:#E3E9FD;} + .d2-2339834313 .stroke-B4{stroke:#E3E9FD;} + .d2-2339834313 .stroke-B5{stroke:#EDF0FD;} + .d2-2339834313 .stroke-B6{stroke:#F7F8FE;} + .d2-2339834313 .stroke-AA2{stroke:#4A6FF3;} + .d2-2339834313 .stroke-AA4{stroke:#EDF0FD;} + .d2-2339834313 .stroke-AA5{stroke:#F7F8FE;} + .d2-2339834313 .stroke-AB4{stroke:#EDF0FD;} + .d2-2339834313 .stroke-AB5{stroke:#F7F8FE;} + .d2-2339834313 .background-color-N1{background-color:#0A0F25;} + .d2-2339834313 .background-color-N2{background-color:#676C7E;} + .d2-2339834313 .background-color-N3{background-color:#9499AB;} + .d2-2339834313 .background-color-N4{background-color:#CFD2DD;} + .d2-2339834313 .background-color-N5{background-color:#DEE1EB;} + .d2-2339834313 .background-color-N6{background-color:#EEF1F8;} + .d2-2339834313 .background-color-N7{background-color:#FFFFFF;} + .d2-2339834313 .background-color-B1{background-color:#0D32B2;} + .d2-2339834313 .background-color-B2{background-color:#0D32B2;} + .d2-2339834313 .background-color-B3{background-color:#E3E9FD;} + .d2-2339834313 .background-color-B4{background-color:#E3E9FD;} + .d2-2339834313 .background-color-B5{background-color:#EDF0FD;} + .d2-2339834313 .background-color-B6{background-color:#F7F8FE;} + .d2-2339834313 .background-color-AA2{background-color:#4A6FF3;} + .d2-2339834313 .background-color-AA4{background-color:#EDF0FD;} + .d2-2339834313 .background-color-AA5{background-color:#F7F8FE;} + .d2-2339834313 .background-color-AB4{background-color:#EDF0FD;} + .d2-2339834313 .background-color-AB5{background-color:#F7F8FE;} + .d2-2339834313 .color-N1{color:#0A0F25;} + .d2-2339834313 .color-N2{color:#676C7E;} + .d2-2339834313 .color-N3{color:#9499AB;} + .d2-2339834313 .color-N4{color:#CFD2DD;} + .d2-2339834313 .color-N5{color:#DEE1EB;} + .d2-2339834313 .color-N6{color:#EEF1F8;} + .d2-2339834313 .color-N7{color:#FFFFFF;} + .d2-2339834313 .color-B1{color:#0D32B2;} + .d2-2339834313 .color-B2{color:#0D32B2;} + .d2-2339834313 .color-B3{color:#E3E9FD;} + .d2-2339834313 .color-B4{color:#E3E9FD;} + .d2-2339834313 .color-B5{color:#EDF0FD;} + .d2-2339834313 .color-B6{color:#F7F8FE;} + .d2-2339834313 .color-AA2{color:#4A6FF3;} + .d2-2339834313 .color-AA4{color:#EDF0FD;} + .d2-2339834313 .color-AA5{color:#F7F8FE;} + .d2-2339834313 .color-AB4{color:#EDF0FD;} + .d2-2339834313 .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}]]> @@ -106,7 +106,7 @@ x -y in style +y in style diff --git a/e2etests/testdata/stable/teleport_grid/dagre/board.exp.json b/e2etests/testdata/stable/teleport_grid/dagre/board.exp.json index eb7a994e1d..bb40f5e8aa 100644 --- a/e2etests/testdata/stable/teleport_grid/dagre/board.exp.json +++ b/e2etests/testdata/stable/teleport_grid/dagre/board.exp.json @@ -1288,6 +1288,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 301.5, @@ -1335,6 +1336,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 808.5, @@ -1382,6 +1384,7 @@ "labelHeight": 21, "labelPosition": "INSIDE_MIDDLE_CENTER", "labelPercentage": 0, + "link": "", "route": [ { "x": 1528.72998046875, @@ -1429,6 +1432,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 1553, @@ -1476,6 +1480,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 1553, @@ -1523,6 +1528,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 1553, diff --git a/e2etests/testdata/stable/teleport_grid/dagre/sketch.exp.svg b/e2etests/testdata/stable/teleport_grid/dagre/sketch.exp.svg index 5b89fd573f..3f2a8322a1 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 +Audit LogCert AuthoritySlackMattermostJiraPagerdutyEmailsshKubernetesMy SQLMongoDBPSQLWindows all connections audited and logged diff --git a/e2etests/testdata/stable/teleport_grid/elk/board.exp.json b/e2etests/testdata/stable/teleport_grid/elk/board.exp.json index 45520c5767..83b4b18dd2 100644 --- a/e2etests/testdata/stable/teleport_grid/elk/board.exp.json +++ b/e2etests/testdata/stable/teleport_grid/elk/board.exp.json @@ -1288,6 +1288,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 314, @@ -1326,6 +1327,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 620, @@ -1364,6 +1366,7 @@ "labelHeight": 21, "labelPosition": "INSIDE_MIDDLE_CENTER", "labelPercentage": 0, + "link": "", "route": [ { "x": 1163, @@ -1410,6 +1413,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 1163, @@ -1448,6 +1452,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 1163, @@ -1494,6 +1499,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 1163, diff --git a/e2etests/testdata/stable/teleport_grid/elk/sketch.exp.svg b/e2etests/testdata/stable/teleport_grid/elk/sketch.exp.svg index 88ff4a4bf0..028b3b1950 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 +Audit LogCert AuthoritySlackMattermostJiraPagerdutyEmailsshKubernetesMy SQLMongoDBPSQLWindows all connections audited and logged diff --git a/e2etests/testdata/stable/text_font_sizes/dagre/board.exp.json b/e2etests/testdata/stable/text_font_sizes/dagre/board.exp.json index 2f358182b7..08d4d4230b 100644 --- a/e2etests/testdata/stable/text_font_sizes/dagre/board.exp.json +++ b/e2etests/testdata/stable/text_font_sizes/dagre/board.exp.json @@ -148,6 +148,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 67.5, @@ -195,6 +196,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 262, diff --git a/e2etests/testdata/stable/text_font_sizes/dagre/sketch.exp.svg b/e2etests/testdata/stable/text_font_sizes/dagre/sketch.exp.svg index 47822d769c..9df8862bc0 100644 --- a/e2etests/testdata/stable/text_font_sizes/dagre/sketch.exp.svg +++ b/e2etests/testdata/stable/text_font_sizes/dagre/sketch.exp.svg @@ -1,26 +1,26 @@ -bearmama bearpapa bear +bearmama bearpapa bear diff --git a/e2etests/testdata/stable/text_font_sizes/elk/board.exp.json b/e2etests/testdata/stable/text_font_sizes/elk/board.exp.json index 9c0d32fe8f..e6cbad692a 100644 --- a/e2etests/testdata/stable/text_font_sizes/elk/board.exp.json +++ b/e2etests/testdata/stable/text_font_sizes/elk/board.exp.json @@ -148,6 +148,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 79.5, @@ -194,6 +195,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 234, diff --git a/e2etests/testdata/stable/text_font_sizes/elk/sketch.exp.svg b/e2etests/testdata/stable/text_font_sizes/elk/sketch.exp.svg index 4e5a3aa80f..fd2c88d0ca 100644 --- a/e2etests/testdata/stable/text_font_sizes/elk/sketch.exp.svg +++ b/e2etests/testdata/stable/text_font_sizes/elk/sketch.exp.svg @@ -1,26 +1,26 @@ -bearmama bearpapa bear +bearmama bearpapa bear diff --git a/e2etests/testdata/stable/unfilled_triangle/dagre/board.exp.json b/e2etests/testdata/stable/unfilled_triangle/dagre/board.exp.json index 52742a5c94..6c87fd76c4 100644 --- a/e2etests/testdata/stable/unfilled_triangle/dagre/board.exp.json +++ b/e2etests/testdata/stable/unfilled_triangle/dagre/board.exp.json @@ -192,6 +192,7 @@ "labelHeight": 21, "labelPosition": "INSIDE_MIDDLE_CENTER", "labelPercentage": 0, + "link": "", "route": [ { "x": 56, @@ -239,6 +240,7 @@ "labelHeight": 21, "labelPosition": "INSIDE_MIDDLE_CENTER", "labelPercentage": 0, + "link": "", "route": [ { "x": 55, diff --git a/e2etests/testdata/stable/unfilled_triangle/dagre/sketch.exp.svg b/e2etests/testdata/stable/unfilled_triangle/dagre/sketch.exp.svg index 13b815f82a..2cc4aac69e 100644 --- a/e2etests/testdata/stable/unfilled_triangle/dagre/sketch.exp.svg +++ b/e2etests/testdata/stable/unfilled_triangle/dagre/sketch.exp.svg @@ -1,16 +1,16 @@ -ABCD defaulttriangle + .d2-4052114486 .fill-N1{fill:#0A0F25;} + .d2-4052114486 .fill-N2{fill:#676C7E;} + .d2-4052114486 .fill-N3{fill:#9499AB;} + .d2-4052114486 .fill-N4{fill:#CFD2DD;} + .d2-4052114486 .fill-N5{fill:#DEE1EB;} + .d2-4052114486 .fill-N6{fill:#EEF1F8;} + .d2-4052114486 .fill-N7{fill:#FFFFFF;} + .d2-4052114486 .fill-B1{fill:#0D32B2;} + .d2-4052114486 .fill-B2{fill:#0D32B2;} + .d2-4052114486 .fill-B3{fill:#E3E9FD;} + .d2-4052114486 .fill-B4{fill:#E3E9FD;} + .d2-4052114486 .fill-B5{fill:#EDF0FD;} + .d2-4052114486 .fill-B6{fill:#F7F8FE;} + .d2-4052114486 .fill-AA2{fill:#4A6FF3;} + .d2-4052114486 .fill-AA4{fill:#EDF0FD;} + .d2-4052114486 .fill-AA5{fill:#F7F8FE;} + .d2-4052114486 .fill-AB4{fill:#EDF0FD;} + .d2-4052114486 .fill-AB5{fill:#F7F8FE;} + .d2-4052114486 .stroke-N1{stroke:#0A0F25;} + .d2-4052114486 .stroke-N2{stroke:#676C7E;} + .d2-4052114486 .stroke-N3{stroke:#9499AB;} + .d2-4052114486 .stroke-N4{stroke:#CFD2DD;} + .d2-4052114486 .stroke-N5{stroke:#DEE1EB;} + .d2-4052114486 .stroke-N6{stroke:#EEF1F8;} + .d2-4052114486 .stroke-N7{stroke:#FFFFFF;} + .d2-4052114486 .stroke-B1{stroke:#0D32B2;} + .d2-4052114486 .stroke-B2{stroke:#0D32B2;} + .d2-4052114486 .stroke-B3{stroke:#E3E9FD;} + .d2-4052114486 .stroke-B4{stroke:#E3E9FD;} + .d2-4052114486 .stroke-B5{stroke:#EDF0FD;} + .d2-4052114486 .stroke-B6{stroke:#F7F8FE;} + .d2-4052114486 .stroke-AA2{stroke:#4A6FF3;} + .d2-4052114486 .stroke-AA4{stroke:#EDF0FD;} + .d2-4052114486 .stroke-AA5{stroke:#F7F8FE;} + .d2-4052114486 .stroke-AB4{stroke:#EDF0FD;} + .d2-4052114486 .stroke-AB5{stroke:#F7F8FE;} + .d2-4052114486 .background-color-N1{background-color:#0A0F25;} + .d2-4052114486 .background-color-N2{background-color:#676C7E;} + .d2-4052114486 .background-color-N3{background-color:#9499AB;} + .d2-4052114486 .background-color-N4{background-color:#CFD2DD;} + .d2-4052114486 .background-color-N5{background-color:#DEE1EB;} + .d2-4052114486 .background-color-N6{background-color:#EEF1F8;} + .d2-4052114486 .background-color-N7{background-color:#FFFFFF;} + .d2-4052114486 .background-color-B1{background-color:#0D32B2;} + .d2-4052114486 .background-color-B2{background-color:#0D32B2;} + .d2-4052114486 .background-color-B3{background-color:#E3E9FD;} + .d2-4052114486 .background-color-B4{background-color:#E3E9FD;} + .d2-4052114486 .background-color-B5{background-color:#EDF0FD;} + .d2-4052114486 .background-color-B6{background-color:#F7F8FE;} + .d2-4052114486 .background-color-AA2{background-color:#4A6FF3;} + .d2-4052114486 .background-color-AA4{background-color:#EDF0FD;} + .d2-4052114486 .background-color-AA5{background-color:#F7F8FE;} + .d2-4052114486 .background-color-AB4{background-color:#EDF0FD;} + .d2-4052114486 .background-color-AB5{background-color:#F7F8FE;} + .d2-4052114486 .color-N1{color:#0A0F25;} + .d2-4052114486 .color-N2{color:#676C7E;} + .d2-4052114486 .color-N3{color:#9499AB;} + .d2-4052114486 .color-N4{color:#CFD2DD;} + .d2-4052114486 .color-N5{color:#DEE1EB;} + .d2-4052114486 .color-N6{color:#EEF1F8;} + .d2-4052114486 .color-N7{color:#FFFFFF;} + .d2-4052114486 .color-B1{color:#0D32B2;} + .d2-4052114486 .color-B2{color:#0D32B2;} + .d2-4052114486 .color-B3{color:#E3E9FD;} + .d2-4052114486 .color-B4{color:#E3E9FD;} + .d2-4052114486 .color-B5{color:#EDF0FD;} + .d2-4052114486 .color-B6{color:#F7F8FE;} + .d2-4052114486 .color-AA2{color:#4A6FF3;} + .d2-4052114486 .color-AA4{color:#EDF0FD;} + .d2-4052114486 .color-AA5{color:#F7F8FE;} + .d2-4052114486 .color-AB4{color:#EDF0FD;} + .d2-4052114486 .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}]]>ABCD defaulttriangle diff --git a/e2etests/testdata/stable/unfilled_triangle/elk/board.exp.json b/e2etests/testdata/stable/unfilled_triangle/elk/board.exp.json index d9d7fbb481..381e4720f5 100644 --- a/e2etests/testdata/stable/unfilled_triangle/elk/board.exp.json +++ b/e2etests/testdata/stable/unfilled_triangle/elk/board.exp.json @@ -192,6 +192,7 @@ "labelHeight": 21, "labelPosition": "INSIDE_MIDDLE_CENTER", "labelPercentage": 0, + "link": "", "route": [ { "x": 68, @@ -230,6 +231,7 @@ "labelHeight": 21, "labelPosition": "INSIDE_MIDDLE_CENTER", "labelPercentage": 0, + "link": "", "route": [ { "x": 68, diff --git a/e2etests/testdata/stable/unfilled_triangle/elk/sketch.exp.svg b/e2etests/testdata/stable/unfilled_triangle/elk/sketch.exp.svg index d5b79320da..29586b3e73 100644 --- a/e2etests/testdata/stable/unfilled_triangle/elk/sketch.exp.svg +++ b/e2etests/testdata/stable/unfilled_triangle/elk/sketch.exp.svg @@ -1,16 +1,16 @@ -ABCD defaulttriangle + .d2-3550117164 .fill-N1{fill:#0A0F25;} + .d2-3550117164 .fill-N2{fill:#676C7E;} + .d2-3550117164 .fill-N3{fill:#9499AB;} + .d2-3550117164 .fill-N4{fill:#CFD2DD;} + .d2-3550117164 .fill-N5{fill:#DEE1EB;} + .d2-3550117164 .fill-N6{fill:#EEF1F8;} + .d2-3550117164 .fill-N7{fill:#FFFFFF;} + .d2-3550117164 .fill-B1{fill:#0D32B2;} + .d2-3550117164 .fill-B2{fill:#0D32B2;} + .d2-3550117164 .fill-B3{fill:#E3E9FD;} + .d2-3550117164 .fill-B4{fill:#E3E9FD;} + .d2-3550117164 .fill-B5{fill:#EDF0FD;} + .d2-3550117164 .fill-B6{fill:#F7F8FE;} + .d2-3550117164 .fill-AA2{fill:#4A6FF3;} + .d2-3550117164 .fill-AA4{fill:#EDF0FD;} + .d2-3550117164 .fill-AA5{fill:#F7F8FE;} + .d2-3550117164 .fill-AB4{fill:#EDF0FD;} + .d2-3550117164 .fill-AB5{fill:#F7F8FE;} + .d2-3550117164 .stroke-N1{stroke:#0A0F25;} + .d2-3550117164 .stroke-N2{stroke:#676C7E;} + .d2-3550117164 .stroke-N3{stroke:#9499AB;} + .d2-3550117164 .stroke-N4{stroke:#CFD2DD;} + .d2-3550117164 .stroke-N5{stroke:#DEE1EB;} + .d2-3550117164 .stroke-N6{stroke:#EEF1F8;} + .d2-3550117164 .stroke-N7{stroke:#FFFFFF;} + .d2-3550117164 .stroke-B1{stroke:#0D32B2;} + .d2-3550117164 .stroke-B2{stroke:#0D32B2;} + .d2-3550117164 .stroke-B3{stroke:#E3E9FD;} + .d2-3550117164 .stroke-B4{stroke:#E3E9FD;} + .d2-3550117164 .stroke-B5{stroke:#EDF0FD;} + .d2-3550117164 .stroke-B6{stroke:#F7F8FE;} + .d2-3550117164 .stroke-AA2{stroke:#4A6FF3;} + .d2-3550117164 .stroke-AA4{stroke:#EDF0FD;} + .d2-3550117164 .stroke-AA5{stroke:#F7F8FE;} + .d2-3550117164 .stroke-AB4{stroke:#EDF0FD;} + .d2-3550117164 .stroke-AB5{stroke:#F7F8FE;} + .d2-3550117164 .background-color-N1{background-color:#0A0F25;} + .d2-3550117164 .background-color-N2{background-color:#676C7E;} + .d2-3550117164 .background-color-N3{background-color:#9499AB;} + .d2-3550117164 .background-color-N4{background-color:#CFD2DD;} + .d2-3550117164 .background-color-N5{background-color:#DEE1EB;} + .d2-3550117164 .background-color-N6{background-color:#EEF1F8;} + .d2-3550117164 .background-color-N7{background-color:#FFFFFF;} + .d2-3550117164 .background-color-B1{background-color:#0D32B2;} + .d2-3550117164 .background-color-B2{background-color:#0D32B2;} + .d2-3550117164 .background-color-B3{background-color:#E3E9FD;} + .d2-3550117164 .background-color-B4{background-color:#E3E9FD;} + .d2-3550117164 .background-color-B5{background-color:#EDF0FD;} + .d2-3550117164 .background-color-B6{background-color:#F7F8FE;} + .d2-3550117164 .background-color-AA2{background-color:#4A6FF3;} + .d2-3550117164 .background-color-AA4{background-color:#EDF0FD;} + .d2-3550117164 .background-color-AA5{background-color:#F7F8FE;} + .d2-3550117164 .background-color-AB4{background-color:#EDF0FD;} + .d2-3550117164 .background-color-AB5{background-color:#F7F8FE;} + .d2-3550117164 .color-N1{color:#0A0F25;} + .d2-3550117164 .color-N2{color:#676C7E;} + .d2-3550117164 .color-N3{color:#9499AB;} + .d2-3550117164 .color-N4{color:#CFD2DD;} + .d2-3550117164 .color-N5{color:#DEE1EB;} + .d2-3550117164 .color-N6{color:#EEF1F8;} + .d2-3550117164 .color-N7{color:#FFFFFF;} + .d2-3550117164 .color-B1{color:#0D32B2;} + .d2-3550117164 .color-B2{color:#0D32B2;} + .d2-3550117164 .color-B3{color:#E3E9FD;} + .d2-3550117164 .color-B4{color:#E3E9FD;} + .d2-3550117164 .color-B5{color:#EDF0FD;} + .d2-3550117164 .color-B6{color:#F7F8FE;} + .d2-3550117164 .color-AA2{color:#4A6FF3;} + .d2-3550117164 .color-AA4{color:#EDF0FD;} + .d2-3550117164 .color-AA5{color:#F7F8FE;} + .d2-3550117164 .color-AB4{color:#EDF0FD;} + .d2-3550117164 .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}]]>ABCD defaulttriangle diff --git a/e2etests/testdata/stable/unnamed_only_height/dagre/board.exp.json b/e2etests/testdata/stable/unnamed_only_height/dagre/board.exp.json index 69bcf9374e..cd6c4fd71f 100644 --- a/e2etests/testdata/stable/unnamed_only_height/dagre/board.exp.json +++ b/e2etests/testdata/stable/unnamed_only_height/dagre/board.exp.json @@ -407,6 +407,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 211, @@ -454,6 +455,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 211, @@ -501,6 +503,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 211, @@ -548,6 +551,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 211, diff --git a/e2etests/testdata/stable/unnamed_only_height/dagre/sketch.exp.svg b/e2etests/testdata/stable/unnamed_only_height/dagre/sketch.exp.svg index 7770a3551c..50ed7dd6fa 100644 --- a/e2etests/testdata/stable/unnamed_only_height/dagre/sketch.exp.svg +++ b/e2etests/testdata/stable/unnamed_only_height/dagre/sketch.exp.svg @@ -1,23 +1,23 @@ --numint-timeoutint-pid+getStatus()Enum+getJobs()Job[]+setTimeout(seconds int)voididintnamestringemailstringpasswordstringlast_logindatetime:= 5 + .d2-3318758314 .fill-N1{fill:#0A0F25;} + .d2-3318758314 .fill-N2{fill:#676C7E;} + .d2-3318758314 .fill-N3{fill:#9499AB;} + .d2-3318758314 .fill-N4{fill:#CFD2DD;} + .d2-3318758314 .fill-N5{fill:#DEE1EB;} + .d2-3318758314 .fill-N6{fill:#EEF1F8;} + .d2-3318758314 .fill-N7{fill:#FFFFFF;} + .d2-3318758314 .fill-B1{fill:#0D32B2;} + .d2-3318758314 .fill-B2{fill:#0D32B2;} + .d2-3318758314 .fill-B3{fill:#E3E9FD;} + .d2-3318758314 .fill-B4{fill:#E3E9FD;} + .d2-3318758314 .fill-B5{fill:#EDF0FD;} + .d2-3318758314 .fill-B6{fill:#F7F8FE;} + .d2-3318758314 .fill-AA2{fill:#4A6FF3;} + .d2-3318758314 .fill-AA4{fill:#EDF0FD;} + .d2-3318758314 .fill-AA5{fill:#F7F8FE;} + .d2-3318758314 .fill-AB4{fill:#EDF0FD;} + .d2-3318758314 .fill-AB5{fill:#F7F8FE;} + .d2-3318758314 .stroke-N1{stroke:#0A0F25;} + .d2-3318758314 .stroke-N2{stroke:#676C7E;} + .d2-3318758314 .stroke-N3{stroke:#9499AB;} + .d2-3318758314 .stroke-N4{stroke:#CFD2DD;} + .d2-3318758314 .stroke-N5{stroke:#DEE1EB;} + .d2-3318758314 .stroke-N6{stroke:#EEF1F8;} + .d2-3318758314 .stroke-N7{stroke:#FFFFFF;} + .d2-3318758314 .stroke-B1{stroke:#0D32B2;} + .d2-3318758314 .stroke-B2{stroke:#0D32B2;} + .d2-3318758314 .stroke-B3{stroke:#E3E9FD;} + .d2-3318758314 .stroke-B4{stroke:#E3E9FD;} + .d2-3318758314 .stroke-B5{stroke:#EDF0FD;} + .d2-3318758314 .stroke-B6{stroke:#F7F8FE;} + .d2-3318758314 .stroke-AA2{stroke:#4A6FF3;} + .d2-3318758314 .stroke-AA4{stroke:#EDF0FD;} + .d2-3318758314 .stroke-AA5{stroke:#F7F8FE;} + .d2-3318758314 .stroke-AB4{stroke:#EDF0FD;} + .d2-3318758314 .stroke-AB5{stroke:#F7F8FE;} + .d2-3318758314 .background-color-N1{background-color:#0A0F25;} + .d2-3318758314 .background-color-N2{background-color:#676C7E;} + .d2-3318758314 .background-color-N3{background-color:#9499AB;} + .d2-3318758314 .background-color-N4{background-color:#CFD2DD;} + .d2-3318758314 .background-color-N5{background-color:#DEE1EB;} + .d2-3318758314 .background-color-N6{background-color:#EEF1F8;} + .d2-3318758314 .background-color-N7{background-color:#FFFFFF;} + .d2-3318758314 .background-color-B1{background-color:#0D32B2;} + .d2-3318758314 .background-color-B2{background-color:#0D32B2;} + .d2-3318758314 .background-color-B3{background-color:#E3E9FD;} + .d2-3318758314 .background-color-B4{background-color:#E3E9FD;} + .d2-3318758314 .background-color-B5{background-color:#EDF0FD;} + .d2-3318758314 .background-color-B6{background-color:#F7F8FE;} + .d2-3318758314 .background-color-AA2{background-color:#4A6FF3;} + .d2-3318758314 .background-color-AA4{background-color:#EDF0FD;} + .d2-3318758314 .background-color-AA5{background-color:#F7F8FE;} + .d2-3318758314 .background-color-AB4{background-color:#EDF0FD;} + .d2-3318758314 .background-color-AB5{background-color:#F7F8FE;} + .d2-3318758314 .color-N1{color:#0A0F25;} + .d2-3318758314 .color-N2{color:#676C7E;} + .d2-3318758314 .color-N3{color:#9499AB;} + .d2-3318758314 .color-N4{color:#CFD2DD;} + .d2-3318758314 .color-N5{color:#DEE1EB;} + .d2-3318758314 .color-N6{color:#EEF1F8;} + .d2-3318758314 .color-N7{color:#FFFFFF;} + .d2-3318758314 .color-B1{color:#0D32B2;} + .d2-3318758314 .color-B2{color:#0D32B2;} + .d2-3318758314 .color-B3{color:#E3E9FD;} + .d2-3318758314 .color-B4{color:#E3E9FD;} + .d2-3318758314 .color-B5{color:#EDF0FD;} + .d2-3318758314 .color-B6{color:#F7F8FE;} + .d2-3318758314 .color-AA2{color:#4A6FF3;} + .d2-3318758314 .color-AA4{color:#EDF0FD;} + .d2-3318758314 .color-AA5{color:#F7F8FE;} + .d2-3318758314 .color-AB4{color:#EDF0FD;} + .d2-3318758314 .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}]]>-numint-timeoutint-pid+getStatus()Enum+getJobs()Job[]+setTimeout(seconds int)voididintnamestringemailstringpasswordstringlast_logindatetime:= 5 := a + 7 fmt.Printf("%d", b)a := 5 b := a + 7 -fmt.Printf("%d", b) +fmt.Printf("%d", b) \ No newline at end of file diff --git a/e2etests/testdata/stable/unnamed_only_height/elk/board.exp.json b/e2etests/testdata/stable/unnamed_only_height/elk/board.exp.json index 8aae100af0..97001d2564 100644 --- a/e2etests/testdata/stable/unnamed_only_height/elk/board.exp.json +++ b/e2etests/testdata/stable/unnamed_only_height/elk/board.exp.json @@ -407,6 +407,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 223, @@ -445,6 +446,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 223, @@ -483,6 +485,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 223, @@ -521,6 +524,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 223, diff --git a/e2etests/testdata/stable/unnamed_only_height/elk/sketch.exp.svg b/e2etests/testdata/stable/unnamed_only_height/elk/sketch.exp.svg index 9844c47a91..576a2c076b 100644 --- a/e2etests/testdata/stable/unnamed_only_height/elk/sketch.exp.svg +++ b/e2etests/testdata/stable/unnamed_only_height/elk/sketch.exp.svg @@ -1,23 +1,23 @@ --numint-timeoutint-pid+getStatus()Enum+getJobs()Job[]+setTimeout(seconds int)voididintnamestringemailstringpasswordstringlast_logindatetime:= 5 + .d2-2399361065 .fill-N1{fill:#0A0F25;} + .d2-2399361065 .fill-N2{fill:#676C7E;} + .d2-2399361065 .fill-N3{fill:#9499AB;} + .d2-2399361065 .fill-N4{fill:#CFD2DD;} + .d2-2399361065 .fill-N5{fill:#DEE1EB;} + .d2-2399361065 .fill-N6{fill:#EEF1F8;} + .d2-2399361065 .fill-N7{fill:#FFFFFF;} + .d2-2399361065 .fill-B1{fill:#0D32B2;} + .d2-2399361065 .fill-B2{fill:#0D32B2;} + .d2-2399361065 .fill-B3{fill:#E3E9FD;} + .d2-2399361065 .fill-B4{fill:#E3E9FD;} + .d2-2399361065 .fill-B5{fill:#EDF0FD;} + .d2-2399361065 .fill-B6{fill:#F7F8FE;} + .d2-2399361065 .fill-AA2{fill:#4A6FF3;} + .d2-2399361065 .fill-AA4{fill:#EDF0FD;} + .d2-2399361065 .fill-AA5{fill:#F7F8FE;} + .d2-2399361065 .fill-AB4{fill:#EDF0FD;} + .d2-2399361065 .fill-AB5{fill:#F7F8FE;} + .d2-2399361065 .stroke-N1{stroke:#0A0F25;} + .d2-2399361065 .stroke-N2{stroke:#676C7E;} + .d2-2399361065 .stroke-N3{stroke:#9499AB;} + .d2-2399361065 .stroke-N4{stroke:#CFD2DD;} + .d2-2399361065 .stroke-N5{stroke:#DEE1EB;} + .d2-2399361065 .stroke-N6{stroke:#EEF1F8;} + .d2-2399361065 .stroke-N7{stroke:#FFFFFF;} + .d2-2399361065 .stroke-B1{stroke:#0D32B2;} + .d2-2399361065 .stroke-B2{stroke:#0D32B2;} + .d2-2399361065 .stroke-B3{stroke:#E3E9FD;} + .d2-2399361065 .stroke-B4{stroke:#E3E9FD;} + .d2-2399361065 .stroke-B5{stroke:#EDF0FD;} + .d2-2399361065 .stroke-B6{stroke:#F7F8FE;} + .d2-2399361065 .stroke-AA2{stroke:#4A6FF3;} + .d2-2399361065 .stroke-AA4{stroke:#EDF0FD;} + .d2-2399361065 .stroke-AA5{stroke:#F7F8FE;} + .d2-2399361065 .stroke-AB4{stroke:#EDF0FD;} + .d2-2399361065 .stroke-AB5{stroke:#F7F8FE;} + .d2-2399361065 .background-color-N1{background-color:#0A0F25;} + .d2-2399361065 .background-color-N2{background-color:#676C7E;} + .d2-2399361065 .background-color-N3{background-color:#9499AB;} + .d2-2399361065 .background-color-N4{background-color:#CFD2DD;} + .d2-2399361065 .background-color-N5{background-color:#DEE1EB;} + .d2-2399361065 .background-color-N6{background-color:#EEF1F8;} + .d2-2399361065 .background-color-N7{background-color:#FFFFFF;} + .d2-2399361065 .background-color-B1{background-color:#0D32B2;} + .d2-2399361065 .background-color-B2{background-color:#0D32B2;} + .d2-2399361065 .background-color-B3{background-color:#E3E9FD;} + .d2-2399361065 .background-color-B4{background-color:#E3E9FD;} + .d2-2399361065 .background-color-B5{background-color:#EDF0FD;} + .d2-2399361065 .background-color-B6{background-color:#F7F8FE;} + .d2-2399361065 .background-color-AA2{background-color:#4A6FF3;} + .d2-2399361065 .background-color-AA4{background-color:#EDF0FD;} + .d2-2399361065 .background-color-AA5{background-color:#F7F8FE;} + .d2-2399361065 .background-color-AB4{background-color:#EDF0FD;} + .d2-2399361065 .background-color-AB5{background-color:#F7F8FE;} + .d2-2399361065 .color-N1{color:#0A0F25;} + .d2-2399361065 .color-N2{color:#676C7E;} + .d2-2399361065 .color-N3{color:#9499AB;} + .d2-2399361065 .color-N4{color:#CFD2DD;} + .d2-2399361065 .color-N5{color:#DEE1EB;} + .d2-2399361065 .color-N6{color:#EEF1F8;} + .d2-2399361065 .color-N7{color:#FFFFFF;} + .d2-2399361065 .color-B1{color:#0D32B2;} + .d2-2399361065 .color-B2{color:#0D32B2;} + .d2-2399361065 .color-B3{color:#E3E9FD;} + .d2-2399361065 .color-B4{color:#E3E9FD;} + .d2-2399361065 .color-B5{color:#EDF0FD;} + .d2-2399361065 .color-B6{color:#F7F8FE;} + .d2-2399361065 .color-AA2{color:#4A6FF3;} + .d2-2399361065 .color-AA4{color:#EDF0FD;} + .d2-2399361065 .color-AA5{color:#F7F8FE;} + .d2-2399361065 .color-AB4{color:#EDF0FD;} + .d2-2399361065 .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}]]>-numint-timeoutint-pid+getStatus()Enum+getJobs()Job[]+setTimeout(seconds int)voididintnamestringemailstringpasswordstringlast_logindatetime:= 5 := a + 7 fmt.Printf("%d", b)a := 5 b := a + 7 -fmt.Printf("%d", b) +fmt.Printf("%d", b) \ No newline at end of file diff --git a/e2etests/testdata/stable/unnamed_only_width/dagre/board.exp.json b/e2etests/testdata/stable/unnamed_only_width/dagre/board.exp.json index b5b4b51e92..498602bbea 100644 --- a/e2etests/testdata/stable/unnamed_only_width/dagre/board.exp.json +++ b/e2etests/testdata/stable/unnamed_only_width/dagre/board.exp.json @@ -407,6 +407,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 256, @@ -454,6 +455,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 256, @@ -501,6 +503,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 256, @@ -548,6 +551,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 256, diff --git a/e2etests/testdata/stable/unnamed_only_width/dagre/sketch.exp.svg b/e2etests/testdata/stable/unnamed_only_width/dagre/sketch.exp.svg index 1cf64f4304..0a712566aa 100644 --- a/e2etests/testdata/stable/unnamed_only_width/dagre/sketch.exp.svg +++ b/e2etests/testdata/stable/unnamed_only_width/dagre/sketch.exp.svg @@ -1,23 +1,23 @@ --numint-timeoutint-pid+getStatus()Enum+getJobs()Job[]+setTimeout(seconds int)voididintnamestringemailstringpasswordstringlast_logindatetime:= 5 + .d2-2832257792 .fill-N1{fill:#0A0F25;} + .d2-2832257792 .fill-N2{fill:#676C7E;} + .d2-2832257792 .fill-N3{fill:#9499AB;} + .d2-2832257792 .fill-N4{fill:#CFD2DD;} + .d2-2832257792 .fill-N5{fill:#DEE1EB;} + .d2-2832257792 .fill-N6{fill:#EEF1F8;} + .d2-2832257792 .fill-N7{fill:#FFFFFF;} + .d2-2832257792 .fill-B1{fill:#0D32B2;} + .d2-2832257792 .fill-B2{fill:#0D32B2;} + .d2-2832257792 .fill-B3{fill:#E3E9FD;} + .d2-2832257792 .fill-B4{fill:#E3E9FD;} + .d2-2832257792 .fill-B5{fill:#EDF0FD;} + .d2-2832257792 .fill-B6{fill:#F7F8FE;} + .d2-2832257792 .fill-AA2{fill:#4A6FF3;} + .d2-2832257792 .fill-AA4{fill:#EDF0FD;} + .d2-2832257792 .fill-AA5{fill:#F7F8FE;} + .d2-2832257792 .fill-AB4{fill:#EDF0FD;} + .d2-2832257792 .fill-AB5{fill:#F7F8FE;} + .d2-2832257792 .stroke-N1{stroke:#0A0F25;} + .d2-2832257792 .stroke-N2{stroke:#676C7E;} + .d2-2832257792 .stroke-N3{stroke:#9499AB;} + .d2-2832257792 .stroke-N4{stroke:#CFD2DD;} + .d2-2832257792 .stroke-N5{stroke:#DEE1EB;} + .d2-2832257792 .stroke-N6{stroke:#EEF1F8;} + .d2-2832257792 .stroke-N7{stroke:#FFFFFF;} + .d2-2832257792 .stroke-B1{stroke:#0D32B2;} + .d2-2832257792 .stroke-B2{stroke:#0D32B2;} + .d2-2832257792 .stroke-B3{stroke:#E3E9FD;} + .d2-2832257792 .stroke-B4{stroke:#E3E9FD;} + .d2-2832257792 .stroke-B5{stroke:#EDF0FD;} + .d2-2832257792 .stroke-B6{stroke:#F7F8FE;} + .d2-2832257792 .stroke-AA2{stroke:#4A6FF3;} + .d2-2832257792 .stroke-AA4{stroke:#EDF0FD;} + .d2-2832257792 .stroke-AA5{stroke:#F7F8FE;} + .d2-2832257792 .stroke-AB4{stroke:#EDF0FD;} + .d2-2832257792 .stroke-AB5{stroke:#F7F8FE;} + .d2-2832257792 .background-color-N1{background-color:#0A0F25;} + .d2-2832257792 .background-color-N2{background-color:#676C7E;} + .d2-2832257792 .background-color-N3{background-color:#9499AB;} + .d2-2832257792 .background-color-N4{background-color:#CFD2DD;} + .d2-2832257792 .background-color-N5{background-color:#DEE1EB;} + .d2-2832257792 .background-color-N6{background-color:#EEF1F8;} + .d2-2832257792 .background-color-N7{background-color:#FFFFFF;} + .d2-2832257792 .background-color-B1{background-color:#0D32B2;} + .d2-2832257792 .background-color-B2{background-color:#0D32B2;} + .d2-2832257792 .background-color-B3{background-color:#E3E9FD;} + .d2-2832257792 .background-color-B4{background-color:#E3E9FD;} + .d2-2832257792 .background-color-B5{background-color:#EDF0FD;} + .d2-2832257792 .background-color-B6{background-color:#F7F8FE;} + .d2-2832257792 .background-color-AA2{background-color:#4A6FF3;} + .d2-2832257792 .background-color-AA4{background-color:#EDF0FD;} + .d2-2832257792 .background-color-AA5{background-color:#F7F8FE;} + .d2-2832257792 .background-color-AB4{background-color:#EDF0FD;} + .d2-2832257792 .background-color-AB5{background-color:#F7F8FE;} + .d2-2832257792 .color-N1{color:#0A0F25;} + .d2-2832257792 .color-N2{color:#676C7E;} + .d2-2832257792 .color-N3{color:#9499AB;} + .d2-2832257792 .color-N4{color:#CFD2DD;} + .d2-2832257792 .color-N5{color:#DEE1EB;} + .d2-2832257792 .color-N6{color:#EEF1F8;} + .d2-2832257792 .color-N7{color:#FFFFFF;} + .d2-2832257792 .color-B1{color:#0D32B2;} + .d2-2832257792 .color-B2{color:#0D32B2;} + .d2-2832257792 .color-B3{color:#E3E9FD;} + .d2-2832257792 .color-B4{color:#E3E9FD;} + .d2-2832257792 .color-B5{color:#EDF0FD;} + .d2-2832257792 .color-B6{color:#F7F8FE;} + .d2-2832257792 .color-AA2{color:#4A6FF3;} + .d2-2832257792 .color-AA4{color:#EDF0FD;} + .d2-2832257792 .color-AA5{color:#F7F8FE;} + .d2-2832257792 .color-AB4{color:#EDF0FD;} + .d2-2832257792 .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}]]>-numint-timeoutint-pid+getStatus()Enum+getJobs()Job[]+setTimeout(seconds int)voididintnamestringemailstringpasswordstringlast_logindatetime:= 5 := a + 7 fmt.Printf("%d", b)a := 5 b := a + 7 -fmt.Printf("%d", b) +fmt.Printf("%d", b) \ No newline at end of file diff --git a/e2etests/testdata/stable/unnamed_only_width/elk/board.exp.json b/e2etests/testdata/stable/unnamed_only_width/elk/board.exp.json index 113d04be03..913a823477 100644 --- a/e2etests/testdata/stable/unnamed_only_width/elk/board.exp.json +++ b/e2etests/testdata/stable/unnamed_only_width/elk/board.exp.json @@ -407,6 +407,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 268, @@ -445,6 +446,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 268, @@ -483,6 +485,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 268, @@ -521,6 +524,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 268, diff --git a/e2etests/testdata/stable/unnamed_only_width/elk/sketch.exp.svg b/e2etests/testdata/stable/unnamed_only_width/elk/sketch.exp.svg index 8d75cc9772..98a075be70 100644 --- a/e2etests/testdata/stable/unnamed_only_width/elk/sketch.exp.svg +++ b/e2etests/testdata/stable/unnamed_only_width/elk/sketch.exp.svg @@ -1,23 +1,23 @@ --numint-timeoutint-pid+getStatus()Enum+getJobs()Job[]+setTimeout(seconds int)voididintnamestringemailstringpasswordstringlast_logindatetime:= 5 + .d2-1437779293 .fill-N1{fill:#0A0F25;} + .d2-1437779293 .fill-N2{fill:#676C7E;} + .d2-1437779293 .fill-N3{fill:#9499AB;} + .d2-1437779293 .fill-N4{fill:#CFD2DD;} + .d2-1437779293 .fill-N5{fill:#DEE1EB;} + .d2-1437779293 .fill-N6{fill:#EEF1F8;} + .d2-1437779293 .fill-N7{fill:#FFFFFF;} + .d2-1437779293 .fill-B1{fill:#0D32B2;} + .d2-1437779293 .fill-B2{fill:#0D32B2;} + .d2-1437779293 .fill-B3{fill:#E3E9FD;} + .d2-1437779293 .fill-B4{fill:#E3E9FD;} + .d2-1437779293 .fill-B5{fill:#EDF0FD;} + .d2-1437779293 .fill-B6{fill:#F7F8FE;} + .d2-1437779293 .fill-AA2{fill:#4A6FF3;} + .d2-1437779293 .fill-AA4{fill:#EDF0FD;} + .d2-1437779293 .fill-AA5{fill:#F7F8FE;} + .d2-1437779293 .fill-AB4{fill:#EDF0FD;} + .d2-1437779293 .fill-AB5{fill:#F7F8FE;} + .d2-1437779293 .stroke-N1{stroke:#0A0F25;} + .d2-1437779293 .stroke-N2{stroke:#676C7E;} + .d2-1437779293 .stroke-N3{stroke:#9499AB;} + .d2-1437779293 .stroke-N4{stroke:#CFD2DD;} + .d2-1437779293 .stroke-N5{stroke:#DEE1EB;} + .d2-1437779293 .stroke-N6{stroke:#EEF1F8;} + .d2-1437779293 .stroke-N7{stroke:#FFFFFF;} + .d2-1437779293 .stroke-B1{stroke:#0D32B2;} + .d2-1437779293 .stroke-B2{stroke:#0D32B2;} + .d2-1437779293 .stroke-B3{stroke:#E3E9FD;} + .d2-1437779293 .stroke-B4{stroke:#E3E9FD;} + .d2-1437779293 .stroke-B5{stroke:#EDF0FD;} + .d2-1437779293 .stroke-B6{stroke:#F7F8FE;} + .d2-1437779293 .stroke-AA2{stroke:#4A6FF3;} + .d2-1437779293 .stroke-AA4{stroke:#EDF0FD;} + .d2-1437779293 .stroke-AA5{stroke:#F7F8FE;} + .d2-1437779293 .stroke-AB4{stroke:#EDF0FD;} + .d2-1437779293 .stroke-AB5{stroke:#F7F8FE;} + .d2-1437779293 .background-color-N1{background-color:#0A0F25;} + .d2-1437779293 .background-color-N2{background-color:#676C7E;} + .d2-1437779293 .background-color-N3{background-color:#9499AB;} + .d2-1437779293 .background-color-N4{background-color:#CFD2DD;} + .d2-1437779293 .background-color-N5{background-color:#DEE1EB;} + .d2-1437779293 .background-color-N6{background-color:#EEF1F8;} + .d2-1437779293 .background-color-N7{background-color:#FFFFFF;} + .d2-1437779293 .background-color-B1{background-color:#0D32B2;} + .d2-1437779293 .background-color-B2{background-color:#0D32B2;} + .d2-1437779293 .background-color-B3{background-color:#E3E9FD;} + .d2-1437779293 .background-color-B4{background-color:#E3E9FD;} + .d2-1437779293 .background-color-B5{background-color:#EDF0FD;} + .d2-1437779293 .background-color-B6{background-color:#F7F8FE;} + .d2-1437779293 .background-color-AA2{background-color:#4A6FF3;} + .d2-1437779293 .background-color-AA4{background-color:#EDF0FD;} + .d2-1437779293 .background-color-AA5{background-color:#F7F8FE;} + .d2-1437779293 .background-color-AB4{background-color:#EDF0FD;} + .d2-1437779293 .background-color-AB5{background-color:#F7F8FE;} + .d2-1437779293 .color-N1{color:#0A0F25;} + .d2-1437779293 .color-N2{color:#676C7E;} + .d2-1437779293 .color-N3{color:#9499AB;} + .d2-1437779293 .color-N4{color:#CFD2DD;} + .d2-1437779293 .color-N5{color:#DEE1EB;} + .d2-1437779293 .color-N6{color:#EEF1F8;} + .d2-1437779293 .color-N7{color:#FFFFFF;} + .d2-1437779293 .color-B1{color:#0D32B2;} + .d2-1437779293 .color-B2{color:#0D32B2;} + .d2-1437779293 .color-B3{color:#E3E9FD;} + .d2-1437779293 .color-B4{color:#E3E9FD;} + .d2-1437779293 .color-B5{color:#EDF0FD;} + .d2-1437779293 .color-B6{color:#F7F8FE;} + .d2-1437779293 .color-AA2{color:#4A6FF3;} + .d2-1437779293 .color-AA4{color:#EDF0FD;} + .d2-1437779293 .color-AA5{color:#F7F8FE;} + .d2-1437779293 .color-AB4{color:#EDF0FD;} + .d2-1437779293 .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}]]>-numint-timeoutint-pid+getStatus()Enum+getJobs()Job[]+setTimeout(seconds int)voididintnamestringemailstringpasswordstringlast_logindatetime:= 5 := a + 7 fmt.Printf("%d", b)a := 5 b := a + 7 -fmt.Printf("%d", b) +fmt.Printf("%d", b) \ No newline at end of file diff --git a/e2etests/testdata/stable/us_map/dagre/board.exp.json b/e2etests/testdata/stable/us_map/dagre/board.exp.json index 3526ab0f86..424ad47f26 100644 --- a/e2etests/testdata/stable/us_map/dagre/board.exp.json +++ b/e2etests/testdata/stable/us_map/dagre/board.exp.json @@ -2078,6 +2078,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 33, @@ -2125,6 +2126,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 29, @@ -2172,6 +2174,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 29, @@ -2219,6 +2222,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 1025.25, @@ -2350,6 +2354,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 293.5, @@ -2397,6 +2402,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 261.25, @@ -2444,6 +2450,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 386, @@ -2491,6 +2498,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 863.5, @@ -2550,6 +2558,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 1061.25, @@ -2597,6 +2606,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 1040.75, @@ -2644,6 +2654,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 1034.5, @@ -2691,6 +2702,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 1457.5, @@ -2774,6 +2786,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 1296.75, @@ -2821,6 +2834,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 945, @@ -2868,6 +2882,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 325.75, @@ -2915,6 +2930,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 386, @@ -2974,6 +2990,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 1326.5, @@ -3021,6 +3038,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 1298, @@ -3080,6 +3098,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 1400, @@ -3127,6 +3146,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 878, @@ -3174,6 +3194,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 1296.75, @@ -3221,6 +3242,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 476, @@ -3280,6 +3302,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 418, @@ -3327,6 +3350,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 215.5, @@ -3386,6 +3410,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 371.25, @@ -3445,6 +3470,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 786.75, @@ -3492,6 +3518,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 758.25, @@ -3539,6 +3566,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 703.75, @@ -3598,6 +3626,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 64.5, @@ -3645,6 +3674,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 37, @@ -3752,6 +3782,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 39, @@ -3799,6 +3830,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 39, @@ -3846,6 +3878,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 1173.75, @@ -3893,6 +3926,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 1150.75, @@ -3940,6 +3974,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 406, @@ -3999,6 +4034,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 233.75, @@ -4046,6 +4082,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 500.75, @@ -4093,6 +4130,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 319.25, @@ -4140,6 +4178,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 1843.25, @@ -4187,6 +4226,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 1829.5, @@ -4234,6 +4274,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 1781.5, @@ -4281,6 +4322,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 1709.25, @@ -4328,6 +4370,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 1779.5, @@ -4375,6 +4418,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 1457.5, @@ -4458,6 +4502,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 1873, @@ -4541,6 +4586,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 1818.75, @@ -4588,6 +4634,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 1725.75, @@ -4695,6 +4742,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 1838.25, @@ -4754,6 +4802,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 1900.5, @@ -4801,6 +4850,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 1457.5, @@ -4848,6 +4898,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 1408, @@ -4895,6 +4946,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 1539.75, @@ -4942,6 +4994,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 1357.75, @@ -4989,6 +5042,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 1501.25, @@ -5036,6 +5090,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 1417.75, @@ -5095,6 +5150,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 1816.5, @@ -5142,6 +5198,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 1526.5, @@ -5201,6 +5258,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 1759.75, @@ -5260,6 +5318,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 950, @@ -5307,6 +5366,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 882.75, @@ -5354,6 +5414,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 1093.25, @@ -5401,6 +5462,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 1050.25, @@ -5556,6 +5618,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 912.75, @@ -5603,6 +5666,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 794, @@ -5686,6 +5750,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 717.75, @@ -5733,6 +5798,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 915.25, @@ -5780,6 +5846,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 261, @@ -5827,6 +5894,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 535, @@ -5874,6 +5942,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 379.25, @@ -5933,6 +6002,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 498.5, @@ -5980,6 +6050,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 1768, @@ -6027,6 +6098,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 1925, @@ -6110,6 +6182,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 1790.5, @@ -6157,6 +6230,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 1933, @@ -6216,6 +6290,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 1552.25, @@ -6263,6 +6338,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 1554, @@ -6310,6 +6386,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 1058.25, @@ -6441,6 +6518,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 1526.5, @@ -6488,6 +6566,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 1425.75, @@ -6547,6 +6626,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 1329.75, @@ -6594,6 +6674,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 1187.5, @@ -6641,6 +6722,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 1560.25, @@ -6688,6 +6770,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 1571.75, @@ -6795,6 +6878,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 1443.75, @@ -6842,6 +6926,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 1588.25, @@ -6949,6 +7034,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 451.25, @@ -7008,6 +7094,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 266.75, @@ -7055,6 +7142,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 571, @@ -7162,6 +7250,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 732.5, @@ -7209,6 +7298,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 424.25, @@ -7256,6 +7346,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 892.5, @@ -7303,6 +7394,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 1362.75, @@ -7362,6 +7454,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 424.25, @@ -7409,6 +7502,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 717.75, @@ -7456,6 +7550,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 517.5, @@ -7503,6 +7598,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 74.5, @@ -7550,6 +7646,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 60.25, @@ -7597,6 +7694,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 983.25, @@ -7644,6 +7742,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 1588.25, @@ -7691,6 +7790,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 1800.75, @@ -7750,6 +7850,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 753.75, @@ -7809,6 +7910,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 1362.75, @@ -7868,6 +7970,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 287.25, @@ -7927,6 +8030,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 761.75, @@ -7986,6 +8090,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 1596.25, @@ -8093,6 +8198,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 991.25, @@ -8140,6 +8246,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 531, @@ -8199,6 +8306,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 948.25, diff --git a/e2etests/testdata/stable/us_map/dagre/sketch.exp.svg b/e2etests/testdata/stable/us_map/dagre/sketch.exp.svg index d1ffd842dd..da2c5a5481 100644 --- a/e2etests/testdata/stable/us_map/dagre/sketch.exp.svg +++ b/e2etests/testdata/stable/us_map/dagre/sketch.exp.svg @@ -1,9 +1,9 @@ -ALFLGAMSTNAKAZCANVNMUTARLAMOOKTXORCOKSNEWYCTMANYRIDEMDNJPANCSCHIIDMTWAILINIAMIKYWIOHMNSDVAWVMENHVTND + .d2-254941333 .fill-N1{fill:#0A0F25;} + .d2-254941333 .fill-N2{fill:#676C7E;} + .d2-254941333 .fill-N3{fill:#9499AB;} + .d2-254941333 .fill-N4{fill:#CFD2DD;} + .d2-254941333 .fill-N5{fill:#DEE1EB;} + .d2-254941333 .fill-N6{fill:#EEF1F8;} + .d2-254941333 .fill-N7{fill:#FFFFFF;} + .d2-254941333 .fill-B1{fill:#0D32B2;} + .d2-254941333 .fill-B2{fill:#0D32B2;} + .d2-254941333 .fill-B3{fill:#E3E9FD;} + .d2-254941333 .fill-B4{fill:#E3E9FD;} + .d2-254941333 .fill-B5{fill:#EDF0FD;} + .d2-254941333 .fill-B6{fill:#F7F8FE;} + .d2-254941333 .fill-AA2{fill:#4A6FF3;} + .d2-254941333 .fill-AA4{fill:#EDF0FD;} + .d2-254941333 .fill-AA5{fill:#F7F8FE;} + .d2-254941333 .fill-AB4{fill:#EDF0FD;} + .d2-254941333 .fill-AB5{fill:#F7F8FE;} + .d2-254941333 .stroke-N1{stroke:#0A0F25;} + .d2-254941333 .stroke-N2{stroke:#676C7E;} + .d2-254941333 .stroke-N3{stroke:#9499AB;} + .d2-254941333 .stroke-N4{stroke:#CFD2DD;} + .d2-254941333 .stroke-N5{stroke:#DEE1EB;} + .d2-254941333 .stroke-N6{stroke:#EEF1F8;} + .d2-254941333 .stroke-N7{stroke:#FFFFFF;} + .d2-254941333 .stroke-B1{stroke:#0D32B2;} + .d2-254941333 .stroke-B2{stroke:#0D32B2;} + .d2-254941333 .stroke-B3{stroke:#E3E9FD;} + .d2-254941333 .stroke-B4{stroke:#E3E9FD;} + .d2-254941333 .stroke-B5{stroke:#EDF0FD;} + .d2-254941333 .stroke-B6{stroke:#F7F8FE;} + .d2-254941333 .stroke-AA2{stroke:#4A6FF3;} + .d2-254941333 .stroke-AA4{stroke:#EDF0FD;} + .d2-254941333 .stroke-AA5{stroke:#F7F8FE;} + .d2-254941333 .stroke-AB4{stroke:#EDF0FD;} + .d2-254941333 .stroke-AB5{stroke:#F7F8FE;} + .d2-254941333 .background-color-N1{background-color:#0A0F25;} + .d2-254941333 .background-color-N2{background-color:#676C7E;} + .d2-254941333 .background-color-N3{background-color:#9499AB;} + .d2-254941333 .background-color-N4{background-color:#CFD2DD;} + .d2-254941333 .background-color-N5{background-color:#DEE1EB;} + .d2-254941333 .background-color-N6{background-color:#EEF1F8;} + .d2-254941333 .background-color-N7{background-color:#FFFFFF;} + .d2-254941333 .background-color-B1{background-color:#0D32B2;} + .d2-254941333 .background-color-B2{background-color:#0D32B2;} + .d2-254941333 .background-color-B3{background-color:#E3E9FD;} + .d2-254941333 .background-color-B4{background-color:#E3E9FD;} + .d2-254941333 .background-color-B5{background-color:#EDF0FD;} + .d2-254941333 .background-color-B6{background-color:#F7F8FE;} + .d2-254941333 .background-color-AA2{background-color:#4A6FF3;} + .d2-254941333 .background-color-AA4{background-color:#EDF0FD;} + .d2-254941333 .background-color-AA5{background-color:#F7F8FE;} + .d2-254941333 .background-color-AB4{background-color:#EDF0FD;} + .d2-254941333 .background-color-AB5{background-color:#F7F8FE;} + .d2-254941333 .color-N1{color:#0A0F25;} + .d2-254941333 .color-N2{color:#676C7E;} + .d2-254941333 .color-N3{color:#9499AB;} + .d2-254941333 .color-N4{color:#CFD2DD;} + .d2-254941333 .color-N5{color:#DEE1EB;} + .d2-254941333 .color-N6{color:#EEF1F8;} + .d2-254941333 .color-N7{color:#FFFFFF;} + .d2-254941333 .color-B1{color:#0D32B2;} + .d2-254941333 .color-B2{color:#0D32B2;} + .d2-254941333 .color-B3{color:#E3E9FD;} + .d2-254941333 .color-B4{color:#E3E9FD;} + .d2-254941333 .color-B5{color:#EDF0FD;} + .d2-254941333 .color-B6{color:#F7F8FE;} + .d2-254941333 .color-AA2{color:#4A6FF3;} + .d2-254941333 .color-AA4{color:#EDF0FD;} + .d2-254941333 .color-AA5{color:#F7F8FE;} + .d2-254941333 .color-AB4{color:#EDF0FD;} + .d2-254941333 .color-AB5{color:#F7F8FE;}.appendix text.text{fill:#0A0F25}.md{--color-fg-default:#0A0F25;--color-fg-muted:#676C7E;--color-fg-subtle:#9499AB;--color-canvas-default:#FFFFFF;--color-canvas-subtle:#EEF1F8;--color-border-default:#0D32B2;--color-border-muted:#0D32B2;--color-neutral-muted:#EEF1F8;--color-accent-fg:#0D32B2;--color-accent-emphasis:#0D32B2;--color-attention-subtle:#676C7E;--color-danger-fg:red;}.sketch-overlay-B1{fill:url(#streaks-darker);mix-blend-mode:lighten}.sketch-overlay-B2{fill:url(#streaks-darker);mix-blend-mode:lighten}.sketch-overlay-B3{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-B4{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-B5{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-B6{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-AA2{fill:url(#streaks-dark);mix-blend-mode:overlay}.sketch-overlay-AA4{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-AA5{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-AB4{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-AB5{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-N1{fill:url(#streaks-darker);mix-blend-mode:lighten}.sketch-overlay-N2{fill:url(#streaks-dark);mix-blend-mode:overlay}.sketch-overlay-N3{fill:url(#streaks-normal);mix-blend-mode:color-burn}.sketch-overlay-N4{fill:url(#streaks-normal);mix-blend-mode:color-burn}.sketch-overlay-N5{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-N6{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-N7{fill:url(#streaks-bright);mix-blend-mode:darken}.light-code{display: block}.dark-code{display: none}]]>ALFLGAMSTNAKAZCANVNMUTARLAMOOKTXORCOKSNEWYCTMANYRIDEMDNJPANCSCHIIDMTWAILINIAMIKYWIOHMNSDVAWVMENHVTND diff --git a/e2etests/testdata/stable/us_map/elk/board.exp.json b/e2etests/testdata/stable/us_map/elk/board.exp.json index 3bd2d2ce9a..78a2b92cca 100644 --- a/e2etests/testdata/stable/us_map/elk/board.exp.json +++ b/e2etests/testdata/stable/us_map/elk/board.exp.json @@ -2078,6 +2078,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 1319.654052734375, @@ -2116,6 +2117,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 1306.321044921875, @@ -2154,6 +2156,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 1332.988037109375, @@ -2200,6 +2203,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 1497.5469970703125, @@ -2246,6 +2250,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 113.90399932861328, @@ -2284,6 +2289,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 100.57099914550781, @@ -2322,6 +2328,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 188.5709991455078, @@ -2368,6 +2375,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 236.46400451660156, @@ -2422,6 +2430,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 1512.0469970703125, @@ -2460,6 +2469,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 1492.0469970703125, @@ -2498,6 +2508,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 1444.0469970703125, @@ -2544,6 +2555,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 699.6300048828125, @@ -2598,6 +2610,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 466.9639892578125, @@ -2644,6 +2657,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 1146.154052734375, @@ -2690,6 +2704,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 140.5709991455078, @@ -2728,6 +2743,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 92.57099914550781, @@ -2774,6 +2790,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 320.0710144042969, @@ -2812,6 +2829,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 306.7380065917969, @@ -2858,6 +2876,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 378.6300048828125, @@ -2904,6 +2923,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 266.4639892578125, @@ -2950,6 +2970,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 366.9639892578125, @@ -2996,6 +3017,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 52, @@ -3042,6 +3064,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 1701.8800048828125, @@ -3080,6 +3103,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 1688.5469970703125, @@ -3134,6 +3158,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 1760.321044921875, @@ -3180,6 +3205,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 1801.8800048828125, @@ -3218,6 +3244,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 1788.5469970703125, @@ -3264,6 +3291,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 1706.5469970703125, @@ -3310,6 +3338,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 1332.988037109375, @@ -3348,6 +3377,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 1306.321044921875, @@ -3386,6 +3416,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 1292.988037109375, @@ -3424,6 +3455,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 1292.988037109375, @@ -3470,6 +3502,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 502.4880065917969, @@ -3508,6 +3541,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 489.15399169921875, @@ -3554,6 +3588,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 124.57099914550781, @@ -3600,6 +3635,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 65.57099914550781, @@ -3646,6 +3682,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 92, @@ -3692,6 +3729,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 209.23800659179688, @@ -3738,6 +3776,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 791.5469970703125, @@ -3776,6 +3815,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 804.8800048828125, @@ -3822,6 +3862,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 877.5469970703125, @@ -3868,6 +3909,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 735.2139892578125, @@ -3914,6 +3956,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 642.4879760742188, @@ -3952,6 +3995,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 733.916015625, @@ -3998,6 +4042,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 778.2139892578125, @@ -4044,6 +4089,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 692.4879760742188, @@ -4090,6 +4136,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 783.2139892578125, @@ -4144,6 +4191,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 904.2139892578125, @@ -4190,6 +4238,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 913.4879760742188, @@ -4236,6 +4285,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 596.7730102539062, @@ -4282,6 +4332,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 478.6300048828125, @@ -4328,6 +4379,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 732.9879760742188, @@ -4374,6 +4426,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 333.40399169921875, @@ -4420,6 +4473,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 631.0590209960938, @@ -4466,6 +4520,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 411.9639892578125, @@ -4520,6 +4575,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 682.4879760742188, @@ -4558,6 +4614,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 768.2020263671875, @@ -4604,6 +4661,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 1151.821044921875, @@ -4650,6 +4708,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 1212.654052734375, @@ -4688,6 +4747,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 1227.321044921875, @@ -4726,6 +4786,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 1532.0469970703125, @@ -4764,6 +4825,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 1476.0469970703125, @@ -4810,6 +4872,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 1911.8800048828125, @@ -4848,6 +4911,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 1815.2139892578125, @@ -4902,6 +4966,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 1581.2139892578125, @@ -4948,6 +5013,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 1260.654052734375, @@ -4986,6 +5052,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 1715.2139892578125, @@ -5032,6 +5099,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 1885.2139892578125, @@ -5078,6 +5146,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 1813.2139892578125, @@ -5116,6 +5185,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 1763.2139892578125, @@ -5162,6 +5232,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 807.2139892578125, @@ -5208,6 +5279,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 973.4879760742188, @@ -5262,6 +5334,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 1120.321044921875, @@ -5308,6 +5381,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 943.4879760742188, @@ -5354,6 +5428,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 699.6539916992188, @@ -5392,6 +5467,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 766.3209838867188, @@ -5438,6 +5514,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 1519.0469970703125, @@ -5484,6 +5561,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 665.344970703125, @@ -5530,6 +5608,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 445.2969970703125, @@ -5576,6 +5655,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 500.2969970703125, @@ -5622,6 +5702,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 515.8209838867188, @@ -5668,6 +5749,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 732.9879760742188, @@ -5706,6 +5788,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 632.9879760742188, @@ -5760,6 +5843,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 511.9639892578125, @@ -5806,6 +5890,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 666.3209838867188, @@ -5860,6 +5945,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 156.5709991455078, @@ -5906,6 +5992,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 95.57099914550781, @@ -5952,6 +6039,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 1911.8800048828125, @@ -5998,6 +6086,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 1744.321044921875, @@ -6036,6 +6125,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 1696.321044921875, @@ -6082,6 +6172,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 296.4639892578125, @@ -6128,6 +6219,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 400.2969970703125, @@ -6174,6 +6266,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 1728.321044921875, @@ -6220,6 +6313,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 1701.2139892578125, @@ -6266,6 +6360,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 1813.321044921875, @@ -6304,6 +6399,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 1319.654052734375, @@ -6342,6 +6438,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 1319.654052734375, @@ -6388,6 +6485,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 1244.654052734375, @@ -6426,6 +6524,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 766.3209838867188, @@ -6464,6 +6563,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 1180.321044921875, @@ -6510,6 +6610,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 1624.5469970703125, @@ -6556,6 +6657,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 433.6300048828125, @@ -6602,6 +6704,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 125.57099914550781, @@ -6656,6 +6759,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 1646.7139892578125, @@ -6702,6 +6806,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 699.6539916992188, @@ -6756,6 +6861,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 1276.654052734375, @@ -6794,6 +6900,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 132, @@ -6840,6 +6947,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 1293.988037109375, diff --git a/e2etests/testdata/stable/us_map/elk/sketch.exp.svg b/e2etests/testdata/stable/us_map/elk/sketch.exp.svg index 6011a74212..41b0ded608 100644 --- a/e2etests/testdata/stable/us_map/elk/sketch.exp.svg +++ b/e2etests/testdata/stable/us_map/elk/sketch.exp.svg @@ -1,9 +1,9 @@ -ALFLGAMSTNAKAZCANVNMUTARLAMOOKTXORCOKSNEWYCTMANYRIDEMDNJPANCSCHIIDMTWAILINIAMIKYWIOHMNSDVAWVMENHVTND + .d2-4163663719 .fill-N1{fill:#0A0F25;} + .d2-4163663719 .fill-N2{fill:#676C7E;} + .d2-4163663719 .fill-N3{fill:#9499AB;} + .d2-4163663719 .fill-N4{fill:#CFD2DD;} + .d2-4163663719 .fill-N5{fill:#DEE1EB;} + .d2-4163663719 .fill-N6{fill:#EEF1F8;} + .d2-4163663719 .fill-N7{fill:#FFFFFF;} + .d2-4163663719 .fill-B1{fill:#0D32B2;} + .d2-4163663719 .fill-B2{fill:#0D32B2;} + .d2-4163663719 .fill-B3{fill:#E3E9FD;} + .d2-4163663719 .fill-B4{fill:#E3E9FD;} + .d2-4163663719 .fill-B5{fill:#EDF0FD;} + .d2-4163663719 .fill-B6{fill:#F7F8FE;} + .d2-4163663719 .fill-AA2{fill:#4A6FF3;} + .d2-4163663719 .fill-AA4{fill:#EDF0FD;} + .d2-4163663719 .fill-AA5{fill:#F7F8FE;} + .d2-4163663719 .fill-AB4{fill:#EDF0FD;} + .d2-4163663719 .fill-AB5{fill:#F7F8FE;} + .d2-4163663719 .stroke-N1{stroke:#0A0F25;} + .d2-4163663719 .stroke-N2{stroke:#676C7E;} + .d2-4163663719 .stroke-N3{stroke:#9499AB;} + .d2-4163663719 .stroke-N4{stroke:#CFD2DD;} + .d2-4163663719 .stroke-N5{stroke:#DEE1EB;} + .d2-4163663719 .stroke-N6{stroke:#EEF1F8;} + .d2-4163663719 .stroke-N7{stroke:#FFFFFF;} + .d2-4163663719 .stroke-B1{stroke:#0D32B2;} + .d2-4163663719 .stroke-B2{stroke:#0D32B2;} + .d2-4163663719 .stroke-B3{stroke:#E3E9FD;} + .d2-4163663719 .stroke-B4{stroke:#E3E9FD;} + .d2-4163663719 .stroke-B5{stroke:#EDF0FD;} + .d2-4163663719 .stroke-B6{stroke:#F7F8FE;} + .d2-4163663719 .stroke-AA2{stroke:#4A6FF3;} + .d2-4163663719 .stroke-AA4{stroke:#EDF0FD;} + .d2-4163663719 .stroke-AA5{stroke:#F7F8FE;} + .d2-4163663719 .stroke-AB4{stroke:#EDF0FD;} + .d2-4163663719 .stroke-AB5{stroke:#F7F8FE;} + .d2-4163663719 .background-color-N1{background-color:#0A0F25;} + .d2-4163663719 .background-color-N2{background-color:#676C7E;} + .d2-4163663719 .background-color-N3{background-color:#9499AB;} + .d2-4163663719 .background-color-N4{background-color:#CFD2DD;} + .d2-4163663719 .background-color-N5{background-color:#DEE1EB;} + .d2-4163663719 .background-color-N6{background-color:#EEF1F8;} + .d2-4163663719 .background-color-N7{background-color:#FFFFFF;} + .d2-4163663719 .background-color-B1{background-color:#0D32B2;} + .d2-4163663719 .background-color-B2{background-color:#0D32B2;} + .d2-4163663719 .background-color-B3{background-color:#E3E9FD;} + .d2-4163663719 .background-color-B4{background-color:#E3E9FD;} + .d2-4163663719 .background-color-B5{background-color:#EDF0FD;} + .d2-4163663719 .background-color-B6{background-color:#F7F8FE;} + .d2-4163663719 .background-color-AA2{background-color:#4A6FF3;} + .d2-4163663719 .background-color-AA4{background-color:#EDF0FD;} + .d2-4163663719 .background-color-AA5{background-color:#F7F8FE;} + .d2-4163663719 .background-color-AB4{background-color:#EDF0FD;} + .d2-4163663719 .background-color-AB5{background-color:#F7F8FE;} + .d2-4163663719 .color-N1{color:#0A0F25;} + .d2-4163663719 .color-N2{color:#676C7E;} + .d2-4163663719 .color-N3{color:#9499AB;} + .d2-4163663719 .color-N4{color:#CFD2DD;} + .d2-4163663719 .color-N5{color:#DEE1EB;} + .d2-4163663719 .color-N6{color:#EEF1F8;} + .d2-4163663719 .color-N7{color:#FFFFFF;} + .d2-4163663719 .color-B1{color:#0D32B2;} + .d2-4163663719 .color-B2{color:#0D32B2;} + .d2-4163663719 .color-B3{color:#E3E9FD;} + .d2-4163663719 .color-B4{color:#E3E9FD;} + .d2-4163663719 .color-B5{color:#EDF0FD;} + .d2-4163663719 .color-B6{color:#F7F8FE;} + .d2-4163663719 .color-AA2{color:#4A6FF3;} + .d2-4163663719 .color-AA4{color:#EDF0FD;} + .d2-4163663719 .color-AA5{color:#F7F8FE;} + .d2-4163663719 .color-AB4{color:#EDF0FD;} + .d2-4163663719 .color-AB5{color:#F7F8FE;}.appendix text.text{fill:#0A0F25}.md{--color-fg-default:#0A0F25;--color-fg-muted:#676C7E;--color-fg-subtle:#9499AB;--color-canvas-default:#FFFFFF;--color-canvas-subtle:#EEF1F8;--color-border-default:#0D32B2;--color-border-muted:#0D32B2;--color-neutral-muted:#EEF1F8;--color-accent-fg:#0D32B2;--color-accent-emphasis:#0D32B2;--color-attention-subtle:#676C7E;--color-danger-fg:red;}.sketch-overlay-B1{fill:url(#streaks-darker);mix-blend-mode:lighten}.sketch-overlay-B2{fill:url(#streaks-darker);mix-blend-mode:lighten}.sketch-overlay-B3{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-B4{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-B5{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-B6{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-AA2{fill:url(#streaks-dark);mix-blend-mode:overlay}.sketch-overlay-AA4{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-AA5{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-AB4{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-AB5{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-N1{fill:url(#streaks-darker);mix-blend-mode:lighten}.sketch-overlay-N2{fill:url(#streaks-dark);mix-blend-mode:overlay}.sketch-overlay-N3{fill:url(#streaks-normal);mix-blend-mode:color-burn}.sketch-overlay-N4{fill:url(#streaks-normal);mix-blend-mode:color-burn}.sketch-overlay-N5{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-N6{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-N7{fill:url(#streaks-bright);mix-blend-mode:darken}.light-code{display: block}.dark-code{display: none}]]>ALFLGAMSTNAKAZCANVNMUTARLAMOOKTXORCOKSNEWYCTMANYRIDEMDNJPANCSCHIIDMTWAILINIAMIKYWIOHMNSDVAWVMENHVTND diff --git a/e2etests/testdata/themes/dark_terrastruct_flagship/dagre/board.exp.json b/e2etests/testdata/themes/dark_terrastruct_flagship/dagre/board.exp.json index 4945204b4d..2cad850a5d 100644 --- a/e2etests/testdata/themes/dark_terrastruct_flagship/dagre/board.exp.json +++ b/e2etests/testdata/themes/dark_terrastruct_flagship/dagre/board.exp.json @@ -847,6 +847,7 @@ "labelHeight": 21, "labelPosition": "INSIDE_MIDDLE_CENTER", "labelPercentage": 0, + "link": "", "route": [ { "x": 203, @@ -894,6 +895,7 @@ "labelHeight": 21, "labelPosition": "INSIDE_MIDDLE_CENTER", "labelPercentage": 0, + "link": "", "route": [ { "x": 211, @@ -941,6 +943,7 @@ "labelHeight": 21, "labelPosition": "INSIDE_MIDDLE_CENTER", "labelPercentage": 0, + "link": "", "route": [ { "x": 221, @@ -988,6 +991,7 @@ "labelHeight": 21, "labelPosition": "INSIDE_MIDDLE_CENTER", "labelPercentage": 0, + "link": "", "route": [ { "x": 275.5, @@ -1047,6 +1051,7 @@ "labelHeight": 21, "labelPosition": "INSIDE_MIDDLE_CENTER", "labelPercentage": 0, + "link": "", "route": [ { "x": 166, @@ -1094,6 +1099,7 @@ "labelHeight": 21, "labelPosition": "INSIDE_MIDDLE_CENTER", "labelPercentage": 0, + "link": "", "route": [ { "x": 123.75, @@ -1297,6 +1303,7 @@ "labelHeight": 21, "labelPosition": "INSIDE_MIDDLE_CENTER", "labelPercentage": 0, + "link": "", "route": [ { "x": 507.5, @@ -1344,6 +1351,7 @@ "labelHeight": 21, "labelPosition": "INSIDE_MIDDLE_CENTER", "labelPercentage": 0, + "link": "", "route": [ { "x": 565.5, @@ -1391,6 +1399,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 285.5, @@ -1438,6 +1447,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 942.5, @@ -1497,6 +1507,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 942.5, diff --git a/e2etests/testdata/themes/dark_terrastruct_flagship/dagre/sketch.exp.svg b/e2etests/testdata/themes/dark_terrastruct_flagship/dagre/sketch.exp.svg index 3f0e41e57d..602ef75421 100644 --- a/e2etests/testdata/themes/dark_terrastruct_flagship/dagre/sketch.exp.svg +++ b/e2etests/testdata/themes/dark_terrastruct_flagship/dagre/sketch.exp.svg @@ -1,41 +1,41 @@ -networkuserapi serverlogsusersidintnamestringemailstringpasswordstringlast_logindatetimeproducts+idint+pricedecimal+skustring+namestring

    A tale

    @@ -908,7 +908,7 @@     city2 := City{Name: "CityB", Population: 1200000}     tellTale(city1, city2) -}Cell Toweronline portaldata processorsatellitesTRANSMITTERuistorage sendsendsendphone logsmake call accessdisplaypersist +}Cell Toweronline portaldata processorsatellitesTRANSMITTERuistorage sendsendsendphone logsmake call accessdisplaypersist diff --git a/e2etests/testdata/themes/dark_terrastruct_flagship/elk/board.exp.json b/e2etests/testdata/themes/dark_terrastruct_flagship/elk/board.exp.json index 1325c8be13..cb0fae670c 100644 --- a/e2etests/testdata/themes/dark_terrastruct_flagship/elk/board.exp.json +++ b/e2etests/testdata/themes/dark_terrastruct_flagship/elk/board.exp.json @@ -847,6 +847,7 @@ "labelHeight": 21, "labelPosition": "INSIDE_MIDDLE_CENTER", "labelPercentage": 0, + "link": "", "route": [ { "x": 141, @@ -885,6 +886,7 @@ "labelHeight": 21, "labelPosition": "INSIDE_MIDDLE_CENTER", "labelPercentage": 0, + "link": "", "route": [ { "x": 185, @@ -923,6 +925,7 @@ "labelHeight": 21, "labelPosition": "INSIDE_MIDDLE_CENTER", "labelPercentage": 0, + "link": "", "route": [ { "x": 229, @@ -961,6 +964,7 @@ "labelHeight": 21, "labelPosition": "INSIDE_MIDDLE_CENTER", "labelPercentage": 0, + "link": "", "route": [ { "x": 185, @@ -999,6 +1003,7 @@ "labelHeight": 21, "labelPosition": "INSIDE_MIDDLE_CENTER", "labelPercentage": 0, + "link": "", "route": [ { "x": 237, @@ -1045,6 +1050,7 @@ "labelHeight": 21, "labelPosition": "INSIDE_MIDDLE_CENTER", "labelPercentage": 0, + "link": "", "route": [ { "x": 280, @@ -1091,6 +1097,7 @@ "labelHeight": 21, "labelPosition": "INSIDE_MIDDLE_CENTER", "labelPercentage": 0, + "link": "", "route": [ { "x": 464.3330078125, @@ -1145,6 +1152,7 @@ "labelHeight": 21, "labelPosition": "INSIDE_MIDDLE_CENTER", "labelPercentage": 0, + "link": "", "route": [ { "x": 445, @@ -1183,6 +1191,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 130.5, @@ -1229,6 +1238,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 927.75, @@ -1267,6 +1277,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 927.75, diff --git a/e2etests/testdata/themes/dark_terrastruct_flagship/elk/sketch.exp.svg b/e2etests/testdata/themes/dark_terrastruct_flagship/elk/sketch.exp.svg index 5adadd4ba7..46700d5029 100644 --- a/e2etests/testdata/themes/dark_terrastruct_flagship/elk/sketch.exp.svg +++ b/e2etests/testdata/themes/dark_terrastruct_flagship/elk/sketch.exp.svg @@ -1,41 +1,41 @@ -networkuserapi serverlogsusersidintnamestringemailstringpasswordstringlast_logindatetimeproducts+idint+pricedecimal+skustring+namestring

    A tale

    @@ -908,7 +908,7 @@     city2 := City{Name: "CityB", Population: 1200000}     tellTale(city1, city2) -}Cell Toweronline portaldata processorsatellitesTRANSMITTERuistorage sendsendsendphone logsmake call accessdisplaypersist +}Cell Toweronline portaldata processorsatellitesTRANSMITTERuistorage sendsendsendphone logsmake call accessdisplaypersist diff --git a/e2etests/testdata/themes/origami/dagre/board.exp.json b/e2etests/testdata/themes/origami/dagre/board.exp.json index 0112af3442..bf88996fd4 100644 --- a/e2etests/testdata/themes/origami/dagre/board.exp.json +++ b/e2etests/testdata/themes/origami/dagre/board.exp.json @@ -531,6 +531,7 @@ "labelHeight": 21, "labelPosition": "INSIDE_MIDDLE_CENTER", "labelPercentage": 0, + "link": "", "route": [ { "x": 213, @@ -577,6 +578,7 @@ "labelHeight": 21, "labelPosition": "INSIDE_MIDDLE_CENTER", "labelPercentage": 0, + "link": "", "route": [ { "x": 239, @@ -623,6 +625,7 @@ "labelHeight": 21, "labelPosition": "INSIDE_MIDDLE_CENTER", "labelPercentage": 0, + "link": "", "route": [ { "x": 265, @@ -669,6 +672,7 @@ "labelHeight": 21, "labelPosition": "INSIDE_MIDDLE_CENTER", "labelPercentage": 0, + "link": "", "route": [ { "x": 239, @@ -727,6 +731,7 @@ "labelHeight": 21, "labelPosition": "INSIDE_MIDDLE_CENTER", "labelPercentage": 0, + "link": "", "route": [ { "x": 190, @@ -773,6 +778,7 @@ "labelHeight": 21, "labelPosition": "INSIDE_MIDDLE_CENTER", "labelPercentage": 0, + "link": "", "route": [ { "x": 101.75, @@ -975,6 +981,7 @@ "labelHeight": 21, "labelPosition": "INSIDE_MIDDLE_CENTER", "labelPercentage": 0, + "link": "", "route": [ { "x": 463.25, @@ -1021,6 +1028,7 @@ "labelHeight": 21, "labelPosition": "INSIDE_MIDDLE_CENTER", "labelPercentage": 0, + "link": "", "route": [ { "x": 538.75, @@ -1067,6 +1075,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 239, diff --git a/e2etests/testdata/themes/origami/dagre/sketch.exp.svg b/e2etests/testdata/themes/origami/dagre/sketch.exp.svg index 5d9400494a..8d2e2329cd 100644 --- a/e2etests/testdata/themes/origami/dagre/sketch.exp.svg +++ b/e2etests/testdata/themes/origami/dagre/sketch.exp.svg @@ -1,23 +1,23 @@ -Big fontabca + .d2-3860827657 .fill-N1{fill:#0A0F25;} + .d2-3860827657 .fill-N2{fill:#676C7E;} + .d2-3860827657 .fill-N3{fill:#9499AB;} + .d2-3860827657 .fill-N4{fill:#CFD2DD;} + .d2-3860827657 .fill-N5{fill:#DEE1EB;} + .d2-3860827657 .fill-N6{fill:#EEF1F8;} + .d2-3860827657 .fill-N7{fill:#FFFFFF;} + .d2-3860827657 .fill-B1{fill:#0D32B2;} + .d2-3860827657 .fill-B2{fill:#0D32B2;} + .d2-3860827657 .fill-B3{fill:#E3E9FD;} + .d2-3860827657 .fill-B4{fill:#E3E9FD;} + .d2-3860827657 .fill-B5{fill:#EDF0FD;} + .d2-3860827657 .fill-B6{fill:#F7F8FE;} + .d2-3860827657 .fill-AA2{fill:#4A6FF3;} + .d2-3860827657 .fill-AA4{fill:#EDF0FD;} + .d2-3860827657 .fill-AA5{fill:#F7F8FE;} + .d2-3860827657 .fill-AB4{fill:#EDF0FD;} + .d2-3860827657 .fill-AB5{fill:#F7F8FE;} + .d2-3860827657 .stroke-N1{stroke:#0A0F25;} + .d2-3860827657 .stroke-N2{stroke:#676C7E;} + .d2-3860827657 .stroke-N3{stroke:#9499AB;} + .d2-3860827657 .stroke-N4{stroke:#CFD2DD;} + .d2-3860827657 .stroke-N5{stroke:#DEE1EB;} + .d2-3860827657 .stroke-N6{stroke:#EEF1F8;} + .d2-3860827657 .stroke-N7{stroke:#FFFFFF;} + .d2-3860827657 .stroke-B1{stroke:#0D32B2;} + .d2-3860827657 .stroke-B2{stroke:#0D32B2;} + .d2-3860827657 .stroke-B3{stroke:#E3E9FD;} + .d2-3860827657 .stroke-B4{stroke:#E3E9FD;} + .d2-3860827657 .stroke-B5{stroke:#EDF0FD;} + .d2-3860827657 .stroke-B6{stroke:#F7F8FE;} + .d2-3860827657 .stroke-AA2{stroke:#4A6FF3;} + .d2-3860827657 .stroke-AA4{stroke:#EDF0FD;} + .d2-3860827657 .stroke-AA5{stroke:#F7F8FE;} + .d2-3860827657 .stroke-AB4{stroke:#EDF0FD;} + .d2-3860827657 .stroke-AB5{stroke:#F7F8FE;} + .d2-3860827657 .background-color-N1{background-color:#0A0F25;} + .d2-3860827657 .background-color-N2{background-color:#676C7E;} + .d2-3860827657 .background-color-N3{background-color:#9499AB;} + .d2-3860827657 .background-color-N4{background-color:#CFD2DD;} + .d2-3860827657 .background-color-N5{background-color:#DEE1EB;} + .d2-3860827657 .background-color-N6{background-color:#EEF1F8;} + .d2-3860827657 .background-color-N7{background-color:#FFFFFF;} + .d2-3860827657 .background-color-B1{background-color:#0D32B2;} + .d2-3860827657 .background-color-B2{background-color:#0D32B2;} + .d2-3860827657 .background-color-B3{background-color:#E3E9FD;} + .d2-3860827657 .background-color-B4{background-color:#E3E9FD;} + .d2-3860827657 .background-color-B5{background-color:#EDF0FD;} + .d2-3860827657 .background-color-B6{background-color:#F7F8FE;} + .d2-3860827657 .background-color-AA2{background-color:#4A6FF3;} + .d2-3860827657 .background-color-AA4{background-color:#EDF0FD;} + .d2-3860827657 .background-color-AA5{background-color:#F7F8FE;} + .d2-3860827657 .background-color-AB4{background-color:#EDF0FD;} + .d2-3860827657 .background-color-AB5{background-color:#F7F8FE;} + .d2-3860827657 .color-N1{color:#0A0F25;} + .d2-3860827657 .color-N2{color:#676C7E;} + .d2-3860827657 .color-N3{color:#9499AB;} + .d2-3860827657 .color-N4{color:#CFD2DD;} + .d2-3860827657 .color-N5{color:#DEE1EB;} + .d2-3860827657 .color-N6{color:#EEF1F8;} + .d2-3860827657 .color-N7{color:#FFFFFF;} + .d2-3860827657 .color-B1{color:#0D32B2;} + .d2-3860827657 .color-B2{color:#0D32B2;} + .d2-3860827657 .color-B3{color:#E3E9FD;} + .d2-3860827657 .color-B4{color:#E3E9FD;} + .d2-3860827657 .color-B5{color:#EDF0FD;} + .d2-3860827657 .color-B6{color:#F7F8FE;} + .d2-3860827657 .color-AA2{color:#4A6FF3;} + .d2-3860827657 .color-AA4{color:#EDF0FD;} + .d2-3860827657 .color-AA5{color:#F7F8FE;} + .d2-3860827657 .color-AB4{color:#EDF0FD;} + .d2-3860827657 .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}]]>Big fontabca diff --git a/e2etests/testdata/todo/container_icon_label/elk/board.exp.json b/e2etests/testdata/todo/container_icon_label/elk/board.exp.json index 3d510ee0de..ff1c452ed9 100644 --- a/e2etests/testdata/todo/container_icon_label/elk/board.exp.json +++ b/e2etests/testdata/todo/container_icon_label/elk/board.exp.json @@ -245,6 +245,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 138.5, @@ -283,6 +284,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 138.5, diff --git a/e2etests/testdata/todo/container_icon_label/elk/sketch.exp.svg b/e2etests/testdata/todo/container_icon_label/elk/sketch.exp.svg index bbefe92d92..31af659315 100644 --- a/e2etests/testdata/todo/container_icon_label/elk/sketch.exp.svg +++ b/e2etests/testdata/todo/container_icon_label/elk/sketch.exp.svg @@ -1,16 +1,16 @@ -Big fontabca + .d2-1986136645 .fill-N1{fill:#0A0F25;} + .d2-1986136645 .fill-N2{fill:#676C7E;} + .d2-1986136645 .fill-N3{fill:#9499AB;} + .d2-1986136645 .fill-N4{fill:#CFD2DD;} + .d2-1986136645 .fill-N5{fill:#DEE1EB;} + .d2-1986136645 .fill-N6{fill:#EEF1F8;} + .d2-1986136645 .fill-N7{fill:#FFFFFF;} + .d2-1986136645 .fill-B1{fill:#0D32B2;} + .d2-1986136645 .fill-B2{fill:#0D32B2;} + .d2-1986136645 .fill-B3{fill:#E3E9FD;} + .d2-1986136645 .fill-B4{fill:#E3E9FD;} + .d2-1986136645 .fill-B5{fill:#EDF0FD;} + .d2-1986136645 .fill-B6{fill:#F7F8FE;} + .d2-1986136645 .fill-AA2{fill:#4A6FF3;} + .d2-1986136645 .fill-AA4{fill:#EDF0FD;} + .d2-1986136645 .fill-AA5{fill:#F7F8FE;} + .d2-1986136645 .fill-AB4{fill:#EDF0FD;} + .d2-1986136645 .fill-AB5{fill:#F7F8FE;} + .d2-1986136645 .stroke-N1{stroke:#0A0F25;} + .d2-1986136645 .stroke-N2{stroke:#676C7E;} + .d2-1986136645 .stroke-N3{stroke:#9499AB;} + .d2-1986136645 .stroke-N4{stroke:#CFD2DD;} + .d2-1986136645 .stroke-N5{stroke:#DEE1EB;} + .d2-1986136645 .stroke-N6{stroke:#EEF1F8;} + .d2-1986136645 .stroke-N7{stroke:#FFFFFF;} + .d2-1986136645 .stroke-B1{stroke:#0D32B2;} + .d2-1986136645 .stroke-B2{stroke:#0D32B2;} + .d2-1986136645 .stroke-B3{stroke:#E3E9FD;} + .d2-1986136645 .stroke-B4{stroke:#E3E9FD;} + .d2-1986136645 .stroke-B5{stroke:#EDF0FD;} + .d2-1986136645 .stroke-B6{stroke:#F7F8FE;} + .d2-1986136645 .stroke-AA2{stroke:#4A6FF3;} + .d2-1986136645 .stroke-AA4{stroke:#EDF0FD;} + .d2-1986136645 .stroke-AA5{stroke:#F7F8FE;} + .d2-1986136645 .stroke-AB4{stroke:#EDF0FD;} + .d2-1986136645 .stroke-AB5{stroke:#F7F8FE;} + .d2-1986136645 .background-color-N1{background-color:#0A0F25;} + .d2-1986136645 .background-color-N2{background-color:#676C7E;} + .d2-1986136645 .background-color-N3{background-color:#9499AB;} + .d2-1986136645 .background-color-N4{background-color:#CFD2DD;} + .d2-1986136645 .background-color-N5{background-color:#DEE1EB;} + .d2-1986136645 .background-color-N6{background-color:#EEF1F8;} + .d2-1986136645 .background-color-N7{background-color:#FFFFFF;} + .d2-1986136645 .background-color-B1{background-color:#0D32B2;} + .d2-1986136645 .background-color-B2{background-color:#0D32B2;} + .d2-1986136645 .background-color-B3{background-color:#E3E9FD;} + .d2-1986136645 .background-color-B4{background-color:#E3E9FD;} + .d2-1986136645 .background-color-B5{background-color:#EDF0FD;} + .d2-1986136645 .background-color-B6{background-color:#F7F8FE;} + .d2-1986136645 .background-color-AA2{background-color:#4A6FF3;} + .d2-1986136645 .background-color-AA4{background-color:#EDF0FD;} + .d2-1986136645 .background-color-AA5{background-color:#F7F8FE;} + .d2-1986136645 .background-color-AB4{background-color:#EDF0FD;} + .d2-1986136645 .background-color-AB5{background-color:#F7F8FE;} + .d2-1986136645 .color-N1{color:#0A0F25;} + .d2-1986136645 .color-N2{color:#676C7E;} + .d2-1986136645 .color-N3{color:#9499AB;} + .d2-1986136645 .color-N4{color:#CFD2DD;} + .d2-1986136645 .color-N5{color:#DEE1EB;} + .d2-1986136645 .color-N6{color:#EEF1F8;} + .d2-1986136645 .color-N7{color:#FFFFFF;} + .d2-1986136645 .color-B1{color:#0D32B2;} + .d2-1986136645 .color-B2{color:#0D32B2;} + .d2-1986136645 .color-B3{color:#E3E9FD;} + .d2-1986136645 .color-B4{color:#E3E9FD;} + .d2-1986136645 .color-B5{color:#EDF0FD;} + .d2-1986136645 .color-B6{color:#F7F8FE;} + .d2-1986136645 .color-AA2{color:#4A6FF3;} + .d2-1986136645 .color-AA4{color:#EDF0FD;} + .d2-1986136645 .color-AA5{color:#F7F8FE;} + .d2-1986136645 .color-AB4{color:#EDF0FD;} + .d2-1986136645 .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}]]>Big fontabca diff --git a/e2etests/testdata/todo/container_label_edge_adjustment/dagre/board.exp.json b/e2etests/testdata/todo/container_label_edge_adjustment/dagre/board.exp.json index 909eb92e7c..ca9310f720 100644 --- a/e2etests/testdata/todo/container_label_edge_adjustment/dagre/board.exp.json +++ b/e2etests/testdata/todo/container_label_edge_adjustment/dagre/board.exp.json @@ -316,6 +316,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 40, @@ -363,6 +364,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 209, @@ -410,6 +412,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 153, @@ -457,6 +460,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 265, @@ -495,6 +499,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 377.5, diff --git a/e2etests/testdata/todo/container_label_edge_adjustment/dagre/sketch.exp.svg b/e2etests/testdata/todo/container_label_edge_adjustment/dagre/sketch.exp.svg index 39325b798c..3edc474fa8 100644 --- a/e2etests/testdata/todo/container_label_edge_adjustment/dagre/sketch.exp.svg +++ b/e2etests/testdata/todo/container_label_edge_adjustment/dagre/sketch.exp.svg @@ -1,16 +1,16 @@ -aa container labeldefgc + .d2-3473197450 .fill-N1{fill:#0A0F25;} + .d2-3473197450 .fill-N2{fill:#676C7E;} + .d2-3473197450 .fill-N3{fill:#9499AB;} + .d2-3473197450 .fill-N4{fill:#CFD2DD;} + .d2-3473197450 .fill-N5{fill:#DEE1EB;} + .d2-3473197450 .fill-N6{fill:#EEF1F8;} + .d2-3473197450 .fill-N7{fill:#FFFFFF;} + .d2-3473197450 .fill-B1{fill:#0D32B2;} + .d2-3473197450 .fill-B2{fill:#0D32B2;} + .d2-3473197450 .fill-B3{fill:#E3E9FD;} + .d2-3473197450 .fill-B4{fill:#E3E9FD;} + .d2-3473197450 .fill-B5{fill:#EDF0FD;} + .d2-3473197450 .fill-B6{fill:#F7F8FE;} + .d2-3473197450 .fill-AA2{fill:#4A6FF3;} + .d2-3473197450 .fill-AA4{fill:#EDF0FD;} + .d2-3473197450 .fill-AA5{fill:#F7F8FE;} + .d2-3473197450 .fill-AB4{fill:#EDF0FD;} + .d2-3473197450 .fill-AB5{fill:#F7F8FE;} + .d2-3473197450 .stroke-N1{stroke:#0A0F25;} + .d2-3473197450 .stroke-N2{stroke:#676C7E;} + .d2-3473197450 .stroke-N3{stroke:#9499AB;} + .d2-3473197450 .stroke-N4{stroke:#CFD2DD;} + .d2-3473197450 .stroke-N5{stroke:#DEE1EB;} + .d2-3473197450 .stroke-N6{stroke:#EEF1F8;} + .d2-3473197450 .stroke-N7{stroke:#FFFFFF;} + .d2-3473197450 .stroke-B1{stroke:#0D32B2;} + .d2-3473197450 .stroke-B2{stroke:#0D32B2;} + .d2-3473197450 .stroke-B3{stroke:#E3E9FD;} + .d2-3473197450 .stroke-B4{stroke:#E3E9FD;} + .d2-3473197450 .stroke-B5{stroke:#EDF0FD;} + .d2-3473197450 .stroke-B6{stroke:#F7F8FE;} + .d2-3473197450 .stroke-AA2{stroke:#4A6FF3;} + .d2-3473197450 .stroke-AA4{stroke:#EDF0FD;} + .d2-3473197450 .stroke-AA5{stroke:#F7F8FE;} + .d2-3473197450 .stroke-AB4{stroke:#EDF0FD;} + .d2-3473197450 .stroke-AB5{stroke:#F7F8FE;} + .d2-3473197450 .background-color-N1{background-color:#0A0F25;} + .d2-3473197450 .background-color-N2{background-color:#676C7E;} + .d2-3473197450 .background-color-N3{background-color:#9499AB;} + .d2-3473197450 .background-color-N4{background-color:#CFD2DD;} + .d2-3473197450 .background-color-N5{background-color:#DEE1EB;} + .d2-3473197450 .background-color-N6{background-color:#EEF1F8;} + .d2-3473197450 .background-color-N7{background-color:#FFFFFF;} + .d2-3473197450 .background-color-B1{background-color:#0D32B2;} + .d2-3473197450 .background-color-B2{background-color:#0D32B2;} + .d2-3473197450 .background-color-B3{background-color:#E3E9FD;} + .d2-3473197450 .background-color-B4{background-color:#E3E9FD;} + .d2-3473197450 .background-color-B5{background-color:#EDF0FD;} + .d2-3473197450 .background-color-B6{background-color:#F7F8FE;} + .d2-3473197450 .background-color-AA2{background-color:#4A6FF3;} + .d2-3473197450 .background-color-AA4{background-color:#EDF0FD;} + .d2-3473197450 .background-color-AA5{background-color:#F7F8FE;} + .d2-3473197450 .background-color-AB4{background-color:#EDF0FD;} + .d2-3473197450 .background-color-AB5{background-color:#F7F8FE;} + .d2-3473197450 .color-N1{color:#0A0F25;} + .d2-3473197450 .color-N2{color:#676C7E;} + .d2-3473197450 .color-N3{color:#9499AB;} + .d2-3473197450 .color-N4{color:#CFD2DD;} + .d2-3473197450 .color-N5{color:#DEE1EB;} + .d2-3473197450 .color-N6{color:#EEF1F8;} + .d2-3473197450 .color-N7{color:#FFFFFF;} + .d2-3473197450 .color-B1{color:#0D32B2;} + .d2-3473197450 .color-B2{color:#0D32B2;} + .d2-3473197450 .color-B3{color:#E3E9FD;} + .d2-3473197450 .color-B4{color:#E3E9FD;} + .d2-3473197450 .color-B5{color:#EDF0FD;} + .d2-3473197450 .color-B6{color:#F7F8FE;} + .d2-3473197450 .color-AA2{color:#4A6FF3;} + .d2-3473197450 .color-AA4{color:#EDF0FD;} + .d2-3473197450 .color-AA5{color:#F7F8FE;} + .d2-3473197450 .color-AB4{color:#EDF0FD;} + .d2-3473197450 .color-AB5{color:#F7F8FE;}.appendix text.text{fill:#0A0F25}.md{--color-fg-default:#0A0F25;--color-fg-muted:#676C7E;--color-fg-subtle:#9499AB;--color-canvas-default:#FFFFFF;--color-canvas-subtle:#EEF1F8;--color-border-default:#0D32B2;--color-border-muted:#0D32B2;--color-neutral-muted:#EEF1F8;--color-accent-fg:#0D32B2;--color-accent-emphasis:#0D32B2;--color-attention-subtle:#676C7E;--color-danger-fg:red;}.sketch-overlay-B1{fill:url(#streaks-darker);mix-blend-mode:lighten}.sketch-overlay-B2{fill:url(#streaks-darker);mix-blend-mode:lighten}.sketch-overlay-B3{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-B4{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-B5{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-B6{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-AA2{fill:url(#streaks-dark);mix-blend-mode:overlay}.sketch-overlay-AA4{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-AA5{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-AB4{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-AB5{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-N1{fill:url(#streaks-darker);mix-blend-mode:lighten}.sketch-overlay-N2{fill:url(#streaks-dark);mix-blend-mode:overlay}.sketch-overlay-N3{fill:url(#streaks-normal);mix-blend-mode:color-burn}.sketch-overlay-N4{fill:url(#streaks-normal);mix-blend-mode:color-burn}.sketch-overlay-N5{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-N6{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-N7{fill:url(#streaks-bright);mix-blend-mode:darken}.light-code{display: block}.dark-code{display: none}]]>aa container labeldefgc diff --git a/e2etests/testdata/todo/container_label_edge_adjustment/elk/board.exp.json b/e2etests/testdata/todo/container_label_edge_adjustment/elk/board.exp.json index a35a89c9da..153fe85512 100644 --- a/e2etests/testdata/todo/container_label_edge_adjustment/elk/board.exp.json +++ b/e2etests/testdata/todo/container_label_edge_adjustment/elk/board.exp.json @@ -316,6 +316,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 68.33300018310547, @@ -362,6 +363,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 159, @@ -400,6 +402,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 141.33299255371094, @@ -446,6 +449,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 213.33299255371094, @@ -492,6 +496,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 285.8330078125, diff --git a/e2etests/testdata/todo/container_label_edge_adjustment/elk/sketch.exp.svg b/e2etests/testdata/todo/container_label_edge_adjustment/elk/sketch.exp.svg index 754dec9206..2c86c753cd 100644 --- a/e2etests/testdata/todo/container_label_edge_adjustment/elk/sketch.exp.svg +++ b/e2etests/testdata/todo/container_label_edge_adjustment/elk/sketch.exp.svg @@ -1,16 +1,16 @@ -aa container labeldefgc + .d2-3817031852 .fill-N1{fill:#0A0F25;} + .d2-3817031852 .fill-N2{fill:#676C7E;} + .d2-3817031852 .fill-N3{fill:#9499AB;} + .d2-3817031852 .fill-N4{fill:#CFD2DD;} + .d2-3817031852 .fill-N5{fill:#DEE1EB;} + .d2-3817031852 .fill-N6{fill:#EEF1F8;} + .d2-3817031852 .fill-N7{fill:#FFFFFF;} + .d2-3817031852 .fill-B1{fill:#0D32B2;} + .d2-3817031852 .fill-B2{fill:#0D32B2;} + .d2-3817031852 .fill-B3{fill:#E3E9FD;} + .d2-3817031852 .fill-B4{fill:#E3E9FD;} + .d2-3817031852 .fill-B5{fill:#EDF0FD;} + .d2-3817031852 .fill-B6{fill:#F7F8FE;} + .d2-3817031852 .fill-AA2{fill:#4A6FF3;} + .d2-3817031852 .fill-AA4{fill:#EDF0FD;} + .d2-3817031852 .fill-AA5{fill:#F7F8FE;} + .d2-3817031852 .fill-AB4{fill:#EDF0FD;} + .d2-3817031852 .fill-AB5{fill:#F7F8FE;} + .d2-3817031852 .stroke-N1{stroke:#0A0F25;} + .d2-3817031852 .stroke-N2{stroke:#676C7E;} + .d2-3817031852 .stroke-N3{stroke:#9499AB;} + .d2-3817031852 .stroke-N4{stroke:#CFD2DD;} + .d2-3817031852 .stroke-N5{stroke:#DEE1EB;} + .d2-3817031852 .stroke-N6{stroke:#EEF1F8;} + .d2-3817031852 .stroke-N7{stroke:#FFFFFF;} + .d2-3817031852 .stroke-B1{stroke:#0D32B2;} + .d2-3817031852 .stroke-B2{stroke:#0D32B2;} + .d2-3817031852 .stroke-B3{stroke:#E3E9FD;} + .d2-3817031852 .stroke-B4{stroke:#E3E9FD;} + .d2-3817031852 .stroke-B5{stroke:#EDF0FD;} + .d2-3817031852 .stroke-B6{stroke:#F7F8FE;} + .d2-3817031852 .stroke-AA2{stroke:#4A6FF3;} + .d2-3817031852 .stroke-AA4{stroke:#EDF0FD;} + .d2-3817031852 .stroke-AA5{stroke:#F7F8FE;} + .d2-3817031852 .stroke-AB4{stroke:#EDF0FD;} + .d2-3817031852 .stroke-AB5{stroke:#F7F8FE;} + .d2-3817031852 .background-color-N1{background-color:#0A0F25;} + .d2-3817031852 .background-color-N2{background-color:#676C7E;} + .d2-3817031852 .background-color-N3{background-color:#9499AB;} + .d2-3817031852 .background-color-N4{background-color:#CFD2DD;} + .d2-3817031852 .background-color-N5{background-color:#DEE1EB;} + .d2-3817031852 .background-color-N6{background-color:#EEF1F8;} + .d2-3817031852 .background-color-N7{background-color:#FFFFFF;} + .d2-3817031852 .background-color-B1{background-color:#0D32B2;} + .d2-3817031852 .background-color-B2{background-color:#0D32B2;} + .d2-3817031852 .background-color-B3{background-color:#E3E9FD;} + .d2-3817031852 .background-color-B4{background-color:#E3E9FD;} + .d2-3817031852 .background-color-B5{background-color:#EDF0FD;} + .d2-3817031852 .background-color-B6{background-color:#F7F8FE;} + .d2-3817031852 .background-color-AA2{background-color:#4A6FF3;} + .d2-3817031852 .background-color-AA4{background-color:#EDF0FD;} + .d2-3817031852 .background-color-AA5{background-color:#F7F8FE;} + .d2-3817031852 .background-color-AB4{background-color:#EDF0FD;} + .d2-3817031852 .background-color-AB5{background-color:#F7F8FE;} + .d2-3817031852 .color-N1{color:#0A0F25;} + .d2-3817031852 .color-N2{color:#676C7E;} + .d2-3817031852 .color-N3{color:#9499AB;} + .d2-3817031852 .color-N4{color:#CFD2DD;} + .d2-3817031852 .color-N5{color:#DEE1EB;} + .d2-3817031852 .color-N6{color:#EEF1F8;} + .d2-3817031852 .color-N7{color:#FFFFFF;} + .d2-3817031852 .color-B1{color:#0D32B2;} + .d2-3817031852 .color-B2{color:#0D32B2;} + .d2-3817031852 .color-B3{color:#E3E9FD;} + .d2-3817031852 .color-B4{color:#E3E9FD;} + .d2-3817031852 .color-B5{color:#EDF0FD;} + .d2-3817031852 .color-B6{color:#F7F8FE;} + .d2-3817031852 .color-AA2{color:#4A6FF3;} + .d2-3817031852 .color-AA4{color:#EDF0FD;} + .d2-3817031852 .color-AA5{color:#F7F8FE;} + .d2-3817031852 .color-AB4{color:#EDF0FD;} + .d2-3817031852 .color-AB5{color:#F7F8FE;}.appendix text.text{fill:#0A0F25}.md{--color-fg-default:#0A0F25;--color-fg-muted:#676C7E;--color-fg-subtle:#9499AB;--color-canvas-default:#FFFFFF;--color-canvas-subtle:#EEF1F8;--color-border-default:#0D32B2;--color-border-muted:#0D32B2;--color-neutral-muted:#EEF1F8;--color-accent-fg:#0D32B2;--color-accent-emphasis:#0D32B2;--color-attention-subtle:#676C7E;--color-danger-fg:red;}.sketch-overlay-B1{fill:url(#streaks-darker);mix-blend-mode:lighten}.sketch-overlay-B2{fill:url(#streaks-darker);mix-blend-mode:lighten}.sketch-overlay-B3{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-B4{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-B5{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-B6{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-AA2{fill:url(#streaks-dark);mix-blend-mode:overlay}.sketch-overlay-AA4{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-AA5{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-AB4{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-AB5{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-N1{fill:url(#streaks-darker);mix-blend-mode:lighten}.sketch-overlay-N2{fill:url(#streaks-dark);mix-blend-mode:overlay}.sketch-overlay-N3{fill:url(#streaks-normal);mix-blend-mode:color-burn}.sketch-overlay-N4{fill:url(#streaks-normal);mix-blend-mode:color-burn}.sketch-overlay-N5{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-N6{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-N7{fill:url(#streaks-bright);mix-blend-mode:darken}.light-code{display: block}.dark-code{display: none}]]>aa container labeldefgc diff --git a/e2etests/testdata/todo/container_label_edge_adjustment2/dagre/board.exp.json b/e2etests/testdata/todo/container_label_edge_adjustment2/dagre/board.exp.json index d503bd8251..1c05b96601 100644 --- a/e2etests/testdata/todo/container_label_edge_adjustment2/dagre/board.exp.json +++ b/e2etests/testdata/todo/container_label_edge_adjustment2/dagre/board.exp.json @@ -163,6 +163,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 66, diff --git a/e2etests/testdata/todo/container_label_edge_adjustment2/dagre/sketch.exp.svg b/e2etests/testdata/todo/container_label_edge_adjustment2/dagre/sketch.exp.svg index e06282b977..6ba72de40e 100644 --- a/e2etests/testdata/todo/container_label_edge_adjustment2/dagre/sketch.exp.svg +++ b/e2etests/testdata/todo/container_label_edge_adjustment2/dagre/sketch.exp.svg @@ -1,23 +1,23 @@ -xbarz foo + .d2-1381119694 .fill-N1{fill:#0A0F25;} + .d2-1381119694 .fill-N2{fill:#676C7E;} + .d2-1381119694 .fill-N3{fill:#9499AB;} + .d2-1381119694 .fill-N4{fill:#CFD2DD;} + .d2-1381119694 .fill-N5{fill:#DEE1EB;} + .d2-1381119694 .fill-N6{fill:#EEF1F8;} + .d2-1381119694 .fill-N7{fill:#FFFFFF;} + .d2-1381119694 .fill-B1{fill:#0D32B2;} + .d2-1381119694 .fill-B2{fill:#0D32B2;} + .d2-1381119694 .fill-B3{fill:#E3E9FD;} + .d2-1381119694 .fill-B4{fill:#E3E9FD;} + .d2-1381119694 .fill-B5{fill:#EDF0FD;} + .d2-1381119694 .fill-B6{fill:#F7F8FE;} + .d2-1381119694 .fill-AA2{fill:#4A6FF3;} + .d2-1381119694 .fill-AA4{fill:#EDF0FD;} + .d2-1381119694 .fill-AA5{fill:#F7F8FE;} + .d2-1381119694 .fill-AB4{fill:#EDF0FD;} + .d2-1381119694 .fill-AB5{fill:#F7F8FE;} + .d2-1381119694 .stroke-N1{stroke:#0A0F25;} + .d2-1381119694 .stroke-N2{stroke:#676C7E;} + .d2-1381119694 .stroke-N3{stroke:#9499AB;} + .d2-1381119694 .stroke-N4{stroke:#CFD2DD;} + .d2-1381119694 .stroke-N5{stroke:#DEE1EB;} + .d2-1381119694 .stroke-N6{stroke:#EEF1F8;} + .d2-1381119694 .stroke-N7{stroke:#FFFFFF;} + .d2-1381119694 .stroke-B1{stroke:#0D32B2;} + .d2-1381119694 .stroke-B2{stroke:#0D32B2;} + .d2-1381119694 .stroke-B3{stroke:#E3E9FD;} + .d2-1381119694 .stroke-B4{stroke:#E3E9FD;} + .d2-1381119694 .stroke-B5{stroke:#EDF0FD;} + .d2-1381119694 .stroke-B6{stroke:#F7F8FE;} + .d2-1381119694 .stroke-AA2{stroke:#4A6FF3;} + .d2-1381119694 .stroke-AA4{stroke:#EDF0FD;} + .d2-1381119694 .stroke-AA5{stroke:#F7F8FE;} + .d2-1381119694 .stroke-AB4{stroke:#EDF0FD;} + .d2-1381119694 .stroke-AB5{stroke:#F7F8FE;} + .d2-1381119694 .background-color-N1{background-color:#0A0F25;} + .d2-1381119694 .background-color-N2{background-color:#676C7E;} + .d2-1381119694 .background-color-N3{background-color:#9499AB;} + .d2-1381119694 .background-color-N4{background-color:#CFD2DD;} + .d2-1381119694 .background-color-N5{background-color:#DEE1EB;} + .d2-1381119694 .background-color-N6{background-color:#EEF1F8;} + .d2-1381119694 .background-color-N7{background-color:#FFFFFF;} + .d2-1381119694 .background-color-B1{background-color:#0D32B2;} + .d2-1381119694 .background-color-B2{background-color:#0D32B2;} + .d2-1381119694 .background-color-B3{background-color:#E3E9FD;} + .d2-1381119694 .background-color-B4{background-color:#E3E9FD;} + .d2-1381119694 .background-color-B5{background-color:#EDF0FD;} + .d2-1381119694 .background-color-B6{background-color:#F7F8FE;} + .d2-1381119694 .background-color-AA2{background-color:#4A6FF3;} + .d2-1381119694 .background-color-AA4{background-color:#EDF0FD;} + .d2-1381119694 .background-color-AA5{background-color:#F7F8FE;} + .d2-1381119694 .background-color-AB4{background-color:#EDF0FD;} + .d2-1381119694 .background-color-AB5{background-color:#F7F8FE;} + .d2-1381119694 .color-N1{color:#0A0F25;} + .d2-1381119694 .color-N2{color:#676C7E;} + .d2-1381119694 .color-N3{color:#9499AB;} + .d2-1381119694 .color-N4{color:#CFD2DD;} + .d2-1381119694 .color-N5{color:#DEE1EB;} + .d2-1381119694 .color-N6{color:#EEF1F8;} + .d2-1381119694 .color-N7{color:#FFFFFF;} + .d2-1381119694 .color-B1{color:#0D32B2;} + .d2-1381119694 .color-B2{color:#0D32B2;} + .d2-1381119694 .color-B3{color:#E3E9FD;} + .d2-1381119694 .color-B4{color:#E3E9FD;} + .d2-1381119694 .color-B5{color:#EDF0FD;} + .d2-1381119694 .color-B6{color:#F7F8FE;} + .d2-1381119694 .color-AA2{color:#4A6FF3;} + .d2-1381119694 .color-AA4{color:#EDF0FD;} + .d2-1381119694 .color-AA5{color:#F7F8FE;} + .d2-1381119694 .color-AB4{color:#EDF0FD;} + .d2-1381119694 .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}]]>xbarz foo diff --git a/e2etests/testdata/todo/container_label_edge_adjustment2/elk/board.exp.json b/e2etests/testdata/todo/container_label_edge_adjustment2/elk/board.exp.json index 8afd69d287..db05e8dc82 100644 --- a/e2etests/testdata/todo/container_label_edge_adjustment2/elk/board.exp.json +++ b/e2etests/testdata/todo/container_label_edge_adjustment2/elk/board.exp.json @@ -163,6 +163,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 88, diff --git a/e2etests/testdata/todo/container_label_edge_adjustment2/elk/sketch.exp.svg b/e2etests/testdata/todo/container_label_edge_adjustment2/elk/sketch.exp.svg index e8ba75df20..478047bd92 100644 --- a/e2etests/testdata/todo/container_label_edge_adjustment2/elk/sketch.exp.svg +++ b/e2etests/testdata/todo/container_label_edge_adjustment2/elk/sketch.exp.svg @@ -1,23 +1,23 @@ -xbarz foo + .d2-34935397 .fill-N1{fill:#0A0F25;} + .d2-34935397 .fill-N2{fill:#676C7E;} + .d2-34935397 .fill-N3{fill:#9499AB;} + .d2-34935397 .fill-N4{fill:#CFD2DD;} + .d2-34935397 .fill-N5{fill:#DEE1EB;} + .d2-34935397 .fill-N6{fill:#EEF1F8;} + .d2-34935397 .fill-N7{fill:#FFFFFF;} + .d2-34935397 .fill-B1{fill:#0D32B2;} + .d2-34935397 .fill-B2{fill:#0D32B2;} + .d2-34935397 .fill-B3{fill:#E3E9FD;} + .d2-34935397 .fill-B4{fill:#E3E9FD;} + .d2-34935397 .fill-B5{fill:#EDF0FD;} + .d2-34935397 .fill-B6{fill:#F7F8FE;} + .d2-34935397 .fill-AA2{fill:#4A6FF3;} + .d2-34935397 .fill-AA4{fill:#EDF0FD;} + .d2-34935397 .fill-AA5{fill:#F7F8FE;} + .d2-34935397 .fill-AB4{fill:#EDF0FD;} + .d2-34935397 .fill-AB5{fill:#F7F8FE;} + .d2-34935397 .stroke-N1{stroke:#0A0F25;} + .d2-34935397 .stroke-N2{stroke:#676C7E;} + .d2-34935397 .stroke-N3{stroke:#9499AB;} + .d2-34935397 .stroke-N4{stroke:#CFD2DD;} + .d2-34935397 .stroke-N5{stroke:#DEE1EB;} + .d2-34935397 .stroke-N6{stroke:#EEF1F8;} + .d2-34935397 .stroke-N7{stroke:#FFFFFF;} + .d2-34935397 .stroke-B1{stroke:#0D32B2;} + .d2-34935397 .stroke-B2{stroke:#0D32B2;} + .d2-34935397 .stroke-B3{stroke:#E3E9FD;} + .d2-34935397 .stroke-B4{stroke:#E3E9FD;} + .d2-34935397 .stroke-B5{stroke:#EDF0FD;} + .d2-34935397 .stroke-B6{stroke:#F7F8FE;} + .d2-34935397 .stroke-AA2{stroke:#4A6FF3;} + .d2-34935397 .stroke-AA4{stroke:#EDF0FD;} + .d2-34935397 .stroke-AA5{stroke:#F7F8FE;} + .d2-34935397 .stroke-AB4{stroke:#EDF0FD;} + .d2-34935397 .stroke-AB5{stroke:#F7F8FE;} + .d2-34935397 .background-color-N1{background-color:#0A0F25;} + .d2-34935397 .background-color-N2{background-color:#676C7E;} + .d2-34935397 .background-color-N3{background-color:#9499AB;} + .d2-34935397 .background-color-N4{background-color:#CFD2DD;} + .d2-34935397 .background-color-N5{background-color:#DEE1EB;} + .d2-34935397 .background-color-N6{background-color:#EEF1F8;} + .d2-34935397 .background-color-N7{background-color:#FFFFFF;} + .d2-34935397 .background-color-B1{background-color:#0D32B2;} + .d2-34935397 .background-color-B2{background-color:#0D32B2;} + .d2-34935397 .background-color-B3{background-color:#E3E9FD;} + .d2-34935397 .background-color-B4{background-color:#E3E9FD;} + .d2-34935397 .background-color-B5{background-color:#EDF0FD;} + .d2-34935397 .background-color-B6{background-color:#F7F8FE;} + .d2-34935397 .background-color-AA2{background-color:#4A6FF3;} + .d2-34935397 .background-color-AA4{background-color:#EDF0FD;} + .d2-34935397 .background-color-AA5{background-color:#F7F8FE;} + .d2-34935397 .background-color-AB4{background-color:#EDF0FD;} + .d2-34935397 .background-color-AB5{background-color:#F7F8FE;} + .d2-34935397 .color-N1{color:#0A0F25;} + .d2-34935397 .color-N2{color:#676C7E;} + .d2-34935397 .color-N3{color:#9499AB;} + .d2-34935397 .color-N4{color:#CFD2DD;} + .d2-34935397 .color-N5{color:#DEE1EB;} + .d2-34935397 .color-N6{color:#EEF1F8;} + .d2-34935397 .color-N7{color:#FFFFFF;} + .d2-34935397 .color-B1{color:#0D32B2;} + .d2-34935397 .color-B2{color:#0D32B2;} + .d2-34935397 .color-B3{color:#E3E9FD;} + .d2-34935397 .color-B4{color:#E3E9FD;} + .d2-34935397 .color-B5{color:#EDF0FD;} + .d2-34935397 .color-B6{color:#F7F8FE;} + .d2-34935397 .color-AA2{color:#4A6FF3;} + .d2-34935397 .color-AA4{color:#EDF0FD;} + .d2-34935397 .color-AA5{color:#F7F8FE;} + .d2-34935397 .color-AB4{color:#EDF0FD;} + .d2-34935397 .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}]]>xbarz foo diff --git a/e2etests/testdata/todo/dagre_container_md_label_panic/dagre/board.exp.json b/e2etests/testdata/todo/dagre_container_md_label_panic/dagre/board.exp.json index c2a5b5cf4a..d393f6a746 100644 --- a/e2etests/testdata/todo/dagre_container_md_label_panic/dagre/board.exp.json +++ b/e2etests/testdata/todo/dagre_container_md_label_panic/dagre/board.exp.json @@ -273,6 +273,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 144, @@ -320,6 +321,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 187.5, @@ -367,6 +369,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 141.5, @@ -426,6 +429,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 108.5, @@ -509,6 +513,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 233.5, @@ -556,6 +561,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 153.5, @@ -603,6 +609,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 209.5, diff --git a/e2etests/testdata/todo/dagre_container_md_label_panic/dagre/sketch.exp.svg b/e2etests/testdata/todo/dagre_container_md_label_panic/dagre/sketch.exp.svg index b8c5240865..42abe9cae2 100644 --- a/e2etests/testdata/todo/dagre_container_md_label_panic/dagre/sketch.exp.svg +++ b/e2etests/testdata/todo/dagre_container_md_label_panic/dagre/sketch.exp.svg @@ -1,20 +1,20 @@ -OEM Factory

    company Warehouse

    @@ -843,7 +843,7 @@
  • Staging
  • Dispatch to Site
  • -
    MasterRegional-1Regional-2Regional-N +
    MasterRegional-1Regional-2Regional-N diff --git a/e2etests/testdata/todo/dagre_container_md_label_panic/elk/board.exp.json b/e2etests/testdata/todo/dagre_container_md_label_panic/elk/board.exp.json index 3f47239046..b420ab499d 100644 --- a/e2etests/testdata/todo/dagre_container_md_label_panic/elk/board.exp.json +++ b/e2etests/testdata/todo/dagre_container_md_label_panic/elk/board.exp.json @@ -273,6 +273,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 183, @@ -311,6 +312,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 192.75, @@ -357,6 +359,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 223, @@ -395,6 +398,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 252.75, @@ -449,6 +453,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 142, @@ -495,6 +500,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 203, @@ -533,6 +539,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 172.5, diff --git a/e2etests/testdata/todo/dagre_container_md_label_panic/elk/sketch.exp.svg b/e2etests/testdata/todo/dagre_container_md_label_panic/elk/sketch.exp.svg index 808eccf75a..0c1f12d6b9 100644 --- a/e2etests/testdata/todo/dagre_container_md_label_panic/elk/sketch.exp.svg +++ b/e2etests/testdata/todo/dagre_container_md_label_panic/elk/sketch.exp.svg @@ -1,20 +1,20 @@ -OEM Factory

    company Warehouse

    @@ -843,7 +843,7 @@
  • Staging
  • Dispatch to Site
  • -
    MasterRegional-1Regional-2Regional-N +
    MasterRegional-1Regional-2Regional-N diff --git a/e2etests/testdata/todo/sequence_diagram_actor_padding_nested_groups/dagre/board.exp.json b/e2etests/testdata/todo/sequence_diagram_actor_padding_nested_groups/dagre/board.exp.json index 62a8a97dca..3241cc2929 100644 --- a/e2etests/testdata/todo/sequence_diagram_actor_padding_nested_groups/dagre/board.exp.json +++ b/e2etests/testdata/todo/sequence_diagram_actor_padding_nested_groups/dagre/board.exp.json @@ -361,6 +361,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 62, @@ -399,6 +400,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 212, @@ -437,6 +439,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 212, @@ -475,6 +478,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 212, @@ -513,6 +517,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 212, @@ -551,6 +556,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 212, @@ -589,6 +595,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 62, @@ -627,6 +634,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 212, @@ -665,6 +673,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 362, diff --git a/e2etests/testdata/todo/sequence_diagram_actor_padding_nested_groups/dagre/sketch.exp.svg b/e2etests/testdata/todo/sequence_diagram_actor_padding_nested_groups/dagre/sketch.exp.svg index 41b620ab5c..437c597204 100644 --- a/e2etests/testdata/todo/sequence_diagram_actor_padding_nested_groups/dagre/sketch.exp.svg +++ b/e2etests/testdata/todo/sequence_diagram_actor_padding_nested_groups/dagre/sketch.exp.svg @@ -1,9 +1,9 @@ -bacthis is a message groupand this is a nested message groupwhat about more nestingyoyo + .d2-2822857998 .fill-N1{fill:#0A0F25;} + .d2-2822857998 .fill-N2{fill:#676C7E;} + .d2-2822857998 .fill-N3{fill:#9499AB;} + .d2-2822857998 .fill-N4{fill:#CFD2DD;} + .d2-2822857998 .fill-N5{fill:#DEE1EB;} + .d2-2822857998 .fill-N6{fill:#EEF1F8;} + .d2-2822857998 .fill-N7{fill:#FFFFFF;} + .d2-2822857998 .fill-B1{fill:#0D32B2;} + .d2-2822857998 .fill-B2{fill:#0D32B2;} + .d2-2822857998 .fill-B3{fill:#E3E9FD;} + .d2-2822857998 .fill-B4{fill:#E3E9FD;} + .d2-2822857998 .fill-B5{fill:#EDF0FD;} + .d2-2822857998 .fill-B6{fill:#F7F8FE;} + .d2-2822857998 .fill-AA2{fill:#4A6FF3;} + .d2-2822857998 .fill-AA4{fill:#EDF0FD;} + .d2-2822857998 .fill-AA5{fill:#F7F8FE;} + .d2-2822857998 .fill-AB4{fill:#EDF0FD;} + .d2-2822857998 .fill-AB5{fill:#F7F8FE;} + .d2-2822857998 .stroke-N1{stroke:#0A0F25;} + .d2-2822857998 .stroke-N2{stroke:#676C7E;} + .d2-2822857998 .stroke-N3{stroke:#9499AB;} + .d2-2822857998 .stroke-N4{stroke:#CFD2DD;} + .d2-2822857998 .stroke-N5{stroke:#DEE1EB;} + .d2-2822857998 .stroke-N6{stroke:#EEF1F8;} + .d2-2822857998 .stroke-N7{stroke:#FFFFFF;} + .d2-2822857998 .stroke-B1{stroke:#0D32B2;} + .d2-2822857998 .stroke-B2{stroke:#0D32B2;} + .d2-2822857998 .stroke-B3{stroke:#E3E9FD;} + .d2-2822857998 .stroke-B4{stroke:#E3E9FD;} + .d2-2822857998 .stroke-B5{stroke:#EDF0FD;} + .d2-2822857998 .stroke-B6{stroke:#F7F8FE;} + .d2-2822857998 .stroke-AA2{stroke:#4A6FF3;} + .d2-2822857998 .stroke-AA4{stroke:#EDF0FD;} + .d2-2822857998 .stroke-AA5{stroke:#F7F8FE;} + .d2-2822857998 .stroke-AB4{stroke:#EDF0FD;} + .d2-2822857998 .stroke-AB5{stroke:#F7F8FE;} + .d2-2822857998 .background-color-N1{background-color:#0A0F25;} + .d2-2822857998 .background-color-N2{background-color:#676C7E;} + .d2-2822857998 .background-color-N3{background-color:#9499AB;} + .d2-2822857998 .background-color-N4{background-color:#CFD2DD;} + .d2-2822857998 .background-color-N5{background-color:#DEE1EB;} + .d2-2822857998 .background-color-N6{background-color:#EEF1F8;} + .d2-2822857998 .background-color-N7{background-color:#FFFFFF;} + .d2-2822857998 .background-color-B1{background-color:#0D32B2;} + .d2-2822857998 .background-color-B2{background-color:#0D32B2;} + .d2-2822857998 .background-color-B3{background-color:#E3E9FD;} + .d2-2822857998 .background-color-B4{background-color:#E3E9FD;} + .d2-2822857998 .background-color-B5{background-color:#EDF0FD;} + .d2-2822857998 .background-color-B6{background-color:#F7F8FE;} + .d2-2822857998 .background-color-AA2{background-color:#4A6FF3;} + .d2-2822857998 .background-color-AA4{background-color:#EDF0FD;} + .d2-2822857998 .background-color-AA5{background-color:#F7F8FE;} + .d2-2822857998 .background-color-AB4{background-color:#EDF0FD;} + .d2-2822857998 .background-color-AB5{background-color:#F7F8FE;} + .d2-2822857998 .color-N1{color:#0A0F25;} + .d2-2822857998 .color-N2{color:#676C7E;} + .d2-2822857998 .color-N3{color:#9499AB;} + .d2-2822857998 .color-N4{color:#CFD2DD;} + .d2-2822857998 .color-N5{color:#DEE1EB;} + .d2-2822857998 .color-N6{color:#EEF1F8;} + .d2-2822857998 .color-N7{color:#FFFFFF;} + .d2-2822857998 .color-B1{color:#0D32B2;} + .d2-2822857998 .color-B2{color:#0D32B2;} + .d2-2822857998 .color-B3{color:#E3E9FD;} + .d2-2822857998 .color-B4{color:#E3E9FD;} + .d2-2822857998 .color-B5{color:#EDF0FD;} + .d2-2822857998 .color-B6{color:#F7F8FE;} + .d2-2822857998 .color-AA2{color:#4A6FF3;} + .d2-2822857998 .color-AA4{color:#EDF0FD;} + .d2-2822857998 .color-AA5{color:#F7F8FE;} + .d2-2822857998 .color-AB4{color:#EDF0FD;} + .d2-2822857998 .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}]]>bacthis is a message groupand this is a nested message groupwhat about more nestingyoyo diff --git a/e2etests/testdata/todo/sequence_diagram_actor_padding_nested_groups/elk/board.exp.json b/e2etests/testdata/todo/sequence_diagram_actor_padding_nested_groups/elk/board.exp.json index 62a8a97dca..3241cc2929 100644 --- a/e2etests/testdata/todo/sequence_diagram_actor_padding_nested_groups/elk/board.exp.json +++ b/e2etests/testdata/todo/sequence_diagram_actor_padding_nested_groups/elk/board.exp.json @@ -361,6 +361,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 62, @@ -399,6 +400,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 212, @@ -437,6 +439,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 212, @@ -475,6 +478,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 212, @@ -513,6 +517,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 212, @@ -551,6 +556,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 212, @@ -589,6 +595,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 62, @@ -627,6 +634,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 212, @@ -665,6 +673,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 362, diff --git a/e2etests/testdata/todo/sequence_diagram_actor_padding_nested_groups/elk/sketch.exp.svg b/e2etests/testdata/todo/sequence_diagram_actor_padding_nested_groups/elk/sketch.exp.svg index 41b620ab5c..437c597204 100644 --- a/e2etests/testdata/todo/sequence_diagram_actor_padding_nested_groups/elk/sketch.exp.svg +++ b/e2etests/testdata/todo/sequence_diagram_actor_padding_nested_groups/elk/sketch.exp.svg @@ -1,9 +1,9 @@ -bacthis is a message groupand this is a nested message groupwhat about more nestingyoyo + .d2-2822857998 .fill-N1{fill:#0A0F25;} + .d2-2822857998 .fill-N2{fill:#676C7E;} + .d2-2822857998 .fill-N3{fill:#9499AB;} + .d2-2822857998 .fill-N4{fill:#CFD2DD;} + .d2-2822857998 .fill-N5{fill:#DEE1EB;} + .d2-2822857998 .fill-N6{fill:#EEF1F8;} + .d2-2822857998 .fill-N7{fill:#FFFFFF;} + .d2-2822857998 .fill-B1{fill:#0D32B2;} + .d2-2822857998 .fill-B2{fill:#0D32B2;} + .d2-2822857998 .fill-B3{fill:#E3E9FD;} + .d2-2822857998 .fill-B4{fill:#E3E9FD;} + .d2-2822857998 .fill-B5{fill:#EDF0FD;} + .d2-2822857998 .fill-B6{fill:#F7F8FE;} + .d2-2822857998 .fill-AA2{fill:#4A6FF3;} + .d2-2822857998 .fill-AA4{fill:#EDF0FD;} + .d2-2822857998 .fill-AA5{fill:#F7F8FE;} + .d2-2822857998 .fill-AB4{fill:#EDF0FD;} + .d2-2822857998 .fill-AB5{fill:#F7F8FE;} + .d2-2822857998 .stroke-N1{stroke:#0A0F25;} + .d2-2822857998 .stroke-N2{stroke:#676C7E;} + .d2-2822857998 .stroke-N3{stroke:#9499AB;} + .d2-2822857998 .stroke-N4{stroke:#CFD2DD;} + .d2-2822857998 .stroke-N5{stroke:#DEE1EB;} + .d2-2822857998 .stroke-N6{stroke:#EEF1F8;} + .d2-2822857998 .stroke-N7{stroke:#FFFFFF;} + .d2-2822857998 .stroke-B1{stroke:#0D32B2;} + .d2-2822857998 .stroke-B2{stroke:#0D32B2;} + .d2-2822857998 .stroke-B3{stroke:#E3E9FD;} + .d2-2822857998 .stroke-B4{stroke:#E3E9FD;} + .d2-2822857998 .stroke-B5{stroke:#EDF0FD;} + .d2-2822857998 .stroke-B6{stroke:#F7F8FE;} + .d2-2822857998 .stroke-AA2{stroke:#4A6FF3;} + .d2-2822857998 .stroke-AA4{stroke:#EDF0FD;} + .d2-2822857998 .stroke-AA5{stroke:#F7F8FE;} + .d2-2822857998 .stroke-AB4{stroke:#EDF0FD;} + .d2-2822857998 .stroke-AB5{stroke:#F7F8FE;} + .d2-2822857998 .background-color-N1{background-color:#0A0F25;} + .d2-2822857998 .background-color-N2{background-color:#676C7E;} + .d2-2822857998 .background-color-N3{background-color:#9499AB;} + .d2-2822857998 .background-color-N4{background-color:#CFD2DD;} + .d2-2822857998 .background-color-N5{background-color:#DEE1EB;} + .d2-2822857998 .background-color-N6{background-color:#EEF1F8;} + .d2-2822857998 .background-color-N7{background-color:#FFFFFF;} + .d2-2822857998 .background-color-B1{background-color:#0D32B2;} + .d2-2822857998 .background-color-B2{background-color:#0D32B2;} + .d2-2822857998 .background-color-B3{background-color:#E3E9FD;} + .d2-2822857998 .background-color-B4{background-color:#E3E9FD;} + .d2-2822857998 .background-color-B5{background-color:#EDF0FD;} + .d2-2822857998 .background-color-B6{background-color:#F7F8FE;} + .d2-2822857998 .background-color-AA2{background-color:#4A6FF3;} + .d2-2822857998 .background-color-AA4{background-color:#EDF0FD;} + .d2-2822857998 .background-color-AA5{background-color:#F7F8FE;} + .d2-2822857998 .background-color-AB4{background-color:#EDF0FD;} + .d2-2822857998 .background-color-AB5{background-color:#F7F8FE;} + .d2-2822857998 .color-N1{color:#0A0F25;} + .d2-2822857998 .color-N2{color:#676C7E;} + .d2-2822857998 .color-N3{color:#9499AB;} + .d2-2822857998 .color-N4{color:#CFD2DD;} + .d2-2822857998 .color-N5{color:#DEE1EB;} + .d2-2822857998 .color-N6{color:#EEF1F8;} + .d2-2822857998 .color-N7{color:#FFFFFF;} + .d2-2822857998 .color-B1{color:#0D32B2;} + .d2-2822857998 .color-B2{color:#0D32B2;} + .d2-2822857998 .color-B3{color:#E3E9FD;} + .d2-2822857998 .color-B4{color:#E3E9FD;} + .d2-2822857998 .color-B5{color:#EDF0FD;} + .d2-2822857998 .color-B6{color:#F7F8FE;} + .d2-2822857998 .color-AA2{color:#4A6FF3;} + .d2-2822857998 .color-AA4{color:#EDF0FD;} + .d2-2822857998 .color-AA5{color:#F7F8FE;} + .d2-2822857998 .color-AB4{color:#EDF0FD;} + .d2-2822857998 .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}]]>bacthis is a message groupand this is a nested message groupwhat about more nestingyoyo diff --git a/e2etests/testdata/todo/sequence_diagram_edge_group_span_field/dagre/board.exp.json b/e2etests/testdata/todo/sequence_diagram_edge_group_span_field/dagre/board.exp.json index a92c297682..0e1672217f 100644 --- a/e2etests/testdata/todo/sequence_diagram_edge_group_span_field/dagre/board.exp.json +++ b/e2etests/testdata/todo/sequence_diagram_edge_group_span_field/dagre/board.exp.json @@ -357,6 +357,7 @@ "labelHeight": 21, "labelPosition": "INSIDE_MIDDLE_CENTER", "labelPercentage": 0, + "link": "", "route": [ { "x": 62, @@ -395,6 +396,7 @@ "labelHeight": 21, "labelPosition": "INSIDE_MIDDLE_CENTER", "labelPercentage": 0, + "link": "", "route": [ { "x": 309, @@ -433,6 +435,7 @@ "labelHeight": 21, "labelPosition": "INSIDE_MIDDLE_CENTER", "labelPercentage": 0, + "link": "", "route": [ { "x": 62, @@ -471,6 +474,7 @@ "labelHeight": 21, "labelPosition": "INSIDE_MIDDLE_CENTER", "labelPercentage": 0, + "link": "", "route": [ { "x": 303, @@ -509,6 +513,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 62, @@ -547,6 +552,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 309, diff --git a/e2etests/testdata/todo/sequence_diagram_edge_group_span_field/dagre/sketch.exp.svg b/e2etests/testdata/todo/sequence_diagram_edge_group_span_field/dagre/sketch.exp.svg index e5f4a40c2c..31bd210ded 100644 --- a/e2etests/testdata/todo/sequence_diagram_edge_group_span_field/dagre/sketch.exp.svg +++ b/e2etests/testdata/todo/sequence_diagram_edge_group_span_field/dagre/sketch.exp.svg @@ -1,16 +1,16 @@ -Office chatterAliceBobbyawkward small talkicebreaker attemptunfortunate outcome uhm, hioh, hellowhat did you have for lunch?that's personal + .d2-2918752435 .fill-N1{fill:#0A0F25;} + .d2-2918752435 .fill-N2{fill:#676C7E;} + .d2-2918752435 .fill-N3{fill:#9499AB;} + .d2-2918752435 .fill-N4{fill:#CFD2DD;} + .d2-2918752435 .fill-N5{fill:#DEE1EB;} + .d2-2918752435 .fill-N6{fill:#EEF1F8;} + .d2-2918752435 .fill-N7{fill:#FFFFFF;} + .d2-2918752435 .fill-B1{fill:#0D32B2;} + .d2-2918752435 .fill-B2{fill:#0D32B2;} + .d2-2918752435 .fill-B3{fill:#E3E9FD;} + .d2-2918752435 .fill-B4{fill:#E3E9FD;} + .d2-2918752435 .fill-B5{fill:#EDF0FD;} + .d2-2918752435 .fill-B6{fill:#F7F8FE;} + .d2-2918752435 .fill-AA2{fill:#4A6FF3;} + .d2-2918752435 .fill-AA4{fill:#EDF0FD;} + .d2-2918752435 .fill-AA5{fill:#F7F8FE;} + .d2-2918752435 .fill-AB4{fill:#EDF0FD;} + .d2-2918752435 .fill-AB5{fill:#F7F8FE;} + .d2-2918752435 .stroke-N1{stroke:#0A0F25;} + .d2-2918752435 .stroke-N2{stroke:#676C7E;} + .d2-2918752435 .stroke-N3{stroke:#9499AB;} + .d2-2918752435 .stroke-N4{stroke:#CFD2DD;} + .d2-2918752435 .stroke-N5{stroke:#DEE1EB;} + .d2-2918752435 .stroke-N6{stroke:#EEF1F8;} + .d2-2918752435 .stroke-N7{stroke:#FFFFFF;} + .d2-2918752435 .stroke-B1{stroke:#0D32B2;} + .d2-2918752435 .stroke-B2{stroke:#0D32B2;} + .d2-2918752435 .stroke-B3{stroke:#E3E9FD;} + .d2-2918752435 .stroke-B4{stroke:#E3E9FD;} + .d2-2918752435 .stroke-B5{stroke:#EDF0FD;} + .d2-2918752435 .stroke-B6{stroke:#F7F8FE;} + .d2-2918752435 .stroke-AA2{stroke:#4A6FF3;} + .d2-2918752435 .stroke-AA4{stroke:#EDF0FD;} + .d2-2918752435 .stroke-AA5{stroke:#F7F8FE;} + .d2-2918752435 .stroke-AB4{stroke:#EDF0FD;} + .d2-2918752435 .stroke-AB5{stroke:#F7F8FE;} + .d2-2918752435 .background-color-N1{background-color:#0A0F25;} + .d2-2918752435 .background-color-N2{background-color:#676C7E;} + .d2-2918752435 .background-color-N3{background-color:#9499AB;} + .d2-2918752435 .background-color-N4{background-color:#CFD2DD;} + .d2-2918752435 .background-color-N5{background-color:#DEE1EB;} + .d2-2918752435 .background-color-N6{background-color:#EEF1F8;} + .d2-2918752435 .background-color-N7{background-color:#FFFFFF;} + .d2-2918752435 .background-color-B1{background-color:#0D32B2;} + .d2-2918752435 .background-color-B2{background-color:#0D32B2;} + .d2-2918752435 .background-color-B3{background-color:#E3E9FD;} + .d2-2918752435 .background-color-B4{background-color:#E3E9FD;} + .d2-2918752435 .background-color-B5{background-color:#EDF0FD;} + .d2-2918752435 .background-color-B6{background-color:#F7F8FE;} + .d2-2918752435 .background-color-AA2{background-color:#4A6FF3;} + .d2-2918752435 .background-color-AA4{background-color:#EDF0FD;} + .d2-2918752435 .background-color-AA5{background-color:#F7F8FE;} + .d2-2918752435 .background-color-AB4{background-color:#EDF0FD;} + .d2-2918752435 .background-color-AB5{background-color:#F7F8FE;} + .d2-2918752435 .color-N1{color:#0A0F25;} + .d2-2918752435 .color-N2{color:#676C7E;} + .d2-2918752435 .color-N3{color:#9499AB;} + .d2-2918752435 .color-N4{color:#CFD2DD;} + .d2-2918752435 .color-N5{color:#DEE1EB;} + .d2-2918752435 .color-N6{color:#EEF1F8;} + .d2-2918752435 .color-N7{color:#FFFFFF;} + .d2-2918752435 .color-B1{color:#0D32B2;} + .d2-2918752435 .color-B2{color:#0D32B2;} + .d2-2918752435 .color-B3{color:#E3E9FD;} + .d2-2918752435 .color-B4{color:#E3E9FD;} + .d2-2918752435 .color-B5{color:#EDF0FD;} + .d2-2918752435 .color-B6{color:#F7F8FE;} + .d2-2918752435 .color-AA2{color:#4A6FF3;} + .d2-2918752435 .color-AA4{color:#EDF0FD;} + .d2-2918752435 .color-AA5{color:#F7F8FE;} + .d2-2918752435 .color-AB4{color:#EDF0FD;} + .d2-2918752435 .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}]]>Office chatterAliceBobbyawkward small talkicebreaker attemptunfortunate outcome uhm, hioh, hellowhat did you have for lunch?that's personal diff --git a/e2etests/testdata/todo/sequence_diagram_edge_group_span_field/elk/board.exp.json b/e2etests/testdata/todo/sequence_diagram_edge_group_span_field/elk/board.exp.json index 92d718973f..6f4efd8aed 100644 --- a/e2etests/testdata/todo/sequence_diagram_edge_group_span_field/elk/board.exp.json +++ b/e2etests/testdata/todo/sequence_diagram_edge_group_span_field/elk/board.exp.json @@ -357,6 +357,7 @@ "labelHeight": 21, "labelPosition": "INSIDE_MIDDLE_CENTER", "labelPercentage": 0, + "link": "", "route": [ { "x": 74, @@ -395,6 +396,7 @@ "labelHeight": 21, "labelPosition": "INSIDE_MIDDLE_CENTER", "labelPercentage": 0, + "link": "", "route": [ { "x": 321, @@ -433,6 +435,7 @@ "labelHeight": 21, "labelPosition": "INSIDE_MIDDLE_CENTER", "labelPercentage": 0, + "link": "", "route": [ { "x": 74, @@ -471,6 +474,7 @@ "labelHeight": 21, "labelPosition": "INSIDE_MIDDLE_CENTER", "labelPercentage": 0, + "link": "", "route": [ { "x": 315, @@ -509,6 +513,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 74, @@ -547,6 +552,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 321, diff --git a/e2etests/testdata/todo/sequence_diagram_edge_group_span_field/elk/sketch.exp.svg b/e2etests/testdata/todo/sequence_diagram_edge_group_span_field/elk/sketch.exp.svg index 6a7be5cdb2..2df7f27fff 100644 --- a/e2etests/testdata/todo/sequence_diagram_edge_group_span_field/elk/sketch.exp.svg +++ b/e2etests/testdata/todo/sequence_diagram_edge_group_span_field/elk/sketch.exp.svg @@ -1,16 +1,16 @@ -Office chatterAliceBobbyawkward small talkicebreaker attemptunfortunate outcome uhm, hioh, hellowhat did you have for lunch?that's personal + .d2-3429413863 .fill-N1{fill:#0A0F25;} + .d2-3429413863 .fill-N2{fill:#676C7E;} + .d2-3429413863 .fill-N3{fill:#9499AB;} + .d2-3429413863 .fill-N4{fill:#CFD2DD;} + .d2-3429413863 .fill-N5{fill:#DEE1EB;} + .d2-3429413863 .fill-N6{fill:#EEF1F8;} + .d2-3429413863 .fill-N7{fill:#FFFFFF;} + .d2-3429413863 .fill-B1{fill:#0D32B2;} + .d2-3429413863 .fill-B2{fill:#0D32B2;} + .d2-3429413863 .fill-B3{fill:#E3E9FD;} + .d2-3429413863 .fill-B4{fill:#E3E9FD;} + .d2-3429413863 .fill-B5{fill:#EDF0FD;} + .d2-3429413863 .fill-B6{fill:#F7F8FE;} + .d2-3429413863 .fill-AA2{fill:#4A6FF3;} + .d2-3429413863 .fill-AA4{fill:#EDF0FD;} + .d2-3429413863 .fill-AA5{fill:#F7F8FE;} + .d2-3429413863 .fill-AB4{fill:#EDF0FD;} + .d2-3429413863 .fill-AB5{fill:#F7F8FE;} + .d2-3429413863 .stroke-N1{stroke:#0A0F25;} + .d2-3429413863 .stroke-N2{stroke:#676C7E;} + .d2-3429413863 .stroke-N3{stroke:#9499AB;} + .d2-3429413863 .stroke-N4{stroke:#CFD2DD;} + .d2-3429413863 .stroke-N5{stroke:#DEE1EB;} + .d2-3429413863 .stroke-N6{stroke:#EEF1F8;} + .d2-3429413863 .stroke-N7{stroke:#FFFFFF;} + .d2-3429413863 .stroke-B1{stroke:#0D32B2;} + .d2-3429413863 .stroke-B2{stroke:#0D32B2;} + .d2-3429413863 .stroke-B3{stroke:#E3E9FD;} + .d2-3429413863 .stroke-B4{stroke:#E3E9FD;} + .d2-3429413863 .stroke-B5{stroke:#EDF0FD;} + .d2-3429413863 .stroke-B6{stroke:#F7F8FE;} + .d2-3429413863 .stroke-AA2{stroke:#4A6FF3;} + .d2-3429413863 .stroke-AA4{stroke:#EDF0FD;} + .d2-3429413863 .stroke-AA5{stroke:#F7F8FE;} + .d2-3429413863 .stroke-AB4{stroke:#EDF0FD;} + .d2-3429413863 .stroke-AB5{stroke:#F7F8FE;} + .d2-3429413863 .background-color-N1{background-color:#0A0F25;} + .d2-3429413863 .background-color-N2{background-color:#676C7E;} + .d2-3429413863 .background-color-N3{background-color:#9499AB;} + .d2-3429413863 .background-color-N4{background-color:#CFD2DD;} + .d2-3429413863 .background-color-N5{background-color:#DEE1EB;} + .d2-3429413863 .background-color-N6{background-color:#EEF1F8;} + .d2-3429413863 .background-color-N7{background-color:#FFFFFF;} + .d2-3429413863 .background-color-B1{background-color:#0D32B2;} + .d2-3429413863 .background-color-B2{background-color:#0D32B2;} + .d2-3429413863 .background-color-B3{background-color:#E3E9FD;} + .d2-3429413863 .background-color-B4{background-color:#E3E9FD;} + .d2-3429413863 .background-color-B5{background-color:#EDF0FD;} + .d2-3429413863 .background-color-B6{background-color:#F7F8FE;} + .d2-3429413863 .background-color-AA2{background-color:#4A6FF3;} + .d2-3429413863 .background-color-AA4{background-color:#EDF0FD;} + .d2-3429413863 .background-color-AA5{background-color:#F7F8FE;} + .d2-3429413863 .background-color-AB4{background-color:#EDF0FD;} + .d2-3429413863 .background-color-AB5{background-color:#F7F8FE;} + .d2-3429413863 .color-N1{color:#0A0F25;} + .d2-3429413863 .color-N2{color:#676C7E;} + .d2-3429413863 .color-N3{color:#9499AB;} + .d2-3429413863 .color-N4{color:#CFD2DD;} + .d2-3429413863 .color-N5{color:#DEE1EB;} + .d2-3429413863 .color-N6{color:#EEF1F8;} + .d2-3429413863 .color-N7{color:#FFFFFF;} + .d2-3429413863 .color-B1{color:#0D32B2;} + .d2-3429413863 .color-B2{color:#0D32B2;} + .d2-3429413863 .color-B3{color:#E3E9FD;} + .d2-3429413863 .color-B4{color:#E3E9FD;} + .d2-3429413863 .color-B5{color:#EDF0FD;} + .d2-3429413863 .color-B6{color:#F7F8FE;} + .d2-3429413863 .color-AA2{color:#4A6FF3;} + .d2-3429413863 .color-AA4{color:#EDF0FD;} + .d2-3429413863 .color-AA5{color:#F7F8FE;} + .d2-3429413863 .color-AB4{color:#EDF0FD;} + .d2-3429413863 .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}]]>Office chatterAliceBobbyawkward small talkicebreaker attemptunfortunate outcome uhm, hioh, hellowhat did you have for lunch?that's personal diff --git a/e2etests/testdata/todo/shape_set_width_height/dagre/board.exp.json b/e2etests/testdata/todo/shape_set_width_height/dagre/board.exp.json index 8003466c46..3984fb4eb1 100644 --- a/e2etests/testdata/todo/shape_set_width_height/dagre/board.exp.json +++ b/e2etests/testdata/todo/shape_set_width_height/dagre/board.exp.json @@ -900,6 +900,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 1228, @@ -959,6 +960,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 1228, @@ -1006,6 +1008,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 1228, @@ -1053,6 +1056,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 1888, @@ -1112,6 +1116,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 1888, @@ -1159,6 +1164,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 1888, diff --git a/e2etests/testdata/todo/shape_set_width_height/dagre/sketch.exp.svg b/e2etests/testdata/todo/shape_set_width_height/dagre/sketch.exp.svg index d688e69639..90ef46d939 100644 --- a/e2etests/testdata/todo/shape_set_width_height/dagre/sketch.exp.svg +++ b/e2etests/testdata/todo/shape_set_width_height/dagre/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

    @@ -859,7 +859,7 @@ := a + 7 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 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..7e143f961e 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 @@ -900,6 +900,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 1716, @@ -938,6 +939,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 1716, @@ -976,6 +978,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 1716, @@ -1014,6 +1017,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 2336, @@ -1052,6 +1056,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 2336, @@ -1090,6 +1095,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 2336, 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 40c8fc1b4b..6679f28001 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

    @@ -859,7 +859,7 @@ := a + 7 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 diff --git a/e2etests/testdata/txtar/bidirectional-connection-animation/dagre/board.exp.json b/e2etests/testdata/txtar/bidirectional-connection-animation/dagre/board.exp.json index 16c3d88b95..f272d8725b 100644 --- a/e2etests/testdata/txtar/bidirectional-connection-animation/dagre/board.exp.json +++ b/e2etests/testdata/txtar/bidirectional-connection-animation/dagre/board.exp.json @@ -356,6 +356,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 169.75, @@ -403,6 +404,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 173.5, @@ -450,6 +452,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 219, @@ -497,6 +500,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 222.5, @@ -544,6 +548,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 480, @@ -591,6 +596,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 619.166015625, diff --git a/e2etests/testdata/txtar/bidirectional-connection-animation/dagre/sketch.exp.svg b/e2etests/testdata/txtar/bidirectional-connection-animation/dagre/sketch.exp.svg index 8252cd4da6..b1df9a11fe 100644 --- a/e2etests/testdata/txtar/bidirectional-connection-animation/dagre/sketch.exp.svg +++ b/e2etests/testdata/txtar/bidirectional-connection-animation/dagre/sketch.exp.svg @@ -1,15 +1,15 @@ -abcdefgx + .d2-2370007998 .fill-N1{fill:#0A0F25;} + .d2-2370007998 .fill-N2{fill:#676C7E;} + .d2-2370007998 .fill-N3{fill:#9499AB;} + .d2-2370007998 .fill-N4{fill:#CFD2DD;} + .d2-2370007998 .fill-N5{fill:#DEE1EB;} + .d2-2370007998 .fill-N6{fill:#EEF1F8;} + .d2-2370007998 .fill-N7{fill:#FFFFFF;} + .d2-2370007998 .fill-B1{fill:#0D32B2;} + .d2-2370007998 .fill-B2{fill:#0D32B2;} + .d2-2370007998 .fill-B3{fill:#E3E9FD;} + .d2-2370007998 .fill-B4{fill:#E3E9FD;} + .d2-2370007998 .fill-B5{fill:#EDF0FD;} + .d2-2370007998 .fill-B6{fill:#F7F8FE;} + .d2-2370007998 .fill-AA2{fill:#4A6FF3;} + .d2-2370007998 .fill-AA4{fill:#EDF0FD;} + .d2-2370007998 .fill-AA5{fill:#F7F8FE;} + .d2-2370007998 .fill-AB4{fill:#EDF0FD;} + .d2-2370007998 .fill-AB5{fill:#F7F8FE;} + .d2-2370007998 .stroke-N1{stroke:#0A0F25;} + .d2-2370007998 .stroke-N2{stroke:#676C7E;} + .d2-2370007998 .stroke-N3{stroke:#9499AB;} + .d2-2370007998 .stroke-N4{stroke:#CFD2DD;} + .d2-2370007998 .stroke-N5{stroke:#DEE1EB;} + .d2-2370007998 .stroke-N6{stroke:#EEF1F8;} + .d2-2370007998 .stroke-N7{stroke:#FFFFFF;} + .d2-2370007998 .stroke-B1{stroke:#0D32B2;} + .d2-2370007998 .stroke-B2{stroke:#0D32B2;} + .d2-2370007998 .stroke-B3{stroke:#E3E9FD;} + .d2-2370007998 .stroke-B4{stroke:#E3E9FD;} + .d2-2370007998 .stroke-B5{stroke:#EDF0FD;} + .d2-2370007998 .stroke-B6{stroke:#F7F8FE;} + .d2-2370007998 .stroke-AA2{stroke:#4A6FF3;} + .d2-2370007998 .stroke-AA4{stroke:#EDF0FD;} + .d2-2370007998 .stroke-AA5{stroke:#F7F8FE;} + .d2-2370007998 .stroke-AB4{stroke:#EDF0FD;} + .d2-2370007998 .stroke-AB5{stroke:#F7F8FE;} + .d2-2370007998 .background-color-N1{background-color:#0A0F25;} + .d2-2370007998 .background-color-N2{background-color:#676C7E;} + .d2-2370007998 .background-color-N3{background-color:#9499AB;} + .d2-2370007998 .background-color-N4{background-color:#CFD2DD;} + .d2-2370007998 .background-color-N5{background-color:#DEE1EB;} + .d2-2370007998 .background-color-N6{background-color:#EEF1F8;} + .d2-2370007998 .background-color-N7{background-color:#FFFFFF;} + .d2-2370007998 .background-color-B1{background-color:#0D32B2;} + .d2-2370007998 .background-color-B2{background-color:#0D32B2;} + .d2-2370007998 .background-color-B3{background-color:#E3E9FD;} + .d2-2370007998 .background-color-B4{background-color:#E3E9FD;} + .d2-2370007998 .background-color-B5{background-color:#EDF0FD;} + .d2-2370007998 .background-color-B6{background-color:#F7F8FE;} + .d2-2370007998 .background-color-AA2{background-color:#4A6FF3;} + .d2-2370007998 .background-color-AA4{background-color:#EDF0FD;} + .d2-2370007998 .background-color-AA5{background-color:#F7F8FE;} + .d2-2370007998 .background-color-AB4{background-color:#EDF0FD;} + .d2-2370007998 .background-color-AB5{background-color:#F7F8FE;} + .d2-2370007998 .color-N1{color:#0A0F25;} + .d2-2370007998 .color-N2{color:#676C7E;} + .d2-2370007998 .color-N3{color:#9499AB;} + .d2-2370007998 .color-N4{color:#CFD2DD;} + .d2-2370007998 .color-N5{color:#DEE1EB;} + .d2-2370007998 .color-N6{color:#EEF1F8;} + .d2-2370007998 .color-N7{color:#FFFFFF;} + .d2-2370007998 .color-B1{color:#0D32B2;} + .d2-2370007998 .color-B2{color:#0D32B2;} + .d2-2370007998 .color-B3{color:#E3E9FD;} + .d2-2370007998 .color-B4{color:#E3E9FD;} + .d2-2370007998 .color-B5{color:#EDF0FD;} + .d2-2370007998 .color-B6{color:#F7F8FE;} + .d2-2370007998 .color-AA2{color:#4A6FF3;} + .d2-2370007998 .color-AA4{color:#EDF0FD;} + .d2-2370007998 .color-AA5{color:#F7F8FE;} + .d2-2370007998 .color-AB4{color:#EDF0FD;} + .d2-2370007998 .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}]]>abcdefgx diff --git a/e2etests/testdata/txtar/bidirectional-connection-animation/elk/board.exp.json b/e2etests/testdata/txtar/bidirectional-connection-animation/elk/board.exp.json index 85d12fc275..7669c1807b 100644 --- a/e2etests/testdata/txtar/bidirectional-connection-animation/elk/board.exp.json +++ b/e2etests/testdata/txtar/bidirectional-connection-animation/elk/board.exp.json @@ -356,6 +356,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 100.25, @@ -402,6 +403,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 132.25, @@ -448,6 +450,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 164.25, @@ -494,6 +497,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 196.25, @@ -540,6 +544,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 332, @@ -578,6 +583,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 427.5, diff --git a/e2etests/testdata/txtar/bidirectional-connection-animation/elk/sketch.exp.svg b/e2etests/testdata/txtar/bidirectional-connection-animation/elk/sketch.exp.svg index 5aa0736fc9..e19fc59e23 100644 --- a/e2etests/testdata/txtar/bidirectional-connection-animation/elk/sketch.exp.svg +++ b/e2etests/testdata/txtar/bidirectional-connection-animation/elk/sketch.exp.svg @@ -1,15 +1,15 @@ -abcdefgx + .d2-2806731084 .fill-N1{fill:#0A0F25;} + .d2-2806731084 .fill-N2{fill:#676C7E;} + .d2-2806731084 .fill-N3{fill:#9499AB;} + .d2-2806731084 .fill-N4{fill:#CFD2DD;} + .d2-2806731084 .fill-N5{fill:#DEE1EB;} + .d2-2806731084 .fill-N6{fill:#EEF1F8;} + .d2-2806731084 .fill-N7{fill:#FFFFFF;} + .d2-2806731084 .fill-B1{fill:#0D32B2;} + .d2-2806731084 .fill-B2{fill:#0D32B2;} + .d2-2806731084 .fill-B3{fill:#E3E9FD;} + .d2-2806731084 .fill-B4{fill:#E3E9FD;} + .d2-2806731084 .fill-B5{fill:#EDF0FD;} + .d2-2806731084 .fill-B6{fill:#F7F8FE;} + .d2-2806731084 .fill-AA2{fill:#4A6FF3;} + .d2-2806731084 .fill-AA4{fill:#EDF0FD;} + .d2-2806731084 .fill-AA5{fill:#F7F8FE;} + .d2-2806731084 .fill-AB4{fill:#EDF0FD;} + .d2-2806731084 .fill-AB5{fill:#F7F8FE;} + .d2-2806731084 .stroke-N1{stroke:#0A0F25;} + .d2-2806731084 .stroke-N2{stroke:#676C7E;} + .d2-2806731084 .stroke-N3{stroke:#9499AB;} + .d2-2806731084 .stroke-N4{stroke:#CFD2DD;} + .d2-2806731084 .stroke-N5{stroke:#DEE1EB;} + .d2-2806731084 .stroke-N6{stroke:#EEF1F8;} + .d2-2806731084 .stroke-N7{stroke:#FFFFFF;} + .d2-2806731084 .stroke-B1{stroke:#0D32B2;} + .d2-2806731084 .stroke-B2{stroke:#0D32B2;} + .d2-2806731084 .stroke-B3{stroke:#E3E9FD;} + .d2-2806731084 .stroke-B4{stroke:#E3E9FD;} + .d2-2806731084 .stroke-B5{stroke:#EDF0FD;} + .d2-2806731084 .stroke-B6{stroke:#F7F8FE;} + .d2-2806731084 .stroke-AA2{stroke:#4A6FF3;} + .d2-2806731084 .stroke-AA4{stroke:#EDF0FD;} + .d2-2806731084 .stroke-AA5{stroke:#F7F8FE;} + .d2-2806731084 .stroke-AB4{stroke:#EDF0FD;} + .d2-2806731084 .stroke-AB5{stroke:#F7F8FE;} + .d2-2806731084 .background-color-N1{background-color:#0A0F25;} + .d2-2806731084 .background-color-N2{background-color:#676C7E;} + .d2-2806731084 .background-color-N3{background-color:#9499AB;} + .d2-2806731084 .background-color-N4{background-color:#CFD2DD;} + .d2-2806731084 .background-color-N5{background-color:#DEE1EB;} + .d2-2806731084 .background-color-N6{background-color:#EEF1F8;} + .d2-2806731084 .background-color-N7{background-color:#FFFFFF;} + .d2-2806731084 .background-color-B1{background-color:#0D32B2;} + .d2-2806731084 .background-color-B2{background-color:#0D32B2;} + .d2-2806731084 .background-color-B3{background-color:#E3E9FD;} + .d2-2806731084 .background-color-B4{background-color:#E3E9FD;} + .d2-2806731084 .background-color-B5{background-color:#EDF0FD;} + .d2-2806731084 .background-color-B6{background-color:#F7F8FE;} + .d2-2806731084 .background-color-AA2{background-color:#4A6FF3;} + .d2-2806731084 .background-color-AA4{background-color:#EDF0FD;} + .d2-2806731084 .background-color-AA5{background-color:#F7F8FE;} + .d2-2806731084 .background-color-AB4{background-color:#EDF0FD;} + .d2-2806731084 .background-color-AB5{background-color:#F7F8FE;} + .d2-2806731084 .color-N1{color:#0A0F25;} + .d2-2806731084 .color-N2{color:#676C7E;} + .d2-2806731084 .color-N3{color:#9499AB;} + .d2-2806731084 .color-N4{color:#CFD2DD;} + .d2-2806731084 .color-N5{color:#DEE1EB;} + .d2-2806731084 .color-N6{color:#EEF1F8;} + .d2-2806731084 .color-N7{color:#FFFFFF;} + .d2-2806731084 .color-B1{color:#0D32B2;} + .d2-2806731084 .color-B2{color:#0D32B2;} + .d2-2806731084 .color-B3{color:#E3E9FD;} + .d2-2806731084 .color-B4{color:#E3E9FD;} + .d2-2806731084 .color-B5{color:#EDF0FD;} + .d2-2806731084 .color-B6{color:#F7F8FE;} + .d2-2806731084 .color-AA2{color:#4A6FF3;} + .d2-2806731084 .color-AA4{color:#EDF0FD;} + .d2-2806731084 .color-AA5{color:#F7F8FE;} + .d2-2806731084 .color-AB4{color:#EDF0FD;} + .d2-2806731084 .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}]]>abcdefgx diff --git a/e2etests/testdata/txtar/connection-style-fill/dagre/board.exp.json b/e2etests/testdata/txtar/connection-style-fill/dagre/board.exp.json index c9a07c69ab..093133bd4c 100644 --- a/e2etests/testdata/txtar/connection-style-fill/dagre/board.exp.json +++ b/e2etests/testdata/txtar/connection-style-fill/dagre/board.exp.json @@ -275,6 +275,7 @@ "labelHeight": 21, "labelPosition": "INSIDE_MIDDLE_CENTER", "labelPercentage": 0, + "link": "", "route": [ { "x": 66.5, @@ -314,6 +315,7 @@ "labelHeight": 21, "labelPosition": "INSIDE_MIDDLE_CENTER", "labelPercentage": 0, + "link": "", "route": [ { "x": 217, @@ -353,6 +355,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 367, @@ -392,6 +395,7 @@ "labelHeight": 21, "labelPosition": "INSIDE_MIDDLE_CENTER", "labelPercentage": 0, + "link": "", "route": [ { "x": 217, @@ -431,6 +435,7 @@ "labelHeight": 21, "labelPosition": "INSIDE_MIDDLE_CENTER", "labelPercentage": 0, + "link": "", "route": [ { "x": 367, @@ -470,6 +475,7 @@ "labelHeight": 21, "labelPosition": "INSIDE_MIDDLE_CENTER", "labelPercentage": 0, + "link": "", "route": [ { "x": 517, @@ -509,6 +515,7 @@ "labelHeight": 21, "labelPosition": "INSIDE_MIDDLE_CENTER", "labelPercentage": 0, + "link": "", "route": [ { "x": 66.5, @@ -548,6 +555,7 @@ "labelHeight": 37, "labelPosition": "INSIDE_MIDDLE_CENTER", "labelPercentage": 0, + "link": "", "route": [ { "x": 667, @@ -587,6 +595,7 @@ "labelHeight": 37, "labelPosition": "INSIDE_MIDDLE_CENTER", "labelPercentage": 0, + "link": "", "route": [ { "x": 908, @@ -625,6 +634,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 66.5, @@ -663,6 +673,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 217, @@ -701,6 +712,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 367, @@ -739,6 +751,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 517, @@ -777,6 +790,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 667, @@ -815,6 +829,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 908, diff --git a/e2etests/testdata/txtar/connection-style-fill/dagre/sketch.exp.svg b/e2etests/testdata/txtar/connection-style-fill/dagre/sketch.exp.svg index 669faa77bf..d43b8e8232 100644 --- a/e2etests/testdata/txtar/connection-style-fill/dagre/sketch.exp.svg +++ b/e2etests/testdata/txtar/connection-style-fill/dagre/sketch.exp.svg @@ -1,16 +1,16 @@ -customeremployeerentalitemalicebob rent(this, i, p)new(this, i, p)isValid()isRentable(c)is(Adult)trueWhat does it meanto be well-adjusted?The ability to play bridge orgolf as if they were games. + .d2-34624858 .fill-N1{fill:#0A0F25;} + .d2-34624858 .fill-N2{fill:#676C7E;} + .d2-34624858 .fill-N3{fill:#9499AB;} + .d2-34624858 .fill-N4{fill:#CFD2DD;} + .d2-34624858 .fill-N5{fill:#DEE1EB;} + .d2-34624858 .fill-N6{fill:#EEF1F8;} + .d2-34624858 .fill-N7{fill:#FFFFFF;} + .d2-34624858 .fill-B1{fill:#0D32B2;} + .d2-34624858 .fill-B2{fill:#0D32B2;} + .d2-34624858 .fill-B3{fill:#E3E9FD;} + .d2-34624858 .fill-B4{fill:#E3E9FD;} + .d2-34624858 .fill-B5{fill:#EDF0FD;} + .d2-34624858 .fill-B6{fill:#F7F8FE;} + .d2-34624858 .fill-AA2{fill:#4A6FF3;} + .d2-34624858 .fill-AA4{fill:#EDF0FD;} + .d2-34624858 .fill-AA5{fill:#F7F8FE;} + .d2-34624858 .fill-AB4{fill:#EDF0FD;} + .d2-34624858 .fill-AB5{fill:#F7F8FE;} + .d2-34624858 .stroke-N1{stroke:#0A0F25;} + .d2-34624858 .stroke-N2{stroke:#676C7E;} + .d2-34624858 .stroke-N3{stroke:#9499AB;} + .d2-34624858 .stroke-N4{stroke:#CFD2DD;} + .d2-34624858 .stroke-N5{stroke:#DEE1EB;} + .d2-34624858 .stroke-N6{stroke:#EEF1F8;} + .d2-34624858 .stroke-N7{stroke:#FFFFFF;} + .d2-34624858 .stroke-B1{stroke:#0D32B2;} + .d2-34624858 .stroke-B2{stroke:#0D32B2;} + .d2-34624858 .stroke-B3{stroke:#E3E9FD;} + .d2-34624858 .stroke-B4{stroke:#E3E9FD;} + .d2-34624858 .stroke-B5{stroke:#EDF0FD;} + .d2-34624858 .stroke-B6{stroke:#F7F8FE;} + .d2-34624858 .stroke-AA2{stroke:#4A6FF3;} + .d2-34624858 .stroke-AA4{stroke:#EDF0FD;} + .d2-34624858 .stroke-AA5{stroke:#F7F8FE;} + .d2-34624858 .stroke-AB4{stroke:#EDF0FD;} + .d2-34624858 .stroke-AB5{stroke:#F7F8FE;} + .d2-34624858 .background-color-N1{background-color:#0A0F25;} + .d2-34624858 .background-color-N2{background-color:#676C7E;} + .d2-34624858 .background-color-N3{background-color:#9499AB;} + .d2-34624858 .background-color-N4{background-color:#CFD2DD;} + .d2-34624858 .background-color-N5{background-color:#DEE1EB;} + .d2-34624858 .background-color-N6{background-color:#EEF1F8;} + .d2-34624858 .background-color-N7{background-color:#FFFFFF;} + .d2-34624858 .background-color-B1{background-color:#0D32B2;} + .d2-34624858 .background-color-B2{background-color:#0D32B2;} + .d2-34624858 .background-color-B3{background-color:#E3E9FD;} + .d2-34624858 .background-color-B4{background-color:#E3E9FD;} + .d2-34624858 .background-color-B5{background-color:#EDF0FD;} + .d2-34624858 .background-color-B6{background-color:#F7F8FE;} + .d2-34624858 .background-color-AA2{background-color:#4A6FF3;} + .d2-34624858 .background-color-AA4{background-color:#EDF0FD;} + .d2-34624858 .background-color-AA5{background-color:#F7F8FE;} + .d2-34624858 .background-color-AB4{background-color:#EDF0FD;} + .d2-34624858 .background-color-AB5{background-color:#F7F8FE;} + .d2-34624858 .color-N1{color:#0A0F25;} + .d2-34624858 .color-N2{color:#676C7E;} + .d2-34624858 .color-N3{color:#9499AB;} + .d2-34624858 .color-N4{color:#CFD2DD;} + .d2-34624858 .color-N5{color:#DEE1EB;} + .d2-34624858 .color-N6{color:#EEF1F8;} + .d2-34624858 .color-N7{color:#FFFFFF;} + .d2-34624858 .color-B1{color:#0D32B2;} + .d2-34624858 .color-B2{color:#0D32B2;} + .d2-34624858 .color-B3{color:#E3E9FD;} + .d2-34624858 .color-B4{color:#E3E9FD;} + .d2-34624858 .color-B5{color:#EDF0FD;} + .d2-34624858 .color-B6{color:#F7F8FE;} + .d2-34624858 .color-AA2{color:#4A6FF3;} + .d2-34624858 .color-AA4{color:#EDF0FD;} + .d2-34624858 .color-AA5{color:#F7F8FE;} + .d2-34624858 .color-AB4{color:#EDF0FD;} + .d2-34624858 .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}]]>customeremployeerentalitemalicebob rent(this, i, p)new(this, i, p)isValid()isRentable(c)is(Adult)trueWhat does it meanto be well-adjusted?The ability to play bridge orgolf as if they were games. diff --git a/e2etests/testdata/txtar/connection-style-fill/elk/board.exp.json b/e2etests/testdata/txtar/connection-style-fill/elk/board.exp.json index c9a07c69ab..093133bd4c 100644 --- a/e2etests/testdata/txtar/connection-style-fill/elk/board.exp.json +++ b/e2etests/testdata/txtar/connection-style-fill/elk/board.exp.json @@ -275,6 +275,7 @@ "labelHeight": 21, "labelPosition": "INSIDE_MIDDLE_CENTER", "labelPercentage": 0, + "link": "", "route": [ { "x": 66.5, @@ -314,6 +315,7 @@ "labelHeight": 21, "labelPosition": "INSIDE_MIDDLE_CENTER", "labelPercentage": 0, + "link": "", "route": [ { "x": 217, @@ -353,6 +355,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 367, @@ -392,6 +395,7 @@ "labelHeight": 21, "labelPosition": "INSIDE_MIDDLE_CENTER", "labelPercentage": 0, + "link": "", "route": [ { "x": 217, @@ -431,6 +435,7 @@ "labelHeight": 21, "labelPosition": "INSIDE_MIDDLE_CENTER", "labelPercentage": 0, + "link": "", "route": [ { "x": 367, @@ -470,6 +475,7 @@ "labelHeight": 21, "labelPosition": "INSIDE_MIDDLE_CENTER", "labelPercentage": 0, + "link": "", "route": [ { "x": 517, @@ -509,6 +515,7 @@ "labelHeight": 21, "labelPosition": "INSIDE_MIDDLE_CENTER", "labelPercentage": 0, + "link": "", "route": [ { "x": 66.5, @@ -548,6 +555,7 @@ "labelHeight": 37, "labelPosition": "INSIDE_MIDDLE_CENTER", "labelPercentage": 0, + "link": "", "route": [ { "x": 667, @@ -587,6 +595,7 @@ "labelHeight": 37, "labelPosition": "INSIDE_MIDDLE_CENTER", "labelPercentage": 0, + "link": "", "route": [ { "x": 908, @@ -625,6 +634,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 66.5, @@ -663,6 +673,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 217, @@ -701,6 +712,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 367, @@ -739,6 +751,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 517, @@ -777,6 +790,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 667, @@ -815,6 +829,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 908, diff --git a/e2etests/testdata/txtar/connection-style-fill/elk/sketch.exp.svg b/e2etests/testdata/txtar/connection-style-fill/elk/sketch.exp.svg index 669faa77bf..d43b8e8232 100644 --- a/e2etests/testdata/txtar/connection-style-fill/elk/sketch.exp.svg +++ b/e2etests/testdata/txtar/connection-style-fill/elk/sketch.exp.svg @@ -1,16 +1,16 @@ -customeremployeerentalitemalicebob rent(this, i, p)new(this, i, p)isValid()isRentable(c)is(Adult)trueWhat does it meanto be well-adjusted?The ability to play bridge orgolf as if they were games. + .d2-34624858 .fill-N1{fill:#0A0F25;} + .d2-34624858 .fill-N2{fill:#676C7E;} + .d2-34624858 .fill-N3{fill:#9499AB;} + .d2-34624858 .fill-N4{fill:#CFD2DD;} + .d2-34624858 .fill-N5{fill:#DEE1EB;} + .d2-34624858 .fill-N6{fill:#EEF1F8;} + .d2-34624858 .fill-N7{fill:#FFFFFF;} + .d2-34624858 .fill-B1{fill:#0D32B2;} + .d2-34624858 .fill-B2{fill:#0D32B2;} + .d2-34624858 .fill-B3{fill:#E3E9FD;} + .d2-34624858 .fill-B4{fill:#E3E9FD;} + .d2-34624858 .fill-B5{fill:#EDF0FD;} + .d2-34624858 .fill-B6{fill:#F7F8FE;} + .d2-34624858 .fill-AA2{fill:#4A6FF3;} + .d2-34624858 .fill-AA4{fill:#EDF0FD;} + .d2-34624858 .fill-AA5{fill:#F7F8FE;} + .d2-34624858 .fill-AB4{fill:#EDF0FD;} + .d2-34624858 .fill-AB5{fill:#F7F8FE;} + .d2-34624858 .stroke-N1{stroke:#0A0F25;} + .d2-34624858 .stroke-N2{stroke:#676C7E;} + .d2-34624858 .stroke-N3{stroke:#9499AB;} + .d2-34624858 .stroke-N4{stroke:#CFD2DD;} + .d2-34624858 .stroke-N5{stroke:#DEE1EB;} + .d2-34624858 .stroke-N6{stroke:#EEF1F8;} + .d2-34624858 .stroke-N7{stroke:#FFFFFF;} + .d2-34624858 .stroke-B1{stroke:#0D32B2;} + .d2-34624858 .stroke-B2{stroke:#0D32B2;} + .d2-34624858 .stroke-B3{stroke:#E3E9FD;} + .d2-34624858 .stroke-B4{stroke:#E3E9FD;} + .d2-34624858 .stroke-B5{stroke:#EDF0FD;} + .d2-34624858 .stroke-B6{stroke:#F7F8FE;} + .d2-34624858 .stroke-AA2{stroke:#4A6FF3;} + .d2-34624858 .stroke-AA4{stroke:#EDF0FD;} + .d2-34624858 .stroke-AA5{stroke:#F7F8FE;} + .d2-34624858 .stroke-AB4{stroke:#EDF0FD;} + .d2-34624858 .stroke-AB5{stroke:#F7F8FE;} + .d2-34624858 .background-color-N1{background-color:#0A0F25;} + .d2-34624858 .background-color-N2{background-color:#676C7E;} + .d2-34624858 .background-color-N3{background-color:#9499AB;} + .d2-34624858 .background-color-N4{background-color:#CFD2DD;} + .d2-34624858 .background-color-N5{background-color:#DEE1EB;} + .d2-34624858 .background-color-N6{background-color:#EEF1F8;} + .d2-34624858 .background-color-N7{background-color:#FFFFFF;} + .d2-34624858 .background-color-B1{background-color:#0D32B2;} + .d2-34624858 .background-color-B2{background-color:#0D32B2;} + .d2-34624858 .background-color-B3{background-color:#E3E9FD;} + .d2-34624858 .background-color-B4{background-color:#E3E9FD;} + .d2-34624858 .background-color-B5{background-color:#EDF0FD;} + .d2-34624858 .background-color-B6{background-color:#F7F8FE;} + .d2-34624858 .background-color-AA2{background-color:#4A6FF3;} + .d2-34624858 .background-color-AA4{background-color:#EDF0FD;} + .d2-34624858 .background-color-AA5{background-color:#F7F8FE;} + .d2-34624858 .background-color-AB4{background-color:#EDF0FD;} + .d2-34624858 .background-color-AB5{background-color:#F7F8FE;} + .d2-34624858 .color-N1{color:#0A0F25;} + .d2-34624858 .color-N2{color:#676C7E;} + .d2-34624858 .color-N3{color:#9499AB;} + .d2-34624858 .color-N4{color:#CFD2DD;} + .d2-34624858 .color-N5{color:#DEE1EB;} + .d2-34624858 .color-N6{color:#EEF1F8;} + .d2-34624858 .color-N7{color:#FFFFFF;} + .d2-34624858 .color-B1{color:#0D32B2;} + .d2-34624858 .color-B2{color:#0D32B2;} + .d2-34624858 .color-B3{color:#E3E9FD;} + .d2-34624858 .color-B4{color:#E3E9FD;} + .d2-34624858 .color-B5{color:#EDF0FD;} + .d2-34624858 .color-B6{color:#F7F8FE;} + .d2-34624858 .color-AA2{color:#4A6FF3;} + .d2-34624858 .color-AA4{color:#EDF0FD;} + .d2-34624858 .color-AA5{color:#F7F8FE;} + .d2-34624858 .color-AB4{color:#EDF0FD;} + .d2-34624858 .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}]]>customeremployeerentalitemalicebob rent(this, i, p)new(this, i, p)isValid()isRentable(c)is(Adult)trueWhat does it meanto be well-adjusted?The ability to play bridge orgolf as if they were games. diff --git a/e2etests/testdata/txtar/connection-underline/dagre/board.exp.json b/e2etests/testdata/txtar/connection-underline/dagre/board.exp.json index 93d7d24b33..054c1fb287 100644 --- a/e2etests/testdata/txtar/connection-underline/dagre/board.exp.json +++ b/e2etests/testdata/txtar/connection-underline/dagre/board.exp.json @@ -110,6 +110,7 @@ "labelHeight": 21, "labelPosition": "INSIDE_MIDDLE_CENTER", "labelPercentage": 0, + "link": "", "route": [ { "x": 26.5, diff --git a/e2etests/testdata/txtar/connection-underline/dagre/sketch.exp.svg b/e2etests/testdata/txtar/connection-underline/dagre/sketch.exp.svg index 1bff84c0cb..df28d0a6b4 100644 --- a/e2etests/testdata/txtar/connection-underline/dagre/sketch.exp.svg +++ b/e2etests/testdata/txtar/connection-underline/dagre/sketch.exp.svg @@ -1,19 +1,19 @@ -ab hi + .d2-3212913988 .fill-N1{fill:#0A0F25;} + .d2-3212913988 .fill-N2{fill:#676C7E;} + .d2-3212913988 .fill-N3{fill:#9499AB;} + .d2-3212913988 .fill-N4{fill:#CFD2DD;} + .d2-3212913988 .fill-N5{fill:#DEE1EB;} + .d2-3212913988 .fill-N6{fill:#EEF1F8;} + .d2-3212913988 .fill-N7{fill:#FFFFFF;} + .d2-3212913988 .fill-B1{fill:#0D32B2;} + .d2-3212913988 .fill-B2{fill:#0D32B2;} + .d2-3212913988 .fill-B3{fill:#E3E9FD;} + .d2-3212913988 .fill-B4{fill:#E3E9FD;} + .d2-3212913988 .fill-B5{fill:#EDF0FD;} + .d2-3212913988 .fill-B6{fill:#F7F8FE;} + .d2-3212913988 .fill-AA2{fill:#4A6FF3;} + .d2-3212913988 .fill-AA4{fill:#EDF0FD;} + .d2-3212913988 .fill-AA5{fill:#F7F8FE;} + .d2-3212913988 .fill-AB4{fill:#EDF0FD;} + .d2-3212913988 .fill-AB5{fill:#F7F8FE;} + .d2-3212913988 .stroke-N1{stroke:#0A0F25;} + .d2-3212913988 .stroke-N2{stroke:#676C7E;} + .d2-3212913988 .stroke-N3{stroke:#9499AB;} + .d2-3212913988 .stroke-N4{stroke:#CFD2DD;} + .d2-3212913988 .stroke-N5{stroke:#DEE1EB;} + .d2-3212913988 .stroke-N6{stroke:#EEF1F8;} + .d2-3212913988 .stroke-N7{stroke:#FFFFFF;} + .d2-3212913988 .stroke-B1{stroke:#0D32B2;} + .d2-3212913988 .stroke-B2{stroke:#0D32B2;} + .d2-3212913988 .stroke-B3{stroke:#E3E9FD;} + .d2-3212913988 .stroke-B4{stroke:#E3E9FD;} + .d2-3212913988 .stroke-B5{stroke:#EDF0FD;} + .d2-3212913988 .stroke-B6{stroke:#F7F8FE;} + .d2-3212913988 .stroke-AA2{stroke:#4A6FF3;} + .d2-3212913988 .stroke-AA4{stroke:#EDF0FD;} + .d2-3212913988 .stroke-AA5{stroke:#F7F8FE;} + .d2-3212913988 .stroke-AB4{stroke:#EDF0FD;} + .d2-3212913988 .stroke-AB5{stroke:#F7F8FE;} + .d2-3212913988 .background-color-N1{background-color:#0A0F25;} + .d2-3212913988 .background-color-N2{background-color:#676C7E;} + .d2-3212913988 .background-color-N3{background-color:#9499AB;} + .d2-3212913988 .background-color-N4{background-color:#CFD2DD;} + .d2-3212913988 .background-color-N5{background-color:#DEE1EB;} + .d2-3212913988 .background-color-N6{background-color:#EEF1F8;} + .d2-3212913988 .background-color-N7{background-color:#FFFFFF;} + .d2-3212913988 .background-color-B1{background-color:#0D32B2;} + .d2-3212913988 .background-color-B2{background-color:#0D32B2;} + .d2-3212913988 .background-color-B3{background-color:#E3E9FD;} + .d2-3212913988 .background-color-B4{background-color:#E3E9FD;} + .d2-3212913988 .background-color-B5{background-color:#EDF0FD;} + .d2-3212913988 .background-color-B6{background-color:#F7F8FE;} + .d2-3212913988 .background-color-AA2{background-color:#4A6FF3;} + .d2-3212913988 .background-color-AA4{background-color:#EDF0FD;} + .d2-3212913988 .background-color-AA5{background-color:#F7F8FE;} + .d2-3212913988 .background-color-AB4{background-color:#EDF0FD;} + .d2-3212913988 .background-color-AB5{background-color:#F7F8FE;} + .d2-3212913988 .color-N1{color:#0A0F25;} + .d2-3212913988 .color-N2{color:#676C7E;} + .d2-3212913988 .color-N3{color:#9499AB;} + .d2-3212913988 .color-N4{color:#CFD2DD;} + .d2-3212913988 .color-N5{color:#DEE1EB;} + .d2-3212913988 .color-N6{color:#EEF1F8;} + .d2-3212913988 .color-N7{color:#FFFFFF;} + .d2-3212913988 .color-B1{color:#0D32B2;} + .d2-3212913988 .color-B2{color:#0D32B2;} + .d2-3212913988 .color-B3{color:#E3E9FD;} + .d2-3212913988 .color-B4{color:#E3E9FD;} + .d2-3212913988 .color-B5{color:#EDF0FD;} + .d2-3212913988 .color-B6{color:#F7F8FE;} + .d2-3212913988 .color-AA2{color:#4A6FF3;} + .d2-3212913988 .color-AA4{color:#EDF0FD;} + .d2-3212913988 .color-AA5{color:#F7F8FE;} + .d2-3212913988 .color-AB4{color:#EDF0FD;} + .d2-3212913988 .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}]]>ab hi diff --git a/e2etests/testdata/txtar/connection-underline/elk/board.exp.json b/e2etests/testdata/txtar/connection-underline/elk/board.exp.json index a1cde3b44c..595c1930bf 100644 --- a/e2etests/testdata/txtar/connection-underline/elk/board.exp.json +++ b/e2etests/testdata/txtar/connection-underline/elk/board.exp.json @@ -110,6 +110,7 @@ "labelHeight": 21, "labelPosition": "INSIDE_MIDDLE_CENTER", "labelPercentage": 0, + "link": "", "route": [ { "x": 38.5, diff --git a/e2etests/testdata/txtar/connection-underline/elk/sketch.exp.svg b/e2etests/testdata/txtar/connection-underline/elk/sketch.exp.svg index 36b87909ce..cc408dd202 100644 --- a/e2etests/testdata/txtar/connection-underline/elk/sketch.exp.svg +++ b/e2etests/testdata/txtar/connection-underline/elk/sketch.exp.svg @@ -1,19 +1,19 @@ -ab hi + .d2-3118103693 .fill-N1{fill:#0A0F25;} + .d2-3118103693 .fill-N2{fill:#676C7E;} + .d2-3118103693 .fill-N3{fill:#9499AB;} + .d2-3118103693 .fill-N4{fill:#CFD2DD;} + .d2-3118103693 .fill-N5{fill:#DEE1EB;} + .d2-3118103693 .fill-N6{fill:#EEF1F8;} + .d2-3118103693 .fill-N7{fill:#FFFFFF;} + .d2-3118103693 .fill-B1{fill:#0D32B2;} + .d2-3118103693 .fill-B2{fill:#0D32B2;} + .d2-3118103693 .fill-B3{fill:#E3E9FD;} + .d2-3118103693 .fill-B4{fill:#E3E9FD;} + .d2-3118103693 .fill-B5{fill:#EDF0FD;} + .d2-3118103693 .fill-B6{fill:#F7F8FE;} + .d2-3118103693 .fill-AA2{fill:#4A6FF3;} + .d2-3118103693 .fill-AA4{fill:#EDF0FD;} + .d2-3118103693 .fill-AA5{fill:#F7F8FE;} + .d2-3118103693 .fill-AB4{fill:#EDF0FD;} + .d2-3118103693 .fill-AB5{fill:#F7F8FE;} + .d2-3118103693 .stroke-N1{stroke:#0A0F25;} + .d2-3118103693 .stroke-N2{stroke:#676C7E;} + .d2-3118103693 .stroke-N3{stroke:#9499AB;} + .d2-3118103693 .stroke-N4{stroke:#CFD2DD;} + .d2-3118103693 .stroke-N5{stroke:#DEE1EB;} + .d2-3118103693 .stroke-N6{stroke:#EEF1F8;} + .d2-3118103693 .stroke-N7{stroke:#FFFFFF;} + .d2-3118103693 .stroke-B1{stroke:#0D32B2;} + .d2-3118103693 .stroke-B2{stroke:#0D32B2;} + .d2-3118103693 .stroke-B3{stroke:#E3E9FD;} + .d2-3118103693 .stroke-B4{stroke:#E3E9FD;} + .d2-3118103693 .stroke-B5{stroke:#EDF0FD;} + .d2-3118103693 .stroke-B6{stroke:#F7F8FE;} + .d2-3118103693 .stroke-AA2{stroke:#4A6FF3;} + .d2-3118103693 .stroke-AA4{stroke:#EDF0FD;} + .d2-3118103693 .stroke-AA5{stroke:#F7F8FE;} + .d2-3118103693 .stroke-AB4{stroke:#EDF0FD;} + .d2-3118103693 .stroke-AB5{stroke:#F7F8FE;} + .d2-3118103693 .background-color-N1{background-color:#0A0F25;} + .d2-3118103693 .background-color-N2{background-color:#676C7E;} + .d2-3118103693 .background-color-N3{background-color:#9499AB;} + .d2-3118103693 .background-color-N4{background-color:#CFD2DD;} + .d2-3118103693 .background-color-N5{background-color:#DEE1EB;} + .d2-3118103693 .background-color-N6{background-color:#EEF1F8;} + .d2-3118103693 .background-color-N7{background-color:#FFFFFF;} + .d2-3118103693 .background-color-B1{background-color:#0D32B2;} + .d2-3118103693 .background-color-B2{background-color:#0D32B2;} + .d2-3118103693 .background-color-B3{background-color:#E3E9FD;} + .d2-3118103693 .background-color-B4{background-color:#E3E9FD;} + .d2-3118103693 .background-color-B5{background-color:#EDF0FD;} + .d2-3118103693 .background-color-B6{background-color:#F7F8FE;} + .d2-3118103693 .background-color-AA2{background-color:#4A6FF3;} + .d2-3118103693 .background-color-AA4{background-color:#EDF0FD;} + .d2-3118103693 .background-color-AA5{background-color:#F7F8FE;} + .d2-3118103693 .background-color-AB4{background-color:#EDF0FD;} + .d2-3118103693 .background-color-AB5{background-color:#F7F8FE;} + .d2-3118103693 .color-N1{color:#0A0F25;} + .d2-3118103693 .color-N2{color:#676C7E;} + .d2-3118103693 .color-N3{color:#9499AB;} + .d2-3118103693 .color-N4{color:#CFD2DD;} + .d2-3118103693 .color-N5{color:#DEE1EB;} + .d2-3118103693 .color-N6{color:#EEF1F8;} + .d2-3118103693 .color-N7{color:#FFFFFF;} + .d2-3118103693 .color-B1{color:#0D32B2;} + .d2-3118103693 .color-B2{color:#0D32B2;} + .d2-3118103693 .color-B3{color:#E3E9FD;} + .d2-3118103693 .color-B4{color:#E3E9FD;} + .d2-3118103693 .color-B5{color:#EDF0FD;} + .d2-3118103693 .color-B6{color:#F7F8FE;} + .d2-3118103693 .color-AA2{color:#4A6FF3;} + .d2-3118103693 .color-AA4{color:#EDF0FD;} + .d2-3118103693 .color-AA5{color:#F7F8FE;} + .d2-3118103693 .color-AB4{color:#EDF0FD;} + .d2-3118103693 .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}]]>ab hi diff --git a/e2etests/testdata/txtar/extended-ascii/dagre/board.exp.json b/e2etests/testdata/txtar/extended-ascii/dagre/board.exp.json index f9ec463121..c0249aaac2 100644 --- a/e2etests/testdata/txtar/extended-ascii/dagre/board.exp.json +++ b/e2etests/testdata/txtar/extended-ascii/dagre/board.exp.json @@ -188,6 +188,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 75, @@ -235,6 +236,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 42, @@ -282,6 +284,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 42, @@ -329,6 +332,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 91, diff --git a/e2etests/testdata/txtar/extended-ascii/dagre/sketch.exp.svg b/e2etests/testdata/txtar/extended-ascii/dagre/sketch.exp.svg index ca3a9cd00f..a95d2feff6 100644 --- a/e2etests/testdata/txtar/extended-ascii/dagre/sketch.exp.svg +++ b/e2etests/testdata/txtar/extended-ascii/dagre/sketch.exp.svg @@ -1,13 +1,13 @@ -

    ÇéþüðæØÅßñò

    òØõùßÍÿåÆ

    çÆÐÞ©ßþúí

    ÉáøÿÑö

    -
    +
    diff --git a/e2etests/testdata/txtar/extended-ascii/elk/board.exp.json b/e2etests/testdata/txtar/extended-ascii/elk/board.exp.json index 8c98196d60..8fdf429720 100644 --- a/e2etests/testdata/txtar/extended-ascii/elk/board.exp.json +++ b/e2etests/testdata/txtar/extended-ascii/elk/board.exp.json @@ -188,6 +188,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 78, @@ -226,6 +227,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 54, @@ -264,6 +266,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 54, @@ -310,6 +313,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 103.66600036621094, diff --git a/e2etests/testdata/txtar/extended-ascii/elk/sketch.exp.svg b/e2etests/testdata/txtar/extended-ascii/elk/sketch.exp.svg index 25cf0bc58c..204d647727 100644 --- a/e2etests/testdata/txtar/extended-ascii/elk/sketch.exp.svg +++ b/e2etests/testdata/txtar/extended-ascii/elk/sketch.exp.svg @@ -1,13 +1,13 @@ -

    ÇéþüðæØÅßñò

    òØõùßÍÿåÆ

    çÆÐÞ©ßþúí

    ÉáøÿÑö

    -
    +
    diff --git a/e2etests/testdata/txtar/gradient/dagre/board.exp.json b/e2etests/testdata/txtar/gradient/dagre/board.exp.json index acf4fd6f65..097a97561b 100644 --- a/e2etests/testdata/txtar/gradient/dagre/board.exp.json +++ b/e2etests/testdata/txtar/gradient/dagre/board.exp.json @@ -110,6 +110,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 53, diff --git a/e2etests/testdata/txtar/gradient/dagre/sketch.exp.svg b/e2etests/testdata/txtar/gradient/dagre/sketch.exp.svg index 0a4a198732..821757006b 100644 --- a/e2etests/testdata/txtar/gradient/dagre/sketch.exp.svg +++ b/e2etests/testdata/txtar/gradient/dagre/sketch.exp.svg @@ -1,9 +1,9 @@ - + .d2-4189426944 .fill-N1{fill:#0A0F25;} + .d2-4189426944 .fill-N2{fill:#676C7E;} + .d2-4189426944 .fill-N3{fill:#9499AB;} + .d2-4189426944 .fill-N4{fill:#CFD2DD;} + .d2-4189426944 .fill-N5{fill:#DEE1EB;} + .d2-4189426944 .fill-N6{fill:#EEF1F8;} + .d2-4189426944 .fill-N7{fill:#FFFFFF;} + .d2-4189426944 .fill-B1{fill:#0D32B2;} + .d2-4189426944 .fill-B2{fill:#0D32B2;} + .d2-4189426944 .fill-B3{fill:#E3E9FD;} + .d2-4189426944 .fill-B4{fill:#E3E9FD;} + .d2-4189426944 .fill-B5{fill:#EDF0FD;} + .d2-4189426944 .fill-B6{fill:#F7F8FE;} + .d2-4189426944 .fill-AA2{fill:#4A6FF3;} + .d2-4189426944 .fill-AA4{fill:#EDF0FD;} + .d2-4189426944 .fill-AA5{fill:#F7F8FE;} + .d2-4189426944 .fill-AB4{fill:#EDF0FD;} + .d2-4189426944 .fill-AB5{fill:#F7F8FE;} + .d2-4189426944 .stroke-N1{stroke:#0A0F25;} + .d2-4189426944 .stroke-N2{stroke:#676C7E;} + .d2-4189426944 .stroke-N3{stroke:#9499AB;} + .d2-4189426944 .stroke-N4{stroke:#CFD2DD;} + .d2-4189426944 .stroke-N5{stroke:#DEE1EB;} + .d2-4189426944 .stroke-N6{stroke:#EEF1F8;} + .d2-4189426944 .stroke-N7{stroke:#FFFFFF;} + .d2-4189426944 .stroke-B1{stroke:#0D32B2;} + .d2-4189426944 .stroke-B2{stroke:#0D32B2;} + .d2-4189426944 .stroke-B3{stroke:#E3E9FD;} + .d2-4189426944 .stroke-B4{stroke:#E3E9FD;} + .d2-4189426944 .stroke-B5{stroke:#EDF0FD;} + .d2-4189426944 .stroke-B6{stroke:#F7F8FE;} + .d2-4189426944 .stroke-AA2{stroke:#4A6FF3;} + .d2-4189426944 .stroke-AA4{stroke:#EDF0FD;} + .d2-4189426944 .stroke-AA5{stroke:#F7F8FE;} + .d2-4189426944 .stroke-AB4{stroke:#EDF0FD;} + .d2-4189426944 .stroke-AB5{stroke:#F7F8FE;} + .d2-4189426944 .background-color-N1{background-color:#0A0F25;} + .d2-4189426944 .background-color-N2{background-color:#676C7E;} + .d2-4189426944 .background-color-N3{background-color:#9499AB;} + .d2-4189426944 .background-color-N4{background-color:#CFD2DD;} + .d2-4189426944 .background-color-N5{background-color:#DEE1EB;} + .d2-4189426944 .background-color-N6{background-color:#EEF1F8;} + .d2-4189426944 .background-color-N7{background-color:#FFFFFF;} + .d2-4189426944 .background-color-B1{background-color:#0D32B2;} + .d2-4189426944 .background-color-B2{background-color:#0D32B2;} + .d2-4189426944 .background-color-B3{background-color:#E3E9FD;} + .d2-4189426944 .background-color-B4{background-color:#E3E9FD;} + .d2-4189426944 .background-color-B5{background-color:#EDF0FD;} + .d2-4189426944 .background-color-B6{background-color:#F7F8FE;} + .d2-4189426944 .background-color-AA2{background-color:#4A6FF3;} + .d2-4189426944 .background-color-AA4{background-color:#EDF0FD;} + .d2-4189426944 .background-color-AA5{background-color:#F7F8FE;} + .d2-4189426944 .background-color-AB4{background-color:#EDF0FD;} + .d2-4189426944 .background-color-AB5{background-color:#F7F8FE;} + .d2-4189426944 .color-N1{color:#0A0F25;} + .d2-4189426944 .color-N2{color:#676C7E;} + .d2-4189426944 .color-N3{color:#9499AB;} + .d2-4189426944 .color-N4{color:#CFD2DD;} + .d2-4189426944 .color-N5{color:#DEE1EB;} + .d2-4189426944 .color-N6{color:#EEF1F8;} + .d2-4189426944 .color-N7{color:#FFFFFF;} + .d2-4189426944 .color-B1{color:#0D32B2;} + .d2-4189426944 .color-B2{color:#0D32B2;} + .d2-4189426944 .color-B3{color:#E3E9FD;} + .d2-4189426944 .color-B4{color:#E3E9FD;} + .d2-4189426944 .color-B5{color:#EDF0FD;} + .d2-4189426944 .color-B6{color:#F7F8FE;} + .d2-4189426944 .color-AA2{color:#4A6FF3;} + .d2-4189426944 .color-AA4{color:#EDF0FD;} + .d2-4189426944 .color-AA5{color:#F7F8FE;} + .d2-4189426944 .color-AB4{color:#EDF0FD;} + .d2-4189426944 .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}]]> @@ -118,7 +118,7 @@ -gradientcolors +gradientcolors diff --git a/e2etests/testdata/txtar/gradient/elk/board.exp.json b/e2etests/testdata/txtar/gradient/elk/board.exp.json index 7803d98f01..3ae1cd391c 100644 --- a/e2etests/testdata/txtar/gradient/elk/board.exp.json +++ b/e2etests/testdata/txtar/gradient/elk/board.exp.json @@ -110,6 +110,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 65, diff --git a/e2etests/testdata/txtar/gradient/elk/sketch.exp.svg b/e2etests/testdata/txtar/gradient/elk/sketch.exp.svg index 69988ed5f2..90261a4aaf 100644 --- a/e2etests/testdata/txtar/gradient/elk/sketch.exp.svg +++ b/e2etests/testdata/txtar/gradient/elk/sketch.exp.svg @@ -1,9 +1,9 @@ - + .d2-1687835247 .fill-N1{fill:#0A0F25;} + .d2-1687835247 .fill-N2{fill:#676C7E;} + .d2-1687835247 .fill-N3{fill:#9499AB;} + .d2-1687835247 .fill-N4{fill:#CFD2DD;} + .d2-1687835247 .fill-N5{fill:#DEE1EB;} + .d2-1687835247 .fill-N6{fill:#EEF1F8;} + .d2-1687835247 .fill-N7{fill:#FFFFFF;} + .d2-1687835247 .fill-B1{fill:#0D32B2;} + .d2-1687835247 .fill-B2{fill:#0D32B2;} + .d2-1687835247 .fill-B3{fill:#E3E9FD;} + .d2-1687835247 .fill-B4{fill:#E3E9FD;} + .d2-1687835247 .fill-B5{fill:#EDF0FD;} + .d2-1687835247 .fill-B6{fill:#F7F8FE;} + .d2-1687835247 .fill-AA2{fill:#4A6FF3;} + .d2-1687835247 .fill-AA4{fill:#EDF0FD;} + .d2-1687835247 .fill-AA5{fill:#F7F8FE;} + .d2-1687835247 .fill-AB4{fill:#EDF0FD;} + .d2-1687835247 .fill-AB5{fill:#F7F8FE;} + .d2-1687835247 .stroke-N1{stroke:#0A0F25;} + .d2-1687835247 .stroke-N2{stroke:#676C7E;} + .d2-1687835247 .stroke-N3{stroke:#9499AB;} + .d2-1687835247 .stroke-N4{stroke:#CFD2DD;} + .d2-1687835247 .stroke-N5{stroke:#DEE1EB;} + .d2-1687835247 .stroke-N6{stroke:#EEF1F8;} + .d2-1687835247 .stroke-N7{stroke:#FFFFFF;} + .d2-1687835247 .stroke-B1{stroke:#0D32B2;} + .d2-1687835247 .stroke-B2{stroke:#0D32B2;} + .d2-1687835247 .stroke-B3{stroke:#E3E9FD;} + .d2-1687835247 .stroke-B4{stroke:#E3E9FD;} + .d2-1687835247 .stroke-B5{stroke:#EDF0FD;} + .d2-1687835247 .stroke-B6{stroke:#F7F8FE;} + .d2-1687835247 .stroke-AA2{stroke:#4A6FF3;} + .d2-1687835247 .stroke-AA4{stroke:#EDF0FD;} + .d2-1687835247 .stroke-AA5{stroke:#F7F8FE;} + .d2-1687835247 .stroke-AB4{stroke:#EDF0FD;} + .d2-1687835247 .stroke-AB5{stroke:#F7F8FE;} + .d2-1687835247 .background-color-N1{background-color:#0A0F25;} + .d2-1687835247 .background-color-N2{background-color:#676C7E;} + .d2-1687835247 .background-color-N3{background-color:#9499AB;} + .d2-1687835247 .background-color-N4{background-color:#CFD2DD;} + .d2-1687835247 .background-color-N5{background-color:#DEE1EB;} + .d2-1687835247 .background-color-N6{background-color:#EEF1F8;} + .d2-1687835247 .background-color-N7{background-color:#FFFFFF;} + .d2-1687835247 .background-color-B1{background-color:#0D32B2;} + .d2-1687835247 .background-color-B2{background-color:#0D32B2;} + .d2-1687835247 .background-color-B3{background-color:#E3E9FD;} + .d2-1687835247 .background-color-B4{background-color:#E3E9FD;} + .d2-1687835247 .background-color-B5{background-color:#EDF0FD;} + .d2-1687835247 .background-color-B6{background-color:#F7F8FE;} + .d2-1687835247 .background-color-AA2{background-color:#4A6FF3;} + .d2-1687835247 .background-color-AA4{background-color:#EDF0FD;} + .d2-1687835247 .background-color-AA5{background-color:#F7F8FE;} + .d2-1687835247 .background-color-AB4{background-color:#EDF0FD;} + .d2-1687835247 .background-color-AB5{background-color:#F7F8FE;} + .d2-1687835247 .color-N1{color:#0A0F25;} + .d2-1687835247 .color-N2{color:#676C7E;} + .d2-1687835247 .color-N3{color:#9499AB;} + .d2-1687835247 .color-N4{color:#CFD2DD;} + .d2-1687835247 .color-N5{color:#DEE1EB;} + .d2-1687835247 .color-N6{color:#EEF1F8;} + .d2-1687835247 .color-N7{color:#FFFFFF;} + .d2-1687835247 .color-B1{color:#0D32B2;} + .d2-1687835247 .color-B2{color:#0D32B2;} + .d2-1687835247 .color-B3{color:#E3E9FD;} + .d2-1687835247 .color-B4{color:#E3E9FD;} + .d2-1687835247 .color-B5{color:#EDF0FD;} + .d2-1687835247 .color-B6{color:#F7F8FE;} + .d2-1687835247 .color-AA2{color:#4A6FF3;} + .d2-1687835247 .color-AA4{color:#EDF0FD;} + .d2-1687835247 .color-AA5{color:#F7F8FE;} + .d2-1687835247 .color-AB4{color:#EDF0FD;} + .d2-1687835247 .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}]]> @@ -118,7 +118,7 @@ -gradientcolors +gradientcolors diff --git a/e2etests/testdata/txtar/link-on-connections/dagre/board.exp.json b/e2etests/testdata/txtar/link-on-connections/dagre/board.exp.json new file mode 100644 index 0000000000..99d265e686 --- /dev/null +++ b/e2etests/testdata/txtar/link-on-connections/dagre/board.exp.json @@ -0,0 +1,359 @@ +{ + "name": "", + "isFolderOnly": false, + "fontFamily": "SourceSansPro", + "shapes": [ + { + "id": "a", + "type": "rectangle", + "pos": { + "x": 0, + "y": 0 + }, + "width": 53, + "height": 66, + "opacity": 1, + "strokeDash": 0, + "strokeWidth": 2, + "borderRadius": 0, + "fill": "B6", + "stroke": "B1", + "shadow": false, + "3d": false, + "multiple": false, + "double-border": false, + "tooltip": "", + "link": "", + "icon": null, + "iconPosition": "", + "blend": false, + "fields": null, + "methods": null, + "columns": null, + "label": "a", + "fontSize": 16, + "fontFamily": "DEFAULT", + "language": "", + "color": "N1", + "italic": false, + "bold": true, + "underline": false, + "labelWidth": 8, + "labelHeight": 21, + "labelPosition": "INSIDE_MIDDLE_CENTER", + "zIndex": 0, + "level": 1 + }, + { + "id": "b", + "type": "rectangle", + "pos": { + "x": 0, + "y": 166 + }, + "width": 53, + "height": 66, + "opacity": 1, + "strokeDash": 0, + "strokeWidth": 2, + "borderRadius": 0, + "fill": "B6", + "stroke": "B1", + "shadow": false, + "3d": false, + "multiple": false, + "double-border": false, + "tooltip": "", + "link": "", + "icon": null, + "iconPosition": "", + "blend": false, + "fields": null, + "methods": null, + "columns": null, + "label": "b", + "fontSize": 16, + "fontFamily": "DEFAULT", + "language": "", + "color": "N1", + "italic": false, + "bold": true, + "underline": false, + "labelWidth": 8, + "labelHeight": 21, + "labelPosition": "INSIDE_MIDDLE_CENTER", + "zIndex": 0, + "level": 1 + }, + { + "id": "c", + "type": "rectangle", + "pos": { + "x": 0, + "y": 353 + }, + "width": 53, + "height": 66, + "opacity": 1, + "strokeDash": 0, + "strokeWidth": 2, + "borderRadius": 0, + "fill": "B6", + "stroke": "B1", + "shadow": false, + "3d": false, + "multiple": false, + "double-border": false, + "tooltip": "", + "link": "", + "icon": null, + "iconPosition": "", + "blend": false, + "fields": null, + "methods": null, + "columns": null, + "label": "c", + "fontSize": 16, + "fontFamily": "DEFAULT", + "language": "", + "color": "N1", + "italic": false, + "bold": true, + "underline": false, + "labelWidth": 8, + "labelHeight": 21, + "labelPosition": "INSIDE_MIDDLE_CENTER", + "zIndex": 0, + "level": 1 + } + ], + "connections": [ + { + "id": "(a <-> b)[0]", + "src": "a", + "srcArrow": "triangle", + "dst": "b", + "dstArrow": "triangle", + "opacity": 1, + "strokeDash": 0, + "strokeWidth": 2, + "stroke": "B1", + "borderRadius": 10, + "label": "", + "fontSize": 16, + "fontFamily": "DEFAULT", + "language": "", + "color": "N2", + "italic": true, + "bold": false, + "underline": false, + "labelWidth": 0, + "labelHeight": 0, + "labelPosition": "", + "labelPercentage": 0, + "link": "https://google.com/", + "route": [ + { + "x": 26.5, + "y": 66 + }, + { + "x": 26.5, + "y": 106 + }, + { + "x": 26.5, + "y": 126 + }, + { + "x": 26.5, + "y": 166 + } + ], + "isCurve": true, + "animated": false, + "tooltip": "", + "icon": null, + "zIndex": 0 + }, + { + "id": "(b -> c)[0]", + "src": "b", + "srcArrow": "none", + "dst": "c", + "dstArrow": "triangle", + "opacity": 1, + "strokeDash": 0, + "strokeWidth": 2, + "stroke": "B1", + "borderRadius": 10, + "label": "test", + "fontSize": 16, + "fontFamily": "DEFAULT", + "language": "", + "color": "N2", + "italic": true, + "bold": false, + "underline": false, + "labelWidth": 26, + "labelHeight": 21, + "labelPosition": "INSIDE_MIDDLE_CENTER", + "labelPercentage": 0, + "link": "root.layers.d", + "route": [ + { + "x": 26.5, + "y": 231.5 + }, + { + "x": 26.5, + "y": 280.29998779296875 + }, + { + "x": 26.5, + "y": 304.70001220703125 + }, + { + "x": 26.5, + "y": 353.5 + } + ], + "isCurve": true, + "animated": false, + "tooltip": "", + "icon": null, + "zIndex": 0 + } + ], + "root": { + "id": "", + "type": "", + "pos": { + "x": 0, + "y": 0 + }, + "width": 0, + "height": 0, + "opacity": 0, + "strokeDash": 0, + "strokeWidth": 0, + "borderRadius": 0, + "fill": "N7", + "stroke": "", + "shadow": false, + "3d": false, + "multiple": false, + "double-border": false, + "tooltip": "", + "link": "", + "icon": null, + "iconPosition": "", + "blend": false, + "fields": null, + "methods": null, + "columns": null, + "label": "", + "fontSize": 0, + "fontFamily": "", + "language": "", + "color": "", + "italic": false, + "bold": false, + "underline": false, + "labelWidth": 0, + "labelHeight": 0, + "zIndex": 0, + "level": 0 + }, + "layers": [ + { + "name": "d", + "isFolderOnly": false, + "fontFamily": "SourceSansPro", + "shapes": [ + { + "id": "d", + "type": "rectangle", + "pos": { + "x": 0, + "y": 0 + }, + "width": 54, + "height": 66, + "opacity": 1, + "strokeDash": 0, + "strokeWidth": 2, + "borderRadius": 0, + "fill": "B6", + "stroke": "B1", + "shadow": false, + "3d": false, + "multiple": false, + "double-border": false, + "tooltip": "", + "link": "", + "icon": null, + "iconPosition": "", + "blend": false, + "fields": null, + "methods": null, + "columns": null, + "label": "d", + "fontSize": 16, + "fontFamily": "DEFAULT", + "language": "", + "color": "N1", + "italic": false, + "bold": true, + "underline": false, + "labelWidth": 9, + "labelHeight": 21, + "labelPosition": "INSIDE_MIDDLE_CENTER", + "zIndex": 0, + "level": 1 + } + ], + "connections": [], + "root": { + "id": "", + "type": "", + "pos": { + "x": 0, + "y": 0 + }, + "width": 0, + "height": 0, + "opacity": 0, + "strokeDash": 0, + "strokeWidth": 0, + "borderRadius": 0, + "fill": "N7", + "stroke": "", + "shadow": false, + "3d": false, + "multiple": false, + "double-border": false, + "tooltip": "", + "link": "", + "icon": null, + "iconPosition": "", + "blend": false, + "fields": null, + "methods": null, + "columns": null, + "label": "d", + "fontSize": 0, + "fontFamily": "", + "language": "", + "color": "", + "italic": false, + "bold": false, + "underline": false, + "labelWidth": 0, + "labelHeight": 0, + "zIndex": 0, + "level": 0 + } + } + ] +} diff --git a/e2etests/testdata/txtar/link-on-connections/dagre/sketch.exp.svg b/e2etests/testdata/txtar/link-on-connections/dagre/sketch.exp.svg new file mode 100644 index 0000000000..c3aa72ef3f --- /dev/null +++ b/e2etests/testdata/txtar/link-on-connections/dagre/sketch.exp.svg @@ -0,0 +1,135 @@ +abc test + + + + + +d + + + \ No newline at end of file diff --git a/e2etests/testdata/txtar/link-on-connections/elk/board.exp.json b/e2etests/testdata/txtar/link-on-connections/elk/board.exp.json new file mode 100644 index 0000000000..77d37964fb --- /dev/null +++ b/e2etests/testdata/txtar/link-on-connections/elk/board.exp.json @@ -0,0 +1,341 @@ +{ + "name": "", + "isFolderOnly": false, + "fontFamily": "SourceSansPro", + "shapes": [ + { + "id": "a", + "type": "rectangle", + "pos": { + "x": 12, + "y": 12 + }, + "width": 53, + "height": 66, + "opacity": 1, + "strokeDash": 0, + "strokeWidth": 2, + "borderRadius": 0, + "fill": "B6", + "stroke": "B1", + "shadow": false, + "3d": false, + "multiple": false, + "double-border": false, + "tooltip": "", + "link": "", + "icon": null, + "iconPosition": "", + "blend": false, + "fields": null, + "methods": null, + "columns": null, + "label": "a", + "fontSize": 16, + "fontFamily": "DEFAULT", + "language": "", + "color": "N1", + "italic": false, + "bold": true, + "underline": false, + "labelWidth": 8, + "labelHeight": 21, + "labelPosition": "INSIDE_MIDDLE_CENTER", + "zIndex": 0, + "level": 1 + }, + { + "id": "b", + "type": "rectangle", + "pos": { + "x": 12, + "y": 148 + }, + "width": 53, + "height": 66, + "opacity": 1, + "strokeDash": 0, + "strokeWidth": 2, + "borderRadius": 0, + "fill": "B6", + "stroke": "B1", + "shadow": false, + "3d": false, + "multiple": false, + "double-border": false, + "tooltip": "", + "link": "", + "icon": null, + "iconPosition": "", + "blend": false, + "fields": null, + "methods": null, + "columns": null, + "label": "b", + "fontSize": 16, + "fontFamily": "DEFAULT", + "language": "", + "color": "N1", + "italic": false, + "bold": true, + "underline": false, + "labelWidth": 8, + "labelHeight": 21, + "labelPosition": "INSIDE_MIDDLE_CENTER", + "zIndex": 0, + "level": 1 + }, + { + "id": "c", + "type": "rectangle", + "pos": { + "x": 12, + "y": 375 + }, + "width": 53, + "height": 66, + "opacity": 1, + "strokeDash": 0, + "strokeWidth": 2, + "borderRadius": 0, + "fill": "B6", + "stroke": "B1", + "shadow": false, + "3d": false, + "multiple": false, + "double-border": false, + "tooltip": "", + "link": "", + "icon": null, + "iconPosition": "", + "blend": false, + "fields": null, + "methods": null, + "columns": null, + "label": "c", + "fontSize": 16, + "fontFamily": "DEFAULT", + "language": "", + "color": "N1", + "italic": false, + "bold": true, + "underline": false, + "labelWidth": 8, + "labelHeight": 21, + "labelPosition": "INSIDE_MIDDLE_CENTER", + "zIndex": 0, + "level": 1 + } + ], + "connections": [ + { + "id": "(a <-> b)[0]", + "src": "a", + "srcArrow": "triangle", + "dst": "b", + "dstArrow": "triangle", + "opacity": 1, + "strokeDash": 0, + "strokeWidth": 2, + "stroke": "B1", + "borderRadius": 10, + "label": "", + "fontSize": 16, + "fontFamily": "DEFAULT", + "language": "", + "color": "N2", + "italic": true, + "bold": false, + "underline": false, + "labelWidth": 0, + "labelHeight": 0, + "labelPosition": "", + "labelPercentage": 0, + "link": "https://google.com/", + "route": [ + { + "x": 38.5, + "y": 78 + }, + { + "x": 38.5, + "y": 148 + } + ], + "animated": false, + "tooltip": "", + "icon": null, + "zIndex": 0 + }, + { + "id": "(b -> c)[0]", + "src": "b", + "srcArrow": "none", + "dst": "c", + "dstArrow": "triangle", + "opacity": 1, + "strokeDash": 0, + "strokeWidth": 2, + "stroke": "B1", + "borderRadius": 10, + "label": "test", + "fontSize": 16, + "fontFamily": "DEFAULT", + "language": "", + "color": "N2", + "italic": true, + "bold": false, + "underline": false, + "labelWidth": 26, + "labelHeight": 21, + "labelPosition": "INSIDE_MIDDLE_CENTER", + "labelPercentage": 0, + "link": "root.layers.d", + "route": [ + { + "x": 38.5, + "y": 214 + }, + { + "x": 38.5, + "y": 375 + } + ], + "animated": false, + "tooltip": "", + "icon": null, + "zIndex": 0 + } + ], + "root": { + "id": "", + "type": "", + "pos": { + "x": 0, + "y": 0 + }, + "width": 0, + "height": 0, + "opacity": 0, + "strokeDash": 0, + "strokeWidth": 0, + "borderRadius": 0, + "fill": "N7", + "stroke": "", + "shadow": false, + "3d": false, + "multiple": false, + "double-border": false, + "tooltip": "", + "link": "", + "icon": null, + "iconPosition": "", + "blend": false, + "fields": null, + "methods": null, + "columns": null, + "label": "", + "fontSize": 0, + "fontFamily": "", + "language": "", + "color": "", + "italic": false, + "bold": false, + "underline": false, + "labelWidth": 0, + "labelHeight": 0, + "zIndex": 0, + "level": 0 + }, + "layers": [ + { + "name": "d", + "isFolderOnly": false, + "fontFamily": "SourceSansPro", + "shapes": [ + { + "id": "d", + "type": "rectangle", + "pos": { + "x": 12, + "y": 12 + }, + "width": 54, + "height": 66, + "opacity": 1, + "strokeDash": 0, + "strokeWidth": 2, + "borderRadius": 0, + "fill": "B6", + "stroke": "B1", + "shadow": false, + "3d": false, + "multiple": false, + "double-border": false, + "tooltip": "", + "link": "", + "icon": null, + "iconPosition": "", + "blend": false, + "fields": null, + "methods": null, + "columns": null, + "label": "d", + "fontSize": 16, + "fontFamily": "DEFAULT", + "language": "", + "color": "N1", + "italic": false, + "bold": true, + "underline": false, + "labelWidth": 9, + "labelHeight": 21, + "labelPosition": "INSIDE_MIDDLE_CENTER", + "zIndex": 0, + "level": 1 + } + ], + "connections": [], + "root": { + "id": "", + "type": "", + "pos": { + "x": 0, + "y": 0 + }, + "width": 0, + "height": 0, + "opacity": 0, + "strokeDash": 0, + "strokeWidth": 0, + "borderRadius": 0, + "fill": "N7", + "stroke": "", + "shadow": false, + "3d": false, + "multiple": false, + "double-border": false, + "tooltip": "", + "link": "", + "icon": null, + "iconPosition": "", + "blend": false, + "fields": null, + "methods": null, + "columns": null, + "label": "d", + "fontSize": 0, + "fontFamily": "", + "language": "", + "color": "", + "italic": false, + "bold": false, + "underline": false, + "labelWidth": 0, + "labelHeight": 0, + "zIndex": 0, + "level": 0 + } + } + ] +} diff --git a/e2etests/testdata/txtar/link-on-connections/elk/sketch.exp.svg b/e2etests/testdata/txtar/link-on-connections/elk/sketch.exp.svg new file mode 100644 index 0000000000..446ab3708b --- /dev/null +++ b/e2etests/testdata/txtar/link-on-connections/elk/sketch.exp.svg @@ -0,0 +1,135 @@ +abc test + + + + + +d + + + \ No newline at end of file diff --git a/e2etests/testdata/txtar/md-tables/dagre/board.exp.json b/e2etests/testdata/txtar/md-tables/dagre/board.exp.json index c93eefc672..d14f1def6c 100644 --- a/e2etests/testdata/txtar/md-tables/dagre/board.exp.json +++ b/e2etests/testdata/txtar/md-tables/dagre/board.exp.json @@ -592,6 +592,7 @@ "labelHeight": 21, "labelPosition": "INSIDE_MIDDLE_CENTER", "labelPercentage": 0, + "link": "", "route": [ { "x": 340.5, @@ -639,6 +640,7 @@ "labelHeight": 21, "labelPosition": "INSIDE_MIDDLE_CENTER", "labelPercentage": 0, + "link": "", "route": [ { "x": 340.5, @@ -698,6 +700,7 @@ "labelHeight": 21, "labelPosition": "INSIDE_MIDDLE_CENTER", "labelPercentage": 0, + "link": "", "route": [ { "x": 756.5, @@ -745,6 +748,7 @@ "labelHeight": 21, "labelPosition": "INSIDE_MIDDLE_CENTER", "labelPercentage": 0, + "link": "", "route": [ { "x": 756.5, @@ -792,6 +796,7 @@ "labelHeight": 21, "labelPosition": "INSIDE_MIDDLE_CENTER", "labelPercentage": 0, + "link": "", "route": [ { "x": 756.5, @@ -839,6 +844,7 @@ "labelHeight": 21, "labelPosition": "INSIDE_MIDDLE_CENTER", "labelPercentage": 0, + "link": "", "route": [ { "x": 756.5, @@ -886,6 +892,7 @@ "labelHeight": 21, "labelPosition": "INSIDE_MIDDLE_CENTER", "labelPercentage": 0, + "link": "", "route": [ { "x": 756.5, diff --git a/e2etests/testdata/txtar/md-tables/dagre/sketch.exp.svg b/e2etests/testdata/txtar/md-tables/dagre/sketch.exp.svg index 72c7bd136e..2779ab0761 100644 --- a/e2etests/testdata/txtar/md-tables/dagre/sketch.exp.svg +++ b/e2etests/testdata/txtar/md-tables/dagre/sketch.exp.svg @@ -1,13 +1,13 @@ -
    @@ -1148,7 +1148,7 @@
    -
    Triggers MonitorsAggregatesAffectsImpactsInformsAssigns + Triggers MonitorsAggregatesAffectsImpactsInformsAssigns diff --git a/e2etests/testdata/txtar/md-tables/elk/board.exp.json b/e2etests/testdata/txtar/md-tables/elk/board.exp.json index 150eee8385..72774c8925 100644 --- a/e2etests/testdata/txtar/md-tables/elk/board.exp.json +++ b/e2etests/testdata/txtar/md-tables/elk/board.exp.json @@ -592,6 +592,7 @@ "labelHeight": 21, "labelPosition": "INSIDE_MIDDLE_CENTER", "labelPercentage": 0, + "link": "", "route": [ { "x": 183.5, @@ -630,6 +631,7 @@ "labelHeight": 21, "labelPosition": "INSIDE_MIDDLE_CENTER", "labelPercentage": 0, + "link": "", "route": [ { "x": 183.5, @@ -668,6 +670,7 @@ "labelHeight": 21, "labelPosition": "INSIDE_MIDDLE_CENTER", "labelPercentage": 0, + "link": "", "route": [ { "x": 794, @@ -706,6 +709,7 @@ "labelHeight": 21, "labelPosition": "INSIDE_MIDDLE_CENTER", "labelPercentage": 0, + "link": "", "route": [ { "x": 786.5, @@ -744,6 +748,7 @@ "labelHeight": 21, "labelPosition": "INSIDE_MIDDLE_CENTER", "labelPercentage": 0, + "link": "", "route": [ { "x": 794, @@ -782,6 +787,7 @@ "labelHeight": 21, "labelPosition": "INSIDE_MIDDLE_CENTER", "labelPercentage": 0, + "link": "", "route": [ { "x": 794, @@ -820,6 +826,7 @@ "labelHeight": 21, "labelPosition": "INSIDE_MIDDLE_CENTER", "labelPercentage": 0, + "link": "", "route": [ { "x": 794, diff --git a/e2etests/testdata/txtar/md-tables/elk/sketch.exp.svg b/e2etests/testdata/txtar/md-tables/elk/sketch.exp.svg index d63ebdc30f..15987e110d 100644 --- a/e2etests/testdata/txtar/md-tables/elk/sketch.exp.svg +++ b/e2etests/testdata/txtar/md-tables/elk/sketch.exp.svg @@ -1,13 +1,13 @@ -
    @@ -1148,7 +1148,7 @@
    -
    Triggers MonitorsAggregatesAffectsImpactsInformsAssigns + Triggers MonitorsAggregatesAffectsImpactsInformsAssigns diff --git a/e2etests/testdata/txtar/nested-spread-substitutions-regression/dagre/board.exp.json b/e2etests/testdata/txtar/nested-spread-substitutions-regression/dagre/board.exp.json index 648e0b3f2a..621f043f12 100644 --- a/e2etests/testdata/txtar/nested-spread-substitutions-regression/dagre/board.exp.json +++ b/e2etests/testdata/txtar/nested-spread-substitutions-regression/dagre/board.exp.json @@ -151,6 +151,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 89, diff --git a/e2etests/testdata/txtar/nested-spread-substitutions-regression/dagre/sketch.exp.svg b/e2etests/testdata/txtar/nested-spread-substitutions-regression/dagre/sketch.exp.svg index 370e630784..bbd54ca60f 100644 --- a/e2etests/testdata/txtar/nested-spread-substitutions-regression/dagre/sketch.exp.svg +++ b/e2etests/testdata/txtar/nested-spread-substitutions-regression/dagre/sketch.exp.svg @@ -1,16 +1,16 @@ -Homedog1dog3 + .d2-2731028706 .fill-N1{fill:#0A0F25;} + .d2-2731028706 .fill-N2{fill:#676C7E;} + .d2-2731028706 .fill-N3{fill:#9499AB;} + .d2-2731028706 .fill-N4{fill:#CFD2DD;} + .d2-2731028706 .fill-N5{fill:#DEE1EB;} + .d2-2731028706 .fill-N6{fill:#EEF1F8;} + .d2-2731028706 .fill-N7{fill:#FFFFFF;} + .d2-2731028706 .fill-B1{fill:#0D32B2;} + .d2-2731028706 .fill-B2{fill:#0D32B2;} + .d2-2731028706 .fill-B3{fill:#E3E9FD;} + .d2-2731028706 .fill-B4{fill:#E3E9FD;} + .d2-2731028706 .fill-B5{fill:#EDF0FD;} + .d2-2731028706 .fill-B6{fill:#F7F8FE;} + .d2-2731028706 .fill-AA2{fill:#4A6FF3;} + .d2-2731028706 .fill-AA4{fill:#EDF0FD;} + .d2-2731028706 .fill-AA5{fill:#F7F8FE;} + .d2-2731028706 .fill-AB4{fill:#EDF0FD;} + .d2-2731028706 .fill-AB5{fill:#F7F8FE;} + .d2-2731028706 .stroke-N1{stroke:#0A0F25;} + .d2-2731028706 .stroke-N2{stroke:#676C7E;} + .d2-2731028706 .stroke-N3{stroke:#9499AB;} + .d2-2731028706 .stroke-N4{stroke:#CFD2DD;} + .d2-2731028706 .stroke-N5{stroke:#DEE1EB;} + .d2-2731028706 .stroke-N6{stroke:#EEF1F8;} + .d2-2731028706 .stroke-N7{stroke:#FFFFFF;} + .d2-2731028706 .stroke-B1{stroke:#0D32B2;} + .d2-2731028706 .stroke-B2{stroke:#0D32B2;} + .d2-2731028706 .stroke-B3{stroke:#E3E9FD;} + .d2-2731028706 .stroke-B4{stroke:#E3E9FD;} + .d2-2731028706 .stroke-B5{stroke:#EDF0FD;} + .d2-2731028706 .stroke-B6{stroke:#F7F8FE;} + .d2-2731028706 .stroke-AA2{stroke:#4A6FF3;} + .d2-2731028706 .stroke-AA4{stroke:#EDF0FD;} + .d2-2731028706 .stroke-AA5{stroke:#F7F8FE;} + .d2-2731028706 .stroke-AB4{stroke:#EDF0FD;} + .d2-2731028706 .stroke-AB5{stroke:#F7F8FE;} + .d2-2731028706 .background-color-N1{background-color:#0A0F25;} + .d2-2731028706 .background-color-N2{background-color:#676C7E;} + .d2-2731028706 .background-color-N3{background-color:#9499AB;} + .d2-2731028706 .background-color-N4{background-color:#CFD2DD;} + .d2-2731028706 .background-color-N5{background-color:#DEE1EB;} + .d2-2731028706 .background-color-N6{background-color:#EEF1F8;} + .d2-2731028706 .background-color-N7{background-color:#FFFFFF;} + .d2-2731028706 .background-color-B1{background-color:#0D32B2;} + .d2-2731028706 .background-color-B2{background-color:#0D32B2;} + .d2-2731028706 .background-color-B3{background-color:#E3E9FD;} + .d2-2731028706 .background-color-B4{background-color:#E3E9FD;} + .d2-2731028706 .background-color-B5{background-color:#EDF0FD;} + .d2-2731028706 .background-color-B6{background-color:#F7F8FE;} + .d2-2731028706 .background-color-AA2{background-color:#4A6FF3;} + .d2-2731028706 .background-color-AA4{background-color:#EDF0FD;} + .d2-2731028706 .background-color-AA5{background-color:#F7F8FE;} + .d2-2731028706 .background-color-AB4{background-color:#EDF0FD;} + .d2-2731028706 .background-color-AB5{background-color:#F7F8FE;} + .d2-2731028706 .color-N1{color:#0A0F25;} + .d2-2731028706 .color-N2{color:#676C7E;} + .d2-2731028706 .color-N3{color:#9499AB;} + .d2-2731028706 .color-N4{color:#CFD2DD;} + .d2-2731028706 .color-N5{color:#DEE1EB;} + .d2-2731028706 .color-N6{color:#EEF1F8;} + .d2-2731028706 .color-N7{color:#FFFFFF;} + .d2-2731028706 .color-B1{color:#0D32B2;} + .d2-2731028706 .color-B2{color:#0D32B2;} + .d2-2731028706 .color-B3{color:#E3E9FD;} + .d2-2731028706 .color-B4{color:#E3E9FD;} + .d2-2731028706 .color-B5{color:#EDF0FD;} + .d2-2731028706 .color-B6{color:#F7F8FE;} + .d2-2731028706 .color-AA2{color:#4A6FF3;} + .d2-2731028706 .color-AA4{color:#EDF0FD;} + .d2-2731028706 .color-AA5{color:#F7F8FE;} + .d2-2731028706 .color-AB4{color:#EDF0FD;} + .d2-2731028706 .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}]]>Homedog1dog3 diff --git a/e2etests/testdata/txtar/nested-spread-substitutions-regression/elk/board.exp.json b/e2etests/testdata/txtar/nested-spread-substitutions-regression/elk/board.exp.json index 6505afcec6..365d79092d 100644 --- a/e2etests/testdata/txtar/nested-spread-substitutions-regression/elk/board.exp.json +++ b/e2etests/testdata/txtar/nested-spread-substitutions-regression/elk/board.exp.json @@ -151,6 +151,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 111, diff --git a/e2etests/testdata/txtar/nested-spread-substitutions-regression/elk/sketch.exp.svg b/e2etests/testdata/txtar/nested-spread-substitutions-regression/elk/sketch.exp.svg index b67a04b961..b5a4a7e81d 100644 --- a/e2etests/testdata/txtar/nested-spread-substitutions-regression/elk/sketch.exp.svg +++ b/e2etests/testdata/txtar/nested-spread-substitutions-regression/elk/sketch.exp.svg @@ -1,16 +1,16 @@ -Homedog1dog3 + .d2-765102746 .fill-N1{fill:#0A0F25;} + .d2-765102746 .fill-N2{fill:#676C7E;} + .d2-765102746 .fill-N3{fill:#9499AB;} + .d2-765102746 .fill-N4{fill:#CFD2DD;} + .d2-765102746 .fill-N5{fill:#DEE1EB;} + .d2-765102746 .fill-N6{fill:#EEF1F8;} + .d2-765102746 .fill-N7{fill:#FFFFFF;} + .d2-765102746 .fill-B1{fill:#0D32B2;} + .d2-765102746 .fill-B2{fill:#0D32B2;} + .d2-765102746 .fill-B3{fill:#E3E9FD;} + .d2-765102746 .fill-B4{fill:#E3E9FD;} + .d2-765102746 .fill-B5{fill:#EDF0FD;} + .d2-765102746 .fill-B6{fill:#F7F8FE;} + .d2-765102746 .fill-AA2{fill:#4A6FF3;} + .d2-765102746 .fill-AA4{fill:#EDF0FD;} + .d2-765102746 .fill-AA5{fill:#F7F8FE;} + .d2-765102746 .fill-AB4{fill:#EDF0FD;} + .d2-765102746 .fill-AB5{fill:#F7F8FE;} + .d2-765102746 .stroke-N1{stroke:#0A0F25;} + .d2-765102746 .stroke-N2{stroke:#676C7E;} + .d2-765102746 .stroke-N3{stroke:#9499AB;} + .d2-765102746 .stroke-N4{stroke:#CFD2DD;} + .d2-765102746 .stroke-N5{stroke:#DEE1EB;} + .d2-765102746 .stroke-N6{stroke:#EEF1F8;} + .d2-765102746 .stroke-N7{stroke:#FFFFFF;} + .d2-765102746 .stroke-B1{stroke:#0D32B2;} + .d2-765102746 .stroke-B2{stroke:#0D32B2;} + .d2-765102746 .stroke-B3{stroke:#E3E9FD;} + .d2-765102746 .stroke-B4{stroke:#E3E9FD;} + .d2-765102746 .stroke-B5{stroke:#EDF0FD;} + .d2-765102746 .stroke-B6{stroke:#F7F8FE;} + .d2-765102746 .stroke-AA2{stroke:#4A6FF3;} + .d2-765102746 .stroke-AA4{stroke:#EDF0FD;} + .d2-765102746 .stroke-AA5{stroke:#F7F8FE;} + .d2-765102746 .stroke-AB4{stroke:#EDF0FD;} + .d2-765102746 .stroke-AB5{stroke:#F7F8FE;} + .d2-765102746 .background-color-N1{background-color:#0A0F25;} + .d2-765102746 .background-color-N2{background-color:#676C7E;} + .d2-765102746 .background-color-N3{background-color:#9499AB;} + .d2-765102746 .background-color-N4{background-color:#CFD2DD;} + .d2-765102746 .background-color-N5{background-color:#DEE1EB;} + .d2-765102746 .background-color-N6{background-color:#EEF1F8;} + .d2-765102746 .background-color-N7{background-color:#FFFFFF;} + .d2-765102746 .background-color-B1{background-color:#0D32B2;} + .d2-765102746 .background-color-B2{background-color:#0D32B2;} + .d2-765102746 .background-color-B3{background-color:#E3E9FD;} + .d2-765102746 .background-color-B4{background-color:#E3E9FD;} + .d2-765102746 .background-color-B5{background-color:#EDF0FD;} + .d2-765102746 .background-color-B6{background-color:#F7F8FE;} + .d2-765102746 .background-color-AA2{background-color:#4A6FF3;} + .d2-765102746 .background-color-AA4{background-color:#EDF0FD;} + .d2-765102746 .background-color-AA5{background-color:#F7F8FE;} + .d2-765102746 .background-color-AB4{background-color:#EDF0FD;} + .d2-765102746 .background-color-AB5{background-color:#F7F8FE;} + .d2-765102746 .color-N1{color:#0A0F25;} + .d2-765102746 .color-N2{color:#676C7E;} + .d2-765102746 .color-N3{color:#9499AB;} + .d2-765102746 .color-N4{color:#CFD2DD;} + .d2-765102746 .color-N5{color:#DEE1EB;} + .d2-765102746 .color-N6{color:#EEF1F8;} + .d2-765102746 .color-N7{color:#FFFFFF;} + .d2-765102746 .color-B1{color:#0D32B2;} + .d2-765102746 .color-B2{color:#0D32B2;} + .d2-765102746 .color-B3{color:#E3E9FD;} + .d2-765102746 .color-B4{color:#E3E9FD;} + .d2-765102746 .color-B5{color:#EDF0FD;} + .d2-765102746 .color-B6{color:#F7F8FE;} + .d2-765102746 .color-AA2{color:#4A6FF3;} + .d2-765102746 .color-AA4{color:#EDF0FD;} + .d2-765102746 .color-AA5{color:#F7F8FE;} + .d2-765102746 .color-AB4{color:#EDF0FD;} + .d2-765102746 .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}]]>Homedog1dog3 diff --git a/e2etests/testdata/txtar/opacity-zero-route/dagre/board.exp.json b/e2etests/testdata/txtar/opacity-zero-route/dagre/board.exp.json index c4f256797e..a8975e91ed 100644 --- a/e2etests/testdata/txtar/opacity-zero-route/dagre/board.exp.json +++ b/e2etests/testdata/txtar/opacity-zero-route/dagre/board.exp.json @@ -438,6 +438,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 421, diff --git a/e2etests/testdata/txtar/opacity-zero-route/dagre/sketch.exp.svg b/e2etests/testdata/txtar/opacity-zero-route/dagre/sketch.exp.svg index 6bd7c31f11..9a661c44a8 100644 --- a/e2etests/testdata/txtar/opacity-zero-route/dagre/sketch.exp.svg +++ b/e2etests/testdata/txtar/opacity-zero-route/dagre/sketch.exp.svg @@ -1,16 +1,16 @@ -gridoutd + .d2-279508969 .fill-N1{fill:#0A0F25;} + .d2-279508969 .fill-N2{fill:#676C7E;} + .d2-279508969 .fill-N3{fill:#9499AB;} + .d2-279508969 .fill-N4{fill:#CFD2DD;} + .d2-279508969 .fill-N5{fill:#DEE1EB;} + .d2-279508969 .fill-N6{fill:#EEF1F8;} + .d2-279508969 .fill-N7{fill:#FFFFFF;} + .d2-279508969 .fill-B1{fill:#0D32B2;} + .d2-279508969 .fill-B2{fill:#0D32B2;} + .d2-279508969 .fill-B3{fill:#E3E9FD;} + .d2-279508969 .fill-B4{fill:#E3E9FD;} + .d2-279508969 .fill-B5{fill:#EDF0FD;} + .d2-279508969 .fill-B6{fill:#F7F8FE;} + .d2-279508969 .fill-AA2{fill:#4A6FF3;} + .d2-279508969 .fill-AA4{fill:#EDF0FD;} + .d2-279508969 .fill-AA5{fill:#F7F8FE;} + .d2-279508969 .fill-AB4{fill:#EDF0FD;} + .d2-279508969 .fill-AB5{fill:#F7F8FE;} + .d2-279508969 .stroke-N1{stroke:#0A0F25;} + .d2-279508969 .stroke-N2{stroke:#676C7E;} + .d2-279508969 .stroke-N3{stroke:#9499AB;} + .d2-279508969 .stroke-N4{stroke:#CFD2DD;} + .d2-279508969 .stroke-N5{stroke:#DEE1EB;} + .d2-279508969 .stroke-N6{stroke:#EEF1F8;} + .d2-279508969 .stroke-N7{stroke:#FFFFFF;} + .d2-279508969 .stroke-B1{stroke:#0D32B2;} + .d2-279508969 .stroke-B2{stroke:#0D32B2;} + .d2-279508969 .stroke-B3{stroke:#E3E9FD;} + .d2-279508969 .stroke-B4{stroke:#E3E9FD;} + .d2-279508969 .stroke-B5{stroke:#EDF0FD;} + .d2-279508969 .stroke-B6{stroke:#F7F8FE;} + .d2-279508969 .stroke-AA2{stroke:#4A6FF3;} + .d2-279508969 .stroke-AA4{stroke:#EDF0FD;} + .d2-279508969 .stroke-AA5{stroke:#F7F8FE;} + .d2-279508969 .stroke-AB4{stroke:#EDF0FD;} + .d2-279508969 .stroke-AB5{stroke:#F7F8FE;} + .d2-279508969 .background-color-N1{background-color:#0A0F25;} + .d2-279508969 .background-color-N2{background-color:#676C7E;} + .d2-279508969 .background-color-N3{background-color:#9499AB;} + .d2-279508969 .background-color-N4{background-color:#CFD2DD;} + .d2-279508969 .background-color-N5{background-color:#DEE1EB;} + .d2-279508969 .background-color-N6{background-color:#EEF1F8;} + .d2-279508969 .background-color-N7{background-color:#FFFFFF;} + .d2-279508969 .background-color-B1{background-color:#0D32B2;} + .d2-279508969 .background-color-B2{background-color:#0D32B2;} + .d2-279508969 .background-color-B3{background-color:#E3E9FD;} + .d2-279508969 .background-color-B4{background-color:#E3E9FD;} + .d2-279508969 .background-color-B5{background-color:#EDF0FD;} + .d2-279508969 .background-color-B6{background-color:#F7F8FE;} + .d2-279508969 .background-color-AA2{background-color:#4A6FF3;} + .d2-279508969 .background-color-AA4{background-color:#EDF0FD;} + .d2-279508969 .background-color-AA5{background-color:#F7F8FE;} + .d2-279508969 .background-color-AB4{background-color:#EDF0FD;} + .d2-279508969 .background-color-AB5{background-color:#F7F8FE;} + .d2-279508969 .color-N1{color:#0A0F25;} + .d2-279508969 .color-N2{color:#676C7E;} + .d2-279508969 .color-N3{color:#9499AB;} + .d2-279508969 .color-N4{color:#CFD2DD;} + .d2-279508969 .color-N5{color:#DEE1EB;} + .d2-279508969 .color-N6{color:#EEF1F8;} + .d2-279508969 .color-N7{color:#FFFFFF;} + .d2-279508969 .color-B1{color:#0D32B2;} + .d2-279508969 .color-B2{color:#0D32B2;} + .d2-279508969 .color-B3{color:#E3E9FD;} + .d2-279508969 .color-B4{color:#E3E9FD;} + .d2-279508969 .color-B5{color:#EDF0FD;} + .d2-279508969 .color-B6{color:#F7F8FE;} + .d2-279508969 .color-AA2{color:#4A6FF3;} + .d2-279508969 .color-AA4{color:#EDF0FD;} + .d2-279508969 .color-AA5{color:#F7F8FE;} + .d2-279508969 .color-AB4{color:#EDF0FD;} + .d2-279508969 .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}]]>gridoutd diff --git a/e2etests/testdata/txtar/opacity-zero-route/elk/board.exp.json b/e2etests/testdata/txtar/opacity-zero-route/elk/board.exp.json index 583020b29b..bf54ade5cf 100644 --- a/e2etests/testdata/txtar/opacity-zero-route/elk/board.exp.json +++ b/e2etests/testdata/txtar/opacity-zero-route/elk/board.exp.json @@ -438,6 +438,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 393, diff --git a/e2etests/testdata/txtar/opacity-zero-route/elk/sketch.exp.svg b/e2etests/testdata/txtar/opacity-zero-route/elk/sketch.exp.svg index f89e28ea48..ef67823be5 100644 --- a/e2etests/testdata/txtar/opacity-zero-route/elk/sketch.exp.svg +++ b/e2etests/testdata/txtar/opacity-zero-route/elk/sketch.exp.svg @@ -1,16 +1,16 @@ -gridoutd + .d2-2939247815 .fill-N1{fill:#0A0F25;} + .d2-2939247815 .fill-N2{fill:#676C7E;} + .d2-2939247815 .fill-N3{fill:#9499AB;} + .d2-2939247815 .fill-N4{fill:#CFD2DD;} + .d2-2939247815 .fill-N5{fill:#DEE1EB;} + .d2-2939247815 .fill-N6{fill:#EEF1F8;} + .d2-2939247815 .fill-N7{fill:#FFFFFF;} + .d2-2939247815 .fill-B1{fill:#0D32B2;} + .d2-2939247815 .fill-B2{fill:#0D32B2;} + .d2-2939247815 .fill-B3{fill:#E3E9FD;} + .d2-2939247815 .fill-B4{fill:#E3E9FD;} + .d2-2939247815 .fill-B5{fill:#EDF0FD;} + .d2-2939247815 .fill-B6{fill:#F7F8FE;} + .d2-2939247815 .fill-AA2{fill:#4A6FF3;} + .d2-2939247815 .fill-AA4{fill:#EDF0FD;} + .d2-2939247815 .fill-AA5{fill:#F7F8FE;} + .d2-2939247815 .fill-AB4{fill:#EDF0FD;} + .d2-2939247815 .fill-AB5{fill:#F7F8FE;} + .d2-2939247815 .stroke-N1{stroke:#0A0F25;} + .d2-2939247815 .stroke-N2{stroke:#676C7E;} + .d2-2939247815 .stroke-N3{stroke:#9499AB;} + .d2-2939247815 .stroke-N4{stroke:#CFD2DD;} + .d2-2939247815 .stroke-N5{stroke:#DEE1EB;} + .d2-2939247815 .stroke-N6{stroke:#EEF1F8;} + .d2-2939247815 .stroke-N7{stroke:#FFFFFF;} + .d2-2939247815 .stroke-B1{stroke:#0D32B2;} + .d2-2939247815 .stroke-B2{stroke:#0D32B2;} + .d2-2939247815 .stroke-B3{stroke:#E3E9FD;} + .d2-2939247815 .stroke-B4{stroke:#E3E9FD;} + .d2-2939247815 .stroke-B5{stroke:#EDF0FD;} + .d2-2939247815 .stroke-B6{stroke:#F7F8FE;} + .d2-2939247815 .stroke-AA2{stroke:#4A6FF3;} + .d2-2939247815 .stroke-AA4{stroke:#EDF0FD;} + .d2-2939247815 .stroke-AA5{stroke:#F7F8FE;} + .d2-2939247815 .stroke-AB4{stroke:#EDF0FD;} + .d2-2939247815 .stroke-AB5{stroke:#F7F8FE;} + .d2-2939247815 .background-color-N1{background-color:#0A0F25;} + .d2-2939247815 .background-color-N2{background-color:#676C7E;} + .d2-2939247815 .background-color-N3{background-color:#9499AB;} + .d2-2939247815 .background-color-N4{background-color:#CFD2DD;} + .d2-2939247815 .background-color-N5{background-color:#DEE1EB;} + .d2-2939247815 .background-color-N6{background-color:#EEF1F8;} + .d2-2939247815 .background-color-N7{background-color:#FFFFFF;} + .d2-2939247815 .background-color-B1{background-color:#0D32B2;} + .d2-2939247815 .background-color-B2{background-color:#0D32B2;} + .d2-2939247815 .background-color-B3{background-color:#E3E9FD;} + .d2-2939247815 .background-color-B4{background-color:#E3E9FD;} + .d2-2939247815 .background-color-B5{background-color:#EDF0FD;} + .d2-2939247815 .background-color-B6{background-color:#F7F8FE;} + .d2-2939247815 .background-color-AA2{background-color:#4A6FF3;} + .d2-2939247815 .background-color-AA4{background-color:#EDF0FD;} + .d2-2939247815 .background-color-AA5{background-color:#F7F8FE;} + .d2-2939247815 .background-color-AB4{background-color:#EDF0FD;} + .d2-2939247815 .background-color-AB5{background-color:#F7F8FE;} + .d2-2939247815 .color-N1{color:#0A0F25;} + .d2-2939247815 .color-N2{color:#676C7E;} + .d2-2939247815 .color-N3{color:#9499AB;} + .d2-2939247815 .color-N4{color:#CFD2DD;} + .d2-2939247815 .color-N5{color:#DEE1EB;} + .d2-2939247815 .color-N6{color:#EEF1F8;} + .d2-2939247815 .color-N7{color:#FFFFFF;} + .d2-2939247815 .color-B1{color:#0D32B2;} + .d2-2939247815 .color-B2{color:#0D32B2;} + .d2-2939247815 .color-B3{color:#E3E9FD;} + .d2-2939247815 .color-B4{color:#E3E9FD;} + .d2-2939247815 .color-B5{color:#EDF0FD;} + .d2-2939247815 .color-B6{color:#F7F8FE;} + .d2-2939247815 .color-AA2{color:#4A6FF3;} + .d2-2939247815 .color-AA4{color:#EDF0FD;} + .d2-2939247815 .color-AA5{color:#F7F8FE;} + .d2-2939247815 .color-AB4{color:#EDF0FD;} + .d2-2939247815 .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}]]>gridoutd diff --git a/e2etests/testdata/txtar/sequence-bounding-box/dagre/board.exp.json b/e2etests/testdata/txtar/sequence-bounding-box/dagre/board.exp.json index 93cc3aba27..67f71323a7 100644 --- a/e2etests/testdata/txtar/sequence-bounding-box/dagre/board.exp.json +++ b/e2etests/testdata/txtar/sequence-bounding-box/dagre/board.exp.json @@ -151,6 +151,7 @@ "labelHeight": 21, "labelPosition": "INSIDE_MIDDLE_CENTER", "labelPercentage": 0, + "link": "", "route": [ { "x": 102, @@ -197,6 +198,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 102, diff --git a/e2etests/testdata/txtar/sequence-bounding-box/dagre/sketch.exp.svg b/e2etests/testdata/txtar/sequence-bounding-box/dagre/sketch.exp.svg index 829491cb16..7a7bc5864e 100644 --- a/e2etests/testdata/txtar/sequence-bounding-box/dagre/sketch.exp.svg +++ b/e2etests/testdata/txtar/sequence-bounding-box/dagre/sketch.exp.svg @@ -1,16 +1,16 @@ -backendclientclient BO_ID -> D2_ID + .d2-876605121 .fill-N1{fill:#0A0F25;} + .d2-876605121 .fill-N2{fill:#676C7E;} + .d2-876605121 .fill-N3{fill:#9499AB;} + .d2-876605121 .fill-N4{fill:#CFD2DD;} + .d2-876605121 .fill-N5{fill:#DEE1EB;} + .d2-876605121 .fill-N6{fill:#EEF1F8;} + .d2-876605121 .fill-N7{fill:#FFFFFF;} + .d2-876605121 .fill-B1{fill:#0D32B2;} + .d2-876605121 .fill-B2{fill:#0D32B2;} + .d2-876605121 .fill-B3{fill:#E3E9FD;} + .d2-876605121 .fill-B4{fill:#E3E9FD;} + .d2-876605121 .fill-B5{fill:#EDF0FD;} + .d2-876605121 .fill-B6{fill:#F7F8FE;} + .d2-876605121 .fill-AA2{fill:#4A6FF3;} + .d2-876605121 .fill-AA4{fill:#EDF0FD;} + .d2-876605121 .fill-AA5{fill:#F7F8FE;} + .d2-876605121 .fill-AB4{fill:#EDF0FD;} + .d2-876605121 .fill-AB5{fill:#F7F8FE;} + .d2-876605121 .stroke-N1{stroke:#0A0F25;} + .d2-876605121 .stroke-N2{stroke:#676C7E;} + .d2-876605121 .stroke-N3{stroke:#9499AB;} + .d2-876605121 .stroke-N4{stroke:#CFD2DD;} + .d2-876605121 .stroke-N5{stroke:#DEE1EB;} + .d2-876605121 .stroke-N6{stroke:#EEF1F8;} + .d2-876605121 .stroke-N7{stroke:#FFFFFF;} + .d2-876605121 .stroke-B1{stroke:#0D32B2;} + .d2-876605121 .stroke-B2{stroke:#0D32B2;} + .d2-876605121 .stroke-B3{stroke:#E3E9FD;} + .d2-876605121 .stroke-B4{stroke:#E3E9FD;} + .d2-876605121 .stroke-B5{stroke:#EDF0FD;} + .d2-876605121 .stroke-B6{stroke:#F7F8FE;} + .d2-876605121 .stroke-AA2{stroke:#4A6FF3;} + .d2-876605121 .stroke-AA4{stroke:#EDF0FD;} + .d2-876605121 .stroke-AA5{stroke:#F7F8FE;} + .d2-876605121 .stroke-AB4{stroke:#EDF0FD;} + .d2-876605121 .stroke-AB5{stroke:#F7F8FE;} + .d2-876605121 .background-color-N1{background-color:#0A0F25;} + .d2-876605121 .background-color-N2{background-color:#676C7E;} + .d2-876605121 .background-color-N3{background-color:#9499AB;} + .d2-876605121 .background-color-N4{background-color:#CFD2DD;} + .d2-876605121 .background-color-N5{background-color:#DEE1EB;} + .d2-876605121 .background-color-N6{background-color:#EEF1F8;} + .d2-876605121 .background-color-N7{background-color:#FFFFFF;} + .d2-876605121 .background-color-B1{background-color:#0D32B2;} + .d2-876605121 .background-color-B2{background-color:#0D32B2;} + .d2-876605121 .background-color-B3{background-color:#E3E9FD;} + .d2-876605121 .background-color-B4{background-color:#E3E9FD;} + .d2-876605121 .background-color-B5{background-color:#EDF0FD;} + .d2-876605121 .background-color-B6{background-color:#F7F8FE;} + .d2-876605121 .background-color-AA2{background-color:#4A6FF3;} + .d2-876605121 .background-color-AA4{background-color:#EDF0FD;} + .d2-876605121 .background-color-AA5{background-color:#F7F8FE;} + .d2-876605121 .background-color-AB4{background-color:#EDF0FD;} + .d2-876605121 .background-color-AB5{background-color:#F7F8FE;} + .d2-876605121 .color-N1{color:#0A0F25;} + .d2-876605121 .color-N2{color:#676C7E;} + .d2-876605121 .color-N3{color:#9499AB;} + .d2-876605121 .color-N4{color:#CFD2DD;} + .d2-876605121 .color-N5{color:#DEE1EB;} + .d2-876605121 .color-N6{color:#EEF1F8;} + .d2-876605121 .color-N7{color:#FFFFFF;} + .d2-876605121 .color-B1{color:#0D32B2;} + .d2-876605121 .color-B2{color:#0D32B2;} + .d2-876605121 .color-B3{color:#E3E9FD;} + .d2-876605121 .color-B4{color:#E3E9FD;} + .d2-876605121 .color-B5{color:#EDF0FD;} + .d2-876605121 .color-B6{color:#F7F8FE;} + .d2-876605121 .color-AA2{color:#4A6FF3;} + .d2-876605121 .color-AA4{color:#EDF0FD;} + .d2-876605121 .color-AA5{color:#F7F8FE;} + .d2-876605121 .color-AB4{color:#EDF0FD;} + .d2-876605121 .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}]]>backendclientclient BO_ID -> D2_ID diff --git a/e2etests/testdata/txtar/sequence-bounding-box/elk/board.exp.json b/e2etests/testdata/txtar/sequence-bounding-box/elk/board.exp.json index 11e468f6d9..39f653ffa5 100644 --- a/e2etests/testdata/txtar/sequence-bounding-box/elk/board.exp.json +++ b/e2etests/testdata/txtar/sequence-bounding-box/elk/board.exp.json @@ -151,6 +151,7 @@ "labelHeight": 21, "labelPosition": "INSIDE_MIDDLE_CENTER", "labelPercentage": 0, + "link": "", "route": [ { "x": 124, @@ -197,6 +198,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 124, diff --git a/e2etests/testdata/txtar/sequence-bounding-box/elk/sketch.exp.svg b/e2etests/testdata/txtar/sequence-bounding-box/elk/sketch.exp.svg index 1c42f1d17b..dd9f1f46a6 100644 --- a/e2etests/testdata/txtar/sequence-bounding-box/elk/sketch.exp.svg +++ b/e2etests/testdata/txtar/sequence-bounding-box/elk/sketch.exp.svg @@ -1,16 +1,16 @@ -backendclientclient BO_ID -> D2_ID + .d2-3769731346 .fill-N1{fill:#0A0F25;} + .d2-3769731346 .fill-N2{fill:#676C7E;} + .d2-3769731346 .fill-N3{fill:#9499AB;} + .d2-3769731346 .fill-N4{fill:#CFD2DD;} + .d2-3769731346 .fill-N5{fill:#DEE1EB;} + .d2-3769731346 .fill-N6{fill:#EEF1F8;} + .d2-3769731346 .fill-N7{fill:#FFFFFF;} + .d2-3769731346 .fill-B1{fill:#0D32B2;} + .d2-3769731346 .fill-B2{fill:#0D32B2;} + .d2-3769731346 .fill-B3{fill:#E3E9FD;} + .d2-3769731346 .fill-B4{fill:#E3E9FD;} + .d2-3769731346 .fill-B5{fill:#EDF0FD;} + .d2-3769731346 .fill-B6{fill:#F7F8FE;} + .d2-3769731346 .fill-AA2{fill:#4A6FF3;} + .d2-3769731346 .fill-AA4{fill:#EDF0FD;} + .d2-3769731346 .fill-AA5{fill:#F7F8FE;} + .d2-3769731346 .fill-AB4{fill:#EDF0FD;} + .d2-3769731346 .fill-AB5{fill:#F7F8FE;} + .d2-3769731346 .stroke-N1{stroke:#0A0F25;} + .d2-3769731346 .stroke-N2{stroke:#676C7E;} + .d2-3769731346 .stroke-N3{stroke:#9499AB;} + .d2-3769731346 .stroke-N4{stroke:#CFD2DD;} + .d2-3769731346 .stroke-N5{stroke:#DEE1EB;} + .d2-3769731346 .stroke-N6{stroke:#EEF1F8;} + .d2-3769731346 .stroke-N7{stroke:#FFFFFF;} + .d2-3769731346 .stroke-B1{stroke:#0D32B2;} + .d2-3769731346 .stroke-B2{stroke:#0D32B2;} + .d2-3769731346 .stroke-B3{stroke:#E3E9FD;} + .d2-3769731346 .stroke-B4{stroke:#E3E9FD;} + .d2-3769731346 .stroke-B5{stroke:#EDF0FD;} + .d2-3769731346 .stroke-B6{stroke:#F7F8FE;} + .d2-3769731346 .stroke-AA2{stroke:#4A6FF3;} + .d2-3769731346 .stroke-AA4{stroke:#EDF0FD;} + .d2-3769731346 .stroke-AA5{stroke:#F7F8FE;} + .d2-3769731346 .stroke-AB4{stroke:#EDF0FD;} + .d2-3769731346 .stroke-AB5{stroke:#F7F8FE;} + .d2-3769731346 .background-color-N1{background-color:#0A0F25;} + .d2-3769731346 .background-color-N2{background-color:#676C7E;} + .d2-3769731346 .background-color-N3{background-color:#9499AB;} + .d2-3769731346 .background-color-N4{background-color:#CFD2DD;} + .d2-3769731346 .background-color-N5{background-color:#DEE1EB;} + .d2-3769731346 .background-color-N6{background-color:#EEF1F8;} + .d2-3769731346 .background-color-N7{background-color:#FFFFFF;} + .d2-3769731346 .background-color-B1{background-color:#0D32B2;} + .d2-3769731346 .background-color-B2{background-color:#0D32B2;} + .d2-3769731346 .background-color-B3{background-color:#E3E9FD;} + .d2-3769731346 .background-color-B4{background-color:#E3E9FD;} + .d2-3769731346 .background-color-B5{background-color:#EDF0FD;} + .d2-3769731346 .background-color-B6{background-color:#F7F8FE;} + .d2-3769731346 .background-color-AA2{background-color:#4A6FF3;} + .d2-3769731346 .background-color-AA4{background-color:#EDF0FD;} + .d2-3769731346 .background-color-AA5{background-color:#F7F8FE;} + .d2-3769731346 .background-color-AB4{background-color:#EDF0FD;} + .d2-3769731346 .background-color-AB5{background-color:#F7F8FE;} + .d2-3769731346 .color-N1{color:#0A0F25;} + .d2-3769731346 .color-N2{color:#676C7E;} + .d2-3769731346 .color-N3{color:#9499AB;} + .d2-3769731346 .color-N4{color:#CFD2DD;} + .d2-3769731346 .color-N5{color:#DEE1EB;} + .d2-3769731346 .color-N6{color:#EEF1F8;} + .d2-3769731346 .color-N7{color:#FFFFFF;} + .d2-3769731346 .color-B1{color:#0D32B2;} + .d2-3769731346 .color-B2{color:#0D32B2;} + .d2-3769731346 .color-B3{color:#E3E9FD;} + .d2-3769731346 .color-B4{color:#E3E9FD;} + .d2-3769731346 .color-B5{color:#EDF0FD;} + .d2-3769731346 .color-B6{color:#F7F8FE;} + .d2-3769731346 .color-AA2{color:#4A6FF3;} + .d2-3769731346 .color-AA4{color:#EDF0FD;} + .d2-3769731346 .color-AA5{color:#F7F8FE;} + .d2-3769731346 .color-AB4{color:#EDF0FD;} + .d2-3769731346 .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}]]>backendclientclient BO_ID -> D2_ID diff --git a/e2etests/testdata/txtar/sequence-edge-group-tall-edge-label/dagre/board.exp.json b/e2etests/testdata/txtar/sequence-edge-group-tall-edge-label/dagre/board.exp.json index ac53c86635..4f735baf03 100644 --- a/e2etests/testdata/txtar/sequence-edge-group-tall-edge-label/dagre/board.exp.json +++ b/e2etests/testdata/txtar/sequence-edge-group-tall-edge-label/dagre/board.exp.json @@ -318,6 +318,7 @@ "labelHeight": 101, "labelPosition": "INSIDE_MIDDLE_CENTER", "labelPercentage": 0, + "link": "", "route": [ { "x": 62, @@ -356,6 +357,7 @@ "labelHeight": 101, "labelPosition": "INSIDE_MIDDLE_CENTER", "labelPercentage": 0, + "link": "", "route": [ { "x": 62, @@ -394,6 +396,7 @@ "labelHeight": 21, "labelPosition": "INSIDE_MIDDLE_CENTER", "labelPercentage": 0, + "link": "", "route": [ { "x": 62, @@ -432,6 +435,7 @@ "labelHeight": 21, "labelPosition": "INSIDE_MIDDLE_CENTER", "labelPercentage": 0, + "link": "", "route": [ { "x": 62, @@ -470,6 +474,7 @@ "labelHeight": 101, "labelPosition": "INSIDE_MIDDLE_CENTER", "labelPercentage": 0, + "link": "", "route": [ { "x": 62, @@ -508,6 +513,7 @@ "labelHeight": 101, "labelPosition": "INSIDE_MIDDLE_CENTER", "labelPercentage": 0, + "link": "", "route": [ { "x": 62, @@ -546,6 +552,7 @@ "labelHeight": 101, "labelPosition": "INSIDE_MIDDLE_CENTER", "labelPercentage": 0, + "link": "", "route": [ { "x": 362, @@ -584,6 +591,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 62, @@ -622,6 +630,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 212, @@ -660,6 +669,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 362, diff --git a/e2etests/testdata/txtar/sequence-edge-group-tall-edge-label/dagre/sketch.exp.svg b/e2etests/testdata/txtar/sequence-edge-group-tall-edge-label/dagre/sketch.exp.svg index f5a70390e5..01e79e7cc6 100644 --- a/e2etests/testdata/txtar/sequence-edge-group-tall-edge-label/dagre/sketch.exp.svg +++ b/e2etests/testdata/txtar/sequence-edge-group-tall-edge-label/dagre/sketch.exp.svg @@ -1,16 +1,16 @@ -SequenceSystemFileASystem StartsOkayAlright OneTwoThreeFourFiveSix OneTwoThreeFourFiveSixOneTwoOneTwoThreeFourFiveSixOneTwoThreeFourFiveSixOneTwoThreeFourFiveSix + .d2-2545930397 .fill-N1{fill:#0A0F25;} + .d2-2545930397 .fill-N2{fill:#676C7E;} + .d2-2545930397 .fill-N3{fill:#9499AB;} + .d2-2545930397 .fill-N4{fill:#CFD2DD;} + .d2-2545930397 .fill-N5{fill:#DEE1EB;} + .d2-2545930397 .fill-N6{fill:#EEF1F8;} + .d2-2545930397 .fill-N7{fill:#FFFFFF;} + .d2-2545930397 .fill-B1{fill:#0D32B2;} + .d2-2545930397 .fill-B2{fill:#0D32B2;} + .d2-2545930397 .fill-B3{fill:#E3E9FD;} + .d2-2545930397 .fill-B4{fill:#E3E9FD;} + .d2-2545930397 .fill-B5{fill:#EDF0FD;} + .d2-2545930397 .fill-B6{fill:#F7F8FE;} + .d2-2545930397 .fill-AA2{fill:#4A6FF3;} + .d2-2545930397 .fill-AA4{fill:#EDF0FD;} + .d2-2545930397 .fill-AA5{fill:#F7F8FE;} + .d2-2545930397 .fill-AB4{fill:#EDF0FD;} + .d2-2545930397 .fill-AB5{fill:#F7F8FE;} + .d2-2545930397 .stroke-N1{stroke:#0A0F25;} + .d2-2545930397 .stroke-N2{stroke:#676C7E;} + .d2-2545930397 .stroke-N3{stroke:#9499AB;} + .d2-2545930397 .stroke-N4{stroke:#CFD2DD;} + .d2-2545930397 .stroke-N5{stroke:#DEE1EB;} + .d2-2545930397 .stroke-N6{stroke:#EEF1F8;} + .d2-2545930397 .stroke-N7{stroke:#FFFFFF;} + .d2-2545930397 .stroke-B1{stroke:#0D32B2;} + .d2-2545930397 .stroke-B2{stroke:#0D32B2;} + .d2-2545930397 .stroke-B3{stroke:#E3E9FD;} + .d2-2545930397 .stroke-B4{stroke:#E3E9FD;} + .d2-2545930397 .stroke-B5{stroke:#EDF0FD;} + .d2-2545930397 .stroke-B6{stroke:#F7F8FE;} + .d2-2545930397 .stroke-AA2{stroke:#4A6FF3;} + .d2-2545930397 .stroke-AA4{stroke:#EDF0FD;} + .d2-2545930397 .stroke-AA5{stroke:#F7F8FE;} + .d2-2545930397 .stroke-AB4{stroke:#EDF0FD;} + .d2-2545930397 .stroke-AB5{stroke:#F7F8FE;} + .d2-2545930397 .background-color-N1{background-color:#0A0F25;} + .d2-2545930397 .background-color-N2{background-color:#676C7E;} + .d2-2545930397 .background-color-N3{background-color:#9499AB;} + .d2-2545930397 .background-color-N4{background-color:#CFD2DD;} + .d2-2545930397 .background-color-N5{background-color:#DEE1EB;} + .d2-2545930397 .background-color-N6{background-color:#EEF1F8;} + .d2-2545930397 .background-color-N7{background-color:#FFFFFF;} + .d2-2545930397 .background-color-B1{background-color:#0D32B2;} + .d2-2545930397 .background-color-B2{background-color:#0D32B2;} + .d2-2545930397 .background-color-B3{background-color:#E3E9FD;} + .d2-2545930397 .background-color-B4{background-color:#E3E9FD;} + .d2-2545930397 .background-color-B5{background-color:#EDF0FD;} + .d2-2545930397 .background-color-B6{background-color:#F7F8FE;} + .d2-2545930397 .background-color-AA2{background-color:#4A6FF3;} + .d2-2545930397 .background-color-AA4{background-color:#EDF0FD;} + .d2-2545930397 .background-color-AA5{background-color:#F7F8FE;} + .d2-2545930397 .background-color-AB4{background-color:#EDF0FD;} + .d2-2545930397 .background-color-AB5{background-color:#F7F8FE;} + .d2-2545930397 .color-N1{color:#0A0F25;} + .d2-2545930397 .color-N2{color:#676C7E;} + .d2-2545930397 .color-N3{color:#9499AB;} + .d2-2545930397 .color-N4{color:#CFD2DD;} + .d2-2545930397 .color-N5{color:#DEE1EB;} + .d2-2545930397 .color-N6{color:#EEF1F8;} + .d2-2545930397 .color-N7{color:#FFFFFF;} + .d2-2545930397 .color-B1{color:#0D32B2;} + .d2-2545930397 .color-B2{color:#0D32B2;} + .d2-2545930397 .color-B3{color:#E3E9FD;} + .d2-2545930397 .color-B4{color:#E3E9FD;} + .d2-2545930397 .color-B5{color:#EDF0FD;} + .d2-2545930397 .color-B6{color:#F7F8FE;} + .d2-2545930397 .color-AA2{color:#4A6FF3;} + .d2-2545930397 .color-AA4{color:#EDF0FD;} + .d2-2545930397 .color-AA5{color:#F7F8FE;} + .d2-2545930397 .color-AB4{color:#EDF0FD;} + .d2-2545930397 .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}]]>SequenceSystemFileASystem StartsOkayAlright OneTwoThreeFourFiveSix OneTwoThreeFourFiveSixOneTwoOneTwoThreeFourFiveSixOneTwoThreeFourFiveSixOneTwoThreeFourFiveSix diff --git a/e2etests/testdata/txtar/sequence-edge-group-tall-edge-label/elk/board.exp.json b/e2etests/testdata/txtar/sequence-edge-group-tall-edge-label/elk/board.exp.json index b944f929b6..40c4d02170 100644 --- a/e2etests/testdata/txtar/sequence-edge-group-tall-edge-label/elk/board.exp.json +++ b/e2etests/testdata/txtar/sequence-edge-group-tall-edge-label/elk/board.exp.json @@ -318,6 +318,7 @@ "labelHeight": 101, "labelPosition": "INSIDE_MIDDLE_CENTER", "labelPercentage": 0, + "link": "", "route": [ { "x": 74, @@ -356,6 +357,7 @@ "labelHeight": 101, "labelPosition": "INSIDE_MIDDLE_CENTER", "labelPercentage": 0, + "link": "", "route": [ { "x": 74, @@ -394,6 +396,7 @@ "labelHeight": 21, "labelPosition": "INSIDE_MIDDLE_CENTER", "labelPercentage": 0, + "link": "", "route": [ { "x": 74, @@ -432,6 +435,7 @@ "labelHeight": 21, "labelPosition": "INSIDE_MIDDLE_CENTER", "labelPercentage": 0, + "link": "", "route": [ { "x": 74, @@ -470,6 +474,7 @@ "labelHeight": 101, "labelPosition": "INSIDE_MIDDLE_CENTER", "labelPercentage": 0, + "link": "", "route": [ { "x": 74, @@ -508,6 +513,7 @@ "labelHeight": 101, "labelPosition": "INSIDE_MIDDLE_CENTER", "labelPercentage": 0, + "link": "", "route": [ { "x": 74, @@ -546,6 +552,7 @@ "labelHeight": 101, "labelPosition": "INSIDE_MIDDLE_CENTER", "labelPercentage": 0, + "link": "", "route": [ { "x": 374, @@ -584,6 +591,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 74, @@ -622,6 +630,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 224, @@ -660,6 +669,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 374, diff --git a/e2etests/testdata/txtar/sequence-edge-group-tall-edge-label/elk/sketch.exp.svg b/e2etests/testdata/txtar/sequence-edge-group-tall-edge-label/elk/sketch.exp.svg index e52dd5bd5b..ebd9108dc1 100644 --- a/e2etests/testdata/txtar/sequence-edge-group-tall-edge-label/elk/sketch.exp.svg +++ b/e2etests/testdata/txtar/sequence-edge-group-tall-edge-label/elk/sketch.exp.svg @@ -1,16 +1,16 @@ -SequenceSystemFileASystem StartsOkayAlright OneTwoThreeFourFiveSix OneTwoThreeFourFiveSixOneTwoOneTwoThreeFourFiveSixOneTwoThreeFourFiveSixOneTwoThreeFourFiveSix + .d2-2921011198 .fill-N1{fill:#0A0F25;} + .d2-2921011198 .fill-N2{fill:#676C7E;} + .d2-2921011198 .fill-N3{fill:#9499AB;} + .d2-2921011198 .fill-N4{fill:#CFD2DD;} + .d2-2921011198 .fill-N5{fill:#DEE1EB;} + .d2-2921011198 .fill-N6{fill:#EEF1F8;} + .d2-2921011198 .fill-N7{fill:#FFFFFF;} + .d2-2921011198 .fill-B1{fill:#0D32B2;} + .d2-2921011198 .fill-B2{fill:#0D32B2;} + .d2-2921011198 .fill-B3{fill:#E3E9FD;} + .d2-2921011198 .fill-B4{fill:#E3E9FD;} + .d2-2921011198 .fill-B5{fill:#EDF0FD;} + .d2-2921011198 .fill-B6{fill:#F7F8FE;} + .d2-2921011198 .fill-AA2{fill:#4A6FF3;} + .d2-2921011198 .fill-AA4{fill:#EDF0FD;} + .d2-2921011198 .fill-AA5{fill:#F7F8FE;} + .d2-2921011198 .fill-AB4{fill:#EDF0FD;} + .d2-2921011198 .fill-AB5{fill:#F7F8FE;} + .d2-2921011198 .stroke-N1{stroke:#0A0F25;} + .d2-2921011198 .stroke-N2{stroke:#676C7E;} + .d2-2921011198 .stroke-N3{stroke:#9499AB;} + .d2-2921011198 .stroke-N4{stroke:#CFD2DD;} + .d2-2921011198 .stroke-N5{stroke:#DEE1EB;} + .d2-2921011198 .stroke-N6{stroke:#EEF1F8;} + .d2-2921011198 .stroke-N7{stroke:#FFFFFF;} + .d2-2921011198 .stroke-B1{stroke:#0D32B2;} + .d2-2921011198 .stroke-B2{stroke:#0D32B2;} + .d2-2921011198 .stroke-B3{stroke:#E3E9FD;} + .d2-2921011198 .stroke-B4{stroke:#E3E9FD;} + .d2-2921011198 .stroke-B5{stroke:#EDF0FD;} + .d2-2921011198 .stroke-B6{stroke:#F7F8FE;} + .d2-2921011198 .stroke-AA2{stroke:#4A6FF3;} + .d2-2921011198 .stroke-AA4{stroke:#EDF0FD;} + .d2-2921011198 .stroke-AA5{stroke:#F7F8FE;} + .d2-2921011198 .stroke-AB4{stroke:#EDF0FD;} + .d2-2921011198 .stroke-AB5{stroke:#F7F8FE;} + .d2-2921011198 .background-color-N1{background-color:#0A0F25;} + .d2-2921011198 .background-color-N2{background-color:#676C7E;} + .d2-2921011198 .background-color-N3{background-color:#9499AB;} + .d2-2921011198 .background-color-N4{background-color:#CFD2DD;} + .d2-2921011198 .background-color-N5{background-color:#DEE1EB;} + .d2-2921011198 .background-color-N6{background-color:#EEF1F8;} + .d2-2921011198 .background-color-N7{background-color:#FFFFFF;} + .d2-2921011198 .background-color-B1{background-color:#0D32B2;} + .d2-2921011198 .background-color-B2{background-color:#0D32B2;} + .d2-2921011198 .background-color-B3{background-color:#E3E9FD;} + .d2-2921011198 .background-color-B4{background-color:#E3E9FD;} + .d2-2921011198 .background-color-B5{background-color:#EDF0FD;} + .d2-2921011198 .background-color-B6{background-color:#F7F8FE;} + .d2-2921011198 .background-color-AA2{background-color:#4A6FF3;} + .d2-2921011198 .background-color-AA4{background-color:#EDF0FD;} + .d2-2921011198 .background-color-AA5{background-color:#F7F8FE;} + .d2-2921011198 .background-color-AB4{background-color:#EDF0FD;} + .d2-2921011198 .background-color-AB5{background-color:#F7F8FE;} + .d2-2921011198 .color-N1{color:#0A0F25;} + .d2-2921011198 .color-N2{color:#676C7E;} + .d2-2921011198 .color-N3{color:#9499AB;} + .d2-2921011198 .color-N4{color:#CFD2DD;} + .d2-2921011198 .color-N5{color:#DEE1EB;} + .d2-2921011198 .color-N6{color:#EEF1F8;} + .d2-2921011198 .color-N7{color:#FFFFFF;} + .d2-2921011198 .color-B1{color:#0D32B2;} + .d2-2921011198 .color-B2{color:#0D32B2;} + .d2-2921011198 .color-B3{color:#E3E9FD;} + .d2-2921011198 .color-B4{color:#E3E9FD;} + .d2-2921011198 .color-B5{color:#EDF0FD;} + .d2-2921011198 .color-B6{color:#F7F8FE;} + .d2-2921011198 .color-AA2{color:#4A6FF3;} + .d2-2921011198 .color-AA4{color:#EDF0FD;} + .d2-2921011198 .color-AA5{color:#F7F8FE;} + .d2-2921011198 .color-AB4{color:#EDF0FD;} + .d2-2921011198 .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}]]>SequenceSystemFileASystem StartsOkayAlright OneTwoThreeFourFiveSix OneTwoThreeFourFiveSixOneTwoOneTwoThreeFourFiveSixOneTwoThreeFourFiveSixOneTwoThreeFourFiveSix diff --git a/e2etests/testdata/txtar/sequence-fontsize/dagre/board.exp.json b/e2etests/testdata/txtar/sequence-fontsize/dagre/board.exp.json index f0a4006286..18fecc5d76 100644 --- a/e2etests/testdata/txtar/sequence-fontsize/dagre/board.exp.json +++ b/e2etests/testdata/txtar/sequence-fontsize/dagre/board.exp.json @@ -231,6 +231,7 @@ "labelHeight": 31, "labelPosition": "INSIDE_MIDDLE_CENTER", "labelPercentage": 0, + "link": "", "route": [ { "x": 73.5, @@ -269,6 +270,7 @@ "labelHeight": 55, "labelPosition": "INSIDE_MIDDLE_CENTER", "labelPercentage": 0, + "link": "", "route": [ { "x": 443, @@ -315,6 +317,7 @@ "labelHeight": 31, "labelPosition": "INSIDE_MIDDLE_CENTER", "labelPercentage": 0, + "link": "", "route": [ { "x": 431, @@ -353,6 +356,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 67.5, @@ -391,6 +395,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 437, @@ -429,6 +434,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 1319, diff --git a/e2etests/testdata/txtar/sequence-fontsize/dagre/sketch.exp.svg b/e2etests/testdata/txtar/sequence-fontsize/dagre/sketch.exp.svg index 4d0eafa948..1c96d6d0b2 100644 --- a/e2etests/testdata/txtar/sequence-fontsize/dagre/sketch.exp.svg +++ b/e2etests/testdata/txtar/sequence-fontsize/dagre/sketch.exp.svg @@ -1,16 +1,16 @@ -Front-EndLibreriaCD generatePresentationPayload()Generar y FirmarPrueba de TitularidadPrueba de TitularidadPrueba de TitularidadPrueba de TitularidadPresentacion Firmada + .d2-1300670411 .fill-N1{fill:#0A0F25;} + .d2-1300670411 .fill-N2{fill:#676C7E;} + .d2-1300670411 .fill-N3{fill:#9499AB;} + .d2-1300670411 .fill-N4{fill:#CFD2DD;} + .d2-1300670411 .fill-N5{fill:#DEE1EB;} + .d2-1300670411 .fill-N6{fill:#EEF1F8;} + .d2-1300670411 .fill-N7{fill:#FFFFFF;} + .d2-1300670411 .fill-B1{fill:#0D32B2;} + .d2-1300670411 .fill-B2{fill:#0D32B2;} + .d2-1300670411 .fill-B3{fill:#E3E9FD;} + .d2-1300670411 .fill-B4{fill:#E3E9FD;} + .d2-1300670411 .fill-B5{fill:#EDF0FD;} + .d2-1300670411 .fill-B6{fill:#F7F8FE;} + .d2-1300670411 .fill-AA2{fill:#4A6FF3;} + .d2-1300670411 .fill-AA4{fill:#EDF0FD;} + .d2-1300670411 .fill-AA5{fill:#F7F8FE;} + .d2-1300670411 .fill-AB4{fill:#EDF0FD;} + .d2-1300670411 .fill-AB5{fill:#F7F8FE;} + .d2-1300670411 .stroke-N1{stroke:#0A0F25;} + .d2-1300670411 .stroke-N2{stroke:#676C7E;} + .d2-1300670411 .stroke-N3{stroke:#9499AB;} + .d2-1300670411 .stroke-N4{stroke:#CFD2DD;} + .d2-1300670411 .stroke-N5{stroke:#DEE1EB;} + .d2-1300670411 .stroke-N6{stroke:#EEF1F8;} + .d2-1300670411 .stroke-N7{stroke:#FFFFFF;} + .d2-1300670411 .stroke-B1{stroke:#0D32B2;} + .d2-1300670411 .stroke-B2{stroke:#0D32B2;} + .d2-1300670411 .stroke-B3{stroke:#E3E9FD;} + .d2-1300670411 .stroke-B4{stroke:#E3E9FD;} + .d2-1300670411 .stroke-B5{stroke:#EDF0FD;} + .d2-1300670411 .stroke-B6{stroke:#F7F8FE;} + .d2-1300670411 .stroke-AA2{stroke:#4A6FF3;} + .d2-1300670411 .stroke-AA4{stroke:#EDF0FD;} + .d2-1300670411 .stroke-AA5{stroke:#F7F8FE;} + .d2-1300670411 .stroke-AB4{stroke:#EDF0FD;} + .d2-1300670411 .stroke-AB5{stroke:#F7F8FE;} + .d2-1300670411 .background-color-N1{background-color:#0A0F25;} + .d2-1300670411 .background-color-N2{background-color:#676C7E;} + .d2-1300670411 .background-color-N3{background-color:#9499AB;} + .d2-1300670411 .background-color-N4{background-color:#CFD2DD;} + .d2-1300670411 .background-color-N5{background-color:#DEE1EB;} + .d2-1300670411 .background-color-N6{background-color:#EEF1F8;} + .d2-1300670411 .background-color-N7{background-color:#FFFFFF;} + .d2-1300670411 .background-color-B1{background-color:#0D32B2;} + .d2-1300670411 .background-color-B2{background-color:#0D32B2;} + .d2-1300670411 .background-color-B3{background-color:#E3E9FD;} + .d2-1300670411 .background-color-B4{background-color:#E3E9FD;} + .d2-1300670411 .background-color-B5{background-color:#EDF0FD;} + .d2-1300670411 .background-color-B6{background-color:#F7F8FE;} + .d2-1300670411 .background-color-AA2{background-color:#4A6FF3;} + .d2-1300670411 .background-color-AA4{background-color:#EDF0FD;} + .d2-1300670411 .background-color-AA5{background-color:#F7F8FE;} + .d2-1300670411 .background-color-AB4{background-color:#EDF0FD;} + .d2-1300670411 .background-color-AB5{background-color:#F7F8FE;} + .d2-1300670411 .color-N1{color:#0A0F25;} + .d2-1300670411 .color-N2{color:#676C7E;} + .d2-1300670411 .color-N3{color:#9499AB;} + .d2-1300670411 .color-N4{color:#CFD2DD;} + .d2-1300670411 .color-N5{color:#DEE1EB;} + .d2-1300670411 .color-N6{color:#EEF1F8;} + .d2-1300670411 .color-N7{color:#FFFFFF;} + .d2-1300670411 .color-B1{color:#0D32B2;} + .d2-1300670411 .color-B2{color:#0D32B2;} + .d2-1300670411 .color-B3{color:#E3E9FD;} + .d2-1300670411 .color-B4{color:#E3E9FD;} + .d2-1300670411 .color-B5{color:#EDF0FD;} + .d2-1300670411 .color-B6{color:#F7F8FE;} + .d2-1300670411 .color-AA2{color:#4A6FF3;} + .d2-1300670411 .color-AA4{color:#EDF0FD;} + .d2-1300670411 .color-AA5{color:#F7F8FE;} + .d2-1300670411 .color-AB4{color:#EDF0FD;} + .d2-1300670411 .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}]]>Front-EndLibreriaCD generatePresentationPayload()Generar y FirmarPrueba de TitularidadPrueba de TitularidadPrueba de TitularidadPrueba de TitularidadPresentacion Firmada diff --git a/e2etests/testdata/txtar/sequence-fontsize/elk/board.exp.json b/e2etests/testdata/txtar/sequence-fontsize/elk/board.exp.json index f0a4006286..18fecc5d76 100644 --- a/e2etests/testdata/txtar/sequence-fontsize/elk/board.exp.json +++ b/e2etests/testdata/txtar/sequence-fontsize/elk/board.exp.json @@ -231,6 +231,7 @@ "labelHeight": 31, "labelPosition": "INSIDE_MIDDLE_CENTER", "labelPercentage": 0, + "link": "", "route": [ { "x": 73.5, @@ -269,6 +270,7 @@ "labelHeight": 55, "labelPosition": "INSIDE_MIDDLE_CENTER", "labelPercentage": 0, + "link": "", "route": [ { "x": 443, @@ -315,6 +317,7 @@ "labelHeight": 31, "labelPosition": "INSIDE_MIDDLE_CENTER", "labelPercentage": 0, + "link": "", "route": [ { "x": 431, @@ -353,6 +356,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 67.5, @@ -391,6 +395,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 437, @@ -429,6 +434,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 1319, diff --git a/e2etests/testdata/txtar/sequence-fontsize/elk/sketch.exp.svg b/e2etests/testdata/txtar/sequence-fontsize/elk/sketch.exp.svg index 4d0eafa948..1c96d6d0b2 100644 --- a/e2etests/testdata/txtar/sequence-fontsize/elk/sketch.exp.svg +++ b/e2etests/testdata/txtar/sequence-fontsize/elk/sketch.exp.svg @@ -1,16 +1,16 @@ -Front-EndLibreriaCD generatePresentationPayload()Generar y FirmarPrueba de TitularidadPrueba de TitularidadPrueba de TitularidadPrueba de TitularidadPresentacion Firmada + .d2-1300670411 .fill-N1{fill:#0A0F25;} + .d2-1300670411 .fill-N2{fill:#676C7E;} + .d2-1300670411 .fill-N3{fill:#9499AB;} + .d2-1300670411 .fill-N4{fill:#CFD2DD;} + .d2-1300670411 .fill-N5{fill:#DEE1EB;} + .d2-1300670411 .fill-N6{fill:#EEF1F8;} + .d2-1300670411 .fill-N7{fill:#FFFFFF;} + .d2-1300670411 .fill-B1{fill:#0D32B2;} + .d2-1300670411 .fill-B2{fill:#0D32B2;} + .d2-1300670411 .fill-B3{fill:#E3E9FD;} + .d2-1300670411 .fill-B4{fill:#E3E9FD;} + .d2-1300670411 .fill-B5{fill:#EDF0FD;} + .d2-1300670411 .fill-B6{fill:#F7F8FE;} + .d2-1300670411 .fill-AA2{fill:#4A6FF3;} + .d2-1300670411 .fill-AA4{fill:#EDF0FD;} + .d2-1300670411 .fill-AA5{fill:#F7F8FE;} + .d2-1300670411 .fill-AB4{fill:#EDF0FD;} + .d2-1300670411 .fill-AB5{fill:#F7F8FE;} + .d2-1300670411 .stroke-N1{stroke:#0A0F25;} + .d2-1300670411 .stroke-N2{stroke:#676C7E;} + .d2-1300670411 .stroke-N3{stroke:#9499AB;} + .d2-1300670411 .stroke-N4{stroke:#CFD2DD;} + .d2-1300670411 .stroke-N5{stroke:#DEE1EB;} + .d2-1300670411 .stroke-N6{stroke:#EEF1F8;} + .d2-1300670411 .stroke-N7{stroke:#FFFFFF;} + .d2-1300670411 .stroke-B1{stroke:#0D32B2;} + .d2-1300670411 .stroke-B2{stroke:#0D32B2;} + .d2-1300670411 .stroke-B3{stroke:#E3E9FD;} + .d2-1300670411 .stroke-B4{stroke:#E3E9FD;} + .d2-1300670411 .stroke-B5{stroke:#EDF0FD;} + .d2-1300670411 .stroke-B6{stroke:#F7F8FE;} + .d2-1300670411 .stroke-AA2{stroke:#4A6FF3;} + .d2-1300670411 .stroke-AA4{stroke:#EDF0FD;} + .d2-1300670411 .stroke-AA5{stroke:#F7F8FE;} + .d2-1300670411 .stroke-AB4{stroke:#EDF0FD;} + .d2-1300670411 .stroke-AB5{stroke:#F7F8FE;} + .d2-1300670411 .background-color-N1{background-color:#0A0F25;} + .d2-1300670411 .background-color-N2{background-color:#676C7E;} + .d2-1300670411 .background-color-N3{background-color:#9499AB;} + .d2-1300670411 .background-color-N4{background-color:#CFD2DD;} + .d2-1300670411 .background-color-N5{background-color:#DEE1EB;} + .d2-1300670411 .background-color-N6{background-color:#EEF1F8;} + .d2-1300670411 .background-color-N7{background-color:#FFFFFF;} + .d2-1300670411 .background-color-B1{background-color:#0D32B2;} + .d2-1300670411 .background-color-B2{background-color:#0D32B2;} + .d2-1300670411 .background-color-B3{background-color:#E3E9FD;} + .d2-1300670411 .background-color-B4{background-color:#E3E9FD;} + .d2-1300670411 .background-color-B5{background-color:#EDF0FD;} + .d2-1300670411 .background-color-B6{background-color:#F7F8FE;} + .d2-1300670411 .background-color-AA2{background-color:#4A6FF3;} + .d2-1300670411 .background-color-AA4{background-color:#EDF0FD;} + .d2-1300670411 .background-color-AA5{background-color:#F7F8FE;} + .d2-1300670411 .background-color-AB4{background-color:#EDF0FD;} + .d2-1300670411 .background-color-AB5{background-color:#F7F8FE;} + .d2-1300670411 .color-N1{color:#0A0F25;} + .d2-1300670411 .color-N2{color:#676C7E;} + .d2-1300670411 .color-N3{color:#9499AB;} + .d2-1300670411 .color-N4{color:#CFD2DD;} + .d2-1300670411 .color-N5{color:#DEE1EB;} + .d2-1300670411 .color-N6{color:#EEF1F8;} + .d2-1300670411 .color-N7{color:#FFFFFF;} + .d2-1300670411 .color-B1{color:#0D32B2;} + .d2-1300670411 .color-B2{color:#0D32B2;} + .d2-1300670411 .color-B3{color:#E3E9FD;} + .d2-1300670411 .color-B4{color:#E3E9FD;} + .d2-1300670411 .color-B5{color:#EDF0FD;} + .d2-1300670411 .color-B6{color:#F7F8FE;} + .d2-1300670411 .color-AA2{color:#4A6FF3;} + .d2-1300670411 .color-AA4{color:#EDF0FD;} + .d2-1300670411 .color-AA5{color:#F7F8FE;} + .d2-1300670411 .color-AB4{color:#EDF0FD;} + .d2-1300670411 .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}]]>Front-EndLibreriaCD generatePresentationPayload()Generar y FirmarPrueba de TitularidadPrueba de TitularidadPrueba de TitularidadPrueba de TitularidadPresentacion Firmada diff --git a/e2etests/testdata/txtar/sequence-multiline-alignment/dagre/board.exp.json b/e2etests/testdata/txtar/sequence-multiline-alignment/dagre/board.exp.json index cbedac69f9..6bdf35e967 100644 --- a/e2etests/testdata/txtar/sequence-multiline-alignment/dagre/board.exp.json +++ b/e2etests/testdata/txtar/sequence-multiline-alignment/dagre/board.exp.json @@ -150,6 +150,7 @@ "labelHeight": 85, "labelPosition": "INSIDE_MIDDLE_CENTER", "labelPercentage": 0, + "link": "", "route": [ { "x": 212, @@ -196,6 +197,7 @@ "labelHeight": 85, "labelPosition": "INSIDE_MIDDLE_CENTER", "labelPercentage": 0, + "link": "", "route": [ { "x": 212, @@ -242,6 +244,7 @@ "labelHeight": 21, "labelPosition": "INSIDE_MIDDLE_CENTER", "labelPercentage": 0, + "link": "", "route": [ { "x": 68, @@ -280,6 +283,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 62, @@ -318,6 +322,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 212, diff --git a/e2etests/testdata/txtar/sequence-multiline-alignment/dagre/sketch.exp.svg b/e2etests/testdata/txtar/sequence-multiline-alignment/dagre/sketch.exp.svg index 3feaf509c8..76cacfad78 100644 --- a/e2etests/testdata/txtar/sequence-multiline-alignment/dagre/sketch.exp.svg +++ b/e2etests/testdata/txtar/sequence-multiline-alignment/dagre/sketch.exp.svg @@ -1,16 +1,16 @@ -ab onetwothreefourfiveonetwothreefourfiveokay then + .d2-1013481721 .fill-N1{fill:#0A0F25;} + .d2-1013481721 .fill-N2{fill:#676C7E;} + .d2-1013481721 .fill-N3{fill:#9499AB;} + .d2-1013481721 .fill-N4{fill:#CFD2DD;} + .d2-1013481721 .fill-N5{fill:#DEE1EB;} + .d2-1013481721 .fill-N6{fill:#EEF1F8;} + .d2-1013481721 .fill-N7{fill:#FFFFFF;} + .d2-1013481721 .fill-B1{fill:#0D32B2;} + .d2-1013481721 .fill-B2{fill:#0D32B2;} + .d2-1013481721 .fill-B3{fill:#E3E9FD;} + .d2-1013481721 .fill-B4{fill:#E3E9FD;} + .d2-1013481721 .fill-B5{fill:#EDF0FD;} + .d2-1013481721 .fill-B6{fill:#F7F8FE;} + .d2-1013481721 .fill-AA2{fill:#4A6FF3;} + .d2-1013481721 .fill-AA4{fill:#EDF0FD;} + .d2-1013481721 .fill-AA5{fill:#F7F8FE;} + .d2-1013481721 .fill-AB4{fill:#EDF0FD;} + .d2-1013481721 .fill-AB5{fill:#F7F8FE;} + .d2-1013481721 .stroke-N1{stroke:#0A0F25;} + .d2-1013481721 .stroke-N2{stroke:#676C7E;} + .d2-1013481721 .stroke-N3{stroke:#9499AB;} + .d2-1013481721 .stroke-N4{stroke:#CFD2DD;} + .d2-1013481721 .stroke-N5{stroke:#DEE1EB;} + .d2-1013481721 .stroke-N6{stroke:#EEF1F8;} + .d2-1013481721 .stroke-N7{stroke:#FFFFFF;} + .d2-1013481721 .stroke-B1{stroke:#0D32B2;} + .d2-1013481721 .stroke-B2{stroke:#0D32B2;} + .d2-1013481721 .stroke-B3{stroke:#E3E9FD;} + .d2-1013481721 .stroke-B4{stroke:#E3E9FD;} + .d2-1013481721 .stroke-B5{stroke:#EDF0FD;} + .d2-1013481721 .stroke-B6{stroke:#F7F8FE;} + .d2-1013481721 .stroke-AA2{stroke:#4A6FF3;} + .d2-1013481721 .stroke-AA4{stroke:#EDF0FD;} + .d2-1013481721 .stroke-AA5{stroke:#F7F8FE;} + .d2-1013481721 .stroke-AB4{stroke:#EDF0FD;} + .d2-1013481721 .stroke-AB5{stroke:#F7F8FE;} + .d2-1013481721 .background-color-N1{background-color:#0A0F25;} + .d2-1013481721 .background-color-N2{background-color:#676C7E;} + .d2-1013481721 .background-color-N3{background-color:#9499AB;} + .d2-1013481721 .background-color-N4{background-color:#CFD2DD;} + .d2-1013481721 .background-color-N5{background-color:#DEE1EB;} + .d2-1013481721 .background-color-N6{background-color:#EEF1F8;} + .d2-1013481721 .background-color-N7{background-color:#FFFFFF;} + .d2-1013481721 .background-color-B1{background-color:#0D32B2;} + .d2-1013481721 .background-color-B2{background-color:#0D32B2;} + .d2-1013481721 .background-color-B3{background-color:#E3E9FD;} + .d2-1013481721 .background-color-B4{background-color:#E3E9FD;} + .d2-1013481721 .background-color-B5{background-color:#EDF0FD;} + .d2-1013481721 .background-color-B6{background-color:#F7F8FE;} + .d2-1013481721 .background-color-AA2{background-color:#4A6FF3;} + .d2-1013481721 .background-color-AA4{background-color:#EDF0FD;} + .d2-1013481721 .background-color-AA5{background-color:#F7F8FE;} + .d2-1013481721 .background-color-AB4{background-color:#EDF0FD;} + .d2-1013481721 .background-color-AB5{background-color:#F7F8FE;} + .d2-1013481721 .color-N1{color:#0A0F25;} + .d2-1013481721 .color-N2{color:#676C7E;} + .d2-1013481721 .color-N3{color:#9499AB;} + .d2-1013481721 .color-N4{color:#CFD2DD;} + .d2-1013481721 .color-N5{color:#DEE1EB;} + .d2-1013481721 .color-N6{color:#EEF1F8;} + .d2-1013481721 .color-N7{color:#FFFFFF;} + .d2-1013481721 .color-B1{color:#0D32B2;} + .d2-1013481721 .color-B2{color:#0D32B2;} + .d2-1013481721 .color-B3{color:#E3E9FD;} + .d2-1013481721 .color-B4{color:#E3E9FD;} + .d2-1013481721 .color-B5{color:#EDF0FD;} + .d2-1013481721 .color-B6{color:#F7F8FE;} + .d2-1013481721 .color-AA2{color:#4A6FF3;} + .d2-1013481721 .color-AA4{color:#EDF0FD;} + .d2-1013481721 .color-AA5{color:#F7F8FE;} + .d2-1013481721 .color-AB4{color:#EDF0FD;} + .d2-1013481721 .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}]]>ab onetwothreefourfiveonetwothreefourfiveokay then diff --git a/e2etests/testdata/txtar/sequence-multiline-alignment/elk/board.exp.json b/e2etests/testdata/txtar/sequence-multiline-alignment/elk/board.exp.json index cbedac69f9..6bdf35e967 100644 --- a/e2etests/testdata/txtar/sequence-multiline-alignment/elk/board.exp.json +++ b/e2etests/testdata/txtar/sequence-multiline-alignment/elk/board.exp.json @@ -150,6 +150,7 @@ "labelHeight": 85, "labelPosition": "INSIDE_MIDDLE_CENTER", "labelPercentage": 0, + "link": "", "route": [ { "x": 212, @@ -196,6 +197,7 @@ "labelHeight": 85, "labelPosition": "INSIDE_MIDDLE_CENTER", "labelPercentage": 0, + "link": "", "route": [ { "x": 212, @@ -242,6 +244,7 @@ "labelHeight": 21, "labelPosition": "INSIDE_MIDDLE_CENTER", "labelPercentage": 0, + "link": "", "route": [ { "x": 68, @@ -280,6 +283,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 62, @@ -318,6 +322,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 212, diff --git a/e2etests/testdata/txtar/sequence-multiline-alignment/elk/sketch.exp.svg b/e2etests/testdata/txtar/sequence-multiline-alignment/elk/sketch.exp.svg index 3feaf509c8..76cacfad78 100644 --- a/e2etests/testdata/txtar/sequence-multiline-alignment/elk/sketch.exp.svg +++ b/e2etests/testdata/txtar/sequence-multiline-alignment/elk/sketch.exp.svg @@ -1,16 +1,16 @@ -ab onetwothreefourfiveonetwothreefourfiveokay then + .d2-1013481721 .fill-N1{fill:#0A0F25;} + .d2-1013481721 .fill-N2{fill:#676C7E;} + .d2-1013481721 .fill-N3{fill:#9499AB;} + .d2-1013481721 .fill-N4{fill:#CFD2DD;} + .d2-1013481721 .fill-N5{fill:#DEE1EB;} + .d2-1013481721 .fill-N6{fill:#EEF1F8;} + .d2-1013481721 .fill-N7{fill:#FFFFFF;} + .d2-1013481721 .fill-B1{fill:#0D32B2;} + .d2-1013481721 .fill-B2{fill:#0D32B2;} + .d2-1013481721 .fill-B3{fill:#E3E9FD;} + .d2-1013481721 .fill-B4{fill:#E3E9FD;} + .d2-1013481721 .fill-B5{fill:#EDF0FD;} + .d2-1013481721 .fill-B6{fill:#F7F8FE;} + .d2-1013481721 .fill-AA2{fill:#4A6FF3;} + .d2-1013481721 .fill-AA4{fill:#EDF0FD;} + .d2-1013481721 .fill-AA5{fill:#F7F8FE;} + .d2-1013481721 .fill-AB4{fill:#EDF0FD;} + .d2-1013481721 .fill-AB5{fill:#F7F8FE;} + .d2-1013481721 .stroke-N1{stroke:#0A0F25;} + .d2-1013481721 .stroke-N2{stroke:#676C7E;} + .d2-1013481721 .stroke-N3{stroke:#9499AB;} + .d2-1013481721 .stroke-N4{stroke:#CFD2DD;} + .d2-1013481721 .stroke-N5{stroke:#DEE1EB;} + .d2-1013481721 .stroke-N6{stroke:#EEF1F8;} + .d2-1013481721 .stroke-N7{stroke:#FFFFFF;} + .d2-1013481721 .stroke-B1{stroke:#0D32B2;} + .d2-1013481721 .stroke-B2{stroke:#0D32B2;} + .d2-1013481721 .stroke-B3{stroke:#E3E9FD;} + .d2-1013481721 .stroke-B4{stroke:#E3E9FD;} + .d2-1013481721 .stroke-B5{stroke:#EDF0FD;} + .d2-1013481721 .stroke-B6{stroke:#F7F8FE;} + .d2-1013481721 .stroke-AA2{stroke:#4A6FF3;} + .d2-1013481721 .stroke-AA4{stroke:#EDF0FD;} + .d2-1013481721 .stroke-AA5{stroke:#F7F8FE;} + .d2-1013481721 .stroke-AB4{stroke:#EDF0FD;} + .d2-1013481721 .stroke-AB5{stroke:#F7F8FE;} + .d2-1013481721 .background-color-N1{background-color:#0A0F25;} + .d2-1013481721 .background-color-N2{background-color:#676C7E;} + .d2-1013481721 .background-color-N3{background-color:#9499AB;} + .d2-1013481721 .background-color-N4{background-color:#CFD2DD;} + .d2-1013481721 .background-color-N5{background-color:#DEE1EB;} + .d2-1013481721 .background-color-N6{background-color:#EEF1F8;} + .d2-1013481721 .background-color-N7{background-color:#FFFFFF;} + .d2-1013481721 .background-color-B1{background-color:#0D32B2;} + .d2-1013481721 .background-color-B2{background-color:#0D32B2;} + .d2-1013481721 .background-color-B3{background-color:#E3E9FD;} + .d2-1013481721 .background-color-B4{background-color:#E3E9FD;} + .d2-1013481721 .background-color-B5{background-color:#EDF0FD;} + .d2-1013481721 .background-color-B6{background-color:#F7F8FE;} + .d2-1013481721 .background-color-AA2{background-color:#4A6FF3;} + .d2-1013481721 .background-color-AA4{background-color:#EDF0FD;} + .d2-1013481721 .background-color-AA5{background-color:#F7F8FE;} + .d2-1013481721 .background-color-AB4{background-color:#EDF0FD;} + .d2-1013481721 .background-color-AB5{background-color:#F7F8FE;} + .d2-1013481721 .color-N1{color:#0A0F25;} + .d2-1013481721 .color-N2{color:#676C7E;} + .d2-1013481721 .color-N3{color:#9499AB;} + .d2-1013481721 .color-N4{color:#CFD2DD;} + .d2-1013481721 .color-N5{color:#DEE1EB;} + .d2-1013481721 .color-N6{color:#EEF1F8;} + .d2-1013481721 .color-N7{color:#FFFFFF;} + .d2-1013481721 .color-B1{color:#0D32B2;} + .d2-1013481721 .color-B2{color:#0D32B2;} + .d2-1013481721 .color-B3{color:#E3E9FD;} + .d2-1013481721 .color-B4{color:#E3E9FD;} + .d2-1013481721 .color-B5{color:#EDF0FD;} + .d2-1013481721 .color-B6{color:#F7F8FE;} + .d2-1013481721 .color-AA2{color:#4A6FF3;} + .d2-1013481721 .color-AA4{color:#EDF0FD;} + .d2-1013481721 .color-AA5{color:#F7F8FE;} + .d2-1013481721 .color-AB4{color:#EDF0FD;} + .d2-1013481721 .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}]]>ab onetwothreefourfiveonetwothreefourfiveokay then diff --git a/e2etests/testdata/txtar/sequence-multiline-label/dagre/board.exp.json b/e2etests/testdata/txtar/sequence-multiline-label/dagre/board.exp.json index 893b593a76..5f4c287107 100644 --- a/e2etests/testdata/txtar/sequence-multiline-label/dagre/board.exp.json +++ b/e2etests/testdata/txtar/sequence-multiline-label/dagre/board.exp.json @@ -110,6 +110,7 @@ "labelHeight": 21, "labelPosition": "INSIDE_MIDDLE_CENTER", "labelPercentage": 0, + "link": "", "route": [ { "x": 62, @@ -148,6 +149,7 @@ "labelHeight": 165, "labelPosition": "INSIDE_MIDDLE_CENTER", "labelPercentage": 0, + "link": "", "route": [ { "x": 62, @@ -186,6 +188,7 @@ "labelHeight": 85, "labelPosition": "INSIDE_MIDDLE_CENTER", "labelPercentage": 0, + "link": "", "route": [ { "x": 62, @@ -224,6 +227,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 62, @@ -262,6 +266,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 212, diff --git a/e2etests/testdata/txtar/sequence-multiline-label/dagre/sketch.exp.svg b/e2etests/testdata/txtar/sequence-multiline-label/dagre/sketch.exp.svg index c03d162c91..9be2dad780 100644 --- a/e2etests/testdata/txtar/sequence-multiline-label/dagre/sketch.exp.svg +++ b/e2etests/testdata/txtar/sequence-multiline-label/dagre/sketch.exp.svg @@ -1,16 +1,16 @@ -ab okay thenonetwothreefourfivesixseveneightninetenonetwothreefourfive + .d2-3900803748 .fill-N1{fill:#0A0F25;} + .d2-3900803748 .fill-N2{fill:#676C7E;} + .d2-3900803748 .fill-N3{fill:#9499AB;} + .d2-3900803748 .fill-N4{fill:#CFD2DD;} + .d2-3900803748 .fill-N5{fill:#DEE1EB;} + .d2-3900803748 .fill-N6{fill:#EEF1F8;} + .d2-3900803748 .fill-N7{fill:#FFFFFF;} + .d2-3900803748 .fill-B1{fill:#0D32B2;} + .d2-3900803748 .fill-B2{fill:#0D32B2;} + .d2-3900803748 .fill-B3{fill:#E3E9FD;} + .d2-3900803748 .fill-B4{fill:#E3E9FD;} + .d2-3900803748 .fill-B5{fill:#EDF0FD;} + .d2-3900803748 .fill-B6{fill:#F7F8FE;} + .d2-3900803748 .fill-AA2{fill:#4A6FF3;} + .d2-3900803748 .fill-AA4{fill:#EDF0FD;} + .d2-3900803748 .fill-AA5{fill:#F7F8FE;} + .d2-3900803748 .fill-AB4{fill:#EDF0FD;} + .d2-3900803748 .fill-AB5{fill:#F7F8FE;} + .d2-3900803748 .stroke-N1{stroke:#0A0F25;} + .d2-3900803748 .stroke-N2{stroke:#676C7E;} + .d2-3900803748 .stroke-N3{stroke:#9499AB;} + .d2-3900803748 .stroke-N4{stroke:#CFD2DD;} + .d2-3900803748 .stroke-N5{stroke:#DEE1EB;} + .d2-3900803748 .stroke-N6{stroke:#EEF1F8;} + .d2-3900803748 .stroke-N7{stroke:#FFFFFF;} + .d2-3900803748 .stroke-B1{stroke:#0D32B2;} + .d2-3900803748 .stroke-B2{stroke:#0D32B2;} + .d2-3900803748 .stroke-B3{stroke:#E3E9FD;} + .d2-3900803748 .stroke-B4{stroke:#E3E9FD;} + .d2-3900803748 .stroke-B5{stroke:#EDF0FD;} + .d2-3900803748 .stroke-B6{stroke:#F7F8FE;} + .d2-3900803748 .stroke-AA2{stroke:#4A6FF3;} + .d2-3900803748 .stroke-AA4{stroke:#EDF0FD;} + .d2-3900803748 .stroke-AA5{stroke:#F7F8FE;} + .d2-3900803748 .stroke-AB4{stroke:#EDF0FD;} + .d2-3900803748 .stroke-AB5{stroke:#F7F8FE;} + .d2-3900803748 .background-color-N1{background-color:#0A0F25;} + .d2-3900803748 .background-color-N2{background-color:#676C7E;} + .d2-3900803748 .background-color-N3{background-color:#9499AB;} + .d2-3900803748 .background-color-N4{background-color:#CFD2DD;} + .d2-3900803748 .background-color-N5{background-color:#DEE1EB;} + .d2-3900803748 .background-color-N6{background-color:#EEF1F8;} + .d2-3900803748 .background-color-N7{background-color:#FFFFFF;} + .d2-3900803748 .background-color-B1{background-color:#0D32B2;} + .d2-3900803748 .background-color-B2{background-color:#0D32B2;} + .d2-3900803748 .background-color-B3{background-color:#E3E9FD;} + .d2-3900803748 .background-color-B4{background-color:#E3E9FD;} + .d2-3900803748 .background-color-B5{background-color:#EDF0FD;} + .d2-3900803748 .background-color-B6{background-color:#F7F8FE;} + .d2-3900803748 .background-color-AA2{background-color:#4A6FF3;} + .d2-3900803748 .background-color-AA4{background-color:#EDF0FD;} + .d2-3900803748 .background-color-AA5{background-color:#F7F8FE;} + .d2-3900803748 .background-color-AB4{background-color:#EDF0FD;} + .d2-3900803748 .background-color-AB5{background-color:#F7F8FE;} + .d2-3900803748 .color-N1{color:#0A0F25;} + .d2-3900803748 .color-N2{color:#676C7E;} + .d2-3900803748 .color-N3{color:#9499AB;} + .d2-3900803748 .color-N4{color:#CFD2DD;} + .d2-3900803748 .color-N5{color:#DEE1EB;} + .d2-3900803748 .color-N6{color:#EEF1F8;} + .d2-3900803748 .color-N7{color:#FFFFFF;} + .d2-3900803748 .color-B1{color:#0D32B2;} + .d2-3900803748 .color-B2{color:#0D32B2;} + .d2-3900803748 .color-B3{color:#E3E9FD;} + .d2-3900803748 .color-B4{color:#E3E9FD;} + .d2-3900803748 .color-B5{color:#EDF0FD;} + .d2-3900803748 .color-B6{color:#F7F8FE;} + .d2-3900803748 .color-AA2{color:#4A6FF3;} + .d2-3900803748 .color-AA4{color:#EDF0FD;} + .d2-3900803748 .color-AA5{color:#F7F8FE;} + .d2-3900803748 .color-AB4{color:#EDF0FD;} + .d2-3900803748 .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}]]>ab okay thenonetwothreefourfivesixseveneightninetenonetwothreefourfive diff --git a/e2etests/testdata/txtar/sequence-multiline-label/elk/board.exp.json b/e2etests/testdata/txtar/sequence-multiline-label/elk/board.exp.json index 893b593a76..5f4c287107 100644 --- a/e2etests/testdata/txtar/sequence-multiline-label/elk/board.exp.json +++ b/e2etests/testdata/txtar/sequence-multiline-label/elk/board.exp.json @@ -110,6 +110,7 @@ "labelHeight": 21, "labelPosition": "INSIDE_MIDDLE_CENTER", "labelPercentage": 0, + "link": "", "route": [ { "x": 62, @@ -148,6 +149,7 @@ "labelHeight": 165, "labelPosition": "INSIDE_MIDDLE_CENTER", "labelPercentage": 0, + "link": "", "route": [ { "x": 62, @@ -186,6 +188,7 @@ "labelHeight": 85, "labelPosition": "INSIDE_MIDDLE_CENTER", "labelPercentage": 0, + "link": "", "route": [ { "x": 62, @@ -224,6 +227,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 62, @@ -262,6 +266,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 212, diff --git a/e2etests/testdata/txtar/sequence-multiline-label/elk/sketch.exp.svg b/e2etests/testdata/txtar/sequence-multiline-label/elk/sketch.exp.svg index c03d162c91..9be2dad780 100644 --- a/e2etests/testdata/txtar/sequence-multiline-label/elk/sketch.exp.svg +++ b/e2etests/testdata/txtar/sequence-multiline-label/elk/sketch.exp.svg @@ -1,16 +1,16 @@ -ab okay thenonetwothreefourfivesixseveneightninetenonetwothreefourfive + .d2-3900803748 .fill-N1{fill:#0A0F25;} + .d2-3900803748 .fill-N2{fill:#676C7E;} + .d2-3900803748 .fill-N3{fill:#9499AB;} + .d2-3900803748 .fill-N4{fill:#CFD2DD;} + .d2-3900803748 .fill-N5{fill:#DEE1EB;} + .d2-3900803748 .fill-N6{fill:#EEF1F8;} + .d2-3900803748 .fill-N7{fill:#FFFFFF;} + .d2-3900803748 .fill-B1{fill:#0D32B2;} + .d2-3900803748 .fill-B2{fill:#0D32B2;} + .d2-3900803748 .fill-B3{fill:#E3E9FD;} + .d2-3900803748 .fill-B4{fill:#E3E9FD;} + .d2-3900803748 .fill-B5{fill:#EDF0FD;} + .d2-3900803748 .fill-B6{fill:#F7F8FE;} + .d2-3900803748 .fill-AA2{fill:#4A6FF3;} + .d2-3900803748 .fill-AA4{fill:#EDF0FD;} + .d2-3900803748 .fill-AA5{fill:#F7F8FE;} + .d2-3900803748 .fill-AB4{fill:#EDF0FD;} + .d2-3900803748 .fill-AB5{fill:#F7F8FE;} + .d2-3900803748 .stroke-N1{stroke:#0A0F25;} + .d2-3900803748 .stroke-N2{stroke:#676C7E;} + .d2-3900803748 .stroke-N3{stroke:#9499AB;} + .d2-3900803748 .stroke-N4{stroke:#CFD2DD;} + .d2-3900803748 .stroke-N5{stroke:#DEE1EB;} + .d2-3900803748 .stroke-N6{stroke:#EEF1F8;} + .d2-3900803748 .stroke-N7{stroke:#FFFFFF;} + .d2-3900803748 .stroke-B1{stroke:#0D32B2;} + .d2-3900803748 .stroke-B2{stroke:#0D32B2;} + .d2-3900803748 .stroke-B3{stroke:#E3E9FD;} + .d2-3900803748 .stroke-B4{stroke:#E3E9FD;} + .d2-3900803748 .stroke-B5{stroke:#EDF0FD;} + .d2-3900803748 .stroke-B6{stroke:#F7F8FE;} + .d2-3900803748 .stroke-AA2{stroke:#4A6FF3;} + .d2-3900803748 .stroke-AA4{stroke:#EDF0FD;} + .d2-3900803748 .stroke-AA5{stroke:#F7F8FE;} + .d2-3900803748 .stroke-AB4{stroke:#EDF0FD;} + .d2-3900803748 .stroke-AB5{stroke:#F7F8FE;} + .d2-3900803748 .background-color-N1{background-color:#0A0F25;} + .d2-3900803748 .background-color-N2{background-color:#676C7E;} + .d2-3900803748 .background-color-N3{background-color:#9499AB;} + .d2-3900803748 .background-color-N4{background-color:#CFD2DD;} + .d2-3900803748 .background-color-N5{background-color:#DEE1EB;} + .d2-3900803748 .background-color-N6{background-color:#EEF1F8;} + .d2-3900803748 .background-color-N7{background-color:#FFFFFF;} + .d2-3900803748 .background-color-B1{background-color:#0D32B2;} + .d2-3900803748 .background-color-B2{background-color:#0D32B2;} + .d2-3900803748 .background-color-B3{background-color:#E3E9FD;} + .d2-3900803748 .background-color-B4{background-color:#E3E9FD;} + .d2-3900803748 .background-color-B5{background-color:#EDF0FD;} + .d2-3900803748 .background-color-B6{background-color:#F7F8FE;} + .d2-3900803748 .background-color-AA2{background-color:#4A6FF3;} + .d2-3900803748 .background-color-AA4{background-color:#EDF0FD;} + .d2-3900803748 .background-color-AA5{background-color:#F7F8FE;} + .d2-3900803748 .background-color-AB4{background-color:#EDF0FD;} + .d2-3900803748 .background-color-AB5{background-color:#F7F8FE;} + .d2-3900803748 .color-N1{color:#0A0F25;} + .d2-3900803748 .color-N2{color:#676C7E;} + .d2-3900803748 .color-N3{color:#9499AB;} + .d2-3900803748 .color-N4{color:#CFD2DD;} + .d2-3900803748 .color-N5{color:#DEE1EB;} + .d2-3900803748 .color-N6{color:#EEF1F8;} + .d2-3900803748 .color-N7{color:#FFFFFF;} + .d2-3900803748 .color-B1{color:#0D32B2;} + .d2-3900803748 .color-B2{color:#0D32B2;} + .d2-3900803748 .color-B3{color:#E3E9FD;} + .d2-3900803748 .color-B4{color:#E3E9FD;} + .d2-3900803748 .color-B5{color:#EDF0FD;} + .d2-3900803748 .color-B6{color:#F7F8FE;} + .d2-3900803748 .color-AA2{color:#4A6FF3;} + .d2-3900803748 .color-AA4{color:#EDF0FD;} + .d2-3900803748 .color-AA5{color:#F7F8FE;} + .d2-3900803748 .color-AB4{color:#EDF0FD;} + .d2-3900803748 .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}]]>ab okay thenonetwothreefourfivesixseveneightninetenonetwothreefourfive diff --git a/e2etests/testdata/txtar/sequence-multiline-self-reference/dagre/board.exp.json b/e2etests/testdata/txtar/sequence-multiline-self-reference/dagre/board.exp.json index 4e415a14b3..891a200efa 100644 --- a/e2etests/testdata/txtar/sequence-multiline-self-reference/dagre/board.exp.json +++ b/e2etests/testdata/txtar/sequence-multiline-self-reference/dagre/board.exp.json @@ -110,6 +110,7 @@ "labelHeight": 53, "labelPosition": "INSIDE_MIDDLE_CENTER", "labelPercentage": 0, + "link": "", "route": [ { "x": 62, @@ -156,6 +157,7 @@ "labelHeight": 37, "labelPosition": "INSIDE_MIDDLE_CENTER", "labelPercentage": 0, + "link": "", "route": [ { "x": 62, @@ -202,6 +204,7 @@ "labelHeight": 21, "labelPosition": "INSIDE_MIDDLE_CENTER", "labelPercentage": 0, + "link": "", "route": [ { "x": 62, @@ -240,6 +243,7 @@ "labelHeight": 53, "labelPosition": "INSIDE_MIDDLE_CENTER", "labelPercentage": 0, + "link": "", "route": [ { "x": 343, @@ -286,6 +290,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 62, @@ -324,6 +329,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 343, diff --git a/e2etests/testdata/txtar/sequence-multiline-self-reference/dagre/sketch.exp.svg b/e2etests/testdata/txtar/sequence-multiline-self-reference/dagre/sketch.exp.svg index 1a2ac3def3..1086a9921f 100644 --- a/e2etests/testdata/txtar/sequence-multiline-self-reference/dagre/sketch.exp.svg +++ b/e2etests/testdata/txtar/sequence-multiline-self-reference/dagre/sketch.exp.svg @@ -1,16 +1,16 @@ -xy self referential long description which ismultirow3 rowsself referential long description which ismultirownormalself referential long description which ismultirow3 rows + .d2-3725553664 .fill-N1{fill:#0A0F25;} + .d2-3725553664 .fill-N2{fill:#676C7E;} + .d2-3725553664 .fill-N3{fill:#9499AB;} + .d2-3725553664 .fill-N4{fill:#CFD2DD;} + .d2-3725553664 .fill-N5{fill:#DEE1EB;} + .d2-3725553664 .fill-N6{fill:#EEF1F8;} + .d2-3725553664 .fill-N7{fill:#FFFFFF;} + .d2-3725553664 .fill-B1{fill:#0D32B2;} + .d2-3725553664 .fill-B2{fill:#0D32B2;} + .d2-3725553664 .fill-B3{fill:#E3E9FD;} + .d2-3725553664 .fill-B4{fill:#E3E9FD;} + .d2-3725553664 .fill-B5{fill:#EDF0FD;} + .d2-3725553664 .fill-B6{fill:#F7F8FE;} + .d2-3725553664 .fill-AA2{fill:#4A6FF3;} + .d2-3725553664 .fill-AA4{fill:#EDF0FD;} + .d2-3725553664 .fill-AA5{fill:#F7F8FE;} + .d2-3725553664 .fill-AB4{fill:#EDF0FD;} + .d2-3725553664 .fill-AB5{fill:#F7F8FE;} + .d2-3725553664 .stroke-N1{stroke:#0A0F25;} + .d2-3725553664 .stroke-N2{stroke:#676C7E;} + .d2-3725553664 .stroke-N3{stroke:#9499AB;} + .d2-3725553664 .stroke-N4{stroke:#CFD2DD;} + .d2-3725553664 .stroke-N5{stroke:#DEE1EB;} + .d2-3725553664 .stroke-N6{stroke:#EEF1F8;} + .d2-3725553664 .stroke-N7{stroke:#FFFFFF;} + .d2-3725553664 .stroke-B1{stroke:#0D32B2;} + .d2-3725553664 .stroke-B2{stroke:#0D32B2;} + .d2-3725553664 .stroke-B3{stroke:#E3E9FD;} + .d2-3725553664 .stroke-B4{stroke:#E3E9FD;} + .d2-3725553664 .stroke-B5{stroke:#EDF0FD;} + .d2-3725553664 .stroke-B6{stroke:#F7F8FE;} + .d2-3725553664 .stroke-AA2{stroke:#4A6FF3;} + .d2-3725553664 .stroke-AA4{stroke:#EDF0FD;} + .d2-3725553664 .stroke-AA5{stroke:#F7F8FE;} + .d2-3725553664 .stroke-AB4{stroke:#EDF0FD;} + .d2-3725553664 .stroke-AB5{stroke:#F7F8FE;} + .d2-3725553664 .background-color-N1{background-color:#0A0F25;} + .d2-3725553664 .background-color-N2{background-color:#676C7E;} + .d2-3725553664 .background-color-N3{background-color:#9499AB;} + .d2-3725553664 .background-color-N4{background-color:#CFD2DD;} + .d2-3725553664 .background-color-N5{background-color:#DEE1EB;} + .d2-3725553664 .background-color-N6{background-color:#EEF1F8;} + .d2-3725553664 .background-color-N7{background-color:#FFFFFF;} + .d2-3725553664 .background-color-B1{background-color:#0D32B2;} + .d2-3725553664 .background-color-B2{background-color:#0D32B2;} + .d2-3725553664 .background-color-B3{background-color:#E3E9FD;} + .d2-3725553664 .background-color-B4{background-color:#E3E9FD;} + .d2-3725553664 .background-color-B5{background-color:#EDF0FD;} + .d2-3725553664 .background-color-B6{background-color:#F7F8FE;} + .d2-3725553664 .background-color-AA2{background-color:#4A6FF3;} + .d2-3725553664 .background-color-AA4{background-color:#EDF0FD;} + .d2-3725553664 .background-color-AA5{background-color:#F7F8FE;} + .d2-3725553664 .background-color-AB4{background-color:#EDF0FD;} + .d2-3725553664 .background-color-AB5{background-color:#F7F8FE;} + .d2-3725553664 .color-N1{color:#0A0F25;} + .d2-3725553664 .color-N2{color:#676C7E;} + .d2-3725553664 .color-N3{color:#9499AB;} + .d2-3725553664 .color-N4{color:#CFD2DD;} + .d2-3725553664 .color-N5{color:#DEE1EB;} + .d2-3725553664 .color-N6{color:#EEF1F8;} + .d2-3725553664 .color-N7{color:#FFFFFF;} + .d2-3725553664 .color-B1{color:#0D32B2;} + .d2-3725553664 .color-B2{color:#0D32B2;} + .d2-3725553664 .color-B3{color:#E3E9FD;} + .d2-3725553664 .color-B4{color:#E3E9FD;} + .d2-3725553664 .color-B5{color:#EDF0FD;} + .d2-3725553664 .color-B6{color:#F7F8FE;} + .d2-3725553664 .color-AA2{color:#4A6FF3;} + .d2-3725553664 .color-AA4{color:#EDF0FD;} + .d2-3725553664 .color-AA5{color:#F7F8FE;} + .d2-3725553664 .color-AB4{color:#EDF0FD;} + .d2-3725553664 .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 self referential long description which ismultirow3 rowsself referential long description which ismultirownormalself referential long description which ismultirow3 rows diff --git a/e2etests/testdata/txtar/sequence-multiline-self-reference/elk/board.exp.json b/e2etests/testdata/txtar/sequence-multiline-self-reference/elk/board.exp.json index 4e415a14b3..891a200efa 100644 --- a/e2etests/testdata/txtar/sequence-multiline-self-reference/elk/board.exp.json +++ b/e2etests/testdata/txtar/sequence-multiline-self-reference/elk/board.exp.json @@ -110,6 +110,7 @@ "labelHeight": 53, "labelPosition": "INSIDE_MIDDLE_CENTER", "labelPercentage": 0, + "link": "", "route": [ { "x": 62, @@ -156,6 +157,7 @@ "labelHeight": 37, "labelPosition": "INSIDE_MIDDLE_CENTER", "labelPercentage": 0, + "link": "", "route": [ { "x": 62, @@ -202,6 +204,7 @@ "labelHeight": 21, "labelPosition": "INSIDE_MIDDLE_CENTER", "labelPercentage": 0, + "link": "", "route": [ { "x": 62, @@ -240,6 +243,7 @@ "labelHeight": 53, "labelPosition": "INSIDE_MIDDLE_CENTER", "labelPercentage": 0, + "link": "", "route": [ { "x": 343, @@ -286,6 +290,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 62, @@ -324,6 +329,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 343, diff --git a/e2etests/testdata/txtar/sequence-multiline-self-reference/elk/sketch.exp.svg b/e2etests/testdata/txtar/sequence-multiline-self-reference/elk/sketch.exp.svg index 1a2ac3def3..1086a9921f 100644 --- a/e2etests/testdata/txtar/sequence-multiline-self-reference/elk/sketch.exp.svg +++ b/e2etests/testdata/txtar/sequence-multiline-self-reference/elk/sketch.exp.svg @@ -1,16 +1,16 @@ -xy self referential long description which ismultirow3 rowsself referential long description which ismultirownormalself referential long description which ismultirow3 rows + .d2-3725553664 .fill-N1{fill:#0A0F25;} + .d2-3725553664 .fill-N2{fill:#676C7E;} + .d2-3725553664 .fill-N3{fill:#9499AB;} + .d2-3725553664 .fill-N4{fill:#CFD2DD;} + .d2-3725553664 .fill-N5{fill:#DEE1EB;} + .d2-3725553664 .fill-N6{fill:#EEF1F8;} + .d2-3725553664 .fill-N7{fill:#FFFFFF;} + .d2-3725553664 .fill-B1{fill:#0D32B2;} + .d2-3725553664 .fill-B2{fill:#0D32B2;} + .d2-3725553664 .fill-B3{fill:#E3E9FD;} + .d2-3725553664 .fill-B4{fill:#E3E9FD;} + .d2-3725553664 .fill-B5{fill:#EDF0FD;} + .d2-3725553664 .fill-B6{fill:#F7F8FE;} + .d2-3725553664 .fill-AA2{fill:#4A6FF3;} + .d2-3725553664 .fill-AA4{fill:#EDF0FD;} + .d2-3725553664 .fill-AA5{fill:#F7F8FE;} + .d2-3725553664 .fill-AB4{fill:#EDF0FD;} + .d2-3725553664 .fill-AB5{fill:#F7F8FE;} + .d2-3725553664 .stroke-N1{stroke:#0A0F25;} + .d2-3725553664 .stroke-N2{stroke:#676C7E;} + .d2-3725553664 .stroke-N3{stroke:#9499AB;} + .d2-3725553664 .stroke-N4{stroke:#CFD2DD;} + .d2-3725553664 .stroke-N5{stroke:#DEE1EB;} + .d2-3725553664 .stroke-N6{stroke:#EEF1F8;} + .d2-3725553664 .stroke-N7{stroke:#FFFFFF;} + .d2-3725553664 .stroke-B1{stroke:#0D32B2;} + .d2-3725553664 .stroke-B2{stroke:#0D32B2;} + .d2-3725553664 .stroke-B3{stroke:#E3E9FD;} + .d2-3725553664 .stroke-B4{stroke:#E3E9FD;} + .d2-3725553664 .stroke-B5{stroke:#EDF0FD;} + .d2-3725553664 .stroke-B6{stroke:#F7F8FE;} + .d2-3725553664 .stroke-AA2{stroke:#4A6FF3;} + .d2-3725553664 .stroke-AA4{stroke:#EDF0FD;} + .d2-3725553664 .stroke-AA5{stroke:#F7F8FE;} + .d2-3725553664 .stroke-AB4{stroke:#EDF0FD;} + .d2-3725553664 .stroke-AB5{stroke:#F7F8FE;} + .d2-3725553664 .background-color-N1{background-color:#0A0F25;} + .d2-3725553664 .background-color-N2{background-color:#676C7E;} + .d2-3725553664 .background-color-N3{background-color:#9499AB;} + .d2-3725553664 .background-color-N4{background-color:#CFD2DD;} + .d2-3725553664 .background-color-N5{background-color:#DEE1EB;} + .d2-3725553664 .background-color-N6{background-color:#EEF1F8;} + .d2-3725553664 .background-color-N7{background-color:#FFFFFF;} + .d2-3725553664 .background-color-B1{background-color:#0D32B2;} + .d2-3725553664 .background-color-B2{background-color:#0D32B2;} + .d2-3725553664 .background-color-B3{background-color:#E3E9FD;} + .d2-3725553664 .background-color-B4{background-color:#E3E9FD;} + .d2-3725553664 .background-color-B5{background-color:#EDF0FD;} + .d2-3725553664 .background-color-B6{background-color:#F7F8FE;} + .d2-3725553664 .background-color-AA2{background-color:#4A6FF3;} + .d2-3725553664 .background-color-AA4{background-color:#EDF0FD;} + .d2-3725553664 .background-color-AA5{background-color:#F7F8FE;} + .d2-3725553664 .background-color-AB4{background-color:#EDF0FD;} + .d2-3725553664 .background-color-AB5{background-color:#F7F8FE;} + .d2-3725553664 .color-N1{color:#0A0F25;} + .d2-3725553664 .color-N2{color:#676C7E;} + .d2-3725553664 .color-N3{color:#9499AB;} + .d2-3725553664 .color-N4{color:#CFD2DD;} + .d2-3725553664 .color-N5{color:#DEE1EB;} + .d2-3725553664 .color-N6{color:#EEF1F8;} + .d2-3725553664 .color-N7{color:#FFFFFF;} + .d2-3725553664 .color-B1{color:#0D32B2;} + .d2-3725553664 .color-B2{color:#0D32B2;} + .d2-3725553664 .color-B3{color:#E3E9FD;} + .d2-3725553664 .color-B4{color:#E3E9FD;} + .d2-3725553664 .color-B5{color:#EDF0FD;} + .d2-3725553664 .color-B6{color:#F7F8FE;} + .d2-3725553664 .color-AA2{color:#4A6FF3;} + .d2-3725553664 .color-AA4{color:#EDF0FD;} + .d2-3725553664 .color-AA5{color:#F7F8FE;} + .d2-3725553664 .color-AB4{color:#EDF0FD;} + .d2-3725553664 .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 self referential long description which ismultirow3 rowsself referential long description which ismultirownormalself referential long description which ismultirow3 rows diff --git a/e2etests/testdata/txtar/sketch-bidirectional-connection-animation/dagre/board.exp.json b/e2etests/testdata/txtar/sketch-bidirectional-connection-animation/dagre/board.exp.json index d4be34b710..fcc7b940f4 100644 --- a/e2etests/testdata/txtar/sketch-bidirectional-connection-animation/dagre/board.exp.json +++ b/e2etests/testdata/txtar/sketch-bidirectional-connection-animation/dagre/board.exp.json @@ -364,6 +364,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 172.5, @@ -411,6 +412,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 176, @@ -458,6 +460,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 222.5, @@ -505,6 +508,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 226.25, @@ -552,6 +556,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 484, @@ -599,6 +604,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 624.666015625, diff --git a/e2etests/testdata/txtar/sketch-bidirectional-connection-animation/dagre/sketch.exp.svg b/e2etests/testdata/txtar/sketch-bidirectional-connection-animation/dagre/sketch.exp.svg index c0b44019bb..46e1064fd6 100644 --- a/e2etests/testdata/txtar/sketch-bidirectional-connection-animation/dagre/sketch.exp.svg +++ b/e2etests/testdata/txtar/sketch-bidirectional-connection-animation/dagre/sketch.exp.svg @@ -1,15 +1,15 @@ - + .d2-207741189 .fill-N1{fill:#0A0F25;} + .d2-207741189 .fill-N2{fill:#676C7E;} + .d2-207741189 .fill-N3{fill:#9499AB;} + .d2-207741189 .fill-N4{fill:#CFD2DD;} + .d2-207741189 .fill-N5{fill:#DEE1EB;} + .d2-207741189 .fill-N6{fill:#EEF1F8;} + .d2-207741189 .fill-N7{fill:#FFFFFF;} + .d2-207741189 .fill-B1{fill:#0D32B2;} + .d2-207741189 .fill-B2{fill:#0D32B2;} + .d2-207741189 .fill-B3{fill:#E3E9FD;} + .d2-207741189 .fill-B4{fill:#E3E9FD;} + .d2-207741189 .fill-B5{fill:#EDF0FD;} + .d2-207741189 .fill-B6{fill:#F7F8FE;} + .d2-207741189 .fill-AA2{fill:#4A6FF3;} + .d2-207741189 .fill-AA4{fill:#EDF0FD;} + .d2-207741189 .fill-AA5{fill:#F7F8FE;} + .d2-207741189 .fill-AB4{fill:#EDF0FD;} + .d2-207741189 .fill-AB5{fill:#F7F8FE;} + .d2-207741189 .stroke-N1{stroke:#0A0F25;} + .d2-207741189 .stroke-N2{stroke:#676C7E;} + .d2-207741189 .stroke-N3{stroke:#9499AB;} + .d2-207741189 .stroke-N4{stroke:#CFD2DD;} + .d2-207741189 .stroke-N5{stroke:#DEE1EB;} + .d2-207741189 .stroke-N6{stroke:#EEF1F8;} + .d2-207741189 .stroke-N7{stroke:#FFFFFF;} + .d2-207741189 .stroke-B1{stroke:#0D32B2;} + .d2-207741189 .stroke-B2{stroke:#0D32B2;} + .d2-207741189 .stroke-B3{stroke:#E3E9FD;} + .d2-207741189 .stroke-B4{stroke:#E3E9FD;} + .d2-207741189 .stroke-B5{stroke:#EDF0FD;} + .d2-207741189 .stroke-B6{stroke:#F7F8FE;} + .d2-207741189 .stroke-AA2{stroke:#4A6FF3;} + .d2-207741189 .stroke-AA4{stroke:#EDF0FD;} + .d2-207741189 .stroke-AA5{stroke:#F7F8FE;} + .d2-207741189 .stroke-AB4{stroke:#EDF0FD;} + .d2-207741189 .stroke-AB5{stroke:#F7F8FE;} + .d2-207741189 .background-color-N1{background-color:#0A0F25;} + .d2-207741189 .background-color-N2{background-color:#676C7E;} + .d2-207741189 .background-color-N3{background-color:#9499AB;} + .d2-207741189 .background-color-N4{background-color:#CFD2DD;} + .d2-207741189 .background-color-N5{background-color:#DEE1EB;} + .d2-207741189 .background-color-N6{background-color:#EEF1F8;} + .d2-207741189 .background-color-N7{background-color:#FFFFFF;} + .d2-207741189 .background-color-B1{background-color:#0D32B2;} + .d2-207741189 .background-color-B2{background-color:#0D32B2;} + .d2-207741189 .background-color-B3{background-color:#E3E9FD;} + .d2-207741189 .background-color-B4{background-color:#E3E9FD;} + .d2-207741189 .background-color-B5{background-color:#EDF0FD;} + .d2-207741189 .background-color-B6{background-color:#F7F8FE;} + .d2-207741189 .background-color-AA2{background-color:#4A6FF3;} + .d2-207741189 .background-color-AA4{background-color:#EDF0FD;} + .d2-207741189 .background-color-AA5{background-color:#F7F8FE;} + .d2-207741189 .background-color-AB4{background-color:#EDF0FD;} + .d2-207741189 .background-color-AB5{background-color:#F7F8FE;} + .d2-207741189 .color-N1{color:#0A0F25;} + .d2-207741189 .color-N2{color:#676C7E;} + .d2-207741189 .color-N3{color:#9499AB;} + .d2-207741189 .color-N4{color:#CFD2DD;} + .d2-207741189 .color-N5{color:#DEE1EB;} + .d2-207741189 .color-N6{color:#EEF1F8;} + .d2-207741189 .color-N7{color:#FFFFFF;} + .d2-207741189 .color-B1{color:#0D32B2;} + .d2-207741189 .color-B2{color:#0D32B2;} + .d2-207741189 .color-B3{color:#E3E9FD;} + .d2-207741189 .color-B4{color:#E3E9FD;} + .d2-207741189 .color-B5{color:#EDF0FD;} + .d2-207741189 .color-B6{color:#F7F8FE;} + .d2-207741189 .color-AA2{color:#4A6FF3;} + .d2-207741189 .color-AA4{color:#EDF0FD;} + .d2-207741189 .color-AA5{color:#F7F8FE;} + .d2-207741189 .color-AB4{color:#EDF0FD;} + .d2-207741189 .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}]]> @@ -103,7 +103,7 @@ -abcdefgx +abcdefgx diff --git a/e2etests/testdata/txtar/sketch-bidirectional-connection-animation/elk/board.exp.json b/e2etests/testdata/txtar/sketch-bidirectional-connection-animation/elk/board.exp.json index 5abaaf205f..d44c69710c 100644 --- a/e2etests/testdata/txtar/sketch-bidirectional-connection-animation/elk/board.exp.json +++ b/e2etests/testdata/txtar/sketch-bidirectional-connection-animation/elk/board.exp.json @@ -364,6 +364,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 103.25, @@ -410,6 +411,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 135.25, @@ -456,6 +458,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 167.25, @@ -502,6 +505,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 199.25, @@ -548,6 +552,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 336, @@ -586,6 +591,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 433, diff --git a/e2etests/testdata/txtar/sketch-bidirectional-connection-animation/elk/sketch.exp.svg b/e2etests/testdata/txtar/sketch-bidirectional-connection-animation/elk/sketch.exp.svg index 395ae3c71e..dca758baff 100644 --- a/e2etests/testdata/txtar/sketch-bidirectional-connection-animation/elk/sketch.exp.svg +++ b/e2etests/testdata/txtar/sketch-bidirectional-connection-animation/elk/sketch.exp.svg @@ -1,15 +1,15 @@ - + .d2-1297504135 .fill-N1{fill:#0A0F25;} + .d2-1297504135 .fill-N2{fill:#676C7E;} + .d2-1297504135 .fill-N3{fill:#9499AB;} + .d2-1297504135 .fill-N4{fill:#CFD2DD;} + .d2-1297504135 .fill-N5{fill:#DEE1EB;} + .d2-1297504135 .fill-N6{fill:#EEF1F8;} + .d2-1297504135 .fill-N7{fill:#FFFFFF;} + .d2-1297504135 .fill-B1{fill:#0D32B2;} + .d2-1297504135 .fill-B2{fill:#0D32B2;} + .d2-1297504135 .fill-B3{fill:#E3E9FD;} + .d2-1297504135 .fill-B4{fill:#E3E9FD;} + .d2-1297504135 .fill-B5{fill:#EDF0FD;} + .d2-1297504135 .fill-B6{fill:#F7F8FE;} + .d2-1297504135 .fill-AA2{fill:#4A6FF3;} + .d2-1297504135 .fill-AA4{fill:#EDF0FD;} + .d2-1297504135 .fill-AA5{fill:#F7F8FE;} + .d2-1297504135 .fill-AB4{fill:#EDF0FD;} + .d2-1297504135 .fill-AB5{fill:#F7F8FE;} + .d2-1297504135 .stroke-N1{stroke:#0A0F25;} + .d2-1297504135 .stroke-N2{stroke:#676C7E;} + .d2-1297504135 .stroke-N3{stroke:#9499AB;} + .d2-1297504135 .stroke-N4{stroke:#CFD2DD;} + .d2-1297504135 .stroke-N5{stroke:#DEE1EB;} + .d2-1297504135 .stroke-N6{stroke:#EEF1F8;} + .d2-1297504135 .stroke-N7{stroke:#FFFFFF;} + .d2-1297504135 .stroke-B1{stroke:#0D32B2;} + .d2-1297504135 .stroke-B2{stroke:#0D32B2;} + .d2-1297504135 .stroke-B3{stroke:#E3E9FD;} + .d2-1297504135 .stroke-B4{stroke:#E3E9FD;} + .d2-1297504135 .stroke-B5{stroke:#EDF0FD;} + .d2-1297504135 .stroke-B6{stroke:#F7F8FE;} + .d2-1297504135 .stroke-AA2{stroke:#4A6FF3;} + .d2-1297504135 .stroke-AA4{stroke:#EDF0FD;} + .d2-1297504135 .stroke-AA5{stroke:#F7F8FE;} + .d2-1297504135 .stroke-AB4{stroke:#EDF0FD;} + .d2-1297504135 .stroke-AB5{stroke:#F7F8FE;} + .d2-1297504135 .background-color-N1{background-color:#0A0F25;} + .d2-1297504135 .background-color-N2{background-color:#676C7E;} + .d2-1297504135 .background-color-N3{background-color:#9499AB;} + .d2-1297504135 .background-color-N4{background-color:#CFD2DD;} + .d2-1297504135 .background-color-N5{background-color:#DEE1EB;} + .d2-1297504135 .background-color-N6{background-color:#EEF1F8;} + .d2-1297504135 .background-color-N7{background-color:#FFFFFF;} + .d2-1297504135 .background-color-B1{background-color:#0D32B2;} + .d2-1297504135 .background-color-B2{background-color:#0D32B2;} + .d2-1297504135 .background-color-B3{background-color:#E3E9FD;} + .d2-1297504135 .background-color-B4{background-color:#E3E9FD;} + .d2-1297504135 .background-color-B5{background-color:#EDF0FD;} + .d2-1297504135 .background-color-B6{background-color:#F7F8FE;} + .d2-1297504135 .background-color-AA2{background-color:#4A6FF3;} + .d2-1297504135 .background-color-AA4{background-color:#EDF0FD;} + .d2-1297504135 .background-color-AA5{background-color:#F7F8FE;} + .d2-1297504135 .background-color-AB4{background-color:#EDF0FD;} + .d2-1297504135 .background-color-AB5{background-color:#F7F8FE;} + .d2-1297504135 .color-N1{color:#0A0F25;} + .d2-1297504135 .color-N2{color:#676C7E;} + .d2-1297504135 .color-N3{color:#9499AB;} + .d2-1297504135 .color-N4{color:#CFD2DD;} + .d2-1297504135 .color-N5{color:#DEE1EB;} + .d2-1297504135 .color-N6{color:#EEF1F8;} + .d2-1297504135 .color-N7{color:#FFFFFF;} + .d2-1297504135 .color-B1{color:#0D32B2;} + .d2-1297504135 .color-B2{color:#0D32B2;} + .d2-1297504135 .color-B3{color:#E3E9FD;} + .d2-1297504135 .color-B4{color:#E3E9FD;} + .d2-1297504135 .color-B5{color:#EDF0FD;} + .d2-1297504135 .color-B6{color:#F7F8FE;} + .d2-1297504135 .color-AA2{color:#4A6FF3;} + .d2-1297504135 .color-AA4{color:#EDF0FD;} + .d2-1297504135 .color-AA5{color:#F7F8FE;} + .d2-1297504135 .color-AB4{color:#EDF0FD;} + .d2-1297504135 .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}]]> @@ -103,7 +103,7 @@ -abcdefgx +abcdefgx diff --git a/e2etests/testdata/txtar/sketch-mode-circle-arrowhead/dagre/board.exp.json b/e2etests/testdata/txtar/sketch-mode-circle-arrowhead/dagre/board.exp.json index 6e64ad35a8..e0472280da 100644 --- a/e2etests/testdata/txtar/sketch-mode-circle-arrowhead/dagre/board.exp.json +++ b/e2etests/testdata/txtar/sketch-mode-circle-arrowhead/dagre/board.exp.json @@ -241,6 +241,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 27.5, @@ -288,6 +289,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 142, @@ -335,6 +337,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 142, diff --git a/e2etests/testdata/txtar/sketch-mode-circle-arrowhead/dagre/sketch.exp.svg b/e2etests/testdata/txtar/sketch-mode-circle-arrowhead/dagre/sketch.exp.svg index 424c8f1988..ac6c144b01 100644 --- a/e2etests/testdata/txtar/sketch-mode-circle-arrowhead/dagre/sketch.exp.svg +++ b/e2etests/testdata/txtar/sketch-mode-circle-arrowhead/dagre/sketch.exp.svg @@ -1,9 +1,9 @@ - + .d2-584755187 .fill-N1{fill:#0A0F25;} + .d2-584755187 .fill-N2{fill:#676C7E;} + .d2-584755187 .fill-N3{fill:#9499AB;} + .d2-584755187 .fill-N4{fill:#CFD2DD;} + .d2-584755187 .fill-N5{fill:#DEE1EB;} + .d2-584755187 .fill-N6{fill:#EEF1F8;} + .d2-584755187 .fill-N7{fill:#FFFFFF;} + .d2-584755187 .fill-B1{fill:#0D32B2;} + .d2-584755187 .fill-B2{fill:#0D32B2;} + .d2-584755187 .fill-B3{fill:#E3E9FD;} + .d2-584755187 .fill-B4{fill:#E3E9FD;} + .d2-584755187 .fill-B5{fill:#EDF0FD;} + .d2-584755187 .fill-B6{fill:#F7F8FE;} + .d2-584755187 .fill-AA2{fill:#4A6FF3;} + .d2-584755187 .fill-AA4{fill:#EDF0FD;} + .d2-584755187 .fill-AA5{fill:#F7F8FE;} + .d2-584755187 .fill-AB4{fill:#EDF0FD;} + .d2-584755187 .fill-AB5{fill:#F7F8FE;} + .d2-584755187 .stroke-N1{stroke:#0A0F25;} + .d2-584755187 .stroke-N2{stroke:#676C7E;} + .d2-584755187 .stroke-N3{stroke:#9499AB;} + .d2-584755187 .stroke-N4{stroke:#CFD2DD;} + .d2-584755187 .stroke-N5{stroke:#DEE1EB;} + .d2-584755187 .stroke-N6{stroke:#EEF1F8;} + .d2-584755187 .stroke-N7{stroke:#FFFFFF;} + .d2-584755187 .stroke-B1{stroke:#0D32B2;} + .d2-584755187 .stroke-B2{stroke:#0D32B2;} + .d2-584755187 .stroke-B3{stroke:#E3E9FD;} + .d2-584755187 .stroke-B4{stroke:#E3E9FD;} + .d2-584755187 .stroke-B5{stroke:#EDF0FD;} + .d2-584755187 .stroke-B6{stroke:#F7F8FE;} + .d2-584755187 .stroke-AA2{stroke:#4A6FF3;} + .d2-584755187 .stroke-AA4{stroke:#EDF0FD;} + .d2-584755187 .stroke-AA5{stroke:#F7F8FE;} + .d2-584755187 .stroke-AB4{stroke:#EDF0FD;} + .d2-584755187 .stroke-AB5{stroke:#F7F8FE;} + .d2-584755187 .background-color-N1{background-color:#0A0F25;} + .d2-584755187 .background-color-N2{background-color:#676C7E;} + .d2-584755187 .background-color-N3{background-color:#9499AB;} + .d2-584755187 .background-color-N4{background-color:#CFD2DD;} + .d2-584755187 .background-color-N5{background-color:#DEE1EB;} + .d2-584755187 .background-color-N6{background-color:#EEF1F8;} + .d2-584755187 .background-color-N7{background-color:#FFFFFF;} + .d2-584755187 .background-color-B1{background-color:#0D32B2;} + .d2-584755187 .background-color-B2{background-color:#0D32B2;} + .d2-584755187 .background-color-B3{background-color:#E3E9FD;} + .d2-584755187 .background-color-B4{background-color:#E3E9FD;} + .d2-584755187 .background-color-B5{background-color:#EDF0FD;} + .d2-584755187 .background-color-B6{background-color:#F7F8FE;} + .d2-584755187 .background-color-AA2{background-color:#4A6FF3;} + .d2-584755187 .background-color-AA4{background-color:#EDF0FD;} + .d2-584755187 .background-color-AA5{background-color:#F7F8FE;} + .d2-584755187 .background-color-AB4{background-color:#EDF0FD;} + .d2-584755187 .background-color-AB5{background-color:#F7F8FE;} + .d2-584755187 .color-N1{color:#0A0F25;} + .d2-584755187 .color-N2{color:#676C7E;} + .d2-584755187 .color-N3{color:#9499AB;} + .d2-584755187 .color-N4{color:#CFD2DD;} + .d2-584755187 .color-N5{color:#DEE1EB;} + .d2-584755187 .color-N6{color:#EEF1F8;} + .d2-584755187 .color-N7{color:#FFFFFF;} + .d2-584755187 .color-B1{color:#0D32B2;} + .d2-584755187 .color-B2{color:#0D32B2;} + .d2-584755187 .color-B3{color:#E3E9FD;} + .d2-584755187 .color-B4{color:#E3E9FD;} + .d2-584755187 .color-B5{color:#EDF0FD;} + .d2-584755187 .color-B6{color:#F7F8FE;} + .d2-584755187 .color-AA2{color:#4A6FF3;} + .d2-584755187 .color-AA4{color:#EDF0FD;} + .d2-584755187 .color-AA5{color:#F7F8FE;} + .d2-584755187 .color-AB4{color:#EDF0FD;} + .d2-584755187 .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 @@ -abxyz +abxyz diff --git a/e2etests/testdata/txtar/sketch-mode-circle-arrowhead/elk/board.exp.json b/e2etests/testdata/txtar/sketch-mode-circle-arrowhead/elk/board.exp.json index aeccd46316..2792824689 100644 --- a/e2etests/testdata/txtar/sketch-mode-circle-arrowhead/elk/board.exp.json +++ b/e2etests/testdata/txtar/sketch-mode-circle-arrowhead/elk/board.exp.json @@ -241,6 +241,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 39.5, @@ -279,6 +280,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 114, @@ -317,6 +319,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 114, diff --git a/e2etests/testdata/txtar/sketch-mode-circle-arrowhead/elk/sketch.exp.svg b/e2etests/testdata/txtar/sketch-mode-circle-arrowhead/elk/sketch.exp.svg index 66402513ce..83734d07ac 100644 --- a/e2etests/testdata/txtar/sketch-mode-circle-arrowhead/elk/sketch.exp.svg +++ b/e2etests/testdata/txtar/sketch-mode-circle-arrowhead/elk/sketch.exp.svg @@ -1,9 +1,9 @@ - + .d2-2334044424 .fill-N1{fill:#0A0F25;} + .d2-2334044424 .fill-N2{fill:#676C7E;} + .d2-2334044424 .fill-N3{fill:#9499AB;} + .d2-2334044424 .fill-N4{fill:#CFD2DD;} + .d2-2334044424 .fill-N5{fill:#DEE1EB;} + .d2-2334044424 .fill-N6{fill:#EEF1F8;} + .d2-2334044424 .fill-N7{fill:#FFFFFF;} + .d2-2334044424 .fill-B1{fill:#0D32B2;} + .d2-2334044424 .fill-B2{fill:#0D32B2;} + .d2-2334044424 .fill-B3{fill:#E3E9FD;} + .d2-2334044424 .fill-B4{fill:#E3E9FD;} + .d2-2334044424 .fill-B5{fill:#EDF0FD;} + .d2-2334044424 .fill-B6{fill:#F7F8FE;} + .d2-2334044424 .fill-AA2{fill:#4A6FF3;} + .d2-2334044424 .fill-AA4{fill:#EDF0FD;} + .d2-2334044424 .fill-AA5{fill:#F7F8FE;} + .d2-2334044424 .fill-AB4{fill:#EDF0FD;} + .d2-2334044424 .fill-AB5{fill:#F7F8FE;} + .d2-2334044424 .stroke-N1{stroke:#0A0F25;} + .d2-2334044424 .stroke-N2{stroke:#676C7E;} + .d2-2334044424 .stroke-N3{stroke:#9499AB;} + .d2-2334044424 .stroke-N4{stroke:#CFD2DD;} + .d2-2334044424 .stroke-N5{stroke:#DEE1EB;} + .d2-2334044424 .stroke-N6{stroke:#EEF1F8;} + .d2-2334044424 .stroke-N7{stroke:#FFFFFF;} + .d2-2334044424 .stroke-B1{stroke:#0D32B2;} + .d2-2334044424 .stroke-B2{stroke:#0D32B2;} + .d2-2334044424 .stroke-B3{stroke:#E3E9FD;} + .d2-2334044424 .stroke-B4{stroke:#E3E9FD;} + .d2-2334044424 .stroke-B5{stroke:#EDF0FD;} + .d2-2334044424 .stroke-B6{stroke:#F7F8FE;} + .d2-2334044424 .stroke-AA2{stroke:#4A6FF3;} + .d2-2334044424 .stroke-AA4{stroke:#EDF0FD;} + .d2-2334044424 .stroke-AA5{stroke:#F7F8FE;} + .d2-2334044424 .stroke-AB4{stroke:#EDF0FD;} + .d2-2334044424 .stroke-AB5{stroke:#F7F8FE;} + .d2-2334044424 .background-color-N1{background-color:#0A0F25;} + .d2-2334044424 .background-color-N2{background-color:#676C7E;} + .d2-2334044424 .background-color-N3{background-color:#9499AB;} + .d2-2334044424 .background-color-N4{background-color:#CFD2DD;} + .d2-2334044424 .background-color-N5{background-color:#DEE1EB;} + .d2-2334044424 .background-color-N6{background-color:#EEF1F8;} + .d2-2334044424 .background-color-N7{background-color:#FFFFFF;} + .d2-2334044424 .background-color-B1{background-color:#0D32B2;} + .d2-2334044424 .background-color-B2{background-color:#0D32B2;} + .d2-2334044424 .background-color-B3{background-color:#E3E9FD;} + .d2-2334044424 .background-color-B4{background-color:#E3E9FD;} + .d2-2334044424 .background-color-B5{background-color:#EDF0FD;} + .d2-2334044424 .background-color-B6{background-color:#F7F8FE;} + .d2-2334044424 .background-color-AA2{background-color:#4A6FF3;} + .d2-2334044424 .background-color-AA4{background-color:#EDF0FD;} + .d2-2334044424 .background-color-AA5{background-color:#F7F8FE;} + .d2-2334044424 .background-color-AB4{background-color:#EDF0FD;} + .d2-2334044424 .background-color-AB5{background-color:#F7F8FE;} + .d2-2334044424 .color-N1{color:#0A0F25;} + .d2-2334044424 .color-N2{color:#676C7E;} + .d2-2334044424 .color-N3{color:#9499AB;} + .d2-2334044424 .color-N4{color:#CFD2DD;} + .d2-2334044424 .color-N5{color:#DEE1EB;} + .d2-2334044424 .color-N6{color:#EEF1F8;} + .d2-2334044424 .color-N7{color:#FFFFFF;} + .d2-2334044424 .color-B1{color:#0D32B2;} + .d2-2334044424 .color-B2{color:#0D32B2;} + .d2-2334044424 .color-B3{color:#E3E9FD;} + .d2-2334044424 .color-B4{color:#E3E9FD;} + .d2-2334044424 .color-B5{color:#EDF0FD;} + .d2-2334044424 .color-B6{color:#F7F8FE;} + .d2-2334044424 .color-AA2{color:#4A6FF3;} + .d2-2334044424 .color-AA4{color:#EDF0FD;} + .d2-2334044424 .color-AA5{color:#F7F8FE;} + .d2-2334044424 .color-AB4{color:#EDF0FD;} + .d2-2334044424 .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 @@ -abxyz +abxyz diff --git a/e2etests/testdata/txtar/sql-icon/dagre/board.exp.json b/e2etests/testdata/txtar/sql-icon/dagre/board.exp.json index d82dbf6e9c..2a8568db7b 100644 --- a/e2etests/testdata/txtar/sql-icon/dagre/board.exp.json +++ b/e2etests/testdata/txtar/sql-icon/dagre/board.exp.json @@ -560,6 +560,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 93, @@ -619,6 +620,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 308, @@ -678,6 +680,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 507, @@ -737,6 +740,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 818, diff --git a/e2etests/testdata/txtar/sql-icon/dagre/sketch.exp.svg b/e2etests/testdata/txtar/sql-icon/dagre/sketch.exp.svg index f782bb9123..d791d578f6 100644 --- a/e2etests/testdata/txtar/sql-icon/dagre/sketch.exp.svg +++ b/e2etests/testdata/txtar/sql-icon/dagre/sketch.exp.svg @@ -1,27 +1,27 @@ -withoutwithtableExabclassEx+ab:= 1a := 1

    This is for all ill-treated fellows

    You will live a long, healthy, happy life and make bags of money.

    tableExabclassEx+ab:= 1a := 1

    This is for all ill-treated fellows

    You will live a long, healthy, happy life and make bags of money.

    -
    + diff --git a/e2etests/testdata/txtar/sql-icon/elk/board.exp.json b/e2etests/testdata/txtar/sql-icon/elk/board.exp.json index ca4d10f2c6..1e7a645a09 100644 --- a/e2etests/testdata/txtar/sql-icon/elk/board.exp.json +++ b/e2etests/testdata/txtar/sql-icon/elk/board.exp.json @@ -560,6 +560,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 115, @@ -598,6 +599,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 290, @@ -636,6 +638,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 449, @@ -674,6 +677,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 720, diff --git a/e2etests/testdata/txtar/sql-icon/elk/sketch.exp.svg b/e2etests/testdata/txtar/sql-icon/elk/sketch.exp.svg index 3ae8bd3fd8..9d57b93188 100644 --- a/e2etests/testdata/txtar/sql-icon/elk/sketch.exp.svg +++ b/e2etests/testdata/txtar/sql-icon/elk/sketch.exp.svg @@ -1,27 +1,27 @@ -withoutwithtableExabclassEx+ab:= 1a := 1

    This is for all ill-treated fellows

    You will live a long, healthy, happy life and make bags of money.

    tableExabclassEx+ab:= 1a := 1

    This is for all ill-treated fellows

    You will live a long, healthy, happy life and make bags of money.

    -
    + diff --git a/e2etests/testdata/txtar/sql-table-reserved/dagre/board.exp.json b/e2etests/testdata/txtar/sql-table-reserved/dagre/board.exp.json index 05f5618427..2a68b94bcb 100644 --- a/e2etests/testdata/txtar/sql-table-reserved/dagre/board.exp.json +++ b/e2etests/testdata/txtar/sql-table-reserved/dagre/board.exp.json @@ -237,6 +237,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 100, diff --git a/e2etests/testdata/txtar/sql-table-reserved/dagre/sketch.exp.svg b/e2etests/testdata/txtar/sql-table-reserved/dagre/sketch.exp.svg index 47427da188..5123780543 100644 --- a/e2etests/testdata/txtar/sql-table-reserved/dagre/sketch.exp.svg +++ b/e2etests/testdata/txtar/sql-table-reserved/dagre/sketch.exp.svg @@ -1,16 +1,16 @@ -my_tableshapestringiconstringwidthintheightintx + .d2-679924710 .fill-N1{fill:#0A0F25;} + .d2-679924710 .fill-N2{fill:#676C7E;} + .d2-679924710 .fill-N3{fill:#9499AB;} + .d2-679924710 .fill-N4{fill:#CFD2DD;} + .d2-679924710 .fill-N5{fill:#DEE1EB;} + .d2-679924710 .fill-N6{fill:#EEF1F8;} + .d2-679924710 .fill-N7{fill:#FFFFFF;} + .d2-679924710 .fill-B1{fill:#0D32B2;} + .d2-679924710 .fill-B2{fill:#0D32B2;} + .d2-679924710 .fill-B3{fill:#E3E9FD;} + .d2-679924710 .fill-B4{fill:#E3E9FD;} + .d2-679924710 .fill-B5{fill:#EDF0FD;} + .d2-679924710 .fill-B6{fill:#F7F8FE;} + .d2-679924710 .fill-AA2{fill:#4A6FF3;} + .d2-679924710 .fill-AA4{fill:#EDF0FD;} + .d2-679924710 .fill-AA5{fill:#F7F8FE;} + .d2-679924710 .fill-AB4{fill:#EDF0FD;} + .d2-679924710 .fill-AB5{fill:#F7F8FE;} + .d2-679924710 .stroke-N1{stroke:#0A0F25;} + .d2-679924710 .stroke-N2{stroke:#676C7E;} + .d2-679924710 .stroke-N3{stroke:#9499AB;} + .d2-679924710 .stroke-N4{stroke:#CFD2DD;} + .d2-679924710 .stroke-N5{stroke:#DEE1EB;} + .d2-679924710 .stroke-N6{stroke:#EEF1F8;} + .d2-679924710 .stroke-N7{stroke:#FFFFFF;} + .d2-679924710 .stroke-B1{stroke:#0D32B2;} + .d2-679924710 .stroke-B2{stroke:#0D32B2;} + .d2-679924710 .stroke-B3{stroke:#E3E9FD;} + .d2-679924710 .stroke-B4{stroke:#E3E9FD;} + .d2-679924710 .stroke-B5{stroke:#EDF0FD;} + .d2-679924710 .stroke-B6{stroke:#F7F8FE;} + .d2-679924710 .stroke-AA2{stroke:#4A6FF3;} + .d2-679924710 .stroke-AA4{stroke:#EDF0FD;} + .d2-679924710 .stroke-AA5{stroke:#F7F8FE;} + .d2-679924710 .stroke-AB4{stroke:#EDF0FD;} + .d2-679924710 .stroke-AB5{stroke:#F7F8FE;} + .d2-679924710 .background-color-N1{background-color:#0A0F25;} + .d2-679924710 .background-color-N2{background-color:#676C7E;} + .d2-679924710 .background-color-N3{background-color:#9499AB;} + .d2-679924710 .background-color-N4{background-color:#CFD2DD;} + .d2-679924710 .background-color-N5{background-color:#DEE1EB;} + .d2-679924710 .background-color-N6{background-color:#EEF1F8;} + .d2-679924710 .background-color-N7{background-color:#FFFFFF;} + .d2-679924710 .background-color-B1{background-color:#0D32B2;} + .d2-679924710 .background-color-B2{background-color:#0D32B2;} + .d2-679924710 .background-color-B3{background-color:#E3E9FD;} + .d2-679924710 .background-color-B4{background-color:#E3E9FD;} + .d2-679924710 .background-color-B5{background-color:#EDF0FD;} + .d2-679924710 .background-color-B6{background-color:#F7F8FE;} + .d2-679924710 .background-color-AA2{background-color:#4A6FF3;} + .d2-679924710 .background-color-AA4{background-color:#EDF0FD;} + .d2-679924710 .background-color-AA5{background-color:#F7F8FE;} + .d2-679924710 .background-color-AB4{background-color:#EDF0FD;} + .d2-679924710 .background-color-AB5{background-color:#F7F8FE;} + .d2-679924710 .color-N1{color:#0A0F25;} + .d2-679924710 .color-N2{color:#676C7E;} + .d2-679924710 .color-N3{color:#9499AB;} + .d2-679924710 .color-N4{color:#CFD2DD;} + .d2-679924710 .color-N5{color:#DEE1EB;} + .d2-679924710 .color-N6{color:#EEF1F8;} + .d2-679924710 .color-N7{color:#FFFFFF;} + .d2-679924710 .color-B1{color:#0D32B2;} + .d2-679924710 .color-B2{color:#0D32B2;} + .d2-679924710 .color-B3{color:#E3E9FD;} + .d2-679924710 .color-B4{color:#E3E9FD;} + .d2-679924710 .color-B5{color:#EDF0FD;} + .d2-679924710 .color-B6{color:#F7F8FE;} + .d2-679924710 .color-AA2{color:#4A6FF3;} + .d2-679924710 .color-AA4{color:#EDF0FD;} + .d2-679924710 .color-AA5{color:#F7F8FE;} + .d2-679924710 .color-AB4{color:#EDF0FD;} + .d2-679924710 .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}]]>my_tableshapestringiconstringwidthintheightintx \ No newline at end of file diff --git a/e2etests/testdata/txtar/sql-table-reserved/elk/board.exp.json b/e2etests/testdata/txtar/sql-table-reserved/elk/board.exp.json index c53ead7f72..bf1c0e98fc 100644 --- a/e2etests/testdata/txtar/sql-table-reserved/elk/board.exp.json +++ b/e2etests/testdata/txtar/sql-table-reserved/elk/board.exp.json @@ -237,6 +237,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 38.5, diff --git a/e2etests/testdata/txtar/sql-table-reserved/elk/sketch.exp.svg b/e2etests/testdata/txtar/sql-table-reserved/elk/sketch.exp.svg index 1f6898cddb..8e78d76bb3 100644 --- a/e2etests/testdata/txtar/sql-table-reserved/elk/sketch.exp.svg +++ b/e2etests/testdata/txtar/sql-table-reserved/elk/sketch.exp.svg @@ -1,16 +1,16 @@ -my_tableshapestringiconstringwidthintheightintx + .d2-468816344 .fill-N1{fill:#0A0F25;} + .d2-468816344 .fill-N2{fill:#676C7E;} + .d2-468816344 .fill-N3{fill:#9499AB;} + .d2-468816344 .fill-N4{fill:#CFD2DD;} + .d2-468816344 .fill-N5{fill:#DEE1EB;} + .d2-468816344 .fill-N6{fill:#EEF1F8;} + .d2-468816344 .fill-N7{fill:#FFFFFF;} + .d2-468816344 .fill-B1{fill:#0D32B2;} + .d2-468816344 .fill-B2{fill:#0D32B2;} + .d2-468816344 .fill-B3{fill:#E3E9FD;} + .d2-468816344 .fill-B4{fill:#E3E9FD;} + .d2-468816344 .fill-B5{fill:#EDF0FD;} + .d2-468816344 .fill-B6{fill:#F7F8FE;} + .d2-468816344 .fill-AA2{fill:#4A6FF3;} + .d2-468816344 .fill-AA4{fill:#EDF0FD;} + .d2-468816344 .fill-AA5{fill:#F7F8FE;} + .d2-468816344 .fill-AB4{fill:#EDF0FD;} + .d2-468816344 .fill-AB5{fill:#F7F8FE;} + .d2-468816344 .stroke-N1{stroke:#0A0F25;} + .d2-468816344 .stroke-N2{stroke:#676C7E;} + .d2-468816344 .stroke-N3{stroke:#9499AB;} + .d2-468816344 .stroke-N4{stroke:#CFD2DD;} + .d2-468816344 .stroke-N5{stroke:#DEE1EB;} + .d2-468816344 .stroke-N6{stroke:#EEF1F8;} + .d2-468816344 .stroke-N7{stroke:#FFFFFF;} + .d2-468816344 .stroke-B1{stroke:#0D32B2;} + .d2-468816344 .stroke-B2{stroke:#0D32B2;} + .d2-468816344 .stroke-B3{stroke:#E3E9FD;} + .d2-468816344 .stroke-B4{stroke:#E3E9FD;} + .d2-468816344 .stroke-B5{stroke:#EDF0FD;} + .d2-468816344 .stroke-B6{stroke:#F7F8FE;} + .d2-468816344 .stroke-AA2{stroke:#4A6FF3;} + .d2-468816344 .stroke-AA4{stroke:#EDF0FD;} + .d2-468816344 .stroke-AA5{stroke:#F7F8FE;} + .d2-468816344 .stroke-AB4{stroke:#EDF0FD;} + .d2-468816344 .stroke-AB5{stroke:#F7F8FE;} + .d2-468816344 .background-color-N1{background-color:#0A0F25;} + .d2-468816344 .background-color-N2{background-color:#676C7E;} + .d2-468816344 .background-color-N3{background-color:#9499AB;} + .d2-468816344 .background-color-N4{background-color:#CFD2DD;} + .d2-468816344 .background-color-N5{background-color:#DEE1EB;} + .d2-468816344 .background-color-N6{background-color:#EEF1F8;} + .d2-468816344 .background-color-N7{background-color:#FFFFFF;} + .d2-468816344 .background-color-B1{background-color:#0D32B2;} + .d2-468816344 .background-color-B2{background-color:#0D32B2;} + .d2-468816344 .background-color-B3{background-color:#E3E9FD;} + .d2-468816344 .background-color-B4{background-color:#E3E9FD;} + .d2-468816344 .background-color-B5{background-color:#EDF0FD;} + .d2-468816344 .background-color-B6{background-color:#F7F8FE;} + .d2-468816344 .background-color-AA2{background-color:#4A6FF3;} + .d2-468816344 .background-color-AA4{background-color:#EDF0FD;} + .d2-468816344 .background-color-AA5{background-color:#F7F8FE;} + .d2-468816344 .background-color-AB4{background-color:#EDF0FD;} + .d2-468816344 .background-color-AB5{background-color:#F7F8FE;} + .d2-468816344 .color-N1{color:#0A0F25;} + .d2-468816344 .color-N2{color:#676C7E;} + .d2-468816344 .color-N3{color:#9499AB;} + .d2-468816344 .color-N4{color:#CFD2DD;} + .d2-468816344 .color-N5{color:#DEE1EB;} + .d2-468816344 .color-N6{color:#EEF1F8;} + .d2-468816344 .color-N7{color:#FFFFFF;} + .d2-468816344 .color-B1{color:#0D32B2;} + .d2-468816344 .color-B2{color:#0D32B2;} + .d2-468816344 .color-B3{color:#E3E9FD;} + .d2-468816344 .color-B4{color:#E3E9FD;} + .d2-468816344 .color-B5{color:#EDF0FD;} + .d2-468816344 .color-B6{color:#F7F8FE;} + .d2-468816344 .color-AA2{color:#4A6FF3;} + .d2-468816344 .color-AA4{color:#EDF0FD;} + .d2-468816344 .color-AA5{color:#F7F8FE;} + .d2-468816344 .color-AB4{color:#EDF0FD;} + .d2-468816344 .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}]]>my_tableshapestringiconstringwidthintheightintx \ No newline at end of file diff --git a/e2etests/testdata/txtar/theme-overrides/dagre/board.exp.json b/e2etests/testdata/txtar/theme-overrides/dagre/board.exp.json index f797e1f2bd..a07383680c 100644 --- a/e2etests/testdata/txtar/theme-overrides/dagre/board.exp.json +++ b/e2etests/testdata/txtar/theme-overrides/dagre/board.exp.json @@ -843,6 +843,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 791, @@ -890,6 +891,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 792, @@ -937,6 +939,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 797, @@ -984,6 +987,7 @@ "labelHeight": 21, "labelPosition": "INSIDE_MIDDLE_CENTER", "labelPercentage": 0, + "link": "", "route": [ { "x": 1120, @@ -1031,6 +1035,7 @@ "labelHeight": 21, "labelPosition": "INSIDE_MIDDLE_CENTER", "labelPercentage": 0, + "link": "", "route": [ { "x": 163, @@ -1078,6 +1083,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 1563, @@ -1125,6 +1131,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 1563, @@ -1172,6 +1179,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 1563, @@ -1219,6 +1227,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 1814, @@ -1266,6 +1275,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 1814, @@ -1313,6 +1323,7 @@ "labelHeight": 21, "labelPosition": "INSIDE_MIDDLE_CENTER", "labelPercentage": 0, + "link": "", "route": [ { "x": 1814, @@ -1360,6 +1371,7 @@ "labelHeight": 21, "labelPosition": "INSIDE_MIDDLE_CENTER", "labelPercentage": 0, + "link": "", "route": [ { "x": 1771, @@ -1407,6 +1419,7 @@ "labelHeight": 21, "labelPosition": "INSIDE_MIDDLE_CENTER", "labelPercentage": 0, + "link": "", "route": [ { "x": 161, @@ -1610,6 +1623,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 294, diff --git a/e2etests/testdata/txtar/theme-overrides/dagre/sketch.exp.svg b/e2etests/testdata/txtar/theme-overrides/dagre/sketch.exp.svg index c95137586a..8f35e90998 100644 --- a/e2etests/testdata/txtar/theme-overrides/dagre/sketch.exp.svg +++ b/e2etests/testdata/txtar/theme-overrides/dagre/sketch.exp.svg @@ -1,23 +1,23 @@ -logsUserNetworkAPI ServercostumesidintPKsillinessintmonsterintlast_updatedtimestampmonstersidintPKmoviestringweightintlast_updatedtimestampCell TowerData ProcessorOnline PortalsatellitestransmitterStorageUI phone logsMake callpersistdisplay access + .d2-3500999268 .fill-N1{fill:#2E2E2E;} + .d2-3500999268 .fill-N2{fill:#2E2E2E;} + .d2-3500999268 .fill-N3{fill:#595959;} + .d2-3500999268 .fill-N4{fill:#858585;} + .d2-3500999268 .fill-N5{fill:#B1B1B1;} + .d2-3500999268 .fill-N6{fill:#DCDCDC;} + .d2-3500999268 .fill-N7{fill:#DCDCDC;} + .d2-3500999268 .fill-B1{fill:#2E7D32;} + .d2-3500999268 .fill-B2{fill:#66BB6A;} + .d2-3500999268 .fill-B3{fill:#A5D6A7;} + .d2-3500999268 .fill-B4{fill:#C5E1A5;} + .d2-3500999268 .fill-B5{fill:#E6EE9C;} + .d2-3500999268 .fill-B6{fill:#FFF59D;} + .d2-3500999268 .fill-AA2{fill:#0D47A1;} + .d2-3500999268 .fill-AA4{fill:#42A5F5;} + .d2-3500999268 .fill-AA5{fill:#90CAF9;} + .d2-3500999268 .fill-AB4{fill:#F44336;} + .d2-3500999268 .fill-AB5{fill:#FFCDD2;} + .d2-3500999268 .stroke-N1{stroke:#2E2E2E;} + .d2-3500999268 .stroke-N2{stroke:#2E2E2E;} + .d2-3500999268 .stroke-N3{stroke:#595959;} + .d2-3500999268 .stroke-N4{stroke:#858585;} + .d2-3500999268 .stroke-N5{stroke:#B1B1B1;} + .d2-3500999268 .stroke-N6{stroke:#DCDCDC;} + .d2-3500999268 .stroke-N7{stroke:#DCDCDC;} + .d2-3500999268 .stroke-B1{stroke:#2E7D32;} + .d2-3500999268 .stroke-B2{stroke:#66BB6A;} + .d2-3500999268 .stroke-B3{stroke:#A5D6A7;} + .d2-3500999268 .stroke-B4{stroke:#C5E1A5;} + .d2-3500999268 .stroke-B5{stroke:#E6EE9C;} + .d2-3500999268 .stroke-B6{stroke:#FFF59D;} + .d2-3500999268 .stroke-AA2{stroke:#0D47A1;} + .d2-3500999268 .stroke-AA4{stroke:#42A5F5;} + .d2-3500999268 .stroke-AA5{stroke:#90CAF9;} + .d2-3500999268 .stroke-AB4{stroke:#F44336;} + .d2-3500999268 .stroke-AB5{stroke:#FFCDD2;} + .d2-3500999268 .background-color-N1{background-color:#2E2E2E;} + .d2-3500999268 .background-color-N2{background-color:#2E2E2E;} + .d2-3500999268 .background-color-N3{background-color:#595959;} + .d2-3500999268 .background-color-N4{background-color:#858585;} + .d2-3500999268 .background-color-N5{background-color:#B1B1B1;} + .d2-3500999268 .background-color-N6{background-color:#DCDCDC;} + .d2-3500999268 .background-color-N7{background-color:#DCDCDC;} + .d2-3500999268 .background-color-B1{background-color:#2E7D32;} + .d2-3500999268 .background-color-B2{background-color:#66BB6A;} + .d2-3500999268 .background-color-B3{background-color:#A5D6A7;} + .d2-3500999268 .background-color-B4{background-color:#C5E1A5;} + .d2-3500999268 .background-color-B5{background-color:#E6EE9C;} + .d2-3500999268 .background-color-B6{background-color:#FFF59D;} + .d2-3500999268 .background-color-AA2{background-color:#0D47A1;} + .d2-3500999268 .background-color-AA4{background-color:#42A5F5;} + .d2-3500999268 .background-color-AA5{background-color:#90CAF9;} + .d2-3500999268 .background-color-AB4{background-color:#F44336;} + .d2-3500999268 .background-color-AB5{background-color:#FFCDD2;} + .d2-3500999268 .color-N1{color:#2E2E2E;} + .d2-3500999268 .color-N2{color:#2E2E2E;} + .d2-3500999268 .color-N3{color:#595959;} + .d2-3500999268 .color-N4{color:#858585;} + .d2-3500999268 .color-N5{color:#B1B1B1;} + .d2-3500999268 .color-N6{color:#DCDCDC;} + .d2-3500999268 .color-N7{color:#DCDCDC;} + .d2-3500999268 .color-B1{color:#2E7D32;} + .d2-3500999268 .color-B2{color:#66BB6A;} + .d2-3500999268 .color-B3{color:#A5D6A7;} + .d2-3500999268 .color-B4{color:#C5E1A5;} + .d2-3500999268 .color-B5{color:#E6EE9C;} + .d2-3500999268 .color-B6{color:#FFF59D;} + .d2-3500999268 .color-AA2{color:#0D47A1;} + .d2-3500999268 .color-AA4{color:#42A5F5;} + .d2-3500999268 .color-AA5{color:#90CAF9;} + .d2-3500999268 .color-AB4{color:#F44336;} + .d2-3500999268 .color-AB5{color:#FFCDD2;}.appendix text.text{fill:#2E2E2E}.md{--color-fg-default:#2E2E2E;--color-fg-muted:#2E2E2E;--color-fg-subtle:#595959;--color-canvas-default:#DCDCDC;--color-canvas-subtle:#DCDCDC;--color-border-default:#2E7D32;--color-border-muted:#66BB6A;--color-neutral-muted:#DCDCDC;--color-accent-fg:#66BB6A;--color-accent-emphasis:#66BB6A;--color-attention-subtle:#2E2E2E;--color-danger-fg:red;}.sketch-overlay-B1{fill:url(#streaks-dark);mix-blend-mode:overlay}.sketch-overlay-B2{fill:url(#streaks-normal);mix-blend-mode:color-burn}.sketch-overlay-B3{fill:url(#streaks-normal);mix-blend-mode:color-burn}.sketch-overlay-B4{fill:url(#streaks-normal);mix-blend-mode:color-burn}.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-darker);mix-blend-mode:lighten}.sketch-overlay-AA4{fill:url(#streaks-normal);mix-blend-mode:color-burn}.sketch-overlay-AA5{fill:url(#streaks-normal);mix-blend-mode:color-burn}.sketch-overlay-AB4{fill:url(#streaks-dark);mix-blend-mode:overlay}.sketch-overlay-AB5{fill:url(#streaks-normal);mix-blend-mode:color-burn}.sketch-overlay-N1{fill:url(#streaks-darker);mix-blend-mode:lighten}.sketch-overlay-N2{fill:url(#streaks-darker);mix-blend-mode:lighten}.sketch-overlay-N3{fill:url(#streaks-dark);mix-blend-mode:overlay}.sketch-overlay-N4{fill:url(#streaks-dark);mix-blend-mode:overlay}.sketch-overlay-N5{fill:url(#streaks-normal);mix-blend-mode:color-burn}.sketch-overlay-N6{fill:url(#streaks-normal);mix-blend-mode:color-burn}.sketch-overlay-N7{fill:url(#streaks-normal);mix-blend-mode:color-burn}.light-code{display: block}.dark-code{display: none}]]>logsUserNetworkAPI ServercostumesidintPKsillinessintmonsterintlast_updatedtimestampmonstersidintPKmoviestringweightintlast_updatedtimestampCell TowerData ProcessorOnline PortalsatellitestransmitterStorageUI phone logsMake callpersistdisplay access diff --git a/e2etests/testdata/txtar/theme-overrides/elk/board.exp.json b/e2etests/testdata/txtar/theme-overrides/elk/board.exp.json index 44705ad317..96eb7825f9 100644 --- a/e2etests/testdata/txtar/theme-overrides/elk/board.exp.json +++ b/e2etests/testdata/txtar/theme-overrides/elk/board.exp.json @@ -843,6 +843,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 985, @@ -881,6 +882,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 990, @@ -919,6 +921,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 982, @@ -957,6 +960,7 @@ "labelHeight": 21, "labelPosition": "INSIDE_MIDDLE_CENTER", "labelPercentage": 0, + "link": "", "route": [ { "x": 1213, @@ -995,6 +999,7 @@ "labelHeight": 21, "labelPosition": "INSIDE_MIDDLE_CENTER", "labelPercentage": 0, + "link": "", "route": [ { "x": 299, @@ -1033,6 +1038,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 1693, @@ -1079,6 +1085,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 1693, @@ -1125,6 +1132,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 1693, @@ -1179,6 +1187,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 2078, @@ -1225,6 +1234,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 2078, @@ -1263,6 +1273,7 @@ "labelHeight": 21, "labelPosition": "INSIDE_MIDDLE_CENTER", "labelPercentage": 0, + "link": "", "route": [ { "x": 2078, @@ -1309,6 +1320,7 @@ "labelHeight": 21, "labelPosition": "INSIDE_MIDDLE_CENTER", "labelPercentage": 0, + "link": "", "route": [ { "x": 1958, @@ -1363,6 +1375,7 @@ "labelHeight": 21, "labelPosition": "INSIDE_MIDDLE_CENTER", "labelPercentage": 0, + "link": "", "route": [ { "x": 306, @@ -1409,6 +1422,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 306, diff --git a/e2etests/testdata/txtar/theme-overrides/elk/sketch.exp.svg b/e2etests/testdata/txtar/theme-overrides/elk/sketch.exp.svg index 813b364f61..582bf40f17 100644 --- a/e2etests/testdata/txtar/theme-overrides/elk/sketch.exp.svg +++ b/e2etests/testdata/txtar/theme-overrides/elk/sketch.exp.svg @@ -1,23 +1,23 @@ -logsUserNetworkAPI ServercostumesidintPKsillinessintmonsterintlast_updatedtimestampmonstersidintPKmoviestringweightintlast_updatedtimestampCell TowerData ProcessorOnline PortalsatellitestransmitterStorageUI phone logsMake callpersistdisplay access + .d2-777983981 .fill-N1{fill:#2E2E2E;} + .d2-777983981 .fill-N2{fill:#2E2E2E;} + .d2-777983981 .fill-N3{fill:#595959;} + .d2-777983981 .fill-N4{fill:#858585;} + .d2-777983981 .fill-N5{fill:#B1B1B1;} + .d2-777983981 .fill-N6{fill:#DCDCDC;} + .d2-777983981 .fill-N7{fill:#DCDCDC;} + .d2-777983981 .fill-B1{fill:#2E7D32;} + .d2-777983981 .fill-B2{fill:#66BB6A;} + .d2-777983981 .fill-B3{fill:#A5D6A7;} + .d2-777983981 .fill-B4{fill:#C5E1A5;} + .d2-777983981 .fill-B5{fill:#E6EE9C;} + .d2-777983981 .fill-B6{fill:#FFF59D;} + .d2-777983981 .fill-AA2{fill:#0D47A1;} + .d2-777983981 .fill-AA4{fill:#42A5F5;} + .d2-777983981 .fill-AA5{fill:#90CAF9;} + .d2-777983981 .fill-AB4{fill:#F44336;} + .d2-777983981 .fill-AB5{fill:#FFCDD2;} + .d2-777983981 .stroke-N1{stroke:#2E2E2E;} + .d2-777983981 .stroke-N2{stroke:#2E2E2E;} + .d2-777983981 .stroke-N3{stroke:#595959;} + .d2-777983981 .stroke-N4{stroke:#858585;} + .d2-777983981 .stroke-N5{stroke:#B1B1B1;} + .d2-777983981 .stroke-N6{stroke:#DCDCDC;} + .d2-777983981 .stroke-N7{stroke:#DCDCDC;} + .d2-777983981 .stroke-B1{stroke:#2E7D32;} + .d2-777983981 .stroke-B2{stroke:#66BB6A;} + .d2-777983981 .stroke-B3{stroke:#A5D6A7;} + .d2-777983981 .stroke-B4{stroke:#C5E1A5;} + .d2-777983981 .stroke-B5{stroke:#E6EE9C;} + .d2-777983981 .stroke-B6{stroke:#FFF59D;} + .d2-777983981 .stroke-AA2{stroke:#0D47A1;} + .d2-777983981 .stroke-AA4{stroke:#42A5F5;} + .d2-777983981 .stroke-AA5{stroke:#90CAF9;} + .d2-777983981 .stroke-AB4{stroke:#F44336;} + .d2-777983981 .stroke-AB5{stroke:#FFCDD2;} + .d2-777983981 .background-color-N1{background-color:#2E2E2E;} + .d2-777983981 .background-color-N2{background-color:#2E2E2E;} + .d2-777983981 .background-color-N3{background-color:#595959;} + .d2-777983981 .background-color-N4{background-color:#858585;} + .d2-777983981 .background-color-N5{background-color:#B1B1B1;} + .d2-777983981 .background-color-N6{background-color:#DCDCDC;} + .d2-777983981 .background-color-N7{background-color:#DCDCDC;} + .d2-777983981 .background-color-B1{background-color:#2E7D32;} + .d2-777983981 .background-color-B2{background-color:#66BB6A;} + .d2-777983981 .background-color-B3{background-color:#A5D6A7;} + .d2-777983981 .background-color-B4{background-color:#C5E1A5;} + .d2-777983981 .background-color-B5{background-color:#E6EE9C;} + .d2-777983981 .background-color-B6{background-color:#FFF59D;} + .d2-777983981 .background-color-AA2{background-color:#0D47A1;} + .d2-777983981 .background-color-AA4{background-color:#42A5F5;} + .d2-777983981 .background-color-AA5{background-color:#90CAF9;} + .d2-777983981 .background-color-AB4{background-color:#F44336;} + .d2-777983981 .background-color-AB5{background-color:#FFCDD2;} + .d2-777983981 .color-N1{color:#2E2E2E;} + .d2-777983981 .color-N2{color:#2E2E2E;} + .d2-777983981 .color-N3{color:#595959;} + .d2-777983981 .color-N4{color:#858585;} + .d2-777983981 .color-N5{color:#B1B1B1;} + .d2-777983981 .color-N6{color:#DCDCDC;} + .d2-777983981 .color-N7{color:#DCDCDC;} + .d2-777983981 .color-B1{color:#2E7D32;} + .d2-777983981 .color-B2{color:#66BB6A;} + .d2-777983981 .color-B3{color:#A5D6A7;} + .d2-777983981 .color-B4{color:#C5E1A5;} + .d2-777983981 .color-B5{color:#E6EE9C;} + .d2-777983981 .color-B6{color:#FFF59D;} + .d2-777983981 .color-AA2{color:#0D47A1;} + .d2-777983981 .color-AA4{color:#42A5F5;} + .d2-777983981 .color-AA5{color:#90CAF9;} + .d2-777983981 .color-AB4{color:#F44336;} + .d2-777983981 .color-AB5{color:#FFCDD2;}.appendix text.text{fill:#2E2E2E}.md{--color-fg-default:#2E2E2E;--color-fg-muted:#2E2E2E;--color-fg-subtle:#595959;--color-canvas-default:#DCDCDC;--color-canvas-subtle:#DCDCDC;--color-border-default:#2E7D32;--color-border-muted:#66BB6A;--color-neutral-muted:#DCDCDC;--color-accent-fg:#66BB6A;--color-accent-emphasis:#66BB6A;--color-attention-subtle:#2E2E2E;--color-danger-fg:red;}.sketch-overlay-B1{fill:url(#streaks-dark);mix-blend-mode:overlay}.sketch-overlay-B2{fill:url(#streaks-normal);mix-blend-mode:color-burn}.sketch-overlay-B3{fill:url(#streaks-normal);mix-blend-mode:color-burn}.sketch-overlay-B4{fill:url(#streaks-normal);mix-blend-mode:color-burn}.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-darker);mix-blend-mode:lighten}.sketch-overlay-AA4{fill:url(#streaks-normal);mix-blend-mode:color-burn}.sketch-overlay-AA5{fill:url(#streaks-normal);mix-blend-mode:color-burn}.sketch-overlay-AB4{fill:url(#streaks-dark);mix-blend-mode:overlay}.sketch-overlay-AB5{fill:url(#streaks-normal);mix-blend-mode:color-burn}.sketch-overlay-N1{fill:url(#streaks-darker);mix-blend-mode:lighten}.sketch-overlay-N2{fill:url(#streaks-darker);mix-blend-mode:lighten}.sketch-overlay-N3{fill:url(#streaks-dark);mix-blend-mode:overlay}.sketch-overlay-N4{fill:url(#streaks-dark);mix-blend-mode:overlay}.sketch-overlay-N5{fill:url(#streaks-normal);mix-blend-mode:color-burn}.sketch-overlay-N6{fill:url(#streaks-normal);mix-blend-mode:color-burn}.sketch-overlay-N7{fill:url(#streaks-normal);mix-blend-mode:color-burn}.light-code{display: block}.dark-code{display: none}]]>logsUserNetworkAPI ServercostumesidintPKsillinessintmonsterintlast_updatedtimestampmonstersidintPKmoviestringweightintlast_updatedtimestampCell TowerData ProcessorOnline PortalsatellitestransmitterStorageUI phone logsMake callpersistdisplay access diff --git a/e2etests/testdata/txtar/var_in_markdown/dagre/board.exp.json b/e2etests/testdata/txtar/var_in_markdown/dagre/board.exp.json index 9310e84603..2832d37861 100644 --- a/e2etests/testdata/txtar/var_in_markdown/dagre/board.exp.json +++ b/e2etests/testdata/txtar/var_in_markdown/dagre/board.exp.json @@ -191,6 +191,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 167.5, @@ -238,6 +239,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 167.5, diff --git a/e2etests/testdata/txtar/var_in_markdown/dagre/sketch.exp.svg b/e2etests/testdata/txtar/var_in_markdown/dagre/sketch.exp.svg index 49f57ba747..6a2b7366b5 100644 --- a/e2etests/testdata/txtar/var_in_markdown/dagre/sketch.exp.svg +++ b/e2etests/testdata/txtar/var_in_markdown/dagre/sketch.exp.svg @@ -1,27 +1,27 @@ -Kube

    Kube is a service

    Let ${y} be ${x}
     
    -
    ba +ba diff --git a/e2etests/testdata/txtar/var_in_markdown/elk/board.exp.json b/e2etests/testdata/txtar/var_in_markdown/elk/board.exp.json index 431f493e91..e840732837 100644 --- a/e2etests/testdata/txtar/var_in_markdown/elk/board.exp.json +++ b/e2etests/testdata/txtar/var_in_markdown/elk/board.exp.json @@ -191,6 +191,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 139.5, @@ -229,6 +230,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 139.5, diff --git a/e2etests/testdata/txtar/var_in_markdown/elk/sketch.exp.svg b/e2etests/testdata/txtar/var_in_markdown/elk/sketch.exp.svg index 80041bd462..d4c69f5204 100644 --- a/e2etests/testdata/txtar/var_in_markdown/elk/sketch.exp.svg +++ b/e2etests/testdata/txtar/var_in_markdown/elk/sketch.exp.svg @@ -1,27 +1,27 @@ -Kube

    Kube is a service

    Let ${y} be ${x}
     
    -
    ba +ba diff --git a/e2etests/testdata/unicode/chinese/dagre/board.exp.json b/e2etests/testdata/unicode/chinese/dagre/board.exp.json index bc030e8888..15aa7dccc9 100644 --- a/e2etests/testdata/unicode/chinese/dagre/board.exp.json +++ b/e2etests/testdata/unicode/chinese/dagre/board.exp.json @@ -109,6 +109,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 113, diff --git a/e2etests/testdata/unicode/chinese/dagre/sketch.exp.svg b/e2etests/testdata/unicode/chinese/dagre/sketch.exp.svg index c024dde563..3903de2ce5 100644 --- a/e2etests/testdata/unicode/chinese/dagre/sketch.exp.svg +++ b/e2etests/testdata/unicode/chinese/dagre/sketch.exp.svg @@ -1,20 +1,20 @@ -

    床前明月光,

    疑是地上霜。

    举头望明月,

    低头思故乡。

    -
    所以,即使夏天很热 +所以,即使夏天很热 diff --git a/e2etests/testdata/unicode/chinese/elk/board.exp.json b/e2etests/testdata/unicode/chinese/elk/board.exp.json index adb895ecf7..db67f18633 100644 --- a/e2etests/testdata/unicode/chinese/elk/board.exp.json +++ b/e2etests/testdata/unicode/chinese/elk/board.exp.json @@ -109,6 +109,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 125, diff --git a/e2etests/testdata/unicode/chinese/elk/sketch.exp.svg b/e2etests/testdata/unicode/chinese/elk/sketch.exp.svg index e54726ed36..7b6b8c1ab6 100644 --- a/e2etests/testdata/unicode/chinese/elk/sketch.exp.svg +++ b/e2etests/testdata/unicode/chinese/elk/sketch.exp.svg @@ -1,20 +1,20 @@ -

    床前明月光,

    疑是地上霜。

    举头望明月,

    低头思故乡。

    -
    所以,即使夏天很热 +所以,即使夏天很热 diff --git a/e2etests/testdata/unicode/emojis/dagre/board.exp.json b/e2etests/testdata/unicode/emojis/dagre/board.exp.json index 7bf49961a2..0590536e91 100644 --- a/e2etests/testdata/unicode/emojis/dagre/board.exp.json +++ b/e2etests/testdata/unicode/emojis/dagre/board.exp.json @@ -151,6 +151,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 681.5, diff --git a/e2etests/testdata/unicode/emojis/dagre/sketch.exp.svg b/e2etests/testdata/unicode/emojis/dagre/sketch.exp.svg index a368860948..ae6445a64a 100644 --- a/e2etests/testdata/unicode/emojis/dagre/sketch.exp.svg +++ b/e2etests/testdata/unicode/emojis/dagre/sketch.exp.svg @@ -1,9 +1,9 @@ -🙈🙈🙈🙈🙈🙈🙈🙈✊✊✊✊✊✊✊✊✊✊✊✊✊✊✊✊✊✊✊✊✊✊✊✊✊✊✊✊✊✊✊✊✊✊✊✊✊✊✊☁️☁️☁️☁️☁️☁️☁️☁️☁️☁️☁️☁️☁️☁️☁️☁️☁️☁️☁️☁️☁️☁️☁️☁️☁️☁️☁️☁️☁️☁️☁️☁️☁️☁️☁️☁️☁️☁️☁️ + .d2-3356403988 .fill-N1{fill:#0A0F25;} + .d2-3356403988 .fill-N2{fill:#676C7E;} + .d2-3356403988 .fill-N3{fill:#9499AB;} + .d2-3356403988 .fill-N4{fill:#CFD2DD;} + .d2-3356403988 .fill-N5{fill:#DEE1EB;} + .d2-3356403988 .fill-N6{fill:#EEF1F8;} + .d2-3356403988 .fill-N7{fill:#FFFFFF;} + .d2-3356403988 .fill-B1{fill:#0D32B2;} + .d2-3356403988 .fill-B2{fill:#0D32B2;} + .d2-3356403988 .fill-B3{fill:#E3E9FD;} + .d2-3356403988 .fill-B4{fill:#E3E9FD;} + .d2-3356403988 .fill-B5{fill:#EDF0FD;} + .d2-3356403988 .fill-B6{fill:#F7F8FE;} + .d2-3356403988 .fill-AA2{fill:#4A6FF3;} + .d2-3356403988 .fill-AA4{fill:#EDF0FD;} + .d2-3356403988 .fill-AA5{fill:#F7F8FE;} + .d2-3356403988 .fill-AB4{fill:#EDF0FD;} + .d2-3356403988 .fill-AB5{fill:#F7F8FE;} + .d2-3356403988 .stroke-N1{stroke:#0A0F25;} + .d2-3356403988 .stroke-N2{stroke:#676C7E;} + .d2-3356403988 .stroke-N3{stroke:#9499AB;} + .d2-3356403988 .stroke-N4{stroke:#CFD2DD;} + .d2-3356403988 .stroke-N5{stroke:#DEE1EB;} + .d2-3356403988 .stroke-N6{stroke:#EEF1F8;} + .d2-3356403988 .stroke-N7{stroke:#FFFFFF;} + .d2-3356403988 .stroke-B1{stroke:#0D32B2;} + .d2-3356403988 .stroke-B2{stroke:#0D32B2;} + .d2-3356403988 .stroke-B3{stroke:#E3E9FD;} + .d2-3356403988 .stroke-B4{stroke:#E3E9FD;} + .d2-3356403988 .stroke-B5{stroke:#EDF0FD;} + .d2-3356403988 .stroke-B6{stroke:#F7F8FE;} + .d2-3356403988 .stroke-AA2{stroke:#4A6FF3;} + .d2-3356403988 .stroke-AA4{stroke:#EDF0FD;} + .d2-3356403988 .stroke-AA5{stroke:#F7F8FE;} + .d2-3356403988 .stroke-AB4{stroke:#EDF0FD;} + .d2-3356403988 .stroke-AB5{stroke:#F7F8FE;} + .d2-3356403988 .background-color-N1{background-color:#0A0F25;} + .d2-3356403988 .background-color-N2{background-color:#676C7E;} + .d2-3356403988 .background-color-N3{background-color:#9499AB;} + .d2-3356403988 .background-color-N4{background-color:#CFD2DD;} + .d2-3356403988 .background-color-N5{background-color:#DEE1EB;} + .d2-3356403988 .background-color-N6{background-color:#EEF1F8;} + .d2-3356403988 .background-color-N7{background-color:#FFFFFF;} + .d2-3356403988 .background-color-B1{background-color:#0D32B2;} + .d2-3356403988 .background-color-B2{background-color:#0D32B2;} + .d2-3356403988 .background-color-B3{background-color:#E3E9FD;} + .d2-3356403988 .background-color-B4{background-color:#E3E9FD;} + .d2-3356403988 .background-color-B5{background-color:#EDF0FD;} + .d2-3356403988 .background-color-B6{background-color:#F7F8FE;} + .d2-3356403988 .background-color-AA2{background-color:#4A6FF3;} + .d2-3356403988 .background-color-AA4{background-color:#EDF0FD;} + .d2-3356403988 .background-color-AA5{background-color:#F7F8FE;} + .d2-3356403988 .background-color-AB4{background-color:#EDF0FD;} + .d2-3356403988 .background-color-AB5{background-color:#F7F8FE;} + .d2-3356403988 .color-N1{color:#0A0F25;} + .d2-3356403988 .color-N2{color:#676C7E;} + .d2-3356403988 .color-N3{color:#9499AB;} + .d2-3356403988 .color-N4{color:#CFD2DD;} + .d2-3356403988 .color-N5{color:#DEE1EB;} + .d2-3356403988 .color-N6{color:#EEF1F8;} + .d2-3356403988 .color-N7{color:#FFFFFF;} + .d2-3356403988 .color-B1{color:#0D32B2;} + .d2-3356403988 .color-B2{color:#0D32B2;} + .d2-3356403988 .color-B3{color:#E3E9FD;} + .d2-3356403988 .color-B4{color:#E3E9FD;} + .d2-3356403988 .color-B5{color:#EDF0FD;} + .d2-3356403988 .color-B6{color:#F7F8FE;} + .d2-3356403988 .color-AA2{color:#4A6FF3;} + .d2-3356403988 .color-AA4{color:#EDF0FD;} + .d2-3356403988 .color-AA5{color:#F7F8FE;} + .d2-3356403988 .color-AB4{color:#EDF0FD;} + .d2-3356403988 .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}]]>🙈🙈🙈🙈🙈🙈🙈🙈✊✊✊✊✊✊✊✊✊✊✊✊✊✊✊✊✊✊✊✊✊✊✊✊✊✊✊✊✊✊✊✊✊✊✊✊✊✊✊☁️☁️☁️☁️☁️☁️☁️☁️☁️☁️☁️☁️☁️☁️☁️☁️☁️☁️☁️☁️☁️☁️☁️☁️☁️☁️☁️☁️☁️☁️☁️☁️☁️☁️☁️☁️☁️☁️☁️ diff --git a/e2etests/testdata/unicode/emojis/elk/board.exp.json b/e2etests/testdata/unicode/emojis/elk/board.exp.json index ad8d87f70e..debe186bc2 100644 --- a/e2etests/testdata/unicode/emojis/elk/board.exp.json +++ b/e2etests/testdata/unicode/emojis/elk/board.exp.json @@ -151,6 +151,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 653.5, diff --git a/e2etests/testdata/unicode/emojis/elk/sketch.exp.svg b/e2etests/testdata/unicode/emojis/elk/sketch.exp.svg index f7ffc26173..c698c2a27d 100644 --- a/e2etests/testdata/unicode/emojis/elk/sketch.exp.svg +++ b/e2etests/testdata/unicode/emojis/elk/sketch.exp.svg @@ -1,9 +1,9 @@ -🙈🙈🙈🙈🙈🙈🙈🙈✊✊✊✊✊✊✊✊✊✊✊✊✊✊✊✊✊✊✊✊✊✊✊✊✊✊✊✊✊✊✊✊✊✊✊✊✊✊✊☁️☁️☁️☁️☁️☁️☁️☁️☁️☁️☁️☁️☁️☁️☁️☁️☁️☁️☁️☁️☁️☁️☁️☁️☁️☁️☁️☁️☁️☁️☁️☁️☁️☁️☁️☁️☁️☁️☁️ + .d2-2808318858 .fill-N1{fill:#0A0F25;} + .d2-2808318858 .fill-N2{fill:#676C7E;} + .d2-2808318858 .fill-N3{fill:#9499AB;} + .d2-2808318858 .fill-N4{fill:#CFD2DD;} + .d2-2808318858 .fill-N5{fill:#DEE1EB;} + .d2-2808318858 .fill-N6{fill:#EEF1F8;} + .d2-2808318858 .fill-N7{fill:#FFFFFF;} + .d2-2808318858 .fill-B1{fill:#0D32B2;} + .d2-2808318858 .fill-B2{fill:#0D32B2;} + .d2-2808318858 .fill-B3{fill:#E3E9FD;} + .d2-2808318858 .fill-B4{fill:#E3E9FD;} + .d2-2808318858 .fill-B5{fill:#EDF0FD;} + .d2-2808318858 .fill-B6{fill:#F7F8FE;} + .d2-2808318858 .fill-AA2{fill:#4A6FF3;} + .d2-2808318858 .fill-AA4{fill:#EDF0FD;} + .d2-2808318858 .fill-AA5{fill:#F7F8FE;} + .d2-2808318858 .fill-AB4{fill:#EDF0FD;} + .d2-2808318858 .fill-AB5{fill:#F7F8FE;} + .d2-2808318858 .stroke-N1{stroke:#0A0F25;} + .d2-2808318858 .stroke-N2{stroke:#676C7E;} + .d2-2808318858 .stroke-N3{stroke:#9499AB;} + .d2-2808318858 .stroke-N4{stroke:#CFD2DD;} + .d2-2808318858 .stroke-N5{stroke:#DEE1EB;} + .d2-2808318858 .stroke-N6{stroke:#EEF1F8;} + .d2-2808318858 .stroke-N7{stroke:#FFFFFF;} + .d2-2808318858 .stroke-B1{stroke:#0D32B2;} + .d2-2808318858 .stroke-B2{stroke:#0D32B2;} + .d2-2808318858 .stroke-B3{stroke:#E3E9FD;} + .d2-2808318858 .stroke-B4{stroke:#E3E9FD;} + .d2-2808318858 .stroke-B5{stroke:#EDF0FD;} + .d2-2808318858 .stroke-B6{stroke:#F7F8FE;} + .d2-2808318858 .stroke-AA2{stroke:#4A6FF3;} + .d2-2808318858 .stroke-AA4{stroke:#EDF0FD;} + .d2-2808318858 .stroke-AA5{stroke:#F7F8FE;} + .d2-2808318858 .stroke-AB4{stroke:#EDF0FD;} + .d2-2808318858 .stroke-AB5{stroke:#F7F8FE;} + .d2-2808318858 .background-color-N1{background-color:#0A0F25;} + .d2-2808318858 .background-color-N2{background-color:#676C7E;} + .d2-2808318858 .background-color-N3{background-color:#9499AB;} + .d2-2808318858 .background-color-N4{background-color:#CFD2DD;} + .d2-2808318858 .background-color-N5{background-color:#DEE1EB;} + .d2-2808318858 .background-color-N6{background-color:#EEF1F8;} + .d2-2808318858 .background-color-N7{background-color:#FFFFFF;} + .d2-2808318858 .background-color-B1{background-color:#0D32B2;} + .d2-2808318858 .background-color-B2{background-color:#0D32B2;} + .d2-2808318858 .background-color-B3{background-color:#E3E9FD;} + .d2-2808318858 .background-color-B4{background-color:#E3E9FD;} + .d2-2808318858 .background-color-B5{background-color:#EDF0FD;} + .d2-2808318858 .background-color-B6{background-color:#F7F8FE;} + .d2-2808318858 .background-color-AA2{background-color:#4A6FF3;} + .d2-2808318858 .background-color-AA4{background-color:#EDF0FD;} + .d2-2808318858 .background-color-AA5{background-color:#F7F8FE;} + .d2-2808318858 .background-color-AB4{background-color:#EDF0FD;} + .d2-2808318858 .background-color-AB5{background-color:#F7F8FE;} + .d2-2808318858 .color-N1{color:#0A0F25;} + .d2-2808318858 .color-N2{color:#676C7E;} + .d2-2808318858 .color-N3{color:#9499AB;} + .d2-2808318858 .color-N4{color:#CFD2DD;} + .d2-2808318858 .color-N5{color:#DEE1EB;} + .d2-2808318858 .color-N6{color:#EEF1F8;} + .d2-2808318858 .color-N7{color:#FFFFFF;} + .d2-2808318858 .color-B1{color:#0D32B2;} + .d2-2808318858 .color-B2{color:#0D32B2;} + .d2-2808318858 .color-B3{color:#E3E9FD;} + .d2-2808318858 .color-B4{color:#E3E9FD;} + .d2-2808318858 .color-B5{color:#EDF0FD;} + .d2-2808318858 .color-B6{color:#F7F8FE;} + .d2-2808318858 .color-AA2{color:#4A6FF3;} + .d2-2808318858 .color-AA4{color:#EDF0FD;} + .d2-2808318858 .color-AA5{color:#F7F8FE;} + .d2-2808318858 .color-AB4{color:#EDF0FD;} + .d2-2808318858 .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}]]>🙈🙈🙈🙈🙈🙈🙈🙈✊✊✊✊✊✊✊✊✊✊✊✊✊✊✊✊✊✊✊✊✊✊✊✊✊✊✊✊✊✊✊✊✊✊✊✊✊✊✊☁️☁️☁️☁️☁️☁️☁️☁️☁️☁️☁️☁️☁️☁️☁️☁️☁️☁️☁️☁️☁️☁️☁️☁️☁️☁️☁️☁️☁️☁️☁️☁️☁️☁️☁️☁️☁️☁️☁️ diff --git a/e2etests/testdata/unicode/japanese-full/dagre/board.exp.json b/e2etests/testdata/unicode/japanese-full/dagre/board.exp.json index e7ba2a978d..d7e5471c41 100644 --- a/e2etests/testdata/unicode/japanese-full/dagre/board.exp.json +++ b/e2etests/testdata/unicode/japanese-full/dagre/board.exp.json @@ -110,6 +110,7 @@ "labelHeight": 21, "labelPosition": "INSIDE_MIDDLE_CENTER", "labelPercentage": 0, + "link": "", "route": [ { "x": 691, diff --git a/e2etests/testdata/unicode/japanese-full/dagre/sketch.exp.svg b/e2etests/testdata/unicode/japanese-full/dagre/sketch.exp.svg index 065cb92ed1..3c513a9ddd 100644 --- a/e2etests/testdata/unicode/japanese-full/dagre/sketch.exp.svg +++ b/e2etests/testdata/unicode/japanese-full/dagre/sketch.exp.svg @@ -1,16 +1,16 @@ -ある日、トマトが道を歩いていたら、道路の向こうからキュウリがやって来ました。トマトは驚いて尋ねました。「キュウリさん、どうしてあなたはここにいるのですか?」 キュウリは答えました。「あなたと同じ理由でここにいます。サラダになるために。」「バナナは皮を剥いて食べるものです。」 「バカは死ななきゃ治らない。」 + .d2-256778433 .fill-N1{fill:#0A0F25;} + .d2-256778433 .fill-N2{fill:#676C7E;} + .d2-256778433 .fill-N3{fill:#9499AB;} + .d2-256778433 .fill-N4{fill:#CFD2DD;} + .d2-256778433 .fill-N5{fill:#DEE1EB;} + .d2-256778433 .fill-N6{fill:#EEF1F8;} + .d2-256778433 .fill-N7{fill:#FFFFFF;} + .d2-256778433 .fill-B1{fill:#0D32B2;} + .d2-256778433 .fill-B2{fill:#0D32B2;} + .d2-256778433 .fill-B3{fill:#E3E9FD;} + .d2-256778433 .fill-B4{fill:#E3E9FD;} + .d2-256778433 .fill-B5{fill:#EDF0FD;} + .d2-256778433 .fill-B6{fill:#F7F8FE;} + .d2-256778433 .fill-AA2{fill:#4A6FF3;} + .d2-256778433 .fill-AA4{fill:#EDF0FD;} + .d2-256778433 .fill-AA5{fill:#F7F8FE;} + .d2-256778433 .fill-AB4{fill:#EDF0FD;} + .d2-256778433 .fill-AB5{fill:#F7F8FE;} + .d2-256778433 .stroke-N1{stroke:#0A0F25;} + .d2-256778433 .stroke-N2{stroke:#676C7E;} + .d2-256778433 .stroke-N3{stroke:#9499AB;} + .d2-256778433 .stroke-N4{stroke:#CFD2DD;} + .d2-256778433 .stroke-N5{stroke:#DEE1EB;} + .d2-256778433 .stroke-N6{stroke:#EEF1F8;} + .d2-256778433 .stroke-N7{stroke:#FFFFFF;} + .d2-256778433 .stroke-B1{stroke:#0D32B2;} + .d2-256778433 .stroke-B2{stroke:#0D32B2;} + .d2-256778433 .stroke-B3{stroke:#E3E9FD;} + .d2-256778433 .stroke-B4{stroke:#E3E9FD;} + .d2-256778433 .stroke-B5{stroke:#EDF0FD;} + .d2-256778433 .stroke-B6{stroke:#F7F8FE;} + .d2-256778433 .stroke-AA2{stroke:#4A6FF3;} + .d2-256778433 .stroke-AA4{stroke:#EDF0FD;} + .d2-256778433 .stroke-AA5{stroke:#F7F8FE;} + .d2-256778433 .stroke-AB4{stroke:#EDF0FD;} + .d2-256778433 .stroke-AB5{stroke:#F7F8FE;} + .d2-256778433 .background-color-N1{background-color:#0A0F25;} + .d2-256778433 .background-color-N2{background-color:#676C7E;} + .d2-256778433 .background-color-N3{background-color:#9499AB;} + .d2-256778433 .background-color-N4{background-color:#CFD2DD;} + .d2-256778433 .background-color-N5{background-color:#DEE1EB;} + .d2-256778433 .background-color-N6{background-color:#EEF1F8;} + .d2-256778433 .background-color-N7{background-color:#FFFFFF;} + .d2-256778433 .background-color-B1{background-color:#0D32B2;} + .d2-256778433 .background-color-B2{background-color:#0D32B2;} + .d2-256778433 .background-color-B3{background-color:#E3E9FD;} + .d2-256778433 .background-color-B4{background-color:#E3E9FD;} + .d2-256778433 .background-color-B5{background-color:#EDF0FD;} + .d2-256778433 .background-color-B6{background-color:#F7F8FE;} + .d2-256778433 .background-color-AA2{background-color:#4A6FF3;} + .d2-256778433 .background-color-AA4{background-color:#EDF0FD;} + .d2-256778433 .background-color-AA5{background-color:#F7F8FE;} + .d2-256778433 .background-color-AB4{background-color:#EDF0FD;} + .d2-256778433 .background-color-AB5{background-color:#F7F8FE;} + .d2-256778433 .color-N1{color:#0A0F25;} + .d2-256778433 .color-N2{color:#676C7E;} + .d2-256778433 .color-N3{color:#9499AB;} + .d2-256778433 .color-N4{color:#CFD2DD;} + .d2-256778433 .color-N5{color:#DEE1EB;} + .d2-256778433 .color-N6{color:#EEF1F8;} + .d2-256778433 .color-N7{color:#FFFFFF;} + .d2-256778433 .color-B1{color:#0D32B2;} + .d2-256778433 .color-B2{color:#0D32B2;} + .d2-256778433 .color-B3{color:#E3E9FD;} + .d2-256778433 .color-B4{color:#E3E9FD;} + .d2-256778433 .color-B5{color:#EDF0FD;} + .d2-256778433 .color-B6{color:#F7F8FE;} + .d2-256778433 .color-AA2{color:#4A6FF3;} + .d2-256778433 .color-AA4{color:#EDF0FD;} + .d2-256778433 .color-AA5{color:#F7F8FE;} + .d2-256778433 .color-AB4{color:#EDF0FD;} + .d2-256778433 .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}]]>ある日、トマトが道を歩いていたら、道路の向こうからキュウリがやって来ました。トマトは驚いて尋ねました。「キュウリさん、どうしてあなたはここにいるのですか?」 キュウリは答えました。「あなたと同じ理由でここにいます。サラダになるために。」「バナナは皮を剥いて食べるものです。」 「バカは死ななきゃ治らない。」 diff --git a/e2etests/testdata/unicode/japanese-full/elk/board.exp.json b/e2etests/testdata/unicode/japanese-full/elk/board.exp.json index 73f51d3c62..a858927bf6 100644 --- a/e2etests/testdata/unicode/japanese-full/elk/board.exp.json +++ b/e2etests/testdata/unicode/japanese-full/elk/board.exp.json @@ -110,6 +110,7 @@ "labelHeight": 21, "labelPosition": "INSIDE_MIDDLE_CENTER", "labelPercentage": 0, + "link": "", "route": [ { "x": 703, diff --git a/e2etests/testdata/unicode/japanese-full/elk/sketch.exp.svg b/e2etests/testdata/unicode/japanese-full/elk/sketch.exp.svg index 73af74f199..05ddb5604a 100644 --- a/e2etests/testdata/unicode/japanese-full/elk/sketch.exp.svg +++ b/e2etests/testdata/unicode/japanese-full/elk/sketch.exp.svg @@ -1,16 +1,16 @@ -ある日、トマトが道を歩いていたら、道路の向こうからキュウリがやって来ました。トマトは驚いて尋ねました。「キュウリさん、どうしてあなたはここにいるのですか?」 キュウリは答えました。「あなたと同じ理由でここにいます。サラダになるために。」「バナナは皮を剥いて食べるものです。」 「バカは死ななきゃ治らない。」 + .d2-3932455137 .fill-N1{fill:#0A0F25;} + .d2-3932455137 .fill-N2{fill:#676C7E;} + .d2-3932455137 .fill-N3{fill:#9499AB;} + .d2-3932455137 .fill-N4{fill:#CFD2DD;} + .d2-3932455137 .fill-N5{fill:#DEE1EB;} + .d2-3932455137 .fill-N6{fill:#EEF1F8;} + .d2-3932455137 .fill-N7{fill:#FFFFFF;} + .d2-3932455137 .fill-B1{fill:#0D32B2;} + .d2-3932455137 .fill-B2{fill:#0D32B2;} + .d2-3932455137 .fill-B3{fill:#E3E9FD;} + .d2-3932455137 .fill-B4{fill:#E3E9FD;} + .d2-3932455137 .fill-B5{fill:#EDF0FD;} + .d2-3932455137 .fill-B6{fill:#F7F8FE;} + .d2-3932455137 .fill-AA2{fill:#4A6FF3;} + .d2-3932455137 .fill-AA4{fill:#EDF0FD;} + .d2-3932455137 .fill-AA5{fill:#F7F8FE;} + .d2-3932455137 .fill-AB4{fill:#EDF0FD;} + .d2-3932455137 .fill-AB5{fill:#F7F8FE;} + .d2-3932455137 .stroke-N1{stroke:#0A0F25;} + .d2-3932455137 .stroke-N2{stroke:#676C7E;} + .d2-3932455137 .stroke-N3{stroke:#9499AB;} + .d2-3932455137 .stroke-N4{stroke:#CFD2DD;} + .d2-3932455137 .stroke-N5{stroke:#DEE1EB;} + .d2-3932455137 .stroke-N6{stroke:#EEF1F8;} + .d2-3932455137 .stroke-N7{stroke:#FFFFFF;} + .d2-3932455137 .stroke-B1{stroke:#0D32B2;} + .d2-3932455137 .stroke-B2{stroke:#0D32B2;} + .d2-3932455137 .stroke-B3{stroke:#E3E9FD;} + .d2-3932455137 .stroke-B4{stroke:#E3E9FD;} + .d2-3932455137 .stroke-B5{stroke:#EDF0FD;} + .d2-3932455137 .stroke-B6{stroke:#F7F8FE;} + .d2-3932455137 .stroke-AA2{stroke:#4A6FF3;} + .d2-3932455137 .stroke-AA4{stroke:#EDF0FD;} + .d2-3932455137 .stroke-AA5{stroke:#F7F8FE;} + .d2-3932455137 .stroke-AB4{stroke:#EDF0FD;} + .d2-3932455137 .stroke-AB5{stroke:#F7F8FE;} + .d2-3932455137 .background-color-N1{background-color:#0A0F25;} + .d2-3932455137 .background-color-N2{background-color:#676C7E;} + .d2-3932455137 .background-color-N3{background-color:#9499AB;} + .d2-3932455137 .background-color-N4{background-color:#CFD2DD;} + .d2-3932455137 .background-color-N5{background-color:#DEE1EB;} + .d2-3932455137 .background-color-N6{background-color:#EEF1F8;} + .d2-3932455137 .background-color-N7{background-color:#FFFFFF;} + .d2-3932455137 .background-color-B1{background-color:#0D32B2;} + .d2-3932455137 .background-color-B2{background-color:#0D32B2;} + .d2-3932455137 .background-color-B3{background-color:#E3E9FD;} + .d2-3932455137 .background-color-B4{background-color:#E3E9FD;} + .d2-3932455137 .background-color-B5{background-color:#EDF0FD;} + .d2-3932455137 .background-color-B6{background-color:#F7F8FE;} + .d2-3932455137 .background-color-AA2{background-color:#4A6FF3;} + .d2-3932455137 .background-color-AA4{background-color:#EDF0FD;} + .d2-3932455137 .background-color-AA5{background-color:#F7F8FE;} + .d2-3932455137 .background-color-AB4{background-color:#EDF0FD;} + .d2-3932455137 .background-color-AB5{background-color:#F7F8FE;} + .d2-3932455137 .color-N1{color:#0A0F25;} + .d2-3932455137 .color-N2{color:#676C7E;} + .d2-3932455137 .color-N3{color:#9499AB;} + .d2-3932455137 .color-N4{color:#CFD2DD;} + .d2-3932455137 .color-N5{color:#DEE1EB;} + .d2-3932455137 .color-N6{color:#EEF1F8;} + .d2-3932455137 .color-N7{color:#FFFFFF;} + .d2-3932455137 .color-B1{color:#0D32B2;} + .d2-3932455137 .color-B2{color:#0D32B2;} + .d2-3932455137 .color-B3{color:#E3E9FD;} + .d2-3932455137 .color-B4{color:#E3E9FD;} + .d2-3932455137 .color-B5{color:#EDF0FD;} + .d2-3932455137 .color-B6{color:#F7F8FE;} + .d2-3932455137 .color-AA2{color:#4A6FF3;} + .d2-3932455137 .color-AA4{color:#EDF0FD;} + .d2-3932455137 .color-AA5{color:#F7F8FE;} + .d2-3932455137 .color-AB4{color:#EDF0FD;} + .d2-3932455137 .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}]]>ある日、トマトが道を歩いていたら、道路の向こうからキュウリがやって来ました。トマトは驚いて尋ねました。「キュウリさん、どうしてあなたはここにいるのですか?」 キュウリは答えました。「あなたと同じ理由でここにいます。サラダになるために。」「バナナは皮を剥いて食べるものです。」 「バカは死ななきゃ治らない。」 diff --git a/e2etests/testdata/unicode/japanese-mixed/dagre/board.exp.json b/e2etests/testdata/unicode/japanese-mixed/dagre/board.exp.json index 03c5f64b61..0757a18c4b 100644 --- a/e2etests/testdata/unicode/japanese-mixed/dagre/board.exp.json +++ b/e2etests/testdata/unicode/japanese-mixed/dagre/board.exp.json @@ -274,6 +274,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 1979.5, @@ -321,6 +322,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 1979.5, @@ -368,6 +370,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 1979.5, @@ -415,6 +418,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 1979.5, @@ -462,6 +466,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 1979.5, diff --git a/e2etests/testdata/unicode/japanese-mixed/dagre/sketch.exp.svg b/e2etests/testdata/unicode/japanese-mixed/dagre/sketch.exp.svg index 31086cc45d..e8821e7666 100644 --- a/e2etests/testdata/unicode/japanese-mixed/dagre/sketch.exp.svg +++ b/e2etests/testdata/unicode/japanese-mixed/dagre/sketch.exp.svg @@ -1,9 +1,9 @@ -トマトが赤くなったのはなぜですか?Because it saw the salad dressing!👩‍👩‍👧‍👶👩‍👩‍👧‍👶トマトが赤くなったのはなぜですか?Because it saw the salad dressing!👩‍👩‍👧‍👶👩‍👩‍👧‍👶今日はTokyoでsushiを食べました先日、Shibuyaで友達とshoppingを楽😊しんだ後、ramen屋でdelicious😊なラーメンを食べた。English English English先日先日先日 + .d2-1608792862 .fill-N1{fill:#0A0F25;} + .d2-1608792862 .fill-N2{fill:#676C7E;} + .d2-1608792862 .fill-N3{fill:#9499AB;} + .d2-1608792862 .fill-N4{fill:#CFD2DD;} + .d2-1608792862 .fill-N5{fill:#DEE1EB;} + .d2-1608792862 .fill-N6{fill:#EEF1F8;} + .d2-1608792862 .fill-N7{fill:#FFFFFF;} + .d2-1608792862 .fill-B1{fill:#0D32B2;} + .d2-1608792862 .fill-B2{fill:#0D32B2;} + .d2-1608792862 .fill-B3{fill:#E3E9FD;} + .d2-1608792862 .fill-B4{fill:#E3E9FD;} + .d2-1608792862 .fill-B5{fill:#EDF0FD;} + .d2-1608792862 .fill-B6{fill:#F7F8FE;} + .d2-1608792862 .fill-AA2{fill:#4A6FF3;} + .d2-1608792862 .fill-AA4{fill:#EDF0FD;} + .d2-1608792862 .fill-AA5{fill:#F7F8FE;} + .d2-1608792862 .fill-AB4{fill:#EDF0FD;} + .d2-1608792862 .fill-AB5{fill:#F7F8FE;} + .d2-1608792862 .stroke-N1{stroke:#0A0F25;} + .d2-1608792862 .stroke-N2{stroke:#676C7E;} + .d2-1608792862 .stroke-N3{stroke:#9499AB;} + .d2-1608792862 .stroke-N4{stroke:#CFD2DD;} + .d2-1608792862 .stroke-N5{stroke:#DEE1EB;} + .d2-1608792862 .stroke-N6{stroke:#EEF1F8;} + .d2-1608792862 .stroke-N7{stroke:#FFFFFF;} + .d2-1608792862 .stroke-B1{stroke:#0D32B2;} + .d2-1608792862 .stroke-B2{stroke:#0D32B2;} + .d2-1608792862 .stroke-B3{stroke:#E3E9FD;} + .d2-1608792862 .stroke-B4{stroke:#E3E9FD;} + .d2-1608792862 .stroke-B5{stroke:#EDF0FD;} + .d2-1608792862 .stroke-B6{stroke:#F7F8FE;} + .d2-1608792862 .stroke-AA2{stroke:#4A6FF3;} + .d2-1608792862 .stroke-AA4{stroke:#EDF0FD;} + .d2-1608792862 .stroke-AA5{stroke:#F7F8FE;} + .d2-1608792862 .stroke-AB4{stroke:#EDF0FD;} + .d2-1608792862 .stroke-AB5{stroke:#F7F8FE;} + .d2-1608792862 .background-color-N1{background-color:#0A0F25;} + .d2-1608792862 .background-color-N2{background-color:#676C7E;} + .d2-1608792862 .background-color-N3{background-color:#9499AB;} + .d2-1608792862 .background-color-N4{background-color:#CFD2DD;} + .d2-1608792862 .background-color-N5{background-color:#DEE1EB;} + .d2-1608792862 .background-color-N6{background-color:#EEF1F8;} + .d2-1608792862 .background-color-N7{background-color:#FFFFFF;} + .d2-1608792862 .background-color-B1{background-color:#0D32B2;} + .d2-1608792862 .background-color-B2{background-color:#0D32B2;} + .d2-1608792862 .background-color-B3{background-color:#E3E9FD;} + .d2-1608792862 .background-color-B4{background-color:#E3E9FD;} + .d2-1608792862 .background-color-B5{background-color:#EDF0FD;} + .d2-1608792862 .background-color-B6{background-color:#F7F8FE;} + .d2-1608792862 .background-color-AA2{background-color:#4A6FF3;} + .d2-1608792862 .background-color-AA4{background-color:#EDF0FD;} + .d2-1608792862 .background-color-AA5{background-color:#F7F8FE;} + .d2-1608792862 .background-color-AB4{background-color:#EDF0FD;} + .d2-1608792862 .background-color-AB5{background-color:#F7F8FE;} + .d2-1608792862 .color-N1{color:#0A0F25;} + .d2-1608792862 .color-N2{color:#676C7E;} + .d2-1608792862 .color-N3{color:#9499AB;} + .d2-1608792862 .color-N4{color:#CFD2DD;} + .d2-1608792862 .color-N5{color:#DEE1EB;} + .d2-1608792862 .color-N6{color:#EEF1F8;} + .d2-1608792862 .color-N7{color:#FFFFFF;} + .d2-1608792862 .color-B1{color:#0D32B2;} + .d2-1608792862 .color-B2{color:#0D32B2;} + .d2-1608792862 .color-B3{color:#E3E9FD;} + .d2-1608792862 .color-B4{color:#E3E9FD;} + .d2-1608792862 .color-B5{color:#EDF0FD;} + .d2-1608792862 .color-B6{color:#F7F8FE;} + .d2-1608792862 .color-AA2{color:#4A6FF3;} + .d2-1608792862 .color-AA4{color:#EDF0FD;} + .d2-1608792862 .color-AA5{color:#F7F8FE;} + .d2-1608792862 .color-AB4{color:#EDF0FD;} + .d2-1608792862 .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}]]>トマトが赤くなったのはなぜですか?Because it saw the salad dressing!👩‍👩‍👧‍👶👩‍👩‍👧‍👶トマトが赤くなったのはなぜですか?Because it saw the salad dressing!👩‍👩‍👧‍👶👩‍👩‍👧‍👶今日はTokyoでsushiを食べました先日、Shibuyaで友達とshoppingを楽😊しんだ後、ramen屋でdelicious😊なラーメンを食べた。English English English先日先日先日 diff --git a/e2etests/testdata/unicode/japanese-mixed/elk/board.exp.json b/e2etests/testdata/unicode/japanese-mixed/elk/board.exp.json index b402f364e1..9fba2e4c04 100644 --- a/e2etests/testdata/unicode/japanese-mixed/elk/board.exp.json +++ b/e2etests/testdata/unicode/japanese-mixed/elk/board.exp.json @@ -274,6 +274,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 1991.5, @@ -312,6 +313,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 1991.5, @@ -350,6 +352,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 1991.5, @@ -388,6 +391,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 1991.5, @@ -426,6 +430,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 1991.5, diff --git a/e2etests/testdata/unicode/japanese-mixed/elk/sketch.exp.svg b/e2etests/testdata/unicode/japanese-mixed/elk/sketch.exp.svg index 337e02fb9a..f8d9e5a444 100644 --- a/e2etests/testdata/unicode/japanese-mixed/elk/sketch.exp.svg +++ b/e2etests/testdata/unicode/japanese-mixed/elk/sketch.exp.svg @@ -1,9 +1,9 @@ -トマトが赤くなったのはなぜですか?Because it saw the salad dressing!👩‍👩‍👧‍👶👩‍👩‍👧‍👶トマトが赤くなったのはなぜですか?Because it saw the salad dressing!👩‍👩‍👧‍👶👩‍👩‍👧‍👶今日はTokyoでsushiを食べました先日、Shibuyaで友達とshoppingを楽😊しんだ後、ramen屋でdelicious😊なラーメンを食べた。English English English先日先日先日 + .d2-1959121102 .fill-N1{fill:#0A0F25;} + .d2-1959121102 .fill-N2{fill:#676C7E;} + .d2-1959121102 .fill-N3{fill:#9499AB;} + .d2-1959121102 .fill-N4{fill:#CFD2DD;} + .d2-1959121102 .fill-N5{fill:#DEE1EB;} + .d2-1959121102 .fill-N6{fill:#EEF1F8;} + .d2-1959121102 .fill-N7{fill:#FFFFFF;} + .d2-1959121102 .fill-B1{fill:#0D32B2;} + .d2-1959121102 .fill-B2{fill:#0D32B2;} + .d2-1959121102 .fill-B3{fill:#E3E9FD;} + .d2-1959121102 .fill-B4{fill:#E3E9FD;} + .d2-1959121102 .fill-B5{fill:#EDF0FD;} + .d2-1959121102 .fill-B6{fill:#F7F8FE;} + .d2-1959121102 .fill-AA2{fill:#4A6FF3;} + .d2-1959121102 .fill-AA4{fill:#EDF0FD;} + .d2-1959121102 .fill-AA5{fill:#F7F8FE;} + .d2-1959121102 .fill-AB4{fill:#EDF0FD;} + .d2-1959121102 .fill-AB5{fill:#F7F8FE;} + .d2-1959121102 .stroke-N1{stroke:#0A0F25;} + .d2-1959121102 .stroke-N2{stroke:#676C7E;} + .d2-1959121102 .stroke-N3{stroke:#9499AB;} + .d2-1959121102 .stroke-N4{stroke:#CFD2DD;} + .d2-1959121102 .stroke-N5{stroke:#DEE1EB;} + .d2-1959121102 .stroke-N6{stroke:#EEF1F8;} + .d2-1959121102 .stroke-N7{stroke:#FFFFFF;} + .d2-1959121102 .stroke-B1{stroke:#0D32B2;} + .d2-1959121102 .stroke-B2{stroke:#0D32B2;} + .d2-1959121102 .stroke-B3{stroke:#E3E9FD;} + .d2-1959121102 .stroke-B4{stroke:#E3E9FD;} + .d2-1959121102 .stroke-B5{stroke:#EDF0FD;} + .d2-1959121102 .stroke-B6{stroke:#F7F8FE;} + .d2-1959121102 .stroke-AA2{stroke:#4A6FF3;} + .d2-1959121102 .stroke-AA4{stroke:#EDF0FD;} + .d2-1959121102 .stroke-AA5{stroke:#F7F8FE;} + .d2-1959121102 .stroke-AB4{stroke:#EDF0FD;} + .d2-1959121102 .stroke-AB5{stroke:#F7F8FE;} + .d2-1959121102 .background-color-N1{background-color:#0A0F25;} + .d2-1959121102 .background-color-N2{background-color:#676C7E;} + .d2-1959121102 .background-color-N3{background-color:#9499AB;} + .d2-1959121102 .background-color-N4{background-color:#CFD2DD;} + .d2-1959121102 .background-color-N5{background-color:#DEE1EB;} + .d2-1959121102 .background-color-N6{background-color:#EEF1F8;} + .d2-1959121102 .background-color-N7{background-color:#FFFFFF;} + .d2-1959121102 .background-color-B1{background-color:#0D32B2;} + .d2-1959121102 .background-color-B2{background-color:#0D32B2;} + .d2-1959121102 .background-color-B3{background-color:#E3E9FD;} + .d2-1959121102 .background-color-B4{background-color:#E3E9FD;} + .d2-1959121102 .background-color-B5{background-color:#EDF0FD;} + .d2-1959121102 .background-color-B6{background-color:#F7F8FE;} + .d2-1959121102 .background-color-AA2{background-color:#4A6FF3;} + .d2-1959121102 .background-color-AA4{background-color:#EDF0FD;} + .d2-1959121102 .background-color-AA5{background-color:#F7F8FE;} + .d2-1959121102 .background-color-AB4{background-color:#EDF0FD;} + .d2-1959121102 .background-color-AB5{background-color:#F7F8FE;} + .d2-1959121102 .color-N1{color:#0A0F25;} + .d2-1959121102 .color-N2{color:#676C7E;} + .d2-1959121102 .color-N3{color:#9499AB;} + .d2-1959121102 .color-N4{color:#CFD2DD;} + .d2-1959121102 .color-N5{color:#DEE1EB;} + .d2-1959121102 .color-N6{color:#EEF1F8;} + .d2-1959121102 .color-N7{color:#FFFFFF;} + .d2-1959121102 .color-B1{color:#0D32B2;} + .d2-1959121102 .color-B2{color:#0D32B2;} + .d2-1959121102 .color-B3{color:#E3E9FD;} + .d2-1959121102 .color-B4{color:#E3E9FD;} + .d2-1959121102 .color-B5{color:#EDF0FD;} + .d2-1959121102 .color-B6{color:#F7F8FE;} + .d2-1959121102 .color-AA2{color:#4A6FF3;} + .d2-1959121102 .color-AA4{color:#EDF0FD;} + .d2-1959121102 .color-AA5{color:#F7F8FE;} + .d2-1959121102 .color-AB4{color:#EDF0FD;} + .d2-1959121102 .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}]]>トマトが赤くなったのはなぜですか?Because it saw the salad dressing!👩‍👩‍👧‍👶👩‍👩‍👧‍👶トマトが赤くなったのはなぜですか?Because it saw the salad dressing!👩‍👩‍👧‍👶👩‍👩‍👧‍👶今日はTokyoでsushiを食べました先日、Shibuyaで友達とshoppingを楽😊しんだ後、ramen屋でdelicious😊なラーメンを食べた。English English English先日先日先日 diff --git a/e2etests/testdata/unicode/mixed-language-2/dagre/board.exp.json b/e2etests/testdata/unicode/mixed-language-2/dagre/board.exp.json index 34ac578d64..24e5fa06ce 100644 --- a/e2etests/testdata/unicode/mixed-language-2/dagre/board.exp.json +++ b/e2etests/testdata/unicode/mixed-language-2/dagre/board.exp.json @@ -930,6 +930,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 150.5, @@ -977,6 +978,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 150.5, @@ -1024,6 +1026,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 150.5, @@ -1071,6 +1074,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 454.5, @@ -1118,6 +1122,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 454.5, @@ -1165,6 +1170,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 454.5, @@ -1212,6 +1218,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 769.5, @@ -1259,6 +1266,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 769.5, @@ -1306,6 +1314,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 769.5, @@ -1353,6 +1362,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 1093.5, @@ -1400,6 +1410,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 1093.5, @@ -1447,6 +1458,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 1093.5, diff --git a/e2etests/testdata/unicode/mixed-language-2/dagre/sketch.exp.svg b/e2etests/testdata/unicode/mixed-language-2/dagre/sketch.exp.svg index 615ebdf738..6df9210811 100644 --- a/e2etests/testdata/unicode/mixed-language-2/dagre/sketch.exp.svg +++ b/e2etests/testdata/unicode/mixed-language-2/dagre/sketch.exp.svg @@ -1,9 +1,9 @@ -我 (wǒ) - Mandarin Chineseສະບາຍດີ (sabaai dii) - Laoជំរាបសួរ (jomreab suor) - Khmerสวัสดี (sà-wàt-dii) - Thaiສະບາຍດີ (sabaidee) - Laoဟယ်လို (helaou) - Burmesemari (まり) - Ainucào (草) - Zhuangкүнтізбе (kúntízbe) - Kazakhբարև (barev) - Armenianмонгол (mongol) - Mongolianmila (میلا) - Uyghurનમસ્તે (namaste) - Gujarati漢字 (kanji) - Japanese위 (wi) - Korean吾哥 (ngǔgāi) - Cantoneseမင်္ဂလာပါ (mingalaba) - Burmeseсайн уу (sain uu) - Mongolianਸਤਿ ਸ੍ਰੀ ਅਕਾਲ (sat sri akal) - Punjabi你吃了吗 (ní chī le ma) - Mandarin Chinese饭 (fan) - Zhuangمەن سىزنى ياخشى ئۈمىد ق + .d2-3581917306 .fill-N1{fill:#0A0F25;} + .d2-3581917306 .fill-N2{fill:#676C7E;} + .d2-3581917306 .fill-N3{fill:#9499AB;} + .d2-3581917306 .fill-N4{fill:#CFD2DD;} + .d2-3581917306 .fill-N5{fill:#DEE1EB;} + .d2-3581917306 .fill-N6{fill:#EEF1F8;} + .d2-3581917306 .fill-N7{fill:#FFFFFF;} + .d2-3581917306 .fill-B1{fill:#0D32B2;} + .d2-3581917306 .fill-B2{fill:#0D32B2;} + .d2-3581917306 .fill-B3{fill:#E3E9FD;} + .d2-3581917306 .fill-B4{fill:#E3E9FD;} + .d2-3581917306 .fill-B5{fill:#EDF0FD;} + .d2-3581917306 .fill-B6{fill:#F7F8FE;} + .d2-3581917306 .fill-AA2{fill:#4A6FF3;} + .d2-3581917306 .fill-AA4{fill:#EDF0FD;} + .d2-3581917306 .fill-AA5{fill:#F7F8FE;} + .d2-3581917306 .fill-AB4{fill:#EDF0FD;} + .d2-3581917306 .fill-AB5{fill:#F7F8FE;} + .d2-3581917306 .stroke-N1{stroke:#0A0F25;} + .d2-3581917306 .stroke-N2{stroke:#676C7E;} + .d2-3581917306 .stroke-N3{stroke:#9499AB;} + .d2-3581917306 .stroke-N4{stroke:#CFD2DD;} + .d2-3581917306 .stroke-N5{stroke:#DEE1EB;} + .d2-3581917306 .stroke-N6{stroke:#EEF1F8;} + .d2-3581917306 .stroke-N7{stroke:#FFFFFF;} + .d2-3581917306 .stroke-B1{stroke:#0D32B2;} + .d2-3581917306 .stroke-B2{stroke:#0D32B2;} + .d2-3581917306 .stroke-B3{stroke:#E3E9FD;} + .d2-3581917306 .stroke-B4{stroke:#E3E9FD;} + .d2-3581917306 .stroke-B5{stroke:#EDF0FD;} + .d2-3581917306 .stroke-B6{stroke:#F7F8FE;} + .d2-3581917306 .stroke-AA2{stroke:#4A6FF3;} + .d2-3581917306 .stroke-AA4{stroke:#EDF0FD;} + .d2-3581917306 .stroke-AA5{stroke:#F7F8FE;} + .d2-3581917306 .stroke-AB4{stroke:#EDF0FD;} + .d2-3581917306 .stroke-AB5{stroke:#F7F8FE;} + .d2-3581917306 .background-color-N1{background-color:#0A0F25;} + .d2-3581917306 .background-color-N2{background-color:#676C7E;} + .d2-3581917306 .background-color-N3{background-color:#9499AB;} + .d2-3581917306 .background-color-N4{background-color:#CFD2DD;} + .d2-3581917306 .background-color-N5{background-color:#DEE1EB;} + .d2-3581917306 .background-color-N6{background-color:#EEF1F8;} + .d2-3581917306 .background-color-N7{background-color:#FFFFFF;} + .d2-3581917306 .background-color-B1{background-color:#0D32B2;} + .d2-3581917306 .background-color-B2{background-color:#0D32B2;} + .d2-3581917306 .background-color-B3{background-color:#E3E9FD;} + .d2-3581917306 .background-color-B4{background-color:#E3E9FD;} + .d2-3581917306 .background-color-B5{background-color:#EDF0FD;} + .d2-3581917306 .background-color-B6{background-color:#F7F8FE;} + .d2-3581917306 .background-color-AA2{background-color:#4A6FF3;} + .d2-3581917306 .background-color-AA4{background-color:#EDF0FD;} + .d2-3581917306 .background-color-AA5{background-color:#F7F8FE;} + .d2-3581917306 .background-color-AB4{background-color:#EDF0FD;} + .d2-3581917306 .background-color-AB5{background-color:#F7F8FE;} + .d2-3581917306 .color-N1{color:#0A0F25;} + .d2-3581917306 .color-N2{color:#676C7E;} + .d2-3581917306 .color-N3{color:#9499AB;} + .d2-3581917306 .color-N4{color:#CFD2DD;} + .d2-3581917306 .color-N5{color:#DEE1EB;} + .d2-3581917306 .color-N6{color:#EEF1F8;} + .d2-3581917306 .color-N7{color:#FFFFFF;} + .d2-3581917306 .color-B1{color:#0D32B2;} + .d2-3581917306 .color-B2{color:#0D32B2;} + .d2-3581917306 .color-B3{color:#E3E9FD;} + .d2-3581917306 .color-B4{color:#E3E9FD;} + .d2-3581917306 .color-B5{color:#EDF0FD;} + .d2-3581917306 .color-B6{color:#F7F8FE;} + .d2-3581917306 .color-AA2{color:#4A6FF3;} + .d2-3581917306 .color-AA4{color:#EDF0FD;} + .d2-3581917306 .color-AA5{color:#F7F8FE;} + .d2-3581917306 .color-AB4{color:#EDF0FD;} + .d2-3581917306 .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}]]>我 (wǒ) - Mandarin Chineseສະບາຍດີ (sabaai dii) - Laoជំរាបសួរ (jomreab suor) - Khmerสวัสดี (sà-wàt-dii) - Thaiສະບາຍດີ (sabaidee) - Laoဟယ်လို (helaou) - Burmesemari (まり) - Ainucào (草) - Zhuangкүнтізбе (kúntízbe) - Kazakhբարև (barev) - Armenianмонгол (mongol) - Mongolianmila (میلا) - Uyghurનમસ્તે (namaste) - Gujarati漢字 (kanji) - Japanese위 (wi) - Korean吾哥 (ngǔgāi) - Cantoneseမင်္ဂလာပါ (mingalaba) - Burmeseсайн уу (sain uu) - Mongolianਸਤਿ ਸ੍ਰੀ ਅਕਾਲ (sat sri akal) - Punjabi你吃了吗 (ní chī le ma) - Mandarin Chinese饭 (fan) - Zhuangمەن سىزنى ياخشى ئۈمىد ق diff --git a/e2etests/testdata/unicode/mixed-language-2/elk/board.exp.json b/e2etests/testdata/unicode/mixed-language-2/elk/board.exp.json index d2273cf01e..dcc1f7dec3 100644 --- a/e2etests/testdata/unicode/mixed-language-2/elk/board.exp.json +++ b/e2etests/testdata/unicode/mixed-language-2/elk/board.exp.json @@ -930,6 +930,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 162.5, @@ -968,6 +969,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 162.5, @@ -1006,6 +1008,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 162.5, @@ -1044,6 +1047,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 426.5, @@ -1082,6 +1086,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 426.5, @@ -1120,6 +1125,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 426.5, @@ -1158,6 +1164,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 701.5, @@ -1196,6 +1203,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 701.5, @@ -1234,6 +1242,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 701.5, @@ -1272,6 +1281,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 985.5, @@ -1310,6 +1320,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 985.5, @@ -1348,6 +1359,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 985.5, diff --git a/e2etests/testdata/unicode/mixed-language-2/elk/sketch.exp.svg b/e2etests/testdata/unicode/mixed-language-2/elk/sketch.exp.svg index b10d5687bc..e7f5c95424 100644 --- a/e2etests/testdata/unicode/mixed-language-2/elk/sketch.exp.svg +++ b/e2etests/testdata/unicode/mixed-language-2/elk/sketch.exp.svg @@ -1,9 +1,9 @@ -我 (wǒ) - Mandarin Chineseສະບາຍດີ (sabaai dii) - Laoជំរាបសួរ (jomreab suor) - Khmerสวัสดี (sà-wàt-dii) - Thaiສະບາຍດີ (sabaidee) - Laoဟယ်လို (helaou) - Burmesemari (まり) - Ainucào (草) - Zhuangкүнтізбе (kúntízbe) - Kazakhբարև (barev) - Armenianмонгол (mongol) - Mongolianmila (میلا) - Uyghurનમસ્તે (namaste) - Gujarati漢字 (kanji) - Japanese위 (wi) - Korean吾哥 (ngǔgāi) - Cantoneseမင်္ဂလာပါ (mingalaba) - Burmeseсайн уу (sain uu) - Mongolianਸਤਿ ਸ੍ਰੀ ਅਕਾਲ (sat sri akal) - Punjabi你吃了吗 (ní chī le ma) - Mandarin Chinese饭 (fan) - Zhuangمەن سىزنى ياخشى ئۈمىد ق + .d2-901107430 .fill-N1{fill:#0A0F25;} + .d2-901107430 .fill-N2{fill:#676C7E;} + .d2-901107430 .fill-N3{fill:#9499AB;} + .d2-901107430 .fill-N4{fill:#CFD2DD;} + .d2-901107430 .fill-N5{fill:#DEE1EB;} + .d2-901107430 .fill-N6{fill:#EEF1F8;} + .d2-901107430 .fill-N7{fill:#FFFFFF;} + .d2-901107430 .fill-B1{fill:#0D32B2;} + .d2-901107430 .fill-B2{fill:#0D32B2;} + .d2-901107430 .fill-B3{fill:#E3E9FD;} + .d2-901107430 .fill-B4{fill:#E3E9FD;} + .d2-901107430 .fill-B5{fill:#EDF0FD;} + .d2-901107430 .fill-B6{fill:#F7F8FE;} + .d2-901107430 .fill-AA2{fill:#4A6FF3;} + .d2-901107430 .fill-AA4{fill:#EDF0FD;} + .d2-901107430 .fill-AA5{fill:#F7F8FE;} + .d2-901107430 .fill-AB4{fill:#EDF0FD;} + .d2-901107430 .fill-AB5{fill:#F7F8FE;} + .d2-901107430 .stroke-N1{stroke:#0A0F25;} + .d2-901107430 .stroke-N2{stroke:#676C7E;} + .d2-901107430 .stroke-N3{stroke:#9499AB;} + .d2-901107430 .stroke-N4{stroke:#CFD2DD;} + .d2-901107430 .stroke-N5{stroke:#DEE1EB;} + .d2-901107430 .stroke-N6{stroke:#EEF1F8;} + .d2-901107430 .stroke-N7{stroke:#FFFFFF;} + .d2-901107430 .stroke-B1{stroke:#0D32B2;} + .d2-901107430 .stroke-B2{stroke:#0D32B2;} + .d2-901107430 .stroke-B3{stroke:#E3E9FD;} + .d2-901107430 .stroke-B4{stroke:#E3E9FD;} + .d2-901107430 .stroke-B5{stroke:#EDF0FD;} + .d2-901107430 .stroke-B6{stroke:#F7F8FE;} + .d2-901107430 .stroke-AA2{stroke:#4A6FF3;} + .d2-901107430 .stroke-AA4{stroke:#EDF0FD;} + .d2-901107430 .stroke-AA5{stroke:#F7F8FE;} + .d2-901107430 .stroke-AB4{stroke:#EDF0FD;} + .d2-901107430 .stroke-AB5{stroke:#F7F8FE;} + .d2-901107430 .background-color-N1{background-color:#0A0F25;} + .d2-901107430 .background-color-N2{background-color:#676C7E;} + .d2-901107430 .background-color-N3{background-color:#9499AB;} + .d2-901107430 .background-color-N4{background-color:#CFD2DD;} + .d2-901107430 .background-color-N5{background-color:#DEE1EB;} + .d2-901107430 .background-color-N6{background-color:#EEF1F8;} + .d2-901107430 .background-color-N7{background-color:#FFFFFF;} + .d2-901107430 .background-color-B1{background-color:#0D32B2;} + .d2-901107430 .background-color-B2{background-color:#0D32B2;} + .d2-901107430 .background-color-B3{background-color:#E3E9FD;} + .d2-901107430 .background-color-B4{background-color:#E3E9FD;} + .d2-901107430 .background-color-B5{background-color:#EDF0FD;} + .d2-901107430 .background-color-B6{background-color:#F7F8FE;} + .d2-901107430 .background-color-AA2{background-color:#4A6FF3;} + .d2-901107430 .background-color-AA4{background-color:#EDF0FD;} + .d2-901107430 .background-color-AA5{background-color:#F7F8FE;} + .d2-901107430 .background-color-AB4{background-color:#EDF0FD;} + .d2-901107430 .background-color-AB5{background-color:#F7F8FE;} + .d2-901107430 .color-N1{color:#0A0F25;} + .d2-901107430 .color-N2{color:#676C7E;} + .d2-901107430 .color-N3{color:#9499AB;} + .d2-901107430 .color-N4{color:#CFD2DD;} + .d2-901107430 .color-N5{color:#DEE1EB;} + .d2-901107430 .color-N6{color:#EEF1F8;} + .d2-901107430 .color-N7{color:#FFFFFF;} + .d2-901107430 .color-B1{color:#0D32B2;} + .d2-901107430 .color-B2{color:#0D32B2;} + .d2-901107430 .color-B3{color:#E3E9FD;} + .d2-901107430 .color-B4{color:#E3E9FD;} + .d2-901107430 .color-B5{color:#EDF0FD;} + .d2-901107430 .color-B6{color:#F7F8FE;} + .d2-901107430 .color-AA2{color:#4A6FF3;} + .d2-901107430 .color-AA4{color:#EDF0FD;} + .d2-901107430 .color-AA5{color:#F7F8FE;} + .d2-901107430 .color-AB4{color:#EDF0FD;} + .d2-901107430 .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}]]>我 (wǒ) - Mandarin Chineseສະບາຍດີ (sabaai dii) - Laoជំរាបសួរ (jomreab suor) - Khmerสวัสดี (sà-wàt-dii) - Thaiສະບາຍດີ (sabaidee) - Laoဟယ်လို (helaou) - Burmesemari (まり) - Ainucào (草) - Zhuangкүнтізбе (kúntízbe) - Kazakhբարև (barev) - Armenianмонгол (mongol) - Mongolianmila (میلا) - Uyghurનમસ્તે (namaste) - Gujarati漢字 (kanji) - Japanese위 (wi) - Korean吾哥 (ngǔgāi) - Cantoneseမင်္ဂလာပါ (mingalaba) - Burmeseсайн уу (sain uu) - Mongolianਸਤਿ ਸ੍ਰੀ ਅਕਾਲ (sat sri akal) - Punjabi你吃了吗 (ní chī le ma) - Mandarin Chinese饭 (fan) - Zhuangمەن سىزنى ياخشى ئۈمىد ق diff --git a/e2etests/testdata/unicode/mixed-language/dagre/board.exp.json b/e2etests/testdata/unicode/mixed-language/dagre/board.exp.json index 421ffcdfee..7565310290 100644 --- a/e2etests/testdata/unicode/mixed-language/dagre/board.exp.json +++ b/e2etests/testdata/unicode/mixed-language/dagre/board.exp.json @@ -150,6 +150,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 358, @@ -197,6 +198,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 620, diff --git a/e2etests/testdata/unicode/mixed-language/dagre/sketch.exp.svg b/e2etests/testdata/unicode/mixed-language/dagre/sketch.exp.svg index 685de9d98d..5937543dc2 100644 --- a/e2etests/testdata/unicode/mixed-language/dagre/sketch.exp.svg +++ b/e2etests/testdata/unicode/mixed-language/dagre/sketch.exp.svg @@ -1,20 +1,20 @@ -有一个叫做夏天的季节。 ある季節、夏という名前がついています。한 계절, 여름이란 이름이 있습니다.夏天的时候,天气非常热,人们总是流着汗。

    夏になると、とても暑くて、人々は汗を流しています。

    여름에는 매우 더워서 사람들은 땀을 흘립니다.

    -
    + diff --git a/e2etests/testdata/unicode/mixed-language/elk/board.exp.json b/e2etests/testdata/unicode/mixed-language/elk/board.exp.json index e1f1d747aa..7deae49987 100644 --- a/e2etests/testdata/unicode/mixed-language/elk/board.exp.json +++ b/e2etests/testdata/unicode/mixed-language/elk/board.exp.json @@ -150,6 +150,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 409.6659851074219, @@ -188,6 +189,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [ { "x": 552.3330078125, diff --git a/e2etests/testdata/unicode/mixed-language/elk/sketch.exp.svg b/e2etests/testdata/unicode/mixed-language/elk/sketch.exp.svg index f9253093cc..1a382e1cad 100644 --- a/e2etests/testdata/unicode/mixed-language/elk/sketch.exp.svg +++ b/e2etests/testdata/unicode/mixed-language/elk/sketch.exp.svg @@ -1,20 +1,20 @@ -有一个叫做夏天的季节。 ある季節、夏という名前がついています。한 계절, 여름이란 이름이 있습니다.夏天的时候,天气非常热,人们总是流着汗。

    夏になると、とても暑くて、人々は汗を流しています。

    여름에는 매우 더워서 사람들은 땀을 흘립니다.

    -
    + diff --git a/e2etests/txtar.txt b/e2etests/txtar.txt index ad28b43f54..d3560277d5 100644 --- a/e2etests/txtar.txt +++ b/e2etests/txtar.txt @@ -669,3 +669,18 @@ formula: { \end{equation} | } + +-- link-on-connections -- +a <-> b: { + link: https://google.com/ +} + +b -> c: test { + link: layers.d +} + +layers: { + d: { + d + } +} diff --git a/testdata/d2compiler/TestCompile/no_url_link_and_path_url_label_concurrently.exp.json b/testdata/d2compiler/TestCompile/no_url_link_and_path_url_label_concurrently.exp.json new file mode 100644 index 0000000000..be462dfa3c --- /dev/null +++ b/testdata/d2compiler/TestCompile/no_url_link_and_path_url_label_concurrently.exp.json @@ -0,0 +1,11 @@ +{ + "graph": null, + "err": { + "errs": [ + { + "range": "d2/testdata/d2compiler/TestCompile/no_url_link_and_path_url_label_concurrently.d2,0:34:34-0:56:56", + "errmsg": "d2/testdata/d2compiler/TestCompile/no_url_link_and_path_url_label_concurrently.d2:1:35: Label cannot be set to URL when link is also set (for security)" + } + ] + } +} diff --git a/testdata/d2compiler/TestCompile/url_link_and_path_url_label_concurrently.exp.json b/testdata/d2compiler/TestCompile/url_link_and_path_url_label_concurrently.exp.json new file mode 100644 index 0000000000..ae1d352261 --- /dev/null +++ b/testdata/d2compiler/TestCompile/url_link_and_path_url_label_concurrently.exp.json @@ -0,0 +1,257 @@ +{ + "graph": { + "name": "", + "isFolderOnly": false, + "ast": { + "range": "d2/testdata/d2compiler/TestCompile/url_link_and_path_url_label_concurrently.d2,0:0:0-0:46:46", + "nodes": [ + { + "map_key": { + "range": "d2/testdata/d2compiler/TestCompile/url_link_and_path_url_label_concurrently.d2,0:0:0-0:46:46", + "edges": [ + { + "range": "d2/testdata/d2compiler/TestCompile/url_link_and_path_url_label_concurrently.d2,0:0:0-0:6:6", + "src": { + "range": "d2/testdata/d2compiler/TestCompile/url_link_and_path_url_label_concurrently.d2,0:0:0-0:1:1", + "path": [ + { + "unquoted_string": { + "range": "d2/testdata/d2compiler/TestCompile/url_link_and_path_url_label_concurrently.d2,0:0:0-0:1:1", + "value": [ + { + "string": "x", + "raw_string": "x" + } + ] + } + } + ] + }, + "src_arrow": "", + "dst": { + "range": "d2/testdata/d2compiler/TestCompile/url_link_and_path_url_label_concurrently.d2,0:5:5-0:6:6", + "path": [ + { + "unquoted_string": { + "range": "d2/testdata/d2compiler/TestCompile/url_link_and_path_url_label_concurrently.d2,0:5:5-0:6:6", + "value": [ + { + "string": "y", + "raw_string": "y" + } + ] + } + } + ] + }, + "dst_arrow": ">" + } + ], + "primary": { + "unquoted_string": { + "range": "d2/testdata/d2compiler/TestCompile/url_link_and_path_url_label_concurrently.d2,0:8:8-0:19:19", + "value": [ + { + "string": "hello world", + "raw_string": "hello world" + } + ] + } + }, + "value": { + "map": { + "range": "d2/testdata/d2compiler/TestCompile/url_link_and_path_url_label_concurrently.d2,0:20:20-0:46:46", + "nodes": [ + { + "map_key": { + "range": "d2/testdata/d2compiler/TestCompile/url_link_and_path_url_label_concurrently.d2,0:21:21-0:45:45", + "key": { + "range": "d2/testdata/d2compiler/TestCompile/url_link_and_path_url_label_concurrently.d2,0:21:21-0:25:25", + "path": [ + { + "unquoted_string": { + "range": "d2/testdata/d2compiler/TestCompile/url_link_and_path_url_label_concurrently.d2,0:21:21-0:25:25", + "value": [ + { + "string": "link", + "raw_string": "link" + } + ] + } + } + ] + }, + "primary": {}, + "value": { + "unquoted_string": { + "range": "d2/testdata/d2compiler/TestCompile/url_link_and_path_url_label_concurrently.d2,0:27:27-0:45:45", + "value": [ + { + "string": "https://google.com", + "raw_string": "https://google.com" + } + ] + } + } + } + } + ] + } + } + } + } + ] + }, + "root": { + "id": "", + "id_val": "", + "attributes": { + "label": { + "value": "" + }, + "labelDimensions": { + "width": 0, + "height": 0 + }, + "style": {}, + "near_key": null, + "shape": { + "value": "" + }, + "direction": { + "value": "" + }, + "constraint": null + }, + "zIndex": 0 + }, + "edges": [ + { + "index": 0, + "isCurve": false, + "src_arrow": false, + "dst_arrow": true, + "references": [ + { + "map_key_edge_index": 0 + } + ], + "attributes": { + "label": { + "value": "hello world" + }, + "labelDimensions": { + "width": 0, + "height": 0 + }, + "style": {}, + "link": { + "value": "https://google.com" + }, + "near_key": null, + "shape": { + "value": "" + }, + "direction": { + "value": "" + }, + "constraint": null + }, + "zIndex": 0 + } + ], + "objects": [ + { + "id": "x", + "id_val": "x", + "references": [ + { + "key": { + "range": "d2/testdata/d2compiler/TestCompile/url_link_and_path_url_label_concurrently.d2,0:0:0-0:1:1", + "path": [ + { + "unquoted_string": { + "range": "d2/testdata/d2compiler/TestCompile/url_link_and_path_url_label_concurrently.d2,0:0:0-0:1:1", + "value": [ + { + "string": "x", + "raw_string": "x" + } + ] + } + } + ] + }, + "key_path_index": 0, + "map_key_edge_index": 0 + } + ], + "attributes": { + "label": { + "value": "x" + }, + "labelDimensions": { + "width": 0, + "height": 0 + }, + "style": {}, + "near_key": null, + "shape": { + "value": "rectangle" + }, + "direction": { + "value": "" + }, + "constraint": null + }, + "zIndex": 0 + }, + { + "id": "y", + "id_val": "y", + "references": [ + { + "key": { + "range": "d2/testdata/d2compiler/TestCompile/url_link_and_path_url_label_concurrently.d2,0:5:5-0:6:6", + "path": [ + { + "unquoted_string": { + "range": "d2/testdata/d2compiler/TestCompile/url_link_and_path_url_label_concurrently.d2,0:5:5-0:6:6", + "value": [ + { + "string": "y", + "raw_string": "y" + } + ] + } + } + ] + }, + "key_path_index": 0, + "map_key_edge_index": 0 + } + ], + "attributes": { + "label": { + "value": "y" + }, + "labelDimensions": { + "width": 0, + "height": 0 + }, + "style": {}, + "near_key": null, + "shape": { + "value": "rectangle" + }, + "direction": { + "value": "" + }, + "constraint": null + }, + "zIndex": 0 + } + ] + }, + "err": null +} diff --git a/testdata/d2compiler/TestCompile/url_link_and_path_url_label_ok.exp.json b/testdata/d2compiler/TestCompile/url_link_and_path_url_label_ok.exp.json new file mode 100644 index 0000000000..f92df7b13d --- /dev/null +++ b/testdata/d2compiler/TestCompile/url_link_and_path_url_label_ok.exp.json @@ -0,0 +1,247 @@ +{ + "graph": { + "name": "", + "isFolderOnly": false, + "ast": { + "range": "d2/testdata/d2compiler/TestCompile/url_link_and_path_url_label_ok.d2,0:0:0-0:43:43", + "nodes": [ + { + "map_key": { + "range": "d2/testdata/d2compiler/TestCompile/url_link_and_path_url_label_ok.d2,0:0:0-0:43:43", + "edges": [ + { + "range": "d2/testdata/d2compiler/TestCompile/url_link_and_path_url_label_ok.d2,0:0:0-0:11:11", + "src": { + "range": "d2/testdata/d2compiler/TestCompile/url_link_and_path_url_label_ok.d2,0:0:0-0:1:1", + "path": [ + { + "unquoted_string": { + "range": "d2/testdata/d2compiler/TestCompile/url_link_and_path_url_label_ok.d2,0:0:0-0:1:1", + "value": [ + { + "string": "x", + "raw_string": "x" + } + ] + } + } + ] + }, + "src_arrow": "", + "dst": { + "range": "d2/testdata/d2compiler/TestCompile/url_link_and_path_url_label_ok.d2,0:5:5-0:11:11", + "path": [ + { + "unquoted_string": { + "range": "d2/testdata/d2compiler/TestCompile/url_link_and_path_url_label_ok.d2,0:5:5-0:11:11", + "value": [ + { + "string": "y note", + "raw_string": "y note" + } + ] + } + } + ] + }, + "dst_arrow": ">" + } + ], + "primary": {}, + "value": { + "map": { + "range": "d2/testdata/d2compiler/TestCompile/url_link_and_path_url_label_ok.d2,0:13:13-0:43:43", + "nodes": [ + { + "map_key": { + "range": "d2/testdata/d2compiler/TestCompile/url_link_and_path_url_label_ok.d2,0:14:14-0:42:42", + "key": { + "range": "d2/testdata/d2compiler/TestCompile/url_link_and_path_url_label_ok.d2,0:14:14-0:18:18", + "path": [ + { + "unquoted_string": { + "range": "d2/testdata/d2compiler/TestCompile/url_link_and_path_url_label_ok.d2,0:14:14-0:18:18", + "value": [ + { + "string": "link", + "raw_string": "link" + } + ] + } + } + ] + }, + "primary": {}, + "value": { + "unquoted_string": { + "range": "d2/testdata/d2compiler/TestCompile/url_link_and_path_url_label_ok.d2,0:20:20-0:42:42", + "value": [ + { + "string": "https://not-google.com", + "raw_string": "https://not-google.com" + } + ] + } + } + } + } + ] + } + } + } + } + ] + }, + "root": { + "id": "", + "id_val": "", + "attributes": { + "label": { + "value": "" + }, + "labelDimensions": { + "width": 0, + "height": 0 + }, + "style": {}, + "near_key": null, + "shape": { + "value": "" + }, + "direction": { + "value": "" + }, + "constraint": null + }, + "zIndex": 0 + }, + "edges": [ + { + "index": 0, + "isCurve": false, + "src_arrow": false, + "dst_arrow": true, + "references": [ + { + "map_key_edge_index": 0 + } + ], + "attributes": { + "label": { + "value": "" + }, + "labelDimensions": { + "width": 0, + "height": 0 + }, + "style": {}, + "link": { + "value": "https://not-google.com" + }, + "near_key": null, + "shape": { + "value": "" + }, + "direction": { + "value": "" + }, + "constraint": null + }, + "zIndex": 0 + } + ], + "objects": [ + { + "id": "x", + "id_val": "x", + "references": [ + { + "key": { + "range": "d2/testdata/d2compiler/TestCompile/url_link_and_path_url_label_ok.d2,0:0:0-0:1:1", + "path": [ + { + "unquoted_string": { + "range": "d2/testdata/d2compiler/TestCompile/url_link_and_path_url_label_ok.d2,0:0:0-0:1:1", + "value": [ + { + "string": "x", + "raw_string": "x" + } + ] + } + } + ] + }, + "key_path_index": 0, + "map_key_edge_index": 0 + } + ], + "attributes": { + "label": { + "value": "x" + }, + "labelDimensions": { + "width": 0, + "height": 0 + }, + "style": {}, + "near_key": null, + "shape": { + "value": "rectangle" + }, + "direction": { + "value": "" + }, + "constraint": null + }, + "zIndex": 0 + }, + { + "id": "y note", + "id_val": "y note", + "references": [ + { + "key": { + "range": "d2/testdata/d2compiler/TestCompile/url_link_and_path_url_label_ok.d2,0:5:5-0:11:11", + "path": [ + { + "unquoted_string": { + "range": "d2/testdata/d2compiler/TestCompile/url_link_and_path_url_label_ok.d2,0:5:5-0:11:11", + "value": [ + { + "string": "y note", + "raw_string": "y note" + } + ] + } + } + ] + }, + "key_path_index": 0, + "map_key_edge_index": 0 + } + ], + "attributes": { + "label": { + "value": "y note" + }, + "labelDimensions": { + "width": 0, + "height": 0 + }, + "style": {}, + "near_key": null, + "shape": { + "value": "rectangle" + }, + "direction": { + "value": "" + }, + "constraint": null + }, + "zIndex": 0 + } + ] + }, + "err": null +} diff --git a/testdata/d2exporter/TestExport/connection/arrowhead.exp.json b/testdata/d2exporter/TestExport/connection/arrowhead.exp.json index 470ab802c3..5c66b5a9c1 100644 --- a/testdata/d2exporter/TestExport/connection/arrowhead.exp.json +++ b/testdata/d2exporter/TestExport/connection/arrowhead.exp.json @@ -132,6 +132,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [], "isCurve": true, "animated": false, diff --git a/testdata/d2exporter/TestExport/connection/basic.exp.json b/testdata/d2exporter/TestExport/connection/basic.exp.json index c6d945ff4e..42163466e6 100644 --- a/testdata/d2exporter/TestExport/connection/basic.exp.json +++ b/testdata/d2exporter/TestExport/connection/basic.exp.json @@ -108,6 +108,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [], "isCurve": true, "animated": false, diff --git a/testdata/d2exporter/TestExport/connection/stroke-dash.exp.json b/testdata/d2exporter/TestExport/connection/stroke-dash.exp.json index 45e0a88785..fad079cf2d 100644 --- a/testdata/d2exporter/TestExport/connection/stroke-dash.exp.json +++ b/testdata/d2exporter/TestExport/connection/stroke-dash.exp.json @@ -108,6 +108,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [], "isCurve": true, "animated": false, diff --git a/testdata/d2exporter/TestExport/connection/theme_stroke-dash.exp.json b/testdata/d2exporter/TestExport/connection/theme_stroke-dash.exp.json index ab22cf7855..92500586e6 100644 --- a/testdata/d2exporter/TestExport/connection/theme_stroke-dash.exp.json +++ b/testdata/d2exporter/TestExport/connection/theme_stroke-dash.exp.json @@ -108,6 +108,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [], "isCurve": true, "animated": false, @@ -138,6 +139,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [], "isCurve": true, "animated": false, diff --git a/testdata/d2exporter/TestExport/label/connection_font_color.exp.json b/testdata/d2exporter/TestExport/label/connection_font_color.exp.json index 5b7d8fdfe3..3e019b4e36 100644 --- a/testdata/d2exporter/TestExport/label/connection_font_color.exp.json +++ b/testdata/d2exporter/TestExport/label/connection_font_color.exp.json @@ -108,6 +108,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [], "isCurve": true, "animated": false, diff --git a/testdata/d2exporter/TestExport/shape/sequence_group_position.exp.json b/testdata/d2exporter/TestExport/shape/sequence_group_position.exp.json index bbdd390b7d..73f53cf9d7 100644 --- a/testdata/d2exporter/TestExport/shape/sequence_group_position.exp.json +++ b/testdata/d2exporter/TestExport/shape/sequence_group_position.exp.json @@ -189,6 +189,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [], "animated": false, "tooltip": "", @@ -218,6 +219,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [], "animated": false, "tooltip": "", @@ -247,6 +249,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [], "animated": false, "tooltip": "", diff --git a/testdata/d2exporter/TestExport/theme/connection_with_bold.exp.json b/testdata/d2exporter/TestExport/theme/connection_with_bold.exp.json index fedddcdde3..3cf97c2ead 100644 --- a/testdata/d2exporter/TestExport/theme/connection_with_bold.exp.json +++ b/testdata/d2exporter/TestExport/theme/connection_with_bold.exp.json @@ -108,6 +108,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [], "isCurve": true, "animated": false, diff --git a/testdata/d2exporter/TestExport/theme/connection_with_italic.exp.json b/testdata/d2exporter/TestExport/theme/connection_with_italic.exp.json index 46a3f99796..209c071585 100644 --- a/testdata/d2exporter/TestExport/theme/connection_with_italic.exp.json +++ b/testdata/d2exporter/TestExport/theme/connection_with_italic.exp.json @@ -108,6 +108,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [], "isCurve": true, "animated": false, diff --git a/testdata/d2exporter/TestExport/theme/connection_without_italic.exp.json b/testdata/d2exporter/TestExport/theme/connection_without_italic.exp.json index 150de8af83..4b358ecb1f 100644 --- a/testdata/d2exporter/TestExport/theme/connection_without_italic.exp.json +++ b/testdata/d2exporter/TestExport/theme/connection_without_italic.exp.json @@ -108,6 +108,7 @@ "labelHeight": 0, "labelPosition": "", "labelPercentage": 0, + "link": "", "route": [], "isCurve": true, "animated": false,