diff --git a/ci/release/changelogs/next.md b/ci/release/changelogs/next.md index fb8e7ed4e7..5db4ac3a9b 100644 --- a/ci/release/changelogs/next.md +++ b/ci/release/changelogs/next.md @@ -8,6 +8,7 @@ - Markdown text can now be adjusted with `font-size` [#1191](https://github.com/terrastruct/d2/issues/1191) - SVG outputs for internal links use relative paths instead of absolute [#1197](https://github.com/terrastruct/d2/pull/1197) +- Improves arrowhead label positioning [#1207](https://github.com/terrastruct/d2/pull/1207) #### Bugfixes ⛑️ diff --git a/d2exporter/export.go b/d2exporter/export.go index 8f8a398f1d..fe9be6c46d 100644 --- a/d2exporter/export.go +++ b/d2exporter/export.go @@ -213,7 +213,11 @@ func toConnection(edge *d2graph.Edge, theme *d2themes.Theme) d2target.Connection } if edge.SrcArrowhead != nil { if edge.SrcArrowhead.Label.Value != "" { - connection.SrcLabel = edge.SrcArrowhead.Label.Value + connection.SrcLabel = &d2target.Text{ + Label: edge.SrcArrowhead.Label.Value, + LabelWidth: edge.SrcArrowhead.LabelDimensions.Width, + LabelHeight: edge.SrcArrowhead.LabelDimensions.Height, + } } } if edge.DstArrow { @@ -230,7 +234,11 @@ func toConnection(edge *d2graph.Edge, theme *d2themes.Theme) d2target.Connection } if edge.DstArrowhead != nil { if edge.DstArrowhead.Label.Value != "" { - connection.DstLabel = edge.DstArrowhead.Label.Value + connection.DstLabel = &d2target.Text{ + Label: edge.DstArrowhead.Label.Value, + LabelWidth: edge.DstArrowhead.LabelDimensions.Width, + LabelHeight: edge.DstArrowhead.LabelDimensions.Height, + } } } if theme != nil && theme.SpecialRules.NoCornerRadius { diff --git a/d2graph/d2graph.go b/d2graph/d2graph.go index d37351ce88..f26f2fdc74 100644 --- a/d2graph/d2graph.go +++ b/d2graph/d2graph.go @@ -1042,9 +1042,6 @@ func (obj *Object) OuterNearContainer() *Object { type Edge struct { Index int `json:"index"` - MinWidth int `json:"minWidth"` - MinHeight int `json:"minHeight"` - SrcTableColumnIndex *int `json:"srcTableColumnIndex,omitempty"` DstTableColumnIndex *int `json:"dstTableColumnIndex,omitempty"` @@ -1471,21 +1468,23 @@ func (g *Graph) SetDimensions(mtexts []*d2target.MText, ruler *textmeasure.Ruler } } for _, edge := range g.Edges { - endpointLabels := []string{} + usedFont := fontFamily + if edge.Style.Font != nil { + f := d2fonts.D2_FONT_TO_FAMILY[edge.Style.Font.Value] + usedFont = &f + } + if edge.SrcArrowhead != nil && edge.SrcArrowhead.Label.Value != "" { - endpointLabels = append(endpointLabels, edge.SrcArrowhead.Label.Value) + t := edge.Text() + t.Text = edge.SrcArrowhead.Label.Value + dims := GetTextDimensions(mtexts, ruler, t, usedFont) + edge.SrcArrowhead.LabelDimensions = *dims } if edge.DstArrowhead != nil && edge.DstArrowhead.Label.Value != "" { - endpointLabels = append(endpointLabels, edge.DstArrowhead.Label.Value) - } - - for _, label := range endpointLabels { t := edge.Text() - t.Text = label - dims := GetTextDimensions(mtexts, ruler, t, fontFamily) - edge.MinWidth += dims.Width - // Some padding as it's not totally near the end - edge.MinHeight += dims.Height + 5 + t.Text = edge.DstArrowhead.Label.Value + dims := GetTextDimensions(mtexts, ruler, t, usedFont) + edge.DstArrowhead.LabelDimensions = *dims } if edge.Label.Value == "" { @@ -1497,20 +1496,12 @@ func (g *Graph) SetDimensions(mtexts []*d2target.MText, ruler *textmeasure.Ruler } edge.ApplyTextTransform() - usedFont := fontFamily - if edge.Style.Font != nil { - f := d2fonts.D2_FONT_TO_FAMILY[edge.Style.Font.Value] - usedFont = &f - } - dims := GetTextDimensions(mtexts, ruler, edge.Text(), usedFont) if dims == nil { return fmt.Errorf("dimensions for edge label %#v not found", edge.Text()) } edge.LabelDimensions = *dims - edge.MinWidth += dims.Width - edge.MinHeight += dims.Height } return nil } diff --git a/d2graph/serde.go b/d2graph/serde.go index 4387d4f7d3..61aa17e4ea 100644 --- a/d2graph/serde.go +++ b/d2graph/serde.go @@ -388,22 +388,6 @@ func CompareSerializedEdge(edge, other *Edge) error { ) } - if edge.MinWidth != other.MinWidth { - return fmt.Errorf( - "min width differs: edge=%d, other=%d", - edge.MinWidth, - other.MinWidth, - ) - } - - if edge.MinHeight != other.MinHeight { - return fmt.Errorf( - "min height differs: edge=%d, other=%d", - edge.MinHeight, - other.MinHeight, - ) - } - if edge.Label.Value != other.Label.Value { return fmt.Errorf( "labels differ: edge=%s, other=%s", diff --git a/d2renderers/d2sketch/sketch_test.go b/d2renderers/d2sketch/sketch_test.go index 5ed75626e9..177ed47dcc 100644 --- a/d2renderers/d2sketch/sketch_test.go +++ b/d2renderers/d2sketch/sketch_test.go @@ -1293,6 +1293,14 @@ queue -> package -> step callout -> stored_data -> person diamond -> oval -> circle hexagon -> cloud +`, + }, + { + name: "long_arrowhead_label", + script: ` +a -> b: { + target-arrowhead: "a to b with unexpectedly long target arrowhead label" +} `, }, } diff --git a/d2renderers/d2sketch/testdata/all_shapes/sketch.exp.svg b/d2renderers/d2sketch/testdata/all_shapes/sketch.exp.svg index 2b7ee4fd41..02f47d2839 100644 --- a/d2renderers/d2sketch/testdata/all_shapes/sketch.exp.svg +++ b/d2renderers/d2sketch/testdata/all_shapes/sketch.exp.svg @@ -1,9 +1,9 @@ - + .d2-2579350682 .fill-N1{fill:#0A0F25;} + .d2-2579350682 .fill-N2{fill:#676C7E;} + .d2-2579350682 .fill-N3{fill:#9499AB;} + .d2-2579350682 .fill-N4{fill:#CFD2DD;} + .d2-2579350682 .fill-N5{fill:#DEE1EB;} + .d2-2579350682 .fill-N6{fill:#EEF1F8;} + .d2-2579350682 .fill-N7{fill:#FFFFFF;} + .d2-2579350682 .fill-B1{fill:#0D32B2;} + .d2-2579350682 .fill-B2{fill:#0D32B2;} + .d2-2579350682 .fill-B3{fill:#E3E9FD;} + .d2-2579350682 .fill-B4{fill:#E3E9FD;} + .d2-2579350682 .fill-B5{fill:#EDF0FD;} + .d2-2579350682 .fill-B6{fill:#F7F8FE;} + .d2-2579350682 .fill-AA2{fill:#4A6FF3;} + .d2-2579350682 .fill-AA4{fill:#EDF0FD;} + .d2-2579350682 .fill-AA5{fill:#F7F8FE;} + .d2-2579350682 .fill-AB4{fill:#EDF0FD;} + .d2-2579350682 .fill-AB5{fill:#F7F8FE;} + .d2-2579350682 .stroke-N1{stroke:#0A0F25;} + .d2-2579350682 .stroke-N2{stroke:#676C7E;} + .d2-2579350682 .stroke-N3{stroke:#9499AB;} + .d2-2579350682 .stroke-N4{stroke:#CFD2DD;} + .d2-2579350682 .stroke-N5{stroke:#DEE1EB;} + .d2-2579350682 .stroke-N6{stroke:#EEF1F8;} + .d2-2579350682 .stroke-N7{stroke:#FFFFFF;} + .d2-2579350682 .stroke-B1{stroke:#0D32B2;} + .d2-2579350682 .stroke-B2{stroke:#0D32B2;} + .d2-2579350682 .stroke-B3{stroke:#E3E9FD;} + .d2-2579350682 .stroke-B4{stroke:#E3E9FD;} + .d2-2579350682 .stroke-B5{stroke:#EDF0FD;} + .d2-2579350682 .stroke-B6{stroke:#F7F8FE;} + .d2-2579350682 .stroke-AA2{stroke:#4A6FF3;} + .d2-2579350682 .stroke-AA4{stroke:#EDF0FD;} + .d2-2579350682 .stroke-AA5{stroke:#F7F8FE;} + .d2-2579350682 .stroke-AB4{stroke:#EDF0FD;} + .d2-2579350682 .stroke-AB5{stroke:#F7F8FE;} + .d2-2579350682 .background-color-N1{background-color:#0A0F25;} + .d2-2579350682 .background-color-N2{background-color:#676C7E;} + .d2-2579350682 .background-color-N3{background-color:#9499AB;} + .d2-2579350682 .background-color-N4{background-color:#CFD2DD;} + .d2-2579350682 .background-color-N5{background-color:#DEE1EB;} + .d2-2579350682 .background-color-N6{background-color:#EEF1F8;} + .d2-2579350682 .background-color-N7{background-color:#FFFFFF;} + .d2-2579350682 .background-color-B1{background-color:#0D32B2;} + .d2-2579350682 .background-color-B2{background-color:#0D32B2;} + .d2-2579350682 .background-color-B3{background-color:#E3E9FD;} + .d2-2579350682 .background-color-B4{background-color:#E3E9FD;} + .d2-2579350682 .background-color-B5{background-color:#EDF0FD;} + .d2-2579350682 .background-color-B6{background-color:#F7F8FE;} + .d2-2579350682 .background-color-AA2{background-color:#4A6FF3;} + .d2-2579350682 .background-color-AA4{background-color:#EDF0FD;} + .d2-2579350682 .background-color-AA5{background-color:#F7F8FE;} + .d2-2579350682 .background-color-AB4{background-color:#EDF0FD;} + .d2-2579350682 .background-color-AB5{background-color:#F7F8FE;} + .d2-2579350682 .color-N1{color:#0A0F25;} + .d2-2579350682 .color-N2{color:#676C7E;} + .d2-2579350682 .color-N3{color:#9499AB;} + .d2-2579350682 .color-N4{color:#CFD2DD;} + .d2-2579350682 .color-N5{color:#DEE1EB;} + .d2-2579350682 .color-N6{color:#EEF1F8;} + .d2-2579350682 .color-N7{color:#FFFFFF;} + .d2-2579350682 .color-B1{color:#0D32B2;} + .d2-2579350682 .color-B2{color:#0D32B2;} + .d2-2579350682 .color-B3{color:#E3E9FD;} + .d2-2579350682 .color-B4{color:#E3E9FD;} + .d2-2579350682 .color-B5{color:#EDF0FD;} + .d2-2579350682 .color-B6{color:#F7F8FE;} + .d2-2579350682 .color-AA2{color:#4A6FF3;} + .d2-2579350682 .color-AA4{color:#EDF0FD;} + .d2-2579350682 .color-AA5{color:#F7F8FE;} + .d2-2579350682 .color-AB4{color:#EDF0FD;} + .d2-2579350682 .color-AB5{color:#F7F8FE;}.appendix text.text{fill:#0A0F25}.md{--color-fg-default:#0A0F25;--color-fg-muted:#676C7E;--color-fg-subtle:#9499AB;--color-canvas-default:#FFFFFF;--color-canvas-subtle:#EEF1F8;--color-border-default:#0D32B2;--color-border-muted:#0D32B2;--color-neutral-muted:#EEF1F8;--color-accent-fg:#0D32B2;--color-accent-emphasis:#0D32B2;--color-attention-subtle:#676C7E;--color-danger-fg:red;}.sketch-overlay-B1{fill:url(#streaks-darker);mix-blend-mode:lighten}.sketch-overlay-B2{fill:url(#streaks-darker);mix-blend-mode:lighten}.sketch-overlay-B3{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-B4{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-B5{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-B6{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-AA2{fill:url(#streaks-dark);mix-blend-mode:overlay}.sketch-overlay-AA4{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-AA5{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-AB4{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-AB5{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-N1{fill:url(#streaks-darker);mix-blend-mode:lighten}.sketch-overlay-N2{fill:url(#streaks-dark);mix-blend-mode:overlay}.sketch-overlay-N3{fill:url(#streaks-normal);mix-blend-mode:color-burn}.sketch-overlay-N4{fill:url(#streaks-normal);mix-blend-mode:color-burn}.sketch-overlay-N5{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-N6{fill:url(#streaks-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 \ No newline at end of file diff --git a/d2renderers/d2sketch/testdata/all_shapes_dark/sketch.exp.svg b/d2renderers/d2sketch/testdata/all_shapes_dark/sketch.exp.svg index daaf60ca6b..cfadd69c08 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-2579350682 .fill-N1{fill:#CDD6F4;} + .d2-2579350682 .fill-N2{fill:#BAC2DE;} + .d2-2579350682 .fill-N3{fill:#A6ADC8;} + .d2-2579350682 .fill-N4{fill:#585B70;} + .d2-2579350682 .fill-N5{fill:#45475A;} + .d2-2579350682 .fill-N6{fill:#313244;} + .d2-2579350682 .fill-N7{fill:#1E1E2E;} + .d2-2579350682 .fill-B1{fill:#CBA6f7;} + .d2-2579350682 .fill-B2{fill:#CBA6f7;} + .d2-2579350682 .fill-B3{fill:#6C7086;} + .d2-2579350682 .fill-B4{fill:#585B70;} + .d2-2579350682 .fill-B5{fill:#45475A;} + .d2-2579350682 .fill-B6{fill:#313244;} + .d2-2579350682 .fill-AA2{fill:#f38BA8;} + .d2-2579350682 .fill-AA4{fill:#45475A;} + .d2-2579350682 .fill-AA5{fill:#313244;} + .d2-2579350682 .fill-AB4{fill:#45475A;} + .d2-2579350682 .fill-AB5{fill:#313244;} + .d2-2579350682 .stroke-N1{stroke:#CDD6F4;} + .d2-2579350682 .stroke-N2{stroke:#BAC2DE;} + .d2-2579350682 .stroke-N3{stroke:#A6ADC8;} + .d2-2579350682 .stroke-N4{stroke:#585B70;} + .d2-2579350682 .stroke-N5{stroke:#45475A;} + .d2-2579350682 .stroke-N6{stroke:#313244;} + .d2-2579350682 .stroke-N7{stroke:#1E1E2E;} + .d2-2579350682 .stroke-B1{stroke:#CBA6f7;} + .d2-2579350682 .stroke-B2{stroke:#CBA6f7;} + .d2-2579350682 .stroke-B3{stroke:#6C7086;} + .d2-2579350682 .stroke-B4{stroke:#585B70;} + .d2-2579350682 .stroke-B5{stroke:#45475A;} + .d2-2579350682 .stroke-B6{stroke:#313244;} + .d2-2579350682 .stroke-AA2{stroke:#f38BA8;} + .d2-2579350682 .stroke-AA4{stroke:#45475A;} + .d2-2579350682 .stroke-AA5{stroke:#313244;} + .d2-2579350682 .stroke-AB4{stroke:#45475A;} + .d2-2579350682 .stroke-AB5{stroke:#313244;} + .d2-2579350682 .background-color-N1{background-color:#CDD6F4;} + .d2-2579350682 .background-color-N2{background-color:#BAC2DE;} + .d2-2579350682 .background-color-N3{background-color:#A6ADC8;} + .d2-2579350682 .background-color-N4{background-color:#585B70;} + .d2-2579350682 .background-color-N5{background-color:#45475A;} + .d2-2579350682 .background-color-N6{background-color:#313244;} + .d2-2579350682 .background-color-N7{background-color:#1E1E2E;} + .d2-2579350682 .background-color-B1{background-color:#CBA6f7;} + .d2-2579350682 .background-color-B2{background-color:#CBA6f7;} + .d2-2579350682 .background-color-B3{background-color:#6C7086;} + .d2-2579350682 .background-color-B4{background-color:#585B70;} + .d2-2579350682 .background-color-B5{background-color:#45475A;} + .d2-2579350682 .background-color-B6{background-color:#313244;} + .d2-2579350682 .background-color-AA2{background-color:#f38BA8;} + .d2-2579350682 .background-color-AA4{background-color:#45475A;} + .d2-2579350682 .background-color-AA5{background-color:#313244;} + .d2-2579350682 .background-color-AB4{background-color:#45475A;} + .d2-2579350682 .background-color-AB5{background-color:#313244;} + .d2-2579350682 .color-N1{color:#CDD6F4;} + .d2-2579350682 .color-N2{color:#BAC2DE;} + .d2-2579350682 .color-N3{color:#A6ADC8;} + .d2-2579350682 .color-N4{color:#585B70;} + .d2-2579350682 .color-N5{color:#45475A;} + .d2-2579350682 .color-N6{color:#313244;} + .d2-2579350682 .color-N7{color:#1E1E2E;} + .d2-2579350682 .color-B1{color:#CBA6f7;} + .d2-2579350682 .color-B2{color:#CBA6f7;} + .d2-2579350682 .color-B3{color:#6C7086;} + .d2-2579350682 .color-B4{color:#585B70;} + .d2-2579350682 .color-B5{color:#45475A;} + .d2-2579350682 .color-B6{color:#313244;} + .d2-2579350682 .color-AA2{color:#f38BA8;} + .d2-2579350682 .color-AA4{color:#45475A;} + .d2-2579350682 .color-AA5{color:#313244;} + .d2-2579350682 .color-AB4{color:#45475A;} + .d2-2579350682 .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 \ No newline at end of file diff --git a/d2renderers/d2sketch/testdata/animated/sketch.exp.svg b/d2renderers/d2sketch/testdata/animated/sketch.exp.svg index 8813b36c59..4b5fdaad05 100644 --- a/d2renderers/d2sketch/testdata/animated/sketch.exp.svg +++ b/d2renderers/d2sketch/testdata/animated/sketch.exp.svg @@ -1,9 +1,9 @@ - + .d2-4115651978 .fill-N1{fill:#0A0F25;} + .d2-4115651978 .fill-N2{fill:#676C7E;} + .d2-4115651978 .fill-N3{fill:#9499AB;} + .d2-4115651978 .fill-N4{fill:#CFD2DD;} + .d2-4115651978 .fill-N5{fill:#DEE1EB;} + .d2-4115651978 .fill-N6{fill:#EEF1F8;} + .d2-4115651978 .fill-N7{fill:#FFFFFF;} + .d2-4115651978 .fill-B1{fill:#0D32B2;} + .d2-4115651978 .fill-B2{fill:#0D32B2;} + .d2-4115651978 .fill-B3{fill:#E3E9FD;} + .d2-4115651978 .fill-B4{fill:#E3E9FD;} + .d2-4115651978 .fill-B5{fill:#EDF0FD;} + .d2-4115651978 .fill-B6{fill:#F7F8FE;} + .d2-4115651978 .fill-AA2{fill:#4A6FF3;} + .d2-4115651978 .fill-AA4{fill:#EDF0FD;} + .d2-4115651978 .fill-AA5{fill:#F7F8FE;} + .d2-4115651978 .fill-AB4{fill:#EDF0FD;} + .d2-4115651978 .fill-AB5{fill:#F7F8FE;} + .d2-4115651978 .stroke-N1{stroke:#0A0F25;} + .d2-4115651978 .stroke-N2{stroke:#676C7E;} + .d2-4115651978 .stroke-N3{stroke:#9499AB;} + .d2-4115651978 .stroke-N4{stroke:#CFD2DD;} + .d2-4115651978 .stroke-N5{stroke:#DEE1EB;} + .d2-4115651978 .stroke-N6{stroke:#EEF1F8;} + .d2-4115651978 .stroke-N7{stroke:#FFFFFF;} + .d2-4115651978 .stroke-B1{stroke:#0D32B2;} + .d2-4115651978 .stroke-B2{stroke:#0D32B2;} + .d2-4115651978 .stroke-B3{stroke:#E3E9FD;} + .d2-4115651978 .stroke-B4{stroke:#E3E9FD;} + .d2-4115651978 .stroke-B5{stroke:#EDF0FD;} + .d2-4115651978 .stroke-B6{stroke:#F7F8FE;} + .d2-4115651978 .stroke-AA2{stroke:#4A6FF3;} + .d2-4115651978 .stroke-AA4{stroke:#EDF0FD;} + .d2-4115651978 .stroke-AA5{stroke:#F7F8FE;} + .d2-4115651978 .stroke-AB4{stroke:#EDF0FD;} + .d2-4115651978 .stroke-AB5{stroke:#F7F8FE;} + .d2-4115651978 .background-color-N1{background-color:#0A0F25;} + .d2-4115651978 .background-color-N2{background-color:#676C7E;} + .d2-4115651978 .background-color-N3{background-color:#9499AB;} + .d2-4115651978 .background-color-N4{background-color:#CFD2DD;} + .d2-4115651978 .background-color-N5{background-color:#DEE1EB;} + .d2-4115651978 .background-color-N6{background-color:#EEF1F8;} + .d2-4115651978 .background-color-N7{background-color:#FFFFFF;} + .d2-4115651978 .background-color-B1{background-color:#0D32B2;} + .d2-4115651978 .background-color-B2{background-color:#0D32B2;} + .d2-4115651978 .background-color-B3{background-color:#E3E9FD;} + .d2-4115651978 .background-color-B4{background-color:#E3E9FD;} + .d2-4115651978 .background-color-B5{background-color:#EDF0FD;} + .d2-4115651978 .background-color-B6{background-color:#F7F8FE;} + .d2-4115651978 .background-color-AA2{background-color:#4A6FF3;} + .d2-4115651978 .background-color-AA4{background-color:#EDF0FD;} + .d2-4115651978 .background-color-AA5{background-color:#F7F8FE;} + .d2-4115651978 .background-color-AB4{background-color:#EDF0FD;} + .d2-4115651978 .background-color-AB5{background-color:#F7F8FE;} + .d2-4115651978 .color-N1{color:#0A0F25;} + .d2-4115651978 .color-N2{color:#676C7E;} + .d2-4115651978 .color-N3{color:#9499AB;} + .d2-4115651978 .color-N4{color:#CFD2DD;} + .d2-4115651978 .color-N5{color:#DEE1EB;} + .d2-4115651978 .color-N6{color:#EEF1F8;} + .d2-4115651978 .color-N7{color:#FFFFFF;} + .d2-4115651978 .color-B1{color:#0D32B2;} + .d2-4115651978 .color-B2{color:#0D32B2;} + .d2-4115651978 .color-B3{color:#E3E9FD;} + .d2-4115651978 .color-B4{color:#E3E9FD;} + .d2-4115651978 .color-B5{color:#EDF0FD;} + .d2-4115651978 .color-B6{color:#F7F8FE;} + .d2-4115651978 .color-AA2{color:#4A6FF3;} + .d2-4115651978 .color-AA4{color:#EDF0FD;} + .d2-4115651978 .color-AA5{color:#F7F8FE;} + .d2-4115651978 .color-AB4{color:#EDF0FD;} + .d2-4115651978 .color-AB5{color:#F7F8FE;}.appendix text.text{fill:#0A0F25}.md{--color-fg-default:#0A0F25;--color-fg-muted:#676C7E;--color-fg-subtle:#9499AB;--color-canvas-default:#FFFFFF;--color-canvas-subtle:#EEF1F8;--color-border-default:#0D32B2;--color-border-muted:#0D32B2;--color-neutral-muted:#EEF1F8;--color-accent-fg:#0D32B2;--color-accent-emphasis:#0D32B2;--color-attention-subtle:#676C7E;--color-danger-fg:red;}.sketch-overlay-B1{fill:url(#streaks-darker);mix-blend-mode:lighten}.sketch-overlay-B2{fill:url(#streaks-darker);mix-blend-mode:lighten}.sketch-overlay-B3{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-B4{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-B5{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-B6{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-AA2{fill:url(#streaks-dark);mix-blend-mode:overlay}.sketch-overlay-AA4{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-AA5{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-AB4{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-AB5{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-N1{fill:url(#streaks-darker);mix-blend-mode:lighten}.sketch-overlay-N2{fill:url(#streaks-dark);mix-blend-mode:overlay}.sketch-overlay-N3{fill:url(#streaks-normal);mix-blend-mode:color-burn}.sketch-overlay-N4{fill:url(#streaks-normal);mix-blend-mode:color-burn}.sketch-overlay-N5{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-N6{fill:url(#streaks-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 \ No newline at end of file diff --git a/d2renderers/d2sketch/testdata/animated_dark/sketch.exp.svg b/d2renderers/d2sketch/testdata/animated_dark/sketch.exp.svg index f299706388..effeeae53a 100644 --- a/d2renderers/d2sketch/testdata/animated_dark/sketch.exp.svg +++ b/d2renderers/d2sketch/testdata/animated_dark/sketch.exp.svg @@ -1,9 +1,9 @@ - + .d2-4115651978 .fill-N1{fill:#CDD6F4;} + .d2-4115651978 .fill-N2{fill:#BAC2DE;} + .d2-4115651978 .fill-N3{fill:#A6ADC8;} + .d2-4115651978 .fill-N4{fill:#585B70;} + .d2-4115651978 .fill-N5{fill:#45475A;} + .d2-4115651978 .fill-N6{fill:#313244;} + .d2-4115651978 .fill-N7{fill:#1E1E2E;} + .d2-4115651978 .fill-B1{fill:#CBA6f7;} + .d2-4115651978 .fill-B2{fill:#CBA6f7;} + .d2-4115651978 .fill-B3{fill:#6C7086;} + .d2-4115651978 .fill-B4{fill:#585B70;} + .d2-4115651978 .fill-B5{fill:#45475A;} + .d2-4115651978 .fill-B6{fill:#313244;} + .d2-4115651978 .fill-AA2{fill:#f38BA8;} + .d2-4115651978 .fill-AA4{fill:#45475A;} + .d2-4115651978 .fill-AA5{fill:#313244;} + .d2-4115651978 .fill-AB4{fill:#45475A;} + .d2-4115651978 .fill-AB5{fill:#313244;} + .d2-4115651978 .stroke-N1{stroke:#CDD6F4;} + .d2-4115651978 .stroke-N2{stroke:#BAC2DE;} + .d2-4115651978 .stroke-N3{stroke:#A6ADC8;} + .d2-4115651978 .stroke-N4{stroke:#585B70;} + .d2-4115651978 .stroke-N5{stroke:#45475A;} + .d2-4115651978 .stroke-N6{stroke:#313244;} + .d2-4115651978 .stroke-N7{stroke:#1E1E2E;} + .d2-4115651978 .stroke-B1{stroke:#CBA6f7;} + .d2-4115651978 .stroke-B2{stroke:#CBA6f7;} + .d2-4115651978 .stroke-B3{stroke:#6C7086;} + .d2-4115651978 .stroke-B4{stroke:#585B70;} + .d2-4115651978 .stroke-B5{stroke:#45475A;} + .d2-4115651978 .stroke-B6{stroke:#313244;} + .d2-4115651978 .stroke-AA2{stroke:#f38BA8;} + .d2-4115651978 .stroke-AA4{stroke:#45475A;} + .d2-4115651978 .stroke-AA5{stroke:#313244;} + .d2-4115651978 .stroke-AB4{stroke:#45475A;} + .d2-4115651978 .stroke-AB5{stroke:#313244;} + .d2-4115651978 .background-color-N1{background-color:#CDD6F4;} + .d2-4115651978 .background-color-N2{background-color:#BAC2DE;} + .d2-4115651978 .background-color-N3{background-color:#A6ADC8;} + .d2-4115651978 .background-color-N4{background-color:#585B70;} + .d2-4115651978 .background-color-N5{background-color:#45475A;} + .d2-4115651978 .background-color-N6{background-color:#313244;} + .d2-4115651978 .background-color-N7{background-color:#1E1E2E;} + .d2-4115651978 .background-color-B1{background-color:#CBA6f7;} + .d2-4115651978 .background-color-B2{background-color:#CBA6f7;} + .d2-4115651978 .background-color-B3{background-color:#6C7086;} + .d2-4115651978 .background-color-B4{background-color:#585B70;} + .d2-4115651978 .background-color-B5{background-color:#45475A;} + .d2-4115651978 .background-color-B6{background-color:#313244;} + .d2-4115651978 .background-color-AA2{background-color:#f38BA8;} + .d2-4115651978 .background-color-AA4{background-color:#45475A;} + .d2-4115651978 .background-color-AA5{background-color:#313244;} + .d2-4115651978 .background-color-AB4{background-color:#45475A;} + .d2-4115651978 .background-color-AB5{background-color:#313244;} + .d2-4115651978 .color-N1{color:#CDD6F4;} + .d2-4115651978 .color-N2{color:#BAC2DE;} + .d2-4115651978 .color-N3{color:#A6ADC8;} + .d2-4115651978 .color-N4{color:#585B70;} + .d2-4115651978 .color-N5{color:#45475A;} + .d2-4115651978 .color-N6{color:#313244;} + .d2-4115651978 .color-N7{color:#1E1E2E;} + .d2-4115651978 .color-B1{color:#CBA6f7;} + .d2-4115651978 .color-B2{color:#CBA6f7;} + .d2-4115651978 .color-B3{color:#6C7086;} + .d2-4115651978 .color-B4{color:#585B70;} + .d2-4115651978 .color-B5{color:#45475A;} + .d2-4115651978 .color-B6{color:#313244;} + .d2-4115651978 .color-AA2{color:#f38BA8;} + .d2-4115651978 .color-AA4{color:#45475A;} + .d2-4115651978 .color-AA5{color:#313244;} + .d2-4115651978 .color-AB4{color:#45475A;} + .d2-4115651978 .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 \ No newline at end of file diff --git a/d2renderers/d2sketch/testdata/arrowheads/sketch.exp.svg b/d2renderers/d2sketch/testdata/arrowheads/sketch.exp.svg index 83f5d5de32..f3f9c20ec0 100644 --- a/d2renderers/d2sketch/testdata/arrowheads/sketch.exp.svg +++ b/d2renderers/d2sketch/testdata/arrowheads/sketch.exp.svg @@ -1,16 +1,16 @@ - + .d2-319344948 .fill-N1{fill:#0A0F25;} + .d2-319344948 .fill-N2{fill:#676C7E;} + .d2-319344948 .fill-N3{fill:#9499AB;} + .d2-319344948 .fill-N4{fill:#CFD2DD;} + .d2-319344948 .fill-N5{fill:#DEE1EB;} + .d2-319344948 .fill-N6{fill:#EEF1F8;} + .d2-319344948 .fill-N7{fill:#FFFFFF;} + .d2-319344948 .fill-B1{fill:#0D32B2;} + .d2-319344948 .fill-B2{fill:#0D32B2;} + .d2-319344948 .fill-B3{fill:#E3E9FD;} + .d2-319344948 .fill-B4{fill:#E3E9FD;} + .d2-319344948 .fill-B5{fill:#EDF0FD;} + .d2-319344948 .fill-B6{fill:#F7F8FE;} + .d2-319344948 .fill-AA2{fill:#4A6FF3;} + .d2-319344948 .fill-AA4{fill:#EDF0FD;} + .d2-319344948 .fill-AA5{fill:#F7F8FE;} + .d2-319344948 .fill-AB4{fill:#EDF0FD;} + .d2-319344948 .fill-AB5{fill:#F7F8FE;} + .d2-319344948 .stroke-N1{stroke:#0A0F25;} + .d2-319344948 .stroke-N2{stroke:#676C7E;} + .d2-319344948 .stroke-N3{stroke:#9499AB;} + .d2-319344948 .stroke-N4{stroke:#CFD2DD;} + .d2-319344948 .stroke-N5{stroke:#DEE1EB;} + .d2-319344948 .stroke-N6{stroke:#EEF1F8;} + .d2-319344948 .stroke-N7{stroke:#FFFFFF;} + .d2-319344948 .stroke-B1{stroke:#0D32B2;} + .d2-319344948 .stroke-B2{stroke:#0D32B2;} + .d2-319344948 .stroke-B3{stroke:#E3E9FD;} + .d2-319344948 .stroke-B4{stroke:#E3E9FD;} + .d2-319344948 .stroke-B5{stroke:#EDF0FD;} + .d2-319344948 .stroke-B6{stroke:#F7F8FE;} + .d2-319344948 .stroke-AA2{stroke:#4A6FF3;} + .d2-319344948 .stroke-AA4{stroke:#EDF0FD;} + .d2-319344948 .stroke-AA5{stroke:#F7F8FE;} + .d2-319344948 .stroke-AB4{stroke:#EDF0FD;} + .d2-319344948 .stroke-AB5{stroke:#F7F8FE;} + .d2-319344948 .background-color-N1{background-color:#0A0F25;} + .d2-319344948 .background-color-N2{background-color:#676C7E;} + .d2-319344948 .background-color-N3{background-color:#9499AB;} + .d2-319344948 .background-color-N4{background-color:#CFD2DD;} + .d2-319344948 .background-color-N5{background-color:#DEE1EB;} + .d2-319344948 .background-color-N6{background-color:#EEF1F8;} + .d2-319344948 .background-color-N7{background-color:#FFFFFF;} + .d2-319344948 .background-color-B1{background-color:#0D32B2;} + .d2-319344948 .background-color-B2{background-color:#0D32B2;} + .d2-319344948 .background-color-B3{background-color:#E3E9FD;} + .d2-319344948 .background-color-B4{background-color:#E3E9FD;} + .d2-319344948 .background-color-B5{background-color:#EDF0FD;} + .d2-319344948 .background-color-B6{background-color:#F7F8FE;} + .d2-319344948 .background-color-AA2{background-color:#4A6FF3;} + .d2-319344948 .background-color-AA4{background-color:#EDF0FD;} + .d2-319344948 .background-color-AA5{background-color:#F7F8FE;} + .d2-319344948 .background-color-AB4{background-color:#EDF0FD;} + .d2-319344948 .background-color-AB5{background-color:#F7F8FE;} + .d2-319344948 .color-N1{color:#0A0F25;} + .d2-319344948 .color-N2{color:#676C7E;} + .d2-319344948 .color-N3{color:#9499AB;} + .d2-319344948 .color-N4{color:#CFD2DD;} + .d2-319344948 .color-N5{color:#DEE1EB;} + .d2-319344948 .color-N6{color:#EEF1F8;} + .d2-319344948 .color-N7{color:#FFFFFF;} + .d2-319344948 .color-B1{color:#0D32B2;} + .d2-319344948 .color-B2{color:#0D32B2;} + .d2-319344948 .color-B3{color:#E3E9FD;} + .d2-319344948 .color-B4{color:#E3E9FD;} + .d2-319344948 .color-B5{color:#EDF0FD;} + .d2-319344948 .color-B6{color:#F7F8FE;} + .d2-319344948 .color-AA2{color:#4A6FF3;} + .d2-319344948 .color-AA4{color:#EDF0FD;} + .d2-319344948 .color-AA5{color:#F7F8FE;} + .d2-319344948 .color-AB4{color:#EDF0FD;} + .d2-319344948 .color-AB5{color:#F7F8FE;}.appendix text.text{fill:#0A0F25}.md{--color-fg-default:#0A0F25;--color-fg-muted:#676C7E;--color-fg-subtle:#9499AB;--color-canvas-default:#FFFFFF;--color-canvas-subtle:#EEF1F8;--color-border-default:#0D32B2;--color-border-muted:#0D32B2;--color-neutral-muted:#EEF1F8;--color-accent-fg:#0D32B2;--color-accent-emphasis:#0D32B2;--color-attention-subtle:#676C7E;--color-danger-fg:red;}.sketch-overlay-B1{fill:url(#streaks-darker);mix-blend-mode:lighten}.sketch-overlay-B2{fill:url(#streaks-darker);mix-blend-mode:lighten}.sketch-overlay-B3{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-B4{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-B5{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-B6{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-AA2{fill:url(#streaks-dark);mix-blend-mode:overlay}.sketch-overlay-AA4{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-AA5{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-AB4{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-AB5{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-N1{fill:url(#streaks-darker);mix-blend-mode:lighten}.sketch-overlay-N2{fill:url(#streaks-dark);mix-blend-mode:overlay}.sketch-overlay-N3{fill:url(#streaks-normal);mix-blend-mode:color-burn}.sketch-overlay-N4{fill:url(#streaks-normal);mix-blend-mode:color-burn}.sketch-overlay-N5{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-N6{fill:url(#streaks-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 ac67f8b986..07a1bd0de9 100644 --- a/d2renderers/d2sketch/testdata/arrowheads_dark/sketch.exp.svg +++ b/d2renderers/d2sketch/testdata/arrowheads_dark/sketch.exp.svg @@ -1,16 +1,16 @@ - + .d2-319344948 .fill-N1{fill:#CDD6F4;} + .d2-319344948 .fill-N2{fill:#BAC2DE;} + .d2-319344948 .fill-N3{fill:#A6ADC8;} + .d2-319344948 .fill-N4{fill:#585B70;} + .d2-319344948 .fill-N5{fill:#45475A;} + .d2-319344948 .fill-N6{fill:#313244;} + .d2-319344948 .fill-N7{fill:#1E1E2E;} + .d2-319344948 .fill-B1{fill:#CBA6f7;} + .d2-319344948 .fill-B2{fill:#CBA6f7;} + .d2-319344948 .fill-B3{fill:#6C7086;} + .d2-319344948 .fill-B4{fill:#585B70;} + .d2-319344948 .fill-B5{fill:#45475A;} + .d2-319344948 .fill-B6{fill:#313244;} + .d2-319344948 .fill-AA2{fill:#f38BA8;} + .d2-319344948 .fill-AA4{fill:#45475A;} + .d2-319344948 .fill-AA5{fill:#313244;} + .d2-319344948 .fill-AB4{fill:#45475A;} + .d2-319344948 .fill-AB5{fill:#313244;} + .d2-319344948 .stroke-N1{stroke:#CDD6F4;} + .d2-319344948 .stroke-N2{stroke:#BAC2DE;} + .d2-319344948 .stroke-N3{stroke:#A6ADC8;} + .d2-319344948 .stroke-N4{stroke:#585B70;} + .d2-319344948 .stroke-N5{stroke:#45475A;} + .d2-319344948 .stroke-N6{stroke:#313244;} + .d2-319344948 .stroke-N7{stroke:#1E1E2E;} + .d2-319344948 .stroke-B1{stroke:#CBA6f7;} + .d2-319344948 .stroke-B2{stroke:#CBA6f7;} + .d2-319344948 .stroke-B3{stroke:#6C7086;} + .d2-319344948 .stroke-B4{stroke:#585B70;} + .d2-319344948 .stroke-B5{stroke:#45475A;} + .d2-319344948 .stroke-B6{stroke:#313244;} + .d2-319344948 .stroke-AA2{stroke:#f38BA8;} + .d2-319344948 .stroke-AA4{stroke:#45475A;} + .d2-319344948 .stroke-AA5{stroke:#313244;} + .d2-319344948 .stroke-AB4{stroke:#45475A;} + .d2-319344948 .stroke-AB5{stroke:#313244;} + .d2-319344948 .background-color-N1{background-color:#CDD6F4;} + .d2-319344948 .background-color-N2{background-color:#BAC2DE;} + .d2-319344948 .background-color-N3{background-color:#A6ADC8;} + .d2-319344948 .background-color-N4{background-color:#585B70;} + .d2-319344948 .background-color-N5{background-color:#45475A;} + .d2-319344948 .background-color-N6{background-color:#313244;} + .d2-319344948 .background-color-N7{background-color:#1E1E2E;} + .d2-319344948 .background-color-B1{background-color:#CBA6f7;} + .d2-319344948 .background-color-B2{background-color:#CBA6f7;} + .d2-319344948 .background-color-B3{background-color:#6C7086;} + .d2-319344948 .background-color-B4{background-color:#585B70;} + .d2-319344948 .background-color-B5{background-color:#45475A;} + .d2-319344948 .background-color-B6{background-color:#313244;} + .d2-319344948 .background-color-AA2{background-color:#f38BA8;} + .d2-319344948 .background-color-AA4{background-color:#45475A;} + .d2-319344948 .background-color-AA5{background-color:#313244;} + .d2-319344948 .background-color-AB4{background-color:#45475A;} + .d2-319344948 .background-color-AB5{background-color:#313244;} + .d2-319344948 .color-N1{color:#CDD6F4;} + .d2-319344948 .color-N2{color:#BAC2DE;} + .d2-319344948 .color-N3{color:#A6ADC8;} + .d2-319344948 .color-N4{color:#585B70;} + .d2-319344948 .color-N5{color:#45475A;} + .d2-319344948 .color-N6{color:#313244;} + .d2-319344948 .color-N7{color:#1E1E2E;} + .d2-319344948 .color-B1{color:#CBA6f7;} + .d2-319344948 .color-B2{color:#CBA6f7;} + .d2-319344948 .color-B3{color:#6C7086;} + .d2-319344948 .color-B4{color:#585B70;} + .d2-319344948 .color-B5{color:#45475A;} + .d2-319344948 .color-B6{color:#313244;} + .d2-319344948 .color-AA2{color:#f38BA8;} + .d2-319344948 .color-AA4{color:#45475A;} + .d2-319344948 .color-AA5{color:#313244;} + .d2-319344948 .color-AB4{color:#45475A;} + .d2-319344948 .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 c5cc7407d3..79cf599707 100644 --- a/d2renderers/d2sketch/testdata/basic/sketch.exp.svg +++ b/d2renderers/d2sketch/testdata/basic/sketch.exp.svg @@ -1,9 +1,9 @@ - + .d2-3655258321 .fill-N1{fill:#0A0F25;} + .d2-3655258321 .fill-N2{fill:#676C7E;} + .d2-3655258321 .fill-N3{fill:#9499AB;} + .d2-3655258321 .fill-N4{fill:#CFD2DD;} + .d2-3655258321 .fill-N5{fill:#DEE1EB;} + .d2-3655258321 .fill-N6{fill:#EEF1F8;} + .d2-3655258321 .fill-N7{fill:#FFFFFF;} + .d2-3655258321 .fill-B1{fill:#0D32B2;} + .d2-3655258321 .fill-B2{fill:#0D32B2;} + .d2-3655258321 .fill-B3{fill:#E3E9FD;} + .d2-3655258321 .fill-B4{fill:#E3E9FD;} + .d2-3655258321 .fill-B5{fill:#EDF0FD;} + .d2-3655258321 .fill-B6{fill:#F7F8FE;} + .d2-3655258321 .fill-AA2{fill:#4A6FF3;} + .d2-3655258321 .fill-AA4{fill:#EDF0FD;} + .d2-3655258321 .fill-AA5{fill:#F7F8FE;} + .d2-3655258321 .fill-AB4{fill:#EDF0FD;} + .d2-3655258321 .fill-AB5{fill:#F7F8FE;} + .d2-3655258321 .stroke-N1{stroke:#0A0F25;} + .d2-3655258321 .stroke-N2{stroke:#676C7E;} + .d2-3655258321 .stroke-N3{stroke:#9499AB;} + .d2-3655258321 .stroke-N4{stroke:#CFD2DD;} + .d2-3655258321 .stroke-N5{stroke:#DEE1EB;} + .d2-3655258321 .stroke-N6{stroke:#EEF1F8;} + .d2-3655258321 .stroke-N7{stroke:#FFFFFF;} + .d2-3655258321 .stroke-B1{stroke:#0D32B2;} + .d2-3655258321 .stroke-B2{stroke:#0D32B2;} + .d2-3655258321 .stroke-B3{stroke:#E3E9FD;} + .d2-3655258321 .stroke-B4{stroke:#E3E9FD;} + .d2-3655258321 .stroke-B5{stroke:#EDF0FD;} + .d2-3655258321 .stroke-B6{stroke:#F7F8FE;} + .d2-3655258321 .stroke-AA2{stroke:#4A6FF3;} + .d2-3655258321 .stroke-AA4{stroke:#EDF0FD;} + .d2-3655258321 .stroke-AA5{stroke:#F7F8FE;} + .d2-3655258321 .stroke-AB4{stroke:#EDF0FD;} + .d2-3655258321 .stroke-AB5{stroke:#F7F8FE;} + .d2-3655258321 .background-color-N1{background-color:#0A0F25;} + .d2-3655258321 .background-color-N2{background-color:#676C7E;} + .d2-3655258321 .background-color-N3{background-color:#9499AB;} + .d2-3655258321 .background-color-N4{background-color:#CFD2DD;} + .d2-3655258321 .background-color-N5{background-color:#DEE1EB;} + .d2-3655258321 .background-color-N6{background-color:#EEF1F8;} + .d2-3655258321 .background-color-N7{background-color:#FFFFFF;} + .d2-3655258321 .background-color-B1{background-color:#0D32B2;} + .d2-3655258321 .background-color-B2{background-color:#0D32B2;} + .d2-3655258321 .background-color-B3{background-color:#E3E9FD;} + .d2-3655258321 .background-color-B4{background-color:#E3E9FD;} + .d2-3655258321 .background-color-B5{background-color:#EDF0FD;} + .d2-3655258321 .background-color-B6{background-color:#F7F8FE;} + .d2-3655258321 .background-color-AA2{background-color:#4A6FF3;} + .d2-3655258321 .background-color-AA4{background-color:#EDF0FD;} + .d2-3655258321 .background-color-AA5{background-color:#F7F8FE;} + .d2-3655258321 .background-color-AB4{background-color:#EDF0FD;} + .d2-3655258321 .background-color-AB5{background-color:#F7F8FE;} + .d2-3655258321 .color-N1{color:#0A0F25;} + .d2-3655258321 .color-N2{color:#676C7E;} + .d2-3655258321 .color-N3{color:#9499AB;} + .d2-3655258321 .color-N4{color:#CFD2DD;} + .d2-3655258321 .color-N5{color:#DEE1EB;} + .d2-3655258321 .color-N6{color:#EEF1F8;} + .d2-3655258321 .color-N7{color:#FFFFFF;} + .d2-3655258321 .color-B1{color:#0D32B2;} + .d2-3655258321 .color-B2{color:#0D32B2;} + .d2-3655258321 .color-B3{color:#E3E9FD;} + .d2-3655258321 .color-B4{color:#E3E9FD;} + .d2-3655258321 .color-B5{color:#EDF0FD;} + .d2-3655258321 .color-B6{color:#F7F8FE;} + .d2-3655258321 .color-AA2{color:#4A6FF3;} + .d2-3655258321 .color-AA4{color:#EDF0FD;} + .d2-3655258321 .color-AA5{color:#F7F8FE;} + .d2-3655258321 .color-AB4{color:#EDF0FD;} + .d2-3655258321 .color-AB5{color:#F7F8FE;}.appendix text.text{fill:#0A0F25}.md{--color-fg-default:#0A0F25;--color-fg-muted:#676C7E;--color-fg-subtle:#9499AB;--color-canvas-default:#FFFFFF;--color-canvas-subtle:#EEF1F8;--color-border-default:#0D32B2;--color-border-muted:#0D32B2;--color-neutral-muted:#EEF1F8;--color-accent-fg:#0D32B2;--color-accent-emphasis:#0D32B2;--color-attention-subtle:#676C7E;--color-danger-fg:red;}.sketch-overlay-B1{fill:url(#streaks-darker);mix-blend-mode:lighten}.sketch-overlay-B2{fill:url(#streaks-darker);mix-blend-mode:lighten}.sketch-overlay-B3{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-B4{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-B5{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-B6{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-AA2{fill:url(#streaks-dark);mix-blend-mode:overlay}.sketch-overlay-AA4{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-AA5{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-AB4{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-AB5{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-N1{fill:url(#streaks-darker);mix-blend-mode:lighten}.sketch-overlay-N2{fill:url(#streaks-dark);mix-blend-mode:overlay}.sketch-overlay-N3{fill:url(#streaks-normal);mix-blend-mode:color-burn}.sketch-overlay-N4{fill:url(#streaks-normal);mix-blend-mode:color-burn}.sketch-overlay-N5{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-N6{fill:url(#streaks-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 \ No newline at end of file diff --git a/d2renderers/d2sketch/testdata/basic_dark/sketch.exp.svg b/d2renderers/d2sketch/testdata/basic_dark/sketch.exp.svg index a67f85ff86..e5821a8cbc 100644 --- a/d2renderers/d2sketch/testdata/basic_dark/sketch.exp.svg +++ b/d2renderers/d2sketch/testdata/basic_dark/sketch.exp.svg @@ -1,9 +1,9 @@ - + .d2-3655258321 .fill-N1{fill:#CDD6F4;} + .d2-3655258321 .fill-N2{fill:#BAC2DE;} + .d2-3655258321 .fill-N3{fill:#A6ADC8;} + .d2-3655258321 .fill-N4{fill:#585B70;} + .d2-3655258321 .fill-N5{fill:#45475A;} + .d2-3655258321 .fill-N6{fill:#313244;} + .d2-3655258321 .fill-N7{fill:#1E1E2E;} + .d2-3655258321 .fill-B1{fill:#CBA6f7;} + .d2-3655258321 .fill-B2{fill:#CBA6f7;} + .d2-3655258321 .fill-B3{fill:#6C7086;} + .d2-3655258321 .fill-B4{fill:#585B70;} + .d2-3655258321 .fill-B5{fill:#45475A;} + .d2-3655258321 .fill-B6{fill:#313244;} + .d2-3655258321 .fill-AA2{fill:#f38BA8;} + .d2-3655258321 .fill-AA4{fill:#45475A;} + .d2-3655258321 .fill-AA5{fill:#313244;} + .d2-3655258321 .fill-AB4{fill:#45475A;} + .d2-3655258321 .fill-AB5{fill:#313244;} + .d2-3655258321 .stroke-N1{stroke:#CDD6F4;} + .d2-3655258321 .stroke-N2{stroke:#BAC2DE;} + .d2-3655258321 .stroke-N3{stroke:#A6ADC8;} + .d2-3655258321 .stroke-N4{stroke:#585B70;} + .d2-3655258321 .stroke-N5{stroke:#45475A;} + .d2-3655258321 .stroke-N6{stroke:#313244;} + .d2-3655258321 .stroke-N7{stroke:#1E1E2E;} + .d2-3655258321 .stroke-B1{stroke:#CBA6f7;} + .d2-3655258321 .stroke-B2{stroke:#CBA6f7;} + .d2-3655258321 .stroke-B3{stroke:#6C7086;} + .d2-3655258321 .stroke-B4{stroke:#585B70;} + .d2-3655258321 .stroke-B5{stroke:#45475A;} + .d2-3655258321 .stroke-B6{stroke:#313244;} + .d2-3655258321 .stroke-AA2{stroke:#f38BA8;} + .d2-3655258321 .stroke-AA4{stroke:#45475A;} + .d2-3655258321 .stroke-AA5{stroke:#313244;} + .d2-3655258321 .stroke-AB4{stroke:#45475A;} + .d2-3655258321 .stroke-AB5{stroke:#313244;} + .d2-3655258321 .background-color-N1{background-color:#CDD6F4;} + .d2-3655258321 .background-color-N2{background-color:#BAC2DE;} + .d2-3655258321 .background-color-N3{background-color:#A6ADC8;} + .d2-3655258321 .background-color-N4{background-color:#585B70;} + .d2-3655258321 .background-color-N5{background-color:#45475A;} + .d2-3655258321 .background-color-N6{background-color:#313244;} + .d2-3655258321 .background-color-N7{background-color:#1E1E2E;} + .d2-3655258321 .background-color-B1{background-color:#CBA6f7;} + .d2-3655258321 .background-color-B2{background-color:#CBA6f7;} + .d2-3655258321 .background-color-B3{background-color:#6C7086;} + .d2-3655258321 .background-color-B4{background-color:#585B70;} + .d2-3655258321 .background-color-B5{background-color:#45475A;} + .d2-3655258321 .background-color-B6{background-color:#313244;} + .d2-3655258321 .background-color-AA2{background-color:#f38BA8;} + .d2-3655258321 .background-color-AA4{background-color:#45475A;} + .d2-3655258321 .background-color-AA5{background-color:#313244;} + .d2-3655258321 .background-color-AB4{background-color:#45475A;} + .d2-3655258321 .background-color-AB5{background-color:#313244;} + .d2-3655258321 .color-N1{color:#CDD6F4;} + .d2-3655258321 .color-N2{color:#BAC2DE;} + .d2-3655258321 .color-N3{color:#A6ADC8;} + .d2-3655258321 .color-N4{color:#585B70;} + .d2-3655258321 .color-N5{color:#45475A;} + .d2-3655258321 .color-N6{color:#313244;} + .d2-3655258321 .color-N7{color:#1E1E2E;} + .d2-3655258321 .color-B1{color:#CBA6f7;} + .d2-3655258321 .color-B2{color:#CBA6f7;} + .d2-3655258321 .color-B3{color:#6C7086;} + .d2-3655258321 .color-B4{color:#585B70;} + .d2-3655258321 .color-B5{color:#45475A;} + .d2-3655258321 .color-B6{color:#313244;} + .d2-3655258321 .color-AA2{color:#f38BA8;} + .d2-3655258321 .color-AA4{color:#45475A;} + .d2-3655258321 .color-AA5{color:#313244;} + .d2-3655258321 .color-AB4{color:#45475A;} + .d2-3655258321 .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 \ No newline at end of file diff --git a/d2renderers/d2sketch/testdata/child_to_child/sketch.exp.svg b/d2renderers/d2sketch/testdata/child_to_child/sketch.exp.svg index 73a29e2ead..3f6fb324ae 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-306189979 .fill-N1{fill:#0A0F25;} + .d2-306189979 .fill-N2{fill:#676C7E;} + .d2-306189979 .fill-N3{fill:#9499AB;} + .d2-306189979 .fill-N4{fill:#CFD2DD;} + .d2-306189979 .fill-N5{fill:#DEE1EB;} + .d2-306189979 .fill-N6{fill:#EEF1F8;} + .d2-306189979 .fill-N7{fill:#FFFFFF;} + .d2-306189979 .fill-B1{fill:#0D32B2;} + .d2-306189979 .fill-B2{fill:#0D32B2;} + .d2-306189979 .fill-B3{fill:#E3E9FD;} + .d2-306189979 .fill-B4{fill:#E3E9FD;} + .d2-306189979 .fill-B5{fill:#EDF0FD;} + .d2-306189979 .fill-B6{fill:#F7F8FE;} + .d2-306189979 .fill-AA2{fill:#4A6FF3;} + .d2-306189979 .fill-AA4{fill:#EDF0FD;} + .d2-306189979 .fill-AA5{fill:#F7F8FE;} + .d2-306189979 .fill-AB4{fill:#EDF0FD;} + .d2-306189979 .fill-AB5{fill:#F7F8FE;} + .d2-306189979 .stroke-N1{stroke:#0A0F25;} + .d2-306189979 .stroke-N2{stroke:#676C7E;} + .d2-306189979 .stroke-N3{stroke:#9499AB;} + .d2-306189979 .stroke-N4{stroke:#CFD2DD;} + .d2-306189979 .stroke-N5{stroke:#DEE1EB;} + .d2-306189979 .stroke-N6{stroke:#EEF1F8;} + .d2-306189979 .stroke-N7{stroke:#FFFFFF;} + .d2-306189979 .stroke-B1{stroke:#0D32B2;} + .d2-306189979 .stroke-B2{stroke:#0D32B2;} + .d2-306189979 .stroke-B3{stroke:#E3E9FD;} + .d2-306189979 .stroke-B4{stroke:#E3E9FD;} + .d2-306189979 .stroke-B5{stroke:#EDF0FD;} + .d2-306189979 .stroke-B6{stroke:#F7F8FE;} + .d2-306189979 .stroke-AA2{stroke:#4A6FF3;} + .d2-306189979 .stroke-AA4{stroke:#EDF0FD;} + .d2-306189979 .stroke-AA5{stroke:#F7F8FE;} + .d2-306189979 .stroke-AB4{stroke:#EDF0FD;} + .d2-306189979 .stroke-AB5{stroke:#F7F8FE;} + .d2-306189979 .background-color-N1{background-color:#0A0F25;} + .d2-306189979 .background-color-N2{background-color:#676C7E;} + .d2-306189979 .background-color-N3{background-color:#9499AB;} + .d2-306189979 .background-color-N4{background-color:#CFD2DD;} + .d2-306189979 .background-color-N5{background-color:#DEE1EB;} + .d2-306189979 .background-color-N6{background-color:#EEF1F8;} + .d2-306189979 .background-color-N7{background-color:#FFFFFF;} + .d2-306189979 .background-color-B1{background-color:#0D32B2;} + .d2-306189979 .background-color-B2{background-color:#0D32B2;} + .d2-306189979 .background-color-B3{background-color:#E3E9FD;} + .d2-306189979 .background-color-B4{background-color:#E3E9FD;} + .d2-306189979 .background-color-B5{background-color:#EDF0FD;} + .d2-306189979 .background-color-B6{background-color:#F7F8FE;} + .d2-306189979 .background-color-AA2{background-color:#4A6FF3;} + .d2-306189979 .background-color-AA4{background-color:#EDF0FD;} + .d2-306189979 .background-color-AA5{background-color:#F7F8FE;} + .d2-306189979 .background-color-AB4{background-color:#EDF0FD;} + .d2-306189979 .background-color-AB5{background-color:#F7F8FE;} + .d2-306189979 .color-N1{color:#0A0F25;} + .d2-306189979 .color-N2{color:#676C7E;} + .d2-306189979 .color-N3{color:#9499AB;} + .d2-306189979 .color-N4{color:#CFD2DD;} + .d2-306189979 .color-N5{color:#DEE1EB;} + .d2-306189979 .color-N6{color:#EEF1F8;} + .d2-306189979 .color-N7{color:#FFFFFF;} + .d2-306189979 .color-B1{color:#0D32B2;} + .d2-306189979 .color-B2{color:#0D32B2;} + .d2-306189979 .color-B3{color:#E3E9FD;} + .d2-306189979 .color-B4{color:#E3E9FD;} + .d2-306189979 .color-B5{color:#EDF0FD;} + .d2-306189979 .color-B6{color:#F7F8FE;} + .d2-306189979 .color-AA2{color:#4A6FF3;} + .d2-306189979 .color-AA4{color:#EDF0FD;} + .d2-306189979 .color-AA5{color:#F7F8FE;} + .d2-306189979 .color-AB4{color:#EDF0FD;} + .d2-306189979 .color-AB5{color:#F7F8FE;}.appendix text.text{fill:#0A0F25}.md{--color-fg-default:#0A0F25;--color-fg-muted:#676C7E;--color-fg-subtle:#9499AB;--color-canvas-default:#FFFFFF;--color-canvas-subtle:#EEF1F8;--color-border-default:#0D32B2;--color-border-muted:#0D32B2;--color-neutral-muted:#EEF1F8;--color-accent-fg:#0D32B2;--color-accent-emphasis:#0D32B2;--color-attention-subtle:#676C7E;--color-danger-fg:red;}.sketch-overlay-B1{fill:url(#streaks-darker);mix-blend-mode:lighten}.sketch-overlay-B2{fill:url(#streaks-darker);mix-blend-mode:lighten}.sketch-overlay-B3{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-B4{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-B5{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-B6{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-AA2{fill:url(#streaks-dark);mix-blend-mode:overlay}.sketch-overlay-AA4{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-AA5{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-AB4{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-AB5{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-N1{fill:url(#streaks-darker);mix-blend-mode:lighten}.sketch-overlay-N2{fill:url(#streaks-dark);mix-blend-mode:overlay}.sketch-overlay-N3{fill:url(#streaks-normal);mix-blend-mode:color-burn}.sketch-overlay-N4{fill:url(#streaks-normal);mix-blend-mode:color-burn}.sketch-overlay-N5{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-N6{fill:url(#streaks-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 \ No newline at end of file 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 79e2a7852d..375d22b2fc 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-306189979 .fill-N1{fill:#CDD6F4;} + .d2-306189979 .fill-N2{fill:#BAC2DE;} + .d2-306189979 .fill-N3{fill:#A6ADC8;} + .d2-306189979 .fill-N4{fill:#585B70;} + .d2-306189979 .fill-N5{fill:#45475A;} + .d2-306189979 .fill-N6{fill:#313244;} + .d2-306189979 .fill-N7{fill:#1E1E2E;} + .d2-306189979 .fill-B1{fill:#CBA6f7;} + .d2-306189979 .fill-B2{fill:#CBA6f7;} + .d2-306189979 .fill-B3{fill:#6C7086;} + .d2-306189979 .fill-B4{fill:#585B70;} + .d2-306189979 .fill-B5{fill:#45475A;} + .d2-306189979 .fill-B6{fill:#313244;} + .d2-306189979 .fill-AA2{fill:#f38BA8;} + .d2-306189979 .fill-AA4{fill:#45475A;} + .d2-306189979 .fill-AA5{fill:#313244;} + .d2-306189979 .fill-AB4{fill:#45475A;} + .d2-306189979 .fill-AB5{fill:#313244;} + .d2-306189979 .stroke-N1{stroke:#CDD6F4;} + .d2-306189979 .stroke-N2{stroke:#BAC2DE;} + .d2-306189979 .stroke-N3{stroke:#A6ADC8;} + .d2-306189979 .stroke-N4{stroke:#585B70;} + .d2-306189979 .stroke-N5{stroke:#45475A;} + .d2-306189979 .stroke-N6{stroke:#313244;} + .d2-306189979 .stroke-N7{stroke:#1E1E2E;} + .d2-306189979 .stroke-B1{stroke:#CBA6f7;} + .d2-306189979 .stroke-B2{stroke:#CBA6f7;} + .d2-306189979 .stroke-B3{stroke:#6C7086;} + .d2-306189979 .stroke-B4{stroke:#585B70;} + .d2-306189979 .stroke-B5{stroke:#45475A;} + .d2-306189979 .stroke-B6{stroke:#313244;} + .d2-306189979 .stroke-AA2{stroke:#f38BA8;} + .d2-306189979 .stroke-AA4{stroke:#45475A;} + .d2-306189979 .stroke-AA5{stroke:#313244;} + .d2-306189979 .stroke-AB4{stroke:#45475A;} + .d2-306189979 .stroke-AB5{stroke:#313244;} + .d2-306189979 .background-color-N1{background-color:#CDD6F4;} + .d2-306189979 .background-color-N2{background-color:#BAC2DE;} + .d2-306189979 .background-color-N3{background-color:#A6ADC8;} + .d2-306189979 .background-color-N4{background-color:#585B70;} + .d2-306189979 .background-color-N5{background-color:#45475A;} + .d2-306189979 .background-color-N6{background-color:#313244;} + .d2-306189979 .background-color-N7{background-color:#1E1E2E;} + .d2-306189979 .background-color-B1{background-color:#CBA6f7;} + .d2-306189979 .background-color-B2{background-color:#CBA6f7;} + .d2-306189979 .background-color-B3{background-color:#6C7086;} + .d2-306189979 .background-color-B4{background-color:#585B70;} + .d2-306189979 .background-color-B5{background-color:#45475A;} + .d2-306189979 .background-color-B6{background-color:#313244;} + .d2-306189979 .background-color-AA2{background-color:#f38BA8;} + .d2-306189979 .background-color-AA4{background-color:#45475A;} + .d2-306189979 .background-color-AA5{background-color:#313244;} + .d2-306189979 .background-color-AB4{background-color:#45475A;} + .d2-306189979 .background-color-AB5{background-color:#313244;} + .d2-306189979 .color-N1{color:#CDD6F4;} + .d2-306189979 .color-N2{color:#BAC2DE;} + .d2-306189979 .color-N3{color:#A6ADC8;} + .d2-306189979 .color-N4{color:#585B70;} + .d2-306189979 .color-N5{color:#45475A;} + .d2-306189979 .color-N6{color:#313244;} + .d2-306189979 .color-N7{color:#1E1E2E;} + .d2-306189979 .color-B1{color:#CBA6f7;} + .d2-306189979 .color-B2{color:#CBA6f7;} + .d2-306189979 .color-B3{color:#6C7086;} + .d2-306189979 .color-B4{color:#585B70;} + .d2-306189979 .color-B5{color:#45475A;} + .d2-306189979 .color-B6{color:#313244;} + .d2-306189979 .color-AA2{color:#f38BA8;} + .d2-306189979 .color-AA4{color:#45475A;} + .d2-306189979 .color-AA5{color:#313244;} + .d2-306189979 .color-AB4{color:#45475A;} + .d2-306189979 .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 \ No newline at end of file diff --git a/d2renderers/d2sketch/testdata/connection_label/sketch.exp.svg b/d2renderers/d2sketch/testdata/connection_label/sketch.exp.svg index c1687f1c7d..185d99a54c 100644 --- a/d2renderers/d2sketch/testdata/connection_label/sketch.exp.svg +++ b/d2renderers/d2sketch/testdata/connection_label/sketch.exp.svg @@ -1,16 +1,16 @@ - + .d2-3948006794 .fill-N1{fill:#0A0F25;} + .d2-3948006794 .fill-N2{fill:#676C7E;} + .d2-3948006794 .fill-N3{fill:#9499AB;} + .d2-3948006794 .fill-N4{fill:#CFD2DD;} + .d2-3948006794 .fill-N5{fill:#DEE1EB;} + .d2-3948006794 .fill-N6{fill:#EEF1F8;} + .d2-3948006794 .fill-N7{fill:#FFFFFF;} + .d2-3948006794 .fill-B1{fill:#0D32B2;} + .d2-3948006794 .fill-B2{fill:#0D32B2;} + .d2-3948006794 .fill-B3{fill:#E3E9FD;} + .d2-3948006794 .fill-B4{fill:#E3E9FD;} + .d2-3948006794 .fill-B5{fill:#EDF0FD;} + .d2-3948006794 .fill-B6{fill:#F7F8FE;} + .d2-3948006794 .fill-AA2{fill:#4A6FF3;} + .d2-3948006794 .fill-AA4{fill:#EDF0FD;} + .d2-3948006794 .fill-AA5{fill:#F7F8FE;} + .d2-3948006794 .fill-AB4{fill:#EDF0FD;} + .d2-3948006794 .fill-AB5{fill:#F7F8FE;} + .d2-3948006794 .stroke-N1{stroke:#0A0F25;} + .d2-3948006794 .stroke-N2{stroke:#676C7E;} + .d2-3948006794 .stroke-N3{stroke:#9499AB;} + .d2-3948006794 .stroke-N4{stroke:#CFD2DD;} + .d2-3948006794 .stroke-N5{stroke:#DEE1EB;} + .d2-3948006794 .stroke-N6{stroke:#EEF1F8;} + .d2-3948006794 .stroke-N7{stroke:#FFFFFF;} + .d2-3948006794 .stroke-B1{stroke:#0D32B2;} + .d2-3948006794 .stroke-B2{stroke:#0D32B2;} + .d2-3948006794 .stroke-B3{stroke:#E3E9FD;} + .d2-3948006794 .stroke-B4{stroke:#E3E9FD;} + .d2-3948006794 .stroke-B5{stroke:#EDF0FD;} + .d2-3948006794 .stroke-B6{stroke:#F7F8FE;} + .d2-3948006794 .stroke-AA2{stroke:#4A6FF3;} + .d2-3948006794 .stroke-AA4{stroke:#EDF0FD;} + .d2-3948006794 .stroke-AA5{stroke:#F7F8FE;} + .d2-3948006794 .stroke-AB4{stroke:#EDF0FD;} + .d2-3948006794 .stroke-AB5{stroke:#F7F8FE;} + .d2-3948006794 .background-color-N1{background-color:#0A0F25;} + .d2-3948006794 .background-color-N2{background-color:#676C7E;} + .d2-3948006794 .background-color-N3{background-color:#9499AB;} + .d2-3948006794 .background-color-N4{background-color:#CFD2DD;} + .d2-3948006794 .background-color-N5{background-color:#DEE1EB;} + .d2-3948006794 .background-color-N6{background-color:#EEF1F8;} + .d2-3948006794 .background-color-N7{background-color:#FFFFFF;} + .d2-3948006794 .background-color-B1{background-color:#0D32B2;} + .d2-3948006794 .background-color-B2{background-color:#0D32B2;} + .d2-3948006794 .background-color-B3{background-color:#E3E9FD;} + .d2-3948006794 .background-color-B4{background-color:#E3E9FD;} + .d2-3948006794 .background-color-B5{background-color:#EDF0FD;} + .d2-3948006794 .background-color-B6{background-color:#F7F8FE;} + .d2-3948006794 .background-color-AA2{background-color:#4A6FF3;} + .d2-3948006794 .background-color-AA4{background-color:#EDF0FD;} + .d2-3948006794 .background-color-AA5{background-color:#F7F8FE;} + .d2-3948006794 .background-color-AB4{background-color:#EDF0FD;} + .d2-3948006794 .background-color-AB5{background-color:#F7F8FE;} + .d2-3948006794 .color-N1{color:#0A0F25;} + .d2-3948006794 .color-N2{color:#676C7E;} + .d2-3948006794 .color-N3{color:#9499AB;} + .d2-3948006794 .color-N4{color:#CFD2DD;} + .d2-3948006794 .color-N5{color:#DEE1EB;} + .d2-3948006794 .color-N6{color:#EEF1F8;} + .d2-3948006794 .color-N7{color:#FFFFFF;} + .d2-3948006794 .color-B1{color:#0D32B2;} + .d2-3948006794 .color-B2{color:#0D32B2;} + .d2-3948006794 .color-B3{color:#E3E9FD;} + .d2-3948006794 .color-B4{color:#E3E9FD;} + .d2-3948006794 .color-B5{color:#EDF0FD;} + .d2-3948006794 .color-B6{color:#F7F8FE;} + .d2-3948006794 .color-AA2{color:#4A6FF3;} + .d2-3948006794 .color-AA4{color:#EDF0FD;} + .d2-3948006794 .color-AA5{color:#F7F8FE;} + .d2-3948006794 .color-AB4{color:#EDF0FD;} + .d2-3948006794 .color-AB5{color:#F7F8FE;}.appendix text.text{fill:#0A0F25}.md{--color-fg-default:#0A0F25;--color-fg-muted:#676C7E;--color-fg-subtle:#9499AB;--color-canvas-default:#FFFFFF;--color-canvas-subtle:#EEF1F8;--color-border-default:#0D32B2;--color-border-muted:#0D32B2;--color-neutral-muted:#EEF1F8;--color-accent-fg:#0D32B2;--color-accent-emphasis:#0D32B2;--color-attention-subtle:#676C7E;--color-danger-fg:red;}.sketch-overlay-B1{fill:url(#streaks-darker);mix-blend-mode:lighten}.sketch-overlay-B2{fill:url(#streaks-darker);mix-blend-mode:lighten}.sketch-overlay-B3{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-B4{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-B5{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-B6{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-AA2{fill:url(#streaks-dark);mix-blend-mode:overlay}.sketch-overlay-AA4{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-AA5{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-AB4{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-AB5{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-N1{fill:url(#streaks-darker);mix-blend-mode:lighten}.sketch-overlay-N2{fill:url(#streaks-dark);mix-blend-mode:overlay}.sketch-overlay-N3{fill:url(#streaks-normal);mix-blend-mode:color-burn}.sketch-overlay-N4{fill:url(#streaks-normal);mix-blend-mode:color-burn}.sketch-overlay-N5{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-N6{fill:url(#streaks-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 \ No newline at end of file diff --git a/d2renderers/d2sketch/testdata/connection_label_dark/sketch.exp.svg b/d2renderers/d2sketch/testdata/connection_label_dark/sketch.exp.svg index 428aa73d40..712e50f7a6 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-3948006794 .fill-N1{fill:#CDD6F4;} + .d2-3948006794 .fill-N2{fill:#BAC2DE;} + .d2-3948006794 .fill-N3{fill:#A6ADC8;} + .d2-3948006794 .fill-N4{fill:#585B70;} + .d2-3948006794 .fill-N5{fill:#45475A;} + .d2-3948006794 .fill-N6{fill:#313244;} + .d2-3948006794 .fill-N7{fill:#1E1E2E;} + .d2-3948006794 .fill-B1{fill:#CBA6f7;} + .d2-3948006794 .fill-B2{fill:#CBA6f7;} + .d2-3948006794 .fill-B3{fill:#6C7086;} + .d2-3948006794 .fill-B4{fill:#585B70;} + .d2-3948006794 .fill-B5{fill:#45475A;} + .d2-3948006794 .fill-B6{fill:#313244;} + .d2-3948006794 .fill-AA2{fill:#f38BA8;} + .d2-3948006794 .fill-AA4{fill:#45475A;} + .d2-3948006794 .fill-AA5{fill:#313244;} + .d2-3948006794 .fill-AB4{fill:#45475A;} + .d2-3948006794 .fill-AB5{fill:#313244;} + .d2-3948006794 .stroke-N1{stroke:#CDD6F4;} + .d2-3948006794 .stroke-N2{stroke:#BAC2DE;} + .d2-3948006794 .stroke-N3{stroke:#A6ADC8;} + .d2-3948006794 .stroke-N4{stroke:#585B70;} + .d2-3948006794 .stroke-N5{stroke:#45475A;} + .d2-3948006794 .stroke-N6{stroke:#313244;} + .d2-3948006794 .stroke-N7{stroke:#1E1E2E;} + .d2-3948006794 .stroke-B1{stroke:#CBA6f7;} + .d2-3948006794 .stroke-B2{stroke:#CBA6f7;} + .d2-3948006794 .stroke-B3{stroke:#6C7086;} + .d2-3948006794 .stroke-B4{stroke:#585B70;} + .d2-3948006794 .stroke-B5{stroke:#45475A;} + .d2-3948006794 .stroke-B6{stroke:#313244;} + .d2-3948006794 .stroke-AA2{stroke:#f38BA8;} + .d2-3948006794 .stroke-AA4{stroke:#45475A;} + .d2-3948006794 .stroke-AA5{stroke:#313244;} + .d2-3948006794 .stroke-AB4{stroke:#45475A;} + .d2-3948006794 .stroke-AB5{stroke:#313244;} + .d2-3948006794 .background-color-N1{background-color:#CDD6F4;} + .d2-3948006794 .background-color-N2{background-color:#BAC2DE;} + .d2-3948006794 .background-color-N3{background-color:#A6ADC8;} + .d2-3948006794 .background-color-N4{background-color:#585B70;} + .d2-3948006794 .background-color-N5{background-color:#45475A;} + .d2-3948006794 .background-color-N6{background-color:#313244;} + .d2-3948006794 .background-color-N7{background-color:#1E1E2E;} + .d2-3948006794 .background-color-B1{background-color:#CBA6f7;} + .d2-3948006794 .background-color-B2{background-color:#CBA6f7;} + .d2-3948006794 .background-color-B3{background-color:#6C7086;} + .d2-3948006794 .background-color-B4{background-color:#585B70;} + .d2-3948006794 .background-color-B5{background-color:#45475A;} + .d2-3948006794 .background-color-B6{background-color:#313244;} + .d2-3948006794 .background-color-AA2{background-color:#f38BA8;} + .d2-3948006794 .background-color-AA4{background-color:#45475A;} + .d2-3948006794 .background-color-AA5{background-color:#313244;} + .d2-3948006794 .background-color-AB4{background-color:#45475A;} + .d2-3948006794 .background-color-AB5{background-color:#313244;} + .d2-3948006794 .color-N1{color:#CDD6F4;} + .d2-3948006794 .color-N2{color:#BAC2DE;} + .d2-3948006794 .color-N3{color:#A6ADC8;} + .d2-3948006794 .color-N4{color:#585B70;} + .d2-3948006794 .color-N5{color:#45475A;} + .d2-3948006794 .color-N6{color:#313244;} + .d2-3948006794 .color-N7{color:#1E1E2E;} + .d2-3948006794 .color-B1{color:#CBA6f7;} + .d2-3948006794 .color-B2{color:#CBA6f7;} + .d2-3948006794 .color-B3{color:#6C7086;} + .d2-3948006794 .color-B4{color:#585B70;} + .d2-3948006794 .color-B5{color:#45475A;} + .d2-3948006794 .color-B6{color:#313244;} + .d2-3948006794 .color-AA2{color:#f38BA8;} + .d2-3948006794 .color-AA4{color:#45475A;} + .d2-3948006794 .color-AA5{color:#313244;} + .d2-3948006794 .color-AB4{color:#45475A;} + .d2-3948006794 .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 \ No newline at end of file diff --git a/d2renderers/d2sketch/testdata/crows_feet/sketch.exp.svg b/d2renderers/d2sketch/testdata/crows_feet/sketch.exp.svg index cfe56fccbb..3ac2c056c6 100644 --- a/d2renderers/d2sketch/testdata/crows_feet/sketch.exp.svg +++ b/d2renderers/d2sketch/testdata/crows_feet/sketch.exp.svg @@ -1,9 +1,9 @@ - + .d2-1627282290 .fill-N1{fill:#0A0F25;} + .d2-1627282290 .fill-N2{fill:#676C7E;} + .d2-1627282290 .fill-N3{fill:#9499AB;} + .d2-1627282290 .fill-N4{fill:#CFD2DD;} + .d2-1627282290 .fill-N5{fill:#DEE1EB;} + .d2-1627282290 .fill-N6{fill:#EEF1F8;} + .d2-1627282290 .fill-N7{fill:#FFFFFF;} + .d2-1627282290 .fill-B1{fill:#0D32B2;} + .d2-1627282290 .fill-B2{fill:#0D32B2;} + .d2-1627282290 .fill-B3{fill:#E3E9FD;} + .d2-1627282290 .fill-B4{fill:#E3E9FD;} + .d2-1627282290 .fill-B5{fill:#EDF0FD;} + .d2-1627282290 .fill-B6{fill:#F7F8FE;} + .d2-1627282290 .fill-AA2{fill:#4A6FF3;} + .d2-1627282290 .fill-AA4{fill:#EDF0FD;} + .d2-1627282290 .fill-AA5{fill:#F7F8FE;} + .d2-1627282290 .fill-AB4{fill:#EDF0FD;} + .d2-1627282290 .fill-AB5{fill:#F7F8FE;} + .d2-1627282290 .stroke-N1{stroke:#0A0F25;} + .d2-1627282290 .stroke-N2{stroke:#676C7E;} + .d2-1627282290 .stroke-N3{stroke:#9499AB;} + .d2-1627282290 .stroke-N4{stroke:#CFD2DD;} + .d2-1627282290 .stroke-N5{stroke:#DEE1EB;} + .d2-1627282290 .stroke-N6{stroke:#EEF1F8;} + .d2-1627282290 .stroke-N7{stroke:#FFFFFF;} + .d2-1627282290 .stroke-B1{stroke:#0D32B2;} + .d2-1627282290 .stroke-B2{stroke:#0D32B2;} + .d2-1627282290 .stroke-B3{stroke:#E3E9FD;} + .d2-1627282290 .stroke-B4{stroke:#E3E9FD;} + .d2-1627282290 .stroke-B5{stroke:#EDF0FD;} + .d2-1627282290 .stroke-B6{stroke:#F7F8FE;} + .d2-1627282290 .stroke-AA2{stroke:#4A6FF3;} + .d2-1627282290 .stroke-AA4{stroke:#EDF0FD;} + .d2-1627282290 .stroke-AA5{stroke:#F7F8FE;} + .d2-1627282290 .stroke-AB4{stroke:#EDF0FD;} + .d2-1627282290 .stroke-AB5{stroke:#F7F8FE;} + .d2-1627282290 .background-color-N1{background-color:#0A0F25;} + .d2-1627282290 .background-color-N2{background-color:#676C7E;} + .d2-1627282290 .background-color-N3{background-color:#9499AB;} + .d2-1627282290 .background-color-N4{background-color:#CFD2DD;} + .d2-1627282290 .background-color-N5{background-color:#DEE1EB;} + .d2-1627282290 .background-color-N6{background-color:#EEF1F8;} + .d2-1627282290 .background-color-N7{background-color:#FFFFFF;} + .d2-1627282290 .background-color-B1{background-color:#0D32B2;} + .d2-1627282290 .background-color-B2{background-color:#0D32B2;} + .d2-1627282290 .background-color-B3{background-color:#E3E9FD;} + .d2-1627282290 .background-color-B4{background-color:#E3E9FD;} + .d2-1627282290 .background-color-B5{background-color:#EDF0FD;} + .d2-1627282290 .background-color-B6{background-color:#F7F8FE;} + .d2-1627282290 .background-color-AA2{background-color:#4A6FF3;} + .d2-1627282290 .background-color-AA4{background-color:#EDF0FD;} + .d2-1627282290 .background-color-AA5{background-color:#F7F8FE;} + .d2-1627282290 .background-color-AB4{background-color:#EDF0FD;} + .d2-1627282290 .background-color-AB5{background-color:#F7F8FE;} + .d2-1627282290 .color-N1{color:#0A0F25;} + .d2-1627282290 .color-N2{color:#676C7E;} + .d2-1627282290 .color-N3{color:#9499AB;} + .d2-1627282290 .color-N4{color:#CFD2DD;} + .d2-1627282290 .color-N5{color:#DEE1EB;} + .d2-1627282290 .color-N6{color:#EEF1F8;} + .d2-1627282290 .color-N7{color:#FFFFFF;} + .d2-1627282290 .color-B1{color:#0D32B2;} + .d2-1627282290 .color-B2{color:#0D32B2;} + .d2-1627282290 .color-B3{color:#E3E9FD;} + .d2-1627282290 .color-B4{color:#E3E9FD;} + .d2-1627282290 .color-B5{color:#EDF0FD;} + .d2-1627282290 .color-B6{color:#F7F8FE;} + .d2-1627282290 .color-AA2{color:#4A6FF3;} + .d2-1627282290 .color-AA4{color:#EDF0FD;} + .d2-1627282290 .color-AA5{color:#F7F8FE;} + .d2-1627282290 .color-AB4{color:#EDF0FD;} + .d2-1627282290 .color-AB5{color:#F7F8FE;}.appendix text.text{fill:#0A0F25}.md{--color-fg-default:#0A0F25;--color-fg-muted:#676C7E;--color-fg-subtle:#9499AB;--color-canvas-default:#FFFFFF;--color-canvas-subtle:#EEF1F8;--color-border-default:#0D32B2;--color-border-muted:#0D32B2;--color-neutral-muted:#EEF1F8;--color-accent-fg:#0D32B2;--color-accent-emphasis:#0D32B2;--color-attention-subtle:#676C7E;--color-danger-fg:red;}.sketch-overlay-B1{fill:url(#streaks-darker);mix-blend-mode:lighten}.sketch-overlay-B2{fill:url(#streaks-darker);mix-blend-mode:lighten}.sketch-overlay-B3{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-B4{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-B5{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-B6{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-AA2{fill:url(#streaks-dark);mix-blend-mode:overlay}.sketch-overlay-AA4{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-AA5{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-AB4{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-AB5{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-N1{fill:url(#streaks-darker);mix-blend-mode:lighten}.sketch-overlay-N2{fill:url(#streaks-dark);mix-blend-mode:overlay}.sketch-overlay-N3{fill:url(#streaks-normal);mix-blend-mode:color-burn}.sketch-overlay-N4{fill:url(#streaks-normal);mix-blend-mode:color-burn}.sketch-overlay-N5{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-N6{fill:url(#streaks-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 \ No newline at end of file diff --git a/d2renderers/d2sketch/testdata/crows_feet_dark/sketch.exp.svg b/d2renderers/d2sketch/testdata/crows_feet_dark/sketch.exp.svg index 894e09072e..414d405df1 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-1627282290 .fill-N1{fill:#CDD6F4;} + .d2-1627282290 .fill-N2{fill:#BAC2DE;} + .d2-1627282290 .fill-N3{fill:#A6ADC8;} + .d2-1627282290 .fill-N4{fill:#585B70;} + .d2-1627282290 .fill-N5{fill:#45475A;} + .d2-1627282290 .fill-N6{fill:#313244;} + .d2-1627282290 .fill-N7{fill:#1E1E2E;} + .d2-1627282290 .fill-B1{fill:#CBA6f7;} + .d2-1627282290 .fill-B2{fill:#CBA6f7;} + .d2-1627282290 .fill-B3{fill:#6C7086;} + .d2-1627282290 .fill-B4{fill:#585B70;} + .d2-1627282290 .fill-B5{fill:#45475A;} + .d2-1627282290 .fill-B6{fill:#313244;} + .d2-1627282290 .fill-AA2{fill:#f38BA8;} + .d2-1627282290 .fill-AA4{fill:#45475A;} + .d2-1627282290 .fill-AA5{fill:#313244;} + .d2-1627282290 .fill-AB4{fill:#45475A;} + .d2-1627282290 .fill-AB5{fill:#313244;} + .d2-1627282290 .stroke-N1{stroke:#CDD6F4;} + .d2-1627282290 .stroke-N2{stroke:#BAC2DE;} + .d2-1627282290 .stroke-N3{stroke:#A6ADC8;} + .d2-1627282290 .stroke-N4{stroke:#585B70;} + .d2-1627282290 .stroke-N5{stroke:#45475A;} + .d2-1627282290 .stroke-N6{stroke:#313244;} + .d2-1627282290 .stroke-N7{stroke:#1E1E2E;} + .d2-1627282290 .stroke-B1{stroke:#CBA6f7;} + .d2-1627282290 .stroke-B2{stroke:#CBA6f7;} + .d2-1627282290 .stroke-B3{stroke:#6C7086;} + .d2-1627282290 .stroke-B4{stroke:#585B70;} + .d2-1627282290 .stroke-B5{stroke:#45475A;} + .d2-1627282290 .stroke-B6{stroke:#313244;} + .d2-1627282290 .stroke-AA2{stroke:#f38BA8;} + .d2-1627282290 .stroke-AA4{stroke:#45475A;} + .d2-1627282290 .stroke-AA5{stroke:#313244;} + .d2-1627282290 .stroke-AB4{stroke:#45475A;} + .d2-1627282290 .stroke-AB5{stroke:#313244;} + .d2-1627282290 .background-color-N1{background-color:#CDD6F4;} + .d2-1627282290 .background-color-N2{background-color:#BAC2DE;} + .d2-1627282290 .background-color-N3{background-color:#A6ADC8;} + .d2-1627282290 .background-color-N4{background-color:#585B70;} + .d2-1627282290 .background-color-N5{background-color:#45475A;} + .d2-1627282290 .background-color-N6{background-color:#313244;} + .d2-1627282290 .background-color-N7{background-color:#1E1E2E;} + .d2-1627282290 .background-color-B1{background-color:#CBA6f7;} + .d2-1627282290 .background-color-B2{background-color:#CBA6f7;} + .d2-1627282290 .background-color-B3{background-color:#6C7086;} + .d2-1627282290 .background-color-B4{background-color:#585B70;} + .d2-1627282290 .background-color-B5{background-color:#45475A;} + .d2-1627282290 .background-color-B6{background-color:#313244;} + .d2-1627282290 .background-color-AA2{background-color:#f38BA8;} + .d2-1627282290 .background-color-AA4{background-color:#45475A;} + .d2-1627282290 .background-color-AA5{background-color:#313244;} + .d2-1627282290 .background-color-AB4{background-color:#45475A;} + .d2-1627282290 .background-color-AB5{background-color:#313244;} + .d2-1627282290 .color-N1{color:#CDD6F4;} + .d2-1627282290 .color-N2{color:#BAC2DE;} + .d2-1627282290 .color-N3{color:#A6ADC8;} + .d2-1627282290 .color-N4{color:#585B70;} + .d2-1627282290 .color-N5{color:#45475A;} + .d2-1627282290 .color-N6{color:#313244;} + .d2-1627282290 .color-N7{color:#1E1E2E;} + .d2-1627282290 .color-B1{color:#CBA6f7;} + .d2-1627282290 .color-B2{color:#CBA6f7;} + .d2-1627282290 .color-B3{color:#6C7086;} + .d2-1627282290 .color-B4{color:#585B70;} + .d2-1627282290 .color-B5{color:#45475A;} + .d2-1627282290 .color-B6{color:#313244;} + .d2-1627282290 .color-AA2{color:#f38BA8;} + .d2-1627282290 .color-AA4{color:#45475A;} + .d2-1627282290 .color-AA5{color:#313244;} + .d2-1627282290 .color-AB4{color:#45475A;} + .d2-1627282290 .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 \ No newline at end of file diff --git a/d2renderers/d2sketch/testdata/dots-all/sketch.exp.svg b/d2renderers/d2sketch/testdata/dots-all/sketch.exp.svg index 5b9cec810c..27d62774fc 100644 --- a/d2renderers/d2sketch/testdata/dots-all/sketch.exp.svg +++ b/d2renderers/d2sketch/testdata/dots-all/sketch.exp.svg @@ -1,9 +1,9 @@ - + .d2-2745465121 .fill-N1{fill:#0A0F25;} + .d2-2745465121 .fill-N2{fill:#676C7E;} + .d2-2745465121 .fill-N3{fill:#9499AB;} + .d2-2745465121 .fill-N4{fill:#CFD2DD;} + .d2-2745465121 .fill-N5{fill:#DEE1EB;} + .d2-2745465121 .fill-N6{fill:#EEF1F8;} + .d2-2745465121 .fill-N7{fill:#FFFFFF;} + .d2-2745465121 .fill-B1{fill:#0D32B2;} + .d2-2745465121 .fill-B2{fill:#0D32B2;} + .d2-2745465121 .fill-B3{fill:#E3E9FD;} + .d2-2745465121 .fill-B4{fill:#E3E9FD;} + .d2-2745465121 .fill-B5{fill:#EDF0FD;} + .d2-2745465121 .fill-B6{fill:#F7F8FE;} + .d2-2745465121 .fill-AA2{fill:#4A6FF3;} + .d2-2745465121 .fill-AA4{fill:#EDF0FD;} + .d2-2745465121 .fill-AA5{fill:#F7F8FE;} + .d2-2745465121 .fill-AB4{fill:#EDF0FD;} + .d2-2745465121 .fill-AB5{fill:#F7F8FE;} + .d2-2745465121 .stroke-N1{stroke:#0A0F25;} + .d2-2745465121 .stroke-N2{stroke:#676C7E;} + .d2-2745465121 .stroke-N3{stroke:#9499AB;} + .d2-2745465121 .stroke-N4{stroke:#CFD2DD;} + .d2-2745465121 .stroke-N5{stroke:#DEE1EB;} + .d2-2745465121 .stroke-N6{stroke:#EEF1F8;} + .d2-2745465121 .stroke-N7{stroke:#FFFFFF;} + .d2-2745465121 .stroke-B1{stroke:#0D32B2;} + .d2-2745465121 .stroke-B2{stroke:#0D32B2;} + .d2-2745465121 .stroke-B3{stroke:#E3E9FD;} + .d2-2745465121 .stroke-B4{stroke:#E3E9FD;} + .d2-2745465121 .stroke-B5{stroke:#EDF0FD;} + .d2-2745465121 .stroke-B6{stroke:#F7F8FE;} + .d2-2745465121 .stroke-AA2{stroke:#4A6FF3;} + .d2-2745465121 .stroke-AA4{stroke:#EDF0FD;} + .d2-2745465121 .stroke-AA5{stroke:#F7F8FE;} + .d2-2745465121 .stroke-AB4{stroke:#EDF0FD;} + .d2-2745465121 .stroke-AB5{stroke:#F7F8FE;} + .d2-2745465121 .background-color-N1{background-color:#0A0F25;} + .d2-2745465121 .background-color-N2{background-color:#676C7E;} + .d2-2745465121 .background-color-N3{background-color:#9499AB;} + .d2-2745465121 .background-color-N4{background-color:#CFD2DD;} + .d2-2745465121 .background-color-N5{background-color:#DEE1EB;} + .d2-2745465121 .background-color-N6{background-color:#EEF1F8;} + .d2-2745465121 .background-color-N7{background-color:#FFFFFF;} + .d2-2745465121 .background-color-B1{background-color:#0D32B2;} + .d2-2745465121 .background-color-B2{background-color:#0D32B2;} + .d2-2745465121 .background-color-B3{background-color:#E3E9FD;} + .d2-2745465121 .background-color-B4{background-color:#E3E9FD;} + .d2-2745465121 .background-color-B5{background-color:#EDF0FD;} + .d2-2745465121 .background-color-B6{background-color:#F7F8FE;} + .d2-2745465121 .background-color-AA2{background-color:#4A6FF3;} + .d2-2745465121 .background-color-AA4{background-color:#EDF0FD;} + .d2-2745465121 .background-color-AA5{background-color:#F7F8FE;} + .d2-2745465121 .background-color-AB4{background-color:#EDF0FD;} + .d2-2745465121 .background-color-AB5{background-color:#F7F8FE;} + .d2-2745465121 .color-N1{color:#0A0F25;} + .d2-2745465121 .color-N2{color:#676C7E;} + .d2-2745465121 .color-N3{color:#9499AB;} + .d2-2745465121 .color-N4{color:#CFD2DD;} + .d2-2745465121 .color-N5{color:#DEE1EB;} + .d2-2745465121 .color-N6{color:#EEF1F8;} + .d2-2745465121 .color-N7{color:#FFFFFF;} + .d2-2745465121 .color-B1{color:#0D32B2;} + .d2-2745465121 .color-B2{color:#0D32B2;} + .d2-2745465121 .color-B3{color:#E3E9FD;} + .d2-2745465121 .color-B4{color:#E3E9FD;} + .d2-2745465121 .color-B5{color:#EDF0FD;} + .d2-2745465121 .color-B6{color:#F7F8FE;} + .d2-2745465121 .color-AA2{color:#4A6FF3;} + .d2-2745465121 .color-AA4{color:#EDF0FD;} + .d2-2745465121 .color-AA5{color:#F7F8FE;} + .d2-2745465121 .color-AB4{color:#EDF0FD;} + .d2-2745465121 .color-AB5{color:#F7F8FE;}.appendix text.text{fill:#0A0F25}.md{--color-fg-default:#0A0F25;--color-fg-muted:#676C7E;--color-fg-subtle:#9499AB;--color-canvas-default:#FFFFFF;--color-canvas-subtle:#EEF1F8;--color-border-default:#0D32B2;--color-border-muted:#0D32B2;--color-neutral-muted:#EEF1F8;--color-accent-fg:#0D32B2;--color-accent-emphasis:#0D32B2;--color-attention-subtle:#676C7E;--color-danger-fg:red;}.sketch-overlay-B1{fill:url(#streaks-darker);mix-blend-mode:lighten}.sketch-overlay-B2{fill:url(#streaks-darker);mix-blend-mode:lighten}.sketch-overlay-B3{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-B4{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-B5{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-B6{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-AA2{fill:url(#streaks-dark);mix-blend-mode:overlay}.sketch-overlay-AA4{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-AA5{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-AB4{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-AB5{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-N1{fill:url(#streaks-darker);mix-blend-mode:lighten}.sketch-overlay-N2{fill:url(#streaks-dark);mix-blend-mode:overlay}.sketch-overlay-N3{fill:url(#streaks-normal);mix-blend-mode:color-burn}.sketch-overlay-N4{fill:url(#streaks-normal);mix-blend-mode:color-burn}.sketch-overlay-N5{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-N6{fill:url(#streaks-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 \ No newline at end of file diff --git a/d2renderers/d2sketch/testdata/dots-multiple/sketch.exp.svg b/d2renderers/d2sketch/testdata/dots-multiple/sketch.exp.svg index 6f0dd37c96..e7b0873750 100644 --- a/d2renderers/d2sketch/testdata/dots-multiple/sketch.exp.svg +++ b/d2renderers/d2sketch/testdata/dots-multiple/sketch.exp.svg @@ -1,9 +1,9 @@ - + .d2-4165952162 .fill-N1{fill:#0A0F25;} + .d2-4165952162 .fill-N2{fill:#676C7E;} + .d2-4165952162 .fill-N3{fill:#9499AB;} + .d2-4165952162 .fill-N4{fill:#CFD2DD;} + .d2-4165952162 .fill-N5{fill:#DEE1EB;} + .d2-4165952162 .fill-N6{fill:#EEF1F8;} + .d2-4165952162 .fill-N7{fill:#FFFFFF;} + .d2-4165952162 .fill-B1{fill:#0D32B2;} + .d2-4165952162 .fill-B2{fill:#0D32B2;} + .d2-4165952162 .fill-B3{fill:#E3E9FD;} + .d2-4165952162 .fill-B4{fill:#E3E9FD;} + .d2-4165952162 .fill-B5{fill:#EDF0FD;} + .d2-4165952162 .fill-B6{fill:#F7F8FE;} + .d2-4165952162 .fill-AA2{fill:#4A6FF3;} + .d2-4165952162 .fill-AA4{fill:#EDF0FD;} + .d2-4165952162 .fill-AA5{fill:#F7F8FE;} + .d2-4165952162 .fill-AB4{fill:#EDF0FD;} + .d2-4165952162 .fill-AB5{fill:#F7F8FE;} + .d2-4165952162 .stroke-N1{stroke:#0A0F25;} + .d2-4165952162 .stroke-N2{stroke:#676C7E;} + .d2-4165952162 .stroke-N3{stroke:#9499AB;} + .d2-4165952162 .stroke-N4{stroke:#CFD2DD;} + .d2-4165952162 .stroke-N5{stroke:#DEE1EB;} + .d2-4165952162 .stroke-N6{stroke:#EEF1F8;} + .d2-4165952162 .stroke-N7{stroke:#FFFFFF;} + .d2-4165952162 .stroke-B1{stroke:#0D32B2;} + .d2-4165952162 .stroke-B2{stroke:#0D32B2;} + .d2-4165952162 .stroke-B3{stroke:#E3E9FD;} + .d2-4165952162 .stroke-B4{stroke:#E3E9FD;} + .d2-4165952162 .stroke-B5{stroke:#EDF0FD;} + .d2-4165952162 .stroke-B6{stroke:#F7F8FE;} + .d2-4165952162 .stroke-AA2{stroke:#4A6FF3;} + .d2-4165952162 .stroke-AA4{stroke:#EDF0FD;} + .d2-4165952162 .stroke-AA5{stroke:#F7F8FE;} + .d2-4165952162 .stroke-AB4{stroke:#EDF0FD;} + .d2-4165952162 .stroke-AB5{stroke:#F7F8FE;} + .d2-4165952162 .background-color-N1{background-color:#0A0F25;} + .d2-4165952162 .background-color-N2{background-color:#676C7E;} + .d2-4165952162 .background-color-N3{background-color:#9499AB;} + .d2-4165952162 .background-color-N4{background-color:#CFD2DD;} + .d2-4165952162 .background-color-N5{background-color:#DEE1EB;} + .d2-4165952162 .background-color-N6{background-color:#EEF1F8;} + .d2-4165952162 .background-color-N7{background-color:#FFFFFF;} + .d2-4165952162 .background-color-B1{background-color:#0D32B2;} + .d2-4165952162 .background-color-B2{background-color:#0D32B2;} + .d2-4165952162 .background-color-B3{background-color:#E3E9FD;} + .d2-4165952162 .background-color-B4{background-color:#E3E9FD;} + .d2-4165952162 .background-color-B5{background-color:#EDF0FD;} + .d2-4165952162 .background-color-B6{background-color:#F7F8FE;} + .d2-4165952162 .background-color-AA2{background-color:#4A6FF3;} + .d2-4165952162 .background-color-AA4{background-color:#EDF0FD;} + .d2-4165952162 .background-color-AA5{background-color:#F7F8FE;} + .d2-4165952162 .background-color-AB4{background-color:#EDF0FD;} + .d2-4165952162 .background-color-AB5{background-color:#F7F8FE;} + .d2-4165952162 .color-N1{color:#0A0F25;} + .d2-4165952162 .color-N2{color:#676C7E;} + .d2-4165952162 .color-N3{color:#9499AB;} + .d2-4165952162 .color-N4{color:#CFD2DD;} + .d2-4165952162 .color-N5{color:#DEE1EB;} + .d2-4165952162 .color-N6{color:#EEF1F8;} + .d2-4165952162 .color-N7{color:#FFFFFF;} + .d2-4165952162 .color-B1{color:#0D32B2;} + .d2-4165952162 .color-B2{color:#0D32B2;} + .d2-4165952162 .color-B3{color:#E3E9FD;} + .d2-4165952162 .color-B4{color:#E3E9FD;} + .d2-4165952162 .color-B5{color:#EDF0FD;} + .d2-4165952162 .color-B6{color:#F7F8FE;} + .d2-4165952162 .color-AA2{color:#4A6FF3;} + .d2-4165952162 .color-AA4{color:#EDF0FD;} + .d2-4165952162 .color-AA5{color:#F7F8FE;} + .d2-4165952162 .color-AB4{color:#EDF0FD;} + .d2-4165952162 .color-AB5{color:#F7F8FE;}.appendix text.text{fill:#0A0F25}.md{--color-fg-default:#0A0F25;--color-fg-muted:#676C7E;--color-fg-subtle:#9499AB;--color-canvas-default:#FFFFFF;--color-canvas-subtle:#EEF1F8;--color-border-default:#0D32B2;--color-border-muted:#0D32B2;--color-neutral-muted:#EEF1F8;--color-accent-fg:#0D32B2;--color-accent-emphasis:#0D32B2;--color-attention-subtle:#676C7E;--color-danger-fg:red;}.sketch-overlay-B1{fill:url(#streaks-darker);mix-blend-mode:lighten}.sketch-overlay-B2{fill:url(#streaks-darker);mix-blend-mode:lighten}.sketch-overlay-B3{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-B4{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-B5{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-B6{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-AA2{fill:url(#streaks-dark);mix-blend-mode:overlay}.sketch-overlay-AA4{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-AA5{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-AB4{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-AB5{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-N1{fill:url(#streaks-darker);mix-blend-mode:lighten}.sketch-overlay-N2{fill:url(#streaks-dark);mix-blend-mode:overlay}.sketch-overlay-N3{fill:url(#streaks-normal);mix-blend-mode:color-burn}.sketch-overlay-N4{fill:url(#streaks-normal);mix-blend-mode:color-burn}.sketch-overlay-N5{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-N6{fill:url(#streaks-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 \ No newline at end of file diff --git a/d2renderers/d2sketch/testdata/dots-real/sketch.exp.svg b/d2renderers/d2sketch/testdata/dots-real/sketch.exp.svg index dd2daad984..8f2b5212d8 100644 --- a/d2renderers/d2sketch/testdata/dots-real/sketch.exp.svg +++ b/d2renderers/d2sketch/testdata/dots-real/sketch.exp.svg @@ -1,16 +1,16 @@ - + .d2-268114363 .fill-N1{fill:#0A0F25;} + .d2-268114363 .fill-N2{fill:#676C7E;} + .d2-268114363 .fill-N3{fill:#9499AB;} + .d2-268114363 .fill-N4{fill:#CFD2DD;} + .d2-268114363 .fill-N5{fill:#DEE1EB;} + .d2-268114363 .fill-N6{fill:#EEF1F8;} + .d2-268114363 .fill-N7{fill:#FFFFFF;} + .d2-268114363 .fill-B1{fill:#0D32B2;} + .d2-268114363 .fill-B2{fill:#0D32B2;} + .d2-268114363 .fill-B3{fill:#E3E9FD;} + .d2-268114363 .fill-B4{fill:#E3E9FD;} + .d2-268114363 .fill-B5{fill:#EDF0FD;} + .d2-268114363 .fill-B6{fill:#F7F8FE;} + .d2-268114363 .fill-AA2{fill:#4A6FF3;} + .d2-268114363 .fill-AA4{fill:#EDF0FD;} + .d2-268114363 .fill-AA5{fill:#F7F8FE;} + .d2-268114363 .fill-AB4{fill:#EDF0FD;} + .d2-268114363 .fill-AB5{fill:#F7F8FE;} + .d2-268114363 .stroke-N1{stroke:#0A0F25;} + .d2-268114363 .stroke-N2{stroke:#676C7E;} + .d2-268114363 .stroke-N3{stroke:#9499AB;} + .d2-268114363 .stroke-N4{stroke:#CFD2DD;} + .d2-268114363 .stroke-N5{stroke:#DEE1EB;} + .d2-268114363 .stroke-N6{stroke:#EEF1F8;} + .d2-268114363 .stroke-N7{stroke:#FFFFFF;} + .d2-268114363 .stroke-B1{stroke:#0D32B2;} + .d2-268114363 .stroke-B2{stroke:#0D32B2;} + .d2-268114363 .stroke-B3{stroke:#E3E9FD;} + .d2-268114363 .stroke-B4{stroke:#E3E9FD;} + .d2-268114363 .stroke-B5{stroke:#EDF0FD;} + .d2-268114363 .stroke-B6{stroke:#F7F8FE;} + .d2-268114363 .stroke-AA2{stroke:#4A6FF3;} + .d2-268114363 .stroke-AA4{stroke:#EDF0FD;} + .d2-268114363 .stroke-AA5{stroke:#F7F8FE;} + .d2-268114363 .stroke-AB4{stroke:#EDF0FD;} + .d2-268114363 .stroke-AB5{stroke:#F7F8FE;} + .d2-268114363 .background-color-N1{background-color:#0A0F25;} + .d2-268114363 .background-color-N2{background-color:#676C7E;} + .d2-268114363 .background-color-N3{background-color:#9499AB;} + .d2-268114363 .background-color-N4{background-color:#CFD2DD;} + .d2-268114363 .background-color-N5{background-color:#DEE1EB;} + .d2-268114363 .background-color-N6{background-color:#EEF1F8;} + .d2-268114363 .background-color-N7{background-color:#FFFFFF;} + .d2-268114363 .background-color-B1{background-color:#0D32B2;} + .d2-268114363 .background-color-B2{background-color:#0D32B2;} + .d2-268114363 .background-color-B3{background-color:#E3E9FD;} + .d2-268114363 .background-color-B4{background-color:#E3E9FD;} + .d2-268114363 .background-color-B5{background-color:#EDF0FD;} + .d2-268114363 .background-color-B6{background-color:#F7F8FE;} + .d2-268114363 .background-color-AA2{background-color:#4A6FF3;} + .d2-268114363 .background-color-AA4{background-color:#EDF0FD;} + .d2-268114363 .background-color-AA5{background-color:#F7F8FE;} + .d2-268114363 .background-color-AB4{background-color:#EDF0FD;} + .d2-268114363 .background-color-AB5{background-color:#F7F8FE;} + .d2-268114363 .color-N1{color:#0A0F25;} + .d2-268114363 .color-N2{color:#676C7E;} + .d2-268114363 .color-N3{color:#9499AB;} + .d2-268114363 .color-N4{color:#CFD2DD;} + .d2-268114363 .color-N5{color:#DEE1EB;} + .d2-268114363 .color-N6{color:#EEF1F8;} + .d2-268114363 .color-N7{color:#FFFFFF;} + .d2-268114363 .color-B1{color:#0D32B2;} + .d2-268114363 .color-B2{color:#0D32B2;} + .d2-268114363 .color-B3{color:#E3E9FD;} + .d2-268114363 .color-B4{color:#E3E9FD;} + .d2-268114363 .color-B5{color:#EDF0FD;} + .d2-268114363 .color-B6{color:#F7F8FE;} + .d2-268114363 .color-AA2{color:#4A6FF3;} + .d2-268114363 .color-AA4{color:#EDF0FD;} + .d2-268114363 .color-AA5{color:#F7F8FE;} + .d2-268114363 .color-AB4{color:#EDF0FD;} + .d2-268114363 .color-AB5{color:#F7F8FE;}.appendix text.text{fill:#0A0F25}.md{--color-fg-default:#0A0F25;--color-fg-muted:#676C7E;--color-fg-subtle:#9499AB;--color-canvas-default:#FFFFFF;--color-canvas-subtle:#EEF1F8;--color-border-default:#0D32B2;--color-border-muted:#0D32B2;--color-neutral-muted:#EEF1F8;--color-accent-fg:#0D32B2;--color-accent-emphasis:#0D32B2;--color-attention-subtle:#676C7E;--color-danger-fg:red;}.sketch-overlay-B1{fill:url(#streaks-darker);mix-blend-mode:lighten}.sketch-overlay-B2{fill:url(#streaks-darker);mix-blend-mode:lighten}.sketch-overlay-B3{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-B4{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-B5{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-B6{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-AA2{fill:url(#streaks-dark);mix-blend-mode:overlay}.sketch-overlay-AA4{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-AA5{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-AB4{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-AB5{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-N1{fill:url(#streaks-darker);mix-blend-mode:lighten}.sketch-overlay-N2{fill:url(#streaks-dark);mix-blend-mode:overlay}.sketch-overlay-N3{fill:url(#streaks-normal);mix-blend-mode:color-burn}.sketch-overlay-N4{fill:url(#streaks-normal);mix-blend-mode:color-burn}.sketch-overlay-N5{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-N6{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-N7{fill:url(#streaks-bright);mix-blend-mode:darken}.light-code{display: block}.dark-code{display: none}]]> @@ -159,7 +159,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 23b455a725..c070a52466 100644 --- a/d2renderers/d2sketch/testdata/elk_corners/sketch.exp.svg +++ b/d2renderers/d2sketch/testdata/elk_corners/sketch.exp.svg @@ -1,9 +1,9 @@ - + .d2-1799065568 .fill-N1{fill:#0A0F25;} + .d2-1799065568 .fill-N2{fill:#676C7E;} + .d2-1799065568 .fill-N3{fill:#9499AB;} + .d2-1799065568 .fill-N4{fill:#CFD2DD;} + .d2-1799065568 .fill-N5{fill:#DEE1EB;} + .d2-1799065568 .fill-N6{fill:#EEF1F8;} + .d2-1799065568 .fill-N7{fill:#FFFFFF;} + .d2-1799065568 .fill-B1{fill:#0D32B2;} + .d2-1799065568 .fill-B2{fill:#0D32B2;} + .d2-1799065568 .fill-B3{fill:#E3E9FD;} + .d2-1799065568 .fill-B4{fill:#E3E9FD;} + .d2-1799065568 .fill-B5{fill:#EDF0FD;} + .d2-1799065568 .fill-B6{fill:#F7F8FE;} + .d2-1799065568 .fill-AA2{fill:#4A6FF3;} + .d2-1799065568 .fill-AA4{fill:#EDF0FD;} + .d2-1799065568 .fill-AA5{fill:#F7F8FE;} + .d2-1799065568 .fill-AB4{fill:#EDF0FD;} + .d2-1799065568 .fill-AB5{fill:#F7F8FE;} + .d2-1799065568 .stroke-N1{stroke:#0A0F25;} + .d2-1799065568 .stroke-N2{stroke:#676C7E;} + .d2-1799065568 .stroke-N3{stroke:#9499AB;} + .d2-1799065568 .stroke-N4{stroke:#CFD2DD;} + .d2-1799065568 .stroke-N5{stroke:#DEE1EB;} + .d2-1799065568 .stroke-N6{stroke:#EEF1F8;} + .d2-1799065568 .stroke-N7{stroke:#FFFFFF;} + .d2-1799065568 .stroke-B1{stroke:#0D32B2;} + .d2-1799065568 .stroke-B2{stroke:#0D32B2;} + .d2-1799065568 .stroke-B3{stroke:#E3E9FD;} + .d2-1799065568 .stroke-B4{stroke:#E3E9FD;} + .d2-1799065568 .stroke-B5{stroke:#EDF0FD;} + .d2-1799065568 .stroke-B6{stroke:#F7F8FE;} + .d2-1799065568 .stroke-AA2{stroke:#4A6FF3;} + .d2-1799065568 .stroke-AA4{stroke:#EDF0FD;} + .d2-1799065568 .stroke-AA5{stroke:#F7F8FE;} + .d2-1799065568 .stroke-AB4{stroke:#EDF0FD;} + .d2-1799065568 .stroke-AB5{stroke:#F7F8FE;} + .d2-1799065568 .background-color-N1{background-color:#0A0F25;} + .d2-1799065568 .background-color-N2{background-color:#676C7E;} + .d2-1799065568 .background-color-N3{background-color:#9499AB;} + .d2-1799065568 .background-color-N4{background-color:#CFD2DD;} + .d2-1799065568 .background-color-N5{background-color:#DEE1EB;} + .d2-1799065568 .background-color-N6{background-color:#EEF1F8;} + .d2-1799065568 .background-color-N7{background-color:#FFFFFF;} + .d2-1799065568 .background-color-B1{background-color:#0D32B2;} + .d2-1799065568 .background-color-B2{background-color:#0D32B2;} + .d2-1799065568 .background-color-B3{background-color:#E3E9FD;} + .d2-1799065568 .background-color-B4{background-color:#E3E9FD;} + .d2-1799065568 .background-color-B5{background-color:#EDF0FD;} + .d2-1799065568 .background-color-B6{background-color:#F7F8FE;} + .d2-1799065568 .background-color-AA2{background-color:#4A6FF3;} + .d2-1799065568 .background-color-AA4{background-color:#EDF0FD;} + .d2-1799065568 .background-color-AA5{background-color:#F7F8FE;} + .d2-1799065568 .background-color-AB4{background-color:#EDF0FD;} + .d2-1799065568 .background-color-AB5{background-color:#F7F8FE;} + .d2-1799065568 .color-N1{color:#0A0F25;} + .d2-1799065568 .color-N2{color:#676C7E;} + .d2-1799065568 .color-N3{color:#9499AB;} + .d2-1799065568 .color-N4{color:#CFD2DD;} + .d2-1799065568 .color-N5{color:#DEE1EB;} + .d2-1799065568 .color-N6{color:#EEF1F8;} + .d2-1799065568 .color-N7{color:#FFFFFF;} + .d2-1799065568 .color-B1{color:#0D32B2;} + .d2-1799065568 .color-B2{color:#0D32B2;} + .d2-1799065568 .color-B3{color:#E3E9FD;} + .d2-1799065568 .color-B4{color:#E3E9FD;} + .d2-1799065568 .color-B5{color:#EDF0FD;} + .d2-1799065568 .color-B6{color:#F7F8FE;} + .d2-1799065568 .color-AA2{color:#4A6FF3;} + .d2-1799065568 .color-AA4{color:#EDF0FD;} + .d2-1799065568 .color-AA5{color:#F7F8FE;} + .d2-1799065568 .color-AB4{color:#EDF0FD;} + .d2-1799065568 .color-AB5{color:#F7F8FE;}.appendix text.text{fill:#0A0F25}.md{--color-fg-default:#0A0F25;--color-fg-muted:#676C7E;--color-fg-subtle:#9499AB;--color-canvas-default:#FFFFFF;--color-canvas-subtle:#EEF1F8;--color-border-default:#0D32B2;--color-border-muted:#0D32B2;--color-neutral-muted:#EEF1F8;--color-accent-fg:#0D32B2;--color-accent-emphasis:#0D32B2;--color-attention-subtle:#676C7E;--color-danger-fg:red;}.sketch-overlay-B1{fill:url(#streaks-darker);mix-blend-mode:lighten}.sketch-overlay-B2{fill:url(#streaks-darker);mix-blend-mode:lighten}.sketch-overlay-B3{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-B4{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-B5{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-B6{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-AA2{fill:url(#streaks-dark);mix-blend-mode:overlay}.sketch-overlay-AA4{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-AA5{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-AB4{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-AB5{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-N1{fill:url(#streaks-darker);mix-blend-mode:lighten}.sketch-overlay-N2{fill:url(#streaks-dark);mix-blend-mode:overlay}.sketch-overlay-N3{fill:url(#streaks-normal);mix-blend-mode:color-burn}.sketch-overlay-N4{fill:url(#streaks-normal);mix-blend-mode:color-burn}.sketch-overlay-N5{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-N6{fill:url(#streaks-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 \ No newline at end of file diff --git a/d2renderers/d2sketch/testdata/long_arrowhead_label/sketch.exp.svg b/d2renderers/d2sketch/testdata/long_arrowhead_label/sketch.exp.svg new file mode 100644 index 0000000000..ca5e8aa171 --- /dev/null +++ b/d2renderers/d2sketch/testdata/long_arrowhead_label/sketch.exp.svg @@ -0,0 +1,110 @@ + + + + + + + + +ab a to b with unexpectedly long target arrowhead label + + + \ No newline at end of file diff --git a/d2renderers/d2sketch/testdata/opacity/sketch.exp.svg b/d2renderers/d2sketch/testdata/opacity/sketch.exp.svg index c569d93a65..3249c7fe6f 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.
\ No newline at end of file diff --git a/d2renderers/d2sketch/testdata/opacity_dark/sketch.exp.svg b/d2renderers/d2sketch/testdata/opacity_dark/sketch.exp.svg index bc3d5644f8..604c366226 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.
\ No newline at end of file diff --git a/d2renderers/d2sketch/testdata/paper-real/sketch.exp.svg b/d2renderers/d2sketch/testdata/paper-real/sketch.exp.svg index 28934d4578..1fefc15e4d 100644 --- a/d2renderers/d2sketch/testdata/paper-real/sketch.exp.svg +++ b/d2renderers/d2sketch/testdata/paper-real/sketch.exp.svg @@ -1,16 +1,16 @@ - + .d2-2819207500 .fill-N1{fill:#0A0F25;} + .d2-2819207500 .fill-N2{fill:#676C7E;} + .d2-2819207500 .fill-N3{fill:#9499AB;} + .d2-2819207500 .fill-N4{fill:#CFD2DD;} + .d2-2819207500 .fill-N5{fill:#DEE1EB;} + .d2-2819207500 .fill-N6{fill:#EEF1F8;} + .d2-2819207500 .fill-N7{fill:#FFFFFF;} + .d2-2819207500 .fill-B1{fill:#0D32B2;} + .d2-2819207500 .fill-B2{fill:#0D32B2;} + .d2-2819207500 .fill-B3{fill:#E3E9FD;} + .d2-2819207500 .fill-B4{fill:#E3E9FD;} + .d2-2819207500 .fill-B5{fill:#EDF0FD;} + .d2-2819207500 .fill-B6{fill:#F7F8FE;} + .d2-2819207500 .fill-AA2{fill:#4A6FF3;} + .d2-2819207500 .fill-AA4{fill:#EDF0FD;} + .d2-2819207500 .fill-AA5{fill:#F7F8FE;} + .d2-2819207500 .fill-AB4{fill:#EDF0FD;} + .d2-2819207500 .fill-AB5{fill:#F7F8FE;} + .d2-2819207500 .stroke-N1{stroke:#0A0F25;} + .d2-2819207500 .stroke-N2{stroke:#676C7E;} + .d2-2819207500 .stroke-N3{stroke:#9499AB;} + .d2-2819207500 .stroke-N4{stroke:#CFD2DD;} + .d2-2819207500 .stroke-N5{stroke:#DEE1EB;} + .d2-2819207500 .stroke-N6{stroke:#EEF1F8;} + .d2-2819207500 .stroke-N7{stroke:#FFFFFF;} + .d2-2819207500 .stroke-B1{stroke:#0D32B2;} + .d2-2819207500 .stroke-B2{stroke:#0D32B2;} + .d2-2819207500 .stroke-B3{stroke:#E3E9FD;} + .d2-2819207500 .stroke-B4{stroke:#E3E9FD;} + .d2-2819207500 .stroke-B5{stroke:#EDF0FD;} + .d2-2819207500 .stroke-B6{stroke:#F7F8FE;} + .d2-2819207500 .stroke-AA2{stroke:#4A6FF3;} + .d2-2819207500 .stroke-AA4{stroke:#EDF0FD;} + .d2-2819207500 .stroke-AA5{stroke:#F7F8FE;} + .d2-2819207500 .stroke-AB4{stroke:#EDF0FD;} + .d2-2819207500 .stroke-AB5{stroke:#F7F8FE;} + .d2-2819207500 .background-color-N1{background-color:#0A0F25;} + .d2-2819207500 .background-color-N2{background-color:#676C7E;} + .d2-2819207500 .background-color-N3{background-color:#9499AB;} + .d2-2819207500 .background-color-N4{background-color:#CFD2DD;} + .d2-2819207500 .background-color-N5{background-color:#DEE1EB;} + .d2-2819207500 .background-color-N6{background-color:#EEF1F8;} + .d2-2819207500 .background-color-N7{background-color:#FFFFFF;} + .d2-2819207500 .background-color-B1{background-color:#0D32B2;} + .d2-2819207500 .background-color-B2{background-color:#0D32B2;} + .d2-2819207500 .background-color-B3{background-color:#E3E9FD;} + .d2-2819207500 .background-color-B4{background-color:#E3E9FD;} + .d2-2819207500 .background-color-B5{background-color:#EDF0FD;} + .d2-2819207500 .background-color-B6{background-color:#F7F8FE;} + .d2-2819207500 .background-color-AA2{background-color:#4A6FF3;} + .d2-2819207500 .background-color-AA4{background-color:#EDF0FD;} + .d2-2819207500 .background-color-AA5{background-color:#F7F8FE;} + .d2-2819207500 .background-color-AB4{background-color:#EDF0FD;} + .d2-2819207500 .background-color-AB5{background-color:#F7F8FE;} + .d2-2819207500 .color-N1{color:#0A0F25;} + .d2-2819207500 .color-N2{color:#676C7E;} + .d2-2819207500 .color-N3{color:#9499AB;} + .d2-2819207500 .color-N4{color:#CFD2DD;} + .d2-2819207500 .color-N5{color:#DEE1EB;} + .d2-2819207500 .color-N6{color:#EEF1F8;} + .d2-2819207500 .color-N7{color:#FFFFFF;} + .d2-2819207500 .color-B1{color:#0D32B2;} + .d2-2819207500 .color-B2{color:#0D32B2;} + .d2-2819207500 .color-B3{color:#E3E9FD;} + .d2-2819207500 .color-B4{color:#E3E9FD;} + .d2-2819207500 .color-B5{color:#EDF0FD;} + .d2-2819207500 .color-B6{color:#F7F8FE;} + .d2-2819207500 .color-AA2{color:#4A6FF3;} + .d2-2819207500 .color-AA4{color:#EDF0FD;} + .d2-2819207500 .color-AA5{color:#F7F8FE;} + .d2-2819207500 .color-AB4{color:#EDF0FD;} + .d2-2819207500 .color-AB5{color:#F7F8FE;}.appendix text.text{fill:#0A0F25}.md{--color-fg-default:#0A0F25;--color-fg-muted:#676C7E;--color-fg-subtle:#9499AB;--color-canvas-default:#FFFFFF;--color-canvas-subtle:#EEF1F8;--color-border-default:#0D32B2;--color-border-muted:#0D32B2;--color-neutral-muted:#EEF1F8;--color-accent-fg:#0D32B2;--color-accent-emphasis:#0D32B2;--color-attention-subtle:#676C7E;--color-danger-fg:red;}.sketch-overlay-B1{fill:url(#streaks-darker);mix-blend-mode:lighten}.sketch-overlay-B2{fill:url(#streaks-darker);mix-blend-mode:lighten}.sketch-overlay-B3{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-B4{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-B5{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-B6{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-AA2{fill:url(#streaks-dark);mix-blend-mode:overlay}.sketch-overlay-AA4{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-AA5{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-AB4{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-AB5{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-N1{fill:url(#streaks-darker);mix-blend-mode:lighten}.sketch-overlay-N2{fill:url(#streaks-dark);mix-blend-mode:overlay}.sketch-overlay-N3{fill:url(#streaks-normal);mix-blend-mode:color-burn}.sketch-overlay-N4{fill:url(#streaks-normal);mix-blend-mode:color-burn}.sketch-overlay-N5{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-N6{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-N7{fill:url(#streaks-bright);mix-blend-mode:darken}.light-code{display: block}.dark-code{display: none}]]> @@ -1205,7 +1205,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 e7103d7f2c..df04e31e01 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
  • - + \ No newline at end of file diff --git a/d2renderers/d2sketch/testdata/sql_tables/sketch.exp.svg b/d2renderers/d2sketch/testdata/sql_tables/sketch.exp.svg index fa569261da..d4180796cf 100644 --- a/d2renderers/d2sketch/testdata/sql_tables/sketch.exp.svg +++ b/d2renderers/d2sketch/testdata/sql_tables/sketch.exp.svg @@ -1,9 +1,9 @@ - + .d2-3566570178 .fill-N1{fill:#0A0F25;} + .d2-3566570178 .fill-N2{fill:#676C7E;} + .d2-3566570178 .fill-N3{fill:#9499AB;} + .d2-3566570178 .fill-N4{fill:#CFD2DD;} + .d2-3566570178 .fill-N5{fill:#DEE1EB;} + .d2-3566570178 .fill-N6{fill:#EEF1F8;} + .d2-3566570178 .fill-N7{fill:#FFFFFF;} + .d2-3566570178 .fill-B1{fill:#0D32B2;} + .d2-3566570178 .fill-B2{fill:#0D32B2;} + .d2-3566570178 .fill-B3{fill:#E3E9FD;} + .d2-3566570178 .fill-B4{fill:#E3E9FD;} + .d2-3566570178 .fill-B5{fill:#EDF0FD;} + .d2-3566570178 .fill-B6{fill:#F7F8FE;} + .d2-3566570178 .fill-AA2{fill:#4A6FF3;} + .d2-3566570178 .fill-AA4{fill:#EDF0FD;} + .d2-3566570178 .fill-AA5{fill:#F7F8FE;} + .d2-3566570178 .fill-AB4{fill:#EDF0FD;} + .d2-3566570178 .fill-AB5{fill:#F7F8FE;} + .d2-3566570178 .stroke-N1{stroke:#0A0F25;} + .d2-3566570178 .stroke-N2{stroke:#676C7E;} + .d2-3566570178 .stroke-N3{stroke:#9499AB;} + .d2-3566570178 .stroke-N4{stroke:#CFD2DD;} + .d2-3566570178 .stroke-N5{stroke:#DEE1EB;} + .d2-3566570178 .stroke-N6{stroke:#EEF1F8;} + .d2-3566570178 .stroke-N7{stroke:#FFFFFF;} + .d2-3566570178 .stroke-B1{stroke:#0D32B2;} + .d2-3566570178 .stroke-B2{stroke:#0D32B2;} + .d2-3566570178 .stroke-B3{stroke:#E3E9FD;} + .d2-3566570178 .stroke-B4{stroke:#E3E9FD;} + .d2-3566570178 .stroke-B5{stroke:#EDF0FD;} + .d2-3566570178 .stroke-B6{stroke:#F7F8FE;} + .d2-3566570178 .stroke-AA2{stroke:#4A6FF3;} + .d2-3566570178 .stroke-AA4{stroke:#EDF0FD;} + .d2-3566570178 .stroke-AA5{stroke:#F7F8FE;} + .d2-3566570178 .stroke-AB4{stroke:#EDF0FD;} + .d2-3566570178 .stroke-AB5{stroke:#F7F8FE;} + .d2-3566570178 .background-color-N1{background-color:#0A0F25;} + .d2-3566570178 .background-color-N2{background-color:#676C7E;} + .d2-3566570178 .background-color-N3{background-color:#9499AB;} + .d2-3566570178 .background-color-N4{background-color:#CFD2DD;} + .d2-3566570178 .background-color-N5{background-color:#DEE1EB;} + .d2-3566570178 .background-color-N6{background-color:#EEF1F8;} + .d2-3566570178 .background-color-N7{background-color:#FFFFFF;} + .d2-3566570178 .background-color-B1{background-color:#0D32B2;} + .d2-3566570178 .background-color-B2{background-color:#0D32B2;} + .d2-3566570178 .background-color-B3{background-color:#E3E9FD;} + .d2-3566570178 .background-color-B4{background-color:#E3E9FD;} + .d2-3566570178 .background-color-B5{background-color:#EDF0FD;} + .d2-3566570178 .background-color-B6{background-color:#F7F8FE;} + .d2-3566570178 .background-color-AA2{background-color:#4A6FF3;} + .d2-3566570178 .background-color-AA4{background-color:#EDF0FD;} + .d2-3566570178 .background-color-AA5{background-color:#F7F8FE;} + .d2-3566570178 .background-color-AB4{background-color:#EDF0FD;} + .d2-3566570178 .background-color-AB5{background-color:#F7F8FE;} + .d2-3566570178 .color-N1{color:#0A0F25;} + .d2-3566570178 .color-N2{color:#676C7E;} + .d2-3566570178 .color-N3{color:#9499AB;} + .d2-3566570178 .color-N4{color:#CFD2DD;} + .d2-3566570178 .color-N5{color:#DEE1EB;} + .d2-3566570178 .color-N6{color:#EEF1F8;} + .d2-3566570178 .color-N7{color:#FFFFFF;} + .d2-3566570178 .color-B1{color:#0D32B2;} + .d2-3566570178 .color-B2{color:#0D32B2;} + .d2-3566570178 .color-B3{color:#E3E9FD;} + .d2-3566570178 .color-B4{color:#E3E9FD;} + .d2-3566570178 .color-B5{color:#EDF0FD;} + .d2-3566570178 .color-B6{color:#F7F8FE;} + .d2-3566570178 .color-AA2{color:#4A6FF3;} + .d2-3566570178 .color-AA4{color:#EDF0FD;} + .d2-3566570178 .color-AA5{color:#F7F8FE;} + .d2-3566570178 .color-AB4{color:#EDF0FD;} + .d2-3566570178 .color-AB5{color:#F7F8FE;}.appendix text.text{fill:#0A0F25}.md{--color-fg-default:#0A0F25;--color-fg-muted:#676C7E;--color-fg-subtle:#9499AB;--color-canvas-default:#FFFFFF;--color-canvas-subtle:#EEF1F8;--color-border-default:#0D32B2;--color-border-muted:#0D32B2;--color-neutral-muted:#EEF1F8;--color-accent-fg:#0D32B2;--color-accent-emphasis:#0D32B2;--color-attention-subtle:#676C7E;--color-danger-fg:red;}.sketch-overlay-B1{fill:url(#streaks-darker);mix-blend-mode:lighten}.sketch-overlay-B2{fill:url(#streaks-darker);mix-blend-mode:lighten}.sketch-overlay-B3{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-B4{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-B5{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-B6{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-AA2{fill:url(#streaks-dark);mix-blend-mode:overlay}.sketch-overlay-AA4{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-AA5{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-AB4{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-AB5{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-N1{fill:url(#streaks-darker);mix-blend-mode:lighten}.sketch-overlay-N2{fill:url(#streaks-dark);mix-blend-mode:overlay}.sketch-overlay-N3{fill:url(#streaks-normal);mix-blend-mode:color-burn}.sketch-overlay-N4{fill:url(#streaks-normal);mix-blend-mode:color-burn}.sketch-overlay-N5{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-N6{fill:url(#streaks-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 1c2f330ef9..81d0cb2508 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-3566570178 .fill-N1{fill:#CDD6F4;} + .d2-3566570178 .fill-N2{fill:#BAC2DE;} + .d2-3566570178 .fill-N3{fill:#A6ADC8;} + .d2-3566570178 .fill-N4{fill:#585B70;} + .d2-3566570178 .fill-N5{fill:#45475A;} + .d2-3566570178 .fill-N6{fill:#313244;} + .d2-3566570178 .fill-N7{fill:#1E1E2E;} + .d2-3566570178 .fill-B1{fill:#CBA6f7;} + .d2-3566570178 .fill-B2{fill:#CBA6f7;} + .d2-3566570178 .fill-B3{fill:#6C7086;} + .d2-3566570178 .fill-B4{fill:#585B70;} + .d2-3566570178 .fill-B5{fill:#45475A;} + .d2-3566570178 .fill-B6{fill:#313244;} + .d2-3566570178 .fill-AA2{fill:#f38BA8;} + .d2-3566570178 .fill-AA4{fill:#45475A;} + .d2-3566570178 .fill-AA5{fill:#313244;} + .d2-3566570178 .fill-AB4{fill:#45475A;} + .d2-3566570178 .fill-AB5{fill:#313244;} + .d2-3566570178 .stroke-N1{stroke:#CDD6F4;} + .d2-3566570178 .stroke-N2{stroke:#BAC2DE;} + .d2-3566570178 .stroke-N3{stroke:#A6ADC8;} + .d2-3566570178 .stroke-N4{stroke:#585B70;} + .d2-3566570178 .stroke-N5{stroke:#45475A;} + .d2-3566570178 .stroke-N6{stroke:#313244;} + .d2-3566570178 .stroke-N7{stroke:#1E1E2E;} + .d2-3566570178 .stroke-B1{stroke:#CBA6f7;} + .d2-3566570178 .stroke-B2{stroke:#CBA6f7;} + .d2-3566570178 .stroke-B3{stroke:#6C7086;} + .d2-3566570178 .stroke-B4{stroke:#585B70;} + .d2-3566570178 .stroke-B5{stroke:#45475A;} + .d2-3566570178 .stroke-B6{stroke:#313244;} + .d2-3566570178 .stroke-AA2{stroke:#f38BA8;} + .d2-3566570178 .stroke-AA4{stroke:#45475A;} + .d2-3566570178 .stroke-AA5{stroke:#313244;} + .d2-3566570178 .stroke-AB4{stroke:#45475A;} + .d2-3566570178 .stroke-AB5{stroke:#313244;} + .d2-3566570178 .background-color-N1{background-color:#CDD6F4;} + .d2-3566570178 .background-color-N2{background-color:#BAC2DE;} + .d2-3566570178 .background-color-N3{background-color:#A6ADC8;} + .d2-3566570178 .background-color-N4{background-color:#585B70;} + .d2-3566570178 .background-color-N5{background-color:#45475A;} + .d2-3566570178 .background-color-N6{background-color:#313244;} + .d2-3566570178 .background-color-N7{background-color:#1E1E2E;} + .d2-3566570178 .background-color-B1{background-color:#CBA6f7;} + .d2-3566570178 .background-color-B2{background-color:#CBA6f7;} + .d2-3566570178 .background-color-B3{background-color:#6C7086;} + .d2-3566570178 .background-color-B4{background-color:#585B70;} + .d2-3566570178 .background-color-B5{background-color:#45475A;} + .d2-3566570178 .background-color-B6{background-color:#313244;} + .d2-3566570178 .background-color-AA2{background-color:#f38BA8;} + .d2-3566570178 .background-color-AA4{background-color:#45475A;} + .d2-3566570178 .background-color-AA5{background-color:#313244;} + .d2-3566570178 .background-color-AB4{background-color:#45475A;} + .d2-3566570178 .background-color-AB5{background-color:#313244;} + .d2-3566570178 .color-N1{color:#CDD6F4;} + .d2-3566570178 .color-N2{color:#BAC2DE;} + .d2-3566570178 .color-N3{color:#A6ADC8;} + .d2-3566570178 .color-N4{color:#585B70;} + .d2-3566570178 .color-N5{color:#45475A;} + .d2-3566570178 .color-N6{color:#313244;} + .d2-3566570178 .color-N7{color:#1E1E2E;} + .d2-3566570178 .color-B1{color:#CBA6f7;} + .d2-3566570178 .color-B2{color:#CBA6f7;} + .d2-3566570178 .color-B3{color:#6C7086;} + .d2-3566570178 .color-B4{color:#585B70;} + .d2-3566570178 .color-B5{color:#45475A;} + .d2-3566570178 .color-B6{color:#313244;} + .d2-3566570178 .color-AA2{color:#f38BA8;} + .d2-3566570178 .color-AA4{color:#45475A;} + .d2-3566570178 .color-AA5{color:#313244;} + .d2-3566570178 .color-AB4{color:#45475A;} + .d2-3566570178 .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 e1f6891d88..7b05438481 100644 --- a/d2renderers/d2sketch/testdata/terminal/sketch.exp.svg +++ b/d2renderers/d2sketch/testdata/terminal/sketch.exp.svg @@ -1,16 +1,16 @@ - + .d2-4116330755 .fill-N1{fill:#000410;} + .d2-4116330755 .fill-N2{fill:#0000B8;} + .d2-4116330755 .fill-N3{fill:#9499AB;} + .d2-4116330755 .fill-N4{fill:#CFD2DD;} + .d2-4116330755 .fill-N5{fill:#C3DEF3;} + .d2-4116330755 .fill-N6{fill:#EEF1F8;} + .d2-4116330755 .fill-N7{fill:#FFFFFF;} + .d2-4116330755 .fill-B1{fill:#000410;} + .d2-4116330755 .fill-B2{fill:#0000E4;} + .d2-4116330755 .fill-B3{fill:#5AA4DC;} + .d2-4116330755 .fill-B4{fill:#E7E9EE;} + .d2-4116330755 .fill-B5{fill:#F5F6F9;} + .d2-4116330755 .fill-B6{fill:#FFFFFF;} + .d2-4116330755 .fill-AA2{fill:#008566;} + .d2-4116330755 .fill-AA4{fill:#45BBA5;} + .d2-4116330755 .fill-AA5{fill:#7ACCBD;} + .d2-4116330755 .fill-AB4{fill:#F1C759;} + .d2-4116330755 .fill-AB5{fill:#F9E088;} + .d2-4116330755 .stroke-N1{stroke:#000410;} + .d2-4116330755 .stroke-N2{stroke:#0000B8;} + .d2-4116330755 .stroke-N3{stroke:#9499AB;} + .d2-4116330755 .stroke-N4{stroke:#CFD2DD;} + .d2-4116330755 .stroke-N5{stroke:#C3DEF3;} + .d2-4116330755 .stroke-N6{stroke:#EEF1F8;} + .d2-4116330755 .stroke-N7{stroke:#FFFFFF;} + .d2-4116330755 .stroke-B1{stroke:#000410;} + .d2-4116330755 .stroke-B2{stroke:#0000E4;} + .d2-4116330755 .stroke-B3{stroke:#5AA4DC;} + .d2-4116330755 .stroke-B4{stroke:#E7E9EE;} + .d2-4116330755 .stroke-B5{stroke:#F5F6F9;} + .d2-4116330755 .stroke-B6{stroke:#FFFFFF;} + .d2-4116330755 .stroke-AA2{stroke:#008566;} + .d2-4116330755 .stroke-AA4{stroke:#45BBA5;} + .d2-4116330755 .stroke-AA5{stroke:#7ACCBD;} + .d2-4116330755 .stroke-AB4{stroke:#F1C759;} + .d2-4116330755 .stroke-AB5{stroke:#F9E088;} + .d2-4116330755 .background-color-N1{background-color:#000410;} + .d2-4116330755 .background-color-N2{background-color:#0000B8;} + .d2-4116330755 .background-color-N3{background-color:#9499AB;} + .d2-4116330755 .background-color-N4{background-color:#CFD2DD;} + .d2-4116330755 .background-color-N5{background-color:#C3DEF3;} + .d2-4116330755 .background-color-N6{background-color:#EEF1F8;} + .d2-4116330755 .background-color-N7{background-color:#FFFFFF;} + .d2-4116330755 .background-color-B1{background-color:#000410;} + .d2-4116330755 .background-color-B2{background-color:#0000E4;} + .d2-4116330755 .background-color-B3{background-color:#5AA4DC;} + .d2-4116330755 .background-color-B4{background-color:#E7E9EE;} + .d2-4116330755 .background-color-B5{background-color:#F5F6F9;} + .d2-4116330755 .background-color-B6{background-color:#FFFFFF;} + .d2-4116330755 .background-color-AA2{background-color:#008566;} + .d2-4116330755 .background-color-AA4{background-color:#45BBA5;} + .d2-4116330755 .background-color-AA5{background-color:#7ACCBD;} + .d2-4116330755 .background-color-AB4{background-color:#F1C759;} + .d2-4116330755 .background-color-AB5{background-color:#F9E088;} + .d2-4116330755 .color-N1{color:#000410;} + .d2-4116330755 .color-N2{color:#0000B8;} + .d2-4116330755 .color-N3{color:#9499AB;} + .d2-4116330755 .color-N4{color:#CFD2DD;} + .d2-4116330755 .color-N5{color:#C3DEF3;} + .d2-4116330755 .color-N6{color:#EEF1F8;} + .d2-4116330755 .color-N7{color:#FFFFFF;} + .d2-4116330755 .color-B1{color:#000410;} + .d2-4116330755 .color-B2{color:#0000E4;} + .d2-4116330755 .color-B3{color:#5AA4DC;} + .d2-4116330755 .color-B4{color:#E7E9EE;} + .d2-4116330755 .color-B5{color:#F5F6F9;} + .d2-4116330755 .color-B6{color:#FFFFFF;} + .d2-4116330755 .color-AA2{color:#008566;} + .d2-4116330755 .color-AA4{color:#45BBA5;} + .d2-4116330755 .color-AA5{color:#7ACCBD;} + .d2-4116330755 .color-AB4{color:#F1C759;} + .d2-4116330755 .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}]]> @@ -137,7 +137,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 d7aff92d1e..76afcf3101 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 b5a96b99a2..a74d1b594a 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/d2svg/appendix/testdata/diagram_wider_than_tooltip/sketch.exp.svg b/d2renderers/d2svg/appendix/testdata/diagram_wider_than_tooltip/sketch.exp.svg index 2948a7e5c5..8459d20b2f 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 @@ -customerissuerstore1Like starbucks or somethingacquirer2I'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 occur + .d2-854619440 .fill-N1{fill:#0A0F25;} + .d2-854619440 .fill-N2{fill:#676C7E;} + .d2-854619440 .fill-N3{fill:#9499AB;} + .d2-854619440 .fill-N4{fill:#CFD2DD;} + .d2-854619440 .fill-N5{fill:#DEE1EB;} + .d2-854619440 .fill-N6{fill:#EEF1F8;} + .d2-854619440 .fill-N7{fill:#FFFFFF;} + .d2-854619440 .fill-B1{fill:#0D32B2;} + .d2-854619440 .fill-B2{fill:#0D32B2;} + .d2-854619440 .fill-B3{fill:#E3E9FD;} + .d2-854619440 .fill-B4{fill:#E3E9FD;} + .d2-854619440 .fill-B5{fill:#EDF0FD;} + .d2-854619440 .fill-B6{fill:#F7F8FE;} + .d2-854619440 .fill-AA2{fill:#4A6FF3;} + .d2-854619440 .fill-AA4{fill:#EDF0FD;} + .d2-854619440 .fill-AA5{fill:#F7F8FE;} + .d2-854619440 .fill-AB4{fill:#EDF0FD;} + .d2-854619440 .fill-AB5{fill:#F7F8FE;} + .d2-854619440 .stroke-N1{stroke:#0A0F25;} + .d2-854619440 .stroke-N2{stroke:#676C7E;} + .d2-854619440 .stroke-N3{stroke:#9499AB;} + .d2-854619440 .stroke-N4{stroke:#CFD2DD;} + .d2-854619440 .stroke-N5{stroke:#DEE1EB;} + .d2-854619440 .stroke-N6{stroke:#EEF1F8;} + .d2-854619440 .stroke-N7{stroke:#FFFFFF;} + .d2-854619440 .stroke-B1{stroke:#0D32B2;} + .d2-854619440 .stroke-B2{stroke:#0D32B2;} + .d2-854619440 .stroke-B3{stroke:#E3E9FD;} + .d2-854619440 .stroke-B4{stroke:#E3E9FD;} + .d2-854619440 .stroke-B5{stroke:#EDF0FD;} + .d2-854619440 .stroke-B6{stroke:#F7F8FE;} + .d2-854619440 .stroke-AA2{stroke:#4A6FF3;} + .d2-854619440 .stroke-AA4{stroke:#EDF0FD;} + .d2-854619440 .stroke-AA5{stroke:#F7F8FE;} + .d2-854619440 .stroke-AB4{stroke:#EDF0FD;} + .d2-854619440 .stroke-AB5{stroke:#F7F8FE;} + .d2-854619440 .background-color-N1{background-color:#0A0F25;} + .d2-854619440 .background-color-N2{background-color:#676C7E;} + .d2-854619440 .background-color-N3{background-color:#9499AB;} + .d2-854619440 .background-color-N4{background-color:#CFD2DD;} + .d2-854619440 .background-color-N5{background-color:#DEE1EB;} + .d2-854619440 .background-color-N6{background-color:#EEF1F8;} + .d2-854619440 .background-color-N7{background-color:#FFFFFF;} + .d2-854619440 .background-color-B1{background-color:#0D32B2;} + .d2-854619440 .background-color-B2{background-color:#0D32B2;} + .d2-854619440 .background-color-B3{background-color:#E3E9FD;} + .d2-854619440 .background-color-B4{background-color:#E3E9FD;} + .d2-854619440 .background-color-B5{background-color:#EDF0FD;} + .d2-854619440 .background-color-B6{background-color:#F7F8FE;} + .d2-854619440 .background-color-AA2{background-color:#4A6FF3;} + .d2-854619440 .background-color-AA4{background-color:#EDF0FD;} + .d2-854619440 .background-color-AA5{background-color:#F7F8FE;} + .d2-854619440 .background-color-AB4{background-color:#EDF0FD;} + .d2-854619440 .background-color-AB5{background-color:#F7F8FE;} + .d2-854619440 .color-N1{color:#0A0F25;} + .d2-854619440 .color-N2{color:#676C7E;} + .d2-854619440 .color-N3{color:#9499AB;} + .d2-854619440 .color-N4{color:#CFD2DD;} + .d2-854619440 .color-N5{color:#DEE1EB;} + .d2-854619440 .color-N6{color:#EEF1F8;} + .d2-854619440 .color-N7{color:#FFFFFF;} + .d2-854619440 .color-B1{color:#0D32B2;} + .d2-854619440 .color-B2{color:#0D32B2;} + .d2-854619440 .color-B3{color:#E3E9FD;} + .d2-854619440 .color-B4{color:#E3E9FD;} + .d2-854619440 .color-B5{color:#EDF0FD;} + .d2-854619440 .color-B6{color:#F7F8FE;} + .d2-854619440 .color-AA2{color:#4A6FF3;} + .d2-854619440 .color-AA4{color:#EDF0FD;} + .d2-854619440 .color-AA5{color:#F7F8FE;} + .d2-854619440 .color-AB4{color:#EDF0FD;} + .d2-854619440 .color-AB5{color:#F7F8FE;}.appendix text.text{fill:#0A0F25}.md{--color-fg-default:#0A0F25;--color-fg-muted:#676C7E;--color-fg-subtle:#9499AB;--color-canvas-default:#FFFFFF;--color-canvas-subtle:#EEF1F8;--color-border-default:#0D32B2;--color-border-muted:#0D32B2;--color-neutral-muted:#EEF1F8;--color-accent-fg:#0D32B2;--color-accent-emphasis:#0D32B2;--color-attention-subtle:#676C7E;--color-danger-fg:red;}.sketch-overlay-B1{fill:url(#streaks-darker);mix-blend-mode:lighten}.sketch-overlay-B2{fill:url(#streaks-darker);mix-blend-mode:lighten}.sketch-overlay-B3{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-B4{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-B5{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-B6{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-AA2{fill:url(#streaks-dark);mix-blend-mode:overlay}.sketch-overlay-AA4{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-AA5{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-AB4{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-AB5{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-N1{fill:url(#streaks-darker);mix-blend-mode:lighten}.sketch-overlay-N2{fill:url(#streaks-dark);mix-blend-mode:overlay}.sketch-overlay-N3{fill:url(#streaks-normal);mix-blend-mode:color-burn}.sketch-overlay-N4{fill:url(#streaks-normal);mix-blend-mode:color-burn}.sketch-overlay-N5{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-N6{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-N7{fill:url(#streaks-bright);mix-blend-mode:darken}.light-code{display: block}.dark-code{display: none}]]>customerissuerstore1Like starbucks or somethingacquirer2I'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 occur diff --git a/d2renderers/d2svg/appendix/testdata/links/sketch.exp.svg b/d2renderers/d2svg/appendix/testdata/links/sketch.exp.svg index cdd94c3c42..b37301f23b 100644 --- a/d2renderers/d2svg/appendix/testdata/links/sketch.exp.svg +++ b/d2renderers/d2svg/appendix/testdata/links/sketch.exp.svg @@ -1,12 +1,12 @@ -x1y2Gee, I feel kind of LIGHT in the head now, knowing I can't make my satellite dish PAYMENTS!3 + .d2-2692295619 .fill-N1{fill:#0A0F25;} + .d2-2692295619 .fill-N2{fill:#676C7E;} + .d2-2692295619 .fill-N3{fill:#9499AB;} + .d2-2692295619 .fill-N4{fill:#CFD2DD;} + .d2-2692295619 .fill-N5{fill:#DEE1EB;} + .d2-2692295619 .fill-N6{fill:#EEF1F8;} + .d2-2692295619 .fill-N7{fill:#FFFFFF;} + .d2-2692295619 .fill-B1{fill:#0D32B2;} + .d2-2692295619 .fill-B2{fill:#0D32B2;} + .d2-2692295619 .fill-B3{fill:#E3E9FD;} + .d2-2692295619 .fill-B4{fill:#E3E9FD;} + .d2-2692295619 .fill-B5{fill:#EDF0FD;} + .d2-2692295619 .fill-B6{fill:#F7F8FE;} + .d2-2692295619 .fill-AA2{fill:#4A6FF3;} + .d2-2692295619 .fill-AA4{fill:#EDF0FD;} + .d2-2692295619 .fill-AA5{fill:#F7F8FE;} + .d2-2692295619 .fill-AB4{fill:#EDF0FD;} + .d2-2692295619 .fill-AB5{fill:#F7F8FE;} + .d2-2692295619 .stroke-N1{stroke:#0A0F25;} + .d2-2692295619 .stroke-N2{stroke:#676C7E;} + .d2-2692295619 .stroke-N3{stroke:#9499AB;} + .d2-2692295619 .stroke-N4{stroke:#CFD2DD;} + .d2-2692295619 .stroke-N5{stroke:#DEE1EB;} + .d2-2692295619 .stroke-N6{stroke:#EEF1F8;} + .d2-2692295619 .stroke-N7{stroke:#FFFFFF;} + .d2-2692295619 .stroke-B1{stroke:#0D32B2;} + .d2-2692295619 .stroke-B2{stroke:#0D32B2;} + .d2-2692295619 .stroke-B3{stroke:#E3E9FD;} + .d2-2692295619 .stroke-B4{stroke:#E3E9FD;} + .d2-2692295619 .stroke-B5{stroke:#EDF0FD;} + .d2-2692295619 .stroke-B6{stroke:#F7F8FE;} + .d2-2692295619 .stroke-AA2{stroke:#4A6FF3;} + .d2-2692295619 .stroke-AA4{stroke:#EDF0FD;} + .d2-2692295619 .stroke-AA5{stroke:#F7F8FE;} + .d2-2692295619 .stroke-AB4{stroke:#EDF0FD;} + .d2-2692295619 .stroke-AB5{stroke:#F7F8FE;} + .d2-2692295619 .background-color-N1{background-color:#0A0F25;} + .d2-2692295619 .background-color-N2{background-color:#676C7E;} + .d2-2692295619 .background-color-N3{background-color:#9499AB;} + .d2-2692295619 .background-color-N4{background-color:#CFD2DD;} + .d2-2692295619 .background-color-N5{background-color:#DEE1EB;} + .d2-2692295619 .background-color-N6{background-color:#EEF1F8;} + .d2-2692295619 .background-color-N7{background-color:#FFFFFF;} + .d2-2692295619 .background-color-B1{background-color:#0D32B2;} + .d2-2692295619 .background-color-B2{background-color:#0D32B2;} + .d2-2692295619 .background-color-B3{background-color:#E3E9FD;} + .d2-2692295619 .background-color-B4{background-color:#E3E9FD;} + .d2-2692295619 .background-color-B5{background-color:#EDF0FD;} + .d2-2692295619 .background-color-B6{background-color:#F7F8FE;} + .d2-2692295619 .background-color-AA2{background-color:#4A6FF3;} + .d2-2692295619 .background-color-AA4{background-color:#EDF0FD;} + .d2-2692295619 .background-color-AA5{background-color:#F7F8FE;} + .d2-2692295619 .background-color-AB4{background-color:#EDF0FD;} + .d2-2692295619 .background-color-AB5{background-color:#F7F8FE;} + .d2-2692295619 .color-N1{color:#0A0F25;} + .d2-2692295619 .color-N2{color:#676C7E;} + .d2-2692295619 .color-N3{color:#9499AB;} + .d2-2692295619 .color-N4{color:#CFD2DD;} + .d2-2692295619 .color-N5{color:#DEE1EB;} + .d2-2692295619 .color-N6{color:#EEF1F8;} + .d2-2692295619 .color-N7{color:#FFFFFF;} + .d2-2692295619 .color-B1{color:#0D32B2;} + .d2-2692295619 .color-B2{color:#0D32B2;} + .d2-2692295619 .color-B3{color:#E3E9FD;} + .d2-2692295619 .color-B4{color:#E3E9FD;} + .d2-2692295619 .color-B5{color:#EDF0FD;} + .d2-2692295619 .color-B6{color:#F7F8FE;} + .d2-2692295619 .color-AA2{color:#4A6FF3;} + .d2-2692295619 .color-AA4{color:#EDF0FD;} + .d2-2692295619 .color-AA5{color:#F7F8FE;} + .d2-2692295619 .color-AB4{color:#EDF0FD;} + .d2-2692295619 .color-AB5{color:#F7F8FE;}.appendix text.text{fill:#0A0F25}.md{--color-fg-default:#0A0F25;--color-fg-muted:#676C7E;--color-fg-subtle:#9499AB;--color-canvas-default:#FFFFFF;--color-canvas-subtle:#EEF1F8;--color-border-default:#0D32B2;--color-border-muted:#0D32B2;--color-neutral-muted:#EEF1F8;--color-accent-fg:#0D32B2;--color-accent-emphasis:#0D32B2;--color-attention-subtle:#676C7E;--color-danger-fg:red;}.sketch-overlay-B1{fill:url(#streaks-darker);mix-blend-mode:lighten}.sketch-overlay-B2{fill:url(#streaks-darker);mix-blend-mode:lighten}.sketch-overlay-B3{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-B4{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-B5{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-B6{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-AA2{fill:url(#streaks-dark);mix-blend-mode:overlay}.sketch-overlay-AA4{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-AA5{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-AB4{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-AB5{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-N1{fill:url(#streaks-darker);mix-blend-mode:lighten}.sketch-overlay-N2{fill:url(#streaks-dark);mix-blend-mode:overlay}.sketch-overlay-N3{fill:url(#streaks-normal);mix-blend-mode:color-burn}.sketch-overlay-N4{fill:url(#streaks-normal);mix-blend-mode:color-burn}.sketch-overlay-N5{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-N6{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-N7{fill:url(#streaks-bright);mix-blend-mode:darken}.light-code{display: block}.dark-code{display: none}]]>x1y2Gee, I feel kind of LIGHT in the head now, knowing I can't make my satellite dish PAYMENTS!3 1https://d2lang.com diff --git a/d2renderers/d2svg/appendix/testdata/links_dark/sketch.exp.svg b/d2renderers/d2svg/appendix/testdata/links_dark/sketch.exp.svg index f63145cc0e..a4254a2210 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 @@ -x1y2Gee, I feel kind of LIGHT in the head now, knowing I can't make my satellite dish PAYMENTS!3 + .d2-2055261676 .fill-N1{fill:#CDD6F4;} + .d2-2055261676 .fill-N2{fill:#BAC2DE;} + .d2-2055261676 .fill-N3{fill:#A6ADC8;} + .d2-2055261676 .fill-N4{fill:#585B70;} + .d2-2055261676 .fill-N5{fill:#45475A;} + .d2-2055261676 .fill-N6{fill:#313244;} + .d2-2055261676 .fill-N7{fill:#1E1E2E;} + .d2-2055261676 .fill-B1{fill:#CBA6f7;} + .d2-2055261676 .fill-B2{fill:#CBA6f7;} + .d2-2055261676 .fill-B3{fill:#6C7086;} + .d2-2055261676 .fill-B4{fill:#585B70;} + .d2-2055261676 .fill-B5{fill:#45475A;} + .d2-2055261676 .fill-B6{fill:#313244;} + .d2-2055261676 .fill-AA2{fill:#f38BA8;} + .d2-2055261676 .fill-AA4{fill:#45475A;} + .d2-2055261676 .fill-AA5{fill:#313244;} + .d2-2055261676 .fill-AB4{fill:#45475A;} + .d2-2055261676 .fill-AB5{fill:#313244;} + .d2-2055261676 .stroke-N1{stroke:#CDD6F4;} + .d2-2055261676 .stroke-N2{stroke:#BAC2DE;} + .d2-2055261676 .stroke-N3{stroke:#A6ADC8;} + .d2-2055261676 .stroke-N4{stroke:#585B70;} + .d2-2055261676 .stroke-N5{stroke:#45475A;} + .d2-2055261676 .stroke-N6{stroke:#313244;} + .d2-2055261676 .stroke-N7{stroke:#1E1E2E;} + .d2-2055261676 .stroke-B1{stroke:#CBA6f7;} + .d2-2055261676 .stroke-B2{stroke:#CBA6f7;} + .d2-2055261676 .stroke-B3{stroke:#6C7086;} + .d2-2055261676 .stroke-B4{stroke:#585B70;} + .d2-2055261676 .stroke-B5{stroke:#45475A;} + .d2-2055261676 .stroke-B6{stroke:#313244;} + .d2-2055261676 .stroke-AA2{stroke:#f38BA8;} + .d2-2055261676 .stroke-AA4{stroke:#45475A;} + .d2-2055261676 .stroke-AA5{stroke:#313244;} + .d2-2055261676 .stroke-AB4{stroke:#45475A;} + .d2-2055261676 .stroke-AB5{stroke:#313244;} + .d2-2055261676 .background-color-N1{background-color:#CDD6F4;} + .d2-2055261676 .background-color-N2{background-color:#BAC2DE;} + .d2-2055261676 .background-color-N3{background-color:#A6ADC8;} + .d2-2055261676 .background-color-N4{background-color:#585B70;} + .d2-2055261676 .background-color-N5{background-color:#45475A;} + .d2-2055261676 .background-color-N6{background-color:#313244;} + .d2-2055261676 .background-color-N7{background-color:#1E1E2E;} + .d2-2055261676 .background-color-B1{background-color:#CBA6f7;} + .d2-2055261676 .background-color-B2{background-color:#CBA6f7;} + .d2-2055261676 .background-color-B3{background-color:#6C7086;} + .d2-2055261676 .background-color-B4{background-color:#585B70;} + .d2-2055261676 .background-color-B5{background-color:#45475A;} + .d2-2055261676 .background-color-B6{background-color:#313244;} + .d2-2055261676 .background-color-AA2{background-color:#f38BA8;} + .d2-2055261676 .background-color-AA4{background-color:#45475A;} + .d2-2055261676 .background-color-AA5{background-color:#313244;} + .d2-2055261676 .background-color-AB4{background-color:#45475A;} + .d2-2055261676 .background-color-AB5{background-color:#313244;} + .d2-2055261676 .color-N1{color:#CDD6F4;} + .d2-2055261676 .color-N2{color:#BAC2DE;} + .d2-2055261676 .color-N3{color:#A6ADC8;} + .d2-2055261676 .color-N4{color:#585B70;} + .d2-2055261676 .color-N5{color:#45475A;} + .d2-2055261676 .color-N6{color:#313244;} + .d2-2055261676 .color-N7{color:#1E1E2E;} + .d2-2055261676 .color-B1{color:#CBA6f7;} + .d2-2055261676 .color-B2{color:#CBA6f7;} + .d2-2055261676 .color-B3{color:#6C7086;} + .d2-2055261676 .color-B4{color:#585B70;} + .d2-2055261676 .color-B5{color:#45475A;} + .d2-2055261676 .color-B6{color:#313244;} + .d2-2055261676 .color-AA2{color:#f38BA8;} + .d2-2055261676 .color-AA4{color:#45475A;} + .d2-2055261676 .color-AA5{color:#313244;} + .d2-2055261676 .color-AB4{color:#45475A;} + .d2-2055261676 .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}]]>x1y2Gee, I feel kind of LIGHT in the head now, knowing I can't make my satellite dish PAYMENTS!3 1https://d2lang.com diff --git a/d2renderers/d2svg/appendix/testdata/tooltip_fill/sketch.exp.svg b/d2renderers/d2svg/appendix/testdata/tooltip_fill/sketch.exp.svg index f102670e77..ec59d99825 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 @@ -x1Total abstinence is easier than perfect moderationy2Gee, I feel kind of LIGHT in the head now, knowing I can't make my satellite dish PAYMENTS! + .d2-820103664 .fill-N1{fill:#0A0F25;} + .d2-820103664 .fill-N2{fill:#676C7E;} + .d2-820103664 .fill-N3{fill:#9499AB;} + .d2-820103664 .fill-N4{fill:#CFD2DD;} + .d2-820103664 .fill-N5{fill:#DEE1EB;} + .d2-820103664 .fill-N6{fill:#EEF1F8;} + .d2-820103664 .fill-N7{fill:#FFFFFF;} + .d2-820103664 .fill-B1{fill:#0D32B2;} + .d2-820103664 .fill-B2{fill:#0D32B2;} + .d2-820103664 .fill-B3{fill:#E3E9FD;} + .d2-820103664 .fill-B4{fill:#E3E9FD;} + .d2-820103664 .fill-B5{fill:#EDF0FD;} + .d2-820103664 .fill-B6{fill:#F7F8FE;} + .d2-820103664 .fill-AA2{fill:#4A6FF3;} + .d2-820103664 .fill-AA4{fill:#EDF0FD;} + .d2-820103664 .fill-AA5{fill:#F7F8FE;} + .d2-820103664 .fill-AB4{fill:#EDF0FD;} + .d2-820103664 .fill-AB5{fill:#F7F8FE;} + .d2-820103664 .stroke-N1{stroke:#0A0F25;} + .d2-820103664 .stroke-N2{stroke:#676C7E;} + .d2-820103664 .stroke-N3{stroke:#9499AB;} + .d2-820103664 .stroke-N4{stroke:#CFD2DD;} + .d2-820103664 .stroke-N5{stroke:#DEE1EB;} + .d2-820103664 .stroke-N6{stroke:#EEF1F8;} + .d2-820103664 .stroke-N7{stroke:#FFFFFF;} + .d2-820103664 .stroke-B1{stroke:#0D32B2;} + .d2-820103664 .stroke-B2{stroke:#0D32B2;} + .d2-820103664 .stroke-B3{stroke:#E3E9FD;} + .d2-820103664 .stroke-B4{stroke:#E3E9FD;} + .d2-820103664 .stroke-B5{stroke:#EDF0FD;} + .d2-820103664 .stroke-B6{stroke:#F7F8FE;} + .d2-820103664 .stroke-AA2{stroke:#4A6FF3;} + .d2-820103664 .stroke-AA4{stroke:#EDF0FD;} + .d2-820103664 .stroke-AA5{stroke:#F7F8FE;} + .d2-820103664 .stroke-AB4{stroke:#EDF0FD;} + .d2-820103664 .stroke-AB5{stroke:#F7F8FE;} + .d2-820103664 .background-color-N1{background-color:#0A0F25;} + .d2-820103664 .background-color-N2{background-color:#676C7E;} + .d2-820103664 .background-color-N3{background-color:#9499AB;} + .d2-820103664 .background-color-N4{background-color:#CFD2DD;} + .d2-820103664 .background-color-N5{background-color:#DEE1EB;} + .d2-820103664 .background-color-N6{background-color:#EEF1F8;} + .d2-820103664 .background-color-N7{background-color:#FFFFFF;} + .d2-820103664 .background-color-B1{background-color:#0D32B2;} + .d2-820103664 .background-color-B2{background-color:#0D32B2;} + .d2-820103664 .background-color-B3{background-color:#E3E9FD;} + .d2-820103664 .background-color-B4{background-color:#E3E9FD;} + .d2-820103664 .background-color-B5{background-color:#EDF0FD;} + .d2-820103664 .background-color-B6{background-color:#F7F8FE;} + .d2-820103664 .background-color-AA2{background-color:#4A6FF3;} + .d2-820103664 .background-color-AA4{background-color:#EDF0FD;} + .d2-820103664 .background-color-AA5{background-color:#F7F8FE;} + .d2-820103664 .background-color-AB4{background-color:#EDF0FD;} + .d2-820103664 .background-color-AB5{background-color:#F7F8FE;} + .d2-820103664 .color-N1{color:#0A0F25;} + .d2-820103664 .color-N2{color:#676C7E;} + .d2-820103664 .color-N3{color:#9499AB;} + .d2-820103664 .color-N4{color:#CFD2DD;} + .d2-820103664 .color-N5{color:#DEE1EB;} + .d2-820103664 .color-N6{color:#EEF1F8;} + .d2-820103664 .color-N7{color:#FFFFFF;} + .d2-820103664 .color-B1{color:#0D32B2;} + .d2-820103664 .color-B2{color:#0D32B2;} + .d2-820103664 .color-B3{color:#E3E9FD;} + .d2-820103664 .color-B4{color:#E3E9FD;} + .d2-820103664 .color-B5{color:#EDF0FD;} + .d2-820103664 .color-B6{color:#F7F8FE;} + .d2-820103664 .color-AA2{color:#4A6FF3;} + .d2-820103664 .color-AA4{color:#EDF0FD;} + .d2-820103664 .color-AA5{color:#F7F8FE;} + .d2-820103664 .color-AB4{color:#EDF0FD;} + .d2-820103664 .color-AB5{color:#F7F8FE;}.appendix text.text{fill:#0A0F25}.md{--color-fg-default:#0A0F25;--color-fg-muted:#676C7E;--color-fg-subtle:#9499AB;--color-canvas-default:#FFFFFF;--color-canvas-subtle:#EEF1F8;--color-border-default:#0D32B2;--color-border-muted:#0D32B2;--color-neutral-muted:#EEF1F8;--color-accent-fg:#0D32B2;--color-accent-emphasis:#0D32B2;--color-attention-subtle:#676C7E;--color-danger-fg:red;}.sketch-overlay-B1{fill:url(#streaks-darker);mix-blend-mode:lighten}.sketch-overlay-B2{fill:url(#streaks-darker);mix-blend-mode:lighten}.sketch-overlay-B3{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-B4{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-B5{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-B6{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-AA2{fill:url(#streaks-dark);mix-blend-mode:overlay}.sketch-overlay-AA4{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-AA5{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-AB4{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-AB5{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-N1{fill:url(#streaks-darker);mix-blend-mode:lighten}.sketch-overlay-N2{fill:url(#streaks-dark);mix-blend-mode:overlay}.sketch-overlay-N3{fill:url(#streaks-normal);mix-blend-mode:color-burn}.sketch-overlay-N4{fill:url(#streaks-normal);mix-blend-mode:color-burn}.sketch-overlay-N5{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-N6{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-N7{fill:url(#streaks-bright);mix-blend-mode:darken}.light-code{display: block}.dark-code{display: none}]]>x1Total abstinence is easier than perfect moderationy2Gee, I feel kind of LIGHT in the head now, knowing I can't make my satellite dish PAYMENTS! 1Total abstinence is easier than perfect moderation 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 901120d8a1..8e6ffb92ea 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 @@ -x1Total abstinence is easier than perfect moderationy2Gee, I feel kind of LIGHT in the head now, knowing I can't make my satellite dish PAYMENTS! + .d2-820103664 .fill-N1{fill:#0A0F25;} + .d2-820103664 .fill-N2{fill:#676C7E;} + .d2-820103664 .fill-N3{fill:#9499AB;} + .d2-820103664 .fill-N4{fill:#CFD2DD;} + .d2-820103664 .fill-N5{fill:#DEE1EB;} + .d2-820103664 .fill-N6{fill:#EEF1F8;} + .d2-820103664 .fill-N7{fill:#FFFFFF;} + .d2-820103664 .fill-B1{fill:#0D32B2;} + .d2-820103664 .fill-B2{fill:#0D32B2;} + .d2-820103664 .fill-B3{fill:#E3E9FD;} + .d2-820103664 .fill-B4{fill:#E3E9FD;} + .d2-820103664 .fill-B5{fill:#EDF0FD;} + .d2-820103664 .fill-B6{fill:#F7F8FE;} + .d2-820103664 .fill-AA2{fill:#4A6FF3;} + .d2-820103664 .fill-AA4{fill:#EDF0FD;} + .d2-820103664 .fill-AA5{fill:#F7F8FE;} + .d2-820103664 .fill-AB4{fill:#EDF0FD;} + .d2-820103664 .fill-AB5{fill:#F7F8FE;} + .d2-820103664 .stroke-N1{stroke:#0A0F25;} + .d2-820103664 .stroke-N2{stroke:#676C7E;} + .d2-820103664 .stroke-N3{stroke:#9499AB;} + .d2-820103664 .stroke-N4{stroke:#CFD2DD;} + .d2-820103664 .stroke-N5{stroke:#DEE1EB;} + .d2-820103664 .stroke-N6{stroke:#EEF1F8;} + .d2-820103664 .stroke-N7{stroke:#FFFFFF;} + .d2-820103664 .stroke-B1{stroke:#0D32B2;} + .d2-820103664 .stroke-B2{stroke:#0D32B2;} + .d2-820103664 .stroke-B3{stroke:#E3E9FD;} + .d2-820103664 .stroke-B4{stroke:#E3E9FD;} + .d2-820103664 .stroke-B5{stroke:#EDF0FD;} + .d2-820103664 .stroke-B6{stroke:#F7F8FE;} + .d2-820103664 .stroke-AA2{stroke:#4A6FF3;} + .d2-820103664 .stroke-AA4{stroke:#EDF0FD;} + .d2-820103664 .stroke-AA5{stroke:#F7F8FE;} + .d2-820103664 .stroke-AB4{stroke:#EDF0FD;} + .d2-820103664 .stroke-AB5{stroke:#F7F8FE;} + .d2-820103664 .background-color-N1{background-color:#0A0F25;} + .d2-820103664 .background-color-N2{background-color:#676C7E;} + .d2-820103664 .background-color-N3{background-color:#9499AB;} + .d2-820103664 .background-color-N4{background-color:#CFD2DD;} + .d2-820103664 .background-color-N5{background-color:#DEE1EB;} + .d2-820103664 .background-color-N6{background-color:#EEF1F8;} + .d2-820103664 .background-color-N7{background-color:#FFFFFF;} + .d2-820103664 .background-color-B1{background-color:#0D32B2;} + .d2-820103664 .background-color-B2{background-color:#0D32B2;} + .d2-820103664 .background-color-B3{background-color:#E3E9FD;} + .d2-820103664 .background-color-B4{background-color:#E3E9FD;} + .d2-820103664 .background-color-B5{background-color:#EDF0FD;} + .d2-820103664 .background-color-B6{background-color:#F7F8FE;} + .d2-820103664 .background-color-AA2{background-color:#4A6FF3;} + .d2-820103664 .background-color-AA4{background-color:#EDF0FD;} + .d2-820103664 .background-color-AA5{background-color:#F7F8FE;} + .d2-820103664 .background-color-AB4{background-color:#EDF0FD;} + .d2-820103664 .background-color-AB5{background-color:#F7F8FE;} + .d2-820103664 .color-N1{color:#0A0F25;} + .d2-820103664 .color-N2{color:#676C7E;} + .d2-820103664 .color-N3{color:#9499AB;} + .d2-820103664 .color-N4{color:#CFD2DD;} + .d2-820103664 .color-N5{color:#DEE1EB;} + .d2-820103664 .color-N6{color:#EEF1F8;} + .d2-820103664 .color-N7{color:#FFFFFF;} + .d2-820103664 .color-B1{color:#0D32B2;} + .d2-820103664 .color-B2{color:#0D32B2;} + .d2-820103664 .color-B3{color:#E3E9FD;} + .d2-820103664 .color-B4{color:#E3E9FD;} + .d2-820103664 .color-B5{color:#EDF0FD;} + .d2-820103664 .color-B6{color:#F7F8FE;} + .d2-820103664 .color-AA2{color:#4A6FF3;} + .d2-820103664 .color-AA4{color:#EDF0FD;} + .d2-820103664 .color-AA5{color:#F7F8FE;} + .d2-820103664 .color-AB4{color:#EDF0FD;} + .d2-820103664 .color-AB5{color:#F7F8FE;}.appendix text.text{fill:#0A0F25}.md{--color-fg-default:#0A0F25;--color-fg-muted:#676C7E;--color-fg-subtle:#9499AB;--color-canvas-default:#FFFFFF;--color-canvas-subtle:#EEF1F8;--color-border-default:#0D32B2;--color-border-muted:#0D32B2;--color-neutral-muted:#EEF1F8;--color-accent-fg:#0D32B2;--color-accent-emphasis:#0D32B2;--color-attention-subtle:#676C7E;--color-danger-fg:red;}.sketch-overlay-B1{fill:url(#streaks-darker);mix-blend-mode:lighten}.sketch-overlay-B2{fill:url(#streaks-darker);mix-blend-mode:lighten}.sketch-overlay-B3{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-B4{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-B5{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-B6{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-AA2{fill:url(#streaks-dark);mix-blend-mode:overlay}.sketch-overlay-AA4{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-AA5{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-AB4{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-AB5{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-N1{fill:url(#streaks-darker);mix-blend-mode:lighten}.sketch-overlay-N2{fill:url(#streaks-dark);mix-blend-mode:overlay}.sketch-overlay-N3{fill:url(#streaks-normal);mix-blend-mode:color-burn}.sketch-overlay-N4{fill:url(#streaks-normal);mix-blend-mode:color-burn}.sketch-overlay-N5{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-N6{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-N7{fill:url(#streaks-bright);mix-blend-mode:darken}.light-code{display: block}.dark-code{display: none}]]>x1Total abstinence is easier than perfect moderationy2Gee, I feel kind of LIGHT in the head now, knowing I can't make my satellite dish PAYMENTS! 1Total abstinence is easier than perfect moderation diff --git a/d2renderers/d2svg/d2svg.go b/d2renderers/d2svg/d2svg.go index f38d5b0066..0babbe0893 100644 --- a/d2renderers/d2svg/d2svg.go +++ b/d2renderers/d2svg/d2svg.go @@ -20,8 +20,6 @@ import ( "github.com/alecthomas/chroma/v2/lexers" "github.com/alecthomas/chroma/v2/styles" - "oss.terrastruct.com/util-go/go2" - "oss.terrastruct.com/d2/d2graph" "oss.terrastruct.com/d2/d2renderers/d2fonts" "oss.terrastruct.com/d2/d2renderers/d2latex" @@ -39,8 +37,7 @@ import ( ) const ( - DEFAULT_PADDING = 100 - MIN_ARROWHEAD_STROKE_WIDTH = 2 + DEFAULT_PADDING = 100 appendixIconRadius = 16 ) @@ -109,56 +106,13 @@ func arrowheadMarkerID(isTarget bool, connection d2target.Connection) string { ))) } -func arrowheadDimensions(arrowhead d2target.Arrowhead, strokeWidth float64) (width, height float64) { - var baseWidth, baseHeight float64 - var widthMultiplier, heightMultiplier float64 - switch arrowhead { - case d2target.ArrowArrowhead: - baseWidth = 4 - baseHeight = 4 - widthMultiplier = 4 - heightMultiplier = 4 - case d2target.TriangleArrowhead: - baseWidth = 4 - baseHeight = 4 - widthMultiplier = 3 - heightMultiplier = 4 - case d2target.LineArrowhead: - widthMultiplier = 5 - heightMultiplier = 8 - case d2target.FilledDiamondArrowhead: - baseWidth = 11 - baseHeight = 7 - widthMultiplier = 5.5 - heightMultiplier = 3.5 - case d2target.DiamondArrowhead: - baseWidth = 11 - baseHeight = 9 - widthMultiplier = 5.5 - heightMultiplier = 4.5 - case d2target.FilledCircleArrowhead, d2target.CircleArrowhead: - baseWidth = 8 - baseHeight = 8 - widthMultiplier = 5 - heightMultiplier = 5 - case d2target.CfOne, d2target.CfMany, d2target.CfOneRequired, d2target.CfManyRequired: - baseWidth = 9 - baseHeight = 9 - widthMultiplier = 4.5 - heightMultiplier = 4.5 - } - - clippedStrokeWidth := go2.Max(MIN_ARROWHEAD_STROKE_WIDTH, strokeWidth) - return baseWidth + clippedStrokeWidth*widthMultiplier, baseHeight + clippedStrokeWidth*heightMultiplier -} - func arrowheadMarker(isTarget bool, id string, connection d2target.Connection) string { arrowhead := connection.DstArrow if !isTarget { arrowhead = connection.SrcArrow } strokeWidth := float64(connection.StrokeWidth) - width, height := arrowheadDimensions(arrowhead, strokeWidth) + width, height := arrowhead.Dimensions(strokeWidth) var path string switch arrowhead { @@ -620,38 +574,40 @@ func drawConnection(writer io.Writer, labelMaskID string, connection d2target.Co fmt.Fprint(writer, textEl.Render()) } - length := geo.Route(connection.Route).Length() - if connection.SrcLabel != "" { - // TODO use arrowhead label dimensions https://github.com/terrastruct/d2/issues/183 - size := float64(connection.FontSize) - position := 0. - if length > 0 { - position = size / length - } - fmt.Fprint(writer, renderArrowheadLabel(connection, connection.SrcLabel, position, size, size)) - } - if connection.DstLabel != "" { - // TODO use arrowhead label dimensions https://github.com/terrastruct/d2/issues/183 - size := float64(connection.FontSize) - position := 1. - if length > 0 { - position -= size / length - } - fmt.Fprint(writer, renderArrowheadLabel(connection, connection.DstLabel, position, size, size)) + if connection.SrcLabel != nil && connection.SrcLabel.Label != "" { + fmt.Fprint(writer, renderArrowheadLabel(connection, connection.SrcLabel.Label, false)) + } + if connection.DstLabel != nil && connection.DstLabel.Label != "" { + fmt.Fprint(writer, renderArrowheadLabel(connection, connection.DstLabel.Label, true)) } fmt.Fprintf(writer, ``) return } -func renderArrowheadLabel(connection d2target.Connection, text string, position, width, height float64) string { - labelTL := label.UnlockedTop.GetPointOnRoute(connection.Route, float64(connection.StrokeWidth), position, width, height) +func renderArrowheadLabel(connection d2target.Connection, text string, isDst bool) string { + var width, height float64 + if isDst { + width = float64(connection.DstLabel.LabelWidth) + height = float64(connection.DstLabel.LabelHeight) + } else { + width = float64(connection.SrcLabel.LabelWidth) + height = float64(connection.SrcLabel.LabelHeight) + } + + labelTL := connection.GetArrowheadLabelPosition(isDst) + + // svg text is positioned with the center of its baseline + baselineCenter := geo.Point{ + X: labelTL.X + width/2., + Y: labelTL.Y + float64(connection.FontSize), + } textEl := d2themes.NewThemableElement("text") - textEl.X = labelTL.X + width/2 - textEl.Y = labelTL.Y + float64(connection.FontSize) + textEl.X = baselineCenter.X + textEl.Y = baselineCenter.Y textEl.Fill = d2target.FG_COLOR textEl.ClassName = "text-italic" - textEl.Style = fmt.Sprintf("text-anchor:%s;font-size:%vpx", "middle", connection.FontSize) + textEl.Style = fmt.Sprintf("text-anchor:middle;font-size:%vpx", connection.FontSize) textEl.Content = RenderText(text, textEl.X, height) return textEl.Render() } 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 016167145d..93f7645fdb 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-2579350682 .fill-N1{fill:#CDD6F4;} + .d2-2579350682 .fill-N2{fill:#BAC2DE;} + .d2-2579350682 .fill-N3{fill:#A6ADC8;} + .d2-2579350682 .fill-N4{fill:#585B70;} + .d2-2579350682 .fill-N5{fill:#45475A;} + .d2-2579350682 .fill-N6{fill:#313244;} + .d2-2579350682 .fill-N7{fill:#1E1E2E;} + .d2-2579350682 .fill-B1{fill:#CBA6f7;} + .d2-2579350682 .fill-B2{fill:#CBA6f7;} + .d2-2579350682 .fill-B3{fill:#6C7086;} + .d2-2579350682 .fill-B4{fill:#585B70;} + .d2-2579350682 .fill-B5{fill:#45475A;} + .d2-2579350682 .fill-B6{fill:#313244;} + .d2-2579350682 .fill-AA2{fill:#f38BA8;} + .d2-2579350682 .fill-AA4{fill:#45475A;} + .d2-2579350682 .fill-AA5{fill:#313244;} + .d2-2579350682 .fill-AB4{fill:#45475A;} + .d2-2579350682 .fill-AB5{fill:#313244;} + .d2-2579350682 .stroke-N1{stroke:#CDD6F4;} + .d2-2579350682 .stroke-N2{stroke:#BAC2DE;} + .d2-2579350682 .stroke-N3{stroke:#A6ADC8;} + .d2-2579350682 .stroke-N4{stroke:#585B70;} + .d2-2579350682 .stroke-N5{stroke:#45475A;} + .d2-2579350682 .stroke-N6{stroke:#313244;} + .d2-2579350682 .stroke-N7{stroke:#1E1E2E;} + .d2-2579350682 .stroke-B1{stroke:#CBA6f7;} + .d2-2579350682 .stroke-B2{stroke:#CBA6f7;} + .d2-2579350682 .stroke-B3{stroke:#6C7086;} + .d2-2579350682 .stroke-B4{stroke:#585B70;} + .d2-2579350682 .stroke-B5{stroke:#45475A;} + .d2-2579350682 .stroke-B6{stroke:#313244;} + .d2-2579350682 .stroke-AA2{stroke:#f38BA8;} + .d2-2579350682 .stroke-AA4{stroke:#45475A;} + .d2-2579350682 .stroke-AA5{stroke:#313244;} + .d2-2579350682 .stroke-AB4{stroke:#45475A;} + .d2-2579350682 .stroke-AB5{stroke:#313244;} + .d2-2579350682 .background-color-N1{background-color:#CDD6F4;} + .d2-2579350682 .background-color-N2{background-color:#BAC2DE;} + .d2-2579350682 .background-color-N3{background-color:#A6ADC8;} + .d2-2579350682 .background-color-N4{background-color:#585B70;} + .d2-2579350682 .background-color-N5{background-color:#45475A;} + .d2-2579350682 .background-color-N6{background-color:#313244;} + .d2-2579350682 .background-color-N7{background-color:#1E1E2E;} + .d2-2579350682 .background-color-B1{background-color:#CBA6f7;} + .d2-2579350682 .background-color-B2{background-color:#CBA6f7;} + .d2-2579350682 .background-color-B3{background-color:#6C7086;} + .d2-2579350682 .background-color-B4{background-color:#585B70;} + .d2-2579350682 .background-color-B5{background-color:#45475A;} + .d2-2579350682 .background-color-B6{background-color:#313244;} + .d2-2579350682 .background-color-AA2{background-color:#f38BA8;} + .d2-2579350682 .background-color-AA4{background-color:#45475A;} + .d2-2579350682 .background-color-AA5{background-color:#313244;} + .d2-2579350682 .background-color-AB4{background-color:#45475A;} + .d2-2579350682 .background-color-AB5{background-color:#313244;} + .d2-2579350682 .color-N1{color:#CDD6F4;} + .d2-2579350682 .color-N2{color:#BAC2DE;} + .d2-2579350682 .color-N3{color:#A6ADC8;} + .d2-2579350682 .color-N4{color:#585B70;} + .d2-2579350682 .color-N5{color:#45475A;} + .d2-2579350682 .color-N6{color:#313244;} + .d2-2579350682 .color-N7{color:#1E1E2E;} + .d2-2579350682 .color-B1{color:#CBA6f7;} + .d2-2579350682 .color-B2{color:#CBA6f7;} + .d2-2579350682 .color-B3{color:#6C7086;} + .d2-2579350682 .color-B4{color:#585B70;} + .d2-2579350682 .color-B5{color:#45475A;} + .d2-2579350682 .color-B6{color:#313244;} + .d2-2579350682 .color-AA2{color:#f38BA8;} + .d2-2579350682 .color-AA4{color:#45475A;} + .d2-2579350682 .color-AA5{color:#313244;} + .d2-2579350682 .color-AB4{color:#45475A;} + .d2-2579350682 .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 \ No newline at end of file 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 e986f8ccac..0b721ecbfa 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-4115651978 .fill-N1{fill:#CDD6F4;} + .d2-4115651978 .fill-N2{fill:#BAC2DE;} + .d2-4115651978 .fill-N3{fill:#A6ADC8;} + .d2-4115651978 .fill-N4{fill:#585B70;} + .d2-4115651978 .fill-N5{fill:#45475A;} + .d2-4115651978 .fill-N6{fill:#313244;} + .d2-4115651978 .fill-N7{fill:#1E1E2E;} + .d2-4115651978 .fill-B1{fill:#CBA6f7;} + .d2-4115651978 .fill-B2{fill:#CBA6f7;} + .d2-4115651978 .fill-B3{fill:#6C7086;} + .d2-4115651978 .fill-B4{fill:#585B70;} + .d2-4115651978 .fill-B5{fill:#45475A;} + .d2-4115651978 .fill-B6{fill:#313244;} + .d2-4115651978 .fill-AA2{fill:#f38BA8;} + .d2-4115651978 .fill-AA4{fill:#45475A;} + .d2-4115651978 .fill-AA5{fill:#313244;} + .d2-4115651978 .fill-AB4{fill:#45475A;} + .d2-4115651978 .fill-AB5{fill:#313244;} + .d2-4115651978 .stroke-N1{stroke:#CDD6F4;} + .d2-4115651978 .stroke-N2{stroke:#BAC2DE;} + .d2-4115651978 .stroke-N3{stroke:#A6ADC8;} + .d2-4115651978 .stroke-N4{stroke:#585B70;} + .d2-4115651978 .stroke-N5{stroke:#45475A;} + .d2-4115651978 .stroke-N6{stroke:#313244;} + .d2-4115651978 .stroke-N7{stroke:#1E1E2E;} + .d2-4115651978 .stroke-B1{stroke:#CBA6f7;} + .d2-4115651978 .stroke-B2{stroke:#CBA6f7;} + .d2-4115651978 .stroke-B3{stroke:#6C7086;} + .d2-4115651978 .stroke-B4{stroke:#585B70;} + .d2-4115651978 .stroke-B5{stroke:#45475A;} + .d2-4115651978 .stroke-B6{stroke:#313244;} + .d2-4115651978 .stroke-AA2{stroke:#f38BA8;} + .d2-4115651978 .stroke-AA4{stroke:#45475A;} + .d2-4115651978 .stroke-AA5{stroke:#313244;} + .d2-4115651978 .stroke-AB4{stroke:#45475A;} + .d2-4115651978 .stroke-AB5{stroke:#313244;} + .d2-4115651978 .background-color-N1{background-color:#CDD6F4;} + .d2-4115651978 .background-color-N2{background-color:#BAC2DE;} + .d2-4115651978 .background-color-N3{background-color:#A6ADC8;} + .d2-4115651978 .background-color-N4{background-color:#585B70;} + .d2-4115651978 .background-color-N5{background-color:#45475A;} + .d2-4115651978 .background-color-N6{background-color:#313244;} + .d2-4115651978 .background-color-N7{background-color:#1E1E2E;} + .d2-4115651978 .background-color-B1{background-color:#CBA6f7;} + .d2-4115651978 .background-color-B2{background-color:#CBA6f7;} + .d2-4115651978 .background-color-B3{background-color:#6C7086;} + .d2-4115651978 .background-color-B4{background-color:#585B70;} + .d2-4115651978 .background-color-B5{background-color:#45475A;} + .d2-4115651978 .background-color-B6{background-color:#313244;} + .d2-4115651978 .background-color-AA2{background-color:#f38BA8;} + .d2-4115651978 .background-color-AA4{background-color:#45475A;} + .d2-4115651978 .background-color-AA5{background-color:#313244;} + .d2-4115651978 .background-color-AB4{background-color:#45475A;} + .d2-4115651978 .background-color-AB5{background-color:#313244;} + .d2-4115651978 .color-N1{color:#CDD6F4;} + .d2-4115651978 .color-N2{color:#BAC2DE;} + .d2-4115651978 .color-N3{color:#A6ADC8;} + .d2-4115651978 .color-N4{color:#585B70;} + .d2-4115651978 .color-N5{color:#45475A;} + .d2-4115651978 .color-N6{color:#313244;} + .d2-4115651978 .color-N7{color:#1E1E2E;} + .d2-4115651978 .color-B1{color:#CBA6f7;} + .d2-4115651978 .color-B2{color:#CBA6f7;} + .d2-4115651978 .color-B3{color:#6C7086;} + .d2-4115651978 .color-B4{color:#585B70;} + .d2-4115651978 .color-B5{color:#45475A;} + .d2-4115651978 .color-B6{color:#313244;} + .d2-4115651978 .color-AA2{color:#f38BA8;} + .d2-4115651978 .color-AA4{color:#45475A;} + .d2-4115651978 .color-AA5{color:#313244;} + .d2-4115651978 .color-AB4{color:#45475A;} + .d2-4115651978 .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 \ No newline at end of file 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 3274b9707d..235aa48dec 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-319344948 .fill-N1{fill:#CDD6F4;} + .d2-319344948 .fill-N2{fill:#BAC2DE;} + .d2-319344948 .fill-N3{fill:#A6ADC8;} + .d2-319344948 .fill-N4{fill:#585B70;} + .d2-319344948 .fill-N5{fill:#45475A;} + .d2-319344948 .fill-N6{fill:#313244;} + .d2-319344948 .fill-N7{fill:#1E1E2E;} + .d2-319344948 .fill-B1{fill:#CBA6f7;} + .d2-319344948 .fill-B2{fill:#CBA6f7;} + .d2-319344948 .fill-B3{fill:#6C7086;} + .d2-319344948 .fill-B4{fill:#585B70;} + .d2-319344948 .fill-B5{fill:#45475A;} + .d2-319344948 .fill-B6{fill:#313244;} + .d2-319344948 .fill-AA2{fill:#f38BA8;} + .d2-319344948 .fill-AA4{fill:#45475A;} + .d2-319344948 .fill-AA5{fill:#313244;} + .d2-319344948 .fill-AB4{fill:#45475A;} + .d2-319344948 .fill-AB5{fill:#313244;} + .d2-319344948 .stroke-N1{stroke:#CDD6F4;} + .d2-319344948 .stroke-N2{stroke:#BAC2DE;} + .d2-319344948 .stroke-N3{stroke:#A6ADC8;} + .d2-319344948 .stroke-N4{stroke:#585B70;} + .d2-319344948 .stroke-N5{stroke:#45475A;} + .d2-319344948 .stroke-N6{stroke:#313244;} + .d2-319344948 .stroke-N7{stroke:#1E1E2E;} + .d2-319344948 .stroke-B1{stroke:#CBA6f7;} + .d2-319344948 .stroke-B2{stroke:#CBA6f7;} + .d2-319344948 .stroke-B3{stroke:#6C7086;} + .d2-319344948 .stroke-B4{stroke:#585B70;} + .d2-319344948 .stroke-B5{stroke:#45475A;} + .d2-319344948 .stroke-B6{stroke:#313244;} + .d2-319344948 .stroke-AA2{stroke:#f38BA8;} + .d2-319344948 .stroke-AA4{stroke:#45475A;} + .d2-319344948 .stroke-AA5{stroke:#313244;} + .d2-319344948 .stroke-AB4{stroke:#45475A;} + .d2-319344948 .stroke-AB5{stroke:#313244;} + .d2-319344948 .background-color-N1{background-color:#CDD6F4;} + .d2-319344948 .background-color-N2{background-color:#BAC2DE;} + .d2-319344948 .background-color-N3{background-color:#A6ADC8;} + .d2-319344948 .background-color-N4{background-color:#585B70;} + .d2-319344948 .background-color-N5{background-color:#45475A;} + .d2-319344948 .background-color-N6{background-color:#313244;} + .d2-319344948 .background-color-N7{background-color:#1E1E2E;} + .d2-319344948 .background-color-B1{background-color:#CBA6f7;} + .d2-319344948 .background-color-B2{background-color:#CBA6f7;} + .d2-319344948 .background-color-B3{background-color:#6C7086;} + .d2-319344948 .background-color-B4{background-color:#585B70;} + .d2-319344948 .background-color-B5{background-color:#45475A;} + .d2-319344948 .background-color-B6{background-color:#313244;} + .d2-319344948 .background-color-AA2{background-color:#f38BA8;} + .d2-319344948 .background-color-AA4{background-color:#45475A;} + .d2-319344948 .background-color-AA5{background-color:#313244;} + .d2-319344948 .background-color-AB4{background-color:#45475A;} + .d2-319344948 .background-color-AB5{background-color:#313244;} + .d2-319344948 .color-N1{color:#CDD6F4;} + .d2-319344948 .color-N2{color:#BAC2DE;} + .d2-319344948 .color-N3{color:#A6ADC8;} + .d2-319344948 .color-N4{color:#585B70;} + .d2-319344948 .color-N5{color:#45475A;} + .d2-319344948 .color-N6{color:#313244;} + .d2-319344948 .color-N7{color:#1E1E2E;} + .d2-319344948 .color-B1{color:#CBA6f7;} + .d2-319344948 .color-B2{color:#CBA6f7;} + .d2-319344948 .color-B3{color:#6C7086;} + .d2-319344948 .color-B4{color:#585B70;} + .d2-319344948 .color-B5{color:#45475A;} + .d2-319344948 .color-B6{color:#313244;} + .d2-319344948 .color-AA2{color:#f38BA8;} + .d2-319344948 .color-AA4{color:#45475A;} + .d2-319344948 .color-AA5{color:#313244;} + .d2-319344948 .color-AB4{color:#45475A;} + .d2-319344948 .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 575e04c5c7..c48df961b3 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-3655258321 .fill-N1{fill:#CDD6F4;} + .d2-3655258321 .fill-N2{fill:#BAC2DE;} + .d2-3655258321 .fill-N3{fill:#A6ADC8;} + .d2-3655258321 .fill-N4{fill:#585B70;} + .d2-3655258321 .fill-N5{fill:#45475A;} + .d2-3655258321 .fill-N6{fill:#313244;} + .d2-3655258321 .fill-N7{fill:#1E1E2E;} + .d2-3655258321 .fill-B1{fill:#CBA6f7;} + .d2-3655258321 .fill-B2{fill:#CBA6f7;} + .d2-3655258321 .fill-B3{fill:#6C7086;} + .d2-3655258321 .fill-B4{fill:#585B70;} + .d2-3655258321 .fill-B5{fill:#45475A;} + .d2-3655258321 .fill-B6{fill:#313244;} + .d2-3655258321 .fill-AA2{fill:#f38BA8;} + .d2-3655258321 .fill-AA4{fill:#45475A;} + .d2-3655258321 .fill-AA5{fill:#313244;} + .d2-3655258321 .fill-AB4{fill:#45475A;} + .d2-3655258321 .fill-AB5{fill:#313244;} + .d2-3655258321 .stroke-N1{stroke:#CDD6F4;} + .d2-3655258321 .stroke-N2{stroke:#BAC2DE;} + .d2-3655258321 .stroke-N3{stroke:#A6ADC8;} + .d2-3655258321 .stroke-N4{stroke:#585B70;} + .d2-3655258321 .stroke-N5{stroke:#45475A;} + .d2-3655258321 .stroke-N6{stroke:#313244;} + .d2-3655258321 .stroke-N7{stroke:#1E1E2E;} + .d2-3655258321 .stroke-B1{stroke:#CBA6f7;} + .d2-3655258321 .stroke-B2{stroke:#CBA6f7;} + .d2-3655258321 .stroke-B3{stroke:#6C7086;} + .d2-3655258321 .stroke-B4{stroke:#585B70;} + .d2-3655258321 .stroke-B5{stroke:#45475A;} + .d2-3655258321 .stroke-B6{stroke:#313244;} + .d2-3655258321 .stroke-AA2{stroke:#f38BA8;} + .d2-3655258321 .stroke-AA4{stroke:#45475A;} + .d2-3655258321 .stroke-AA5{stroke:#313244;} + .d2-3655258321 .stroke-AB4{stroke:#45475A;} + .d2-3655258321 .stroke-AB5{stroke:#313244;} + .d2-3655258321 .background-color-N1{background-color:#CDD6F4;} + .d2-3655258321 .background-color-N2{background-color:#BAC2DE;} + .d2-3655258321 .background-color-N3{background-color:#A6ADC8;} + .d2-3655258321 .background-color-N4{background-color:#585B70;} + .d2-3655258321 .background-color-N5{background-color:#45475A;} + .d2-3655258321 .background-color-N6{background-color:#313244;} + .d2-3655258321 .background-color-N7{background-color:#1E1E2E;} + .d2-3655258321 .background-color-B1{background-color:#CBA6f7;} + .d2-3655258321 .background-color-B2{background-color:#CBA6f7;} + .d2-3655258321 .background-color-B3{background-color:#6C7086;} + .d2-3655258321 .background-color-B4{background-color:#585B70;} + .d2-3655258321 .background-color-B5{background-color:#45475A;} + .d2-3655258321 .background-color-B6{background-color:#313244;} + .d2-3655258321 .background-color-AA2{background-color:#f38BA8;} + .d2-3655258321 .background-color-AA4{background-color:#45475A;} + .d2-3655258321 .background-color-AA5{background-color:#313244;} + .d2-3655258321 .background-color-AB4{background-color:#45475A;} + .d2-3655258321 .background-color-AB5{background-color:#313244;} + .d2-3655258321 .color-N1{color:#CDD6F4;} + .d2-3655258321 .color-N2{color:#BAC2DE;} + .d2-3655258321 .color-N3{color:#A6ADC8;} + .d2-3655258321 .color-N4{color:#585B70;} + .d2-3655258321 .color-N5{color:#45475A;} + .d2-3655258321 .color-N6{color:#313244;} + .d2-3655258321 .color-N7{color:#1E1E2E;} + .d2-3655258321 .color-B1{color:#CBA6f7;} + .d2-3655258321 .color-B2{color:#CBA6f7;} + .d2-3655258321 .color-B3{color:#6C7086;} + .d2-3655258321 .color-B4{color:#585B70;} + .d2-3655258321 .color-B5{color:#45475A;} + .d2-3655258321 .color-B6{color:#313244;} + .d2-3655258321 .color-AA2{color:#f38BA8;} + .d2-3655258321 .color-AA4{color:#45475A;} + .d2-3655258321 .color-AA5{color:#313244;} + .d2-3655258321 .color-AB4{color:#45475A;} + .d2-3655258321 .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 \ No newline at end of file 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 efb835dcd6..bd9328e472 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-306189979 .fill-N1{fill:#CDD6F4;} + .d2-306189979 .fill-N2{fill:#BAC2DE;} + .d2-306189979 .fill-N3{fill:#A6ADC8;} + .d2-306189979 .fill-N4{fill:#585B70;} + .d2-306189979 .fill-N5{fill:#45475A;} + .d2-306189979 .fill-N6{fill:#313244;} + .d2-306189979 .fill-N7{fill:#1E1E2E;} + .d2-306189979 .fill-B1{fill:#CBA6f7;} + .d2-306189979 .fill-B2{fill:#CBA6f7;} + .d2-306189979 .fill-B3{fill:#6C7086;} + .d2-306189979 .fill-B4{fill:#585B70;} + .d2-306189979 .fill-B5{fill:#45475A;} + .d2-306189979 .fill-B6{fill:#313244;} + .d2-306189979 .fill-AA2{fill:#f38BA8;} + .d2-306189979 .fill-AA4{fill:#45475A;} + .d2-306189979 .fill-AA5{fill:#313244;} + .d2-306189979 .fill-AB4{fill:#45475A;} + .d2-306189979 .fill-AB5{fill:#313244;} + .d2-306189979 .stroke-N1{stroke:#CDD6F4;} + .d2-306189979 .stroke-N2{stroke:#BAC2DE;} + .d2-306189979 .stroke-N3{stroke:#A6ADC8;} + .d2-306189979 .stroke-N4{stroke:#585B70;} + .d2-306189979 .stroke-N5{stroke:#45475A;} + .d2-306189979 .stroke-N6{stroke:#313244;} + .d2-306189979 .stroke-N7{stroke:#1E1E2E;} + .d2-306189979 .stroke-B1{stroke:#CBA6f7;} + .d2-306189979 .stroke-B2{stroke:#CBA6f7;} + .d2-306189979 .stroke-B3{stroke:#6C7086;} + .d2-306189979 .stroke-B4{stroke:#585B70;} + .d2-306189979 .stroke-B5{stroke:#45475A;} + .d2-306189979 .stroke-B6{stroke:#313244;} + .d2-306189979 .stroke-AA2{stroke:#f38BA8;} + .d2-306189979 .stroke-AA4{stroke:#45475A;} + .d2-306189979 .stroke-AA5{stroke:#313244;} + .d2-306189979 .stroke-AB4{stroke:#45475A;} + .d2-306189979 .stroke-AB5{stroke:#313244;} + .d2-306189979 .background-color-N1{background-color:#CDD6F4;} + .d2-306189979 .background-color-N2{background-color:#BAC2DE;} + .d2-306189979 .background-color-N3{background-color:#A6ADC8;} + .d2-306189979 .background-color-N4{background-color:#585B70;} + .d2-306189979 .background-color-N5{background-color:#45475A;} + .d2-306189979 .background-color-N6{background-color:#313244;} + .d2-306189979 .background-color-N7{background-color:#1E1E2E;} + .d2-306189979 .background-color-B1{background-color:#CBA6f7;} + .d2-306189979 .background-color-B2{background-color:#CBA6f7;} + .d2-306189979 .background-color-B3{background-color:#6C7086;} + .d2-306189979 .background-color-B4{background-color:#585B70;} + .d2-306189979 .background-color-B5{background-color:#45475A;} + .d2-306189979 .background-color-B6{background-color:#313244;} + .d2-306189979 .background-color-AA2{background-color:#f38BA8;} + .d2-306189979 .background-color-AA4{background-color:#45475A;} + .d2-306189979 .background-color-AA5{background-color:#313244;} + .d2-306189979 .background-color-AB4{background-color:#45475A;} + .d2-306189979 .background-color-AB5{background-color:#313244;} + .d2-306189979 .color-N1{color:#CDD6F4;} + .d2-306189979 .color-N2{color:#BAC2DE;} + .d2-306189979 .color-N3{color:#A6ADC8;} + .d2-306189979 .color-N4{color:#585B70;} + .d2-306189979 .color-N5{color:#45475A;} + .d2-306189979 .color-N6{color:#313244;} + .d2-306189979 .color-N7{color:#1E1E2E;} + .d2-306189979 .color-B1{color:#CBA6f7;} + .d2-306189979 .color-B2{color:#CBA6f7;} + .d2-306189979 .color-B3{color:#6C7086;} + .d2-306189979 .color-B4{color:#585B70;} + .d2-306189979 .color-B5{color:#45475A;} + .d2-306189979 .color-B6{color:#313244;} + .d2-306189979 .color-AA2{color:#f38BA8;} + .d2-306189979 .color-AA4{color:#45475A;} + .d2-306189979 .color-AA5{color:#313244;} + .d2-306189979 .color-AB4{color:#45475A;} + .d2-306189979 .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 \ No newline at end of file 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 36bdb7e1ee..f133057647 100644 --- a/d2renderers/d2svg/dark_theme/testdata/code/dark_theme.exp.svg +++ b/d2renderers/d2svg/dark_theme/testdata/code/dark_theme.exp.svg @@ -1,34 +1,34 @@ -func main() { @@ -855,7 +855,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!!!
    \ No newline at end of file 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 d992e89155..372d1fc89f 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-3948006794 .fill-N1{fill:#CDD6F4;} + .d2-3948006794 .fill-N2{fill:#BAC2DE;} + .d2-3948006794 .fill-N3{fill:#A6ADC8;} + .d2-3948006794 .fill-N4{fill:#585B70;} + .d2-3948006794 .fill-N5{fill:#45475A;} + .d2-3948006794 .fill-N6{fill:#313244;} + .d2-3948006794 .fill-N7{fill:#1E1E2E;} + .d2-3948006794 .fill-B1{fill:#CBA6f7;} + .d2-3948006794 .fill-B2{fill:#CBA6f7;} + .d2-3948006794 .fill-B3{fill:#6C7086;} + .d2-3948006794 .fill-B4{fill:#585B70;} + .d2-3948006794 .fill-B5{fill:#45475A;} + .d2-3948006794 .fill-B6{fill:#313244;} + .d2-3948006794 .fill-AA2{fill:#f38BA8;} + .d2-3948006794 .fill-AA4{fill:#45475A;} + .d2-3948006794 .fill-AA5{fill:#313244;} + .d2-3948006794 .fill-AB4{fill:#45475A;} + .d2-3948006794 .fill-AB5{fill:#313244;} + .d2-3948006794 .stroke-N1{stroke:#CDD6F4;} + .d2-3948006794 .stroke-N2{stroke:#BAC2DE;} + .d2-3948006794 .stroke-N3{stroke:#A6ADC8;} + .d2-3948006794 .stroke-N4{stroke:#585B70;} + .d2-3948006794 .stroke-N5{stroke:#45475A;} + .d2-3948006794 .stroke-N6{stroke:#313244;} + .d2-3948006794 .stroke-N7{stroke:#1E1E2E;} + .d2-3948006794 .stroke-B1{stroke:#CBA6f7;} + .d2-3948006794 .stroke-B2{stroke:#CBA6f7;} + .d2-3948006794 .stroke-B3{stroke:#6C7086;} + .d2-3948006794 .stroke-B4{stroke:#585B70;} + .d2-3948006794 .stroke-B5{stroke:#45475A;} + .d2-3948006794 .stroke-B6{stroke:#313244;} + .d2-3948006794 .stroke-AA2{stroke:#f38BA8;} + .d2-3948006794 .stroke-AA4{stroke:#45475A;} + .d2-3948006794 .stroke-AA5{stroke:#313244;} + .d2-3948006794 .stroke-AB4{stroke:#45475A;} + .d2-3948006794 .stroke-AB5{stroke:#313244;} + .d2-3948006794 .background-color-N1{background-color:#CDD6F4;} + .d2-3948006794 .background-color-N2{background-color:#BAC2DE;} + .d2-3948006794 .background-color-N3{background-color:#A6ADC8;} + .d2-3948006794 .background-color-N4{background-color:#585B70;} + .d2-3948006794 .background-color-N5{background-color:#45475A;} + .d2-3948006794 .background-color-N6{background-color:#313244;} + .d2-3948006794 .background-color-N7{background-color:#1E1E2E;} + .d2-3948006794 .background-color-B1{background-color:#CBA6f7;} + .d2-3948006794 .background-color-B2{background-color:#CBA6f7;} + .d2-3948006794 .background-color-B3{background-color:#6C7086;} + .d2-3948006794 .background-color-B4{background-color:#585B70;} + .d2-3948006794 .background-color-B5{background-color:#45475A;} + .d2-3948006794 .background-color-B6{background-color:#313244;} + .d2-3948006794 .background-color-AA2{background-color:#f38BA8;} + .d2-3948006794 .background-color-AA4{background-color:#45475A;} + .d2-3948006794 .background-color-AA5{background-color:#313244;} + .d2-3948006794 .background-color-AB4{background-color:#45475A;} + .d2-3948006794 .background-color-AB5{background-color:#313244;} + .d2-3948006794 .color-N1{color:#CDD6F4;} + .d2-3948006794 .color-N2{color:#BAC2DE;} + .d2-3948006794 .color-N3{color:#A6ADC8;} + .d2-3948006794 .color-N4{color:#585B70;} + .d2-3948006794 .color-N5{color:#45475A;} + .d2-3948006794 .color-N6{color:#313244;} + .d2-3948006794 .color-N7{color:#1E1E2E;} + .d2-3948006794 .color-B1{color:#CBA6f7;} + .d2-3948006794 .color-B2{color:#CBA6f7;} + .d2-3948006794 .color-B3{color:#6C7086;} + .d2-3948006794 .color-B4{color:#585B70;} + .d2-3948006794 .color-B5{color:#45475A;} + .d2-3948006794 .color-B6{color:#313244;} + .d2-3948006794 .color-AA2{color:#f38BA8;} + .d2-3948006794 .color-AA4{color:#45475A;} + .d2-3948006794 .color-AA5{color:#313244;} + .d2-3948006794 .color-AB4{color:#45475A;} + .d2-3948006794 .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 \ No newline at end of file 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 be890516d4..102fb9ed35 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.
    \ No newline at end of file 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 c771b8b3ee..dce8328b0e 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-3566570178 .fill-N1{fill:#CDD6F4;} + .d2-3566570178 .fill-N2{fill:#BAC2DE;} + .d2-3566570178 .fill-N3{fill:#A6ADC8;} + .d2-3566570178 .fill-N4{fill:#585B70;} + .d2-3566570178 .fill-N5{fill:#45475A;} + .d2-3566570178 .fill-N6{fill:#313244;} + .d2-3566570178 .fill-N7{fill:#1E1E2E;} + .d2-3566570178 .fill-B1{fill:#CBA6f7;} + .d2-3566570178 .fill-B2{fill:#CBA6f7;} + .d2-3566570178 .fill-B3{fill:#6C7086;} + .d2-3566570178 .fill-B4{fill:#585B70;} + .d2-3566570178 .fill-B5{fill:#45475A;} + .d2-3566570178 .fill-B6{fill:#313244;} + .d2-3566570178 .fill-AA2{fill:#f38BA8;} + .d2-3566570178 .fill-AA4{fill:#45475A;} + .d2-3566570178 .fill-AA5{fill:#313244;} + .d2-3566570178 .fill-AB4{fill:#45475A;} + .d2-3566570178 .fill-AB5{fill:#313244;} + .d2-3566570178 .stroke-N1{stroke:#CDD6F4;} + .d2-3566570178 .stroke-N2{stroke:#BAC2DE;} + .d2-3566570178 .stroke-N3{stroke:#A6ADC8;} + .d2-3566570178 .stroke-N4{stroke:#585B70;} + .d2-3566570178 .stroke-N5{stroke:#45475A;} + .d2-3566570178 .stroke-N6{stroke:#313244;} + .d2-3566570178 .stroke-N7{stroke:#1E1E2E;} + .d2-3566570178 .stroke-B1{stroke:#CBA6f7;} + .d2-3566570178 .stroke-B2{stroke:#CBA6f7;} + .d2-3566570178 .stroke-B3{stroke:#6C7086;} + .d2-3566570178 .stroke-B4{stroke:#585B70;} + .d2-3566570178 .stroke-B5{stroke:#45475A;} + .d2-3566570178 .stroke-B6{stroke:#313244;} + .d2-3566570178 .stroke-AA2{stroke:#f38BA8;} + .d2-3566570178 .stroke-AA4{stroke:#45475A;} + .d2-3566570178 .stroke-AA5{stroke:#313244;} + .d2-3566570178 .stroke-AB4{stroke:#45475A;} + .d2-3566570178 .stroke-AB5{stroke:#313244;} + .d2-3566570178 .background-color-N1{background-color:#CDD6F4;} + .d2-3566570178 .background-color-N2{background-color:#BAC2DE;} + .d2-3566570178 .background-color-N3{background-color:#A6ADC8;} + .d2-3566570178 .background-color-N4{background-color:#585B70;} + .d2-3566570178 .background-color-N5{background-color:#45475A;} + .d2-3566570178 .background-color-N6{background-color:#313244;} + .d2-3566570178 .background-color-N7{background-color:#1E1E2E;} + .d2-3566570178 .background-color-B1{background-color:#CBA6f7;} + .d2-3566570178 .background-color-B2{background-color:#CBA6f7;} + .d2-3566570178 .background-color-B3{background-color:#6C7086;} + .d2-3566570178 .background-color-B4{background-color:#585B70;} + .d2-3566570178 .background-color-B5{background-color:#45475A;} + .d2-3566570178 .background-color-B6{background-color:#313244;} + .d2-3566570178 .background-color-AA2{background-color:#f38BA8;} + .d2-3566570178 .background-color-AA4{background-color:#45475A;} + .d2-3566570178 .background-color-AA5{background-color:#313244;} + .d2-3566570178 .background-color-AB4{background-color:#45475A;} + .d2-3566570178 .background-color-AB5{background-color:#313244;} + .d2-3566570178 .color-N1{color:#CDD6F4;} + .d2-3566570178 .color-N2{color:#BAC2DE;} + .d2-3566570178 .color-N3{color:#A6ADC8;} + .d2-3566570178 .color-N4{color:#585B70;} + .d2-3566570178 .color-N5{color:#45475A;} + .d2-3566570178 .color-N6{color:#313244;} + .d2-3566570178 .color-N7{color:#1E1E2E;} + .d2-3566570178 .color-B1{color:#CBA6f7;} + .d2-3566570178 .color-B2{color:#CBA6f7;} + .d2-3566570178 .color-B3{color:#6C7086;} + .d2-3566570178 .color-B4{color:#585B70;} + .d2-3566570178 .color-B5{color:#45475A;} + .d2-3566570178 .color-B6{color:#313244;} + .d2-3566570178 .color-AA2{color:#f38BA8;} + .d2-3566570178 .color-AA4{color:#45475A;} + .d2-3566570178 .color-AA5{color:#313244;} + .d2-3566570178 .color-AB4{color:#45475A;} + .d2-3566570178 .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 ca8a214d96..dc3ce7b2cb 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 fd42e3407c..cb173cb2e5 100644 --- a/d2target/d2target.go +++ b/d2target/d2target.go @@ -29,6 +29,9 @@ const ( BG_COLOR = color.N7 FG_COLOR = color.N1 + + MIN_ARROWHEAD_STROKE_WIDTH = 2 + ARROWHEAD_PADDING = 2. ) var BorderOffset = geo.NewVector(5, 5) @@ -232,6 +235,20 @@ func (diagram Diagram) BoundingBox() (topLeft, bottomRight Point) { x2 = go2.Max(x2, int(labelTL.X)+connection.LabelWidth) y2 = go2.Max(y2, int(labelTL.Y)+connection.LabelHeight) } + if connection.SrcLabel != nil && connection.SrcLabel.Label != "" { + labelTL := connection.GetArrowheadLabelPosition(false) + x1 = go2.Min(x1, int(labelTL.X)) + y1 = go2.Min(y1, int(labelTL.Y)) + x2 = go2.Max(x2, int(labelTL.X)+connection.SrcLabel.LabelWidth) + y2 = go2.Max(y2, int(labelTL.Y)+connection.SrcLabel.LabelHeight) + } + if connection.DstLabel != nil && connection.DstLabel.Label != "" { + labelTL := connection.GetArrowheadLabelPosition(true) + x1 = go2.Min(x1, int(labelTL.X)) + y1 = go2.Min(y1, int(labelTL.Y)) + x2 = go2.Max(x2, int(labelTL.X)+connection.DstLabel.LabelWidth) + y2 = go2.Max(y2, int(labelTL.Y)+connection.DstLabel.LabelHeight) + } } return Point{x1, y1}, Point{x2, y2} @@ -286,8 +303,12 @@ func (diagram Diagram) GetCorpus() string { } for _, c := range diagram.Connections { corpus += c.Label - corpus += c.SrcLabel - corpus += c.DstLabel + if c.SrcLabel != nil { + corpus += c.SrcLabel.Label + } + if c.DstLabel != nil { + corpus += c.DstLabel.Label + } } return corpus @@ -431,11 +452,11 @@ type Connection struct { Src string `json:"src"` SrcArrow Arrowhead `json:"srcArrow"` - SrcLabel string `json:"srcLabel"` + SrcLabel *Text `json:"srcLabel,omitempty"` Dst string `json:"dst"` DstArrow Arrowhead `json:"dstArrow"` - DstLabel string `json:"dstLabel"` + DstLabel *Text `json:"dstLabel,omitempty"` Opacity float64 `json:"opacity"` StrokeDash float64 `json:"strokeDash"` @@ -506,13 +527,85 @@ func (c Connection) CSSStyle() string { } func (c *Connection) GetLabelTopLeft() *geo.Point { - return label.Position(c.LabelPosition).GetPointOnRoute( + point, _ := label.Position(c.LabelPosition).GetPointOnRoute( c.Route, float64(c.StrokeWidth), c.LabelPercentage, float64(c.LabelWidth), float64(c.LabelHeight), ) + return point +} + +func (connection *Connection) GetArrowheadLabelPosition(isDst bool) *geo.Point { + var width, height float64 + if isDst { + width = float64(connection.DstLabel.LabelWidth) + height = float64(connection.DstLabel.LabelHeight) + } else { + width = float64(connection.SrcLabel.LabelWidth) + height = float64(connection.SrcLabel.LabelHeight) + } + + // get the start/end points of edge segment with arrowhead + index := 0 + if isDst { + index = len(connection.Route) - 2 + } + start, end := connection.Route[index], connection.Route[index+1] + + // how much to move the label back from the very end of the edge + var shift float64 + if start.Y == end.Y { + // shift left/right to fit on horizontal segment + shift = width/2. + label.PADDING + } else if start.X == end.X { + // shift up/down to fit on vertical segment + shift = height/2. + label.PADDING + } else { + // TODO compute amount to shift according to angle instead of max + shift = math.Max(width, height) + } + + length := geo.Route(connection.Route).Length() + var position float64 + if isDst { + position = 1. + if length > 0 { + position -= shift / length + } + } else { + position = 0. + if length > 0 { + position = shift / length + } + } + + strokeWidth := float64(connection.StrokeWidth) + + labelTL, index := label.UnlockedTop.GetPointOnRoute(connection.Route, strokeWidth, position, width, height) + + var arrowSize float64 + if isDst && connection.DstArrow != NoArrowhead { + // Note: these dimensions are for rendering arrowheads on their side so we want the height + _, arrowSize = connection.DstArrow.Dimensions(strokeWidth) + } else if connection.SrcArrow != NoArrowhead { + _, arrowSize = connection.SrcArrow.Dimensions(strokeWidth) + } + + if arrowSize > 0 { + // labelTL already accounts for strokeWidth and padding, we only want to shift further if the arrow is larger than this + offset := (arrowSize/2 + ARROWHEAD_PADDING) - strokeWidth/2 - label.PADDING + if offset > 0 { + start, end = connection.Route[index], connection.Route[index+1] + // Note: end to start to get normal towards unlocked top position + normalX, normalY := geo.GetUnitNormalVector(end.X, end.Y, start.X, start.Y) + labelTL.X += normalX * offset + labelTL.Y += normalY * offset + } + } + + return labelTL } func (c Connection) GetZIndex() int { @@ -585,6 +678,49 @@ func ToArrowhead(arrowheadType string, filled bool) Arrowhead { } } +func (arrowhead Arrowhead) Dimensions(strokeWidth float64) (width, height float64) { + var baseWidth, baseHeight float64 + var widthMultiplier, heightMultiplier float64 + switch arrowhead { + case ArrowArrowhead: + baseWidth = 4 + baseHeight = 4 + widthMultiplier = 4 + heightMultiplier = 4 + case TriangleArrowhead: + baseWidth = 4 + baseHeight = 4 + widthMultiplier = 3 + heightMultiplier = 4 + case LineArrowhead: + widthMultiplier = 5 + heightMultiplier = 8 + case FilledDiamondArrowhead: + baseWidth = 11 + baseHeight = 7 + widthMultiplier = 5.5 + heightMultiplier = 3.5 + case DiamondArrowhead: + baseWidth = 11 + baseHeight = 9 + widthMultiplier = 5.5 + heightMultiplier = 4.5 + case FilledCircleArrowhead, CircleArrowhead: + baseWidth = 8 + baseHeight = 8 + widthMultiplier = 5 + heightMultiplier = 5 + case CfOne, CfMany, CfOneRequired, CfManyRequired: + baseWidth = 9 + baseHeight = 9 + widthMultiplier = 4.5 + heightMultiplier = 4.5 + } + + clippedStrokeWidth := go2.Max(MIN_ARROWHEAD_STROKE_WIDTH, strokeWidth) + return baseWidth + clippedStrokeWidth*widthMultiplier, baseHeight + clippedStrokeWidth*heightMultiplier +} + type Point struct { X int `json:"x"` Y int `json:"y"` diff --git a/e2etests-cli/testdata/TestCLI_E2E/abspath.exp.svg b/e2etests-cli/testdata/TestCLI_E2E/abspath.exp.svg index f627c0098e..1244e341ba 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-855222762 .fill-N1{fill:#0A0F25;} + .d2-855222762 .fill-N2{fill:#676C7E;} + .d2-855222762 .fill-N3{fill:#9499AB;} + .d2-855222762 .fill-N4{fill:#CFD2DD;} + .d2-855222762 .fill-N5{fill:#DEE1EB;} + .d2-855222762 .fill-N6{fill:#EEF1F8;} + .d2-855222762 .fill-N7{fill:#FFFFFF;} + .d2-855222762 .fill-B1{fill:#0D32B2;} + .d2-855222762 .fill-B2{fill:#0D32B2;} + .d2-855222762 .fill-B3{fill:#E3E9FD;} + .d2-855222762 .fill-B4{fill:#E3E9FD;} + .d2-855222762 .fill-B5{fill:#EDF0FD;} + .d2-855222762 .fill-B6{fill:#F7F8FE;} + .d2-855222762 .fill-AA2{fill:#4A6FF3;} + .d2-855222762 .fill-AA4{fill:#EDF0FD;} + .d2-855222762 .fill-AA5{fill:#F7F8FE;} + .d2-855222762 .fill-AB4{fill:#EDF0FD;} + .d2-855222762 .fill-AB5{fill:#F7F8FE;} + .d2-855222762 .stroke-N1{stroke:#0A0F25;} + .d2-855222762 .stroke-N2{stroke:#676C7E;} + .d2-855222762 .stroke-N3{stroke:#9499AB;} + .d2-855222762 .stroke-N4{stroke:#CFD2DD;} + .d2-855222762 .stroke-N5{stroke:#DEE1EB;} + .d2-855222762 .stroke-N6{stroke:#EEF1F8;} + .d2-855222762 .stroke-N7{stroke:#FFFFFF;} + .d2-855222762 .stroke-B1{stroke:#0D32B2;} + .d2-855222762 .stroke-B2{stroke:#0D32B2;} + .d2-855222762 .stroke-B3{stroke:#E3E9FD;} + .d2-855222762 .stroke-B4{stroke:#E3E9FD;} + .d2-855222762 .stroke-B5{stroke:#EDF0FD;} + .d2-855222762 .stroke-B6{stroke:#F7F8FE;} + .d2-855222762 .stroke-AA2{stroke:#4A6FF3;} + .d2-855222762 .stroke-AA4{stroke:#EDF0FD;} + .d2-855222762 .stroke-AA5{stroke:#F7F8FE;} + .d2-855222762 .stroke-AB4{stroke:#EDF0FD;} + .d2-855222762 .stroke-AB5{stroke:#F7F8FE;} + .d2-855222762 .background-color-N1{background-color:#0A0F25;} + .d2-855222762 .background-color-N2{background-color:#676C7E;} + .d2-855222762 .background-color-N3{background-color:#9499AB;} + .d2-855222762 .background-color-N4{background-color:#CFD2DD;} + .d2-855222762 .background-color-N5{background-color:#DEE1EB;} + .d2-855222762 .background-color-N6{background-color:#EEF1F8;} + .d2-855222762 .background-color-N7{background-color:#FFFFFF;} + .d2-855222762 .background-color-B1{background-color:#0D32B2;} + .d2-855222762 .background-color-B2{background-color:#0D32B2;} + .d2-855222762 .background-color-B3{background-color:#E3E9FD;} + .d2-855222762 .background-color-B4{background-color:#E3E9FD;} + .d2-855222762 .background-color-B5{background-color:#EDF0FD;} + .d2-855222762 .background-color-B6{background-color:#F7F8FE;} + .d2-855222762 .background-color-AA2{background-color:#4A6FF3;} + .d2-855222762 .background-color-AA4{background-color:#EDF0FD;} + .d2-855222762 .background-color-AA5{background-color:#F7F8FE;} + .d2-855222762 .background-color-AB4{background-color:#EDF0FD;} + .d2-855222762 .background-color-AB5{background-color:#F7F8FE;} + .d2-855222762 .color-N1{color:#0A0F25;} + .d2-855222762 .color-N2{color:#676C7E;} + .d2-855222762 .color-N3{color:#9499AB;} + .d2-855222762 .color-N4{color:#CFD2DD;} + .d2-855222762 .color-N5{color:#DEE1EB;} + .d2-855222762 .color-N6{color:#EEF1F8;} + .d2-855222762 .color-N7{color:#FFFFFF;} + .d2-855222762 .color-B1{color:#0D32B2;} + .d2-855222762 .color-B2{color:#0D32B2;} + .d2-855222762 .color-B3{color:#E3E9FD;} + .d2-855222762 .color-B4{color:#E3E9FD;} + .d2-855222762 .color-B5{color:#EDF0FD;} + .d2-855222762 .color-B6{color:#F7F8FE;} + .d2-855222762 .color-AA2{color:#4A6FF3;} + .d2-855222762 .color-AA4{color:#EDF0FD;} + .d2-855222762 .color-AA5{color:#F7F8FE;} + .d2-855222762 .color-AB4{color:#EDF0FD;} + .d2-855222762 .color-AB5{color:#F7F8FE;}.appendix text.text{fill:#0A0F25}.md{--color-fg-default:#0A0F25;--color-fg-muted:#676C7E;--color-fg-subtle:#9499AB;--color-canvas-default:#FFFFFF;--color-canvas-subtle:#EEF1F8;--color-border-default:#0D32B2;--color-border-muted:#0D32B2;--color-neutral-muted:#EEF1F8;--color-accent-fg:#0D32B2;--color-accent-emphasis:#0D32B2;--color-attention-subtle:#676C7E;--color-danger-fg:red;}.sketch-overlay-B1{fill:url(#streaks-darker);mix-blend-mode:lighten}.sketch-overlay-B2{fill:url(#streaks-darker);mix-blend-mode:lighten}.sketch-overlay-B3{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-B4{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-B5{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-B6{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-AA2{fill:url(#streaks-dark);mix-blend-mode:overlay}.sketch-overlay-AA4{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-AA5{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-AB4{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-AB5{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-N1{fill:url(#streaks-darker);mix-blend-mode:lighten}.sketch-overlay-N2{fill:url(#streaks-dark);mix-blend-mode:overlay}.sketch-overlay-N3{fill:url(#streaks-normal);mix-blend-mode:color-burn}.sketch-overlay-N4{fill:url(#streaks-normal);mix-blend-mode:color-burn}.sketch-overlay-N5{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-N6{fill:url(#streaks-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 c353bef6f2..b101262f5b 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 -Approach roadChicken's plan +Approach roadChicken's plan -Approach roadCross roadChicken's plan +Approach roadCross roadChicken's plan -Approach roadCross roadMake you wonder whyChicken's plan +Approach roadCross roadMake you wonder whyChicken's plan \ No newline at end of file diff --git a/e2etests-cli/testdata/TestCLI_E2E/center.exp.svg b/e2etests-cli/testdata/TestCLI_E2E/center.exp.svg index c43989deb8..a41e9f9fc3 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-855222762 .fill-N1{fill:#0A0F25;} + .d2-855222762 .fill-N2{fill:#676C7E;} + .d2-855222762 .fill-N3{fill:#9499AB;} + .d2-855222762 .fill-N4{fill:#CFD2DD;} + .d2-855222762 .fill-N5{fill:#DEE1EB;} + .d2-855222762 .fill-N6{fill:#EEF1F8;} + .d2-855222762 .fill-N7{fill:#FFFFFF;} + .d2-855222762 .fill-B1{fill:#0D32B2;} + .d2-855222762 .fill-B2{fill:#0D32B2;} + .d2-855222762 .fill-B3{fill:#E3E9FD;} + .d2-855222762 .fill-B4{fill:#E3E9FD;} + .d2-855222762 .fill-B5{fill:#EDF0FD;} + .d2-855222762 .fill-B6{fill:#F7F8FE;} + .d2-855222762 .fill-AA2{fill:#4A6FF3;} + .d2-855222762 .fill-AA4{fill:#EDF0FD;} + .d2-855222762 .fill-AA5{fill:#F7F8FE;} + .d2-855222762 .fill-AB4{fill:#EDF0FD;} + .d2-855222762 .fill-AB5{fill:#F7F8FE;} + .d2-855222762 .stroke-N1{stroke:#0A0F25;} + .d2-855222762 .stroke-N2{stroke:#676C7E;} + .d2-855222762 .stroke-N3{stroke:#9499AB;} + .d2-855222762 .stroke-N4{stroke:#CFD2DD;} + .d2-855222762 .stroke-N5{stroke:#DEE1EB;} + .d2-855222762 .stroke-N6{stroke:#EEF1F8;} + .d2-855222762 .stroke-N7{stroke:#FFFFFF;} + .d2-855222762 .stroke-B1{stroke:#0D32B2;} + .d2-855222762 .stroke-B2{stroke:#0D32B2;} + .d2-855222762 .stroke-B3{stroke:#E3E9FD;} + .d2-855222762 .stroke-B4{stroke:#E3E9FD;} + .d2-855222762 .stroke-B5{stroke:#EDF0FD;} + .d2-855222762 .stroke-B6{stroke:#F7F8FE;} + .d2-855222762 .stroke-AA2{stroke:#4A6FF3;} + .d2-855222762 .stroke-AA4{stroke:#EDF0FD;} + .d2-855222762 .stroke-AA5{stroke:#F7F8FE;} + .d2-855222762 .stroke-AB4{stroke:#EDF0FD;} + .d2-855222762 .stroke-AB5{stroke:#F7F8FE;} + .d2-855222762 .background-color-N1{background-color:#0A0F25;} + .d2-855222762 .background-color-N2{background-color:#676C7E;} + .d2-855222762 .background-color-N3{background-color:#9499AB;} + .d2-855222762 .background-color-N4{background-color:#CFD2DD;} + .d2-855222762 .background-color-N5{background-color:#DEE1EB;} + .d2-855222762 .background-color-N6{background-color:#EEF1F8;} + .d2-855222762 .background-color-N7{background-color:#FFFFFF;} + .d2-855222762 .background-color-B1{background-color:#0D32B2;} + .d2-855222762 .background-color-B2{background-color:#0D32B2;} + .d2-855222762 .background-color-B3{background-color:#E3E9FD;} + .d2-855222762 .background-color-B4{background-color:#E3E9FD;} + .d2-855222762 .background-color-B5{background-color:#EDF0FD;} + .d2-855222762 .background-color-B6{background-color:#F7F8FE;} + .d2-855222762 .background-color-AA2{background-color:#4A6FF3;} + .d2-855222762 .background-color-AA4{background-color:#EDF0FD;} + .d2-855222762 .background-color-AA5{background-color:#F7F8FE;} + .d2-855222762 .background-color-AB4{background-color:#EDF0FD;} + .d2-855222762 .background-color-AB5{background-color:#F7F8FE;} + .d2-855222762 .color-N1{color:#0A0F25;} + .d2-855222762 .color-N2{color:#676C7E;} + .d2-855222762 .color-N3{color:#9499AB;} + .d2-855222762 .color-N4{color:#CFD2DD;} + .d2-855222762 .color-N5{color:#DEE1EB;} + .d2-855222762 .color-N6{color:#EEF1F8;} + .d2-855222762 .color-N7{color:#FFFFFF;} + .d2-855222762 .color-B1{color:#0D32B2;} + .d2-855222762 .color-B2{color:#0D32B2;} + .d2-855222762 .color-B3{color:#E3E9FD;} + .d2-855222762 .color-B4{color:#E3E9FD;} + .d2-855222762 .color-B5{color:#EDF0FD;} + .d2-855222762 .color-B6{color:#F7F8FE;} + .d2-855222762 .color-AA2{color:#4A6FF3;} + .d2-855222762 .color-AA4{color:#EDF0FD;} + .d2-855222762 .color-AA5{color:#F7F8FE;} + .d2-855222762 .color-AB4{color:#EDF0FD;} + .d2-855222762 .color-AB5{color:#F7F8FE;}.appendix text.text{fill:#0A0F25}.md{--color-fg-default:#0A0F25;--color-fg-muted:#676C7E;--color-fg-subtle:#9499AB;--color-canvas-default:#FFFFFF;--color-canvas-subtle:#EEF1F8;--color-border-default:#0D32B2;--color-border-muted:#0D32B2;--color-neutral-muted:#EEF1F8;--color-accent-fg:#0D32B2;--color-accent-emphasis:#0D32B2;--color-attention-subtle:#676C7E;--color-danger-fg:red;}.sketch-overlay-B1{fill:url(#streaks-darker);mix-blend-mode:lighten}.sketch-overlay-B2{fill:url(#streaks-darker);mix-blend-mode:lighten}.sketch-overlay-B3{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-B4{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-B5{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-B6{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-AA2{fill:url(#streaks-dark);mix-blend-mode:overlay}.sketch-overlay-AA4{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-AA5{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-AB4{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-AB5{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-N1{fill:url(#streaks-darker);mix-blend-mode:lighten}.sketch-overlay-N2{fill:url(#streaks-dark);mix-blend-mode:overlay}.sketch-overlay-N3{fill:url(#streaks-normal);mix-blend-mode:color-burn}.sketch-overlay-N4{fill:url(#streaks-normal);mix-blend-mode:color-burn}.sketch-overlay-N5{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-N6{fill:url(#streaks-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/internal_linked_pdf.exp.pdf b/e2etests-cli/testdata/TestCLI_E2E/internal_linked_pdf.exp.pdf index 74e94d1fa6..4011fc17f1 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 243b73f855..febac2c5b0 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-803513315 .fill-N1{fill:#0A0F25;} + .d2-803513315 .fill-N2{fill:#676C7E;} + .d2-803513315 .fill-N3{fill:#9499AB;} + .d2-803513315 .fill-N4{fill:#CFD2DD;} + .d2-803513315 .fill-N5{fill:#DEE1EB;} + .d2-803513315 .fill-N6{fill:#EEF1F8;} + .d2-803513315 .fill-N7{fill:#FFFFFF;} + .d2-803513315 .fill-B1{fill:#0D32B2;} + .d2-803513315 .fill-B2{fill:#0D32B2;} + .d2-803513315 .fill-B3{fill:#E3E9FD;} + .d2-803513315 .fill-B4{fill:#E3E9FD;} + .d2-803513315 .fill-B5{fill:#EDF0FD;} + .d2-803513315 .fill-B6{fill:#F7F8FE;} + .d2-803513315 .fill-AA2{fill:#4A6FF3;} + .d2-803513315 .fill-AA4{fill:#EDF0FD;} + .d2-803513315 .fill-AA5{fill:#F7F8FE;} + .d2-803513315 .fill-AB4{fill:#EDF0FD;} + .d2-803513315 .fill-AB5{fill:#F7F8FE;} + .d2-803513315 .stroke-N1{stroke:#0A0F25;} + .d2-803513315 .stroke-N2{stroke:#676C7E;} + .d2-803513315 .stroke-N3{stroke:#9499AB;} + .d2-803513315 .stroke-N4{stroke:#CFD2DD;} + .d2-803513315 .stroke-N5{stroke:#DEE1EB;} + .d2-803513315 .stroke-N6{stroke:#EEF1F8;} + .d2-803513315 .stroke-N7{stroke:#FFFFFF;} + .d2-803513315 .stroke-B1{stroke:#0D32B2;} + .d2-803513315 .stroke-B2{stroke:#0D32B2;} + .d2-803513315 .stroke-B3{stroke:#E3E9FD;} + .d2-803513315 .stroke-B4{stroke:#E3E9FD;} + .d2-803513315 .stroke-B5{stroke:#EDF0FD;} + .d2-803513315 .stroke-B6{stroke:#F7F8FE;} + .d2-803513315 .stroke-AA2{stroke:#4A6FF3;} + .d2-803513315 .stroke-AA4{stroke:#EDF0FD;} + .d2-803513315 .stroke-AA5{stroke:#F7F8FE;} + .d2-803513315 .stroke-AB4{stroke:#EDF0FD;} + .d2-803513315 .stroke-AB5{stroke:#F7F8FE;} + .d2-803513315 .background-color-N1{background-color:#0A0F25;} + .d2-803513315 .background-color-N2{background-color:#676C7E;} + .d2-803513315 .background-color-N3{background-color:#9499AB;} + .d2-803513315 .background-color-N4{background-color:#CFD2DD;} + .d2-803513315 .background-color-N5{background-color:#DEE1EB;} + .d2-803513315 .background-color-N6{background-color:#EEF1F8;} + .d2-803513315 .background-color-N7{background-color:#FFFFFF;} + .d2-803513315 .background-color-B1{background-color:#0D32B2;} + .d2-803513315 .background-color-B2{background-color:#0D32B2;} + .d2-803513315 .background-color-B3{background-color:#E3E9FD;} + .d2-803513315 .background-color-B4{background-color:#E3E9FD;} + .d2-803513315 .background-color-B5{background-color:#EDF0FD;} + .d2-803513315 .background-color-B6{background-color:#F7F8FE;} + .d2-803513315 .background-color-AA2{background-color:#4A6FF3;} + .d2-803513315 .background-color-AA4{background-color:#EDF0FD;} + .d2-803513315 .background-color-AA5{background-color:#F7F8FE;} + .d2-803513315 .background-color-AB4{background-color:#EDF0FD;} + .d2-803513315 .background-color-AB5{background-color:#F7F8FE;} + .d2-803513315 .color-N1{color:#0A0F25;} + .d2-803513315 .color-N2{color:#676C7E;} + .d2-803513315 .color-N3{color:#9499AB;} + .d2-803513315 .color-N4{color:#CFD2DD;} + .d2-803513315 .color-N5{color:#DEE1EB;} + .d2-803513315 .color-N6{color:#EEF1F8;} + .d2-803513315 .color-N7{color:#FFFFFF;} + .d2-803513315 .color-B1{color:#0D32B2;} + .d2-803513315 .color-B2{color:#0D32B2;} + .d2-803513315 .color-B3{color:#E3E9FD;} + .d2-803513315 .color-B4{color:#E3E9FD;} + .d2-803513315 .color-B5{color:#EDF0FD;} + .d2-803513315 .color-B6{color:#F7F8FE;} + .d2-803513315 .color-AA2{color:#4A6FF3;} + .d2-803513315 .color-AA4{color:#EDF0FD;} + .d2-803513315 .color-AA5{color:#F7F8FE;} + .d2-803513315 .color-AB4{color:#EDF0FD;} + .d2-803513315 .color-AB5{color:#F7F8FE;}.appendix text.text{fill:#0A0F25}.md{--color-fg-default:#0A0F25;--color-fg-muted:#676C7E;--color-fg-subtle:#9499AB;--color-canvas-default:#FFFFFF;--color-canvas-subtle:#EEF1F8;--color-border-default:#0D32B2;--color-border-muted:#0D32B2;--color-neutral-muted:#EEF1F8;--color-accent-fg:#0D32B2;--color-accent-emphasis:#0D32B2;--color-attention-subtle:#676C7E;--color-danger-fg:red;}.sketch-overlay-B1{fill:url(#streaks-darker);mix-blend-mode:lighten}.sketch-overlay-B2{fill:url(#streaks-darker);mix-blend-mode:lighten}.sketch-overlay-B3{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-B4{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-B5{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-B6{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-AA2{fill:url(#streaks-dark);mix-blend-mode:overlay}.sketch-overlay-AA4{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-AA5{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-AB4{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-AB5{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-N1{fill:url(#streaks-darker);mix-blend-mode:lighten}.sketch-overlay-N2{fill:url(#streaks-dark);mix-blend-mode:overlay}.sketch-overlay-N3{fill:url(#streaks-normal);mix-blend-mode:color-burn}.sketch-overlay-N4{fill:url(#streaks-normal);mix-blend-mode:color-burn}.sketch-overlay-N5{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-N6{fill:url(#streaks-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 fd4b656645..54e5a05ba8 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-2065426295 .fill-N1{fill:#0A0F25;} + .d2-2065426295 .fill-N2{fill:#676C7E;} + .d2-2065426295 .fill-N3{fill:#9499AB;} + .d2-2065426295 .fill-N4{fill:#CFD2DD;} + .d2-2065426295 .fill-N5{fill:#DEE1EB;} + .d2-2065426295 .fill-N6{fill:#EEF1F8;} + .d2-2065426295 .fill-N7{fill:#FFFFFF;} + .d2-2065426295 .fill-B1{fill:#0D32B2;} + .d2-2065426295 .fill-B2{fill:#0D32B2;} + .d2-2065426295 .fill-B3{fill:#E3E9FD;} + .d2-2065426295 .fill-B4{fill:#E3E9FD;} + .d2-2065426295 .fill-B5{fill:#EDF0FD;} + .d2-2065426295 .fill-B6{fill:#F7F8FE;} + .d2-2065426295 .fill-AA2{fill:#4A6FF3;} + .d2-2065426295 .fill-AA4{fill:#EDF0FD;} + .d2-2065426295 .fill-AA5{fill:#F7F8FE;} + .d2-2065426295 .fill-AB4{fill:#EDF0FD;} + .d2-2065426295 .fill-AB5{fill:#F7F8FE;} + .d2-2065426295 .stroke-N1{stroke:#0A0F25;} + .d2-2065426295 .stroke-N2{stroke:#676C7E;} + .d2-2065426295 .stroke-N3{stroke:#9499AB;} + .d2-2065426295 .stroke-N4{stroke:#CFD2DD;} + .d2-2065426295 .stroke-N5{stroke:#DEE1EB;} + .d2-2065426295 .stroke-N6{stroke:#EEF1F8;} + .d2-2065426295 .stroke-N7{stroke:#FFFFFF;} + .d2-2065426295 .stroke-B1{stroke:#0D32B2;} + .d2-2065426295 .stroke-B2{stroke:#0D32B2;} + .d2-2065426295 .stroke-B3{stroke:#E3E9FD;} + .d2-2065426295 .stroke-B4{stroke:#E3E9FD;} + .d2-2065426295 .stroke-B5{stroke:#EDF0FD;} + .d2-2065426295 .stroke-B6{stroke:#F7F8FE;} + .d2-2065426295 .stroke-AA2{stroke:#4A6FF3;} + .d2-2065426295 .stroke-AA4{stroke:#EDF0FD;} + .d2-2065426295 .stroke-AA5{stroke:#F7F8FE;} + .d2-2065426295 .stroke-AB4{stroke:#EDF0FD;} + .d2-2065426295 .stroke-AB5{stroke:#F7F8FE;} + .d2-2065426295 .background-color-N1{background-color:#0A0F25;} + .d2-2065426295 .background-color-N2{background-color:#676C7E;} + .d2-2065426295 .background-color-N3{background-color:#9499AB;} + .d2-2065426295 .background-color-N4{background-color:#CFD2DD;} + .d2-2065426295 .background-color-N5{background-color:#DEE1EB;} + .d2-2065426295 .background-color-N6{background-color:#EEF1F8;} + .d2-2065426295 .background-color-N7{background-color:#FFFFFF;} + .d2-2065426295 .background-color-B1{background-color:#0D32B2;} + .d2-2065426295 .background-color-B2{background-color:#0D32B2;} + .d2-2065426295 .background-color-B3{background-color:#E3E9FD;} + .d2-2065426295 .background-color-B4{background-color:#E3E9FD;} + .d2-2065426295 .background-color-B5{background-color:#EDF0FD;} + .d2-2065426295 .background-color-B6{background-color:#F7F8FE;} + .d2-2065426295 .background-color-AA2{background-color:#4A6FF3;} + .d2-2065426295 .background-color-AA4{background-color:#EDF0FD;} + .d2-2065426295 .background-color-AA5{background-color:#F7F8FE;} + .d2-2065426295 .background-color-AB4{background-color:#EDF0FD;} + .d2-2065426295 .background-color-AB5{background-color:#F7F8FE;} + .d2-2065426295 .color-N1{color:#0A0F25;} + .d2-2065426295 .color-N2{color:#676C7E;} + .d2-2065426295 .color-N3{color:#9499AB;} + .d2-2065426295 .color-N4{color:#CFD2DD;} + .d2-2065426295 .color-N5{color:#DEE1EB;} + .d2-2065426295 .color-N6{color:#EEF1F8;} + .d2-2065426295 .color-N7{color:#FFFFFF;} + .d2-2065426295 .color-B1{color:#0D32B2;} + .d2-2065426295 .color-B2{color:#0D32B2;} + .d2-2065426295 .color-B3{color:#E3E9FD;} + .d2-2065426295 .color-B4{color:#E3E9FD;} + .d2-2065426295 .color-B5{color:#EDF0FD;} + .d2-2065426295 .color-B6{color:#F7F8FE;} + .d2-2065426295 .color-AA2{color:#4A6FF3;} + .d2-2065426295 .color-AA4{color:#EDF0FD;} + .d2-2065426295 .color-AA5{color:#F7F8FE;} + .d2-2065426295 .color-AB4{color:#EDF0FD;} + .d2-2065426295 .color-AB5{color:#F7F8FE;}.appendix text.text{fill:#0A0F25}.md{--color-fg-default:#0A0F25;--color-fg-muted:#676C7E;--color-fg-subtle:#9499AB;--color-canvas-default:#FFFFFF;--color-canvas-subtle:#EEF1F8;--color-border-default:#0D32B2;--color-border-muted:#0D32B2;--color-neutral-muted:#EEF1F8;--color-accent-fg:#0D32B2;--color-accent-emphasis:#0D32B2;--color-attention-subtle:#676C7E;--color-danger-fg:red;}.sketch-overlay-B1{fill:url(#streaks-darker);mix-blend-mode:lighten}.sketch-overlay-B2{fill:url(#streaks-darker);mix-blend-mode:lighten}.sketch-overlay-B3{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-B4{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-B5{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-B6{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-AA2{fill:url(#streaks-dark);mix-blend-mode:overlay}.sketch-overlay-AA4{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-AA5{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-AB4{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-AB5{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-N1{fill:url(#streaks-darker);mix-blend-mode:lighten}.sketch-overlay-N2{fill:url(#streaks-dark);mix-blend-mode:overlay}.sketch-overlay-N3{fill:url(#streaks-normal);mix-blend-mode:color-burn}.sketch-overlay-N4{fill:url(#streaks-normal);mix-blend-mode:color-burn}.sketch-overlay-N5{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-N6{fill:url(#streaks-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 243b73f855..febac2c5b0 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-803513315 .fill-N1{fill:#0A0F25;} + .d2-803513315 .fill-N2{fill:#676C7E;} + .d2-803513315 .fill-N3{fill:#9499AB;} + .d2-803513315 .fill-N4{fill:#CFD2DD;} + .d2-803513315 .fill-N5{fill:#DEE1EB;} + .d2-803513315 .fill-N6{fill:#EEF1F8;} + .d2-803513315 .fill-N7{fill:#FFFFFF;} + .d2-803513315 .fill-B1{fill:#0D32B2;} + .d2-803513315 .fill-B2{fill:#0D32B2;} + .d2-803513315 .fill-B3{fill:#E3E9FD;} + .d2-803513315 .fill-B4{fill:#E3E9FD;} + .d2-803513315 .fill-B5{fill:#EDF0FD;} + .d2-803513315 .fill-B6{fill:#F7F8FE;} + .d2-803513315 .fill-AA2{fill:#4A6FF3;} + .d2-803513315 .fill-AA4{fill:#EDF0FD;} + .d2-803513315 .fill-AA5{fill:#F7F8FE;} + .d2-803513315 .fill-AB4{fill:#EDF0FD;} + .d2-803513315 .fill-AB5{fill:#F7F8FE;} + .d2-803513315 .stroke-N1{stroke:#0A0F25;} + .d2-803513315 .stroke-N2{stroke:#676C7E;} + .d2-803513315 .stroke-N3{stroke:#9499AB;} + .d2-803513315 .stroke-N4{stroke:#CFD2DD;} + .d2-803513315 .stroke-N5{stroke:#DEE1EB;} + .d2-803513315 .stroke-N6{stroke:#EEF1F8;} + .d2-803513315 .stroke-N7{stroke:#FFFFFF;} + .d2-803513315 .stroke-B1{stroke:#0D32B2;} + .d2-803513315 .stroke-B2{stroke:#0D32B2;} + .d2-803513315 .stroke-B3{stroke:#E3E9FD;} + .d2-803513315 .stroke-B4{stroke:#E3E9FD;} + .d2-803513315 .stroke-B5{stroke:#EDF0FD;} + .d2-803513315 .stroke-B6{stroke:#F7F8FE;} + .d2-803513315 .stroke-AA2{stroke:#4A6FF3;} + .d2-803513315 .stroke-AA4{stroke:#EDF0FD;} + .d2-803513315 .stroke-AA5{stroke:#F7F8FE;} + .d2-803513315 .stroke-AB4{stroke:#EDF0FD;} + .d2-803513315 .stroke-AB5{stroke:#F7F8FE;} + .d2-803513315 .background-color-N1{background-color:#0A0F25;} + .d2-803513315 .background-color-N2{background-color:#676C7E;} + .d2-803513315 .background-color-N3{background-color:#9499AB;} + .d2-803513315 .background-color-N4{background-color:#CFD2DD;} + .d2-803513315 .background-color-N5{background-color:#DEE1EB;} + .d2-803513315 .background-color-N6{background-color:#EEF1F8;} + .d2-803513315 .background-color-N7{background-color:#FFFFFF;} + .d2-803513315 .background-color-B1{background-color:#0D32B2;} + .d2-803513315 .background-color-B2{background-color:#0D32B2;} + .d2-803513315 .background-color-B3{background-color:#E3E9FD;} + .d2-803513315 .background-color-B4{background-color:#E3E9FD;} + .d2-803513315 .background-color-B5{background-color:#EDF0FD;} + .d2-803513315 .background-color-B6{background-color:#F7F8FE;} + .d2-803513315 .background-color-AA2{background-color:#4A6FF3;} + .d2-803513315 .background-color-AA4{background-color:#EDF0FD;} + .d2-803513315 .background-color-AA5{background-color:#F7F8FE;} + .d2-803513315 .background-color-AB4{background-color:#EDF0FD;} + .d2-803513315 .background-color-AB5{background-color:#F7F8FE;} + .d2-803513315 .color-N1{color:#0A0F25;} + .d2-803513315 .color-N2{color:#676C7E;} + .d2-803513315 .color-N3{color:#9499AB;} + .d2-803513315 .color-N4{color:#CFD2DD;} + .d2-803513315 .color-N5{color:#DEE1EB;} + .d2-803513315 .color-N6{color:#EEF1F8;} + .d2-803513315 .color-N7{color:#FFFFFF;} + .d2-803513315 .color-B1{color:#0D32B2;} + .d2-803513315 .color-B2{color:#0D32B2;} + .d2-803513315 .color-B3{color:#E3E9FD;} + .d2-803513315 .color-B4{color:#E3E9FD;} + .d2-803513315 .color-B5{color:#EDF0FD;} + .d2-803513315 .color-B6{color:#F7F8FE;} + .d2-803513315 .color-AA2{color:#4A6FF3;} + .d2-803513315 .color-AA4{color:#EDF0FD;} + .d2-803513315 .color-AA5{color:#F7F8FE;} + .d2-803513315 .color-AB4{color:#EDF0FD;} + .d2-803513315 .color-AB5{color:#F7F8FE;}.appendix text.text{fill:#0A0F25}.md{--color-fg-default:#0A0F25;--color-fg-muted:#676C7E;--color-fg-subtle:#9499AB;--color-canvas-default:#FFFFFF;--color-canvas-subtle:#EEF1F8;--color-border-default:#0D32B2;--color-border-muted:#0D32B2;--color-neutral-muted:#EEF1F8;--color-accent-fg:#0D32B2;--color-accent-emphasis:#0D32B2;--color-attention-subtle:#676C7E;--color-danger-fg:red;}.sketch-overlay-B1{fill:url(#streaks-darker);mix-blend-mode:lighten}.sketch-overlay-B2{fill:url(#streaks-darker);mix-blend-mode:lighten}.sketch-overlay-B3{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-B4{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-B5{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-B6{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-AA2{fill:url(#streaks-dark);mix-blend-mode:overlay}.sketch-overlay-AA4{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-AA5{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-AB4{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-AB5{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-N1{fill:url(#streaks-darker);mix-blend-mode:lighten}.sketch-overlay-N2{fill:url(#streaks-dark);mix-blend-mode:overlay}.sketch-overlay-N3{fill:url(#streaks-normal);mix-blend-mode:color-burn}.sketch-overlay-N4{fill:url(#streaks-normal);mix-blend-mode:color-burn}.sketch-overlay-N5{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-N6{fill:url(#streaks-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 fd4b656645..54e5a05ba8 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-2065426295 .fill-N1{fill:#0A0F25;} + .d2-2065426295 .fill-N2{fill:#676C7E;} + .d2-2065426295 .fill-N3{fill:#9499AB;} + .d2-2065426295 .fill-N4{fill:#CFD2DD;} + .d2-2065426295 .fill-N5{fill:#DEE1EB;} + .d2-2065426295 .fill-N6{fill:#EEF1F8;} + .d2-2065426295 .fill-N7{fill:#FFFFFF;} + .d2-2065426295 .fill-B1{fill:#0D32B2;} + .d2-2065426295 .fill-B2{fill:#0D32B2;} + .d2-2065426295 .fill-B3{fill:#E3E9FD;} + .d2-2065426295 .fill-B4{fill:#E3E9FD;} + .d2-2065426295 .fill-B5{fill:#EDF0FD;} + .d2-2065426295 .fill-B6{fill:#F7F8FE;} + .d2-2065426295 .fill-AA2{fill:#4A6FF3;} + .d2-2065426295 .fill-AA4{fill:#EDF0FD;} + .d2-2065426295 .fill-AA5{fill:#F7F8FE;} + .d2-2065426295 .fill-AB4{fill:#EDF0FD;} + .d2-2065426295 .fill-AB5{fill:#F7F8FE;} + .d2-2065426295 .stroke-N1{stroke:#0A0F25;} + .d2-2065426295 .stroke-N2{stroke:#676C7E;} + .d2-2065426295 .stroke-N3{stroke:#9499AB;} + .d2-2065426295 .stroke-N4{stroke:#CFD2DD;} + .d2-2065426295 .stroke-N5{stroke:#DEE1EB;} + .d2-2065426295 .stroke-N6{stroke:#EEF1F8;} + .d2-2065426295 .stroke-N7{stroke:#FFFFFF;} + .d2-2065426295 .stroke-B1{stroke:#0D32B2;} + .d2-2065426295 .stroke-B2{stroke:#0D32B2;} + .d2-2065426295 .stroke-B3{stroke:#E3E9FD;} + .d2-2065426295 .stroke-B4{stroke:#E3E9FD;} + .d2-2065426295 .stroke-B5{stroke:#EDF0FD;} + .d2-2065426295 .stroke-B6{stroke:#F7F8FE;} + .d2-2065426295 .stroke-AA2{stroke:#4A6FF3;} + .d2-2065426295 .stroke-AA4{stroke:#EDF0FD;} + .d2-2065426295 .stroke-AA5{stroke:#F7F8FE;} + .d2-2065426295 .stroke-AB4{stroke:#EDF0FD;} + .d2-2065426295 .stroke-AB5{stroke:#F7F8FE;} + .d2-2065426295 .background-color-N1{background-color:#0A0F25;} + .d2-2065426295 .background-color-N2{background-color:#676C7E;} + .d2-2065426295 .background-color-N3{background-color:#9499AB;} + .d2-2065426295 .background-color-N4{background-color:#CFD2DD;} + .d2-2065426295 .background-color-N5{background-color:#DEE1EB;} + .d2-2065426295 .background-color-N6{background-color:#EEF1F8;} + .d2-2065426295 .background-color-N7{background-color:#FFFFFF;} + .d2-2065426295 .background-color-B1{background-color:#0D32B2;} + .d2-2065426295 .background-color-B2{background-color:#0D32B2;} + .d2-2065426295 .background-color-B3{background-color:#E3E9FD;} + .d2-2065426295 .background-color-B4{background-color:#E3E9FD;} + .d2-2065426295 .background-color-B5{background-color:#EDF0FD;} + .d2-2065426295 .background-color-B6{background-color:#F7F8FE;} + .d2-2065426295 .background-color-AA2{background-color:#4A6FF3;} + .d2-2065426295 .background-color-AA4{background-color:#EDF0FD;} + .d2-2065426295 .background-color-AA5{background-color:#F7F8FE;} + .d2-2065426295 .background-color-AB4{background-color:#EDF0FD;} + .d2-2065426295 .background-color-AB5{background-color:#F7F8FE;} + .d2-2065426295 .color-N1{color:#0A0F25;} + .d2-2065426295 .color-N2{color:#676C7E;} + .d2-2065426295 .color-N3{color:#9499AB;} + .d2-2065426295 .color-N4{color:#CFD2DD;} + .d2-2065426295 .color-N5{color:#DEE1EB;} + .d2-2065426295 .color-N6{color:#EEF1F8;} + .d2-2065426295 .color-N7{color:#FFFFFF;} + .d2-2065426295 .color-B1{color:#0D32B2;} + .d2-2065426295 .color-B2{color:#0D32B2;} + .d2-2065426295 .color-B3{color:#E3E9FD;} + .d2-2065426295 .color-B4{color:#E3E9FD;} + .d2-2065426295 .color-B5{color:#EDF0FD;} + .d2-2065426295 .color-B6{color:#F7F8FE;} + .d2-2065426295 .color-AA2{color:#4A6FF3;} + .d2-2065426295 .color-AA4{color:#EDF0FD;} + .d2-2065426295 .color-AA5{color:#F7F8FE;} + .d2-2065426295 .color-AB4{color:#EDF0FD;} + .d2-2065426295 .color-AB5{color:#F7F8FE;}.appendix text.text{fill:#0A0F25}.md{--color-fg-default:#0A0F25;--color-fg-muted:#676C7E;--color-fg-subtle:#9499AB;--color-canvas-default:#FFFFFF;--color-canvas-subtle:#EEF1F8;--color-border-default:#0D32B2;--color-border-muted:#0D32B2;--color-neutral-muted:#EEF1F8;--color-accent-fg:#0D32B2;--color-accent-emphasis:#0D32B2;--color-attention-subtle:#676C7E;--color-danger-fg:red;}.sketch-overlay-B1{fill:url(#streaks-darker);mix-blend-mode:lighten}.sketch-overlay-B2{fill:url(#streaks-darker);mix-blend-mode:lighten}.sketch-overlay-B3{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-B4{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-B5{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-B6{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-AA2{fill:url(#streaks-dark);mix-blend-mode:overlay}.sketch-overlay-AA4{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-AA5{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-AB4{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-AB5{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-N1{fill:url(#streaks-darker);mix-blend-mode:lighten}.sketch-overlay-N2{fill:url(#streaks-dark);mix-blend-mode:overlay}.sketch-overlay-N3{fill:url(#streaks-normal);mix-blend-mode:color-burn}.sketch-overlay-N4{fill:url(#streaks-normal);mix-blend-mode:color-burn}.sketch-overlay-N5{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-N6{fill:url(#streaks-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/stdin.exp.svg b/e2etests-cli/testdata/TestCLI_E2E/stdin.exp.svg index f627c0098e..1244e341ba 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-855222762 .fill-N1{fill:#0A0F25;} + .d2-855222762 .fill-N2{fill:#676C7E;} + .d2-855222762 .fill-N3{fill:#9499AB;} + .d2-855222762 .fill-N4{fill:#CFD2DD;} + .d2-855222762 .fill-N5{fill:#DEE1EB;} + .d2-855222762 .fill-N6{fill:#EEF1F8;} + .d2-855222762 .fill-N7{fill:#FFFFFF;} + .d2-855222762 .fill-B1{fill:#0D32B2;} + .d2-855222762 .fill-B2{fill:#0D32B2;} + .d2-855222762 .fill-B3{fill:#E3E9FD;} + .d2-855222762 .fill-B4{fill:#E3E9FD;} + .d2-855222762 .fill-B5{fill:#EDF0FD;} + .d2-855222762 .fill-B6{fill:#F7F8FE;} + .d2-855222762 .fill-AA2{fill:#4A6FF3;} + .d2-855222762 .fill-AA4{fill:#EDF0FD;} + .d2-855222762 .fill-AA5{fill:#F7F8FE;} + .d2-855222762 .fill-AB4{fill:#EDF0FD;} + .d2-855222762 .fill-AB5{fill:#F7F8FE;} + .d2-855222762 .stroke-N1{stroke:#0A0F25;} + .d2-855222762 .stroke-N2{stroke:#676C7E;} + .d2-855222762 .stroke-N3{stroke:#9499AB;} + .d2-855222762 .stroke-N4{stroke:#CFD2DD;} + .d2-855222762 .stroke-N5{stroke:#DEE1EB;} + .d2-855222762 .stroke-N6{stroke:#EEF1F8;} + .d2-855222762 .stroke-N7{stroke:#FFFFFF;} + .d2-855222762 .stroke-B1{stroke:#0D32B2;} + .d2-855222762 .stroke-B2{stroke:#0D32B2;} + .d2-855222762 .stroke-B3{stroke:#E3E9FD;} + .d2-855222762 .stroke-B4{stroke:#E3E9FD;} + .d2-855222762 .stroke-B5{stroke:#EDF0FD;} + .d2-855222762 .stroke-B6{stroke:#F7F8FE;} + .d2-855222762 .stroke-AA2{stroke:#4A6FF3;} + .d2-855222762 .stroke-AA4{stroke:#EDF0FD;} + .d2-855222762 .stroke-AA5{stroke:#F7F8FE;} + .d2-855222762 .stroke-AB4{stroke:#EDF0FD;} + .d2-855222762 .stroke-AB5{stroke:#F7F8FE;} + .d2-855222762 .background-color-N1{background-color:#0A0F25;} + .d2-855222762 .background-color-N2{background-color:#676C7E;} + .d2-855222762 .background-color-N3{background-color:#9499AB;} + .d2-855222762 .background-color-N4{background-color:#CFD2DD;} + .d2-855222762 .background-color-N5{background-color:#DEE1EB;} + .d2-855222762 .background-color-N6{background-color:#EEF1F8;} + .d2-855222762 .background-color-N7{background-color:#FFFFFF;} + .d2-855222762 .background-color-B1{background-color:#0D32B2;} + .d2-855222762 .background-color-B2{background-color:#0D32B2;} + .d2-855222762 .background-color-B3{background-color:#E3E9FD;} + .d2-855222762 .background-color-B4{background-color:#E3E9FD;} + .d2-855222762 .background-color-B5{background-color:#EDF0FD;} + .d2-855222762 .background-color-B6{background-color:#F7F8FE;} + .d2-855222762 .background-color-AA2{background-color:#4A6FF3;} + .d2-855222762 .background-color-AA4{background-color:#EDF0FD;} + .d2-855222762 .background-color-AA5{background-color:#F7F8FE;} + .d2-855222762 .background-color-AB4{background-color:#EDF0FD;} + .d2-855222762 .background-color-AB5{background-color:#F7F8FE;} + .d2-855222762 .color-N1{color:#0A0F25;} + .d2-855222762 .color-N2{color:#676C7E;} + .d2-855222762 .color-N3{color:#9499AB;} + .d2-855222762 .color-N4{color:#CFD2DD;} + .d2-855222762 .color-N5{color:#DEE1EB;} + .d2-855222762 .color-N6{color:#EEF1F8;} + .d2-855222762 .color-N7{color:#FFFFFF;} + .d2-855222762 .color-B1{color:#0D32B2;} + .d2-855222762 .color-B2{color:#0D32B2;} + .d2-855222762 .color-B3{color:#E3E9FD;} + .d2-855222762 .color-B4{color:#E3E9FD;} + .d2-855222762 .color-B5{color:#EDF0FD;} + .d2-855222762 .color-B6{color:#F7F8FE;} + .d2-855222762 .color-AA2{color:#4A6FF3;} + .d2-855222762 .color-AA4{color:#EDF0FD;} + .d2-855222762 .color-AA5{color:#F7F8FE;} + .d2-855222762 .color-AB4{color:#EDF0FD;} + .d2-855222762 .color-AB5{color:#F7F8FE;}.appendix text.text{fill:#0A0F25}.md{--color-fg-default:#0A0F25;--color-fg-muted:#676C7E;--color-fg-subtle:#9499AB;--color-canvas-default:#FFFFFF;--color-canvas-subtle:#EEF1F8;--color-border-default:#0D32B2;--color-border-muted:#0D32B2;--color-neutral-muted:#EEF1F8;--color-accent-fg:#0D32B2;--color-accent-emphasis:#0D32B2;--color-attention-subtle:#676C7E;--color-danger-fg:red;}.sketch-overlay-B1{fill:url(#streaks-darker);mix-blend-mode:lighten}.sketch-overlay-B2{fill:url(#streaks-darker);mix-blend-mode:lighten}.sketch-overlay-B3{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-B4{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-B5{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-B6{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-AA2{fill:url(#streaks-dark);mix-blend-mode:overlay}.sketch-overlay-AA4{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-AA5{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-AB4{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-AB5{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-N1{fill:url(#streaks-darker);mix-blend-mode:lighten}.sketch-overlay-N2{fill:url(#streaks-dark);mix-blend-mode:overlay}.sketch-overlay-N3{fill:url(#streaks-normal);mix-blend-mode:color-burn}.sketch-overlay-N4{fill:url(#streaks-normal);mix-blend-mode:color-burn}.sketch-overlay-N5{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-N6{fill:url(#streaks-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/with-font.exp.svg b/e2etests-cli/testdata/TestCLI_E2E/with-font.exp.svg index b37c79c1d2..884a0cbbb4 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-4159601884 .fill-N1{fill:#0A0F25;} + .d2-4159601884 .fill-N2{fill:#676C7E;} + .d2-4159601884 .fill-N3{fill:#9499AB;} + .d2-4159601884 .fill-N4{fill:#CFD2DD;} + .d2-4159601884 .fill-N5{fill:#DEE1EB;} + .d2-4159601884 .fill-N6{fill:#EEF1F8;} + .d2-4159601884 .fill-N7{fill:#FFFFFF;} + .d2-4159601884 .fill-B1{fill:#0D32B2;} + .d2-4159601884 .fill-B2{fill:#0D32B2;} + .d2-4159601884 .fill-B3{fill:#E3E9FD;} + .d2-4159601884 .fill-B4{fill:#E3E9FD;} + .d2-4159601884 .fill-B5{fill:#EDF0FD;} + .d2-4159601884 .fill-B6{fill:#F7F8FE;} + .d2-4159601884 .fill-AA2{fill:#4A6FF3;} + .d2-4159601884 .fill-AA4{fill:#EDF0FD;} + .d2-4159601884 .fill-AA5{fill:#F7F8FE;} + .d2-4159601884 .fill-AB4{fill:#EDF0FD;} + .d2-4159601884 .fill-AB5{fill:#F7F8FE;} + .d2-4159601884 .stroke-N1{stroke:#0A0F25;} + .d2-4159601884 .stroke-N2{stroke:#676C7E;} + .d2-4159601884 .stroke-N3{stroke:#9499AB;} + .d2-4159601884 .stroke-N4{stroke:#CFD2DD;} + .d2-4159601884 .stroke-N5{stroke:#DEE1EB;} + .d2-4159601884 .stroke-N6{stroke:#EEF1F8;} + .d2-4159601884 .stroke-N7{stroke:#FFFFFF;} + .d2-4159601884 .stroke-B1{stroke:#0D32B2;} + .d2-4159601884 .stroke-B2{stroke:#0D32B2;} + .d2-4159601884 .stroke-B3{stroke:#E3E9FD;} + .d2-4159601884 .stroke-B4{stroke:#E3E9FD;} + .d2-4159601884 .stroke-B5{stroke:#EDF0FD;} + .d2-4159601884 .stroke-B6{stroke:#F7F8FE;} + .d2-4159601884 .stroke-AA2{stroke:#4A6FF3;} + .d2-4159601884 .stroke-AA4{stroke:#EDF0FD;} + .d2-4159601884 .stroke-AA5{stroke:#F7F8FE;} + .d2-4159601884 .stroke-AB4{stroke:#EDF0FD;} + .d2-4159601884 .stroke-AB5{stroke:#F7F8FE;} + .d2-4159601884 .background-color-N1{background-color:#0A0F25;} + .d2-4159601884 .background-color-N2{background-color:#676C7E;} + .d2-4159601884 .background-color-N3{background-color:#9499AB;} + .d2-4159601884 .background-color-N4{background-color:#CFD2DD;} + .d2-4159601884 .background-color-N5{background-color:#DEE1EB;} + .d2-4159601884 .background-color-N6{background-color:#EEF1F8;} + .d2-4159601884 .background-color-N7{background-color:#FFFFFF;} + .d2-4159601884 .background-color-B1{background-color:#0D32B2;} + .d2-4159601884 .background-color-B2{background-color:#0D32B2;} + .d2-4159601884 .background-color-B3{background-color:#E3E9FD;} + .d2-4159601884 .background-color-B4{background-color:#E3E9FD;} + .d2-4159601884 .background-color-B5{background-color:#EDF0FD;} + .d2-4159601884 .background-color-B6{background-color:#F7F8FE;} + .d2-4159601884 .background-color-AA2{background-color:#4A6FF3;} + .d2-4159601884 .background-color-AA4{background-color:#EDF0FD;} + .d2-4159601884 .background-color-AA5{background-color:#F7F8FE;} + .d2-4159601884 .background-color-AB4{background-color:#EDF0FD;} + .d2-4159601884 .background-color-AB5{background-color:#F7F8FE;} + .d2-4159601884 .color-N1{color:#0A0F25;} + .d2-4159601884 .color-N2{color:#676C7E;} + .d2-4159601884 .color-N3{color:#9499AB;} + .d2-4159601884 .color-N4{color:#CFD2DD;} + .d2-4159601884 .color-N5{color:#DEE1EB;} + .d2-4159601884 .color-N6{color:#EEF1F8;} + .d2-4159601884 .color-N7{color:#FFFFFF;} + .d2-4159601884 .color-B1{color:#0D32B2;} + .d2-4159601884 .color-B2{color:#0D32B2;} + .d2-4159601884 .color-B3{color:#E3E9FD;} + .d2-4159601884 .color-B4{color:#E3E9FD;} + .d2-4159601884 .color-B5{color:#EDF0FD;} + .d2-4159601884 .color-B6{color:#F7F8FE;} + .d2-4159601884 .color-AA2{color:#4A6FF3;} + .d2-4159601884 .color-AA4{color:#EDF0FD;} + .d2-4159601884 .color-AA5{color:#F7F8FE;} + .d2-4159601884 .color-AB4{color:#EDF0FD;} + .d2-4159601884 .color-AB5{color:#F7F8FE;}.appendix text.text{fill:#0A0F25}.md{--color-fg-default:#0A0F25;--color-fg-muted:#676C7E;--color-fg-subtle:#9499AB;--color-canvas-default:#FFFFFF;--color-canvas-subtle:#EEF1F8;--color-border-default:#0D32B2;--color-border-muted:#0D32B2;--color-neutral-muted:#EEF1F8;--color-accent-fg:#0D32B2;--color-accent-emphasis:#0D32B2;--color-attention-subtle:#676C7E;--color-danger-fg:red;}.sketch-overlay-B1{fill:url(#streaks-darker);mix-blend-mode:lighten}.sketch-overlay-B2{fill:url(#streaks-darker);mix-blend-mode:lighten}.sketch-overlay-B3{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-B4{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-B5{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-B6{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-AA2{fill:url(#streaks-dark);mix-blend-mode:overlay}.sketch-overlay-AA4{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-AA5{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-AB4{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-AB5{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-N1{fill:url(#streaks-darker);mix-blend-mode:lighten}.sketch-overlay-N2{fill:url(#streaks-dark);mix-blend-mode:overlay}.sketch-overlay-N3{fill:url(#streaks-normal);mix-blend-mode:color-burn}.sketch-overlay-N4{fill:url(#streaks-normal);mix-blend-mode:color-burn}.sketch-overlay-N5{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-N6{fill:url(#streaks-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/regression_test.go b/e2etests/regression_test.go index d2d1f27c62..3c1a8c3ae0 100644 --- a/e2etests/regression_test.go +++ b/e2etests/regression_test.go @@ -703,6 +703,220 @@ And other normal markdown stuff one two } +`, + }, + { + name: "long_arrowhead_label", + script: ` +a -> b: { + target-arrowhead: "a to b with unexpectedly long target arrowhead label" +} +`, + }, + { + name: "arrowhead_sizes_with_labels", + script: ` +triangle: { + a <-> b: { + source-arrowhead: 1 + target-arrowhead: 1 + } + c <-> d: { + source-arrowhead: 1 + target-arrowhead: 1 + style.stroke-width: 8 + } +} +none: { + a -- b: { + source-arrowhead: 1 + target-arrowhead: 1 + } + c -- d: { + source-arrowhead: 1 + target-arrowhead: 1 + style.stroke-width: 8 + } +} +arrow: { + a <-> b: { + source-arrowhead: 1 { + shape: arrow + } + target-arrowhead: 1 { + shape: arrow + } + } + c <-> d: { + source-arrowhead: 1 { + shape: arrow + } + target-arrowhead: 1 { + shape: arrow + } + style.stroke-width: 8 + } +} +diamond: { + a <-> b: { + source-arrowhead: 1 { + shape: diamond + } + target-arrowhead: 1 { + shape: diamond + } + } + c <-> d: { + source-arrowhead: 1 { + shape: diamond + } + target-arrowhead: 1 { + shape: diamond + } + style.stroke-width: 8 + } +} +filled diamond: { + a <-> b: { + source-arrowhead: 1 { + shape: diamond + style.filled: true + } + target-arrowhead: 1 { + shape: diamond + style.filled: true + } + } + c <-> d: { + source-arrowhead: 1 { + shape: diamond + style.filled: true + } + target-arrowhead: 1 { + shape: diamond + style.filled: true + } + style.stroke-width: 8 + } +} +circle: { + a <-> b: { + source-arrowhead: 1 { + shape: circle + } + target-arrowhead: 1 { + shape: circle + } + } + c <-> d: { + source-arrowhead: 1 { + shape: circle + } + target-arrowhead: 1 { + shape: circle + } + style.stroke-width: 8 + } +} +filled circle: { + a <-> b: { + source-arrowhead: 1 { + shape: circle + style.filled: true + } + target-arrowhead: 1 { + shape: circle + style.filled: true + } + } + c <-> d: { + source-arrowhead: 1 { + shape: circle + style.filled: true + } + target-arrowhead: 1 { + shape: circle + style.filled: true + } + style.stroke-width: 8 + } +} +cf one: { + a <-> b: { + source-arrowhead: 1 { + shape: cf-one + } + target-arrowhead: 1 { + shape: cf-one + } + } + c <-> d: { + source-arrowhead: 1 { + shape: cf-one + } + target-arrowhead: 1 { + shape: cf-one + } + style.stroke-width: 8 + } +} +cf one required: { + a <-> b: { + source-arrowhead: 1 { + shape: cf-one-required + } + target-arrowhead: 1 { + shape: cf-one-required + } + } + c <-> d: { + source-arrowhead: 1 { + shape: cf-one-required + } + target-arrowhead: 1 { + shape: cf-one-required + } + style.stroke-width: 8 + } +} +cf many: { + a <-> b: { + source-arrowhead: 1 { + shape: cf-many + } + target-arrowhead: 1 { + shape: cf-many + } + } + c <-> d: { + source-arrowhead: 1 { + shape: cf-many + } + target-arrowhead: 1 { + shape: cf-many + } + style.stroke-width: 8 + } +} +cf many required: { + a <-> b: { + source-arrowhead: 1 { + shape: cf-many-required + } + target-arrowhead: 1 { + shape: cf-many-required + } + } + c <-> d: { + source-arrowhead: 1 { + shape: cf-many-required + } + target-arrowhead: 1 { + shape: cf-many-required + } + style.stroke-width: 8 + } +} `, }, } diff --git a/e2etests/testdata/patterns/all_shapes/dagre/board.exp.json b/e2etests/testdata/patterns/all_shapes/dagre/board.exp.json index 2cdeb798f0..90abf3afbf 100644 --- a/e2etests/testdata/patterns/all_shapes/dagre/board.exp.json +++ b/e2etests/testdata/patterns/all_shapes/dagre/board.exp.json @@ -723,10 +723,8 @@ "id": "(rectangle -> square)[0]", "src": "rectangle", "srcArrow": "none", - "srcLabel": "", "dst": "square", "dstArrow": "triangle", - "dstLabel": "", "opacity": 1, "strokeDash": 0, "strokeWidth": 2, @@ -772,10 +770,8 @@ "id": "(square -> page)[0]", "src": "square", "srcArrow": "none", - "srcLabel": "", "dst": "page", "dstArrow": "triangle", - "dstLabel": "", "opacity": 1, "strokeDash": 0, "strokeWidth": 2, @@ -821,10 +817,8 @@ "id": "(parallelogram -> document)[0]", "src": "parallelogram", "srcArrow": "none", - "srcLabel": "", "dst": "document", "dstArrow": "triangle", - "dstLabel": "", "opacity": 1, "strokeDash": 0, "strokeWidth": 2, @@ -870,10 +864,8 @@ "id": "(document -> cylinder)[0]", "src": "document", "srcArrow": "none", - "srcLabel": "", "dst": "cylinder", "dstArrow": "triangle", - "dstLabel": "", "opacity": 1, "strokeDash": 0, "strokeWidth": 2, @@ -919,10 +911,8 @@ "id": "(queue -> package)[0]", "src": "queue", "srcArrow": "none", - "srcLabel": "", "dst": "package", "dstArrow": "triangle", - "dstLabel": "", "opacity": 1, "strokeDash": 0, "strokeWidth": 2, @@ -968,10 +958,8 @@ "id": "(package -> step)[0]", "src": "package", "srcArrow": "none", - "srcLabel": "", "dst": "step", "dstArrow": "triangle", - "dstLabel": "", "opacity": 1, "strokeDash": 0, "strokeWidth": 2, @@ -1017,10 +1005,8 @@ "id": "(callout -> stored_data)[0]", "src": "callout", "srcArrow": "none", - "srcLabel": "", "dst": "stored_data", "dstArrow": "triangle", - "dstLabel": "", "opacity": 1, "strokeDash": 0, "strokeWidth": 2, @@ -1066,10 +1052,8 @@ "id": "(stored_data -> person)[0]", "src": "stored_data", "srcArrow": "none", - "srcLabel": "", "dst": "person", "dstArrow": "triangle", - "dstLabel": "", "opacity": 1, "strokeDash": 0, "strokeWidth": 2, @@ -1115,10 +1099,8 @@ "id": "(diamond -> oval)[0]", "src": "diamond", "srcArrow": "none", - "srcLabel": "", "dst": "oval", "dstArrow": "triangle", - "dstLabel": "", "opacity": 1, "strokeDash": 0, "strokeWidth": 2, @@ -1164,10 +1146,8 @@ "id": "(oval -> circle)[0]", "src": "oval", "srcArrow": "none", - "srcLabel": "", "dst": "circle", "dstArrow": "triangle", - "dstLabel": "", "opacity": 1, "strokeDash": 0, "strokeWidth": 2, @@ -1213,10 +1193,8 @@ "id": "(hexagon -> cloud)[0]", "src": "hexagon", "srcArrow": "none", - "srcLabel": "", "dst": "cloud", "dstArrow": "triangle", - "dstLabel": "", "opacity": 1, "strokeDash": 0, "strokeWidth": 2, diff --git a/e2etests/testdata/patterns/all_shapes/dagre/sketch.exp.svg b/e2etests/testdata/patterns/all_shapes/dagre/sketch.exp.svg index 74514f9d14..db45ea8740 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 @@ -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 + + + \ No newline at end of file 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 new file mode 100644 index 0000000000..dc82ea5289 --- /dev/null +++ b/e2etests/testdata/regression/arrowhead_sizes_with_labels/elk/board.exp.json @@ -0,0 +1,3668 @@ +{ + "name": "", + "isFolderOnly": false, + "fontFamily": "SourceSansPro", + "shapes": [ + { + "id": "triangle", + "type": "rectangle", + "pos": { + "x": 12, + "y": 12 + }, + "width": 227, + "height": 302, + "opacity": 1, + "strokeDash": 0, + "strokeWidth": 2, + "borderRadius": 0, + "fill": "B4", + "stroke": "B1", + "shadow": false, + "3d": false, + "multiple": false, + "double-border": false, + "tooltip": "", + "link": "", + "icon": null, + "iconPosition": "", + "blend": false, + "fields": null, + "methods": null, + "columns": null, + "label": "triangle", + "fontSize": 28, + "fontFamily": "DEFAULT", + "language": "", + "color": "N1", + "italic": false, + "bold": false, + "underline": false, + "labelWidth": 90, + "labelHeight": 36, + "labelPosition": "INSIDE_TOP_CENTER", + "zIndex": 0, + "level": 1 + }, + { + "id": "triangle.a", + "type": "rectangle", + "pos": { + "x": 62, + "y": 62 + }, + "width": 53, + "height": 66, + "opacity": 1, + "strokeDash": 0, + "strokeWidth": 2, + "borderRadius": 0, + "fill": "B5", + "stroke": "B1", + "shadow": false, + "3d": false, + "multiple": false, + "double-border": false, + "tooltip": "", + "link": "", + "icon": null, + "iconPosition": "", + "blend": false, + "fields": null, + "methods": null, + "columns": null, + "label": "a", + "fontSize": 16, + "fontFamily": "DEFAULT", + "language": "", + "color": "N1", + "italic": false, + "bold": true, + "underline": false, + "labelWidth": 8, + "labelHeight": 21, + "labelPosition": "INSIDE_MIDDLE_CENTER", + "zIndex": 0, + "level": 2 + }, + { + "id": "triangle.b", + "type": "rectangle", + "pos": { + "x": 62, + "y": 198 + }, + "width": 53, + "height": 66, + "opacity": 1, + "strokeDash": 0, + "strokeWidth": 2, + "borderRadius": 0, + "fill": "B5", + "stroke": "B1", + "shadow": false, + "3d": false, + "multiple": false, + "double-border": false, + "tooltip": "", + "link": "", + "icon": null, + "iconPosition": "", + "blend": false, + "fields": null, + "methods": null, + "columns": null, + "label": "b", + "fontSize": 16, + "fontFamily": "DEFAULT", + "language": "", + "color": "N1", + "italic": false, + "bold": true, + "underline": false, + "labelWidth": 8, + "labelHeight": 21, + "labelPosition": "INSIDE_MIDDLE_CENTER", + "zIndex": 0, + "level": 2 + }, + { + "id": "triangle.c", + "type": "rectangle", + "pos": { + "x": 135, + "y": 62 + }, + "width": 53, + "height": 66, + "opacity": 1, + "strokeDash": 0, + "strokeWidth": 2, + "borderRadius": 0, + "fill": "B5", + "stroke": "B1", + "shadow": false, + "3d": false, + "multiple": false, + "double-border": false, + "tooltip": "", + "link": "", + "icon": null, + "iconPosition": "", + "blend": false, + "fields": null, + "methods": null, + "columns": null, + "label": "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": 2 + }, + { + "id": "triangle.d", + "type": "rectangle", + "pos": { + "x": 135, + "y": 198 + }, + "width": 54, + "height": 66, + "opacity": 1, + "strokeDash": 0, + "strokeWidth": 2, + "borderRadius": 0, + "fill": "B5", + "stroke": "B1", + "shadow": false, + "3d": false, + "multiple": false, + "double-border": false, + "tooltip": "", + "link": "", + "icon": null, + "iconPosition": "", + "blend": false, + "fields": null, + "methods": null, + "columns": null, + "label": "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": 2 + }, + { + "id": "none", + "type": "rectangle", + "pos": { + "x": 259, + "y": 12 + }, + "width": 227, + "height": 302, + "opacity": 1, + "strokeDash": 0, + "strokeWidth": 2, + "borderRadius": 0, + "fill": "B4", + "stroke": "B1", + "shadow": false, + "3d": false, + "multiple": false, + "double-border": false, + "tooltip": "", + "link": "", + "icon": null, + "iconPosition": "", + "blend": false, + "fields": null, + "methods": null, + "columns": null, + "label": "none", + "fontSize": 28, + "fontFamily": "DEFAULT", + "language": "", + "color": "N1", + "italic": false, + "bold": false, + "underline": false, + "labelWidth": 57, + "labelHeight": 36, + "labelPosition": "INSIDE_TOP_CENTER", + "zIndex": 0, + "level": 1 + }, + { + "id": "none.a", + "type": "rectangle", + "pos": { + "x": 309, + "y": 62 + }, + "width": 53, + "height": 66, + "opacity": 1, + "strokeDash": 0, + "strokeWidth": 2, + "borderRadius": 0, + "fill": "B5", + "stroke": "B1", + "shadow": false, + "3d": false, + "multiple": false, + "double-border": false, + "tooltip": "", + "link": "", + "icon": null, + "iconPosition": "", + "blend": false, + "fields": null, + "methods": null, + "columns": null, + "label": "a", + "fontSize": 16, + "fontFamily": "DEFAULT", + "language": "", + "color": "N1", + "italic": false, + "bold": true, + "underline": false, + "labelWidth": 8, + "labelHeight": 21, + "labelPosition": "INSIDE_MIDDLE_CENTER", + "zIndex": 0, + "level": 2 + }, + { + "id": "none.b", + "type": "rectangle", + "pos": { + "x": 309, + "y": 198 + }, + "width": 53, + "height": 66, + "opacity": 1, + "strokeDash": 0, + "strokeWidth": 2, + "borderRadius": 0, + "fill": "B5", + "stroke": "B1", + "shadow": false, + "3d": false, + "multiple": false, + "double-border": false, + "tooltip": "", + "link": "", + "icon": null, + "iconPosition": "", + "blend": false, + "fields": null, + "methods": null, + "columns": null, + "label": "b", + "fontSize": 16, + "fontFamily": "DEFAULT", + "language": "", + "color": "N1", + "italic": false, + "bold": true, + "underline": false, + "labelWidth": 8, + "labelHeight": 21, + "labelPosition": "INSIDE_MIDDLE_CENTER", + "zIndex": 0, + "level": 2 + }, + { + "id": "none.c", + "type": "rectangle", + "pos": { + "x": 382, + "y": 62 + }, + "width": 53, + "height": 66, + "opacity": 1, + "strokeDash": 0, + "strokeWidth": 2, + "borderRadius": 0, + "fill": "B5", + "stroke": "B1", + "shadow": false, + "3d": false, + "multiple": false, + "double-border": false, + "tooltip": "", + "link": "", + "icon": null, + "iconPosition": "", + "blend": false, + "fields": null, + "methods": null, + "columns": null, + "label": "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": 2 + }, + { + "id": "none.d", + "type": "rectangle", + "pos": { + "x": 382, + "y": 198 + }, + "width": 54, + "height": 66, + "opacity": 1, + "strokeDash": 0, + "strokeWidth": 2, + "borderRadius": 0, + "fill": "B5", + "stroke": "B1", + "shadow": false, + "3d": false, + "multiple": false, + "double-border": false, + "tooltip": "", + "link": "", + "icon": null, + "iconPosition": "", + "blend": false, + "fields": null, + "methods": null, + "columns": null, + "label": "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": 2 + }, + { + "id": "arrow", + "type": "rectangle", + "pos": { + "x": 506, + "y": 12 + }, + "width": 227, + "height": 302, + "opacity": 1, + "strokeDash": 0, + "strokeWidth": 2, + "borderRadius": 0, + "fill": "B4", + "stroke": "B1", + "shadow": false, + "3d": false, + "multiple": false, + "double-border": false, + "tooltip": "", + "link": "", + "icon": null, + "iconPosition": "", + "blend": false, + "fields": null, + "methods": null, + "columns": null, + "label": "arrow", + "fontSize": 28, + "fontFamily": "DEFAULT", + "language": "", + "color": "N1", + "italic": false, + "bold": false, + "underline": false, + "labelWidth": 68, + "labelHeight": 36, + "labelPosition": "INSIDE_TOP_CENTER", + "zIndex": 0, + "level": 1 + }, + { + "id": "arrow.a", + "type": "rectangle", + "pos": { + "x": 556, + "y": 62 + }, + "width": 53, + "height": 66, + "opacity": 1, + "strokeDash": 0, + "strokeWidth": 2, + "borderRadius": 0, + "fill": "B5", + "stroke": "B1", + "shadow": false, + "3d": false, + "multiple": false, + "double-border": false, + "tooltip": "", + "link": "", + "icon": null, + "iconPosition": "", + "blend": false, + "fields": null, + "methods": null, + "columns": null, + "label": "a", + "fontSize": 16, + "fontFamily": "DEFAULT", + "language": "", + "color": "N1", + "italic": false, + "bold": true, + "underline": false, + "labelWidth": 8, + "labelHeight": 21, + "labelPosition": "INSIDE_MIDDLE_CENTER", + "zIndex": 0, + "level": 2 + }, + { + "id": "arrow.b", + "type": "rectangle", + "pos": { + "x": 556, + "y": 198 + }, + "width": 53, + "height": 66, + "opacity": 1, + "strokeDash": 0, + "strokeWidth": 2, + "borderRadius": 0, + "fill": "B5", + "stroke": "B1", + "shadow": false, + "3d": false, + "multiple": false, + "double-border": false, + "tooltip": "", + "link": "", + "icon": null, + "iconPosition": "", + "blend": false, + "fields": null, + "methods": null, + "columns": null, + "label": "b", + "fontSize": 16, + "fontFamily": "DEFAULT", + "language": "", + "color": "N1", + "italic": false, + "bold": true, + "underline": false, + "labelWidth": 8, + "labelHeight": 21, + "labelPosition": "INSIDE_MIDDLE_CENTER", + "zIndex": 0, + "level": 2 + }, + { + "id": "arrow.c", + "type": "rectangle", + "pos": { + "x": 629, + "y": 62 + }, + "width": 53, + "height": 66, + "opacity": 1, + "strokeDash": 0, + "strokeWidth": 2, + "borderRadius": 0, + "fill": "B5", + "stroke": "B1", + "shadow": false, + "3d": false, + "multiple": false, + "double-border": false, + "tooltip": "", + "link": "", + "icon": null, + "iconPosition": "", + "blend": false, + "fields": null, + "methods": null, + "columns": null, + "label": "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": 2 + }, + { + "id": "arrow.d", + "type": "rectangle", + "pos": { + "x": 629, + "y": 198 + }, + "width": 54, + "height": 66, + "opacity": 1, + "strokeDash": 0, + "strokeWidth": 2, + "borderRadius": 0, + "fill": "B5", + "stroke": "B1", + "shadow": false, + "3d": false, + "multiple": false, + "double-border": false, + "tooltip": "", + "link": "", + "icon": null, + "iconPosition": "", + "blend": false, + "fields": null, + "methods": null, + "columns": null, + "label": "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": 2 + }, + { + "id": "diamond", + "type": "rectangle", + "pos": { + "x": 753, + "y": 12 + }, + "width": 227, + "height": 302, + "opacity": 1, + "strokeDash": 0, + "strokeWidth": 2, + "borderRadius": 0, + "fill": "B4", + "stroke": "B1", + "shadow": false, + "3d": false, + "multiple": false, + "double-border": false, + "tooltip": "", + "link": "", + "icon": null, + "iconPosition": "", + "blend": false, + "fields": null, + "methods": null, + "columns": null, + "label": "diamond", + "fontSize": 28, + "fontFamily": "DEFAULT", + "language": "", + "color": "N1", + "italic": false, + "bold": false, + "underline": false, + "labelWidth": 104, + "labelHeight": 36, + "labelPosition": "INSIDE_TOP_CENTER", + "zIndex": 0, + "level": 1 + }, + { + "id": "diamond.a", + "type": "rectangle", + "pos": { + "x": 803, + "y": 62 + }, + "width": 53, + "height": 66, + "opacity": 1, + "strokeDash": 0, + "strokeWidth": 2, + "borderRadius": 0, + "fill": "B5", + "stroke": "B1", + "shadow": false, + "3d": false, + "multiple": false, + "double-border": false, + "tooltip": "", + "link": "", + "icon": null, + "iconPosition": "", + "blend": false, + "fields": null, + "methods": null, + "columns": null, + "label": "a", + "fontSize": 16, + "fontFamily": "DEFAULT", + "language": "", + "color": "N1", + "italic": false, + "bold": true, + "underline": false, + "labelWidth": 8, + "labelHeight": 21, + "labelPosition": "INSIDE_MIDDLE_CENTER", + "zIndex": 0, + "level": 2 + }, + { + "id": "diamond.b", + "type": "rectangle", + "pos": { + "x": 803, + "y": 198 + }, + "width": 53, + "height": 66, + "opacity": 1, + "strokeDash": 0, + "strokeWidth": 2, + "borderRadius": 0, + "fill": "B5", + "stroke": "B1", + "shadow": false, + "3d": false, + "multiple": false, + "double-border": false, + "tooltip": "", + "link": "", + "icon": null, + "iconPosition": "", + "blend": false, + "fields": null, + "methods": null, + "columns": null, + "label": "b", + "fontSize": 16, + "fontFamily": "DEFAULT", + "language": "", + "color": "N1", + "italic": false, + "bold": true, + "underline": false, + "labelWidth": 8, + "labelHeight": 21, + "labelPosition": "INSIDE_MIDDLE_CENTER", + "zIndex": 0, + "level": 2 + }, + { + "id": "diamond.c", + "type": "rectangle", + "pos": { + "x": 876, + "y": 62 + }, + "width": 53, + "height": 66, + "opacity": 1, + "strokeDash": 0, + "strokeWidth": 2, + "borderRadius": 0, + "fill": "B5", + "stroke": "B1", + "shadow": false, + "3d": false, + "multiple": false, + "double-border": false, + "tooltip": "", + "link": "", + "icon": null, + "iconPosition": "", + "blend": false, + "fields": null, + "methods": null, + "columns": null, + "label": "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": 2 + }, + { + "id": "diamond.d", + "type": "rectangle", + "pos": { + "x": 876, + "y": 198 + }, + "width": 54, + "height": 66, + "opacity": 1, + "strokeDash": 0, + "strokeWidth": 2, + "borderRadius": 0, + "fill": "B5", + "stroke": "B1", + "shadow": false, + "3d": false, + "multiple": false, + "double-border": false, + "tooltip": "", + "link": "", + "icon": null, + "iconPosition": "", + "blend": false, + "fields": null, + "methods": null, + "columns": null, + "label": "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": 2 + }, + { + "id": "filled diamond", + "type": "rectangle", + "pos": { + "x": 1000, + "y": 12 + }, + "width": 227, + "height": 302, + "opacity": 1, + "strokeDash": 0, + "strokeWidth": 2, + "borderRadius": 0, + "fill": "B4", + "stroke": "B1", + "shadow": false, + "3d": false, + "multiple": false, + "double-border": false, + "tooltip": "", + "link": "", + "icon": null, + "iconPosition": "", + "blend": false, + "fields": null, + "methods": null, + "columns": null, + "label": "filled diamond", + "fontSize": 28, + "fontFamily": "DEFAULT", + "language": "", + "color": "N1", + "italic": false, + "bold": false, + "underline": false, + "labelWidth": 169, + "labelHeight": 36, + "labelPosition": "INSIDE_TOP_CENTER", + "zIndex": 0, + "level": 1 + }, + { + "id": "filled diamond.a", + "type": "rectangle", + "pos": { + "x": 1050, + "y": 62 + }, + "width": 53, + "height": 66, + "opacity": 1, + "strokeDash": 0, + "strokeWidth": 2, + "borderRadius": 0, + "fill": "B5", + "stroke": "B1", + "shadow": false, + "3d": false, + "multiple": false, + "double-border": false, + "tooltip": "", + "link": "", + "icon": null, + "iconPosition": "", + "blend": false, + "fields": null, + "methods": null, + "columns": null, + "label": "a", + "fontSize": 16, + "fontFamily": "DEFAULT", + "language": "", + "color": "N1", + "italic": false, + "bold": true, + "underline": false, + "labelWidth": 8, + "labelHeight": 21, + "labelPosition": "INSIDE_MIDDLE_CENTER", + "zIndex": 0, + "level": 2 + }, + { + "id": "filled diamond.b", + "type": "rectangle", + "pos": { + "x": 1050, + "y": 198 + }, + "width": 53, + "height": 66, + "opacity": 1, + "strokeDash": 0, + "strokeWidth": 2, + "borderRadius": 0, + "fill": "B5", + "stroke": "B1", + "shadow": false, + "3d": false, + "multiple": false, + "double-border": false, + "tooltip": "", + "link": "", + "icon": null, + "iconPosition": "", + "blend": false, + "fields": null, + "methods": null, + "columns": null, + "label": "b", + "fontSize": 16, + "fontFamily": "DEFAULT", + "language": "", + "color": "N1", + "italic": false, + "bold": true, + "underline": false, + "labelWidth": 8, + "labelHeight": 21, + "labelPosition": "INSIDE_MIDDLE_CENTER", + "zIndex": 0, + "level": 2 + }, + { + "id": "filled diamond.c", + "type": "rectangle", + "pos": { + "x": 1123, + "y": 62 + }, + "width": 53, + "height": 66, + "opacity": 1, + "strokeDash": 0, + "strokeWidth": 2, + "borderRadius": 0, + "fill": "B5", + "stroke": "B1", + "shadow": false, + "3d": false, + "multiple": false, + "double-border": false, + "tooltip": "", + "link": "", + "icon": null, + "iconPosition": "", + "blend": false, + "fields": null, + "methods": null, + "columns": null, + "label": "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": 2 + }, + { + "id": "filled diamond.d", + "type": "rectangle", + "pos": { + "x": 1123, + "y": 198 + }, + "width": 54, + "height": 66, + "opacity": 1, + "strokeDash": 0, + "strokeWidth": 2, + "borderRadius": 0, + "fill": "B5", + "stroke": "B1", + "shadow": false, + "3d": false, + "multiple": false, + "double-border": false, + "tooltip": "", + "link": "", + "icon": null, + "iconPosition": "", + "blend": false, + "fields": null, + "methods": null, + "columns": null, + "label": "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": 2 + }, + { + "id": "circle", + "type": "rectangle", + "pos": { + "x": 1247, + "y": 12 + }, + "width": 227, + "height": 302, + "opacity": 1, + "strokeDash": 0, + "strokeWidth": 2, + "borderRadius": 0, + "fill": "B4", + "stroke": "B1", + "shadow": false, + "3d": false, + "multiple": false, + "double-border": false, + "tooltip": "", + "link": "", + "icon": null, + "iconPosition": "", + "blend": false, + "fields": null, + "methods": null, + "columns": null, + "label": "circle", + "fontSize": 28, + "fontFamily": "DEFAULT", + "language": "", + "color": "N1", + "italic": false, + "bold": false, + "underline": false, + "labelWidth": 62, + "labelHeight": 36, + "labelPosition": "INSIDE_TOP_CENTER", + "zIndex": 0, + "level": 1 + }, + { + "id": "circle.a", + "type": "rectangle", + "pos": { + "x": 1297, + "y": 62 + }, + "width": 53, + "height": 66, + "opacity": 1, + "strokeDash": 0, + "strokeWidth": 2, + "borderRadius": 0, + "fill": "B5", + "stroke": "B1", + "shadow": false, + "3d": false, + "multiple": false, + "double-border": false, + "tooltip": "", + "link": "", + "icon": null, + "iconPosition": "", + "blend": false, + "fields": null, + "methods": null, + "columns": null, + "label": "a", + "fontSize": 16, + "fontFamily": "DEFAULT", + "language": "", + "color": "N1", + "italic": false, + "bold": true, + "underline": false, + "labelWidth": 8, + "labelHeight": 21, + "labelPosition": "INSIDE_MIDDLE_CENTER", + "zIndex": 0, + "level": 2 + }, + { + "id": "circle.b", + "type": "rectangle", + "pos": { + "x": 1297, + "y": 198 + }, + "width": 53, + "height": 66, + "opacity": 1, + "strokeDash": 0, + "strokeWidth": 2, + "borderRadius": 0, + "fill": "B5", + "stroke": "B1", + "shadow": false, + "3d": false, + "multiple": false, + "double-border": false, + "tooltip": "", + "link": "", + "icon": null, + "iconPosition": "", + "blend": false, + "fields": null, + "methods": null, + "columns": null, + "label": "b", + "fontSize": 16, + "fontFamily": "DEFAULT", + "language": "", + "color": "N1", + "italic": false, + "bold": true, + "underline": false, + "labelWidth": 8, + "labelHeight": 21, + "labelPosition": "INSIDE_MIDDLE_CENTER", + "zIndex": 0, + "level": 2 + }, + { + "id": "circle.c", + "type": "rectangle", + "pos": { + "x": 1370, + "y": 62 + }, + "width": 53, + "height": 66, + "opacity": 1, + "strokeDash": 0, + "strokeWidth": 2, + "borderRadius": 0, + "fill": "B5", + "stroke": "B1", + "shadow": false, + "3d": false, + "multiple": false, + "double-border": false, + "tooltip": "", + "link": "", + "icon": null, + "iconPosition": "", + "blend": false, + "fields": null, + "methods": null, + "columns": null, + "label": "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": 2 + }, + { + "id": "circle.d", + "type": "rectangle", + "pos": { + "x": 1370, + "y": 198 + }, + "width": 54, + "height": 66, + "opacity": 1, + "strokeDash": 0, + "strokeWidth": 2, + "borderRadius": 0, + "fill": "B5", + "stroke": "B1", + "shadow": false, + "3d": false, + "multiple": false, + "double-border": false, + "tooltip": "", + "link": "", + "icon": null, + "iconPosition": "", + "blend": false, + "fields": null, + "methods": null, + "columns": null, + "label": "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": 2 + }, + { + "id": "filled circle", + "type": "rectangle", + "pos": { + "x": 1494, + "y": 12 + }, + "width": 227, + "height": 302, + "opacity": 1, + "strokeDash": 0, + "strokeWidth": 2, + "borderRadius": 0, + "fill": "B4", + "stroke": "B1", + "shadow": false, + "3d": false, + "multiple": false, + "double-border": false, + "tooltip": "", + "link": "", + "icon": null, + "iconPosition": "", + "blend": false, + "fields": null, + "methods": null, + "columns": null, + "label": "filled circle", + "fontSize": 28, + "fontFamily": "DEFAULT", + "language": "", + "color": "N1", + "italic": false, + "bold": false, + "underline": false, + "labelWidth": 127, + "labelHeight": 36, + "labelPosition": "INSIDE_TOP_CENTER", + "zIndex": 0, + "level": 1 + }, + { + "id": "filled circle.a", + "type": "rectangle", + "pos": { + "x": 1544, + "y": 62 + }, + "width": 53, + "height": 66, + "opacity": 1, + "strokeDash": 0, + "strokeWidth": 2, + "borderRadius": 0, + "fill": "B5", + "stroke": "B1", + "shadow": false, + "3d": false, + "multiple": false, + "double-border": false, + "tooltip": "", + "link": "", + "icon": null, + "iconPosition": "", + "blend": false, + "fields": null, + "methods": null, + "columns": null, + "label": "a", + "fontSize": 16, + "fontFamily": "DEFAULT", + "language": "", + "color": "N1", + "italic": false, + "bold": true, + "underline": false, + "labelWidth": 8, + "labelHeight": 21, + "labelPosition": "INSIDE_MIDDLE_CENTER", + "zIndex": 0, + "level": 2 + }, + { + "id": "filled circle.b", + "type": "rectangle", + "pos": { + "x": 1544, + "y": 198 + }, + "width": 53, + "height": 66, + "opacity": 1, + "strokeDash": 0, + "strokeWidth": 2, + "borderRadius": 0, + "fill": "B5", + "stroke": "B1", + "shadow": false, + "3d": false, + "multiple": false, + "double-border": false, + "tooltip": "", + "link": "", + "icon": null, + "iconPosition": "", + "blend": false, + "fields": null, + "methods": null, + "columns": null, + "label": "b", + "fontSize": 16, + "fontFamily": "DEFAULT", + "language": "", + "color": "N1", + "italic": false, + "bold": true, + "underline": false, + "labelWidth": 8, + "labelHeight": 21, + "labelPosition": "INSIDE_MIDDLE_CENTER", + "zIndex": 0, + "level": 2 + }, + { + "id": "filled circle.c", + "type": "rectangle", + "pos": { + "x": 1617, + "y": 62 + }, + "width": 53, + "height": 66, + "opacity": 1, + "strokeDash": 0, + "strokeWidth": 2, + "borderRadius": 0, + "fill": "B5", + "stroke": "B1", + "shadow": false, + "3d": false, + "multiple": false, + "double-border": false, + "tooltip": "", + "link": "", + "icon": null, + "iconPosition": "", + "blend": false, + "fields": null, + "methods": null, + "columns": null, + "label": "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": 2 + }, + { + "id": "filled circle.d", + "type": "rectangle", + "pos": { + "x": 1617, + "y": 198 + }, + "width": 54, + "height": 66, + "opacity": 1, + "strokeDash": 0, + "strokeWidth": 2, + "borderRadius": 0, + "fill": "B5", + "stroke": "B1", + "shadow": false, + "3d": false, + "multiple": false, + "double-border": false, + "tooltip": "", + "link": "", + "icon": null, + "iconPosition": "", + "blend": false, + "fields": null, + "methods": null, + "columns": null, + "label": "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": 2 + }, + { + "id": "cf one", + "type": "rectangle", + "pos": { + "x": 1741, + "y": 12 + }, + "width": 227, + "height": 302, + "opacity": 1, + "strokeDash": 0, + "strokeWidth": 2, + "borderRadius": 0, + "fill": "B4", + "stroke": "B1", + "shadow": false, + "3d": false, + "multiple": false, + "double-border": false, + "tooltip": "", + "link": "", + "icon": null, + "iconPosition": "", + "blend": false, + "fields": null, + "methods": null, + "columns": null, + "label": "cf one", + "fontSize": 28, + "fontFamily": "DEFAULT", + "language": "", + "color": "N1", + "italic": false, + "bold": false, + "underline": false, + "labelWidth": 70, + "labelHeight": 36, + "labelPosition": "INSIDE_TOP_CENTER", + "zIndex": 0, + "level": 1 + }, + { + "id": "cf one.a", + "type": "rectangle", + "pos": { + "x": 1791, + "y": 62 + }, + "width": 53, + "height": 66, + "opacity": 1, + "strokeDash": 0, + "strokeWidth": 2, + "borderRadius": 0, + "fill": "B5", + "stroke": "B1", + "shadow": false, + "3d": false, + "multiple": false, + "double-border": false, + "tooltip": "", + "link": "", + "icon": null, + "iconPosition": "", + "blend": false, + "fields": null, + "methods": null, + "columns": null, + "label": "a", + "fontSize": 16, + "fontFamily": "DEFAULT", + "language": "", + "color": "N1", + "italic": false, + "bold": true, + "underline": false, + "labelWidth": 8, + "labelHeight": 21, + "labelPosition": "INSIDE_MIDDLE_CENTER", + "zIndex": 0, + "level": 2 + }, + { + "id": "cf one.b", + "type": "rectangle", + "pos": { + "x": 1791, + "y": 198 + }, + "width": 53, + "height": 66, + "opacity": 1, + "strokeDash": 0, + "strokeWidth": 2, + "borderRadius": 0, + "fill": "B5", + "stroke": "B1", + "shadow": false, + "3d": false, + "multiple": false, + "double-border": false, + "tooltip": "", + "link": "", + "icon": null, + "iconPosition": "", + "blend": false, + "fields": null, + "methods": null, + "columns": null, + "label": "b", + "fontSize": 16, + "fontFamily": "DEFAULT", + "language": "", + "color": "N1", + "italic": false, + "bold": true, + "underline": false, + "labelWidth": 8, + "labelHeight": 21, + "labelPosition": "INSIDE_MIDDLE_CENTER", + "zIndex": 0, + "level": 2 + }, + { + "id": "cf one.c", + "type": "rectangle", + "pos": { + "x": 1864, + "y": 62 + }, + "width": 53, + "height": 66, + "opacity": 1, + "strokeDash": 0, + "strokeWidth": 2, + "borderRadius": 0, + "fill": "B5", + "stroke": "B1", + "shadow": false, + "3d": false, + "multiple": false, + "double-border": false, + "tooltip": "", + "link": "", + "icon": null, + "iconPosition": "", + "blend": false, + "fields": null, + "methods": null, + "columns": null, + "label": "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": 2 + }, + { + "id": "cf one.d", + "type": "rectangle", + "pos": { + "x": 1864, + "y": 198 + }, + "width": 54, + "height": 66, + "opacity": 1, + "strokeDash": 0, + "strokeWidth": 2, + "borderRadius": 0, + "fill": "B5", + "stroke": "B1", + "shadow": false, + "3d": false, + "multiple": false, + "double-border": false, + "tooltip": "", + "link": "", + "icon": null, + "iconPosition": "", + "blend": false, + "fields": null, + "methods": null, + "columns": null, + "label": "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": 2 + }, + { + "id": "cf one required", + "type": "rectangle", + "pos": { + "x": 1988, + "y": 12 + }, + "width": 227, + "height": 302, + "opacity": 1, + "strokeDash": 0, + "strokeWidth": 2, + "borderRadius": 0, + "fill": "B4", + "stroke": "B1", + "shadow": false, + "3d": false, + "multiple": false, + "double-border": false, + "tooltip": "", + "link": "", + "icon": null, + "iconPosition": "", + "blend": false, + "fields": null, + "methods": null, + "columns": null, + "label": "cf one required", + "fontSize": 28, + "fontFamily": "DEFAULT", + "language": "", + "color": "N1", + "italic": false, + "bold": false, + "underline": false, + "labelWidth": 175, + "labelHeight": 36, + "labelPosition": "INSIDE_TOP_CENTER", + "zIndex": 0, + "level": 1 + }, + { + "id": "cf one required.a", + "type": "rectangle", + "pos": { + "x": 2038, + "y": 62 + }, + "width": 53, + "height": 66, + "opacity": 1, + "strokeDash": 0, + "strokeWidth": 2, + "borderRadius": 0, + "fill": "B5", + "stroke": "B1", + "shadow": false, + "3d": false, + "multiple": false, + "double-border": false, + "tooltip": "", + "link": "", + "icon": null, + "iconPosition": "", + "blend": false, + "fields": null, + "methods": null, + "columns": null, + "label": "a", + "fontSize": 16, + "fontFamily": "DEFAULT", + "language": "", + "color": "N1", + "italic": false, + "bold": true, + "underline": false, + "labelWidth": 8, + "labelHeight": 21, + "labelPosition": "INSIDE_MIDDLE_CENTER", + "zIndex": 0, + "level": 2 + }, + { + "id": "cf one required.b", + "type": "rectangle", + "pos": { + "x": 2038, + "y": 198 + }, + "width": 53, + "height": 66, + "opacity": 1, + "strokeDash": 0, + "strokeWidth": 2, + "borderRadius": 0, + "fill": "B5", + "stroke": "B1", + "shadow": false, + "3d": false, + "multiple": false, + "double-border": false, + "tooltip": "", + "link": "", + "icon": null, + "iconPosition": "", + "blend": false, + "fields": null, + "methods": null, + "columns": null, + "label": "b", + "fontSize": 16, + "fontFamily": "DEFAULT", + "language": "", + "color": "N1", + "italic": false, + "bold": true, + "underline": false, + "labelWidth": 8, + "labelHeight": 21, + "labelPosition": "INSIDE_MIDDLE_CENTER", + "zIndex": 0, + "level": 2 + }, + { + "id": "cf one required.c", + "type": "rectangle", + "pos": { + "x": 2111, + "y": 62 + }, + "width": 53, + "height": 66, + "opacity": 1, + "strokeDash": 0, + "strokeWidth": 2, + "borderRadius": 0, + "fill": "B5", + "stroke": "B1", + "shadow": false, + "3d": false, + "multiple": false, + "double-border": false, + "tooltip": "", + "link": "", + "icon": null, + "iconPosition": "", + "blend": false, + "fields": null, + "methods": null, + "columns": null, + "label": "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": 2 + }, + { + "id": "cf one required.d", + "type": "rectangle", + "pos": { + "x": 2111, + "y": 198 + }, + "width": 54, + "height": 66, + "opacity": 1, + "strokeDash": 0, + "strokeWidth": 2, + "borderRadius": 0, + "fill": "B5", + "stroke": "B1", + "shadow": false, + "3d": false, + "multiple": false, + "double-border": false, + "tooltip": "", + "link": "", + "icon": null, + "iconPosition": "", + "blend": false, + "fields": null, + "methods": null, + "columns": null, + "label": "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": 2 + }, + { + "id": "cf many", + "type": "rectangle", + "pos": { + "x": 2235, + "y": 12 + }, + "width": 227, + "height": 302, + "opacity": 1, + "strokeDash": 0, + "strokeWidth": 2, + "borderRadius": 0, + "fill": "B4", + "stroke": "B1", + "shadow": false, + "3d": false, + "multiple": false, + "double-border": false, + "tooltip": "", + "link": "", + "icon": null, + "iconPosition": "", + "blend": false, + "fields": null, + "methods": null, + "columns": null, + "label": "cf many", + "fontSize": 28, + "fontFamily": "DEFAULT", + "language": "", + "color": "N1", + "italic": false, + "bold": false, + "underline": false, + "labelWidth": 92, + "labelHeight": 36, + "labelPosition": "INSIDE_TOP_CENTER", + "zIndex": 0, + "level": 1 + }, + { + "id": "cf many.a", + "type": "rectangle", + "pos": { + "x": 2285, + "y": 62 + }, + "width": 53, + "height": 66, + "opacity": 1, + "strokeDash": 0, + "strokeWidth": 2, + "borderRadius": 0, + "fill": "B5", + "stroke": "B1", + "shadow": false, + "3d": false, + "multiple": false, + "double-border": false, + "tooltip": "", + "link": "", + "icon": null, + "iconPosition": "", + "blend": false, + "fields": null, + "methods": null, + "columns": null, + "label": "a", + "fontSize": 16, + "fontFamily": "DEFAULT", + "language": "", + "color": "N1", + "italic": false, + "bold": true, + "underline": false, + "labelWidth": 8, + "labelHeight": 21, + "labelPosition": "INSIDE_MIDDLE_CENTER", + "zIndex": 0, + "level": 2 + }, + { + "id": "cf many.b", + "type": "rectangle", + "pos": { + "x": 2285, + "y": 198 + }, + "width": 53, + "height": 66, + "opacity": 1, + "strokeDash": 0, + "strokeWidth": 2, + "borderRadius": 0, + "fill": "B5", + "stroke": "B1", + "shadow": false, + "3d": false, + "multiple": false, + "double-border": false, + "tooltip": "", + "link": "", + "icon": null, + "iconPosition": "", + "blend": false, + "fields": null, + "methods": null, + "columns": null, + "label": "b", + "fontSize": 16, + "fontFamily": "DEFAULT", + "language": "", + "color": "N1", + "italic": false, + "bold": true, + "underline": false, + "labelWidth": 8, + "labelHeight": 21, + "labelPosition": "INSIDE_MIDDLE_CENTER", + "zIndex": 0, + "level": 2 + }, + { + "id": "cf many.c", + "type": "rectangle", + "pos": { + "x": 2358, + "y": 62 + }, + "width": 53, + "height": 66, + "opacity": 1, + "strokeDash": 0, + "strokeWidth": 2, + "borderRadius": 0, + "fill": "B5", + "stroke": "B1", + "shadow": false, + "3d": false, + "multiple": false, + "double-border": false, + "tooltip": "", + "link": "", + "icon": null, + "iconPosition": "", + "blend": false, + "fields": null, + "methods": null, + "columns": null, + "label": "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": 2 + }, + { + "id": "cf many.d", + "type": "rectangle", + "pos": { + "x": 2358, + "y": 198 + }, + "width": 54, + "height": 66, + "opacity": 1, + "strokeDash": 0, + "strokeWidth": 2, + "borderRadius": 0, + "fill": "B5", + "stroke": "B1", + "shadow": false, + "3d": false, + "multiple": false, + "double-border": false, + "tooltip": "", + "link": "", + "icon": null, + "iconPosition": "", + "blend": false, + "fields": null, + "methods": null, + "columns": null, + "label": "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": 2 + }, + { + "id": "cf many required", + "type": "rectangle", + "pos": { + "x": 2482, + "y": 12 + }, + "width": 241, + "height": 302, + "opacity": 1, + "strokeDash": 0, + "strokeWidth": 2, + "borderRadius": 0, + "fill": "B4", + "stroke": "B1", + "shadow": false, + "3d": false, + "multiple": false, + "double-border": false, + "tooltip": "", + "link": "", + "icon": null, + "iconPosition": "", + "blend": false, + "fields": null, + "methods": null, + "columns": null, + "label": "cf many required", + "fontSize": 28, + "fontFamily": "DEFAULT", + "language": "", + "color": "N1", + "italic": false, + "bold": false, + "underline": false, + "labelWidth": 196, + "labelHeight": 36, + "labelPosition": "INSIDE_TOP_CENTER", + "zIndex": 0, + "level": 1 + }, + { + "id": "cf many required.a", + "type": "rectangle", + "pos": { + "x": 2539, + "y": 62 + }, + "width": 53, + "height": 66, + "opacity": 1, + "strokeDash": 0, + "strokeWidth": 2, + "borderRadius": 0, + "fill": "B5", + "stroke": "B1", + "shadow": false, + "3d": false, + "multiple": false, + "double-border": false, + "tooltip": "", + "link": "", + "icon": null, + "iconPosition": "", + "blend": false, + "fields": null, + "methods": null, + "columns": null, + "label": "a", + "fontSize": 16, + "fontFamily": "DEFAULT", + "language": "", + "color": "N1", + "italic": false, + "bold": true, + "underline": false, + "labelWidth": 8, + "labelHeight": 21, + "labelPosition": "INSIDE_MIDDLE_CENTER", + "zIndex": 0, + "level": 2 + }, + { + "id": "cf many required.b", + "type": "rectangle", + "pos": { + "x": 2539, + "y": 198 + }, + "width": 53, + "height": 66, + "opacity": 1, + "strokeDash": 0, + "strokeWidth": 2, + "borderRadius": 0, + "fill": "B5", + "stroke": "B1", + "shadow": false, + "3d": false, + "multiple": false, + "double-border": false, + "tooltip": "", + "link": "", + "icon": null, + "iconPosition": "", + "blend": false, + "fields": null, + "methods": null, + "columns": null, + "label": "b", + "fontSize": 16, + "fontFamily": "DEFAULT", + "language": "", + "color": "N1", + "italic": false, + "bold": true, + "underline": false, + "labelWidth": 8, + "labelHeight": 21, + "labelPosition": "INSIDE_MIDDLE_CENTER", + "zIndex": 0, + "level": 2 + }, + { + "id": "cf many required.c", + "type": "rectangle", + "pos": { + "x": 2612, + "y": 62 + }, + "width": 53, + "height": 66, + "opacity": 1, + "strokeDash": 0, + "strokeWidth": 2, + "borderRadius": 0, + "fill": "B5", + "stroke": "B1", + "shadow": false, + "3d": false, + "multiple": false, + "double-border": false, + "tooltip": "", + "link": "", + "icon": null, + "iconPosition": "", + "blend": false, + "fields": null, + "methods": null, + "columns": null, + "label": "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": 2 + }, + { + "id": "cf many required.d", + "type": "rectangle", + "pos": { + "x": 2612, + "y": 198 + }, + "width": 54, + "height": 66, + "opacity": 1, + "strokeDash": 0, + "strokeWidth": 2, + "borderRadius": 0, + "fill": "B5", + "stroke": "B1", + "shadow": false, + "3d": false, + "multiple": false, + "double-border": false, + "tooltip": "", + "link": "", + "icon": null, + "iconPosition": "", + "blend": false, + "fields": null, + "methods": null, + "columns": null, + "label": "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": 2 + } + ], + "connections": [ + { + "id": "triangle.(a <-> b)[0]", + "src": "triangle.a", + "srcArrow": "triangle", + "srcLabel": { + "label": "1", + "fontSize": 0, + "fontFamily": "", + "language": "", + "color": "", + "italic": false, + "bold": false, + "underline": false, + "labelWidth": 7, + "labelHeight": 21 + }, + "dst": "triangle.b", + "dstArrow": "triangle", + "dstLabel": { + "label": "1", + "fontSize": 0, + "fontFamily": "", + "language": "", + "color": "", + "italic": false, + "bold": false, + "underline": false, + "labelWidth": 7, + "labelHeight": 21 + }, + "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, + "route": [ + { + "x": 88.5, + "y": 128 + }, + { + "x": 88.5, + "y": 198 + } + ], + "animated": false, + "tooltip": "", + "icon": null, + "zIndex": 0 + }, + { + "id": "triangle.(c <-> d)[0]", + "src": "triangle.c", + "srcArrow": "triangle", + "srcLabel": { + "label": "1", + "fontSize": 0, + "fontFamily": "", + "language": "", + "color": "", + "italic": false, + "bold": false, + "underline": false, + "labelWidth": 7, + "labelHeight": 21 + }, + "dst": "triangle.d", + "dstArrow": "triangle", + "dstLabel": { + "label": "1", + "fontSize": 0, + "fontFamily": "", + "language": "", + "color": "", + "italic": false, + "bold": false, + "underline": false, + "labelWidth": 7, + "labelHeight": 21 + }, + "opacity": 1, + "strokeDash": 0, + "strokeWidth": 8, + "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, + "route": [ + { + "x": 162, + "y": 128 + }, + { + "x": 162, + "y": 198 + } + ], + "animated": false, + "tooltip": "", + "icon": null, + "zIndex": 0 + }, + { + "id": "none.(a -- b)[0]", + "src": "none.a", + "srcArrow": "none", + "srcLabel": { + "label": "1", + "fontSize": 0, + "fontFamily": "", + "language": "", + "color": "", + "italic": false, + "bold": false, + "underline": false, + "labelWidth": 7, + "labelHeight": 21 + }, + "dst": "none.b", + "dstArrow": "none", + "dstLabel": { + "label": "1", + "fontSize": 0, + "fontFamily": "", + "language": "", + "color": "", + "italic": false, + "bold": false, + "underline": false, + "labelWidth": 7, + "labelHeight": 21 + }, + "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, + "route": [ + { + "x": 335.5, + "y": 128 + }, + { + "x": 335.5, + "y": 198 + } + ], + "animated": false, + "tooltip": "", + "icon": null, + "zIndex": 0 + }, + { + "id": "none.(c -- d)[0]", + "src": "none.c", + "srcArrow": "none", + "srcLabel": { + "label": "1", + "fontSize": 0, + "fontFamily": "", + "language": "", + "color": "", + "italic": false, + "bold": false, + "underline": false, + "labelWidth": 7, + "labelHeight": 21 + }, + "dst": "none.d", + "dstArrow": "none", + "dstLabel": { + "label": "1", + "fontSize": 0, + "fontFamily": "", + "language": "", + "color": "", + "italic": false, + "bold": false, + "underline": false, + "labelWidth": 7, + "labelHeight": 21 + }, + "opacity": 1, + "strokeDash": 0, + "strokeWidth": 8, + "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, + "route": [ + { + "x": 409, + "y": 128 + }, + { + "x": 409, + "y": 198 + } + ], + "animated": false, + "tooltip": "", + "icon": null, + "zIndex": 0 + }, + { + "id": "arrow.(a <-> b)[0]", + "src": "arrow.a", + "srcArrow": "arrow", + "srcLabel": { + "label": "1", + "fontSize": 0, + "fontFamily": "", + "language": "", + "color": "", + "italic": false, + "bold": false, + "underline": false, + "labelWidth": 7, + "labelHeight": 21 + }, + "dst": "arrow.b", + "dstArrow": "arrow", + "dstLabel": { + "label": "1", + "fontSize": 0, + "fontFamily": "", + "language": "", + "color": "", + "italic": false, + "bold": false, + "underline": false, + "labelWidth": 7, + "labelHeight": 21 + }, + "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, + "route": [ + { + "x": 582.5, + "y": 128 + }, + { + "x": 582.5, + "y": 198 + } + ], + "animated": false, + "tooltip": "", + "icon": null, + "zIndex": 0 + }, + { + "id": "arrow.(c <-> d)[0]", + "src": "arrow.c", + "srcArrow": "arrow", + "srcLabel": { + "label": "1", + "fontSize": 0, + "fontFamily": "", + "language": "", + "color": "", + "italic": false, + "bold": false, + "underline": false, + "labelWidth": 7, + "labelHeight": 21 + }, + "dst": "arrow.d", + "dstArrow": "arrow", + "dstLabel": { + "label": "1", + "fontSize": 0, + "fontFamily": "", + "language": "", + "color": "", + "italic": false, + "bold": false, + "underline": false, + "labelWidth": 7, + "labelHeight": 21 + }, + "opacity": 1, + "strokeDash": 0, + "strokeWidth": 8, + "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, + "route": [ + { + "x": 656, + "y": 128 + }, + { + "x": 656, + "y": 198 + } + ], + "animated": false, + "tooltip": "", + "icon": null, + "zIndex": 0 + }, + { + "id": "diamond.(a <-> b)[0]", + "src": "diamond.a", + "srcArrow": "diamond", + "srcLabel": { + "label": "1", + "fontSize": 0, + "fontFamily": "", + "language": "", + "color": "", + "italic": false, + "bold": false, + "underline": false, + "labelWidth": 7, + "labelHeight": 21 + }, + "dst": "diamond.b", + "dstArrow": "diamond", + "dstLabel": { + "label": "1", + "fontSize": 0, + "fontFamily": "", + "language": "", + "color": "", + "italic": false, + "bold": false, + "underline": false, + "labelWidth": 7, + "labelHeight": 21 + }, + "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, + "route": [ + { + "x": 829.5, + "y": 128 + }, + { + "x": 829.5, + "y": 198 + } + ], + "animated": false, + "tooltip": "", + "icon": null, + "zIndex": 0 + }, + { + "id": "diamond.(c <-> d)[0]", + "src": "diamond.c", + "srcArrow": "diamond", + "srcLabel": { + "label": "1", + "fontSize": 0, + "fontFamily": "", + "language": "", + "color": "", + "italic": false, + "bold": false, + "underline": false, + "labelWidth": 7, + "labelHeight": 21 + }, + "dst": "diamond.d", + "dstArrow": "diamond", + "dstLabel": { + "label": "1", + "fontSize": 0, + "fontFamily": "", + "language": "", + "color": "", + "italic": false, + "bold": false, + "underline": false, + "labelWidth": 7, + "labelHeight": 21 + }, + "opacity": 1, + "strokeDash": 0, + "strokeWidth": 8, + "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, + "route": [ + { + "x": 903, + "y": 128 + }, + { + "x": 903, + "y": 198 + } + ], + "animated": false, + "tooltip": "", + "icon": null, + "zIndex": 0 + }, + { + "id": "filled diamond.(a <-> b)[0]", + "src": "filled diamond.a", + "srcArrow": "filled-diamond", + "srcLabel": { + "label": "1", + "fontSize": 0, + "fontFamily": "", + "language": "", + "color": "", + "italic": false, + "bold": false, + "underline": false, + "labelWidth": 7, + "labelHeight": 21 + }, + "dst": "filled diamond.b", + "dstArrow": "filled-diamond", + "dstLabel": { + "label": "1", + "fontSize": 0, + "fontFamily": "", + "language": "", + "color": "", + "italic": false, + "bold": false, + "underline": false, + "labelWidth": 7, + "labelHeight": 21 + }, + "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, + "route": [ + { + "x": 1076.5, + "y": 128 + }, + { + "x": 1076.5, + "y": 198 + } + ], + "animated": false, + "tooltip": "", + "icon": null, + "zIndex": 0 + }, + { + "id": "filled diamond.(c <-> d)[0]", + "src": "filled diamond.c", + "srcArrow": "filled-diamond", + "srcLabel": { + "label": "1", + "fontSize": 0, + "fontFamily": "", + "language": "", + "color": "", + "italic": false, + "bold": false, + "underline": false, + "labelWidth": 7, + "labelHeight": 21 + }, + "dst": "filled diamond.d", + "dstArrow": "filled-diamond", + "dstLabel": { + "label": "1", + "fontSize": 0, + "fontFamily": "", + "language": "", + "color": "", + "italic": false, + "bold": false, + "underline": false, + "labelWidth": 7, + "labelHeight": 21 + }, + "opacity": 1, + "strokeDash": 0, + "strokeWidth": 8, + "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, + "route": [ + { + "x": 1150, + "y": 128 + }, + { + "x": 1150, + "y": 198 + } + ], + "animated": false, + "tooltip": "", + "icon": null, + "zIndex": 0 + }, + { + "id": "circle.(a <-> b)[0]", + "src": "circle.a", + "srcArrow": "circle", + "srcLabel": { + "label": "1", + "fontSize": 0, + "fontFamily": "", + "language": "", + "color": "", + "italic": false, + "bold": false, + "underline": false, + "labelWidth": 7, + "labelHeight": 21 + }, + "dst": "circle.b", + "dstArrow": "circle", + "dstLabel": { + "label": "1", + "fontSize": 0, + "fontFamily": "", + "language": "", + "color": "", + "italic": false, + "bold": false, + "underline": false, + "labelWidth": 7, + "labelHeight": 21 + }, + "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, + "route": [ + { + "x": 1323.5, + "y": 128 + }, + { + "x": 1323.5, + "y": 198 + } + ], + "animated": false, + "tooltip": "", + "icon": null, + "zIndex": 0 + }, + { + "id": "circle.(c <-> d)[0]", + "src": "circle.c", + "srcArrow": "circle", + "srcLabel": { + "label": "1", + "fontSize": 0, + "fontFamily": "", + "language": "", + "color": "", + "italic": false, + "bold": false, + "underline": false, + "labelWidth": 7, + "labelHeight": 21 + }, + "dst": "circle.d", + "dstArrow": "circle", + "dstLabel": { + "label": "1", + "fontSize": 0, + "fontFamily": "", + "language": "", + "color": "", + "italic": false, + "bold": false, + "underline": false, + "labelWidth": 7, + "labelHeight": 21 + }, + "opacity": 1, + "strokeDash": 0, + "strokeWidth": 8, + "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, + "route": [ + { + "x": 1397, + "y": 128 + }, + { + "x": 1397, + "y": 198 + } + ], + "animated": false, + "tooltip": "", + "icon": null, + "zIndex": 0 + }, + { + "id": "filled circle.(a <-> b)[0]", + "src": "filled circle.a", + "srcArrow": "filled-circle", + "srcLabel": { + "label": "1", + "fontSize": 0, + "fontFamily": "", + "language": "", + "color": "", + "italic": false, + "bold": false, + "underline": false, + "labelWidth": 7, + "labelHeight": 21 + }, + "dst": "filled circle.b", + "dstArrow": "filled-circle", + "dstLabel": { + "label": "1", + "fontSize": 0, + "fontFamily": "", + "language": "", + "color": "", + "italic": false, + "bold": false, + "underline": false, + "labelWidth": 7, + "labelHeight": 21 + }, + "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, + "route": [ + { + "x": 1570.5, + "y": 128 + }, + { + "x": 1570.5, + "y": 198 + } + ], + "animated": false, + "tooltip": "", + "icon": null, + "zIndex": 0 + }, + { + "id": "filled circle.(c <-> d)[0]", + "src": "filled circle.c", + "srcArrow": "filled-circle", + "srcLabel": { + "label": "1", + "fontSize": 0, + "fontFamily": "", + "language": "", + "color": "", + "italic": false, + "bold": false, + "underline": false, + "labelWidth": 7, + "labelHeight": 21 + }, + "dst": "filled circle.d", + "dstArrow": "filled-circle", + "dstLabel": { + "label": "1", + "fontSize": 0, + "fontFamily": "", + "language": "", + "color": "", + "italic": false, + "bold": false, + "underline": false, + "labelWidth": 7, + "labelHeight": 21 + }, + "opacity": 1, + "strokeDash": 0, + "strokeWidth": 8, + "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, + "route": [ + { + "x": 1644, + "y": 128 + }, + { + "x": 1644, + "y": 198 + } + ], + "animated": false, + "tooltip": "", + "icon": null, + "zIndex": 0 + }, + { + "id": "cf one.(a <-> b)[0]", + "src": "cf one.a", + "srcArrow": "cf-one", + "srcLabel": { + "label": "1", + "fontSize": 0, + "fontFamily": "", + "language": "", + "color": "", + "italic": false, + "bold": false, + "underline": false, + "labelWidth": 7, + "labelHeight": 21 + }, + "dst": "cf one.b", + "dstArrow": "cf-one", + "dstLabel": { + "label": "1", + "fontSize": 0, + "fontFamily": "", + "language": "", + "color": "", + "italic": false, + "bold": false, + "underline": false, + "labelWidth": 7, + "labelHeight": 21 + }, + "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, + "route": [ + { + "x": 1817.5, + "y": 128 + }, + { + "x": 1817.5, + "y": 198 + } + ], + "animated": false, + "tooltip": "", + "icon": null, + "zIndex": 0 + }, + { + "id": "cf one.(c <-> d)[0]", + "src": "cf one.c", + "srcArrow": "cf-one", + "srcLabel": { + "label": "1", + "fontSize": 0, + "fontFamily": "", + "language": "", + "color": "", + "italic": false, + "bold": false, + "underline": false, + "labelWidth": 7, + "labelHeight": 21 + }, + "dst": "cf one.d", + "dstArrow": "cf-one", + "dstLabel": { + "label": "1", + "fontSize": 0, + "fontFamily": "", + "language": "", + "color": "", + "italic": false, + "bold": false, + "underline": false, + "labelWidth": 7, + "labelHeight": 21 + }, + "opacity": 1, + "strokeDash": 0, + "strokeWidth": 8, + "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, + "route": [ + { + "x": 1891, + "y": 128 + }, + { + "x": 1891, + "y": 198 + } + ], + "animated": false, + "tooltip": "", + "icon": null, + "zIndex": 0 + }, + { + "id": "cf one required.(a <-> b)[0]", + "src": "cf one required.a", + "srcArrow": "cf-one-required", + "srcLabel": { + "label": "1", + "fontSize": 0, + "fontFamily": "", + "language": "", + "color": "", + "italic": false, + "bold": false, + "underline": false, + "labelWidth": 7, + "labelHeight": 21 + }, + "dst": "cf one required.b", + "dstArrow": "cf-one-required", + "dstLabel": { + "label": "1", + "fontSize": 0, + "fontFamily": "", + "language": "", + "color": "", + "italic": false, + "bold": false, + "underline": false, + "labelWidth": 7, + "labelHeight": 21 + }, + "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, + "route": [ + { + "x": 2064.5, + "y": 128 + }, + { + "x": 2064.5, + "y": 198 + } + ], + "animated": false, + "tooltip": "", + "icon": null, + "zIndex": 0 + }, + { + "id": "cf one required.(c <-> d)[0]", + "src": "cf one required.c", + "srcArrow": "cf-one-required", + "srcLabel": { + "label": "1", + "fontSize": 0, + "fontFamily": "", + "language": "", + "color": "", + "italic": false, + "bold": false, + "underline": false, + "labelWidth": 7, + "labelHeight": 21 + }, + "dst": "cf one required.d", + "dstArrow": "cf-one-required", + "dstLabel": { + "label": "1", + "fontSize": 0, + "fontFamily": "", + "language": "", + "color": "", + "italic": false, + "bold": false, + "underline": false, + "labelWidth": 7, + "labelHeight": 21 + }, + "opacity": 1, + "strokeDash": 0, + "strokeWidth": 8, + "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, + "route": [ + { + "x": 2138, + "y": 128 + }, + { + "x": 2138, + "y": 198 + } + ], + "animated": false, + "tooltip": "", + "icon": null, + "zIndex": 0 + }, + { + "id": "cf many.(a <-> b)[0]", + "src": "cf many.a", + "srcArrow": "cf-many", + "srcLabel": { + "label": "1", + "fontSize": 0, + "fontFamily": "", + "language": "", + "color": "", + "italic": false, + "bold": false, + "underline": false, + "labelWidth": 7, + "labelHeight": 21 + }, + "dst": "cf many.b", + "dstArrow": "cf-many", + "dstLabel": { + "label": "1", + "fontSize": 0, + "fontFamily": "", + "language": "", + "color": "", + "italic": false, + "bold": false, + "underline": false, + "labelWidth": 7, + "labelHeight": 21 + }, + "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, + "route": [ + { + "x": 2311.5, + "y": 128 + }, + { + "x": 2311.5, + "y": 198 + } + ], + "animated": false, + "tooltip": "", + "icon": null, + "zIndex": 0 + }, + { + "id": "cf many.(c <-> d)[0]", + "src": "cf many.c", + "srcArrow": "cf-many", + "srcLabel": { + "label": "1", + "fontSize": 0, + "fontFamily": "", + "language": "", + "color": "", + "italic": false, + "bold": false, + "underline": false, + "labelWidth": 7, + "labelHeight": 21 + }, + "dst": "cf many.d", + "dstArrow": "cf-many", + "dstLabel": { + "label": "1", + "fontSize": 0, + "fontFamily": "", + "language": "", + "color": "", + "italic": false, + "bold": false, + "underline": false, + "labelWidth": 7, + "labelHeight": 21 + }, + "opacity": 1, + "strokeDash": 0, + "strokeWidth": 8, + "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, + "route": [ + { + "x": 2385, + "y": 128 + }, + { + "x": 2385, + "y": 198 + } + ], + "animated": false, + "tooltip": "", + "icon": null, + "zIndex": 0 + }, + { + "id": "cf many required.(a <-> b)[0]", + "src": "cf many required.a", + "srcArrow": "cf-many-required", + "srcLabel": { + "label": "1", + "fontSize": 0, + "fontFamily": "", + "language": "", + "color": "", + "italic": false, + "bold": false, + "underline": false, + "labelWidth": 7, + "labelHeight": 21 + }, + "dst": "cf many required.b", + "dstArrow": "cf-many-required", + "dstLabel": { + "label": "1", + "fontSize": 0, + "fontFamily": "", + "language": "", + "color": "", + "italic": false, + "bold": false, + "underline": false, + "labelWidth": 7, + "labelHeight": 21 + }, + "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, + "route": [ + { + "x": 2565.5, + "y": 128 + }, + { + "x": 2565.5, + "y": 198 + } + ], + "animated": false, + "tooltip": "", + "icon": null, + "zIndex": 0 + }, + { + "id": "cf many required.(c <-> d)[0]", + "src": "cf many required.c", + "srcArrow": "cf-many-required", + "srcLabel": { + "label": "1", + "fontSize": 0, + "fontFamily": "", + "language": "", + "color": "", + "italic": false, + "bold": false, + "underline": false, + "labelWidth": 7, + "labelHeight": 21 + }, + "dst": "cf many required.d", + "dstArrow": "cf-many-required", + "dstLabel": { + "label": "1", + "fontSize": 0, + "fontFamily": "", + "language": "", + "color": "", + "italic": false, + "bold": false, + "underline": false, + "labelWidth": 7, + "labelHeight": 21 + }, + "opacity": 1, + "strokeDash": 0, + "strokeWidth": 8, + "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, + "route": [ + { + "x": 2639, + "y": 128 + }, + { + "x": 2639, + "y": 198 + } + ], + "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 + } +} 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 new file mode 100644 index 0000000000..9ecfc90b27 --- /dev/null +++ b/e2etests/testdata/regression/arrowhead_sizes_with_labels/elk/sketch.exp.svg @@ -0,0 +1,109 @@ +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 + + + \ No newline at end of file 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 1f413bf330..29fa2fbc06 100644 --- a/e2etests/testdata/regression/bold_edge_label/dagre/board.exp.json +++ b/e2etests/testdata/regression/bold_edge_label/dagre/board.exp.json @@ -132,10 +132,8 @@ "id": "(x -> y)[0]", "src": "x", "srcArrow": "none", - "srcLabel": "", "dst": "y", "dstArrow": "triangle", - "dstLabel": "", "opacity": 1, "strokeDash": 0, "strokeWidth": 2, @@ -181,10 +179,8 @@ "id": "(y -> z)[0]", "src": "y", "srcArrow": "none", - "srcLabel": "", "dst": "z", "dstArrow": "triangle", - "dstLabel": "", "opacity": 1, "strokeDash": 0, "strokeWidth": 2, 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 178bb88c12..e218c6dc98 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-2795922944 .fill-N1{fill:#0A0F25;} + .d2-2795922944 .fill-N2{fill:#676C7E;} + .d2-2795922944 .fill-N3{fill:#9499AB;} + .d2-2795922944 .fill-N4{fill:#CFD2DD;} + .d2-2795922944 .fill-N5{fill:#DEE1EB;} + .d2-2795922944 .fill-N6{fill:#EEF1F8;} + .d2-2795922944 .fill-N7{fill:#FFFFFF;} + .d2-2795922944 .fill-B1{fill:#0D32B2;} + .d2-2795922944 .fill-B2{fill:#0D32B2;} + .d2-2795922944 .fill-B3{fill:#E3E9FD;} + .d2-2795922944 .fill-B4{fill:#E3E9FD;} + .d2-2795922944 .fill-B5{fill:#EDF0FD;} + .d2-2795922944 .fill-B6{fill:#F7F8FE;} + .d2-2795922944 .fill-AA2{fill:#4A6FF3;} + .d2-2795922944 .fill-AA4{fill:#EDF0FD;} + .d2-2795922944 .fill-AA5{fill:#F7F8FE;} + .d2-2795922944 .fill-AB4{fill:#EDF0FD;} + .d2-2795922944 .fill-AB5{fill:#F7F8FE;} + .d2-2795922944 .stroke-N1{stroke:#0A0F25;} + .d2-2795922944 .stroke-N2{stroke:#676C7E;} + .d2-2795922944 .stroke-N3{stroke:#9499AB;} + .d2-2795922944 .stroke-N4{stroke:#CFD2DD;} + .d2-2795922944 .stroke-N5{stroke:#DEE1EB;} + .d2-2795922944 .stroke-N6{stroke:#EEF1F8;} + .d2-2795922944 .stroke-N7{stroke:#FFFFFF;} + .d2-2795922944 .stroke-B1{stroke:#0D32B2;} + .d2-2795922944 .stroke-B2{stroke:#0D32B2;} + .d2-2795922944 .stroke-B3{stroke:#E3E9FD;} + .d2-2795922944 .stroke-B4{stroke:#E3E9FD;} + .d2-2795922944 .stroke-B5{stroke:#EDF0FD;} + .d2-2795922944 .stroke-B6{stroke:#F7F8FE;} + .d2-2795922944 .stroke-AA2{stroke:#4A6FF3;} + .d2-2795922944 .stroke-AA4{stroke:#EDF0FD;} + .d2-2795922944 .stroke-AA5{stroke:#F7F8FE;} + .d2-2795922944 .stroke-AB4{stroke:#EDF0FD;} + .d2-2795922944 .stroke-AB5{stroke:#F7F8FE;} + .d2-2795922944 .background-color-N1{background-color:#0A0F25;} + .d2-2795922944 .background-color-N2{background-color:#676C7E;} + .d2-2795922944 .background-color-N3{background-color:#9499AB;} + .d2-2795922944 .background-color-N4{background-color:#CFD2DD;} + .d2-2795922944 .background-color-N5{background-color:#DEE1EB;} + .d2-2795922944 .background-color-N6{background-color:#EEF1F8;} + .d2-2795922944 .background-color-N7{background-color:#FFFFFF;} + .d2-2795922944 .background-color-B1{background-color:#0D32B2;} + .d2-2795922944 .background-color-B2{background-color:#0D32B2;} + .d2-2795922944 .background-color-B3{background-color:#E3E9FD;} + .d2-2795922944 .background-color-B4{background-color:#E3E9FD;} + .d2-2795922944 .background-color-B5{background-color:#EDF0FD;} + .d2-2795922944 .background-color-B6{background-color:#F7F8FE;} + .d2-2795922944 .background-color-AA2{background-color:#4A6FF3;} + .d2-2795922944 .background-color-AA4{background-color:#EDF0FD;} + .d2-2795922944 .background-color-AA5{background-color:#F7F8FE;} + .d2-2795922944 .background-color-AB4{background-color:#EDF0FD;} + .d2-2795922944 .background-color-AB5{background-color:#F7F8FE;} + .d2-2795922944 .color-N1{color:#0A0F25;} + .d2-2795922944 .color-N2{color:#676C7E;} + .d2-2795922944 .color-N3{color:#9499AB;} + .d2-2795922944 .color-N4{color:#CFD2DD;} + .d2-2795922944 .color-N5{color:#DEE1EB;} + .d2-2795922944 .color-N6{color:#EEF1F8;} + .d2-2795922944 .color-N7{color:#FFFFFF;} + .d2-2795922944 .color-B1{color:#0D32B2;} + .d2-2795922944 .color-B2{color:#0D32B2;} + .d2-2795922944 .color-B3{color:#E3E9FD;} + .d2-2795922944 .color-B4{color:#E3E9FD;} + .d2-2795922944 .color-B5{color:#EDF0FD;} + .d2-2795922944 .color-B6{color:#F7F8FE;} + .d2-2795922944 .color-AA2{color:#4A6FF3;} + .d2-2795922944 .color-AA4{color:#EDF0FD;} + .d2-2795922944 .color-AA5{color:#F7F8FE;} + .d2-2795922944 .color-AB4{color:#EDF0FD;} + .d2-2795922944 .color-AB5{color:#F7F8FE;}.appendix text.text{fill:#0A0F25}.md{--color-fg-default:#0A0F25;--color-fg-muted:#676C7E;--color-fg-subtle:#9499AB;--color-canvas-default:#FFFFFF;--color-canvas-subtle:#EEF1F8;--color-border-default:#0D32B2;--color-border-muted:#0D32B2;--color-neutral-muted:#EEF1F8;--color-accent-fg:#0D32B2;--color-accent-emphasis:#0D32B2;--color-attention-subtle:#676C7E;--color-danger-fg:red;}.sketch-overlay-B1{fill:url(#streaks-darker);mix-blend-mode:lighten}.sketch-overlay-B2{fill:url(#streaks-darker);mix-blend-mode:lighten}.sketch-overlay-B3{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-B4{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-B5{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-B6{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-AA2{fill:url(#streaks-dark);mix-blend-mode:overlay}.sketch-overlay-AA4{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-AA5{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-AB4{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-AB5{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-N1{fill:url(#streaks-darker);mix-blend-mode:lighten}.sketch-overlay-N2{fill:url(#streaks-dark);mix-blend-mode:overlay}.sketch-overlay-N3{fill:url(#streaks-normal);mix-blend-mode:color-burn}.sketch-overlay-N4{fill:url(#streaks-normal);mix-blend-mode:color-burn}.sketch-overlay-N5{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-N6{fill:url(#streaks-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 7ecaafa2ea..f6b081610a 100644 --- a/e2etests/testdata/regression/bold_edge_label/elk/board.exp.json +++ b/e2etests/testdata/regression/bold_edge_label/elk/board.exp.json @@ -132,10 +132,8 @@ "id": "(x -> y)[0]", "src": "x", "srcArrow": "none", - "srcLabel": "", "dst": "y", "dstArrow": "triangle", - "dstLabel": "", "opacity": 1, "strokeDash": 0, "strokeWidth": 2, @@ -172,10 +170,8 @@ "id": "(y -> z)[0]", "src": "y", "srcArrow": "none", - "srcLabel": "", "dst": "z", "dstArrow": "triangle", - "dstLabel": "", "opacity": 1, "strokeDash": 0, "strokeWidth": 2, 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 e60484165b..e1e88f3276 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-2275583681 .fill-N1{fill:#0A0F25;} + .d2-2275583681 .fill-N2{fill:#676C7E;} + .d2-2275583681 .fill-N3{fill:#9499AB;} + .d2-2275583681 .fill-N4{fill:#CFD2DD;} + .d2-2275583681 .fill-N5{fill:#DEE1EB;} + .d2-2275583681 .fill-N6{fill:#EEF1F8;} + .d2-2275583681 .fill-N7{fill:#FFFFFF;} + .d2-2275583681 .fill-B1{fill:#0D32B2;} + .d2-2275583681 .fill-B2{fill:#0D32B2;} + .d2-2275583681 .fill-B3{fill:#E3E9FD;} + .d2-2275583681 .fill-B4{fill:#E3E9FD;} + .d2-2275583681 .fill-B5{fill:#EDF0FD;} + .d2-2275583681 .fill-B6{fill:#F7F8FE;} + .d2-2275583681 .fill-AA2{fill:#4A6FF3;} + .d2-2275583681 .fill-AA4{fill:#EDF0FD;} + .d2-2275583681 .fill-AA5{fill:#F7F8FE;} + .d2-2275583681 .fill-AB4{fill:#EDF0FD;} + .d2-2275583681 .fill-AB5{fill:#F7F8FE;} + .d2-2275583681 .stroke-N1{stroke:#0A0F25;} + .d2-2275583681 .stroke-N2{stroke:#676C7E;} + .d2-2275583681 .stroke-N3{stroke:#9499AB;} + .d2-2275583681 .stroke-N4{stroke:#CFD2DD;} + .d2-2275583681 .stroke-N5{stroke:#DEE1EB;} + .d2-2275583681 .stroke-N6{stroke:#EEF1F8;} + .d2-2275583681 .stroke-N7{stroke:#FFFFFF;} + .d2-2275583681 .stroke-B1{stroke:#0D32B2;} + .d2-2275583681 .stroke-B2{stroke:#0D32B2;} + .d2-2275583681 .stroke-B3{stroke:#E3E9FD;} + .d2-2275583681 .stroke-B4{stroke:#E3E9FD;} + .d2-2275583681 .stroke-B5{stroke:#EDF0FD;} + .d2-2275583681 .stroke-B6{stroke:#F7F8FE;} + .d2-2275583681 .stroke-AA2{stroke:#4A6FF3;} + .d2-2275583681 .stroke-AA4{stroke:#EDF0FD;} + .d2-2275583681 .stroke-AA5{stroke:#F7F8FE;} + .d2-2275583681 .stroke-AB4{stroke:#EDF0FD;} + .d2-2275583681 .stroke-AB5{stroke:#F7F8FE;} + .d2-2275583681 .background-color-N1{background-color:#0A0F25;} + .d2-2275583681 .background-color-N2{background-color:#676C7E;} + .d2-2275583681 .background-color-N3{background-color:#9499AB;} + .d2-2275583681 .background-color-N4{background-color:#CFD2DD;} + .d2-2275583681 .background-color-N5{background-color:#DEE1EB;} + .d2-2275583681 .background-color-N6{background-color:#EEF1F8;} + .d2-2275583681 .background-color-N7{background-color:#FFFFFF;} + .d2-2275583681 .background-color-B1{background-color:#0D32B2;} + .d2-2275583681 .background-color-B2{background-color:#0D32B2;} + .d2-2275583681 .background-color-B3{background-color:#E3E9FD;} + .d2-2275583681 .background-color-B4{background-color:#E3E9FD;} + .d2-2275583681 .background-color-B5{background-color:#EDF0FD;} + .d2-2275583681 .background-color-B6{background-color:#F7F8FE;} + .d2-2275583681 .background-color-AA2{background-color:#4A6FF3;} + .d2-2275583681 .background-color-AA4{background-color:#EDF0FD;} + .d2-2275583681 .background-color-AA5{background-color:#F7F8FE;} + .d2-2275583681 .background-color-AB4{background-color:#EDF0FD;} + .d2-2275583681 .background-color-AB5{background-color:#F7F8FE;} + .d2-2275583681 .color-N1{color:#0A0F25;} + .d2-2275583681 .color-N2{color:#676C7E;} + .d2-2275583681 .color-N3{color:#9499AB;} + .d2-2275583681 .color-N4{color:#CFD2DD;} + .d2-2275583681 .color-N5{color:#DEE1EB;} + .d2-2275583681 .color-N6{color:#EEF1F8;} + .d2-2275583681 .color-N7{color:#FFFFFF;} + .d2-2275583681 .color-B1{color:#0D32B2;} + .d2-2275583681 .color-B2{color:#0D32B2;} + .d2-2275583681 .color-B3{color:#E3E9FD;} + .d2-2275583681 .color-B4{color:#E3E9FD;} + .d2-2275583681 .color-B5{color:#EDF0FD;} + .d2-2275583681 .color-B6{color:#F7F8FE;} + .d2-2275583681 .color-AA2{color:#4A6FF3;} + .d2-2275583681 .color-AA4{color:#EDF0FD;} + .d2-2275583681 .color-AA5{color:#F7F8FE;} + .d2-2275583681 .color-AB4{color:#EDF0FD;} + .d2-2275583681 .color-AB5{color:#F7F8FE;}.appendix text.text{fill:#0A0F25}.md{--color-fg-default:#0A0F25;--color-fg-muted:#676C7E;--color-fg-subtle:#9499AB;--color-canvas-default:#FFFFFF;--color-canvas-subtle:#EEF1F8;--color-border-default:#0D32B2;--color-border-muted:#0D32B2;--color-neutral-muted:#EEF1F8;--color-accent-fg:#0D32B2;--color-accent-emphasis:#0D32B2;--color-attention-subtle:#676C7E;--color-danger-fg:red;}.sketch-overlay-B1{fill:url(#streaks-darker);mix-blend-mode:lighten}.sketch-overlay-B2{fill:url(#streaks-darker);mix-blend-mode:lighten}.sketch-overlay-B3{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-B4{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-B5{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-B6{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-AA2{fill:url(#streaks-dark);mix-blend-mode:overlay}.sketch-overlay-AA4{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-AA5{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-AB4{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-AB5{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-N1{fill:url(#streaks-darker);mix-blend-mode:lighten}.sketch-overlay-N2{fill:url(#streaks-dark);mix-blend-mode:overlay}.sketch-overlay-N3{fill:url(#streaks-normal);mix-blend-mode:color-burn}.sketch-overlay-N4{fill:url(#streaks-normal);mix-blend-mode:color-burn}.sketch-overlay-N5{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-N6{fill:url(#streaks-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 2d3c380831..0007f51d6c 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 @@ -53,10 +53,8 @@ "id": "(a -- )[0]", "src": "a", "srcArrow": "none", - "srcLabel": "", "dst": "a-lifeline-end-2251863791", "dstArrow": "none", - "dstLabel": "", "opacity": 1, "strokeDash": 6, "strokeWidth": 2, 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 4e17aad9e1..738ee6680e 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-613552038 .fill-N1{fill:#0A0F25;} + .d2-613552038 .fill-N2{fill:#676C7E;} + .d2-613552038 .fill-N3{fill:#9499AB;} + .d2-613552038 .fill-N4{fill:#CFD2DD;} + .d2-613552038 .fill-N5{fill:#DEE1EB;} + .d2-613552038 .fill-N6{fill:#EEF1F8;} + .d2-613552038 .fill-N7{fill:#FFFFFF;} + .d2-613552038 .fill-B1{fill:#0D32B2;} + .d2-613552038 .fill-B2{fill:#0D32B2;} + .d2-613552038 .fill-B3{fill:#E3E9FD;} + .d2-613552038 .fill-B4{fill:#E3E9FD;} + .d2-613552038 .fill-B5{fill:#EDF0FD;} + .d2-613552038 .fill-B6{fill:#F7F8FE;} + .d2-613552038 .fill-AA2{fill:#4A6FF3;} + .d2-613552038 .fill-AA4{fill:#EDF0FD;} + .d2-613552038 .fill-AA5{fill:#F7F8FE;} + .d2-613552038 .fill-AB4{fill:#EDF0FD;} + .d2-613552038 .fill-AB5{fill:#F7F8FE;} + .d2-613552038 .stroke-N1{stroke:#0A0F25;} + .d2-613552038 .stroke-N2{stroke:#676C7E;} + .d2-613552038 .stroke-N3{stroke:#9499AB;} + .d2-613552038 .stroke-N4{stroke:#CFD2DD;} + .d2-613552038 .stroke-N5{stroke:#DEE1EB;} + .d2-613552038 .stroke-N6{stroke:#EEF1F8;} + .d2-613552038 .stroke-N7{stroke:#FFFFFF;} + .d2-613552038 .stroke-B1{stroke:#0D32B2;} + .d2-613552038 .stroke-B2{stroke:#0D32B2;} + .d2-613552038 .stroke-B3{stroke:#E3E9FD;} + .d2-613552038 .stroke-B4{stroke:#E3E9FD;} + .d2-613552038 .stroke-B5{stroke:#EDF0FD;} + .d2-613552038 .stroke-B6{stroke:#F7F8FE;} + .d2-613552038 .stroke-AA2{stroke:#4A6FF3;} + .d2-613552038 .stroke-AA4{stroke:#EDF0FD;} + .d2-613552038 .stroke-AA5{stroke:#F7F8FE;} + .d2-613552038 .stroke-AB4{stroke:#EDF0FD;} + .d2-613552038 .stroke-AB5{stroke:#F7F8FE;} + .d2-613552038 .background-color-N1{background-color:#0A0F25;} + .d2-613552038 .background-color-N2{background-color:#676C7E;} + .d2-613552038 .background-color-N3{background-color:#9499AB;} + .d2-613552038 .background-color-N4{background-color:#CFD2DD;} + .d2-613552038 .background-color-N5{background-color:#DEE1EB;} + .d2-613552038 .background-color-N6{background-color:#EEF1F8;} + .d2-613552038 .background-color-N7{background-color:#FFFFFF;} + .d2-613552038 .background-color-B1{background-color:#0D32B2;} + .d2-613552038 .background-color-B2{background-color:#0D32B2;} + .d2-613552038 .background-color-B3{background-color:#E3E9FD;} + .d2-613552038 .background-color-B4{background-color:#E3E9FD;} + .d2-613552038 .background-color-B5{background-color:#EDF0FD;} + .d2-613552038 .background-color-B6{background-color:#F7F8FE;} + .d2-613552038 .background-color-AA2{background-color:#4A6FF3;} + .d2-613552038 .background-color-AA4{background-color:#EDF0FD;} + .d2-613552038 .background-color-AA5{background-color:#F7F8FE;} + .d2-613552038 .background-color-AB4{background-color:#EDF0FD;} + .d2-613552038 .background-color-AB5{background-color:#F7F8FE;} + .d2-613552038 .color-N1{color:#0A0F25;} + .d2-613552038 .color-N2{color:#676C7E;} + .d2-613552038 .color-N3{color:#9499AB;} + .d2-613552038 .color-N4{color:#CFD2DD;} + .d2-613552038 .color-N5{color:#DEE1EB;} + .d2-613552038 .color-N6{color:#EEF1F8;} + .d2-613552038 .color-N7{color:#FFFFFF;} + .d2-613552038 .color-B1{color:#0D32B2;} + .d2-613552038 .color-B2{color:#0D32B2;} + .d2-613552038 .color-B3{color:#E3E9FD;} + .d2-613552038 .color-B4{color:#E3E9FD;} + .d2-613552038 .color-B5{color:#EDF0FD;} + .d2-613552038 .color-B6{color:#F7F8FE;} + .d2-613552038 .color-AA2{color:#4A6FF3;} + .d2-613552038 .color-AA4{color:#EDF0FD;} + .d2-613552038 .color-AA5{color:#F7F8FE;} + .d2-613552038 .color-AB4{color:#EDF0FD;} + .d2-613552038 .color-AB5{color:#F7F8FE;}.appendix text.text{fill:#0A0F25}.md{--color-fg-default:#0A0F25;--color-fg-muted:#676C7E;--color-fg-subtle:#9499AB;--color-canvas-default:#FFFFFF;--color-canvas-subtle:#EEF1F8;--color-border-default:#0D32B2;--color-border-muted:#0D32B2;--color-neutral-muted:#EEF1F8;--color-accent-fg:#0D32B2;--color-accent-emphasis:#0D32B2;--color-attention-subtle:#676C7E;--color-danger-fg:red;}.sketch-overlay-B1{fill:url(#streaks-darker);mix-blend-mode:lighten}.sketch-overlay-B2{fill:url(#streaks-darker);mix-blend-mode:lighten}.sketch-overlay-B3{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-B4{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-B5{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-B6{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-AA2{fill:url(#streaks-dark);mix-blend-mode:overlay}.sketch-overlay-AA4{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-AA5{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-AB4{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-AB5{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-N1{fill:url(#streaks-darker);mix-blend-mode:lighten}.sketch-overlay-N2{fill:url(#streaks-dark);mix-blend-mode:overlay}.sketch-overlay-N3{fill:url(#streaks-normal);mix-blend-mode:color-burn}.sketch-overlay-N4{fill:url(#streaks-normal);mix-blend-mode:color-burn}.sketch-overlay-N5{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-N6{fill:url(#streaks-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 2d3c380831..0007f51d6c 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 @@ -53,10 +53,8 @@ "id": "(a -- )[0]", "src": "a", "srcArrow": "none", - "srcLabel": "", "dst": "a-lifeline-end-2251863791", "dstArrow": "none", - "dstLabel": "", "opacity": 1, "strokeDash": 6, "strokeWidth": 2, 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 4e17aad9e1..738ee6680e 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-613552038 .fill-N1{fill:#0A0F25;} + .d2-613552038 .fill-N2{fill:#676C7E;} + .d2-613552038 .fill-N3{fill:#9499AB;} + .d2-613552038 .fill-N4{fill:#CFD2DD;} + .d2-613552038 .fill-N5{fill:#DEE1EB;} + .d2-613552038 .fill-N6{fill:#EEF1F8;} + .d2-613552038 .fill-N7{fill:#FFFFFF;} + .d2-613552038 .fill-B1{fill:#0D32B2;} + .d2-613552038 .fill-B2{fill:#0D32B2;} + .d2-613552038 .fill-B3{fill:#E3E9FD;} + .d2-613552038 .fill-B4{fill:#E3E9FD;} + .d2-613552038 .fill-B5{fill:#EDF0FD;} + .d2-613552038 .fill-B6{fill:#F7F8FE;} + .d2-613552038 .fill-AA2{fill:#4A6FF3;} + .d2-613552038 .fill-AA4{fill:#EDF0FD;} + .d2-613552038 .fill-AA5{fill:#F7F8FE;} + .d2-613552038 .fill-AB4{fill:#EDF0FD;} + .d2-613552038 .fill-AB5{fill:#F7F8FE;} + .d2-613552038 .stroke-N1{stroke:#0A0F25;} + .d2-613552038 .stroke-N2{stroke:#676C7E;} + .d2-613552038 .stroke-N3{stroke:#9499AB;} + .d2-613552038 .stroke-N4{stroke:#CFD2DD;} + .d2-613552038 .stroke-N5{stroke:#DEE1EB;} + .d2-613552038 .stroke-N6{stroke:#EEF1F8;} + .d2-613552038 .stroke-N7{stroke:#FFFFFF;} + .d2-613552038 .stroke-B1{stroke:#0D32B2;} + .d2-613552038 .stroke-B2{stroke:#0D32B2;} + .d2-613552038 .stroke-B3{stroke:#E3E9FD;} + .d2-613552038 .stroke-B4{stroke:#E3E9FD;} + .d2-613552038 .stroke-B5{stroke:#EDF0FD;} + .d2-613552038 .stroke-B6{stroke:#F7F8FE;} + .d2-613552038 .stroke-AA2{stroke:#4A6FF3;} + .d2-613552038 .stroke-AA4{stroke:#EDF0FD;} + .d2-613552038 .stroke-AA5{stroke:#F7F8FE;} + .d2-613552038 .stroke-AB4{stroke:#EDF0FD;} + .d2-613552038 .stroke-AB5{stroke:#F7F8FE;} + .d2-613552038 .background-color-N1{background-color:#0A0F25;} + .d2-613552038 .background-color-N2{background-color:#676C7E;} + .d2-613552038 .background-color-N3{background-color:#9499AB;} + .d2-613552038 .background-color-N4{background-color:#CFD2DD;} + .d2-613552038 .background-color-N5{background-color:#DEE1EB;} + .d2-613552038 .background-color-N6{background-color:#EEF1F8;} + .d2-613552038 .background-color-N7{background-color:#FFFFFF;} + .d2-613552038 .background-color-B1{background-color:#0D32B2;} + .d2-613552038 .background-color-B2{background-color:#0D32B2;} + .d2-613552038 .background-color-B3{background-color:#E3E9FD;} + .d2-613552038 .background-color-B4{background-color:#E3E9FD;} + .d2-613552038 .background-color-B5{background-color:#EDF0FD;} + .d2-613552038 .background-color-B6{background-color:#F7F8FE;} + .d2-613552038 .background-color-AA2{background-color:#4A6FF3;} + .d2-613552038 .background-color-AA4{background-color:#EDF0FD;} + .d2-613552038 .background-color-AA5{background-color:#F7F8FE;} + .d2-613552038 .background-color-AB4{background-color:#EDF0FD;} + .d2-613552038 .background-color-AB5{background-color:#F7F8FE;} + .d2-613552038 .color-N1{color:#0A0F25;} + .d2-613552038 .color-N2{color:#676C7E;} + .d2-613552038 .color-N3{color:#9499AB;} + .d2-613552038 .color-N4{color:#CFD2DD;} + .d2-613552038 .color-N5{color:#DEE1EB;} + .d2-613552038 .color-N6{color:#EEF1F8;} + .d2-613552038 .color-N7{color:#FFFFFF;} + .d2-613552038 .color-B1{color:#0D32B2;} + .d2-613552038 .color-B2{color:#0D32B2;} + .d2-613552038 .color-B3{color:#E3E9FD;} + .d2-613552038 .color-B4{color:#E3E9FD;} + .d2-613552038 .color-B5{color:#EDF0FD;} + .d2-613552038 .color-B6{color:#F7F8FE;} + .d2-613552038 .color-AA2{color:#4A6FF3;} + .d2-613552038 .color-AA4{color:#EDF0FD;} + .d2-613552038 .color-AA5{color:#F7F8FE;} + .d2-613552038 .color-AB4{color:#EDF0FD;} + .d2-613552038 .color-AB5{color:#F7F8FE;}.appendix text.text{fill:#0A0F25}.md{--color-fg-default:#0A0F25;--color-fg-muted:#676C7E;--color-fg-subtle:#9499AB;--color-canvas-default:#FFFFFF;--color-canvas-subtle:#EEF1F8;--color-border-default:#0D32B2;--color-border-muted:#0D32B2;--color-neutral-muted:#EEF1F8;--color-accent-fg:#0D32B2;--color-accent-emphasis:#0D32B2;--color-attention-subtle:#676C7E;--color-danger-fg:red;}.sketch-overlay-B1{fill:url(#streaks-darker);mix-blend-mode:lighten}.sketch-overlay-B2{fill:url(#streaks-darker);mix-blend-mode:lighten}.sketch-overlay-B3{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-B4{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-B5{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-B6{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-AA2{fill:url(#streaks-dark);mix-blend-mode:overlay}.sketch-overlay-AA4{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-AA5{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-AB4{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-AB5{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-N1{fill:url(#streaks-darker);mix-blend-mode:lighten}.sketch-overlay-N2{fill:url(#streaks-dark);mix-blend-mode:overlay}.sketch-overlay-N3{fill:url(#streaks-normal);mix-blend-mode:color-burn}.sketch-overlay-N4{fill:url(#streaks-normal);mix-blend-mode:color-burn}.sketch-overlay-N5{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-N6{fill:url(#streaks-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/dagre-disconnect/dagre/board.exp.json b/e2etests/testdata/regression/dagre-disconnect/dagre/board.exp.json index 44ce29729d..2df521ae34 100644 --- a/e2etests/testdata/regression/dagre-disconnect/dagre/board.exp.json +++ b/e2etests/testdata/regression/dagre-disconnect/dagre/board.exp.json @@ -1075,10 +1075,8 @@ "id": "a.(k.t -> f.i)[0]", "src": "a.k.t", "srcArrow": "none", - "srcLabel": "", "dst": "a.f.i", "dstArrow": "triangle", - "dstLabel": "", "opacity": 1, "strokeDash": 0, "strokeWidth": 2, @@ -1160,10 +1158,8 @@ "id": "(a.f.g -> s.n)[0]", "src": "a.f.g", "srcArrow": "none", - "srcLabel": "", "dst": "s.n", "dstArrow": "triangle", - "dstLabel": "", "opacity": 1, "strokeDash": 0, "strokeWidth": 2, @@ -1245,10 +1241,8 @@ "id": "(k.s <-> u.o)[0]", "src": "k.s", "srcArrow": "triangle", - "srcLabel": "", "dst": "u.o", "dstArrow": "triangle", - "dstLabel": "", "opacity": 1, "strokeDash": 0, "strokeWidth": 2, @@ -1330,10 +1324,8 @@ "id": "(h.m.s -> a.f.g)[0]", "src": "h.m.s", "srcArrow": "none", - "srcLabel": "", "dst": "a.f.g", "dstArrow": "triangle", - "dstLabel": "", "opacity": 1, "strokeDash": 0, "strokeWidth": 2, @@ -1415,10 +1407,8 @@ "id": "(a.f.j -> u.s.j)[0]", "src": "a.f.j", "srcArrow": "none", - "srcLabel": "", "dst": "u.s.j", "dstArrow": "triangle", - "dstLabel": "", "opacity": 1, "strokeDash": 0, "strokeWidth": 2, @@ -1500,10 +1490,8 @@ "id": "(u.c -> s.z.c)[0]", "src": "u.c", "srcArrow": "none", - "srcLabel": "", "dst": "s.z.c", "dstArrow": "triangle", - "dstLabel": "", "opacity": 1, "strokeDash": 0, "strokeWidth": 2, @@ -1585,10 +1573,8 @@ "id": "(s.n -> y.r)[0]", "src": "s.n", "srcArrow": "none", - "srcLabel": "", "dst": "y.r", "dstArrow": "triangle", - "dstLabel": "", "opacity": 1, "strokeDash": 0, "strokeWidth": 8, @@ -1658,10 +1644,8 @@ "id": "(y.r -> a.g.i)[0]", "src": "y.r", "srcArrow": "none", - "srcLabel": "", "dst": "a.g.i", "dstArrow": "triangle", - "dstLabel": "", "opacity": 1, "strokeDash": 0, "strokeWidth": 2, diff --git a/e2etests/testdata/regression/dagre-disconnect/dagre/sketch.exp.svg b/e2etests/testdata/regression/dagre-disconnect/dagre/sketch.exp.svg index ec247f8f43..11fe2e593a 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-1095044730 .fill-N1{fill:#0A0F25;} + .d2-1095044730 .fill-N2{fill:#676C7E;} + .d2-1095044730 .fill-N3{fill:#9499AB;} + .d2-1095044730 .fill-N4{fill:#CFD2DD;} + .d2-1095044730 .fill-N5{fill:#DEE1EB;} + .d2-1095044730 .fill-N6{fill:#EEF1F8;} + .d2-1095044730 .fill-N7{fill:#FFFFFF;} + .d2-1095044730 .fill-B1{fill:#0D32B2;} + .d2-1095044730 .fill-B2{fill:#0D32B2;} + .d2-1095044730 .fill-B3{fill:#E3E9FD;} + .d2-1095044730 .fill-B4{fill:#E3E9FD;} + .d2-1095044730 .fill-B5{fill:#EDF0FD;} + .d2-1095044730 .fill-B6{fill:#F7F8FE;} + .d2-1095044730 .fill-AA2{fill:#4A6FF3;} + .d2-1095044730 .fill-AA4{fill:#EDF0FD;} + .d2-1095044730 .fill-AA5{fill:#F7F8FE;} + .d2-1095044730 .fill-AB4{fill:#EDF0FD;} + .d2-1095044730 .fill-AB5{fill:#F7F8FE;} + .d2-1095044730 .stroke-N1{stroke:#0A0F25;} + .d2-1095044730 .stroke-N2{stroke:#676C7E;} + .d2-1095044730 .stroke-N3{stroke:#9499AB;} + .d2-1095044730 .stroke-N4{stroke:#CFD2DD;} + .d2-1095044730 .stroke-N5{stroke:#DEE1EB;} + .d2-1095044730 .stroke-N6{stroke:#EEF1F8;} + .d2-1095044730 .stroke-N7{stroke:#FFFFFF;} + .d2-1095044730 .stroke-B1{stroke:#0D32B2;} + .d2-1095044730 .stroke-B2{stroke:#0D32B2;} + .d2-1095044730 .stroke-B3{stroke:#E3E9FD;} + .d2-1095044730 .stroke-B4{stroke:#E3E9FD;} + .d2-1095044730 .stroke-B5{stroke:#EDF0FD;} + .d2-1095044730 .stroke-B6{stroke:#F7F8FE;} + .d2-1095044730 .stroke-AA2{stroke:#4A6FF3;} + .d2-1095044730 .stroke-AA4{stroke:#EDF0FD;} + .d2-1095044730 .stroke-AA5{stroke:#F7F8FE;} + .d2-1095044730 .stroke-AB4{stroke:#EDF0FD;} + .d2-1095044730 .stroke-AB5{stroke:#F7F8FE;} + .d2-1095044730 .background-color-N1{background-color:#0A0F25;} + .d2-1095044730 .background-color-N2{background-color:#676C7E;} + .d2-1095044730 .background-color-N3{background-color:#9499AB;} + .d2-1095044730 .background-color-N4{background-color:#CFD2DD;} + .d2-1095044730 .background-color-N5{background-color:#DEE1EB;} + .d2-1095044730 .background-color-N6{background-color:#EEF1F8;} + .d2-1095044730 .background-color-N7{background-color:#FFFFFF;} + .d2-1095044730 .background-color-B1{background-color:#0D32B2;} + .d2-1095044730 .background-color-B2{background-color:#0D32B2;} + .d2-1095044730 .background-color-B3{background-color:#E3E9FD;} + .d2-1095044730 .background-color-B4{background-color:#E3E9FD;} + .d2-1095044730 .background-color-B5{background-color:#EDF0FD;} + .d2-1095044730 .background-color-B6{background-color:#F7F8FE;} + .d2-1095044730 .background-color-AA2{background-color:#4A6FF3;} + .d2-1095044730 .background-color-AA4{background-color:#EDF0FD;} + .d2-1095044730 .background-color-AA5{background-color:#F7F8FE;} + .d2-1095044730 .background-color-AB4{background-color:#EDF0FD;} + .d2-1095044730 .background-color-AB5{background-color:#F7F8FE;} + .d2-1095044730 .color-N1{color:#0A0F25;} + .d2-1095044730 .color-N2{color:#676C7E;} + .d2-1095044730 .color-N3{color:#9499AB;} + .d2-1095044730 .color-N4{color:#CFD2DD;} + .d2-1095044730 .color-N5{color:#DEE1EB;} + .d2-1095044730 .color-N6{color:#EEF1F8;} + .d2-1095044730 .color-N7{color:#FFFFFF;} + .d2-1095044730 .color-B1{color:#0D32B2;} + .d2-1095044730 .color-B2{color:#0D32B2;} + .d2-1095044730 .color-B3{color:#E3E9FD;} + .d2-1095044730 .color-B4{color:#E3E9FD;} + .d2-1095044730 .color-B5{color:#EDF0FD;} + .d2-1095044730 .color-B6{color:#F7F8FE;} + .d2-1095044730 .color-AA2{color:#4A6FF3;} + .d2-1095044730 .color-AA4{color:#EDF0FD;} + .d2-1095044730 .color-AA5{color:#F7F8FE;} + .d2-1095044730 .color-AB4{color:#EDF0FD;} + .d2-1095044730 .color-AB5{color:#F7F8FE;}.appendix text.text{fill:#0A0F25}.md{--color-fg-default:#0A0F25;--color-fg-muted:#676C7E;--color-fg-subtle:#9499AB;--color-canvas-default:#FFFFFF;--color-canvas-subtle:#EEF1F8;--color-border-default:#0D32B2;--color-border-muted:#0D32B2;--color-neutral-muted:#EEF1F8;--color-accent-fg:#0D32B2;--color-accent-emphasis:#0D32B2;--color-attention-subtle:#676C7E;--color-danger-fg:red;}.sketch-overlay-B1{fill:url(#streaks-darker);mix-blend-mode:lighten}.sketch-overlay-B2{fill:url(#streaks-darker);mix-blend-mode:lighten}.sketch-overlay-B3{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-B4{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-B5{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-B6{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-AA2{fill:url(#streaks-dark);mix-blend-mode:overlay}.sketch-overlay-AA4{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-AA5{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-AB4{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-AB5{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-N1{fill:url(#streaks-darker);mix-blend-mode:lighten}.sketch-overlay-N2{fill:url(#streaks-dark);mix-blend-mode:overlay}.sketch-overlay-N3{fill:url(#streaks-normal);mix-blend-mode:color-burn}.sketch-overlay-N4{fill:url(#streaks-normal);mix-blend-mode:color-burn}.sketch-overlay-N5{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-N6{fill:url(#streaks-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 \ No newline at end of file diff --git a/e2etests/testdata/regression/dagre-disconnect/elk/board.exp.json b/e2etests/testdata/regression/dagre-disconnect/elk/board.exp.json index 6e11d6389f..7c812c6fdc 100644 --- a/e2etests/testdata/regression/dagre-disconnect/elk/board.exp.json +++ b/e2etests/testdata/regression/dagre-disconnect/elk/board.exp.json @@ -1075,10 +1075,8 @@ "id": "a.(k.t -> f.i)[0]", "src": "a.k.t", "srcArrow": "none", - "srcLabel": "", "dst": "a.f.i", "dstArrow": "triangle", - "dstLabel": "", "opacity": 1, "strokeDash": 0, "strokeWidth": 2, @@ -1123,10 +1121,8 @@ "id": "(a.f.g -> s.n)[0]", "src": "a.f.g", "srcArrow": "none", - "srcLabel": "", "dst": "s.n", "dstArrow": "triangle", - "dstLabel": "", "opacity": 1, "strokeDash": 0, "strokeWidth": 2, @@ -1179,10 +1175,8 @@ "id": "(k.s <-> u.o)[0]", "src": "k.s", "srcArrow": "triangle", - "srcLabel": "", "dst": "u.o", "dstArrow": "triangle", - "dstLabel": "", "opacity": 1, "strokeDash": 0, "strokeWidth": 2, @@ -1227,10 +1221,8 @@ "id": "(h.m.s -> a.f.g)[0]", "src": "h.m.s", "srcArrow": "none", - "srcLabel": "", "dst": "a.f.g", "dstArrow": "triangle", - "dstLabel": "", "opacity": 1, "strokeDash": 0, "strokeWidth": 2, @@ -1275,10 +1267,8 @@ "id": "(a.f.j -> u.s.j)[0]", "src": "a.f.j", "srcArrow": "none", - "srcLabel": "", "dst": "u.s.j", "dstArrow": "triangle", - "dstLabel": "", "opacity": 1, "strokeDash": 0, "strokeWidth": 2, @@ -1315,10 +1305,8 @@ "id": "(u.c -> s.z.c)[0]", "src": "u.c", "srcArrow": "none", - "srcLabel": "", "dst": "s.z.c", "dstArrow": "triangle", - "dstLabel": "", "opacity": 1, "strokeDash": 0, "strokeWidth": 2, @@ -1355,10 +1343,8 @@ "id": "(s.n -> y.r)[0]", "src": "s.n", "srcArrow": "none", - "srcLabel": "", "dst": "y.r", "dstArrow": "triangle", - "dstLabel": "", "opacity": 1, "strokeDash": 0, "strokeWidth": 8, @@ -1395,10 +1381,8 @@ "id": "(y.r -> a.g.i)[0]", "src": "y.r", "srcArrow": "none", - "srcLabel": "", "dst": "a.g.i", "dstArrow": "triangle", - "dstLabel": "", "opacity": 1, "strokeDash": 0, "strokeWidth": 2, diff --git a/e2etests/testdata/regression/dagre-disconnect/elk/sketch.exp.svg b/e2etests/testdata/regression/dagre-disconnect/elk/sketch.exp.svg index 3d922f9510..12c5f7c2ae 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-1945447671 .fill-N1{fill:#0A0F25;} + .d2-1945447671 .fill-N2{fill:#676C7E;} + .d2-1945447671 .fill-N3{fill:#9499AB;} + .d2-1945447671 .fill-N4{fill:#CFD2DD;} + .d2-1945447671 .fill-N5{fill:#DEE1EB;} + .d2-1945447671 .fill-N6{fill:#EEF1F8;} + .d2-1945447671 .fill-N7{fill:#FFFFFF;} + .d2-1945447671 .fill-B1{fill:#0D32B2;} + .d2-1945447671 .fill-B2{fill:#0D32B2;} + .d2-1945447671 .fill-B3{fill:#E3E9FD;} + .d2-1945447671 .fill-B4{fill:#E3E9FD;} + .d2-1945447671 .fill-B5{fill:#EDF0FD;} + .d2-1945447671 .fill-B6{fill:#F7F8FE;} + .d2-1945447671 .fill-AA2{fill:#4A6FF3;} + .d2-1945447671 .fill-AA4{fill:#EDF0FD;} + .d2-1945447671 .fill-AA5{fill:#F7F8FE;} + .d2-1945447671 .fill-AB4{fill:#EDF0FD;} + .d2-1945447671 .fill-AB5{fill:#F7F8FE;} + .d2-1945447671 .stroke-N1{stroke:#0A0F25;} + .d2-1945447671 .stroke-N2{stroke:#676C7E;} + .d2-1945447671 .stroke-N3{stroke:#9499AB;} + .d2-1945447671 .stroke-N4{stroke:#CFD2DD;} + .d2-1945447671 .stroke-N5{stroke:#DEE1EB;} + .d2-1945447671 .stroke-N6{stroke:#EEF1F8;} + .d2-1945447671 .stroke-N7{stroke:#FFFFFF;} + .d2-1945447671 .stroke-B1{stroke:#0D32B2;} + .d2-1945447671 .stroke-B2{stroke:#0D32B2;} + .d2-1945447671 .stroke-B3{stroke:#E3E9FD;} + .d2-1945447671 .stroke-B4{stroke:#E3E9FD;} + .d2-1945447671 .stroke-B5{stroke:#EDF0FD;} + .d2-1945447671 .stroke-B6{stroke:#F7F8FE;} + .d2-1945447671 .stroke-AA2{stroke:#4A6FF3;} + .d2-1945447671 .stroke-AA4{stroke:#EDF0FD;} + .d2-1945447671 .stroke-AA5{stroke:#F7F8FE;} + .d2-1945447671 .stroke-AB4{stroke:#EDF0FD;} + .d2-1945447671 .stroke-AB5{stroke:#F7F8FE;} + .d2-1945447671 .background-color-N1{background-color:#0A0F25;} + .d2-1945447671 .background-color-N2{background-color:#676C7E;} + .d2-1945447671 .background-color-N3{background-color:#9499AB;} + .d2-1945447671 .background-color-N4{background-color:#CFD2DD;} + .d2-1945447671 .background-color-N5{background-color:#DEE1EB;} + .d2-1945447671 .background-color-N6{background-color:#EEF1F8;} + .d2-1945447671 .background-color-N7{background-color:#FFFFFF;} + .d2-1945447671 .background-color-B1{background-color:#0D32B2;} + .d2-1945447671 .background-color-B2{background-color:#0D32B2;} + .d2-1945447671 .background-color-B3{background-color:#E3E9FD;} + .d2-1945447671 .background-color-B4{background-color:#E3E9FD;} + .d2-1945447671 .background-color-B5{background-color:#EDF0FD;} + .d2-1945447671 .background-color-B6{background-color:#F7F8FE;} + .d2-1945447671 .background-color-AA2{background-color:#4A6FF3;} + .d2-1945447671 .background-color-AA4{background-color:#EDF0FD;} + .d2-1945447671 .background-color-AA5{background-color:#F7F8FE;} + .d2-1945447671 .background-color-AB4{background-color:#EDF0FD;} + .d2-1945447671 .background-color-AB5{background-color:#F7F8FE;} + .d2-1945447671 .color-N1{color:#0A0F25;} + .d2-1945447671 .color-N2{color:#676C7E;} + .d2-1945447671 .color-N3{color:#9499AB;} + .d2-1945447671 .color-N4{color:#CFD2DD;} + .d2-1945447671 .color-N5{color:#DEE1EB;} + .d2-1945447671 .color-N6{color:#EEF1F8;} + .d2-1945447671 .color-N7{color:#FFFFFF;} + .d2-1945447671 .color-B1{color:#0D32B2;} + .d2-1945447671 .color-B2{color:#0D32B2;} + .d2-1945447671 .color-B3{color:#E3E9FD;} + .d2-1945447671 .color-B4{color:#E3E9FD;} + .d2-1945447671 .color-B5{color:#EDF0FD;} + .d2-1945447671 .color-B6{color:#F7F8FE;} + .d2-1945447671 .color-AA2{color:#4A6FF3;} + .d2-1945447671 .color-AA4{color:#EDF0FD;} + .d2-1945447671 .color-AA5{color:#F7F8FE;} + .d2-1945447671 .color-AB4{color:#EDF0FD;} + .d2-1945447671 .color-AB5{color:#F7F8FE;}.appendix text.text{fill:#0A0F25}.md{--color-fg-default:#0A0F25;--color-fg-muted:#676C7E;--color-fg-subtle:#9499AB;--color-canvas-default:#FFFFFF;--color-canvas-subtle:#EEF1F8;--color-border-default:#0D32B2;--color-border-muted:#0D32B2;--color-neutral-muted:#EEF1F8;--color-accent-fg:#0D32B2;--color-accent-emphasis:#0D32B2;--color-attention-subtle:#676C7E;--color-danger-fg:red;}.sketch-overlay-B1{fill:url(#streaks-darker);mix-blend-mode:lighten}.sketch-overlay-B2{fill:url(#streaks-darker);mix-blend-mode:lighten}.sketch-overlay-B3{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-B4{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-B5{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-B6{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-AA2{fill:url(#streaks-dark);mix-blend-mode:overlay}.sketch-overlay-AA4{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-AA5{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-AB4{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-AB5{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-N1{fill:url(#streaks-darker);mix-blend-mode:lighten}.sketch-overlay-N2{fill:url(#streaks-dark);mix-blend-mode:overlay}.sketch-overlay-N3{fill:url(#streaks-normal);mix-blend-mode:color-burn}.sketch-overlay-N4{fill:url(#streaks-normal);mix-blend-mode:color-burn}.sketch-overlay-N5{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-N6{fill:url(#streaks-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 \ No newline at end of file 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 b9742f204b..96af32802b 100644 --- a/e2etests/testdata/regression/dagre_broken_arrowhead/dagre/board.exp.json +++ b/e2etests/testdata/regression/dagre_broken_arrowhead/dagre/board.exp.json @@ -255,10 +255,8 @@ "id": "a.(b -> c)[0]", "src": "a.b", "srcArrow": "none", - "srcLabel": "", "dst": "a.c", "dstArrow": "diamond", - "dstLabel": "", "opacity": 1, "strokeDash": 0, "strokeWidth": 2, @@ -304,10 +302,8 @@ "id": "a.(1 -> c)[0]", "src": "a.1", "srcArrow": "none", - "srcLabel": "", "dst": "a.c", "dstArrow": "triangle", - "dstLabel": "", "opacity": 1, "strokeDash": 0, "strokeWidth": 2, @@ -353,10 +349,8 @@ "id": "a.(2 <-> c)[0]", "src": "a.2", "srcArrow": "triangle", - "srcLabel": "", "dst": "a.c", "dstArrow": "triangle", - "dstLabel": "", "opacity": 1, "strokeDash": 0, "strokeWidth": 2, 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 ae61f2ecef..af1b7a17e7 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-3663304239 .fill-N1{fill:#0A0F25;} + .d2-3663304239 .fill-N2{fill:#676C7E;} + .d2-3663304239 .fill-N3{fill:#9499AB;} + .d2-3663304239 .fill-N4{fill:#CFD2DD;} + .d2-3663304239 .fill-N5{fill:#DEE1EB;} + .d2-3663304239 .fill-N6{fill:#EEF1F8;} + .d2-3663304239 .fill-N7{fill:#FFFFFF;} + .d2-3663304239 .fill-B1{fill:#0D32B2;} + .d2-3663304239 .fill-B2{fill:#0D32B2;} + .d2-3663304239 .fill-B3{fill:#E3E9FD;} + .d2-3663304239 .fill-B4{fill:#E3E9FD;} + .d2-3663304239 .fill-B5{fill:#EDF0FD;} + .d2-3663304239 .fill-B6{fill:#F7F8FE;} + .d2-3663304239 .fill-AA2{fill:#4A6FF3;} + .d2-3663304239 .fill-AA4{fill:#EDF0FD;} + .d2-3663304239 .fill-AA5{fill:#F7F8FE;} + .d2-3663304239 .fill-AB4{fill:#EDF0FD;} + .d2-3663304239 .fill-AB5{fill:#F7F8FE;} + .d2-3663304239 .stroke-N1{stroke:#0A0F25;} + .d2-3663304239 .stroke-N2{stroke:#676C7E;} + .d2-3663304239 .stroke-N3{stroke:#9499AB;} + .d2-3663304239 .stroke-N4{stroke:#CFD2DD;} + .d2-3663304239 .stroke-N5{stroke:#DEE1EB;} + .d2-3663304239 .stroke-N6{stroke:#EEF1F8;} + .d2-3663304239 .stroke-N7{stroke:#FFFFFF;} + .d2-3663304239 .stroke-B1{stroke:#0D32B2;} + .d2-3663304239 .stroke-B2{stroke:#0D32B2;} + .d2-3663304239 .stroke-B3{stroke:#E3E9FD;} + .d2-3663304239 .stroke-B4{stroke:#E3E9FD;} + .d2-3663304239 .stroke-B5{stroke:#EDF0FD;} + .d2-3663304239 .stroke-B6{stroke:#F7F8FE;} + .d2-3663304239 .stroke-AA2{stroke:#4A6FF3;} + .d2-3663304239 .stroke-AA4{stroke:#EDF0FD;} + .d2-3663304239 .stroke-AA5{stroke:#F7F8FE;} + .d2-3663304239 .stroke-AB4{stroke:#EDF0FD;} + .d2-3663304239 .stroke-AB5{stroke:#F7F8FE;} + .d2-3663304239 .background-color-N1{background-color:#0A0F25;} + .d2-3663304239 .background-color-N2{background-color:#676C7E;} + .d2-3663304239 .background-color-N3{background-color:#9499AB;} + .d2-3663304239 .background-color-N4{background-color:#CFD2DD;} + .d2-3663304239 .background-color-N5{background-color:#DEE1EB;} + .d2-3663304239 .background-color-N6{background-color:#EEF1F8;} + .d2-3663304239 .background-color-N7{background-color:#FFFFFF;} + .d2-3663304239 .background-color-B1{background-color:#0D32B2;} + .d2-3663304239 .background-color-B2{background-color:#0D32B2;} + .d2-3663304239 .background-color-B3{background-color:#E3E9FD;} + .d2-3663304239 .background-color-B4{background-color:#E3E9FD;} + .d2-3663304239 .background-color-B5{background-color:#EDF0FD;} + .d2-3663304239 .background-color-B6{background-color:#F7F8FE;} + .d2-3663304239 .background-color-AA2{background-color:#4A6FF3;} + .d2-3663304239 .background-color-AA4{background-color:#EDF0FD;} + .d2-3663304239 .background-color-AA5{background-color:#F7F8FE;} + .d2-3663304239 .background-color-AB4{background-color:#EDF0FD;} + .d2-3663304239 .background-color-AB5{background-color:#F7F8FE;} + .d2-3663304239 .color-N1{color:#0A0F25;} + .d2-3663304239 .color-N2{color:#676C7E;} + .d2-3663304239 .color-N3{color:#9499AB;} + .d2-3663304239 .color-N4{color:#CFD2DD;} + .d2-3663304239 .color-N5{color:#DEE1EB;} + .d2-3663304239 .color-N6{color:#EEF1F8;} + .d2-3663304239 .color-N7{color:#FFFFFF;} + .d2-3663304239 .color-B1{color:#0D32B2;} + .d2-3663304239 .color-B2{color:#0D32B2;} + .d2-3663304239 .color-B3{color:#E3E9FD;} + .d2-3663304239 .color-B4{color:#E3E9FD;} + .d2-3663304239 .color-B5{color:#EDF0FD;} + .d2-3663304239 .color-B6{color:#F7F8FE;} + .d2-3663304239 .color-AA2{color:#4A6FF3;} + .d2-3663304239 .color-AA4{color:#EDF0FD;} + .d2-3663304239 .color-AA5{color:#F7F8FE;} + .d2-3663304239 .color-AB4{color:#EDF0FD;} + .d2-3663304239 .color-AB5{color:#F7F8FE;}.appendix text.text{fill:#0A0F25}.md{--color-fg-default:#0A0F25;--color-fg-muted:#676C7E;--color-fg-subtle:#9499AB;--color-canvas-default:#FFFFFF;--color-canvas-subtle:#EEF1F8;--color-border-default:#0D32B2;--color-border-muted:#0D32B2;--color-neutral-muted:#EEF1F8;--color-accent-fg:#0D32B2;--color-accent-emphasis:#0D32B2;--color-attention-subtle:#676C7E;--color-danger-fg:red;}.sketch-overlay-B1{fill:url(#streaks-darker);mix-blend-mode:lighten}.sketch-overlay-B2{fill:url(#streaks-darker);mix-blend-mode:lighten}.sketch-overlay-B3{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-B4{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-B5{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-B6{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-AA2{fill:url(#streaks-dark);mix-blend-mode:overlay}.sketch-overlay-AA4{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-AA5{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-AB4{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-AB5{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-N1{fill:url(#streaks-darker);mix-blend-mode:lighten}.sketch-overlay-N2{fill:url(#streaks-dark);mix-blend-mode:overlay}.sketch-overlay-N3{fill:url(#streaks-normal);mix-blend-mode:color-burn}.sketch-overlay-N4{fill:url(#streaks-normal);mix-blend-mode:color-burn}.sketch-overlay-N5{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-N6{fill:url(#streaks-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 \ No newline at end of file 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 3474dbc820..92ffb1b0cc 100644 --- a/e2etests/testdata/regression/dagre_broken_arrowhead/elk/board.exp.json +++ b/e2etests/testdata/regression/dagre_broken_arrowhead/elk/board.exp.json @@ -255,10 +255,8 @@ "id": "a.(b -> c)[0]", "src": "a.b", "srcArrow": "none", - "srcLabel": "", "dst": "a.c", "dstArrow": "diamond", - "dstLabel": "", "opacity": 1, "strokeDash": 0, "strokeWidth": 2, @@ -295,10 +293,8 @@ "id": "a.(1 -> c)[0]", "src": "a.1", "srcArrow": "none", - "srcLabel": "", "dst": "a.c", "dstArrow": "triangle", - "dstLabel": "", "opacity": 1, "strokeDash": 0, "strokeWidth": 2, @@ -335,10 +331,8 @@ "id": "a.(2 <-> c)[0]", "src": "a.2", "srcArrow": "triangle", - "srcLabel": "", "dst": "a.c", "dstArrow": "triangle", - "dstLabel": "", "opacity": 1, "strokeDash": 0, "strokeWidth": 2, 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 a739356c74..df9492e285 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-394330960 .fill-N1{fill:#0A0F25;} + .d2-394330960 .fill-N2{fill:#676C7E;} + .d2-394330960 .fill-N3{fill:#9499AB;} + .d2-394330960 .fill-N4{fill:#CFD2DD;} + .d2-394330960 .fill-N5{fill:#DEE1EB;} + .d2-394330960 .fill-N6{fill:#EEF1F8;} + .d2-394330960 .fill-N7{fill:#FFFFFF;} + .d2-394330960 .fill-B1{fill:#0D32B2;} + .d2-394330960 .fill-B2{fill:#0D32B2;} + .d2-394330960 .fill-B3{fill:#E3E9FD;} + .d2-394330960 .fill-B4{fill:#E3E9FD;} + .d2-394330960 .fill-B5{fill:#EDF0FD;} + .d2-394330960 .fill-B6{fill:#F7F8FE;} + .d2-394330960 .fill-AA2{fill:#4A6FF3;} + .d2-394330960 .fill-AA4{fill:#EDF0FD;} + .d2-394330960 .fill-AA5{fill:#F7F8FE;} + .d2-394330960 .fill-AB4{fill:#EDF0FD;} + .d2-394330960 .fill-AB5{fill:#F7F8FE;} + .d2-394330960 .stroke-N1{stroke:#0A0F25;} + .d2-394330960 .stroke-N2{stroke:#676C7E;} + .d2-394330960 .stroke-N3{stroke:#9499AB;} + .d2-394330960 .stroke-N4{stroke:#CFD2DD;} + .d2-394330960 .stroke-N5{stroke:#DEE1EB;} + .d2-394330960 .stroke-N6{stroke:#EEF1F8;} + .d2-394330960 .stroke-N7{stroke:#FFFFFF;} + .d2-394330960 .stroke-B1{stroke:#0D32B2;} + .d2-394330960 .stroke-B2{stroke:#0D32B2;} + .d2-394330960 .stroke-B3{stroke:#E3E9FD;} + .d2-394330960 .stroke-B4{stroke:#E3E9FD;} + .d2-394330960 .stroke-B5{stroke:#EDF0FD;} + .d2-394330960 .stroke-B6{stroke:#F7F8FE;} + .d2-394330960 .stroke-AA2{stroke:#4A6FF3;} + .d2-394330960 .stroke-AA4{stroke:#EDF0FD;} + .d2-394330960 .stroke-AA5{stroke:#F7F8FE;} + .d2-394330960 .stroke-AB4{stroke:#EDF0FD;} + .d2-394330960 .stroke-AB5{stroke:#F7F8FE;} + .d2-394330960 .background-color-N1{background-color:#0A0F25;} + .d2-394330960 .background-color-N2{background-color:#676C7E;} + .d2-394330960 .background-color-N3{background-color:#9499AB;} + .d2-394330960 .background-color-N4{background-color:#CFD2DD;} + .d2-394330960 .background-color-N5{background-color:#DEE1EB;} + .d2-394330960 .background-color-N6{background-color:#EEF1F8;} + .d2-394330960 .background-color-N7{background-color:#FFFFFF;} + .d2-394330960 .background-color-B1{background-color:#0D32B2;} + .d2-394330960 .background-color-B2{background-color:#0D32B2;} + .d2-394330960 .background-color-B3{background-color:#E3E9FD;} + .d2-394330960 .background-color-B4{background-color:#E3E9FD;} + .d2-394330960 .background-color-B5{background-color:#EDF0FD;} + .d2-394330960 .background-color-B6{background-color:#F7F8FE;} + .d2-394330960 .background-color-AA2{background-color:#4A6FF3;} + .d2-394330960 .background-color-AA4{background-color:#EDF0FD;} + .d2-394330960 .background-color-AA5{background-color:#F7F8FE;} + .d2-394330960 .background-color-AB4{background-color:#EDF0FD;} + .d2-394330960 .background-color-AB5{background-color:#F7F8FE;} + .d2-394330960 .color-N1{color:#0A0F25;} + .d2-394330960 .color-N2{color:#676C7E;} + .d2-394330960 .color-N3{color:#9499AB;} + .d2-394330960 .color-N4{color:#CFD2DD;} + .d2-394330960 .color-N5{color:#DEE1EB;} + .d2-394330960 .color-N6{color:#EEF1F8;} + .d2-394330960 .color-N7{color:#FFFFFF;} + .d2-394330960 .color-B1{color:#0D32B2;} + .d2-394330960 .color-B2{color:#0D32B2;} + .d2-394330960 .color-B3{color:#E3E9FD;} + .d2-394330960 .color-B4{color:#E3E9FD;} + .d2-394330960 .color-B5{color:#EDF0FD;} + .d2-394330960 .color-B6{color:#F7F8FE;} + .d2-394330960 .color-AA2{color:#4A6FF3;} + .d2-394330960 .color-AA4{color:#EDF0FD;} + .d2-394330960 .color-AA5{color:#F7F8FE;} + .d2-394330960 .color-AB4{color:#EDF0FD;} + .d2-394330960 .color-AB5{color:#F7F8FE;}.appendix text.text{fill:#0A0F25}.md{--color-fg-default:#0A0F25;--color-fg-muted:#676C7E;--color-fg-subtle:#9499AB;--color-canvas-default:#FFFFFF;--color-canvas-subtle:#EEF1F8;--color-border-default:#0D32B2;--color-border-muted:#0D32B2;--color-neutral-muted:#EEF1F8;--color-accent-fg:#0D32B2;--color-accent-emphasis:#0D32B2;--color-attention-subtle:#676C7E;--color-danger-fg:red;}.sketch-overlay-B1{fill:url(#streaks-darker);mix-blend-mode:lighten}.sketch-overlay-B2{fill:url(#streaks-darker);mix-blend-mode:lighten}.sketch-overlay-B3{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-B4{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-B5{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-B6{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-AA2{fill:url(#streaks-dark);mix-blend-mode:overlay}.sketch-overlay-AA4{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-AA5{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-AB4{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-AB5{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-N1{fill:url(#streaks-darker);mix-blend-mode:lighten}.sketch-overlay-N2{fill:url(#streaks-dark);mix-blend-mode:overlay}.sketch-overlay-N3{fill:url(#streaks-normal);mix-blend-mode:color-burn}.sketch-overlay-N4{fill:url(#streaks-normal);mix-blend-mode:color-burn}.sketch-overlay-N5{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-N6{fill:url(#streaks-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 \ No newline at end of file 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 dc411adb20..f9b3d92508 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 @@ -255,10 +255,8 @@ "id": "build_workflow.(push -> GHA)[0]", "src": "build_workflow.push", "srcArrow": "none", - "srcLabel": "", "dst": "build_workflow.GHA", "dstArrow": "triangle", - "dstLabel": "", "opacity": 1, "strokeDash": 0, "strokeWidth": 2, @@ -304,10 +302,8 @@ "id": "build_workflow.(GHA -> S3)[0]", "src": "build_workflow.GHA", "srcArrow": "none", - "srcLabel": "", "dst": "build_workflow.S3", "dstArrow": "triangle", - "dstLabel": "", "opacity": 1, "strokeDash": 0, "strokeWidth": 2, @@ -353,10 +349,8 @@ "id": "build_workflow.(S3 <-> Terraform)[0]", "src": "build_workflow.S3", "srcArrow": "triangle", - "srcLabel": "", "dst": "build_workflow.Terraform", "dstArrow": "triangle", - "dstLabel": "", "opacity": 1, "strokeDash": 0, "strokeWidth": 2, @@ -402,10 +396,8 @@ "id": "build_workflow.(Terraform -> AWS)[0]", "src": "build_workflow.Terraform", "srcArrow": "none", - "srcLabel": "", "dst": "build_workflow.AWS", "dstArrow": "triangle", - "dstLabel": "", "opacity": 1, "strokeDash": 0, "strokeWidth": 2, 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 6484b468c3..460ce72d34 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-3723383527 .fill-N1{fill:#0A0F25;} + .d2-3723383527 .fill-N2{fill:#676C7E;} + .d2-3723383527 .fill-N3{fill:#9499AB;} + .d2-3723383527 .fill-N4{fill:#CFD2DD;} + .d2-3723383527 .fill-N5{fill:#DEE1EB;} + .d2-3723383527 .fill-N6{fill:#EEF1F8;} + .d2-3723383527 .fill-N7{fill:#FFFFFF;} + .d2-3723383527 .fill-B1{fill:#0D32B2;} + .d2-3723383527 .fill-B2{fill:#0D32B2;} + .d2-3723383527 .fill-B3{fill:#E3E9FD;} + .d2-3723383527 .fill-B4{fill:#E3E9FD;} + .d2-3723383527 .fill-B5{fill:#EDF0FD;} + .d2-3723383527 .fill-B6{fill:#F7F8FE;} + .d2-3723383527 .fill-AA2{fill:#4A6FF3;} + .d2-3723383527 .fill-AA4{fill:#EDF0FD;} + .d2-3723383527 .fill-AA5{fill:#F7F8FE;} + .d2-3723383527 .fill-AB4{fill:#EDF0FD;} + .d2-3723383527 .fill-AB5{fill:#F7F8FE;} + .d2-3723383527 .stroke-N1{stroke:#0A0F25;} + .d2-3723383527 .stroke-N2{stroke:#676C7E;} + .d2-3723383527 .stroke-N3{stroke:#9499AB;} + .d2-3723383527 .stroke-N4{stroke:#CFD2DD;} + .d2-3723383527 .stroke-N5{stroke:#DEE1EB;} + .d2-3723383527 .stroke-N6{stroke:#EEF1F8;} + .d2-3723383527 .stroke-N7{stroke:#FFFFFF;} + .d2-3723383527 .stroke-B1{stroke:#0D32B2;} + .d2-3723383527 .stroke-B2{stroke:#0D32B2;} + .d2-3723383527 .stroke-B3{stroke:#E3E9FD;} + .d2-3723383527 .stroke-B4{stroke:#E3E9FD;} + .d2-3723383527 .stroke-B5{stroke:#EDF0FD;} + .d2-3723383527 .stroke-B6{stroke:#F7F8FE;} + .d2-3723383527 .stroke-AA2{stroke:#4A6FF3;} + .d2-3723383527 .stroke-AA4{stroke:#EDF0FD;} + .d2-3723383527 .stroke-AA5{stroke:#F7F8FE;} + .d2-3723383527 .stroke-AB4{stroke:#EDF0FD;} + .d2-3723383527 .stroke-AB5{stroke:#F7F8FE;} + .d2-3723383527 .background-color-N1{background-color:#0A0F25;} + .d2-3723383527 .background-color-N2{background-color:#676C7E;} + .d2-3723383527 .background-color-N3{background-color:#9499AB;} + .d2-3723383527 .background-color-N4{background-color:#CFD2DD;} + .d2-3723383527 .background-color-N5{background-color:#DEE1EB;} + .d2-3723383527 .background-color-N6{background-color:#EEF1F8;} + .d2-3723383527 .background-color-N7{background-color:#FFFFFF;} + .d2-3723383527 .background-color-B1{background-color:#0D32B2;} + .d2-3723383527 .background-color-B2{background-color:#0D32B2;} + .d2-3723383527 .background-color-B3{background-color:#E3E9FD;} + .d2-3723383527 .background-color-B4{background-color:#E3E9FD;} + .d2-3723383527 .background-color-B5{background-color:#EDF0FD;} + .d2-3723383527 .background-color-B6{background-color:#F7F8FE;} + .d2-3723383527 .background-color-AA2{background-color:#4A6FF3;} + .d2-3723383527 .background-color-AA4{background-color:#EDF0FD;} + .d2-3723383527 .background-color-AA5{background-color:#F7F8FE;} + .d2-3723383527 .background-color-AB4{background-color:#EDF0FD;} + .d2-3723383527 .background-color-AB5{background-color:#F7F8FE;} + .d2-3723383527 .color-N1{color:#0A0F25;} + .d2-3723383527 .color-N2{color:#676C7E;} + .d2-3723383527 .color-N3{color:#9499AB;} + .d2-3723383527 .color-N4{color:#CFD2DD;} + .d2-3723383527 .color-N5{color:#DEE1EB;} + .d2-3723383527 .color-N6{color:#EEF1F8;} + .d2-3723383527 .color-N7{color:#FFFFFF;} + .d2-3723383527 .color-B1{color:#0D32B2;} + .d2-3723383527 .color-B2{color:#0D32B2;} + .d2-3723383527 .color-B3{color:#E3E9FD;} + .d2-3723383527 .color-B4{color:#E3E9FD;} + .d2-3723383527 .color-B5{color:#EDF0FD;} + .d2-3723383527 .color-B6{color:#F7F8FE;} + .d2-3723383527 .color-AA2{color:#4A6FF3;} + .d2-3723383527 .color-AA4{color:#EDF0FD;} + .d2-3723383527 .color-AA5{color:#F7F8FE;} + .d2-3723383527 .color-AB4{color:#EDF0FD;} + .d2-3723383527 .color-AB5{color:#F7F8FE;}.appendix text.text{fill:#0A0F25}.md{--color-fg-default:#0A0F25;--color-fg-muted:#676C7E;--color-fg-subtle:#9499AB;--color-canvas-default:#FFFFFF;--color-canvas-subtle:#EEF1F8;--color-border-default:#0D32B2;--color-border-muted:#0D32B2;--color-neutral-muted:#EEF1F8;--color-accent-fg:#0D32B2;--color-accent-emphasis:#0D32B2;--color-attention-subtle:#676C7E;--color-danger-fg:red;}.sketch-overlay-B1{fill:url(#streaks-darker);mix-blend-mode:lighten}.sketch-overlay-B2{fill:url(#streaks-darker);mix-blend-mode:lighten}.sketch-overlay-B3{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-B4{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-B5{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-B6{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-AA2{fill:url(#streaks-dark);mix-blend-mode:overlay}.sketch-overlay-AA4{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-AA5{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-AB4{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-AB5{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-N1{fill:url(#streaks-darker);mix-blend-mode:lighten}.sketch-overlay-N2{fill:url(#streaks-dark);mix-blend-mode:overlay}.sketch-overlay-N3{fill:url(#streaks-normal);mix-blend-mode:color-burn}.sketch-overlay-N4{fill:url(#streaks-normal);mix-blend-mode:color-burn}.sketch-overlay-N5{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-N6{fill:url(#streaks-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 0bb449cb45..b14ddea490 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 @@ -255,10 +255,8 @@ "id": "build_workflow.(push -> GHA)[0]", "src": "build_workflow.push", "srcArrow": "none", - "srcLabel": "", "dst": "build_workflow.GHA", "dstArrow": "triangle", - "dstLabel": "", "opacity": 1, "strokeDash": 0, "strokeWidth": 2, @@ -295,10 +293,8 @@ "id": "build_workflow.(GHA -> S3)[0]", "src": "build_workflow.GHA", "srcArrow": "none", - "srcLabel": "", "dst": "build_workflow.S3", "dstArrow": "triangle", - "dstLabel": "", "opacity": 1, "strokeDash": 0, "strokeWidth": 2, @@ -335,10 +331,8 @@ "id": "build_workflow.(S3 <-> Terraform)[0]", "src": "build_workflow.S3", "srcArrow": "triangle", - "srcLabel": "", "dst": "build_workflow.Terraform", "dstArrow": "triangle", - "dstLabel": "", "opacity": 1, "strokeDash": 0, "strokeWidth": 2, @@ -375,10 +369,8 @@ "id": "build_workflow.(Terraform -> AWS)[0]", "src": "build_workflow.Terraform", "srcArrow": "none", - "srcLabel": "", "dst": "build_workflow.AWS", "dstArrow": "triangle", - "dstLabel": "", "opacity": 1, "strokeDash": 0, "strokeWidth": 2, 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 c92527d330..dbc18836a1 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-3642244097 .fill-N1{fill:#0A0F25;} + .d2-3642244097 .fill-N2{fill:#676C7E;} + .d2-3642244097 .fill-N3{fill:#9499AB;} + .d2-3642244097 .fill-N4{fill:#CFD2DD;} + .d2-3642244097 .fill-N5{fill:#DEE1EB;} + .d2-3642244097 .fill-N6{fill:#EEF1F8;} + .d2-3642244097 .fill-N7{fill:#FFFFFF;} + .d2-3642244097 .fill-B1{fill:#0D32B2;} + .d2-3642244097 .fill-B2{fill:#0D32B2;} + .d2-3642244097 .fill-B3{fill:#E3E9FD;} + .d2-3642244097 .fill-B4{fill:#E3E9FD;} + .d2-3642244097 .fill-B5{fill:#EDF0FD;} + .d2-3642244097 .fill-B6{fill:#F7F8FE;} + .d2-3642244097 .fill-AA2{fill:#4A6FF3;} + .d2-3642244097 .fill-AA4{fill:#EDF0FD;} + .d2-3642244097 .fill-AA5{fill:#F7F8FE;} + .d2-3642244097 .fill-AB4{fill:#EDF0FD;} + .d2-3642244097 .fill-AB5{fill:#F7F8FE;} + .d2-3642244097 .stroke-N1{stroke:#0A0F25;} + .d2-3642244097 .stroke-N2{stroke:#676C7E;} + .d2-3642244097 .stroke-N3{stroke:#9499AB;} + .d2-3642244097 .stroke-N4{stroke:#CFD2DD;} + .d2-3642244097 .stroke-N5{stroke:#DEE1EB;} + .d2-3642244097 .stroke-N6{stroke:#EEF1F8;} + .d2-3642244097 .stroke-N7{stroke:#FFFFFF;} + .d2-3642244097 .stroke-B1{stroke:#0D32B2;} + .d2-3642244097 .stroke-B2{stroke:#0D32B2;} + .d2-3642244097 .stroke-B3{stroke:#E3E9FD;} + .d2-3642244097 .stroke-B4{stroke:#E3E9FD;} + .d2-3642244097 .stroke-B5{stroke:#EDF0FD;} + .d2-3642244097 .stroke-B6{stroke:#F7F8FE;} + .d2-3642244097 .stroke-AA2{stroke:#4A6FF3;} + .d2-3642244097 .stroke-AA4{stroke:#EDF0FD;} + .d2-3642244097 .stroke-AA5{stroke:#F7F8FE;} + .d2-3642244097 .stroke-AB4{stroke:#EDF0FD;} + .d2-3642244097 .stroke-AB5{stroke:#F7F8FE;} + .d2-3642244097 .background-color-N1{background-color:#0A0F25;} + .d2-3642244097 .background-color-N2{background-color:#676C7E;} + .d2-3642244097 .background-color-N3{background-color:#9499AB;} + .d2-3642244097 .background-color-N4{background-color:#CFD2DD;} + .d2-3642244097 .background-color-N5{background-color:#DEE1EB;} + .d2-3642244097 .background-color-N6{background-color:#EEF1F8;} + .d2-3642244097 .background-color-N7{background-color:#FFFFFF;} + .d2-3642244097 .background-color-B1{background-color:#0D32B2;} + .d2-3642244097 .background-color-B2{background-color:#0D32B2;} + .d2-3642244097 .background-color-B3{background-color:#E3E9FD;} + .d2-3642244097 .background-color-B4{background-color:#E3E9FD;} + .d2-3642244097 .background-color-B5{background-color:#EDF0FD;} + .d2-3642244097 .background-color-B6{background-color:#F7F8FE;} + .d2-3642244097 .background-color-AA2{background-color:#4A6FF3;} + .d2-3642244097 .background-color-AA4{background-color:#EDF0FD;} + .d2-3642244097 .background-color-AA5{background-color:#F7F8FE;} + .d2-3642244097 .background-color-AB4{background-color:#EDF0FD;} + .d2-3642244097 .background-color-AB5{background-color:#F7F8FE;} + .d2-3642244097 .color-N1{color:#0A0F25;} + .d2-3642244097 .color-N2{color:#676C7E;} + .d2-3642244097 .color-N3{color:#9499AB;} + .d2-3642244097 .color-N4{color:#CFD2DD;} + .d2-3642244097 .color-N5{color:#DEE1EB;} + .d2-3642244097 .color-N6{color:#EEF1F8;} + .d2-3642244097 .color-N7{color:#FFFFFF;} + .d2-3642244097 .color-B1{color:#0D32B2;} + .d2-3642244097 .color-B2{color:#0D32B2;} + .d2-3642244097 .color-B3{color:#E3E9FD;} + .d2-3642244097 .color-B4{color:#E3E9FD;} + .d2-3642244097 .color-B5{color:#EDF0FD;} + .d2-3642244097 .color-B6{color:#F7F8FE;} + .d2-3642244097 .color-AA2{color:#4A6FF3;} + .d2-3642244097 .color-AA4{color:#EDF0FD;} + .d2-3642244097 .color-AA5{color:#F7F8FE;} + .d2-3642244097 .color-AB4{color:#EDF0FD;} + .d2-3642244097 .color-AB5{color:#F7F8FE;}.appendix text.text{fill:#0A0F25}.md{--color-fg-default:#0A0F25;--color-fg-muted:#676C7E;--color-fg-subtle:#9499AB;--color-canvas-default:#FFFFFF;--color-canvas-subtle:#EEF1F8;--color-border-default:#0D32B2;--color-border-muted:#0D32B2;--color-neutral-muted:#EEF1F8;--color-accent-fg:#0D32B2;--color-accent-emphasis:#0D32B2;--color-attention-subtle:#676C7E;--color-danger-fg:red;}.sketch-overlay-B1{fill:url(#streaks-darker);mix-blend-mode:lighten}.sketch-overlay-B2{fill:url(#streaks-darker);mix-blend-mode:lighten}.sketch-overlay-B3{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-B4{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-B5{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-B6{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-AA2{fill:url(#streaks-dark);mix-blend-mode:overlay}.sketch-overlay-AA4{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-AA5{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-AB4{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-AB5{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-N1{fill:url(#streaks-darker);mix-blend-mode:lighten}.sketch-overlay-N2{fill:url(#streaks-dark);mix-blend-mode:overlay}.sketch-overlay-N3{fill:url(#streaks-normal);mix-blend-mode:color-burn}.sketch-overlay-N4{fill:url(#streaks-normal);mix-blend-mode:color-burn}.sketch-overlay-N5{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-N6{fill:url(#streaks-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 7849650cef..8e02606e57 100644 --- a/e2etests/testdata/regression/dagre_special_ids/dagre/board.exp.json +++ b/e2etests/testdata/regression/dagre_special_ids/dagre/board.exp.json @@ -296,10 +296,8 @@ "id": "(\"a\\\\yode\" -> there)[0]", "src": "\"a\\\\yode\"", "srcArrow": "none", - "srcLabel": "", "dst": "there", "dstArrow": "triangle", - "dstLabel": "", "opacity": 1, "strokeDash": 0, "strokeWidth": 2, @@ -345,10 +343,8 @@ "id": "('a\\\"ode' -> there)[0]", "src": "'a\\\"ode'", "srcArrow": "none", - "srcLabel": "", "dst": "there", "dstArrow": "triangle", - "dstLabel": "", "opacity": 1, "strokeDash": 0, "strokeWidth": 2, @@ -394,10 +390,8 @@ "id": "(\"a\\\\node\" -> there)[0]", "src": "\"a\\\\node\"", "srcArrow": "none", - "srcLabel": "", "dst": "there", "dstArrow": "triangle", - "dstLabel": "", "opacity": 1, "strokeDash": 0, "strokeWidth": 2, 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 48cc4cc067..17c5b8d55c 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-2368252381 .fill-N1{fill:#0A0F25;} + .d2-2368252381 .fill-N2{fill:#676C7E;} + .d2-2368252381 .fill-N3{fill:#9499AB;} + .d2-2368252381 .fill-N4{fill:#CFD2DD;} + .d2-2368252381 .fill-N5{fill:#DEE1EB;} + .d2-2368252381 .fill-N6{fill:#EEF1F8;} + .d2-2368252381 .fill-N7{fill:#FFFFFF;} + .d2-2368252381 .fill-B1{fill:#0D32B2;} + .d2-2368252381 .fill-B2{fill:#0D32B2;} + .d2-2368252381 .fill-B3{fill:#E3E9FD;} + .d2-2368252381 .fill-B4{fill:#E3E9FD;} + .d2-2368252381 .fill-B5{fill:#EDF0FD;} + .d2-2368252381 .fill-B6{fill:#F7F8FE;} + .d2-2368252381 .fill-AA2{fill:#4A6FF3;} + .d2-2368252381 .fill-AA4{fill:#EDF0FD;} + .d2-2368252381 .fill-AA5{fill:#F7F8FE;} + .d2-2368252381 .fill-AB4{fill:#EDF0FD;} + .d2-2368252381 .fill-AB5{fill:#F7F8FE;} + .d2-2368252381 .stroke-N1{stroke:#0A0F25;} + .d2-2368252381 .stroke-N2{stroke:#676C7E;} + .d2-2368252381 .stroke-N3{stroke:#9499AB;} + .d2-2368252381 .stroke-N4{stroke:#CFD2DD;} + .d2-2368252381 .stroke-N5{stroke:#DEE1EB;} + .d2-2368252381 .stroke-N6{stroke:#EEF1F8;} + .d2-2368252381 .stroke-N7{stroke:#FFFFFF;} + .d2-2368252381 .stroke-B1{stroke:#0D32B2;} + .d2-2368252381 .stroke-B2{stroke:#0D32B2;} + .d2-2368252381 .stroke-B3{stroke:#E3E9FD;} + .d2-2368252381 .stroke-B4{stroke:#E3E9FD;} + .d2-2368252381 .stroke-B5{stroke:#EDF0FD;} + .d2-2368252381 .stroke-B6{stroke:#F7F8FE;} + .d2-2368252381 .stroke-AA2{stroke:#4A6FF3;} + .d2-2368252381 .stroke-AA4{stroke:#EDF0FD;} + .d2-2368252381 .stroke-AA5{stroke:#F7F8FE;} + .d2-2368252381 .stroke-AB4{stroke:#EDF0FD;} + .d2-2368252381 .stroke-AB5{stroke:#F7F8FE;} + .d2-2368252381 .background-color-N1{background-color:#0A0F25;} + .d2-2368252381 .background-color-N2{background-color:#676C7E;} + .d2-2368252381 .background-color-N3{background-color:#9499AB;} + .d2-2368252381 .background-color-N4{background-color:#CFD2DD;} + .d2-2368252381 .background-color-N5{background-color:#DEE1EB;} + .d2-2368252381 .background-color-N6{background-color:#EEF1F8;} + .d2-2368252381 .background-color-N7{background-color:#FFFFFF;} + .d2-2368252381 .background-color-B1{background-color:#0D32B2;} + .d2-2368252381 .background-color-B2{background-color:#0D32B2;} + .d2-2368252381 .background-color-B3{background-color:#E3E9FD;} + .d2-2368252381 .background-color-B4{background-color:#E3E9FD;} + .d2-2368252381 .background-color-B5{background-color:#EDF0FD;} + .d2-2368252381 .background-color-B6{background-color:#F7F8FE;} + .d2-2368252381 .background-color-AA2{background-color:#4A6FF3;} + .d2-2368252381 .background-color-AA4{background-color:#EDF0FD;} + .d2-2368252381 .background-color-AA5{background-color:#F7F8FE;} + .d2-2368252381 .background-color-AB4{background-color:#EDF0FD;} + .d2-2368252381 .background-color-AB5{background-color:#F7F8FE;} + .d2-2368252381 .color-N1{color:#0A0F25;} + .d2-2368252381 .color-N2{color:#676C7E;} + .d2-2368252381 .color-N3{color:#9499AB;} + .d2-2368252381 .color-N4{color:#CFD2DD;} + .d2-2368252381 .color-N5{color:#DEE1EB;} + .d2-2368252381 .color-N6{color:#EEF1F8;} + .d2-2368252381 .color-N7{color:#FFFFFF;} + .d2-2368252381 .color-B1{color:#0D32B2;} + .d2-2368252381 .color-B2{color:#0D32B2;} + .d2-2368252381 .color-B3{color:#E3E9FD;} + .d2-2368252381 .color-B4{color:#E3E9FD;} + .d2-2368252381 .color-B5{color:#EDF0FD;} + .d2-2368252381 .color-B6{color:#F7F8FE;} + .d2-2368252381 .color-AA2{color:#4A6FF3;} + .d2-2368252381 .color-AA4{color:#EDF0FD;} + .d2-2368252381 .color-AA5{color:#F7F8FE;} + .d2-2368252381 .color-AB4{color:#EDF0FD;} + .d2-2368252381 .color-AB5{color:#F7F8FE;}.appendix text.text{fill:#0A0F25}.md{--color-fg-default:#0A0F25;--color-fg-muted:#676C7E;--color-fg-subtle:#9499AB;--color-canvas-default:#FFFFFF;--color-canvas-subtle:#EEF1F8;--color-border-default:#0D32B2;--color-border-muted:#0D32B2;--color-neutral-muted:#EEF1F8;--color-accent-fg:#0D32B2;--color-accent-emphasis:#0D32B2;--color-attention-subtle:#676C7E;--color-danger-fg:red;}.sketch-overlay-B1{fill:url(#streaks-darker);mix-blend-mode:lighten}.sketch-overlay-B2{fill:url(#streaks-darker);mix-blend-mode:lighten}.sketch-overlay-B3{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-B4{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-B5{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-B6{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-AA2{fill:url(#streaks-dark);mix-blend-mode:overlay}.sketch-overlay-AA4{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-AA5{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-AB4{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-AB5{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-N1{fill:url(#streaks-darker);mix-blend-mode:lighten}.sketch-overlay-N2{fill:url(#streaks-dark);mix-blend-mode:overlay}.sketch-overlay-N3{fill:url(#streaks-normal);mix-blend-mode:color-burn}.sketch-overlay-N4{fill:url(#streaks-normal);mix-blend-mode:color-burn}.sketch-overlay-N5{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-N6{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-N7{fill:url(#streaks-bright);mix-blend-mode:darken}.light-code{display: block}.dark-code{display: none}]]>ninetynineeighty eightseventy sevena\yodetherea\"odea\node \ No newline at end of file diff --git a/e2etests/testdata/regression/dagre_special_ids/elk/board.exp.json b/e2etests/testdata/regression/dagre_special_ids/elk/board.exp.json index a0c352ede4..1d5b8048cd 100644 --- a/e2etests/testdata/regression/dagre_special_ids/elk/board.exp.json +++ b/e2etests/testdata/regression/dagre_special_ids/elk/board.exp.json @@ -296,10 +296,8 @@ "id": "(\"a\\\\yode\" -> there)[0]", "src": "\"a\\\\yode\"", "srcArrow": "none", - "srcLabel": "", "dst": "there", "dstArrow": "triangle", - "dstLabel": "", "opacity": 1, "strokeDash": 0, "strokeWidth": 2, @@ -344,10 +342,8 @@ "id": "('a\\\"ode' -> there)[0]", "src": "'a\\\"ode'", "srcArrow": "none", - "srcLabel": "", "dst": "there", "dstArrow": "triangle", - "dstLabel": "", "opacity": 1, "strokeDash": 0, "strokeWidth": 2, @@ -384,10 +380,8 @@ "id": "(\"a\\\\node\" -> there)[0]", "src": "\"a\\\\node\"", "srcArrow": "none", - "srcLabel": "", "dst": "there", "dstArrow": "triangle", - "dstLabel": "", "opacity": 1, "strokeDash": 0, "strokeWidth": 2, 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 f1d33bb1a3..812fcab423 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-2858922464 .fill-N1{fill:#0A0F25;} + .d2-2858922464 .fill-N2{fill:#676C7E;} + .d2-2858922464 .fill-N3{fill:#9499AB;} + .d2-2858922464 .fill-N4{fill:#CFD2DD;} + .d2-2858922464 .fill-N5{fill:#DEE1EB;} + .d2-2858922464 .fill-N6{fill:#EEF1F8;} + .d2-2858922464 .fill-N7{fill:#FFFFFF;} + .d2-2858922464 .fill-B1{fill:#0D32B2;} + .d2-2858922464 .fill-B2{fill:#0D32B2;} + .d2-2858922464 .fill-B3{fill:#E3E9FD;} + .d2-2858922464 .fill-B4{fill:#E3E9FD;} + .d2-2858922464 .fill-B5{fill:#EDF0FD;} + .d2-2858922464 .fill-B6{fill:#F7F8FE;} + .d2-2858922464 .fill-AA2{fill:#4A6FF3;} + .d2-2858922464 .fill-AA4{fill:#EDF0FD;} + .d2-2858922464 .fill-AA5{fill:#F7F8FE;} + .d2-2858922464 .fill-AB4{fill:#EDF0FD;} + .d2-2858922464 .fill-AB5{fill:#F7F8FE;} + .d2-2858922464 .stroke-N1{stroke:#0A0F25;} + .d2-2858922464 .stroke-N2{stroke:#676C7E;} + .d2-2858922464 .stroke-N3{stroke:#9499AB;} + .d2-2858922464 .stroke-N4{stroke:#CFD2DD;} + .d2-2858922464 .stroke-N5{stroke:#DEE1EB;} + .d2-2858922464 .stroke-N6{stroke:#EEF1F8;} + .d2-2858922464 .stroke-N7{stroke:#FFFFFF;} + .d2-2858922464 .stroke-B1{stroke:#0D32B2;} + .d2-2858922464 .stroke-B2{stroke:#0D32B2;} + .d2-2858922464 .stroke-B3{stroke:#E3E9FD;} + .d2-2858922464 .stroke-B4{stroke:#E3E9FD;} + .d2-2858922464 .stroke-B5{stroke:#EDF0FD;} + .d2-2858922464 .stroke-B6{stroke:#F7F8FE;} + .d2-2858922464 .stroke-AA2{stroke:#4A6FF3;} + .d2-2858922464 .stroke-AA4{stroke:#EDF0FD;} + .d2-2858922464 .stroke-AA5{stroke:#F7F8FE;} + .d2-2858922464 .stroke-AB4{stroke:#EDF0FD;} + .d2-2858922464 .stroke-AB5{stroke:#F7F8FE;} + .d2-2858922464 .background-color-N1{background-color:#0A0F25;} + .d2-2858922464 .background-color-N2{background-color:#676C7E;} + .d2-2858922464 .background-color-N3{background-color:#9499AB;} + .d2-2858922464 .background-color-N4{background-color:#CFD2DD;} + .d2-2858922464 .background-color-N5{background-color:#DEE1EB;} + .d2-2858922464 .background-color-N6{background-color:#EEF1F8;} + .d2-2858922464 .background-color-N7{background-color:#FFFFFF;} + .d2-2858922464 .background-color-B1{background-color:#0D32B2;} + .d2-2858922464 .background-color-B2{background-color:#0D32B2;} + .d2-2858922464 .background-color-B3{background-color:#E3E9FD;} + .d2-2858922464 .background-color-B4{background-color:#E3E9FD;} + .d2-2858922464 .background-color-B5{background-color:#EDF0FD;} + .d2-2858922464 .background-color-B6{background-color:#F7F8FE;} + .d2-2858922464 .background-color-AA2{background-color:#4A6FF3;} + .d2-2858922464 .background-color-AA4{background-color:#EDF0FD;} + .d2-2858922464 .background-color-AA5{background-color:#F7F8FE;} + .d2-2858922464 .background-color-AB4{background-color:#EDF0FD;} + .d2-2858922464 .background-color-AB5{background-color:#F7F8FE;} + .d2-2858922464 .color-N1{color:#0A0F25;} + .d2-2858922464 .color-N2{color:#676C7E;} + .d2-2858922464 .color-N3{color:#9499AB;} + .d2-2858922464 .color-N4{color:#CFD2DD;} + .d2-2858922464 .color-N5{color:#DEE1EB;} + .d2-2858922464 .color-N6{color:#EEF1F8;} + .d2-2858922464 .color-N7{color:#FFFFFF;} + .d2-2858922464 .color-B1{color:#0D32B2;} + .d2-2858922464 .color-B2{color:#0D32B2;} + .d2-2858922464 .color-B3{color:#E3E9FD;} + .d2-2858922464 .color-B4{color:#E3E9FD;} + .d2-2858922464 .color-B5{color:#EDF0FD;} + .d2-2858922464 .color-B6{color:#F7F8FE;} + .d2-2858922464 .color-AA2{color:#4A6FF3;} + .d2-2858922464 .color-AA4{color:#EDF0FD;} + .d2-2858922464 .color-AA5{color:#F7F8FE;} + .d2-2858922464 .color-AB4{color:#EDF0FD;} + .d2-2858922464 .color-AB5{color:#F7F8FE;}.appendix text.text{fill:#0A0F25}.md{--color-fg-default:#0A0F25;--color-fg-muted:#676C7E;--color-fg-subtle:#9499AB;--color-canvas-default:#FFFFFF;--color-canvas-subtle:#EEF1F8;--color-border-default:#0D32B2;--color-border-muted:#0D32B2;--color-neutral-muted:#EEF1F8;--color-accent-fg:#0D32B2;--color-accent-emphasis:#0D32B2;--color-attention-subtle:#676C7E;--color-danger-fg:red;}.sketch-overlay-B1{fill:url(#streaks-darker);mix-blend-mode:lighten}.sketch-overlay-B2{fill:url(#streaks-darker);mix-blend-mode:lighten}.sketch-overlay-B3{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-B4{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-B5{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-B6{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-AA2{fill:url(#streaks-dark);mix-blend-mode:overlay}.sketch-overlay-AA4{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-AA5{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-AB4{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-AB5{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-N1{fill:url(#streaks-darker);mix-blend-mode:lighten}.sketch-overlay-N2{fill:url(#streaks-dark);mix-blend-mode:overlay}.sketch-overlay-N3{fill:url(#streaks-normal);mix-blend-mode:color-burn}.sketch-overlay-N4{fill:url(#streaks-normal);mix-blend-mode:color-burn}.sketch-overlay-N5{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-N6{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-N7{fill:url(#streaks-bright);mix-blend-mode:darken}.light-code{display: block}.dark-code{display: none}]]>ninetynineeighty eightseventy sevena\yodetherea\"odea\node \ No newline at end of file diff --git a/e2etests/testdata/regression/elk_alignment/dagre/board.exp.json b/e2etests/testdata/regression/elk_alignment/dagre/board.exp.json index 3ee6ce3b71..07039c8c31 100644 --- a/e2etests/testdata/regression/elk_alignment/dagre/board.exp.json +++ b/e2etests/testdata/regression/elk_alignment/dagre/board.exp.json @@ -583,10 +583,8 @@ "id": "build_workflow.(push -> GHA)[0]", "src": "build_workflow.push", "srcArrow": "none", - "srcLabel": "", "dst": "build_workflow.GHA", "dstArrow": "triangle", - "dstLabel": "", "opacity": 1, "strokeDash": 0, "strokeWidth": 2, @@ -632,10 +630,8 @@ "id": "build_workflow.(GHA -> S3)[0]", "src": "build_workflow.GHA", "srcArrow": "none", - "srcLabel": "", "dst": "build_workflow.S3", "dstArrow": "triangle", - "dstLabel": "", "opacity": 1, "strokeDash": 0, "strokeWidth": 2, @@ -681,10 +677,8 @@ "id": "build_workflow.(S3 <-> Terraform)[0]", "src": "build_workflow.S3", "srcArrow": "triangle", - "srcLabel": "", "dst": "build_workflow.Terraform", "dstArrow": "triangle", - "dstLabel": "", "opacity": 1, "strokeDash": 0, "strokeWidth": 2, @@ -730,10 +724,8 @@ "id": "build_workflow.(Terraform -> AWS)[0]", "src": "build_workflow.Terraform", "srcArrow": "none", - "srcLabel": "", "dst": "build_workflow.AWS", "dstArrow": "triangle", - "dstLabel": "", "opacity": 1, "strokeDash": 0, "strokeWidth": 2, @@ -779,10 +771,8 @@ "id": "deploy_workflow.(manual -> GHA)[0]", "src": "deploy_workflow.manual", "srcArrow": "none", - "srcLabel": "", "dst": "deploy_workflow.GHA", "dstArrow": "triangle", - "dstLabel": "", "opacity": 1, "strokeDash": 0, "strokeWidth": 2, @@ -828,10 +818,8 @@ "id": "deploy_workflow.(GHA -> AWS)[0]", "src": "deploy_workflow.GHA", "srcArrow": "none", - "srcLabel": "", "dst": "deploy_workflow.AWS", "dstArrow": "triangle", - "dstLabel": "", "opacity": 1, "strokeDash": 0, "strokeWidth": 2, @@ -877,10 +865,8 @@ "id": "apollo_workflow.(apollo -> GHA)[0]", "src": "apollo_workflow.apollo", "srcArrow": "none", - "srcLabel": "", "dst": "apollo_workflow.GHA", "dstArrow": "triangle", - "dstLabel": "", "opacity": 1, "strokeDash": 0, "strokeWidth": 2, @@ -926,10 +912,8 @@ "id": "apollo_workflow.(GHA -> AWS)[0]", "src": "apollo_workflow.GHA", "srcArrow": "none", - "srcLabel": "", "dst": "apollo_workflow.AWS", "dstArrow": "triangle", - "dstLabel": "", "opacity": 1, "strokeDash": 0, "strokeWidth": 2, diff --git a/e2etests/testdata/regression/elk_alignment/dagre/sketch.exp.svg b/e2etests/testdata/regression/elk_alignment/dagre/sketch.exp.svg index de2b486e0c..6c611b1fa4 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-3981534119 .fill-N1{fill:#0A0F25;} + .d2-3981534119 .fill-N2{fill:#676C7E;} + .d2-3981534119 .fill-N3{fill:#9499AB;} + .d2-3981534119 .fill-N4{fill:#CFD2DD;} + .d2-3981534119 .fill-N5{fill:#DEE1EB;} + .d2-3981534119 .fill-N6{fill:#EEF1F8;} + .d2-3981534119 .fill-N7{fill:#FFFFFF;} + .d2-3981534119 .fill-B1{fill:#0D32B2;} + .d2-3981534119 .fill-B2{fill:#0D32B2;} + .d2-3981534119 .fill-B3{fill:#E3E9FD;} + .d2-3981534119 .fill-B4{fill:#E3E9FD;} + .d2-3981534119 .fill-B5{fill:#EDF0FD;} + .d2-3981534119 .fill-B6{fill:#F7F8FE;} + .d2-3981534119 .fill-AA2{fill:#4A6FF3;} + .d2-3981534119 .fill-AA4{fill:#EDF0FD;} + .d2-3981534119 .fill-AA5{fill:#F7F8FE;} + .d2-3981534119 .fill-AB4{fill:#EDF0FD;} + .d2-3981534119 .fill-AB5{fill:#F7F8FE;} + .d2-3981534119 .stroke-N1{stroke:#0A0F25;} + .d2-3981534119 .stroke-N2{stroke:#676C7E;} + .d2-3981534119 .stroke-N3{stroke:#9499AB;} + .d2-3981534119 .stroke-N4{stroke:#CFD2DD;} + .d2-3981534119 .stroke-N5{stroke:#DEE1EB;} + .d2-3981534119 .stroke-N6{stroke:#EEF1F8;} + .d2-3981534119 .stroke-N7{stroke:#FFFFFF;} + .d2-3981534119 .stroke-B1{stroke:#0D32B2;} + .d2-3981534119 .stroke-B2{stroke:#0D32B2;} + .d2-3981534119 .stroke-B3{stroke:#E3E9FD;} + .d2-3981534119 .stroke-B4{stroke:#E3E9FD;} + .d2-3981534119 .stroke-B5{stroke:#EDF0FD;} + .d2-3981534119 .stroke-B6{stroke:#F7F8FE;} + .d2-3981534119 .stroke-AA2{stroke:#4A6FF3;} + .d2-3981534119 .stroke-AA4{stroke:#EDF0FD;} + .d2-3981534119 .stroke-AA5{stroke:#F7F8FE;} + .d2-3981534119 .stroke-AB4{stroke:#EDF0FD;} + .d2-3981534119 .stroke-AB5{stroke:#F7F8FE;} + .d2-3981534119 .background-color-N1{background-color:#0A0F25;} + .d2-3981534119 .background-color-N2{background-color:#676C7E;} + .d2-3981534119 .background-color-N3{background-color:#9499AB;} + .d2-3981534119 .background-color-N4{background-color:#CFD2DD;} + .d2-3981534119 .background-color-N5{background-color:#DEE1EB;} + .d2-3981534119 .background-color-N6{background-color:#EEF1F8;} + .d2-3981534119 .background-color-N7{background-color:#FFFFFF;} + .d2-3981534119 .background-color-B1{background-color:#0D32B2;} + .d2-3981534119 .background-color-B2{background-color:#0D32B2;} + .d2-3981534119 .background-color-B3{background-color:#E3E9FD;} + .d2-3981534119 .background-color-B4{background-color:#E3E9FD;} + .d2-3981534119 .background-color-B5{background-color:#EDF0FD;} + .d2-3981534119 .background-color-B6{background-color:#F7F8FE;} + .d2-3981534119 .background-color-AA2{background-color:#4A6FF3;} + .d2-3981534119 .background-color-AA4{background-color:#EDF0FD;} + .d2-3981534119 .background-color-AA5{background-color:#F7F8FE;} + .d2-3981534119 .background-color-AB4{background-color:#EDF0FD;} + .d2-3981534119 .background-color-AB5{background-color:#F7F8FE;} + .d2-3981534119 .color-N1{color:#0A0F25;} + .d2-3981534119 .color-N2{color:#676C7E;} + .d2-3981534119 .color-N3{color:#9499AB;} + .d2-3981534119 .color-N4{color:#CFD2DD;} + .d2-3981534119 .color-N5{color:#DEE1EB;} + .d2-3981534119 .color-N6{color:#EEF1F8;} + .d2-3981534119 .color-N7{color:#FFFFFF;} + .d2-3981534119 .color-B1{color:#0D32B2;} + .d2-3981534119 .color-B2{color:#0D32B2;} + .d2-3981534119 .color-B3{color:#E3E9FD;} + .d2-3981534119 .color-B4{color:#E3E9FD;} + .d2-3981534119 .color-B5{color:#EDF0FD;} + .d2-3981534119 .color-B6{color:#F7F8FE;} + .d2-3981534119 .color-AA2{color:#4A6FF3;} + .d2-3981534119 .color-AA4{color:#EDF0FD;} + .d2-3981534119 .color-AA5{color:#F7F8FE;} + .d2-3981534119 .color-AB4{color:#EDF0FD;} + .d2-3981534119 .color-AB5{color:#F7F8FE;}.appendix text.text{fill:#0A0F25}.md{--color-fg-default:#0A0F25;--color-fg-muted:#676C7E;--color-fg-subtle:#9499AB;--color-canvas-default:#FFFFFF;--color-canvas-subtle:#EEF1F8;--color-border-default:#0D32B2;--color-border-muted:#0D32B2;--color-neutral-muted:#EEF1F8;--color-accent-fg:#0D32B2;--color-accent-emphasis:#0D32B2;--color-attention-subtle:#676C7E;--color-danger-fg:red;}.sketch-overlay-B1{fill:url(#streaks-darker);mix-blend-mode:lighten}.sketch-overlay-B2{fill:url(#streaks-darker);mix-blend-mode:lighten}.sketch-overlay-B3{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-B4{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-B5{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-B6{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-AA2{fill:url(#streaks-dark);mix-blend-mode:overlay}.sketch-overlay-AA4{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-AA5{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-AB4{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-AB5{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-N1{fill:url(#streaks-darker);mix-blend-mode:lighten}.sketch-overlay-N2{fill:url(#streaks-dark);mix-blend-mode:overlay}.sketch-overlay-N3{fill:url(#streaks-normal);mix-blend-mode:color-burn}.sketch-overlay-N4{fill:url(#streaks-normal);mix-blend-mode:color-burn}.sketch-overlay-N5{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-N6{fill:url(#streaks-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 08d9062967..f3683eb179 100644 --- a/e2etests/testdata/regression/elk_alignment/elk/board.exp.json +++ b/e2etests/testdata/regression/elk_alignment/elk/board.exp.json @@ -583,10 +583,8 @@ "id": "build_workflow.(push -> GHA)[0]", "src": "build_workflow.push", "srcArrow": "none", - "srcLabel": "", "dst": "build_workflow.GHA", "dstArrow": "triangle", - "dstLabel": "", "opacity": 1, "strokeDash": 0, "strokeWidth": 2, @@ -623,10 +621,8 @@ "id": "build_workflow.(GHA -> S3)[0]", "src": "build_workflow.GHA", "srcArrow": "none", - "srcLabel": "", "dst": "build_workflow.S3", "dstArrow": "triangle", - "dstLabel": "", "opacity": 1, "strokeDash": 0, "strokeWidth": 2, @@ -663,10 +659,8 @@ "id": "build_workflow.(S3 <-> Terraform)[0]", "src": "build_workflow.S3", "srcArrow": "triangle", - "srcLabel": "", "dst": "build_workflow.Terraform", "dstArrow": "triangle", - "dstLabel": "", "opacity": 1, "strokeDash": 0, "strokeWidth": 2, @@ -703,10 +697,8 @@ "id": "build_workflow.(Terraform -> AWS)[0]", "src": "build_workflow.Terraform", "srcArrow": "none", - "srcLabel": "", "dst": "build_workflow.AWS", "dstArrow": "triangle", - "dstLabel": "", "opacity": 1, "strokeDash": 0, "strokeWidth": 2, @@ -743,10 +735,8 @@ "id": "deploy_workflow.(manual -> GHA)[0]", "src": "deploy_workflow.manual", "srcArrow": "none", - "srcLabel": "", "dst": "deploy_workflow.GHA", "dstArrow": "triangle", - "dstLabel": "", "opacity": 1, "strokeDash": 0, "strokeWidth": 2, @@ -783,10 +773,8 @@ "id": "deploy_workflow.(GHA -> AWS)[0]", "src": "deploy_workflow.GHA", "srcArrow": "none", - "srcLabel": "", "dst": "deploy_workflow.AWS", "dstArrow": "triangle", - "dstLabel": "", "opacity": 1, "strokeDash": 0, "strokeWidth": 2, @@ -823,10 +811,8 @@ "id": "apollo_workflow.(apollo -> GHA)[0]", "src": "apollo_workflow.apollo", "srcArrow": "none", - "srcLabel": "", "dst": "apollo_workflow.GHA", "dstArrow": "triangle", - "dstLabel": "", "opacity": 1, "strokeDash": 0, "strokeWidth": 2, @@ -863,10 +849,8 @@ "id": "apollo_workflow.(GHA -> AWS)[0]", "src": "apollo_workflow.GHA", "srcArrow": "none", - "srcLabel": "", "dst": "apollo_workflow.AWS", "dstArrow": "triangle", - "dstLabel": "", "opacity": 1, "strokeDash": 0, "strokeWidth": 2, diff --git a/e2etests/testdata/regression/elk_alignment/elk/sketch.exp.svg b/e2etests/testdata/regression/elk_alignment/elk/sketch.exp.svg index 61b6dc0a40..0db1628de0 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-3331951018 .fill-N1{fill:#0A0F25;} + .d2-3331951018 .fill-N2{fill:#676C7E;} + .d2-3331951018 .fill-N3{fill:#9499AB;} + .d2-3331951018 .fill-N4{fill:#CFD2DD;} + .d2-3331951018 .fill-N5{fill:#DEE1EB;} + .d2-3331951018 .fill-N6{fill:#EEF1F8;} + .d2-3331951018 .fill-N7{fill:#FFFFFF;} + .d2-3331951018 .fill-B1{fill:#0D32B2;} + .d2-3331951018 .fill-B2{fill:#0D32B2;} + .d2-3331951018 .fill-B3{fill:#E3E9FD;} + .d2-3331951018 .fill-B4{fill:#E3E9FD;} + .d2-3331951018 .fill-B5{fill:#EDF0FD;} + .d2-3331951018 .fill-B6{fill:#F7F8FE;} + .d2-3331951018 .fill-AA2{fill:#4A6FF3;} + .d2-3331951018 .fill-AA4{fill:#EDF0FD;} + .d2-3331951018 .fill-AA5{fill:#F7F8FE;} + .d2-3331951018 .fill-AB4{fill:#EDF0FD;} + .d2-3331951018 .fill-AB5{fill:#F7F8FE;} + .d2-3331951018 .stroke-N1{stroke:#0A0F25;} + .d2-3331951018 .stroke-N2{stroke:#676C7E;} + .d2-3331951018 .stroke-N3{stroke:#9499AB;} + .d2-3331951018 .stroke-N4{stroke:#CFD2DD;} + .d2-3331951018 .stroke-N5{stroke:#DEE1EB;} + .d2-3331951018 .stroke-N6{stroke:#EEF1F8;} + .d2-3331951018 .stroke-N7{stroke:#FFFFFF;} + .d2-3331951018 .stroke-B1{stroke:#0D32B2;} + .d2-3331951018 .stroke-B2{stroke:#0D32B2;} + .d2-3331951018 .stroke-B3{stroke:#E3E9FD;} + .d2-3331951018 .stroke-B4{stroke:#E3E9FD;} + .d2-3331951018 .stroke-B5{stroke:#EDF0FD;} + .d2-3331951018 .stroke-B6{stroke:#F7F8FE;} + .d2-3331951018 .stroke-AA2{stroke:#4A6FF3;} + .d2-3331951018 .stroke-AA4{stroke:#EDF0FD;} + .d2-3331951018 .stroke-AA5{stroke:#F7F8FE;} + .d2-3331951018 .stroke-AB4{stroke:#EDF0FD;} + .d2-3331951018 .stroke-AB5{stroke:#F7F8FE;} + .d2-3331951018 .background-color-N1{background-color:#0A0F25;} + .d2-3331951018 .background-color-N2{background-color:#676C7E;} + .d2-3331951018 .background-color-N3{background-color:#9499AB;} + .d2-3331951018 .background-color-N4{background-color:#CFD2DD;} + .d2-3331951018 .background-color-N5{background-color:#DEE1EB;} + .d2-3331951018 .background-color-N6{background-color:#EEF1F8;} + .d2-3331951018 .background-color-N7{background-color:#FFFFFF;} + .d2-3331951018 .background-color-B1{background-color:#0D32B2;} + .d2-3331951018 .background-color-B2{background-color:#0D32B2;} + .d2-3331951018 .background-color-B3{background-color:#E3E9FD;} + .d2-3331951018 .background-color-B4{background-color:#E3E9FD;} + .d2-3331951018 .background-color-B5{background-color:#EDF0FD;} + .d2-3331951018 .background-color-B6{background-color:#F7F8FE;} + .d2-3331951018 .background-color-AA2{background-color:#4A6FF3;} + .d2-3331951018 .background-color-AA4{background-color:#EDF0FD;} + .d2-3331951018 .background-color-AA5{background-color:#F7F8FE;} + .d2-3331951018 .background-color-AB4{background-color:#EDF0FD;} + .d2-3331951018 .background-color-AB5{background-color:#F7F8FE;} + .d2-3331951018 .color-N1{color:#0A0F25;} + .d2-3331951018 .color-N2{color:#676C7E;} + .d2-3331951018 .color-N3{color:#9499AB;} + .d2-3331951018 .color-N4{color:#CFD2DD;} + .d2-3331951018 .color-N5{color:#DEE1EB;} + .d2-3331951018 .color-N6{color:#EEF1F8;} + .d2-3331951018 .color-N7{color:#FFFFFF;} + .d2-3331951018 .color-B1{color:#0D32B2;} + .d2-3331951018 .color-B2{color:#0D32B2;} + .d2-3331951018 .color-B3{color:#E3E9FD;} + .d2-3331951018 .color-B4{color:#E3E9FD;} + .d2-3331951018 .color-B5{color:#EDF0FD;} + .d2-3331951018 .color-B6{color:#F7F8FE;} + .d2-3331951018 .color-AA2{color:#4A6FF3;} + .d2-3331951018 .color-AA4{color:#EDF0FD;} + .d2-3331951018 .color-AA5{color:#F7F8FE;} + .d2-3331951018 .color-AB4{color:#EDF0FD;} + .d2-3331951018 .color-AB5{color:#F7F8FE;}.appendix text.text{fill:#0A0F25}.md{--color-fg-default:#0A0F25;--color-fg-muted:#676C7E;--color-fg-subtle:#9499AB;--color-canvas-default:#FFFFFF;--color-canvas-subtle:#EEF1F8;--color-border-default:#0D32B2;--color-border-muted:#0D32B2;--color-neutral-muted:#EEF1F8;--color-accent-fg:#0D32B2;--color-accent-emphasis:#0D32B2;--color-attention-subtle:#676C7E;--color-danger-fg:red;}.sketch-overlay-B1{fill:url(#streaks-darker);mix-blend-mode:lighten}.sketch-overlay-B2{fill:url(#streaks-darker);mix-blend-mode:lighten}.sketch-overlay-B3{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-B4{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-B5{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-B6{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-AA2{fill:url(#streaks-dark);mix-blend-mode:overlay}.sketch-overlay-AA4{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-AA5{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-AB4{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-AB5{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-N1{fill:url(#streaks-darker);mix-blend-mode:lighten}.sketch-overlay-N2{fill:url(#streaks-dark);mix-blend-mode:overlay}.sketch-overlay-N3{fill:url(#streaks-normal);mix-blend-mode:color-burn}.sketch-overlay-N4{fill:url(#streaks-normal);mix-blend-mode:color-burn}.sketch-overlay-N5{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-N6{fill:url(#streaks-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 acd3071f25..7774a3f5f8 100644 --- a/e2etests/testdata/regression/elk_loop_panic/dagre/board.exp.json +++ b/e2etests/testdata/regression/elk_loop_panic/dagre/board.exp.json @@ -132,10 +132,8 @@ "id": "x.(a -> a)[0]", "src": "x.a", "srcArrow": "none", - "srcLabel": "", "dst": "x.a", "dstArrow": "triangle", - "dstLabel": "", "opacity": 1, "strokeDash": 0, "strokeWidth": 2, 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 f6e2581fdc..f5b764413a 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-1446819221 .fill-N1{fill:#0A0F25;} + .d2-1446819221 .fill-N2{fill:#676C7E;} + .d2-1446819221 .fill-N3{fill:#9499AB;} + .d2-1446819221 .fill-N4{fill:#CFD2DD;} + .d2-1446819221 .fill-N5{fill:#DEE1EB;} + .d2-1446819221 .fill-N6{fill:#EEF1F8;} + .d2-1446819221 .fill-N7{fill:#FFFFFF;} + .d2-1446819221 .fill-B1{fill:#0D32B2;} + .d2-1446819221 .fill-B2{fill:#0D32B2;} + .d2-1446819221 .fill-B3{fill:#E3E9FD;} + .d2-1446819221 .fill-B4{fill:#E3E9FD;} + .d2-1446819221 .fill-B5{fill:#EDF0FD;} + .d2-1446819221 .fill-B6{fill:#F7F8FE;} + .d2-1446819221 .fill-AA2{fill:#4A6FF3;} + .d2-1446819221 .fill-AA4{fill:#EDF0FD;} + .d2-1446819221 .fill-AA5{fill:#F7F8FE;} + .d2-1446819221 .fill-AB4{fill:#EDF0FD;} + .d2-1446819221 .fill-AB5{fill:#F7F8FE;} + .d2-1446819221 .stroke-N1{stroke:#0A0F25;} + .d2-1446819221 .stroke-N2{stroke:#676C7E;} + .d2-1446819221 .stroke-N3{stroke:#9499AB;} + .d2-1446819221 .stroke-N4{stroke:#CFD2DD;} + .d2-1446819221 .stroke-N5{stroke:#DEE1EB;} + .d2-1446819221 .stroke-N6{stroke:#EEF1F8;} + .d2-1446819221 .stroke-N7{stroke:#FFFFFF;} + .d2-1446819221 .stroke-B1{stroke:#0D32B2;} + .d2-1446819221 .stroke-B2{stroke:#0D32B2;} + .d2-1446819221 .stroke-B3{stroke:#E3E9FD;} + .d2-1446819221 .stroke-B4{stroke:#E3E9FD;} + .d2-1446819221 .stroke-B5{stroke:#EDF0FD;} + .d2-1446819221 .stroke-B6{stroke:#F7F8FE;} + .d2-1446819221 .stroke-AA2{stroke:#4A6FF3;} + .d2-1446819221 .stroke-AA4{stroke:#EDF0FD;} + .d2-1446819221 .stroke-AA5{stroke:#F7F8FE;} + .d2-1446819221 .stroke-AB4{stroke:#EDF0FD;} + .d2-1446819221 .stroke-AB5{stroke:#F7F8FE;} + .d2-1446819221 .background-color-N1{background-color:#0A0F25;} + .d2-1446819221 .background-color-N2{background-color:#676C7E;} + .d2-1446819221 .background-color-N3{background-color:#9499AB;} + .d2-1446819221 .background-color-N4{background-color:#CFD2DD;} + .d2-1446819221 .background-color-N5{background-color:#DEE1EB;} + .d2-1446819221 .background-color-N6{background-color:#EEF1F8;} + .d2-1446819221 .background-color-N7{background-color:#FFFFFF;} + .d2-1446819221 .background-color-B1{background-color:#0D32B2;} + .d2-1446819221 .background-color-B2{background-color:#0D32B2;} + .d2-1446819221 .background-color-B3{background-color:#E3E9FD;} + .d2-1446819221 .background-color-B4{background-color:#E3E9FD;} + .d2-1446819221 .background-color-B5{background-color:#EDF0FD;} + .d2-1446819221 .background-color-B6{background-color:#F7F8FE;} + .d2-1446819221 .background-color-AA2{background-color:#4A6FF3;} + .d2-1446819221 .background-color-AA4{background-color:#EDF0FD;} + .d2-1446819221 .background-color-AA5{background-color:#F7F8FE;} + .d2-1446819221 .background-color-AB4{background-color:#EDF0FD;} + .d2-1446819221 .background-color-AB5{background-color:#F7F8FE;} + .d2-1446819221 .color-N1{color:#0A0F25;} + .d2-1446819221 .color-N2{color:#676C7E;} + .d2-1446819221 .color-N3{color:#9499AB;} + .d2-1446819221 .color-N4{color:#CFD2DD;} + .d2-1446819221 .color-N5{color:#DEE1EB;} + .d2-1446819221 .color-N6{color:#EEF1F8;} + .d2-1446819221 .color-N7{color:#FFFFFF;} + .d2-1446819221 .color-B1{color:#0D32B2;} + .d2-1446819221 .color-B2{color:#0D32B2;} + .d2-1446819221 .color-B3{color:#E3E9FD;} + .d2-1446819221 .color-B4{color:#E3E9FD;} + .d2-1446819221 .color-B5{color:#EDF0FD;} + .d2-1446819221 .color-B6{color:#F7F8FE;} + .d2-1446819221 .color-AA2{color:#4A6FF3;} + .d2-1446819221 .color-AA4{color:#EDF0FD;} + .d2-1446819221 .color-AA5{color:#F7F8FE;} + .d2-1446819221 .color-AB4{color:#EDF0FD;} + .d2-1446819221 .color-AB5{color:#F7F8FE;}.appendix text.text{fill:#0A0F25}.md{--color-fg-default:#0A0F25;--color-fg-muted:#676C7E;--color-fg-subtle:#9499AB;--color-canvas-default:#FFFFFF;--color-canvas-subtle:#EEF1F8;--color-border-default:#0D32B2;--color-border-muted:#0D32B2;--color-neutral-muted:#EEF1F8;--color-accent-fg:#0D32B2;--color-accent-emphasis:#0D32B2;--color-attention-subtle:#676C7E;--color-danger-fg:red;}.sketch-overlay-B1{fill:url(#streaks-darker);mix-blend-mode:lighten}.sketch-overlay-B2{fill:url(#streaks-darker);mix-blend-mode:lighten}.sketch-overlay-B3{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-B4{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-B5{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-B6{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-AA2{fill:url(#streaks-dark);mix-blend-mode:overlay}.sketch-overlay-AA4{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-AA5{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-AB4{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-AB5{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-N1{fill:url(#streaks-darker);mix-blend-mode:lighten}.sketch-overlay-N2{fill:url(#streaks-dark);mix-blend-mode:overlay}.sketch-overlay-N3{fill:url(#streaks-normal);mix-blend-mode:color-burn}.sketch-overlay-N4{fill:url(#streaks-normal);mix-blend-mode:color-burn}.sketch-overlay-N5{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-N6{fill:url(#streaks-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 \ No newline at end of file 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 c043f246d0..ee92f21ead 100644 --- a/e2etests/testdata/regression/elk_loop_panic/elk/board.exp.json +++ b/e2etests/testdata/regression/elk_loop_panic/elk/board.exp.json @@ -132,10 +132,8 @@ "id": "x.(a -> a)[0]", "src": "x.a", "srcArrow": "none", - "srcLabel": "", "dst": "x.a", "dstArrow": "triangle", - "dstLabel": "", "opacity": 1, "strokeDash": 0, "strokeWidth": 2, 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 047049f8a3..9f56a9c9af 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-3315729193 .fill-N1{fill:#0A0F25;} + .d2-3315729193 .fill-N2{fill:#676C7E;} + .d2-3315729193 .fill-N3{fill:#9499AB;} + .d2-3315729193 .fill-N4{fill:#CFD2DD;} + .d2-3315729193 .fill-N5{fill:#DEE1EB;} + .d2-3315729193 .fill-N6{fill:#EEF1F8;} + .d2-3315729193 .fill-N7{fill:#FFFFFF;} + .d2-3315729193 .fill-B1{fill:#0D32B2;} + .d2-3315729193 .fill-B2{fill:#0D32B2;} + .d2-3315729193 .fill-B3{fill:#E3E9FD;} + .d2-3315729193 .fill-B4{fill:#E3E9FD;} + .d2-3315729193 .fill-B5{fill:#EDF0FD;} + .d2-3315729193 .fill-B6{fill:#F7F8FE;} + .d2-3315729193 .fill-AA2{fill:#4A6FF3;} + .d2-3315729193 .fill-AA4{fill:#EDF0FD;} + .d2-3315729193 .fill-AA5{fill:#F7F8FE;} + .d2-3315729193 .fill-AB4{fill:#EDF0FD;} + .d2-3315729193 .fill-AB5{fill:#F7F8FE;} + .d2-3315729193 .stroke-N1{stroke:#0A0F25;} + .d2-3315729193 .stroke-N2{stroke:#676C7E;} + .d2-3315729193 .stroke-N3{stroke:#9499AB;} + .d2-3315729193 .stroke-N4{stroke:#CFD2DD;} + .d2-3315729193 .stroke-N5{stroke:#DEE1EB;} + .d2-3315729193 .stroke-N6{stroke:#EEF1F8;} + .d2-3315729193 .stroke-N7{stroke:#FFFFFF;} + .d2-3315729193 .stroke-B1{stroke:#0D32B2;} + .d2-3315729193 .stroke-B2{stroke:#0D32B2;} + .d2-3315729193 .stroke-B3{stroke:#E3E9FD;} + .d2-3315729193 .stroke-B4{stroke:#E3E9FD;} + .d2-3315729193 .stroke-B5{stroke:#EDF0FD;} + .d2-3315729193 .stroke-B6{stroke:#F7F8FE;} + .d2-3315729193 .stroke-AA2{stroke:#4A6FF3;} + .d2-3315729193 .stroke-AA4{stroke:#EDF0FD;} + .d2-3315729193 .stroke-AA5{stroke:#F7F8FE;} + .d2-3315729193 .stroke-AB4{stroke:#EDF0FD;} + .d2-3315729193 .stroke-AB5{stroke:#F7F8FE;} + .d2-3315729193 .background-color-N1{background-color:#0A0F25;} + .d2-3315729193 .background-color-N2{background-color:#676C7E;} + .d2-3315729193 .background-color-N3{background-color:#9499AB;} + .d2-3315729193 .background-color-N4{background-color:#CFD2DD;} + .d2-3315729193 .background-color-N5{background-color:#DEE1EB;} + .d2-3315729193 .background-color-N6{background-color:#EEF1F8;} + .d2-3315729193 .background-color-N7{background-color:#FFFFFF;} + .d2-3315729193 .background-color-B1{background-color:#0D32B2;} + .d2-3315729193 .background-color-B2{background-color:#0D32B2;} + .d2-3315729193 .background-color-B3{background-color:#E3E9FD;} + .d2-3315729193 .background-color-B4{background-color:#E3E9FD;} + .d2-3315729193 .background-color-B5{background-color:#EDF0FD;} + .d2-3315729193 .background-color-B6{background-color:#F7F8FE;} + .d2-3315729193 .background-color-AA2{background-color:#4A6FF3;} + .d2-3315729193 .background-color-AA4{background-color:#EDF0FD;} + .d2-3315729193 .background-color-AA5{background-color:#F7F8FE;} + .d2-3315729193 .background-color-AB4{background-color:#EDF0FD;} + .d2-3315729193 .background-color-AB5{background-color:#F7F8FE;} + .d2-3315729193 .color-N1{color:#0A0F25;} + .d2-3315729193 .color-N2{color:#676C7E;} + .d2-3315729193 .color-N3{color:#9499AB;} + .d2-3315729193 .color-N4{color:#CFD2DD;} + .d2-3315729193 .color-N5{color:#DEE1EB;} + .d2-3315729193 .color-N6{color:#EEF1F8;} + .d2-3315729193 .color-N7{color:#FFFFFF;} + .d2-3315729193 .color-B1{color:#0D32B2;} + .d2-3315729193 .color-B2{color:#0D32B2;} + .d2-3315729193 .color-B3{color:#E3E9FD;} + .d2-3315729193 .color-B4{color:#E3E9FD;} + .d2-3315729193 .color-B5{color:#EDF0FD;} + .d2-3315729193 .color-B6{color:#F7F8FE;} + .d2-3315729193 .color-AA2{color:#4A6FF3;} + .d2-3315729193 .color-AA4{color:#EDF0FD;} + .d2-3315729193 .color-AA5{color:#F7F8FE;} + .d2-3315729193 .color-AB4{color:#EDF0FD;} + .d2-3315729193 .color-AB5{color:#F7F8FE;}.appendix text.text{fill:#0A0F25}.md{--color-fg-default:#0A0F25;--color-fg-muted:#676C7E;--color-fg-subtle:#9499AB;--color-canvas-default:#FFFFFF;--color-canvas-subtle:#EEF1F8;--color-border-default:#0D32B2;--color-border-muted:#0D32B2;--color-neutral-muted:#EEF1F8;--color-accent-fg:#0D32B2;--color-accent-emphasis:#0D32B2;--color-attention-subtle:#676C7E;--color-danger-fg:red;}.sketch-overlay-B1{fill:url(#streaks-darker);mix-blend-mode:lighten}.sketch-overlay-B2{fill:url(#streaks-darker);mix-blend-mode:lighten}.sketch-overlay-B3{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-B4{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-B5{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-B6{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-AA2{fill:url(#streaks-dark);mix-blend-mode:overlay}.sketch-overlay-AA4{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-AA5{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-AB4{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-AB5{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-N1{fill:url(#streaks-darker);mix-blend-mode:lighten}.sketch-overlay-N2{fill:url(#streaks-dark);mix-blend-mode:overlay}.sketch-overlay-N3{fill:url(#streaks-normal);mix-blend-mode:color-burn}.sketch-overlay-N4{fill:url(#streaks-normal);mix-blend-mode:color-burn}.sketch-overlay-N5{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-N6{fill:url(#streaks-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 \ No newline at end of file diff --git a/e2etests/testdata/regression/elk_order/dagre/board.exp.json b/e2etests/testdata/regression/elk_order/dagre/board.exp.json index ac67cd7744..26ded1793c 100644 --- a/e2etests/testdata/regression/elk_order/dagre/board.exp.json +++ b/e2etests/testdata/regression/elk_order/dagre/board.exp.json @@ -496,10 +496,8 @@ "id": "(m0_desc -> queue.M0)[0]", "src": "m0_desc", "srcArrow": "none", - "srcLabel": "", "dst": "queue.M0", "dstArrow": "triangle", - "dstLabel": "", "opacity": 1, "strokeDash": 0, "strokeWidth": 2, @@ -545,10 +543,8 @@ "id": "(m2_desc -> queue.M2)[0]", "src": "m2_desc", "srcArrow": "none", - "srcLabel": "", "dst": "queue.M2", "dstArrow": "triangle", - "dstLabel": "", "opacity": 1, "strokeDash": 0, "strokeWidth": 2, @@ -594,10 +590,8 @@ "id": "(m5_desc -> queue.M5)[0]", "src": "m5_desc", "srcArrow": "none", - "srcLabel": "", "dst": "queue.M5", "dstArrow": "triangle", - "dstLabel": "", "opacity": 1, "strokeDash": 0, "strokeWidth": 2, @@ -643,10 +637,8 @@ "id": "(m6_desc -> queue.M6)[0]", "src": "m6_desc", "srcArrow": "none", - "srcLabel": "", "dst": "queue.M6", "dstArrow": "triangle", - "dstLabel": "", "opacity": 1, "strokeDash": 0, "strokeWidth": 2, diff --git a/e2etests/testdata/regression/elk_order/dagre/sketch.exp.svg b/e2etests/testdata/regression/elk_order/dagre/sketch.exp.svg index a46f9d1a54..6a9c6c5aff 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
    \ No newline at end of file diff --git a/e2etests/testdata/regression/elk_order/elk/board.exp.json b/e2etests/testdata/regression/elk_order/elk/board.exp.json index 9281fea96f..d3302483b3 100644 --- a/e2etests/testdata/regression/elk_order/elk/board.exp.json +++ b/e2etests/testdata/regression/elk_order/elk/board.exp.json @@ -496,10 +496,8 @@ "id": "(m0_desc -> queue.M0)[0]", "src": "m0_desc", "srcArrow": "none", - "srcLabel": "", "dst": "queue.M0", "dstArrow": "triangle", - "dstLabel": "", "opacity": 1, "strokeDash": 0, "strokeWidth": 2, @@ -536,10 +534,8 @@ "id": "(m2_desc -> queue.M2)[0]", "src": "m2_desc", "srcArrow": "none", - "srcLabel": "", "dst": "queue.M2", "dstArrow": "triangle", - "dstLabel": "", "opacity": 1, "strokeDash": 0, "strokeWidth": 2, @@ -576,10 +572,8 @@ "id": "(m5_desc -> queue.M5)[0]", "src": "m5_desc", "srcArrow": "none", - "srcLabel": "", "dst": "queue.M5", "dstArrow": "triangle", - "dstLabel": "", "opacity": 1, "strokeDash": 0, "strokeWidth": 2, @@ -616,10 +610,8 @@ "id": "(m6_desc -> queue.M6)[0]", "src": "m6_desc", "srcArrow": "none", - "srcLabel": "", "dst": "queue.M6", "dstArrow": "triangle", - "dstLabel": "", "opacity": 1, "strokeDash": 0, "strokeWidth": 2, diff --git a/e2etests/testdata/regression/elk_order/elk/sketch.exp.svg b/e2etests/testdata/regression/elk_order/elk/sketch.exp.svg index e2d9b1b1fc..e6c4aebb72 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
    \ No newline at end of file diff --git a/e2etests/testdata/regression/empty_sequence/dagre/board.exp.json b/e2etests/testdata/regression/empty_sequence/dagre/board.exp.json index 65537b20e6..f532c14a2a 100644 --- a/e2etests/testdata/regression/empty_sequence/dagre/board.exp.json +++ b/e2etests/testdata/regression/empty_sequence/dagre/board.exp.json @@ -91,10 +91,8 @@ "id": "(A -> B)[0]", "src": "A", "srcArrow": "none", - "srcLabel": "", "dst": "B", "dstArrow": "triangle", - "dstLabel": "", "opacity": 1, "strokeDash": 0, "strokeWidth": 2, diff --git a/e2etests/testdata/regression/empty_sequence/dagre/sketch.exp.svg b/e2etests/testdata/regression/empty_sequence/dagre/sketch.exp.svg index afb55cdb9c..2fb5491c58 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-2030573827 .fill-N1{fill:#0A0F25;} + .d2-2030573827 .fill-N2{fill:#676C7E;} + .d2-2030573827 .fill-N3{fill:#9499AB;} + .d2-2030573827 .fill-N4{fill:#CFD2DD;} + .d2-2030573827 .fill-N5{fill:#DEE1EB;} + .d2-2030573827 .fill-N6{fill:#EEF1F8;} + .d2-2030573827 .fill-N7{fill:#FFFFFF;} + .d2-2030573827 .fill-B1{fill:#0D32B2;} + .d2-2030573827 .fill-B2{fill:#0D32B2;} + .d2-2030573827 .fill-B3{fill:#E3E9FD;} + .d2-2030573827 .fill-B4{fill:#E3E9FD;} + .d2-2030573827 .fill-B5{fill:#EDF0FD;} + .d2-2030573827 .fill-B6{fill:#F7F8FE;} + .d2-2030573827 .fill-AA2{fill:#4A6FF3;} + .d2-2030573827 .fill-AA4{fill:#EDF0FD;} + .d2-2030573827 .fill-AA5{fill:#F7F8FE;} + .d2-2030573827 .fill-AB4{fill:#EDF0FD;} + .d2-2030573827 .fill-AB5{fill:#F7F8FE;} + .d2-2030573827 .stroke-N1{stroke:#0A0F25;} + .d2-2030573827 .stroke-N2{stroke:#676C7E;} + .d2-2030573827 .stroke-N3{stroke:#9499AB;} + .d2-2030573827 .stroke-N4{stroke:#CFD2DD;} + .d2-2030573827 .stroke-N5{stroke:#DEE1EB;} + .d2-2030573827 .stroke-N6{stroke:#EEF1F8;} + .d2-2030573827 .stroke-N7{stroke:#FFFFFF;} + .d2-2030573827 .stroke-B1{stroke:#0D32B2;} + .d2-2030573827 .stroke-B2{stroke:#0D32B2;} + .d2-2030573827 .stroke-B3{stroke:#E3E9FD;} + .d2-2030573827 .stroke-B4{stroke:#E3E9FD;} + .d2-2030573827 .stroke-B5{stroke:#EDF0FD;} + .d2-2030573827 .stroke-B6{stroke:#F7F8FE;} + .d2-2030573827 .stroke-AA2{stroke:#4A6FF3;} + .d2-2030573827 .stroke-AA4{stroke:#EDF0FD;} + .d2-2030573827 .stroke-AA5{stroke:#F7F8FE;} + .d2-2030573827 .stroke-AB4{stroke:#EDF0FD;} + .d2-2030573827 .stroke-AB5{stroke:#F7F8FE;} + .d2-2030573827 .background-color-N1{background-color:#0A0F25;} + .d2-2030573827 .background-color-N2{background-color:#676C7E;} + .d2-2030573827 .background-color-N3{background-color:#9499AB;} + .d2-2030573827 .background-color-N4{background-color:#CFD2DD;} + .d2-2030573827 .background-color-N5{background-color:#DEE1EB;} + .d2-2030573827 .background-color-N6{background-color:#EEF1F8;} + .d2-2030573827 .background-color-N7{background-color:#FFFFFF;} + .d2-2030573827 .background-color-B1{background-color:#0D32B2;} + .d2-2030573827 .background-color-B2{background-color:#0D32B2;} + .d2-2030573827 .background-color-B3{background-color:#E3E9FD;} + .d2-2030573827 .background-color-B4{background-color:#E3E9FD;} + .d2-2030573827 .background-color-B5{background-color:#EDF0FD;} + .d2-2030573827 .background-color-B6{background-color:#F7F8FE;} + .d2-2030573827 .background-color-AA2{background-color:#4A6FF3;} + .d2-2030573827 .background-color-AA4{background-color:#EDF0FD;} + .d2-2030573827 .background-color-AA5{background-color:#F7F8FE;} + .d2-2030573827 .background-color-AB4{background-color:#EDF0FD;} + .d2-2030573827 .background-color-AB5{background-color:#F7F8FE;} + .d2-2030573827 .color-N1{color:#0A0F25;} + .d2-2030573827 .color-N2{color:#676C7E;} + .d2-2030573827 .color-N3{color:#9499AB;} + .d2-2030573827 .color-N4{color:#CFD2DD;} + .d2-2030573827 .color-N5{color:#DEE1EB;} + .d2-2030573827 .color-N6{color:#EEF1F8;} + .d2-2030573827 .color-N7{color:#FFFFFF;} + .d2-2030573827 .color-B1{color:#0D32B2;} + .d2-2030573827 .color-B2{color:#0D32B2;} + .d2-2030573827 .color-B3{color:#E3E9FD;} + .d2-2030573827 .color-B4{color:#E3E9FD;} + .d2-2030573827 .color-B5{color:#EDF0FD;} + .d2-2030573827 .color-B6{color:#F7F8FE;} + .d2-2030573827 .color-AA2{color:#4A6FF3;} + .d2-2030573827 .color-AA4{color:#EDF0FD;} + .d2-2030573827 .color-AA5{color:#F7F8FE;} + .d2-2030573827 .color-AB4{color:#EDF0FD;} + .d2-2030573827 .color-AB5{color:#F7F8FE;}.appendix text.text{fill:#0A0F25}.md{--color-fg-default:#0A0F25;--color-fg-muted:#676C7E;--color-fg-subtle:#9499AB;--color-canvas-default:#FFFFFF;--color-canvas-subtle:#EEF1F8;--color-border-default:#0D32B2;--color-border-muted:#0D32B2;--color-neutral-muted:#EEF1F8;--color-accent-fg:#0D32B2;--color-accent-emphasis:#0D32B2;--color-attention-subtle:#676C7E;--color-danger-fg:red;}.sketch-overlay-B1{fill:url(#streaks-darker);mix-blend-mode:lighten}.sketch-overlay-B2{fill:url(#streaks-darker);mix-blend-mode:lighten}.sketch-overlay-B3{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-B4{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-B5{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-B6{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-AA2{fill:url(#streaks-dark);mix-blend-mode:overlay}.sketch-overlay-AA4{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-AA5{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-AB4{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-AB5{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-N1{fill:url(#streaks-darker);mix-blend-mode:lighten}.sketch-overlay-N2{fill:url(#streaks-dark);mix-blend-mode:overlay}.sketch-overlay-N3{fill:url(#streaks-normal);mix-blend-mode:color-burn}.sketch-overlay-N4{fill:url(#streaks-normal);mix-blend-mode:color-burn}.sketch-overlay-N5{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-N6{fill:url(#streaks-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 \ No newline at end of file diff --git a/e2etests/testdata/regression/empty_sequence/elk/board.exp.json b/e2etests/testdata/regression/empty_sequence/elk/board.exp.json index f5c8426d08..8a6ec72b49 100644 --- a/e2etests/testdata/regression/empty_sequence/elk/board.exp.json +++ b/e2etests/testdata/regression/empty_sequence/elk/board.exp.json @@ -91,10 +91,8 @@ "id": "(A -> B)[0]", "src": "A", "srcArrow": "none", - "srcLabel": "", "dst": "B", "dstArrow": "triangle", - "dstLabel": "", "opacity": 1, "strokeDash": 0, "strokeWidth": 2, diff --git a/e2etests/testdata/regression/empty_sequence/elk/sketch.exp.svg b/e2etests/testdata/regression/empty_sequence/elk/sketch.exp.svg index 2ac84b2d33..b0d6d8dd67 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-2990069044 .fill-N1{fill:#0A0F25;} + .d2-2990069044 .fill-N2{fill:#676C7E;} + .d2-2990069044 .fill-N3{fill:#9499AB;} + .d2-2990069044 .fill-N4{fill:#CFD2DD;} + .d2-2990069044 .fill-N5{fill:#DEE1EB;} + .d2-2990069044 .fill-N6{fill:#EEF1F8;} + .d2-2990069044 .fill-N7{fill:#FFFFFF;} + .d2-2990069044 .fill-B1{fill:#0D32B2;} + .d2-2990069044 .fill-B2{fill:#0D32B2;} + .d2-2990069044 .fill-B3{fill:#E3E9FD;} + .d2-2990069044 .fill-B4{fill:#E3E9FD;} + .d2-2990069044 .fill-B5{fill:#EDF0FD;} + .d2-2990069044 .fill-B6{fill:#F7F8FE;} + .d2-2990069044 .fill-AA2{fill:#4A6FF3;} + .d2-2990069044 .fill-AA4{fill:#EDF0FD;} + .d2-2990069044 .fill-AA5{fill:#F7F8FE;} + .d2-2990069044 .fill-AB4{fill:#EDF0FD;} + .d2-2990069044 .fill-AB5{fill:#F7F8FE;} + .d2-2990069044 .stroke-N1{stroke:#0A0F25;} + .d2-2990069044 .stroke-N2{stroke:#676C7E;} + .d2-2990069044 .stroke-N3{stroke:#9499AB;} + .d2-2990069044 .stroke-N4{stroke:#CFD2DD;} + .d2-2990069044 .stroke-N5{stroke:#DEE1EB;} + .d2-2990069044 .stroke-N6{stroke:#EEF1F8;} + .d2-2990069044 .stroke-N7{stroke:#FFFFFF;} + .d2-2990069044 .stroke-B1{stroke:#0D32B2;} + .d2-2990069044 .stroke-B2{stroke:#0D32B2;} + .d2-2990069044 .stroke-B3{stroke:#E3E9FD;} + .d2-2990069044 .stroke-B4{stroke:#E3E9FD;} + .d2-2990069044 .stroke-B5{stroke:#EDF0FD;} + .d2-2990069044 .stroke-B6{stroke:#F7F8FE;} + .d2-2990069044 .stroke-AA2{stroke:#4A6FF3;} + .d2-2990069044 .stroke-AA4{stroke:#EDF0FD;} + .d2-2990069044 .stroke-AA5{stroke:#F7F8FE;} + .d2-2990069044 .stroke-AB4{stroke:#EDF0FD;} + .d2-2990069044 .stroke-AB5{stroke:#F7F8FE;} + .d2-2990069044 .background-color-N1{background-color:#0A0F25;} + .d2-2990069044 .background-color-N2{background-color:#676C7E;} + .d2-2990069044 .background-color-N3{background-color:#9499AB;} + .d2-2990069044 .background-color-N4{background-color:#CFD2DD;} + .d2-2990069044 .background-color-N5{background-color:#DEE1EB;} + .d2-2990069044 .background-color-N6{background-color:#EEF1F8;} + .d2-2990069044 .background-color-N7{background-color:#FFFFFF;} + .d2-2990069044 .background-color-B1{background-color:#0D32B2;} + .d2-2990069044 .background-color-B2{background-color:#0D32B2;} + .d2-2990069044 .background-color-B3{background-color:#E3E9FD;} + .d2-2990069044 .background-color-B4{background-color:#E3E9FD;} + .d2-2990069044 .background-color-B5{background-color:#EDF0FD;} + .d2-2990069044 .background-color-B6{background-color:#F7F8FE;} + .d2-2990069044 .background-color-AA2{background-color:#4A6FF3;} + .d2-2990069044 .background-color-AA4{background-color:#EDF0FD;} + .d2-2990069044 .background-color-AA5{background-color:#F7F8FE;} + .d2-2990069044 .background-color-AB4{background-color:#EDF0FD;} + .d2-2990069044 .background-color-AB5{background-color:#F7F8FE;} + .d2-2990069044 .color-N1{color:#0A0F25;} + .d2-2990069044 .color-N2{color:#676C7E;} + .d2-2990069044 .color-N3{color:#9499AB;} + .d2-2990069044 .color-N4{color:#CFD2DD;} + .d2-2990069044 .color-N5{color:#DEE1EB;} + .d2-2990069044 .color-N6{color:#EEF1F8;} + .d2-2990069044 .color-N7{color:#FFFFFF;} + .d2-2990069044 .color-B1{color:#0D32B2;} + .d2-2990069044 .color-B2{color:#0D32B2;} + .d2-2990069044 .color-B3{color:#E3E9FD;} + .d2-2990069044 .color-B4{color:#E3E9FD;} + .d2-2990069044 .color-B5{color:#EDF0FD;} + .d2-2990069044 .color-B6{color:#F7F8FE;} + .d2-2990069044 .color-AA2{color:#4A6FF3;} + .d2-2990069044 .color-AA4{color:#EDF0FD;} + .d2-2990069044 .color-AA5{color:#F7F8FE;} + .d2-2990069044 .color-AB4{color:#EDF0FD;} + .d2-2990069044 .color-AB5{color:#F7F8FE;}.appendix text.text{fill:#0A0F25}.md{--color-fg-default:#0A0F25;--color-fg-muted:#676C7E;--color-fg-subtle:#9499AB;--color-canvas-default:#FFFFFF;--color-canvas-subtle:#EEF1F8;--color-border-default:#0D32B2;--color-border-muted:#0D32B2;--color-neutral-muted:#EEF1F8;--color-accent-fg:#0D32B2;--color-accent-emphasis:#0D32B2;--color-attention-subtle:#676C7E;--color-danger-fg:red;}.sketch-overlay-B1{fill:url(#streaks-darker);mix-blend-mode:lighten}.sketch-overlay-B2{fill:url(#streaks-darker);mix-blend-mode:lighten}.sketch-overlay-B3{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-B4{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-B5{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-B6{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-AA2{fill:url(#streaks-dark);mix-blend-mode:overlay}.sketch-overlay-AA4{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-AA5{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-AB4{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-AB5{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-N1{fill:url(#streaks-darker);mix-blend-mode:lighten}.sketch-overlay-N2{fill:url(#streaks-dark);mix-blend-mode:overlay}.sketch-overlay-N3{fill:url(#streaks-normal);mix-blend-mode:color-burn}.sketch-overlay-N4{fill:url(#streaks-normal);mix-blend-mode:color-burn}.sketch-overlay-N5{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-N6{fill:url(#streaks-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 \ No newline at end of file diff --git a/e2etests/testdata/regression/long_arrowhead_label/dagre/board.exp.json b/e2etests/testdata/regression/long_arrowhead_label/dagre/board.exp.json new file mode 100644 index 0000000000..cdbacb0fc9 --- /dev/null +++ b/e2etests/testdata/regression/long_arrowhead_label/dagre/board.exp.json @@ -0,0 +1,190 @@ +{ + "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 + } + ], + "connections": [ + { + "id": "(a -> b)[0]", + "src": "a", + "srcArrow": "none", + "dst": "b", + "dstArrow": "triangle", + "dstLabel": { + "label": "a to b with unexpectedly long target arrowhead label", + "fontSize": 0, + "fontFamily": "", + "language": "", + "color": "", + "italic": false, + "bold": false, + "underline": false, + "labelWidth": 348, + "labelHeight": 21 + }, + "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, + "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 + } + ], + "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 + } +} diff --git a/e2etests/testdata/regression/long_arrowhead_label/dagre/sketch.exp.svg b/e2etests/testdata/regression/long_arrowhead_label/dagre/sketch.exp.svg new file mode 100644 index 0000000000..a37fbd81d6 --- /dev/null +++ b/e2etests/testdata/regression/long_arrowhead_label/dagre/sketch.exp.svg @@ -0,0 +1,102 @@ +ab a to b with unexpectedly long target arrowhead label + + + \ No newline at end of file diff --git a/e2etests/testdata/regression/long_arrowhead_label/elk/board.exp.json b/e2etests/testdata/regression/long_arrowhead_label/elk/board.exp.json new file mode 100644 index 0000000000..f2c06801c6 --- /dev/null +++ b/e2etests/testdata/regression/long_arrowhead_label/elk/board.exp.json @@ -0,0 +1,181 @@ +{ + "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 + } + ], + "connections": [ + { + "id": "(a -> b)[0]", + "src": "a", + "srcArrow": "none", + "dst": "b", + "dstArrow": "triangle", + "dstLabel": { + "label": "a to b with unexpectedly long target arrowhead label", + "fontSize": 0, + "fontFamily": "", + "language": "", + "color": "", + "italic": false, + "bold": false, + "underline": false, + "labelWidth": 348, + "labelHeight": 21 + }, + "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, + "route": [ + { + "x": 38.5, + "y": 78 + }, + { + "x": 38.5, + "y": 148 + } + ], + "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 + } +} diff --git a/e2etests/testdata/regression/long_arrowhead_label/elk/sketch.exp.svg b/e2etests/testdata/regression/long_arrowhead_label/elk/sketch.exp.svg new file mode 100644 index 0000000000..e360a2c159 --- /dev/null +++ b/e2etests/testdata/regression/long_arrowhead_label/elk/sketch.exp.svg @@ -0,0 +1,102 @@ +ab a to b with unexpectedly long target arrowhead label + + + \ No newline at end of file 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 6cf48dee1e..8dc09c03e6 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 @@ -131,10 +131,8 @@ "id": "(a -> md)[0]", "src": "a", "srcArrow": "none", - "srcLabel": "", "dst": "md", "dstArrow": "triangle", - "dstLabel": "", "opacity": 1, "strokeDash": 0, "strokeWidth": 2, @@ -180,10 +178,8 @@ "id": "(md -> b)[0]", "src": "md", "srcArrow": "none", - "srcLabel": "", "dst": "b", "dstArrow": "triangle", - "dstLabel": "", "opacity": 1, "strokeDash": 0, "strokeWidth": 2, 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 18a1d1d70c..4582717781 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
    \ No newline at end of file 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 1488da12a7..b3c0a86721 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 @@ -131,10 +131,8 @@ "id": "(a -> md)[0]", "src": "a", "srcArrow": "none", - "srcLabel": "", "dst": "md", "dstArrow": "triangle", - "dstLabel": "", "opacity": 1, "strokeDash": 0, "strokeWidth": 2, @@ -171,10 +169,8 @@ "id": "(md -> b)[0]", "src": "md", "srcArrow": "none", - "srcLabel": "", "dst": "b", "dstArrow": "triangle", - "dstLabel": "", "opacity": 1, "strokeDash": 0, "strokeWidth": 2, 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 12c5045fb5..209ea8d506 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
    \ No newline at end of file diff --git a/e2etests/testdata/regression/nested_steps/dagre/board.exp.json b/e2etests/testdata/regression/nested_steps/dagre/board.exp.json index 0176c00326..c0eb7d2064 100644 --- a/e2etests/testdata/regression/nested_steps/dagre/board.exp.json +++ b/e2etests/testdata/regression/nested_steps/dagre/board.exp.json @@ -214,10 +214,8 @@ "id": "a.(a -> b)[0]", "src": "a.a", "srcArrow": "none", - "srcLabel": "", "dst": "a.b", "dstArrow": "triangle", - "dstLabel": "", "opacity": 1, "strokeDash": 0, "strokeWidth": 2, @@ -263,10 +261,8 @@ "id": "(c -> d)[0]", "src": "c", "srcArrow": "none", - "srcLabel": "", "dst": "d", "dstArrow": "triangle", - "dstLabel": "", "opacity": 1, "strokeDash": 0, "strokeWidth": 2, diff --git a/e2etests/testdata/regression/nested_steps/dagre/sketch.exp.svg b/e2etests/testdata/regression/nested_steps/dagre/sketch.exp.svg index af81e20cfe..5940604304 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-1580013616 .fill-N1{fill:#0A0F25;} + .d2-1580013616 .fill-N2{fill:#676C7E;} + .d2-1580013616 .fill-N3{fill:#9499AB;} + .d2-1580013616 .fill-N4{fill:#CFD2DD;} + .d2-1580013616 .fill-N5{fill:#DEE1EB;} + .d2-1580013616 .fill-N6{fill:#EEF1F8;} + .d2-1580013616 .fill-N7{fill:#FFFFFF;} + .d2-1580013616 .fill-B1{fill:#0D32B2;} + .d2-1580013616 .fill-B2{fill:#0D32B2;} + .d2-1580013616 .fill-B3{fill:#E3E9FD;} + .d2-1580013616 .fill-B4{fill:#E3E9FD;} + .d2-1580013616 .fill-B5{fill:#EDF0FD;} + .d2-1580013616 .fill-B6{fill:#F7F8FE;} + .d2-1580013616 .fill-AA2{fill:#4A6FF3;} + .d2-1580013616 .fill-AA4{fill:#EDF0FD;} + .d2-1580013616 .fill-AA5{fill:#F7F8FE;} + .d2-1580013616 .fill-AB4{fill:#EDF0FD;} + .d2-1580013616 .fill-AB5{fill:#F7F8FE;} + .d2-1580013616 .stroke-N1{stroke:#0A0F25;} + .d2-1580013616 .stroke-N2{stroke:#676C7E;} + .d2-1580013616 .stroke-N3{stroke:#9499AB;} + .d2-1580013616 .stroke-N4{stroke:#CFD2DD;} + .d2-1580013616 .stroke-N5{stroke:#DEE1EB;} + .d2-1580013616 .stroke-N6{stroke:#EEF1F8;} + .d2-1580013616 .stroke-N7{stroke:#FFFFFF;} + .d2-1580013616 .stroke-B1{stroke:#0D32B2;} + .d2-1580013616 .stroke-B2{stroke:#0D32B2;} + .d2-1580013616 .stroke-B3{stroke:#E3E9FD;} + .d2-1580013616 .stroke-B4{stroke:#E3E9FD;} + .d2-1580013616 .stroke-B5{stroke:#EDF0FD;} + .d2-1580013616 .stroke-B6{stroke:#F7F8FE;} + .d2-1580013616 .stroke-AA2{stroke:#4A6FF3;} + .d2-1580013616 .stroke-AA4{stroke:#EDF0FD;} + .d2-1580013616 .stroke-AA5{stroke:#F7F8FE;} + .d2-1580013616 .stroke-AB4{stroke:#EDF0FD;} + .d2-1580013616 .stroke-AB5{stroke:#F7F8FE;} + .d2-1580013616 .background-color-N1{background-color:#0A0F25;} + .d2-1580013616 .background-color-N2{background-color:#676C7E;} + .d2-1580013616 .background-color-N3{background-color:#9499AB;} + .d2-1580013616 .background-color-N4{background-color:#CFD2DD;} + .d2-1580013616 .background-color-N5{background-color:#DEE1EB;} + .d2-1580013616 .background-color-N6{background-color:#EEF1F8;} + .d2-1580013616 .background-color-N7{background-color:#FFFFFF;} + .d2-1580013616 .background-color-B1{background-color:#0D32B2;} + .d2-1580013616 .background-color-B2{background-color:#0D32B2;} + .d2-1580013616 .background-color-B3{background-color:#E3E9FD;} + .d2-1580013616 .background-color-B4{background-color:#E3E9FD;} + .d2-1580013616 .background-color-B5{background-color:#EDF0FD;} + .d2-1580013616 .background-color-B6{background-color:#F7F8FE;} + .d2-1580013616 .background-color-AA2{background-color:#4A6FF3;} + .d2-1580013616 .background-color-AA4{background-color:#EDF0FD;} + .d2-1580013616 .background-color-AA5{background-color:#F7F8FE;} + .d2-1580013616 .background-color-AB4{background-color:#EDF0FD;} + .d2-1580013616 .background-color-AB5{background-color:#F7F8FE;} + .d2-1580013616 .color-N1{color:#0A0F25;} + .d2-1580013616 .color-N2{color:#676C7E;} + .d2-1580013616 .color-N3{color:#9499AB;} + .d2-1580013616 .color-N4{color:#CFD2DD;} + .d2-1580013616 .color-N5{color:#DEE1EB;} + .d2-1580013616 .color-N6{color:#EEF1F8;} + .d2-1580013616 .color-N7{color:#FFFFFF;} + .d2-1580013616 .color-B1{color:#0D32B2;} + .d2-1580013616 .color-B2{color:#0D32B2;} + .d2-1580013616 .color-B3{color:#E3E9FD;} + .d2-1580013616 .color-B4{color:#E3E9FD;} + .d2-1580013616 .color-B5{color:#EDF0FD;} + .d2-1580013616 .color-B6{color:#F7F8FE;} + .d2-1580013616 .color-AA2{color:#4A6FF3;} + .d2-1580013616 .color-AA4{color:#EDF0FD;} + .d2-1580013616 .color-AA5{color:#F7F8FE;} + .d2-1580013616 .color-AB4{color:#EDF0FD;} + .d2-1580013616 .color-AB5{color:#F7F8FE;}.appendix text.text{fill:#0A0F25}.md{--color-fg-default:#0A0F25;--color-fg-muted:#676C7E;--color-fg-subtle:#9499AB;--color-canvas-default:#FFFFFF;--color-canvas-subtle:#EEF1F8;--color-border-default:#0D32B2;--color-border-muted:#0D32B2;--color-neutral-muted:#EEF1F8;--color-accent-fg:#0D32B2;--color-accent-emphasis:#0D32B2;--color-attention-subtle:#676C7E;--color-danger-fg:red;}.sketch-overlay-B1{fill:url(#streaks-darker);mix-blend-mode:lighten}.sketch-overlay-B2{fill:url(#streaks-darker);mix-blend-mode:lighten}.sketch-overlay-B3{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-B4{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-B5{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-B6{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-AA2{fill:url(#streaks-dark);mix-blend-mode:overlay}.sketch-overlay-AA4{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-AA5{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-AB4{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-AB5{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-N1{fill:url(#streaks-darker);mix-blend-mode:lighten}.sketch-overlay-N2{fill:url(#streaks-dark);mix-blend-mode:overlay}.sketch-overlay-N3{fill:url(#streaks-normal);mix-blend-mode:color-burn}.sketch-overlay-N4{fill:url(#streaks-normal);mix-blend-mode:color-burn}.sketch-overlay-N5{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-N6{fill:url(#streaks-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 \ No newline at end of file diff --git a/e2etests/testdata/regression/nested_steps/elk/board.exp.json b/e2etests/testdata/regression/nested_steps/elk/board.exp.json index 2e16484c41..aad53f272f 100644 --- a/e2etests/testdata/regression/nested_steps/elk/board.exp.json +++ b/e2etests/testdata/regression/nested_steps/elk/board.exp.json @@ -214,10 +214,8 @@ "id": "a.(a -> b)[0]", "src": "a.a", "srcArrow": "none", - "srcLabel": "", "dst": "a.b", "dstArrow": "triangle", - "dstLabel": "", "opacity": 1, "strokeDash": 0, "strokeWidth": 2, @@ -254,10 +252,8 @@ "id": "(c -> d)[0]", "src": "c", "srcArrow": "none", - "srcLabel": "", "dst": "d", "dstArrow": "triangle", - "dstLabel": "", "opacity": 1, "strokeDash": 0, "strokeWidth": 2, diff --git a/e2etests/testdata/regression/nested_steps/elk/sketch.exp.svg b/e2etests/testdata/regression/nested_steps/elk/sketch.exp.svg index 6f949d0ae7..4e50cd77ef 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-76938806 .fill-N1{fill:#0A0F25;} + .d2-76938806 .fill-N2{fill:#676C7E;} + .d2-76938806 .fill-N3{fill:#9499AB;} + .d2-76938806 .fill-N4{fill:#CFD2DD;} + .d2-76938806 .fill-N5{fill:#DEE1EB;} + .d2-76938806 .fill-N6{fill:#EEF1F8;} + .d2-76938806 .fill-N7{fill:#FFFFFF;} + .d2-76938806 .fill-B1{fill:#0D32B2;} + .d2-76938806 .fill-B2{fill:#0D32B2;} + .d2-76938806 .fill-B3{fill:#E3E9FD;} + .d2-76938806 .fill-B4{fill:#E3E9FD;} + .d2-76938806 .fill-B5{fill:#EDF0FD;} + .d2-76938806 .fill-B6{fill:#F7F8FE;} + .d2-76938806 .fill-AA2{fill:#4A6FF3;} + .d2-76938806 .fill-AA4{fill:#EDF0FD;} + .d2-76938806 .fill-AA5{fill:#F7F8FE;} + .d2-76938806 .fill-AB4{fill:#EDF0FD;} + .d2-76938806 .fill-AB5{fill:#F7F8FE;} + .d2-76938806 .stroke-N1{stroke:#0A0F25;} + .d2-76938806 .stroke-N2{stroke:#676C7E;} + .d2-76938806 .stroke-N3{stroke:#9499AB;} + .d2-76938806 .stroke-N4{stroke:#CFD2DD;} + .d2-76938806 .stroke-N5{stroke:#DEE1EB;} + .d2-76938806 .stroke-N6{stroke:#EEF1F8;} + .d2-76938806 .stroke-N7{stroke:#FFFFFF;} + .d2-76938806 .stroke-B1{stroke:#0D32B2;} + .d2-76938806 .stroke-B2{stroke:#0D32B2;} + .d2-76938806 .stroke-B3{stroke:#E3E9FD;} + .d2-76938806 .stroke-B4{stroke:#E3E9FD;} + .d2-76938806 .stroke-B5{stroke:#EDF0FD;} + .d2-76938806 .stroke-B6{stroke:#F7F8FE;} + .d2-76938806 .stroke-AA2{stroke:#4A6FF3;} + .d2-76938806 .stroke-AA4{stroke:#EDF0FD;} + .d2-76938806 .stroke-AA5{stroke:#F7F8FE;} + .d2-76938806 .stroke-AB4{stroke:#EDF0FD;} + .d2-76938806 .stroke-AB5{stroke:#F7F8FE;} + .d2-76938806 .background-color-N1{background-color:#0A0F25;} + .d2-76938806 .background-color-N2{background-color:#676C7E;} + .d2-76938806 .background-color-N3{background-color:#9499AB;} + .d2-76938806 .background-color-N4{background-color:#CFD2DD;} + .d2-76938806 .background-color-N5{background-color:#DEE1EB;} + .d2-76938806 .background-color-N6{background-color:#EEF1F8;} + .d2-76938806 .background-color-N7{background-color:#FFFFFF;} + .d2-76938806 .background-color-B1{background-color:#0D32B2;} + .d2-76938806 .background-color-B2{background-color:#0D32B2;} + .d2-76938806 .background-color-B3{background-color:#E3E9FD;} + .d2-76938806 .background-color-B4{background-color:#E3E9FD;} + .d2-76938806 .background-color-B5{background-color:#EDF0FD;} + .d2-76938806 .background-color-B6{background-color:#F7F8FE;} + .d2-76938806 .background-color-AA2{background-color:#4A6FF3;} + .d2-76938806 .background-color-AA4{background-color:#EDF0FD;} + .d2-76938806 .background-color-AA5{background-color:#F7F8FE;} + .d2-76938806 .background-color-AB4{background-color:#EDF0FD;} + .d2-76938806 .background-color-AB5{background-color:#F7F8FE;} + .d2-76938806 .color-N1{color:#0A0F25;} + .d2-76938806 .color-N2{color:#676C7E;} + .d2-76938806 .color-N3{color:#9499AB;} + .d2-76938806 .color-N4{color:#CFD2DD;} + .d2-76938806 .color-N5{color:#DEE1EB;} + .d2-76938806 .color-N6{color:#EEF1F8;} + .d2-76938806 .color-N7{color:#FFFFFF;} + .d2-76938806 .color-B1{color:#0D32B2;} + .d2-76938806 .color-B2{color:#0D32B2;} + .d2-76938806 .color-B3{color:#E3E9FD;} + .d2-76938806 .color-B4{color:#E3E9FD;} + .d2-76938806 .color-B5{color:#EDF0FD;} + .d2-76938806 .color-B6{color:#F7F8FE;} + .d2-76938806 .color-AA2{color:#4A6FF3;} + .d2-76938806 .color-AA4{color:#EDF0FD;} + .d2-76938806 .color-AA5{color:#F7F8FE;} + .d2-76938806 .color-AB4{color:#EDF0FD;} + .d2-76938806 .color-AB5{color:#F7F8FE;}.appendix text.text{fill:#0A0F25}.md{--color-fg-default:#0A0F25;--color-fg-muted:#676C7E;--color-fg-subtle:#9499AB;--color-canvas-default:#FFFFFF;--color-canvas-subtle:#EEF1F8;--color-border-default:#0D32B2;--color-border-muted:#0D32B2;--color-neutral-muted:#EEF1F8;--color-accent-fg:#0D32B2;--color-accent-emphasis:#0D32B2;--color-attention-subtle:#676C7E;--color-danger-fg:red;}.sketch-overlay-B1{fill:url(#streaks-darker);mix-blend-mode:lighten}.sketch-overlay-B2{fill:url(#streaks-darker);mix-blend-mode:lighten}.sketch-overlay-B3{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-B4{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-B5{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-B6{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-AA2{fill:url(#streaks-dark);mix-blend-mode:overlay}.sketch-overlay-AA4{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-AA5{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-AB4{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-AB5{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-N1{fill:url(#streaks-darker);mix-blend-mode:lighten}.sketch-overlay-N2{fill:url(#streaks-dark);mix-blend-mode:overlay}.sketch-overlay-N3{fill:url(#streaks-normal);mix-blend-mode:color-burn}.sketch-overlay-N4{fill:url(#streaks-normal);mix-blend-mode:color-burn}.sketch-overlay-N5{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-N6{fill:url(#streaks-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 \ No newline at end of file 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 59e3523471..63751930ad 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 @@ -167,10 +167,8 @@ "id": "(class2 -> table)[0]", "src": "class2", "srcArrow": "none", - "srcLabel": "", "dst": "table", "dstArrow": "triangle", - "dstLabel": "", "opacity": 1, "strokeDash": 0, "strokeWidth": 2, @@ -216,10 +214,8 @@ "id": "(table -> table with short col)[0]", "src": "table", "srcArrow": "none", - "srcLabel": "", "dst": "table with short col", "dstArrow": "triangle", - "dstLabel": "", "opacity": 1, "strokeDash": 0, "strokeWidth": 2, 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 e3194cc97a..7f9b84d3f8 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-2693736715 .fill-N1{fill:#0A0F25;} + .d2-2693736715 .fill-N2{fill:#676C7E;} + .d2-2693736715 .fill-N3{fill:#9499AB;} + .d2-2693736715 .fill-N4{fill:#CFD2DD;} + .d2-2693736715 .fill-N5{fill:#DEE1EB;} + .d2-2693736715 .fill-N6{fill:#EEF1F8;} + .d2-2693736715 .fill-N7{fill:#FFFFFF;} + .d2-2693736715 .fill-B1{fill:#0D32B2;} + .d2-2693736715 .fill-B2{fill:#0D32B2;} + .d2-2693736715 .fill-B3{fill:#E3E9FD;} + .d2-2693736715 .fill-B4{fill:#E3E9FD;} + .d2-2693736715 .fill-B5{fill:#EDF0FD;} + .d2-2693736715 .fill-B6{fill:#F7F8FE;} + .d2-2693736715 .fill-AA2{fill:#4A6FF3;} + .d2-2693736715 .fill-AA4{fill:#EDF0FD;} + .d2-2693736715 .fill-AA5{fill:#F7F8FE;} + .d2-2693736715 .fill-AB4{fill:#EDF0FD;} + .d2-2693736715 .fill-AB5{fill:#F7F8FE;} + .d2-2693736715 .stroke-N1{stroke:#0A0F25;} + .d2-2693736715 .stroke-N2{stroke:#676C7E;} + .d2-2693736715 .stroke-N3{stroke:#9499AB;} + .d2-2693736715 .stroke-N4{stroke:#CFD2DD;} + .d2-2693736715 .stroke-N5{stroke:#DEE1EB;} + .d2-2693736715 .stroke-N6{stroke:#EEF1F8;} + .d2-2693736715 .stroke-N7{stroke:#FFFFFF;} + .d2-2693736715 .stroke-B1{stroke:#0D32B2;} + .d2-2693736715 .stroke-B2{stroke:#0D32B2;} + .d2-2693736715 .stroke-B3{stroke:#E3E9FD;} + .d2-2693736715 .stroke-B4{stroke:#E3E9FD;} + .d2-2693736715 .stroke-B5{stroke:#EDF0FD;} + .d2-2693736715 .stroke-B6{stroke:#F7F8FE;} + .d2-2693736715 .stroke-AA2{stroke:#4A6FF3;} + .d2-2693736715 .stroke-AA4{stroke:#EDF0FD;} + .d2-2693736715 .stroke-AA5{stroke:#F7F8FE;} + .d2-2693736715 .stroke-AB4{stroke:#EDF0FD;} + .d2-2693736715 .stroke-AB5{stroke:#F7F8FE;} + .d2-2693736715 .background-color-N1{background-color:#0A0F25;} + .d2-2693736715 .background-color-N2{background-color:#676C7E;} + .d2-2693736715 .background-color-N3{background-color:#9499AB;} + .d2-2693736715 .background-color-N4{background-color:#CFD2DD;} + .d2-2693736715 .background-color-N5{background-color:#DEE1EB;} + .d2-2693736715 .background-color-N6{background-color:#EEF1F8;} + .d2-2693736715 .background-color-N7{background-color:#FFFFFF;} + .d2-2693736715 .background-color-B1{background-color:#0D32B2;} + .d2-2693736715 .background-color-B2{background-color:#0D32B2;} + .d2-2693736715 .background-color-B3{background-color:#E3E9FD;} + .d2-2693736715 .background-color-B4{background-color:#E3E9FD;} + .d2-2693736715 .background-color-B5{background-color:#EDF0FD;} + .d2-2693736715 .background-color-B6{background-color:#F7F8FE;} + .d2-2693736715 .background-color-AA2{background-color:#4A6FF3;} + .d2-2693736715 .background-color-AA4{background-color:#EDF0FD;} + .d2-2693736715 .background-color-AA5{background-color:#F7F8FE;} + .d2-2693736715 .background-color-AB4{background-color:#EDF0FD;} + .d2-2693736715 .background-color-AB5{background-color:#F7F8FE;} + .d2-2693736715 .color-N1{color:#0A0F25;} + .d2-2693736715 .color-N2{color:#676C7E;} + .d2-2693736715 .color-N3{color:#9499AB;} + .d2-2693736715 .color-N4{color:#CFD2DD;} + .d2-2693736715 .color-N5{color:#DEE1EB;} + .d2-2693736715 .color-N6{color:#EEF1F8;} + .d2-2693736715 .color-N7{color:#FFFFFF;} + .d2-2693736715 .color-B1{color:#0D32B2;} + .d2-2693736715 .color-B2{color:#0D32B2;} + .d2-2693736715 .color-B3{color:#E3E9FD;} + .d2-2693736715 .color-B4{color:#E3E9FD;} + .d2-2693736715 .color-B5{color:#EDF0FD;} + .d2-2693736715 .color-B6{color:#F7F8FE;} + .d2-2693736715 .color-AA2{color:#4A6FF3;} + .d2-2693736715 .color-AA4{color:#EDF0FD;} + .d2-2693736715 .color-AA5{color:#F7F8FE;} + .d2-2693736715 .color-AB4{color:#EDF0FD;} + .d2-2693736715 .color-AB5{color:#F7F8FE;}.appendix text.text{fill:#0A0F25}.md{--color-fg-default:#0A0F25;--color-fg-muted:#676C7E;--color-fg-subtle:#9499AB;--color-canvas-default:#FFFFFF;--color-canvas-subtle:#EEF1F8;--color-border-default:#0D32B2;--color-border-muted:#0D32B2;--color-neutral-muted:#EEF1F8;--color-accent-fg:#0D32B2;--color-accent-emphasis:#0D32B2;--color-attention-subtle:#676C7E;--color-danger-fg:red;}.sketch-overlay-B1{fill:url(#streaks-darker);mix-blend-mode:lighten}.sketch-overlay-B2{fill:url(#streaks-darker);mix-blend-mode:lighten}.sketch-overlay-B3{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-B4{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-B5{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-B6{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-AA2{fill:url(#streaks-dark);mix-blend-mode:overlay}.sketch-overlay-AA4{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-AA5{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-AB4{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-AB5{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-N1{fill:url(#streaks-darker);mix-blend-mode:lighten}.sketch-overlay-N2{fill:url(#streaks-dark);mix-blend-mode:overlay}.sketch-overlay-N3{fill:url(#streaks-normal);mix-blend-mode:color-burn}.sketch-overlay-N4{fill:url(#streaks-normal);mix-blend-mode:color-burn}.sketch-overlay-N5{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-N6{fill:url(#streaks-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 63f96cae3d..d30ca4428e 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 @@ -167,10 +167,8 @@ "id": "(class2 -> table)[0]", "src": "class2", "srcArrow": "none", - "srcLabel": "", "dst": "table", "dstArrow": "triangle", - "dstLabel": "", "opacity": 1, "strokeDash": 0, "strokeWidth": 2, @@ -207,10 +205,8 @@ "id": "(table -> table with short col)[0]", "src": "table", "srcArrow": "none", - "srcLabel": "", "dst": "table with short col", "dstArrow": "triangle", - "dstLabel": "", "opacity": 1, "strokeDash": 0, "strokeWidth": 2, 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 cc4401ebd6..4d74bbaddc 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-3532718440 .fill-N1{fill:#0A0F25;} + .d2-3532718440 .fill-N2{fill:#676C7E;} + .d2-3532718440 .fill-N3{fill:#9499AB;} + .d2-3532718440 .fill-N4{fill:#CFD2DD;} + .d2-3532718440 .fill-N5{fill:#DEE1EB;} + .d2-3532718440 .fill-N6{fill:#EEF1F8;} + .d2-3532718440 .fill-N7{fill:#FFFFFF;} + .d2-3532718440 .fill-B1{fill:#0D32B2;} + .d2-3532718440 .fill-B2{fill:#0D32B2;} + .d2-3532718440 .fill-B3{fill:#E3E9FD;} + .d2-3532718440 .fill-B4{fill:#E3E9FD;} + .d2-3532718440 .fill-B5{fill:#EDF0FD;} + .d2-3532718440 .fill-B6{fill:#F7F8FE;} + .d2-3532718440 .fill-AA2{fill:#4A6FF3;} + .d2-3532718440 .fill-AA4{fill:#EDF0FD;} + .d2-3532718440 .fill-AA5{fill:#F7F8FE;} + .d2-3532718440 .fill-AB4{fill:#EDF0FD;} + .d2-3532718440 .fill-AB5{fill:#F7F8FE;} + .d2-3532718440 .stroke-N1{stroke:#0A0F25;} + .d2-3532718440 .stroke-N2{stroke:#676C7E;} + .d2-3532718440 .stroke-N3{stroke:#9499AB;} + .d2-3532718440 .stroke-N4{stroke:#CFD2DD;} + .d2-3532718440 .stroke-N5{stroke:#DEE1EB;} + .d2-3532718440 .stroke-N6{stroke:#EEF1F8;} + .d2-3532718440 .stroke-N7{stroke:#FFFFFF;} + .d2-3532718440 .stroke-B1{stroke:#0D32B2;} + .d2-3532718440 .stroke-B2{stroke:#0D32B2;} + .d2-3532718440 .stroke-B3{stroke:#E3E9FD;} + .d2-3532718440 .stroke-B4{stroke:#E3E9FD;} + .d2-3532718440 .stroke-B5{stroke:#EDF0FD;} + .d2-3532718440 .stroke-B6{stroke:#F7F8FE;} + .d2-3532718440 .stroke-AA2{stroke:#4A6FF3;} + .d2-3532718440 .stroke-AA4{stroke:#EDF0FD;} + .d2-3532718440 .stroke-AA5{stroke:#F7F8FE;} + .d2-3532718440 .stroke-AB4{stroke:#EDF0FD;} + .d2-3532718440 .stroke-AB5{stroke:#F7F8FE;} + .d2-3532718440 .background-color-N1{background-color:#0A0F25;} + .d2-3532718440 .background-color-N2{background-color:#676C7E;} + .d2-3532718440 .background-color-N3{background-color:#9499AB;} + .d2-3532718440 .background-color-N4{background-color:#CFD2DD;} + .d2-3532718440 .background-color-N5{background-color:#DEE1EB;} + .d2-3532718440 .background-color-N6{background-color:#EEF1F8;} + .d2-3532718440 .background-color-N7{background-color:#FFFFFF;} + .d2-3532718440 .background-color-B1{background-color:#0D32B2;} + .d2-3532718440 .background-color-B2{background-color:#0D32B2;} + .d2-3532718440 .background-color-B3{background-color:#E3E9FD;} + .d2-3532718440 .background-color-B4{background-color:#E3E9FD;} + .d2-3532718440 .background-color-B5{background-color:#EDF0FD;} + .d2-3532718440 .background-color-B6{background-color:#F7F8FE;} + .d2-3532718440 .background-color-AA2{background-color:#4A6FF3;} + .d2-3532718440 .background-color-AA4{background-color:#EDF0FD;} + .d2-3532718440 .background-color-AA5{background-color:#F7F8FE;} + .d2-3532718440 .background-color-AB4{background-color:#EDF0FD;} + .d2-3532718440 .background-color-AB5{background-color:#F7F8FE;} + .d2-3532718440 .color-N1{color:#0A0F25;} + .d2-3532718440 .color-N2{color:#676C7E;} + .d2-3532718440 .color-N3{color:#9499AB;} + .d2-3532718440 .color-N4{color:#CFD2DD;} + .d2-3532718440 .color-N5{color:#DEE1EB;} + .d2-3532718440 .color-N6{color:#EEF1F8;} + .d2-3532718440 .color-N7{color:#FFFFFF;} + .d2-3532718440 .color-B1{color:#0D32B2;} + .d2-3532718440 .color-B2{color:#0D32B2;} + .d2-3532718440 .color-B3{color:#E3E9FD;} + .d2-3532718440 .color-B4{color:#E3E9FD;} + .d2-3532718440 .color-B5{color:#EDF0FD;} + .d2-3532718440 .color-B6{color:#F7F8FE;} + .d2-3532718440 .color-AA2{color:#4A6FF3;} + .d2-3532718440 .color-AA4{color:#EDF0FD;} + .d2-3532718440 .color-AA5{color:#F7F8FE;} + .d2-3532718440 .color-AB4{color:#EDF0FD;} + .d2-3532718440 .color-AB5{color:#F7F8FE;}.appendix text.text{fill:#0A0F25}.md{--color-fg-default:#0A0F25;--color-fg-muted:#676C7E;--color-fg-subtle:#9499AB;--color-canvas-default:#FFFFFF;--color-canvas-subtle:#EEF1F8;--color-border-default:#0D32B2;--color-border-muted:#0D32B2;--color-neutral-muted:#EEF1F8;--color-accent-fg:#0D32B2;--color-accent-emphasis:#0D32B2;--color-attention-subtle:#676C7E;--color-danger-fg:red;}.sketch-overlay-B1{fill:url(#streaks-darker);mix-blend-mode:lighten}.sketch-overlay-B2{fill:url(#streaks-darker);mix-blend-mode:lighten}.sketch-overlay-B3{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-B4{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-B5{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-B6{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-AA2{fill:url(#streaks-dark);mix-blend-mode:overlay}.sketch-overlay-AA4{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-AA5{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-AB4{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-AB5{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-N1{fill:url(#streaks-darker);mix-blend-mode:lighten}.sketch-overlay-N2{fill:url(#streaks-dark);mix-blend-mode:overlay}.sketch-overlay-N3{fill:url(#streaks-normal);mix-blend-mode:color-burn}.sketch-overlay-N4{fill:url(#streaks-normal);mix-blend-mode:color-burn}.sketch-overlay-N5{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-N6{fill:url(#streaks-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 4b5dbc0616..bd641f056f 100644 --- a/e2etests/testdata/regression/opacity-on-label/dagre/board.exp.json +++ b/e2etests/testdata/regression/opacity-on-label/dagre/board.exp.json @@ -131,10 +131,8 @@ "id": "(x -> a)[0]", "src": "x", "srcArrow": "none", - "srcLabel": "", "dst": "a", "dstArrow": "triangle", - "dstLabel": "", "opacity": 0.4, "strokeDash": 0, "strokeWidth": 2, 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 e447104724..f79efdeb43 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.
    \ No newline at end of file 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 894b0d7456..09a5c754f0 100644 --- a/e2etests/testdata/regression/opacity-on-label/elk/board.exp.json +++ b/e2etests/testdata/regression/opacity-on-label/elk/board.exp.json @@ -131,10 +131,8 @@ "id": "(x -> a)[0]", "src": "x", "srcArrow": "none", - "srcLabel": "", "dst": "a", "dstArrow": "triangle", - "dstLabel": "", "opacity": 0.4, "strokeDash": 0, "strokeWidth": 2, 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 857587fb27..f45030122c 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.
    \ No newline at end of file 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 114eda5f5d..9320fb8193 100644 --- a/e2etests/testdata/regression/overlapping-edge-label/dagre/board.exp.json +++ b/e2etests/testdata/regression/overlapping-edge-label/dagre/board.exp.json @@ -419,10 +419,8 @@ "id": "(k8s -> osvc)[0]", "src": "k8s", "srcArrow": "none", - "srcLabel": "", "dst": "osvc", "dstArrow": "triangle", - "dstLabel": "", "opacity": 1, "strokeDash": 0, "strokeWidth": 2, @@ -468,10 +466,8 @@ "id": "(k8s -> osvc)[1]", "src": "k8s", "srcArrow": "none", - "srcLabel": "", "dst": "osvc", "dstArrow": "triangle", - "dstLabel": "", "opacity": 1, "strokeDash": 0, "strokeWidth": 2, @@ -517,10 +513,8 @@ "id": "(k8s -> osvc)[2]", "src": "k8s", "srcArrow": "none", - "srcLabel": "", "dst": "osvc", "dstArrow": "triangle", - "dstLabel": "", "opacity": 1, "strokeDash": 0, "strokeWidth": 2, @@ -566,10 +560,8 @@ "id": "(k8s -> osvc)[3]", "src": "k8s", "srcArrow": "none", - "srcLabel": "", "dst": "osvc", "dstArrow": "triangle", - "dstLabel": "", "opacity": 1, "strokeDash": 0, "strokeWidth": 2, 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 f4525c7816..dcbed5f82a 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-1393051097 .fill-N1{fill:#0A0F25;} + .d2-1393051097 .fill-N2{fill:#676C7E;} + .d2-1393051097 .fill-N3{fill:#9499AB;} + .d2-1393051097 .fill-N4{fill:#CFD2DD;} + .d2-1393051097 .fill-N5{fill:#DEE1EB;} + .d2-1393051097 .fill-N6{fill:#EEF1F8;} + .d2-1393051097 .fill-N7{fill:#FFFFFF;} + .d2-1393051097 .fill-B1{fill:#0D32B2;} + .d2-1393051097 .fill-B2{fill:#0D32B2;} + .d2-1393051097 .fill-B3{fill:#E3E9FD;} + .d2-1393051097 .fill-B4{fill:#E3E9FD;} + .d2-1393051097 .fill-B5{fill:#EDF0FD;} + .d2-1393051097 .fill-B6{fill:#F7F8FE;} + .d2-1393051097 .fill-AA2{fill:#4A6FF3;} + .d2-1393051097 .fill-AA4{fill:#EDF0FD;} + .d2-1393051097 .fill-AA5{fill:#F7F8FE;} + .d2-1393051097 .fill-AB4{fill:#EDF0FD;} + .d2-1393051097 .fill-AB5{fill:#F7F8FE;} + .d2-1393051097 .stroke-N1{stroke:#0A0F25;} + .d2-1393051097 .stroke-N2{stroke:#676C7E;} + .d2-1393051097 .stroke-N3{stroke:#9499AB;} + .d2-1393051097 .stroke-N4{stroke:#CFD2DD;} + .d2-1393051097 .stroke-N5{stroke:#DEE1EB;} + .d2-1393051097 .stroke-N6{stroke:#EEF1F8;} + .d2-1393051097 .stroke-N7{stroke:#FFFFFF;} + .d2-1393051097 .stroke-B1{stroke:#0D32B2;} + .d2-1393051097 .stroke-B2{stroke:#0D32B2;} + .d2-1393051097 .stroke-B3{stroke:#E3E9FD;} + .d2-1393051097 .stroke-B4{stroke:#E3E9FD;} + .d2-1393051097 .stroke-B5{stroke:#EDF0FD;} + .d2-1393051097 .stroke-B6{stroke:#F7F8FE;} + .d2-1393051097 .stroke-AA2{stroke:#4A6FF3;} + .d2-1393051097 .stroke-AA4{stroke:#EDF0FD;} + .d2-1393051097 .stroke-AA5{stroke:#F7F8FE;} + .d2-1393051097 .stroke-AB4{stroke:#EDF0FD;} + .d2-1393051097 .stroke-AB5{stroke:#F7F8FE;} + .d2-1393051097 .background-color-N1{background-color:#0A0F25;} + .d2-1393051097 .background-color-N2{background-color:#676C7E;} + .d2-1393051097 .background-color-N3{background-color:#9499AB;} + .d2-1393051097 .background-color-N4{background-color:#CFD2DD;} + .d2-1393051097 .background-color-N5{background-color:#DEE1EB;} + .d2-1393051097 .background-color-N6{background-color:#EEF1F8;} + .d2-1393051097 .background-color-N7{background-color:#FFFFFF;} + .d2-1393051097 .background-color-B1{background-color:#0D32B2;} + .d2-1393051097 .background-color-B2{background-color:#0D32B2;} + .d2-1393051097 .background-color-B3{background-color:#E3E9FD;} + .d2-1393051097 .background-color-B4{background-color:#E3E9FD;} + .d2-1393051097 .background-color-B5{background-color:#EDF0FD;} + .d2-1393051097 .background-color-B6{background-color:#F7F8FE;} + .d2-1393051097 .background-color-AA2{background-color:#4A6FF3;} + .d2-1393051097 .background-color-AA4{background-color:#EDF0FD;} + .d2-1393051097 .background-color-AA5{background-color:#F7F8FE;} + .d2-1393051097 .background-color-AB4{background-color:#EDF0FD;} + .d2-1393051097 .background-color-AB5{background-color:#F7F8FE;} + .d2-1393051097 .color-N1{color:#0A0F25;} + .d2-1393051097 .color-N2{color:#676C7E;} + .d2-1393051097 .color-N3{color:#9499AB;} + .d2-1393051097 .color-N4{color:#CFD2DD;} + .d2-1393051097 .color-N5{color:#DEE1EB;} + .d2-1393051097 .color-N6{color:#EEF1F8;} + .d2-1393051097 .color-N7{color:#FFFFFF;} + .d2-1393051097 .color-B1{color:#0D32B2;} + .d2-1393051097 .color-B2{color:#0D32B2;} + .d2-1393051097 .color-B3{color:#E3E9FD;} + .d2-1393051097 .color-B4{color:#E3E9FD;} + .d2-1393051097 .color-B5{color:#EDF0FD;} + .d2-1393051097 .color-B6{color:#F7F8FE;} + .d2-1393051097 .color-AA2{color:#4A6FF3;} + .d2-1393051097 .color-AA4{color:#EDF0FD;} + .d2-1393051097 .color-AA5{color:#F7F8FE;} + .d2-1393051097 .color-AB4{color:#EDF0FD;} + .d2-1393051097 .color-AB5{color:#F7F8FE;}.appendix text.text{fill:#0A0F25}.md{--color-fg-default:#0A0F25;--color-fg-muted:#676C7E;--color-fg-subtle:#9499AB;--color-canvas-default:#FFFFFF;--color-canvas-subtle:#EEF1F8;--color-border-default:#0D32B2;--color-border-muted:#0D32B2;--color-neutral-muted:#EEF1F8;--color-accent-fg:#0D32B2;--color-accent-emphasis:#0D32B2;--color-attention-subtle:#676C7E;--color-danger-fg:red;}.sketch-overlay-B1{fill:url(#streaks-darker);mix-blend-mode:lighten}.sketch-overlay-B2{fill:url(#streaks-darker);mix-blend-mode:lighten}.sketch-overlay-B3{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-B4{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-B5{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-B6{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-AA2{fill:url(#streaks-dark);mix-blend-mode:overlay}.sketch-overlay-AA4{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-AA5{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-AB4{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-AB5{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-N1{fill:url(#streaks-darker);mix-blend-mode:lighten}.sketch-overlay-N2{fill:url(#streaks-dark);mix-blend-mode:overlay}.sketch-overlay-N3{fill:url(#streaks-normal);mix-blend-mode:color-burn}.sketch-overlay-N4{fill:url(#streaks-normal);mix-blend-mode:color-burn}.sketch-overlay-N5{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-N6{fill:url(#streaks-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 d6fc07f05e..59488ccb7d 100644 --- a/e2etests/testdata/regression/overlapping-edge-label/elk/board.exp.json +++ b/e2etests/testdata/regression/overlapping-edge-label/elk/board.exp.json @@ -419,10 +419,8 @@ "id": "(k8s -> osvc)[0]", "src": "k8s", "srcArrow": "none", - "srcLabel": "", "dst": "osvc", "dstArrow": "triangle", - "dstLabel": "", "opacity": 1, "strokeDash": 0, "strokeWidth": 2, @@ -467,10 +465,8 @@ "id": "(k8s -> osvc)[1]", "src": "k8s", "srcArrow": "none", - "srcLabel": "", "dst": "osvc", "dstArrow": "triangle", - "dstLabel": "", "opacity": 1, "strokeDash": 0, "strokeWidth": 2, @@ -507,10 +503,8 @@ "id": "(k8s -> osvc)[2]", "src": "k8s", "srcArrow": "none", - "srcLabel": "", "dst": "osvc", "dstArrow": "triangle", - "dstLabel": "", "opacity": 1, "strokeDash": 0, "strokeWidth": 2, @@ -547,10 +541,8 @@ "id": "(k8s -> osvc)[3]", "src": "k8s", "srcArrow": "none", - "srcLabel": "", "dst": "osvc", "dstArrow": "triangle", - "dstLabel": "", "opacity": 1, "strokeDash": 0, "strokeWidth": 2, 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 416a81ad88..e35f1c29e1 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-3987613411 .fill-N1{fill:#0A0F25;} + .d2-3987613411 .fill-N2{fill:#676C7E;} + .d2-3987613411 .fill-N3{fill:#9499AB;} + .d2-3987613411 .fill-N4{fill:#CFD2DD;} + .d2-3987613411 .fill-N5{fill:#DEE1EB;} + .d2-3987613411 .fill-N6{fill:#EEF1F8;} + .d2-3987613411 .fill-N7{fill:#FFFFFF;} + .d2-3987613411 .fill-B1{fill:#0D32B2;} + .d2-3987613411 .fill-B2{fill:#0D32B2;} + .d2-3987613411 .fill-B3{fill:#E3E9FD;} + .d2-3987613411 .fill-B4{fill:#E3E9FD;} + .d2-3987613411 .fill-B5{fill:#EDF0FD;} + .d2-3987613411 .fill-B6{fill:#F7F8FE;} + .d2-3987613411 .fill-AA2{fill:#4A6FF3;} + .d2-3987613411 .fill-AA4{fill:#EDF0FD;} + .d2-3987613411 .fill-AA5{fill:#F7F8FE;} + .d2-3987613411 .fill-AB4{fill:#EDF0FD;} + .d2-3987613411 .fill-AB5{fill:#F7F8FE;} + .d2-3987613411 .stroke-N1{stroke:#0A0F25;} + .d2-3987613411 .stroke-N2{stroke:#676C7E;} + .d2-3987613411 .stroke-N3{stroke:#9499AB;} + .d2-3987613411 .stroke-N4{stroke:#CFD2DD;} + .d2-3987613411 .stroke-N5{stroke:#DEE1EB;} + .d2-3987613411 .stroke-N6{stroke:#EEF1F8;} + .d2-3987613411 .stroke-N7{stroke:#FFFFFF;} + .d2-3987613411 .stroke-B1{stroke:#0D32B2;} + .d2-3987613411 .stroke-B2{stroke:#0D32B2;} + .d2-3987613411 .stroke-B3{stroke:#E3E9FD;} + .d2-3987613411 .stroke-B4{stroke:#E3E9FD;} + .d2-3987613411 .stroke-B5{stroke:#EDF0FD;} + .d2-3987613411 .stroke-B6{stroke:#F7F8FE;} + .d2-3987613411 .stroke-AA2{stroke:#4A6FF3;} + .d2-3987613411 .stroke-AA4{stroke:#EDF0FD;} + .d2-3987613411 .stroke-AA5{stroke:#F7F8FE;} + .d2-3987613411 .stroke-AB4{stroke:#EDF0FD;} + .d2-3987613411 .stroke-AB5{stroke:#F7F8FE;} + .d2-3987613411 .background-color-N1{background-color:#0A0F25;} + .d2-3987613411 .background-color-N2{background-color:#676C7E;} + .d2-3987613411 .background-color-N3{background-color:#9499AB;} + .d2-3987613411 .background-color-N4{background-color:#CFD2DD;} + .d2-3987613411 .background-color-N5{background-color:#DEE1EB;} + .d2-3987613411 .background-color-N6{background-color:#EEF1F8;} + .d2-3987613411 .background-color-N7{background-color:#FFFFFF;} + .d2-3987613411 .background-color-B1{background-color:#0D32B2;} + .d2-3987613411 .background-color-B2{background-color:#0D32B2;} + .d2-3987613411 .background-color-B3{background-color:#E3E9FD;} + .d2-3987613411 .background-color-B4{background-color:#E3E9FD;} + .d2-3987613411 .background-color-B5{background-color:#EDF0FD;} + .d2-3987613411 .background-color-B6{background-color:#F7F8FE;} + .d2-3987613411 .background-color-AA2{background-color:#4A6FF3;} + .d2-3987613411 .background-color-AA4{background-color:#EDF0FD;} + .d2-3987613411 .background-color-AA5{background-color:#F7F8FE;} + .d2-3987613411 .background-color-AB4{background-color:#EDF0FD;} + .d2-3987613411 .background-color-AB5{background-color:#F7F8FE;} + .d2-3987613411 .color-N1{color:#0A0F25;} + .d2-3987613411 .color-N2{color:#676C7E;} + .d2-3987613411 .color-N3{color:#9499AB;} + .d2-3987613411 .color-N4{color:#CFD2DD;} + .d2-3987613411 .color-N5{color:#DEE1EB;} + .d2-3987613411 .color-N6{color:#EEF1F8;} + .d2-3987613411 .color-N7{color:#FFFFFF;} + .d2-3987613411 .color-B1{color:#0D32B2;} + .d2-3987613411 .color-B2{color:#0D32B2;} + .d2-3987613411 .color-B3{color:#E3E9FD;} + .d2-3987613411 .color-B4{color:#E3E9FD;} + .d2-3987613411 .color-B5{color:#EDF0FD;} + .d2-3987613411 .color-B6{color:#F7F8FE;} + .d2-3987613411 .color-AA2{color:#4A6FF3;} + .d2-3987613411 .color-AA4{color:#EDF0FD;} + .d2-3987613411 .color-AA5{color:#F7F8FE;} + .d2-3987613411 .color-AB4{color:#EDF0FD;} + .d2-3987613411 .color-AB5{color:#F7F8FE;}.appendix text.text{fill:#0A0F25}.md{--color-fg-default:#0A0F25;--color-fg-muted:#676C7E;--color-fg-subtle:#9499AB;--color-canvas-default:#FFFFFF;--color-canvas-subtle:#EEF1F8;--color-border-default:#0D32B2;--color-border-muted:#0D32B2;--color-neutral-muted:#EEF1F8;--color-accent-fg:#0D32B2;--color-accent-emphasis:#0D32B2;--color-attention-subtle:#676C7E;--color-danger-fg:red;}.sketch-overlay-B1{fill:url(#streaks-darker);mix-blend-mode:lighten}.sketch-overlay-B2{fill:url(#streaks-darker);mix-blend-mode:lighten}.sketch-overlay-B3{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-B4{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-B5{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-B6{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-AA2{fill:url(#streaks-dark);mix-blend-mode:overlay}.sketch-overlay-AA4{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-AA5{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-AB4{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-AB5{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-N1{fill:url(#streaks-darker);mix-blend-mode:lighten}.sketch-overlay-N2{fill:url(#streaks-dark);mix-blend-mode:overlay}.sketch-overlay-N3{fill:url(#streaks-normal);mix-blend-mode:color-burn}.sketch-overlay-N4{fill:url(#streaks-normal);mix-blend-mode:color-burn}.sketch-overlay-N5{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-N6{fill:url(#streaks-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/sequence-note-escape-group/dagre/board.exp.json b/e2etests/testdata/regression/sequence-note-escape-group/dagre/board.exp.json index bd4377618d..d6c4220e96 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 @@ -216,10 +216,8 @@ "id": "(a -> b)[0]", "src": "a", "srcArrow": "none", - "srcLabel": "", "dst": "b", "dstArrow": "triangle", - "dstLabel": "", "opacity": 1, "strokeDash": 0, "strokeWidth": 2, @@ -256,10 +254,8 @@ "id": "(a -- )[0]", "src": "a", "srcArrow": "none", - "srcLabel": "", "dst": "a-lifeline-end-2251863791", "dstArrow": "none", - "dstLabel": "", "opacity": 1, "strokeDash": 6, "strokeWidth": 2, @@ -296,10 +292,8 @@ "id": "(b -- )[0]", "src": "b", "srcArrow": "none", - "srcLabel": "", "dst": "b-lifeline-end-668380428", "dstArrow": "none", - "dstLabel": "", "opacity": 1, "strokeDash": 6, "strokeWidth": 2, 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 368e8c0e2c..ba68fd7fce 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-3121626338 .fill-N1{fill:#0A0F25;} + .d2-3121626338 .fill-N2{fill:#676C7E;} + .d2-3121626338 .fill-N3{fill:#9499AB;} + .d2-3121626338 .fill-N4{fill:#CFD2DD;} + .d2-3121626338 .fill-N5{fill:#DEE1EB;} + .d2-3121626338 .fill-N6{fill:#EEF1F8;} + .d2-3121626338 .fill-N7{fill:#FFFFFF;} + .d2-3121626338 .fill-B1{fill:#0D32B2;} + .d2-3121626338 .fill-B2{fill:#0D32B2;} + .d2-3121626338 .fill-B3{fill:#E3E9FD;} + .d2-3121626338 .fill-B4{fill:#E3E9FD;} + .d2-3121626338 .fill-B5{fill:#EDF0FD;} + .d2-3121626338 .fill-B6{fill:#F7F8FE;} + .d2-3121626338 .fill-AA2{fill:#4A6FF3;} + .d2-3121626338 .fill-AA4{fill:#EDF0FD;} + .d2-3121626338 .fill-AA5{fill:#F7F8FE;} + .d2-3121626338 .fill-AB4{fill:#EDF0FD;} + .d2-3121626338 .fill-AB5{fill:#F7F8FE;} + .d2-3121626338 .stroke-N1{stroke:#0A0F25;} + .d2-3121626338 .stroke-N2{stroke:#676C7E;} + .d2-3121626338 .stroke-N3{stroke:#9499AB;} + .d2-3121626338 .stroke-N4{stroke:#CFD2DD;} + .d2-3121626338 .stroke-N5{stroke:#DEE1EB;} + .d2-3121626338 .stroke-N6{stroke:#EEF1F8;} + .d2-3121626338 .stroke-N7{stroke:#FFFFFF;} + .d2-3121626338 .stroke-B1{stroke:#0D32B2;} + .d2-3121626338 .stroke-B2{stroke:#0D32B2;} + .d2-3121626338 .stroke-B3{stroke:#E3E9FD;} + .d2-3121626338 .stroke-B4{stroke:#E3E9FD;} + .d2-3121626338 .stroke-B5{stroke:#EDF0FD;} + .d2-3121626338 .stroke-B6{stroke:#F7F8FE;} + .d2-3121626338 .stroke-AA2{stroke:#4A6FF3;} + .d2-3121626338 .stroke-AA4{stroke:#EDF0FD;} + .d2-3121626338 .stroke-AA5{stroke:#F7F8FE;} + .d2-3121626338 .stroke-AB4{stroke:#EDF0FD;} + .d2-3121626338 .stroke-AB5{stroke:#F7F8FE;} + .d2-3121626338 .background-color-N1{background-color:#0A0F25;} + .d2-3121626338 .background-color-N2{background-color:#676C7E;} + .d2-3121626338 .background-color-N3{background-color:#9499AB;} + .d2-3121626338 .background-color-N4{background-color:#CFD2DD;} + .d2-3121626338 .background-color-N5{background-color:#DEE1EB;} + .d2-3121626338 .background-color-N6{background-color:#EEF1F8;} + .d2-3121626338 .background-color-N7{background-color:#FFFFFF;} + .d2-3121626338 .background-color-B1{background-color:#0D32B2;} + .d2-3121626338 .background-color-B2{background-color:#0D32B2;} + .d2-3121626338 .background-color-B3{background-color:#E3E9FD;} + .d2-3121626338 .background-color-B4{background-color:#E3E9FD;} + .d2-3121626338 .background-color-B5{background-color:#EDF0FD;} + .d2-3121626338 .background-color-B6{background-color:#F7F8FE;} + .d2-3121626338 .background-color-AA2{background-color:#4A6FF3;} + .d2-3121626338 .background-color-AA4{background-color:#EDF0FD;} + .d2-3121626338 .background-color-AA5{background-color:#F7F8FE;} + .d2-3121626338 .background-color-AB4{background-color:#EDF0FD;} + .d2-3121626338 .background-color-AB5{background-color:#F7F8FE;} + .d2-3121626338 .color-N1{color:#0A0F25;} + .d2-3121626338 .color-N2{color:#676C7E;} + .d2-3121626338 .color-N3{color:#9499AB;} + .d2-3121626338 .color-N4{color:#CFD2DD;} + .d2-3121626338 .color-N5{color:#DEE1EB;} + .d2-3121626338 .color-N6{color:#EEF1F8;} + .d2-3121626338 .color-N7{color:#FFFFFF;} + .d2-3121626338 .color-B1{color:#0D32B2;} + .d2-3121626338 .color-B2{color:#0D32B2;} + .d2-3121626338 .color-B3{color:#E3E9FD;} + .d2-3121626338 .color-B4{color:#E3E9FD;} + .d2-3121626338 .color-B5{color:#EDF0FD;} + .d2-3121626338 .color-B6{color:#F7F8FE;} + .d2-3121626338 .color-AA2{color:#4A6FF3;} + .d2-3121626338 .color-AA4{color:#EDF0FD;} + .d2-3121626338 .color-AA5{color:#F7F8FE;} + .d2-3121626338 .color-AB4{color:#EDF0FD;} + .d2-3121626338 .color-AB5{color:#F7F8FE;}.appendix text.text{fill:#0A0F25}.md{--color-fg-default:#0A0F25;--color-fg-muted:#676C7E;--color-fg-subtle:#9499AB;--color-canvas-default:#FFFFFF;--color-canvas-subtle:#EEF1F8;--color-border-default:#0D32B2;--color-border-muted:#0D32B2;--color-neutral-muted:#EEF1F8;--color-accent-fg:#0D32B2;--color-accent-emphasis:#0D32B2;--color-attention-subtle:#676C7E;--color-danger-fg:red;}.sketch-overlay-B1{fill:url(#streaks-darker);mix-blend-mode:lighten}.sketch-overlay-B2{fill:url(#streaks-darker);mix-blend-mode:lighten}.sketch-overlay-B3{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-B4{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-B5{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-B6{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-AA2{fill:url(#streaks-dark);mix-blend-mode:overlay}.sketch-overlay-AA4{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-AA5{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-AB4{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-AB5{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-N1{fill:url(#streaks-darker);mix-blend-mode:lighten}.sketch-overlay-N2{fill:url(#streaks-dark);mix-blend-mode:overlay}.sketch-overlay-N3{fill:url(#streaks-normal);mix-blend-mode:color-burn}.sketch-overlay-N4{fill:url(#streaks-normal);mix-blend-mode:color-burn}.sketch-overlay-N5{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-N6{fill:url(#streaks-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 bd4377618d..d6c4220e96 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 @@ -216,10 +216,8 @@ "id": "(a -> b)[0]", "src": "a", "srcArrow": "none", - "srcLabel": "", "dst": "b", "dstArrow": "triangle", - "dstLabel": "", "opacity": 1, "strokeDash": 0, "strokeWidth": 2, @@ -256,10 +254,8 @@ "id": "(a -- )[0]", "src": "a", "srcArrow": "none", - "srcLabel": "", "dst": "a-lifeline-end-2251863791", "dstArrow": "none", - "dstLabel": "", "opacity": 1, "strokeDash": 6, "strokeWidth": 2, @@ -296,10 +292,8 @@ "id": "(b -- )[0]", "src": "b", "srcArrow": "none", - "srcLabel": "", "dst": "b-lifeline-end-668380428", "dstArrow": "none", - "dstLabel": "", "opacity": 1, "strokeDash": 6, "strokeWidth": 2, 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 368e8c0e2c..ba68fd7fce 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-3121626338 .fill-N1{fill:#0A0F25;} + .d2-3121626338 .fill-N2{fill:#676C7E;} + .d2-3121626338 .fill-N3{fill:#9499AB;} + .d2-3121626338 .fill-N4{fill:#CFD2DD;} + .d2-3121626338 .fill-N5{fill:#DEE1EB;} + .d2-3121626338 .fill-N6{fill:#EEF1F8;} + .d2-3121626338 .fill-N7{fill:#FFFFFF;} + .d2-3121626338 .fill-B1{fill:#0D32B2;} + .d2-3121626338 .fill-B2{fill:#0D32B2;} + .d2-3121626338 .fill-B3{fill:#E3E9FD;} + .d2-3121626338 .fill-B4{fill:#E3E9FD;} + .d2-3121626338 .fill-B5{fill:#EDF0FD;} + .d2-3121626338 .fill-B6{fill:#F7F8FE;} + .d2-3121626338 .fill-AA2{fill:#4A6FF3;} + .d2-3121626338 .fill-AA4{fill:#EDF0FD;} + .d2-3121626338 .fill-AA5{fill:#F7F8FE;} + .d2-3121626338 .fill-AB4{fill:#EDF0FD;} + .d2-3121626338 .fill-AB5{fill:#F7F8FE;} + .d2-3121626338 .stroke-N1{stroke:#0A0F25;} + .d2-3121626338 .stroke-N2{stroke:#676C7E;} + .d2-3121626338 .stroke-N3{stroke:#9499AB;} + .d2-3121626338 .stroke-N4{stroke:#CFD2DD;} + .d2-3121626338 .stroke-N5{stroke:#DEE1EB;} + .d2-3121626338 .stroke-N6{stroke:#EEF1F8;} + .d2-3121626338 .stroke-N7{stroke:#FFFFFF;} + .d2-3121626338 .stroke-B1{stroke:#0D32B2;} + .d2-3121626338 .stroke-B2{stroke:#0D32B2;} + .d2-3121626338 .stroke-B3{stroke:#E3E9FD;} + .d2-3121626338 .stroke-B4{stroke:#E3E9FD;} + .d2-3121626338 .stroke-B5{stroke:#EDF0FD;} + .d2-3121626338 .stroke-B6{stroke:#F7F8FE;} + .d2-3121626338 .stroke-AA2{stroke:#4A6FF3;} + .d2-3121626338 .stroke-AA4{stroke:#EDF0FD;} + .d2-3121626338 .stroke-AA5{stroke:#F7F8FE;} + .d2-3121626338 .stroke-AB4{stroke:#EDF0FD;} + .d2-3121626338 .stroke-AB5{stroke:#F7F8FE;} + .d2-3121626338 .background-color-N1{background-color:#0A0F25;} + .d2-3121626338 .background-color-N2{background-color:#676C7E;} + .d2-3121626338 .background-color-N3{background-color:#9499AB;} + .d2-3121626338 .background-color-N4{background-color:#CFD2DD;} + .d2-3121626338 .background-color-N5{background-color:#DEE1EB;} + .d2-3121626338 .background-color-N6{background-color:#EEF1F8;} + .d2-3121626338 .background-color-N7{background-color:#FFFFFF;} + .d2-3121626338 .background-color-B1{background-color:#0D32B2;} + .d2-3121626338 .background-color-B2{background-color:#0D32B2;} + .d2-3121626338 .background-color-B3{background-color:#E3E9FD;} + .d2-3121626338 .background-color-B4{background-color:#E3E9FD;} + .d2-3121626338 .background-color-B5{background-color:#EDF0FD;} + .d2-3121626338 .background-color-B6{background-color:#F7F8FE;} + .d2-3121626338 .background-color-AA2{background-color:#4A6FF3;} + .d2-3121626338 .background-color-AA4{background-color:#EDF0FD;} + .d2-3121626338 .background-color-AA5{background-color:#F7F8FE;} + .d2-3121626338 .background-color-AB4{background-color:#EDF0FD;} + .d2-3121626338 .background-color-AB5{background-color:#F7F8FE;} + .d2-3121626338 .color-N1{color:#0A0F25;} + .d2-3121626338 .color-N2{color:#676C7E;} + .d2-3121626338 .color-N3{color:#9499AB;} + .d2-3121626338 .color-N4{color:#CFD2DD;} + .d2-3121626338 .color-N5{color:#DEE1EB;} + .d2-3121626338 .color-N6{color:#EEF1F8;} + .d2-3121626338 .color-N7{color:#FFFFFF;} + .d2-3121626338 .color-B1{color:#0D32B2;} + .d2-3121626338 .color-B2{color:#0D32B2;} + .d2-3121626338 .color-B3{color:#E3E9FD;} + .d2-3121626338 .color-B4{color:#E3E9FD;} + .d2-3121626338 .color-B5{color:#EDF0FD;} + .d2-3121626338 .color-B6{color:#F7F8FE;} + .d2-3121626338 .color-AA2{color:#4A6FF3;} + .d2-3121626338 .color-AA4{color:#EDF0FD;} + .d2-3121626338 .color-AA5{color:#F7F8FE;} + .d2-3121626338 .color-AB4{color:#EDF0FD;} + .d2-3121626338 .color-AB5{color:#F7F8FE;}.appendix text.text{fill:#0A0F25}.md{--color-fg-default:#0A0F25;--color-fg-muted:#676C7E;--color-fg-subtle:#9499AB;--color-canvas-default:#FFFFFF;--color-canvas-subtle:#EEF1F8;--color-border-default:#0D32B2;--color-border-muted:#0D32B2;--color-neutral-muted:#EEF1F8;--color-accent-fg:#0D32B2;--color-accent-emphasis:#0D32B2;--color-attention-subtle:#676C7E;--color-danger-fg:red;}.sketch-overlay-B1{fill:url(#streaks-darker);mix-blend-mode:lighten}.sketch-overlay-B2{fill:url(#streaks-darker);mix-blend-mode:lighten}.sketch-overlay-B3{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-B4{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-B5{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-B6{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-AA2{fill:url(#streaks-dark);mix-blend-mode:overlay}.sketch-overlay-AA4{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-AA5{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-AB4{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-AB5{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-N1{fill:url(#streaks-darker);mix-blend-mode:lighten}.sketch-overlay-N2{fill:url(#streaks-dark);mix-blend-mode:overlay}.sketch-overlay-N3{fill:url(#streaks-normal);mix-blend-mode:color-burn}.sketch-overlay-N4{fill:url(#streaks-normal);mix-blend-mode:color-burn}.sketch-overlay-N5{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-N6{fill:url(#streaks-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 ea68aff495..10505fd6d4 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 @@ -255,10 +255,8 @@ "id": "foo.(a -> b)[0]", "src": "foo.a", "srcArrow": "none", - "srcLabel": "", "dst": "foo.b", "dstArrow": "triangle", - "dstLabel": "", "opacity": 1, "strokeDash": 0, "strokeWidth": 2, @@ -295,10 +293,8 @@ "id": "foobar.(c -> d)[0]", "src": "foobar.c", "srcArrow": "none", - "srcLabel": "", "dst": "foobar.d", "dstArrow": "triangle", - "dstLabel": "", "opacity": 1, "strokeDash": 0, "strokeWidth": 2, @@ -335,10 +331,8 @@ "id": "(foo -> foobar)[0]", "src": "foo", "srcArrow": "none", - "srcLabel": "", "dst": "foobar", "dstArrow": "triangle", - "dstLabel": "", "opacity": 1, "strokeDash": 0, "strokeWidth": 2, @@ -384,10 +378,8 @@ "id": "(foo.a -- )[0]", "src": "foo.a", "srcArrow": "none", - "srcLabel": "", "dst": "a-lifeline-end-2251863791", "dstArrow": "none", - "dstLabel": "", "opacity": 1, "strokeDash": 6, "strokeWidth": 2, @@ -424,10 +416,8 @@ "id": "(foo.b -- )[0]", "src": "foo.b", "srcArrow": "none", - "srcLabel": "", "dst": "b-lifeline-end-668380428", "dstArrow": "none", - "dstLabel": "", "opacity": 1, "strokeDash": 6, "strokeWidth": 2, @@ -464,10 +454,8 @@ "id": "(foobar.c -- )[0]", "src": "foobar.c", "srcArrow": "none", - "srcLabel": "", "dst": "c-lifeline-end-955173837", "dstArrow": "none", - "dstLabel": "", "opacity": 1, "strokeDash": 6, "strokeWidth": 2, @@ -504,10 +492,8 @@ "id": "(foobar.d -- )[0]", "src": "foobar.d", "srcArrow": "none", - "srcLabel": "", "dst": "d-lifeline-end-2106864010", "dstArrow": "none", - "dstLabel": "", "opacity": 1, "strokeDash": 6, "strokeWidth": 2, 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 d3f52a834d..99466b1ec2 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-2412934403 .fill-N1{fill:#0A0F25;} + .d2-2412934403 .fill-N2{fill:#676C7E;} + .d2-2412934403 .fill-N3{fill:#9499AB;} + .d2-2412934403 .fill-N4{fill:#CFD2DD;} + .d2-2412934403 .fill-N5{fill:#DEE1EB;} + .d2-2412934403 .fill-N6{fill:#EEF1F8;} + .d2-2412934403 .fill-N7{fill:#FFFFFF;} + .d2-2412934403 .fill-B1{fill:#0D32B2;} + .d2-2412934403 .fill-B2{fill:#0D32B2;} + .d2-2412934403 .fill-B3{fill:#E3E9FD;} + .d2-2412934403 .fill-B4{fill:#E3E9FD;} + .d2-2412934403 .fill-B5{fill:#EDF0FD;} + .d2-2412934403 .fill-B6{fill:#F7F8FE;} + .d2-2412934403 .fill-AA2{fill:#4A6FF3;} + .d2-2412934403 .fill-AA4{fill:#EDF0FD;} + .d2-2412934403 .fill-AA5{fill:#F7F8FE;} + .d2-2412934403 .fill-AB4{fill:#EDF0FD;} + .d2-2412934403 .fill-AB5{fill:#F7F8FE;} + .d2-2412934403 .stroke-N1{stroke:#0A0F25;} + .d2-2412934403 .stroke-N2{stroke:#676C7E;} + .d2-2412934403 .stroke-N3{stroke:#9499AB;} + .d2-2412934403 .stroke-N4{stroke:#CFD2DD;} + .d2-2412934403 .stroke-N5{stroke:#DEE1EB;} + .d2-2412934403 .stroke-N6{stroke:#EEF1F8;} + .d2-2412934403 .stroke-N7{stroke:#FFFFFF;} + .d2-2412934403 .stroke-B1{stroke:#0D32B2;} + .d2-2412934403 .stroke-B2{stroke:#0D32B2;} + .d2-2412934403 .stroke-B3{stroke:#E3E9FD;} + .d2-2412934403 .stroke-B4{stroke:#E3E9FD;} + .d2-2412934403 .stroke-B5{stroke:#EDF0FD;} + .d2-2412934403 .stroke-B6{stroke:#F7F8FE;} + .d2-2412934403 .stroke-AA2{stroke:#4A6FF3;} + .d2-2412934403 .stroke-AA4{stroke:#EDF0FD;} + .d2-2412934403 .stroke-AA5{stroke:#F7F8FE;} + .d2-2412934403 .stroke-AB4{stroke:#EDF0FD;} + .d2-2412934403 .stroke-AB5{stroke:#F7F8FE;} + .d2-2412934403 .background-color-N1{background-color:#0A0F25;} + .d2-2412934403 .background-color-N2{background-color:#676C7E;} + .d2-2412934403 .background-color-N3{background-color:#9499AB;} + .d2-2412934403 .background-color-N4{background-color:#CFD2DD;} + .d2-2412934403 .background-color-N5{background-color:#DEE1EB;} + .d2-2412934403 .background-color-N6{background-color:#EEF1F8;} + .d2-2412934403 .background-color-N7{background-color:#FFFFFF;} + .d2-2412934403 .background-color-B1{background-color:#0D32B2;} + .d2-2412934403 .background-color-B2{background-color:#0D32B2;} + .d2-2412934403 .background-color-B3{background-color:#E3E9FD;} + .d2-2412934403 .background-color-B4{background-color:#E3E9FD;} + .d2-2412934403 .background-color-B5{background-color:#EDF0FD;} + .d2-2412934403 .background-color-B6{background-color:#F7F8FE;} + .d2-2412934403 .background-color-AA2{background-color:#4A6FF3;} + .d2-2412934403 .background-color-AA4{background-color:#EDF0FD;} + .d2-2412934403 .background-color-AA5{background-color:#F7F8FE;} + .d2-2412934403 .background-color-AB4{background-color:#EDF0FD;} + .d2-2412934403 .background-color-AB5{background-color:#F7F8FE;} + .d2-2412934403 .color-N1{color:#0A0F25;} + .d2-2412934403 .color-N2{color:#676C7E;} + .d2-2412934403 .color-N3{color:#9499AB;} + .d2-2412934403 .color-N4{color:#CFD2DD;} + .d2-2412934403 .color-N5{color:#DEE1EB;} + .d2-2412934403 .color-N6{color:#EEF1F8;} + .d2-2412934403 .color-N7{color:#FFFFFF;} + .d2-2412934403 .color-B1{color:#0D32B2;} + .d2-2412934403 .color-B2{color:#0D32B2;} + .d2-2412934403 .color-B3{color:#E3E9FD;} + .d2-2412934403 .color-B4{color:#E3E9FD;} + .d2-2412934403 .color-B5{color:#EDF0FD;} + .d2-2412934403 .color-B6{color:#F7F8FE;} + .d2-2412934403 .color-AA2{color:#4A6FF3;} + .d2-2412934403 .color-AA4{color:#EDF0FD;} + .d2-2412934403 .color-AA5{color:#F7F8FE;} + .d2-2412934403 .color-AB4{color:#EDF0FD;} + .d2-2412934403 .color-AB5{color:#F7F8FE;}.appendix text.text{fill:#0A0F25}.md{--color-fg-default:#0A0F25;--color-fg-muted:#676C7E;--color-fg-subtle:#9499AB;--color-canvas-default:#FFFFFF;--color-canvas-subtle:#EEF1F8;--color-border-default:#0D32B2;--color-border-muted:#0D32B2;--color-neutral-muted:#EEF1F8;--color-accent-fg:#0D32B2;--color-accent-emphasis:#0D32B2;--color-attention-subtle:#676C7E;--color-danger-fg:red;}.sketch-overlay-B1{fill:url(#streaks-darker);mix-blend-mode:lighten}.sketch-overlay-B2{fill:url(#streaks-darker);mix-blend-mode:lighten}.sketch-overlay-B3{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-B4{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-B5{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-B6{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-AA2{fill:url(#streaks-dark);mix-blend-mode:overlay}.sketch-overlay-AA4{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-AA5{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-AB4{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-AB5{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-N1{fill:url(#streaks-darker);mix-blend-mode:lighten}.sketch-overlay-N2{fill:url(#streaks-dark);mix-blend-mode:overlay}.sketch-overlay-N3{fill:url(#streaks-normal);mix-blend-mode:color-burn}.sketch-overlay-N4{fill:url(#streaks-normal);mix-blend-mode:color-burn}.sketch-overlay-N5{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-N6{fill:url(#streaks-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 \ No newline at end of file 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 2bc9622675..6ebbf66cb2 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 @@ -255,10 +255,8 @@ "id": "foo.(a -> b)[0]", "src": "foo.a", "srcArrow": "none", - "srcLabel": "", "dst": "foo.b", "dstArrow": "triangle", - "dstLabel": "", "opacity": 1, "strokeDash": 0, "strokeWidth": 2, @@ -295,10 +293,8 @@ "id": "foobar.(c -> d)[0]", "src": "foobar.c", "srcArrow": "none", - "srcLabel": "", "dst": "foobar.d", "dstArrow": "triangle", - "dstLabel": "", "opacity": 1, "strokeDash": 0, "strokeWidth": 2, @@ -335,10 +331,8 @@ "id": "(foo -> foobar)[0]", "src": "foo", "srcArrow": "none", - "srcLabel": "", "dst": "foobar", "dstArrow": "triangle", - "dstLabel": "", "opacity": 1, "strokeDash": 0, "strokeWidth": 2, @@ -375,10 +369,8 @@ "id": "(foo.a -- )[0]", "src": "foo.a", "srcArrow": "none", - "srcLabel": "", "dst": "a-lifeline-end-2251863791", "dstArrow": "none", - "dstLabel": "", "opacity": 1, "strokeDash": 6, "strokeWidth": 2, @@ -415,10 +407,8 @@ "id": "(foo.b -- )[0]", "src": "foo.b", "srcArrow": "none", - "srcLabel": "", "dst": "b-lifeline-end-668380428", "dstArrow": "none", - "dstLabel": "", "opacity": 1, "strokeDash": 6, "strokeWidth": 2, @@ -455,10 +445,8 @@ "id": "(foobar.c -- )[0]", "src": "foobar.c", "srcArrow": "none", - "srcLabel": "", "dst": "c-lifeline-end-955173837", "dstArrow": "none", - "dstLabel": "", "opacity": 1, "strokeDash": 6, "strokeWidth": 2, @@ -495,10 +483,8 @@ "id": "(foobar.d -- )[0]", "src": "foobar.d", "srcArrow": "none", - "srcLabel": "", "dst": "d-lifeline-end-2106864010", "dstArrow": "none", - "dstLabel": "", "opacity": 1, "strokeDash": 6, "strokeWidth": 2, 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 bd4b7e2aac..58c9661b9f 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-3722985942 .fill-N1{fill:#0A0F25;} + .d2-3722985942 .fill-N2{fill:#676C7E;} + .d2-3722985942 .fill-N3{fill:#9499AB;} + .d2-3722985942 .fill-N4{fill:#CFD2DD;} + .d2-3722985942 .fill-N5{fill:#DEE1EB;} + .d2-3722985942 .fill-N6{fill:#EEF1F8;} + .d2-3722985942 .fill-N7{fill:#FFFFFF;} + .d2-3722985942 .fill-B1{fill:#0D32B2;} + .d2-3722985942 .fill-B2{fill:#0D32B2;} + .d2-3722985942 .fill-B3{fill:#E3E9FD;} + .d2-3722985942 .fill-B4{fill:#E3E9FD;} + .d2-3722985942 .fill-B5{fill:#EDF0FD;} + .d2-3722985942 .fill-B6{fill:#F7F8FE;} + .d2-3722985942 .fill-AA2{fill:#4A6FF3;} + .d2-3722985942 .fill-AA4{fill:#EDF0FD;} + .d2-3722985942 .fill-AA5{fill:#F7F8FE;} + .d2-3722985942 .fill-AB4{fill:#EDF0FD;} + .d2-3722985942 .fill-AB5{fill:#F7F8FE;} + .d2-3722985942 .stroke-N1{stroke:#0A0F25;} + .d2-3722985942 .stroke-N2{stroke:#676C7E;} + .d2-3722985942 .stroke-N3{stroke:#9499AB;} + .d2-3722985942 .stroke-N4{stroke:#CFD2DD;} + .d2-3722985942 .stroke-N5{stroke:#DEE1EB;} + .d2-3722985942 .stroke-N6{stroke:#EEF1F8;} + .d2-3722985942 .stroke-N7{stroke:#FFFFFF;} + .d2-3722985942 .stroke-B1{stroke:#0D32B2;} + .d2-3722985942 .stroke-B2{stroke:#0D32B2;} + .d2-3722985942 .stroke-B3{stroke:#E3E9FD;} + .d2-3722985942 .stroke-B4{stroke:#E3E9FD;} + .d2-3722985942 .stroke-B5{stroke:#EDF0FD;} + .d2-3722985942 .stroke-B6{stroke:#F7F8FE;} + .d2-3722985942 .stroke-AA2{stroke:#4A6FF3;} + .d2-3722985942 .stroke-AA4{stroke:#EDF0FD;} + .d2-3722985942 .stroke-AA5{stroke:#F7F8FE;} + .d2-3722985942 .stroke-AB4{stroke:#EDF0FD;} + .d2-3722985942 .stroke-AB5{stroke:#F7F8FE;} + .d2-3722985942 .background-color-N1{background-color:#0A0F25;} + .d2-3722985942 .background-color-N2{background-color:#676C7E;} + .d2-3722985942 .background-color-N3{background-color:#9499AB;} + .d2-3722985942 .background-color-N4{background-color:#CFD2DD;} + .d2-3722985942 .background-color-N5{background-color:#DEE1EB;} + .d2-3722985942 .background-color-N6{background-color:#EEF1F8;} + .d2-3722985942 .background-color-N7{background-color:#FFFFFF;} + .d2-3722985942 .background-color-B1{background-color:#0D32B2;} + .d2-3722985942 .background-color-B2{background-color:#0D32B2;} + .d2-3722985942 .background-color-B3{background-color:#E3E9FD;} + .d2-3722985942 .background-color-B4{background-color:#E3E9FD;} + .d2-3722985942 .background-color-B5{background-color:#EDF0FD;} + .d2-3722985942 .background-color-B6{background-color:#F7F8FE;} + .d2-3722985942 .background-color-AA2{background-color:#4A6FF3;} + .d2-3722985942 .background-color-AA4{background-color:#EDF0FD;} + .d2-3722985942 .background-color-AA5{background-color:#F7F8FE;} + .d2-3722985942 .background-color-AB4{background-color:#EDF0FD;} + .d2-3722985942 .background-color-AB5{background-color:#F7F8FE;} + .d2-3722985942 .color-N1{color:#0A0F25;} + .d2-3722985942 .color-N2{color:#676C7E;} + .d2-3722985942 .color-N3{color:#9499AB;} + .d2-3722985942 .color-N4{color:#CFD2DD;} + .d2-3722985942 .color-N5{color:#DEE1EB;} + .d2-3722985942 .color-N6{color:#EEF1F8;} + .d2-3722985942 .color-N7{color:#FFFFFF;} + .d2-3722985942 .color-B1{color:#0D32B2;} + .d2-3722985942 .color-B2{color:#0D32B2;} + .d2-3722985942 .color-B3{color:#E3E9FD;} + .d2-3722985942 .color-B4{color:#E3E9FD;} + .d2-3722985942 .color-B5{color:#EDF0FD;} + .d2-3722985942 .color-B6{color:#F7F8FE;} + .d2-3722985942 .color-AA2{color:#4A6FF3;} + .d2-3722985942 .color-AA4{color:#EDF0FD;} + .d2-3722985942 .color-AA5{color:#F7F8FE;} + .d2-3722985942 .color-AB4{color:#EDF0FD;} + .d2-3722985942 .color-AB5{color:#F7F8FE;}.appendix text.text{fill:#0A0F25}.md{--color-fg-default:#0A0F25;--color-fg-muted:#676C7E;--color-fg-subtle:#9499AB;--color-canvas-default:#FFFFFF;--color-canvas-subtle:#EEF1F8;--color-border-default:#0D32B2;--color-border-muted:#0D32B2;--color-neutral-muted:#EEF1F8;--color-accent-fg:#0D32B2;--color-accent-emphasis:#0D32B2;--color-attention-subtle:#676C7E;--color-danger-fg:red;}.sketch-overlay-B1{fill:url(#streaks-darker);mix-blend-mode:lighten}.sketch-overlay-B2{fill:url(#streaks-darker);mix-blend-mode:lighten}.sketch-overlay-B3{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-B4{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-B5{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-B6{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-AA2{fill:url(#streaks-dark);mix-blend-mode:overlay}.sketch-overlay-AA4{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-AA5{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-AB4{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-AB5{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-N1{fill:url(#streaks-darker);mix-blend-mode:lighten}.sketch-overlay-N2{fill:url(#streaks-dark);mix-blend-mode:overlay}.sketch-overlay-N3{fill:url(#streaks-normal);mix-blend-mode:color-burn}.sketch-overlay-N4{fill:url(#streaks-normal);mix-blend-mode:color-burn}.sketch-overlay-N5{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-N6{fill:url(#streaks-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 \ No newline at end of file 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 a0c1615790..5e45e7529b 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 @@ -91,10 +91,8 @@ "id": "(a -- )[0]", "src": "a", "srcArrow": "none", - "srcLabel": "", "dst": "a-lifeline-end-2251863791", "dstArrow": "none", - "dstLabel": "", "opacity": 1, "strokeDash": 6, "strokeWidth": 2, @@ -131,10 +129,8 @@ "id": "(b -- )[0]", "src": "b", "srcArrow": "none", - "srcLabel": "", "dst": "b-lifeline-end-668380428", "dstArrow": "none", - "dstLabel": "", "opacity": 1, "strokeDash": 6, "strokeWidth": 2, 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 afcb9e275e..b397b7caae 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-2499823350 .fill-N1{fill:#0A0F25;} + .d2-2499823350 .fill-N2{fill:#676C7E;} + .d2-2499823350 .fill-N3{fill:#9499AB;} + .d2-2499823350 .fill-N4{fill:#CFD2DD;} + .d2-2499823350 .fill-N5{fill:#DEE1EB;} + .d2-2499823350 .fill-N6{fill:#EEF1F8;} + .d2-2499823350 .fill-N7{fill:#FFFFFF;} + .d2-2499823350 .fill-B1{fill:#0D32B2;} + .d2-2499823350 .fill-B2{fill:#0D32B2;} + .d2-2499823350 .fill-B3{fill:#E3E9FD;} + .d2-2499823350 .fill-B4{fill:#E3E9FD;} + .d2-2499823350 .fill-B5{fill:#EDF0FD;} + .d2-2499823350 .fill-B6{fill:#F7F8FE;} + .d2-2499823350 .fill-AA2{fill:#4A6FF3;} + .d2-2499823350 .fill-AA4{fill:#EDF0FD;} + .d2-2499823350 .fill-AA5{fill:#F7F8FE;} + .d2-2499823350 .fill-AB4{fill:#EDF0FD;} + .d2-2499823350 .fill-AB5{fill:#F7F8FE;} + .d2-2499823350 .stroke-N1{stroke:#0A0F25;} + .d2-2499823350 .stroke-N2{stroke:#676C7E;} + .d2-2499823350 .stroke-N3{stroke:#9499AB;} + .d2-2499823350 .stroke-N4{stroke:#CFD2DD;} + .d2-2499823350 .stroke-N5{stroke:#DEE1EB;} + .d2-2499823350 .stroke-N6{stroke:#EEF1F8;} + .d2-2499823350 .stroke-N7{stroke:#FFFFFF;} + .d2-2499823350 .stroke-B1{stroke:#0D32B2;} + .d2-2499823350 .stroke-B2{stroke:#0D32B2;} + .d2-2499823350 .stroke-B3{stroke:#E3E9FD;} + .d2-2499823350 .stroke-B4{stroke:#E3E9FD;} + .d2-2499823350 .stroke-B5{stroke:#EDF0FD;} + .d2-2499823350 .stroke-B6{stroke:#F7F8FE;} + .d2-2499823350 .stroke-AA2{stroke:#4A6FF3;} + .d2-2499823350 .stroke-AA4{stroke:#EDF0FD;} + .d2-2499823350 .stroke-AA5{stroke:#F7F8FE;} + .d2-2499823350 .stroke-AB4{stroke:#EDF0FD;} + .d2-2499823350 .stroke-AB5{stroke:#F7F8FE;} + .d2-2499823350 .background-color-N1{background-color:#0A0F25;} + .d2-2499823350 .background-color-N2{background-color:#676C7E;} + .d2-2499823350 .background-color-N3{background-color:#9499AB;} + .d2-2499823350 .background-color-N4{background-color:#CFD2DD;} + .d2-2499823350 .background-color-N5{background-color:#DEE1EB;} + .d2-2499823350 .background-color-N6{background-color:#EEF1F8;} + .d2-2499823350 .background-color-N7{background-color:#FFFFFF;} + .d2-2499823350 .background-color-B1{background-color:#0D32B2;} + .d2-2499823350 .background-color-B2{background-color:#0D32B2;} + .d2-2499823350 .background-color-B3{background-color:#E3E9FD;} + .d2-2499823350 .background-color-B4{background-color:#E3E9FD;} + .d2-2499823350 .background-color-B5{background-color:#EDF0FD;} + .d2-2499823350 .background-color-B6{background-color:#F7F8FE;} + .d2-2499823350 .background-color-AA2{background-color:#4A6FF3;} + .d2-2499823350 .background-color-AA4{background-color:#EDF0FD;} + .d2-2499823350 .background-color-AA5{background-color:#F7F8FE;} + .d2-2499823350 .background-color-AB4{background-color:#EDF0FD;} + .d2-2499823350 .background-color-AB5{background-color:#F7F8FE;} + .d2-2499823350 .color-N1{color:#0A0F25;} + .d2-2499823350 .color-N2{color:#676C7E;} + .d2-2499823350 .color-N3{color:#9499AB;} + .d2-2499823350 .color-N4{color:#CFD2DD;} + .d2-2499823350 .color-N5{color:#DEE1EB;} + .d2-2499823350 .color-N6{color:#EEF1F8;} + .d2-2499823350 .color-N7{color:#FFFFFF;} + .d2-2499823350 .color-B1{color:#0D32B2;} + .d2-2499823350 .color-B2{color:#0D32B2;} + .d2-2499823350 .color-B3{color:#E3E9FD;} + .d2-2499823350 .color-B4{color:#E3E9FD;} + .d2-2499823350 .color-B5{color:#EDF0FD;} + .d2-2499823350 .color-B6{color:#F7F8FE;} + .d2-2499823350 .color-AA2{color:#4A6FF3;} + .d2-2499823350 .color-AA4{color:#EDF0FD;} + .d2-2499823350 .color-AA5{color:#F7F8FE;} + .d2-2499823350 .color-AB4{color:#EDF0FD;} + .d2-2499823350 .color-AB5{color:#F7F8FE;}.appendix text.text{fill:#0A0F25}.md{--color-fg-default:#0A0F25;--color-fg-muted:#676C7E;--color-fg-subtle:#9499AB;--color-canvas-default:#FFFFFF;--color-canvas-subtle:#EEF1F8;--color-border-default:#0D32B2;--color-border-muted:#0D32B2;--color-neutral-muted:#EEF1F8;--color-accent-fg:#0D32B2;--color-accent-emphasis:#0D32B2;--color-attention-subtle:#676C7E;--color-danger-fg:red;}.sketch-overlay-B1{fill:url(#streaks-darker);mix-blend-mode:lighten}.sketch-overlay-B2{fill:url(#streaks-darker);mix-blend-mode:lighten}.sketch-overlay-B3{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-B4{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-B5{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-B6{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-AA2{fill:url(#streaks-dark);mix-blend-mode:overlay}.sketch-overlay-AA4{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-AA5{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-AB4{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-AB5{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-N1{fill:url(#streaks-darker);mix-blend-mode:lighten}.sketch-overlay-N2{fill:url(#streaks-dark);mix-blend-mode:overlay}.sketch-overlay-N3{fill:url(#streaks-normal);mix-blend-mode:color-burn}.sketch-overlay-N4{fill:url(#streaks-normal);mix-blend-mode:color-burn}.sketch-overlay-N5{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-N6{fill:url(#streaks-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 \ No newline at end of file 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 a0c1615790..5e45e7529b 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 @@ -91,10 +91,8 @@ "id": "(a -- )[0]", "src": "a", "srcArrow": "none", - "srcLabel": "", "dst": "a-lifeline-end-2251863791", "dstArrow": "none", - "dstLabel": "", "opacity": 1, "strokeDash": 6, "strokeWidth": 2, @@ -131,10 +129,8 @@ "id": "(b -- )[0]", "src": "b", "srcArrow": "none", - "srcLabel": "", "dst": "b-lifeline-end-668380428", "dstArrow": "none", - "dstLabel": "", "opacity": 1, "strokeDash": 6, "strokeWidth": 2, 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 afcb9e275e..b397b7caae 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-2499823350 .fill-N1{fill:#0A0F25;} + .d2-2499823350 .fill-N2{fill:#676C7E;} + .d2-2499823350 .fill-N3{fill:#9499AB;} + .d2-2499823350 .fill-N4{fill:#CFD2DD;} + .d2-2499823350 .fill-N5{fill:#DEE1EB;} + .d2-2499823350 .fill-N6{fill:#EEF1F8;} + .d2-2499823350 .fill-N7{fill:#FFFFFF;} + .d2-2499823350 .fill-B1{fill:#0D32B2;} + .d2-2499823350 .fill-B2{fill:#0D32B2;} + .d2-2499823350 .fill-B3{fill:#E3E9FD;} + .d2-2499823350 .fill-B4{fill:#E3E9FD;} + .d2-2499823350 .fill-B5{fill:#EDF0FD;} + .d2-2499823350 .fill-B6{fill:#F7F8FE;} + .d2-2499823350 .fill-AA2{fill:#4A6FF3;} + .d2-2499823350 .fill-AA4{fill:#EDF0FD;} + .d2-2499823350 .fill-AA5{fill:#F7F8FE;} + .d2-2499823350 .fill-AB4{fill:#EDF0FD;} + .d2-2499823350 .fill-AB5{fill:#F7F8FE;} + .d2-2499823350 .stroke-N1{stroke:#0A0F25;} + .d2-2499823350 .stroke-N2{stroke:#676C7E;} + .d2-2499823350 .stroke-N3{stroke:#9499AB;} + .d2-2499823350 .stroke-N4{stroke:#CFD2DD;} + .d2-2499823350 .stroke-N5{stroke:#DEE1EB;} + .d2-2499823350 .stroke-N6{stroke:#EEF1F8;} + .d2-2499823350 .stroke-N7{stroke:#FFFFFF;} + .d2-2499823350 .stroke-B1{stroke:#0D32B2;} + .d2-2499823350 .stroke-B2{stroke:#0D32B2;} + .d2-2499823350 .stroke-B3{stroke:#E3E9FD;} + .d2-2499823350 .stroke-B4{stroke:#E3E9FD;} + .d2-2499823350 .stroke-B5{stroke:#EDF0FD;} + .d2-2499823350 .stroke-B6{stroke:#F7F8FE;} + .d2-2499823350 .stroke-AA2{stroke:#4A6FF3;} + .d2-2499823350 .stroke-AA4{stroke:#EDF0FD;} + .d2-2499823350 .stroke-AA5{stroke:#F7F8FE;} + .d2-2499823350 .stroke-AB4{stroke:#EDF0FD;} + .d2-2499823350 .stroke-AB5{stroke:#F7F8FE;} + .d2-2499823350 .background-color-N1{background-color:#0A0F25;} + .d2-2499823350 .background-color-N2{background-color:#676C7E;} + .d2-2499823350 .background-color-N3{background-color:#9499AB;} + .d2-2499823350 .background-color-N4{background-color:#CFD2DD;} + .d2-2499823350 .background-color-N5{background-color:#DEE1EB;} + .d2-2499823350 .background-color-N6{background-color:#EEF1F8;} + .d2-2499823350 .background-color-N7{background-color:#FFFFFF;} + .d2-2499823350 .background-color-B1{background-color:#0D32B2;} + .d2-2499823350 .background-color-B2{background-color:#0D32B2;} + .d2-2499823350 .background-color-B3{background-color:#E3E9FD;} + .d2-2499823350 .background-color-B4{background-color:#E3E9FD;} + .d2-2499823350 .background-color-B5{background-color:#EDF0FD;} + .d2-2499823350 .background-color-B6{background-color:#F7F8FE;} + .d2-2499823350 .background-color-AA2{background-color:#4A6FF3;} + .d2-2499823350 .background-color-AA4{background-color:#EDF0FD;} + .d2-2499823350 .background-color-AA5{background-color:#F7F8FE;} + .d2-2499823350 .background-color-AB4{background-color:#EDF0FD;} + .d2-2499823350 .background-color-AB5{background-color:#F7F8FE;} + .d2-2499823350 .color-N1{color:#0A0F25;} + .d2-2499823350 .color-N2{color:#676C7E;} + .d2-2499823350 .color-N3{color:#9499AB;} + .d2-2499823350 .color-N4{color:#CFD2DD;} + .d2-2499823350 .color-N5{color:#DEE1EB;} + .d2-2499823350 .color-N6{color:#EEF1F8;} + .d2-2499823350 .color-N7{color:#FFFFFF;} + .d2-2499823350 .color-B1{color:#0D32B2;} + .d2-2499823350 .color-B2{color:#0D32B2;} + .d2-2499823350 .color-B3{color:#E3E9FD;} + .d2-2499823350 .color-B4{color:#E3E9FD;} + .d2-2499823350 .color-B5{color:#EDF0FD;} + .d2-2499823350 .color-B6{color:#F7F8FE;} + .d2-2499823350 .color-AA2{color:#4A6FF3;} + .d2-2499823350 .color-AA4{color:#EDF0FD;} + .d2-2499823350 .color-AA5{color:#F7F8FE;} + .d2-2499823350 .color-AB4{color:#EDF0FD;} + .d2-2499823350 .color-AB5{color:#F7F8FE;}.appendix text.text{fill:#0A0F25}.md{--color-fg-default:#0A0F25;--color-fg-muted:#676C7E;--color-fg-subtle:#9499AB;--color-canvas-default:#FFFFFF;--color-canvas-subtle:#EEF1F8;--color-border-default:#0D32B2;--color-border-muted:#0D32B2;--color-neutral-muted:#EEF1F8;--color-accent-fg:#0D32B2;--color-accent-emphasis:#0D32B2;--color-attention-subtle:#676C7E;--color-danger-fg:red;}.sketch-overlay-B1{fill:url(#streaks-darker);mix-blend-mode:lighten}.sketch-overlay-B2{fill:url(#streaks-darker);mix-blend-mode:lighten}.sketch-overlay-B3{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-B4{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-B5{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-B6{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-AA2{fill:url(#streaks-dark);mix-blend-mode:overlay}.sketch-overlay-AA4{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-AA5{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-AB4{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-AB5{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-N1{fill:url(#streaks-darker);mix-blend-mode:lighten}.sketch-overlay-N2{fill:url(#streaks-dark);mix-blend-mode:overlay}.sketch-overlay-N3{fill:url(#streaks-normal);mix-blend-mode:color-burn}.sketch-overlay-N4{fill:url(#streaks-normal);mix-blend-mode:color-burn}.sketch-overlay-N5{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-N6{fill:url(#streaks-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 \ No newline at end of file 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 af1a1bdcaa..ce14ec563c 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 @@ -634,10 +634,8 @@ "id": "(a -> a)[0]", "src": "a", "srcArrow": "none", - "srcLabel": "", "dst": "a", "dstArrow": "triangle", - "dstLabel": "", "opacity": 1, "strokeDash": 0, "strokeWidth": 2, @@ -682,10 +680,8 @@ "id": "(a -> b)[0]", "src": "a", "srcArrow": "none", - "srcLabel": "", "dst": "b", "dstArrow": "triangle", - "dstLabel": "", "opacity": 1, "strokeDash": 0, "strokeWidth": 2, @@ -722,10 +718,8 @@ "id": "(a -> a.a)[0]", "src": "a", "srcArrow": "none", - "srcLabel": "", "dst": "a.a", "dstArrow": "triangle", - "dstLabel": "", "opacity": 1, "strokeDash": 0, "strokeWidth": 2, @@ -770,10 +764,8 @@ "id": "(a.a -> b)[0]", "src": "a.a", "srcArrow": "none", - "srcLabel": "", "dst": "b", "dstArrow": "triangle", - "dstLabel": "", "opacity": 1, "strokeDash": 0, "strokeWidth": 2, @@ -810,10 +802,8 @@ "id": "(b -> b)[0]", "src": "b", "srcArrow": "none", - "srcLabel": "", "dst": "b", "dstArrow": "triangle", - "dstLabel": "", "opacity": 1, "strokeDash": 0, "strokeWidth": 2, @@ -858,10 +848,8 @@ "id": "(b -> b)[1]", "src": "b", "srcArrow": "none", - "srcLabel": "", "dst": "b", "dstArrow": "triangle", - "dstLabel": "", "opacity": 1, "strokeDash": 0, "strokeWidth": 2, @@ -906,10 +894,8 @@ "id": "(b -> a)[0]", "src": "b", "srcArrow": "none", - "srcLabel": "", "dst": "a", "dstArrow": "triangle", - "dstLabel": "", "opacity": 1, "strokeDash": 0, "strokeWidth": 2, @@ -946,10 +932,8 @@ "id": "(a -> a)[1]", "src": "a", "srcArrow": "none", - "srcLabel": "", "dst": "a", "dstArrow": "triangle", - "dstLabel": "", "opacity": 1, "strokeDash": 0, "strokeWidth": 2, @@ -994,10 +978,8 @@ "id": "(a -> a)[2]", "src": "a", "srcArrow": "none", - "srcLabel": "", "dst": "a", "dstArrow": "triangle", - "dstLabel": "", "opacity": 1, "strokeDash": 0, "strokeWidth": 2, @@ -1042,10 +1024,8 @@ "id": "(a -> a)[4]", "src": "a", "srcArrow": "none", - "srcLabel": "", "dst": "a", "dstArrow": "triangle", - "dstLabel": "", "opacity": 1, "strokeDash": 0, "strokeWidth": 2, @@ -1090,10 +1070,8 @@ "id": "(a -> a)[3]", "src": "a", "srcArrow": "none", - "srcLabel": "", "dst": "a", "dstArrow": "triangle", - "dstLabel": "", "opacity": 1, "strokeDash": 0, "strokeWidth": 2, @@ -1138,10 +1116,8 @@ "id": "(a -> a)[5]", "src": "a", "srcArrow": "none", - "srcLabel": "", "dst": "a", "dstArrow": "triangle", - "dstLabel": "", "opacity": 1, "strokeDash": 0, "strokeWidth": 2, @@ -1186,10 +1162,8 @@ "id": "(b -> c)[0]", "src": "b", "srcArrow": "none", - "srcLabel": "", "dst": "c", "dstArrow": "triangle", - "dstLabel": "", "opacity": 1, "strokeDash": 0, "strokeWidth": 2, @@ -1226,10 +1200,8 @@ "id": "(c -> c)[0]", "src": "c", "srcArrow": "none", - "srcLabel": "", "dst": "c", "dstArrow": "triangle", - "dstLabel": "", "opacity": 1, "strokeDash": 0, "strokeWidth": 2, @@ -1274,10 +1246,8 @@ "id": "(b -> c)[1]", "src": "b", "srcArrow": "none", - "srcLabel": "", "dst": "c", "dstArrow": "triangle", - "dstLabel": "", "opacity": 1, "strokeDash": 0, "strokeWidth": 2, @@ -1314,10 +1284,8 @@ "id": "(c -> c)[1]", "src": "c", "srcArrow": "none", - "srcLabel": "", "dst": "c", "dstArrow": "triangle", - "dstLabel": "", "opacity": 1, "strokeDash": 0, "strokeWidth": 2, @@ -1362,10 +1330,8 @@ "id": "(b -> c)[2]", "src": "b", "srcArrow": "none", - "srcLabel": "", "dst": "c", "dstArrow": "triangle", - "dstLabel": "", "opacity": 1, "strokeDash": 0, "strokeWidth": 2, @@ -1402,10 +1368,8 @@ "id": "(a -- )[0]", "src": "a", "srcArrow": "none", - "srcLabel": "", "dst": "a-lifeline-end-2251863791", "dstArrow": "none", - "dstLabel": "", "opacity": 1, "strokeDash": 6, "strokeWidth": 2, @@ -1442,10 +1406,8 @@ "id": "(b -- )[0]", "src": "b", "srcArrow": "none", - "srcLabel": "", "dst": "b-lifeline-end-668380428", "dstArrow": "none", - "dstLabel": "", "opacity": 1, "strokeDash": 6, "strokeWidth": 2, @@ -1482,10 +1444,8 @@ "id": "(c -- )[0]", "src": "c", "srcArrow": "none", - "srcLabel": "", "dst": "c-lifeline-end-955173837", "dstArrow": "none", - "dstLabel": "", "opacity": 1, "strokeDash": 6, "strokeWidth": 2, 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 5bb6077831..89d037409f 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-2320644425 .fill-N1{fill:#0A0F25;} + .d2-2320644425 .fill-N2{fill:#676C7E;} + .d2-2320644425 .fill-N3{fill:#9499AB;} + .d2-2320644425 .fill-N4{fill:#CFD2DD;} + .d2-2320644425 .fill-N5{fill:#DEE1EB;} + .d2-2320644425 .fill-N6{fill:#EEF1F8;} + .d2-2320644425 .fill-N7{fill:#FFFFFF;} + .d2-2320644425 .fill-B1{fill:#0D32B2;} + .d2-2320644425 .fill-B2{fill:#0D32B2;} + .d2-2320644425 .fill-B3{fill:#E3E9FD;} + .d2-2320644425 .fill-B4{fill:#E3E9FD;} + .d2-2320644425 .fill-B5{fill:#EDF0FD;} + .d2-2320644425 .fill-B6{fill:#F7F8FE;} + .d2-2320644425 .fill-AA2{fill:#4A6FF3;} + .d2-2320644425 .fill-AA4{fill:#EDF0FD;} + .d2-2320644425 .fill-AA5{fill:#F7F8FE;} + .d2-2320644425 .fill-AB4{fill:#EDF0FD;} + .d2-2320644425 .fill-AB5{fill:#F7F8FE;} + .d2-2320644425 .stroke-N1{stroke:#0A0F25;} + .d2-2320644425 .stroke-N2{stroke:#676C7E;} + .d2-2320644425 .stroke-N3{stroke:#9499AB;} + .d2-2320644425 .stroke-N4{stroke:#CFD2DD;} + .d2-2320644425 .stroke-N5{stroke:#DEE1EB;} + .d2-2320644425 .stroke-N6{stroke:#EEF1F8;} + .d2-2320644425 .stroke-N7{stroke:#FFFFFF;} + .d2-2320644425 .stroke-B1{stroke:#0D32B2;} + .d2-2320644425 .stroke-B2{stroke:#0D32B2;} + .d2-2320644425 .stroke-B3{stroke:#E3E9FD;} + .d2-2320644425 .stroke-B4{stroke:#E3E9FD;} + .d2-2320644425 .stroke-B5{stroke:#EDF0FD;} + .d2-2320644425 .stroke-B6{stroke:#F7F8FE;} + .d2-2320644425 .stroke-AA2{stroke:#4A6FF3;} + .d2-2320644425 .stroke-AA4{stroke:#EDF0FD;} + .d2-2320644425 .stroke-AA5{stroke:#F7F8FE;} + .d2-2320644425 .stroke-AB4{stroke:#EDF0FD;} + .d2-2320644425 .stroke-AB5{stroke:#F7F8FE;} + .d2-2320644425 .background-color-N1{background-color:#0A0F25;} + .d2-2320644425 .background-color-N2{background-color:#676C7E;} + .d2-2320644425 .background-color-N3{background-color:#9499AB;} + .d2-2320644425 .background-color-N4{background-color:#CFD2DD;} + .d2-2320644425 .background-color-N5{background-color:#DEE1EB;} + .d2-2320644425 .background-color-N6{background-color:#EEF1F8;} + .d2-2320644425 .background-color-N7{background-color:#FFFFFF;} + .d2-2320644425 .background-color-B1{background-color:#0D32B2;} + .d2-2320644425 .background-color-B2{background-color:#0D32B2;} + .d2-2320644425 .background-color-B3{background-color:#E3E9FD;} + .d2-2320644425 .background-color-B4{background-color:#E3E9FD;} + .d2-2320644425 .background-color-B5{background-color:#EDF0FD;} + .d2-2320644425 .background-color-B6{background-color:#F7F8FE;} + .d2-2320644425 .background-color-AA2{background-color:#4A6FF3;} + .d2-2320644425 .background-color-AA4{background-color:#EDF0FD;} + .d2-2320644425 .background-color-AA5{background-color:#F7F8FE;} + .d2-2320644425 .background-color-AB4{background-color:#EDF0FD;} + .d2-2320644425 .background-color-AB5{background-color:#F7F8FE;} + .d2-2320644425 .color-N1{color:#0A0F25;} + .d2-2320644425 .color-N2{color:#676C7E;} + .d2-2320644425 .color-N3{color:#9499AB;} + .d2-2320644425 .color-N4{color:#CFD2DD;} + .d2-2320644425 .color-N5{color:#DEE1EB;} + .d2-2320644425 .color-N6{color:#EEF1F8;} + .d2-2320644425 .color-N7{color:#FFFFFF;} + .d2-2320644425 .color-B1{color:#0D32B2;} + .d2-2320644425 .color-B2{color:#0D32B2;} + .d2-2320644425 .color-B3{color:#E3E9FD;} + .d2-2320644425 .color-B4{color:#E3E9FD;} + .d2-2320644425 .color-B5{color:#EDF0FD;} + .d2-2320644425 .color-B6{color:#F7F8FE;} + .d2-2320644425 .color-AA2{color:#4A6FF3;} + .d2-2320644425 .color-AA4{color:#EDF0FD;} + .d2-2320644425 .color-AA5{color:#F7F8FE;} + .d2-2320644425 .color-AB4{color:#EDF0FD;} + .d2-2320644425 .color-AB5{color:#F7F8FE;}.appendix text.text{fill:#0A0F25}.md{--color-fg-default:#0A0F25;--color-fg-muted:#676C7E;--color-fg-subtle:#9499AB;--color-canvas-default:#FFFFFF;--color-canvas-subtle:#EEF1F8;--color-border-default:#0D32B2;--color-border-muted:#0D32B2;--color-neutral-muted:#EEF1F8;--color-accent-fg:#0D32B2;--color-accent-emphasis:#0D32B2;--color-attention-subtle:#676C7E;--color-danger-fg:red;}.sketch-overlay-B1{fill:url(#streaks-darker);mix-blend-mode:lighten}.sketch-overlay-B2{fill:url(#streaks-darker);mix-blend-mode:lighten}.sketch-overlay-B3{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-B4{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-B5{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-B6{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-AA2{fill:url(#streaks-dark);mix-blend-mode:overlay}.sketch-overlay-AA4{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-AA5{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-AB4{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-AB5{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-N1{fill:url(#streaks-darker);mix-blend-mode:lighten}.sketch-overlay-N2{fill:url(#streaks-dark);mix-blend-mode:overlay}.sketch-overlay-N3{fill:url(#streaks-normal);mix-blend-mode:color-burn}.sketch-overlay-N4{fill:url(#streaks-normal);mix-blend-mode:color-burn}.sketch-overlay-N5{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-N6{fill:url(#streaks-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 af1a1bdcaa..ce14ec563c 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 @@ -634,10 +634,8 @@ "id": "(a -> a)[0]", "src": "a", "srcArrow": "none", - "srcLabel": "", "dst": "a", "dstArrow": "triangle", - "dstLabel": "", "opacity": 1, "strokeDash": 0, "strokeWidth": 2, @@ -682,10 +680,8 @@ "id": "(a -> b)[0]", "src": "a", "srcArrow": "none", - "srcLabel": "", "dst": "b", "dstArrow": "triangle", - "dstLabel": "", "opacity": 1, "strokeDash": 0, "strokeWidth": 2, @@ -722,10 +718,8 @@ "id": "(a -> a.a)[0]", "src": "a", "srcArrow": "none", - "srcLabel": "", "dst": "a.a", "dstArrow": "triangle", - "dstLabel": "", "opacity": 1, "strokeDash": 0, "strokeWidth": 2, @@ -770,10 +764,8 @@ "id": "(a.a -> b)[0]", "src": "a.a", "srcArrow": "none", - "srcLabel": "", "dst": "b", "dstArrow": "triangle", - "dstLabel": "", "opacity": 1, "strokeDash": 0, "strokeWidth": 2, @@ -810,10 +802,8 @@ "id": "(b -> b)[0]", "src": "b", "srcArrow": "none", - "srcLabel": "", "dst": "b", "dstArrow": "triangle", - "dstLabel": "", "opacity": 1, "strokeDash": 0, "strokeWidth": 2, @@ -858,10 +848,8 @@ "id": "(b -> b)[1]", "src": "b", "srcArrow": "none", - "srcLabel": "", "dst": "b", "dstArrow": "triangle", - "dstLabel": "", "opacity": 1, "strokeDash": 0, "strokeWidth": 2, @@ -906,10 +894,8 @@ "id": "(b -> a)[0]", "src": "b", "srcArrow": "none", - "srcLabel": "", "dst": "a", "dstArrow": "triangle", - "dstLabel": "", "opacity": 1, "strokeDash": 0, "strokeWidth": 2, @@ -946,10 +932,8 @@ "id": "(a -> a)[1]", "src": "a", "srcArrow": "none", - "srcLabel": "", "dst": "a", "dstArrow": "triangle", - "dstLabel": "", "opacity": 1, "strokeDash": 0, "strokeWidth": 2, @@ -994,10 +978,8 @@ "id": "(a -> a)[2]", "src": "a", "srcArrow": "none", - "srcLabel": "", "dst": "a", "dstArrow": "triangle", - "dstLabel": "", "opacity": 1, "strokeDash": 0, "strokeWidth": 2, @@ -1042,10 +1024,8 @@ "id": "(a -> a)[4]", "src": "a", "srcArrow": "none", - "srcLabel": "", "dst": "a", "dstArrow": "triangle", - "dstLabel": "", "opacity": 1, "strokeDash": 0, "strokeWidth": 2, @@ -1090,10 +1070,8 @@ "id": "(a -> a)[3]", "src": "a", "srcArrow": "none", - "srcLabel": "", "dst": "a", "dstArrow": "triangle", - "dstLabel": "", "opacity": 1, "strokeDash": 0, "strokeWidth": 2, @@ -1138,10 +1116,8 @@ "id": "(a -> a)[5]", "src": "a", "srcArrow": "none", - "srcLabel": "", "dst": "a", "dstArrow": "triangle", - "dstLabel": "", "opacity": 1, "strokeDash": 0, "strokeWidth": 2, @@ -1186,10 +1162,8 @@ "id": "(b -> c)[0]", "src": "b", "srcArrow": "none", - "srcLabel": "", "dst": "c", "dstArrow": "triangle", - "dstLabel": "", "opacity": 1, "strokeDash": 0, "strokeWidth": 2, @@ -1226,10 +1200,8 @@ "id": "(c -> c)[0]", "src": "c", "srcArrow": "none", - "srcLabel": "", "dst": "c", "dstArrow": "triangle", - "dstLabel": "", "opacity": 1, "strokeDash": 0, "strokeWidth": 2, @@ -1274,10 +1246,8 @@ "id": "(b -> c)[1]", "src": "b", "srcArrow": "none", - "srcLabel": "", "dst": "c", "dstArrow": "triangle", - "dstLabel": "", "opacity": 1, "strokeDash": 0, "strokeWidth": 2, @@ -1314,10 +1284,8 @@ "id": "(c -> c)[1]", "src": "c", "srcArrow": "none", - "srcLabel": "", "dst": "c", "dstArrow": "triangle", - "dstLabel": "", "opacity": 1, "strokeDash": 0, "strokeWidth": 2, @@ -1362,10 +1330,8 @@ "id": "(b -> c)[2]", "src": "b", "srcArrow": "none", - "srcLabel": "", "dst": "c", "dstArrow": "triangle", - "dstLabel": "", "opacity": 1, "strokeDash": 0, "strokeWidth": 2, @@ -1402,10 +1368,8 @@ "id": "(a -- )[0]", "src": "a", "srcArrow": "none", - "srcLabel": "", "dst": "a-lifeline-end-2251863791", "dstArrow": "none", - "dstLabel": "", "opacity": 1, "strokeDash": 6, "strokeWidth": 2, @@ -1442,10 +1406,8 @@ "id": "(b -- )[0]", "src": "b", "srcArrow": "none", - "srcLabel": "", "dst": "b-lifeline-end-668380428", "dstArrow": "none", - "dstLabel": "", "opacity": 1, "strokeDash": 6, "strokeWidth": 2, @@ -1482,10 +1444,8 @@ "id": "(c -- )[0]", "src": "c", "srcArrow": "none", - "srcLabel": "", "dst": "c-lifeline-end-955173837", "dstArrow": "none", - "dstLabel": "", "opacity": 1, "strokeDash": 6, "strokeWidth": 2, 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 5bb6077831..89d037409f 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-2320644425 .fill-N1{fill:#0A0F25;} + .d2-2320644425 .fill-N2{fill:#676C7E;} + .d2-2320644425 .fill-N3{fill:#9499AB;} + .d2-2320644425 .fill-N4{fill:#CFD2DD;} + .d2-2320644425 .fill-N5{fill:#DEE1EB;} + .d2-2320644425 .fill-N6{fill:#EEF1F8;} + .d2-2320644425 .fill-N7{fill:#FFFFFF;} + .d2-2320644425 .fill-B1{fill:#0D32B2;} + .d2-2320644425 .fill-B2{fill:#0D32B2;} + .d2-2320644425 .fill-B3{fill:#E3E9FD;} + .d2-2320644425 .fill-B4{fill:#E3E9FD;} + .d2-2320644425 .fill-B5{fill:#EDF0FD;} + .d2-2320644425 .fill-B6{fill:#F7F8FE;} + .d2-2320644425 .fill-AA2{fill:#4A6FF3;} + .d2-2320644425 .fill-AA4{fill:#EDF0FD;} + .d2-2320644425 .fill-AA5{fill:#F7F8FE;} + .d2-2320644425 .fill-AB4{fill:#EDF0FD;} + .d2-2320644425 .fill-AB5{fill:#F7F8FE;} + .d2-2320644425 .stroke-N1{stroke:#0A0F25;} + .d2-2320644425 .stroke-N2{stroke:#676C7E;} + .d2-2320644425 .stroke-N3{stroke:#9499AB;} + .d2-2320644425 .stroke-N4{stroke:#CFD2DD;} + .d2-2320644425 .stroke-N5{stroke:#DEE1EB;} + .d2-2320644425 .stroke-N6{stroke:#EEF1F8;} + .d2-2320644425 .stroke-N7{stroke:#FFFFFF;} + .d2-2320644425 .stroke-B1{stroke:#0D32B2;} + .d2-2320644425 .stroke-B2{stroke:#0D32B2;} + .d2-2320644425 .stroke-B3{stroke:#E3E9FD;} + .d2-2320644425 .stroke-B4{stroke:#E3E9FD;} + .d2-2320644425 .stroke-B5{stroke:#EDF0FD;} + .d2-2320644425 .stroke-B6{stroke:#F7F8FE;} + .d2-2320644425 .stroke-AA2{stroke:#4A6FF3;} + .d2-2320644425 .stroke-AA4{stroke:#EDF0FD;} + .d2-2320644425 .stroke-AA5{stroke:#F7F8FE;} + .d2-2320644425 .stroke-AB4{stroke:#EDF0FD;} + .d2-2320644425 .stroke-AB5{stroke:#F7F8FE;} + .d2-2320644425 .background-color-N1{background-color:#0A0F25;} + .d2-2320644425 .background-color-N2{background-color:#676C7E;} + .d2-2320644425 .background-color-N3{background-color:#9499AB;} + .d2-2320644425 .background-color-N4{background-color:#CFD2DD;} + .d2-2320644425 .background-color-N5{background-color:#DEE1EB;} + .d2-2320644425 .background-color-N6{background-color:#EEF1F8;} + .d2-2320644425 .background-color-N7{background-color:#FFFFFF;} + .d2-2320644425 .background-color-B1{background-color:#0D32B2;} + .d2-2320644425 .background-color-B2{background-color:#0D32B2;} + .d2-2320644425 .background-color-B3{background-color:#E3E9FD;} + .d2-2320644425 .background-color-B4{background-color:#E3E9FD;} + .d2-2320644425 .background-color-B5{background-color:#EDF0FD;} + .d2-2320644425 .background-color-B6{background-color:#F7F8FE;} + .d2-2320644425 .background-color-AA2{background-color:#4A6FF3;} + .d2-2320644425 .background-color-AA4{background-color:#EDF0FD;} + .d2-2320644425 .background-color-AA5{background-color:#F7F8FE;} + .d2-2320644425 .background-color-AB4{background-color:#EDF0FD;} + .d2-2320644425 .background-color-AB5{background-color:#F7F8FE;} + .d2-2320644425 .color-N1{color:#0A0F25;} + .d2-2320644425 .color-N2{color:#676C7E;} + .d2-2320644425 .color-N3{color:#9499AB;} + .d2-2320644425 .color-N4{color:#CFD2DD;} + .d2-2320644425 .color-N5{color:#DEE1EB;} + .d2-2320644425 .color-N6{color:#EEF1F8;} + .d2-2320644425 .color-N7{color:#FFFFFF;} + .d2-2320644425 .color-B1{color:#0D32B2;} + .d2-2320644425 .color-B2{color:#0D32B2;} + .d2-2320644425 .color-B3{color:#E3E9FD;} + .d2-2320644425 .color-B4{color:#E3E9FD;} + .d2-2320644425 .color-B5{color:#EDF0FD;} + .d2-2320644425 .color-B6{color:#F7F8FE;} + .d2-2320644425 .color-AA2{color:#4A6FF3;} + .d2-2320644425 .color-AA4{color:#EDF0FD;} + .d2-2320644425 .color-AA5{color:#F7F8FE;} + .d2-2320644425 .color-AB4{color:#EDF0FD;} + .d2-2320644425 .color-AB5{color:#F7F8FE;}.appendix text.text{fill:#0A0F25}.md{--color-fg-default:#0A0F25;--color-fg-muted:#676C7E;--color-fg-subtle:#9499AB;--color-canvas-default:#FFFFFF;--color-canvas-subtle:#EEF1F8;--color-border-default:#0D32B2;--color-border-muted:#0D32B2;--color-neutral-muted:#EEF1F8;--color-accent-fg:#0D32B2;--color-accent-emphasis:#0D32B2;--color-attention-subtle:#676C7E;--color-danger-fg:red;}.sketch-overlay-B1{fill:url(#streaks-darker);mix-blend-mode:lighten}.sketch-overlay-B2{fill:url(#streaks-darker);mix-blend-mode:lighten}.sketch-overlay-B3{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-B4{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-B5{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-B6{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-AA2{fill:url(#streaks-dark);mix-blend-mode:overlay}.sketch-overlay-AA4{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-AA5{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-AB4{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-AB5{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-N1{fill:url(#streaks-darker);mix-blend-mode:lighten}.sketch-overlay-N2{fill:url(#streaks-dark);mix-blend-mode:overlay}.sketch-overlay-N3{fill:url(#streaks-normal);mix-blend-mode:color-burn}.sketch-overlay-N4{fill:url(#streaks-normal);mix-blend-mode:color-burn}.sketch-overlay-N5{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-N6{fill:url(#streaks-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 de38680b1a..ef88f2dce3 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 @@ -90,10 +90,8 @@ "id": "b.(1 -> 1)[0]", "src": "b.1", "srcArrow": "none", - "srcLabel": "", "dst": "b.1", "dstArrow": "triangle", - "dstLabel": "", "opacity": 1, "strokeDash": 0, "strokeWidth": 2, @@ -138,10 +136,8 @@ "id": "b.(1 -> 1)[1]", "src": "b.1", "srcArrow": "none", - "srcLabel": "", "dst": "b.1", "dstArrow": "triangle", - "dstLabel": "", "opacity": 1, "strokeDash": 0, "strokeWidth": 2, @@ -186,10 +182,8 @@ "id": "(b -- )[0]", "src": "b", "srcArrow": "none", - "srcLabel": "", "dst": "b-lifeline-end-668380428", "dstArrow": "none", - "dstLabel": "", "opacity": 1, "strokeDash": 6, "strokeWidth": 2, 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 8fe8a66218..876f597ea9 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-1350220942 .fill-N1{fill:#0A0F25;} + .d2-1350220942 .fill-N2{fill:#676C7E;} + .d2-1350220942 .fill-N3{fill:#9499AB;} + .d2-1350220942 .fill-N4{fill:#CFD2DD;} + .d2-1350220942 .fill-N5{fill:#DEE1EB;} + .d2-1350220942 .fill-N6{fill:#EEF1F8;} + .d2-1350220942 .fill-N7{fill:#FFFFFF;} + .d2-1350220942 .fill-B1{fill:#0D32B2;} + .d2-1350220942 .fill-B2{fill:#0D32B2;} + .d2-1350220942 .fill-B3{fill:#E3E9FD;} + .d2-1350220942 .fill-B4{fill:#E3E9FD;} + .d2-1350220942 .fill-B5{fill:#EDF0FD;} + .d2-1350220942 .fill-B6{fill:#F7F8FE;} + .d2-1350220942 .fill-AA2{fill:#4A6FF3;} + .d2-1350220942 .fill-AA4{fill:#EDF0FD;} + .d2-1350220942 .fill-AA5{fill:#F7F8FE;} + .d2-1350220942 .fill-AB4{fill:#EDF0FD;} + .d2-1350220942 .fill-AB5{fill:#F7F8FE;} + .d2-1350220942 .stroke-N1{stroke:#0A0F25;} + .d2-1350220942 .stroke-N2{stroke:#676C7E;} + .d2-1350220942 .stroke-N3{stroke:#9499AB;} + .d2-1350220942 .stroke-N4{stroke:#CFD2DD;} + .d2-1350220942 .stroke-N5{stroke:#DEE1EB;} + .d2-1350220942 .stroke-N6{stroke:#EEF1F8;} + .d2-1350220942 .stroke-N7{stroke:#FFFFFF;} + .d2-1350220942 .stroke-B1{stroke:#0D32B2;} + .d2-1350220942 .stroke-B2{stroke:#0D32B2;} + .d2-1350220942 .stroke-B3{stroke:#E3E9FD;} + .d2-1350220942 .stroke-B4{stroke:#E3E9FD;} + .d2-1350220942 .stroke-B5{stroke:#EDF0FD;} + .d2-1350220942 .stroke-B6{stroke:#F7F8FE;} + .d2-1350220942 .stroke-AA2{stroke:#4A6FF3;} + .d2-1350220942 .stroke-AA4{stroke:#EDF0FD;} + .d2-1350220942 .stroke-AA5{stroke:#F7F8FE;} + .d2-1350220942 .stroke-AB4{stroke:#EDF0FD;} + .d2-1350220942 .stroke-AB5{stroke:#F7F8FE;} + .d2-1350220942 .background-color-N1{background-color:#0A0F25;} + .d2-1350220942 .background-color-N2{background-color:#676C7E;} + .d2-1350220942 .background-color-N3{background-color:#9499AB;} + .d2-1350220942 .background-color-N4{background-color:#CFD2DD;} + .d2-1350220942 .background-color-N5{background-color:#DEE1EB;} + .d2-1350220942 .background-color-N6{background-color:#EEF1F8;} + .d2-1350220942 .background-color-N7{background-color:#FFFFFF;} + .d2-1350220942 .background-color-B1{background-color:#0D32B2;} + .d2-1350220942 .background-color-B2{background-color:#0D32B2;} + .d2-1350220942 .background-color-B3{background-color:#E3E9FD;} + .d2-1350220942 .background-color-B4{background-color:#E3E9FD;} + .d2-1350220942 .background-color-B5{background-color:#EDF0FD;} + .d2-1350220942 .background-color-B6{background-color:#F7F8FE;} + .d2-1350220942 .background-color-AA2{background-color:#4A6FF3;} + .d2-1350220942 .background-color-AA4{background-color:#EDF0FD;} + .d2-1350220942 .background-color-AA5{background-color:#F7F8FE;} + .d2-1350220942 .background-color-AB4{background-color:#EDF0FD;} + .d2-1350220942 .background-color-AB5{background-color:#F7F8FE;} + .d2-1350220942 .color-N1{color:#0A0F25;} + .d2-1350220942 .color-N2{color:#676C7E;} + .d2-1350220942 .color-N3{color:#9499AB;} + .d2-1350220942 .color-N4{color:#CFD2DD;} + .d2-1350220942 .color-N5{color:#DEE1EB;} + .d2-1350220942 .color-N6{color:#EEF1F8;} + .d2-1350220942 .color-N7{color:#FFFFFF;} + .d2-1350220942 .color-B1{color:#0D32B2;} + .d2-1350220942 .color-B2{color:#0D32B2;} + .d2-1350220942 .color-B3{color:#E3E9FD;} + .d2-1350220942 .color-B4{color:#E3E9FD;} + .d2-1350220942 .color-B5{color:#EDF0FD;} + .d2-1350220942 .color-B6{color:#F7F8FE;} + .d2-1350220942 .color-AA2{color:#4A6FF3;} + .d2-1350220942 .color-AA4{color:#EDF0FD;} + .d2-1350220942 .color-AA5{color:#F7F8FE;} + .d2-1350220942 .color-AB4{color:#EDF0FD;} + .d2-1350220942 .color-AB5{color:#F7F8FE;}.appendix text.text{fill:#0A0F25}.md{--color-fg-default:#0A0F25;--color-fg-muted:#676C7E;--color-fg-subtle:#9499AB;--color-canvas-default:#FFFFFF;--color-canvas-subtle:#EEF1F8;--color-border-default:#0D32B2;--color-border-muted:#0D32B2;--color-neutral-muted:#EEF1F8;--color-accent-fg:#0D32B2;--color-accent-emphasis:#0D32B2;--color-attention-subtle:#676C7E;--color-danger-fg:red;}.sketch-overlay-B1{fill:url(#streaks-darker);mix-blend-mode:lighten}.sketch-overlay-B2{fill:url(#streaks-darker);mix-blend-mode:lighten}.sketch-overlay-B3{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-B4{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-B5{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-B6{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-AA2{fill:url(#streaks-dark);mix-blend-mode:overlay}.sketch-overlay-AA4{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-AA5{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-AB4{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-AB5{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-N1{fill:url(#streaks-darker);mix-blend-mode:lighten}.sketch-overlay-N2{fill:url(#streaks-dark);mix-blend-mode:overlay}.sketch-overlay-N3{fill:url(#streaks-normal);mix-blend-mode:color-burn}.sketch-overlay-N4{fill:url(#streaks-normal);mix-blend-mode:color-burn}.sketch-overlay-N5{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-N6{fill:url(#streaks-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 de38680b1a..ef88f2dce3 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 @@ -90,10 +90,8 @@ "id": "b.(1 -> 1)[0]", "src": "b.1", "srcArrow": "none", - "srcLabel": "", "dst": "b.1", "dstArrow": "triangle", - "dstLabel": "", "opacity": 1, "strokeDash": 0, "strokeWidth": 2, @@ -138,10 +136,8 @@ "id": "b.(1 -> 1)[1]", "src": "b.1", "srcArrow": "none", - "srcLabel": "", "dst": "b.1", "dstArrow": "triangle", - "dstLabel": "", "opacity": 1, "strokeDash": 0, "strokeWidth": 2, @@ -186,10 +182,8 @@ "id": "(b -- )[0]", "src": "b", "srcArrow": "none", - "srcLabel": "", "dst": "b-lifeline-end-668380428", "dstArrow": "none", - "dstLabel": "", "opacity": 1, "strokeDash": 6, "strokeWidth": 2, 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 8fe8a66218..876f597ea9 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-1350220942 .fill-N1{fill:#0A0F25;} + .d2-1350220942 .fill-N2{fill:#676C7E;} + .d2-1350220942 .fill-N3{fill:#9499AB;} + .d2-1350220942 .fill-N4{fill:#CFD2DD;} + .d2-1350220942 .fill-N5{fill:#DEE1EB;} + .d2-1350220942 .fill-N6{fill:#EEF1F8;} + .d2-1350220942 .fill-N7{fill:#FFFFFF;} + .d2-1350220942 .fill-B1{fill:#0D32B2;} + .d2-1350220942 .fill-B2{fill:#0D32B2;} + .d2-1350220942 .fill-B3{fill:#E3E9FD;} + .d2-1350220942 .fill-B4{fill:#E3E9FD;} + .d2-1350220942 .fill-B5{fill:#EDF0FD;} + .d2-1350220942 .fill-B6{fill:#F7F8FE;} + .d2-1350220942 .fill-AA2{fill:#4A6FF3;} + .d2-1350220942 .fill-AA4{fill:#EDF0FD;} + .d2-1350220942 .fill-AA5{fill:#F7F8FE;} + .d2-1350220942 .fill-AB4{fill:#EDF0FD;} + .d2-1350220942 .fill-AB5{fill:#F7F8FE;} + .d2-1350220942 .stroke-N1{stroke:#0A0F25;} + .d2-1350220942 .stroke-N2{stroke:#676C7E;} + .d2-1350220942 .stroke-N3{stroke:#9499AB;} + .d2-1350220942 .stroke-N4{stroke:#CFD2DD;} + .d2-1350220942 .stroke-N5{stroke:#DEE1EB;} + .d2-1350220942 .stroke-N6{stroke:#EEF1F8;} + .d2-1350220942 .stroke-N7{stroke:#FFFFFF;} + .d2-1350220942 .stroke-B1{stroke:#0D32B2;} + .d2-1350220942 .stroke-B2{stroke:#0D32B2;} + .d2-1350220942 .stroke-B3{stroke:#E3E9FD;} + .d2-1350220942 .stroke-B4{stroke:#E3E9FD;} + .d2-1350220942 .stroke-B5{stroke:#EDF0FD;} + .d2-1350220942 .stroke-B6{stroke:#F7F8FE;} + .d2-1350220942 .stroke-AA2{stroke:#4A6FF3;} + .d2-1350220942 .stroke-AA4{stroke:#EDF0FD;} + .d2-1350220942 .stroke-AA5{stroke:#F7F8FE;} + .d2-1350220942 .stroke-AB4{stroke:#EDF0FD;} + .d2-1350220942 .stroke-AB5{stroke:#F7F8FE;} + .d2-1350220942 .background-color-N1{background-color:#0A0F25;} + .d2-1350220942 .background-color-N2{background-color:#676C7E;} + .d2-1350220942 .background-color-N3{background-color:#9499AB;} + .d2-1350220942 .background-color-N4{background-color:#CFD2DD;} + .d2-1350220942 .background-color-N5{background-color:#DEE1EB;} + .d2-1350220942 .background-color-N6{background-color:#EEF1F8;} + .d2-1350220942 .background-color-N7{background-color:#FFFFFF;} + .d2-1350220942 .background-color-B1{background-color:#0D32B2;} + .d2-1350220942 .background-color-B2{background-color:#0D32B2;} + .d2-1350220942 .background-color-B3{background-color:#E3E9FD;} + .d2-1350220942 .background-color-B4{background-color:#E3E9FD;} + .d2-1350220942 .background-color-B5{background-color:#EDF0FD;} + .d2-1350220942 .background-color-B6{background-color:#F7F8FE;} + .d2-1350220942 .background-color-AA2{background-color:#4A6FF3;} + .d2-1350220942 .background-color-AA4{background-color:#EDF0FD;} + .d2-1350220942 .background-color-AA5{background-color:#F7F8FE;} + .d2-1350220942 .background-color-AB4{background-color:#EDF0FD;} + .d2-1350220942 .background-color-AB5{background-color:#F7F8FE;} + .d2-1350220942 .color-N1{color:#0A0F25;} + .d2-1350220942 .color-N2{color:#676C7E;} + .d2-1350220942 .color-N3{color:#9499AB;} + .d2-1350220942 .color-N4{color:#CFD2DD;} + .d2-1350220942 .color-N5{color:#DEE1EB;} + .d2-1350220942 .color-N6{color:#EEF1F8;} + .d2-1350220942 .color-N7{color:#FFFFFF;} + .d2-1350220942 .color-B1{color:#0D32B2;} + .d2-1350220942 .color-B2{color:#0D32B2;} + .d2-1350220942 .color-B3{color:#E3E9FD;} + .d2-1350220942 .color-B4{color:#E3E9FD;} + .d2-1350220942 .color-B5{color:#EDF0FD;} + .d2-1350220942 .color-B6{color:#F7F8FE;} + .d2-1350220942 .color-AA2{color:#4A6FF3;} + .d2-1350220942 .color-AA4{color:#EDF0FD;} + .d2-1350220942 .color-AA5{color:#F7F8FE;} + .d2-1350220942 .color-AB4{color:#EDF0FD;} + .d2-1350220942 .color-AB5{color:#F7F8FE;}.appendix text.text{fill:#0A0F25}.md{--color-fg-default:#0A0F25;--color-fg-muted:#676C7E;--color-fg-subtle:#9499AB;--color-canvas-default:#FFFFFF;--color-canvas-subtle:#EEF1F8;--color-border-default:#0D32B2;--color-border-muted:#0D32B2;--color-neutral-muted:#EEF1F8;--color-accent-fg:#0D32B2;--color-accent-emphasis:#0D32B2;--color-attention-subtle:#676C7E;--color-danger-fg:red;}.sketch-overlay-B1{fill:url(#streaks-darker);mix-blend-mode:lighten}.sketch-overlay-B2{fill:url(#streaks-darker);mix-blend-mode:lighten}.sketch-overlay-B3{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-B4{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-B5{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-B6{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-AA2{fill:url(#streaks-dark);mix-blend-mode:overlay}.sketch-overlay-AA4{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-AA5{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-AB4{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-AB5{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-N1{fill:url(#streaks-darker);mix-blend-mode:lighten}.sketch-overlay-N2{fill:url(#streaks-dark);mix-blend-mode:overlay}.sketch-overlay-N3{fill:url(#streaks-normal);mix-blend-mode:color-burn}.sketch-overlay-N4{fill:url(#streaks-normal);mix-blend-mode:color-burn}.sketch-overlay-N5{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-N6{fill:url(#streaks-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 ea7cbd886f..020c95ee69 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 @@ -1034,10 +1034,8 @@ "id": "(b -> l1.b)[0]", "src": "b", "srcArrow": "none", - "srcLabel": "", "dst": "l1.b", "dstArrow": "triangle", - "dstLabel": "", "opacity": 1, "strokeDash": 0, "strokeWidth": 2, @@ -1083,10 +1081,8 @@ "id": "(a -> l1.a)[0]", "src": "a", "srcArrow": "none", - "srcLabel": "", "dst": "l1.a", "dstArrow": "triangle", - "dstLabel": "", "opacity": 1, "strokeDash": 0, "strokeWidth": 2, @@ -1132,10 +1128,8 @@ "id": "(c -> l1.c)[0]", "src": "c", "srcArrow": "none", - "srcLabel": "", "dst": "l1.c", "dstArrow": "triangle", - "dstLabel": "", "opacity": 1, "strokeDash": 0, "strokeWidth": 2, @@ -1181,10 +1175,8 @@ "id": "(l1.a -> l2c1.a)[0]", "src": "l1.a", "srcArrow": "none", - "srcLabel": "", "dst": "l2c1.a", "dstArrow": "triangle", - "dstLabel": "", "opacity": 1, "strokeDash": 0, "strokeWidth": 2, @@ -1242,10 +1234,8 @@ "id": "(l1.c -> l2c3.c)[0]", "src": "l1.c", "srcArrow": "none", - "srcLabel": "", "dst": "l2c3.c", "dstArrow": "triangle", - "dstLabel": "", "opacity": 1, "strokeDash": 0, "strokeWidth": 2, @@ -1303,10 +1293,8 @@ "id": "(l1.b -> l2c2.b)[0]", "src": "l1.b", "srcArrow": "none", - "srcLabel": "", "dst": "l2c2.b", "dstArrow": "triangle", - "dstLabel": "", "opacity": 1, "strokeDash": 0, "strokeWidth": 2, @@ -1364,10 +1352,8 @@ "id": "(l2c1.a -> l3c1.a)[0]", "src": "l2c1.a", "srcArrow": "none", - "srcLabel": "", "dst": "l3c1.a", "dstArrow": "triangle", - "dstLabel": "", "opacity": 1, "strokeDash": 0, "strokeWidth": 2, @@ -1425,10 +1411,8 @@ "id": "(l2c2.b -> l3c1.b)[0]", "src": "l2c2.b", "srcArrow": "none", - "srcLabel": "", "dst": "l3c1.b", "dstArrow": "triangle", - "dstLabel": "", "opacity": 1, "strokeDash": 0, "strokeWidth": 2, @@ -1486,10 +1470,8 @@ "id": "(l2c3.c -> l3c2.c)[0]", "src": "l2c3.c", "srcArrow": "none", - "srcLabel": "", "dst": "l3c2.c", "dstArrow": "triangle", - "dstLabel": "", "opacity": 1, "strokeDash": 0, "strokeWidth": 2, @@ -1547,10 +1529,8 @@ "id": "(l3c1.a -> l4.c1.a)[0]", "src": "l3c1.a", "srcArrow": "none", - "srcLabel": "", "dst": "l4.c1.a", "dstArrow": "triangle", - "dstLabel": "", "opacity": 1, "strokeDash": 0, "strokeWidth": 2, @@ -1620,10 +1600,8 @@ "id": "(l3c1.b -> l4.c2.b)[0]", "src": "l3c1.b", "srcArrow": "none", - "srcLabel": "", "dst": "l4.c2.b", "dstArrow": "triangle", - "dstLabel": "", "opacity": 1, "strokeDash": 0, "strokeWidth": 2, @@ -1693,10 +1671,8 @@ "id": "(l3c2.c -> l4.c3.c)[0]", "src": "l3c2.c", "srcArrow": "none", - "srcLabel": "", "dst": "l4.c3.c", "dstArrow": "triangle", - "dstLabel": "", "opacity": 1, "strokeDash": 0, "strokeWidth": 2, 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 7434795662..ac51896924 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-3642278595 .fill-N1{fill:#0A0F25;} + .d2-3642278595 .fill-N2{fill:#676C7E;} + .d2-3642278595 .fill-N3{fill:#9499AB;} + .d2-3642278595 .fill-N4{fill:#CFD2DD;} + .d2-3642278595 .fill-N5{fill:#DEE1EB;} + .d2-3642278595 .fill-N6{fill:#EEF1F8;} + .d2-3642278595 .fill-N7{fill:#FFFFFF;} + .d2-3642278595 .fill-B1{fill:#0D32B2;} + .d2-3642278595 .fill-B2{fill:#0D32B2;} + .d2-3642278595 .fill-B3{fill:#E3E9FD;} + .d2-3642278595 .fill-B4{fill:#E3E9FD;} + .d2-3642278595 .fill-B5{fill:#EDF0FD;} + .d2-3642278595 .fill-B6{fill:#F7F8FE;} + .d2-3642278595 .fill-AA2{fill:#4A6FF3;} + .d2-3642278595 .fill-AA4{fill:#EDF0FD;} + .d2-3642278595 .fill-AA5{fill:#F7F8FE;} + .d2-3642278595 .fill-AB4{fill:#EDF0FD;} + .d2-3642278595 .fill-AB5{fill:#F7F8FE;} + .d2-3642278595 .stroke-N1{stroke:#0A0F25;} + .d2-3642278595 .stroke-N2{stroke:#676C7E;} + .d2-3642278595 .stroke-N3{stroke:#9499AB;} + .d2-3642278595 .stroke-N4{stroke:#CFD2DD;} + .d2-3642278595 .stroke-N5{stroke:#DEE1EB;} + .d2-3642278595 .stroke-N6{stroke:#EEF1F8;} + .d2-3642278595 .stroke-N7{stroke:#FFFFFF;} + .d2-3642278595 .stroke-B1{stroke:#0D32B2;} + .d2-3642278595 .stroke-B2{stroke:#0D32B2;} + .d2-3642278595 .stroke-B3{stroke:#E3E9FD;} + .d2-3642278595 .stroke-B4{stroke:#E3E9FD;} + .d2-3642278595 .stroke-B5{stroke:#EDF0FD;} + .d2-3642278595 .stroke-B6{stroke:#F7F8FE;} + .d2-3642278595 .stroke-AA2{stroke:#4A6FF3;} + .d2-3642278595 .stroke-AA4{stroke:#EDF0FD;} + .d2-3642278595 .stroke-AA5{stroke:#F7F8FE;} + .d2-3642278595 .stroke-AB4{stroke:#EDF0FD;} + .d2-3642278595 .stroke-AB5{stroke:#F7F8FE;} + .d2-3642278595 .background-color-N1{background-color:#0A0F25;} + .d2-3642278595 .background-color-N2{background-color:#676C7E;} + .d2-3642278595 .background-color-N3{background-color:#9499AB;} + .d2-3642278595 .background-color-N4{background-color:#CFD2DD;} + .d2-3642278595 .background-color-N5{background-color:#DEE1EB;} + .d2-3642278595 .background-color-N6{background-color:#EEF1F8;} + .d2-3642278595 .background-color-N7{background-color:#FFFFFF;} + .d2-3642278595 .background-color-B1{background-color:#0D32B2;} + .d2-3642278595 .background-color-B2{background-color:#0D32B2;} + .d2-3642278595 .background-color-B3{background-color:#E3E9FD;} + .d2-3642278595 .background-color-B4{background-color:#E3E9FD;} + .d2-3642278595 .background-color-B5{background-color:#EDF0FD;} + .d2-3642278595 .background-color-B6{background-color:#F7F8FE;} + .d2-3642278595 .background-color-AA2{background-color:#4A6FF3;} + .d2-3642278595 .background-color-AA4{background-color:#EDF0FD;} + .d2-3642278595 .background-color-AA5{background-color:#F7F8FE;} + .d2-3642278595 .background-color-AB4{background-color:#EDF0FD;} + .d2-3642278595 .background-color-AB5{background-color:#F7F8FE;} + .d2-3642278595 .color-N1{color:#0A0F25;} + .d2-3642278595 .color-N2{color:#676C7E;} + .d2-3642278595 .color-N3{color:#9499AB;} + .d2-3642278595 .color-N4{color:#CFD2DD;} + .d2-3642278595 .color-N5{color:#DEE1EB;} + .d2-3642278595 .color-N6{color:#EEF1F8;} + .d2-3642278595 .color-N7{color:#FFFFFF;} + .d2-3642278595 .color-B1{color:#0D32B2;} + .d2-3642278595 .color-B2{color:#0D32B2;} + .d2-3642278595 .color-B3{color:#E3E9FD;} + .d2-3642278595 .color-B4{color:#E3E9FD;} + .d2-3642278595 .color-B5{color:#EDF0FD;} + .d2-3642278595 .color-B6{color:#F7F8FE;} + .d2-3642278595 .color-AA2{color:#4A6FF3;} + .d2-3642278595 .color-AA4{color:#EDF0FD;} + .d2-3642278595 .color-AA5{color:#F7F8FE;} + .d2-3642278595 .color-AB4{color:#EDF0FD;} + .d2-3642278595 .color-AB5{color:#F7F8FE;}.appendix text.text{fill:#0A0F25}.md{--color-fg-default:#0A0F25;--color-fg-muted:#676C7E;--color-fg-subtle:#9499AB;--color-canvas-default:#FFFFFF;--color-canvas-subtle:#EEF1F8;--color-border-default:#0D32B2;--color-border-muted:#0D32B2;--color-neutral-muted:#EEF1F8;--color-accent-fg:#0D32B2;--color-accent-emphasis:#0D32B2;--color-attention-subtle:#676C7E;--color-danger-fg:red;}.sketch-overlay-B1{fill:url(#streaks-darker);mix-blend-mode:lighten}.sketch-overlay-B2{fill:url(#streaks-darker);mix-blend-mode:lighten}.sketch-overlay-B3{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-B4{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-B5{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-B6{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-AA2{fill:url(#streaks-dark);mix-blend-mode:overlay}.sketch-overlay-AA4{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-AA5{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-AB4{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-AB5{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-N1{fill:url(#streaks-darker);mix-blend-mode:lighten}.sketch-overlay-N2{fill:url(#streaks-dark);mix-blend-mode:overlay}.sketch-overlay-N3{fill:url(#streaks-normal);mix-blend-mode:color-burn}.sketch-overlay-N4{fill:url(#streaks-normal);mix-blend-mode:color-burn}.sketch-overlay-N5{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-N6{fill:url(#streaks-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 \ No newline at end of file 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 6a7d604a8f..3eabfc40cd 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 @@ -1034,10 +1034,8 @@ "id": "(b -> l1.b)[0]", "src": "b", "srcArrow": "none", - "srcLabel": "", "dst": "l1.b", "dstArrow": "triangle", - "dstLabel": "", "opacity": 1, "strokeDash": 0, "strokeWidth": 2, @@ -1074,10 +1072,8 @@ "id": "(a -> l1.a)[0]", "src": "a", "srcArrow": "none", - "srcLabel": "", "dst": "l1.a", "dstArrow": "triangle", - "dstLabel": "", "opacity": 1, "strokeDash": 0, "strokeWidth": 2, @@ -1114,10 +1110,8 @@ "id": "(c -> l1.c)[0]", "src": "c", "srcArrow": "none", - "srcLabel": "", "dst": "l1.c", "dstArrow": "triangle", - "dstLabel": "", "opacity": 1, "strokeDash": 0, "strokeWidth": 2, @@ -1154,10 +1148,8 @@ "id": "(l1.a -> l2c1.a)[0]", "src": "l1.a", "srcArrow": "none", - "srcLabel": "", "dst": "l2c1.a", "dstArrow": "triangle", - "dstLabel": "", "opacity": 1, "strokeDash": 0, "strokeWidth": 2, @@ -1202,10 +1194,8 @@ "id": "(l1.c -> l2c3.c)[0]", "src": "l1.c", "srcArrow": "none", - "srcLabel": "", "dst": "l2c3.c", "dstArrow": "triangle", - "dstLabel": "", "opacity": 1, "strokeDash": 0, "strokeWidth": 2, @@ -1250,10 +1240,8 @@ "id": "(l1.b -> l2c2.b)[0]", "src": "l1.b", "srcArrow": "none", - "srcLabel": "", "dst": "l2c2.b", "dstArrow": "triangle", - "dstLabel": "", "opacity": 1, "strokeDash": 0, "strokeWidth": 2, @@ -1298,10 +1286,8 @@ "id": "(l2c1.a -> l3c1.a)[0]", "src": "l2c1.a", "srcArrow": "none", - "srcLabel": "", "dst": "l3c1.a", "dstArrow": "triangle", - "dstLabel": "", "opacity": 1, "strokeDash": 0, "strokeWidth": 2, @@ -1346,10 +1332,8 @@ "id": "(l2c2.b -> l3c1.b)[0]", "src": "l2c2.b", "srcArrow": "none", - "srcLabel": "", "dst": "l3c1.b", "dstArrow": "triangle", - "dstLabel": "", "opacity": 1, "strokeDash": 0, "strokeWidth": 2, @@ -1394,10 +1378,8 @@ "id": "(l2c3.c -> l3c2.c)[0]", "src": "l2c3.c", "srcArrow": "none", - "srcLabel": "", "dst": "l3c2.c", "dstArrow": "triangle", - "dstLabel": "", "opacity": 1, "strokeDash": 0, "strokeWidth": 2, @@ -1434,10 +1416,8 @@ "id": "(l3c1.a -> l4.c1.a)[0]", "src": "l3c1.a", "srcArrow": "none", - "srcLabel": "", "dst": "l4.c1.a", "dstArrow": "triangle", - "dstLabel": "", "opacity": 1, "strokeDash": 0, "strokeWidth": 2, @@ -1474,10 +1454,8 @@ "id": "(l3c1.b -> l4.c2.b)[0]", "src": "l3c1.b", "srcArrow": "none", - "srcLabel": "", "dst": "l4.c2.b", "dstArrow": "triangle", - "dstLabel": "", "opacity": 1, "strokeDash": 0, "strokeWidth": 2, @@ -1522,10 +1500,8 @@ "id": "(l3c2.c -> l4.c3.c)[0]", "src": "l3c2.c", "srcArrow": "none", - "srcLabel": "", "dst": "l4.c3.c", "dstArrow": "triangle", - "dstLabel": "", "opacity": 1, "strokeDash": 0, "strokeWidth": 2, 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 f9c140d136..d761daee8c 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-395260809 .fill-N1{fill:#0A0F25;} + .d2-395260809 .fill-N2{fill:#676C7E;} + .d2-395260809 .fill-N3{fill:#9499AB;} + .d2-395260809 .fill-N4{fill:#CFD2DD;} + .d2-395260809 .fill-N5{fill:#DEE1EB;} + .d2-395260809 .fill-N6{fill:#EEF1F8;} + .d2-395260809 .fill-N7{fill:#FFFFFF;} + .d2-395260809 .fill-B1{fill:#0D32B2;} + .d2-395260809 .fill-B2{fill:#0D32B2;} + .d2-395260809 .fill-B3{fill:#E3E9FD;} + .d2-395260809 .fill-B4{fill:#E3E9FD;} + .d2-395260809 .fill-B5{fill:#EDF0FD;} + .d2-395260809 .fill-B6{fill:#F7F8FE;} + .d2-395260809 .fill-AA2{fill:#4A6FF3;} + .d2-395260809 .fill-AA4{fill:#EDF0FD;} + .d2-395260809 .fill-AA5{fill:#F7F8FE;} + .d2-395260809 .fill-AB4{fill:#EDF0FD;} + .d2-395260809 .fill-AB5{fill:#F7F8FE;} + .d2-395260809 .stroke-N1{stroke:#0A0F25;} + .d2-395260809 .stroke-N2{stroke:#676C7E;} + .d2-395260809 .stroke-N3{stroke:#9499AB;} + .d2-395260809 .stroke-N4{stroke:#CFD2DD;} + .d2-395260809 .stroke-N5{stroke:#DEE1EB;} + .d2-395260809 .stroke-N6{stroke:#EEF1F8;} + .d2-395260809 .stroke-N7{stroke:#FFFFFF;} + .d2-395260809 .stroke-B1{stroke:#0D32B2;} + .d2-395260809 .stroke-B2{stroke:#0D32B2;} + .d2-395260809 .stroke-B3{stroke:#E3E9FD;} + .d2-395260809 .stroke-B4{stroke:#E3E9FD;} + .d2-395260809 .stroke-B5{stroke:#EDF0FD;} + .d2-395260809 .stroke-B6{stroke:#F7F8FE;} + .d2-395260809 .stroke-AA2{stroke:#4A6FF3;} + .d2-395260809 .stroke-AA4{stroke:#EDF0FD;} + .d2-395260809 .stroke-AA5{stroke:#F7F8FE;} + .d2-395260809 .stroke-AB4{stroke:#EDF0FD;} + .d2-395260809 .stroke-AB5{stroke:#F7F8FE;} + .d2-395260809 .background-color-N1{background-color:#0A0F25;} + .d2-395260809 .background-color-N2{background-color:#676C7E;} + .d2-395260809 .background-color-N3{background-color:#9499AB;} + .d2-395260809 .background-color-N4{background-color:#CFD2DD;} + .d2-395260809 .background-color-N5{background-color:#DEE1EB;} + .d2-395260809 .background-color-N6{background-color:#EEF1F8;} + .d2-395260809 .background-color-N7{background-color:#FFFFFF;} + .d2-395260809 .background-color-B1{background-color:#0D32B2;} + .d2-395260809 .background-color-B2{background-color:#0D32B2;} + .d2-395260809 .background-color-B3{background-color:#E3E9FD;} + .d2-395260809 .background-color-B4{background-color:#E3E9FD;} + .d2-395260809 .background-color-B5{background-color:#EDF0FD;} + .d2-395260809 .background-color-B6{background-color:#F7F8FE;} + .d2-395260809 .background-color-AA2{background-color:#4A6FF3;} + .d2-395260809 .background-color-AA4{background-color:#EDF0FD;} + .d2-395260809 .background-color-AA5{background-color:#F7F8FE;} + .d2-395260809 .background-color-AB4{background-color:#EDF0FD;} + .d2-395260809 .background-color-AB5{background-color:#F7F8FE;} + .d2-395260809 .color-N1{color:#0A0F25;} + .d2-395260809 .color-N2{color:#676C7E;} + .d2-395260809 .color-N3{color:#9499AB;} + .d2-395260809 .color-N4{color:#CFD2DD;} + .d2-395260809 .color-N5{color:#DEE1EB;} + .d2-395260809 .color-N6{color:#EEF1F8;} + .d2-395260809 .color-N7{color:#FFFFFF;} + .d2-395260809 .color-B1{color:#0D32B2;} + .d2-395260809 .color-B2{color:#0D32B2;} + .d2-395260809 .color-B3{color:#E3E9FD;} + .d2-395260809 .color-B4{color:#E3E9FD;} + .d2-395260809 .color-B5{color:#EDF0FD;} + .d2-395260809 .color-B6{color:#F7F8FE;} + .d2-395260809 .color-AA2{color:#4A6FF3;} + .d2-395260809 .color-AA4{color:#EDF0FD;} + .d2-395260809 .color-AA5{color:#F7F8FE;} + .d2-395260809 .color-AB4{color:#EDF0FD;} + .d2-395260809 .color-AB5{color:#F7F8FE;}.appendix text.text{fill:#0A0F25}.md{--color-fg-default:#0A0F25;--color-fg-muted:#676C7E;--color-fg-subtle:#9499AB;--color-canvas-default:#FFFFFF;--color-canvas-subtle:#EEF1F8;--color-border-default:#0D32B2;--color-border-muted:#0D32B2;--color-neutral-muted:#EEF1F8;--color-accent-fg:#0D32B2;--color-accent-emphasis:#0D32B2;--color-attention-subtle:#676C7E;--color-danger-fg:red;}.sketch-overlay-B1{fill:url(#streaks-darker);mix-blend-mode:lighten}.sketch-overlay-B2{fill:url(#streaks-darker);mix-blend-mode:lighten}.sketch-overlay-B3{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-B4{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-B5{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-B6{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-AA2{fill:url(#streaks-dark);mix-blend-mode:overlay}.sketch-overlay-AA4{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-AA5{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-AB4{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-AB5{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-N1{fill:url(#streaks-darker);mix-blend-mode:lighten}.sketch-overlay-N2{fill:url(#streaks-dark);mix-blend-mode:overlay}.sketch-overlay-N3{fill:url(#streaks-normal);mix-blend-mode:color-burn}.sketch-overlay-N4{fill:url(#streaks-normal);mix-blend-mode:color-burn}.sketch-overlay-N5{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-N6{fill:url(#streaks-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 \ No newline at end of file diff --git a/e2etests/testdata/regression/unconnected/dagre/board.exp.json b/e2etests/testdata/regression/unconnected/dagre/board.exp.json index 6567131b63..c8e8d31dd2 100644 --- a/e2etests/testdata/regression/unconnected/dagre/board.exp.json +++ b/e2etests/testdata/regression/unconnected/dagre/board.exp.json @@ -540,10 +540,8 @@ "id": "(OEM Factory -> OEM Warehouse)[0]", "src": "OEM Factory", "srcArrow": "none", - "srcLabel": "", "dst": "OEM Warehouse", "dstArrow": "triangle", - "dstLabel": "", "opacity": 1, "strokeDash": 0, "strokeWidth": 2, @@ -589,10 +587,8 @@ "id": "(OEM Factory -> Distributor Warehouse)[0]", "src": "OEM Factory", "srcArrow": "none", - "srcLabel": "", "dst": "Distributor Warehouse", "dstArrow": "triangle", - "dstLabel": "", "opacity": 1, "strokeDash": 0, "strokeWidth": 2, @@ -638,10 +634,8 @@ "id": "(OEM Factory -> Gos Warehouse)[0]", "src": "OEM Factory", "srcArrow": "none", - "srcLabel": "", "dst": "Gos Warehouse", "dstArrow": "triangle", - "dstLabel": "", "opacity": 1, "strokeDash": 0, "strokeWidth": 2, @@ -711,10 +705,8 @@ "id": "Gos Warehouse.(Master -> Regional-1)[0]", "src": "Gos Warehouse.Master", "srcArrow": "none", - "srcLabel": "", "dst": "Gos Warehouse.Regional-1", "dstArrow": "triangle", - "dstLabel": "", "opacity": 1, "strokeDash": 0, "strokeWidth": 2, @@ -760,10 +752,8 @@ "id": "Gos Warehouse.(Master -> Regional-2)[0]", "src": "Gos Warehouse.Master", "srcArrow": "none", - "srcLabel": "", "dst": "Gos Warehouse.Regional-2", "dstArrow": "triangle", - "dstLabel": "", "opacity": 1, "strokeDash": 0, "strokeWidth": 2, @@ -821,10 +811,8 @@ "id": "Gos Warehouse.(Master -> Regional-N)[0]", "src": "Gos Warehouse.Master", "srcArrow": "none", - "srcLabel": "", "dst": "Gos Warehouse.Regional-N", "dstArrow": "triangle", - "dstLabel": "", "opacity": 1, "strokeDash": 0, "strokeWidth": 2, @@ -906,10 +894,8 @@ "id": "Gos Warehouse.(Regional-1 -> Regional-2)[0]", "src": "Gos Warehouse.Regional-1", "srcArrow": "none", - "srcLabel": "", "dst": "Gos Warehouse.Regional-2", "dstArrow": "triangle", - "dstLabel": "", "opacity": 1, "strokeDash": 0, "strokeWidth": 2, @@ -955,10 +941,8 @@ "id": "Gos Warehouse.(Regional-2 -> Regional-N)[0]", "src": "Gos Warehouse.Regional-2", "srcArrow": "none", - "srcLabel": "", "dst": "Gos Warehouse.Regional-N", "dstArrow": "triangle", - "dstLabel": "", "opacity": 1, "strokeDash": 0, "strokeWidth": 2, @@ -1004,10 +988,8 @@ "id": "Gos Warehouse.(Regional-N -> Regional-1)[0]", "src": "Gos Warehouse.Regional-N", "srcArrow": "none", - "srcLabel": "", "dst": "Gos Warehouse.Regional-1", "dstArrow": "triangle", - "dstLabel": "", "opacity": 1, "strokeDash": 0, "strokeWidth": 2, @@ -1065,10 +1047,8 @@ "id": "(OEM Warehouse -> Gos Warehouse)[0]", "src": "OEM Warehouse", "srcArrow": "none", - "srcLabel": "", "dst": "Gos Warehouse", "dstArrow": "triangle", - "dstLabel": "", "opacity": 1, "strokeDash": 0, "strokeWidth": 2, @@ -1114,10 +1094,8 @@ "id": "(Distributor Warehouse -> Gos Warehouse)[0]", "src": "Distributor Warehouse", "srcArrow": "none", - "srcLabel": "", "dst": "Gos Warehouse", "dstArrow": "triangle", - "dstLabel": "", "opacity": 1, "strokeDash": 0, "strokeWidth": 2, diff --git a/e2etests/testdata/regression/unconnected/dagre/sketch.exp.svg b/e2etests/testdata/regression/unconnected/dagre/sketch.exp.svg index 367e98c8c6..3f41993734 100644 --- a/e2etests/testdata/regression/unconnected/dagre/sketch.exp.svg +++ b/e2etests/testdata/regression/unconnected/dagre/sketch.exp.svg @@ -1,20 +1,20 @@ -OEM FactoryOEM WarehouseDistributor WarehouseGos WarehouseCustomer SiteWorkflow-I (Warehousing, Installation)MasterRegional-1Regional-2Regional-N
      @@ -842,7 +842,7 @@
    • Staging
    • Dispatch to Site
    -
    InstallationSupport +InstallationSupport
    \ No newline at end of file diff --git a/e2etests/testdata/regression/unconnected/elk/board.exp.json b/e2etests/testdata/regression/unconnected/elk/board.exp.json index f954eb796d..6c0c100c21 100644 --- a/e2etests/testdata/regression/unconnected/elk/board.exp.json +++ b/e2etests/testdata/regression/unconnected/elk/board.exp.json @@ -540,10 +540,8 @@ "id": "(OEM Factory -> OEM Warehouse)[0]", "src": "OEM Factory", "srcArrow": "none", - "srcLabel": "", "dst": "OEM Warehouse", "dstArrow": "triangle", - "dstLabel": "", "opacity": 1, "strokeDash": 0, "strokeWidth": 2, @@ -588,10 +586,8 @@ "id": "(OEM Factory -> Distributor Warehouse)[0]", "src": "OEM Factory", "srcArrow": "none", - "srcLabel": "", "dst": "Distributor Warehouse", "dstArrow": "triangle", - "dstLabel": "", "opacity": 1, "strokeDash": 0, "strokeWidth": 2, @@ -636,10 +632,8 @@ "id": "(OEM Factory -> Gos Warehouse)[0]", "src": "OEM Factory", "srcArrow": "none", - "srcLabel": "", "dst": "Gos Warehouse", "dstArrow": "triangle", - "dstLabel": "", "opacity": 1, "strokeDash": 0, "strokeWidth": 2, @@ -684,10 +678,8 @@ "id": "Gos Warehouse.(Master -> Regional-1)[0]", "src": "Gos Warehouse.Master", "srcArrow": "none", - "srcLabel": "", "dst": "Gos Warehouse.Regional-1", "dstArrow": "triangle", - "dstLabel": "", "opacity": 1, "strokeDash": 0, "strokeWidth": 2, @@ -724,10 +716,8 @@ "id": "Gos Warehouse.(Master -> Regional-2)[0]", "src": "Gos Warehouse.Master", "srcArrow": "none", - "srcLabel": "", "dst": "Gos Warehouse.Regional-2", "dstArrow": "triangle", - "dstLabel": "", "opacity": 1, "strokeDash": 0, "strokeWidth": 2, @@ -772,10 +762,8 @@ "id": "Gos Warehouse.(Master -> Regional-N)[0]", "src": "Gos Warehouse.Master", "srcArrow": "none", - "srcLabel": "", "dst": "Gos Warehouse.Regional-N", "dstArrow": "triangle", - "dstLabel": "", "opacity": 1, "strokeDash": 0, "strokeWidth": 2, @@ -828,10 +816,8 @@ "id": "Gos Warehouse.(Regional-1 -> Regional-2)[0]", "src": "Gos Warehouse.Regional-1", "srcArrow": "none", - "srcLabel": "", "dst": "Gos Warehouse.Regional-2", "dstArrow": "triangle", - "dstLabel": "", "opacity": 1, "strokeDash": 0, "strokeWidth": 2, @@ -876,10 +862,8 @@ "id": "Gos Warehouse.(Regional-2 -> Regional-N)[0]", "src": "Gos Warehouse.Regional-2", "srcArrow": "none", - "srcLabel": "", "dst": "Gos Warehouse.Regional-N", "dstArrow": "triangle", - "dstLabel": "", "opacity": 1, "strokeDash": 0, "strokeWidth": 2, @@ -916,10 +900,8 @@ "id": "Gos Warehouse.(Regional-N -> Regional-1)[0]", "src": "Gos Warehouse.Regional-N", "srcArrow": "none", - "srcLabel": "", "dst": "Gos Warehouse.Regional-1", "dstArrow": "triangle", - "dstLabel": "", "opacity": 1, "strokeDash": 0, "strokeWidth": 2, @@ -964,10 +946,8 @@ "id": "(OEM Warehouse -> Gos Warehouse)[0]", "src": "OEM Warehouse", "srcArrow": "none", - "srcLabel": "", "dst": "Gos Warehouse", "dstArrow": "triangle", - "dstLabel": "", "opacity": 1, "strokeDash": 0, "strokeWidth": 2, @@ -1004,10 +984,8 @@ "id": "(Distributor Warehouse -> Gos Warehouse)[0]", "src": "Distributor Warehouse", "srcArrow": "none", - "srcLabel": "", "dst": "Gos Warehouse", "dstArrow": "triangle", - "dstLabel": "", "opacity": 1, "strokeDash": 0, "strokeWidth": 2, diff --git a/e2etests/testdata/regression/unconnected/elk/sketch.exp.svg b/e2etests/testdata/regression/unconnected/elk/sketch.exp.svg index 11a53ec94e..7335878737 100644 --- a/e2etests/testdata/regression/unconnected/elk/sketch.exp.svg +++ b/e2etests/testdata/regression/unconnected/elk/sketch.exp.svg @@ -1,20 +1,20 @@ -OEM FactoryOEM WarehouseDistributor WarehouseGos WarehouseCustomer SiteWorkflow-I (Warehousing, Installation)MasterRegional-1Regional-2Regional-N
      @@ -842,7 +842,7 @@
    • Staging
    • Dispatch to Site
    -
    InstallationSupport +InstallationSupport
    \ No newline at end of file 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 a775f28c1b..74fa3cf475 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 @@ -308,10 +308,8 @@ "id": "(class2 -> users)[0]", "src": "class2", "srcArrow": "none", - "srcLabel": "", "dst": "users", "dstArrow": "triangle", - "dstLabel": "", "opacity": 1, "strokeDash": 0, "strokeWidth": 2, @@ -357,10 +355,8 @@ "id": "(users -> code)[0]", "src": "users", "srcArrow": "none", - "srcLabel": "", "dst": "code", "dstArrow": "triangle", - "dstLabel": "", "opacity": 1, "strokeDash": 0, "strokeWidth": 2, 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 62ec317b0b..7d6ed4fe35 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-3181700312 .fill-N1{fill:#0A0F25;} + .d2-3181700312 .fill-N2{fill:#676C7E;} + .d2-3181700312 .fill-N3{fill:#9499AB;} + .d2-3181700312 .fill-N4{fill:#CFD2DD;} + .d2-3181700312 .fill-N5{fill:#DEE1EB;} + .d2-3181700312 .fill-N6{fill:#EEF1F8;} + .d2-3181700312 .fill-N7{fill:#FFFFFF;} + .d2-3181700312 .fill-B1{fill:#0D32B2;} + .d2-3181700312 .fill-B2{fill:#0D32B2;} + .d2-3181700312 .fill-B3{fill:#E3E9FD;} + .d2-3181700312 .fill-B4{fill:#E3E9FD;} + .d2-3181700312 .fill-B5{fill:#EDF0FD;} + .d2-3181700312 .fill-B6{fill:#F7F8FE;} + .d2-3181700312 .fill-AA2{fill:#4A6FF3;} + .d2-3181700312 .fill-AA4{fill:#EDF0FD;} + .d2-3181700312 .fill-AA5{fill:#F7F8FE;} + .d2-3181700312 .fill-AB4{fill:#EDF0FD;} + .d2-3181700312 .fill-AB5{fill:#F7F8FE;} + .d2-3181700312 .stroke-N1{stroke:#0A0F25;} + .d2-3181700312 .stroke-N2{stroke:#676C7E;} + .d2-3181700312 .stroke-N3{stroke:#9499AB;} + .d2-3181700312 .stroke-N4{stroke:#CFD2DD;} + .d2-3181700312 .stroke-N5{stroke:#DEE1EB;} + .d2-3181700312 .stroke-N6{stroke:#EEF1F8;} + .d2-3181700312 .stroke-N7{stroke:#FFFFFF;} + .d2-3181700312 .stroke-B1{stroke:#0D32B2;} + .d2-3181700312 .stroke-B2{stroke:#0D32B2;} + .d2-3181700312 .stroke-B3{stroke:#E3E9FD;} + .d2-3181700312 .stroke-B4{stroke:#E3E9FD;} + .d2-3181700312 .stroke-B5{stroke:#EDF0FD;} + .d2-3181700312 .stroke-B6{stroke:#F7F8FE;} + .d2-3181700312 .stroke-AA2{stroke:#4A6FF3;} + .d2-3181700312 .stroke-AA4{stroke:#EDF0FD;} + .d2-3181700312 .stroke-AA5{stroke:#F7F8FE;} + .d2-3181700312 .stroke-AB4{stroke:#EDF0FD;} + .d2-3181700312 .stroke-AB5{stroke:#F7F8FE;} + .d2-3181700312 .background-color-N1{background-color:#0A0F25;} + .d2-3181700312 .background-color-N2{background-color:#676C7E;} + .d2-3181700312 .background-color-N3{background-color:#9499AB;} + .d2-3181700312 .background-color-N4{background-color:#CFD2DD;} + .d2-3181700312 .background-color-N5{background-color:#DEE1EB;} + .d2-3181700312 .background-color-N6{background-color:#EEF1F8;} + .d2-3181700312 .background-color-N7{background-color:#FFFFFF;} + .d2-3181700312 .background-color-B1{background-color:#0D32B2;} + .d2-3181700312 .background-color-B2{background-color:#0D32B2;} + .d2-3181700312 .background-color-B3{background-color:#E3E9FD;} + .d2-3181700312 .background-color-B4{background-color:#E3E9FD;} + .d2-3181700312 .background-color-B5{background-color:#EDF0FD;} + .d2-3181700312 .background-color-B6{background-color:#F7F8FE;} + .d2-3181700312 .background-color-AA2{background-color:#4A6FF3;} + .d2-3181700312 .background-color-AA4{background-color:#EDF0FD;} + .d2-3181700312 .background-color-AA5{background-color:#F7F8FE;} + .d2-3181700312 .background-color-AB4{background-color:#EDF0FD;} + .d2-3181700312 .background-color-AB5{background-color:#F7F8FE;} + .d2-3181700312 .color-N1{color:#0A0F25;} + .d2-3181700312 .color-N2{color:#676C7E;} + .d2-3181700312 .color-N3{color:#9499AB;} + .d2-3181700312 .color-N4{color:#CFD2DD;} + .d2-3181700312 .color-N5{color:#DEE1EB;} + .d2-3181700312 .color-N6{color:#EEF1F8;} + .d2-3181700312 .color-N7{color:#FFFFFF;} + .d2-3181700312 .color-B1{color:#0D32B2;} + .d2-3181700312 .color-B2{color:#0D32B2;} + .d2-3181700312 .color-B3{color:#E3E9FD;} + .d2-3181700312 .color-B4{color:#E3E9FD;} + .d2-3181700312 .color-B5{color:#EDF0FD;} + .d2-3181700312 .color-B6{color:#F7F8FE;} + .d2-3181700312 .color-AA2{color:#4A6FF3;} + .d2-3181700312 .color-AA4{color:#EDF0FD;} + .d2-3181700312 .color-AA5{color:#F7F8FE;} + .d2-3181700312 .color-AB4{color:#EDF0FD;} + .d2-3181700312 .color-AB5{color:#F7F8FE;}.appendix text.text{fill:#0A0F25}.md{--color-fg-default:#0A0F25;--color-fg-muted:#676C7E;--color-fg-subtle:#9499AB;--color-canvas-default:#FFFFFF;--color-canvas-subtle:#EEF1F8;--color-border-default:#0D32B2;--color-border-muted:#0D32B2;--color-neutral-muted:#EEF1F8;--color-accent-fg:#0D32B2;--color-accent-emphasis:#0D32B2;--color-attention-subtle:#676C7E;--color-danger-fg:red;}.sketch-overlay-B1{fill:url(#streaks-darker);mix-blend-mode:lighten}.sketch-overlay-B2{fill:url(#streaks-darker);mix-blend-mode:lighten}.sketch-overlay-B3{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-B4{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-B5{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-B6{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-AA2{fill:url(#streaks-dark);mix-blend-mode:overlay}.sketch-overlay-AA4{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-AA5{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-AB4{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-AB5{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-N1{fill:url(#streaks-darker);mix-blend-mode:lighten}.sketch-overlay-N2{fill:url(#streaks-dark);mix-blend-mode:overlay}.sketch-overlay-N3{fill:url(#streaks-normal);mix-blend-mode:color-burn}.sketch-overlay-N4{fill:url(#streaks-normal);mix-blend-mode:color-burn}.sketch-overlay-N5{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-N6{fill:url(#streaks-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 d6f391d68d..377e5f144e 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 @@ -308,10 +308,8 @@ "id": "(class2 -> users)[0]", "src": "class2", "srcArrow": "none", - "srcLabel": "", "dst": "users", "dstArrow": "triangle", - "dstLabel": "", "opacity": 1, "strokeDash": 0, "strokeWidth": 2, @@ -348,10 +346,8 @@ "id": "(users -> code)[0]", "src": "users", "srcArrow": "none", - "srcLabel": "", "dst": "code", "dstArrow": "triangle", - "dstLabel": "", "opacity": 1, "strokeDash": 0, "strokeWidth": 2, 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 56528ea04d..f6638f8fd1 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-4044170059 .fill-N1{fill:#0A0F25;} + .d2-4044170059 .fill-N2{fill:#676C7E;} + .d2-4044170059 .fill-N3{fill:#9499AB;} + .d2-4044170059 .fill-N4{fill:#CFD2DD;} + .d2-4044170059 .fill-N5{fill:#DEE1EB;} + .d2-4044170059 .fill-N6{fill:#EEF1F8;} + .d2-4044170059 .fill-N7{fill:#FFFFFF;} + .d2-4044170059 .fill-B1{fill:#0D32B2;} + .d2-4044170059 .fill-B2{fill:#0D32B2;} + .d2-4044170059 .fill-B3{fill:#E3E9FD;} + .d2-4044170059 .fill-B4{fill:#E3E9FD;} + .d2-4044170059 .fill-B5{fill:#EDF0FD;} + .d2-4044170059 .fill-B6{fill:#F7F8FE;} + .d2-4044170059 .fill-AA2{fill:#4A6FF3;} + .d2-4044170059 .fill-AA4{fill:#EDF0FD;} + .d2-4044170059 .fill-AA5{fill:#F7F8FE;} + .d2-4044170059 .fill-AB4{fill:#EDF0FD;} + .d2-4044170059 .fill-AB5{fill:#F7F8FE;} + .d2-4044170059 .stroke-N1{stroke:#0A0F25;} + .d2-4044170059 .stroke-N2{stroke:#676C7E;} + .d2-4044170059 .stroke-N3{stroke:#9499AB;} + .d2-4044170059 .stroke-N4{stroke:#CFD2DD;} + .d2-4044170059 .stroke-N5{stroke:#DEE1EB;} + .d2-4044170059 .stroke-N6{stroke:#EEF1F8;} + .d2-4044170059 .stroke-N7{stroke:#FFFFFF;} + .d2-4044170059 .stroke-B1{stroke:#0D32B2;} + .d2-4044170059 .stroke-B2{stroke:#0D32B2;} + .d2-4044170059 .stroke-B3{stroke:#E3E9FD;} + .d2-4044170059 .stroke-B4{stroke:#E3E9FD;} + .d2-4044170059 .stroke-B5{stroke:#EDF0FD;} + .d2-4044170059 .stroke-B6{stroke:#F7F8FE;} + .d2-4044170059 .stroke-AA2{stroke:#4A6FF3;} + .d2-4044170059 .stroke-AA4{stroke:#EDF0FD;} + .d2-4044170059 .stroke-AA5{stroke:#F7F8FE;} + .d2-4044170059 .stroke-AB4{stroke:#EDF0FD;} + .d2-4044170059 .stroke-AB5{stroke:#F7F8FE;} + .d2-4044170059 .background-color-N1{background-color:#0A0F25;} + .d2-4044170059 .background-color-N2{background-color:#676C7E;} + .d2-4044170059 .background-color-N3{background-color:#9499AB;} + .d2-4044170059 .background-color-N4{background-color:#CFD2DD;} + .d2-4044170059 .background-color-N5{background-color:#DEE1EB;} + .d2-4044170059 .background-color-N6{background-color:#EEF1F8;} + .d2-4044170059 .background-color-N7{background-color:#FFFFFF;} + .d2-4044170059 .background-color-B1{background-color:#0D32B2;} + .d2-4044170059 .background-color-B2{background-color:#0D32B2;} + .d2-4044170059 .background-color-B3{background-color:#E3E9FD;} + .d2-4044170059 .background-color-B4{background-color:#E3E9FD;} + .d2-4044170059 .background-color-B5{background-color:#EDF0FD;} + .d2-4044170059 .background-color-B6{background-color:#F7F8FE;} + .d2-4044170059 .background-color-AA2{background-color:#4A6FF3;} + .d2-4044170059 .background-color-AA4{background-color:#EDF0FD;} + .d2-4044170059 .background-color-AA5{background-color:#F7F8FE;} + .d2-4044170059 .background-color-AB4{background-color:#EDF0FD;} + .d2-4044170059 .background-color-AB5{background-color:#F7F8FE;} + .d2-4044170059 .color-N1{color:#0A0F25;} + .d2-4044170059 .color-N2{color:#676C7E;} + .d2-4044170059 .color-N3{color:#9499AB;} + .d2-4044170059 .color-N4{color:#CFD2DD;} + .d2-4044170059 .color-N5{color:#DEE1EB;} + .d2-4044170059 .color-N6{color:#EEF1F8;} + .d2-4044170059 .color-N7{color:#FFFFFF;} + .d2-4044170059 .color-B1{color:#0D32B2;} + .d2-4044170059 .color-B2{color:#0D32B2;} + .d2-4044170059 .color-B3{color:#E3E9FD;} + .d2-4044170059 .color-B4{color:#E3E9FD;} + .d2-4044170059 .color-B5{color:#EDF0FD;} + .d2-4044170059 .color-B6{color:#F7F8FE;} + .d2-4044170059 .color-AA2{color:#4A6FF3;} + .d2-4044170059 .color-AA4{color:#EDF0FD;} + .d2-4044170059 .color-AA5{color:#F7F8FE;} + .d2-4044170059 .color-AB4{color:#EDF0FD;} + .d2-4044170059 .color-AB5{color:#F7F8FE;}.appendix text.text{fill:#0A0F25}.md{--color-fg-default:#0A0F25;--color-fg-muted:#676C7E;--color-fg-subtle:#9499AB;--color-canvas-default:#FFFFFF;--color-canvas-subtle:#EEF1F8;--color-border-default:#0D32B2;--color-border-muted:#0D32B2;--color-neutral-muted:#EEF1F8;--color-accent-fg:#0D32B2;--color-accent-emphasis:#0D32B2;--color-attention-subtle:#676C7E;--color-danger-fg:red;}.sketch-overlay-B1{fill:url(#streaks-darker);mix-blend-mode:lighten}.sketch-overlay-B2{fill:url(#streaks-darker);mix-blend-mode:lighten}.sketch-overlay-B3{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-B4{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-B5{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-B6{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-AA2{fill:url(#streaks-dark);mix-blend-mode:overlay}.sketch-overlay-AA4{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-AA5{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-AB4{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-AB5{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-N1{fill:url(#streaks-darker);mix-blend-mode:lighten}.sketch-overlay-N2{fill:url(#streaks-dark);mix-blend-mode:overlay}.sketch-overlay-N3{fill:url(#streaks-normal);mix-blend-mode:color-burn}.sketch-overlay-N4{fill:url(#streaks-normal);mix-blend-mode:color-burn}.sketch-overlay-N5{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-N6{fill:url(#streaks-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 bde8964f13..519e39c0be 100644 --- a/e2etests/testdata/sanity/1_to_2/dagre/board.exp.json +++ b/e2etests/testdata/sanity/1_to_2/dagre/board.exp.json @@ -132,10 +132,8 @@ "id": "(a -> b)[0]", "src": "a", "srcArrow": "none", - "srcLabel": "", "dst": "b", "dstArrow": "triangle", - "dstLabel": "", "opacity": 1, "strokeDash": 0, "strokeWidth": 2, @@ -181,10 +179,8 @@ "id": "(a -> c)[0]", "src": "a", "srcArrow": "none", - "srcLabel": "", "dst": "c", "dstArrow": "triangle", - "dstLabel": "", "opacity": 1, "strokeDash": 0, "strokeWidth": 2, 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 bb5d51c0c9..7cff8dcf6f 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-1131992437 .fill-N1{fill:#0A0F25;} + .d2-1131992437 .fill-N2{fill:#676C7E;} + .d2-1131992437 .fill-N3{fill:#9499AB;} + .d2-1131992437 .fill-N4{fill:#CFD2DD;} + .d2-1131992437 .fill-N5{fill:#DEE1EB;} + .d2-1131992437 .fill-N6{fill:#EEF1F8;} + .d2-1131992437 .fill-N7{fill:#FFFFFF;} + .d2-1131992437 .fill-B1{fill:#0D32B2;} + .d2-1131992437 .fill-B2{fill:#0D32B2;} + .d2-1131992437 .fill-B3{fill:#E3E9FD;} + .d2-1131992437 .fill-B4{fill:#E3E9FD;} + .d2-1131992437 .fill-B5{fill:#EDF0FD;} + .d2-1131992437 .fill-B6{fill:#F7F8FE;} + .d2-1131992437 .fill-AA2{fill:#4A6FF3;} + .d2-1131992437 .fill-AA4{fill:#EDF0FD;} + .d2-1131992437 .fill-AA5{fill:#F7F8FE;} + .d2-1131992437 .fill-AB4{fill:#EDF0FD;} + .d2-1131992437 .fill-AB5{fill:#F7F8FE;} + .d2-1131992437 .stroke-N1{stroke:#0A0F25;} + .d2-1131992437 .stroke-N2{stroke:#676C7E;} + .d2-1131992437 .stroke-N3{stroke:#9499AB;} + .d2-1131992437 .stroke-N4{stroke:#CFD2DD;} + .d2-1131992437 .stroke-N5{stroke:#DEE1EB;} + .d2-1131992437 .stroke-N6{stroke:#EEF1F8;} + .d2-1131992437 .stroke-N7{stroke:#FFFFFF;} + .d2-1131992437 .stroke-B1{stroke:#0D32B2;} + .d2-1131992437 .stroke-B2{stroke:#0D32B2;} + .d2-1131992437 .stroke-B3{stroke:#E3E9FD;} + .d2-1131992437 .stroke-B4{stroke:#E3E9FD;} + .d2-1131992437 .stroke-B5{stroke:#EDF0FD;} + .d2-1131992437 .stroke-B6{stroke:#F7F8FE;} + .d2-1131992437 .stroke-AA2{stroke:#4A6FF3;} + .d2-1131992437 .stroke-AA4{stroke:#EDF0FD;} + .d2-1131992437 .stroke-AA5{stroke:#F7F8FE;} + .d2-1131992437 .stroke-AB4{stroke:#EDF0FD;} + .d2-1131992437 .stroke-AB5{stroke:#F7F8FE;} + .d2-1131992437 .background-color-N1{background-color:#0A0F25;} + .d2-1131992437 .background-color-N2{background-color:#676C7E;} + .d2-1131992437 .background-color-N3{background-color:#9499AB;} + .d2-1131992437 .background-color-N4{background-color:#CFD2DD;} + .d2-1131992437 .background-color-N5{background-color:#DEE1EB;} + .d2-1131992437 .background-color-N6{background-color:#EEF1F8;} + .d2-1131992437 .background-color-N7{background-color:#FFFFFF;} + .d2-1131992437 .background-color-B1{background-color:#0D32B2;} + .d2-1131992437 .background-color-B2{background-color:#0D32B2;} + .d2-1131992437 .background-color-B3{background-color:#E3E9FD;} + .d2-1131992437 .background-color-B4{background-color:#E3E9FD;} + .d2-1131992437 .background-color-B5{background-color:#EDF0FD;} + .d2-1131992437 .background-color-B6{background-color:#F7F8FE;} + .d2-1131992437 .background-color-AA2{background-color:#4A6FF3;} + .d2-1131992437 .background-color-AA4{background-color:#EDF0FD;} + .d2-1131992437 .background-color-AA5{background-color:#F7F8FE;} + .d2-1131992437 .background-color-AB4{background-color:#EDF0FD;} + .d2-1131992437 .background-color-AB5{background-color:#F7F8FE;} + .d2-1131992437 .color-N1{color:#0A0F25;} + .d2-1131992437 .color-N2{color:#676C7E;} + .d2-1131992437 .color-N3{color:#9499AB;} + .d2-1131992437 .color-N4{color:#CFD2DD;} + .d2-1131992437 .color-N5{color:#DEE1EB;} + .d2-1131992437 .color-N6{color:#EEF1F8;} + .d2-1131992437 .color-N7{color:#FFFFFF;} + .d2-1131992437 .color-B1{color:#0D32B2;} + .d2-1131992437 .color-B2{color:#0D32B2;} + .d2-1131992437 .color-B3{color:#E3E9FD;} + .d2-1131992437 .color-B4{color:#E3E9FD;} + .d2-1131992437 .color-B5{color:#EDF0FD;} + .d2-1131992437 .color-B6{color:#F7F8FE;} + .d2-1131992437 .color-AA2{color:#4A6FF3;} + .d2-1131992437 .color-AA4{color:#EDF0FD;} + .d2-1131992437 .color-AA5{color:#F7F8FE;} + .d2-1131992437 .color-AB4{color:#EDF0FD;} + .d2-1131992437 .color-AB5{color:#F7F8FE;}.appendix text.text{fill:#0A0F25}.md{--color-fg-default:#0A0F25;--color-fg-muted:#676C7E;--color-fg-subtle:#9499AB;--color-canvas-default:#FFFFFF;--color-canvas-subtle:#EEF1F8;--color-border-default:#0D32B2;--color-border-muted:#0D32B2;--color-neutral-muted:#EEF1F8;--color-accent-fg:#0D32B2;--color-accent-emphasis:#0D32B2;--color-attention-subtle:#676C7E;--color-danger-fg:red;}.sketch-overlay-B1{fill:url(#streaks-darker);mix-blend-mode:lighten}.sketch-overlay-B2{fill:url(#streaks-darker);mix-blend-mode:lighten}.sketch-overlay-B3{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-B4{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-B5{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-B6{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-AA2{fill:url(#streaks-dark);mix-blend-mode:overlay}.sketch-overlay-AA4{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-AA5{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-AB4{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-AB5{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-N1{fill:url(#streaks-darker);mix-blend-mode:lighten}.sketch-overlay-N2{fill:url(#streaks-dark);mix-blend-mode:overlay}.sketch-overlay-N3{fill:url(#streaks-normal);mix-blend-mode:color-burn}.sketch-overlay-N4{fill:url(#streaks-normal);mix-blend-mode:color-burn}.sketch-overlay-N5{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-N6{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-N7{fill:url(#streaks-bright);mix-blend-mode:darken}.light-code{display: block}.dark-code{display: none}]]>abc \ No newline at end of file diff --git a/e2etests/testdata/sanity/1_to_2/elk/board.exp.json b/e2etests/testdata/sanity/1_to_2/elk/board.exp.json index f27f1d7a5f..c4eae9410f 100644 --- a/e2etests/testdata/sanity/1_to_2/elk/board.exp.json +++ b/e2etests/testdata/sanity/1_to_2/elk/board.exp.json @@ -132,10 +132,8 @@ "id": "(a -> b)[0]", "src": "a", "srcArrow": "none", - "srcLabel": "", "dst": "b", "dstArrow": "triangle", - "dstLabel": "", "opacity": 1, "strokeDash": 0, "strokeWidth": 2, @@ -180,10 +178,8 @@ "id": "(a -> c)[0]", "src": "a", "srcArrow": "none", - "srcLabel": "", "dst": "c", "dstArrow": "triangle", - "dstLabel": "", "opacity": 1, "strokeDash": 0, "strokeWidth": 2, 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 793d724b7c..96f908b99a 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-219348747 .fill-N1{fill:#0A0F25;} + .d2-219348747 .fill-N2{fill:#676C7E;} + .d2-219348747 .fill-N3{fill:#9499AB;} + .d2-219348747 .fill-N4{fill:#CFD2DD;} + .d2-219348747 .fill-N5{fill:#DEE1EB;} + .d2-219348747 .fill-N6{fill:#EEF1F8;} + .d2-219348747 .fill-N7{fill:#FFFFFF;} + .d2-219348747 .fill-B1{fill:#0D32B2;} + .d2-219348747 .fill-B2{fill:#0D32B2;} + .d2-219348747 .fill-B3{fill:#E3E9FD;} + .d2-219348747 .fill-B4{fill:#E3E9FD;} + .d2-219348747 .fill-B5{fill:#EDF0FD;} + .d2-219348747 .fill-B6{fill:#F7F8FE;} + .d2-219348747 .fill-AA2{fill:#4A6FF3;} + .d2-219348747 .fill-AA4{fill:#EDF0FD;} + .d2-219348747 .fill-AA5{fill:#F7F8FE;} + .d2-219348747 .fill-AB4{fill:#EDF0FD;} + .d2-219348747 .fill-AB5{fill:#F7F8FE;} + .d2-219348747 .stroke-N1{stroke:#0A0F25;} + .d2-219348747 .stroke-N2{stroke:#676C7E;} + .d2-219348747 .stroke-N3{stroke:#9499AB;} + .d2-219348747 .stroke-N4{stroke:#CFD2DD;} + .d2-219348747 .stroke-N5{stroke:#DEE1EB;} + .d2-219348747 .stroke-N6{stroke:#EEF1F8;} + .d2-219348747 .stroke-N7{stroke:#FFFFFF;} + .d2-219348747 .stroke-B1{stroke:#0D32B2;} + .d2-219348747 .stroke-B2{stroke:#0D32B2;} + .d2-219348747 .stroke-B3{stroke:#E3E9FD;} + .d2-219348747 .stroke-B4{stroke:#E3E9FD;} + .d2-219348747 .stroke-B5{stroke:#EDF0FD;} + .d2-219348747 .stroke-B6{stroke:#F7F8FE;} + .d2-219348747 .stroke-AA2{stroke:#4A6FF3;} + .d2-219348747 .stroke-AA4{stroke:#EDF0FD;} + .d2-219348747 .stroke-AA5{stroke:#F7F8FE;} + .d2-219348747 .stroke-AB4{stroke:#EDF0FD;} + .d2-219348747 .stroke-AB5{stroke:#F7F8FE;} + .d2-219348747 .background-color-N1{background-color:#0A0F25;} + .d2-219348747 .background-color-N2{background-color:#676C7E;} + .d2-219348747 .background-color-N3{background-color:#9499AB;} + .d2-219348747 .background-color-N4{background-color:#CFD2DD;} + .d2-219348747 .background-color-N5{background-color:#DEE1EB;} + .d2-219348747 .background-color-N6{background-color:#EEF1F8;} + .d2-219348747 .background-color-N7{background-color:#FFFFFF;} + .d2-219348747 .background-color-B1{background-color:#0D32B2;} + .d2-219348747 .background-color-B2{background-color:#0D32B2;} + .d2-219348747 .background-color-B3{background-color:#E3E9FD;} + .d2-219348747 .background-color-B4{background-color:#E3E9FD;} + .d2-219348747 .background-color-B5{background-color:#EDF0FD;} + .d2-219348747 .background-color-B6{background-color:#F7F8FE;} + .d2-219348747 .background-color-AA2{background-color:#4A6FF3;} + .d2-219348747 .background-color-AA4{background-color:#EDF0FD;} + .d2-219348747 .background-color-AA5{background-color:#F7F8FE;} + .d2-219348747 .background-color-AB4{background-color:#EDF0FD;} + .d2-219348747 .background-color-AB5{background-color:#F7F8FE;} + .d2-219348747 .color-N1{color:#0A0F25;} + .d2-219348747 .color-N2{color:#676C7E;} + .d2-219348747 .color-N3{color:#9499AB;} + .d2-219348747 .color-N4{color:#CFD2DD;} + .d2-219348747 .color-N5{color:#DEE1EB;} + .d2-219348747 .color-N6{color:#EEF1F8;} + .d2-219348747 .color-N7{color:#FFFFFF;} + .d2-219348747 .color-B1{color:#0D32B2;} + .d2-219348747 .color-B2{color:#0D32B2;} + .d2-219348747 .color-B3{color:#E3E9FD;} + .d2-219348747 .color-B4{color:#E3E9FD;} + .d2-219348747 .color-B5{color:#EDF0FD;} + .d2-219348747 .color-B6{color:#F7F8FE;} + .d2-219348747 .color-AA2{color:#4A6FF3;} + .d2-219348747 .color-AA4{color:#EDF0FD;} + .d2-219348747 .color-AA5{color:#F7F8FE;} + .d2-219348747 .color-AB4{color:#EDF0FD;} + .d2-219348747 .color-AB5{color:#F7F8FE;}.appendix text.text{fill:#0A0F25}.md{--color-fg-default:#0A0F25;--color-fg-muted:#676C7E;--color-fg-subtle:#9499AB;--color-canvas-default:#FFFFFF;--color-canvas-subtle:#EEF1F8;--color-border-default:#0D32B2;--color-border-muted:#0D32B2;--color-neutral-muted:#EEF1F8;--color-accent-fg:#0D32B2;--color-accent-emphasis:#0D32B2;--color-attention-subtle:#676C7E;--color-danger-fg:red;}.sketch-overlay-B1{fill:url(#streaks-darker);mix-blend-mode:lighten}.sketch-overlay-B2{fill:url(#streaks-darker);mix-blend-mode:lighten}.sketch-overlay-B3{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-B4{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-B5{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-B6{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-AA2{fill:url(#streaks-dark);mix-blend-mode:overlay}.sketch-overlay-AA4{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-AA5{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-AB4{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-AB5{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-N1{fill:url(#streaks-darker);mix-blend-mode:lighten}.sketch-overlay-N2{fill:url(#streaks-dark);mix-blend-mode:overlay}.sketch-overlay-N3{fill:url(#streaks-normal);mix-blend-mode:color-burn}.sketch-overlay-N4{fill:url(#streaks-normal);mix-blend-mode:color-burn}.sketch-overlay-N5{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-N6{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-N7{fill:url(#streaks-bright);mix-blend-mode:darken}.light-code{display: block}.dark-code{display: none}]]>abc \ No newline at end of file diff --git a/e2etests/testdata/sanity/basic/dagre/board.exp.json b/e2etests/testdata/sanity/basic/dagre/board.exp.json index e1cb6cd4ae..bed9c2453d 100644 --- a/e2etests/testdata/sanity/basic/dagre/board.exp.json +++ b/e2etests/testdata/sanity/basic/dagre/board.exp.json @@ -91,10 +91,8 @@ "id": "(a -> b)[0]", "src": "a", "srcArrow": "none", - "srcLabel": "", "dst": "b", "dstArrow": "triangle", - "dstLabel": "", "opacity": 1, "strokeDash": 0, "strokeWidth": 2, diff --git a/e2etests/testdata/sanity/basic/dagre/sketch.exp.svg b/e2etests/testdata/sanity/basic/dagre/sketch.exp.svg index efa2339d59..204d92562e 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-746933975 .fill-N1{fill:#0A0F25;} + .d2-746933975 .fill-N2{fill:#676C7E;} + .d2-746933975 .fill-N3{fill:#9499AB;} + .d2-746933975 .fill-N4{fill:#CFD2DD;} + .d2-746933975 .fill-N5{fill:#DEE1EB;} + .d2-746933975 .fill-N6{fill:#EEF1F8;} + .d2-746933975 .fill-N7{fill:#FFFFFF;} + .d2-746933975 .fill-B1{fill:#0D32B2;} + .d2-746933975 .fill-B2{fill:#0D32B2;} + .d2-746933975 .fill-B3{fill:#E3E9FD;} + .d2-746933975 .fill-B4{fill:#E3E9FD;} + .d2-746933975 .fill-B5{fill:#EDF0FD;} + .d2-746933975 .fill-B6{fill:#F7F8FE;} + .d2-746933975 .fill-AA2{fill:#4A6FF3;} + .d2-746933975 .fill-AA4{fill:#EDF0FD;} + .d2-746933975 .fill-AA5{fill:#F7F8FE;} + .d2-746933975 .fill-AB4{fill:#EDF0FD;} + .d2-746933975 .fill-AB5{fill:#F7F8FE;} + .d2-746933975 .stroke-N1{stroke:#0A0F25;} + .d2-746933975 .stroke-N2{stroke:#676C7E;} + .d2-746933975 .stroke-N3{stroke:#9499AB;} + .d2-746933975 .stroke-N4{stroke:#CFD2DD;} + .d2-746933975 .stroke-N5{stroke:#DEE1EB;} + .d2-746933975 .stroke-N6{stroke:#EEF1F8;} + .d2-746933975 .stroke-N7{stroke:#FFFFFF;} + .d2-746933975 .stroke-B1{stroke:#0D32B2;} + .d2-746933975 .stroke-B2{stroke:#0D32B2;} + .d2-746933975 .stroke-B3{stroke:#E3E9FD;} + .d2-746933975 .stroke-B4{stroke:#E3E9FD;} + .d2-746933975 .stroke-B5{stroke:#EDF0FD;} + .d2-746933975 .stroke-B6{stroke:#F7F8FE;} + .d2-746933975 .stroke-AA2{stroke:#4A6FF3;} + .d2-746933975 .stroke-AA4{stroke:#EDF0FD;} + .d2-746933975 .stroke-AA5{stroke:#F7F8FE;} + .d2-746933975 .stroke-AB4{stroke:#EDF0FD;} + .d2-746933975 .stroke-AB5{stroke:#F7F8FE;} + .d2-746933975 .background-color-N1{background-color:#0A0F25;} + .d2-746933975 .background-color-N2{background-color:#676C7E;} + .d2-746933975 .background-color-N3{background-color:#9499AB;} + .d2-746933975 .background-color-N4{background-color:#CFD2DD;} + .d2-746933975 .background-color-N5{background-color:#DEE1EB;} + .d2-746933975 .background-color-N6{background-color:#EEF1F8;} + .d2-746933975 .background-color-N7{background-color:#FFFFFF;} + .d2-746933975 .background-color-B1{background-color:#0D32B2;} + .d2-746933975 .background-color-B2{background-color:#0D32B2;} + .d2-746933975 .background-color-B3{background-color:#E3E9FD;} + .d2-746933975 .background-color-B4{background-color:#E3E9FD;} + .d2-746933975 .background-color-B5{background-color:#EDF0FD;} + .d2-746933975 .background-color-B6{background-color:#F7F8FE;} + .d2-746933975 .background-color-AA2{background-color:#4A6FF3;} + .d2-746933975 .background-color-AA4{background-color:#EDF0FD;} + .d2-746933975 .background-color-AA5{background-color:#F7F8FE;} + .d2-746933975 .background-color-AB4{background-color:#EDF0FD;} + .d2-746933975 .background-color-AB5{background-color:#F7F8FE;} + .d2-746933975 .color-N1{color:#0A0F25;} + .d2-746933975 .color-N2{color:#676C7E;} + .d2-746933975 .color-N3{color:#9499AB;} + .d2-746933975 .color-N4{color:#CFD2DD;} + .d2-746933975 .color-N5{color:#DEE1EB;} + .d2-746933975 .color-N6{color:#EEF1F8;} + .d2-746933975 .color-N7{color:#FFFFFF;} + .d2-746933975 .color-B1{color:#0D32B2;} + .d2-746933975 .color-B2{color:#0D32B2;} + .d2-746933975 .color-B3{color:#E3E9FD;} + .d2-746933975 .color-B4{color:#E3E9FD;} + .d2-746933975 .color-B5{color:#EDF0FD;} + .d2-746933975 .color-B6{color:#F7F8FE;} + .d2-746933975 .color-AA2{color:#4A6FF3;} + .d2-746933975 .color-AA4{color:#EDF0FD;} + .d2-746933975 .color-AA5{color:#F7F8FE;} + .d2-746933975 .color-AB4{color:#EDF0FD;} + .d2-746933975 .color-AB5{color:#F7F8FE;}.appendix text.text{fill:#0A0F25}.md{--color-fg-default:#0A0F25;--color-fg-muted:#676C7E;--color-fg-subtle:#9499AB;--color-canvas-default:#FFFFFF;--color-canvas-subtle:#EEF1F8;--color-border-default:#0D32B2;--color-border-muted:#0D32B2;--color-neutral-muted:#EEF1F8;--color-accent-fg:#0D32B2;--color-accent-emphasis:#0D32B2;--color-attention-subtle:#676C7E;--color-danger-fg:red;}.sketch-overlay-B1{fill:url(#streaks-darker);mix-blend-mode:lighten}.sketch-overlay-B2{fill:url(#streaks-darker);mix-blend-mode:lighten}.sketch-overlay-B3{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-B4{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-B5{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-B6{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-AA2{fill:url(#streaks-dark);mix-blend-mode:overlay}.sketch-overlay-AA4{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-AA5{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-AB4{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-AB5{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-N1{fill:url(#streaks-darker);mix-blend-mode:lighten}.sketch-overlay-N2{fill:url(#streaks-dark);mix-blend-mode:overlay}.sketch-overlay-N3{fill:url(#streaks-normal);mix-blend-mode:color-burn}.sketch-overlay-N4{fill:url(#streaks-normal);mix-blend-mode:color-burn}.sketch-overlay-N5{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-N6{fill:url(#streaks-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 \ No newline at end of file diff --git a/e2etests/testdata/sanity/basic/elk/board.exp.json b/e2etests/testdata/sanity/basic/elk/board.exp.json index 1ccffbf6a3..25d953d26a 100644 --- a/e2etests/testdata/sanity/basic/elk/board.exp.json +++ b/e2etests/testdata/sanity/basic/elk/board.exp.json @@ -91,10 +91,8 @@ "id": "(a -> b)[0]", "src": "a", "srcArrow": "none", - "srcLabel": "", "dst": "b", "dstArrow": "triangle", - "dstLabel": "", "opacity": 1, "strokeDash": 0, "strokeWidth": 2, diff --git a/e2etests/testdata/sanity/basic/elk/sketch.exp.svg b/e2etests/testdata/sanity/basic/elk/sketch.exp.svg index 28758d2c7f..145209a2e7 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-4227675226 .fill-N1{fill:#0A0F25;} + .d2-4227675226 .fill-N2{fill:#676C7E;} + .d2-4227675226 .fill-N3{fill:#9499AB;} + .d2-4227675226 .fill-N4{fill:#CFD2DD;} + .d2-4227675226 .fill-N5{fill:#DEE1EB;} + .d2-4227675226 .fill-N6{fill:#EEF1F8;} + .d2-4227675226 .fill-N7{fill:#FFFFFF;} + .d2-4227675226 .fill-B1{fill:#0D32B2;} + .d2-4227675226 .fill-B2{fill:#0D32B2;} + .d2-4227675226 .fill-B3{fill:#E3E9FD;} + .d2-4227675226 .fill-B4{fill:#E3E9FD;} + .d2-4227675226 .fill-B5{fill:#EDF0FD;} + .d2-4227675226 .fill-B6{fill:#F7F8FE;} + .d2-4227675226 .fill-AA2{fill:#4A6FF3;} + .d2-4227675226 .fill-AA4{fill:#EDF0FD;} + .d2-4227675226 .fill-AA5{fill:#F7F8FE;} + .d2-4227675226 .fill-AB4{fill:#EDF0FD;} + .d2-4227675226 .fill-AB5{fill:#F7F8FE;} + .d2-4227675226 .stroke-N1{stroke:#0A0F25;} + .d2-4227675226 .stroke-N2{stroke:#676C7E;} + .d2-4227675226 .stroke-N3{stroke:#9499AB;} + .d2-4227675226 .stroke-N4{stroke:#CFD2DD;} + .d2-4227675226 .stroke-N5{stroke:#DEE1EB;} + .d2-4227675226 .stroke-N6{stroke:#EEF1F8;} + .d2-4227675226 .stroke-N7{stroke:#FFFFFF;} + .d2-4227675226 .stroke-B1{stroke:#0D32B2;} + .d2-4227675226 .stroke-B2{stroke:#0D32B2;} + .d2-4227675226 .stroke-B3{stroke:#E3E9FD;} + .d2-4227675226 .stroke-B4{stroke:#E3E9FD;} + .d2-4227675226 .stroke-B5{stroke:#EDF0FD;} + .d2-4227675226 .stroke-B6{stroke:#F7F8FE;} + .d2-4227675226 .stroke-AA2{stroke:#4A6FF3;} + .d2-4227675226 .stroke-AA4{stroke:#EDF0FD;} + .d2-4227675226 .stroke-AA5{stroke:#F7F8FE;} + .d2-4227675226 .stroke-AB4{stroke:#EDF0FD;} + .d2-4227675226 .stroke-AB5{stroke:#F7F8FE;} + .d2-4227675226 .background-color-N1{background-color:#0A0F25;} + .d2-4227675226 .background-color-N2{background-color:#676C7E;} + .d2-4227675226 .background-color-N3{background-color:#9499AB;} + .d2-4227675226 .background-color-N4{background-color:#CFD2DD;} + .d2-4227675226 .background-color-N5{background-color:#DEE1EB;} + .d2-4227675226 .background-color-N6{background-color:#EEF1F8;} + .d2-4227675226 .background-color-N7{background-color:#FFFFFF;} + .d2-4227675226 .background-color-B1{background-color:#0D32B2;} + .d2-4227675226 .background-color-B2{background-color:#0D32B2;} + .d2-4227675226 .background-color-B3{background-color:#E3E9FD;} + .d2-4227675226 .background-color-B4{background-color:#E3E9FD;} + .d2-4227675226 .background-color-B5{background-color:#EDF0FD;} + .d2-4227675226 .background-color-B6{background-color:#F7F8FE;} + .d2-4227675226 .background-color-AA2{background-color:#4A6FF3;} + .d2-4227675226 .background-color-AA4{background-color:#EDF0FD;} + .d2-4227675226 .background-color-AA5{background-color:#F7F8FE;} + .d2-4227675226 .background-color-AB4{background-color:#EDF0FD;} + .d2-4227675226 .background-color-AB5{background-color:#F7F8FE;} + .d2-4227675226 .color-N1{color:#0A0F25;} + .d2-4227675226 .color-N2{color:#676C7E;} + .d2-4227675226 .color-N3{color:#9499AB;} + .d2-4227675226 .color-N4{color:#CFD2DD;} + .d2-4227675226 .color-N5{color:#DEE1EB;} + .d2-4227675226 .color-N6{color:#EEF1F8;} + .d2-4227675226 .color-N7{color:#FFFFFF;} + .d2-4227675226 .color-B1{color:#0D32B2;} + .d2-4227675226 .color-B2{color:#0D32B2;} + .d2-4227675226 .color-B3{color:#E3E9FD;} + .d2-4227675226 .color-B4{color:#E3E9FD;} + .d2-4227675226 .color-B5{color:#EDF0FD;} + .d2-4227675226 .color-B6{color:#F7F8FE;} + .d2-4227675226 .color-AA2{color:#4A6FF3;} + .d2-4227675226 .color-AA4{color:#EDF0FD;} + .d2-4227675226 .color-AA5{color:#F7F8FE;} + .d2-4227675226 .color-AB4{color:#EDF0FD;} + .d2-4227675226 .color-AB5{color:#F7F8FE;}.appendix text.text{fill:#0A0F25}.md{--color-fg-default:#0A0F25;--color-fg-muted:#676C7E;--color-fg-subtle:#9499AB;--color-canvas-default:#FFFFFF;--color-canvas-subtle:#EEF1F8;--color-border-default:#0D32B2;--color-border-muted:#0D32B2;--color-neutral-muted:#EEF1F8;--color-accent-fg:#0D32B2;--color-accent-emphasis:#0D32B2;--color-attention-subtle:#676C7E;--color-danger-fg:red;}.sketch-overlay-B1{fill:url(#streaks-darker);mix-blend-mode:lighten}.sketch-overlay-B2{fill:url(#streaks-darker);mix-blend-mode:lighten}.sketch-overlay-B3{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-B4{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-B5{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-B6{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-AA2{fill:url(#streaks-dark);mix-blend-mode:overlay}.sketch-overlay-AA4{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-AA5{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-AB4{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-AB5{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-N1{fill:url(#streaks-darker);mix-blend-mode:lighten}.sketch-overlay-N2{fill:url(#streaks-dark);mix-blend-mode:overlay}.sketch-overlay-N3{fill:url(#streaks-normal);mix-blend-mode:color-burn}.sketch-overlay-N4{fill:url(#streaks-normal);mix-blend-mode:color-burn}.sketch-overlay-N5{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-N6{fill:url(#streaks-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 \ No newline at end of file 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 5141c76011..c9ce98b614 100644 --- a/e2etests/testdata/sanity/child_to_child/dagre/board.exp.json +++ b/e2etests/testdata/sanity/child_to_child/dagre/board.exp.json @@ -173,10 +173,8 @@ "id": "(a.b -> c.d)[0]", "src": "a.b", "srcArrow": "none", - "srcLabel": "", "dst": "c.d", "dstArrow": "triangle", - "dstLabel": "", "opacity": 1, "strokeDash": 0, "strokeWidth": 2, 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 d54fdf09b4..fe148c8267 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-1200984912 .fill-N1{fill:#0A0F25;} + .d2-1200984912 .fill-N2{fill:#676C7E;} + .d2-1200984912 .fill-N3{fill:#9499AB;} + .d2-1200984912 .fill-N4{fill:#CFD2DD;} + .d2-1200984912 .fill-N5{fill:#DEE1EB;} + .d2-1200984912 .fill-N6{fill:#EEF1F8;} + .d2-1200984912 .fill-N7{fill:#FFFFFF;} + .d2-1200984912 .fill-B1{fill:#0D32B2;} + .d2-1200984912 .fill-B2{fill:#0D32B2;} + .d2-1200984912 .fill-B3{fill:#E3E9FD;} + .d2-1200984912 .fill-B4{fill:#E3E9FD;} + .d2-1200984912 .fill-B5{fill:#EDF0FD;} + .d2-1200984912 .fill-B6{fill:#F7F8FE;} + .d2-1200984912 .fill-AA2{fill:#4A6FF3;} + .d2-1200984912 .fill-AA4{fill:#EDF0FD;} + .d2-1200984912 .fill-AA5{fill:#F7F8FE;} + .d2-1200984912 .fill-AB4{fill:#EDF0FD;} + .d2-1200984912 .fill-AB5{fill:#F7F8FE;} + .d2-1200984912 .stroke-N1{stroke:#0A0F25;} + .d2-1200984912 .stroke-N2{stroke:#676C7E;} + .d2-1200984912 .stroke-N3{stroke:#9499AB;} + .d2-1200984912 .stroke-N4{stroke:#CFD2DD;} + .d2-1200984912 .stroke-N5{stroke:#DEE1EB;} + .d2-1200984912 .stroke-N6{stroke:#EEF1F8;} + .d2-1200984912 .stroke-N7{stroke:#FFFFFF;} + .d2-1200984912 .stroke-B1{stroke:#0D32B2;} + .d2-1200984912 .stroke-B2{stroke:#0D32B2;} + .d2-1200984912 .stroke-B3{stroke:#E3E9FD;} + .d2-1200984912 .stroke-B4{stroke:#E3E9FD;} + .d2-1200984912 .stroke-B5{stroke:#EDF0FD;} + .d2-1200984912 .stroke-B6{stroke:#F7F8FE;} + .d2-1200984912 .stroke-AA2{stroke:#4A6FF3;} + .d2-1200984912 .stroke-AA4{stroke:#EDF0FD;} + .d2-1200984912 .stroke-AA5{stroke:#F7F8FE;} + .d2-1200984912 .stroke-AB4{stroke:#EDF0FD;} + .d2-1200984912 .stroke-AB5{stroke:#F7F8FE;} + .d2-1200984912 .background-color-N1{background-color:#0A0F25;} + .d2-1200984912 .background-color-N2{background-color:#676C7E;} + .d2-1200984912 .background-color-N3{background-color:#9499AB;} + .d2-1200984912 .background-color-N4{background-color:#CFD2DD;} + .d2-1200984912 .background-color-N5{background-color:#DEE1EB;} + .d2-1200984912 .background-color-N6{background-color:#EEF1F8;} + .d2-1200984912 .background-color-N7{background-color:#FFFFFF;} + .d2-1200984912 .background-color-B1{background-color:#0D32B2;} + .d2-1200984912 .background-color-B2{background-color:#0D32B2;} + .d2-1200984912 .background-color-B3{background-color:#E3E9FD;} + .d2-1200984912 .background-color-B4{background-color:#E3E9FD;} + .d2-1200984912 .background-color-B5{background-color:#EDF0FD;} + .d2-1200984912 .background-color-B6{background-color:#F7F8FE;} + .d2-1200984912 .background-color-AA2{background-color:#4A6FF3;} + .d2-1200984912 .background-color-AA4{background-color:#EDF0FD;} + .d2-1200984912 .background-color-AA5{background-color:#F7F8FE;} + .d2-1200984912 .background-color-AB4{background-color:#EDF0FD;} + .d2-1200984912 .background-color-AB5{background-color:#F7F8FE;} + .d2-1200984912 .color-N1{color:#0A0F25;} + .d2-1200984912 .color-N2{color:#676C7E;} + .d2-1200984912 .color-N3{color:#9499AB;} + .d2-1200984912 .color-N4{color:#CFD2DD;} + .d2-1200984912 .color-N5{color:#DEE1EB;} + .d2-1200984912 .color-N6{color:#EEF1F8;} + .d2-1200984912 .color-N7{color:#FFFFFF;} + .d2-1200984912 .color-B1{color:#0D32B2;} + .d2-1200984912 .color-B2{color:#0D32B2;} + .d2-1200984912 .color-B3{color:#E3E9FD;} + .d2-1200984912 .color-B4{color:#E3E9FD;} + .d2-1200984912 .color-B5{color:#EDF0FD;} + .d2-1200984912 .color-B6{color:#F7F8FE;} + .d2-1200984912 .color-AA2{color:#4A6FF3;} + .d2-1200984912 .color-AA4{color:#EDF0FD;} + .d2-1200984912 .color-AA5{color:#F7F8FE;} + .d2-1200984912 .color-AB4{color:#EDF0FD;} + .d2-1200984912 .color-AB5{color:#F7F8FE;}.appendix text.text{fill:#0A0F25}.md{--color-fg-default:#0A0F25;--color-fg-muted:#676C7E;--color-fg-subtle:#9499AB;--color-canvas-default:#FFFFFF;--color-canvas-subtle:#EEF1F8;--color-border-default:#0D32B2;--color-border-muted:#0D32B2;--color-neutral-muted:#EEF1F8;--color-accent-fg:#0D32B2;--color-accent-emphasis:#0D32B2;--color-attention-subtle:#676C7E;--color-danger-fg:red;}.sketch-overlay-B1{fill:url(#streaks-darker);mix-blend-mode:lighten}.sketch-overlay-B2{fill:url(#streaks-darker);mix-blend-mode:lighten}.sketch-overlay-B3{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-B4{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-B5{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-B6{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-AA2{fill:url(#streaks-dark);mix-blend-mode:overlay}.sketch-overlay-AA4{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-AA5{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-AB4{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-AB5{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-N1{fill:url(#streaks-darker);mix-blend-mode:lighten}.sketch-overlay-N2{fill:url(#streaks-dark);mix-blend-mode:overlay}.sketch-overlay-N3{fill:url(#streaks-normal);mix-blend-mode:color-burn}.sketch-overlay-N4{fill:url(#streaks-normal);mix-blend-mode:color-burn}.sketch-overlay-N5{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-N6{fill:url(#streaks-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 \ No newline at end of file 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 93ca577c9a..30d201203c 100644 --- a/e2etests/testdata/sanity/child_to_child/elk/board.exp.json +++ b/e2etests/testdata/sanity/child_to_child/elk/board.exp.json @@ -173,10 +173,8 @@ "id": "(a.b -> c.d)[0]", "src": "a.b", "srcArrow": "none", - "srcLabel": "", "dst": "c.d", "dstArrow": "triangle", - "dstLabel": "", "opacity": 1, "strokeDash": 0, "strokeWidth": 2, 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 8f7f34bded..5a01c42cfb 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-13438474 .fill-N1{fill:#0A0F25;} + .d2-13438474 .fill-N2{fill:#676C7E;} + .d2-13438474 .fill-N3{fill:#9499AB;} + .d2-13438474 .fill-N4{fill:#CFD2DD;} + .d2-13438474 .fill-N5{fill:#DEE1EB;} + .d2-13438474 .fill-N6{fill:#EEF1F8;} + .d2-13438474 .fill-N7{fill:#FFFFFF;} + .d2-13438474 .fill-B1{fill:#0D32B2;} + .d2-13438474 .fill-B2{fill:#0D32B2;} + .d2-13438474 .fill-B3{fill:#E3E9FD;} + .d2-13438474 .fill-B4{fill:#E3E9FD;} + .d2-13438474 .fill-B5{fill:#EDF0FD;} + .d2-13438474 .fill-B6{fill:#F7F8FE;} + .d2-13438474 .fill-AA2{fill:#4A6FF3;} + .d2-13438474 .fill-AA4{fill:#EDF0FD;} + .d2-13438474 .fill-AA5{fill:#F7F8FE;} + .d2-13438474 .fill-AB4{fill:#EDF0FD;} + .d2-13438474 .fill-AB5{fill:#F7F8FE;} + .d2-13438474 .stroke-N1{stroke:#0A0F25;} + .d2-13438474 .stroke-N2{stroke:#676C7E;} + .d2-13438474 .stroke-N3{stroke:#9499AB;} + .d2-13438474 .stroke-N4{stroke:#CFD2DD;} + .d2-13438474 .stroke-N5{stroke:#DEE1EB;} + .d2-13438474 .stroke-N6{stroke:#EEF1F8;} + .d2-13438474 .stroke-N7{stroke:#FFFFFF;} + .d2-13438474 .stroke-B1{stroke:#0D32B2;} + .d2-13438474 .stroke-B2{stroke:#0D32B2;} + .d2-13438474 .stroke-B3{stroke:#E3E9FD;} + .d2-13438474 .stroke-B4{stroke:#E3E9FD;} + .d2-13438474 .stroke-B5{stroke:#EDF0FD;} + .d2-13438474 .stroke-B6{stroke:#F7F8FE;} + .d2-13438474 .stroke-AA2{stroke:#4A6FF3;} + .d2-13438474 .stroke-AA4{stroke:#EDF0FD;} + .d2-13438474 .stroke-AA5{stroke:#F7F8FE;} + .d2-13438474 .stroke-AB4{stroke:#EDF0FD;} + .d2-13438474 .stroke-AB5{stroke:#F7F8FE;} + .d2-13438474 .background-color-N1{background-color:#0A0F25;} + .d2-13438474 .background-color-N2{background-color:#676C7E;} + .d2-13438474 .background-color-N3{background-color:#9499AB;} + .d2-13438474 .background-color-N4{background-color:#CFD2DD;} + .d2-13438474 .background-color-N5{background-color:#DEE1EB;} + .d2-13438474 .background-color-N6{background-color:#EEF1F8;} + .d2-13438474 .background-color-N7{background-color:#FFFFFF;} + .d2-13438474 .background-color-B1{background-color:#0D32B2;} + .d2-13438474 .background-color-B2{background-color:#0D32B2;} + .d2-13438474 .background-color-B3{background-color:#E3E9FD;} + .d2-13438474 .background-color-B4{background-color:#E3E9FD;} + .d2-13438474 .background-color-B5{background-color:#EDF0FD;} + .d2-13438474 .background-color-B6{background-color:#F7F8FE;} + .d2-13438474 .background-color-AA2{background-color:#4A6FF3;} + .d2-13438474 .background-color-AA4{background-color:#EDF0FD;} + .d2-13438474 .background-color-AA5{background-color:#F7F8FE;} + .d2-13438474 .background-color-AB4{background-color:#EDF0FD;} + .d2-13438474 .background-color-AB5{background-color:#F7F8FE;} + .d2-13438474 .color-N1{color:#0A0F25;} + .d2-13438474 .color-N2{color:#676C7E;} + .d2-13438474 .color-N3{color:#9499AB;} + .d2-13438474 .color-N4{color:#CFD2DD;} + .d2-13438474 .color-N5{color:#DEE1EB;} + .d2-13438474 .color-N6{color:#EEF1F8;} + .d2-13438474 .color-N7{color:#FFFFFF;} + .d2-13438474 .color-B1{color:#0D32B2;} + .d2-13438474 .color-B2{color:#0D32B2;} + .d2-13438474 .color-B3{color:#E3E9FD;} + .d2-13438474 .color-B4{color:#E3E9FD;} + .d2-13438474 .color-B5{color:#EDF0FD;} + .d2-13438474 .color-B6{color:#F7F8FE;} + .d2-13438474 .color-AA2{color:#4A6FF3;} + .d2-13438474 .color-AA4{color:#EDF0FD;} + .d2-13438474 .color-AA5{color:#F7F8FE;} + .d2-13438474 .color-AB4{color:#EDF0FD;} + .d2-13438474 .color-AB5{color:#F7F8FE;}.appendix text.text{fill:#0A0F25}.md{--color-fg-default:#0A0F25;--color-fg-muted:#676C7E;--color-fg-subtle:#9499AB;--color-canvas-default:#FFFFFF;--color-canvas-subtle:#EEF1F8;--color-border-default:#0D32B2;--color-border-muted:#0D32B2;--color-neutral-muted:#EEF1F8;--color-accent-fg:#0D32B2;--color-accent-emphasis:#0D32B2;--color-attention-subtle:#676C7E;--color-danger-fg:red;}.sketch-overlay-B1{fill:url(#streaks-darker);mix-blend-mode:lighten}.sketch-overlay-B2{fill:url(#streaks-darker);mix-blend-mode:lighten}.sketch-overlay-B3{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-B4{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-B5{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-B6{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-AA2{fill:url(#streaks-dark);mix-blend-mode:overlay}.sketch-overlay-AA4{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-AA5{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-AB4{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-AB5{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-N1{fill:url(#streaks-darker);mix-blend-mode:lighten}.sketch-overlay-N2{fill:url(#streaks-dark);mix-blend-mode:overlay}.sketch-overlay-N3{fill:url(#streaks-normal);mix-blend-mode:color-burn}.sketch-overlay-N4{fill:url(#streaks-normal);mix-blend-mode:color-burn}.sketch-overlay-N5{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-N6{fill:url(#streaks-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 \ No newline at end of file diff --git a/e2etests/testdata/sanity/connection_label/dagre/board.exp.json b/e2etests/testdata/sanity/connection_label/dagre/board.exp.json index 758c71a511..bbe33d517d 100644 --- a/e2etests/testdata/sanity/connection_label/dagre/board.exp.json +++ b/e2etests/testdata/sanity/connection_label/dagre/board.exp.json @@ -91,10 +91,8 @@ "id": "(a -> b)[0]", "src": "a", "srcArrow": "none", - "srcLabel": "", "dst": "b", "dstArrow": "triangle", - "dstLabel": "", "opacity": 1, "strokeDash": 0, "strokeWidth": 2, diff --git a/e2etests/testdata/sanity/connection_label/dagre/sketch.exp.svg b/e2etests/testdata/sanity/connection_label/dagre/sketch.exp.svg index 7a46466b43..9b7e3fd192 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-1260349928 .fill-N1{fill:#0A0F25;} + .d2-1260349928 .fill-N2{fill:#676C7E;} + .d2-1260349928 .fill-N3{fill:#9499AB;} + .d2-1260349928 .fill-N4{fill:#CFD2DD;} + .d2-1260349928 .fill-N5{fill:#DEE1EB;} + .d2-1260349928 .fill-N6{fill:#EEF1F8;} + .d2-1260349928 .fill-N7{fill:#FFFFFF;} + .d2-1260349928 .fill-B1{fill:#0D32B2;} + .d2-1260349928 .fill-B2{fill:#0D32B2;} + .d2-1260349928 .fill-B3{fill:#E3E9FD;} + .d2-1260349928 .fill-B4{fill:#E3E9FD;} + .d2-1260349928 .fill-B5{fill:#EDF0FD;} + .d2-1260349928 .fill-B6{fill:#F7F8FE;} + .d2-1260349928 .fill-AA2{fill:#4A6FF3;} + .d2-1260349928 .fill-AA4{fill:#EDF0FD;} + .d2-1260349928 .fill-AA5{fill:#F7F8FE;} + .d2-1260349928 .fill-AB4{fill:#EDF0FD;} + .d2-1260349928 .fill-AB5{fill:#F7F8FE;} + .d2-1260349928 .stroke-N1{stroke:#0A0F25;} + .d2-1260349928 .stroke-N2{stroke:#676C7E;} + .d2-1260349928 .stroke-N3{stroke:#9499AB;} + .d2-1260349928 .stroke-N4{stroke:#CFD2DD;} + .d2-1260349928 .stroke-N5{stroke:#DEE1EB;} + .d2-1260349928 .stroke-N6{stroke:#EEF1F8;} + .d2-1260349928 .stroke-N7{stroke:#FFFFFF;} + .d2-1260349928 .stroke-B1{stroke:#0D32B2;} + .d2-1260349928 .stroke-B2{stroke:#0D32B2;} + .d2-1260349928 .stroke-B3{stroke:#E3E9FD;} + .d2-1260349928 .stroke-B4{stroke:#E3E9FD;} + .d2-1260349928 .stroke-B5{stroke:#EDF0FD;} + .d2-1260349928 .stroke-B6{stroke:#F7F8FE;} + .d2-1260349928 .stroke-AA2{stroke:#4A6FF3;} + .d2-1260349928 .stroke-AA4{stroke:#EDF0FD;} + .d2-1260349928 .stroke-AA5{stroke:#F7F8FE;} + .d2-1260349928 .stroke-AB4{stroke:#EDF0FD;} + .d2-1260349928 .stroke-AB5{stroke:#F7F8FE;} + .d2-1260349928 .background-color-N1{background-color:#0A0F25;} + .d2-1260349928 .background-color-N2{background-color:#676C7E;} + .d2-1260349928 .background-color-N3{background-color:#9499AB;} + .d2-1260349928 .background-color-N4{background-color:#CFD2DD;} + .d2-1260349928 .background-color-N5{background-color:#DEE1EB;} + .d2-1260349928 .background-color-N6{background-color:#EEF1F8;} + .d2-1260349928 .background-color-N7{background-color:#FFFFFF;} + .d2-1260349928 .background-color-B1{background-color:#0D32B2;} + .d2-1260349928 .background-color-B2{background-color:#0D32B2;} + .d2-1260349928 .background-color-B3{background-color:#E3E9FD;} + .d2-1260349928 .background-color-B4{background-color:#E3E9FD;} + .d2-1260349928 .background-color-B5{background-color:#EDF0FD;} + .d2-1260349928 .background-color-B6{background-color:#F7F8FE;} + .d2-1260349928 .background-color-AA2{background-color:#4A6FF3;} + .d2-1260349928 .background-color-AA4{background-color:#EDF0FD;} + .d2-1260349928 .background-color-AA5{background-color:#F7F8FE;} + .d2-1260349928 .background-color-AB4{background-color:#EDF0FD;} + .d2-1260349928 .background-color-AB5{background-color:#F7F8FE;} + .d2-1260349928 .color-N1{color:#0A0F25;} + .d2-1260349928 .color-N2{color:#676C7E;} + .d2-1260349928 .color-N3{color:#9499AB;} + .d2-1260349928 .color-N4{color:#CFD2DD;} + .d2-1260349928 .color-N5{color:#DEE1EB;} + .d2-1260349928 .color-N6{color:#EEF1F8;} + .d2-1260349928 .color-N7{color:#FFFFFF;} + .d2-1260349928 .color-B1{color:#0D32B2;} + .d2-1260349928 .color-B2{color:#0D32B2;} + .d2-1260349928 .color-B3{color:#E3E9FD;} + .d2-1260349928 .color-B4{color:#E3E9FD;} + .d2-1260349928 .color-B5{color:#EDF0FD;} + .d2-1260349928 .color-B6{color:#F7F8FE;} + .d2-1260349928 .color-AA2{color:#4A6FF3;} + .d2-1260349928 .color-AA4{color:#EDF0FD;} + .d2-1260349928 .color-AA5{color:#F7F8FE;} + .d2-1260349928 .color-AB4{color:#EDF0FD;} + .d2-1260349928 .color-AB5{color:#F7F8FE;}.appendix text.text{fill:#0A0F25}.md{--color-fg-default:#0A0F25;--color-fg-muted:#676C7E;--color-fg-subtle:#9499AB;--color-canvas-default:#FFFFFF;--color-canvas-subtle:#EEF1F8;--color-border-default:#0D32B2;--color-border-muted:#0D32B2;--color-neutral-muted:#EEF1F8;--color-accent-fg:#0D32B2;--color-accent-emphasis:#0D32B2;--color-attention-subtle:#676C7E;--color-danger-fg:red;}.sketch-overlay-B1{fill:url(#streaks-darker);mix-blend-mode:lighten}.sketch-overlay-B2{fill:url(#streaks-darker);mix-blend-mode:lighten}.sketch-overlay-B3{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-B4{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-B5{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-B6{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-AA2{fill:url(#streaks-dark);mix-blend-mode:overlay}.sketch-overlay-AA4{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-AA5{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-AB4{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-AB5{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-N1{fill:url(#streaks-darker);mix-blend-mode:lighten}.sketch-overlay-N2{fill:url(#streaks-dark);mix-blend-mode:overlay}.sketch-overlay-N3{fill:url(#streaks-normal);mix-blend-mode:color-burn}.sketch-overlay-N4{fill:url(#streaks-normal);mix-blend-mode:color-burn}.sketch-overlay-N5{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-N6{fill:url(#streaks-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 \ No newline at end of file diff --git a/e2etests/testdata/sanity/connection_label/elk/board.exp.json b/e2etests/testdata/sanity/connection_label/elk/board.exp.json index 6d8c6e9052..bb0ef2bdff 100644 --- a/e2etests/testdata/sanity/connection_label/elk/board.exp.json +++ b/e2etests/testdata/sanity/connection_label/elk/board.exp.json @@ -91,10 +91,8 @@ "id": "(a -> b)[0]", "src": "a", "srcArrow": "none", - "srcLabel": "", "dst": "b", "dstArrow": "triangle", - "dstLabel": "", "opacity": 1, "strokeDash": 0, "strokeWidth": 2, diff --git a/e2etests/testdata/sanity/connection_label/elk/sketch.exp.svg b/e2etests/testdata/sanity/connection_label/elk/sketch.exp.svg index 37b3200e24..34ede21214 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-1984453805 .fill-N1{fill:#0A0F25;} + .d2-1984453805 .fill-N2{fill:#676C7E;} + .d2-1984453805 .fill-N3{fill:#9499AB;} + .d2-1984453805 .fill-N4{fill:#CFD2DD;} + .d2-1984453805 .fill-N5{fill:#DEE1EB;} + .d2-1984453805 .fill-N6{fill:#EEF1F8;} + .d2-1984453805 .fill-N7{fill:#FFFFFF;} + .d2-1984453805 .fill-B1{fill:#0D32B2;} + .d2-1984453805 .fill-B2{fill:#0D32B2;} + .d2-1984453805 .fill-B3{fill:#E3E9FD;} + .d2-1984453805 .fill-B4{fill:#E3E9FD;} + .d2-1984453805 .fill-B5{fill:#EDF0FD;} + .d2-1984453805 .fill-B6{fill:#F7F8FE;} + .d2-1984453805 .fill-AA2{fill:#4A6FF3;} + .d2-1984453805 .fill-AA4{fill:#EDF0FD;} + .d2-1984453805 .fill-AA5{fill:#F7F8FE;} + .d2-1984453805 .fill-AB4{fill:#EDF0FD;} + .d2-1984453805 .fill-AB5{fill:#F7F8FE;} + .d2-1984453805 .stroke-N1{stroke:#0A0F25;} + .d2-1984453805 .stroke-N2{stroke:#676C7E;} + .d2-1984453805 .stroke-N3{stroke:#9499AB;} + .d2-1984453805 .stroke-N4{stroke:#CFD2DD;} + .d2-1984453805 .stroke-N5{stroke:#DEE1EB;} + .d2-1984453805 .stroke-N6{stroke:#EEF1F8;} + .d2-1984453805 .stroke-N7{stroke:#FFFFFF;} + .d2-1984453805 .stroke-B1{stroke:#0D32B2;} + .d2-1984453805 .stroke-B2{stroke:#0D32B2;} + .d2-1984453805 .stroke-B3{stroke:#E3E9FD;} + .d2-1984453805 .stroke-B4{stroke:#E3E9FD;} + .d2-1984453805 .stroke-B5{stroke:#EDF0FD;} + .d2-1984453805 .stroke-B6{stroke:#F7F8FE;} + .d2-1984453805 .stroke-AA2{stroke:#4A6FF3;} + .d2-1984453805 .stroke-AA4{stroke:#EDF0FD;} + .d2-1984453805 .stroke-AA5{stroke:#F7F8FE;} + .d2-1984453805 .stroke-AB4{stroke:#EDF0FD;} + .d2-1984453805 .stroke-AB5{stroke:#F7F8FE;} + .d2-1984453805 .background-color-N1{background-color:#0A0F25;} + .d2-1984453805 .background-color-N2{background-color:#676C7E;} + .d2-1984453805 .background-color-N3{background-color:#9499AB;} + .d2-1984453805 .background-color-N4{background-color:#CFD2DD;} + .d2-1984453805 .background-color-N5{background-color:#DEE1EB;} + .d2-1984453805 .background-color-N6{background-color:#EEF1F8;} + .d2-1984453805 .background-color-N7{background-color:#FFFFFF;} + .d2-1984453805 .background-color-B1{background-color:#0D32B2;} + .d2-1984453805 .background-color-B2{background-color:#0D32B2;} + .d2-1984453805 .background-color-B3{background-color:#E3E9FD;} + .d2-1984453805 .background-color-B4{background-color:#E3E9FD;} + .d2-1984453805 .background-color-B5{background-color:#EDF0FD;} + .d2-1984453805 .background-color-B6{background-color:#F7F8FE;} + .d2-1984453805 .background-color-AA2{background-color:#4A6FF3;} + .d2-1984453805 .background-color-AA4{background-color:#EDF0FD;} + .d2-1984453805 .background-color-AA5{background-color:#F7F8FE;} + .d2-1984453805 .background-color-AB4{background-color:#EDF0FD;} + .d2-1984453805 .background-color-AB5{background-color:#F7F8FE;} + .d2-1984453805 .color-N1{color:#0A0F25;} + .d2-1984453805 .color-N2{color:#676C7E;} + .d2-1984453805 .color-N3{color:#9499AB;} + .d2-1984453805 .color-N4{color:#CFD2DD;} + .d2-1984453805 .color-N5{color:#DEE1EB;} + .d2-1984453805 .color-N6{color:#EEF1F8;} + .d2-1984453805 .color-N7{color:#FFFFFF;} + .d2-1984453805 .color-B1{color:#0D32B2;} + .d2-1984453805 .color-B2{color:#0D32B2;} + .d2-1984453805 .color-B3{color:#E3E9FD;} + .d2-1984453805 .color-B4{color:#E3E9FD;} + .d2-1984453805 .color-B5{color:#EDF0FD;} + .d2-1984453805 .color-B6{color:#F7F8FE;} + .d2-1984453805 .color-AA2{color:#4A6FF3;} + .d2-1984453805 .color-AA4{color:#EDF0FD;} + .d2-1984453805 .color-AA5{color:#F7F8FE;} + .d2-1984453805 .color-AB4{color:#EDF0FD;} + .d2-1984453805 .color-AB5{color:#F7F8FE;}.appendix text.text{fill:#0A0F25}.md{--color-fg-default:#0A0F25;--color-fg-muted:#676C7E;--color-fg-subtle:#9499AB;--color-canvas-default:#FFFFFF;--color-canvas-subtle:#EEF1F8;--color-border-default:#0D32B2;--color-border-muted:#0D32B2;--color-neutral-muted:#EEF1F8;--color-accent-fg:#0D32B2;--color-accent-emphasis:#0D32B2;--color-attention-subtle:#676C7E;--color-danger-fg:red;}.sketch-overlay-B1{fill:url(#streaks-darker);mix-blend-mode:lighten}.sketch-overlay-B2{fill:url(#streaks-darker);mix-blend-mode:lighten}.sketch-overlay-B3{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-B4{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-B5{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-B6{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-AA2{fill:url(#streaks-dark);mix-blend-mode:overlay}.sketch-overlay-AA4{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-AA5{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-AB4{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-AB5{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-N1{fill:url(#streaks-darker);mix-blend-mode:lighten}.sketch-overlay-N2{fill:url(#streaks-dark);mix-blend-mode:overlay}.sketch-overlay-N3{fill:url(#streaks-normal);mix-blend-mode:color-burn}.sketch-overlay-N4{fill:url(#streaks-normal);mix-blend-mode:color-burn}.sketch-overlay-N5{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-N6{fill:url(#streaks-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 \ No newline at end of file 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 5a8ca8233c..9df96a9601 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 @@ -132,10 +132,8 @@ "id": "(hexagon -> square)[0]", "src": "hexagon", "srcArrow": "none", - "srcLabel": "", "dst": "square", "dstArrow": "triangle", - "dstLabel": "", "opacity": 1, "strokeDash": 0, "strokeWidth": 2, @@ -181,10 +179,8 @@ "id": "(square -> rect)[0]", "src": "square", "srcArrow": "none", - "srcLabel": "", "dst": "rect", "dstArrow": "triangle", - "dstLabel": "", "opacity": 1, "strokeDash": 0, "strokeWidth": 2, 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 65d9246443..4a4c11b8ee 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-1907133846 .fill-N1{fill:#0A0F25;} + .d2-1907133846 .fill-N2{fill:#676C7E;} + .d2-1907133846 .fill-N3{fill:#9499AB;} + .d2-1907133846 .fill-N4{fill:#CFD2DD;} + .d2-1907133846 .fill-N5{fill:#DEE1EB;} + .d2-1907133846 .fill-N6{fill:#EEF1F8;} + .d2-1907133846 .fill-N7{fill:#FFFFFF;} + .d2-1907133846 .fill-B1{fill:#0D32B2;} + .d2-1907133846 .fill-B2{fill:#0D32B2;} + .d2-1907133846 .fill-B3{fill:#E3E9FD;} + .d2-1907133846 .fill-B4{fill:#E3E9FD;} + .d2-1907133846 .fill-B5{fill:#EDF0FD;} + .d2-1907133846 .fill-B6{fill:#F7F8FE;} + .d2-1907133846 .fill-AA2{fill:#4A6FF3;} + .d2-1907133846 .fill-AA4{fill:#EDF0FD;} + .d2-1907133846 .fill-AA5{fill:#F7F8FE;} + .d2-1907133846 .fill-AB4{fill:#EDF0FD;} + .d2-1907133846 .fill-AB5{fill:#F7F8FE;} + .d2-1907133846 .stroke-N1{stroke:#0A0F25;} + .d2-1907133846 .stroke-N2{stroke:#676C7E;} + .d2-1907133846 .stroke-N3{stroke:#9499AB;} + .d2-1907133846 .stroke-N4{stroke:#CFD2DD;} + .d2-1907133846 .stroke-N5{stroke:#DEE1EB;} + .d2-1907133846 .stroke-N6{stroke:#EEF1F8;} + .d2-1907133846 .stroke-N7{stroke:#FFFFFF;} + .d2-1907133846 .stroke-B1{stroke:#0D32B2;} + .d2-1907133846 .stroke-B2{stroke:#0D32B2;} + .d2-1907133846 .stroke-B3{stroke:#E3E9FD;} + .d2-1907133846 .stroke-B4{stroke:#E3E9FD;} + .d2-1907133846 .stroke-B5{stroke:#EDF0FD;} + .d2-1907133846 .stroke-B6{stroke:#F7F8FE;} + .d2-1907133846 .stroke-AA2{stroke:#4A6FF3;} + .d2-1907133846 .stroke-AA4{stroke:#EDF0FD;} + .d2-1907133846 .stroke-AA5{stroke:#F7F8FE;} + .d2-1907133846 .stroke-AB4{stroke:#EDF0FD;} + .d2-1907133846 .stroke-AB5{stroke:#F7F8FE;} + .d2-1907133846 .background-color-N1{background-color:#0A0F25;} + .d2-1907133846 .background-color-N2{background-color:#676C7E;} + .d2-1907133846 .background-color-N3{background-color:#9499AB;} + .d2-1907133846 .background-color-N4{background-color:#CFD2DD;} + .d2-1907133846 .background-color-N5{background-color:#DEE1EB;} + .d2-1907133846 .background-color-N6{background-color:#EEF1F8;} + .d2-1907133846 .background-color-N7{background-color:#FFFFFF;} + .d2-1907133846 .background-color-B1{background-color:#0D32B2;} + .d2-1907133846 .background-color-B2{background-color:#0D32B2;} + .d2-1907133846 .background-color-B3{background-color:#E3E9FD;} + .d2-1907133846 .background-color-B4{background-color:#E3E9FD;} + .d2-1907133846 .background-color-B5{background-color:#EDF0FD;} + .d2-1907133846 .background-color-B6{background-color:#F7F8FE;} + .d2-1907133846 .background-color-AA2{background-color:#4A6FF3;} + .d2-1907133846 .background-color-AA4{background-color:#EDF0FD;} + .d2-1907133846 .background-color-AA5{background-color:#F7F8FE;} + .d2-1907133846 .background-color-AB4{background-color:#EDF0FD;} + .d2-1907133846 .background-color-AB5{background-color:#F7F8FE;} + .d2-1907133846 .color-N1{color:#0A0F25;} + .d2-1907133846 .color-N2{color:#676C7E;} + .d2-1907133846 .color-N3{color:#9499AB;} + .d2-1907133846 .color-N4{color:#CFD2DD;} + .d2-1907133846 .color-N5{color:#DEE1EB;} + .d2-1907133846 .color-N6{color:#EEF1F8;} + .d2-1907133846 .color-N7{color:#FFFFFF;} + .d2-1907133846 .color-B1{color:#0D32B2;} + .d2-1907133846 .color-B2{color:#0D32B2;} + .d2-1907133846 .color-B3{color:#E3E9FD;} + .d2-1907133846 .color-B4{color:#E3E9FD;} + .d2-1907133846 .color-B5{color:#EDF0FD;} + .d2-1907133846 .color-B6{color:#F7F8FE;} + .d2-1907133846 .color-AA2{color:#4A6FF3;} + .d2-1907133846 .color-AA4{color:#EDF0FD;} + .d2-1907133846 .color-AA5{color:#F7F8FE;} + .d2-1907133846 .color-AB4{color:#EDF0FD;} + .d2-1907133846 .color-AB5{color:#F7F8FE;}.appendix text.text{fill:#0A0F25}.md{--color-fg-default:#0A0F25;--color-fg-muted:#676C7E;--color-fg-subtle:#9499AB;--color-canvas-default:#FFFFFF;--color-canvas-subtle:#EEF1F8;--color-border-default:#0D32B2;--color-border-muted:#0D32B2;--color-neutral-muted:#EEF1F8;--color-accent-fg:#0D32B2;--color-accent-emphasis:#0D32B2;--color-attention-subtle:#676C7E;--color-danger-fg:red;}.sketch-overlay-B1{fill:url(#streaks-darker);mix-blend-mode:lighten}.sketch-overlay-B2{fill:url(#streaks-darker);mix-blend-mode:lighten}.sketch-overlay-B3{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-B4{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-B5{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-B6{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-AA2{fill:url(#streaks-dark);mix-blend-mode:overlay}.sketch-overlay-AA4{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-AA5{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-AB4{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-AB5{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-N1{fill:url(#streaks-darker);mix-blend-mode:lighten}.sketch-overlay-N2{fill:url(#streaks-dark);mix-blend-mode:overlay}.sketch-overlay-N3{fill:url(#streaks-normal);mix-blend-mode:color-burn}.sketch-overlay-N4{fill:url(#streaks-normal);mix-blend-mode:color-burn}.sketch-overlay-N5{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-N6{fill:url(#streaks-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 \ No newline at end of file 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 29a9a57adb..52c25f9b35 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 @@ -132,10 +132,8 @@ "id": "(hexagon -> square)[0]", "src": "hexagon", "srcArrow": "none", - "srcLabel": "", "dst": "square", "dstArrow": "triangle", - "dstLabel": "", "opacity": 1, "strokeDash": 0, "strokeWidth": 2, @@ -172,10 +170,8 @@ "id": "(square -> rect)[0]", "src": "square", "srcArrow": "none", - "srcLabel": "", "dst": "rect", "dstArrow": "triangle", - "dstLabel": "", "opacity": 1, "strokeDash": 0, "strokeWidth": 2, 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 f87601847b..6e7fa2d1b6 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-4017835097 .fill-N1{fill:#0A0F25;} + .d2-4017835097 .fill-N2{fill:#676C7E;} + .d2-4017835097 .fill-N3{fill:#9499AB;} + .d2-4017835097 .fill-N4{fill:#CFD2DD;} + .d2-4017835097 .fill-N5{fill:#DEE1EB;} + .d2-4017835097 .fill-N6{fill:#EEF1F8;} + .d2-4017835097 .fill-N7{fill:#FFFFFF;} + .d2-4017835097 .fill-B1{fill:#0D32B2;} + .d2-4017835097 .fill-B2{fill:#0D32B2;} + .d2-4017835097 .fill-B3{fill:#E3E9FD;} + .d2-4017835097 .fill-B4{fill:#E3E9FD;} + .d2-4017835097 .fill-B5{fill:#EDF0FD;} + .d2-4017835097 .fill-B6{fill:#F7F8FE;} + .d2-4017835097 .fill-AA2{fill:#4A6FF3;} + .d2-4017835097 .fill-AA4{fill:#EDF0FD;} + .d2-4017835097 .fill-AA5{fill:#F7F8FE;} + .d2-4017835097 .fill-AB4{fill:#EDF0FD;} + .d2-4017835097 .fill-AB5{fill:#F7F8FE;} + .d2-4017835097 .stroke-N1{stroke:#0A0F25;} + .d2-4017835097 .stroke-N2{stroke:#676C7E;} + .d2-4017835097 .stroke-N3{stroke:#9499AB;} + .d2-4017835097 .stroke-N4{stroke:#CFD2DD;} + .d2-4017835097 .stroke-N5{stroke:#DEE1EB;} + .d2-4017835097 .stroke-N6{stroke:#EEF1F8;} + .d2-4017835097 .stroke-N7{stroke:#FFFFFF;} + .d2-4017835097 .stroke-B1{stroke:#0D32B2;} + .d2-4017835097 .stroke-B2{stroke:#0D32B2;} + .d2-4017835097 .stroke-B3{stroke:#E3E9FD;} + .d2-4017835097 .stroke-B4{stroke:#E3E9FD;} + .d2-4017835097 .stroke-B5{stroke:#EDF0FD;} + .d2-4017835097 .stroke-B6{stroke:#F7F8FE;} + .d2-4017835097 .stroke-AA2{stroke:#4A6FF3;} + .d2-4017835097 .stroke-AA4{stroke:#EDF0FD;} + .d2-4017835097 .stroke-AA5{stroke:#F7F8FE;} + .d2-4017835097 .stroke-AB4{stroke:#EDF0FD;} + .d2-4017835097 .stroke-AB5{stroke:#F7F8FE;} + .d2-4017835097 .background-color-N1{background-color:#0A0F25;} + .d2-4017835097 .background-color-N2{background-color:#676C7E;} + .d2-4017835097 .background-color-N3{background-color:#9499AB;} + .d2-4017835097 .background-color-N4{background-color:#CFD2DD;} + .d2-4017835097 .background-color-N5{background-color:#DEE1EB;} + .d2-4017835097 .background-color-N6{background-color:#EEF1F8;} + .d2-4017835097 .background-color-N7{background-color:#FFFFFF;} + .d2-4017835097 .background-color-B1{background-color:#0D32B2;} + .d2-4017835097 .background-color-B2{background-color:#0D32B2;} + .d2-4017835097 .background-color-B3{background-color:#E3E9FD;} + .d2-4017835097 .background-color-B4{background-color:#E3E9FD;} + .d2-4017835097 .background-color-B5{background-color:#EDF0FD;} + .d2-4017835097 .background-color-B6{background-color:#F7F8FE;} + .d2-4017835097 .background-color-AA2{background-color:#4A6FF3;} + .d2-4017835097 .background-color-AA4{background-color:#EDF0FD;} + .d2-4017835097 .background-color-AA5{background-color:#F7F8FE;} + .d2-4017835097 .background-color-AB4{background-color:#EDF0FD;} + .d2-4017835097 .background-color-AB5{background-color:#F7F8FE;} + .d2-4017835097 .color-N1{color:#0A0F25;} + .d2-4017835097 .color-N2{color:#676C7E;} + .d2-4017835097 .color-N3{color:#9499AB;} + .d2-4017835097 .color-N4{color:#CFD2DD;} + .d2-4017835097 .color-N5{color:#DEE1EB;} + .d2-4017835097 .color-N6{color:#EEF1F8;} + .d2-4017835097 .color-N7{color:#FFFFFF;} + .d2-4017835097 .color-B1{color:#0D32B2;} + .d2-4017835097 .color-B2{color:#0D32B2;} + .d2-4017835097 .color-B3{color:#E3E9FD;} + .d2-4017835097 .color-B4{color:#E3E9FD;} + .d2-4017835097 .color-B5{color:#EDF0FD;} + .d2-4017835097 .color-B6{color:#F7F8FE;} + .d2-4017835097 .color-AA2{color:#4A6FF3;} + .d2-4017835097 .color-AA4{color:#EDF0FD;} + .d2-4017835097 .color-AA5{color:#F7F8FE;} + .d2-4017835097 .color-AB4{color:#EDF0FD;} + .d2-4017835097 .color-AB5{color:#F7F8FE;}.appendix text.text{fill:#0A0F25}.md{--color-fg-default:#0A0F25;--color-fg-muted:#676C7E;--color-fg-subtle:#9499AB;--color-canvas-default:#FFFFFF;--color-canvas-subtle:#EEF1F8;--color-border-default:#0D32B2;--color-border-muted:#0D32B2;--color-neutral-muted:#EEF1F8;--color-accent-fg:#0D32B2;--color-accent-emphasis:#0D32B2;--color-attention-subtle:#676C7E;--color-danger-fg:red;}.sketch-overlay-B1{fill:url(#streaks-darker);mix-blend-mode:lighten}.sketch-overlay-B2{fill:url(#streaks-darker);mix-blend-mode:lighten}.sketch-overlay-B3{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-B4{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-B5{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-B6{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-AA2{fill:url(#streaks-dark);mix-blend-mode:overlay}.sketch-overlay-AA4{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-AA5{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-AB4{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-AB5{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-N1{fill:url(#streaks-darker);mix-blend-mode:lighten}.sketch-overlay-N2{fill:url(#streaks-dark);mix-blend-mode:overlay}.sketch-overlay-N3{fill:url(#streaks-normal);mix-blend-mode:color-burn}.sketch-overlay-N4{fill:url(#streaks-normal);mix-blend-mode:color-burn}.sketch-overlay-N5{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-N6{fill:url(#streaks-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 \ No newline at end of file diff --git a/e2etests/testdata/stable/all_shapes/dagre/board.exp.json b/e2etests/testdata/stable/all_shapes/dagre/board.exp.json index 6fe3a3987a..9ebbf9a619 100644 --- a/e2etests/testdata/stable/all_shapes/dagre/board.exp.json +++ b/e2etests/testdata/stable/all_shapes/dagre/board.exp.json @@ -706,10 +706,8 @@ "id": "(rectangle -> square)[0]", "src": "rectangle", "srcArrow": "none", - "srcLabel": "", "dst": "square", "dstArrow": "triangle", - "dstLabel": "", "opacity": 1, "strokeDash": 0, "strokeWidth": 2, @@ -755,10 +753,8 @@ "id": "(square -> page)[0]", "src": "square", "srcArrow": "none", - "srcLabel": "", "dst": "page", "dstArrow": "triangle", - "dstLabel": "", "opacity": 1, "strokeDash": 0, "strokeWidth": 2, @@ -804,10 +800,8 @@ "id": "(parallelogram -> document)[0]", "src": "parallelogram", "srcArrow": "none", - "srcLabel": "", "dst": "document", "dstArrow": "triangle", - "dstLabel": "", "opacity": 1, "strokeDash": 0, "strokeWidth": 2, @@ -853,10 +847,8 @@ "id": "(document -> cylinder)[0]", "src": "document", "srcArrow": "none", - "srcLabel": "", "dst": "cylinder", "dstArrow": "triangle", - "dstLabel": "", "opacity": 1, "strokeDash": 0, "strokeWidth": 2, @@ -902,10 +894,8 @@ "id": "(queue -> package)[0]", "src": "queue", "srcArrow": "none", - "srcLabel": "", "dst": "package", "dstArrow": "triangle", - "dstLabel": "", "opacity": 1, "strokeDash": 0, "strokeWidth": 2, @@ -951,10 +941,8 @@ "id": "(package -> step)[0]", "src": "package", "srcArrow": "none", - "srcLabel": "", "dst": "step", "dstArrow": "triangle", - "dstLabel": "", "opacity": 1, "strokeDash": 0, "strokeWidth": 2, @@ -1000,10 +988,8 @@ "id": "(callout -> stored_data)[0]", "src": "callout", "srcArrow": "none", - "srcLabel": "", "dst": "stored_data", "dstArrow": "triangle", - "dstLabel": "", "opacity": 1, "strokeDash": 0, "strokeWidth": 2, @@ -1049,10 +1035,8 @@ "id": "(stored_data -> person)[0]", "src": "stored_data", "srcArrow": "none", - "srcLabel": "", "dst": "person", "dstArrow": "triangle", - "dstLabel": "", "opacity": 1, "strokeDash": 0, "strokeWidth": 2, @@ -1098,10 +1082,8 @@ "id": "(diamond -> oval)[0]", "src": "diamond", "srcArrow": "none", - "srcLabel": "", "dst": "oval", "dstArrow": "triangle", - "dstLabel": "", "opacity": 1, "strokeDash": 0, "strokeWidth": 2, @@ -1147,10 +1129,8 @@ "id": "(oval -> circle)[0]", "src": "oval", "srcArrow": "none", - "srcLabel": "", "dst": "circle", "dstArrow": "triangle", - "dstLabel": "", "opacity": 1, "strokeDash": 0, "strokeWidth": 2, @@ -1196,10 +1176,8 @@ "id": "(hexagon -> cloud)[0]", "src": "hexagon", "srcArrow": "none", - "srcLabel": "", "dst": "cloud", "dstArrow": "triangle", - "dstLabel": "", "opacity": 1, "strokeDash": 0, "strokeWidth": 2, diff --git a/e2etests/testdata/stable/all_shapes/dagre/sketch.exp.svg b/e2etests/testdata/stable/all_shapes/dagre/sketch.exp.svg index 7f648d6ba8..793979f0cb 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-220284855 .fill-N1{fill:#0A0F25;} + .d2-220284855 .fill-N2{fill:#676C7E;} + .d2-220284855 .fill-N3{fill:#9499AB;} + .d2-220284855 .fill-N4{fill:#CFD2DD;} + .d2-220284855 .fill-N5{fill:#DEE1EB;} + .d2-220284855 .fill-N6{fill:#EEF1F8;} + .d2-220284855 .fill-N7{fill:#FFFFFF;} + .d2-220284855 .fill-B1{fill:#0D32B2;} + .d2-220284855 .fill-B2{fill:#0D32B2;} + .d2-220284855 .fill-B3{fill:#E3E9FD;} + .d2-220284855 .fill-B4{fill:#E3E9FD;} + .d2-220284855 .fill-B5{fill:#EDF0FD;} + .d2-220284855 .fill-B6{fill:#F7F8FE;} + .d2-220284855 .fill-AA2{fill:#4A6FF3;} + .d2-220284855 .fill-AA4{fill:#EDF0FD;} + .d2-220284855 .fill-AA5{fill:#F7F8FE;} + .d2-220284855 .fill-AB4{fill:#EDF0FD;} + .d2-220284855 .fill-AB5{fill:#F7F8FE;} + .d2-220284855 .stroke-N1{stroke:#0A0F25;} + .d2-220284855 .stroke-N2{stroke:#676C7E;} + .d2-220284855 .stroke-N3{stroke:#9499AB;} + .d2-220284855 .stroke-N4{stroke:#CFD2DD;} + .d2-220284855 .stroke-N5{stroke:#DEE1EB;} + .d2-220284855 .stroke-N6{stroke:#EEF1F8;} + .d2-220284855 .stroke-N7{stroke:#FFFFFF;} + .d2-220284855 .stroke-B1{stroke:#0D32B2;} + .d2-220284855 .stroke-B2{stroke:#0D32B2;} + .d2-220284855 .stroke-B3{stroke:#E3E9FD;} + .d2-220284855 .stroke-B4{stroke:#E3E9FD;} + .d2-220284855 .stroke-B5{stroke:#EDF0FD;} + .d2-220284855 .stroke-B6{stroke:#F7F8FE;} + .d2-220284855 .stroke-AA2{stroke:#4A6FF3;} + .d2-220284855 .stroke-AA4{stroke:#EDF0FD;} + .d2-220284855 .stroke-AA5{stroke:#F7F8FE;} + .d2-220284855 .stroke-AB4{stroke:#EDF0FD;} + .d2-220284855 .stroke-AB5{stroke:#F7F8FE;} + .d2-220284855 .background-color-N1{background-color:#0A0F25;} + .d2-220284855 .background-color-N2{background-color:#676C7E;} + .d2-220284855 .background-color-N3{background-color:#9499AB;} + .d2-220284855 .background-color-N4{background-color:#CFD2DD;} + .d2-220284855 .background-color-N5{background-color:#DEE1EB;} + .d2-220284855 .background-color-N6{background-color:#EEF1F8;} + .d2-220284855 .background-color-N7{background-color:#FFFFFF;} + .d2-220284855 .background-color-B1{background-color:#0D32B2;} + .d2-220284855 .background-color-B2{background-color:#0D32B2;} + .d2-220284855 .background-color-B3{background-color:#E3E9FD;} + .d2-220284855 .background-color-B4{background-color:#E3E9FD;} + .d2-220284855 .background-color-B5{background-color:#EDF0FD;} + .d2-220284855 .background-color-B6{background-color:#F7F8FE;} + .d2-220284855 .background-color-AA2{background-color:#4A6FF3;} + .d2-220284855 .background-color-AA4{background-color:#EDF0FD;} + .d2-220284855 .background-color-AA5{background-color:#F7F8FE;} + .d2-220284855 .background-color-AB4{background-color:#EDF0FD;} + .d2-220284855 .background-color-AB5{background-color:#F7F8FE;} + .d2-220284855 .color-N1{color:#0A0F25;} + .d2-220284855 .color-N2{color:#676C7E;} + .d2-220284855 .color-N3{color:#9499AB;} + .d2-220284855 .color-N4{color:#CFD2DD;} + .d2-220284855 .color-N5{color:#DEE1EB;} + .d2-220284855 .color-N6{color:#EEF1F8;} + .d2-220284855 .color-N7{color:#FFFFFF;} + .d2-220284855 .color-B1{color:#0D32B2;} + .d2-220284855 .color-B2{color:#0D32B2;} + .d2-220284855 .color-B3{color:#E3E9FD;} + .d2-220284855 .color-B4{color:#E3E9FD;} + .d2-220284855 .color-B5{color:#EDF0FD;} + .d2-220284855 .color-B6{color:#F7F8FE;} + .d2-220284855 .color-AA2{color:#4A6FF3;} + .d2-220284855 .color-AA4{color:#EDF0FD;} + .d2-220284855 .color-AA5{color:#F7F8FE;} + .d2-220284855 .color-AB4{color:#EDF0FD;} + .d2-220284855 .color-AB5{color:#F7F8FE;}.appendix text.text{fill:#0A0F25}.md{--color-fg-default:#0A0F25;--color-fg-muted:#676C7E;--color-fg-subtle:#9499AB;--color-canvas-default:#FFFFFF;--color-canvas-subtle:#EEF1F8;--color-border-default:#0D32B2;--color-border-muted:#0D32B2;--color-neutral-muted:#EEF1F8;--color-accent-fg:#0D32B2;--color-accent-emphasis:#0D32B2;--color-attention-subtle:#676C7E;--color-danger-fg:red;}.sketch-overlay-B1{fill:url(#streaks-darker);mix-blend-mode:lighten}.sketch-overlay-B2{fill:url(#streaks-darker);mix-blend-mode:lighten}.sketch-overlay-B3{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-B4{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-B5{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-B6{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-AA2{fill:url(#streaks-dark);mix-blend-mode:overlay}.sketch-overlay-AA4{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-AA5{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-AB4{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-AB5{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-N1{fill:url(#streaks-darker);mix-blend-mode:lighten}.sketch-overlay-N2{fill:url(#streaks-dark);mix-blend-mode:overlay}.sketch-overlay-N3{fill:url(#streaks-normal);mix-blend-mode:color-burn}.sketch-overlay-N4{fill:url(#streaks-normal);mix-blend-mode:color-burn}.sketch-overlay-N5{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-N6{fill:url(#streaks-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 \ No newline at end of file diff --git a/e2etests/testdata/stable/all_shapes/elk/board.exp.json b/e2etests/testdata/stable/all_shapes/elk/board.exp.json index 5b734f48cd..4a1c2d4cca 100644 --- a/e2etests/testdata/stable/all_shapes/elk/board.exp.json +++ b/e2etests/testdata/stable/all_shapes/elk/board.exp.json @@ -706,10 +706,8 @@ "id": "(rectangle -> square)[0]", "src": "rectangle", "srcArrow": "none", - "srcLabel": "", "dst": "square", "dstArrow": "triangle", - "dstLabel": "", "opacity": 1, "strokeDash": 0, "strokeWidth": 2, @@ -746,10 +744,8 @@ "id": "(square -> page)[0]", "src": "square", "srcArrow": "none", - "srcLabel": "", "dst": "page", "dstArrow": "triangle", - "dstLabel": "", "opacity": 1, "strokeDash": 0, "strokeWidth": 2, @@ -786,10 +782,8 @@ "id": "(parallelogram -> document)[0]", "src": "parallelogram", "srcArrow": "none", - "srcLabel": "", "dst": "document", "dstArrow": "triangle", - "dstLabel": "", "opacity": 1, "strokeDash": 0, "strokeWidth": 2, @@ -826,10 +820,8 @@ "id": "(document -> cylinder)[0]", "src": "document", "srcArrow": "none", - "srcLabel": "", "dst": "cylinder", "dstArrow": "triangle", - "dstLabel": "", "opacity": 1, "strokeDash": 0, "strokeWidth": 2, @@ -866,10 +858,8 @@ "id": "(queue -> package)[0]", "src": "queue", "srcArrow": "none", - "srcLabel": "", "dst": "package", "dstArrow": "triangle", - "dstLabel": "", "opacity": 1, "strokeDash": 0, "strokeWidth": 2, @@ -906,10 +896,8 @@ "id": "(package -> step)[0]", "src": "package", "srcArrow": "none", - "srcLabel": "", "dst": "step", "dstArrow": "triangle", - "dstLabel": "", "opacity": 1, "strokeDash": 0, "strokeWidth": 2, @@ -946,10 +934,8 @@ "id": "(callout -> stored_data)[0]", "src": "callout", "srcArrow": "none", - "srcLabel": "", "dst": "stored_data", "dstArrow": "triangle", - "dstLabel": "", "opacity": 1, "strokeDash": 0, "strokeWidth": 2, @@ -986,10 +972,8 @@ "id": "(stored_data -> person)[0]", "src": "stored_data", "srcArrow": "none", - "srcLabel": "", "dst": "person", "dstArrow": "triangle", - "dstLabel": "", "opacity": 1, "strokeDash": 0, "strokeWidth": 2, @@ -1026,10 +1010,8 @@ "id": "(diamond -> oval)[0]", "src": "diamond", "srcArrow": "none", - "srcLabel": "", "dst": "oval", "dstArrow": "triangle", - "dstLabel": "", "opacity": 1, "strokeDash": 0, "strokeWidth": 2, @@ -1066,10 +1048,8 @@ "id": "(oval -> circle)[0]", "src": "oval", "srcArrow": "none", - "srcLabel": "", "dst": "circle", "dstArrow": "triangle", - "dstLabel": "", "opacity": 1, "strokeDash": 0, "strokeWidth": 2, @@ -1106,10 +1086,8 @@ "id": "(hexagon -> cloud)[0]", "src": "hexagon", "srcArrow": "none", - "srcLabel": "", "dst": "cloud", "dstArrow": "triangle", - "dstLabel": "", "opacity": 1, "strokeDash": 0, "strokeWidth": 2, diff --git a/e2etests/testdata/stable/all_shapes/elk/sketch.exp.svg b/e2etests/testdata/stable/all_shapes/elk/sketch.exp.svg index 64709136e3..7dd07719ee 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-2617729419 .fill-N1{fill:#0A0F25;} + .d2-2617729419 .fill-N2{fill:#676C7E;} + .d2-2617729419 .fill-N3{fill:#9499AB;} + .d2-2617729419 .fill-N4{fill:#CFD2DD;} + .d2-2617729419 .fill-N5{fill:#DEE1EB;} + .d2-2617729419 .fill-N6{fill:#EEF1F8;} + .d2-2617729419 .fill-N7{fill:#FFFFFF;} + .d2-2617729419 .fill-B1{fill:#0D32B2;} + .d2-2617729419 .fill-B2{fill:#0D32B2;} + .d2-2617729419 .fill-B3{fill:#E3E9FD;} + .d2-2617729419 .fill-B4{fill:#E3E9FD;} + .d2-2617729419 .fill-B5{fill:#EDF0FD;} + .d2-2617729419 .fill-B6{fill:#F7F8FE;} + .d2-2617729419 .fill-AA2{fill:#4A6FF3;} + .d2-2617729419 .fill-AA4{fill:#EDF0FD;} + .d2-2617729419 .fill-AA5{fill:#F7F8FE;} + .d2-2617729419 .fill-AB4{fill:#EDF0FD;} + .d2-2617729419 .fill-AB5{fill:#F7F8FE;} + .d2-2617729419 .stroke-N1{stroke:#0A0F25;} + .d2-2617729419 .stroke-N2{stroke:#676C7E;} + .d2-2617729419 .stroke-N3{stroke:#9499AB;} + .d2-2617729419 .stroke-N4{stroke:#CFD2DD;} + .d2-2617729419 .stroke-N5{stroke:#DEE1EB;} + .d2-2617729419 .stroke-N6{stroke:#EEF1F8;} + .d2-2617729419 .stroke-N7{stroke:#FFFFFF;} + .d2-2617729419 .stroke-B1{stroke:#0D32B2;} + .d2-2617729419 .stroke-B2{stroke:#0D32B2;} + .d2-2617729419 .stroke-B3{stroke:#E3E9FD;} + .d2-2617729419 .stroke-B4{stroke:#E3E9FD;} + .d2-2617729419 .stroke-B5{stroke:#EDF0FD;} + .d2-2617729419 .stroke-B6{stroke:#F7F8FE;} + .d2-2617729419 .stroke-AA2{stroke:#4A6FF3;} + .d2-2617729419 .stroke-AA4{stroke:#EDF0FD;} + .d2-2617729419 .stroke-AA5{stroke:#F7F8FE;} + .d2-2617729419 .stroke-AB4{stroke:#EDF0FD;} + .d2-2617729419 .stroke-AB5{stroke:#F7F8FE;} + .d2-2617729419 .background-color-N1{background-color:#0A0F25;} + .d2-2617729419 .background-color-N2{background-color:#676C7E;} + .d2-2617729419 .background-color-N3{background-color:#9499AB;} + .d2-2617729419 .background-color-N4{background-color:#CFD2DD;} + .d2-2617729419 .background-color-N5{background-color:#DEE1EB;} + .d2-2617729419 .background-color-N6{background-color:#EEF1F8;} + .d2-2617729419 .background-color-N7{background-color:#FFFFFF;} + .d2-2617729419 .background-color-B1{background-color:#0D32B2;} + .d2-2617729419 .background-color-B2{background-color:#0D32B2;} + .d2-2617729419 .background-color-B3{background-color:#E3E9FD;} + .d2-2617729419 .background-color-B4{background-color:#E3E9FD;} + .d2-2617729419 .background-color-B5{background-color:#EDF0FD;} + .d2-2617729419 .background-color-B6{background-color:#F7F8FE;} + .d2-2617729419 .background-color-AA2{background-color:#4A6FF3;} + .d2-2617729419 .background-color-AA4{background-color:#EDF0FD;} + .d2-2617729419 .background-color-AA5{background-color:#F7F8FE;} + .d2-2617729419 .background-color-AB4{background-color:#EDF0FD;} + .d2-2617729419 .background-color-AB5{background-color:#F7F8FE;} + .d2-2617729419 .color-N1{color:#0A0F25;} + .d2-2617729419 .color-N2{color:#676C7E;} + .d2-2617729419 .color-N3{color:#9499AB;} + .d2-2617729419 .color-N4{color:#CFD2DD;} + .d2-2617729419 .color-N5{color:#DEE1EB;} + .d2-2617729419 .color-N6{color:#EEF1F8;} + .d2-2617729419 .color-N7{color:#FFFFFF;} + .d2-2617729419 .color-B1{color:#0D32B2;} + .d2-2617729419 .color-B2{color:#0D32B2;} + .d2-2617729419 .color-B3{color:#E3E9FD;} + .d2-2617729419 .color-B4{color:#E3E9FD;} + .d2-2617729419 .color-B5{color:#EDF0FD;} + .d2-2617729419 .color-B6{color:#F7F8FE;} + .d2-2617729419 .color-AA2{color:#4A6FF3;} + .d2-2617729419 .color-AA4{color:#EDF0FD;} + .d2-2617729419 .color-AA5{color:#F7F8FE;} + .d2-2617729419 .color-AB4{color:#EDF0FD;} + .d2-2617729419 .color-AB5{color:#F7F8FE;}.appendix text.text{fill:#0A0F25}.md{--color-fg-default:#0A0F25;--color-fg-muted:#676C7E;--color-fg-subtle:#9499AB;--color-canvas-default:#FFFFFF;--color-canvas-subtle:#EEF1F8;--color-border-default:#0D32B2;--color-border-muted:#0D32B2;--color-neutral-muted:#EEF1F8;--color-accent-fg:#0D32B2;--color-accent-emphasis:#0D32B2;--color-attention-subtle:#676C7E;--color-danger-fg:red;}.sketch-overlay-B1{fill:url(#streaks-darker);mix-blend-mode:lighten}.sketch-overlay-B2{fill:url(#streaks-darker);mix-blend-mode:lighten}.sketch-overlay-B3{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-B4{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-B5{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-B6{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-AA2{fill:url(#streaks-dark);mix-blend-mode:overlay}.sketch-overlay-AA4{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-AA5{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-AB4{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-AB5{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-N1{fill:url(#streaks-darker);mix-blend-mode:lighten}.sketch-overlay-N2{fill:url(#streaks-dark);mix-blend-mode:overlay}.sketch-overlay-N3{fill:url(#streaks-normal);mix-blend-mode:color-burn}.sketch-overlay-N4{fill:url(#streaks-normal);mix-blend-mode:color-burn}.sketch-overlay-N5{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-N6{fill:url(#streaks-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 \ No newline at end of file diff --git a/e2etests/testdata/stable/all_shapes_multiple/dagre/board.exp.json b/e2etests/testdata/stable/all_shapes_multiple/dagre/board.exp.json index 28220510ce..34db80bc51 100644 --- a/e2etests/testdata/stable/all_shapes_multiple/dagre/board.exp.json +++ b/e2etests/testdata/stable/all_shapes_multiple/dagre/board.exp.json @@ -706,10 +706,8 @@ "id": "(rectangle -> square)[0]", "src": "rectangle", "srcArrow": "none", - "srcLabel": "", "dst": "square", "dstArrow": "triangle", - "dstLabel": "", "opacity": 1, "strokeDash": 0, "strokeWidth": 2, @@ -755,10 +753,8 @@ "id": "(square -> page)[0]", "src": "square", "srcArrow": "none", - "srcLabel": "", "dst": "page", "dstArrow": "triangle", - "dstLabel": "", "opacity": 1, "strokeDash": 0, "strokeWidth": 2, @@ -804,10 +800,8 @@ "id": "(parallelogram -> document)[0]", "src": "parallelogram", "srcArrow": "none", - "srcLabel": "", "dst": "document", "dstArrow": "triangle", - "dstLabel": "", "opacity": 1, "strokeDash": 0, "strokeWidth": 2, @@ -853,10 +847,8 @@ "id": "(document -> cylinder)[0]", "src": "document", "srcArrow": "none", - "srcLabel": "", "dst": "cylinder", "dstArrow": "triangle", - "dstLabel": "", "opacity": 1, "strokeDash": 0, "strokeWidth": 2, @@ -902,10 +894,8 @@ "id": "(queue -> package)[0]", "src": "queue", "srcArrow": "none", - "srcLabel": "", "dst": "package", "dstArrow": "triangle", - "dstLabel": "", "opacity": 1, "strokeDash": 0, "strokeWidth": 2, @@ -951,10 +941,8 @@ "id": "(package -> step)[0]", "src": "package", "srcArrow": "none", - "srcLabel": "", "dst": "step", "dstArrow": "triangle", - "dstLabel": "", "opacity": 1, "strokeDash": 0, "strokeWidth": 2, @@ -1000,10 +988,8 @@ "id": "(callout -> stored_data)[0]", "src": "callout", "srcArrow": "none", - "srcLabel": "", "dst": "stored_data", "dstArrow": "triangle", - "dstLabel": "", "opacity": 1, "strokeDash": 0, "strokeWidth": 2, @@ -1049,10 +1035,8 @@ "id": "(stored_data -> person)[0]", "src": "stored_data", "srcArrow": "none", - "srcLabel": "", "dst": "person", "dstArrow": "triangle", - "dstLabel": "", "opacity": 1, "strokeDash": 0, "strokeWidth": 2, @@ -1098,10 +1082,8 @@ "id": "(diamond -> oval)[0]", "src": "diamond", "srcArrow": "none", - "srcLabel": "", "dst": "oval", "dstArrow": "triangle", - "dstLabel": "", "opacity": 1, "strokeDash": 0, "strokeWidth": 2, @@ -1147,10 +1129,8 @@ "id": "(oval -> circle)[0]", "src": "oval", "srcArrow": "none", - "srcLabel": "", "dst": "circle", "dstArrow": "triangle", - "dstLabel": "", "opacity": 1, "strokeDash": 0, "strokeWidth": 2, @@ -1196,10 +1176,8 @@ "id": "(hexagon -> cloud)[0]", "src": "hexagon", "srcArrow": "none", - "srcLabel": "", "dst": "cloud", "dstArrow": "triangle", - "dstLabel": "", "opacity": 1, "strokeDash": 0, "strokeWidth": 2, 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 ded23e0ec8..89d00c7c54 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-185319008 .fill-N1{fill:#0A0F25;} + .d2-185319008 .fill-N2{fill:#676C7E;} + .d2-185319008 .fill-N3{fill:#9499AB;} + .d2-185319008 .fill-N4{fill:#CFD2DD;} + .d2-185319008 .fill-N5{fill:#DEE1EB;} + .d2-185319008 .fill-N6{fill:#EEF1F8;} + .d2-185319008 .fill-N7{fill:#FFFFFF;} + .d2-185319008 .fill-B1{fill:#0D32B2;} + .d2-185319008 .fill-B2{fill:#0D32B2;} + .d2-185319008 .fill-B3{fill:#E3E9FD;} + .d2-185319008 .fill-B4{fill:#E3E9FD;} + .d2-185319008 .fill-B5{fill:#EDF0FD;} + .d2-185319008 .fill-B6{fill:#F7F8FE;} + .d2-185319008 .fill-AA2{fill:#4A6FF3;} + .d2-185319008 .fill-AA4{fill:#EDF0FD;} + .d2-185319008 .fill-AA5{fill:#F7F8FE;} + .d2-185319008 .fill-AB4{fill:#EDF0FD;} + .d2-185319008 .fill-AB5{fill:#F7F8FE;} + .d2-185319008 .stroke-N1{stroke:#0A0F25;} + .d2-185319008 .stroke-N2{stroke:#676C7E;} + .d2-185319008 .stroke-N3{stroke:#9499AB;} + .d2-185319008 .stroke-N4{stroke:#CFD2DD;} + .d2-185319008 .stroke-N5{stroke:#DEE1EB;} + .d2-185319008 .stroke-N6{stroke:#EEF1F8;} + .d2-185319008 .stroke-N7{stroke:#FFFFFF;} + .d2-185319008 .stroke-B1{stroke:#0D32B2;} + .d2-185319008 .stroke-B2{stroke:#0D32B2;} + .d2-185319008 .stroke-B3{stroke:#E3E9FD;} + .d2-185319008 .stroke-B4{stroke:#E3E9FD;} + .d2-185319008 .stroke-B5{stroke:#EDF0FD;} + .d2-185319008 .stroke-B6{stroke:#F7F8FE;} + .d2-185319008 .stroke-AA2{stroke:#4A6FF3;} + .d2-185319008 .stroke-AA4{stroke:#EDF0FD;} + .d2-185319008 .stroke-AA5{stroke:#F7F8FE;} + .d2-185319008 .stroke-AB4{stroke:#EDF0FD;} + .d2-185319008 .stroke-AB5{stroke:#F7F8FE;} + .d2-185319008 .background-color-N1{background-color:#0A0F25;} + .d2-185319008 .background-color-N2{background-color:#676C7E;} + .d2-185319008 .background-color-N3{background-color:#9499AB;} + .d2-185319008 .background-color-N4{background-color:#CFD2DD;} + .d2-185319008 .background-color-N5{background-color:#DEE1EB;} + .d2-185319008 .background-color-N6{background-color:#EEF1F8;} + .d2-185319008 .background-color-N7{background-color:#FFFFFF;} + .d2-185319008 .background-color-B1{background-color:#0D32B2;} + .d2-185319008 .background-color-B2{background-color:#0D32B2;} + .d2-185319008 .background-color-B3{background-color:#E3E9FD;} + .d2-185319008 .background-color-B4{background-color:#E3E9FD;} + .d2-185319008 .background-color-B5{background-color:#EDF0FD;} + .d2-185319008 .background-color-B6{background-color:#F7F8FE;} + .d2-185319008 .background-color-AA2{background-color:#4A6FF3;} + .d2-185319008 .background-color-AA4{background-color:#EDF0FD;} + .d2-185319008 .background-color-AA5{background-color:#F7F8FE;} + .d2-185319008 .background-color-AB4{background-color:#EDF0FD;} + .d2-185319008 .background-color-AB5{background-color:#F7F8FE;} + .d2-185319008 .color-N1{color:#0A0F25;} + .d2-185319008 .color-N2{color:#676C7E;} + .d2-185319008 .color-N3{color:#9499AB;} + .d2-185319008 .color-N4{color:#CFD2DD;} + .d2-185319008 .color-N5{color:#DEE1EB;} + .d2-185319008 .color-N6{color:#EEF1F8;} + .d2-185319008 .color-N7{color:#FFFFFF;} + .d2-185319008 .color-B1{color:#0D32B2;} + .d2-185319008 .color-B2{color:#0D32B2;} + .d2-185319008 .color-B3{color:#E3E9FD;} + .d2-185319008 .color-B4{color:#E3E9FD;} + .d2-185319008 .color-B5{color:#EDF0FD;} + .d2-185319008 .color-B6{color:#F7F8FE;} + .d2-185319008 .color-AA2{color:#4A6FF3;} + .d2-185319008 .color-AA4{color:#EDF0FD;} + .d2-185319008 .color-AA5{color:#F7F8FE;} + .d2-185319008 .color-AB4{color:#EDF0FD;} + .d2-185319008 .color-AB5{color:#F7F8FE;}.appendix text.text{fill:#0A0F25}.md{--color-fg-default:#0A0F25;--color-fg-muted:#676C7E;--color-fg-subtle:#9499AB;--color-canvas-default:#FFFFFF;--color-canvas-subtle:#EEF1F8;--color-border-default:#0D32B2;--color-border-muted:#0D32B2;--color-neutral-muted:#EEF1F8;--color-accent-fg:#0D32B2;--color-accent-emphasis:#0D32B2;--color-attention-subtle:#676C7E;--color-danger-fg:red;}.sketch-overlay-B1{fill:url(#streaks-darker);mix-blend-mode:lighten}.sketch-overlay-B2{fill:url(#streaks-darker);mix-blend-mode:lighten}.sketch-overlay-B3{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-B4{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-B5{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-B6{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-AA2{fill:url(#streaks-dark);mix-blend-mode:overlay}.sketch-overlay-AA4{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-AA5{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-AB4{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-AB5{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-N1{fill:url(#streaks-darker);mix-blend-mode:lighten}.sketch-overlay-N2{fill:url(#streaks-dark);mix-blend-mode:overlay}.sketch-overlay-N3{fill:url(#streaks-normal);mix-blend-mode:color-burn}.sketch-overlay-N4{fill:url(#streaks-normal);mix-blend-mode:color-burn}.sketch-overlay-N5{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-N6{fill:url(#streaks-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 \ No newline at end of file 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 7329fb0dd2..065e5e743a 100644 --- a/e2etests/testdata/stable/all_shapes_multiple/elk/board.exp.json +++ b/e2etests/testdata/stable/all_shapes_multiple/elk/board.exp.json @@ -706,10 +706,8 @@ "id": "(rectangle -> square)[0]", "src": "rectangle", "srcArrow": "none", - "srcLabel": "", "dst": "square", "dstArrow": "triangle", - "dstLabel": "", "opacity": 1, "strokeDash": 0, "strokeWidth": 2, @@ -746,10 +744,8 @@ "id": "(square -> page)[0]", "src": "square", "srcArrow": "none", - "srcLabel": "", "dst": "page", "dstArrow": "triangle", - "dstLabel": "", "opacity": 1, "strokeDash": 0, "strokeWidth": 2, @@ -786,10 +782,8 @@ "id": "(parallelogram -> document)[0]", "src": "parallelogram", "srcArrow": "none", - "srcLabel": "", "dst": "document", "dstArrow": "triangle", - "dstLabel": "", "opacity": 1, "strokeDash": 0, "strokeWidth": 2, @@ -826,10 +820,8 @@ "id": "(document -> cylinder)[0]", "src": "document", "srcArrow": "none", - "srcLabel": "", "dst": "cylinder", "dstArrow": "triangle", - "dstLabel": "", "opacity": 1, "strokeDash": 0, "strokeWidth": 2, @@ -866,10 +858,8 @@ "id": "(queue -> package)[0]", "src": "queue", "srcArrow": "none", - "srcLabel": "", "dst": "package", "dstArrow": "triangle", - "dstLabel": "", "opacity": 1, "strokeDash": 0, "strokeWidth": 2, @@ -906,10 +896,8 @@ "id": "(package -> step)[0]", "src": "package", "srcArrow": "none", - "srcLabel": "", "dst": "step", "dstArrow": "triangle", - "dstLabel": "", "opacity": 1, "strokeDash": 0, "strokeWidth": 2, @@ -946,10 +934,8 @@ "id": "(callout -> stored_data)[0]", "src": "callout", "srcArrow": "none", - "srcLabel": "", "dst": "stored_data", "dstArrow": "triangle", - "dstLabel": "", "opacity": 1, "strokeDash": 0, "strokeWidth": 2, @@ -986,10 +972,8 @@ "id": "(stored_data -> person)[0]", "src": "stored_data", "srcArrow": "none", - "srcLabel": "", "dst": "person", "dstArrow": "triangle", - "dstLabel": "", "opacity": 1, "strokeDash": 0, "strokeWidth": 2, @@ -1026,10 +1010,8 @@ "id": "(diamond -> oval)[0]", "src": "diamond", "srcArrow": "none", - "srcLabel": "", "dst": "oval", "dstArrow": "triangle", - "dstLabel": "", "opacity": 1, "strokeDash": 0, "strokeWidth": 2, @@ -1066,10 +1048,8 @@ "id": "(oval -> circle)[0]", "src": "oval", "srcArrow": "none", - "srcLabel": "", "dst": "circle", "dstArrow": "triangle", - "dstLabel": "", "opacity": 1, "strokeDash": 0, "strokeWidth": 2, @@ -1106,10 +1086,8 @@ "id": "(hexagon -> cloud)[0]", "src": "hexagon", "srcArrow": "none", - "srcLabel": "", "dst": "cloud", "dstArrow": "triangle", - "dstLabel": "", "opacity": 1, "strokeDash": 0, "strokeWidth": 2, diff --git a/e2etests/testdata/stable/all_shapes_multiple/elk/sketch.exp.svg b/e2etests/testdata/stable/all_shapes_multiple/elk/sketch.exp.svg index b3548b9b3f..cad4975ae5 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-2193650686 .fill-N1{fill:#0A0F25;} + .d2-2193650686 .fill-N2{fill:#676C7E;} + .d2-2193650686 .fill-N3{fill:#9499AB;} + .d2-2193650686 .fill-N4{fill:#CFD2DD;} + .d2-2193650686 .fill-N5{fill:#DEE1EB;} + .d2-2193650686 .fill-N6{fill:#EEF1F8;} + .d2-2193650686 .fill-N7{fill:#FFFFFF;} + .d2-2193650686 .fill-B1{fill:#0D32B2;} + .d2-2193650686 .fill-B2{fill:#0D32B2;} + .d2-2193650686 .fill-B3{fill:#E3E9FD;} + .d2-2193650686 .fill-B4{fill:#E3E9FD;} + .d2-2193650686 .fill-B5{fill:#EDF0FD;} + .d2-2193650686 .fill-B6{fill:#F7F8FE;} + .d2-2193650686 .fill-AA2{fill:#4A6FF3;} + .d2-2193650686 .fill-AA4{fill:#EDF0FD;} + .d2-2193650686 .fill-AA5{fill:#F7F8FE;} + .d2-2193650686 .fill-AB4{fill:#EDF0FD;} + .d2-2193650686 .fill-AB5{fill:#F7F8FE;} + .d2-2193650686 .stroke-N1{stroke:#0A0F25;} + .d2-2193650686 .stroke-N2{stroke:#676C7E;} + .d2-2193650686 .stroke-N3{stroke:#9499AB;} + .d2-2193650686 .stroke-N4{stroke:#CFD2DD;} + .d2-2193650686 .stroke-N5{stroke:#DEE1EB;} + .d2-2193650686 .stroke-N6{stroke:#EEF1F8;} + .d2-2193650686 .stroke-N7{stroke:#FFFFFF;} + .d2-2193650686 .stroke-B1{stroke:#0D32B2;} + .d2-2193650686 .stroke-B2{stroke:#0D32B2;} + .d2-2193650686 .stroke-B3{stroke:#E3E9FD;} + .d2-2193650686 .stroke-B4{stroke:#E3E9FD;} + .d2-2193650686 .stroke-B5{stroke:#EDF0FD;} + .d2-2193650686 .stroke-B6{stroke:#F7F8FE;} + .d2-2193650686 .stroke-AA2{stroke:#4A6FF3;} + .d2-2193650686 .stroke-AA4{stroke:#EDF0FD;} + .d2-2193650686 .stroke-AA5{stroke:#F7F8FE;} + .d2-2193650686 .stroke-AB4{stroke:#EDF0FD;} + .d2-2193650686 .stroke-AB5{stroke:#F7F8FE;} + .d2-2193650686 .background-color-N1{background-color:#0A0F25;} + .d2-2193650686 .background-color-N2{background-color:#676C7E;} + .d2-2193650686 .background-color-N3{background-color:#9499AB;} + .d2-2193650686 .background-color-N4{background-color:#CFD2DD;} + .d2-2193650686 .background-color-N5{background-color:#DEE1EB;} + .d2-2193650686 .background-color-N6{background-color:#EEF1F8;} + .d2-2193650686 .background-color-N7{background-color:#FFFFFF;} + .d2-2193650686 .background-color-B1{background-color:#0D32B2;} + .d2-2193650686 .background-color-B2{background-color:#0D32B2;} + .d2-2193650686 .background-color-B3{background-color:#E3E9FD;} + .d2-2193650686 .background-color-B4{background-color:#E3E9FD;} + .d2-2193650686 .background-color-B5{background-color:#EDF0FD;} + .d2-2193650686 .background-color-B6{background-color:#F7F8FE;} + .d2-2193650686 .background-color-AA2{background-color:#4A6FF3;} + .d2-2193650686 .background-color-AA4{background-color:#EDF0FD;} + .d2-2193650686 .background-color-AA5{background-color:#F7F8FE;} + .d2-2193650686 .background-color-AB4{background-color:#EDF0FD;} + .d2-2193650686 .background-color-AB5{background-color:#F7F8FE;} + .d2-2193650686 .color-N1{color:#0A0F25;} + .d2-2193650686 .color-N2{color:#676C7E;} + .d2-2193650686 .color-N3{color:#9499AB;} + .d2-2193650686 .color-N4{color:#CFD2DD;} + .d2-2193650686 .color-N5{color:#DEE1EB;} + .d2-2193650686 .color-N6{color:#EEF1F8;} + .d2-2193650686 .color-N7{color:#FFFFFF;} + .d2-2193650686 .color-B1{color:#0D32B2;} + .d2-2193650686 .color-B2{color:#0D32B2;} + .d2-2193650686 .color-B3{color:#E3E9FD;} + .d2-2193650686 .color-B4{color:#E3E9FD;} + .d2-2193650686 .color-B5{color:#EDF0FD;} + .d2-2193650686 .color-B6{color:#F7F8FE;} + .d2-2193650686 .color-AA2{color:#4A6FF3;} + .d2-2193650686 .color-AA4{color:#EDF0FD;} + .d2-2193650686 .color-AA5{color:#F7F8FE;} + .d2-2193650686 .color-AB4{color:#EDF0FD;} + .d2-2193650686 .color-AB5{color:#F7F8FE;}.appendix text.text{fill:#0A0F25}.md{--color-fg-default:#0A0F25;--color-fg-muted:#676C7E;--color-fg-subtle:#9499AB;--color-canvas-default:#FFFFFF;--color-canvas-subtle:#EEF1F8;--color-border-default:#0D32B2;--color-border-muted:#0D32B2;--color-neutral-muted:#EEF1F8;--color-accent-fg:#0D32B2;--color-accent-emphasis:#0D32B2;--color-attention-subtle:#676C7E;--color-danger-fg:red;}.sketch-overlay-B1{fill:url(#streaks-darker);mix-blend-mode:lighten}.sketch-overlay-B2{fill:url(#streaks-darker);mix-blend-mode:lighten}.sketch-overlay-B3{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-B4{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-B5{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-B6{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-AA2{fill:url(#streaks-dark);mix-blend-mode:overlay}.sketch-overlay-AA4{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-AA5{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-AB4{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-AB5{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-N1{fill:url(#streaks-darker);mix-blend-mode:lighten}.sketch-overlay-N2{fill:url(#streaks-dark);mix-blend-mode:overlay}.sketch-overlay-N3{fill:url(#streaks-normal);mix-blend-mode:color-burn}.sketch-overlay-N4{fill:url(#streaks-normal);mix-blend-mode:color-burn}.sketch-overlay-N5{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-N6{fill:url(#streaks-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 \ No newline at end of file diff --git a/e2etests/testdata/stable/all_shapes_shadow/dagre/board.exp.json b/e2etests/testdata/stable/all_shapes_shadow/dagre/board.exp.json index 12b0c93505..b7e591641d 100644 --- a/e2etests/testdata/stable/all_shapes_shadow/dagre/board.exp.json +++ b/e2etests/testdata/stable/all_shapes_shadow/dagre/board.exp.json @@ -706,10 +706,8 @@ "id": "(rectangle -> square)[0]", "src": "rectangle", "srcArrow": "none", - "srcLabel": "", "dst": "square", "dstArrow": "triangle", - "dstLabel": "", "opacity": 1, "strokeDash": 0, "strokeWidth": 2, @@ -755,10 +753,8 @@ "id": "(square -> page)[0]", "src": "square", "srcArrow": "none", - "srcLabel": "", "dst": "page", "dstArrow": "triangle", - "dstLabel": "", "opacity": 1, "strokeDash": 0, "strokeWidth": 2, @@ -804,10 +800,8 @@ "id": "(parallelogram -> document)[0]", "src": "parallelogram", "srcArrow": "none", - "srcLabel": "", "dst": "document", "dstArrow": "triangle", - "dstLabel": "", "opacity": 1, "strokeDash": 0, "strokeWidth": 2, @@ -853,10 +847,8 @@ "id": "(document -> cylinder)[0]", "src": "document", "srcArrow": "none", - "srcLabel": "", "dst": "cylinder", "dstArrow": "triangle", - "dstLabel": "", "opacity": 1, "strokeDash": 0, "strokeWidth": 2, @@ -902,10 +894,8 @@ "id": "(queue -> package)[0]", "src": "queue", "srcArrow": "none", - "srcLabel": "", "dst": "package", "dstArrow": "triangle", - "dstLabel": "", "opacity": 1, "strokeDash": 0, "strokeWidth": 2, @@ -951,10 +941,8 @@ "id": "(package -> step)[0]", "src": "package", "srcArrow": "none", - "srcLabel": "", "dst": "step", "dstArrow": "triangle", - "dstLabel": "", "opacity": 1, "strokeDash": 0, "strokeWidth": 2, @@ -1000,10 +988,8 @@ "id": "(callout -> stored_data)[0]", "src": "callout", "srcArrow": "none", - "srcLabel": "", "dst": "stored_data", "dstArrow": "triangle", - "dstLabel": "", "opacity": 1, "strokeDash": 0, "strokeWidth": 2, @@ -1049,10 +1035,8 @@ "id": "(stored_data -> person)[0]", "src": "stored_data", "srcArrow": "none", - "srcLabel": "", "dst": "person", "dstArrow": "triangle", - "dstLabel": "", "opacity": 1, "strokeDash": 0, "strokeWidth": 2, @@ -1098,10 +1082,8 @@ "id": "(diamond -> oval)[0]", "src": "diamond", "srcArrow": "none", - "srcLabel": "", "dst": "oval", "dstArrow": "triangle", - "dstLabel": "", "opacity": 1, "strokeDash": 0, "strokeWidth": 2, @@ -1147,10 +1129,8 @@ "id": "(oval -> circle)[0]", "src": "oval", "srcArrow": "none", - "srcLabel": "", "dst": "circle", "dstArrow": "triangle", - "dstLabel": "", "opacity": 1, "strokeDash": 0, "strokeWidth": 2, @@ -1196,10 +1176,8 @@ "id": "(hexagon -> cloud)[0]", "src": "hexagon", "srcArrow": "none", - "srcLabel": "", "dst": "cloud", "dstArrow": "triangle", - "dstLabel": "", "opacity": 1, "strokeDash": 0, "strokeWidth": 2, 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 c787270179..e84d0f95e0 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-124012922 .fill-N1{fill:#0A0F25;} + .d2-124012922 .fill-N2{fill:#676C7E;} + .d2-124012922 .fill-N3{fill:#9499AB;} + .d2-124012922 .fill-N4{fill:#CFD2DD;} + .d2-124012922 .fill-N5{fill:#DEE1EB;} + .d2-124012922 .fill-N6{fill:#EEF1F8;} + .d2-124012922 .fill-N7{fill:#FFFFFF;} + .d2-124012922 .fill-B1{fill:#0D32B2;} + .d2-124012922 .fill-B2{fill:#0D32B2;} + .d2-124012922 .fill-B3{fill:#E3E9FD;} + .d2-124012922 .fill-B4{fill:#E3E9FD;} + .d2-124012922 .fill-B5{fill:#EDF0FD;} + .d2-124012922 .fill-B6{fill:#F7F8FE;} + .d2-124012922 .fill-AA2{fill:#4A6FF3;} + .d2-124012922 .fill-AA4{fill:#EDF0FD;} + .d2-124012922 .fill-AA5{fill:#F7F8FE;} + .d2-124012922 .fill-AB4{fill:#EDF0FD;} + .d2-124012922 .fill-AB5{fill:#F7F8FE;} + .d2-124012922 .stroke-N1{stroke:#0A0F25;} + .d2-124012922 .stroke-N2{stroke:#676C7E;} + .d2-124012922 .stroke-N3{stroke:#9499AB;} + .d2-124012922 .stroke-N4{stroke:#CFD2DD;} + .d2-124012922 .stroke-N5{stroke:#DEE1EB;} + .d2-124012922 .stroke-N6{stroke:#EEF1F8;} + .d2-124012922 .stroke-N7{stroke:#FFFFFF;} + .d2-124012922 .stroke-B1{stroke:#0D32B2;} + .d2-124012922 .stroke-B2{stroke:#0D32B2;} + .d2-124012922 .stroke-B3{stroke:#E3E9FD;} + .d2-124012922 .stroke-B4{stroke:#E3E9FD;} + .d2-124012922 .stroke-B5{stroke:#EDF0FD;} + .d2-124012922 .stroke-B6{stroke:#F7F8FE;} + .d2-124012922 .stroke-AA2{stroke:#4A6FF3;} + .d2-124012922 .stroke-AA4{stroke:#EDF0FD;} + .d2-124012922 .stroke-AA5{stroke:#F7F8FE;} + .d2-124012922 .stroke-AB4{stroke:#EDF0FD;} + .d2-124012922 .stroke-AB5{stroke:#F7F8FE;} + .d2-124012922 .background-color-N1{background-color:#0A0F25;} + .d2-124012922 .background-color-N2{background-color:#676C7E;} + .d2-124012922 .background-color-N3{background-color:#9499AB;} + .d2-124012922 .background-color-N4{background-color:#CFD2DD;} + .d2-124012922 .background-color-N5{background-color:#DEE1EB;} + .d2-124012922 .background-color-N6{background-color:#EEF1F8;} + .d2-124012922 .background-color-N7{background-color:#FFFFFF;} + .d2-124012922 .background-color-B1{background-color:#0D32B2;} + .d2-124012922 .background-color-B2{background-color:#0D32B2;} + .d2-124012922 .background-color-B3{background-color:#E3E9FD;} + .d2-124012922 .background-color-B4{background-color:#E3E9FD;} + .d2-124012922 .background-color-B5{background-color:#EDF0FD;} + .d2-124012922 .background-color-B6{background-color:#F7F8FE;} + .d2-124012922 .background-color-AA2{background-color:#4A6FF3;} + .d2-124012922 .background-color-AA4{background-color:#EDF0FD;} + .d2-124012922 .background-color-AA5{background-color:#F7F8FE;} + .d2-124012922 .background-color-AB4{background-color:#EDF0FD;} + .d2-124012922 .background-color-AB5{background-color:#F7F8FE;} + .d2-124012922 .color-N1{color:#0A0F25;} + .d2-124012922 .color-N2{color:#676C7E;} + .d2-124012922 .color-N3{color:#9499AB;} + .d2-124012922 .color-N4{color:#CFD2DD;} + .d2-124012922 .color-N5{color:#DEE1EB;} + .d2-124012922 .color-N6{color:#EEF1F8;} + .d2-124012922 .color-N7{color:#FFFFFF;} + .d2-124012922 .color-B1{color:#0D32B2;} + .d2-124012922 .color-B2{color:#0D32B2;} + .d2-124012922 .color-B3{color:#E3E9FD;} + .d2-124012922 .color-B4{color:#E3E9FD;} + .d2-124012922 .color-B5{color:#EDF0FD;} + .d2-124012922 .color-B6{color:#F7F8FE;} + .d2-124012922 .color-AA2{color:#4A6FF3;} + .d2-124012922 .color-AA4{color:#EDF0FD;} + .d2-124012922 .color-AA5{color:#F7F8FE;} + .d2-124012922 .color-AB4{color:#EDF0FD;} + .d2-124012922 .color-AB5{color:#F7F8FE;}.appendix text.text{fill:#0A0F25}.md{--color-fg-default:#0A0F25;--color-fg-muted:#676C7E;--color-fg-subtle:#9499AB;--color-canvas-default:#FFFFFF;--color-canvas-subtle:#EEF1F8;--color-border-default:#0D32B2;--color-border-muted:#0D32B2;--color-neutral-muted:#EEF1F8;--color-accent-fg:#0D32B2;--color-accent-emphasis:#0D32B2;--color-attention-subtle:#676C7E;--color-danger-fg:red;}.sketch-overlay-B1{fill:url(#streaks-darker);mix-blend-mode:lighten}.sketch-overlay-B2{fill:url(#streaks-darker);mix-blend-mode:lighten}.sketch-overlay-B3{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-B4{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-B5{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-B6{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-AA2{fill:url(#streaks-dark);mix-blend-mode:overlay}.sketch-overlay-AA4{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-AA5{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-AB4{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-AB5{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-N1{fill:url(#streaks-darker);mix-blend-mode:lighten}.sketch-overlay-N2{fill:url(#streaks-dark);mix-blend-mode:overlay}.sketch-overlay-N3{fill:url(#streaks-normal);mix-blend-mode:color-burn}.sketch-overlay-N4{fill:url(#streaks-normal);mix-blend-mode:color-burn}.sketch-overlay-N5{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-N6{fill:url(#streaks-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 \ No newline at end of file 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 039bb5ea93..a803707f8c 100644 --- a/e2etests/testdata/stable/all_shapes_shadow/elk/board.exp.json +++ b/e2etests/testdata/stable/all_shapes_shadow/elk/board.exp.json @@ -706,10 +706,8 @@ "id": "(rectangle -> square)[0]", "src": "rectangle", "srcArrow": "none", - "srcLabel": "", "dst": "square", "dstArrow": "triangle", - "dstLabel": "", "opacity": 1, "strokeDash": 0, "strokeWidth": 2, @@ -746,10 +744,8 @@ "id": "(square -> page)[0]", "src": "square", "srcArrow": "none", - "srcLabel": "", "dst": "page", "dstArrow": "triangle", - "dstLabel": "", "opacity": 1, "strokeDash": 0, "strokeWidth": 2, @@ -786,10 +782,8 @@ "id": "(parallelogram -> document)[0]", "src": "parallelogram", "srcArrow": "none", - "srcLabel": "", "dst": "document", "dstArrow": "triangle", - "dstLabel": "", "opacity": 1, "strokeDash": 0, "strokeWidth": 2, @@ -826,10 +820,8 @@ "id": "(document -> cylinder)[0]", "src": "document", "srcArrow": "none", - "srcLabel": "", "dst": "cylinder", "dstArrow": "triangle", - "dstLabel": "", "opacity": 1, "strokeDash": 0, "strokeWidth": 2, @@ -866,10 +858,8 @@ "id": "(queue -> package)[0]", "src": "queue", "srcArrow": "none", - "srcLabel": "", "dst": "package", "dstArrow": "triangle", - "dstLabel": "", "opacity": 1, "strokeDash": 0, "strokeWidth": 2, @@ -906,10 +896,8 @@ "id": "(package -> step)[0]", "src": "package", "srcArrow": "none", - "srcLabel": "", "dst": "step", "dstArrow": "triangle", - "dstLabel": "", "opacity": 1, "strokeDash": 0, "strokeWidth": 2, @@ -946,10 +934,8 @@ "id": "(callout -> stored_data)[0]", "src": "callout", "srcArrow": "none", - "srcLabel": "", "dst": "stored_data", "dstArrow": "triangle", - "dstLabel": "", "opacity": 1, "strokeDash": 0, "strokeWidth": 2, @@ -986,10 +972,8 @@ "id": "(stored_data -> person)[0]", "src": "stored_data", "srcArrow": "none", - "srcLabel": "", "dst": "person", "dstArrow": "triangle", - "dstLabel": "", "opacity": 1, "strokeDash": 0, "strokeWidth": 2, @@ -1026,10 +1010,8 @@ "id": "(diamond -> oval)[0]", "src": "diamond", "srcArrow": "none", - "srcLabel": "", "dst": "oval", "dstArrow": "triangle", - "dstLabel": "", "opacity": 1, "strokeDash": 0, "strokeWidth": 2, @@ -1066,10 +1048,8 @@ "id": "(oval -> circle)[0]", "src": "oval", "srcArrow": "none", - "srcLabel": "", "dst": "circle", "dstArrow": "triangle", - "dstLabel": "", "opacity": 1, "strokeDash": 0, "strokeWidth": 2, @@ -1106,10 +1086,8 @@ "id": "(hexagon -> cloud)[0]", "src": "hexagon", "srcArrow": "none", - "srcLabel": "", "dst": "cloud", "dstArrow": "triangle", - "dstLabel": "", "opacity": 1, "strokeDash": 0, "strokeWidth": 2, diff --git a/e2etests/testdata/stable/all_shapes_shadow/elk/sketch.exp.svg b/e2etests/testdata/stable/all_shapes_shadow/elk/sketch.exp.svg index 9dd461ff17..b962d1fb8e 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-1024629636 .fill-N1{fill:#0A0F25;} + .d2-1024629636 .fill-N2{fill:#676C7E;} + .d2-1024629636 .fill-N3{fill:#9499AB;} + .d2-1024629636 .fill-N4{fill:#CFD2DD;} + .d2-1024629636 .fill-N5{fill:#DEE1EB;} + .d2-1024629636 .fill-N6{fill:#EEF1F8;} + .d2-1024629636 .fill-N7{fill:#FFFFFF;} + .d2-1024629636 .fill-B1{fill:#0D32B2;} + .d2-1024629636 .fill-B2{fill:#0D32B2;} + .d2-1024629636 .fill-B3{fill:#E3E9FD;} + .d2-1024629636 .fill-B4{fill:#E3E9FD;} + .d2-1024629636 .fill-B5{fill:#EDF0FD;} + .d2-1024629636 .fill-B6{fill:#F7F8FE;} + .d2-1024629636 .fill-AA2{fill:#4A6FF3;} + .d2-1024629636 .fill-AA4{fill:#EDF0FD;} + .d2-1024629636 .fill-AA5{fill:#F7F8FE;} + .d2-1024629636 .fill-AB4{fill:#EDF0FD;} + .d2-1024629636 .fill-AB5{fill:#F7F8FE;} + .d2-1024629636 .stroke-N1{stroke:#0A0F25;} + .d2-1024629636 .stroke-N2{stroke:#676C7E;} + .d2-1024629636 .stroke-N3{stroke:#9499AB;} + .d2-1024629636 .stroke-N4{stroke:#CFD2DD;} + .d2-1024629636 .stroke-N5{stroke:#DEE1EB;} + .d2-1024629636 .stroke-N6{stroke:#EEF1F8;} + .d2-1024629636 .stroke-N7{stroke:#FFFFFF;} + .d2-1024629636 .stroke-B1{stroke:#0D32B2;} + .d2-1024629636 .stroke-B2{stroke:#0D32B2;} + .d2-1024629636 .stroke-B3{stroke:#E3E9FD;} + .d2-1024629636 .stroke-B4{stroke:#E3E9FD;} + .d2-1024629636 .stroke-B5{stroke:#EDF0FD;} + .d2-1024629636 .stroke-B6{stroke:#F7F8FE;} + .d2-1024629636 .stroke-AA2{stroke:#4A6FF3;} + .d2-1024629636 .stroke-AA4{stroke:#EDF0FD;} + .d2-1024629636 .stroke-AA5{stroke:#F7F8FE;} + .d2-1024629636 .stroke-AB4{stroke:#EDF0FD;} + .d2-1024629636 .stroke-AB5{stroke:#F7F8FE;} + .d2-1024629636 .background-color-N1{background-color:#0A0F25;} + .d2-1024629636 .background-color-N2{background-color:#676C7E;} + .d2-1024629636 .background-color-N3{background-color:#9499AB;} + .d2-1024629636 .background-color-N4{background-color:#CFD2DD;} + .d2-1024629636 .background-color-N5{background-color:#DEE1EB;} + .d2-1024629636 .background-color-N6{background-color:#EEF1F8;} + .d2-1024629636 .background-color-N7{background-color:#FFFFFF;} + .d2-1024629636 .background-color-B1{background-color:#0D32B2;} + .d2-1024629636 .background-color-B2{background-color:#0D32B2;} + .d2-1024629636 .background-color-B3{background-color:#E3E9FD;} + .d2-1024629636 .background-color-B4{background-color:#E3E9FD;} + .d2-1024629636 .background-color-B5{background-color:#EDF0FD;} + .d2-1024629636 .background-color-B6{background-color:#F7F8FE;} + .d2-1024629636 .background-color-AA2{background-color:#4A6FF3;} + .d2-1024629636 .background-color-AA4{background-color:#EDF0FD;} + .d2-1024629636 .background-color-AA5{background-color:#F7F8FE;} + .d2-1024629636 .background-color-AB4{background-color:#EDF0FD;} + .d2-1024629636 .background-color-AB5{background-color:#F7F8FE;} + .d2-1024629636 .color-N1{color:#0A0F25;} + .d2-1024629636 .color-N2{color:#676C7E;} + .d2-1024629636 .color-N3{color:#9499AB;} + .d2-1024629636 .color-N4{color:#CFD2DD;} + .d2-1024629636 .color-N5{color:#DEE1EB;} + .d2-1024629636 .color-N6{color:#EEF1F8;} + .d2-1024629636 .color-N7{color:#FFFFFF;} + .d2-1024629636 .color-B1{color:#0D32B2;} + .d2-1024629636 .color-B2{color:#0D32B2;} + .d2-1024629636 .color-B3{color:#E3E9FD;} + .d2-1024629636 .color-B4{color:#E3E9FD;} + .d2-1024629636 .color-B5{color:#EDF0FD;} + .d2-1024629636 .color-B6{color:#F7F8FE;} + .d2-1024629636 .color-AA2{color:#4A6FF3;} + .d2-1024629636 .color-AA4{color:#EDF0FD;} + .d2-1024629636 .color-AA5{color:#F7F8FE;} + .d2-1024629636 .color-AB4{color:#EDF0FD;} + .d2-1024629636 .color-AB5{color:#F7F8FE;}.appendix text.text{fill:#0A0F25}.md{--color-fg-default:#0A0F25;--color-fg-muted:#676C7E;--color-fg-subtle:#9499AB;--color-canvas-default:#FFFFFF;--color-canvas-subtle:#EEF1F8;--color-border-default:#0D32B2;--color-border-muted:#0D32B2;--color-neutral-muted:#EEF1F8;--color-accent-fg:#0D32B2;--color-accent-emphasis:#0D32B2;--color-attention-subtle:#676C7E;--color-danger-fg:red;}.sketch-overlay-B1{fill:url(#streaks-darker);mix-blend-mode:lighten}.sketch-overlay-B2{fill:url(#streaks-darker);mix-blend-mode:lighten}.sketch-overlay-B3{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-B4{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-B5{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-B6{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-AA2{fill:url(#streaks-dark);mix-blend-mode:overlay}.sketch-overlay-AA4{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-AA5{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-AB4{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-AB5{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-N1{fill:url(#streaks-darker);mix-blend-mode:lighten}.sketch-overlay-N2{fill:url(#streaks-dark);mix-blend-mode:overlay}.sketch-overlay-N3{fill:url(#streaks-normal);mix-blend-mode:color-burn}.sketch-overlay-N4{fill:url(#streaks-normal);mix-blend-mode:color-burn}.sketch-overlay-N5{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-N6{fill:url(#streaks-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 \ No newline at end of file diff --git a/e2etests/testdata/stable/animated/dagre/board.exp.json b/e2etests/testdata/stable/animated/dagre/board.exp.json index 2dfdbb8a55..7541e31e7a 100644 --- a/e2etests/testdata/stable/animated/dagre/board.exp.json +++ b/e2etests/testdata/stable/animated/dagre/board.exp.json @@ -542,10 +542,8 @@ "id": "(your love life will be -> happy)[0]", "src": "your love life will be", "srcArrow": "none", - "srcLabel": "", "dst": "happy", "dstArrow": "triangle", - "dstLabel": "", "opacity": 1, "strokeDash": 0, "strokeWidth": 2, @@ -591,10 +589,8 @@ "id": "(your love life will be -> harmonious)[0]", "src": "your love life will be", "srcArrow": "none", - "srcLabel": "", "dst": "harmonious", "dstArrow": "triangle", - "dstLabel": "", "opacity": 1, "strokeDash": 0, "strokeWidth": 2, @@ -640,10 +636,8 @@ "id": "(boredom <- immortality)[0]", "src": "boredom", "srcArrow": "triangle", - "srcLabel": "", "dst": "immortality", "dstArrow": "none", - "dstLabel": "", "opacity": 1, "strokeDash": 0, "strokeWidth": 2, @@ -689,10 +683,8 @@ "id": "(Friday <-> Monday)[0]", "src": "Friday", "srcArrow": "triangle", - "srcLabel": "", "dst": "Monday", "dstArrow": "triangle", - "dstLabel": "", "opacity": 1, "strokeDash": 0, "strokeWidth": 2, @@ -738,10 +730,8 @@ "id": "(Insomnia -- Sleep)[0]", "src": "Insomnia", "srcArrow": "none", - "srcLabel": "", "dst": "Sleep", "dstArrow": "none", - "dstLabel": "", "opacity": 1, "strokeDash": 0, "strokeWidth": 2, @@ -787,10 +777,8 @@ "id": "(Insomnia -- Wake)[0]", "src": "Insomnia", "srcArrow": "none", - "srcLabel": "", "dst": "Wake", "dstArrow": "none", - "dstLabel": "", "opacity": 1, "strokeDash": 0, "strokeWidth": 2, @@ -836,10 +824,8 @@ "id": "(Insomnia -- Dream)[0]", "src": "Insomnia", "srcArrow": "none", - "srcLabel": "", "dst": "Dream", "dstArrow": "none", - "dstLabel": "", "opacity": 1, "strokeDash": 0, "strokeWidth": 8, @@ -885,10 +871,8 @@ "id": "(Listen <-> Talk)[0]", "src": "Listen", "srcArrow": "cf-one", - "srcLabel": "", "dst": "Talk", "dstArrow": "diamond", - "dstLabel": "", "opacity": 1, "strokeDash": 0, "strokeWidth": 2, diff --git a/e2etests/testdata/stable/animated/dagre/sketch.exp.svg b/e2etests/testdata/stable/animated/dagre/sketch.exp.svg index 77a6f0f177..2ccc23beb9 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-3044238495 .fill-N1{fill:#0A0F25;} + .d2-3044238495 .fill-N2{fill:#676C7E;} + .d2-3044238495 .fill-N3{fill:#9499AB;} + .d2-3044238495 .fill-N4{fill:#CFD2DD;} + .d2-3044238495 .fill-N5{fill:#DEE1EB;} + .d2-3044238495 .fill-N6{fill:#EEF1F8;} + .d2-3044238495 .fill-N7{fill:#FFFFFF;} + .d2-3044238495 .fill-B1{fill:#0D32B2;} + .d2-3044238495 .fill-B2{fill:#0D32B2;} + .d2-3044238495 .fill-B3{fill:#E3E9FD;} + .d2-3044238495 .fill-B4{fill:#E3E9FD;} + .d2-3044238495 .fill-B5{fill:#EDF0FD;} + .d2-3044238495 .fill-B6{fill:#F7F8FE;} + .d2-3044238495 .fill-AA2{fill:#4A6FF3;} + .d2-3044238495 .fill-AA4{fill:#EDF0FD;} + .d2-3044238495 .fill-AA5{fill:#F7F8FE;} + .d2-3044238495 .fill-AB4{fill:#EDF0FD;} + .d2-3044238495 .fill-AB5{fill:#F7F8FE;} + .d2-3044238495 .stroke-N1{stroke:#0A0F25;} + .d2-3044238495 .stroke-N2{stroke:#676C7E;} + .d2-3044238495 .stroke-N3{stroke:#9499AB;} + .d2-3044238495 .stroke-N4{stroke:#CFD2DD;} + .d2-3044238495 .stroke-N5{stroke:#DEE1EB;} + .d2-3044238495 .stroke-N6{stroke:#EEF1F8;} + .d2-3044238495 .stroke-N7{stroke:#FFFFFF;} + .d2-3044238495 .stroke-B1{stroke:#0D32B2;} + .d2-3044238495 .stroke-B2{stroke:#0D32B2;} + .d2-3044238495 .stroke-B3{stroke:#E3E9FD;} + .d2-3044238495 .stroke-B4{stroke:#E3E9FD;} + .d2-3044238495 .stroke-B5{stroke:#EDF0FD;} + .d2-3044238495 .stroke-B6{stroke:#F7F8FE;} + .d2-3044238495 .stroke-AA2{stroke:#4A6FF3;} + .d2-3044238495 .stroke-AA4{stroke:#EDF0FD;} + .d2-3044238495 .stroke-AA5{stroke:#F7F8FE;} + .d2-3044238495 .stroke-AB4{stroke:#EDF0FD;} + .d2-3044238495 .stroke-AB5{stroke:#F7F8FE;} + .d2-3044238495 .background-color-N1{background-color:#0A0F25;} + .d2-3044238495 .background-color-N2{background-color:#676C7E;} + .d2-3044238495 .background-color-N3{background-color:#9499AB;} + .d2-3044238495 .background-color-N4{background-color:#CFD2DD;} + .d2-3044238495 .background-color-N5{background-color:#DEE1EB;} + .d2-3044238495 .background-color-N6{background-color:#EEF1F8;} + .d2-3044238495 .background-color-N7{background-color:#FFFFFF;} + .d2-3044238495 .background-color-B1{background-color:#0D32B2;} + .d2-3044238495 .background-color-B2{background-color:#0D32B2;} + .d2-3044238495 .background-color-B3{background-color:#E3E9FD;} + .d2-3044238495 .background-color-B4{background-color:#E3E9FD;} + .d2-3044238495 .background-color-B5{background-color:#EDF0FD;} + .d2-3044238495 .background-color-B6{background-color:#F7F8FE;} + .d2-3044238495 .background-color-AA2{background-color:#4A6FF3;} + .d2-3044238495 .background-color-AA4{background-color:#EDF0FD;} + .d2-3044238495 .background-color-AA5{background-color:#F7F8FE;} + .d2-3044238495 .background-color-AB4{background-color:#EDF0FD;} + .d2-3044238495 .background-color-AB5{background-color:#F7F8FE;} + .d2-3044238495 .color-N1{color:#0A0F25;} + .d2-3044238495 .color-N2{color:#676C7E;} + .d2-3044238495 .color-N3{color:#9499AB;} + .d2-3044238495 .color-N4{color:#CFD2DD;} + .d2-3044238495 .color-N5{color:#DEE1EB;} + .d2-3044238495 .color-N6{color:#EEF1F8;} + .d2-3044238495 .color-N7{color:#FFFFFF;} + .d2-3044238495 .color-B1{color:#0D32B2;} + .d2-3044238495 .color-B2{color:#0D32B2;} + .d2-3044238495 .color-B3{color:#E3E9FD;} + .d2-3044238495 .color-B4{color:#E3E9FD;} + .d2-3044238495 .color-B5{color:#EDF0FD;} + .d2-3044238495 .color-B6{color:#F7F8FE;} + .d2-3044238495 .color-AA2{color:#4A6FF3;} + .d2-3044238495 .color-AA4{color:#EDF0FD;} + .d2-3044238495 .color-AA5{color:#F7F8FE;} + .d2-3044238495 .color-AB4{color:#EDF0FD;} + .d2-3044238495 .color-AB5{color:#F7F8FE;}.appendix text.text{fill:#0A0F25}.md{--color-fg-default:#0A0F25;--color-fg-muted:#676C7E;--color-fg-subtle:#9499AB;--color-canvas-default:#FFFFFF;--color-canvas-subtle:#EEF1F8;--color-border-default:#0D32B2;--color-border-muted:#0D32B2;--color-neutral-muted:#EEF1F8;--color-accent-fg:#0D32B2;--color-accent-emphasis:#0D32B2;--color-attention-subtle:#676C7E;--color-danger-fg:red;}.sketch-overlay-B1{fill:url(#streaks-darker);mix-blend-mode:lighten}.sketch-overlay-B2{fill:url(#streaks-darker);mix-blend-mode:lighten}.sketch-overlay-B3{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-B4{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-B5{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-B6{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-AA2{fill:url(#streaks-dark);mix-blend-mode:overlay}.sketch-overlay-AA4{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-AA5{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-AB4{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-AB5{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-N1{fill:url(#streaks-darker);mix-blend-mode:lighten}.sketch-overlay-N2{fill:url(#streaks-dark);mix-blend-mode:overlay}.sketch-overlay-N3{fill:url(#streaks-normal);mix-blend-mode:color-burn}.sketch-overlay-N4{fill:url(#streaks-normal);mix-blend-mode:color-burn}.sketch-overlay-N5{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-N6{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-N7{fill:url(#streaks-bright);mix-blend-mode:darken}.light-code{display: block}.dark-code{display: none}]]>your love life will behappyharmoniousboredomimmortalityFridayMondayInsomniaSleepWakeDreamListenTalk hear \ No newline at end of file diff --git a/e2etests/testdata/stable/animated/elk/board.exp.json b/e2etests/testdata/stable/animated/elk/board.exp.json index 35e414a9b1..d09a6303ad 100644 --- a/e2etests/testdata/stable/animated/elk/board.exp.json +++ b/e2etests/testdata/stable/animated/elk/board.exp.json @@ -542,10 +542,8 @@ "id": "(your love life will be -> happy)[0]", "src": "your love life will be", "srcArrow": "none", - "srcLabel": "", "dst": "happy", "dstArrow": "triangle", - "dstLabel": "", "opacity": 1, "strokeDash": 0, "strokeWidth": 2, @@ -582,10 +580,8 @@ "id": "(your love life will be -> harmonious)[0]", "src": "your love life will be", "srcArrow": "none", - "srcLabel": "", "dst": "harmonious", "dstArrow": "triangle", - "dstLabel": "", "opacity": 1, "strokeDash": 0, "strokeWidth": 2, @@ -622,10 +618,8 @@ "id": "(boredom <- immortality)[0]", "src": "boredom", "srcArrow": "triangle", - "srcLabel": "", "dst": "immortality", "dstArrow": "none", - "dstLabel": "", "opacity": 1, "strokeDash": 0, "strokeWidth": 2, @@ -662,10 +656,8 @@ "id": "(Friday <-> Monday)[0]", "src": "Friday", "srcArrow": "triangle", - "srcLabel": "", "dst": "Monday", "dstArrow": "triangle", - "dstLabel": "", "opacity": 1, "strokeDash": 0, "strokeWidth": 2, @@ -702,10 +694,8 @@ "id": "(Insomnia -- Sleep)[0]", "src": "Insomnia", "srcArrow": "none", - "srcLabel": "", "dst": "Sleep", "dstArrow": "none", - "dstLabel": "", "opacity": 1, "strokeDash": 0, "strokeWidth": 2, @@ -750,10 +740,8 @@ "id": "(Insomnia -- Wake)[0]", "src": "Insomnia", "srcArrow": "none", - "srcLabel": "", "dst": "Wake", "dstArrow": "none", - "dstLabel": "", "opacity": 1, "strokeDash": 0, "strokeWidth": 2, @@ -790,10 +778,8 @@ "id": "(Insomnia -- Dream)[0]", "src": "Insomnia", "srcArrow": "none", - "srcLabel": "", "dst": "Dream", "dstArrow": "none", - "dstLabel": "", "opacity": 1, "strokeDash": 0, "strokeWidth": 8, @@ -838,10 +824,8 @@ "id": "(Listen <-> Talk)[0]", "src": "Listen", "srcArrow": "cf-one", - "srcLabel": "", "dst": "Talk", "dstArrow": "diamond", - "dstLabel": "", "opacity": 1, "strokeDash": 0, "strokeWidth": 2, diff --git a/e2etests/testdata/stable/animated/elk/sketch.exp.svg b/e2etests/testdata/stable/animated/elk/sketch.exp.svg index 3ecab6271e..307ac64028 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-3126460463 .fill-N1{fill:#0A0F25;} + .d2-3126460463 .fill-N2{fill:#676C7E;} + .d2-3126460463 .fill-N3{fill:#9499AB;} + .d2-3126460463 .fill-N4{fill:#CFD2DD;} + .d2-3126460463 .fill-N5{fill:#DEE1EB;} + .d2-3126460463 .fill-N6{fill:#EEF1F8;} + .d2-3126460463 .fill-N7{fill:#FFFFFF;} + .d2-3126460463 .fill-B1{fill:#0D32B2;} + .d2-3126460463 .fill-B2{fill:#0D32B2;} + .d2-3126460463 .fill-B3{fill:#E3E9FD;} + .d2-3126460463 .fill-B4{fill:#E3E9FD;} + .d2-3126460463 .fill-B5{fill:#EDF0FD;} + .d2-3126460463 .fill-B6{fill:#F7F8FE;} + .d2-3126460463 .fill-AA2{fill:#4A6FF3;} + .d2-3126460463 .fill-AA4{fill:#EDF0FD;} + .d2-3126460463 .fill-AA5{fill:#F7F8FE;} + .d2-3126460463 .fill-AB4{fill:#EDF0FD;} + .d2-3126460463 .fill-AB5{fill:#F7F8FE;} + .d2-3126460463 .stroke-N1{stroke:#0A0F25;} + .d2-3126460463 .stroke-N2{stroke:#676C7E;} + .d2-3126460463 .stroke-N3{stroke:#9499AB;} + .d2-3126460463 .stroke-N4{stroke:#CFD2DD;} + .d2-3126460463 .stroke-N5{stroke:#DEE1EB;} + .d2-3126460463 .stroke-N6{stroke:#EEF1F8;} + .d2-3126460463 .stroke-N7{stroke:#FFFFFF;} + .d2-3126460463 .stroke-B1{stroke:#0D32B2;} + .d2-3126460463 .stroke-B2{stroke:#0D32B2;} + .d2-3126460463 .stroke-B3{stroke:#E3E9FD;} + .d2-3126460463 .stroke-B4{stroke:#E3E9FD;} + .d2-3126460463 .stroke-B5{stroke:#EDF0FD;} + .d2-3126460463 .stroke-B6{stroke:#F7F8FE;} + .d2-3126460463 .stroke-AA2{stroke:#4A6FF3;} + .d2-3126460463 .stroke-AA4{stroke:#EDF0FD;} + .d2-3126460463 .stroke-AA5{stroke:#F7F8FE;} + .d2-3126460463 .stroke-AB4{stroke:#EDF0FD;} + .d2-3126460463 .stroke-AB5{stroke:#F7F8FE;} + .d2-3126460463 .background-color-N1{background-color:#0A0F25;} + .d2-3126460463 .background-color-N2{background-color:#676C7E;} + .d2-3126460463 .background-color-N3{background-color:#9499AB;} + .d2-3126460463 .background-color-N4{background-color:#CFD2DD;} + .d2-3126460463 .background-color-N5{background-color:#DEE1EB;} + .d2-3126460463 .background-color-N6{background-color:#EEF1F8;} + .d2-3126460463 .background-color-N7{background-color:#FFFFFF;} + .d2-3126460463 .background-color-B1{background-color:#0D32B2;} + .d2-3126460463 .background-color-B2{background-color:#0D32B2;} + .d2-3126460463 .background-color-B3{background-color:#E3E9FD;} + .d2-3126460463 .background-color-B4{background-color:#E3E9FD;} + .d2-3126460463 .background-color-B5{background-color:#EDF0FD;} + .d2-3126460463 .background-color-B6{background-color:#F7F8FE;} + .d2-3126460463 .background-color-AA2{background-color:#4A6FF3;} + .d2-3126460463 .background-color-AA4{background-color:#EDF0FD;} + .d2-3126460463 .background-color-AA5{background-color:#F7F8FE;} + .d2-3126460463 .background-color-AB4{background-color:#EDF0FD;} + .d2-3126460463 .background-color-AB5{background-color:#F7F8FE;} + .d2-3126460463 .color-N1{color:#0A0F25;} + .d2-3126460463 .color-N2{color:#676C7E;} + .d2-3126460463 .color-N3{color:#9499AB;} + .d2-3126460463 .color-N4{color:#CFD2DD;} + .d2-3126460463 .color-N5{color:#DEE1EB;} + .d2-3126460463 .color-N6{color:#EEF1F8;} + .d2-3126460463 .color-N7{color:#FFFFFF;} + .d2-3126460463 .color-B1{color:#0D32B2;} + .d2-3126460463 .color-B2{color:#0D32B2;} + .d2-3126460463 .color-B3{color:#E3E9FD;} + .d2-3126460463 .color-B4{color:#E3E9FD;} + .d2-3126460463 .color-B5{color:#EDF0FD;} + .d2-3126460463 .color-B6{color:#F7F8FE;} + .d2-3126460463 .color-AA2{color:#4A6FF3;} + .d2-3126460463 .color-AA4{color:#EDF0FD;} + .d2-3126460463 .color-AA5{color:#F7F8FE;} + .d2-3126460463 .color-AB4{color:#EDF0FD;} + .d2-3126460463 .color-AB5{color:#F7F8FE;}.appendix text.text{fill:#0A0F25}.md{--color-fg-default:#0A0F25;--color-fg-muted:#676C7E;--color-fg-subtle:#9499AB;--color-canvas-default:#FFFFFF;--color-canvas-subtle:#EEF1F8;--color-border-default:#0D32B2;--color-border-muted:#0D32B2;--color-neutral-muted:#EEF1F8;--color-accent-fg:#0D32B2;--color-accent-emphasis:#0D32B2;--color-attention-subtle:#676C7E;--color-danger-fg:red;}.sketch-overlay-B1{fill:url(#streaks-darker);mix-blend-mode:lighten}.sketch-overlay-B2{fill:url(#streaks-darker);mix-blend-mode:lighten}.sketch-overlay-B3{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-B4{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-B5{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-B6{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-AA2{fill:url(#streaks-dark);mix-blend-mode:overlay}.sketch-overlay-AA4{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-AA5{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-AB4{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-AB5{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-N1{fill:url(#streaks-darker);mix-blend-mode:lighten}.sketch-overlay-N2{fill:url(#streaks-dark);mix-blend-mode:overlay}.sketch-overlay-N3{fill:url(#streaks-normal);mix-blend-mode:color-burn}.sketch-overlay-N4{fill:url(#streaks-normal);mix-blend-mode:color-burn}.sketch-overlay-N5{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-N6{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-N7{fill:url(#streaks-bright);mix-blend-mode:darken}.light-code{display: block}.dark-code{display: none}]]>your love life will behappyharmoniousboredomimmortalityFridayMondayInsomniaSleepWakeDreamListenTalk hear \ No newline at end of file diff --git a/e2etests/testdata/stable/arrowhead_adjustment/dagre/board.exp.json b/e2etests/testdata/stable/arrowhead_adjustment/dagre/board.exp.json index 799dcd3550..6e521914ac 100644 --- a/e2etests/testdata/stable/arrowhead_adjustment/dagre/board.exp.json +++ b/e2etests/testdata/stable/arrowhead_adjustment/dagre/board.exp.json @@ -172,10 +172,8 @@ "id": "(a <-> b)[0]", "src": "a", "srcArrow": "arrow", - "srcLabel": "", "dst": "b", "dstArrow": "triangle", - "dstLabel": "", "opacity": 1, "strokeDash": 4, "strokeWidth": 6, @@ -257,10 +255,8 @@ "id": "(c -> b)[0]", "src": "c", "srcArrow": "none", - "srcLabel": "", "dst": "b", "dstArrow": "triangle", - "dstLabel": "", "opacity": 1, "strokeDash": 0, "strokeWidth": 7, @@ -306,10 +302,20 @@ "id": "(a <-> Oval)[0]", "src": "a", "srcArrow": "diamond", - "srcLabel": "", "dst": "Oval", "dstArrow": "filled-diamond", - "dstLabel": "*", + "dstLabel": { + "label": "*", + "fontSize": 0, + "fontFamily": "", + "language": "", + "color": "", + "italic": false, + "bold": false, + "underline": false, + "labelWidth": 5, + "labelHeight": 21 + }, "opacity": 1, "strokeDash": 0, "strokeWidth": 6, @@ -355,10 +361,8 @@ "id": "(c -- a)[0]", "src": "c", "srcArrow": "none", - "srcLabel": "", "dst": "a", "dstArrow": "none", - "dstLabel": "", "opacity": 1, "strokeDash": 0, "strokeWidth": 7, @@ -416,10 +420,8 @@ "id": "(Oval <-> c)[0]", "src": "Oval", "srcArrow": "triangle", - "srcLabel": "", "dst": "c", "dstArrow": "triangle", - "dstLabel": "", "opacity": 1, "strokeDash": 0, "strokeWidth": 2, diff --git a/e2etests/testdata/stable/arrowhead_adjustment/dagre/sketch.exp.svg b/e2etests/testdata/stable/arrowhead_adjustment/dagre/sketch.exp.svg index e0bfe35091..82ab403c04 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-39654206 .fill-N1{fill:#0A0F25;} + .d2-39654206 .fill-N2{fill:#676C7E;} + .d2-39654206 .fill-N3{fill:#9499AB;} + .d2-39654206 .fill-N4{fill:#CFD2DD;} + .d2-39654206 .fill-N5{fill:#DEE1EB;} + .d2-39654206 .fill-N6{fill:#EEF1F8;} + .d2-39654206 .fill-N7{fill:#FFFFFF;} + .d2-39654206 .fill-B1{fill:#0D32B2;} + .d2-39654206 .fill-B2{fill:#0D32B2;} + .d2-39654206 .fill-B3{fill:#E3E9FD;} + .d2-39654206 .fill-B4{fill:#E3E9FD;} + .d2-39654206 .fill-B5{fill:#EDF0FD;} + .d2-39654206 .fill-B6{fill:#F7F8FE;} + .d2-39654206 .fill-AA2{fill:#4A6FF3;} + .d2-39654206 .fill-AA4{fill:#EDF0FD;} + .d2-39654206 .fill-AA5{fill:#F7F8FE;} + .d2-39654206 .fill-AB4{fill:#EDF0FD;} + .d2-39654206 .fill-AB5{fill:#F7F8FE;} + .d2-39654206 .stroke-N1{stroke:#0A0F25;} + .d2-39654206 .stroke-N2{stroke:#676C7E;} + .d2-39654206 .stroke-N3{stroke:#9499AB;} + .d2-39654206 .stroke-N4{stroke:#CFD2DD;} + .d2-39654206 .stroke-N5{stroke:#DEE1EB;} + .d2-39654206 .stroke-N6{stroke:#EEF1F8;} + .d2-39654206 .stroke-N7{stroke:#FFFFFF;} + .d2-39654206 .stroke-B1{stroke:#0D32B2;} + .d2-39654206 .stroke-B2{stroke:#0D32B2;} + .d2-39654206 .stroke-B3{stroke:#E3E9FD;} + .d2-39654206 .stroke-B4{stroke:#E3E9FD;} + .d2-39654206 .stroke-B5{stroke:#EDF0FD;} + .d2-39654206 .stroke-B6{stroke:#F7F8FE;} + .d2-39654206 .stroke-AA2{stroke:#4A6FF3;} + .d2-39654206 .stroke-AA4{stroke:#EDF0FD;} + .d2-39654206 .stroke-AA5{stroke:#F7F8FE;} + .d2-39654206 .stroke-AB4{stroke:#EDF0FD;} + .d2-39654206 .stroke-AB5{stroke:#F7F8FE;} + .d2-39654206 .background-color-N1{background-color:#0A0F25;} + .d2-39654206 .background-color-N2{background-color:#676C7E;} + .d2-39654206 .background-color-N3{background-color:#9499AB;} + .d2-39654206 .background-color-N4{background-color:#CFD2DD;} + .d2-39654206 .background-color-N5{background-color:#DEE1EB;} + .d2-39654206 .background-color-N6{background-color:#EEF1F8;} + .d2-39654206 .background-color-N7{background-color:#FFFFFF;} + .d2-39654206 .background-color-B1{background-color:#0D32B2;} + .d2-39654206 .background-color-B2{background-color:#0D32B2;} + .d2-39654206 .background-color-B3{background-color:#E3E9FD;} + .d2-39654206 .background-color-B4{background-color:#E3E9FD;} + .d2-39654206 .background-color-B5{background-color:#EDF0FD;} + .d2-39654206 .background-color-B6{background-color:#F7F8FE;} + .d2-39654206 .background-color-AA2{background-color:#4A6FF3;} + .d2-39654206 .background-color-AA4{background-color:#EDF0FD;} + .d2-39654206 .background-color-AA5{background-color:#F7F8FE;} + .d2-39654206 .background-color-AB4{background-color:#EDF0FD;} + .d2-39654206 .background-color-AB5{background-color:#F7F8FE;} + .d2-39654206 .color-N1{color:#0A0F25;} + .d2-39654206 .color-N2{color:#676C7E;} + .d2-39654206 .color-N3{color:#9499AB;} + .d2-39654206 .color-N4{color:#CFD2DD;} + .d2-39654206 .color-N5{color:#DEE1EB;} + .d2-39654206 .color-N6{color:#EEF1F8;} + .d2-39654206 .color-N7{color:#FFFFFF;} + .d2-39654206 .color-B1{color:#0D32B2;} + .d2-39654206 .color-B2{color:#0D32B2;} + .d2-39654206 .color-B3{color:#E3E9FD;} + .d2-39654206 .color-B4{color:#E3E9FD;} + .d2-39654206 .color-B5{color:#EDF0FD;} + .d2-39654206 .color-B6{color:#F7F8FE;} + .d2-39654206 .color-AA2{color:#4A6FF3;} + .d2-39654206 .color-AA4{color:#EDF0FD;} + .d2-39654206 .color-AA5{color:#F7F8FE;} + .d2-39654206 .color-AB4{color:#EDF0FD;} + .d2-39654206 .color-AB5{color:#F7F8FE;}.appendix text.text{fill:#0A0F25}.md{--color-fg-default:#0A0F25;--color-fg-muted:#676C7E;--color-fg-subtle:#9499AB;--color-canvas-default:#FFFFFF;--color-canvas-subtle:#EEF1F8;--color-border-default:#0D32B2;--color-border-muted:#0D32B2;--color-neutral-muted:#EEF1F8;--color-accent-fg:#0D32B2;--color-accent-emphasis:#0D32B2;--color-attention-subtle:#676C7E;--color-danger-fg:red;}.sketch-overlay-B1{fill:url(#streaks-darker);mix-blend-mode:lighten}.sketch-overlay-B2{fill:url(#streaks-darker);mix-blend-mode:lighten}.sketch-overlay-B3{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-B4{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-B5{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-B6{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-AA2{fill:url(#streaks-dark);mix-blend-mode:overlay}.sketch-overlay-AA4{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-AA5{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-AB4{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-AB5{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-N1{fill:url(#streaks-darker);mix-blend-mode:lighten}.sketch-overlay-N2{fill:url(#streaks-dark);mix-blend-mode:overlay}.sketch-overlay-N3{fill:url(#streaks-normal);mix-blend-mode:color-burn}.sketch-overlay-N4{fill:url(#streaks-normal);mix-blend-mode:color-burn}.sketch-overlay-N5{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-N6{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-N7{fill:url(#streaks-bright);mix-blend-mode:darken}.light-code{display: block}.dark-code{display: none}]]>abc * \ No newline at end of file diff --git a/e2etests/testdata/stable/arrowhead_adjustment/elk/board.exp.json b/e2etests/testdata/stable/arrowhead_adjustment/elk/board.exp.json index ff22558a1b..6b9272da9b 100644 --- a/e2etests/testdata/stable/arrowhead_adjustment/elk/board.exp.json +++ b/e2etests/testdata/stable/arrowhead_adjustment/elk/board.exp.json @@ -172,10 +172,8 @@ "id": "(a <-> b)[0]", "src": "a", "srcArrow": "arrow", - "srcLabel": "", "dst": "b", "dstArrow": "triangle", - "dstLabel": "", "opacity": 1, "strokeDash": 4, "strokeWidth": 6, @@ -228,10 +226,8 @@ "id": "(c -> b)[0]", "src": "c", "srcArrow": "none", - "srcLabel": "", "dst": "b", "dstArrow": "triangle", - "dstLabel": "", "opacity": 1, "strokeDash": 0, "strokeWidth": 7, @@ -276,10 +272,20 @@ "id": "(a <-> Oval)[0]", "src": "a", "srcArrow": "diamond", - "srcLabel": "", "dst": "Oval", "dstArrow": "filled-diamond", - "dstLabel": "*", + "dstLabel": { + "label": "*", + "fontSize": 0, + "fontFamily": "", + "language": "", + "color": "", + "italic": false, + "bold": false, + "underline": false, + "labelWidth": 5, + "labelHeight": 21 + }, "opacity": 1, "strokeDash": 0, "strokeWidth": 6, @@ -316,10 +322,8 @@ "id": "(c -- a)[0]", "src": "c", "srcArrow": "none", - "srcLabel": "", "dst": "a", "dstArrow": "none", - "dstLabel": "", "opacity": 1, "strokeDash": 0, "strokeWidth": 7, @@ -372,10 +376,8 @@ "id": "(Oval <-> c)[0]", "src": "Oval", "srcArrow": "triangle", - "srcLabel": "", "dst": "c", "dstArrow": "triangle", - "dstLabel": "", "opacity": 1, "strokeDash": 0, "strokeWidth": 2, diff --git a/e2etests/testdata/stable/arrowhead_adjustment/elk/sketch.exp.svg b/e2etests/testdata/stable/arrowhead_adjustment/elk/sketch.exp.svg index fb9659d432..aa1f1e16b1 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-2391175043 .fill-N1{fill:#0A0F25;} + .d2-2391175043 .fill-N2{fill:#676C7E;} + .d2-2391175043 .fill-N3{fill:#9499AB;} + .d2-2391175043 .fill-N4{fill:#CFD2DD;} + .d2-2391175043 .fill-N5{fill:#DEE1EB;} + .d2-2391175043 .fill-N6{fill:#EEF1F8;} + .d2-2391175043 .fill-N7{fill:#FFFFFF;} + .d2-2391175043 .fill-B1{fill:#0D32B2;} + .d2-2391175043 .fill-B2{fill:#0D32B2;} + .d2-2391175043 .fill-B3{fill:#E3E9FD;} + .d2-2391175043 .fill-B4{fill:#E3E9FD;} + .d2-2391175043 .fill-B5{fill:#EDF0FD;} + .d2-2391175043 .fill-B6{fill:#F7F8FE;} + .d2-2391175043 .fill-AA2{fill:#4A6FF3;} + .d2-2391175043 .fill-AA4{fill:#EDF0FD;} + .d2-2391175043 .fill-AA5{fill:#F7F8FE;} + .d2-2391175043 .fill-AB4{fill:#EDF0FD;} + .d2-2391175043 .fill-AB5{fill:#F7F8FE;} + .d2-2391175043 .stroke-N1{stroke:#0A0F25;} + .d2-2391175043 .stroke-N2{stroke:#676C7E;} + .d2-2391175043 .stroke-N3{stroke:#9499AB;} + .d2-2391175043 .stroke-N4{stroke:#CFD2DD;} + .d2-2391175043 .stroke-N5{stroke:#DEE1EB;} + .d2-2391175043 .stroke-N6{stroke:#EEF1F8;} + .d2-2391175043 .stroke-N7{stroke:#FFFFFF;} + .d2-2391175043 .stroke-B1{stroke:#0D32B2;} + .d2-2391175043 .stroke-B2{stroke:#0D32B2;} + .d2-2391175043 .stroke-B3{stroke:#E3E9FD;} + .d2-2391175043 .stroke-B4{stroke:#E3E9FD;} + .d2-2391175043 .stroke-B5{stroke:#EDF0FD;} + .d2-2391175043 .stroke-B6{stroke:#F7F8FE;} + .d2-2391175043 .stroke-AA2{stroke:#4A6FF3;} + .d2-2391175043 .stroke-AA4{stroke:#EDF0FD;} + .d2-2391175043 .stroke-AA5{stroke:#F7F8FE;} + .d2-2391175043 .stroke-AB4{stroke:#EDF0FD;} + .d2-2391175043 .stroke-AB5{stroke:#F7F8FE;} + .d2-2391175043 .background-color-N1{background-color:#0A0F25;} + .d2-2391175043 .background-color-N2{background-color:#676C7E;} + .d2-2391175043 .background-color-N3{background-color:#9499AB;} + .d2-2391175043 .background-color-N4{background-color:#CFD2DD;} + .d2-2391175043 .background-color-N5{background-color:#DEE1EB;} + .d2-2391175043 .background-color-N6{background-color:#EEF1F8;} + .d2-2391175043 .background-color-N7{background-color:#FFFFFF;} + .d2-2391175043 .background-color-B1{background-color:#0D32B2;} + .d2-2391175043 .background-color-B2{background-color:#0D32B2;} + .d2-2391175043 .background-color-B3{background-color:#E3E9FD;} + .d2-2391175043 .background-color-B4{background-color:#E3E9FD;} + .d2-2391175043 .background-color-B5{background-color:#EDF0FD;} + .d2-2391175043 .background-color-B6{background-color:#F7F8FE;} + .d2-2391175043 .background-color-AA2{background-color:#4A6FF3;} + .d2-2391175043 .background-color-AA4{background-color:#EDF0FD;} + .d2-2391175043 .background-color-AA5{background-color:#F7F8FE;} + .d2-2391175043 .background-color-AB4{background-color:#EDF0FD;} + .d2-2391175043 .background-color-AB5{background-color:#F7F8FE;} + .d2-2391175043 .color-N1{color:#0A0F25;} + .d2-2391175043 .color-N2{color:#676C7E;} + .d2-2391175043 .color-N3{color:#9499AB;} + .d2-2391175043 .color-N4{color:#CFD2DD;} + .d2-2391175043 .color-N5{color:#DEE1EB;} + .d2-2391175043 .color-N6{color:#EEF1F8;} + .d2-2391175043 .color-N7{color:#FFFFFF;} + .d2-2391175043 .color-B1{color:#0D32B2;} + .d2-2391175043 .color-B2{color:#0D32B2;} + .d2-2391175043 .color-B3{color:#E3E9FD;} + .d2-2391175043 .color-B4{color:#E3E9FD;} + .d2-2391175043 .color-B5{color:#EDF0FD;} + .d2-2391175043 .color-B6{color:#F7F8FE;} + .d2-2391175043 .color-AA2{color:#4A6FF3;} + .d2-2391175043 .color-AA4{color:#EDF0FD;} + .d2-2391175043 .color-AA5{color:#F7F8FE;} + .d2-2391175043 .color-AB4{color:#EDF0FD;} + .d2-2391175043 .color-AB5{color:#F7F8FE;}.appendix text.text{fill:#0A0F25}.md{--color-fg-default:#0A0F25;--color-fg-muted:#676C7E;--color-fg-subtle:#9499AB;--color-canvas-default:#FFFFFF;--color-canvas-subtle:#EEF1F8;--color-border-default:#0D32B2;--color-border-muted:#0D32B2;--color-neutral-muted:#EEF1F8;--color-accent-fg:#0D32B2;--color-accent-emphasis:#0D32B2;--color-attention-subtle:#676C7E;--color-danger-fg:red;}.sketch-overlay-B1{fill:url(#streaks-darker);mix-blend-mode:lighten}.sketch-overlay-B2{fill:url(#streaks-darker);mix-blend-mode:lighten}.sketch-overlay-B3{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-B4{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-B5{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-B6{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-AA2{fill:url(#streaks-dark);mix-blend-mode:overlay}.sketch-overlay-AA4{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-AA5{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-AB4{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-AB5{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-N1{fill:url(#streaks-darker);mix-blend-mode:lighten}.sketch-overlay-N2{fill:url(#streaks-dark);mix-blend-mode:overlay}.sketch-overlay-N3{fill:url(#streaks-normal);mix-blend-mode:color-burn}.sketch-overlay-N4{fill:url(#streaks-normal);mix-blend-mode:color-burn}.sketch-overlay-N5{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-N6{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-N7{fill:url(#streaks-bright);mix-blend-mode:darken}.light-code{display: block}.dark-code{display: none}]]>abc * \ No newline at end of file diff --git a/e2etests/testdata/stable/arrowhead_labels/dagre/board.exp.json b/e2etests/testdata/stable/arrowhead_labels/dagre/board.exp.json index f73d1c5e51..7ad80cd467 100644 --- a/e2etests/testdata/stable/arrowhead_labels/dagre/board.exp.json +++ b/e2etests/testdata/stable/arrowhead_labels/dagre/board.exp.json @@ -91,10 +91,32 @@ "id": "(a -> b)[0]", "src": "a", "srcArrow": "none", - "srcLabel": "1", + "srcLabel": { + "label": "1", + "fontSize": 0, + "fontFamily": "", + "language": "", + "color": "", + "italic": false, + "bold": false, + "underline": false, + "labelWidth": 7, + "labelHeight": 21 + }, "dst": "b", "dstArrow": "diamond", - "dstLabel": "*", + "dstLabel": { + "label": "*", + "fontSize": 0, + "fontFamily": "", + "language": "", + "color": "", + "italic": false, + "bold": false, + "underline": false, + "labelWidth": 5, + "labelHeight": 21 + }, "opacity": 1, "strokeDash": 0, "strokeWidth": 2, diff --git a/e2etests/testdata/stable/arrowhead_labels/dagre/sketch.exp.svg b/e2etests/testdata/stable/arrowhead_labels/dagre/sketch.exp.svg index 7ef1cfe444..479934af0a 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-2178434489 .fill-N1{fill:#0A0F25;} + .d2-2178434489 .fill-N2{fill:#676C7E;} + .d2-2178434489 .fill-N3{fill:#9499AB;} + .d2-2178434489 .fill-N4{fill:#CFD2DD;} + .d2-2178434489 .fill-N5{fill:#DEE1EB;} + .d2-2178434489 .fill-N6{fill:#EEF1F8;} + .d2-2178434489 .fill-N7{fill:#FFFFFF;} + .d2-2178434489 .fill-B1{fill:#0D32B2;} + .d2-2178434489 .fill-B2{fill:#0D32B2;} + .d2-2178434489 .fill-B3{fill:#E3E9FD;} + .d2-2178434489 .fill-B4{fill:#E3E9FD;} + .d2-2178434489 .fill-B5{fill:#EDF0FD;} + .d2-2178434489 .fill-B6{fill:#F7F8FE;} + .d2-2178434489 .fill-AA2{fill:#4A6FF3;} + .d2-2178434489 .fill-AA4{fill:#EDF0FD;} + .d2-2178434489 .fill-AA5{fill:#F7F8FE;} + .d2-2178434489 .fill-AB4{fill:#EDF0FD;} + .d2-2178434489 .fill-AB5{fill:#F7F8FE;} + .d2-2178434489 .stroke-N1{stroke:#0A0F25;} + .d2-2178434489 .stroke-N2{stroke:#676C7E;} + .d2-2178434489 .stroke-N3{stroke:#9499AB;} + .d2-2178434489 .stroke-N4{stroke:#CFD2DD;} + .d2-2178434489 .stroke-N5{stroke:#DEE1EB;} + .d2-2178434489 .stroke-N6{stroke:#EEF1F8;} + .d2-2178434489 .stroke-N7{stroke:#FFFFFF;} + .d2-2178434489 .stroke-B1{stroke:#0D32B2;} + .d2-2178434489 .stroke-B2{stroke:#0D32B2;} + .d2-2178434489 .stroke-B3{stroke:#E3E9FD;} + .d2-2178434489 .stroke-B4{stroke:#E3E9FD;} + .d2-2178434489 .stroke-B5{stroke:#EDF0FD;} + .d2-2178434489 .stroke-B6{stroke:#F7F8FE;} + .d2-2178434489 .stroke-AA2{stroke:#4A6FF3;} + .d2-2178434489 .stroke-AA4{stroke:#EDF0FD;} + .d2-2178434489 .stroke-AA5{stroke:#F7F8FE;} + .d2-2178434489 .stroke-AB4{stroke:#EDF0FD;} + .d2-2178434489 .stroke-AB5{stroke:#F7F8FE;} + .d2-2178434489 .background-color-N1{background-color:#0A0F25;} + .d2-2178434489 .background-color-N2{background-color:#676C7E;} + .d2-2178434489 .background-color-N3{background-color:#9499AB;} + .d2-2178434489 .background-color-N4{background-color:#CFD2DD;} + .d2-2178434489 .background-color-N5{background-color:#DEE1EB;} + .d2-2178434489 .background-color-N6{background-color:#EEF1F8;} + .d2-2178434489 .background-color-N7{background-color:#FFFFFF;} + .d2-2178434489 .background-color-B1{background-color:#0D32B2;} + .d2-2178434489 .background-color-B2{background-color:#0D32B2;} + .d2-2178434489 .background-color-B3{background-color:#E3E9FD;} + .d2-2178434489 .background-color-B4{background-color:#E3E9FD;} + .d2-2178434489 .background-color-B5{background-color:#EDF0FD;} + .d2-2178434489 .background-color-B6{background-color:#F7F8FE;} + .d2-2178434489 .background-color-AA2{background-color:#4A6FF3;} + .d2-2178434489 .background-color-AA4{background-color:#EDF0FD;} + .d2-2178434489 .background-color-AA5{background-color:#F7F8FE;} + .d2-2178434489 .background-color-AB4{background-color:#EDF0FD;} + .d2-2178434489 .background-color-AB5{background-color:#F7F8FE;} + .d2-2178434489 .color-N1{color:#0A0F25;} + .d2-2178434489 .color-N2{color:#676C7E;} + .d2-2178434489 .color-N3{color:#9499AB;} + .d2-2178434489 .color-N4{color:#CFD2DD;} + .d2-2178434489 .color-N5{color:#DEE1EB;} + .d2-2178434489 .color-N6{color:#EEF1F8;} + .d2-2178434489 .color-N7{color:#FFFFFF;} + .d2-2178434489 .color-B1{color:#0D32B2;} + .d2-2178434489 .color-B2{color:#0D32B2;} + .d2-2178434489 .color-B3{color:#E3E9FD;} + .d2-2178434489 .color-B4{color:#E3E9FD;} + .d2-2178434489 .color-B5{color:#EDF0FD;} + .d2-2178434489 .color-B6{color:#F7F8FE;} + .d2-2178434489 .color-AA2{color:#4A6FF3;} + .d2-2178434489 .color-AA4{color:#EDF0FD;} + .d2-2178434489 .color-AA5{color:#F7F8FE;} + .d2-2178434489 .color-AB4{color:#EDF0FD;} + .d2-2178434489 .color-AB5{color:#F7F8FE;}.appendix text.text{fill:#0A0F25}.md{--color-fg-default:#0A0F25;--color-fg-muted:#676C7E;--color-fg-subtle:#9499AB;--color-canvas-default:#FFFFFF;--color-canvas-subtle:#EEF1F8;--color-border-default:#0D32B2;--color-border-muted:#0D32B2;--color-neutral-muted:#EEF1F8;--color-accent-fg:#0D32B2;--color-accent-emphasis:#0D32B2;--color-attention-subtle:#676C7E;--color-danger-fg:red;}.sketch-overlay-B1{fill:url(#streaks-darker);mix-blend-mode:lighten}.sketch-overlay-B2{fill:url(#streaks-darker);mix-blend-mode:lighten}.sketch-overlay-B3{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-B4{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-B5{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-B6{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-AA2{fill:url(#streaks-dark);mix-blend-mode:overlay}.sketch-overlay-AA4{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-AA5{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-AB4{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-AB5{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-N1{fill:url(#streaks-darker);mix-blend-mode:lighten}.sketch-overlay-N2{fill:url(#streaks-dark);mix-blend-mode:overlay}.sketch-overlay-N3{fill:url(#streaks-normal);mix-blend-mode:color-burn}.sketch-overlay-N4{fill:url(#streaks-normal);mix-blend-mode:color-burn}.sketch-overlay-N5{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-N6{fill:url(#streaks-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* \ No newline at end of file diff --git a/e2etests/testdata/stable/arrowhead_labels/elk/board.exp.json b/e2etests/testdata/stable/arrowhead_labels/elk/board.exp.json index 4f431b28cf..621b52c5e7 100644 --- a/e2etests/testdata/stable/arrowhead_labels/elk/board.exp.json +++ b/e2etests/testdata/stable/arrowhead_labels/elk/board.exp.json @@ -91,10 +91,32 @@ "id": "(a -> b)[0]", "src": "a", "srcArrow": "none", - "srcLabel": "1", + "srcLabel": { + "label": "1", + "fontSize": 0, + "fontFamily": "", + "language": "", + "color": "", + "italic": false, + "bold": false, + "underline": false, + "labelWidth": 7, + "labelHeight": 21 + }, "dst": "b", "dstArrow": "diamond", - "dstLabel": "*", + "dstLabel": { + "label": "*", + "fontSize": 0, + "fontFamily": "", + "language": "", + "color": "", + "italic": false, + "bold": false, + "underline": false, + "labelWidth": 5, + "labelHeight": 21 + }, "opacity": 1, "strokeDash": 0, "strokeWidth": 2, diff --git a/e2etests/testdata/stable/arrowhead_labels/elk/sketch.exp.svg b/e2etests/testdata/stable/arrowhead_labels/elk/sketch.exp.svg index f8aff3ac95..f7fd1993f6 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-1342741672 .fill-N1{fill:#0A0F25;} + .d2-1342741672 .fill-N2{fill:#676C7E;} + .d2-1342741672 .fill-N3{fill:#9499AB;} + .d2-1342741672 .fill-N4{fill:#CFD2DD;} + .d2-1342741672 .fill-N5{fill:#DEE1EB;} + .d2-1342741672 .fill-N6{fill:#EEF1F8;} + .d2-1342741672 .fill-N7{fill:#FFFFFF;} + .d2-1342741672 .fill-B1{fill:#0D32B2;} + .d2-1342741672 .fill-B2{fill:#0D32B2;} + .d2-1342741672 .fill-B3{fill:#E3E9FD;} + .d2-1342741672 .fill-B4{fill:#E3E9FD;} + .d2-1342741672 .fill-B5{fill:#EDF0FD;} + .d2-1342741672 .fill-B6{fill:#F7F8FE;} + .d2-1342741672 .fill-AA2{fill:#4A6FF3;} + .d2-1342741672 .fill-AA4{fill:#EDF0FD;} + .d2-1342741672 .fill-AA5{fill:#F7F8FE;} + .d2-1342741672 .fill-AB4{fill:#EDF0FD;} + .d2-1342741672 .fill-AB5{fill:#F7F8FE;} + .d2-1342741672 .stroke-N1{stroke:#0A0F25;} + .d2-1342741672 .stroke-N2{stroke:#676C7E;} + .d2-1342741672 .stroke-N3{stroke:#9499AB;} + .d2-1342741672 .stroke-N4{stroke:#CFD2DD;} + .d2-1342741672 .stroke-N5{stroke:#DEE1EB;} + .d2-1342741672 .stroke-N6{stroke:#EEF1F8;} + .d2-1342741672 .stroke-N7{stroke:#FFFFFF;} + .d2-1342741672 .stroke-B1{stroke:#0D32B2;} + .d2-1342741672 .stroke-B2{stroke:#0D32B2;} + .d2-1342741672 .stroke-B3{stroke:#E3E9FD;} + .d2-1342741672 .stroke-B4{stroke:#E3E9FD;} + .d2-1342741672 .stroke-B5{stroke:#EDF0FD;} + .d2-1342741672 .stroke-B6{stroke:#F7F8FE;} + .d2-1342741672 .stroke-AA2{stroke:#4A6FF3;} + .d2-1342741672 .stroke-AA4{stroke:#EDF0FD;} + .d2-1342741672 .stroke-AA5{stroke:#F7F8FE;} + .d2-1342741672 .stroke-AB4{stroke:#EDF0FD;} + .d2-1342741672 .stroke-AB5{stroke:#F7F8FE;} + .d2-1342741672 .background-color-N1{background-color:#0A0F25;} + .d2-1342741672 .background-color-N2{background-color:#676C7E;} + .d2-1342741672 .background-color-N3{background-color:#9499AB;} + .d2-1342741672 .background-color-N4{background-color:#CFD2DD;} + .d2-1342741672 .background-color-N5{background-color:#DEE1EB;} + .d2-1342741672 .background-color-N6{background-color:#EEF1F8;} + .d2-1342741672 .background-color-N7{background-color:#FFFFFF;} + .d2-1342741672 .background-color-B1{background-color:#0D32B2;} + .d2-1342741672 .background-color-B2{background-color:#0D32B2;} + .d2-1342741672 .background-color-B3{background-color:#E3E9FD;} + .d2-1342741672 .background-color-B4{background-color:#E3E9FD;} + .d2-1342741672 .background-color-B5{background-color:#EDF0FD;} + .d2-1342741672 .background-color-B6{background-color:#F7F8FE;} + .d2-1342741672 .background-color-AA2{background-color:#4A6FF3;} + .d2-1342741672 .background-color-AA4{background-color:#EDF0FD;} + .d2-1342741672 .background-color-AA5{background-color:#F7F8FE;} + .d2-1342741672 .background-color-AB4{background-color:#EDF0FD;} + .d2-1342741672 .background-color-AB5{background-color:#F7F8FE;} + .d2-1342741672 .color-N1{color:#0A0F25;} + .d2-1342741672 .color-N2{color:#676C7E;} + .d2-1342741672 .color-N3{color:#9499AB;} + .d2-1342741672 .color-N4{color:#CFD2DD;} + .d2-1342741672 .color-N5{color:#DEE1EB;} + .d2-1342741672 .color-N6{color:#EEF1F8;} + .d2-1342741672 .color-N7{color:#FFFFFF;} + .d2-1342741672 .color-B1{color:#0D32B2;} + .d2-1342741672 .color-B2{color:#0D32B2;} + .d2-1342741672 .color-B3{color:#E3E9FD;} + .d2-1342741672 .color-B4{color:#E3E9FD;} + .d2-1342741672 .color-B5{color:#EDF0FD;} + .d2-1342741672 .color-B6{color:#F7F8FE;} + .d2-1342741672 .color-AA2{color:#4A6FF3;} + .d2-1342741672 .color-AA4{color:#EDF0FD;} + .d2-1342741672 .color-AA5{color:#F7F8FE;} + .d2-1342741672 .color-AB4{color:#EDF0FD;} + .d2-1342741672 .color-AB5{color:#F7F8FE;}.appendix text.text{fill:#0A0F25}.md{--color-fg-default:#0A0F25;--color-fg-muted:#676C7E;--color-fg-subtle:#9499AB;--color-canvas-default:#FFFFFF;--color-canvas-subtle:#EEF1F8;--color-border-default:#0D32B2;--color-border-muted:#0D32B2;--color-neutral-muted:#EEF1F8;--color-accent-fg:#0D32B2;--color-accent-emphasis:#0D32B2;--color-attention-subtle:#676C7E;--color-danger-fg:red;}.sketch-overlay-B1{fill:url(#streaks-darker);mix-blend-mode:lighten}.sketch-overlay-B2{fill:url(#streaks-darker);mix-blend-mode:lighten}.sketch-overlay-B3{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-B4{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-B5{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-B6{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-AA2{fill:url(#streaks-dark);mix-blend-mode:overlay}.sketch-overlay-AA4{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-AA5{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-AB4{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-AB5{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-N1{fill:url(#streaks-darker);mix-blend-mode:lighten}.sketch-overlay-N2{fill:url(#streaks-dark);mix-blend-mode:overlay}.sketch-overlay-N3{fill:url(#streaks-normal);mix-blend-mode:color-burn}.sketch-overlay-N4{fill:url(#streaks-normal);mix-blend-mode:color-burn}.sketch-overlay-N5{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-N6{fill:url(#streaks-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* \ No newline at end of file diff --git a/e2etests/testdata/stable/arrowhead_scaling/dagre/board.exp.json b/e2etests/testdata/stable/arrowhead_scaling/dagre/board.exp.json index d11608d149..ed4c45531c 100644 --- a/e2etests/testdata/stable/arrowhead_scaling/dagre/board.exp.json +++ b/e2etests/testdata/stable/arrowhead_scaling/dagre/board.exp.json @@ -5850,10 +5850,8 @@ "id": "default.(start.1 <-> end.1)[0]", "src": "default.start.1", "srcArrow": "triangle", - "srcLabel": "", "dst": "default.end.1", "dstArrow": "triangle", - "dstLabel": "", "opacity": 1, "strokeDash": 0, "strokeWidth": 1, @@ -5911,10 +5909,8 @@ "id": "default.(start.2 <-> end.2)[0]", "src": "default.start.2", "srcArrow": "triangle", - "srcLabel": "", "dst": "default.end.2", "dstArrow": "triangle", - "dstLabel": "", "opacity": 1, "strokeDash": 0, "strokeWidth": 2, @@ -5972,10 +5968,8 @@ "id": "default.(start.4 <-> end.4)[0]", "src": "default.start.4", "srcArrow": "triangle", - "srcLabel": "", "dst": "default.end.4", "dstArrow": "triangle", - "dstLabel": "", "opacity": 1, "strokeDash": 0, "strokeWidth": 4, @@ -6033,10 +6027,8 @@ "id": "default.(start.8 <-> end.8)[0]", "src": "default.start.8", "srcArrow": "triangle", - "srcLabel": "", "dst": "default.end.8", "dstArrow": "triangle", - "dstLabel": "", "opacity": 1, "strokeDash": 0, "strokeWidth": 8, @@ -6094,10 +6086,8 @@ "id": "default.(start.15 <-> end.15)[0]", "src": "default.start.15", "srcArrow": "triangle", - "srcLabel": "", "dst": "default.end.15", "dstArrow": "triangle", - "dstLabel": "", "opacity": 1, "strokeDash": 0, "strokeWidth": 15, @@ -6155,10 +6145,8 @@ "id": "line.(start.1 -- end.1)[0]", "src": "line.start.1", "srcArrow": "none", - "srcLabel": "", "dst": "line.end.1", "dstArrow": "none", - "dstLabel": "", "opacity": 1, "strokeDash": 0, "strokeWidth": 1, @@ -6216,10 +6204,8 @@ "id": "line.(start.2 -- end.2)[0]", "src": "line.start.2", "srcArrow": "none", - "srcLabel": "", "dst": "line.end.2", "dstArrow": "none", - "dstLabel": "", "opacity": 1, "strokeDash": 0, "strokeWidth": 2, @@ -6277,10 +6263,8 @@ "id": "line.(start.4 -- end.4)[0]", "src": "line.start.4", "srcArrow": "none", - "srcLabel": "", "dst": "line.end.4", "dstArrow": "none", - "dstLabel": "", "opacity": 1, "strokeDash": 0, "strokeWidth": 4, @@ -6338,10 +6322,8 @@ "id": "line.(start.8 -- end.8)[0]", "src": "line.start.8", "srcArrow": "none", - "srcLabel": "", "dst": "line.end.8", "dstArrow": "none", - "dstLabel": "", "opacity": 1, "strokeDash": 0, "strokeWidth": 8, @@ -6399,10 +6381,8 @@ "id": "line.(start.15 -- end.15)[0]", "src": "line.start.15", "srcArrow": "none", - "srcLabel": "", "dst": "line.end.15", "dstArrow": "none", - "dstLabel": "", "opacity": 1, "strokeDash": 0, "strokeWidth": 15, @@ -6460,10 +6440,8 @@ "id": "arrow.(start.1 <-> end.1)[0]", "src": "arrow.start.1", "srcArrow": "arrow", - "srcLabel": "", "dst": "arrow.end.1", "dstArrow": "arrow", - "dstLabel": "", "opacity": 1, "strokeDash": 0, "strokeWidth": 1, @@ -6521,10 +6499,8 @@ "id": "arrow.(start.2 <-> end.2)[0]", "src": "arrow.start.2", "srcArrow": "arrow", - "srcLabel": "", "dst": "arrow.end.2", "dstArrow": "arrow", - "dstLabel": "", "opacity": 1, "strokeDash": 0, "strokeWidth": 2, @@ -6582,10 +6558,8 @@ "id": "arrow.(start.4 <-> end.4)[0]", "src": "arrow.start.4", "srcArrow": "arrow", - "srcLabel": "", "dst": "arrow.end.4", "dstArrow": "arrow", - "dstLabel": "", "opacity": 1, "strokeDash": 0, "strokeWidth": 4, @@ -6643,10 +6617,8 @@ "id": "arrow.(start.8 <-> end.8)[0]", "src": "arrow.start.8", "srcArrow": "arrow", - "srcLabel": "", "dst": "arrow.end.8", "dstArrow": "arrow", - "dstLabel": "", "opacity": 1, "strokeDash": 0, "strokeWidth": 8, @@ -6704,10 +6676,8 @@ "id": "arrow.(start.15 <-> end.15)[0]", "src": "arrow.start.15", "srcArrow": "arrow", - "srcLabel": "", "dst": "arrow.end.15", "dstArrow": "arrow", - "dstLabel": "", "opacity": 1, "strokeDash": 0, "strokeWidth": 15, @@ -6765,10 +6735,8 @@ "id": "diamond.(start.1 <-> end.1)[0]", "src": "diamond.start.1", "srcArrow": "diamond", - "srcLabel": "", "dst": "diamond.end.1", "dstArrow": "diamond", - "dstLabel": "", "opacity": 1, "strokeDash": 0, "strokeWidth": 1, @@ -6826,10 +6794,8 @@ "id": "diamond.(start.2 <-> end.2)[0]", "src": "diamond.start.2", "srcArrow": "diamond", - "srcLabel": "", "dst": "diamond.end.2", "dstArrow": "diamond", - "dstLabel": "", "opacity": 1, "strokeDash": 0, "strokeWidth": 2, @@ -6887,10 +6853,8 @@ "id": "diamond.(start.4 <-> end.4)[0]", "src": "diamond.start.4", "srcArrow": "diamond", - "srcLabel": "", "dst": "diamond.end.4", "dstArrow": "diamond", - "dstLabel": "", "opacity": 1, "strokeDash": 0, "strokeWidth": 4, @@ -6948,10 +6912,8 @@ "id": "diamond.(start.8 <-> end.8)[0]", "src": "diamond.start.8", "srcArrow": "diamond", - "srcLabel": "", "dst": "diamond.end.8", "dstArrow": "diamond", - "dstLabel": "", "opacity": 1, "strokeDash": 0, "strokeWidth": 8, @@ -7009,10 +6971,8 @@ "id": "diamond.(start.15 <-> end.15)[0]", "src": "diamond.start.15", "srcArrow": "diamond", - "srcLabel": "", "dst": "diamond.end.15", "dstArrow": "diamond", - "dstLabel": "", "opacity": 1, "strokeDash": 0, "strokeWidth": 15, @@ -7070,10 +7030,8 @@ "id": "filled diamond.(start.1 <-> end.1)[0]", "src": "filled diamond.start.1", "srcArrow": "filled-diamond", - "srcLabel": "", "dst": "filled diamond.end.1", "dstArrow": "filled-diamond", - "dstLabel": "", "opacity": 1, "strokeDash": 0, "strokeWidth": 1, @@ -7131,10 +7089,8 @@ "id": "filled diamond.(start.2 <-> end.2)[0]", "src": "filled diamond.start.2", "srcArrow": "filled-diamond", - "srcLabel": "", "dst": "filled diamond.end.2", "dstArrow": "filled-diamond", - "dstLabel": "", "opacity": 1, "strokeDash": 0, "strokeWidth": 2, @@ -7192,10 +7148,8 @@ "id": "filled diamond.(start.4 <-> end.4)[0]", "src": "filled diamond.start.4", "srcArrow": "filled-diamond", - "srcLabel": "", "dst": "filled diamond.end.4", "dstArrow": "filled-diamond", - "dstLabel": "", "opacity": 1, "strokeDash": 0, "strokeWidth": 4, @@ -7253,10 +7207,8 @@ "id": "filled diamond.(start.8 <-> end.8)[0]", "src": "filled diamond.start.8", "srcArrow": "filled-diamond", - "srcLabel": "", "dst": "filled diamond.end.8", "dstArrow": "filled-diamond", - "dstLabel": "", "opacity": 1, "strokeDash": 0, "strokeWidth": 8, @@ -7314,10 +7266,8 @@ "id": "filled diamond.(start.15 <-> end.15)[0]", "src": "filled diamond.start.15", "srcArrow": "filled-diamond", - "srcLabel": "", "dst": "filled diamond.end.15", "dstArrow": "filled-diamond", - "dstLabel": "", "opacity": 1, "strokeDash": 0, "strokeWidth": 15, @@ -7375,10 +7325,8 @@ "id": "circle.(start.1 <-> end.1)[0]", "src": "circle.start.1", "srcArrow": "circle", - "srcLabel": "", "dst": "circle.end.1", "dstArrow": "circle", - "dstLabel": "", "opacity": 1, "strokeDash": 0, "strokeWidth": 1, @@ -7436,10 +7384,8 @@ "id": "circle.(start.2 <-> end.2)[0]", "src": "circle.start.2", "srcArrow": "circle", - "srcLabel": "", "dst": "circle.end.2", "dstArrow": "circle", - "dstLabel": "", "opacity": 1, "strokeDash": 0, "strokeWidth": 2, @@ -7497,10 +7443,8 @@ "id": "circle.(start.4 <-> end.4)[0]", "src": "circle.start.4", "srcArrow": "circle", - "srcLabel": "", "dst": "circle.end.4", "dstArrow": "circle", - "dstLabel": "", "opacity": 1, "strokeDash": 0, "strokeWidth": 4, @@ -7558,10 +7502,8 @@ "id": "circle.(start.8 <-> end.8)[0]", "src": "circle.start.8", "srcArrow": "circle", - "srcLabel": "", "dst": "circle.end.8", "dstArrow": "circle", - "dstLabel": "", "opacity": 1, "strokeDash": 0, "strokeWidth": 8, @@ -7619,10 +7561,8 @@ "id": "circle.(start.15 <-> end.15)[0]", "src": "circle.start.15", "srcArrow": "circle", - "srcLabel": "", "dst": "circle.end.15", "dstArrow": "circle", - "dstLabel": "", "opacity": 1, "strokeDash": 0, "strokeWidth": 15, @@ -7680,10 +7620,8 @@ "id": "filled circle.(start.1 <-> end.1)[0]", "src": "filled circle.start.1", "srcArrow": "filled-circle", - "srcLabel": "", "dst": "filled circle.end.1", "dstArrow": "filled-circle", - "dstLabel": "", "opacity": 1, "strokeDash": 0, "strokeWidth": 1, @@ -7741,10 +7679,8 @@ "id": "filled circle.(start.2 <-> end.2)[0]", "src": "filled circle.start.2", "srcArrow": "filled-circle", - "srcLabel": "", "dst": "filled circle.end.2", "dstArrow": "filled-circle", - "dstLabel": "", "opacity": 1, "strokeDash": 0, "strokeWidth": 2, @@ -7802,10 +7738,8 @@ "id": "filled circle.(start.4 <-> end.4)[0]", "src": "filled circle.start.4", "srcArrow": "filled-circle", - "srcLabel": "", "dst": "filled circle.end.4", "dstArrow": "filled-circle", - "dstLabel": "", "opacity": 1, "strokeDash": 0, "strokeWidth": 4, @@ -7863,10 +7797,8 @@ "id": "filled circle.(start.8 <-> end.8)[0]", "src": "filled circle.start.8", "srcArrow": "filled-circle", - "srcLabel": "", "dst": "filled circle.end.8", "dstArrow": "filled-circle", - "dstLabel": "", "opacity": 1, "strokeDash": 0, "strokeWidth": 8, @@ -7924,10 +7856,8 @@ "id": "filled circle.(start.15 <-> end.15)[0]", "src": "filled circle.start.15", "srcArrow": "filled-circle", - "srcLabel": "", "dst": "filled circle.end.15", "dstArrow": "filled-circle", - "dstLabel": "", "opacity": 1, "strokeDash": 0, "strokeWidth": 15, @@ -7985,10 +7915,8 @@ "id": "cf one.(start.1 <-> end.1)[0]", "src": "cf one.start.1", "srcArrow": "cf-one", - "srcLabel": "", "dst": "cf one.end.1", "dstArrow": "cf-one", - "dstLabel": "", "opacity": 1, "strokeDash": 0, "strokeWidth": 1, @@ -8046,10 +7974,8 @@ "id": "cf one.(start.2 <-> end.2)[0]", "src": "cf one.start.2", "srcArrow": "cf-one", - "srcLabel": "", "dst": "cf one.end.2", "dstArrow": "cf-one", - "dstLabel": "", "opacity": 1, "strokeDash": 0, "strokeWidth": 2, @@ -8107,10 +8033,8 @@ "id": "cf one.(start.4 <-> end.4)[0]", "src": "cf one.start.4", "srcArrow": "cf-one", - "srcLabel": "", "dst": "cf one.end.4", "dstArrow": "cf-one", - "dstLabel": "", "opacity": 1, "strokeDash": 0, "strokeWidth": 4, @@ -8168,10 +8092,8 @@ "id": "cf one.(start.8 <-> end.8)[0]", "src": "cf one.start.8", "srcArrow": "cf-one", - "srcLabel": "", "dst": "cf one.end.8", "dstArrow": "cf-one", - "dstLabel": "", "opacity": 1, "strokeDash": 0, "strokeWidth": 8, @@ -8229,10 +8151,8 @@ "id": "cf one.(start.15 <-> end.15)[0]", "src": "cf one.start.15", "srcArrow": "cf-one", - "srcLabel": "", "dst": "cf one.end.15", "dstArrow": "cf-one", - "dstLabel": "", "opacity": 1, "strokeDash": 0, "strokeWidth": 15, @@ -8290,10 +8210,8 @@ "id": "cf one required.(start.1 <-> end.1)[0]", "src": "cf one required.start.1", "srcArrow": "cf-one-required", - "srcLabel": "", "dst": "cf one required.end.1", "dstArrow": "cf-one-required", - "dstLabel": "", "opacity": 1, "strokeDash": 0, "strokeWidth": 1, @@ -8351,10 +8269,8 @@ "id": "cf one required.(start.2 <-> end.2)[0]", "src": "cf one required.start.2", "srcArrow": "cf-one-required", - "srcLabel": "", "dst": "cf one required.end.2", "dstArrow": "cf-one-required", - "dstLabel": "", "opacity": 1, "strokeDash": 0, "strokeWidth": 2, @@ -8412,10 +8328,8 @@ "id": "cf one required.(start.4 <-> end.4)[0]", "src": "cf one required.start.4", "srcArrow": "cf-one-required", - "srcLabel": "", "dst": "cf one required.end.4", "dstArrow": "cf-one-required", - "dstLabel": "", "opacity": 1, "strokeDash": 0, "strokeWidth": 4, @@ -8473,10 +8387,8 @@ "id": "cf one required.(start.8 <-> end.8)[0]", "src": "cf one required.start.8", "srcArrow": "cf-one-required", - "srcLabel": "", "dst": "cf one required.end.8", "dstArrow": "cf-one-required", - "dstLabel": "", "opacity": 1, "strokeDash": 0, "strokeWidth": 8, @@ -8534,10 +8446,8 @@ "id": "cf one required.(start.15 <-> end.15)[0]", "src": "cf one required.start.15", "srcArrow": "cf-one-required", - "srcLabel": "", "dst": "cf one required.end.15", "dstArrow": "cf-one-required", - "dstLabel": "", "opacity": 1, "strokeDash": 0, "strokeWidth": 15, @@ -8595,10 +8505,8 @@ "id": "cf many.(start.1 <-> end.1)[0]", "src": "cf many.start.1", "srcArrow": "cf-many", - "srcLabel": "", "dst": "cf many.end.1", "dstArrow": "cf-many", - "dstLabel": "", "opacity": 1, "strokeDash": 0, "strokeWidth": 1, @@ -8656,10 +8564,8 @@ "id": "cf many.(start.2 <-> end.2)[0]", "src": "cf many.start.2", "srcArrow": "cf-many", - "srcLabel": "", "dst": "cf many.end.2", "dstArrow": "cf-many", - "dstLabel": "", "opacity": 1, "strokeDash": 0, "strokeWidth": 2, @@ -8717,10 +8623,8 @@ "id": "cf many.(start.4 <-> end.4)[0]", "src": "cf many.start.4", "srcArrow": "cf-many", - "srcLabel": "", "dst": "cf many.end.4", "dstArrow": "cf-many", - "dstLabel": "", "opacity": 1, "strokeDash": 0, "strokeWidth": 4, @@ -8778,10 +8682,8 @@ "id": "cf many.(start.8 <-> end.8)[0]", "src": "cf many.start.8", "srcArrow": "cf-many", - "srcLabel": "", "dst": "cf many.end.8", "dstArrow": "cf-many", - "dstLabel": "", "opacity": 1, "strokeDash": 0, "strokeWidth": 8, @@ -8839,10 +8741,8 @@ "id": "cf many.(start.15 <-> end.15)[0]", "src": "cf many.start.15", "srcArrow": "cf-many", - "srcLabel": "", "dst": "cf many.end.15", "dstArrow": "cf-many", - "dstLabel": "", "opacity": 1, "strokeDash": 0, "strokeWidth": 15, @@ -8900,10 +8800,8 @@ "id": "cf many required.(start.1 <-> end.1)[0]", "src": "cf many required.start.1", "srcArrow": "cf-many-required", - "srcLabel": "", "dst": "cf many required.end.1", "dstArrow": "cf-many-required", - "dstLabel": "", "opacity": 1, "strokeDash": 0, "strokeWidth": 1, @@ -8961,10 +8859,8 @@ "id": "cf many required.(start.2 <-> end.2)[0]", "src": "cf many required.start.2", "srcArrow": "cf-many-required", - "srcLabel": "", "dst": "cf many required.end.2", "dstArrow": "cf-many-required", - "dstLabel": "", "opacity": 1, "strokeDash": 0, "strokeWidth": 2, @@ -9022,10 +8918,8 @@ "id": "cf many required.(start.4 <-> end.4)[0]", "src": "cf many required.start.4", "srcArrow": "cf-many-required", - "srcLabel": "", "dst": "cf many required.end.4", "dstArrow": "cf-many-required", - "dstLabel": "", "opacity": 1, "strokeDash": 0, "strokeWidth": 4, @@ -9083,10 +8977,8 @@ "id": "cf many required.(start.8 <-> end.8)[0]", "src": "cf many required.start.8", "srcArrow": "cf-many-required", - "srcLabel": "", "dst": "cf many required.end.8", "dstArrow": "cf-many-required", - "dstLabel": "", "opacity": 1, "strokeDash": 0, "strokeWidth": 8, @@ -9144,10 +9036,8 @@ "id": "cf many required.(start.15 <-> end.15)[0]", "src": "cf many required.start.15", "srcArrow": "cf-many-required", - "srcLabel": "", "dst": "cf many required.end.15", "dstArrow": "cf-many-required", - "dstLabel": "", "opacity": 1, "strokeDash": 0, "strokeWidth": 15, diff --git a/e2etests/testdata/stable/arrowhead_scaling/dagre/sketch.exp.svg b/e2etests/testdata/stable/arrowhead_scaling/dagre/sketch.exp.svg index 166c8f2d84..e895b951fb 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-3116738394 .fill-N1{fill:#0A0F25;} + .d2-3116738394 .fill-N2{fill:#676C7E;} + .d2-3116738394 .fill-N3{fill:#9499AB;} + .d2-3116738394 .fill-N4{fill:#CFD2DD;} + .d2-3116738394 .fill-N5{fill:#DEE1EB;} + .d2-3116738394 .fill-N6{fill:#EEF1F8;} + .d2-3116738394 .fill-N7{fill:#FFFFFF;} + .d2-3116738394 .fill-B1{fill:#0D32B2;} + .d2-3116738394 .fill-B2{fill:#0D32B2;} + .d2-3116738394 .fill-B3{fill:#E3E9FD;} + .d2-3116738394 .fill-B4{fill:#E3E9FD;} + .d2-3116738394 .fill-B5{fill:#EDF0FD;} + .d2-3116738394 .fill-B6{fill:#F7F8FE;} + .d2-3116738394 .fill-AA2{fill:#4A6FF3;} + .d2-3116738394 .fill-AA4{fill:#EDF0FD;} + .d2-3116738394 .fill-AA5{fill:#F7F8FE;} + .d2-3116738394 .fill-AB4{fill:#EDF0FD;} + .d2-3116738394 .fill-AB5{fill:#F7F8FE;} + .d2-3116738394 .stroke-N1{stroke:#0A0F25;} + .d2-3116738394 .stroke-N2{stroke:#676C7E;} + .d2-3116738394 .stroke-N3{stroke:#9499AB;} + .d2-3116738394 .stroke-N4{stroke:#CFD2DD;} + .d2-3116738394 .stroke-N5{stroke:#DEE1EB;} + .d2-3116738394 .stroke-N6{stroke:#EEF1F8;} + .d2-3116738394 .stroke-N7{stroke:#FFFFFF;} + .d2-3116738394 .stroke-B1{stroke:#0D32B2;} + .d2-3116738394 .stroke-B2{stroke:#0D32B2;} + .d2-3116738394 .stroke-B3{stroke:#E3E9FD;} + .d2-3116738394 .stroke-B4{stroke:#E3E9FD;} + .d2-3116738394 .stroke-B5{stroke:#EDF0FD;} + .d2-3116738394 .stroke-B6{stroke:#F7F8FE;} + .d2-3116738394 .stroke-AA2{stroke:#4A6FF3;} + .d2-3116738394 .stroke-AA4{stroke:#EDF0FD;} + .d2-3116738394 .stroke-AA5{stroke:#F7F8FE;} + .d2-3116738394 .stroke-AB4{stroke:#EDF0FD;} + .d2-3116738394 .stroke-AB5{stroke:#F7F8FE;} + .d2-3116738394 .background-color-N1{background-color:#0A0F25;} + .d2-3116738394 .background-color-N2{background-color:#676C7E;} + .d2-3116738394 .background-color-N3{background-color:#9499AB;} + .d2-3116738394 .background-color-N4{background-color:#CFD2DD;} + .d2-3116738394 .background-color-N5{background-color:#DEE1EB;} + .d2-3116738394 .background-color-N6{background-color:#EEF1F8;} + .d2-3116738394 .background-color-N7{background-color:#FFFFFF;} + .d2-3116738394 .background-color-B1{background-color:#0D32B2;} + .d2-3116738394 .background-color-B2{background-color:#0D32B2;} + .d2-3116738394 .background-color-B3{background-color:#E3E9FD;} + .d2-3116738394 .background-color-B4{background-color:#E3E9FD;} + .d2-3116738394 .background-color-B5{background-color:#EDF0FD;} + .d2-3116738394 .background-color-B6{background-color:#F7F8FE;} + .d2-3116738394 .background-color-AA2{background-color:#4A6FF3;} + .d2-3116738394 .background-color-AA4{background-color:#EDF0FD;} + .d2-3116738394 .background-color-AA5{background-color:#F7F8FE;} + .d2-3116738394 .background-color-AB4{background-color:#EDF0FD;} + .d2-3116738394 .background-color-AB5{background-color:#F7F8FE;} + .d2-3116738394 .color-N1{color:#0A0F25;} + .d2-3116738394 .color-N2{color:#676C7E;} + .d2-3116738394 .color-N3{color:#9499AB;} + .d2-3116738394 .color-N4{color:#CFD2DD;} + .d2-3116738394 .color-N5{color:#DEE1EB;} + .d2-3116738394 .color-N6{color:#EEF1F8;} + .d2-3116738394 .color-N7{color:#FFFFFF;} + .d2-3116738394 .color-B1{color:#0D32B2;} + .d2-3116738394 .color-B2{color:#0D32B2;} + .d2-3116738394 .color-B3{color:#E3E9FD;} + .d2-3116738394 .color-B4{color:#E3E9FD;} + .d2-3116738394 .color-B5{color:#EDF0FD;} + .d2-3116738394 .color-B6{color:#F7F8FE;} + .d2-3116738394 .color-AA2{color:#4A6FF3;} + .d2-3116738394 .color-AA4{color:#EDF0FD;} + .d2-3116738394 .color-AA5{color:#F7F8FE;} + .d2-3116738394 .color-AB4{color:#EDF0FD;} + .d2-3116738394 .color-AB5{color:#F7F8FE;}.appendix text.text{fill:#0A0F25}.md{--color-fg-default:#0A0F25;--color-fg-muted:#676C7E;--color-fg-subtle:#9499AB;--color-canvas-default:#FFFFFF;--color-canvas-subtle:#EEF1F8;--color-border-default:#0D32B2;--color-border-muted:#0D32B2;--color-neutral-muted:#EEF1F8;--color-accent-fg:#0D32B2;--color-accent-emphasis:#0D32B2;--color-attention-subtle:#676C7E;--color-danger-fg:red;}.sketch-overlay-B1{fill:url(#streaks-darker);mix-blend-mode:lighten}.sketch-overlay-B2{fill:url(#streaks-darker);mix-blend-mode:lighten}.sketch-overlay-B3{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-B4{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-B5{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-B6{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-AA2{fill:url(#streaks-dark);mix-blend-mode:overlay}.sketch-overlay-AA4{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-AA5{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-AB4{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-AB5{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-N1{fill:url(#streaks-darker);mix-blend-mode:lighten}.sketch-overlay-N2{fill:url(#streaks-dark);mix-blend-mode:overlay}.sketch-overlay-N3{fill:url(#streaks-normal);mix-blend-mode:color-burn}.sketch-overlay-N4{fill:url(#streaks-normal);mix-blend-mode:color-burn}.sketch-overlay-N5{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-N6{fill:url(#streaks-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 0419661358..8c66ee4d49 100644 --- a/e2etests/testdata/stable/arrowhead_scaling/elk/board.exp.json +++ b/e2etests/testdata/stable/arrowhead_scaling/elk/board.exp.json @@ -5850,10 +5850,8 @@ "id": "default.(start.1 <-> end.1)[0]", "src": "default.start.1", "srcArrow": "triangle", - "srcLabel": "", "dst": "default.end.1", "dstArrow": "triangle", - "dstLabel": "", "opacity": 1, "strokeDash": 0, "strokeWidth": 1, @@ -5890,10 +5888,8 @@ "id": "default.(start.2 <-> end.2)[0]", "src": "default.start.2", "srcArrow": "triangle", - "srcLabel": "", "dst": "default.end.2", "dstArrow": "triangle", - "dstLabel": "", "opacity": 1, "strokeDash": 0, "strokeWidth": 2, @@ -5930,10 +5926,8 @@ "id": "default.(start.4 <-> end.4)[0]", "src": "default.start.4", "srcArrow": "triangle", - "srcLabel": "", "dst": "default.end.4", "dstArrow": "triangle", - "dstLabel": "", "opacity": 1, "strokeDash": 0, "strokeWidth": 4, @@ -5970,10 +5964,8 @@ "id": "default.(start.8 <-> end.8)[0]", "src": "default.start.8", "srcArrow": "triangle", - "srcLabel": "", "dst": "default.end.8", "dstArrow": "triangle", - "dstLabel": "", "opacity": 1, "strokeDash": 0, "strokeWidth": 8, @@ -6010,10 +6002,8 @@ "id": "default.(start.15 <-> end.15)[0]", "src": "default.start.15", "srcArrow": "triangle", - "srcLabel": "", "dst": "default.end.15", "dstArrow": "triangle", - "dstLabel": "", "opacity": 1, "strokeDash": 0, "strokeWidth": 15, @@ -6050,10 +6040,8 @@ "id": "line.(start.1 -- end.1)[0]", "src": "line.start.1", "srcArrow": "none", - "srcLabel": "", "dst": "line.end.1", "dstArrow": "none", - "dstLabel": "", "opacity": 1, "strokeDash": 0, "strokeWidth": 1, @@ -6090,10 +6078,8 @@ "id": "line.(start.2 -- end.2)[0]", "src": "line.start.2", "srcArrow": "none", - "srcLabel": "", "dst": "line.end.2", "dstArrow": "none", - "dstLabel": "", "opacity": 1, "strokeDash": 0, "strokeWidth": 2, @@ -6130,10 +6116,8 @@ "id": "line.(start.4 -- end.4)[0]", "src": "line.start.4", "srcArrow": "none", - "srcLabel": "", "dst": "line.end.4", "dstArrow": "none", - "dstLabel": "", "opacity": 1, "strokeDash": 0, "strokeWidth": 4, @@ -6170,10 +6154,8 @@ "id": "line.(start.8 -- end.8)[0]", "src": "line.start.8", "srcArrow": "none", - "srcLabel": "", "dst": "line.end.8", "dstArrow": "none", - "dstLabel": "", "opacity": 1, "strokeDash": 0, "strokeWidth": 8, @@ -6210,10 +6192,8 @@ "id": "line.(start.15 -- end.15)[0]", "src": "line.start.15", "srcArrow": "none", - "srcLabel": "", "dst": "line.end.15", "dstArrow": "none", - "dstLabel": "", "opacity": 1, "strokeDash": 0, "strokeWidth": 15, @@ -6250,10 +6230,8 @@ "id": "arrow.(start.1 <-> end.1)[0]", "src": "arrow.start.1", "srcArrow": "arrow", - "srcLabel": "", "dst": "arrow.end.1", "dstArrow": "arrow", - "dstLabel": "", "opacity": 1, "strokeDash": 0, "strokeWidth": 1, @@ -6290,10 +6268,8 @@ "id": "arrow.(start.2 <-> end.2)[0]", "src": "arrow.start.2", "srcArrow": "arrow", - "srcLabel": "", "dst": "arrow.end.2", "dstArrow": "arrow", - "dstLabel": "", "opacity": 1, "strokeDash": 0, "strokeWidth": 2, @@ -6330,10 +6306,8 @@ "id": "arrow.(start.4 <-> end.4)[0]", "src": "arrow.start.4", "srcArrow": "arrow", - "srcLabel": "", "dst": "arrow.end.4", "dstArrow": "arrow", - "dstLabel": "", "opacity": 1, "strokeDash": 0, "strokeWidth": 4, @@ -6370,10 +6344,8 @@ "id": "arrow.(start.8 <-> end.8)[0]", "src": "arrow.start.8", "srcArrow": "arrow", - "srcLabel": "", "dst": "arrow.end.8", "dstArrow": "arrow", - "dstLabel": "", "opacity": 1, "strokeDash": 0, "strokeWidth": 8, @@ -6410,10 +6382,8 @@ "id": "arrow.(start.15 <-> end.15)[0]", "src": "arrow.start.15", "srcArrow": "arrow", - "srcLabel": "", "dst": "arrow.end.15", "dstArrow": "arrow", - "dstLabel": "", "opacity": 1, "strokeDash": 0, "strokeWidth": 15, @@ -6450,10 +6420,8 @@ "id": "diamond.(start.1 <-> end.1)[0]", "src": "diamond.start.1", "srcArrow": "diamond", - "srcLabel": "", "dst": "diamond.end.1", "dstArrow": "diamond", - "dstLabel": "", "opacity": 1, "strokeDash": 0, "strokeWidth": 1, @@ -6490,10 +6458,8 @@ "id": "diamond.(start.2 <-> end.2)[0]", "src": "diamond.start.2", "srcArrow": "diamond", - "srcLabel": "", "dst": "diamond.end.2", "dstArrow": "diamond", - "dstLabel": "", "opacity": 1, "strokeDash": 0, "strokeWidth": 2, @@ -6530,10 +6496,8 @@ "id": "diamond.(start.4 <-> end.4)[0]", "src": "diamond.start.4", "srcArrow": "diamond", - "srcLabel": "", "dst": "diamond.end.4", "dstArrow": "diamond", - "dstLabel": "", "opacity": 1, "strokeDash": 0, "strokeWidth": 4, @@ -6570,10 +6534,8 @@ "id": "diamond.(start.8 <-> end.8)[0]", "src": "diamond.start.8", "srcArrow": "diamond", - "srcLabel": "", "dst": "diamond.end.8", "dstArrow": "diamond", - "dstLabel": "", "opacity": 1, "strokeDash": 0, "strokeWidth": 8, @@ -6610,10 +6572,8 @@ "id": "diamond.(start.15 <-> end.15)[0]", "src": "diamond.start.15", "srcArrow": "diamond", - "srcLabel": "", "dst": "diamond.end.15", "dstArrow": "diamond", - "dstLabel": "", "opacity": 1, "strokeDash": 0, "strokeWidth": 15, @@ -6650,10 +6610,8 @@ "id": "filled diamond.(start.1 <-> end.1)[0]", "src": "filled diamond.start.1", "srcArrow": "filled-diamond", - "srcLabel": "", "dst": "filled diamond.end.1", "dstArrow": "filled-diamond", - "dstLabel": "", "opacity": 1, "strokeDash": 0, "strokeWidth": 1, @@ -6690,10 +6648,8 @@ "id": "filled diamond.(start.2 <-> end.2)[0]", "src": "filled diamond.start.2", "srcArrow": "filled-diamond", - "srcLabel": "", "dst": "filled diamond.end.2", "dstArrow": "filled-diamond", - "dstLabel": "", "opacity": 1, "strokeDash": 0, "strokeWidth": 2, @@ -6730,10 +6686,8 @@ "id": "filled diamond.(start.4 <-> end.4)[0]", "src": "filled diamond.start.4", "srcArrow": "filled-diamond", - "srcLabel": "", "dst": "filled diamond.end.4", "dstArrow": "filled-diamond", - "dstLabel": "", "opacity": 1, "strokeDash": 0, "strokeWidth": 4, @@ -6770,10 +6724,8 @@ "id": "filled diamond.(start.8 <-> end.8)[0]", "src": "filled diamond.start.8", "srcArrow": "filled-diamond", - "srcLabel": "", "dst": "filled diamond.end.8", "dstArrow": "filled-diamond", - "dstLabel": "", "opacity": 1, "strokeDash": 0, "strokeWidth": 8, @@ -6810,10 +6762,8 @@ "id": "filled diamond.(start.15 <-> end.15)[0]", "src": "filled diamond.start.15", "srcArrow": "filled-diamond", - "srcLabel": "", "dst": "filled diamond.end.15", "dstArrow": "filled-diamond", - "dstLabel": "", "opacity": 1, "strokeDash": 0, "strokeWidth": 15, @@ -6850,10 +6800,8 @@ "id": "circle.(start.1 <-> end.1)[0]", "src": "circle.start.1", "srcArrow": "circle", - "srcLabel": "", "dst": "circle.end.1", "dstArrow": "circle", - "dstLabel": "", "opacity": 1, "strokeDash": 0, "strokeWidth": 1, @@ -6890,10 +6838,8 @@ "id": "circle.(start.2 <-> end.2)[0]", "src": "circle.start.2", "srcArrow": "circle", - "srcLabel": "", "dst": "circle.end.2", "dstArrow": "circle", - "dstLabel": "", "opacity": 1, "strokeDash": 0, "strokeWidth": 2, @@ -6930,10 +6876,8 @@ "id": "circle.(start.4 <-> end.4)[0]", "src": "circle.start.4", "srcArrow": "circle", - "srcLabel": "", "dst": "circle.end.4", "dstArrow": "circle", - "dstLabel": "", "opacity": 1, "strokeDash": 0, "strokeWidth": 4, @@ -6970,10 +6914,8 @@ "id": "circle.(start.8 <-> end.8)[0]", "src": "circle.start.8", "srcArrow": "circle", - "srcLabel": "", "dst": "circle.end.8", "dstArrow": "circle", - "dstLabel": "", "opacity": 1, "strokeDash": 0, "strokeWidth": 8, @@ -7010,10 +6952,8 @@ "id": "circle.(start.15 <-> end.15)[0]", "src": "circle.start.15", "srcArrow": "circle", - "srcLabel": "", "dst": "circle.end.15", "dstArrow": "circle", - "dstLabel": "", "opacity": 1, "strokeDash": 0, "strokeWidth": 15, @@ -7050,10 +6990,8 @@ "id": "filled circle.(start.1 <-> end.1)[0]", "src": "filled circle.start.1", "srcArrow": "filled-circle", - "srcLabel": "", "dst": "filled circle.end.1", "dstArrow": "filled-circle", - "dstLabel": "", "opacity": 1, "strokeDash": 0, "strokeWidth": 1, @@ -7090,10 +7028,8 @@ "id": "filled circle.(start.2 <-> end.2)[0]", "src": "filled circle.start.2", "srcArrow": "filled-circle", - "srcLabel": "", "dst": "filled circle.end.2", "dstArrow": "filled-circle", - "dstLabel": "", "opacity": 1, "strokeDash": 0, "strokeWidth": 2, @@ -7130,10 +7066,8 @@ "id": "filled circle.(start.4 <-> end.4)[0]", "src": "filled circle.start.4", "srcArrow": "filled-circle", - "srcLabel": "", "dst": "filled circle.end.4", "dstArrow": "filled-circle", - "dstLabel": "", "opacity": 1, "strokeDash": 0, "strokeWidth": 4, @@ -7170,10 +7104,8 @@ "id": "filled circle.(start.8 <-> end.8)[0]", "src": "filled circle.start.8", "srcArrow": "filled-circle", - "srcLabel": "", "dst": "filled circle.end.8", "dstArrow": "filled-circle", - "dstLabel": "", "opacity": 1, "strokeDash": 0, "strokeWidth": 8, @@ -7210,10 +7142,8 @@ "id": "filled circle.(start.15 <-> end.15)[0]", "src": "filled circle.start.15", "srcArrow": "filled-circle", - "srcLabel": "", "dst": "filled circle.end.15", "dstArrow": "filled-circle", - "dstLabel": "", "opacity": 1, "strokeDash": 0, "strokeWidth": 15, @@ -7250,10 +7180,8 @@ "id": "cf one.(start.1 <-> end.1)[0]", "src": "cf one.start.1", "srcArrow": "cf-one", - "srcLabel": "", "dst": "cf one.end.1", "dstArrow": "cf-one", - "dstLabel": "", "opacity": 1, "strokeDash": 0, "strokeWidth": 1, @@ -7290,10 +7218,8 @@ "id": "cf one.(start.2 <-> end.2)[0]", "src": "cf one.start.2", "srcArrow": "cf-one", - "srcLabel": "", "dst": "cf one.end.2", "dstArrow": "cf-one", - "dstLabel": "", "opacity": 1, "strokeDash": 0, "strokeWidth": 2, @@ -7330,10 +7256,8 @@ "id": "cf one.(start.4 <-> end.4)[0]", "src": "cf one.start.4", "srcArrow": "cf-one", - "srcLabel": "", "dst": "cf one.end.4", "dstArrow": "cf-one", - "dstLabel": "", "opacity": 1, "strokeDash": 0, "strokeWidth": 4, @@ -7370,10 +7294,8 @@ "id": "cf one.(start.8 <-> end.8)[0]", "src": "cf one.start.8", "srcArrow": "cf-one", - "srcLabel": "", "dst": "cf one.end.8", "dstArrow": "cf-one", - "dstLabel": "", "opacity": 1, "strokeDash": 0, "strokeWidth": 8, @@ -7410,10 +7332,8 @@ "id": "cf one.(start.15 <-> end.15)[0]", "src": "cf one.start.15", "srcArrow": "cf-one", - "srcLabel": "", "dst": "cf one.end.15", "dstArrow": "cf-one", - "dstLabel": "", "opacity": 1, "strokeDash": 0, "strokeWidth": 15, @@ -7450,10 +7370,8 @@ "id": "cf one required.(start.1 <-> end.1)[0]", "src": "cf one required.start.1", "srcArrow": "cf-one-required", - "srcLabel": "", "dst": "cf one required.end.1", "dstArrow": "cf-one-required", - "dstLabel": "", "opacity": 1, "strokeDash": 0, "strokeWidth": 1, @@ -7490,10 +7408,8 @@ "id": "cf one required.(start.2 <-> end.2)[0]", "src": "cf one required.start.2", "srcArrow": "cf-one-required", - "srcLabel": "", "dst": "cf one required.end.2", "dstArrow": "cf-one-required", - "dstLabel": "", "opacity": 1, "strokeDash": 0, "strokeWidth": 2, @@ -7530,10 +7446,8 @@ "id": "cf one required.(start.4 <-> end.4)[0]", "src": "cf one required.start.4", "srcArrow": "cf-one-required", - "srcLabel": "", "dst": "cf one required.end.4", "dstArrow": "cf-one-required", - "dstLabel": "", "opacity": 1, "strokeDash": 0, "strokeWidth": 4, @@ -7570,10 +7484,8 @@ "id": "cf one required.(start.8 <-> end.8)[0]", "src": "cf one required.start.8", "srcArrow": "cf-one-required", - "srcLabel": "", "dst": "cf one required.end.8", "dstArrow": "cf-one-required", - "dstLabel": "", "opacity": 1, "strokeDash": 0, "strokeWidth": 8, @@ -7610,10 +7522,8 @@ "id": "cf one required.(start.15 <-> end.15)[0]", "src": "cf one required.start.15", "srcArrow": "cf-one-required", - "srcLabel": "", "dst": "cf one required.end.15", "dstArrow": "cf-one-required", - "dstLabel": "", "opacity": 1, "strokeDash": 0, "strokeWidth": 15, @@ -7650,10 +7560,8 @@ "id": "cf many.(start.1 <-> end.1)[0]", "src": "cf many.start.1", "srcArrow": "cf-many", - "srcLabel": "", "dst": "cf many.end.1", "dstArrow": "cf-many", - "dstLabel": "", "opacity": 1, "strokeDash": 0, "strokeWidth": 1, @@ -7690,10 +7598,8 @@ "id": "cf many.(start.2 <-> end.2)[0]", "src": "cf many.start.2", "srcArrow": "cf-many", - "srcLabel": "", "dst": "cf many.end.2", "dstArrow": "cf-many", - "dstLabel": "", "opacity": 1, "strokeDash": 0, "strokeWidth": 2, @@ -7730,10 +7636,8 @@ "id": "cf many.(start.4 <-> end.4)[0]", "src": "cf many.start.4", "srcArrow": "cf-many", - "srcLabel": "", "dst": "cf many.end.4", "dstArrow": "cf-many", - "dstLabel": "", "opacity": 1, "strokeDash": 0, "strokeWidth": 4, @@ -7770,10 +7674,8 @@ "id": "cf many.(start.8 <-> end.8)[0]", "src": "cf many.start.8", "srcArrow": "cf-many", - "srcLabel": "", "dst": "cf many.end.8", "dstArrow": "cf-many", - "dstLabel": "", "opacity": 1, "strokeDash": 0, "strokeWidth": 8, @@ -7810,10 +7712,8 @@ "id": "cf many.(start.15 <-> end.15)[0]", "src": "cf many.start.15", "srcArrow": "cf-many", - "srcLabel": "", "dst": "cf many.end.15", "dstArrow": "cf-many", - "dstLabel": "", "opacity": 1, "strokeDash": 0, "strokeWidth": 15, @@ -7850,10 +7750,8 @@ "id": "cf many required.(start.1 <-> end.1)[0]", "src": "cf many required.start.1", "srcArrow": "cf-many-required", - "srcLabel": "", "dst": "cf many required.end.1", "dstArrow": "cf-many-required", - "dstLabel": "", "opacity": 1, "strokeDash": 0, "strokeWidth": 1, @@ -7890,10 +7788,8 @@ "id": "cf many required.(start.2 <-> end.2)[0]", "src": "cf many required.start.2", "srcArrow": "cf-many-required", - "srcLabel": "", "dst": "cf many required.end.2", "dstArrow": "cf-many-required", - "dstLabel": "", "opacity": 1, "strokeDash": 0, "strokeWidth": 2, @@ -7930,10 +7826,8 @@ "id": "cf many required.(start.4 <-> end.4)[0]", "src": "cf many required.start.4", "srcArrow": "cf-many-required", - "srcLabel": "", "dst": "cf many required.end.4", "dstArrow": "cf-many-required", - "dstLabel": "", "opacity": 1, "strokeDash": 0, "strokeWidth": 4, @@ -7970,10 +7864,8 @@ "id": "cf many required.(start.8 <-> end.8)[0]", "src": "cf many required.start.8", "srcArrow": "cf-many-required", - "srcLabel": "", "dst": "cf many required.end.8", "dstArrow": "cf-many-required", - "dstLabel": "", "opacity": 1, "strokeDash": 0, "strokeWidth": 8, @@ -8010,10 +7902,8 @@ "id": "cf many required.(start.15 <-> end.15)[0]", "src": "cf many required.start.15", "srcArrow": "cf-many-required", - "srcLabel": "", "dst": "cf many required.end.15", "dstArrow": "cf-many-required", - "dstLabel": "", "opacity": 1, "strokeDash": 0, "strokeWidth": 15, diff --git a/e2etests/testdata/stable/arrowhead_scaling/elk/sketch.exp.svg b/e2etests/testdata/stable/arrowhead_scaling/elk/sketch.exp.svg index f47a7bb423..f2921a037e 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-4172007285 .fill-N1{fill:#0A0F25;} + .d2-4172007285 .fill-N2{fill:#676C7E;} + .d2-4172007285 .fill-N3{fill:#9499AB;} + .d2-4172007285 .fill-N4{fill:#CFD2DD;} + .d2-4172007285 .fill-N5{fill:#DEE1EB;} + .d2-4172007285 .fill-N6{fill:#EEF1F8;} + .d2-4172007285 .fill-N7{fill:#FFFFFF;} + .d2-4172007285 .fill-B1{fill:#0D32B2;} + .d2-4172007285 .fill-B2{fill:#0D32B2;} + .d2-4172007285 .fill-B3{fill:#E3E9FD;} + .d2-4172007285 .fill-B4{fill:#E3E9FD;} + .d2-4172007285 .fill-B5{fill:#EDF0FD;} + .d2-4172007285 .fill-B6{fill:#F7F8FE;} + .d2-4172007285 .fill-AA2{fill:#4A6FF3;} + .d2-4172007285 .fill-AA4{fill:#EDF0FD;} + .d2-4172007285 .fill-AA5{fill:#F7F8FE;} + .d2-4172007285 .fill-AB4{fill:#EDF0FD;} + .d2-4172007285 .fill-AB5{fill:#F7F8FE;} + .d2-4172007285 .stroke-N1{stroke:#0A0F25;} + .d2-4172007285 .stroke-N2{stroke:#676C7E;} + .d2-4172007285 .stroke-N3{stroke:#9499AB;} + .d2-4172007285 .stroke-N4{stroke:#CFD2DD;} + .d2-4172007285 .stroke-N5{stroke:#DEE1EB;} + .d2-4172007285 .stroke-N6{stroke:#EEF1F8;} + .d2-4172007285 .stroke-N7{stroke:#FFFFFF;} + .d2-4172007285 .stroke-B1{stroke:#0D32B2;} + .d2-4172007285 .stroke-B2{stroke:#0D32B2;} + .d2-4172007285 .stroke-B3{stroke:#E3E9FD;} + .d2-4172007285 .stroke-B4{stroke:#E3E9FD;} + .d2-4172007285 .stroke-B5{stroke:#EDF0FD;} + .d2-4172007285 .stroke-B6{stroke:#F7F8FE;} + .d2-4172007285 .stroke-AA2{stroke:#4A6FF3;} + .d2-4172007285 .stroke-AA4{stroke:#EDF0FD;} + .d2-4172007285 .stroke-AA5{stroke:#F7F8FE;} + .d2-4172007285 .stroke-AB4{stroke:#EDF0FD;} + .d2-4172007285 .stroke-AB5{stroke:#F7F8FE;} + .d2-4172007285 .background-color-N1{background-color:#0A0F25;} + .d2-4172007285 .background-color-N2{background-color:#676C7E;} + .d2-4172007285 .background-color-N3{background-color:#9499AB;} + .d2-4172007285 .background-color-N4{background-color:#CFD2DD;} + .d2-4172007285 .background-color-N5{background-color:#DEE1EB;} + .d2-4172007285 .background-color-N6{background-color:#EEF1F8;} + .d2-4172007285 .background-color-N7{background-color:#FFFFFF;} + .d2-4172007285 .background-color-B1{background-color:#0D32B2;} + .d2-4172007285 .background-color-B2{background-color:#0D32B2;} + .d2-4172007285 .background-color-B3{background-color:#E3E9FD;} + .d2-4172007285 .background-color-B4{background-color:#E3E9FD;} + .d2-4172007285 .background-color-B5{background-color:#EDF0FD;} + .d2-4172007285 .background-color-B6{background-color:#F7F8FE;} + .d2-4172007285 .background-color-AA2{background-color:#4A6FF3;} + .d2-4172007285 .background-color-AA4{background-color:#EDF0FD;} + .d2-4172007285 .background-color-AA5{background-color:#F7F8FE;} + .d2-4172007285 .background-color-AB4{background-color:#EDF0FD;} + .d2-4172007285 .background-color-AB5{background-color:#F7F8FE;} + .d2-4172007285 .color-N1{color:#0A0F25;} + .d2-4172007285 .color-N2{color:#676C7E;} + .d2-4172007285 .color-N3{color:#9499AB;} + .d2-4172007285 .color-N4{color:#CFD2DD;} + .d2-4172007285 .color-N5{color:#DEE1EB;} + .d2-4172007285 .color-N6{color:#EEF1F8;} + .d2-4172007285 .color-N7{color:#FFFFFF;} + .d2-4172007285 .color-B1{color:#0D32B2;} + .d2-4172007285 .color-B2{color:#0D32B2;} + .d2-4172007285 .color-B3{color:#E3E9FD;} + .d2-4172007285 .color-B4{color:#E3E9FD;} + .d2-4172007285 .color-B5{color:#EDF0FD;} + .d2-4172007285 .color-B6{color:#F7F8FE;} + .d2-4172007285 .color-AA2{color:#4A6FF3;} + .d2-4172007285 .color-AA4{color:#EDF0FD;} + .d2-4172007285 .color-AA5{color:#F7F8FE;} + .d2-4172007285 .color-AB4{color:#EDF0FD;} + .d2-4172007285 .color-AB5{color:#F7F8FE;}.appendix text.text{fill:#0A0F25}.md{--color-fg-default:#0A0F25;--color-fg-muted:#676C7E;--color-fg-subtle:#9499AB;--color-canvas-default:#FFFFFF;--color-canvas-subtle:#EEF1F8;--color-border-default:#0D32B2;--color-border-muted:#0D32B2;--color-neutral-muted:#EEF1F8;--color-accent-fg:#0D32B2;--color-accent-emphasis:#0D32B2;--color-attention-subtle:#676C7E;--color-danger-fg:red;}.sketch-overlay-B1{fill:url(#streaks-darker);mix-blend-mode:lighten}.sketch-overlay-B2{fill:url(#streaks-darker);mix-blend-mode:lighten}.sketch-overlay-B3{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-B4{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-B5{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-B6{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-AA2{fill:url(#streaks-dark);mix-blend-mode:overlay}.sketch-overlay-AA4{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-AA5{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-AB4{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-AB5{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-N1{fill:url(#streaks-darker);mix-blend-mode:lighten}.sketch-overlay-N2{fill:url(#streaks-dark);mix-blend-mode:overlay}.sketch-overlay-N3{fill:url(#streaks-normal);mix-blend-mode:color-burn}.sketch-overlay-N4{fill:url(#streaks-normal);mix-blend-mode:color-burn}.sketch-overlay-N5{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-N6{fill:url(#streaks-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/binary_tree/dagre/board.exp.json b/e2etests/testdata/stable/binary_tree/dagre/board.exp.json index 45e9b77c3c..e21b6197a7 100644 --- a/e2etests/testdata/stable/binary_tree/dagre/board.exp.json +++ b/e2etests/testdata/stable/binary_tree/dagre/board.exp.json @@ -624,10 +624,8 @@ "id": "(a -> b)[0]", "src": "a", "srcArrow": "none", - "srcLabel": "", "dst": "b", "dstArrow": "triangle", - "dstLabel": "", "opacity": 1, "strokeDash": 0, "strokeWidth": 2, @@ -673,10 +671,8 @@ "id": "(a -> c)[0]", "src": "a", "srcArrow": "none", - "srcLabel": "", "dst": "c", "dstArrow": "triangle", - "dstLabel": "", "opacity": 1, "strokeDash": 0, "strokeWidth": 2, @@ -722,10 +718,8 @@ "id": "(b -> d)[0]", "src": "b", "srcArrow": "none", - "srcLabel": "", "dst": "d", "dstArrow": "triangle", - "dstLabel": "", "opacity": 1, "strokeDash": 0, "strokeWidth": 2, @@ -771,10 +765,8 @@ "id": "(b -> e)[0]", "src": "b", "srcArrow": "none", - "srcLabel": "", "dst": "e", "dstArrow": "triangle", - "dstLabel": "", "opacity": 1, "strokeDash": 0, "strokeWidth": 2, @@ -820,10 +812,8 @@ "id": "(c -> f)[0]", "src": "c", "srcArrow": "none", - "srcLabel": "", "dst": "f", "dstArrow": "triangle", - "dstLabel": "", "opacity": 1, "strokeDash": 0, "strokeWidth": 2, @@ -869,10 +859,8 @@ "id": "(c -> g)[0]", "src": "c", "srcArrow": "none", - "srcLabel": "", "dst": "g", "dstArrow": "triangle", - "dstLabel": "", "opacity": 1, "strokeDash": 0, "strokeWidth": 2, @@ -918,10 +906,8 @@ "id": "(d -> h)[0]", "src": "d", "srcArrow": "none", - "srcLabel": "", "dst": "h", "dstArrow": "triangle", - "dstLabel": "", "opacity": 1, "strokeDash": 0, "strokeWidth": 2, @@ -967,10 +953,8 @@ "id": "(d -> i)[0]", "src": "d", "srcArrow": "none", - "srcLabel": "", "dst": "i", "dstArrow": "triangle", - "dstLabel": "", "opacity": 1, "strokeDash": 0, "strokeWidth": 2, @@ -1016,10 +1000,8 @@ "id": "(e -> j)[0]", "src": "e", "srcArrow": "none", - "srcLabel": "", "dst": "j", "dstArrow": "triangle", - "dstLabel": "", "opacity": 1, "strokeDash": 0, "strokeWidth": 2, @@ -1065,10 +1047,8 @@ "id": "(e -> k)[0]", "src": "e", "srcArrow": "none", - "srcLabel": "", "dst": "k", "dstArrow": "triangle", - "dstLabel": "", "opacity": 1, "strokeDash": 0, "strokeWidth": 2, @@ -1114,10 +1094,8 @@ "id": "(f -> l)[0]", "src": "f", "srcArrow": "none", - "srcLabel": "", "dst": "l", "dstArrow": "triangle", - "dstLabel": "", "opacity": 1, "strokeDash": 0, "strokeWidth": 2, @@ -1163,10 +1141,8 @@ "id": "(f -> m)[0]", "src": "f", "srcArrow": "none", - "srcLabel": "", "dst": "m", "dstArrow": "triangle", - "dstLabel": "", "opacity": 1, "strokeDash": 0, "strokeWidth": 2, @@ -1212,10 +1188,8 @@ "id": "(g -> n)[0]", "src": "g", "srcArrow": "none", - "srcLabel": "", "dst": "n", "dstArrow": "triangle", - "dstLabel": "", "opacity": 1, "strokeDash": 0, "strokeWidth": 2, @@ -1261,10 +1235,8 @@ "id": "(g -> o)[0]", "src": "g", "srcArrow": "none", - "srcLabel": "", "dst": "o", "dstArrow": "triangle", - "dstLabel": "", "opacity": 1, "strokeDash": 0, "strokeWidth": 2, diff --git a/e2etests/testdata/stable/binary_tree/dagre/sketch.exp.svg b/e2etests/testdata/stable/binary_tree/dagre/sketch.exp.svg index 628f51d2d7..f2ed2aab2d 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-3124170068 .fill-N1{fill:#0A0F25;} + .d2-3124170068 .fill-N2{fill:#676C7E;} + .d2-3124170068 .fill-N3{fill:#9499AB;} + .d2-3124170068 .fill-N4{fill:#CFD2DD;} + .d2-3124170068 .fill-N5{fill:#DEE1EB;} + .d2-3124170068 .fill-N6{fill:#EEF1F8;} + .d2-3124170068 .fill-N7{fill:#FFFFFF;} + .d2-3124170068 .fill-B1{fill:#0D32B2;} + .d2-3124170068 .fill-B2{fill:#0D32B2;} + .d2-3124170068 .fill-B3{fill:#E3E9FD;} + .d2-3124170068 .fill-B4{fill:#E3E9FD;} + .d2-3124170068 .fill-B5{fill:#EDF0FD;} + .d2-3124170068 .fill-B6{fill:#F7F8FE;} + .d2-3124170068 .fill-AA2{fill:#4A6FF3;} + .d2-3124170068 .fill-AA4{fill:#EDF0FD;} + .d2-3124170068 .fill-AA5{fill:#F7F8FE;} + .d2-3124170068 .fill-AB4{fill:#EDF0FD;} + .d2-3124170068 .fill-AB5{fill:#F7F8FE;} + .d2-3124170068 .stroke-N1{stroke:#0A0F25;} + .d2-3124170068 .stroke-N2{stroke:#676C7E;} + .d2-3124170068 .stroke-N3{stroke:#9499AB;} + .d2-3124170068 .stroke-N4{stroke:#CFD2DD;} + .d2-3124170068 .stroke-N5{stroke:#DEE1EB;} + .d2-3124170068 .stroke-N6{stroke:#EEF1F8;} + .d2-3124170068 .stroke-N7{stroke:#FFFFFF;} + .d2-3124170068 .stroke-B1{stroke:#0D32B2;} + .d2-3124170068 .stroke-B2{stroke:#0D32B2;} + .d2-3124170068 .stroke-B3{stroke:#E3E9FD;} + .d2-3124170068 .stroke-B4{stroke:#E3E9FD;} + .d2-3124170068 .stroke-B5{stroke:#EDF0FD;} + .d2-3124170068 .stroke-B6{stroke:#F7F8FE;} + .d2-3124170068 .stroke-AA2{stroke:#4A6FF3;} + .d2-3124170068 .stroke-AA4{stroke:#EDF0FD;} + .d2-3124170068 .stroke-AA5{stroke:#F7F8FE;} + .d2-3124170068 .stroke-AB4{stroke:#EDF0FD;} + .d2-3124170068 .stroke-AB5{stroke:#F7F8FE;} + .d2-3124170068 .background-color-N1{background-color:#0A0F25;} + .d2-3124170068 .background-color-N2{background-color:#676C7E;} + .d2-3124170068 .background-color-N3{background-color:#9499AB;} + .d2-3124170068 .background-color-N4{background-color:#CFD2DD;} + .d2-3124170068 .background-color-N5{background-color:#DEE1EB;} + .d2-3124170068 .background-color-N6{background-color:#EEF1F8;} + .d2-3124170068 .background-color-N7{background-color:#FFFFFF;} + .d2-3124170068 .background-color-B1{background-color:#0D32B2;} + .d2-3124170068 .background-color-B2{background-color:#0D32B2;} + .d2-3124170068 .background-color-B3{background-color:#E3E9FD;} + .d2-3124170068 .background-color-B4{background-color:#E3E9FD;} + .d2-3124170068 .background-color-B5{background-color:#EDF0FD;} + .d2-3124170068 .background-color-B6{background-color:#F7F8FE;} + .d2-3124170068 .background-color-AA2{background-color:#4A6FF3;} + .d2-3124170068 .background-color-AA4{background-color:#EDF0FD;} + .d2-3124170068 .background-color-AA5{background-color:#F7F8FE;} + .d2-3124170068 .background-color-AB4{background-color:#EDF0FD;} + .d2-3124170068 .background-color-AB5{background-color:#F7F8FE;} + .d2-3124170068 .color-N1{color:#0A0F25;} + .d2-3124170068 .color-N2{color:#676C7E;} + .d2-3124170068 .color-N3{color:#9499AB;} + .d2-3124170068 .color-N4{color:#CFD2DD;} + .d2-3124170068 .color-N5{color:#DEE1EB;} + .d2-3124170068 .color-N6{color:#EEF1F8;} + .d2-3124170068 .color-N7{color:#FFFFFF;} + .d2-3124170068 .color-B1{color:#0D32B2;} + .d2-3124170068 .color-B2{color:#0D32B2;} + .d2-3124170068 .color-B3{color:#E3E9FD;} + .d2-3124170068 .color-B4{color:#E3E9FD;} + .d2-3124170068 .color-B5{color:#EDF0FD;} + .d2-3124170068 .color-B6{color:#F7F8FE;} + .d2-3124170068 .color-AA2{color:#4A6FF3;} + .d2-3124170068 .color-AA4{color:#EDF0FD;} + .d2-3124170068 .color-AA5{color:#F7F8FE;} + .d2-3124170068 .color-AB4{color:#EDF0FD;} + .d2-3124170068 .color-AB5{color:#F7F8FE;}.appendix text.text{fill:#0A0F25}.md{--color-fg-default:#0A0F25;--color-fg-muted:#676C7E;--color-fg-subtle:#9499AB;--color-canvas-default:#FFFFFF;--color-canvas-subtle:#EEF1F8;--color-border-default:#0D32B2;--color-border-muted:#0D32B2;--color-neutral-muted:#EEF1F8;--color-accent-fg:#0D32B2;--color-accent-emphasis:#0D32B2;--color-attention-subtle:#676C7E;--color-danger-fg:red;}.sketch-overlay-B1{fill:url(#streaks-darker);mix-blend-mode:lighten}.sketch-overlay-B2{fill:url(#streaks-darker);mix-blend-mode:lighten}.sketch-overlay-B3{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-B4{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-B5{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-B6{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-AA2{fill:url(#streaks-dark);mix-blend-mode:overlay}.sketch-overlay-AA4{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-AA5{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-AB4{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-AB5{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-N1{fill:url(#streaks-darker);mix-blend-mode:lighten}.sketch-overlay-N2{fill:url(#streaks-dark);mix-blend-mode:overlay}.sketch-overlay-N3{fill:url(#streaks-normal);mix-blend-mode:color-burn}.sketch-overlay-N4{fill:url(#streaks-normal);mix-blend-mode:color-burn}.sketch-overlay-N5{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-N6{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-N7{fill:url(#streaks-bright);mix-blend-mode:darken}.light-code{display: block}.dark-code{display: none}]]>abcdefghijklmno \ No newline at end of file diff --git a/e2etests/testdata/stable/binary_tree/elk/board.exp.json b/e2etests/testdata/stable/binary_tree/elk/board.exp.json index 9bc34da8f6..7b37c0de83 100644 --- a/e2etests/testdata/stable/binary_tree/elk/board.exp.json +++ b/e2etests/testdata/stable/binary_tree/elk/board.exp.json @@ -624,10 +624,8 @@ "id": "(a -> b)[0]", "src": "a", "srcArrow": "none", - "srcLabel": "", "dst": "b", "dstArrow": "triangle", - "dstLabel": "", "opacity": 1, "strokeDash": 0, "strokeWidth": 2, @@ -672,10 +670,8 @@ "id": "(a -> c)[0]", "src": "a", "srcArrow": "none", - "srcLabel": "", "dst": "c", "dstArrow": "triangle", - "dstLabel": "", "opacity": 1, "strokeDash": 0, "strokeWidth": 2, @@ -720,10 +716,8 @@ "id": "(b -> d)[0]", "src": "b", "srcArrow": "none", - "srcLabel": "", "dst": "d", "dstArrow": "triangle", - "dstLabel": "", "opacity": 1, "strokeDash": 0, "strokeWidth": 2, @@ -768,10 +762,8 @@ "id": "(b -> e)[0]", "src": "b", "srcArrow": "none", - "srcLabel": "", "dst": "e", "dstArrow": "triangle", - "dstLabel": "", "opacity": 1, "strokeDash": 0, "strokeWidth": 2, @@ -816,10 +808,8 @@ "id": "(c -> f)[0]", "src": "c", "srcArrow": "none", - "srcLabel": "", "dst": "f", "dstArrow": "triangle", - "dstLabel": "", "opacity": 1, "strokeDash": 0, "strokeWidth": 2, @@ -864,10 +854,8 @@ "id": "(c -> g)[0]", "src": "c", "srcArrow": "none", - "srcLabel": "", "dst": "g", "dstArrow": "triangle", - "dstLabel": "", "opacity": 1, "strokeDash": 0, "strokeWidth": 2, @@ -912,10 +900,8 @@ "id": "(d -> h)[0]", "src": "d", "srcArrow": "none", - "srcLabel": "", "dst": "h", "dstArrow": "triangle", - "dstLabel": "", "opacity": 1, "strokeDash": 0, "strokeWidth": 2, @@ -960,10 +946,8 @@ "id": "(d -> i)[0]", "src": "d", "srcArrow": "none", - "srcLabel": "", "dst": "i", "dstArrow": "triangle", - "dstLabel": "", "opacity": 1, "strokeDash": 0, "strokeWidth": 2, @@ -1008,10 +992,8 @@ "id": "(e -> j)[0]", "src": "e", "srcArrow": "none", - "srcLabel": "", "dst": "j", "dstArrow": "triangle", - "dstLabel": "", "opacity": 1, "strokeDash": 0, "strokeWidth": 2, @@ -1056,10 +1038,8 @@ "id": "(e -> k)[0]", "src": "e", "srcArrow": "none", - "srcLabel": "", "dst": "k", "dstArrow": "triangle", - "dstLabel": "", "opacity": 1, "strokeDash": 0, "strokeWidth": 2, @@ -1104,10 +1084,8 @@ "id": "(f -> l)[0]", "src": "f", "srcArrow": "none", - "srcLabel": "", "dst": "l", "dstArrow": "triangle", - "dstLabel": "", "opacity": 1, "strokeDash": 0, "strokeWidth": 2, @@ -1152,10 +1130,8 @@ "id": "(f -> m)[0]", "src": "f", "srcArrow": "none", - "srcLabel": "", "dst": "m", "dstArrow": "triangle", - "dstLabel": "", "opacity": 1, "strokeDash": 0, "strokeWidth": 2, @@ -1200,10 +1176,8 @@ "id": "(g -> n)[0]", "src": "g", "srcArrow": "none", - "srcLabel": "", "dst": "n", "dstArrow": "triangle", - "dstLabel": "", "opacity": 1, "strokeDash": 0, "strokeWidth": 2, @@ -1248,10 +1222,8 @@ "id": "(g -> o)[0]", "src": "g", "srcArrow": "none", - "srcLabel": "", "dst": "o", "dstArrow": "triangle", - "dstLabel": "", "opacity": 1, "strokeDash": 0, "strokeWidth": 2, diff --git a/e2etests/testdata/stable/binary_tree/elk/sketch.exp.svg b/e2etests/testdata/stable/binary_tree/elk/sketch.exp.svg index 0e3e62064e..b6d49e399d 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-2293169809 .fill-N1{fill:#0A0F25;} + .d2-2293169809 .fill-N2{fill:#676C7E;} + .d2-2293169809 .fill-N3{fill:#9499AB;} + .d2-2293169809 .fill-N4{fill:#CFD2DD;} + .d2-2293169809 .fill-N5{fill:#DEE1EB;} + .d2-2293169809 .fill-N6{fill:#EEF1F8;} + .d2-2293169809 .fill-N7{fill:#FFFFFF;} + .d2-2293169809 .fill-B1{fill:#0D32B2;} + .d2-2293169809 .fill-B2{fill:#0D32B2;} + .d2-2293169809 .fill-B3{fill:#E3E9FD;} + .d2-2293169809 .fill-B4{fill:#E3E9FD;} + .d2-2293169809 .fill-B5{fill:#EDF0FD;} + .d2-2293169809 .fill-B6{fill:#F7F8FE;} + .d2-2293169809 .fill-AA2{fill:#4A6FF3;} + .d2-2293169809 .fill-AA4{fill:#EDF0FD;} + .d2-2293169809 .fill-AA5{fill:#F7F8FE;} + .d2-2293169809 .fill-AB4{fill:#EDF0FD;} + .d2-2293169809 .fill-AB5{fill:#F7F8FE;} + .d2-2293169809 .stroke-N1{stroke:#0A0F25;} + .d2-2293169809 .stroke-N2{stroke:#676C7E;} + .d2-2293169809 .stroke-N3{stroke:#9499AB;} + .d2-2293169809 .stroke-N4{stroke:#CFD2DD;} + .d2-2293169809 .stroke-N5{stroke:#DEE1EB;} + .d2-2293169809 .stroke-N6{stroke:#EEF1F8;} + .d2-2293169809 .stroke-N7{stroke:#FFFFFF;} + .d2-2293169809 .stroke-B1{stroke:#0D32B2;} + .d2-2293169809 .stroke-B2{stroke:#0D32B2;} + .d2-2293169809 .stroke-B3{stroke:#E3E9FD;} + .d2-2293169809 .stroke-B4{stroke:#E3E9FD;} + .d2-2293169809 .stroke-B5{stroke:#EDF0FD;} + .d2-2293169809 .stroke-B6{stroke:#F7F8FE;} + .d2-2293169809 .stroke-AA2{stroke:#4A6FF3;} + .d2-2293169809 .stroke-AA4{stroke:#EDF0FD;} + .d2-2293169809 .stroke-AA5{stroke:#F7F8FE;} + .d2-2293169809 .stroke-AB4{stroke:#EDF0FD;} + .d2-2293169809 .stroke-AB5{stroke:#F7F8FE;} + .d2-2293169809 .background-color-N1{background-color:#0A0F25;} + .d2-2293169809 .background-color-N2{background-color:#676C7E;} + .d2-2293169809 .background-color-N3{background-color:#9499AB;} + .d2-2293169809 .background-color-N4{background-color:#CFD2DD;} + .d2-2293169809 .background-color-N5{background-color:#DEE1EB;} + .d2-2293169809 .background-color-N6{background-color:#EEF1F8;} + .d2-2293169809 .background-color-N7{background-color:#FFFFFF;} + .d2-2293169809 .background-color-B1{background-color:#0D32B2;} + .d2-2293169809 .background-color-B2{background-color:#0D32B2;} + .d2-2293169809 .background-color-B3{background-color:#E3E9FD;} + .d2-2293169809 .background-color-B4{background-color:#E3E9FD;} + .d2-2293169809 .background-color-B5{background-color:#EDF0FD;} + .d2-2293169809 .background-color-B6{background-color:#F7F8FE;} + .d2-2293169809 .background-color-AA2{background-color:#4A6FF3;} + .d2-2293169809 .background-color-AA4{background-color:#EDF0FD;} + .d2-2293169809 .background-color-AA5{background-color:#F7F8FE;} + .d2-2293169809 .background-color-AB4{background-color:#EDF0FD;} + .d2-2293169809 .background-color-AB5{background-color:#F7F8FE;} + .d2-2293169809 .color-N1{color:#0A0F25;} + .d2-2293169809 .color-N2{color:#676C7E;} + .d2-2293169809 .color-N3{color:#9499AB;} + .d2-2293169809 .color-N4{color:#CFD2DD;} + .d2-2293169809 .color-N5{color:#DEE1EB;} + .d2-2293169809 .color-N6{color:#EEF1F8;} + .d2-2293169809 .color-N7{color:#FFFFFF;} + .d2-2293169809 .color-B1{color:#0D32B2;} + .d2-2293169809 .color-B2{color:#0D32B2;} + .d2-2293169809 .color-B3{color:#E3E9FD;} + .d2-2293169809 .color-B4{color:#E3E9FD;} + .d2-2293169809 .color-B5{color:#EDF0FD;} + .d2-2293169809 .color-B6{color:#F7F8FE;} + .d2-2293169809 .color-AA2{color:#4A6FF3;} + .d2-2293169809 .color-AA4{color:#EDF0FD;} + .d2-2293169809 .color-AA5{color:#F7F8FE;} + .d2-2293169809 .color-AB4{color:#EDF0FD;} + .d2-2293169809 .color-AB5{color:#F7F8FE;}.appendix text.text{fill:#0A0F25}.md{--color-fg-default:#0A0F25;--color-fg-muted:#676C7E;--color-fg-subtle:#9499AB;--color-canvas-default:#FFFFFF;--color-canvas-subtle:#EEF1F8;--color-border-default:#0D32B2;--color-border-muted:#0D32B2;--color-neutral-muted:#EEF1F8;--color-accent-fg:#0D32B2;--color-accent-emphasis:#0D32B2;--color-attention-subtle:#676C7E;--color-danger-fg:red;}.sketch-overlay-B1{fill:url(#streaks-darker);mix-blend-mode:lighten}.sketch-overlay-B2{fill:url(#streaks-darker);mix-blend-mode:lighten}.sketch-overlay-B3{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-B4{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-B5{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-B6{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-AA2{fill:url(#streaks-dark);mix-blend-mode:overlay}.sketch-overlay-AA4{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-AA5{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-AB4{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-AB5{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-N1{fill:url(#streaks-darker);mix-blend-mode:lighten}.sketch-overlay-N2{fill:url(#streaks-dark);mix-blend-mode:overlay}.sketch-overlay-N3{fill:url(#streaks-normal);mix-blend-mode:color-burn}.sketch-overlay-N4{fill:url(#streaks-normal);mix-blend-mode:color-burn}.sketch-overlay-N5{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-N6{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-N7{fill:url(#streaks-bright);mix-blend-mode:darken}.light-code{display: block}.dark-code{display: none}]]>abcdefghijklmno \ No newline at end of file diff --git a/e2etests/testdata/stable/chaos2/dagre/board.exp.json b/e2etests/testdata/stable/chaos2/dagre/board.exp.json index 216ed84abf..943336d6c2 100644 --- a/e2etests/testdata/stable/chaos2/dagre/board.exp.json +++ b/e2etests/testdata/stable/chaos2/dagre/board.exp.json @@ -621,10 +621,8 @@ "id": "aa.bb.cc.(dd.ee -- gg)[0]", "src": "aa.bb.cc.dd.ee", "srcArrow": "none", - "srcLabel": "", "dst": "aa.bb.cc.gg", "dstArrow": "none", - "dstLabel": "", "opacity": 1, "strokeDash": 0, "strokeWidth": 2, @@ -670,10 +668,8 @@ "id": "aa.bb.cc.(gg -- hh)[0]", "src": "aa.bb.cc.gg", "srcArrow": "none", - "srcLabel": "", "dst": "aa.bb.cc.hh", "dstArrow": "none", - "dstLabel": "", "opacity": 1, "strokeDash": 0, "strokeWidth": 2, @@ -719,10 +715,8 @@ "id": "aa.bb.(ii -> cc.dd)[0]", "src": "aa.bb.ii", "srcArrow": "none", - "srcLabel": "", "dst": "aa.bb.cc.dd", "dstArrow": "triangle", - "dstLabel": "", "opacity": 1, "strokeDash": 0, "strokeWidth": 2, @@ -792,10 +786,8 @@ "id": "aa.(ll <-> bb)[0]", "src": "aa.ll", "srcArrow": "triangle", - "srcLabel": "", "dst": "aa.bb", "dstArrow": "triangle", - "dstLabel": "", "opacity": 1, "strokeDash": 0, "strokeWidth": 2, @@ -832,10 +824,8 @@ "id": "aa.(mm -> bb.cc)[0]", "src": "aa.mm", "srcArrow": "none", - "srcLabel": "", "dst": "aa.bb.cc", "dstArrow": "triangle", - "dstLabel": "", "opacity": 1, "strokeDash": 0, "strokeWidth": 2, @@ -881,10 +871,8 @@ "id": "aa.(mm -> ll)[0]", "src": "aa.mm", "srcArrow": "none", - "srcLabel": "", "dst": "aa.ll", "dstArrow": "triangle", - "dstLabel": "", "opacity": 1, "strokeDash": 0, "strokeWidth": 2, @@ -942,10 +930,8 @@ "id": "aa.(mm <-> bb)[0]", "src": "aa.mm", "srcArrow": "triangle", - "srcLabel": "", "dst": "aa.bb", "dstArrow": "triangle", - "dstLabel": "", "opacity": 1, "strokeDash": 0, "strokeWidth": 2, @@ -982,10 +968,8 @@ "id": "aa.(ll <-> bb.cc.gg)[0]", "src": "aa.ll", "srcArrow": "triangle", - "srcLabel": "", "dst": "aa.bb.cc.gg", "dstArrow": "triangle", - "dstLabel": "", "opacity": 1, "strokeDash": 0, "strokeWidth": 2, @@ -1031,10 +1015,8 @@ "id": "aa.(mm <- bb.ii)[0]", "src": "aa.mm", "srcArrow": "triangle", - "srcLabel": "", "dst": "aa.bb.ii", "dstArrow": "none", - "dstLabel": "", "opacity": 1, "strokeDash": 0, "strokeWidth": 2, @@ -1080,10 +1062,8 @@ "id": "aa.(bb.cc <- ll)[0]", "src": "aa.bb.cc", "srcArrow": "triangle", - "srcLabel": "", "dst": "aa.ll", "dstArrow": "none", - "dstLabel": "", "opacity": 1, "strokeDash": 0, "strokeWidth": 2, @@ -1120,10 +1100,8 @@ "id": "aa.(bb.ii <-> ll)[0]", "src": "aa.bb.ii", "srcArrow": "triangle", - "srcLabel": "", "dst": "aa.ll", "dstArrow": "triangle", - "dstLabel": "", "opacity": 1, "strokeDash": 0, "strokeWidth": 2, diff --git a/e2etests/testdata/stable/chaos2/dagre/sketch.exp.svg b/e2etests/testdata/stable/chaos2/dagre/sketch.exp.svg index 61a8378717..999bfbf2c6 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 a69250f7f3..dc633b86eb 100644 --- a/e2etests/testdata/stable/chaos2/elk/board.exp.json +++ b/e2etests/testdata/stable/chaos2/elk/board.exp.json @@ -621,10 +621,8 @@ "id": "aa.bb.cc.(dd.ee -- gg)[0]", "src": "aa.bb.cc.dd.ee", "srcArrow": "none", - "srcLabel": "", "dst": "aa.bb.cc.gg", "dstArrow": "none", - "dstLabel": "", "opacity": 1, "strokeDash": 0, "strokeWidth": 2, @@ -669,10 +667,8 @@ "id": "aa.bb.cc.(gg -- hh)[0]", "src": "aa.bb.cc.gg", "srcArrow": "none", - "srcLabel": "", "dst": "aa.bb.cc.hh", "dstArrow": "none", - "dstLabel": "", "opacity": 1, "strokeDash": 0, "strokeWidth": 2, @@ -709,10 +705,8 @@ "id": "aa.bb.(ii -> cc.dd)[0]", "src": "aa.bb.ii", "srcArrow": "none", - "srcLabel": "", "dst": "aa.bb.cc.dd", "dstArrow": "triangle", - "dstLabel": "", "opacity": 1, "strokeDash": 0, "strokeWidth": 2, @@ -757,10 +751,8 @@ "id": "aa.(ll <-> bb)[0]", "src": "aa.ll", "srcArrow": "triangle", - "srcLabel": "", "dst": "aa.bb", "dstArrow": "triangle", - "dstLabel": "", "opacity": 1, "strokeDash": 0, "strokeWidth": 2, @@ -805,10 +797,8 @@ "id": "aa.(mm -> bb.cc)[0]", "src": "aa.mm", "srcArrow": "none", - "srcLabel": "", "dst": "aa.bb.cc", "dstArrow": "triangle", - "dstLabel": "", "opacity": 1, "strokeDash": 0, "strokeWidth": 2, @@ -853,10 +843,8 @@ "id": "aa.(mm -> ll)[0]", "src": "aa.mm", "srcArrow": "none", - "srcLabel": "", "dst": "aa.ll", "dstArrow": "triangle", - "dstLabel": "", "opacity": 1, "strokeDash": 0, "strokeWidth": 2, @@ -901,10 +889,8 @@ "id": "aa.(mm <-> bb)[0]", "src": "aa.mm", "srcArrow": "triangle", - "srcLabel": "", "dst": "aa.bb", "dstArrow": "triangle", - "dstLabel": "", "opacity": 1, "strokeDash": 0, "strokeWidth": 2, @@ -941,10 +927,8 @@ "id": "aa.(ll <-> bb.cc.gg)[0]", "src": "aa.ll", "srcArrow": "triangle", - "srcLabel": "", "dst": "aa.bb.cc.gg", "dstArrow": "triangle", - "dstLabel": "", "opacity": 1, "strokeDash": 0, "strokeWidth": 2, @@ -997,10 +981,8 @@ "id": "aa.(mm <- bb.ii)[0]", "src": "aa.mm", "srcArrow": "triangle", - "srcLabel": "", "dst": "aa.bb.ii", "dstArrow": "none", - "dstLabel": "", "opacity": 1, "strokeDash": 0, "strokeWidth": 2, @@ -1045,10 +1027,8 @@ "id": "aa.(bb.cc <- ll)[0]", "src": "aa.bb.cc", "srcArrow": "triangle", - "srcLabel": "", "dst": "aa.ll", "dstArrow": "none", - "dstLabel": "", "opacity": 1, "strokeDash": 0, "strokeWidth": 2, @@ -1101,10 +1081,8 @@ "id": "aa.(bb.ii <-> ll)[0]", "src": "aa.bb.ii", "srcArrow": "triangle", - "srcLabel": "", "dst": "aa.ll", "dstArrow": "triangle", - "dstLabel": "", "opacity": 1, "strokeDash": 0, "strokeWidth": 2, diff --git a/e2etests/testdata/stable/chaos2/elk/sketch.exp.svg b/e2etests/testdata/stable/chaos2/elk/sketch.exp.svg index 728abd73ef..a9690b0b95 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 478dfdcadd..9e8f9a48be 100644 --- a/e2etests/testdata/stable/circle_arrowhead/dagre/board.exp.json +++ b/e2etests/testdata/stable/circle_arrowhead/dagre/board.exp.json @@ -173,10 +173,8 @@ "id": "(a <-> b)[0]", "src": "a", "srcArrow": "circle", - "srcLabel": "", "dst": "b", "dstArrow": "circle", - "dstLabel": "", "opacity": 1, "strokeDash": 0, "strokeWidth": 2, @@ -222,10 +220,8 @@ "id": "(c <-> d)[0]", "src": "c", "srcArrow": "filled-circle", - "srcLabel": "", "dst": "d", "dstArrow": "filled-circle", - "dstLabel": "", "opacity": 1, "strokeDash": 0, "strokeWidth": 2, diff --git a/e2etests/testdata/stable/circle_arrowhead/dagre/sketch.exp.svg b/e2etests/testdata/stable/circle_arrowhead/dagre/sketch.exp.svg index c055daaa43..96bfada288 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-3737538084 .fill-N1{fill:#0A0F25;} + .d2-3737538084 .fill-N2{fill:#676C7E;} + .d2-3737538084 .fill-N3{fill:#9499AB;} + .d2-3737538084 .fill-N4{fill:#CFD2DD;} + .d2-3737538084 .fill-N5{fill:#DEE1EB;} + .d2-3737538084 .fill-N6{fill:#EEF1F8;} + .d2-3737538084 .fill-N7{fill:#FFFFFF;} + .d2-3737538084 .fill-B1{fill:#0D32B2;} + .d2-3737538084 .fill-B2{fill:#0D32B2;} + .d2-3737538084 .fill-B3{fill:#E3E9FD;} + .d2-3737538084 .fill-B4{fill:#E3E9FD;} + .d2-3737538084 .fill-B5{fill:#EDF0FD;} + .d2-3737538084 .fill-B6{fill:#F7F8FE;} + .d2-3737538084 .fill-AA2{fill:#4A6FF3;} + .d2-3737538084 .fill-AA4{fill:#EDF0FD;} + .d2-3737538084 .fill-AA5{fill:#F7F8FE;} + .d2-3737538084 .fill-AB4{fill:#EDF0FD;} + .d2-3737538084 .fill-AB5{fill:#F7F8FE;} + .d2-3737538084 .stroke-N1{stroke:#0A0F25;} + .d2-3737538084 .stroke-N2{stroke:#676C7E;} + .d2-3737538084 .stroke-N3{stroke:#9499AB;} + .d2-3737538084 .stroke-N4{stroke:#CFD2DD;} + .d2-3737538084 .stroke-N5{stroke:#DEE1EB;} + .d2-3737538084 .stroke-N6{stroke:#EEF1F8;} + .d2-3737538084 .stroke-N7{stroke:#FFFFFF;} + .d2-3737538084 .stroke-B1{stroke:#0D32B2;} + .d2-3737538084 .stroke-B2{stroke:#0D32B2;} + .d2-3737538084 .stroke-B3{stroke:#E3E9FD;} + .d2-3737538084 .stroke-B4{stroke:#E3E9FD;} + .d2-3737538084 .stroke-B5{stroke:#EDF0FD;} + .d2-3737538084 .stroke-B6{stroke:#F7F8FE;} + .d2-3737538084 .stroke-AA2{stroke:#4A6FF3;} + .d2-3737538084 .stroke-AA4{stroke:#EDF0FD;} + .d2-3737538084 .stroke-AA5{stroke:#F7F8FE;} + .d2-3737538084 .stroke-AB4{stroke:#EDF0FD;} + .d2-3737538084 .stroke-AB5{stroke:#F7F8FE;} + .d2-3737538084 .background-color-N1{background-color:#0A0F25;} + .d2-3737538084 .background-color-N2{background-color:#676C7E;} + .d2-3737538084 .background-color-N3{background-color:#9499AB;} + .d2-3737538084 .background-color-N4{background-color:#CFD2DD;} + .d2-3737538084 .background-color-N5{background-color:#DEE1EB;} + .d2-3737538084 .background-color-N6{background-color:#EEF1F8;} + .d2-3737538084 .background-color-N7{background-color:#FFFFFF;} + .d2-3737538084 .background-color-B1{background-color:#0D32B2;} + .d2-3737538084 .background-color-B2{background-color:#0D32B2;} + .d2-3737538084 .background-color-B3{background-color:#E3E9FD;} + .d2-3737538084 .background-color-B4{background-color:#E3E9FD;} + .d2-3737538084 .background-color-B5{background-color:#EDF0FD;} + .d2-3737538084 .background-color-B6{background-color:#F7F8FE;} + .d2-3737538084 .background-color-AA2{background-color:#4A6FF3;} + .d2-3737538084 .background-color-AA4{background-color:#EDF0FD;} + .d2-3737538084 .background-color-AA5{background-color:#F7F8FE;} + .d2-3737538084 .background-color-AB4{background-color:#EDF0FD;} + .d2-3737538084 .background-color-AB5{background-color:#F7F8FE;} + .d2-3737538084 .color-N1{color:#0A0F25;} + .d2-3737538084 .color-N2{color:#676C7E;} + .d2-3737538084 .color-N3{color:#9499AB;} + .d2-3737538084 .color-N4{color:#CFD2DD;} + .d2-3737538084 .color-N5{color:#DEE1EB;} + .d2-3737538084 .color-N6{color:#EEF1F8;} + .d2-3737538084 .color-N7{color:#FFFFFF;} + .d2-3737538084 .color-B1{color:#0D32B2;} + .d2-3737538084 .color-B2{color:#0D32B2;} + .d2-3737538084 .color-B3{color:#E3E9FD;} + .d2-3737538084 .color-B4{color:#E3E9FD;} + .d2-3737538084 .color-B5{color:#EDF0FD;} + .d2-3737538084 .color-B6{color:#F7F8FE;} + .d2-3737538084 .color-AA2{color:#4A6FF3;} + .d2-3737538084 .color-AA4{color:#EDF0FD;} + .d2-3737538084 .color-AA5{color:#F7F8FE;} + .d2-3737538084 .color-AB4{color:#EDF0FD;} + .d2-3737538084 .color-AB5{color:#F7F8FE;}.appendix text.text{fill:#0A0F25}.md{--color-fg-default:#0A0F25;--color-fg-muted:#676C7E;--color-fg-subtle:#9499AB;--color-canvas-default:#FFFFFF;--color-canvas-subtle:#EEF1F8;--color-border-default:#0D32B2;--color-border-muted:#0D32B2;--color-neutral-muted:#EEF1F8;--color-accent-fg:#0D32B2;--color-accent-emphasis:#0D32B2;--color-attention-subtle:#676C7E;--color-danger-fg:red;}.sketch-overlay-B1{fill:url(#streaks-darker);mix-blend-mode:lighten}.sketch-overlay-B2{fill:url(#streaks-darker);mix-blend-mode:lighten}.sketch-overlay-B3{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-B4{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-B5{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-B6{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-AA2{fill:url(#streaks-dark);mix-blend-mode:overlay}.sketch-overlay-AA4{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-AA5{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-AB4{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-AB5{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-N1{fill:url(#streaks-darker);mix-blend-mode:lighten}.sketch-overlay-N2{fill:url(#streaks-dark);mix-blend-mode:overlay}.sketch-overlay-N3{fill:url(#streaks-normal);mix-blend-mode:color-burn}.sketch-overlay-N4{fill:url(#streaks-normal);mix-blend-mode:color-burn}.sketch-overlay-N5{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-N6{fill:url(#streaks-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 396c3b5505..58861b443b 100644 --- a/e2etests/testdata/stable/circle_arrowhead/elk/board.exp.json +++ b/e2etests/testdata/stable/circle_arrowhead/elk/board.exp.json @@ -173,10 +173,8 @@ "id": "(a <-> b)[0]", "src": "a", "srcArrow": "circle", - "srcLabel": "", "dst": "b", "dstArrow": "circle", - "dstLabel": "", "opacity": 1, "strokeDash": 0, "strokeWidth": 2, @@ -213,10 +211,8 @@ "id": "(c <-> d)[0]", "src": "c", "srcArrow": "filled-circle", - "srcLabel": "", "dst": "d", "dstArrow": "filled-circle", - "dstLabel": "", "opacity": 1, "strokeDash": 0, "strokeWidth": 2, diff --git a/e2etests/testdata/stable/circle_arrowhead/elk/sketch.exp.svg b/e2etests/testdata/stable/circle_arrowhead/elk/sketch.exp.svg index 8de2668f45..129a9b2190 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-3524757177 .fill-N1{fill:#0A0F25;} + .d2-3524757177 .fill-N2{fill:#676C7E;} + .d2-3524757177 .fill-N3{fill:#9499AB;} + .d2-3524757177 .fill-N4{fill:#CFD2DD;} + .d2-3524757177 .fill-N5{fill:#DEE1EB;} + .d2-3524757177 .fill-N6{fill:#EEF1F8;} + .d2-3524757177 .fill-N7{fill:#FFFFFF;} + .d2-3524757177 .fill-B1{fill:#0D32B2;} + .d2-3524757177 .fill-B2{fill:#0D32B2;} + .d2-3524757177 .fill-B3{fill:#E3E9FD;} + .d2-3524757177 .fill-B4{fill:#E3E9FD;} + .d2-3524757177 .fill-B5{fill:#EDF0FD;} + .d2-3524757177 .fill-B6{fill:#F7F8FE;} + .d2-3524757177 .fill-AA2{fill:#4A6FF3;} + .d2-3524757177 .fill-AA4{fill:#EDF0FD;} + .d2-3524757177 .fill-AA5{fill:#F7F8FE;} + .d2-3524757177 .fill-AB4{fill:#EDF0FD;} + .d2-3524757177 .fill-AB5{fill:#F7F8FE;} + .d2-3524757177 .stroke-N1{stroke:#0A0F25;} + .d2-3524757177 .stroke-N2{stroke:#676C7E;} + .d2-3524757177 .stroke-N3{stroke:#9499AB;} + .d2-3524757177 .stroke-N4{stroke:#CFD2DD;} + .d2-3524757177 .stroke-N5{stroke:#DEE1EB;} + .d2-3524757177 .stroke-N6{stroke:#EEF1F8;} + .d2-3524757177 .stroke-N7{stroke:#FFFFFF;} + .d2-3524757177 .stroke-B1{stroke:#0D32B2;} + .d2-3524757177 .stroke-B2{stroke:#0D32B2;} + .d2-3524757177 .stroke-B3{stroke:#E3E9FD;} + .d2-3524757177 .stroke-B4{stroke:#E3E9FD;} + .d2-3524757177 .stroke-B5{stroke:#EDF0FD;} + .d2-3524757177 .stroke-B6{stroke:#F7F8FE;} + .d2-3524757177 .stroke-AA2{stroke:#4A6FF3;} + .d2-3524757177 .stroke-AA4{stroke:#EDF0FD;} + .d2-3524757177 .stroke-AA5{stroke:#F7F8FE;} + .d2-3524757177 .stroke-AB4{stroke:#EDF0FD;} + .d2-3524757177 .stroke-AB5{stroke:#F7F8FE;} + .d2-3524757177 .background-color-N1{background-color:#0A0F25;} + .d2-3524757177 .background-color-N2{background-color:#676C7E;} + .d2-3524757177 .background-color-N3{background-color:#9499AB;} + .d2-3524757177 .background-color-N4{background-color:#CFD2DD;} + .d2-3524757177 .background-color-N5{background-color:#DEE1EB;} + .d2-3524757177 .background-color-N6{background-color:#EEF1F8;} + .d2-3524757177 .background-color-N7{background-color:#FFFFFF;} + .d2-3524757177 .background-color-B1{background-color:#0D32B2;} + .d2-3524757177 .background-color-B2{background-color:#0D32B2;} + .d2-3524757177 .background-color-B3{background-color:#E3E9FD;} + .d2-3524757177 .background-color-B4{background-color:#E3E9FD;} + .d2-3524757177 .background-color-B5{background-color:#EDF0FD;} + .d2-3524757177 .background-color-B6{background-color:#F7F8FE;} + .d2-3524757177 .background-color-AA2{background-color:#4A6FF3;} + .d2-3524757177 .background-color-AA4{background-color:#EDF0FD;} + .d2-3524757177 .background-color-AA5{background-color:#F7F8FE;} + .d2-3524757177 .background-color-AB4{background-color:#EDF0FD;} + .d2-3524757177 .background-color-AB5{background-color:#F7F8FE;} + .d2-3524757177 .color-N1{color:#0A0F25;} + .d2-3524757177 .color-N2{color:#676C7E;} + .d2-3524757177 .color-N3{color:#9499AB;} + .d2-3524757177 .color-N4{color:#CFD2DD;} + .d2-3524757177 .color-N5{color:#DEE1EB;} + .d2-3524757177 .color-N6{color:#EEF1F8;} + .d2-3524757177 .color-N7{color:#FFFFFF;} + .d2-3524757177 .color-B1{color:#0D32B2;} + .d2-3524757177 .color-B2{color:#0D32B2;} + .d2-3524757177 .color-B3{color:#E3E9FD;} + .d2-3524757177 .color-B4{color:#E3E9FD;} + .d2-3524757177 .color-B5{color:#EDF0FD;} + .d2-3524757177 .color-B6{color:#F7F8FE;} + .d2-3524757177 .color-AA2{color:#4A6FF3;} + .d2-3524757177 .color-AA4{color:#EDF0FD;} + .d2-3524757177 .color-AA5{color:#F7F8FE;} + .d2-3524757177 .color-AB4{color:#EDF0FD;} + .d2-3524757177 .color-AB5{color:#F7F8FE;}.appendix text.text{fill:#0A0F25}.md{--color-fg-default:#0A0F25;--color-fg-muted:#676C7E;--color-fg-subtle:#9499AB;--color-canvas-default:#FFFFFF;--color-canvas-subtle:#EEF1F8;--color-border-default:#0D32B2;--color-border-muted:#0D32B2;--color-neutral-muted:#EEF1F8;--color-accent-fg:#0D32B2;--color-accent-emphasis:#0D32B2;--color-attention-subtle:#676C7E;--color-danger-fg:red;}.sketch-overlay-B1{fill:url(#streaks-darker);mix-blend-mode:lighten}.sketch-overlay-B2{fill:url(#streaks-darker);mix-blend-mode:lighten}.sketch-overlay-B3{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-B4{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-B5{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-B6{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-AA2{fill:url(#streaks-dark);mix-blend-mode:overlay}.sketch-overlay-AA4{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-AA5{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-AB4{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-AB5{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-N1{fill:url(#streaks-darker);mix-blend-mode:lighten}.sketch-overlay-N2{fill:url(#streaks-dark);mix-blend-mode:overlay}.sketch-overlay-N3{fill:url(#streaks-normal);mix-blend-mode:color-burn}.sketch-overlay-N4{fill:url(#streaks-normal);mix-blend-mode:color-burn}.sketch-overlay-N5{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-N6{fill:url(#streaks-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 ffc777f69b..c1b688a409 100644 --- a/e2etests/testdata/stable/circular_dependency/dagre/board.exp.json +++ b/e2etests/testdata/stable/circular_dependency/dagre/board.exp.json @@ -132,10 +132,8 @@ "id": "(a -> b)[0]", "src": "a", "srcArrow": "none", - "srcLabel": "", "dst": "b", "dstArrow": "triangle", - "dstLabel": "", "opacity": 1, "strokeDash": 0, "strokeWidth": 2, @@ -181,10 +179,8 @@ "id": "(b -> c)[0]", "src": "b", "srcArrow": "none", - "srcLabel": "", "dst": "c", "dstArrow": "triangle", - "dstLabel": "", "opacity": 1, "strokeDash": 0, "strokeWidth": 2, @@ -230,10 +226,8 @@ "id": "(c -> b)[0]", "src": "c", "srcArrow": "none", - "srcLabel": "", "dst": "b", "dstArrow": "triangle", - "dstLabel": "", "opacity": 1, "strokeDash": 0, "strokeWidth": 2, @@ -279,10 +273,8 @@ "id": "(b -> a)[0]", "src": "b", "srcArrow": "none", - "srcLabel": "", "dst": "a", "dstArrow": "triangle", - "dstLabel": "", "opacity": 1, "strokeDash": 0, "strokeWidth": 2, diff --git a/e2etests/testdata/stable/circular_dependency/dagre/sketch.exp.svg b/e2etests/testdata/stable/circular_dependency/dagre/sketch.exp.svg index 4e07f6b0cc..473df7a4c5 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-3882513773 .fill-N1{fill:#0A0F25;} + .d2-3882513773 .fill-N2{fill:#676C7E;} + .d2-3882513773 .fill-N3{fill:#9499AB;} + .d2-3882513773 .fill-N4{fill:#CFD2DD;} + .d2-3882513773 .fill-N5{fill:#DEE1EB;} + .d2-3882513773 .fill-N6{fill:#EEF1F8;} + .d2-3882513773 .fill-N7{fill:#FFFFFF;} + .d2-3882513773 .fill-B1{fill:#0D32B2;} + .d2-3882513773 .fill-B2{fill:#0D32B2;} + .d2-3882513773 .fill-B3{fill:#E3E9FD;} + .d2-3882513773 .fill-B4{fill:#E3E9FD;} + .d2-3882513773 .fill-B5{fill:#EDF0FD;} + .d2-3882513773 .fill-B6{fill:#F7F8FE;} + .d2-3882513773 .fill-AA2{fill:#4A6FF3;} + .d2-3882513773 .fill-AA4{fill:#EDF0FD;} + .d2-3882513773 .fill-AA5{fill:#F7F8FE;} + .d2-3882513773 .fill-AB4{fill:#EDF0FD;} + .d2-3882513773 .fill-AB5{fill:#F7F8FE;} + .d2-3882513773 .stroke-N1{stroke:#0A0F25;} + .d2-3882513773 .stroke-N2{stroke:#676C7E;} + .d2-3882513773 .stroke-N3{stroke:#9499AB;} + .d2-3882513773 .stroke-N4{stroke:#CFD2DD;} + .d2-3882513773 .stroke-N5{stroke:#DEE1EB;} + .d2-3882513773 .stroke-N6{stroke:#EEF1F8;} + .d2-3882513773 .stroke-N7{stroke:#FFFFFF;} + .d2-3882513773 .stroke-B1{stroke:#0D32B2;} + .d2-3882513773 .stroke-B2{stroke:#0D32B2;} + .d2-3882513773 .stroke-B3{stroke:#E3E9FD;} + .d2-3882513773 .stroke-B4{stroke:#E3E9FD;} + .d2-3882513773 .stroke-B5{stroke:#EDF0FD;} + .d2-3882513773 .stroke-B6{stroke:#F7F8FE;} + .d2-3882513773 .stroke-AA2{stroke:#4A6FF3;} + .d2-3882513773 .stroke-AA4{stroke:#EDF0FD;} + .d2-3882513773 .stroke-AA5{stroke:#F7F8FE;} + .d2-3882513773 .stroke-AB4{stroke:#EDF0FD;} + .d2-3882513773 .stroke-AB5{stroke:#F7F8FE;} + .d2-3882513773 .background-color-N1{background-color:#0A0F25;} + .d2-3882513773 .background-color-N2{background-color:#676C7E;} + .d2-3882513773 .background-color-N3{background-color:#9499AB;} + .d2-3882513773 .background-color-N4{background-color:#CFD2DD;} + .d2-3882513773 .background-color-N5{background-color:#DEE1EB;} + .d2-3882513773 .background-color-N6{background-color:#EEF1F8;} + .d2-3882513773 .background-color-N7{background-color:#FFFFFF;} + .d2-3882513773 .background-color-B1{background-color:#0D32B2;} + .d2-3882513773 .background-color-B2{background-color:#0D32B2;} + .d2-3882513773 .background-color-B3{background-color:#E3E9FD;} + .d2-3882513773 .background-color-B4{background-color:#E3E9FD;} + .d2-3882513773 .background-color-B5{background-color:#EDF0FD;} + .d2-3882513773 .background-color-B6{background-color:#F7F8FE;} + .d2-3882513773 .background-color-AA2{background-color:#4A6FF3;} + .d2-3882513773 .background-color-AA4{background-color:#EDF0FD;} + .d2-3882513773 .background-color-AA5{background-color:#F7F8FE;} + .d2-3882513773 .background-color-AB4{background-color:#EDF0FD;} + .d2-3882513773 .background-color-AB5{background-color:#F7F8FE;} + .d2-3882513773 .color-N1{color:#0A0F25;} + .d2-3882513773 .color-N2{color:#676C7E;} + .d2-3882513773 .color-N3{color:#9499AB;} + .d2-3882513773 .color-N4{color:#CFD2DD;} + .d2-3882513773 .color-N5{color:#DEE1EB;} + .d2-3882513773 .color-N6{color:#EEF1F8;} + .d2-3882513773 .color-N7{color:#FFFFFF;} + .d2-3882513773 .color-B1{color:#0D32B2;} + .d2-3882513773 .color-B2{color:#0D32B2;} + .d2-3882513773 .color-B3{color:#E3E9FD;} + .d2-3882513773 .color-B4{color:#E3E9FD;} + .d2-3882513773 .color-B5{color:#EDF0FD;} + .d2-3882513773 .color-B6{color:#F7F8FE;} + .d2-3882513773 .color-AA2{color:#4A6FF3;} + .d2-3882513773 .color-AA4{color:#EDF0FD;} + .d2-3882513773 .color-AA5{color:#F7F8FE;} + .d2-3882513773 .color-AB4{color:#EDF0FD;} + .d2-3882513773 .color-AB5{color:#F7F8FE;}.appendix text.text{fill:#0A0F25}.md{--color-fg-default:#0A0F25;--color-fg-muted:#676C7E;--color-fg-subtle:#9499AB;--color-canvas-default:#FFFFFF;--color-canvas-subtle:#EEF1F8;--color-border-default:#0D32B2;--color-border-muted:#0D32B2;--color-neutral-muted:#EEF1F8;--color-accent-fg:#0D32B2;--color-accent-emphasis:#0D32B2;--color-attention-subtle:#676C7E;--color-danger-fg:red;}.sketch-overlay-B1{fill:url(#streaks-darker);mix-blend-mode:lighten}.sketch-overlay-B2{fill:url(#streaks-darker);mix-blend-mode:lighten}.sketch-overlay-B3{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-B4{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-B5{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-B6{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-AA2{fill:url(#streaks-dark);mix-blend-mode:overlay}.sketch-overlay-AA4{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-AA5{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-AB4{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-AB5{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-N1{fill:url(#streaks-darker);mix-blend-mode:lighten}.sketch-overlay-N2{fill:url(#streaks-dark);mix-blend-mode:overlay}.sketch-overlay-N3{fill:url(#streaks-normal);mix-blend-mode:color-burn}.sketch-overlay-N4{fill:url(#streaks-normal);mix-blend-mode:color-burn}.sketch-overlay-N5{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-N6{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-N7{fill:url(#streaks-bright);mix-blend-mode:darken}.light-code{display: block}.dark-code{display: none}]]>abc \ No newline at end of file diff --git a/e2etests/testdata/stable/circular_dependency/elk/board.exp.json b/e2etests/testdata/stable/circular_dependency/elk/board.exp.json index 6edd3e0c5d..42f678fba2 100644 --- a/e2etests/testdata/stable/circular_dependency/elk/board.exp.json +++ b/e2etests/testdata/stable/circular_dependency/elk/board.exp.json @@ -132,10 +132,8 @@ "id": "(a -> b)[0]", "src": "a", "srcArrow": "none", - "srcLabel": "", "dst": "b", "dstArrow": "triangle", - "dstLabel": "", "opacity": 1, "strokeDash": 0, "strokeWidth": 2, @@ -172,10 +170,8 @@ "id": "(b -> c)[0]", "src": "b", "srcArrow": "none", - "srcLabel": "", "dst": "c", "dstArrow": "triangle", - "dstLabel": "", "opacity": 1, "strokeDash": 0, "strokeWidth": 2, @@ -212,10 +208,8 @@ "id": "(c -> b)[0]", "src": "c", "srcArrow": "none", - "srcLabel": "", "dst": "b", "dstArrow": "triangle", - "dstLabel": "", "opacity": 1, "strokeDash": 0, "strokeWidth": 2, @@ -252,10 +246,8 @@ "id": "(b -> a)[0]", "src": "b", "srcArrow": "none", - "srcLabel": "", "dst": "a", "dstArrow": "triangle", - "dstLabel": "", "opacity": 1, "strokeDash": 0, "strokeWidth": 2, diff --git a/e2etests/testdata/stable/circular_dependency/elk/sketch.exp.svg b/e2etests/testdata/stable/circular_dependency/elk/sketch.exp.svg index 70fe29a843..4fdac3679c 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-880292128 .fill-N1{fill:#0A0F25;} + .d2-880292128 .fill-N2{fill:#676C7E;} + .d2-880292128 .fill-N3{fill:#9499AB;} + .d2-880292128 .fill-N4{fill:#CFD2DD;} + .d2-880292128 .fill-N5{fill:#DEE1EB;} + .d2-880292128 .fill-N6{fill:#EEF1F8;} + .d2-880292128 .fill-N7{fill:#FFFFFF;} + .d2-880292128 .fill-B1{fill:#0D32B2;} + .d2-880292128 .fill-B2{fill:#0D32B2;} + .d2-880292128 .fill-B3{fill:#E3E9FD;} + .d2-880292128 .fill-B4{fill:#E3E9FD;} + .d2-880292128 .fill-B5{fill:#EDF0FD;} + .d2-880292128 .fill-B6{fill:#F7F8FE;} + .d2-880292128 .fill-AA2{fill:#4A6FF3;} + .d2-880292128 .fill-AA4{fill:#EDF0FD;} + .d2-880292128 .fill-AA5{fill:#F7F8FE;} + .d2-880292128 .fill-AB4{fill:#EDF0FD;} + .d2-880292128 .fill-AB5{fill:#F7F8FE;} + .d2-880292128 .stroke-N1{stroke:#0A0F25;} + .d2-880292128 .stroke-N2{stroke:#676C7E;} + .d2-880292128 .stroke-N3{stroke:#9499AB;} + .d2-880292128 .stroke-N4{stroke:#CFD2DD;} + .d2-880292128 .stroke-N5{stroke:#DEE1EB;} + .d2-880292128 .stroke-N6{stroke:#EEF1F8;} + .d2-880292128 .stroke-N7{stroke:#FFFFFF;} + .d2-880292128 .stroke-B1{stroke:#0D32B2;} + .d2-880292128 .stroke-B2{stroke:#0D32B2;} + .d2-880292128 .stroke-B3{stroke:#E3E9FD;} + .d2-880292128 .stroke-B4{stroke:#E3E9FD;} + .d2-880292128 .stroke-B5{stroke:#EDF0FD;} + .d2-880292128 .stroke-B6{stroke:#F7F8FE;} + .d2-880292128 .stroke-AA2{stroke:#4A6FF3;} + .d2-880292128 .stroke-AA4{stroke:#EDF0FD;} + .d2-880292128 .stroke-AA5{stroke:#F7F8FE;} + .d2-880292128 .stroke-AB4{stroke:#EDF0FD;} + .d2-880292128 .stroke-AB5{stroke:#F7F8FE;} + .d2-880292128 .background-color-N1{background-color:#0A0F25;} + .d2-880292128 .background-color-N2{background-color:#676C7E;} + .d2-880292128 .background-color-N3{background-color:#9499AB;} + .d2-880292128 .background-color-N4{background-color:#CFD2DD;} + .d2-880292128 .background-color-N5{background-color:#DEE1EB;} + .d2-880292128 .background-color-N6{background-color:#EEF1F8;} + .d2-880292128 .background-color-N7{background-color:#FFFFFF;} + .d2-880292128 .background-color-B1{background-color:#0D32B2;} + .d2-880292128 .background-color-B2{background-color:#0D32B2;} + .d2-880292128 .background-color-B3{background-color:#E3E9FD;} + .d2-880292128 .background-color-B4{background-color:#E3E9FD;} + .d2-880292128 .background-color-B5{background-color:#EDF0FD;} + .d2-880292128 .background-color-B6{background-color:#F7F8FE;} + .d2-880292128 .background-color-AA2{background-color:#4A6FF3;} + .d2-880292128 .background-color-AA4{background-color:#EDF0FD;} + .d2-880292128 .background-color-AA5{background-color:#F7F8FE;} + .d2-880292128 .background-color-AB4{background-color:#EDF0FD;} + .d2-880292128 .background-color-AB5{background-color:#F7F8FE;} + .d2-880292128 .color-N1{color:#0A0F25;} + .d2-880292128 .color-N2{color:#676C7E;} + .d2-880292128 .color-N3{color:#9499AB;} + .d2-880292128 .color-N4{color:#CFD2DD;} + .d2-880292128 .color-N5{color:#DEE1EB;} + .d2-880292128 .color-N6{color:#EEF1F8;} + .d2-880292128 .color-N7{color:#FFFFFF;} + .d2-880292128 .color-B1{color:#0D32B2;} + .d2-880292128 .color-B2{color:#0D32B2;} + .d2-880292128 .color-B3{color:#E3E9FD;} + .d2-880292128 .color-B4{color:#E3E9FD;} + .d2-880292128 .color-B5{color:#EDF0FD;} + .d2-880292128 .color-B6{color:#F7F8FE;} + .d2-880292128 .color-AA2{color:#4A6FF3;} + .d2-880292128 .color-AA4{color:#EDF0FD;} + .d2-880292128 .color-AA5{color:#F7F8FE;} + .d2-880292128 .color-AB4{color:#EDF0FD;} + .d2-880292128 .color-AB5{color:#F7F8FE;}.appendix text.text{fill:#0A0F25}.md{--color-fg-default:#0A0F25;--color-fg-muted:#676C7E;--color-fg-subtle:#9499AB;--color-canvas-default:#FFFFFF;--color-canvas-subtle:#EEF1F8;--color-border-default:#0D32B2;--color-border-muted:#0D32B2;--color-neutral-muted:#EEF1F8;--color-accent-fg:#0D32B2;--color-accent-emphasis:#0D32B2;--color-attention-subtle:#676C7E;--color-danger-fg:red;}.sketch-overlay-B1{fill:url(#streaks-darker);mix-blend-mode:lighten}.sketch-overlay-B2{fill:url(#streaks-darker);mix-blend-mode:lighten}.sketch-overlay-B3{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-B4{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-B5{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-B6{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-AA2{fill:url(#streaks-dark);mix-blend-mode:overlay}.sketch-overlay-AA4{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-AA5{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-AB4{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-AB5{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-N1{fill:url(#streaks-darker);mix-blend-mode:lighten}.sketch-overlay-N2{fill:url(#streaks-dark);mix-blend-mode:overlay}.sketch-overlay-N3{fill:url(#streaks-normal);mix-blend-mode:color-burn}.sketch-overlay-N4{fill:url(#streaks-normal);mix-blend-mode:color-burn}.sketch-overlay-N5{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-N6{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-N7{fill:url(#streaks-bright);mix-blend-mode:darken}.light-code{display: block}.dark-code{display: none}]]>abc \ No newline at end of file diff --git a/e2etests/testdata/stable/classes/dagre/board.exp.json b/e2etests/testdata/stable/classes/dagre/board.exp.json index 5de10aa1a5..4d246418f2 100644 --- a/e2etests/testdata/stable/classes/dagre/board.exp.json +++ b/e2etests/testdata/stable/classes/dagre/board.exp.json @@ -143,10 +143,8 @@ ], "src": "nostar", "srcArrow": "none", - "srcLabel": "", "dst": "1star", "dstArrow": "triangle", - "dstLabel": "", "opacity": 1, "strokeDash": 0, "strokeWidth": 4, @@ -195,10 +193,8 @@ ], "src": "1star", "srcArrow": "none", - "srcLabel": "", "dst": "2star", "dstArrow": "triangle", - "dstLabel": "", "opacity": 1, "strokeDash": 0, "strokeWidth": 4, diff --git a/e2etests/testdata/stable/classes/dagre/sketch.exp.svg b/e2etests/testdata/stable/classes/dagre/sketch.exp.svg index cee192458c..d3cc9f1700 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-3195771324 .fill-N1{fill:#0A0F25;} + .d2-3195771324 .fill-N2{fill:#676C7E;} + .d2-3195771324 .fill-N3{fill:#9499AB;} + .d2-3195771324 .fill-N4{fill:#CFD2DD;} + .d2-3195771324 .fill-N5{fill:#DEE1EB;} + .d2-3195771324 .fill-N6{fill:#EEF1F8;} + .d2-3195771324 .fill-N7{fill:#FFFFFF;} + .d2-3195771324 .fill-B1{fill:#0D32B2;} + .d2-3195771324 .fill-B2{fill:#0D32B2;} + .d2-3195771324 .fill-B3{fill:#E3E9FD;} + .d2-3195771324 .fill-B4{fill:#E3E9FD;} + .d2-3195771324 .fill-B5{fill:#EDF0FD;} + .d2-3195771324 .fill-B6{fill:#F7F8FE;} + .d2-3195771324 .fill-AA2{fill:#4A6FF3;} + .d2-3195771324 .fill-AA4{fill:#EDF0FD;} + .d2-3195771324 .fill-AA5{fill:#F7F8FE;} + .d2-3195771324 .fill-AB4{fill:#EDF0FD;} + .d2-3195771324 .fill-AB5{fill:#F7F8FE;} + .d2-3195771324 .stroke-N1{stroke:#0A0F25;} + .d2-3195771324 .stroke-N2{stroke:#676C7E;} + .d2-3195771324 .stroke-N3{stroke:#9499AB;} + .d2-3195771324 .stroke-N4{stroke:#CFD2DD;} + .d2-3195771324 .stroke-N5{stroke:#DEE1EB;} + .d2-3195771324 .stroke-N6{stroke:#EEF1F8;} + .d2-3195771324 .stroke-N7{stroke:#FFFFFF;} + .d2-3195771324 .stroke-B1{stroke:#0D32B2;} + .d2-3195771324 .stroke-B2{stroke:#0D32B2;} + .d2-3195771324 .stroke-B3{stroke:#E3E9FD;} + .d2-3195771324 .stroke-B4{stroke:#E3E9FD;} + .d2-3195771324 .stroke-B5{stroke:#EDF0FD;} + .d2-3195771324 .stroke-B6{stroke:#F7F8FE;} + .d2-3195771324 .stroke-AA2{stroke:#4A6FF3;} + .d2-3195771324 .stroke-AA4{stroke:#EDF0FD;} + .d2-3195771324 .stroke-AA5{stroke:#F7F8FE;} + .d2-3195771324 .stroke-AB4{stroke:#EDF0FD;} + .d2-3195771324 .stroke-AB5{stroke:#F7F8FE;} + .d2-3195771324 .background-color-N1{background-color:#0A0F25;} + .d2-3195771324 .background-color-N2{background-color:#676C7E;} + .d2-3195771324 .background-color-N3{background-color:#9499AB;} + .d2-3195771324 .background-color-N4{background-color:#CFD2DD;} + .d2-3195771324 .background-color-N5{background-color:#DEE1EB;} + .d2-3195771324 .background-color-N6{background-color:#EEF1F8;} + .d2-3195771324 .background-color-N7{background-color:#FFFFFF;} + .d2-3195771324 .background-color-B1{background-color:#0D32B2;} + .d2-3195771324 .background-color-B2{background-color:#0D32B2;} + .d2-3195771324 .background-color-B3{background-color:#E3E9FD;} + .d2-3195771324 .background-color-B4{background-color:#E3E9FD;} + .d2-3195771324 .background-color-B5{background-color:#EDF0FD;} + .d2-3195771324 .background-color-B6{background-color:#F7F8FE;} + .d2-3195771324 .background-color-AA2{background-color:#4A6FF3;} + .d2-3195771324 .background-color-AA4{background-color:#EDF0FD;} + .d2-3195771324 .background-color-AA5{background-color:#F7F8FE;} + .d2-3195771324 .background-color-AB4{background-color:#EDF0FD;} + .d2-3195771324 .background-color-AB5{background-color:#F7F8FE;} + .d2-3195771324 .color-N1{color:#0A0F25;} + .d2-3195771324 .color-N2{color:#676C7E;} + .d2-3195771324 .color-N3{color:#9499AB;} + .d2-3195771324 .color-N4{color:#CFD2DD;} + .d2-3195771324 .color-N5{color:#DEE1EB;} + .d2-3195771324 .color-N6{color:#EEF1F8;} + .d2-3195771324 .color-N7{color:#FFFFFF;} + .d2-3195771324 .color-B1{color:#0D32B2;} + .d2-3195771324 .color-B2{color:#0D32B2;} + .d2-3195771324 .color-B3{color:#E3E9FD;} + .d2-3195771324 .color-B4{color:#E3E9FD;} + .d2-3195771324 .color-B5{color:#EDF0FD;} + .d2-3195771324 .color-B6{color:#F7F8FE;} + .d2-3195771324 .color-AA2{color:#4A6FF3;} + .d2-3195771324 .color-AA4{color:#EDF0FD;} + .d2-3195771324 .color-AA5{color:#F7F8FE;} + .d2-3195771324 .color-AB4{color:#EDF0FD;} + .d2-3195771324 .color-AB5{color:#F7F8FE;}.appendix text.text{fill:#0A0F25}.md{--color-fg-default:#0A0F25;--color-fg-muted:#676C7E;--color-fg-subtle:#9499AB;--color-canvas-default:#FFFFFF;--color-canvas-subtle:#EEF1F8;--color-border-default:#0D32B2;--color-border-muted:#0D32B2;--color-neutral-muted:#EEF1F8;--color-accent-fg:#0D32B2;--color-accent-emphasis:#0D32B2;--color-attention-subtle:#676C7E;--color-danger-fg:red;}.sketch-overlay-B1{fill:url(#streaks-darker);mix-blend-mode:lighten}.sketch-overlay-B2{fill:url(#streaks-darker);mix-blend-mode:lighten}.sketch-overlay-B3{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-B4{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-B5{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-B6{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-AA2{fill:url(#streaks-dark);mix-blend-mode:overlay}.sketch-overlay-AA4{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-AA5{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-AB4{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-AB5{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-N1{fill:url(#streaks-darker);mix-blend-mode:lighten}.sketch-overlay-N2{fill:url(#streaks-dark);mix-blend-mode:overlay}.sketch-overlay-N3{fill:url(#streaks-normal);mix-blend-mode:color-burn}.sketch-overlay-N4{fill:url(#streaks-normal);mix-blend-mode:color-burn}.sketch-overlay-N5{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-N6{fill:url(#streaks-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 2dde2125eb..ce9979ffa4 100644 --- a/e2etests/testdata/stable/classes/elk/board.exp.json +++ b/e2etests/testdata/stable/classes/elk/board.exp.json @@ -143,10 +143,8 @@ ], "src": "nostar", "srcArrow": "none", - "srcLabel": "", "dst": "1star", "dstArrow": "triangle", - "dstLabel": "", "opacity": 1, "strokeDash": 0, "strokeWidth": 4, @@ -186,10 +184,8 @@ ], "src": "1star", "srcArrow": "none", - "srcLabel": "", "dst": "2star", "dstArrow": "triangle", - "dstLabel": "", "opacity": 1, "strokeDash": 0, "strokeWidth": 4, diff --git a/e2etests/testdata/stable/classes/elk/sketch.exp.svg b/e2etests/testdata/stable/classes/elk/sketch.exp.svg index 4ac9fdf42a..ac262999d2 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-3784544403 .fill-N1{fill:#0A0F25;} + .d2-3784544403 .fill-N2{fill:#676C7E;} + .d2-3784544403 .fill-N3{fill:#9499AB;} + .d2-3784544403 .fill-N4{fill:#CFD2DD;} + .d2-3784544403 .fill-N5{fill:#DEE1EB;} + .d2-3784544403 .fill-N6{fill:#EEF1F8;} + .d2-3784544403 .fill-N7{fill:#FFFFFF;} + .d2-3784544403 .fill-B1{fill:#0D32B2;} + .d2-3784544403 .fill-B2{fill:#0D32B2;} + .d2-3784544403 .fill-B3{fill:#E3E9FD;} + .d2-3784544403 .fill-B4{fill:#E3E9FD;} + .d2-3784544403 .fill-B5{fill:#EDF0FD;} + .d2-3784544403 .fill-B6{fill:#F7F8FE;} + .d2-3784544403 .fill-AA2{fill:#4A6FF3;} + .d2-3784544403 .fill-AA4{fill:#EDF0FD;} + .d2-3784544403 .fill-AA5{fill:#F7F8FE;} + .d2-3784544403 .fill-AB4{fill:#EDF0FD;} + .d2-3784544403 .fill-AB5{fill:#F7F8FE;} + .d2-3784544403 .stroke-N1{stroke:#0A0F25;} + .d2-3784544403 .stroke-N2{stroke:#676C7E;} + .d2-3784544403 .stroke-N3{stroke:#9499AB;} + .d2-3784544403 .stroke-N4{stroke:#CFD2DD;} + .d2-3784544403 .stroke-N5{stroke:#DEE1EB;} + .d2-3784544403 .stroke-N6{stroke:#EEF1F8;} + .d2-3784544403 .stroke-N7{stroke:#FFFFFF;} + .d2-3784544403 .stroke-B1{stroke:#0D32B2;} + .d2-3784544403 .stroke-B2{stroke:#0D32B2;} + .d2-3784544403 .stroke-B3{stroke:#E3E9FD;} + .d2-3784544403 .stroke-B4{stroke:#E3E9FD;} + .d2-3784544403 .stroke-B5{stroke:#EDF0FD;} + .d2-3784544403 .stroke-B6{stroke:#F7F8FE;} + .d2-3784544403 .stroke-AA2{stroke:#4A6FF3;} + .d2-3784544403 .stroke-AA4{stroke:#EDF0FD;} + .d2-3784544403 .stroke-AA5{stroke:#F7F8FE;} + .d2-3784544403 .stroke-AB4{stroke:#EDF0FD;} + .d2-3784544403 .stroke-AB5{stroke:#F7F8FE;} + .d2-3784544403 .background-color-N1{background-color:#0A0F25;} + .d2-3784544403 .background-color-N2{background-color:#676C7E;} + .d2-3784544403 .background-color-N3{background-color:#9499AB;} + .d2-3784544403 .background-color-N4{background-color:#CFD2DD;} + .d2-3784544403 .background-color-N5{background-color:#DEE1EB;} + .d2-3784544403 .background-color-N6{background-color:#EEF1F8;} + .d2-3784544403 .background-color-N7{background-color:#FFFFFF;} + .d2-3784544403 .background-color-B1{background-color:#0D32B2;} + .d2-3784544403 .background-color-B2{background-color:#0D32B2;} + .d2-3784544403 .background-color-B3{background-color:#E3E9FD;} + .d2-3784544403 .background-color-B4{background-color:#E3E9FD;} + .d2-3784544403 .background-color-B5{background-color:#EDF0FD;} + .d2-3784544403 .background-color-B6{background-color:#F7F8FE;} + .d2-3784544403 .background-color-AA2{background-color:#4A6FF3;} + .d2-3784544403 .background-color-AA4{background-color:#EDF0FD;} + .d2-3784544403 .background-color-AA5{background-color:#F7F8FE;} + .d2-3784544403 .background-color-AB4{background-color:#EDF0FD;} + .d2-3784544403 .background-color-AB5{background-color:#F7F8FE;} + .d2-3784544403 .color-N1{color:#0A0F25;} + .d2-3784544403 .color-N2{color:#676C7E;} + .d2-3784544403 .color-N3{color:#9499AB;} + .d2-3784544403 .color-N4{color:#CFD2DD;} + .d2-3784544403 .color-N5{color:#DEE1EB;} + .d2-3784544403 .color-N6{color:#EEF1F8;} + .d2-3784544403 .color-N7{color:#FFFFFF;} + .d2-3784544403 .color-B1{color:#0D32B2;} + .d2-3784544403 .color-B2{color:#0D32B2;} + .d2-3784544403 .color-B3{color:#E3E9FD;} + .d2-3784544403 .color-B4{color:#E3E9FD;} + .d2-3784544403 .color-B5{color:#EDF0FD;} + .d2-3784544403 .color-B6{color:#F7F8FE;} + .d2-3784544403 .color-AA2{color:#4A6FF3;} + .d2-3784544403 .color-AA4{color:#EDF0FD;} + .d2-3784544403 .color-AA5{color:#F7F8FE;} + .d2-3784544403 .color-AB4{color:#EDF0FD;} + .d2-3784544403 .color-AB5{color:#F7F8FE;}.appendix text.text{fill:#0A0F25}.md{--color-fg-default:#0A0F25;--color-fg-muted:#676C7E;--color-fg-subtle:#9499AB;--color-canvas-default:#FFFFFF;--color-canvas-subtle:#EEF1F8;--color-border-default:#0D32B2;--color-border-muted:#0D32B2;--color-neutral-muted:#EEF1F8;--color-accent-fg:#0D32B2;--color-accent-emphasis:#0D32B2;--color-attention-subtle:#676C7E;--color-danger-fg:red;}.sketch-overlay-B1{fill:url(#streaks-darker);mix-blend-mode:lighten}.sketch-overlay-B2{fill:url(#streaks-darker);mix-blend-mode:lighten}.sketch-overlay-B3{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-B4{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-B5{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-B6{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-AA2{fill:url(#streaks-dark);mix-blend-mode:overlay}.sketch-overlay-AA4{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-AA5{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-AB4{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-AB5{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-N1{fill:url(#streaks-darker);mix-blend-mode:lighten}.sketch-overlay-N2{fill:url(#streaks-dark);mix-blend-mode:overlay}.sketch-overlay-N3{fill:url(#streaks-normal);mix-blend-mode:color-burn}.sketch-overlay-N4{fill:url(#streaks-normal);mix-blend-mode:color-burn}.sketch-overlay-N5{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-N6{fill:url(#streaks-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 aa769c66c4..bb94638557 100644 --- a/e2etests/testdata/stable/code_snippet/dagre/board.exp.json +++ b/e2etests/testdata/stable/code_snippet/dagre/board.exp.json @@ -131,10 +131,8 @@ "id": "(x -> hey)[0]", "src": "x", "srcArrow": "none", - "srcLabel": "", "dst": "hey", "dstArrow": "triangle", - "dstLabel": "", "opacity": 1, "strokeDash": 0, "strokeWidth": 2, @@ -180,10 +178,8 @@ "id": "(hey -> y)[0]", "src": "hey", "srcArrow": "none", - "srcLabel": "", "dst": "y", "dstArrow": "triangle", - "dstLabel": "", "opacity": 1, "strokeDash": 0, "strokeWidth": 2, diff --git a/e2etests/testdata/stable/code_snippet/dagre/sketch.exp.svg b/e2etests/testdata/stable/code_snippet/dagre/sketch.exp.svg index 75a30eefb3..99eab2b6f2 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-4255023336 .fill-N1{fill:#0A0F25;} + .d2-4255023336 .fill-N2{fill:#676C7E;} + .d2-4255023336 .fill-N3{fill:#9499AB;} + .d2-4255023336 .fill-N4{fill:#CFD2DD;} + .d2-4255023336 .fill-N5{fill:#DEE1EB;} + .d2-4255023336 .fill-N6{fill:#EEF1F8;} + .d2-4255023336 .fill-N7{fill:#FFFFFF;} + .d2-4255023336 .fill-B1{fill:#0D32B2;} + .d2-4255023336 .fill-B2{fill:#0D32B2;} + .d2-4255023336 .fill-B3{fill:#E3E9FD;} + .d2-4255023336 .fill-B4{fill:#E3E9FD;} + .d2-4255023336 .fill-B5{fill:#EDF0FD;} + .d2-4255023336 .fill-B6{fill:#F7F8FE;} + .d2-4255023336 .fill-AA2{fill:#4A6FF3;} + .d2-4255023336 .fill-AA4{fill:#EDF0FD;} + .d2-4255023336 .fill-AA5{fill:#F7F8FE;} + .d2-4255023336 .fill-AB4{fill:#EDF0FD;} + .d2-4255023336 .fill-AB5{fill:#F7F8FE;} + .d2-4255023336 .stroke-N1{stroke:#0A0F25;} + .d2-4255023336 .stroke-N2{stroke:#676C7E;} + .d2-4255023336 .stroke-N3{stroke:#9499AB;} + .d2-4255023336 .stroke-N4{stroke:#CFD2DD;} + .d2-4255023336 .stroke-N5{stroke:#DEE1EB;} + .d2-4255023336 .stroke-N6{stroke:#EEF1F8;} + .d2-4255023336 .stroke-N7{stroke:#FFFFFF;} + .d2-4255023336 .stroke-B1{stroke:#0D32B2;} + .d2-4255023336 .stroke-B2{stroke:#0D32B2;} + .d2-4255023336 .stroke-B3{stroke:#E3E9FD;} + .d2-4255023336 .stroke-B4{stroke:#E3E9FD;} + .d2-4255023336 .stroke-B5{stroke:#EDF0FD;} + .d2-4255023336 .stroke-B6{stroke:#F7F8FE;} + .d2-4255023336 .stroke-AA2{stroke:#4A6FF3;} + .d2-4255023336 .stroke-AA4{stroke:#EDF0FD;} + .d2-4255023336 .stroke-AA5{stroke:#F7F8FE;} + .d2-4255023336 .stroke-AB4{stroke:#EDF0FD;} + .d2-4255023336 .stroke-AB5{stroke:#F7F8FE;} + .d2-4255023336 .background-color-N1{background-color:#0A0F25;} + .d2-4255023336 .background-color-N2{background-color:#676C7E;} + .d2-4255023336 .background-color-N3{background-color:#9499AB;} + .d2-4255023336 .background-color-N4{background-color:#CFD2DD;} + .d2-4255023336 .background-color-N5{background-color:#DEE1EB;} + .d2-4255023336 .background-color-N6{background-color:#EEF1F8;} + .d2-4255023336 .background-color-N7{background-color:#FFFFFF;} + .d2-4255023336 .background-color-B1{background-color:#0D32B2;} + .d2-4255023336 .background-color-B2{background-color:#0D32B2;} + .d2-4255023336 .background-color-B3{background-color:#E3E9FD;} + .d2-4255023336 .background-color-B4{background-color:#E3E9FD;} + .d2-4255023336 .background-color-B5{background-color:#EDF0FD;} + .d2-4255023336 .background-color-B6{background-color:#F7F8FE;} + .d2-4255023336 .background-color-AA2{background-color:#4A6FF3;} + .d2-4255023336 .background-color-AA4{background-color:#EDF0FD;} + .d2-4255023336 .background-color-AA5{background-color:#F7F8FE;} + .d2-4255023336 .background-color-AB4{background-color:#EDF0FD;} + .d2-4255023336 .background-color-AB5{background-color:#F7F8FE;} + .d2-4255023336 .color-N1{color:#0A0F25;} + .d2-4255023336 .color-N2{color:#676C7E;} + .d2-4255023336 .color-N3{color:#9499AB;} + .d2-4255023336 .color-N4{color:#CFD2DD;} + .d2-4255023336 .color-N5{color:#DEE1EB;} + .d2-4255023336 .color-N6{color:#EEF1F8;} + .d2-4255023336 .color-N7{color:#FFFFFF;} + .d2-4255023336 .color-B1{color:#0D32B2;} + .d2-4255023336 .color-B2{color:#0D32B2;} + .d2-4255023336 .color-B3{color:#E3E9FD;} + .d2-4255023336 .color-B4{color:#E3E9FD;} + .d2-4255023336 .color-B5{color:#EDF0FD;} + .d2-4255023336 .color-B6{color:#F7F8FE;} + .d2-4255023336 .color-AA2{color:#4A6FF3;} + .d2-4255023336 .color-AA4{color:#EDF0FD;} + .d2-4255023336 .color-AA5{color:#F7F8FE;} + .d2-4255023336 .color-AB4{color:#EDF0FD;} + .d2-4255023336 .color-AB5{color:#F7F8FE;}.appendix text.text{fill:#0A0F25}.md{--color-fg-default:#0A0F25;--color-fg-muted:#676C7E;--color-fg-subtle:#9499AB;--color-canvas-default:#FFFFFF;--color-canvas-subtle:#EEF1F8;--color-border-default:#0D32B2;--color-border-muted:#0D32B2;--color-neutral-muted:#EEF1F8;--color-accent-fg:#0D32B2;--color-accent-emphasis:#0D32B2;--color-attention-subtle:#676C7E;--color-danger-fg:red;}.sketch-overlay-B1{fill:url(#streaks-darker);mix-blend-mode:lighten}.sketch-overlay-B2{fill:url(#streaks-darker);mix-blend-mode:lighten}.sketch-overlay-B3{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-B4{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-B5{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-B6{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-AA2{fill:url(#streaks-dark);mix-blend-mode:overlay}.sketch-overlay-AA4{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-AA5{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-AB4{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-AB5{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-N1{fill:url(#streaks-darker);mix-blend-mode:lighten}.sketch-overlay-N2{fill:url(#streaks-dark);mix-blend-mode:overlay}.sketch-overlay-N3{fill:url(#streaks-normal);mix-blend-mode:color-burn}.sketch-overlay-N4{fill:url(#streaks-normal);mix-blend-mode:color-burn}.sketch-overlay-N5{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-N6{fill:url(#streaks-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 \ No newline at end of file diff --git a/e2etests/testdata/stable/code_snippet/elk/board.exp.json b/e2etests/testdata/stable/code_snippet/elk/board.exp.json index d923027332..2a6a4c19a4 100644 --- a/e2etests/testdata/stable/code_snippet/elk/board.exp.json +++ b/e2etests/testdata/stable/code_snippet/elk/board.exp.json @@ -131,10 +131,8 @@ "id": "(x -> hey)[0]", "src": "x", "srcArrow": "none", - "srcLabel": "", "dst": "hey", "dstArrow": "triangle", - "dstLabel": "", "opacity": 1, "strokeDash": 0, "strokeWidth": 2, @@ -171,10 +169,8 @@ "id": "(hey -> y)[0]", "src": "hey", "srcArrow": "none", - "srcLabel": "", "dst": "y", "dstArrow": "triangle", - "dstLabel": "", "opacity": 1, "strokeDash": 0, "strokeWidth": 2, diff --git a/e2etests/testdata/stable/code_snippet/elk/sketch.exp.svg b/e2etests/testdata/stable/code_snippet/elk/sketch.exp.svg index a27549aaa0..96ae0ae1f8 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-3261684106 .fill-N1{fill:#0A0F25;} + .d2-3261684106 .fill-N2{fill:#676C7E;} + .d2-3261684106 .fill-N3{fill:#9499AB;} + .d2-3261684106 .fill-N4{fill:#CFD2DD;} + .d2-3261684106 .fill-N5{fill:#DEE1EB;} + .d2-3261684106 .fill-N6{fill:#EEF1F8;} + .d2-3261684106 .fill-N7{fill:#FFFFFF;} + .d2-3261684106 .fill-B1{fill:#0D32B2;} + .d2-3261684106 .fill-B2{fill:#0D32B2;} + .d2-3261684106 .fill-B3{fill:#E3E9FD;} + .d2-3261684106 .fill-B4{fill:#E3E9FD;} + .d2-3261684106 .fill-B5{fill:#EDF0FD;} + .d2-3261684106 .fill-B6{fill:#F7F8FE;} + .d2-3261684106 .fill-AA2{fill:#4A6FF3;} + .d2-3261684106 .fill-AA4{fill:#EDF0FD;} + .d2-3261684106 .fill-AA5{fill:#F7F8FE;} + .d2-3261684106 .fill-AB4{fill:#EDF0FD;} + .d2-3261684106 .fill-AB5{fill:#F7F8FE;} + .d2-3261684106 .stroke-N1{stroke:#0A0F25;} + .d2-3261684106 .stroke-N2{stroke:#676C7E;} + .d2-3261684106 .stroke-N3{stroke:#9499AB;} + .d2-3261684106 .stroke-N4{stroke:#CFD2DD;} + .d2-3261684106 .stroke-N5{stroke:#DEE1EB;} + .d2-3261684106 .stroke-N6{stroke:#EEF1F8;} + .d2-3261684106 .stroke-N7{stroke:#FFFFFF;} + .d2-3261684106 .stroke-B1{stroke:#0D32B2;} + .d2-3261684106 .stroke-B2{stroke:#0D32B2;} + .d2-3261684106 .stroke-B3{stroke:#E3E9FD;} + .d2-3261684106 .stroke-B4{stroke:#E3E9FD;} + .d2-3261684106 .stroke-B5{stroke:#EDF0FD;} + .d2-3261684106 .stroke-B6{stroke:#F7F8FE;} + .d2-3261684106 .stroke-AA2{stroke:#4A6FF3;} + .d2-3261684106 .stroke-AA4{stroke:#EDF0FD;} + .d2-3261684106 .stroke-AA5{stroke:#F7F8FE;} + .d2-3261684106 .stroke-AB4{stroke:#EDF0FD;} + .d2-3261684106 .stroke-AB5{stroke:#F7F8FE;} + .d2-3261684106 .background-color-N1{background-color:#0A0F25;} + .d2-3261684106 .background-color-N2{background-color:#676C7E;} + .d2-3261684106 .background-color-N3{background-color:#9499AB;} + .d2-3261684106 .background-color-N4{background-color:#CFD2DD;} + .d2-3261684106 .background-color-N5{background-color:#DEE1EB;} + .d2-3261684106 .background-color-N6{background-color:#EEF1F8;} + .d2-3261684106 .background-color-N7{background-color:#FFFFFF;} + .d2-3261684106 .background-color-B1{background-color:#0D32B2;} + .d2-3261684106 .background-color-B2{background-color:#0D32B2;} + .d2-3261684106 .background-color-B3{background-color:#E3E9FD;} + .d2-3261684106 .background-color-B4{background-color:#E3E9FD;} + .d2-3261684106 .background-color-B5{background-color:#EDF0FD;} + .d2-3261684106 .background-color-B6{background-color:#F7F8FE;} + .d2-3261684106 .background-color-AA2{background-color:#4A6FF3;} + .d2-3261684106 .background-color-AA4{background-color:#EDF0FD;} + .d2-3261684106 .background-color-AA5{background-color:#F7F8FE;} + .d2-3261684106 .background-color-AB4{background-color:#EDF0FD;} + .d2-3261684106 .background-color-AB5{background-color:#F7F8FE;} + .d2-3261684106 .color-N1{color:#0A0F25;} + .d2-3261684106 .color-N2{color:#676C7E;} + .d2-3261684106 .color-N3{color:#9499AB;} + .d2-3261684106 .color-N4{color:#CFD2DD;} + .d2-3261684106 .color-N5{color:#DEE1EB;} + .d2-3261684106 .color-N6{color:#EEF1F8;} + .d2-3261684106 .color-N7{color:#FFFFFF;} + .d2-3261684106 .color-B1{color:#0D32B2;} + .d2-3261684106 .color-B2{color:#0D32B2;} + .d2-3261684106 .color-B3{color:#E3E9FD;} + .d2-3261684106 .color-B4{color:#E3E9FD;} + .d2-3261684106 .color-B5{color:#EDF0FD;} + .d2-3261684106 .color-B6{color:#F7F8FE;} + .d2-3261684106 .color-AA2{color:#4A6FF3;} + .d2-3261684106 .color-AA4{color:#EDF0FD;} + .d2-3261684106 .color-AA5{color:#F7F8FE;} + .d2-3261684106 .color-AB4{color:#EDF0FD;} + .d2-3261684106 .color-AB5{color:#F7F8FE;}.appendix text.text{fill:#0A0F25}.md{--color-fg-default:#0A0F25;--color-fg-muted:#676C7E;--color-fg-subtle:#9499AB;--color-canvas-default:#FFFFFF;--color-canvas-subtle:#EEF1F8;--color-border-default:#0D32B2;--color-border-muted:#0D32B2;--color-neutral-muted:#EEF1F8;--color-accent-fg:#0D32B2;--color-accent-emphasis:#0D32B2;--color-attention-subtle:#676C7E;--color-danger-fg:red;}.sketch-overlay-B1{fill:url(#streaks-darker);mix-blend-mode:lighten}.sketch-overlay-B2{fill:url(#streaks-darker);mix-blend-mode:lighten}.sketch-overlay-B3{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-B4{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-B5{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-B6{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-AA2{fill:url(#streaks-dark);mix-blend-mode:overlay}.sketch-overlay-AA4{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-AA5{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-AB4{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-AB5{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-N1{fill:url(#streaks-darker);mix-blend-mode:lighten}.sketch-overlay-N2{fill:url(#streaks-dark);mix-blend-mode:overlay}.sketch-overlay-N3{fill:url(#streaks-normal);mix-blend-mode:color-burn}.sketch-overlay-N4{fill:url(#streaks-normal);mix-blend-mode:color-burn}.sketch-overlay-N5{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-N6{fill:url(#streaks-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 \ No newline at end of file diff --git a/e2etests/testdata/stable/complex-layers/dagre/board.exp.json b/e2etests/testdata/stable/complex-layers/dagre/board.exp.json index c90970ef4d..7994d67f48 100644 --- a/e2etests/testdata/stable/complex-layers/dagre/board.exp.json +++ b/e2etests/testdata/stable/complex-layers/dagre/board.exp.json @@ -993,10 +993,8 @@ "id": "(find contractors -> solicit quotes)[0]", "src": "find contractors", "srcArrow": "none", - "srcLabel": "", "dst": "solicit quotes", "dstArrow": "triangle", - "dstLabel": "", "opacity": 1, "strokeDash": 0, "strokeWidth": 2, @@ -1337,10 +1335,8 @@ "id": "(find contractors -> solicit quotes)[0]", "src": "find contractors", "srcArrow": "none", - "srcLabel": "", "dst": "solicit quotes", "dstArrow": "triangle", - "dstLabel": "", "opacity": 1, "strokeDash": 0, "strokeWidth": 2, @@ -1386,10 +1382,8 @@ "id": "(obtain quotes -> negotiate)[0]", "src": "obtain quotes", "srcArrow": "none", - "srcLabel": "", "dst": "negotiate", "dstArrow": "triangle", - "dstLabel": "", "opacity": 1, "strokeDash": 0, "strokeWidth": 2, @@ -1771,10 +1765,8 @@ "id": "(find contractors -> solicit quotes)[0]", "src": "find contractors", "srcArrow": "none", - "srcLabel": "", "dst": "solicit quotes", "dstArrow": "triangle", - "dstLabel": "", "opacity": 1, "strokeDash": 0, "strokeWidth": 2, @@ -1820,10 +1812,8 @@ "id": "(obtain quotes -> negotiate)[0]", "src": "obtain quotes", "srcArrow": "none", - "srcLabel": "", "dst": "negotiate", "dstArrow": "triangle", - "dstLabel": "", "opacity": 1, "strokeDash": 0, "strokeWidth": 2, @@ -1869,10 +1859,8 @@ "id": "(negotiate -> book the best bid)[0]", "src": "negotiate", "srcArrow": "none", - "srcLabel": "", "dst": "book the best bid", "dstArrow": "triangle", - "dstLabel": "", "opacity": 1, "strokeDash": 0, "strokeWidth": 2, diff --git a/e2etests/testdata/stable/complex-layers/dagre/sketch.exp.svg b/e2etests/testdata/stable/complex-layers/dagre/sketch.exp.svg index b357306999..5e8af0b20d 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 -find contractorssolicit quotesobtain quotesnegotiatebook the best bidcraigslistfacebook +find contractorssolicit quotesobtain quotesnegotiatebook the best bidcraigslistfacebook -windowroofgaragewaterrainthunder +windowroofgaragewaterrainthunder \ No newline at end of file diff --git a/e2etests/testdata/stable/complex-layers/elk/board.exp.json b/e2etests/testdata/stable/complex-layers/elk/board.exp.json index 2ab04d994e..277381b1d1 100644 --- a/e2etests/testdata/stable/complex-layers/elk/board.exp.json +++ b/e2etests/testdata/stable/complex-layers/elk/board.exp.json @@ -993,10 +993,8 @@ "id": "(find contractors -> solicit quotes)[0]", "src": "find contractors", "srcArrow": "none", - "srcLabel": "", "dst": "solicit quotes", "dstArrow": "triangle", - "dstLabel": "", "opacity": 1, "strokeDash": 0, "strokeWidth": 2, @@ -1328,10 +1326,8 @@ "id": "(find contractors -> solicit quotes)[0]", "src": "find contractors", "srcArrow": "none", - "srcLabel": "", "dst": "solicit quotes", "dstArrow": "triangle", - "dstLabel": "", "opacity": 1, "strokeDash": 0, "strokeWidth": 2, @@ -1368,10 +1364,8 @@ "id": "(obtain quotes -> negotiate)[0]", "src": "obtain quotes", "srcArrow": "none", - "srcLabel": "", "dst": "negotiate", "dstArrow": "triangle", - "dstLabel": "", "opacity": 1, "strokeDash": 0, "strokeWidth": 2, @@ -1744,10 +1738,8 @@ "id": "(find contractors -> solicit quotes)[0]", "src": "find contractors", "srcArrow": "none", - "srcLabel": "", "dst": "solicit quotes", "dstArrow": "triangle", - "dstLabel": "", "opacity": 1, "strokeDash": 0, "strokeWidth": 2, @@ -1784,10 +1776,8 @@ "id": "(obtain quotes -> negotiate)[0]", "src": "obtain quotes", "srcArrow": "none", - "srcLabel": "", "dst": "negotiate", "dstArrow": "triangle", - "dstLabel": "", "opacity": 1, "strokeDash": 0, "strokeWidth": 2, @@ -1824,10 +1814,8 @@ "id": "(negotiate -> book the best bid)[0]", "src": "negotiate", "srcArrow": "none", - "srcLabel": "", "dst": "book the best bid", "dstArrow": "triangle", - "dstLabel": "", "opacity": 1, "strokeDash": 0, "strokeWidth": 2, diff --git a/e2etests/testdata/stable/complex-layers/elk/sketch.exp.svg b/e2etests/testdata/stable/complex-layers/elk/sketch.exp.svg index 4ac7740f4c..d82effaba8 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 -find contractorssolicit quotesobtain quotesnegotiatebook the best bidcraigslistfacebook +find contractorssolicit quotesobtain quotesnegotiatebook the best bidcraigslistfacebook -windowroofgaragewaterrainthunder +windowroofgaragewaterrainthunder \ No newline at end of file diff --git a/e2etests/testdata/stable/connected_container/dagre/board.exp.json b/e2etests/testdata/stable/connected_container/dagre/board.exp.json index 36765ef472..8d01a78e0f 100644 --- a/e2etests/testdata/stable/connected_container/dagre/board.exp.json +++ b/e2etests/testdata/stable/connected_container/dagre/board.exp.json @@ -296,10 +296,8 @@ "id": "(a.b -> c.d)[0]", "src": "a.b", "srcArrow": "none", - "srcLabel": "", "dst": "c.d", "dstArrow": "triangle", - "dstLabel": "", "opacity": 1, "strokeDash": 0, "strokeWidth": 2, @@ -357,10 +355,8 @@ "id": "(c.d -> f.h.g)[0]", "src": "c.d", "srcArrow": "none", - "srcLabel": "", "dst": "f.h.g", "dstArrow": "triangle", - "dstLabel": "", "opacity": 1, "strokeDash": 0, "strokeWidth": 2, diff --git a/e2etests/testdata/stable/connected_container/dagre/sketch.exp.svg b/e2etests/testdata/stable/connected_container/dagre/sketch.exp.svg index cffc511bfb..19f4000e8f 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-869103472 .fill-N1{fill:#0A0F25;} + .d2-869103472 .fill-N2{fill:#676C7E;} + .d2-869103472 .fill-N3{fill:#9499AB;} + .d2-869103472 .fill-N4{fill:#CFD2DD;} + .d2-869103472 .fill-N5{fill:#DEE1EB;} + .d2-869103472 .fill-N6{fill:#EEF1F8;} + .d2-869103472 .fill-N7{fill:#FFFFFF;} + .d2-869103472 .fill-B1{fill:#0D32B2;} + .d2-869103472 .fill-B2{fill:#0D32B2;} + .d2-869103472 .fill-B3{fill:#E3E9FD;} + .d2-869103472 .fill-B4{fill:#E3E9FD;} + .d2-869103472 .fill-B5{fill:#EDF0FD;} + .d2-869103472 .fill-B6{fill:#F7F8FE;} + .d2-869103472 .fill-AA2{fill:#4A6FF3;} + .d2-869103472 .fill-AA4{fill:#EDF0FD;} + .d2-869103472 .fill-AA5{fill:#F7F8FE;} + .d2-869103472 .fill-AB4{fill:#EDF0FD;} + .d2-869103472 .fill-AB5{fill:#F7F8FE;} + .d2-869103472 .stroke-N1{stroke:#0A0F25;} + .d2-869103472 .stroke-N2{stroke:#676C7E;} + .d2-869103472 .stroke-N3{stroke:#9499AB;} + .d2-869103472 .stroke-N4{stroke:#CFD2DD;} + .d2-869103472 .stroke-N5{stroke:#DEE1EB;} + .d2-869103472 .stroke-N6{stroke:#EEF1F8;} + .d2-869103472 .stroke-N7{stroke:#FFFFFF;} + .d2-869103472 .stroke-B1{stroke:#0D32B2;} + .d2-869103472 .stroke-B2{stroke:#0D32B2;} + .d2-869103472 .stroke-B3{stroke:#E3E9FD;} + .d2-869103472 .stroke-B4{stroke:#E3E9FD;} + .d2-869103472 .stroke-B5{stroke:#EDF0FD;} + .d2-869103472 .stroke-B6{stroke:#F7F8FE;} + .d2-869103472 .stroke-AA2{stroke:#4A6FF3;} + .d2-869103472 .stroke-AA4{stroke:#EDF0FD;} + .d2-869103472 .stroke-AA5{stroke:#F7F8FE;} + .d2-869103472 .stroke-AB4{stroke:#EDF0FD;} + .d2-869103472 .stroke-AB5{stroke:#F7F8FE;} + .d2-869103472 .background-color-N1{background-color:#0A0F25;} + .d2-869103472 .background-color-N2{background-color:#676C7E;} + .d2-869103472 .background-color-N3{background-color:#9499AB;} + .d2-869103472 .background-color-N4{background-color:#CFD2DD;} + .d2-869103472 .background-color-N5{background-color:#DEE1EB;} + .d2-869103472 .background-color-N6{background-color:#EEF1F8;} + .d2-869103472 .background-color-N7{background-color:#FFFFFF;} + .d2-869103472 .background-color-B1{background-color:#0D32B2;} + .d2-869103472 .background-color-B2{background-color:#0D32B2;} + .d2-869103472 .background-color-B3{background-color:#E3E9FD;} + .d2-869103472 .background-color-B4{background-color:#E3E9FD;} + .d2-869103472 .background-color-B5{background-color:#EDF0FD;} + .d2-869103472 .background-color-B6{background-color:#F7F8FE;} + .d2-869103472 .background-color-AA2{background-color:#4A6FF3;} + .d2-869103472 .background-color-AA4{background-color:#EDF0FD;} + .d2-869103472 .background-color-AA5{background-color:#F7F8FE;} + .d2-869103472 .background-color-AB4{background-color:#EDF0FD;} + .d2-869103472 .background-color-AB5{background-color:#F7F8FE;} + .d2-869103472 .color-N1{color:#0A0F25;} + .d2-869103472 .color-N2{color:#676C7E;} + .d2-869103472 .color-N3{color:#9499AB;} + .d2-869103472 .color-N4{color:#CFD2DD;} + .d2-869103472 .color-N5{color:#DEE1EB;} + .d2-869103472 .color-N6{color:#EEF1F8;} + .d2-869103472 .color-N7{color:#FFFFFF;} + .d2-869103472 .color-B1{color:#0D32B2;} + .d2-869103472 .color-B2{color:#0D32B2;} + .d2-869103472 .color-B3{color:#E3E9FD;} + .d2-869103472 .color-B4{color:#E3E9FD;} + .d2-869103472 .color-B5{color:#EDF0FD;} + .d2-869103472 .color-B6{color:#F7F8FE;} + .d2-869103472 .color-AA2{color:#4A6FF3;} + .d2-869103472 .color-AA4{color:#EDF0FD;} + .d2-869103472 .color-AA5{color:#F7F8FE;} + .d2-869103472 .color-AB4{color:#EDF0FD;} + .d2-869103472 .color-AB5{color:#F7F8FE;}.appendix text.text{fill:#0A0F25}.md{--color-fg-default:#0A0F25;--color-fg-muted:#676C7E;--color-fg-subtle:#9499AB;--color-canvas-default:#FFFFFF;--color-canvas-subtle:#EEF1F8;--color-border-default:#0D32B2;--color-border-muted:#0D32B2;--color-neutral-muted:#EEF1F8;--color-accent-fg:#0D32B2;--color-accent-emphasis:#0D32B2;--color-attention-subtle:#676C7E;--color-danger-fg:red;}.sketch-overlay-B1{fill:url(#streaks-darker);mix-blend-mode:lighten}.sketch-overlay-B2{fill:url(#streaks-darker);mix-blend-mode:lighten}.sketch-overlay-B3{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-B4{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-B5{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-B6{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-AA2{fill:url(#streaks-dark);mix-blend-mode:overlay}.sketch-overlay-AA4{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-AA5{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-AB4{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-AB5{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-N1{fill:url(#streaks-darker);mix-blend-mode:lighten}.sketch-overlay-N2{fill:url(#streaks-dark);mix-blend-mode:overlay}.sketch-overlay-N3{fill:url(#streaks-normal);mix-blend-mode:color-burn}.sketch-overlay-N4{fill:url(#streaks-normal);mix-blend-mode:color-burn}.sketch-overlay-N5{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-N6{fill:url(#streaks-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 \ No newline at end of file diff --git a/e2etests/testdata/stable/connected_container/elk/board.exp.json b/e2etests/testdata/stable/connected_container/elk/board.exp.json index dee7485ae1..86e61496e6 100644 --- a/e2etests/testdata/stable/connected_container/elk/board.exp.json +++ b/e2etests/testdata/stable/connected_container/elk/board.exp.json @@ -296,10 +296,8 @@ "id": "(a.b -> c.d)[0]", "src": "a.b", "srcArrow": "none", - "srcLabel": "", "dst": "c.d", "dstArrow": "triangle", - "dstLabel": "", "opacity": 1, "strokeDash": 0, "strokeWidth": 2, @@ -336,10 +334,8 @@ "id": "(c.d -> f.h.g)[0]", "src": "c.d", "srcArrow": "none", - "srcLabel": "", "dst": "f.h.g", "dstArrow": "triangle", - "dstLabel": "", "opacity": 1, "strokeDash": 0, "strokeWidth": 2, diff --git a/e2etests/testdata/stable/connected_container/elk/sketch.exp.svg b/e2etests/testdata/stable/connected_container/elk/sketch.exp.svg index fdd7e43821..33b3ac7761 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-333636047 .fill-N1{fill:#0A0F25;} + .d2-333636047 .fill-N2{fill:#676C7E;} + .d2-333636047 .fill-N3{fill:#9499AB;} + .d2-333636047 .fill-N4{fill:#CFD2DD;} + .d2-333636047 .fill-N5{fill:#DEE1EB;} + .d2-333636047 .fill-N6{fill:#EEF1F8;} + .d2-333636047 .fill-N7{fill:#FFFFFF;} + .d2-333636047 .fill-B1{fill:#0D32B2;} + .d2-333636047 .fill-B2{fill:#0D32B2;} + .d2-333636047 .fill-B3{fill:#E3E9FD;} + .d2-333636047 .fill-B4{fill:#E3E9FD;} + .d2-333636047 .fill-B5{fill:#EDF0FD;} + .d2-333636047 .fill-B6{fill:#F7F8FE;} + .d2-333636047 .fill-AA2{fill:#4A6FF3;} + .d2-333636047 .fill-AA4{fill:#EDF0FD;} + .d2-333636047 .fill-AA5{fill:#F7F8FE;} + .d2-333636047 .fill-AB4{fill:#EDF0FD;} + .d2-333636047 .fill-AB5{fill:#F7F8FE;} + .d2-333636047 .stroke-N1{stroke:#0A0F25;} + .d2-333636047 .stroke-N2{stroke:#676C7E;} + .d2-333636047 .stroke-N3{stroke:#9499AB;} + .d2-333636047 .stroke-N4{stroke:#CFD2DD;} + .d2-333636047 .stroke-N5{stroke:#DEE1EB;} + .d2-333636047 .stroke-N6{stroke:#EEF1F8;} + .d2-333636047 .stroke-N7{stroke:#FFFFFF;} + .d2-333636047 .stroke-B1{stroke:#0D32B2;} + .d2-333636047 .stroke-B2{stroke:#0D32B2;} + .d2-333636047 .stroke-B3{stroke:#E3E9FD;} + .d2-333636047 .stroke-B4{stroke:#E3E9FD;} + .d2-333636047 .stroke-B5{stroke:#EDF0FD;} + .d2-333636047 .stroke-B6{stroke:#F7F8FE;} + .d2-333636047 .stroke-AA2{stroke:#4A6FF3;} + .d2-333636047 .stroke-AA4{stroke:#EDF0FD;} + .d2-333636047 .stroke-AA5{stroke:#F7F8FE;} + .d2-333636047 .stroke-AB4{stroke:#EDF0FD;} + .d2-333636047 .stroke-AB5{stroke:#F7F8FE;} + .d2-333636047 .background-color-N1{background-color:#0A0F25;} + .d2-333636047 .background-color-N2{background-color:#676C7E;} + .d2-333636047 .background-color-N3{background-color:#9499AB;} + .d2-333636047 .background-color-N4{background-color:#CFD2DD;} + .d2-333636047 .background-color-N5{background-color:#DEE1EB;} + .d2-333636047 .background-color-N6{background-color:#EEF1F8;} + .d2-333636047 .background-color-N7{background-color:#FFFFFF;} + .d2-333636047 .background-color-B1{background-color:#0D32B2;} + .d2-333636047 .background-color-B2{background-color:#0D32B2;} + .d2-333636047 .background-color-B3{background-color:#E3E9FD;} + .d2-333636047 .background-color-B4{background-color:#E3E9FD;} + .d2-333636047 .background-color-B5{background-color:#EDF0FD;} + .d2-333636047 .background-color-B6{background-color:#F7F8FE;} + .d2-333636047 .background-color-AA2{background-color:#4A6FF3;} + .d2-333636047 .background-color-AA4{background-color:#EDF0FD;} + .d2-333636047 .background-color-AA5{background-color:#F7F8FE;} + .d2-333636047 .background-color-AB4{background-color:#EDF0FD;} + .d2-333636047 .background-color-AB5{background-color:#F7F8FE;} + .d2-333636047 .color-N1{color:#0A0F25;} + .d2-333636047 .color-N2{color:#676C7E;} + .d2-333636047 .color-N3{color:#9499AB;} + .d2-333636047 .color-N4{color:#CFD2DD;} + .d2-333636047 .color-N5{color:#DEE1EB;} + .d2-333636047 .color-N6{color:#EEF1F8;} + .d2-333636047 .color-N7{color:#FFFFFF;} + .d2-333636047 .color-B1{color:#0D32B2;} + .d2-333636047 .color-B2{color:#0D32B2;} + .d2-333636047 .color-B3{color:#E3E9FD;} + .d2-333636047 .color-B4{color:#E3E9FD;} + .d2-333636047 .color-B5{color:#EDF0FD;} + .d2-333636047 .color-B6{color:#F7F8FE;} + .d2-333636047 .color-AA2{color:#4A6FF3;} + .d2-333636047 .color-AA4{color:#EDF0FD;} + .d2-333636047 .color-AA5{color:#F7F8FE;} + .d2-333636047 .color-AB4{color:#EDF0FD;} + .d2-333636047 .color-AB5{color:#F7F8FE;}.appendix text.text{fill:#0A0F25}.md{--color-fg-default:#0A0F25;--color-fg-muted:#676C7E;--color-fg-subtle:#9499AB;--color-canvas-default:#FFFFFF;--color-canvas-subtle:#EEF1F8;--color-border-default:#0D32B2;--color-border-muted:#0D32B2;--color-neutral-muted:#EEF1F8;--color-accent-fg:#0D32B2;--color-accent-emphasis:#0D32B2;--color-attention-subtle:#676C7E;--color-danger-fg:red;}.sketch-overlay-B1{fill:url(#streaks-darker);mix-blend-mode:lighten}.sketch-overlay-B2{fill:url(#streaks-darker);mix-blend-mode:lighten}.sketch-overlay-B3{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-B4{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-B5{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-B6{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-AA2{fill:url(#streaks-dark);mix-blend-mode:overlay}.sketch-overlay-AA4{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-AA5{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-AB4{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-AB5{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-N1{fill:url(#streaks-darker);mix-blend-mode:lighten}.sketch-overlay-N2{fill:url(#streaks-dark);mix-blend-mode:overlay}.sketch-overlay-N3{fill:url(#streaks-normal);mix-blend-mode:color-burn}.sketch-overlay-N4{fill:url(#streaks-normal);mix-blend-mode:color-burn}.sketch-overlay-N5{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-N6{fill:url(#streaks-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 \ No newline at end of file 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 3e8780836e..b81735f0e5 100644 --- a/e2etests/testdata/stable/constant_near_stress/dagre/board.exp.json +++ b/e2etests/testdata/stable/constant_near_stress/dagre/board.exp.json @@ -413,10 +413,8 @@ "id": "(x -> y)[0]", "src": "x", "srcArrow": "none", - "srcLabel": "", "dst": "y", "dstArrow": "triangle", - "dstLabel": "", "opacity": 1, "strokeDash": 0, "strokeWidth": 2, 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 886a54b00b..0c066a2e1c 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 mountain

    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.

    -
    JoeDonaldi am top lefti am top righti am bottom lefti am bottom right +JoeDonaldi am top lefti am top righti am bottom lefti am bottom right
    \ No newline at end of file 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 41512d8270..d393d92166 100644 --- a/e2etests/testdata/stable/constant_near_stress/elk/board.exp.json +++ b/e2etests/testdata/stable/constant_near_stress/elk/board.exp.json @@ -413,10 +413,8 @@ "id": "(x -> y)[0]", "src": "x", "srcArrow": "none", - "srcLabel": "", "dst": "y", "dstArrow": "triangle", - "dstLabel": "", "opacity": 1, "strokeDash": 0, "strokeWidth": 2, 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 4110707baf..f56922ad61 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 mountain

    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.

    -
    JoeDonaldi am top lefti am top righti am bottom lefti am bottom right +JoeDonaldi am top lefti am top righti am bottom lefti am bottom right
    \ No newline at end of file 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 d016f79672..0e0d3391cb 100644 --- a/e2etests/testdata/stable/constant_near_title/dagre/board.exp.json +++ b/e2etests/testdata/stable/constant_near_title/dagre/board.exp.json @@ -254,10 +254,8 @@ "id": "(poll the people -> results)[0]", "src": "poll the people", "srcArrow": "none", - "srcLabel": "", "dst": "results", "dstArrow": "triangle", - "dstLabel": "", "opacity": 1, "strokeDash": 0, "strokeWidth": 2, @@ -303,10 +301,8 @@ "id": "(results -> unfavorable)[0]", "src": "results", "srcArrow": "none", - "srcLabel": "", "dst": "unfavorable", "dstArrow": "triangle", - "dstLabel": "", "opacity": 1, "strokeDash": 0, "strokeWidth": 2, @@ -352,10 +348,8 @@ "id": "(unfavorable -> poll the people)[0]", "src": "unfavorable", "srcArrow": "none", - "srcLabel": "", "dst": "poll the people", "dstArrow": "triangle", - "dstLabel": "", "opacity": 1, "strokeDash": 0, "strokeWidth": 2, @@ -413,10 +407,8 @@ "id": "(results -> favorable)[0]", "src": "results", "srcArrow": "none", - "srcLabel": "", "dst": "favorable", "dstArrow": "triangle", - "dstLabel": "", "opacity": 1, "strokeDash": 0, "strokeWidth": 2, @@ -462,10 +454,8 @@ "id": "(favorable -> will of the people)[0]", "src": "favorable", "srcArrow": "none", - "srcLabel": "", "dst": "will of the people", "dstArrow": "triangle", - "dstLabel": "", "opacity": 1, "strokeDash": 0, "strokeWidth": 2, 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 0bc8e03eef..6dd0e7b245 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 @@ -poll the peopleresultsunfavorablefavorablewill of the people

    A winning strategy

    -
    +
    \ No newline at end of file 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 b687d6a83c..5f334e2c2e 100644 --- a/e2etests/testdata/stable/constant_near_title/elk/board.exp.json +++ b/e2etests/testdata/stable/constant_near_title/elk/board.exp.json @@ -254,10 +254,8 @@ "id": "(poll the people -> results)[0]", "src": "poll the people", "srcArrow": "none", - "srcLabel": "", "dst": "results", "dstArrow": "triangle", - "dstLabel": "", "opacity": 1, "strokeDash": 0, "strokeWidth": 2, @@ -302,10 +300,8 @@ "id": "(results -> unfavorable)[0]", "src": "results", "srcArrow": "none", - "srcLabel": "", "dst": "unfavorable", "dstArrow": "triangle", - "dstLabel": "", "opacity": 1, "strokeDash": 0, "strokeWidth": 2, @@ -350,10 +346,8 @@ "id": "(unfavorable -> poll the people)[0]", "src": "unfavorable", "srcArrow": "none", - "srcLabel": "", "dst": "poll the people", "dstArrow": "triangle", - "dstLabel": "", "opacity": 1, "strokeDash": 0, "strokeWidth": 2, @@ -398,10 +392,8 @@ "id": "(results -> favorable)[0]", "src": "results", "srcArrow": "none", - "srcLabel": "", "dst": "favorable", "dstArrow": "triangle", - "dstLabel": "", "opacity": 1, "strokeDash": 0, "strokeWidth": 2, @@ -438,10 +430,8 @@ "id": "(favorable -> will of the people)[0]", "src": "favorable", "srcArrow": "none", - "srcLabel": "", "dst": "will of the people", "dstArrow": "triangle", - "dstLabel": "", "opacity": 1, "strokeDash": 0, "strokeWidth": 2, 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 a5d6bf965d..9578769cce 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 @@ -poll the peopleresultsunfavorablefavorablewill of the people

    A winning strategy

    -
    +
    \ No newline at end of file diff --git a/e2etests/testdata/stable/container_edges/dagre/board.exp.json b/e2etests/testdata/stable/container_edges/dagre/board.exp.json index 29374e21ec..ac99e1eeb4 100644 --- a/e2etests/testdata/stable/container_edges/dagre/board.exp.json +++ b/e2etests/testdata/stable/container_edges/dagre/board.exp.json @@ -337,10 +337,8 @@ "id": "(a -> g.b)[0]", "src": "a", "srcArrow": "none", - "srcLabel": "", "dst": "g.b", "dstArrow": "triangle", - "dstLabel": "", "opacity": 1, "strokeDash": 0, "strokeWidth": 2, @@ -386,10 +384,8 @@ "id": "(g.b -> d.h.c)[0]", "src": "g.b", "srcArrow": "none", - "srcLabel": "", "dst": "d.h.c", "dstArrow": "triangle", - "dstLabel": "", "opacity": 1, "strokeDash": 0, "strokeWidth": 2, @@ -447,10 +443,8 @@ "id": "(d -> g.e)[0]", "src": "d", "srcArrow": "none", - "srcLabel": "", "dst": "g.e", "dstArrow": "triangle", - "dstLabel": "", "opacity": 1, "strokeDash": 0, "strokeWidth": 2, @@ -496,10 +490,8 @@ "id": "(g.e -> f)[0]", "src": "g.e", "srcArrow": "none", - "srcLabel": "", "dst": "f", "dstArrow": "triangle", - "dstLabel": "", "opacity": 1, "strokeDash": 0, "strokeWidth": 2, @@ -545,10 +537,8 @@ "id": "(f -> g)[0]", "src": "f", "srcArrow": "none", - "srcLabel": "", "dst": "g", "dstArrow": "triangle", - "dstLabel": "", "opacity": 1, "strokeDash": 0, "strokeWidth": 2, @@ -594,10 +584,8 @@ "id": "(g -> d.h)[0]", "src": "g", "srcArrow": "none", - "srcLabel": "", "dst": "d.h", "dstArrow": "triangle", - "dstLabel": "", "opacity": 1, "strokeDash": 0, "strokeWidth": 2, diff --git a/e2etests/testdata/stable/container_edges/dagre/sketch.exp.svg b/e2etests/testdata/stable/container_edges/dagre/sketch.exp.svg index 5bc973b585..f2e4e4f564 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-1501610976 .fill-N1{fill:#0A0F25;} + .d2-1501610976 .fill-N2{fill:#676C7E;} + .d2-1501610976 .fill-N3{fill:#9499AB;} + .d2-1501610976 .fill-N4{fill:#CFD2DD;} + .d2-1501610976 .fill-N5{fill:#DEE1EB;} + .d2-1501610976 .fill-N6{fill:#EEF1F8;} + .d2-1501610976 .fill-N7{fill:#FFFFFF;} + .d2-1501610976 .fill-B1{fill:#0D32B2;} + .d2-1501610976 .fill-B2{fill:#0D32B2;} + .d2-1501610976 .fill-B3{fill:#E3E9FD;} + .d2-1501610976 .fill-B4{fill:#E3E9FD;} + .d2-1501610976 .fill-B5{fill:#EDF0FD;} + .d2-1501610976 .fill-B6{fill:#F7F8FE;} + .d2-1501610976 .fill-AA2{fill:#4A6FF3;} + .d2-1501610976 .fill-AA4{fill:#EDF0FD;} + .d2-1501610976 .fill-AA5{fill:#F7F8FE;} + .d2-1501610976 .fill-AB4{fill:#EDF0FD;} + .d2-1501610976 .fill-AB5{fill:#F7F8FE;} + .d2-1501610976 .stroke-N1{stroke:#0A0F25;} + .d2-1501610976 .stroke-N2{stroke:#676C7E;} + .d2-1501610976 .stroke-N3{stroke:#9499AB;} + .d2-1501610976 .stroke-N4{stroke:#CFD2DD;} + .d2-1501610976 .stroke-N5{stroke:#DEE1EB;} + .d2-1501610976 .stroke-N6{stroke:#EEF1F8;} + .d2-1501610976 .stroke-N7{stroke:#FFFFFF;} + .d2-1501610976 .stroke-B1{stroke:#0D32B2;} + .d2-1501610976 .stroke-B2{stroke:#0D32B2;} + .d2-1501610976 .stroke-B3{stroke:#E3E9FD;} + .d2-1501610976 .stroke-B4{stroke:#E3E9FD;} + .d2-1501610976 .stroke-B5{stroke:#EDF0FD;} + .d2-1501610976 .stroke-B6{stroke:#F7F8FE;} + .d2-1501610976 .stroke-AA2{stroke:#4A6FF3;} + .d2-1501610976 .stroke-AA4{stroke:#EDF0FD;} + .d2-1501610976 .stroke-AA5{stroke:#F7F8FE;} + .d2-1501610976 .stroke-AB4{stroke:#EDF0FD;} + .d2-1501610976 .stroke-AB5{stroke:#F7F8FE;} + .d2-1501610976 .background-color-N1{background-color:#0A0F25;} + .d2-1501610976 .background-color-N2{background-color:#676C7E;} + .d2-1501610976 .background-color-N3{background-color:#9499AB;} + .d2-1501610976 .background-color-N4{background-color:#CFD2DD;} + .d2-1501610976 .background-color-N5{background-color:#DEE1EB;} + .d2-1501610976 .background-color-N6{background-color:#EEF1F8;} + .d2-1501610976 .background-color-N7{background-color:#FFFFFF;} + .d2-1501610976 .background-color-B1{background-color:#0D32B2;} + .d2-1501610976 .background-color-B2{background-color:#0D32B2;} + .d2-1501610976 .background-color-B3{background-color:#E3E9FD;} + .d2-1501610976 .background-color-B4{background-color:#E3E9FD;} + .d2-1501610976 .background-color-B5{background-color:#EDF0FD;} + .d2-1501610976 .background-color-B6{background-color:#F7F8FE;} + .d2-1501610976 .background-color-AA2{background-color:#4A6FF3;} + .d2-1501610976 .background-color-AA4{background-color:#EDF0FD;} + .d2-1501610976 .background-color-AA5{background-color:#F7F8FE;} + .d2-1501610976 .background-color-AB4{background-color:#EDF0FD;} + .d2-1501610976 .background-color-AB5{background-color:#F7F8FE;} + .d2-1501610976 .color-N1{color:#0A0F25;} + .d2-1501610976 .color-N2{color:#676C7E;} + .d2-1501610976 .color-N3{color:#9499AB;} + .d2-1501610976 .color-N4{color:#CFD2DD;} + .d2-1501610976 .color-N5{color:#DEE1EB;} + .d2-1501610976 .color-N6{color:#EEF1F8;} + .d2-1501610976 .color-N7{color:#FFFFFF;} + .d2-1501610976 .color-B1{color:#0D32B2;} + .d2-1501610976 .color-B2{color:#0D32B2;} + .d2-1501610976 .color-B3{color:#E3E9FD;} + .d2-1501610976 .color-B4{color:#E3E9FD;} + .d2-1501610976 .color-B5{color:#EDF0FD;} + .d2-1501610976 .color-B6{color:#F7F8FE;} + .d2-1501610976 .color-AA2{color:#4A6FF3;} + .d2-1501610976 .color-AA4{color:#EDF0FD;} + .d2-1501610976 .color-AA5{color:#F7F8FE;} + .d2-1501610976 .color-AB4{color:#EDF0FD;} + .d2-1501610976 .color-AB5{color:#F7F8FE;}.appendix text.text{fill:#0A0F25}.md{--color-fg-default:#0A0F25;--color-fg-muted:#676C7E;--color-fg-subtle:#9499AB;--color-canvas-default:#FFFFFF;--color-canvas-subtle:#EEF1F8;--color-border-default:#0D32B2;--color-border-muted:#0D32B2;--color-neutral-muted:#EEF1F8;--color-accent-fg:#0D32B2;--color-accent-emphasis:#0D32B2;--color-attention-subtle:#676C7E;--color-danger-fg:red;}.sketch-overlay-B1{fill:url(#streaks-darker);mix-blend-mode:lighten}.sketch-overlay-B2{fill:url(#streaks-darker);mix-blend-mode:lighten}.sketch-overlay-B3{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-B4{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-B5{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-B6{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-AA2{fill:url(#streaks-dark);mix-blend-mode:overlay}.sketch-overlay-AA4{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-AA5{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-AB4{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-AB5{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-N1{fill:url(#streaks-darker);mix-blend-mode:lighten}.sketch-overlay-N2{fill:url(#streaks-dark);mix-blend-mode:overlay}.sketch-overlay-N3{fill:url(#streaks-normal);mix-blend-mode:color-burn}.sketch-overlay-N4{fill:url(#streaks-normal);mix-blend-mode:color-burn}.sketch-overlay-N5{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-N6{fill:url(#streaks-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 \ No newline at end of file diff --git a/e2etests/testdata/stable/container_edges/elk/board.exp.json b/e2etests/testdata/stable/container_edges/elk/board.exp.json index 237eed648f..3be49b9c6d 100644 --- a/e2etests/testdata/stable/container_edges/elk/board.exp.json +++ b/e2etests/testdata/stable/container_edges/elk/board.exp.json @@ -337,10 +337,8 @@ "id": "(a -> g.b)[0]", "src": "a", "srcArrow": "none", - "srcLabel": "", "dst": "g.b", "dstArrow": "triangle", - "dstLabel": "", "opacity": 1, "strokeDash": 0, "strokeWidth": 2, @@ -377,10 +375,8 @@ "id": "(g.b -> d.h.c)[0]", "src": "g.b", "srcArrow": "none", - "srcLabel": "", "dst": "d.h.c", "dstArrow": "triangle", - "dstLabel": "", "opacity": 1, "strokeDash": 0, "strokeWidth": 2, @@ -425,10 +421,8 @@ "id": "(d -> g.e)[0]", "src": "d", "srcArrow": "none", - "srcLabel": "", "dst": "g.e", "dstArrow": "triangle", - "dstLabel": "", "opacity": 1, "strokeDash": 0, "strokeWidth": 2, @@ -481,10 +475,8 @@ "id": "(g.e -> f)[0]", "src": "g.e", "srcArrow": "none", - "srcLabel": "", "dst": "f", "dstArrow": "triangle", - "dstLabel": "", "opacity": 1, "strokeDash": 0, "strokeWidth": 2, @@ -529,10 +521,8 @@ "id": "(f -> g)[0]", "src": "f", "srcArrow": "none", - "srcLabel": "", "dst": "g", "dstArrow": "triangle", - "dstLabel": "", "opacity": 1, "strokeDash": 0, "strokeWidth": 2, @@ -577,10 +567,8 @@ "id": "(g -> d.h)[0]", "src": "g", "srcArrow": "none", - "srcLabel": "", "dst": "d.h", "dstArrow": "triangle", - "dstLabel": "", "opacity": 1, "strokeDash": 0, "strokeWidth": 2, diff --git a/e2etests/testdata/stable/container_edges/elk/sketch.exp.svg b/e2etests/testdata/stable/container_edges/elk/sketch.exp.svg index dc7406668d..da3924abac 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-553941114 .fill-N1{fill:#0A0F25;} + .d2-553941114 .fill-N2{fill:#676C7E;} + .d2-553941114 .fill-N3{fill:#9499AB;} + .d2-553941114 .fill-N4{fill:#CFD2DD;} + .d2-553941114 .fill-N5{fill:#DEE1EB;} + .d2-553941114 .fill-N6{fill:#EEF1F8;} + .d2-553941114 .fill-N7{fill:#FFFFFF;} + .d2-553941114 .fill-B1{fill:#0D32B2;} + .d2-553941114 .fill-B2{fill:#0D32B2;} + .d2-553941114 .fill-B3{fill:#E3E9FD;} + .d2-553941114 .fill-B4{fill:#E3E9FD;} + .d2-553941114 .fill-B5{fill:#EDF0FD;} + .d2-553941114 .fill-B6{fill:#F7F8FE;} + .d2-553941114 .fill-AA2{fill:#4A6FF3;} + .d2-553941114 .fill-AA4{fill:#EDF0FD;} + .d2-553941114 .fill-AA5{fill:#F7F8FE;} + .d2-553941114 .fill-AB4{fill:#EDF0FD;} + .d2-553941114 .fill-AB5{fill:#F7F8FE;} + .d2-553941114 .stroke-N1{stroke:#0A0F25;} + .d2-553941114 .stroke-N2{stroke:#676C7E;} + .d2-553941114 .stroke-N3{stroke:#9499AB;} + .d2-553941114 .stroke-N4{stroke:#CFD2DD;} + .d2-553941114 .stroke-N5{stroke:#DEE1EB;} + .d2-553941114 .stroke-N6{stroke:#EEF1F8;} + .d2-553941114 .stroke-N7{stroke:#FFFFFF;} + .d2-553941114 .stroke-B1{stroke:#0D32B2;} + .d2-553941114 .stroke-B2{stroke:#0D32B2;} + .d2-553941114 .stroke-B3{stroke:#E3E9FD;} + .d2-553941114 .stroke-B4{stroke:#E3E9FD;} + .d2-553941114 .stroke-B5{stroke:#EDF0FD;} + .d2-553941114 .stroke-B6{stroke:#F7F8FE;} + .d2-553941114 .stroke-AA2{stroke:#4A6FF3;} + .d2-553941114 .stroke-AA4{stroke:#EDF0FD;} + .d2-553941114 .stroke-AA5{stroke:#F7F8FE;} + .d2-553941114 .stroke-AB4{stroke:#EDF0FD;} + .d2-553941114 .stroke-AB5{stroke:#F7F8FE;} + .d2-553941114 .background-color-N1{background-color:#0A0F25;} + .d2-553941114 .background-color-N2{background-color:#676C7E;} + .d2-553941114 .background-color-N3{background-color:#9499AB;} + .d2-553941114 .background-color-N4{background-color:#CFD2DD;} + .d2-553941114 .background-color-N5{background-color:#DEE1EB;} + .d2-553941114 .background-color-N6{background-color:#EEF1F8;} + .d2-553941114 .background-color-N7{background-color:#FFFFFF;} + .d2-553941114 .background-color-B1{background-color:#0D32B2;} + .d2-553941114 .background-color-B2{background-color:#0D32B2;} + .d2-553941114 .background-color-B3{background-color:#E3E9FD;} + .d2-553941114 .background-color-B4{background-color:#E3E9FD;} + .d2-553941114 .background-color-B5{background-color:#EDF0FD;} + .d2-553941114 .background-color-B6{background-color:#F7F8FE;} + .d2-553941114 .background-color-AA2{background-color:#4A6FF3;} + .d2-553941114 .background-color-AA4{background-color:#EDF0FD;} + .d2-553941114 .background-color-AA5{background-color:#F7F8FE;} + .d2-553941114 .background-color-AB4{background-color:#EDF0FD;} + .d2-553941114 .background-color-AB5{background-color:#F7F8FE;} + .d2-553941114 .color-N1{color:#0A0F25;} + .d2-553941114 .color-N2{color:#676C7E;} + .d2-553941114 .color-N3{color:#9499AB;} + .d2-553941114 .color-N4{color:#CFD2DD;} + .d2-553941114 .color-N5{color:#DEE1EB;} + .d2-553941114 .color-N6{color:#EEF1F8;} + .d2-553941114 .color-N7{color:#FFFFFF;} + .d2-553941114 .color-B1{color:#0D32B2;} + .d2-553941114 .color-B2{color:#0D32B2;} + .d2-553941114 .color-B3{color:#E3E9FD;} + .d2-553941114 .color-B4{color:#E3E9FD;} + .d2-553941114 .color-B5{color:#EDF0FD;} + .d2-553941114 .color-B6{color:#F7F8FE;} + .d2-553941114 .color-AA2{color:#4A6FF3;} + .d2-553941114 .color-AA4{color:#EDF0FD;} + .d2-553941114 .color-AA5{color:#F7F8FE;} + .d2-553941114 .color-AB4{color:#EDF0FD;} + .d2-553941114 .color-AB5{color:#F7F8FE;}.appendix text.text{fill:#0A0F25}.md{--color-fg-default:#0A0F25;--color-fg-muted:#676C7E;--color-fg-subtle:#9499AB;--color-canvas-default:#FFFFFF;--color-canvas-subtle:#EEF1F8;--color-border-default:#0D32B2;--color-border-muted:#0D32B2;--color-neutral-muted:#EEF1F8;--color-accent-fg:#0D32B2;--color-accent-emphasis:#0D32B2;--color-attention-subtle:#676C7E;--color-danger-fg:red;}.sketch-overlay-B1{fill:url(#streaks-darker);mix-blend-mode:lighten}.sketch-overlay-B2{fill:url(#streaks-darker);mix-blend-mode:lighten}.sketch-overlay-B3{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-B4{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-B5{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-B6{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-AA2{fill:url(#streaks-dark);mix-blend-mode:overlay}.sketch-overlay-AA4{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-AA5{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-AB4{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-AB5{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-N1{fill:url(#streaks-darker);mix-blend-mode:lighten}.sketch-overlay-N2{fill:url(#streaks-dark);mix-blend-mode:overlay}.sketch-overlay-N3{fill:url(#streaks-normal);mix-blend-mode:color-burn}.sketch-overlay-N4{fill:url(#streaks-normal);mix-blend-mode:color-burn}.sketch-overlay-N5{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-N6{fill:url(#streaks-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 \ No newline at end of file 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 2d068aec53..fe4dfc7099 100644 --- a/e2etests/testdata/stable/crow_foot_arrowhead/dagre/board.exp.json +++ b/e2etests/testdata/stable/crow_foot_arrowhead/dagre/board.exp.json @@ -1116,10 +1116,8 @@ "id": "(a1 <-> b1)[0]", "src": "a1", "srcArrow": "cf-many", - "srcLabel": "", "dst": "b1", "dstArrow": "cf-many", - "dstLabel": "", "opacity": 1, "strokeDash": 0, "strokeWidth": 1, @@ -1165,10 +1163,8 @@ "id": "(a2 <-> b2)[0]", "src": "a2", "srcArrow": "cf-many", - "srcLabel": "", "dst": "b2", "dstArrow": "cf-many", - "dstLabel": "", "opacity": 1, "strokeDash": 0, "strokeWidth": 3, @@ -1214,10 +1210,8 @@ "id": "(a3 <-> b3)[0]", "src": "a3", "srcArrow": "cf-many", - "srcLabel": "", "dst": "b3", "dstArrow": "cf-many", - "dstLabel": "", "opacity": 1, "strokeDash": 0, "strokeWidth": 6, @@ -1263,10 +1257,8 @@ "id": "(c1 <-> d1)[0]", "src": "c1", "srcArrow": "cf-many-required", - "srcLabel": "", "dst": "d1", "dstArrow": "cf-many-required", - "dstLabel": "", "opacity": 1, "strokeDash": 0, "strokeWidth": 1, @@ -1312,10 +1304,8 @@ "id": "(c2 <-> d2)[0]", "src": "c2", "srcArrow": "cf-many-required", - "srcLabel": "", "dst": "d2", "dstArrow": "cf-many-required", - "dstLabel": "", "opacity": 1, "strokeDash": 0, "strokeWidth": 3, @@ -1361,10 +1351,8 @@ "id": "(c3 <-> d3)[0]", "src": "c3", "srcArrow": "cf-many-required", - "srcLabel": "", "dst": "d3", "dstArrow": "cf-many-required", - "dstLabel": "", "opacity": 1, "strokeDash": 0, "strokeWidth": 6, @@ -1410,10 +1398,8 @@ "id": "(e1 <-> f1)[0]", "src": "e1", "srcArrow": "cf-one", - "srcLabel": "", "dst": "f1", "dstArrow": "cf-one", - "dstLabel": "", "opacity": 1, "strokeDash": 0, "strokeWidth": 1, @@ -1459,10 +1445,8 @@ "id": "(e2 <-> f2)[0]", "src": "e2", "srcArrow": "cf-one", - "srcLabel": "", "dst": "f2", "dstArrow": "cf-one", - "dstLabel": "", "opacity": 1, "strokeDash": 0, "strokeWidth": 3, @@ -1508,10 +1492,8 @@ "id": "(e3 <-> f3)[0]", "src": "e3", "srcArrow": "cf-one", - "srcLabel": "", "dst": "f3", "dstArrow": "cf-one", - "dstLabel": "", "opacity": 1, "strokeDash": 0, "strokeWidth": 6, @@ -1557,10 +1539,8 @@ "id": "(g1 <-> h1)[0]", "src": "g1", "srcArrow": "cf-one-required", - "srcLabel": "", "dst": "h1", "dstArrow": "cf-one-required", - "dstLabel": "", "opacity": 1, "strokeDash": 0, "strokeWidth": 1, @@ -1606,10 +1586,8 @@ "id": "(g2 <-> h2)[0]", "src": "g2", "srcArrow": "cf-one-required", - "srcLabel": "", "dst": "h2", "dstArrow": "cf-one-required", - "dstLabel": "", "opacity": 1, "strokeDash": 0, "strokeWidth": 3, @@ -1655,10 +1633,8 @@ "id": "(g3 <-> h3)[0]", "src": "g3", "srcArrow": "cf-one-required", - "srcLabel": "", "dst": "h3", "dstArrow": "cf-one-required", - "dstLabel": "", "opacity": 1, "strokeDash": 0, "strokeWidth": 6, @@ -1704,10 +1680,8 @@ "id": "(c <-> d)[0]", "src": "c", "srcArrow": "cf-many-required", - "srcLabel": "", "dst": "d", "dstArrow": "cf-one", - "dstLabel": "", "opacity": 1, "strokeDash": 0, "strokeWidth": 1, @@ -1753,10 +1727,8 @@ "id": "(d <-> f)[0]", "src": "d", "srcArrow": "cf-many-required", - "srcLabel": "", "dst": "f", "dstArrow": "cf-one", - "dstLabel": "", "opacity": 1, "strokeDash": 0, "strokeWidth": 1, 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 07d0c2d91c..dfa2d82055 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-96499239 .fill-N1{fill:#0A0F25;} + .d2-96499239 .fill-N2{fill:#676C7E;} + .d2-96499239 .fill-N3{fill:#9499AB;} + .d2-96499239 .fill-N4{fill:#CFD2DD;} + .d2-96499239 .fill-N5{fill:#DEE1EB;} + .d2-96499239 .fill-N6{fill:#EEF1F8;} + .d2-96499239 .fill-N7{fill:#FFFFFF;} + .d2-96499239 .fill-B1{fill:#0D32B2;} + .d2-96499239 .fill-B2{fill:#0D32B2;} + .d2-96499239 .fill-B3{fill:#E3E9FD;} + .d2-96499239 .fill-B4{fill:#E3E9FD;} + .d2-96499239 .fill-B5{fill:#EDF0FD;} + .d2-96499239 .fill-B6{fill:#F7F8FE;} + .d2-96499239 .fill-AA2{fill:#4A6FF3;} + .d2-96499239 .fill-AA4{fill:#EDF0FD;} + .d2-96499239 .fill-AA5{fill:#F7F8FE;} + .d2-96499239 .fill-AB4{fill:#EDF0FD;} + .d2-96499239 .fill-AB5{fill:#F7F8FE;} + .d2-96499239 .stroke-N1{stroke:#0A0F25;} + .d2-96499239 .stroke-N2{stroke:#676C7E;} + .d2-96499239 .stroke-N3{stroke:#9499AB;} + .d2-96499239 .stroke-N4{stroke:#CFD2DD;} + .d2-96499239 .stroke-N5{stroke:#DEE1EB;} + .d2-96499239 .stroke-N6{stroke:#EEF1F8;} + .d2-96499239 .stroke-N7{stroke:#FFFFFF;} + .d2-96499239 .stroke-B1{stroke:#0D32B2;} + .d2-96499239 .stroke-B2{stroke:#0D32B2;} + .d2-96499239 .stroke-B3{stroke:#E3E9FD;} + .d2-96499239 .stroke-B4{stroke:#E3E9FD;} + .d2-96499239 .stroke-B5{stroke:#EDF0FD;} + .d2-96499239 .stroke-B6{stroke:#F7F8FE;} + .d2-96499239 .stroke-AA2{stroke:#4A6FF3;} + .d2-96499239 .stroke-AA4{stroke:#EDF0FD;} + .d2-96499239 .stroke-AA5{stroke:#F7F8FE;} + .d2-96499239 .stroke-AB4{stroke:#EDF0FD;} + .d2-96499239 .stroke-AB5{stroke:#F7F8FE;} + .d2-96499239 .background-color-N1{background-color:#0A0F25;} + .d2-96499239 .background-color-N2{background-color:#676C7E;} + .d2-96499239 .background-color-N3{background-color:#9499AB;} + .d2-96499239 .background-color-N4{background-color:#CFD2DD;} + .d2-96499239 .background-color-N5{background-color:#DEE1EB;} + .d2-96499239 .background-color-N6{background-color:#EEF1F8;} + .d2-96499239 .background-color-N7{background-color:#FFFFFF;} + .d2-96499239 .background-color-B1{background-color:#0D32B2;} + .d2-96499239 .background-color-B2{background-color:#0D32B2;} + .d2-96499239 .background-color-B3{background-color:#E3E9FD;} + .d2-96499239 .background-color-B4{background-color:#E3E9FD;} + .d2-96499239 .background-color-B5{background-color:#EDF0FD;} + .d2-96499239 .background-color-B6{background-color:#F7F8FE;} + .d2-96499239 .background-color-AA2{background-color:#4A6FF3;} + .d2-96499239 .background-color-AA4{background-color:#EDF0FD;} + .d2-96499239 .background-color-AA5{background-color:#F7F8FE;} + .d2-96499239 .background-color-AB4{background-color:#EDF0FD;} + .d2-96499239 .background-color-AB5{background-color:#F7F8FE;} + .d2-96499239 .color-N1{color:#0A0F25;} + .d2-96499239 .color-N2{color:#676C7E;} + .d2-96499239 .color-N3{color:#9499AB;} + .d2-96499239 .color-N4{color:#CFD2DD;} + .d2-96499239 .color-N5{color:#DEE1EB;} + .d2-96499239 .color-N6{color:#EEF1F8;} + .d2-96499239 .color-N7{color:#FFFFFF;} + .d2-96499239 .color-B1{color:#0D32B2;} + .d2-96499239 .color-B2{color:#0D32B2;} + .d2-96499239 .color-B3{color:#E3E9FD;} + .d2-96499239 .color-B4{color:#E3E9FD;} + .d2-96499239 .color-B5{color:#EDF0FD;} + .d2-96499239 .color-B6{color:#F7F8FE;} + .d2-96499239 .color-AA2{color:#4A6FF3;} + .d2-96499239 .color-AA4{color:#EDF0FD;} + .d2-96499239 .color-AA5{color:#F7F8FE;} + .d2-96499239 .color-AB4{color:#EDF0FD;} + .d2-96499239 .color-AB5{color:#F7F8FE;}.appendix text.text{fill:#0A0F25}.md{--color-fg-default:#0A0F25;--color-fg-muted:#676C7E;--color-fg-subtle:#9499AB;--color-canvas-default:#FFFFFF;--color-canvas-subtle:#EEF1F8;--color-border-default:#0D32B2;--color-border-muted:#0D32B2;--color-neutral-muted:#EEF1F8;--color-accent-fg:#0D32B2;--color-accent-emphasis:#0D32B2;--color-attention-subtle:#676C7E;--color-danger-fg:red;}.sketch-overlay-B1{fill:url(#streaks-darker);mix-blend-mode:lighten}.sketch-overlay-B2{fill:url(#streaks-darker);mix-blend-mode:lighten}.sketch-overlay-B3{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-B4{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-B5{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-B6{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-AA2{fill:url(#streaks-dark);mix-blend-mode:overlay}.sketch-overlay-AA4{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-AA5{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-AB4{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-AB5{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-N1{fill:url(#streaks-darker);mix-blend-mode:lighten}.sketch-overlay-N2{fill:url(#streaks-dark);mix-blend-mode:overlay}.sketch-overlay-N3{fill:url(#streaks-normal);mix-blend-mode:color-burn}.sketch-overlay-N4{fill:url(#streaks-normal);mix-blend-mode:color-burn}.sketch-overlay-N5{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-N6{fill:url(#streaks-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 \ No newline at end of file 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 1101306911..cd8a64f35f 100644 --- a/e2etests/testdata/stable/crow_foot_arrowhead/elk/board.exp.json +++ b/e2etests/testdata/stable/crow_foot_arrowhead/elk/board.exp.json @@ -1116,10 +1116,8 @@ "id": "(a1 <-> b1)[0]", "src": "a1", "srcArrow": "cf-many", - "srcLabel": "", "dst": "b1", "dstArrow": "cf-many", - "dstLabel": "", "opacity": 1, "strokeDash": 0, "strokeWidth": 1, @@ -1156,10 +1154,8 @@ "id": "(a2 <-> b2)[0]", "src": "a2", "srcArrow": "cf-many", - "srcLabel": "", "dst": "b2", "dstArrow": "cf-many", - "dstLabel": "", "opacity": 1, "strokeDash": 0, "strokeWidth": 3, @@ -1196,10 +1192,8 @@ "id": "(a3 <-> b3)[0]", "src": "a3", "srcArrow": "cf-many", - "srcLabel": "", "dst": "b3", "dstArrow": "cf-many", - "dstLabel": "", "opacity": 1, "strokeDash": 0, "strokeWidth": 6, @@ -1236,10 +1230,8 @@ "id": "(c1 <-> d1)[0]", "src": "c1", "srcArrow": "cf-many-required", - "srcLabel": "", "dst": "d1", "dstArrow": "cf-many-required", - "dstLabel": "", "opacity": 1, "strokeDash": 0, "strokeWidth": 1, @@ -1276,10 +1268,8 @@ "id": "(c2 <-> d2)[0]", "src": "c2", "srcArrow": "cf-many-required", - "srcLabel": "", "dst": "d2", "dstArrow": "cf-many-required", - "dstLabel": "", "opacity": 1, "strokeDash": 0, "strokeWidth": 3, @@ -1316,10 +1306,8 @@ "id": "(c3 <-> d3)[0]", "src": "c3", "srcArrow": "cf-many-required", - "srcLabel": "", "dst": "d3", "dstArrow": "cf-many-required", - "dstLabel": "", "opacity": 1, "strokeDash": 0, "strokeWidth": 6, @@ -1356,10 +1344,8 @@ "id": "(e1 <-> f1)[0]", "src": "e1", "srcArrow": "cf-one", - "srcLabel": "", "dst": "f1", "dstArrow": "cf-one", - "dstLabel": "", "opacity": 1, "strokeDash": 0, "strokeWidth": 1, @@ -1396,10 +1382,8 @@ "id": "(e2 <-> f2)[0]", "src": "e2", "srcArrow": "cf-one", - "srcLabel": "", "dst": "f2", "dstArrow": "cf-one", - "dstLabel": "", "opacity": 1, "strokeDash": 0, "strokeWidth": 3, @@ -1436,10 +1420,8 @@ "id": "(e3 <-> f3)[0]", "src": "e3", "srcArrow": "cf-one", - "srcLabel": "", "dst": "f3", "dstArrow": "cf-one", - "dstLabel": "", "opacity": 1, "strokeDash": 0, "strokeWidth": 6, @@ -1476,10 +1458,8 @@ "id": "(g1 <-> h1)[0]", "src": "g1", "srcArrow": "cf-one-required", - "srcLabel": "", "dst": "h1", "dstArrow": "cf-one-required", - "dstLabel": "", "opacity": 1, "strokeDash": 0, "strokeWidth": 1, @@ -1516,10 +1496,8 @@ "id": "(g2 <-> h2)[0]", "src": "g2", "srcArrow": "cf-one-required", - "srcLabel": "", "dst": "h2", "dstArrow": "cf-one-required", - "dstLabel": "", "opacity": 1, "strokeDash": 0, "strokeWidth": 3, @@ -1556,10 +1534,8 @@ "id": "(g3 <-> h3)[0]", "src": "g3", "srcArrow": "cf-one-required", - "srcLabel": "", "dst": "h3", "dstArrow": "cf-one-required", - "dstLabel": "", "opacity": 1, "strokeDash": 0, "strokeWidth": 6, @@ -1596,10 +1572,8 @@ "id": "(c <-> d)[0]", "src": "c", "srcArrow": "cf-many-required", - "srcLabel": "", "dst": "d", "dstArrow": "cf-one", - "dstLabel": "", "opacity": 1, "strokeDash": 0, "strokeWidth": 1, @@ -1636,10 +1610,8 @@ "id": "(d <-> f)[0]", "src": "d", "srcArrow": "cf-many-required", - "srcLabel": "", "dst": "f", "dstArrow": "cf-one", - "dstLabel": "", "opacity": 1, "strokeDash": 0, "strokeWidth": 1, 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 354b4bb54d..fced241c54 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-409736971 .fill-N1{fill:#0A0F25;} + .d2-409736971 .fill-N2{fill:#676C7E;} + .d2-409736971 .fill-N3{fill:#9499AB;} + .d2-409736971 .fill-N4{fill:#CFD2DD;} + .d2-409736971 .fill-N5{fill:#DEE1EB;} + .d2-409736971 .fill-N6{fill:#EEF1F8;} + .d2-409736971 .fill-N7{fill:#FFFFFF;} + .d2-409736971 .fill-B1{fill:#0D32B2;} + .d2-409736971 .fill-B2{fill:#0D32B2;} + .d2-409736971 .fill-B3{fill:#E3E9FD;} + .d2-409736971 .fill-B4{fill:#E3E9FD;} + .d2-409736971 .fill-B5{fill:#EDF0FD;} + .d2-409736971 .fill-B6{fill:#F7F8FE;} + .d2-409736971 .fill-AA2{fill:#4A6FF3;} + .d2-409736971 .fill-AA4{fill:#EDF0FD;} + .d2-409736971 .fill-AA5{fill:#F7F8FE;} + .d2-409736971 .fill-AB4{fill:#EDF0FD;} + .d2-409736971 .fill-AB5{fill:#F7F8FE;} + .d2-409736971 .stroke-N1{stroke:#0A0F25;} + .d2-409736971 .stroke-N2{stroke:#676C7E;} + .d2-409736971 .stroke-N3{stroke:#9499AB;} + .d2-409736971 .stroke-N4{stroke:#CFD2DD;} + .d2-409736971 .stroke-N5{stroke:#DEE1EB;} + .d2-409736971 .stroke-N6{stroke:#EEF1F8;} + .d2-409736971 .stroke-N7{stroke:#FFFFFF;} + .d2-409736971 .stroke-B1{stroke:#0D32B2;} + .d2-409736971 .stroke-B2{stroke:#0D32B2;} + .d2-409736971 .stroke-B3{stroke:#E3E9FD;} + .d2-409736971 .stroke-B4{stroke:#E3E9FD;} + .d2-409736971 .stroke-B5{stroke:#EDF0FD;} + .d2-409736971 .stroke-B6{stroke:#F7F8FE;} + .d2-409736971 .stroke-AA2{stroke:#4A6FF3;} + .d2-409736971 .stroke-AA4{stroke:#EDF0FD;} + .d2-409736971 .stroke-AA5{stroke:#F7F8FE;} + .d2-409736971 .stroke-AB4{stroke:#EDF0FD;} + .d2-409736971 .stroke-AB5{stroke:#F7F8FE;} + .d2-409736971 .background-color-N1{background-color:#0A0F25;} + .d2-409736971 .background-color-N2{background-color:#676C7E;} + .d2-409736971 .background-color-N3{background-color:#9499AB;} + .d2-409736971 .background-color-N4{background-color:#CFD2DD;} + .d2-409736971 .background-color-N5{background-color:#DEE1EB;} + .d2-409736971 .background-color-N6{background-color:#EEF1F8;} + .d2-409736971 .background-color-N7{background-color:#FFFFFF;} + .d2-409736971 .background-color-B1{background-color:#0D32B2;} + .d2-409736971 .background-color-B2{background-color:#0D32B2;} + .d2-409736971 .background-color-B3{background-color:#E3E9FD;} + .d2-409736971 .background-color-B4{background-color:#E3E9FD;} + .d2-409736971 .background-color-B5{background-color:#EDF0FD;} + .d2-409736971 .background-color-B6{background-color:#F7F8FE;} + .d2-409736971 .background-color-AA2{background-color:#4A6FF3;} + .d2-409736971 .background-color-AA4{background-color:#EDF0FD;} + .d2-409736971 .background-color-AA5{background-color:#F7F8FE;} + .d2-409736971 .background-color-AB4{background-color:#EDF0FD;} + .d2-409736971 .background-color-AB5{background-color:#F7F8FE;} + .d2-409736971 .color-N1{color:#0A0F25;} + .d2-409736971 .color-N2{color:#676C7E;} + .d2-409736971 .color-N3{color:#9499AB;} + .d2-409736971 .color-N4{color:#CFD2DD;} + .d2-409736971 .color-N5{color:#DEE1EB;} + .d2-409736971 .color-N6{color:#EEF1F8;} + .d2-409736971 .color-N7{color:#FFFFFF;} + .d2-409736971 .color-B1{color:#0D32B2;} + .d2-409736971 .color-B2{color:#0D32B2;} + .d2-409736971 .color-B3{color:#E3E9FD;} + .d2-409736971 .color-B4{color:#E3E9FD;} + .d2-409736971 .color-B5{color:#EDF0FD;} + .d2-409736971 .color-B6{color:#F7F8FE;} + .d2-409736971 .color-AA2{color:#4A6FF3;} + .d2-409736971 .color-AA4{color:#EDF0FD;} + .d2-409736971 .color-AA5{color:#F7F8FE;} + .d2-409736971 .color-AB4{color:#EDF0FD;} + .d2-409736971 .color-AB5{color:#F7F8FE;}.appendix text.text{fill:#0A0F25}.md{--color-fg-default:#0A0F25;--color-fg-muted:#676C7E;--color-fg-subtle:#9499AB;--color-canvas-default:#FFFFFF;--color-canvas-subtle:#EEF1F8;--color-border-default:#0D32B2;--color-border-muted:#0D32B2;--color-neutral-muted:#EEF1F8;--color-accent-fg:#0D32B2;--color-accent-emphasis:#0D32B2;--color-attention-subtle:#676C7E;--color-danger-fg:red;}.sketch-overlay-B1{fill:url(#streaks-darker);mix-blend-mode:lighten}.sketch-overlay-B2{fill:url(#streaks-darker);mix-blend-mode:lighten}.sketch-overlay-B3{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-B4{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-B5{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-B6{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-AA2{fill:url(#streaks-dark);mix-blend-mode:overlay}.sketch-overlay-AA4{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-AA5{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-AB4{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-AB5{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-N1{fill:url(#streaks-darker);mix-blend-mode:lighten}.sketch-overlay-N2{fill:url(#streaks-dark);mix-blend-mode:overlay}.sketch-overlay-N3{fill:url(#streaks-normal);mix-blend-mode:color-burn}.sketch-overlay-N4{fill:url(#streaks-normal);mix-blend-mode:color-burn}.sketch-overlay-N5{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-N6{fill:url(#streaks-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 \ No newline at end of file diff --git a/e2etests/testdata/stable/dense/dagre/board.exp.json b/e2etests/testdata/stable/dense/dagre/board.exp.json index 7b6c9f79da..2769a54b8a 100644 --- a/e2etests/testdata/stable/dense/dagre/board.exp.json +++ b/e2etests/testdata/stable/dense/dagre/board.exp.json @@ -706,10 +706,8 @@ "id": "(a -> b)[0]", "src": "a", "srcArrow": "none", - "srcLabel": "", "dst": "b", "dstArrow": "triangle", - "dstLabel": "", "opacity": 1, "strokeDash": 0, "strokeWidth": 2, @@ -755,10 +753,8 @@ "id": "(c -> b)[0]", "src": "c", "srcArrow": "none", - "srcLabel": "", "dst": "b", "dstArrow": "triangle", - "dstLabel": "", "opacity": 1, "strokeDash": 0, "strokeWidth": 2, @@ -816,10 +812,8 @@ "id": "(d -> e)[0]", "src": "d", "srcArrow": "none", - "srcLabel": "", "dst": "e", "dstArrow": "triangle", - "dstLabel": "", "opacity": 1, "strokeDash": 0, "strokeWidth": 2, @@ -877,10 +871,8 @@ "id": "(f -> e)[0]", "src": "f", "srcArrow": "none", - "srcLabel": "", "dst": "e", "dstArrow": "triangle", - "dstLabel": "", "opacity": 1, "strokeDash": 0, "strokeWidth": 2, @@ -938,10 +930,8 @@ "id": "(b -> f)[0]", "src": "b", "srcArrow": "none", - "srcLabel": "", "dst": "f", "dstArrow": "triangle", - "dstLabel": "", "opacity": 1, "strokeDash": 0, "strokeWidth": 2, @@ -999,10 +989,8 @@ "id": "(b -> g)[0]", "src": "b", "srcArrow": "none", - "srcLabel": "", "dst": "g", "dstArrow": "triangle", - "dstLabel": "", "opacity": 1, "strokeDash": 0, "strokeWidth": 2, @@ -1048,10 +1036,8 @@ "id": "(g -> f)[0]", "src": "g", "srcArrow": "none", - "srcLabel": "", "dst": "f", "dstArrow": "triangle", - "dstLabel": "", "opacity": 1, "strokeDash": 0, "strokeWidth": 2, @@ -1097,10 +1083,8 @@ "id": "(b -> h)[0]", "src": "b", "srcArrow": "none", - "srcLabel": "", "dst": "h", "dstArrow": "triangle", - "dstLabel": "", "opacity": 1, "strokeDash": 0, "strokeWidth": 2, @@ -1146,10 +1130,8 @@ "id": "(b -> i)[0]", "src": "b", "srcArrow": "none", - "srcLabel": "", "dst": "i", "dstArrow": "triangle", - "dstLabel": "", "opacity": 1, "strokeDash": 0, "strokeWidth": 2, @@ -1255,10 +1237,8 @@ "id": "(b -> d)[0]", "src": "b", "srcArrow": "none", - "srcLabel": "", "dst": "d", "dstArrow": "triangle", - "dstLabel": "", "opacity": 1, "strokeDash": 0, "strokeWidth": 2, @@ -1316,10 +1296,8 @@ "id": "(j -> c)[0]", "src": "j", "srcArrow": "none", - "srcLabel": "", "dst": "c", "dstArrow": "triangle", - "dstLabel": "", "opacity": 1, "strokeDash": 0, "strokeWidth": 2, @@ -1365,10 +1343,8 @@ "id": "(j -> a)[0]", "src": "j", "srcArrow": "none", - "srcLabel": "", "dst": "a", "dstArrow": "triangle", - "dstLabel": "", "opacity": 1, "strokeDash": 0, "strokeWidth": 2, @@ -1426,10 +1402,8 @@ "id": "(b -> j)[0]", "src": "b", "srcArrow": "none", - "srcLabel": "", "dst": "j", "dstArrow": "triangle", - "dstLabel": "", "opacity": 1, "strokeDash": 0, "strokeWidth": 2, @@ -1475,10 +1449,8 @@ "id": "(i -> k)[0]", "src": "i", "srcArrow": "none", - "srcLabel": "", "dst": "k", "dstArrow": "triangle", - "dstLabel": "", "opacity": 1, "strokeDash": 0, "strokeWidth": 2, @@ -1524,10 +1496,8 @@ "id": "(d -> l)[0]", "src": "d", "srcArrow": "none", - "srcLabel": "", "dst": "l", "dstArrow": "triangle", - "dstLabel": "", "opacity": 1, "strokeDash": 0, "strokeWidth": 2, @@ -1573,10 +1543,8 @@ "id": "(l -> e)[0]", "src": "l", "srcArrow": "none", - "srcLabel": "", "dst": "e", "dstArrow": "triangle", - "dstLabel": "", "opacity": 1, "strokeDash": 0, "strokeWidth": 2, @@ -1622,10 +1590,8 @@ "id": "(m -> l)[0]", "src": "m", "srcArrow": "none", - "srcLabel": "", "dst": "l", "dstArrow": "triangle", - "dstLabel": "", "opacity": 1, "strokeDash": 0, "strokeWidth": 2, @@ -1671,10 +1637,8 @@ "id": "(m -> n)[0]", "src": "m", "srcArrow": "none", - "srcLabel": "", "dst": "n", "dstArrow": "triangle", - "dstLabel": "", "opacity": 1, "strokeDash": 0, "strokeWidth": 2, @@ -1720,10 +1684,8 @@ "id": "(n -> i)[0]", "src": "n", "srcArrow": "none", - "srcLabel": "", "dst": "i", "dstArrow": "triangle", - "dstLabel": "", "opacity": 1, "strokeDash": 0, "strokeWidth": 2, @@ -1769,10 +1731,8 @@ "id": "(d -> n)[0]", "src": "d", "srcArrow": "none", - "srcLabel": "", "dst": "n", "dstArrow": "triangle", - "dstLabel": "", "opacity": 1, "strokeDash": 0, "strokeWidth": 2, @@ -1818,10 +1778,8 @@ "id": "(f -> n)[0]", "src": "f", "srcArrow": "none", - "srcLabel": "", "dst": "n", "dstArrow": "triangle", - "dstLabel": "", "opacity": 1, "strokeDash": 0, "strokeWidth": 2, @@ -1867,10 +1825,8 @@ "id": "(b -> o)[0]", "src": "b", "srcArrow": "none", - "srcLabel": "", "dst": "o", "dstArrow": "triangle", - "dstLabel": "", "opacity": 1, "strokeDash": 0, "strokeWidth": 2, @@ -1916,10 +1872,8 @@ "id": "(p -> l)[0]", "src": "p", "srcArrow": "none", - "srcLabel": "", "dst": "l", "dstArrow": "triangle", - "dstLabel": "", "opacity": 1, "strokeDash": 0, "strokeWidth": 2, @@ -1965,10 +1919,8 @@ "id": "(e -> q)[0]", "src": "e", "srcArrow": "none", - "srcLabel": "", "dst": "q", "dstArrow": "triangle", - "dstLabel": "", "opacity": 1, "strokeDash": 0, "strokeWidth": 2, diff --git a/e2etests/testdata/stable/dense/dagre/sketch.exp.svg b/e2etests/testdata/stable/dense/dagre/sketch.exp.svg index 347c464741..cad3652d61 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-616552301 .fill-N1{fill:#0A0F25;} + .d2-616552301 .fill-N2{fill:#676C7E;} + .d2-616552301 .fill-N3{fill:#9499AB;} + .d2-616552301 .fill-N4{fill:#CFD2DD;} + .d2-616552301 .fill-N5{fill:#DEE1EB;} + .d2-616552301 .fill-N6{fill:#EEF1F8;} + .d2-616552301 .fill-N7{fill:#FFFFFF;} + .d2-616552301 .fill-B1{fill:#0D32B2;} + .d2-616552301 .fill-B2{fill:#0D32B2;} + .d2-616552301 .fill-B3{fill:#E3E9FD;} + .d2-616552301 .fill-B4{fill:#E3E9FD;} + .d2-616552301 .fill-B5{fill:#EDF0FD;} + .d2-616552301 .fill-B6{fill:#F7F8FE;} + .d2-616552301 .fill-AA2{fill:#4A6FF3;} + .d2-616552301 .fill-AA4{fill:#EDF0FD;} + .d2-616552301 .fill-AA5{fill:#F7F8FE;} + .d2-616552301 .fill-AB4{fill:#EDF0FD;} + .d2-616552301 .fill-AB5{fill:#F7F8FE;} + .d2-616552301 .stroke-N1{stroke:#0A0F25;} + .d2-616552301 .stroke-N2{stroke:#676C7E;} + .d2-616552301 .stroke-N3{stroke:#9499AB;} + .d2-616552301 .stroke-N4{stroke:#CFD2DD;} + .d2-616552301 .stroke-N5{stroke:#DEE1EB;} + .d2-616552301 .stroke-N6{stroke:#EEF1F8;} + .d2-616552301 .stroke-N7{stroke:#FFFFFF;} + .d2-616552301 .stroke-B1{stroke:#0D32B2;} + .d2-616552301 .stroke-B2{stroke:#0D32B2;} + .d2-616552301 .stroke-B3{stroke:#E3E9FD;} + .d2-616552301 .stroke-B4{stroke:#E3E9FD;} + .d2-616552301 .stroke-B5{stroke:#EDF0FD;} + .d2-616552301 .stroke-B6{stroke:#F7F8FE;} + .d2-616552301 .stroke-AA2{stroke:#4A6FF3;} + .d2-616552301 .stroke-AA4{stroke:#EDF0FD;} + .d2-616552301 .stroke-AA5{stroke:#F7F8FE;} + .d2-616552301 .stroke-AB4{stroke:#EDF0FD;} + .d2-616552301 .stroke-AB5{stroke:#F7F8FE;} + .d2-616552301 .background-color-N1{background-color:#0A0F25;} + .d2-616552301 .background-color-N2{background-color:#676C7E;} + .d2-616552301 .background-color-N3{background-color:#9499AB;} + .d2-616552301 .background-color-N4{background-color:#CFD2DD;} + .d2-616552301 .background-color-N5{background-color:#DEE1EB;} + .d2-616552301 .background-color-N6{background-color:#EEF1F8;} + .d2-616552301 .background-color-N7{background-color:#FFFFFF;} + .d2-616552301 .background-color-B1{background-color:#0D32B2;} + .d2-616552301 .background-color-B2{background-color:#0D32B2;} + .d2-616552301 .background-color-B3{background-color:#E3E9FD;} + .d2-616552301 .background-color-B4{background-color:#E3E9FD;} + .d2-616552301 .background-color-B5{background-color:#EDF0FD;} + .d2-616552301 .background-color-B6{background-color:#F7F8FE;} + .d2-616552301 .background-color-AA2{background-color:#4A6FF3;} + .d2-616552301 .background-color-AA4{background-color:#EDF0FD;} + .d2-616552301 .background-color-AA5{background-color:#F7F8FE;} + .d2-616552301 .background-color-AB4{background-color:#EDF0FD;} + .d2-616552301 .background-color-AB5{background-color:#F7F8FE;} + .d2-616552301 .color-N1{color:#0A0F25;} + .d2-616552301 .color-N2{color:#676C7E;} + .d2-616552301 .color-N3{color:#9499AB;} + .d2-616552301 .color-N4{color:#CFD2DD;} + .d2-616552301 .color-N5{color:#DEE1EB;} + .d2-616552301 .color-N6{color:#EEF1F8;} + .d2-616552301 .color-N7{color:#FFFFFF;} + .d2-616552301 .color-B1{color:#0D32B2;} + .d2-616552301 .color-B2{color:#0D32B2;} + .d2-616552301 .color-B3{color:#E3E9FD;} + .d2-616552301 .color-B4{color:#E3E9FD;} + .d2-616552301 .color-B5{color:#EDF0FD;} + .d2-616552301 .color-B6{color:#F7F8FE;} + .d2-616552301 .color-AA2{color:#4A6FF3;} + .d2-616552301 .color-AA4{color:#EDF0FD;} + .d2-616552301 .color-AA5{color:#F7F8FE;} + .d2-616552301 .color-AB4{color:#EDF0FD;} + .d2-616552301 .color-AB5{color:#F7F8FE;}.appendix text.text{fill:#0A0F25}.md{--color-fg-default:#0A0F25;--color-fg-muted:#676C7E;--color-fg-subtle:#9499AB;--color-canvas-default:#FFFFFF;--color-canvas-subtle:#EEF1F8;--color-border-default:#0D32B2;--color-border-muted:#0D32B2;--color-neutral-muted:#EEF1F8;--color-accent-fg:#0D32B2;--color-accent-emphasis:#0D32B2;--color-attention-subtle:#676C7E;--color-danger-fg:red;}.sketch-overlay-B1{fill:url(#streaks-darker);mix-blend-mode:lighten}.sketch-overlay-B2{fill:url(#streaks-darker);mix-blend-mode:lighten}.sketch-overlay-B3{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-B4{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-B5{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-B6{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-AA2{fill:url(#streaks-dark);mix-blend-mode:overlay}.sketch-overlay-AA4{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-AA5{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-AB4{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-AB5{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-N1{fill:url(#streaks-darker);mix-blend-mode:lighten}.sketch-overlay-N2{fill:url(#streaks-dark);mix-blend-mode:overlay}.sketch-overlay-N3{fill:url(#streaks-normal);mix-blend-mode:color-burn}.sketch-overlay-N4{fill:url(#streaks-normal);mix-blend-mode:color-burn}.sketch-overlay-N5{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-N6{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-N7{fill:url(#streaks-bright);mix-blend-mode:darken}.light-code{display: block}.dark-code{display: none}]]>abcdefghijklmnopq \ No newline at end of file diff --git a/e2etests/testdata/stable/dense/elk/board.exp.json b/e2etests/testdata/stable/dense/elk/board.exp.json index c3bb3761a3..a14339bf85 100644 --- a/e2etests/testdata/stable/dense/elk/board.exp.json +++ b/e2etests/testdata/stable/dense/elk/board.exp.json @@ -706,10 +706,8 @@ "id": "(a -> b)[0]", "src": "a", "srcArrow": "none", - "srcLabel": "", "dst": "b", "dstArrow": "triangle", - "dstLabel": "", "opacity": 1, "strokeDash": 0, "strokeWidth": 2, @@ -746,10 +744,8 @@ "id": "(c -> b)[0]", "src": "c", "srcArrow": "none", - "srcLabel": "", "dst": "b", "dstArrow": "triangle", - "dstLabel": "", "opacity": 1, "strokeDash": 0, "strokeWidth": 2, @@ -786,10 +782,8 @@ "id": "(d -> e)[0]", "src": "d", "srcArrow": "none", - "srcLabel": "", "dst": "e", "dstArrow": "triangle", - "dstLabel": "", "opacity": 1, "strokeDash": 0, "strokeWidth": 2, @@ -834,10 +828,8 @@ "id": "(f -> e)[0]", "src": "f", "srcArrow": "none", - "srcLabel": "", "dst": "e", "dstArrow": "triangle", - "dstLabel": "", "opacity": 1, "strokeDash": 0, "strokeWidth": 2, @@ -882,10 +874,8 @@ "id": "(b -> f)[0]", "src": "b", "srcArrow": "none", - "srcLabel": "", "dst": "f", "dstArrow": "triangle", - "dstLabel": "", "opacity": 1, "strokeDash": 0, "strokeWidth": 2, @@ -930,10 +920,8 @@ "id": "(b -> g)[0]", "src": "b", "srcArrow": "none", - "srcLabel": "", "dst": "g", "dstArrow": "triangle", - "dstLabel": "", "opacity": 1, "strokeDash": 0, "strokeWidth": 2, @@ -970,10 +958,8 @@ "id": "(g -> f)[0]", "src": "g", "srcArrow": "none", - "srcLabel": "", "dst": "f", "dstArrow": "triangle", - "dstLabel": "", "opacity": 1, "strokeDash": 0, "strokeWidth": 2, @@ -1018,10 +1004,8 @@ "id": "(b -> h)[0]", "src": "b", "srcArrow": "none", - "srcLabel": "", "dst": "h", "dstArrow": "triangle", - "dstLabel": "", "opacity": 1, "strokeDash": 0, "strokeWidth": 2, @@ -1066,10 +1050,8 @@ "id": "(b -> i)[0]", "src": "b", "srcArrow": "none", - "srcLabel": "", "dst": "i", "dstArrow": "triangle", - "dstLabel": "", "opacity": 1, "strokeDash": 0, "strokeWidth": 2, @@ -1122,10 +1104,8 @@ "id": "(b -> d)[0]", "src": "b", "srcArrow": "none", - "srcLabel": "", "dst": "d", "dstArrow": "triangle", - "dstLabel": "", "opacity": 1, "strokeDash": 0, "strokeWidth": 2, @@ -1170,10 +1150,8 @@ "id": "(j -> c)[0]", "src": "j", "srcArrow": "none", - "srcLabel": "", "dst": "c", "dstArrow": "triangle", - "dstLabel": "", "opacity": 1, "strokeDash": 0, "strokeWidth": 2, @@ -1218,10 +1196,8 @@ "id": "(j -> a)[0]", "src": "j", "srcArrow": "none", - "srcLabel": "", "dst": "a", "dstArrow": "triangle", - "dstLabel": "", "opacity": 1, "strokeDash": 0, "strokeWidth": 2, @@ -1258,10 +1234,8 @@ "id": "(b -> j)[0]", "src": "b", "srcArrow": "none", - "srcLabel": "", "dst": "j", "dstArrow": "triangle", - "dstLabel": "", "opacity": 1, "strokeDash": 0, "strokeWidth": 2, @@ -1306,10 +1280,8 @@ "id": "(i -> k)[0]", "src": "i", "srcArrow": "none", - "srcLabel": "", "dst": "k", "dstArrow": "triangle", - "dstLabel": "", "opacity": 1, "strokeDash": 0, "strokeWidth": 2, @@ -1346,10 +1318,8 @@ "id": "(d -> l)[0]", "src": "d", "srcArrow": "none", - "srcLabel": "", "dst": "l", "dstArrow": "triangle", - "dstLabel": "", "opacity": 1, "strokeDash": 0, "strokeWidth": 2, @@ -1394,10 +1364,8 @@ "id": "(l -> e)[0]", "src": "l", "srcArrow": "none", - "srcLabel": "", "dst": "e", "dstArrow": "triangle", - "dstLabel": "", "opacity": 1, "strokeDash": 0, "strokeWidth": 2, @@ -1442,10 +1410,8 @@ "id": "(m -> l)[0]", "src": "m", "srcArrow": "none", - "srcLabel": "", "dst": "l", "dstArrow": "triangle", - "dstLabel": "", "opacity": 1, "strokeDash": 0, "strokeWidth": 2, @@ -1490,10 +1456,8 @@ "id": "(m -> n)[0]", "src": "m", "srcArrow": "none", - "srcLabel": "", "dst": "n", "dstArrow": "triangle", - "dstLabel": "", "opacity": 1, "strokeDash": 0, "strokeWidth": 2, @@ -1538,10 +1502,8 @@ "id": "(n -> i)[0]", "src": "n", "srcArrow": "none", - "srcLabel": "", "dst": "i", "dstArrow": "triangle", - "dstLabel": "", "opacity": 1, "strokeDash": 0, "strokeWidth": 2, @@ -1586,10 +1548,8 @@ "id": "(d -> n)[0]", "src": "d", "srcArrow": "none", - "srcLabel": "", "dst": "n", "dstArrow": "triangle", - "dstLabel": "", "opacity": 1, "strokeDash": 0, "strokeWidth": 2, @@ -1634,10 +1594,8 @@ "id": "(f -> n)[0]", "src": "f", "srcArrow": "none", - "srcLabel": "", "dst": "n", "dstArrow": "triangle", - "dstLabel": "", "opacity": 1, "strokeDash": 0, "strokeWidth": 2, @@ -1682,10 +1640,8 @@ "id": "(b -> o)[0]", "src": "b", "srcArrow": "none", - "srcLabel": "", "dst": "o", "dstArrow": "triangle", - "dstLabel": "", "opacity": 1, "strokeDash": 0, "strokeWidth": 2, @@ -1730,10 +1686,8 @@ "id": "(p -> l)[0]", "src": "p", "srcArrow": "none", - "srcLabel": "", "dst": "l", "dstArrow": "triangle", - "dstLabel": "", "opacity": 1, "strokeDash": 0, "strokeWidth": 2, @@ -1770,10 +1724,8 @@ "id": "(e -> q)[0]", "src": "e", "srcArrow": "none", - "srcLabel": "", "dst": "q", "dstArrow": "triangle", - "dstLabel": "", "opacity": 1, "strokeDash": 0, "strokeWidth": 2, diff --git a/e2etests/testdata/stable/dense/elk/sketch.exp.svg b/e2etests/testdata/stable/dense/elk/sketch.exp.svg index 179ec2293e..e90ad2199f 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-1653900875 .fill-N1{fill:#0A0F25;} + .d2-1653900875 .fill-N2{fill:#676C7E;} + .d2-1653900875 .fill-N3{fill:#9499AB;} + .d2-1653900875 .fill-N4{fill:#CFD2DD;} + .d2-1653900875 .fill-N5{fill:#DEE1EB;} + .d2-1653900875 .fill-N6{fill:#EEF1F8;} + .d2-1653900875 .fill-N7{fill:#FFFFFF;} + .d2-1653900875 .fill-B1{fill:#0D32B2;} + .d2-1653900875 .fill-B2{fill:#0D32B2;} + .d2-1653900875 .fill-B3{fill:#E3E9FD;} + .d2-1653900875 .fill-B4{fill:#E3E9FD;} + .d2-1653900875 .fill-B5{fill:#EDF0FD;} + .d2-1653900875 .fill-B6{fill:#F7F8FE;} + .d2-1653900875 .fill-AA2{fill:#4A6FF3;} + .d2-1653900875 .fill-AA4{fill:#EDF0FD;} + .d2-1653900875 .fill-AA5{fill:#F7F8FE;} + .d2-1653900875 .fill-AB4{fill:#EDF0FD;} + .d2-1653900875 .fill-AB5{fill:#F7F8FE;} + .d2-1653900875 .stroke-N1{stroke:#0A0F25;} + .d2-1653900875 .stroke-N2{stroke:#676C7E;} + .d2-1653900875 .stroke-N3{stroke:#9499AB;} + .d2-1653900875 .stroke-N4{stroke:#CFD2DD;} + .d2-1653900875 .stroke-N5{stroke:#DEE1EB;} + .d2-1653900875 .stroke-N6{stroke:#EEF1F8;} + .d2-1653900875 .stroke-N7{stroke:#FFFFFF;} + .d2-1653900875 .stroke-B1{stroke:#0D32B2;} + .d2-1653900875 .stroke-B2{stroke:#0D32B2;} + .d2-1653900875 .stroke-B3{stroke:#E3E9FD;} + .d2-1653900875 .stroke-B4{stroke:#E3E9FD;} + .d2-1653900875 .stroke-B5{stroke:#EDF0FD;} + .d2-1653900875 .stroke-B6{stroke:#F7F8FE;} + .d2-1653900875 .stroke-AA2{stroke:#4A6FF3;} + .d2-1653900875 .stroke-AA4{stroke:#EDF0FD;} + .d2-1653900875 .stroke-AA5{stroke:#F7F8FE;} + .d2-1653900875 .stroke-AB4{stroke:#EDF0FD;} + .d2-1653900875 .stroke-AB5{stroke:#F7F8FE;} + .d2-1653900875 .background-color-N1{background-color:#0A0F25;} + .d2-1653900875 .background-color-N2{background-color:#676C7E;} + .d2-1653900875 .background-color-N3{background-color:#9499AB;} + .d2-1653900875 .background-color-N4{background-color:#CFD2DD;} + .d2-1653900875 .background-color-N5{background-color:#DEE1EB;} + .d2-1653900875 .background-color-N6{background-color:#EEF1F8;} + .d2-1653900875 .background-color-N7{background-color:#FFFFFF;} + .d2-1653900875 .background-color-B1{background-color:#0D32B2;} + .d2-1653900875 .background-color-B2{background-color:#0D32B2;} + .d2-1653900875 .background-color-B3{background-color:#E3E9FD;} + .d2-1653900875 .background-color-B4{background-color:#E3E9FD;} + .d2-1653900875 .background-color-B5{background-color:#EDF0FD;} + .d2-1653900875 .background-color-B6{background-color:#F7F8FE;} + .d2-1653900875 .background-color-AA2{background-color:#4A6FF3;} + .d2-1653900875 .background-color-AA4{background-color:#EDF0FD;} + .d2-1653900875 .background-color-AA5{background-color:#F7F8FE;} + .d2-1653900875 .background-color-AB4{background-color:#EDF0FD;} + .d2-1653900875 .background-color-AB5{background-color:#F7F8FE;} + .d2-1653900875 .color-N1{color:#0A0F25;} + .d2-1653900875 .color-N2{color:#676C7E;} + .d2-1653900875 .color-N3{color:#9499AB;} + .d2-1653900875 .color-N4{color:#CFD2DD;} + .d2-1653900875 .color-N5{color:#DEE1EB;} + .d2-1653900875 .color-N6{color:#EEF1F8;} + .d2-1653900875 .color-N7{color:#FFFFFF;} + .d2-1653900875 .color-B1{color:#0D32B2;} + .d2-1653900875 .color-B2{color:#0D32B2;} + .d2-1653900875 .color-B3{color:#E3E9FD;} + .d2-1653900875 .color-B4{color:#E3E9FD;} + .d2-1653900875 .color-B5{color:#EDF0FD;} + .d2-1653900875 .color-B6{color:#F7F8FE;} + .d2-1653900875 .color-AA2{color:#4A6FF3;} + .d2-1653900875 .color-AA4{color:#EDF0FD;} + .d2-1653900875 .color-AA5{color:#F7F8FE;} + .d2-1653900875 .color-AB4{color:#EDF0FD;} + .d2-1653900875 .color-AB5{color:#F7F8FE;}.appendix text.text{fill:#0A0F25}.md{--color-fg-default:#0A0F25;--color-fg-muted:#676C7E;--color-fg-subtle:#9499AB;--color-canvas-default:#FFFFFF;--color-canvas-subtle:#EEF1F8;--color-border-default:#0D32B2;--color-border-muted:#0D32B2;--color-neutral-muted:#EEF1F8;--color-accent-fg:#0D32B2;--color-accent-emphasis:#0D32B2;--color-attention-subtle:#676C7E;--color-danger-fg:red;}.sketch-overlay-B1{fill:url(#streaks-darker);mix-blend-mode:lighten}.sketch-overlay-B2{fill:url(#streaks-darker);mix-blend-mode:lighten}.sketch-overlay-B3{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-B4{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-B5{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-B6{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-AA2{fill:url(#streaks-dark);mix-blend-mode:overlay}.sketch-overlay-AA4{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-AA5{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-AB4{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-AB5{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-N1{fill:url(#streaks-darker);mix-blend-mode:lighten}.sketch-overlay-N2{fill:url(#streaks-dark);mix-blend-mode:overlay}.sketch-overlay-N3{fill:url(#streaks-normal);mix-blend-mode:color-burn}.sketch-overlay-N4{fill:url(#streaks-normal);mix-blend-mode:color-burn}.sketch-overlay-N5{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-N6{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-N7{fill:url(#streaks-bright);mix-blend-mode:darken}.light-code{display: block}.dark-code{display: none}]]>abcdefghijklmnopq \ No newline at end of file diff --git a/e2etests/testdata/stable/different_subgraphs/dagre/board.exp.json b/e2etests/testdata/stable/different_subgraphs/dagre/board.exp.json index d23f99164b..02af5b8bee 100644 --- a/e2etests/testdata/stable/different_subgraphs/dagre/board.exp.json +++ b/e2etests/testdata/stable/different_subgraphs/dagre/board.exp.json @@ -911,10 +911,8 @@ "id": "(a -> tree)[0]", "src": "a", "srcArrow": "none", - "srcLabel": "", "dst": "tree", "dstArrow": "triangle", - "dstLabel": "", "opacity": 1, "strokeDash": 0, "strokeWidth": 2, @@ -960,10 +958,8 @@ "id": "(a -> and)[0]", "src": "a", "srcArrow": "none", - "srcLabel": "", "dst": "and", "dstArrow": "triangle", - "dstLabel": "", "opacity": 1, "strokeDash": 0, "strokeWidth": 2, @@ -1009,10 +1005,8 @@ "id": "(a -> nodes)[0]", "src": "a", "srcArrow": "none", - "srcLabel": "", "dst": "nodes", "dstArrow": "triangle", - "dstLabel": "", "opacity": 1, "strokeDash": 0, "strokeWidth": 2, @@ -1058,10 +1052,8 @@ "id": "(and -> some)[0]", "src": "and", "srcArrow": "none", - "srcLabel": "", "dst": "some", "dstArrow": "triangle", - "dstLabel": "", "opacity": 1, "strokeDash": 0, "strokeWidth": 2, @@ -1107,10 +1099,8 @@ "id": "(tree -> more)[0]", "src": "tree", "srcArrow": "none", - "srcLabel": "", "dst": "more", "dstArrow": "triangle", - "dstLabel": "", "opacity": 1, "strokeDash": 0, "strokeWidth": 2, @@ -1156,10 +1146,8 @@ "id": "(tree -> many)[0]", "src": "tree", "srcArrow": "none", - "srcLabel": "", "dst": "many", "dstArrow": "triangle", - "dstLabel": "", "opacity": 1, "strokeDash": 0, "strokeWidth": 2, @@ -1205,10 +1193,8 @@ "id": "(then -> here)[0]", "src": "then", "srcArrow": "none", - "srcLabel": "", "dst": "here", "dstArrow": "triangle", - "dstLabel": "", "opacity": 1, "strokeDash": 0, "strokeWidth": 2, @@ -1254,10 +1240,8 @@ "id": "(here -> you)[0]", "src": "here", "srcArrow": "none", - "srcLabel": "", "dst": "you", "dstArrow": "triangle", - "dstLabel": "", "opacity": 1, "strokeDash": 0, "strokeWidth": 2, @@ -1303,10 +1287,8 @@ "id": "(have -> hierarchy)[0]", "src": "have", "srcArrow": "none", - "srcLabel": "", "dst": "hierarchy", "dstArrow": "triangle", - "dstLabel": "", "opacity": 1, "strokeDash": 0, "strokeWidth": 2, @@ -1352,10 +1334,8 @@ "id": "(then -> hierarchy)[0]", "src": "then", "srcArrow": "none", - "srcLabel": "", "dst": "hierarchy", "dstArrow": "triangle", - "dstLabel": "", "opacity": 1, "strokeDash": 0, "strokeWidth": 2, @@ -1401,10 +1381,8 @@ "id": "(finally -> another)[0]", "src": "finally", "srcArrow": "none", - "srcLabel": "", "dst": "another", "dstArrow": "triangle", - "dstLabel": "", "opacity": 1, "strokeDash": 0, "strokeWidth": 2, @@ -1450,10 +1428,8 @@ "id": "(another -> of)[0]", "src": "another", "srcArrow": "none", - "srcLabel": "", "dst": "of", "dstArrow": "triangle", - "dstLabel": "", "opacity": 1, "strokeDash": 0, "strokeWidth": 2, @@ -1499,10 +1475,8 @@ "id": "(nesting -> trees)[0]", "src": "nesting", "srcArrow": "none", - "srcLabel": "", "dst": "trees", "dstArrow": "triangle", - "dstLabel": "", "opacity": 1, "strokeDash": 0, "strokeWidth": 2, @@ -1548,10 +1522,8 @@ "id": "(finally -> trees)[0]", "src": "finally", "srcArrow": "none", - "srcLabel": "", "dst": "trees", "dstArrow": "triangle", - "dstLabel": "", "opacity": 1, "strokeDash": 0, "strokeWidth": 2, @@ -1597,10 +1569,8 @@ "id": "finally.(a -> tree)[0]", "src": "finally.a", "srcArrow": "none", - "srcLabel": "", "dst": "finally.tree", "dstArrow": "triangle", - "dstLabel": "", "opacity": 1, "strokeDash": 0, "strokeWidth": 2, @@ -1646,10 +1616,8 @@ "id": "finally.(inside -> a)[0]", "src": "finally.inside", "srcArrow": "none", - "srcLabel": "", "dst": "finally.a", "dstArrow": "triangle", - "dstLabel": "", "opacity": 1, "strokeDash": 0, "strokeWidth": 2, @@ -1695,10 +1663,8 @@ "id": "finally.(tree -> hierarchy)[0]", "src": "finally.tree", "srcArrow": "none", - "srcLabel": "", "dst": "finally.hierarchy", "dstArrow": "triangle", - "dstLabel": "", "opacity": 1, "strokeDash": 0, "strokeWidth": 2, @@ -1744,10 +1710,8 @@ "id": "finally.(a -> root)[0]", "src": "finally.a", "srcArrow": "none", - "srcLabel": "", "dst": "finally.root", "dstArrow": "triangle", - "dstLabel": "", "opacity": 1, "strokeDash": 0, "strokeWidth": 2, diff --git a/e2etests/testdata/stable/different_subgraphs/dagre/sketch.exp.svg b/e2etests/testdata/stable/different_subgraphs/dagre/sketch.exp.svg index 5d94e81f54..380e7274a2 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-1448115080 .fill-N1{fill:#0A0F25;} + .d2-1448115080 .fill-N2{fill:#676C7E;} + .d2-1448115080 .fill-N3{fill:#9499AB;} + .d2-1448115080 .fill-N4{fill:#CFD2DD;} + .d2-1448115080 .fill-N5{fill:#DEE1EB;} + .d2-1448115080 .fill-N6{fill:#EEF1F8;} + .d2-1448115080 .fill-N7{fill:#FFFFFF;} + .d2-1448115080 .fill-B1{fill:#0D32B2;} + .d2-1448115080 .fill-B2{fill:#0D32B2;} + .d2-1448115080 .fill-B3{fill:#E3E9FD;} + .d2-1448115080 .fill-B4{fill:#E3E9FD;} + .d2-1448115080 .fill-B5{fill:#EDF0FD;} + .d2-1448115080 .fill-B6{fill:#F7F8FE;} + .d2-1448115080 .fill-AA2{fill:#4A6FF3;} + .d2-1448115080 .fill-AA4{fill:#EDF0FD;} + .d2-1448115080 .fill-AA5{fill:#F7F8FE;} + .d2-1448115080 .fill-AB4{fill:#EDF0FD;} + .d2-1448115080 .fill-AB5{fill:#F7F8FE;} + .d2-1448115080 .stroke-N1{stroke:#0A0F25;} + .d2-1448115080 .stroke-N2{stroke:#676C7E;} + .d2-1448115080 .stroke-N3{stroke:#9499AB;} + .d2-1448115080 .stroke-N4{stroke:#CFD2DD;} + .d2-1448115080 .stroke-N5{stroke:#DEE1EB;} + .d2-1448115080 .stroke-N6{stroke:#EEF1F8;} + .d2-1448115080 .stroke-N7{stroke:#FFFFFF;} + .d2-1448115080 .stroke-B1{stroke:#0D32B2;} + .d2-1448115080 .stroke-B2{stroke:#0D32B2;} + .d2-1448115080 .stroke-B3{stroke:#E3E9FD;} + .d2-1448115080 .stroke-B4{stroke:#E3E9FD;} + .d2-1448115080 .stroke-B5{stroke:#EDF0FD;} + .d2-1448115080 .stroke-B6{stroke:#F7F8FE;} + .d2-1448115080 .stroke-AA2{stroke:#4A6FF3;} + .d2-1448115080 .stroke-AA4{stroke:#EDF0FD;} + .d2-1448115080 .stroke-AA5{stroke:#F7F8FE;} + .d2-1448115080 .stroke-AB4{stroke:#EDF0FD;} + .d2-1448115080 .stroke-AB5{stroke:#F7F8FE;} + .d2-1448115080 .background-color-N1{background-color:#0A0F25;} + .d2-1448115080 .background-color-N2{background-color:#676C7E;} + .d2-1448115080 .background-color-N3{background-color:#9499AB;} + .d2-1448115080 .background-color-N4{background-color:#CFD2DD;} + .d2-1448115080 .background-color-N5{background-color:#DEE1EB;} + .d2-1448115080 .background-color-N6{background-color:#EEF1F8;} + .d2-1448115080 .background-color-N7{background-color:#FFFFFF;} + .d2-1448115080 .background-color-B1{background-color:#0D32B2;} + .d2-1448115080 .background-color-B2{background-color:#0D32B2;} + .d2-1448115080 .background-color-B3{background-color:#E3E9FD;} + .d2-1448115080 .background-color-B4{background-color:#E3E9FD;} + .d2-1448115080 .background-color-B5{background-color:#EDF0FD;} + .d2-1448115080 .background-color-B6{background-color:#F7F8FE;} + .d2-1448115080 .background-color-AA2{background-color:#4A6FF3;} + .d2-1448115080 .background-color-AA4{background-color:#EDF0FD;} + .d2-1448115080 .background-color-AA5{background-color:#F7F8FE;} + .d2-1448115080 .background-color-AB4{background-color:#EDF0FD;} + .d2-1448115080 .background-color-AB5{background-color:#F7F8FE;} + .d2-1448115080 .color-N1{color:#0A0F25;} + .d2-1448115080 .color-N2{color:#676C7E;} + .d2-1448115080 .color-N3{color:#9499AB;} + .d2-1448115080 .color-N4{color:#CFD2DD;} + .d2-1448115080 .color-N5{color:#DEE1EB;} + .d2-1448115080 .color-N6{color:#EEF1F8;} + .d2-1448115080 .color-N7{color:#FFFFFF;} + .d2-1448115080 .color-B1{color:#0D32B2;} + .d2-1448115080 .color-B2{color:#0D32B2;} + .d2-1448115080 .color-B3{color:#E3E9FD;} + .d2-1448115080 .color-B4{color:#E3E9FD;} + .d2-1448115080 .color-B5{color:#EDF0FD;} + .d2-1448115080 .color-B6{color:#F7F8FE;} + .d2-1448115080 .color-AA2{color:#4A6FF3;} + .d2-1448115080 .color-AA4{color:#EDF0FD;} + .d2-1448115080 .color-AA5{color:#F7F8FE;} + .d2-1448115080 .color-AB4{color:#EDF0FD;} + .d2-1448115080 .color-AB5{color:#F7F8FE;}.appendix text.text{fill:#0A0F25}.md{--color-fg-default:#0A0F25;--color-fg-muted:#676C7E;--color-fg-subtle:#9499AB;--color-canvas-default:#FFFFFF;--color-canvas-subtle:#EEF1F8;--color-border-default:#0D32B2;--color-border-muted:#0D32B2;--color-neutral-muted:#EEF1F8;--color-accent-fg:#0D32B2;--color-accent-emphasis:#0D32B2;--color-attention-subtle:#676C7E;--color-danger-fg:red;}.sketch-overlay-B1{fill:url(#streaks-darker);mix-blend-mode:lighten}.sketch-overlay-B2{fill:url(#streaks-darker);mix-blend-mode:lighten}.sketch-overlay-B3{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-B4{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-B5{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-B6{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-AA2{fill:url(#streaks-dark);mix-blend-mode:overlay}.sketch-overlay-AA4{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-AA5{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-AB4{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-AB5{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-N1{fill:url(#streaks-darker);mix-blend-mode:lighten}.sketch-overlay-N2{fill:url(#streaks-dark);mix-blend-mode:overlay}.sketch-overlay-N3{fill:url(#streaks-normal);mix-blend-mode:color-burn}.sketch-overlay-N4{fill:url(#streaks-normal);mix-blend-mode:color-burn}.sketch-overlay-N5{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-N6{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-N7{fill:url(#streaks-bright);mix-blend-mode:darken}.light-code{display: block}.dark-code{display: none}]]>atreeandnodessomemoremanythenhereyouhavehierarchyfinallyanotherofnestingtreesatreeinsidehierarchyroot \ No newline at end of file diff --git a/e2etests/testdata/stable/different_subgraphs/elk/board.exp.json b/e2etests/testdata/stable/different_subgraphs/elk/board.exp.json index bea07e5b92..b96584d1d7 100644 --- a/e2etests/testdata/stable/different_subgraphs/elk/board.exp.json +++ b/e2etests/testdata/stable/different_subgraphs/elk/board.exp.json @@ -911,10 +911,8 @@ "id": "(a -> tree)[0]", "src": "a", "srcArrow": "none", - "srcLabel": "", "dst": "tree", "dstArrow": "triangle", - "dstLabel": "", "opacity": 1, "strokeDash": 0, "strokeWidth": 2, @@ -959,10 +957,8 @@ "id": "(a -> and)[0]", "src": "a", "srcArrow": "none", - "srcLabel": "", "dst": "and", "dstArrow": "triangle", - "dstLabel": "", "opacity": 1, "strokeDash": 0, "strokeWidth": 2, @@ -999,10 +995,8 @@ "id": "(a -> nodes)[0]", "src": "a", "srcArrow": "none", - "srcLabel": "", "dst": "nodes", "dstArrow": "triangle", - "dstLabel": "", "opacity": 1, "strokeDash": 0, "strokeWidth": 2, @@ -1047,10 +1041,8 @@ "id": "(and -> some)[0]", "src": "and", "srcArrow": "none", - "srcLabel": "", "dst": "some", "dstArrow": "triangle", - "dstLabel": "", "opacity": 1, "strokeDash": 0, "strokeWidth": 2, @@ -1087,10 +1079,8 @@ "id": "(tree -> more)[0]", "src": "tree", "srcArrow": "none", - "srcLabel": "", "dst": "more", "dstArrow": "triangle", - "dstLabel": "", "opacity": 1, "strokeDash": 0, "strokeWidth": 2, @@ -1135,10 +1125,8 @@ "id": "(tree -> many)[0]", "src": "tree", "srcArrow": "none", - "srcLabel": "", "dst": "many", "dstArrow": "triangle", - "dstLabel": "", "opacity": 1, "strokeDash": 0, "strokeWidth": 2, @@ -1183,10 +1171,8 @@ "id": "(then -> here)[0]", "src": "then", "srcArrow": "none", - "srcLabel": "", "dst": "here", "dstArrow": "triangle", - "dstLabel": "", "opacity": 1, "strokeDash": 0, "strokeWidth": 2, @@ -1223,10 +1209,8 @@ "id": "(here -> you)[0]", "src": "here", "srcArrow": "none", - "srcLabel": "", "dst": "you", "dstArrow": "triangle", - "dstLabel": "", "opacity": 1, "strokeDash": 0, "strokeWidth": 2, @@ -1263,10 +1247,8 @@ "id": "(have -> hierarchy)[0]", "src": "have", "srcArrow": "none", - "srcLabel": "", "dst": "hierarchy", "dstArrow": "triangle", - "dstLabel": "", "opacity": 1, "strokeDash": 0, "strokeWidth": 2, @@ -1303,10 +1285,8 @@ "id": "(then -> hierarchy)[0]", "src": "then", "srcArrow": "none", - "srcLabel": "", "dst": "hierarchy", "dstArrow": "triangle", - "dstLabel": "", "opacity": 1, "strokeDash": 0, "strokeWidth": 2, @@ -1351,10 +1331,8 @@ "id": "(finally -> another)[0]", "src": "finally", "srcArrow": "none", - "srcLabel": "", "dst": "another", "dstArrow": "triangle", - "dstLabel": "", "opacity": 1, "strokeDash": 0, "strokeWidth": 2, @@ -1391,10 +1369,8 @@ "id": "(another -> of)[0]", "src": "another", "srcArrow": "none", - "srcLabel": "", "dst": "of", "dstArrow": "triangle", - "dstLabel": "", "opacity": 1, "strokeDash": 0, "strokeWidth": 2, @@ -1431,10 +1407,8 @@ "id": "(nesting -> trees)[0]", "src": "nesting", "srcArrow": "none", - "srcLabel": "", "dst": "trees", "dstArrow": "triangle", - "dstLabel": "", "opacity": 1, "strokeDash": 0, "strokeWidth": 2, @@ -1471,10 +1445,8 @@ "id": "(finally -> trees)[0]", "src": "finally", "srcArrow": "none", - "srcLabel": "", "dst": "trees", "dstArrow": "triangle", - "dstLabel": "", "opacity": 1, "strokeDash": 0, "strokeWidth": 2, @@ -1519,10 +1491,8 @@ "id": "finally.(a -> tree)[0]", "src": "finally.a", "srcArrow": "none", - "srcLabel": "", "dst": "finally.tree", "dstArrow": "triangle", - "dstLabel": "", "opacity": 1, "strokeDash": 0, "strokeWidth": 2, @@ -1567,10 +1537,8 @@ "id": "finally.(inside -> a)[0]", "src": "finally.inside", "srcArrow": "none", - "srcLabel": "", "dst": "finally.a", "dstArrow": "triangle", - "dstLabel": "", "opacity": 1, "strokeDash": 0, "strokeWidth": 2, @@ -1607,10 +1575,8 @@ "id": "finally.(tree -> hierarchy)[0]", "src": "finally.tree", "srcArrow": "none", - "srcLabel": "", "dst": "finally.hierarchy", "dstArrow": "triangle", - "dstLabel": "", "opacity": 1, "strokeDash": 0, "strokeWidth": 2, @@ -1647,10 +1613,8 @@ "id": "finally.(a -> root)[0]", "src": "finally.a", "srcArrow": "none", - "srcLabel": "", "dst": "finally.root", "dstArrow": "triangle", - "dstLabel": "", "opacity": 1, "strokeDash": 0, "strokeWidth": 2, diff --git a/e2etests/testdata/stable/different_subgraphs/elk/sketch.exp.svg b/e2etests/testdata/stable/different_subgraphs/elk/sketch.exp.svg index 3858c51b78..b5e1a2cfbe 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-3794180520 .fill-N1{fill:#0A0F25;} + .d2-3794180520 .fill-N2{fill:#676C7E;} + .d2-3794180520 .fill-N3{fill:#9499AB;} + .d2-3794180520 .fill-N4{fill:#CFD2DD;} + .d2-3794180520 .fill-N5{fill:#DEE1EB;} + .d2-3794180520 .fill-N6{fill:#EEF1F8;} + .d2-3794180520 .fill-N7{fill:#FFFFFF;} + .d2-3794180520 .fill-B1{fill:#0D32B2;} + .d2-3794180520 .fill-B2{fill:#0D32B2;} + .d2-3794180520 .fill-B3{fill:#E3E9FD;} + .d2-3794180520 .fill-B4{fill:#E3E9FD;} + .d2-3794180520 .fill-B5{fill:#EDF0FD;} + .d2-3794180520 .fill-B6{fill:#F7F8FE;} + .d2-3794180520 .fill-AA2{fill:#4A6FF3;} + .d2-3794180520 .fill-AA4{fill:#EDF0FD;} + .d2-3794180520 .fill-AA5{fill:#F7F8FE;} + .d2-3794180520 .fill-AB4{fill:#EDF0FD;} + .d2-3794180520 .fill-AB5{fill:#F7F8FE;} + .d2-3794180520 .stroke-N1{stroke:#0A0F25;} + .d2-3794180520 .stroke-N2{stroke:#676C7E;} + .d2-3794180520 .stroke-N3{stroke:#9499AB;} + .d2-3794180520 .stroke-N4{stroke:#CFD2DD;} + .d2-3794180520 .stroke-N5{stroke:#DEE1EB;} + .d2-3794180520 .stroke-N6{stroke:#EEF1F8;} + .d2-3794180520 .stroke-N7{stroke:#FFFFFF;} + .d2-3794180520 .stroke-B1{stroke:#0D32B2;} + .d2-3794180520 .stroke-B2{stroke:#0D32B2;} + .d2-3794180520 .stroke-B3{stroke:#E3E9FD;} + .d2-3794180520 .stroke-B4{stroke:#E3E9FD;} + .d2-3794180520 .stroke-B5{stroke:#EDF0FD;} + .d2-3794180520 .stroke-B6{stroke:#F7F8FE;} + .d2-3794180520 .stroke-AA2{stroke:#4A6FF3;} + .d2-3794180520 .stroke-AA4{stroke:#EDF0FD;} + .d2-3794180520 .stroke-AA5{stroke:#F7F8FE;} + .d2-3794180520 .stroke-AB4{stroke:#EDF0FD;} + .d2-3794180520 .stroke-AB5{stroke:#F7F8FE;} + .d2-3794180520 .background-color-N1{background-color:#0A0F25;} + .d2-3794180520 .background-color-N2{background-color:#676C7E;} + .d2-3794180520 .background-color-N3{background-color:#9499AB;} + .d2-3794180520 .background-color-N4{background-color:#CFD2DD;} + .d2-3794180520 .background-color-N5{background-color:#DEE1EB;} + .d2-3794180520 .background-color-N6{background-color:#EEF1F8;} + .d2-3794180520 .background-color-N7{background-color:#FFFFFF;} + .d2-3794180520 .background-color-B1{background-color:#0D32B2;} + .d2-3794180520 .background-color-B2{background-color:#0D32B2;} + .d2-3794180520 .background-color-B3{background-color:#E3E9FD;} + .d2-3794180520 .background-color-B4{background-color:#E3E9FD;} + .d2-3794180520 .background-color-B5{background-color:#EDF0FD;} + .d2-3794180520 .background-color-B6{background-color:#F7F8FE;} + .d2-3794180520 .background-color-AA2{background-color:#4A6FF3;} + .d2-3794180520 .background-color-AA4{background-color:#EDF0FD;} + .d2-3794180520 .background-color-AA5{background-color:#F7F8FE;} + .d2-3794180520 .background-color-AB4{background-color:#EDF0FD;} + .d2-3794180520 .background-color-AB5{background-color:#F7F8FE;} + .d2-3794180520 .color-N1{color:#0A0F25;} + .d2-3794180520 .color-N2{color:#676C7E;} + .d2-3794180520 .color-N3{color:#9499AB;} + .d2-3794180520 .color-N4{color:#CFD2DD;} + .d2-3794180520 .color-N5{color:#DEE1EB;} + .d2-3794180520 .color-N6{color:#EEF1F8;} + .d2-3794180520 .color-N7{color:#FFFFFF;} + .d2-3794180520 .color-B1{color:#0D32B2;} + .d2-3794180520 .color-B2{color:#0D32B2;} + .d2-3794180520 .color-B3{color:#E3E9FD;} + .d2-3794180520 .color-B4{color:#E3E9FD;} + .d2-3794180520 .color-B5{color:#EDF0FD;} + .d2-3794180520 .color-B6{color:#F7F8FE;} + .d2-3794180520 .color-AA2{color:#4A6FF3;} + .d2-3794180520 .color-AA4{color:#EDF0FD;} + .d2-3794180520 .color-AA5{color:#F7F8FE;} + .d2-3794180520 .color-AB4{color:#EDF0FD;} + .d2-3794180520 .color-AB5{color:#F7F8FE;}.appendix text.text{fill:#0A0F25}.md{--color-fg-default:#0A0F25;--color-fg-muted:#676C7E;--color-fg-subtle:#9499AB;--color-canvas-default:#FFFFFF;--color-canvas-subtle:#EEF1F8;--color-border-default:#0D32B2;--color-border-muted:#0D32B2;--color-neutral-muted:#EEF1F8;--color-accent-fg:#0D32B2;--color-accent-emphasis:#0D32B2;--color-attention-subtle:#676C7E;--color-danger-fg:red;}.sketch-overlay-B1{fill:url(#streaks-darker);mix-blend-mode:lighten}.sketch-overlay-B2{fill:url(#streaks-darker);mix-blend-mode:lighten}.sketch-overlay-B3{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-B4{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-B5{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-B6{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-AA2{fill:url(#streaks-dark);mix-blend-mode:overlay}.sketch-overlay-AA4{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-AA5{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-AB4{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-AB5{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-N1{fill:url(#streaks-darker);mix-blend-mode:lighten}.sketch-overlay-N2{fill:url(#streaks-dark);mix-blend-mode:overlay}.sketch-overlay-N3{fill:url(#streaks-normal);mix-blend-mode:color-burn}.sketch-overlay-N4{fill:url(#streaks-normal);mix-blend-mode:color-burn}.sketch-overlay-N5{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-N6{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-N7{fill:url(#streaks-bright);mix-blend-mode:darken}.light-code{display: block}.dark-code{display: none}]]>atreeandnodessomemoremanythenhereyouhavehierarchyfinallyanotherofnestingtreesatreeinsidehierarchyroot \ No newline at end of file diff --git a/e2etests/testdata/stable/direction/dagre/board.exp.json b/e2etests/testdata/stable/direction/dagre/board.exp.json index a8b81a5a5a..26c15544e2 100644 --- a/e2etests/testdata/stable/direction/dagre/board.exp.json +++ b/e2etests/testdata/stable/direction/dagre/board.exp.json @@ -624,10 +624,8 @@ "id": "(a -> b)[0]", "src": "a", "srcArrow": "none", - "srcLabel": "", "dst": "b", "dstArrow": "triangle", - "dstLabel": "", "opacity": 1, "strokeDash": 0, "strokeWidth": 2, @@ -673,10 +671,8 @@ "id": "(b -> c)[0]", "src": "b", "srcArrow": "none", - "srcLabel": "", "dst": "c", "dstArrow": "triangle", - "dstLabel": "", "opacity": 1, "strokeDash": 0, "strokeWidth": 2, @@ -722,10 +718,8 @@ "id": "(c -> d)[0]", "src": "c", "srcArrow": "none", - "srcLabel": "", "dst": "d", "dstArrow": "triangle", - "dstLabel": "", "opacity": 1, "strokeDash": 0, "strokeWidth": 2, @@ -771,10 +765,8 @@ "id": "(d -> e)[0]", "src": "d", "srcArrow": "none", - "srcLabel": "", "dst": "e", "dstArrow": "triangle", - "dstLabel": "", "opacity": 1, "strokeDash": 0, "strokeWidth": 2, @@ -820,10 +812,8 @@ "id": "b.(1 -> 2)[0]", "src": "b.1", "srcArrow": "none", - "srcLabel": "", "dst": "b.2", "dstArrow": "triangle", - "dstLabel": "", "opacity": 1, "strokeDash": 0, "strokeWidth": 2, @@ -869,10 +859,8 @@ "id": "b.(2 -> 3)[0]", "src": "b.2", "srcArrow": "none", - "srcLabel": "", "dst": "b.3", "dstArrow": "triangle", - "dstLabel": "", "opacity": 1, "strokeDash": 0, "strokeWidth": 2, @@ -918,10 +906,8 @@ "id": "b.(3 -> 4)[0]", "src": "b.3", "srcArrow": "none", - "srcLabel": "", "dst": "b.4", "dstArrow": "triangle", - "dstLabel": "", "opacity": 1, "strokeDash": 0, "strokeWidth": 2, @@ -967,10 +953,8 @@ "id": "b.(4 -> 5)[0]", "src": "b.4", "srcArrow": "none", - "srcLabel": "", "dst": "b.5", "dstArrow": "triangle", - "dstLabel": "", "opacity": 1, "strokeDash": 0, "strokeWidth": 2, @@ -1016,10 +1000,8 @@ "id": "b.2.(a -> b)[0]", "src": "b.2.a", "srcArrow": "none", - "srcLabel": "", "dst": "b.2.b", "dstArrow": "triangle", - "dstLabel": "", "opacity": 1, "strokeDash": 0, "strokeWidth": 2, @@ -1065,10 +1047,8 @@ "id": "b.2.(b -> c)[0]", "src": "b.2.b", "srcArrow": "none", - "srcLabel": "", "dst": "b.2.c", "dstArrow": "triangle", - "dstLabel": "", "opacity": 1, "strokeDash": 0, "strokeWidth": 2, @@ -1114,10 +1094,8 @@ "id": "b.2.(c -> d)[0]", "src": "b.2.c", "srcArrow": "none", - "srcLabel": "", "dst": "b.2.d", "dstArrow": "triangle", - "dstLabel": "", "opacity": 1, "strokeDash": 0, "strokeWidth": 2, @@ -1163,10 +1141,8 @@ "id": "b.2.(d -> e)[0]", "src": "b.2.d", "srcArrow": "none", - "srcLabel": "", "dst": "b.2.e", "dstArrow": "triangle", - "dstLabel": "", "opacity": 1, "strokeDash": 0, "strokeWidth": 2, diff --git a/e2etests/testdata/stable/direction/dagre/sketch.exp.svg b/e2etests/testdata/stable/direction/dagre/sketch.exp.svg index 048a80e90b..c85b23b433 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-2747961624 .fill-N1{fill:#0A0F25;} + .d2-2747961624 .fill-N2{fill:#676C7E;} + .d2-2747961624 .fill-N3{fill:#9499AB;} + .d2-2747961624 .fill-N4{fill:#CFD2DD;} + .d2-2747961624 .fill-N5{fill:#DEE1EB;} + .d2-2747961624 .fill-N6{fill:#EEF1F8;} + .d2-2747961624 .fill-N7{fill:#FFFFFF;} + .d2-2747961624 .fill-B1{fill:#0D32B2;} + .d2-2747961624 .fill-B2{fill:#0D32B2;} + .d2-2747961624 .fill-B3{fill:#E3E9FD;} + .d2-2747961624 .fill-B4{fill:#E3E9FD;} + .d2-2747961624 .fill-B5{fill:#EDF0FD;} + .d2-2747961624 .fill-B6{fill:#F7F8FE;} + .d2-2747961624 .fill-AA2{fill:#4A6FF3;} + .d2-2747961624 .fill-AA4{fill:#EDF0FD;} + .d2-2747961624 .fill-AA5{fill:#F7F8FE;} + .d2-2747961624 .fill-AB4{fill:#EDF0FD;} + .d2-2747961624 .fill-AB5{fill:#F7F8FE;} + .d2-2747961624 .stroke-N1{stroke:#0A0F25;} + .d2-2747961624 .stroke-N2{stroke:#676C7E;} + .d2-2747961624 .stroke-N3{stroke:#9499AB;} + .d2-2747961624 .stroke-N4{stroke:#CFD2DD;} + .d2-2747961624 .stroke-N5{stroke:#DEE1EB;} + .d2-2747961624 .stroke-N6{stroke:#EEF1F8;} + .d2-2747961624 .stroke-N7{stroke:#FFFFFF;} + .d2-2747961624 .stroke-B1{stroke:#0D32B2;} + .d2-2747961624 .stroke-B2{stroke:#0D32B2;} + .d2-2747961624 .stroke-B3{stroke:#E3E9FD;} + .d2-2747961624 .stroke-B4{stroke:#E3E9FD;} + .d2-2747961624 .stroke-B5{stroke:#EDF0FD;} + .d2-2747961624 .stroke-B6{stroke:#F7F8FE;} + .d2-2747961624 .stroke-AA2{stroke:#4A6FF3;} + .d2-2747961624 .stroke-AA4{stroke:#EDF0FD;} + .d2-2747961624 .stroke-AA5{stroke:#F7F8FE;} + .d2-2747961624 .stroke-AB4{stroke:#EDF0FD;} + .d2-2747961624 .stroke-AB5{stroke:#F7F8FE;} + .d2-2747961624 .background-color-N1{background-color:#0A0F25;} + .d2-2747961624 .background-color-N2{background-color:#676C7E;} + .d2-2747961624 .background-color-N3{background-color:#9499AB;} + .d2-2747961624 .background-color-N4{background-color:#CFD2DD;} + .d2-2747961624 .background-color-N5{background-color:#DEE1EB;} + .d2-2747961624 .background-color-N6{background-color:#EEF1F8;} + .d2-2747961624 .background-color-N7{background-color:#FFFFFF;} + .d2-2747961624 .background-color-B1{background-color:#0D32B2;} + .d2-2747961624 .background-color-B2{background-color:#0D32B2;} + .d2-2747961624 .background-color-B3{background-color:#E3E9FD;} + .d2-2747961624 .background-color-B4{background-color:#E3E9FD;} + .d2-2747961624 .background-color-B5{background-color:#EDF0FD;} + .d2-2747961624 .background-color-B6{background-color:#F7F8FE;} + .d2-2747961624 .background-color-AA2{background-color:#4A6FF3;} + .d2-2747961624 .background-color-AA4{background-color:#EDF0FD;} + .d2-2747961624 .background-color-AA5{background-color:#F7F8FE;} + .d2-2747961624 .background-color-AB4{background-color:#EDF0FD;} + .d2-2747961624 .background-color-AB5{background-color:#F7F8FE;} + .d2-2747961624 .color-N1{color:#0A0F25;} + .d2-2747961624 .color-N2{color:#676C7E;} + .d2-2747961624 .color-N3{color:#9499AB;} + .d2-2747961624 .color-N4{color:#CFD2DD;} + .d2-2747961624 .color-N5{color:#DEE1EB;} + .d2-2747961624 .color-N6{color:#EEF1F8;} + .d2-2747961624 .color-N7{color:#FFFFFF;} + .d2-2747961624 .color-B1{color:#0D32B2;} + .d2-2747961624 .color-B2{color:#0D32B2;} + .d2-2747961624 .color-B3{color:#E3E9FD;} + .d2-2747961624 .color-B4{color:#E3E9FD;} + .d2-2747961624 .color-B5{color:#EDF0FD;} + .d2-2747961624 .color-B6{color:#F7F8FE;} + .d2-2747961624 .color-AA2{color:#4A6FF3;} + .d2-2747961624 .color-AA4{color:#EDF0FD;} + .d2-2747961624 .color-AA5{color:#F7F8FE;} + .d2-2747961624 .color-AB4{color:#EDF0FD;} + .d2-2747961624 .color-AB5{color:#F7F8FE;}.appendix text.text{fill:#0A0F25}.md{--color-fg-default:#0A0F25;--color-fg-muted:#676C7E;--color-fg-subtle:#9499AB;--color-canvas-default:#FFFFFF;--color-canvas-subtle:#EEF1F8;--color-border-default:#0D32B2;--color-border-muted:#0D32B2;--color-neutral-muted:#EEF1F8;--color-accent-fg:#0D32B2;--color-accent-emphasis:#0D32B2;--color-attention-subtle:#676C7E;--color-danger-fg:red;}.sketch-overlay-B1{fill:url(#streaks-darker);mix-blend-mode:lighten}.sketch-overlay-B2{fill:url(#streaks-darker);mix-blend-mode:lighten}.sketch-overlay-B3{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-B4{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-B5{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-B6{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-AA2{fill:url(#streaks-dark);mix-blend-mode:overlay}.sketch-overlay-AA4{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-AA5{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-AB4{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-AB5{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-N1{fill:url(#streaks-darker);mix-blend-mode:lighten}.sketch-overlay-N2{fill:url(#streaks-dark);mix-blend-mode:overlay}.sketch-overlay-N3{fill:url(#streaks-normal);mix-blend-mode:color-burn}.sketch-overlay-N4{fill:url(#streaks-normal);mix-blend-mode:color-burn}.sketch-overlay-N5{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-N6{fill:url(#streaks-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 \ No newline at end of file diff --git a/e2etests/testdata/stable/direction/elk/board.exp.json b/e2etests/testdata/stable/direction/elk/board.exp.json index a610e174aa..af31943780 100644 --- a/e2etests/testdata/stable/direction/elk/board.exp.json +++ b/e2etests/testdata/stable/direction/elk/board.exp.json @@ -624,10 +624,8 @@ "id": "(a -> b)[0]", "src": "a", "srcArrow": "none", - "srcLabel": "", "dst": "b", "dstArrow": "triangle", - "dstLabel": "", "opacity": 1, "strokeDash": 0, "strokeWidth": 2, @@ -664,10 +662,8 @@ "id": "(b -> c)[0]", "src": "b", "srcArrow": "none", - "srcLabel": "", "dst": "c", "dstArrow": "triangle", - "dstLabel": "", "opacity": 1, "strokeDash": 0, "strokeWidth": 2, @@ -704,10 +700,8 @@ "id": "(c -> d)[0]", "src": "c", "srcArrow": "none", - "srcLabel": "", "dst": "d", "dstArrow": "triangle", - "dstLabel": "", "opacity": 1, "strokeDash": 0, "strokeWidth": 2, @@ -744,10 +738,8 @@ "id": "(d -> e)[0]", "src": "d", "srcArrow": "none", - "srcLabel": "", "dst": "e", "dstArrow": "triangle", - "dstLabel": "", "opacity": 1, "strokeDash": 0, "strokeWidth": 2, @@ -784,10 +776,8 @@ "id": "b.(1 -> 2)[0]", "src": "b.1", "srcArrow": "none", - "srcLabel": "", "dst": "b.2", "dstArrow": "triangle", - "dstLabel": "", "opacity": 1, "strokeDash": 0, "strokeWidth": 2, @@ -824,10 +814,8 @@ "id": "b.(2 -> 3)[0]", "src": "b.2", "srcArrow": "none", - "srcLabel": "", "dst": "b.3", "dstArrow": "triangle", - "dstLabel": "", "opacity": 1, "strokeDash": 0, "strokeWidth": 2, @@ -864,10 +852,8 @@ "id": "b.(3 -> 4)[0]", "src": "b.3", "srcArrow": "none", - "srcLabel": "", "dst": "b.4", "dstArrow": "triangle", - "dstLabel": "", "opacity": 1, "strokeDash": 0, "strokeWidth": 2, @@ -904,10 +890,8 @@ "id": "b.(4 -> 5)[0]", "src": "b.4", "srcArrow": "none", - "srcLabel": "", "dst": "b.5", "dstArrow": "triangle", - "dstLabel": "", "opacity": 1, "strokeDash": 0, "strokeWidth": 2, @@ -944,10 +928,8 @@ "id": "b.2.(a -> b)[0]", "src": "b.2.a", "srcArrow": "none", - "srcLabel": "", "dst": "b.2.b", "dstArrow": "triangle", - "dstLabel": "", "opacity": 1, "strokeDash": 0, "strokeWidth": 2, @@ -984,10 +966,8 @@ "id": "b.2.(b -> c)[0]", "src": "b.2.b", "srcArrow": "none", - "srcLabel": "", "dst": "b.2.c", "dstArrow": "triangle", - "dstLabel": "", "opacity": 1, "strokeDash": 0, "strokeWidth": 2, @@ -1024,10 +1004,8 @@ "id": "b.2.(c -> d)[0]", "src": "b.2.c", "srcArrow": "none", - "srcLabel": "", "dst": "b.2.d", "dstArrow": "triangle", - "dstLabel": "", "opacity": 1, "strokeDash": 0, "strokeWidth": 2, @@ -1064,10 +1042,8 @@ "id": "b.2.(d -> e)[0]", "src": "b.2.d", "srcArrow": "none", - "srcLabel": "", "dst": "b.2.e", "dstArrow": "triangle", - "dstLabel": "", "opacity": 1, "strokeDash": 0, "strokeWidth": 2, diff --git a/e2etests/testdata/stable/direction/elk/sketch.exp.svg b/e2etests/testdata/stable/direction/elk/sketch.exp.svg index a0572e935c..333dd362c4 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-3467897707 .fill-N1{fill:#0A0F25;} + .d2-3467897707 .fill-N2{fill:#676C7E;} + .d2-3467897707 .fill-N3{fill:#9499AB;} + .d2-3467897707 .fill-N4{fill:#CFD2DD;} + .d2-3467897707 .fill-N5{fill:#DEE1EB;} + .d2-3467897707 .fill-N6{fill:#EEF1F8;} + .d2-3467897707 .fill-N7{fill:#FFFFFF;} + .d2-3467897707 .fill-B1{fill:#0D32B2;} + .d2-3467897707 .fill-B2{fill:#0D32B2;} + .d2-3467897707 .fill-B3{fill:#E3E9FD;} + .d2-3467897707 .fill-B4{fill:#E3E9FD;} + .d2-3467897707 .fill-B5{fill:#EDF0FD;} + .d2-3467897707 .fill-B6{fill:#F7F8FE;} + .d2-3467897707 .fill-AA2{fill:#4A6FF3;} + .d2-3467897707 .fill-AA4{fill:#EDF0FD;} + .d2-3467897707 .fill-AA5{fill:#F7F8FE;} + .d2-3467897707 .fill-AB4{fill:#EDF0FD;} + .d2-3467897707 .fill-AB5{fill:#F7F8FE;} + .d2-3467897707 .stroke-N1{stroke:#0A0F25;} + .d2-3467897707 .stroke-N2{stroke:#676C7E;} + .d2-3467897707 .stroke-N3{stroke:#9499AB;} + .d2-3467897707 .stroke-N4{stroke:#CFD2DD;} + .d2-3467897707 .stroke-N5{stroke:#DEE1EB;} + .d2-3467897707 .stroke-N6{stroke:#EEF1F8;} + .d2-3467897707 .stroke-N7{stroke:#FFFFFF;} + .d2-3467897707 .stroke-B1{stroke:#0D32B2;} + .d2-3467897707 .stroke-B2{stroke:#0D32B2;} + .d2-3467897707 .stroke-B3{stroke:#E3E9FD;} + .d2-3467897707 .stroke-B4{stroke:#E3E9FD;} + .d2-3467897707 .stroke-B5{stroke:#EDF0FD;} + .d2-3467897707 .stroke-B6{stroke:#F7F8FE;} + .d2-3467897707 .stroke-AA2{stroke:#4A6FF3;} + .d2-3467897707 .stroke-AA4{stroke:#EDF0FD;} + .d2-3467897707 .stroke-AA5{stroke:#F7F8FE;} + .d2-3467897707 .stroke-AB4{stroke:#EDF0FD;} + .d2-3467897707 .stroke-AB5{stroke:#F7F8FE;} + .d2-3467897707 .background-color-N1{background-color:#0A0F25;} + .d2-3467897707 .background-color-N2{background-color:#676C7E;} + .d2-3467897707 .background-color-N3{background-color:#9499AB;} + .d2-3467897707 .background-color-N4{background-color:#CFD2DD;} + .d2-3467897707 .background-color-N5{background-color:#DEE1EB;} + .d2-3467897707 .background-color-N6{background-color:#EEF1F8;} + .d2-3467897707 .background-color-N7{background-color:#FFFFFF;} + .d2-3467897707 .background-color-B1{background-color:#0D32B2;} + .d2-3467897707 .background-color-B2{background-color:#0D32B2;} + .d2-3467897707 .background-color-B3{background-color:#E3E9FD;} + .d2-3467897707 .background-color-B4{background-color:#E3E9FD;} + .d2-3467897707 .background-color-B5{background-color:#EDF0FD;} + .d2-3467897707 .background-color-B6{background-color:#F7F8FE;} + .d2-3467897707 .background-color-AA2{background-color:#4A6FF3;} + .d2-3467897707 .background-color-AA4{background-color:#EDF0FD;} + .d2-3467897707 .background-color-AA5{background-color:#F7F8FE;} + .d2-3467897707 .background-color-AB4{background-color:#EDF0FD;} + .d2-3467897707 .background-color-AB5{background-color:#F7F8FE;} + .d2-3467897707 .color-N1{color:#0A0F25;} + .d2-3467897707 .color-N2{color:#676C7E;} + .d2-3467897707 .color-N3{color:#9499AB;} + .d2-3467897707 .color-N4{color:#CFD2DD;} + .d2-3467897707 .color-N5{color:#DEE1EB;} + .d2-3467897707 .color-N6{color:#EEF1F8;} + .d2-3467897707 .color-N7{color:#FFFFFF;} + .d2-3467897707 .color-B1{color:#0D32B2;} + .d2-3467897707 .color-B2{color:#0D32B2;} + .d2-3467897707 .color-B3{color:#E3E9FD;} + .d2-3467897707 .color-B4{color:#E3E9FD;} + .d2-3467897707 .color-B5{color:#EDF0FD;} + .d2-3467897707 .color-B6{color:#F7F8FE;} + .d2-3467897707 .color-AA2{color:#4A6FF3;} + .d2-3467897707 .color-AA4{color:#EDF0FD;} + .d2-3467897707 .color-AA5{color:#F7F8FE;} + .d2-3467897707 .color-AB4{color:#EDF0FD;} + .d2-3467897707 .color-AB5{color:#F7F8FE;}.appendix text.text{fill:#0A0F25}.md{--color-fg-default:#0A0F25;--color-fg-muted:#676C7E;--color-fg-subtle:#9499AB;--color-canvas-default:#FFFFFF;--color-canvas-subtle:#EEF1F8;--color-border-default:#0D32B2;--color-border-muted:#0D32B2;--color-neutral-muted:#EEF1F8;--color-accent-fg:#0D32B2;--color-accent-emphasis:#0D32B2;--color-attention-subtle:#676C7E;--color-danger-fg:red;}.sketch-overlay-B1{fill:url(#streaks-darker);mix-blend-mode:lighten}.sketch-overlay-B2{fill:url(#streaks-darker);mix-blend-mode:lighten}.sketch-overlay-B3{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-B4{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-B5{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-B6{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-AA2{fill:url(#streaks-dark);mix-blend-mode:overlay}.sketch-overlay-AA4{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-AA5{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-AB4{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-AB5{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-N1{fill:url(#streaks-darker);mix-blend-mode:lighten}.sketch-overlay-N2{fill:url(#streaks-dark);mix-blend-mode:overlay}.sketch-overlay-N3{fill:url(#streaks-normal);mix-blend-mode:color-burn}.sketch-overlay-N4{fill:url(#streaks-normal);mix-blend-mode:color-burn}.sketch-overlay-N5{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-N6{fill:url(#streaks-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 \ No newline at end of file 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 447a279462..a82e8996ee 100644 --- a/e2etests/testdata/stable/edge-label-overflow/dagre/board.exp.json +++ b/e2etests/testdata/stable/edge-label-overflow/dagre/board.exp.json @@ -132,10 +132,8 @@ "id": "(student -> committee chair)[0]", "src": "student", "srcArrow": "none", - "srcLabel": "", "dst": "committee chair", "dstArrow": "triangle", - "dstLabel": "", "opacity": 1, "strokeDash": 0, "strokeWidth": 2, @@ -181,10 +179,8 @@ "id": "(student <- committee chair)[0]", "src": "student", "srcArrow": "triangle", - "srcLabel": "", "dst": "committee chair", "dstArrow": "none", - "dstLabel": "", "opacity": 1, "strokeDash": 0, "strokeWidth": 2, @@ -230,10 +226,8 @@ "id": "(committee chair -> committee)[0]", "src": "committee chair", "srcArrow": "none", - "srcLabel": "", "dst": "committee", "dstArrow": "triangle", - "dstLabel": "", "opacity": 1, "strokeDash": 0, "strokeWidth": 2, 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 6f8fe32b55..15d83f72d3 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-3311976092 .fill-N1{fill:#0A0F25;} + .d2-3311976092 .fill-N2{fill:#676C7E;} + .d2-3311976092 .fill-N3{fill:#9499AB;} + .d2-3311976092 .fill-N4{fill:#CFD2DD;} + .d2-3311976092 .fill-N5{fill:#DEE1EB;} + .d2-3311976092 .fill-N6{fill:#EEF1F8;} + .d2-3311976092 .fill-N7{fill:#FFFFFF;} + .d2-3311976092 .fill-B1{fill:#0D32B2;} + .d2-3311976092 .fill-B2{fill:#0D32B2;} + .d2-3311976092 .fill-B3{fill:#E3E9FD;} + .d2-3311976092 .fill-B4{fill:#E3E9FD;} + .d2-3311976092 .fill-B5{fill:#EDF0FD;} + .d2-3311976092 .fill-B6{fill:#F7F8FE;} + .d2-3311976092 .fill-AA2{fill:#4A6FF3;} + .d2-3311976092 .fill-AA4{fill:#EDF0FD;} + .d2-3311976092 .fill-AA5{fill:#F7F8FE;} + .d2-3311976092 .fill-AB4{fill:#EDF0FD;} + .d2-3311976092 .fill-AB5{fill:#F7F8FE;} + .d2-3311976092 .stroke-N1{stroke:#0A0F25;} + .d2-3311976092 .stroke-N2{stroke:#676C7E;} + .d2-3311976092 .stroke-N3{stroke:#9499AB;} + .d2-3311976092 .stroke-N4{stroke:#CFD2DD;} + .d2-3311976092 .stroke-N5{stroke:#DEE1EB;} + .d2-3311976092 .stroke-N6{stroke:#EEF1F8;} + .d2-3311976092 .stroke-N7{stroke:#FFFFFF;} + .d2-3311976092 .stroke-B1{stroke:#0D32B2;} + .d2-3311976092 .stroke-B2{stroke:#0D32B2;} + .d2-3311976092 .stroke-B3{stroke:#E3E9FD;} + .d2-3311976092 .stroke-B4{stroke:#E3E9FD;} + .d2-3311976092 .stroke-B5{stroke:#EDF0FD;} + .d2-3311976092 .stroke-B6{stroke:#F7F8FE;} + .d2-3311976092 .stroke-AA2{stroke:#4A6FF3;} + .d2-3311976092 .stroke-AA4{stroke:#EDF0FD;} + .d2-3311976092 .stroke-AA5{stroke:#F7F8FE;} + .d2-3311976092 .stroke-AB4{stroke:#EDF0FD;} + .d2-3311976092 .stroke-AB5{stroke:#F7F8FE;} + .d2-3311976092 .background-color-N1{background-color:#0A0F25;} + .d2-3311976092 .background-color-N2{background-color:#676C7E;} + .d2-3311976092 .background-color-N3{background-color:#9499AB;} + .d2-3311976092 .background-color-N4{background-color:#CFD2DD;} + .d2-3311976092 .background-color-N5{background-color:#DEE1EB;} + .d2-3311976092 .background-color-N6{background-color:#EEF1F8;} + .d2-3311976092 .background-color-N7{background-color:#FFFFFF;} + .d2-3311976092 .background-color-B1{background-color:#0D32B2;} + .d2-3311976092 .background-color-B2{background-color:#0D32B2;} + .d2-3311976092 .background-color-B3{background-color:#E3E9FD;} + .d2-3311976092 .background-color-B4{background-color:#E3E9FD;} + .d2-3311976092 .background-color-B5{background-color:#EDF0FD;} + .d2-3311976092 .background-color-B6{background-color:#F7F8FE;} + .d2-3311976092 .background-color-AA2{background-color:#4A6FF3;} + .d2-3311976092 .background-color-AA4{background-color:#EDF0FD;} + .d2-3311976092 .background-color-AA5{background-color:#F7F8FE;} + .d2-3311976092 .background-color-AB4{background-color:#EDF0FD;} + .d2-3311976092 .background-color-AB5{background-color:#F7F8FE;} + .d2-3311976092 .color-N1{color:#0A0F25;} + .d2-3311976092 .color-N2{color:#676C7E;} + .d2-3311976092 .color-N3{color:#9499AB;} + .d2-3311976092 .color-N4{color:#CFD2DD;} + .d2-3311976092 .color-N5{color:#DEE1EB;} + .d2-3311976092 .color-N6{color:#EEF1F8;} + .d2-3311976092 .color-N7{color:#FFFFFF;} + .d2-3311976092 .color-B1{color:#0D32B2;} + .d2-3311976092 .color-B2{color:#0D32B2;} + .d2-3311976092 .color-B3{color:#E3E9FD;} + .d2-3311976092 .color-B4{color:#E3E9FD;} + .d2-3311976092 .color-B5{color:#EDF0FD;} + .d2-3311976092 .color-B6{color:#F7F8FE;} + .d2-3311976092 .color-AA2{color:#4A6FF3;} + .d2-3311976092 .color-AA4{color:#EDF0FD;} + .d2-3311976092 .color-AA5{color:#F7F8FE;} + .d2-3311976092 .color-AB4{color:#EDF0FD;} + .d2-3311976092 .color-AB5{color:#F7F8FE;}.appendix text.text{fill:#0A0F25}.md{--color-fg-default:#0A0F25;--color-fg-muted:#676C7E;--color-fg-subtle:#9499AB;--color-canvas-default:#FFFFFF;--color-canvas-subtle:#EEF1F8;--color-border-default:#0D32B2;--color-border-muted:#0D32B2;--color-neutral-muted:#EEF1F8;--color-accent-fg:#0D32B2;--color-accent-emphasis:#0D32B2;--color-attention-subtle:#676C7E;--color-danger-fg:red;}.sketch-overlay-B1{fill:url(#streaks-darker);mix-blend-mode:lighten}.sketch-overlay-B2{fill:url(#streaks-darker);mix-blend-mode:lighten}.sketch-overlay-B3{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-B4{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-B5{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-B6{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-AA2{fill:url(#streaks-dark);mix-blend-mode:overlay}.sketch-overlay-AA4{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-AA5{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-AB4{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-AB5{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-N1{fill:url(#streaks-darker);mix-blend-mode:lighten}.sketch-overlay-N2{fill:url(#streaks-dark);mix-blend-mode:overlay}.sketch-overlay-N3{fill:url(#streaks-normal);mix-blend-mode:color-burn}.sketch-overlay-N4{fill:url(#streaks-normal);mix-blend-mode:color-burn}.sketch-overlay-N5{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-N6{fill:url(#streaks-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 f17ddcb632..5e61dd4829 100644 --- a/e2etests/testdata/stable/edge-label-overflow/elk/board.exp.json +++ b/e2etests/testdata/stable/edge-label-overflow/elk/board.exp.json @@ -132,10 +132,8 @@ "id": "(student -> committee chair)[0]", "src": "student", "srcArrow": "none", - "srcLabel": "", "dst": "committee chair", "dstArrow": "triangle", - "dstLabel": "", "opacity": 1, "strokeDash": 0, "strokeWidth": 2, @@ -188,10 +186,8 @@ "id": "(student <- committee chair)[0]", "src": "student", "srcArrow": "triangle", - "srcLabel": "", "dst": "committee chair", "dstArrow": "none", - "dstLabel": "", "opacity": 1, "strokeDash": 0, "strokeWidth": 2, @@ -244,10 +240,8 @@ "id": "(committee chair -> committee)[0]", "src": "committee chair", "srcArrow": "none", - "srcLabel": "", "dst": "committee", "dstArrow": "triangle", - "dstLabel": "", "opacity": 1, "strokeDash": 0, "strokeWidth": 2, 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 cec943dfae..6565473dc0 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-277066694 .fill-N1{fill:#0A0F25;} + .d2-277066694 .fill-N2{fill:#676C7E;} + .d2-277066694 .fill-N3{fill:#9499AB;} + .d2-277066694 .fill-N4{fill:#CFD2DD;} + .d2-277066694 .fill-N5{fill:#DEE1EB;} + .d2-277066694 .fill-N6{fill:#EEF1F8;} + .d2-277066694 .fill-N7{fill:#FFFFFF;} + .d2-277066694 .fill-B1{fill:#0D32B2;} + .d2-277066694 .fill-B2{fill:#0D32B2;} + .d2-277066694 .fill-B3{fill:#E3E9FD;} + .d2-277066694 .fill-B4{fill:#E3E9FD;} + .d2-277066694 .fill-B5{fill:#EDF0FD;} + .d2-277066694 .fill-B6{fill:#F7F8FE;} + .d2-277066694 .fill-AA2{fill:#4A6FF3;} + .d2-277066694 .fill-AA4{fill:#EDF0FD;} + .d2-277066694 .fill-AA5{fill:#F7F8FE;} + .d2-277066694 .fill-AB4{fill:#EDF0FD;} + .d2-277066694 .fill-AB5{fill:#F7F8FE;} + .d2-277066694 .stroke-N1{stroke:#0A0F25;} + .d2-277066694 .stroke-N2{stroke:#676C7E;} + .d2-277066694 .stroke-N3{stroke:#9499AB;} + .d2-277066694 .stroke-N4{stroke:#CFD2DD;} + .d2-277066694 .stroke-N5{stroke:#DEE1EB;} + .d2-277066694 .stroke-N6{stroke:#EEF1F8;} + .d2-277066694 .stroke-N7{stroke:#FFFFFF;} + .d2-277066694 .stroke-B1{stroke:#0D32B2;} + .d2-277066694 .stroke-B2{stroke:#0D32B2;} + .d2-277066694 .stroke-B3{stroke:#E3E9FD;} + .d2-277066694 .stroke-B4{stroke:#E3E9FD;} + .d2-277066694 .stroke-B5{stroke:#EDF0FD;} + .d2-277066694 .stroke-B6{stroke:#F7F8FE;} + .d2-277066694 .stroke-AA2{stroke:#4A6FF3;} + .d2-277066694 .stroke-AA4{stroke:#EDF0FD;} + .d2-277066694 .stroke-AA5{stroke:#F7F8FE;} + .d2-277066694 .stroke-AB4{stroke:#EDF0FD;} + .d2-277066694 .stroke-AB5{stroke:#F7F8FE;} + .d2-277066694 .background-color-N1{background-color:#0A0F25;} + .d2-277066694 .background-color-N2{background-color:#676C7E;} + .d2-277066694 .background-color-N3{background-color:#9499AB;} + .d2-277066694 .background-color-N4{background-color:#CFD2DD;} + .d2-277066694 .background-color-N5{background-color:#DEE1EB;} + .d2-277066694 .background-color-N6{background-color:#EEF1F8;} + .d2-277066694 .background-color-N7{background-color:#FFFFFF;} + .d2-277066694 .background-color-B1{background-color:#0D32B2;} + .d2-277066694 .background-color-B2{background-color:#0D32B2;} + .d2-277066694 .background-color-B3{background-color:#E3E9FD;} + .d2-277066694 .background-color-B4{background-color:#E3E9FD;} + .d2-277066694 .background-color-B5{background-color:#EDF0FD;} + .d2-277066694 .background-color-B6{background-color:#F7F8FE;} + .d2-277066694 .background-color-AA2{background-color:#4A6FF3;} + .d2-277066694 .background-color-AA4{background-color:#EDF0FD;} + .d2-277066694 .background-color-AA5{background-color:#F7F8FE;} + .d2-277066694 .background-color-AB4{background-color:#EDF0FD;} + .d2-277066694 .background-color-AB5{background-color:#F7F8FE;} + .d2-277066694 .color-N1{color:#0A0F25;} + .d2-277066694 .color-N2{color:#676C7E;} + .d2-277066694 .color-N3{color:#9499AB;} + .d2-277066694 .color-N4{color:#CFD2DD;} + .d2-277066694 .color-N5{color:#DEE1EB;} + .d2-277066694 .color-N6{color:#EEF1F8;} + .d2-277066694 .color-N7{color:#FFFFFF;} + .d2-277066694 .color-B1{color:#0D32B2;} + .d2-277066694 .color-B2{color:#0D32B2;} + .d2-277066694 .color-B3{color:#E3E9FD;} + .d2-277066694 .color-B4{color:#E3E9FD;} + .d2-277066694 .color-B5{color:#EDF0FD;} + .d2-277066694 .color-B6{color:#F7F8FE;} + .d2-277066694 .color-AA2{color:#4A6FF3;} + .d2-277066694 .color-AA4{color:#EDF0FD;} + .d2-277066694 .color-AA5{color:#F7F8FE;} + .d2-277066694 .color-AB4{color:#EDF0FD;} + .d2-277066694 .color-AB5{color:#F7F8FE;}.appendix text.text{fill:#0A0F25}.md{--color-fg-default:#0A0F25;--color-fg-muted:#676C7E;--color-fg-subtle:#9499AB;--color-canvas-default:#FFFFFF;--color-canvas-subtle:#EEF1F8;--color-border-default:#0D32B2;--color-border-muted:#0D32B2;--color-neutral-muted:#EEF1F8;--color-accent-fg:#0D32B2;--color-accent-emphasis:#0D32B2;--color-attention-subtle:#676C7E;--color-danger-fg:red;}.sketch-overlay-B1{fill:url(#streaks-darker);mix-blend-mode:lighten}.sketch-overlay-B2{fill:url(#streaks-darker);mix-blend-mode:lighten}.sketch-overlay-B3{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-B4{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-B5{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-B6{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-AA2{fill:url(#streaks-dark);mix-blend-mode:overlay}.sketch-overlay-AA4{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-AA5{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-AB4{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-AB5{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-N1{fill:url(#streaks-darker);mix-blend-mode:lighten}.sketch-overlay-N2{fill:url(#streaks-dark);mix-blend-mode:overlay}.sketch-overlay-N3{fill:url(#streaks-normal);mix-blend-mode:color-burn}.sketch-overlay-N4{fill:url(#streaks-normal);mix-blend-mode:color-burn}.sketch-overlay-N5{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-N6{fill:url(#streaks-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 6dc926a489..5a26141740 100644 --- a/e2etests/testdata/stable/elk_border_radius/dagre/board.exp.json +++ b/e2etests/testdata/stable/elk_border_radius/dagre/board.exp.json @@ -255,10 +255,8 @@ "id": "(a -> b)[0]", "src": "a", "srcArrow": "none", - "srcLabel": "", "dst": "b", "dstArrow": "triangle", - "dstLabel": "", "opacity": 1, "strokeDash": 0, "strokeWidth": 2, @@ -304,10 +302,8 @@ "id": "(a -> c)[0]", "src": "a", "srcArrow": "none", - "srcLabel": "", "dst": "c", "dstArrow": "triangle", - "dstLabel": "", "opacity": 1, "strokeDash": 0, "strokeWidth": 2, @@ -352,10 +348,8 @@ "id": "(a -> e)[0]", "src": "a", "srcArrow": "none", - "srcLabel": "", "dst": "e", "dstArrow": "triangle", - "dstLabel": "", "opacity": 1, "strokeDash": 0, "strokeWidth": 2, @@ -401,10 +395,8 @@ "id": "(a -> f)[0]", "src": "a", "srcArrow": "none", - "srcLabel": "", "dst": "f", "dstArrow": "triangle", - "dstLabel": "", "opacity": 1, "strokeDash": 0, "strokeWidth": 2, @@ -450,10 +442,8 @@ "id": "(a -> g)[0]", "src": "a", "srcArrow": "none", - "srcLabel": "", "dst": "g", "dstArrow": "triangle", - "dstLabel": "", "opacity": 1, "strokeDash": 0, "strokeWidth": 2, 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 38711e0233..e139c62ce2 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-2127463991 .fill-N1{fill:#0A0F25;} + .d2-2127463991 .fill-N2{fill:#676C7E;} + .d2-2127463991 .fill-N3{fill:#9499AB;} + .d2-2127463991 .fill-N4{fill:#CFD2DD;} + .d2-2127463991 .fill-N5{fill:#DEE1EB;} + .d2-2127463991 .fill-N6{fill:#EEF1F8;} + .d2-2127463991 .fill-N7{fill:#FFFFFF;} + .d2-2127463991 .fill-B1{fill:#0D32B2;} + .d2-2127463991 .fill-B2{fill:#0D32B2;} + .d2-2127463991 .fill-B3{fill:#E3E9FD;} + .d2-2127463991 .fill-B4{fill:#E3E9FD;} + .d2-2127463991 .fill-B5{fill:#EDF0FD;} + .d2-2127463991 .fill-B6{fill:#F7F8FE;} + .d2-2127463991 .fill-AA2{fill:#4A6FF3;} + .d2-2127463991 .fill-AA4{fill:#EDF0FD;} + .d2-2127463991 .fill-AA5{fill:#F7F8FE;} + .d2-2127463991 .fill-AB4{fill:#EDF0FD;} + .d2-2127463991 .fill-AB5{fill:#F7F8FE;} + .d2-2127463991 .stroke-N1{stroke:#0A0F25;} + .d2-2127463991 .stroke-N2{stroke:#676C7E;} + .d2-2127463991 .stroke-N3{stroke:#9499AB;} + .d2-2127463991 .stroke-N4{stroke:#CFD2DD;} + .d2-2127463991 .stroke-N5{stroke:#DEE1EB;} + .d2-2127463991 .stroke-N6{stroke:#EEF1F8;} + .d2-2127463991 .stroke-N7{stroke:#FFFFFF;} + .d2-2127463991 .stroke-B1{stroke:#0D32B2;} + .d2-2127463991 .stroke-B2{stroke:#0D32B2;} + .d2-2127463991 .stroke-B3{stroke:#E3E9FD;} + .d2-2127463991 .stroke-B4{stroke:#E3E9FD;} + .d2-2127463991 .stroke-B5{stroke:#EDF0FD;} + .d2-2127463991 .stroke-B6{stroke:#F7F8FE;} + .d2-2127463991 .stroke-AA2{stroke:#4A6FF3;} + .d2-2127463991 .stroke-AA4{stroke:#EDF0FD;} + .d2-2127463991 .stroke-AA5{stroke:#F7F8FE;} + .d2-2127463991 .stroke-AB4{stroke:#EDF0FD;} + .d2-2127463991 .stroke-AB5{stroke:#F7F8FE;} + .d2-2127463991 .background-color-N1{background-color:#0A0F25;} + .d2-2127463991 .background-color-N2{background-color:#676C7E;} + .d2-2127463991 .background-color-N3{background-color:#9499AB;} + .d2-2127463991 .background-color-N4{background-color:#CFD2DD;} + .d2-2127463991 .background-color-N5{background-color:#DEE1EB;} + .d2-2127463991 .background-color-N6{background-color:#EEF1F8;} + .d2-2127463991 .background-color-N7{background-color:#FFFFFF;} + .d2-2127463991 .background-color-B1{background-color:#0D32B2;} + .d2-2127463991 .background-color-B2{background-color:#0D32B2;} + .d2-2127463991 .background-color-B3{background-color:#E3E9FD;} + .d2-2127463991 .background-color-B4{background-color:#E3E9FD;} + .d2-2127463991 .background-color-B5{background-color:#EDF0FD;} + .d2-2127463991 .background-color-B6{background-color:#F7F8FE;} + .d2-2127463991 .background-color-AA2{background-color:#4A6FF3;} + .d2-2127463991 .background-color-AA4{background-color:#EDF0FD;} + .d2-2127463991 .background-color-AA5{background-color:#F7F8FE;} + .d2-2127463991 .background-color-AB4{background-color:#EDF0FD;} + .d2-2127463991 .background-color-AB5{background-color:#F7F8FE;} + .d2-2127463991 .color-N1{color:#0A0F25;} + .d2-2127463991 .color-N2{color:#676C7E;} + .d2-2127463991 .color-N3{color:#9499AB;} + .d2-2127463991 .color-N4{color:#CFD2DD;} + .d2-2127463991 .color-N5{color:#DEE1EB;} + .d2-2127463991 .color-N6{color:#EEF1F8;} + .d2-2127463991 .color-N7{color:#FFFFFF;} + .d2-2127463991 .color-B1{color:#0D32B2;} + .d2-2127463991 .color-B2{color:#0D32B2;} + .d2-2127463991 .color-B3{color:#E3E9FD;} + .d2-2127463991 .color-B4{color:#E3E9FD;} + .d2-2127463991 .color-B5{color:#EDF0FD;} + .d2-2127463991 .color-B6{color:#F7F8FE;} + .d2-2127463991 .color-AA2{color:#4A6FF3;} + .d2-2127463991 .color-AA4{color:#EDF0FD;} + .d2-2127463991 .color-AA5{color:#F7F8FE;} + .d2-2127463991 .color-AB4{color:#EDF0FD;} + .d2-2127463991 .color-AB5{color:#F7F8FE;}.appendix text.text{fill:#0A0F25}.md{--color-fg-default:#0A0F25;--color-fg-muted:#676C7E;--color-fg-subtle:#9499AB;--color-canvas-default:#FFFFFF;--color-canvas-subtle:#EEF1F8;--color-border-default:#0D32B2;--color-border-muted:#0D32B2;--color-neutral-muted:#EEF1F8;--color-accent-fg:#0D32B2;--color-accent-emphasis:#0D32B2;--color-attention-subtle:#676C7E;--color-danger-fg:red;}.sketch-overlay-B1{fill:url(#streaks-darker);mix-blend-mode:lighten}.sketch-overlay-B2{fill:url(#streaks-darker);mix-blend-mode:lighten}.sketch-overlay-B3{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-B4{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-B5{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-B6{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-AA2{fill:url(#streaks-dark);mix-blend-mode:overlay}.sketch-overlay-AA4{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-AA5{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-AB4{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-AB5{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-N1{fill:url(#streaks-darker);mix-blend-mode:lighten}.sketch-overlay-N2{fill:url(#streaks-dark);mix-blend-mode:overlay}.sketch-overlay-N3{fill:url(#streaks-normal);mix-blend-mode:color-burn}.sketch-overlay-N4{fill:url(#streaks-normal);mix-blend-mode:color-burn}.sketch-overlay-N5{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-N6{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-N7{fill:url(#streaks-bright);mix-blend-mode:darken}.light-code{display: block}.dark-code{display: none}]]>abcefg \ No newline at end of file diff --git a/e2etests/testdata/stable/elk_border_radius/elk/board.exp.json b/e2etests/testdata/stable/elk_border_radius/elk/board.exp.json index e64b727111..70513bdfb6 100644 --- a/e2etests/testdata/stable/elk_border_radius/elk/board.exp.json +++ b/e2etests/testdata/stable/elk_border_radius/elk/board.exp.json @@ -255,10 +255,8 @@ "id": "(a -> b)[0]", "src": "a", "srcArrow": "none", - "srcLabel": "", "dst": "b", "dstArrow": "triangle", - "dstLabel": "", "opacity": 1, "strokeDash": 0, "strokeWidth": 2, @@ -303,10 +301,8 @@ "id": "(a -> c)[0]", "src": "a", "srcArrow": "none", - "srcLabel": "", "dst": "c", "dstArrow": "triangle", - "dstLabel": "", "opacity": 1, "strokeDash": 0, "strokeWidth": 2, @@ -350,10 +346,8 @@ "id": "(a -> e)[0]", "src": "a", "srcArrow": "none", - "srcLabel": "", "dst": "e", "dstArrow": "triangle", - "dstLabel": "", "opacity": 1, "strokeDash": 0, "strokeWidth": 2, @@ -390,10 +384,8 @@ "id": "(a -> f)[0]", "src": "a", "srcArrow": "none", - "srcLabel": "", "dst": "f", "dstArrow": "triangle", - "dstLabel": "", "opacity": 1, "strokeDash": 0, "strokeWidth": 2, @@ -438,10 +430,8 @@ "id": "(a -> g)[0]", "src": "a", "srcArrow": "none", - "srcLabel": "", "dst": "g", "dstArrow": "triangle", - "dstLabel": "", "opacity": 1, "strokeDash": 0, "strokeWidth": 2, 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 888845d6d5..678fea44c6 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-1171206865 .fill-N1{fill:#0A0F25;} + .d2-1171206865 .fill-N2{fill:#676C7E;} + .d2-1171206865 .fill-N3{fill:#9499AB;} + .d2-1171206865 .fill-N4{fill:#CFD2DD;} + .d2-1171206865 .fill-N5{fill:#DEE1EB;} + .d2-1171206865 .fill-N6{fill:#EEF1F8;} + .d2-1171206865 .fill-N7{fill:#FFFFFF;} + .d2-1171206865 .fill-B1{fill:#0D32B2;} + .d2-1171206865 .fill-B2{fill:#0D32B2;} + .d2-1171206865 .fill-B3{fill:#E3E9FD;} + .d2-1171206865 .fill-B4{fill:#E3E9FD;} + .d2-1171206865 .fill-B5{fill:#EDF0FD;} + .d2-1171206865 .fill-B6{fill:#F7F8FE;} + .d2-1171206865 .fill-AA2{fill:#4A6FF3;} + .d2-1171206865 .fill-AA4{fill:#EDF0FD;} + .d2-1171206865 .fill-AA5{fill:#F7F8FE;} + .d2-1171206865 .fill-AB4{fill:#EDF0FD;} + .d2-1171206865 .fill-AB5{fill:#F7F8FE;} + .d2-1171206865 .stroke-N1{stroke:#0A0F25;} + .d2-1171206865 .stroke-N2{stroke:#676C7E;} + .d2-1171206865 .stroke-N3{stroke:#9499AB;} + .d2-1171206865 .stroke-N4{stroke:#CFD2DD;} + .d2-1171206865 .stroke-N5{stroke:#DEE1EB;} + .d2-1171206865 .stroke-N6{stroke:#EEF1F8;} + .d2-1171206865 .stroke-N7{stroke:#FFFFFF;} + .d2-1171206865 .stroke-B1{stroke:#0D32B2;} + .d2-1171206865 .stroke-B2{stroke:#0D32B2;} + .d2-1171206865 .stroke-B3{stroke:#E3E9FD;} + .d2-1171206865 .stroke-B4{stroke:#E3E9FD;} + .d2-1171206865 .stroke-B5{stroke:#EDF0FD;} + .d2-1171206865 .stroke-B6{stroke:#F7F8FE;} + .d2-1171206865 .stroke-AA2{stroke:#4A6FF3;} + .d2-1171206865 .stroke-AA4{stroke:#EDF0FD;} + .d2-1171206865 .stroke-AA5{stroke:#F7F8FE;} + .d2-1171206865 .stroke-AB4{stroke:#EDF0FD;} + .d2-1171206865 .stroke-AB5{stroke:#F7F8FE;} + .d2-1171206865 .background-color-N1{background-color:#0A0F25;} + .d2-1171206865 .background-color-N2{background-color:#676C7E;} + .d2-1171206865 .background-color-N3{background-color:#9499AB;} + .d2-1171206865 .background-color-N4{background-color:#CFD2DD;} + .d2-1171206865 .background-color-N5{background-color:#DEE1EB;} + .d2-1171206865 .background-color-N6{background-color:#EEF1F8;} + .d2-1171206865 .background-color-N7{background-color:#FFFFFF;} + .d2-1171206865 .background-color-B1{background-color:#0D32B2;} + .d2-1171206865 .background-color-B2{background-color:#0D32B2;} + .d2-1171206865 .background-color-B3{background-color:#E3E9FD;} + .d2-1171206865 .background-color-B4{background-color:#E3E9FD;} + .d2-1171206865 .background-color-B5{background-color:#EDF0FD;} + .d2-1171206865 .background-color-B6{background-color:#F7F8FE;} + .d2-1171206865 .background-color-AA2{background-color:#4A6FF3;} + .d2-1171206865 .background-color-AA4{background-color:#EDF0FD;} + .d2-1171206865 .background-color-AA5{background-color:#F7F8FE;} + .d2-1171206865 .background-color-AB4{background-color:#EDF0FD;} + .d2-1171206865 .background-color-AB5{background-color:#F7F8FE;} + .d2-1171206865 .color-N1{color:#0A0F25;} + .d2-1171206865 .color-N2{color:#676C7E;} + .d2-1171206865 .color-N3{color:#9499AB;} + .d2-1171206865 .color-N4{color:#CFD2DD;} + .d2-1171206865 .color-N5{color:#DEE1EB;} + .d2-1171206865 .color-N6{color:#EEF1F8;} + .d2-1171206865 .color-N7{color:#FFFFFF;} + .d2-1171206865 .color-B1{color:#0D32B2;} + .d2-1171206865 .color-B2{color:#0D32B2;} + .d2-1171206865 .color-B3{color:#E3E9FD;} + .d2-1171206865 .color-B4{color:#E3E9FD;} + .d2-1171206865 .color-B5{color:#EDF0FD;} + .d2-1171206865 .color-B6{color:#F7F8FE;} + .d2-1171206865 .color-AA2{color:#4A6FF3;} + .d2-1171206865 .color-AA4{color:#EDF0FD;} + .d2-1171206865 .color-AA5{color:#F7F8FE;} + .d2-1171206865 .color-AB4{color:#EDF0FD;} + .d2-1171206865 .color-AB5{color:#F7F8FE;}.appendix text.text{fill:#0A0F25}.md{--color-fg-default:#0A0F25;--color-fg-muted:#676C7E;--color-fg-subtle:#9499AB;--color-canvas-default:#FFFFFF;--color-canvas-subtle:#EEF1F8;--color-border-default:#0D32B2;--color-border-muted:#0D32B2;--color-neutral-muted:#EEF1F8;--color-accent-fg:#0D32B2;--color-accent-emphasis:#0D32B2;--color-attention-subtle:#676C7E;--color-danger-fg:red;}.sketch-overlay-B1{fill:url(#streaks-darker);mix-blend-mode:lighten}.sketch-overlay-B2{fill:url(#streaks-darker);mix-blend-mode:lighten}.sketch-overlay-B3{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-B4{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-B5{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-B6{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-AA2{fill:url(#streaks-dark);mix-blend-mode:overlay}.sketch-overlay-AA4{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-AA5{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-AB4{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-AB5{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-N1{fill:url(#streaks-darker);mix-blend-mode:lighten}.sketch-overlay-N2{fill:url(#streaks-dark);mix-blend-mode:overlay}.sketch-overlay-N3{fill:url(#streaks-normal);mix-blend-mode:color-burn}.sketch-overlay-N4{fill:url(#streaks-normal);mix-blend-mode:color-burn}.sketch-overlay-N5{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-N6{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-N7{fill:url(#streaks-bright);mix-blend-mode:darken}.light-code{display: block}.dark-code{display: none}]]>abcefg \ No newline at end of file diff --git a/e2etests/testdata/stable/elk_shim/dagre/board.exp.json b/e2etests/testdata/stable/elk_shim/dagre/board.exp.json index 825a9fef03..cc120ea641 100644 --- a/e2etests/testdata/stable/elk_shim/dagre/board.exp.json +++ b/e2etests/testdata/stable/elk_shim/dagre/board.exp.json @@ -460,10 +460,8 @@ "id": "network.cell tower.(satellites -> transmitter)[0]", "src": "network.cell tower.satellites", "srcArrow": "none", - "srcLabel": "", "dst": "network.cell tower.transmitter", "dstArrow": "triangle", - "dstLabel": "", "opacity": 1, "strokeDash": 0, "strokeWidth": 2, @@ -509,10 +507,8 @@ "id": "network.cell tower.(satellites -> transmitter)[1]", "src": "network.cell tower.satellites", "srcArrow": "none", - "srcLabel": "", "dst": "network.cell tower.transmitter", "dstArrow": "triangle", - "dstLabel": "", "opacity": 1, "strokeDash": 0, "strokeWidth": 2, @@ -558,10 +554,8 @@ "id": "network.cell tower.(satellites -> transmitter)[2]", "src": "network.cell tower.satellites", "srcArrow": "none", - "srcLabel": "", "dst": "network.cell tower.transmitter", "dstArrow": "triangle", - "dstLabel": "", "opacity": 1, "strokeDash": 0, "strokeWidth": 2, @@ -607,10 +601,8 @@ "id": "network.(cell tower.transmitter -> data processor.storage)[0]", "src": "network.cell tower.transmitter", "srcArrow": "none", - "srcLabel": "", "dst": "network.data processor.storage", "dstArrow": "triangle", - "dstLabel": "", "opacity": 1, "strokeDash": 0, "strokeWidth": 2, @@ -668,10 +660,8 @@ "id": "(user -> network.cell tower)[0]", "src": "user", "srcArrow": "none", - "srcLabel": "", "dst": "network.cell tower", "dstArrow": "triangle", - "dstLabel": "", "opacity": 1, "strokeDash": 0, "strokeWidth": 2, @@ -717,10 +707,8 @@ "id": "(user -> network.online portal.ui)[0]", "src": "user", "srcArrow": "none", - "srcLabel": "", "dst": "network.online portal.ui", "dstArrow": "triangle", - "dstLabel": "", "opacity": 1, "strokeDash": 3, "strokeWidth": 2, @@ -922,10 +910,8 @@ "id": "(api server -> network.online portal.ui)[0]", "src": "api server", "srcArrow": "none", - "srcLabel": "", "dst": "network.online portal.ui", "dstArrow": "triangle", - "dstLabel": "", "opacity": 1, "strokeDash": 0, "strokeWidth": 2, @@ -971,10 +957,8 @@ "id": "(api server -> logs)[0]", "src": "api server", "srcArrow": "none", - "srcLabel": "", "dst": "logs", "dstArrow": "triangle", - "dstLabel": "", "opacity": 1, "strokeDash": 0, "strokeWidth": 2, @@ -1020,10 +1004,8 @@ "id": "(network.data processor -> api server)[0]", "src": "network.data processor", "srcArrow": "none", - "srcLabel": "", "dst": "api server", "dstArrow": "triangle", - "dstLabel": "", "opacity": 1, "strokeDash": 0, "strokeWidth": 2, diff --git a/e2etests/testdata/stable/elk_shim/dagre/sketch.exp.svg b/e2etests/testdata/stable/elk_shim/dagre/sketch.exp.svg index fcb34d70c7..b82aba64de 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-2278300533 .fill-N1{fill:#0A0F25;} + .d2-2278300533 .fill-N2{fill:#676C7E;} + .d2-2278300533 .fill-N3{fill:#9499AB;} + .d2-2278300533 .fill-N4{fill:#CFD2DD;} + .d2-2278300533 .fill-N5{fill:#DEE1EB;} + .d2-2278300533 .fill-N6{fill:#EEF1F8;} + .d2-2278300533 .fill-N7{fill:#FFFFFF;} + .d2-2278300533 .fill-B1{fill:#0D32B2;} + .d2-2278300533 .fill-B2{fill:#0D32B2;} + .d2-2278300533 .fill-B3{fill:#E3E9FD;} + .d2-2278300533 .fill-B4{fill:#E3E9FD;} + .d2-2278300533 .fill-B5{fill:#EDF0FD;} + .d2-2278300533 .fill-B6{fill:#F7F8FE;} + .d2-2278300533 .fill-AA2{fill:#4A6FF3;} + .d2-2278300533 .fill-AA4{fill:#EDF0FD;} + .d2-2278300533 .fill-AA5{fill:#F7F8FE;} + .d2-2278300533 .fill-AB4{fill:#EDF0FD;} + .d2-2278300533 .fill-AB5{fill:#F7F8FE;} + .d2-2278300533 .stroke-N1{stroke:#0A0F25;} + .d2-2278300533 .stroke-N2{stroke:#676C7E;} + .d2-2278300533 .stroke-N3{stroke:#9499AB;} + .d2-2278300533 .stroke-N4{stroke:#CFD2DD;} + .d2-2278300533 .stroke-N5{stroke:#DEE1EB;} + .d2-2278300533 .stroke-N6{stroke:#EEF1F8;} + .d2-2278300533 .stroke-N7{stroke:#FFFFFF;} + .d2-2278300533 .stroke-B1{stroke:#0D32B2;} + .d2-2278300533 .stroke-B2{stroke:#0D32B2;} + .d2-2278300533 .stroke-B3{stroke:#E3E9FD;} + .d2-2278300533 .stroke-B4{stroke:#E3E9FD;} + .d2-2278300533 .stroke-B5{stroke:#EDF0FD;} + .d2-2278300533 .stroke-B6{stroke:#F7F8FE;} + .d2-2278300533 .stroke-AA2{stroke:#4A6FF3;} + .d2-2278300533 .stroke-AA4{stroke:#EDF0FD;} + .d2-2278300533 .stroke-AA5{stroke:#F7F8FE;} + .d2-2278300533 .stroke-AB4{stroke:#EDF0FD;} + .d2-2278300533 .stroke-AB5{stroke:#F7F8FE;} + .d2-2278300533 .background-color-N1{background-color:#0A0F25;} + .d2-2278300533 .background-color-N2{background-color:#676C7E;} + .d2-2278300533 .background-color-N3{background-color:#9499AB;} + .d2-2278300533 .background-color-N4{background-color:#CFD2DD;} + .d2-2278300533 .background-color-N5{background-color:#DEE1EB;} + .d2-2278300533 .background-color-N6{background-color:#EEF1F8;} + .d2-2278300533 .background-color-N7{background-color:#FFFFFF;} + .d2-2278300533 .background-color-B1{background-color:#0D32B2;} + .d2-2278300533 .background-color-B2{background-color:#0D32B2;} + .d2-2278300533 .background-color-B3{background-color:#E3E9FD;} + .d2-2278300533 .background-color-B4{background-color:#E3E9FD;} + .d2-2278300533 .background-color-B5{background-color:#EDF0FD;} + .d2-2278300533 .background-color-B6{background-color:#F7F8FE;} + .d2-2278300533 .background-color-AA2{background-color:#4A6FF3;} + .d2-2278300533 .background-color-AA4{background-color:#EDF0FD;} + .d2-2278300533 .background-color-AA5{background-color:#F7F8FE;} + .d2-2278300533 .background-color-AB4{background-color:#EDF0FD;} + .d2-2278300533 .background-color-AB5{background-color:#F7F8FE;} + .d2-2278300533 .color-N1{color:#0A0F25;} + .d2-2278300533 .color-N2{color:#676C7E;} + .d2-2278300533 .color-N3{color:#9499AB;} + .d2-2278300533 .color-N4{color:#CFD2DD;} + .d2-2278300533 .color-N5{color:#DEE1EB;} + .d2-2278300533 .color-N6{color:#EEF1F8;} + .d2-2278300533 .color-N7{color:#FFFFFF;} + .d2-2278300533 .color-B1{color:#0D32B2;} + .d2-2278300533 .color-B2{color:#0D32B2;} + .d2-2278300533 .color-B3{color:#E3E9FD;} + .d2-2278300533 .color-B4{color:#E3E9FD;} + .d2-2278300533 .color-B5{color:#EDF0FD;} + .d2-2278300533 .color-B6{color:#F7F8FE;} + .d2-2278300533 .color-AA2{color:#4A6FF3;} + .d2-2278300533 .color-AA4{color:#EDF0FD;} + .d2-2278300533 .color-AA5{color:#F7F8FE;} + .d2-2278300533 .color-AB4{color:#EDF0FD;} + .d2-2278300533 .color-AB5{color:#F7F8FE;}.appendix text.text{fill:#0A0F25}.md{--color-fg-default:#0A0F25;--color-fg-muted:#676C7E;--color-fg-subtle:#9499AB;--color-canvas-default:#FFFFFF;--color-canvas-subtle:#EEF1F8;--color-border-default:#0D32B2;--color-border-muted:#0D32B2;--color-neutral-muted:#EEF1F8;--color-accent-fg:#0D32B2;--color-accent-emphasis:#0D32B2;--color-attention-subtle:#676C7E;--color-danger-fg:red;}.sketch-overlay-B1{fill:url(#streaks-darker);mix-blend-mode:lighten}.sketch-overlay-B2{fill:url(#streaks-darker);mix-blend-mode:lighten}.sketch-overlay-B3{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-B4{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-B5{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-B6{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-AA2{fill:url(#streaks-dark);mix-blend-mode:overlay}.sketch-overlay-AA4{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-AA5{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-AB4{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-AB5{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-N1{fill:url(#streaks-darker);mix-blend-mode:lighten}.sketch-overlay-N2{fill:url(#streaks-dark);mix-blend-mode:overlay}.sketch-overlay-N3{fill:url(#streaks-normal);mix-blend-mode:color-burn}.sketch-overlay-N4{fill:url(#streaks-normal);mix-blend-mode:color-burn}.sketch-overlay-N5{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-N6{fill:url(#streaks-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 a4a1d1412e..4af1f51243 100644 --- a/e2etests/testdata/stable/elk_shim/elk/board.exp.json +++ b/e2etests/testdata/stable/elk_shim/elk/board.exp.json @@ -460,10 +460,8 @@ "id": "network.cell tower.(satellites -> transmitter)[0]", "src": "network.cell tower.satellites", "srcArrow": "none", - "srcLabel": "", "dst": "network.cell tower.transmitter", "dstArrow": "triangle", - "dstLabel": "", "opacity": 1, "strokeDash": 0, "strokeWidth": 2, @@ -500,10 +498,8 @@ "id": "network.cell tower.(satellites -> transmitter)[1]", "src": "network.cell tower.satellites", "srcArrow": "none", - "srcLabel": "", "dst": "network.cell tower.transmitter", "dstArrow": "triangle", - "dstLabel": "", "opacity": 1, "strokeDash": 0, "strokeWidth": 2, @@ -540,10 +536,8 @@ "id": "network.cell tower.(satellites -> transmitter)[2]", "src": "network.cell tower.satellites", "srcArrow": "none", - "srcLabel": "", "dst": "network.cell tower.transmitter", "dstArrow": "triangle", - "dstLabel": "", "opacity": 1, "strokeDash": 0, "strokeWidth": 2, @@ -580,10 +574,8 @@ "id": "network.(cell tower.transmitter -> data processor.storage)[0]", "src": "network.cell tower.transmitter", "srcArrow": "none", - "srcLabel": "", "dst": "network.data processor.storage", "dstArrow": "triangle", - "dstLabel": "", "opacity": 1, "strokeDash": 0, "strokeWidth": 2, @@ -620,10 +612,8 @@ "id": "(user -> network.cell tower)[0]", "src": "user", "srcArrow": "none", - "srcLabel": "", "dst": "network.cell tower", "dstArrow": "triangle", - "dstLabel": "", "opacity": 1, "strokeDash": 0, "strokeWidth": 2, @@ -668,10 +658,8 @@ "id": "(user -> network.online portal.ui)[0]", "src": "user", "srcArrow": "none", - "srcLabel": "", "dst": "network.online portal.ui", "dstArrow": "triangle", - "dstLabel": "", "opacity": 1, "strokeDash": 3, "strokeWidth": 2, @@ -708,10 +696,8 @@ "id": "(api server -> network.online portal.ui)[0]", "src": "api server", "srcArrow": "none", - "srcLabel": "", "dst": "network.online portal.ui", "dstArrow": "triangle", - "dstLabel": "", "opacity": 1, "strokeDash": 0, "strokeWidth": 2, @@ -756,10 +742,8 @@ "id": "(api server -> logs)[0]", "src": "api server", "srcArrow": "none", - "srcLabel": "", "dst": "logs", "dstArrow": "triangle", - "dstLabel": "", "opacity": 1, "strokeDash": 0, "strokeWidth": 2, @@ -804,10 +788,8 @@ "id": "(network.data processor -> api server)[0]", "src": "network.data processor", "srcArrow": "none", - "srcLabel": "", "dst": "api server", "dstArrow": "triangle", - "dstLabel": "", "opacity": 1, "strokeDash": 0, "strokeWidth": 2, diff --git a/e2etests/testdata/stable/elk_shim/elk/sketch.exp.svg b/e2etests/testdata/stable/elk_shim/elk/sketch.exp.svg index 2e9f95d486..b2ee377e62 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-3812898849 .fill-N1{fill:#0A0F25;} + .d2-3812898849 .fill-N2{fill:#676C7E;} + .d2-3812898849 .fill-N3{fill:#9499AB;} + .d2-3812898849 .fill-N4{fill:#CFD2DD;} + .d2-3812898849 .fill-N5{fill:#DEE1EB;} + .d2-3812898849 .fill-N6{fill:#EEF1F8;} + .d2-3812898849 .fill-N7{fill:#FFFFFF;} + .d2-3812898849 .fill-B1{fill:#0D32B2;} + .d2-3812898849 .fill-B2{fill:#0D32B2;} + .d2-3812898849 .fill-B3{fill:#E3E9FD;} + .d2-3812898849 .fill-B4{fill:#E3E9FD;} + .d2-3812898849 .fill-B5{fill:#EDF0FD;} + .d2-3812898849 .fill-B6{fill:#F7F8FE;} + .d2-3812898849 .fill-AA2{fill:#4A6FF3;} + .d2-3812898849 .fill-AA4{fill:#EDF0FD;} + .d2-3812898849 .fill-AA5{fill:#F7F8FE;} + .d2-3812898849 .fill-AB4{fill:#EDF0FD;} + .d2-3812898849 .fill-AB5{fill:#F7F8FE;} + .d2-3812898849 .stroke-N1{stroke:#0A0F25;} + .d2-3812898849 .stroke-N2{stroke:#676C7E;} + .d2-3812898849 .stroke-N3{stroke:#9499AB;} + .d2-3812898849 .stroke-N4{stroke:#CFD2DD;} + .d2-3812898849 .stroke-N5{stroke:#DEE1EB;} + .d2-3812898849 .stroke-N6{stroke:#EEF1F8;} + .d2-3812898849 .stroke-N7{stroke:#FFFFFF;} + .d2-3812898849 .stroke-B1{stroke:#0D32B2;} + .d2-3812898849 .stroke-B2{stroke:#0D32B2;} + .d2-3812898849 .stroke-B3{stroke:#E3E9FD;} + .d2-3812898849 .stroke-B4{stroke:#E3E9FD;} + .d2-3812898849 .stroke-B5{stroke:#EDF0FD;} + .d2-3812898849 .stroke-B6{stroke:#F7F8FE;} + .d2-3812898849 .stroke-AA2{stroke:#4A6FF3;} + .d2-3812898849 .stroke-AA4{stroke:#EDF0FD;} + .d2-3812898849 .stroke-AA5{stroke:#F7F8FE;} + .d2-3812898849 .stroke-AB4{stroke:#EDF0FD;} + .d2-3812898849 .stroke-AB5{stroke:#F7F8FE;} + .d2-3812898849 .background-color-N1{background-color:#0A0F25;} + .d2-3812898849 .background-color-N2{background-color:#676C7E;} + .d2-3812898849 .background-color-N3{background-color:#9499AB;} + .d2-3812898849 .background-color-N4{background-color:#CFD2DD;} + .d2-3812898849 .background-color-N5{background-color:#DEE1EB;} + .d2-3812898849 .background-color-N6{background-color:#EEF1F8;} + .d2-3812898849 .background-color-N7{background-color:#FFFFFF;} + .d2-3812898849 .background-color-B1{background-color:#0D32B2;} + .d2-3812898849 .background-color-B2{background-color:#0D32B2;} + .d2-3812898849 .background-color-B3{background-color:#E3E9FD;} + .d2-3812898849 .background-color-B4{background-color:#E3E9FD;} + .d2-3812898849 .background-color-B5{background-color:#EDF0FD;} + .d2-3812898849 .background-color-B6{background-color:#F7F8FE;} + .d2-3812898849 .background-color-AA2{background-color:#4A6FF3;} + .d2-3812898849 .background-color-AA4{background-color:#EDF0FD;} + .d2-3812898849 .background-color-AA5{background-color:#F7F8FE;} + .d2-3812898849 .background-color-AB4{background-color:#EDF0FD;} + .d2-3812898849 .background-color-AB5{background-color:#F7F8FE;} + .d2-3812898849 .color-N1{color:#0A0F25;} + .d2-3812898849 .color-N2{color:#676C7E;} + .d2-3812898849 .color-N3{color:#9499AB;} + .d2-3812898849 .color-N4{color:#CFD2DD;} + .d2-3812898849 .color-N5{color:#DEE1EB;} + .d2-3812898849 .color-N6{color:#EEF1F8;} + .d2-3812898849 .color-N7{color:#FFFFFF;} + .d2-3812898849 .color-B1{color:#0D32B2;} + .d2-3812898849 .color-B2{color:#0D32B2;} + .d2-3812898849 .color-B3{color:#E3E9FD;} + .d2-3812898849 .color-B4{color:#E3E9FD;} + .d2-3812898849 .color-B5{color:#EDF0FD;} + .d2-3812898849 .color-B6{color:#F7F8FE;} + .d2-3812898849 .color-AA2{color:#4A6FF3;} + .d2-3812898849 .color-AA4{color:#EDF0FD;} + .d2-3812898849 .color-AA5{color:#F7F8FE;} + .d2-3812898849 .color-AB4{color:#EDF0FD;} + .d2-3812898849 .color-AB5{color:#F7F8FE;}.appendix text.text{fill:#0A0F25}.md{--color-fg-default:#0A0F25;--color-fg-muted:#676C7E;--color-fg-subtle:#9499AB;--color-canvas-default:#FFFFFF;--color-canvas-subtle:#EEF1F8;--color-border-default:#0D32B2;--color-border-muted:#0D32B2;--color-neutral-muted:#EEF1F8;--color-accent-fg:#0D32B2;--color-accent-emphasis:#0D32B2;--color-attention-subtle:#676C7E;--color-danger-fg:red;}.sketch-overlay-B1{fill:url(#streaks-darker);mix-blend-mode:lighten}.sketch-overlay-B2{fill:url(#streaks-darker);mix-blend-mode:lighten}.sketch-overlay-B3{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-B4{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-B5{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-B6{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-AA2{fill:url(#streaks-dark);mix-blend-mode:overlay}.sketch-overlay-AA4{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-AA5{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-AB4{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-AB5{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-N1{fill:url(#streaks-darker);mix-blend-mode:lighten}.sketch-overlay-N2{fill:url(#streaks-dark);mix-blend-mode:overlay}.sketch-overlay-N3{fill:url(#streaks-normal);mix-blend-mode:color-burn}.sketch-overlay-N4{fill:url(#streaks-normal);mix-blend-mode:color-burn}.sketch-overlay-N5{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-N6{fill:url(#streaks-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 9b0d8ddbdc..be03ffb3a5 100644 --- a/e2etests/testdata/stable/ent2d2_basic/dagre/board.exp.json +++ b/e2etests/testdata/stable/ent2d2_basic/dagre/board.exp.json @@ -665,10 +665,8 @@ "id": "(User <-> User)[0]", "src": "User", "srcArrow": "cf-one-required", - "srcLabel": "", "dst": "User", "dstArrow": "cf-one", - "dstLabel": "", "opacity": 1, "strokeDash": 0, "strokeWidth": 2, @@ -750,10 +748,8 @@ "id": "(User <-> User)[1]", "src": "User", "srcArrow": "cf-one-required", - "srcLabel": "", "dst": "User", "dstArrow": "cf-many", - "dstLabel": "", "opacity": 1, "strokeDash": 0, "strokeWidth": 2, @@ -835,10 +831,8 @@ "id": "(User <-> Pet)[0]", "src": "User", "srcArrow": "cf-one-required", - "srcLabel": "", "dst": "Pet", "dstArrow": "cf-many", - "dstLabel": "", "opacity": 1, "strokeDash": 0, "strokeWidth": 2, @@ -884,10 +878,8 @@ "id": "(User <-> Card)[0]", "src": "User", "srcArrow": "cf-one-required", - "srcLabel": "", "dst": "Card", "dstArrow": "cf-one", - "dstLabel": "", "opacity": 1, "strokeDash": 0, "strokeWidth": 2, @@ -933,10 +925,8 @@ "id": "(User <-> Post)[0]", "src": "User", "srcArrow": "cf-one-required", - "srcLabel": "", "dst": "Post", "dstArrow": "cf-many", - "dstLabel": "", "opacity": 1, "strokeDash": 0, "strokeWidth": 2, @@ -982,10 +972,8 @@ "id": "(User <-> Metadata)[0]", "src": "User", "srcArrow": "cf-one-required", - "srcLabel": "", "dst": "Metadata", "dstArrow": "cf-many", - "dstLabel": "", "opacity": 1, "strokeDash": 0, "strokeWidth": 2, @@ -1031,10 +1019,8 @@ "id": "(User <-> Info)[0]", "src": "User", "srcArrow": "cf-one-required", - "srcLabel": "", "dst": "Info", "dstArrow": "cf-many", - "dstLabel": "", "opacity": 1, "strokeDash": 0, "strokeWidth": 2, diff --git a/e2etests/testdata/stable/ent2d2_basic/dagre/sketch.exp.svg b/e2etests/testdata/stable/ent2d2_basic/dagre/sketch.exp.svg index 60b078ea00..ce8068f540 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/parentpets/ownercard/ownerposts/authormetadata/userinfo/user + .d2-3532541528 .fill-N1{fill:#0A0F25;} + .d2-3532541528 .fill-N2{fill:#676C7E;} + .d2-3532541528 .fill-N3{fill:#9499AB;} + .d2-3532541528 .fill-N4{fill:#CFD2DD;} + .d2-3532541528 .fill-N5{fill:#DEE1EB;} + .d2-3532541528 .fill-N6{fill:#EEF1F8;} + .d2-3532541528 .fill-N7{fill:#FFFFFF;} + .d2-3532541528 .fill-B1{fill:#0D32B2;} + .d2-3532541528 .fill-B2{fill:#0D32B2;} + .d2-3532541528 .fill-B3{fill:#E3E9FD;} + .d2-3532541528 .fill-B4{fill:#E3E9FD;} + .d2-3532541528 .fill-B5{fill:#EDF0FD;} + .d2-3532541528 .fill-B6{fill:#F7F8FE;} + .d2-3532541528 .fill-AA2{fill:#4A6FF3;} + .d2-3532541528 .fill-AA4{fill:#EDF0FD;} + .d2-3532541528 .fill-AA5{fill:#F7F8FE;} + .d2-3532541528 .fill-AB4{fill:#EDF0FD;} + .d2-3532541528 .fill-AB5{fill:#F7F8FE;} + .d2-3532541528 .stroke-N1{stroke:#0A0F25;} + .d2-3532541528 .stroke-N2{stroke:#676C7E;} + .d2-3532541528 .stroke-N3{stroke:#9499AB;} + .d2-3532541528 .stroke-N4{stroke:#CFD2DD;} + .d2-3532541528 .stroke-N5{stroke:#DEE1EB;} + .d2-3532541528 .stroke-N6{stroke:#EEF1F8;} + .d2-3532541528 .stroke-N7{stroke:#FFFFFF;} + .d2-3532541528 .stroke-B1{stroke:#0D32B2;} + .d2-3532541528 .stroke-B2{stroke:#0D32B2;} + .d2-3532541528 .stroke-B3{stroke:#E3E9FD;} + .d2-3532541528 .stroke-B4{stroke:#E3E9FD;} + .d2-3532541528 .stroke-B5{stroke:#EDF0FD;} + .d2-3532541528 .stroke-B6{stroke:#F7F8FE;} + .d2-3532541528 .stroke-AA2{stroke:#4A6FF3;} + .d2-3532541528 .stroke-AA4{stroke:#EDF0FD;} + .d2-3532541528 .stroke-AA5{stroke:#F7F8FE;} + .d2-3532541528 .stroke-AB4{stroke:#EDF0FD;} + .d2-3532541528 .stroke-AB5{stroke:#F7F8FE;} + .d2-3532541528 .background-color-N1{background-color:#0A0F25;} + .d2-3532541528 .background-color-N2{background-color:#676C7E;} + .d2-3532541528 .background-color-N3{background-color:#9499AB;} + .d2-3532541528 .background-color-N4{background-color:#CFD2DD;} + .d2-3532541528 .background-color-N5{background-color:#DEE1EB;} + .d2-3532541528 .background-color-N6{background-color:#EEF1F8;} + .d2-3532541528 .background-color-N7{background-color:#FFFFFF;} + .d2-3532541528 .background-color-B1{background-color:#0D32B2;} + .d2-3532541528 .background-color-B2{background-color:#0D32B2;} + .d2-3532541528 .background-color-B3{background-color:#E3E9FD;} + .d2-3532541528 .background-color-B4{background-color:#E3E9FD;} + .d2-3532541528 .background-color-B5{background-color:#EDF0FD;} + .d2-3532541528 .background-color-B6{background-color:#F7F8FE;} + .d2-3532541528 .background-color-AA2{background-color:#4A6FF3;} + .d2-3532541528 .background-color-AA4{background-color:#EDF0FD;} + .d2-3532541528 .background-color-AA5{background-color:#F7F8FE;} + .d2-3532541528 .background-color-AB4{background-color:#EDF0FD;} + .d2-3532541528 .background-color-AB5{background-color:#F7F8FE;} + .d2-3532541528 .color-N1{color:#0A0F25;} + .d2-3532541528 .color-N2{color:#676C7E;} + .d2-3532541528 .color-N3{color:#9499AB;} + .d2-3532541528 .color-N4{color:#CFD2DD;} + .d2-3532541528 .color-N5{color:#DEE1EB;} + .d2-3532541528 .color-N6{color:#EEF1F8;} + .d2-3532541528 .color-N7{color:#FFFFFF;} + .d2-3532541528 .color-B1{color:#0D32B2;} + .d2-3532541528 .color-B2{color:#0D32B2;} + .d2-3532541528 .color-B3{color:#E3E9FD;} + .d2-3532541528 .color-B4{color:#E3E9FD;} + .d2-3532541528 .color-B5{color:#EDF0FD;} + .d2-3532541528 .color-B6{color:#F7F8FE;} + .d2-3532541528 .color-AA2{color:#4A6FF3;} + .d2-3532541528 .color-AA4{color:#EDF0FD;} + .d2-3532541528 .color-AA5{color:#F7F8FE;} + .d2-3532541528 .color-AB4{color:#EDF0FD;} + .d2-3532541528 .color-AB5{color:#F7F8FE;}.appendix text.text{fill:#0A0F25}.md{--color-fg-default:#0A0F25;--color-fg-muted:#676C7E;--color-fg-subtle:#9499AB;--color-canvas-default:#FFFFFF;--color-canvas-subtle:#EEF1F8;--color-border-default:#0D32B2;--color-border-muted:#0D32B2;--color-neutral-muted:#EEF1F8;--color-accent-fg:#0D32B2;--color-accent-emphasis:#0D32B2;--color-attention-subtle:#676C7E;--color-danger-fg:red;}.sketch-overlay-B1{fill:url(#streaks-darker);mix-blend-mode:lighten}.sketch-overlay-B2{fill:url(#streaks-darker);mix-blend-mode:lighten}.sketch-overlay-B3{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-B4{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-B5{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-B6{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-AA2{fill:url(#streaks-dark);mix-blend-mode:overlay}.sketch-overlay-AA4{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-AA5{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-AB4{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-AB5{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-N1{fill:url(#streaks-darker);mix-blend-mode:lighten}.sketch-overlay-N2{fill:url(#streaks-dark);mix-blend-mode:overlay}.sketch-overlay-N3{fill:url(#streaks-normal);mix-blend-mode:color-burn}.sketch-overlay-N4{fill:url(#streaks-normal);mix-blend-mode:color-burn}.sketch-overlay-N5{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-N6{fill:url(#streaks-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/parentpets/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 a1f1a28264..5468008d27 100644 --- a/e2etests/testdata/stable/ent2d2_basic/elk/board.exp.json +++ b/e2etests/testdata/stable/ent2d2_basic/elk/board.exp.json @@ -665,10 +665,8 @@ "id": "(User <-> User)[0]", "src": "User", "srcArrow": "cf-one-required", - "srcLabel": "", "dst": "User", "dstArrow": "cf-one", - "dstLabel": "", "opacity": 1, "strokeDash": 0, "strokeWidth": 2, @@ -713,10 +711,8 @@ "id": "(User <-> User)[1]", "src": "User", "srcArrow": "cf-one-required", - "srcLabel": "", "dst": "User", "dstArrow": "cf-many", - "dstLabel": "", "opacity": 1, "strokeDash": 0, "strokeWidth": 2, @@ -761,10 +757,8 @@ "id": "(User <-> Pet)[0]", "src": "User", "srcArrow": "cf-one-required", - "srcLabel": "", "dst": "Pet", "dstArrow": "cf-many", - "dstLabel": "", "opacity": 1, "strokeDash": 0, "strokeWidth": 2, @@ -809,10 +803,8 @@ "id": "(User <-> Card)[0]", "src": "User", "srcArrow": "cf-one-required", - "srcLabel": "", "dst": "Card", "dstArrow": "cf-one", - "dstLabel": "", "opacity": 1, "strokeDash": 0, "strokeWidth": 2, @@ -857,10 +849,8 @@ "id": "(User <-> Post)[0]", "src": "User", "srcArrow": "cf-one-required", - "srcLabel": "", "dst": "Post", "dstArrow": "cf-many", - "dstLabel": "", "opacity": 1, "strokeDash": 0, "strokeWidth": 2, @@ -897,10 +887,8 @@ "id": "(User <-> Metadata)[0]", "src": "User", "srcArrow": "cf-one-required", - "srcLabel": "", "dst": "Metadata", "dstArrow": "cf-many", - "dstLabel": "", "opacity": 1, "strokeDash": 0, "strokeWidth": 2, @@ -945,10 +933,8 @@ "id": "(User <-> Info)[0]", "src": "User", "srcArrow": "cf-one-required", - "srcLabel": "", "dst": "Info", "dstArrow": "cf-many", - "dstLabel": "", "opacity": 1, "strokeDash": 0, "strokeWidth": 2, diff --git a/e2etests/testdata/stable/ent2d2_basic/elk/sketch.exp.svg b/e2etests/testdata/stable/ent2d2_basic/elk/sketch.exp.svg index 94b233c21e..94d8f6959a 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/parentpets/ownercard/ownerposts/authormetadata/userinfo/user + .d2-948931554 .fill-N1{fill:#0A0F25;} + .d2-948931554 .fill-N2{fill:#676C7E;} + .d2-948931554 .fill-N3{fill:#9499AB;} + .d2-948931554 .fill-N4{fill:#CFD2DD;} + .d2-948931554 .fill-N5{fill:#DEE1EB;} + .d2-948931554 .fill-N6{fill:#EEF1F8;} + .d2-948931554 .fill-N7{fill:#FFFFFF;} + .d2-948931554 .fill-B1{fill:#0D32B2;} + .d2-948931554 .fill-B2{fill:#0D32B2;} + .d2-948931554 .fill-B3{fill:#E3E9FD;} + .d2-948931554 .fill-B4{fill:#E3E9FD;} + .d2-948931554 .fill-B5{fill:#EDF0FD;} + .d2-948931554 .fill-B6{fill:#F7F8FE;} + .d2-948931554 .fill-AA2{fill:#4A6FF3;} + .d2-948931554 .fill-AA4{fill:#EDF0FD;} + .d2-948931554 .fill-AA5{fill:#F7F8FE;} + .d2-948931554 .fill-AB4{fill:#EDF0FD;} + .d2-948931554 .fill-AB5{fill:#F7F8FE;} + .d2-948931554 .stroke-N1{stroke:#0A0F25;} + .d2-948931554 .stroke-N2{stroke:#676C7E;} + .d2-948931554 .stroke-N3{stroke:#9499AB;} + .d2-948931554 .stroke-N4{stroke:#CFD2DD;} + .d2-948931554 .stroke-N5{stroke:#DEE1EB;} + .d2-948931554 .stroke-N6{stroke:#EEF1F8;} + .d2-948931554 .stroke-N7{stroke:#FFFFFF;} + .d2-948931554 .stroke-B1{stroke:#0D32B2;} + .d2-948931554 .stroke-B2{stroke:#0D32B2;} + .d2-948931554 .stroke-B3{stroke:#E3E9FD;} + .d2-948931554 .stroke-B4{stroke:#E3E9FD;} + .d2-948931554 .stroke-B5{stroke:#EDF0FD;} + .d2-948931554 .stroke-B6{stroke:#F7F8FE;} + .d2-948931554 .stroke-AA2{stroke:#4A6FF3;} + .d2-948931554 .stroke-AA4{stroke:#EDF0FD;} + .d2-948931554 .stroke-AA5{stroke:#F7F8FE;} + .d2-948931554 .stroke-AB4{stroke:#EDF0FD;} + .d2-948931554 .stroke-AB5{stroke:#F7F8FE;} + .d2-948931554 .background-color-N1{background-color:#0A0F25;} + .d2-948931554 .background-color-N2{background-color:#676C7E;} + .d2-948931554 .background-color-N3{background-color:#9499AB;} + .d2-948931554 .background-color-N4{background-color:#CFD2DD;} + .d2-948931554 .background-color-N5{background-color:#DEE1EB;} + .d2-948931554 .background-color-N6{background-color:#EEF1F8;} + .d2-948931554 .background-color-N7{background-color:#FFFFFF;} + .d2-948931554 .background-color-B1{background-color:#0D32B2;} + .d2-948931554 .background-color-B2{background-color:#0D32B2;} + .d2-948931554 .background-color-B3{background-color:#E3E9FD;} + .d2-948931554 .background-color-B4{background-color:#E3E9FD;} + .d2-948931554 .background-color-B5{background-color:#EDF0FD;} + .d2-948931554 .background-color-B6{background-color:#F7F8FE;} + .d2-948931554 .background-color-AA2{background-color:#4A6FF3;} + .d2-948931554 .background-color-AA4{background-color:#EDF0FD;} + .d2-948931554 .background-color-AA5{background-color:#F7F8FE;} + .d2-948931554 .background-color-AB4{background-color:#EDF0FD;} + .d2-948931554 .background-color-AB5{background-color:#F7F8FE;} + .d2-948931554 .color-N1{color:#0A0F25;} + .d2-948931554 .color-N2{color:#676C7E;} + .d2-948931554 .color-N3{color:#9499AB;} + .d2-948931554 .color-N4{color:#CFD2DD;} + .d2-948931554 .color-N5{color:#DEE1EB;} + .d2-948931554 .color-N6{color:#EEF1F8;} + .d2-948931554 .color-N7{color:#FFFFFF;} + .d2-948931554 .color-B1{color:#0D32B2;} + .d2-948931554 .color-B2{color:#0D32B2;} + .d2-948931554 .color-B3{color:#E3E9FD;} + .d2-948931554 .color-B4{color:#E3E9FD;} + .d2-948931554 .color-B5{color:#EDF0FD;} + .d2-948931554 .color-B6{color:#F7F8FE;} + .d2-948931554 .color-AA2{color:#4A6FF3;} + .d2-948931554 .color-AA4{color:#EDF0FD;} + .d2-948931554 .color-AA5{color:#F7F8FE;} + .d2-948931554 .color-AB4{color:#EDF0FD;} + .d2-948931554 .color-AB5{color:#F7F8FE;}.appendix text.text{fill:#0A0F25}.md{--color-fg-default:#0A0F25;--color-fg-muted:#676C7E;--color-fg-subtle:#9499AB;--color-canvas-default:#FFFFFF;--color-canvas-subtle:#EEF1F8;--color-border-default:#0D32B2;--color-border-muted:#0D32B2;--color-neutral-muted:#EEF1F8;--color-accent-fg:#0D32B2;--color-accent-emphasis:#0D32B2;--color-attention-subtle:#676C7E;--color-danger-fg:red;}.sketch-overlay-B1{fill:url(#streaks-darker);mix-blend-mode:lighten}.sketch-overlay-B2{fill:url(#streaks-darker);mix-blend-mode:lighten}.sketch-overlay-B3{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-B4{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-B5{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-B6{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-AA2{fill:url(#streaks-dark);mix-blend-mode:overlay}.sketch-overlay-AA4{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-AA5{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-AB4{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-AB5{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-N1{fill:url(#streaks-darker);mix-blend-mode:lighten}.sketch-overlay-N2{fill:url(#streaks-dark);mix-blend-mode:overlay}.sketch-overlay-N3{fill:url(#streaks-normal);mix-blend-mode:color-burn}.sketch-overlay-N4{fill:url(#streaks-normal);mix-blend-mode:color-burn}.sketch-overlay-N5{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-N6{fill:url(#streaks-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/parentpets/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 6f9da8def4..197233fcf6 100644 --- a/e2etests/testdata/stable/font_colors/dagre/board.exp.json +++ b/e2etests/testdata/stable/font_colors/dagre/board.exp.json @@ -91,10 +91,8 @@ "id": "(alpha -> beta)[0]", "src": "alpha", "srcArrow": "none", - "srcLabel": "", "dst": "beta", "dstArrow": "triangle", - "dstLabel": "", "opacity": 1, "strokeDash": 0, "strokeWidth": 2, diff --git a/e2etests/testdata/stable/font_colors/dagre/sketch.exp.svg b/e2etests/testdata/stable/font_colors/dagre/sketch.exp.svg index 221fe031b5..ebe74009b6 100644 --- a/e2etests/testdata/stable/font_colors/dagre/sketch.exp.svg +++ b/e2etests/testdata/stable/font_colors/dagre/sketch.exp.svg @@ -1,16 +1,16 @@ -alphabeta gamma + .d2-3674347540 .fill-N1{fill:#0A0F25;} + .d2-3674347540 .fill-N2{fill:#676C7E;} + .d2-3674347540 .fill-N3{fill:#9499AB;} + .d2-3674347540 .fill-N4{fill:#CFD2DD;} + .d2-3674347540 .fill-N5{fill:#DEE1EB;} + .d2-3674347540 .fill-N6{fill:#EEF1F8;} + .d2-3674347540 .fill-N7{fill:#FFFFFF;} + .d2-3674347540 .fill-B1{fill:#0D32B2;} + .d2-3674347540 .fill-B2{fill:#0D32B2;} + .d2-3674347540 .fill-B3{fill:#E3E9FD;} + .d2-3674347540 .fill-B4{fill:#E3E9FD;} + .d2-3674347540 .fill-B5{fill:#EDF0FD;} + .d2-3674347540 .fill-B6{fill:#F7F8FE;} + .d2-3674347540 .fill-AA2{fill:#4A6FF3;} + .d2-3674347540 .fill-AA4{fill:#EDF0FD;} + .d2-3674347540 .fill-AA5{fill:#F7F8FE;} + .d2-3674347540 .fill-AB4{fill:#EDF0FD;} + .d2-3674347540 .fill-AB5{fill:#F7F8FE;} + .d2-3674347540 .stroke-N1{stroke:#0A0F25;} + .d2-3674347540 .stroke-N2{stroke:#676C7E;} + .d2-3674347540 .stroke-N3{stroke:#9499AB;} + .d2-3674347540 .stroke-N4{stroke:#CFD2DD;} + .d2-3674347540 .stroke-N5{stroke:#DEE1EB;} + .d2-3674347540 .stroke-N6{stroke:#EEF1F8;} + .d2-3674347540 .stroke-N7{stroke:#FFFFFF;} + .d2-3674347540 .stroke-B1{stroke:#0D32B2;} + .d2-3674347540 .stroke-B2{stroke:#0D32B2;} + .d2-3674347540 .stroke-B3{stroke:#E3E9FD;} + .d2-3674347540 .stroke-B4{stroke:#E3E9FD;} + .d2-3674347540 .stroke-B5{stroke:#EDF0FD;} + .d2-3674347540 .stroke-B6{stroke:#F7F8FE;} + .d2-3674347540 .stroke-AA2{stroke:#4A6FF3;} + .d2-3674347540 .stroke-AA4{stroke:#EDF0FD;} + .d2-3674347540 .stroke-AA5{stroke:#F7F8FE;} + .d2-3674347540 .stroke-AB4{stroke:#EDF0FD;} + .d2-3674347540 .stroke-AB5{stroke:#F7F8FE;} + .d2-3674347540 .background-color-N1{background-color:#0A0F25;} + .d2-3674347540 .background-color-N2{background-color:#676C7E;} + .d2-3674347540 .background-color-N3{background-color:#9499AB;} + .d2-3674347540 .background-color-N4{background-color:#CFD2DD;} + .d2-3674347540 .background-color-N5{background-color:#DEE1EB;} + .d2-3674347540 .background-color-N6{background-color:#EEF1F8;} + .d2-3674347540 .background-color-N7{background-color:#FFFFFF;} + .d2-3674347540 .background-color-B1{background-color:#0D32B2;} + .d2-3674347540 .background-color-B2{background-color:#0D32B2;} + .d2-3674347540 .background-color-B3{background-color:#E3E9FD;} + .d2-3674347540 .background-color-B4{background-color:#E3E9FD;} + .d2-3674347540 .background-color-B5{background-color:#EDF0FD;} + .d2-3674347540 .background-color-B6{background-color:#F7F8FE;} + .d2-3674347540 .background-color-AA2{background-color:#4A6FF3;} + .d2-3674347540 .background-color-AA4{background-color:#EDF0FD;} + .d2-3674347540 .background-color-AA5{background-color:#F7F8FE;} + .d2-3674347540 .background-color-AB4{background-color:#EDF0FD;} + .d2-3674347540 .background-color-AB5{background-color:#F7F8FE;} + .d2-3674347540 .color-N1{color:#0A0F25;} + .d2-3674347540 .color-N2{color:#676C7E;} + .d2-3674347540 .color-N3{color:#9499AB;} + .d2-3674347540 .color-N4{color:#CFD2DD;} + .d2-3674347540 .color-N5{color:#DEE1EB;} + .d2-3674347540 .color-N6{color:#EEF1F8;} + .d2-3674347540 .color-N7{color:#FFFFFF;} + .d2-3674347540 .color-B1{color:#0D32B2;} + .d2-3674347540 .color-B2{color:#0D32B2;} + .d2-3674347540 .color-B3{color:#E3E9FD;} + .d2-3674347540 .color-B4{color:#E3E9FD;} + .d2-3674347540 .color-B5{color:#EDF0FD;} + .d2-3674347540 .color-B6{color:#F7F8FE;} + .d2-3674347540 .color-AA2{color:#4A6FF3;} + .d2-3674347540 .color-AA4{color:#EDF0FD;} + .d2-3674347540 .color-AA5{color:#F7F8FE;} + .d2-3674347540 .color-AB4{color:#EDF0FD;} + .d2-3674347540 .color-AB5{color:#F7F8FE;}.appendix text.text{fill:#0A0F25}.md{--color-fg-default:#0A0F25;--color-fg-muted:#676C7E;--color-fg-subtle:#9499AB;--color-canvas-default:#FFFFFF;--color-canvas-subtle:#EEF1F8;--color-border-default:#0D32B2;--color-border-muted:#0D32B2;--color-neutral-muted:#EEF1F8;--color-accent-fg:#0D32B2;--color-accent-emphasis:#0D32B2;--color-attention-subtle:#676C7E;--color-danger-fg:red;}.sketch-overlay-B1{fill:url(#streaks-darker);mix-blend-mode:lighten}.sketch-overlay-B2{fill:url(#streaks-darker);mix-blend-mode:lighten}.sketch-overlay-B3{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-B4{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-B5{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-B6{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-AA2{fill:url(#streaks-dark);mix-blend-mode:overlay}.sketch-overlay-AA4{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-AA5{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-AB4{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-AB5{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-N1{fill:url(#streaks-darker);mix-blend-mode:lighten}.sketch-overlay-N2{fill:url(#streaks-dark);mix-blend-mode:overlay}.sketch-overlay-N3{fill:url(#streaks-normal);mix-blend-mode:color-burn}.sketch-overlay-N4{fill:url(#streaks-normal);mix-blend-mode:color-burn}.sketch-overlay-N5{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-N6{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-N7{fill:url(#streaks-bright);mix-blend-mode:darken}.light-code{display: block}.dark-code{display: none}]]>alphabeta gamma \ No newline at end of file diff --git a/e2etests/testdata/stable/font_colors/elk/board.exp.json b/e2etests/testdata/stable/font_colors/elk/board.exp.json index a4a6728a73..2b2fec8124 100644 --- a/e2etests/testdata/stable/font_colors/elk/board.exp.json +++ b/e2etests/testdata/stable/font_colors/elk/board.exp.json @@ -91,10 +91,8 @@ "id": "(alpha -> beta)[0]", "src": "alpha", "srcArrow": "none", - "srcLabel": "", "dst": "beta", "dstArrow": "triangle", - "dstLabel": "", "opacity": 1, "strokeDash": 0, "strokeWidth": 2, diff --git a/e2etests/testdata/stable/font_colors/elk/sketch.exp.svg b/e2etests/testdata/stable/font_colors/elk/sketch.exp.svg index 98a5a71479..3b528ebdab 100644 --- a/e2etests/testdata/stable/font_colors/elk/sketch.exp.svg +++ b/e2etests/testdata/stable/font_colors/elk/sketch.exp.svg @@ -1,16 +1,16 @@ -alphabeta gamma + .d2-2042966524 .fill-N1{fill:#0A0F25;} + .d2-2042966524 .fill-N2{fill:#676C7E;} + .d2-2042966524 .fill-N3{fill:#9499AB;} + .d2-2042966524 .fill-N4{fill:#CFD2DD;} + .d2-2042966524 .fill-N5{fill:#DEE1EB;} + .d2-2042966524 .fill-N6{fill:#EEF1F8;} + .d2-2042966524 .fill-N7{fill:#FFFFFF;} + .d2-2042966524 .fill-B1{fill:#0D32B2;} + .d2-2042966524 .fill-B2{fill:#0D32B2;} + .d2-2042966524 .fill-B3{fill:#E3E9FD;} + .d2-2042966524 .fill-B4{fill:#E3E9FD;} + .d2-2042966524 .fill-B5{fill:#EDF0FD;} + .d2-2042966524 .fill-B6{fill:#F7F8FE;} + .d2-2042966524 .fill-AA2{fill:#4A6FF3;} + .d2-2042966524 .fill-AA4{fill:#EDF0FD;} + .d2-2042966524 .fill-AA5{fill:#F7F8FE;} + .d2-2042966524 .fill-AB4{fill:#EDF0FD;} + .d2-2042966524 .fill-AB5{fill:#F7F8FE;} + .d2-2042966524 .stroke-N1{stroke:#0A0F25;} + .d2-2042966524 .stroke-N2{stroke:#676C7E;} + .d2-2042966524 .stroke-N3{stroke:#9499AB;} + .d2-2042966524 .stroke-N4{stroke:#CFD2DD;} + .d2-2042966524 .stroke-N5{stroke:#DEE1EB;} + .d2-2042966524 .stroke-N6{stroke:#EEF1F8;} + .d2-2042966524 .stroke-N7{stroke:#FFFFFF;} + .d2-2042966524 .stroke-B1{stroke:#0D32B2;} + .d2-2042966524 .stroke-B2{stroke:#0D32B2;} + .d2-2042966524 .stroke-B3{stroke:#E3E9FD;} + .d2-2042966524 .stroke-B4{stroke:#E3E9FD;} + .d2-2042966524 .stroke-B5{stroke:#EDF0FD;} + .d2-2042966524 .stroke-B6{stroke:#F7F8FE;} + .d2-2042966524 .stroke-AA2{stroke:#4A6FF3;} + .d2-2042966524 .stroke-AA4{stroke:#EDF0FD;} + .d2-2042966524 .stroke-AA5{stroke:#F7F8FE;} + .d2-2042966524 .stroke-AB4{stroke:#EDF0FD;} + .d2-2042966524 .stroke-AB5{stroke:#F7F8FE;} + .d2-2042966524 .background-color-N1{background-color:#0A0F25;} + .d2-2042966524 .background-color-N2{background-color:#676C7E;} + .d2-2042966524 .background-color-N3{background-color:#9499AB;} + .d2-2042966524 .background-color-N4{background-color:#CFD2DD;} + .d2-2042966524 .background-color-N5{background-color:#DEE1EB;} + .d2-2042966524 .background-color-N6{background-color:#EEF1F8;} + .d2-2042966524 .background-color-N7{background-color:#FFFFFF;} + .d2-2042966524 .background-color-B1{background-color:#0D32B2;} + .d2-2042966524 .background-color-B2{background-color:#0D32B2;} + .d2-2042966524 .background-color-B3{background-color:#E3E9FD;} + .d2-2042966524 .background-color-B4{background-color:#E3E9FD;} + .d2-2042966524 .background-color-B5{background-color:#EDF0FD;} + .d2-2042966524 .background-color-B6{background-color:#F7F8FE;} + .d2-2042966524 .background-color-AA2{background-color:#4A6FF3;} + .d2-2042966524 .background-color-AA4{background-color:#EDF0FD;} + .d2-2042966524 .background-color-AA5{background-color:#F7F8FE;} + .d2-2042966524 .background-color-AB4{background-color:#EDF0FD;} + .d2-2042966524 .background-color-AB5{background-color:#F7F8FE;} + .d2-2042966524 .color-N1{color:#0A0F25;} + .d2-2042966524 .color-N2{color:#676C7E;} + .d2-2042966524 .color-N3{color:#9499AB;} + .d2-2042966524 .color-N4{color:#CFD2DD;} + .d2-2042966524 .color-N5{color:#DEE1EB;} + .d2-2042966524 .color-N6{color:#EEF1F8;} + .d2-2042966524 .color-N7{color:#FFFFFF;} + .d2-2042966524 .color-B1{color:#0D32B2;} + .d2-2042966524 .color-B2{color:#0D32B2;} + .d2-2042966524 .color-B3{color:#E3E9FD;} + .d2-2042966524 .color-B4{color:#E3E9FD;} + .d2-2042966524 .color-B5{color:#EDF0FD;} + .d2-2042966524 .color-B6{color:#F7F8FE;} + .d2-2042966524 .color-AA2{color:#4A6FF3;} + .d2-2042966524 .color-AA4{color:#EDF0FD;} + .d2-2042966524 .color-AA5{color:#F7F8FE;} + .d2-2042966524 .color-AB4{color:#EDF0FD;} + .d2-2042966524 .color-AB5{color:#F7F8FE;}.appendix text.text{fill:#0A0F25}.md{--color-fg-default:#0A0F25;--color-fg-muted:#676C7E;--color-fg-subtle:#9499AB;--color-canvas-default:#FFFFFF;--color-canvas-subtle:#EEF1F8;--color-border-default:#0D32B2;--color-border-muted:#0D32B2;--color-neutral-muted:#EEF1F8;--color-accent-fg:#0D32B2;--color-accent-emphasis:#0D32B2;--color-attention-subtle:#676C7E;--color-danger-fg:red;}.sketch-overlay-B1{fill:url(#streaks-darker);mix-blend-mode:lighten}.sketch-overlay-B2{fill:url(#streaks-darker);mix-blend-mode:lighten}.sketch-overlay-B3{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-B4{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-B5{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-B6{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-AA2{fill:url(#streaks-dark);mix-blend-mode:overlay}.sketch-overlay-AA4{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-AA5{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-AB4{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-AB5{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-N1{fill:url(#streaks-darker);mix-blend-mode:lighten}.sketch-overlay-N2{fill:url(#streaks-dark);mix-blend-mode:overlay}.sketch-overlay-N3{fill:url(#streaks-normal);mix-blend-mode:color-burn}.sketch-overlay-N4{fill:url(#streaks-normal);mix-blend-mode:color-burn}.sketch-overlay-N5{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-N6{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-N7{fill:url(#streaks-bright);mix-blend-mode:darken}.light-code{display: block}.dark-code{display: none}]]>alphabeta gamma \ No newline at end of file diff --git a/e2etests/testdata/stable/font_sizes/dagre/board.exp.json b/e2etests/testdata/stable/font_sizes/dagre/board.exp.json index 4797b1f7e9..c8eaf94492 100644 --- a/e2etests/testdata/stable/font_sizes/dagre/board.exp.json +++ b/e2etests/testdata/stable/font_sizes/dagre/board.exp.json @@ -501,10 +501,8 @@ "id": "(custom 8 -> size XS)[0]", "src": "custom 8", "srcArrow": "none", - "srcLabel": "", "dst": "size XS", "dstArrow": "triangle", - "dstLabel": "", "opacity": 1, "strokeDash": 0, "strokeWidth": 2, @@ -550,10 +548,8 @@ "id": "(size S -> size M)[0]", "src": "size S", "srcArrow": "none", - "srcLabel": "", "dst": "size M", "dstArrow": "triangle", - "dstLabel": "", "opacity": 1, "strokeDash": 0, "strokeWidth": 2, @@ -599,10 +595,8 @@ "id": "(size XXXL -> custom 64)[0]", "src": "size XXXL", "srcArrow": "none", - "srcLabel": "", "dst": "custom 64", "dstArrow": "triangle", - "dstLabel": "", "opacity": 1, "strokeDash": 0, "strokeWidth": 2, diff --git a/e2etests/testdata/stable/font_sizes/dagre/sketch.exp.svg b/e2etests/testdata/stable/font_sizes/dagre/sketch.exp.svg index 9a016a320b..4f0d3946d4 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-728030133 .fill-N1{fill:#0A0F25;} + .d2-728030133 .fill-N2{fill:#676C7E;} + .d2-728030133 .fill-N3{fill:#9499AB;} + .d2-728030133 .fill-N4{fill:#CFD2DD;} + .d2-728030133 .fill-N5{fill:#DEE1EB;} + .d2-728030133 .fill-N6{fill:#EEF1F8;} + .d2-728030133 .fill-N7{fill:#FFFFFF;} + .d2-728030133 .fill-B1{fill:#0D32B2;} + .d2-728030133 .fill-B2{fill:#0D32B2;} + .d2-728030133 .fill-B3{fill:#E3E9FD;} + .d2-728030133 .fill-B4{fill:#E3E9FD;} + .d2-728030133 .fill-B5{fill:#EDF0FD;} + .d2-728030133 .fill-B6{fill:#F7F8FE;} + .d2-728030133 .fill-AA2{fill:#4A6FF3;} + .d2-728030133 .fill-AA4{fill:#EDF0FD;} + .d2-728030133 .fill-AA5{fill:#F7F8FE;} + .d2-728030133 .fill-AB4{fill:#EDF0FD;} + .d2-728030133 .fill-AB5{fill:#F7F8FE;} + .d2-728030133 .stroke-N1{stroke:#0A0F25;} + .d2-728030133 .stroke-N2{stroke:#676C7E;} + .d2-728030133 .stroke-N3{stroke:#9499AB;} + .d2-728030133 .stroke-N4{stroke:#CFD2DD;} + .d2-728030133 .stroke-N5{stroke:#DEE1EB;} + .d2-728030133 .stroke-N6{stroke:#EEF1F8;} + .d2-728030133 .stroke-N7{stroke:#FFFFFF;} + .d2-728030133 .stroke-B1{stroke:#0D32B2;} + .d2-728030133 .stroke-B2{stroke:#0D32B2;} + .d2-728030133 .stroke-B3{stroke:#E3E9FD;} + .d2-728030133 .stroke-B4{stroke:#E3E9FD;} + .d2-728030133 .stroke-B5{stroke:#EDF0FD;} + .d2-728030133 .stroke-B6{stroke:#F7F8FE;} + .d2-728030133 .stroke-AA2{stroke:#4A6FF3;} + .d2-728030133 .stroke-AA4{stroke:#EDF0FD;} + .d2-728030133 .stroke-AA5{stroke:#F7F8FE;} + .d2-728030133 .stroke-AB4{stroke:#EDF0FD;} + .d2-728030133 .stroke-AB5{stroke:#F7F8FE;} + .d2-728030133 .background-color-N1{background-color:#0A0F25;} + .d2-728030133 .background-color-N2{background-color:#676C7E;} + .d2-728030133 .background-color-N3{background-color:#9499AB;} + .d2-728030133 .background-color-N4{background-color:#CFD2DD;} + .d2-728030133 .background-color-N5{background-color:#DEE1EB;} + .d2-728030133 .background-color-N6{background-color:#EEF1F8;} + .d2-728030133 .background-color-N7{background-color:#FFFFFF;} + .d2-728030133 .background-color-B1{background-color:#0D32B2;} + .d2-728030133 .background-color-B2{background-color:#0D32B2;} + .d2-728030133 .background-color-B3{background-color:#E3E9FD;} + .d2-728030133 .background-color-B4{background-color:#E3E9FD;} + .d2-728030133 .background-color-B5{background-color:#EDF0FD;} + .d2-728030133 .background-color-B6{background-color:#F7F8FE;} + .d2-728030133 .background-color-AA2{background-color:#4A6FF3;} + .d2-728030133 .background-color-AA4{background-color:#EDF0FD;} + .d2-728030133 .background-color-AA5{background-color:#F7F8FE;} + .d2-728030133 .background-color-AB4{background-color:#EDF0FD;} + .d2-728030133 .background-color-AB5{background-color:#F7F8FE;} + .d2-728030133 .color-N1{color:#0A0F25;} + .d2-728030133 .color-N2{color:#676C7E;} + .d2-728030133 .color-N3{color:#9499AB;} + .d2-728030133 .color-N4{color:#CFD2DD;} + .d2-728030133 .color-N5{color:#DEE1EB;} + .d2-728030133 .color-N6{color:#EEF1F8;} + .d2-728030133 .color-N7{color:#FFFFFF;} + .d2-728030133 .color-B1{color:#0D32B2;} + .d2-728030133 .color-B2{color:#0D32B2;} + .d2-728030133 .color-B3{color:#E3E9FD;} + .d2-728030133 .color-B4{color:#E3E9FD;} + .d2-728030133 .color-B5{color:#EDF0FD;} + .d2-728030133 .color-B6{color:#F7F8FE;} + .d2-728030133 .color-AA2{color:#4A6FF3;} + .d2-728030133 .color-AA4{color:#EDF0FD;} + .d2-728030133 .color-AA5{color:#F7F8FE;} + .d2-728030133 .color-AB4{color:#EDF0FD;} + .d2-728030133 .color-AB5{color:#F7F8FE;}.appendix text.text{fill:#0A0F25}.md{--color-fg-default:#0A0F25;--color-fg-muted:#676C7E;--color-fg-subtle:#9499AB;--color-canvas-default:#FFFFFF;--color-canvas-subtle:#EEF1F8;--color-border-default:#0D32B2;--color-border-muted:#0D32B2;--color-neutral-muted:#EEF1F8;--color-accent-fg:#0D32B2;--color-accent-emphasis:#0D32B2;--color-attention-subtle:#676C7E;--color-danger-fg:red;}.sketch-overlay-B1{fill:url(#streaks-darker);mix-blend-mode:lighten}.sketch-overlay-B2{fill:url(#streaks-darker);mix-blend-mode:lighten}.sketch-overlay-B3{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-B4{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-B5{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-B6{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-AA2{fill:url(#streaks-dark);mix-blend-mode:overlay}.sketch-overlay-AA4{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-AA5{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-AB4{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-AB5{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-N1{fill:url(#streaks-darker);mix-blend-mode:lighten}.sketch-overlay-N2{fill:url(#streaks-dark);mix-blend-mode:overlay}.sketch-overlay-N3{fill:url(#streaks-normal);mix-blend-mode:color-burn}.sketch-overlay-N4{fill:url(#streaks-normal);mix-blend-mode:color-burn}.sketch-overlay-N5{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-N6{fill:url(#streaks-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 6e4eb2bdfe..735ab1761c 100644 --- a/e2etests/testdata/stable/font_sizes/elk/board.exp.json +++ b/e2etests/testdata/stable/font_sizes/elk/board.exp.json @@ -501,10 +501,8 @@ "id": "(custom 8 -> size XS)[0]", "src": "custom 8", "srcArrow": "none", - "srcLabel": "", "dst": "size XS", "dstArrow": "triangle", - "dstLabel": "", "opacity": 1, "strokeDash": 0, "strokeWidth": 2, @@ -541,10 +539,8 @@ "id": "(size S -> size M)[0]", "src": "size S", "srcArrow": "none", - "srcLabel": "", "dst": "size M", "dstArrow": "triangle", - "dstLabel": "", "opacity": 1, "strokeDash": 0, "strokeWidth": 2, @@ -581,10 +577,8 @@ "id": "(size XXXL -> custom 64)[0]", "src": "size XXXL", "srcArrow": "none", - "srcLabel": "", "dst": "custom 64", "dstArrow": "triangle", - "dstLabel": "", "opacity": 1, "strokeDash": 0, "strokeWidth": 2, diff --git a/e2etests/testdata/stable/font_sizes/elk/sketch.exp.svg b/e2etests/testdata/stable/font_sizes/elk/sketch.exp.svg index 7ae59e11db..6c202f0a13 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-1059982041 .fill-N1{fill:#0A0F25;} + .d2-1059982041 .fill-N2{fill:#676C7E;} + .d2-1059982041 .fill-N3{fill:#9499AB;} + .d2-1059982041 .fill-N4{fill:#CFD2DD;} + .d2-1059982041 .fill-N5{fill:#DEE1EB;} + .d2-1059982041 .fill-N6{fill:#EEF1F8;} + .d2-1059982041 .fill-N7{fill:#FFFFFF;} + .d2-1059982041 .fill-B1{fill:#0D32B2;} + .d2-1059982041 .fill-B2{fill:#0D32B2;} + .d2-1059982041 .fill-B3{fill:#E3E9FD;} + .d2-1059982041 .fill-B4{fill:#E3E9FD;} + .d2-1059982041 .fill-B5{fill:#EDF0FD;} + .d2-1059982041 .fill-B6{fill:#F7F8FE;} + .d2-1059982041 .fill-AA2{fill:#4A6FF3;} + .d2-1059982041 .fill-AA4{fill:#EDF0FD;} + .d2-1059982041 .fill-AA5{fill:#F7F8FE;} + .d2-1059982041 .fill-AB4{fill:#EDF0FD;} + .d2-1059982041 .fill-AB5{fill:#F7F8FE;} + .d2-1059982041 .stroke-N1{stroke:#0A0F25;} + .d2-1059982041 .stroke-N2{stroke:#676C7E;} + .d2-1059982041 .stroke-N3{stroke:#9499AB;} + .d2-1059982041 .stroke-N4{stroke:#CFD2DD;} + .d2-1059982041 .stroke-N5{stroke:#DEE1EB;} + .d2-1059982041 .stroke-N6{stroke:#EEF1F8;} + .d2-1059982041 .stroke-N7{stroke:#FFFFFF;} + .d2-1059982041 .stroke-B1{stroke:#0D32B2;} + .d2-1059982041 .stroke-B2{stroke:#0D32B2;} + .d2-1059982041 .stroke-B3{stroke:#E3E9FD;} + .d2-1059982041 .stroke-B4{stroke:#E3E9FD;} + .d2-1059982041 .stroke-B5{stroke:#EDF0FD;} + .d2-1059982041 .stroke-B6{stroke:#F7F8FE;} + .d2-1059982041 .stroke-AA2{stroke:#4A6FF3;} + .d2-1059982041 .stroke-AA4{stroke:#EDF0FD;} + .d2-1059982041 .stroke-AA5{stroke:#F7F8FE;} + .d2-1059982041 .stroke-AB4{stroke:#EDF0FD;} + .d2-1059982041 .stroke-AB5{stroke:#F7F8FE;} + .d2-1059982041 .background-color-N1{background-color:#0A0F25;} + .d2-1059982041 .background-color-N2{background-color:#676C7E;} + .d2-1059982041 .background-color-N3{background-color:#9499AB;} + .d2-1059982041 .background-color-N4{background-color:#CFD2DD;} + .d2-1059982041 .background-color-N5{background-color:#DEE1EB;} + .d2-1059982041 .background-color-N6{background-color:#EEF1F8;} + .d2-1059982041 .background-color-N7{background-color:#FFFFFF;} + .d2-1059982041 .background-color-B1{background-color:#0D32B2;} + .d2-1059982041 .background-color-B2{background-color:#0D32B2;} + .d2-1059982041 .background-color-B3{background-color:#E3E9FD;} + .d2-1059982041 .background-color-B4{background-color:#E3E9FD;} + .d2-1059982041 .background-color-B5{background-color:#EDF0FD;} + .d2-1059982041 .background-color-B6{background-color:#F7F8FE;} + .d2-1059982041 .background-color-AA2{background-color:#4A6FF3;} + .d2-1059982041 .background-color-AA4{background-color:#EDF0FD;} + .d2-1059982041 .background-color-AA5{background-color:#F7F8FE;} + .d2-1059982041 .background-color-AB4{background-color:#EDF0FD;} + .d2-1059982041 .background-color-AB5{background-color:#F7F8FE;} + .d2-1059982041 .color-N1{color:#0A0F25;} + .d2-1059982041 .color-N2{color:#676C7E;} + .d2-1059982041 .color-N3{color:#9499AB;} + .d2-1059982041 .color-N4{color:#CFD2DD;} + .d2-1059982041 .color-N5{color:#DEE1EB;} + .d2-1059982041 .color-N6{color:#EEF1F8;} + .d2-1059982041 .color-N7{color:#FFFFFF;} + .d2-1059982041 .color-B1{color:#0D32B2;} + .d2-1059982041 .color-B2{color:#0D32B2;} + .d2-1059982041 .color-B3{color:#E3E9FD;} + .d2-1059982041 .color-B4{color:#E3E9FD;} + .d2-1059982041 .color-B5{color:#EDF0FD;} + .d2-1059982041 .color-B6{color:#F7F8FE;} + .d2-1059982041 .color-AA2{color:#4A6FF3;} + .d2-1059982041 .color-AA4{color:#EDF0FD;} + .d2-1059982041 .color-AA5{color:#F7F8FE;} + .d2-1059982041 .color-AB4{color:#EDF0FD;} + .d2-1059982041 .color-AB5{color:#F7F8FE;}.appendix text.text{fill:#0A0F25}.md{--color-fg-default:#0A0F25;--color-fg-muted:#676C7E;--color-fg-subtle:#9499AB;--color-canvas-default:#FFFFFF;--color-canvas-subtle:#EEF1F8;--color-border-default:#0D32B2;--color-border-muted:#0D32B2;--color-neutral-muted:#EEF1F8;--color-accent-fg:#0D32B2;--color-accent-emphasis:#0D32B2;--color-attention-subtle:#676C7E;--color-danger-fg:red;}.sketch-overlay-B1{fill:url(#streaks-darker);mix-blend-mode:lighten}.sketch-overlay-B2{fill:url(#streaks-darker);mix-blend-mode:lighten}.sketch-overlay-B3{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-B4{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-B5{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-B6{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-AA2{fill:url(#streaks-dark);mix-blend-mode:overlay}.sketch-overlay-AA4{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-AA5{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-AB4{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-AB5{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-N1{fill:url(#streaks-darker);mix-blend-mode:lighten}.sketch-overlay-N2{fill:url(#streaks-dark);mix-blend-mode:overlay}.sketch-overlay-N3{fill:url(#streaks-normal);mix-blend-mode:color-burn}.sketch-overlay-N4{fill:url(#streaks-normal);mix-blend-mode:color-burn}.sketch-overlay-N5{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-N6{fill:url(#streaks-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 914da3c12e..f42b09620b 100644 --- a/e2etests/testdata/stable/giant_markdown_test/dagre/board.exp.json +++ b/e2etests/testdata/stable/giant_markdown_test/dagre/board.exp.json @@ -131,10 +131,8 @@ "id": "(a -> md)[0]", "src": "a", "srcArrow": "none", - "srcLabel": "", "dst": "md", "dstArrow": "triangle", - "dstLabel": "", "opacity": 1, "strokeDash": 0, "strokeWidth": 2, @@ -180,10 +178,8 @@ "id": "(md -> b)[0]", "src": "md", "srcArrow": "none", - "srcLabel": "", "dst": "b", "dstArrow": "triangle", - "dstLabel": "", "opacity": 1, "strokeDash": 0, "strokeWidth": 2, 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 2fc95a4c8e..dd30cfc6f0 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
    \ No newline at end of file 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 4dbcbbef52..08f802e1d7 100644 --- a/e2etests/testdata/stable/giant_markdown_test/elk/board.exp.json +++ b/e2etests/testdata/stable/giant_markdown_test/elk/board.exp.json @@ -131,10 +131,8 @@ "id": "(a -> md)[0]", "src": "a", "srcArrow": "none", - "srcLabel": "", "dst": "md", "dstArrow": "triangle", - "dstLabel": "", "opacity": 1, "strokeDash": 0, "strokeWidth": 2, @@ -171,10 +169,8 @@ "id": "(md -> b)[0]", "src": "md", "srcArrow": "none", - "srcLabel": "", "dst": "b", "dstArrow": "triangle", - "dstLabel": "", "opacity": 1, "strokeDash": 0, "strokeWidth": 2, 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 28bf9a1643..72d11d8a53 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
    \ No newline at end of file diff --git a/e2etests/testdata/stable/hr/dagre/board.exp.json b/e2etests/testdata/stable/hr/dagre/board.exp.json index 6c1e533dd7..419f224344 100644 --- a/e2etests/testdata/stable/hr/dagre/board.exp.json +++ b/e2etests/testdata/stable/hr/dagre/board.exp.json @@ -131,10 +131,8 @@ "id": "(a -> md)[0]", "src": "a", "srcArrow": "none", - "srcLabel": "", "dst": "md", "dstArrow": "triangle", - "dstLabel": "", "opacity": 1, "strokeDash": 0, "strokeWidth": 2, @@ -180,10 +178,8 @@ "id": "(md -> b)[0]", "src": "md", "srcArrow": "none", - "srcLabel": "", "dst": "b", "dstArrow": "triangle", - "dstLabel": "", "opacity": 1, "strokeDash": 0, "strokeWidth": 2, diff --git a/e2etests/testdata/stable/hr/dagre/sketch.exp.svg b/e2etests/testdata/stable/hr/dagre/sketch.exp.svg index 61740e34b5..e10ff1e443 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
    \ No newline at end of file diff --git a/e2etests/testdata/stable/hr/elk/board.exp.json b/e2etests/testdata/stable/hr/elk/board.exp.json index 810717e9bf..b379b245a8 100644 --- a/e2etests/testdata/stable/hr/elk/board.exp.json +++ b/e2etests/testdata/stable/hr/elk/board.exp.json @@ -131,10 +131,8 @@ "id": "(a -> md)[0]", "src": "a", "srcArrow": "none", - "srcLabel": "", "dst": "md", "dstArrow": "triangle", - "dstLabel": "", "opacity": 1, "strokeDash": 0, "strokeWidth": 2, @@ -171,10 +169,8 @@ "id": "(md -> b)[0]", "src": "md", "srcArrow": "none", - "srcLabel": "", "dst": "b", "dstArrow": "triangle", - "dstLabel": "", "opacity": 1, "strokeDash": 0, "strokeWidth": 2, diff --git a/e2etests/testdata/stable/hr/elk/sketch.exp.svg b/e2etests/testdata/stable/hr/elk/sketch.exp.svg index 55133a8d16..d49297badd 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
    \ No newline at end of file diff --git a/e2etests/testdata/stable/images/dagre/board.exp.json b/e2etests/testdata/stable/images/dagre/board.exp.json index 2ab2780f6d..c4639550be 100644 --- a/e2etests/testdata/stable/images/dagre/board.exp.json +++ b/e2etests/testdata/stable/images/dagre/board.exp.json @@ -115,10 +115,8 @@ "id": "(a -> b)[0]", "src": "a", "srcArrow": "none", - "srcLabel": "", "dst": "b", "dstArrow": "triangle", - "dstLabel": "", "opacity": 1, "strokeDash": 0, "strokeWidth": 2, diff --git a/e2etests/testdata/stable/images/dagre/sketch.exp.svg b/e2etests/testdata/stable/images/dagre/sketch.exp.svg index 67217a77e4..429eb6eecf 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-2957787074 .fill-N1{fill:#0A0F25;} + .d2-2957787074 .fill-N2{fill:#676C7E;} + .d2-2957787074 .fill-N3{fill:#9499AB;} + .d2-2957787074 .fill-N4{fill:#CFD2DD;} + .d2-2957787074 .fill-N5{fill:#DEE1EB;} + .d2-2957787074 .fill-N6{fill:#EEF1F8;} + .d2-2957787074 .fill-N7{fill:#FFFFFF;} + .d2-2957787074 .fill-B1{fill:#0D32B2;} + .d2-2957787074 .fill-B2{fill:#0D32B2;} + .d2-2957787074 .fill-B3{fill:#E3E9FD;} + .d2-2957787074 .fill-B4{fill:#E3E9FD;} + .d2-2957787074 .fill-B5{fill:#EDF0FD;} + .d2-2957787074 .fill-B6{fill:#F7F8FE;} + .d2-2957787074 .fill-AA2{fill:#4A6FF3;} + .d2-2957787074 .fill-AA4{fill:#EDF0FD;} + .d2-2957787074 .fill-AA5{fill:#F7F8FE;} + .d2-2957787074 .fill-AB4{fill:#EDF0FD;} + .d2-2957787074 .fill-AB5{fill:#F7F8FE;} + .d2-2957787074 .stroke-N1{stroke:#0A0F25;} + .d2-2957787074 .stroke-N2{stroke:#676C7E;} + .d2-2957787074 .stroke-N3{stroke:#9499AB;} + .d2-2957787074 .stroke-N4{stroke:#CFD2DD;} + .d2-2957787074 .stroke-N5{stroke:#DEE1EB;} + .d2-2957787074 .stroke-N6{stroke:#EEF1F8;} + .d2-2957787074 .stroke-N7{stroke:#FFFFFF;} + .d2-2957787074 .stroke-B1{stroke:#0D32B2;} + .d2-2957787074 .stroke-B2{stroke:#0D32B2;} + .d2-2957787074 .stroke-B3{stroke:#E3E9FD;} + .d2-2957787074 .stroke-B4{stroke:#E3E9FD;} + .d2-2957787074 .stroke-B5{stroke:#EDF0FD;} + .d2-2957787074 .stroke-B6{stroke:#F7F8FE;} + .d2-2957787074 .stroke-AA2{stroke:#4A6FF3;} + .d2-2957787074 .stroke-AA4{stroke:#EDF0FD;} + .d2-2957787074 .stroke-AA5{stroke:#F7F8FE;} + .d2-2957787074 .stroke-AB4{stroke:#EDF0FD;} + .d2-2957787074 .stroke-AB5{stroke:#F7F8FE;} + .d2-2957787074 .background-color-N1{background-color:#0A0F25;} + .d2-2957787074 .background-color-N2{background-color:#676C7E;} + .d2-2957787074 .background-color-N3{background-color:#9499AB;} + .d2-2957787074 .background-color-N4{background-color:#CFD2DD;} + .d2-2957787074 .background-color-N5{background-color:#DEE1EB;} + .d2-2957787074 .background-color-N6{background-color:#EEF1F8;} + .d2-2957787074 .background-color-N7{background-color:#FFFFFF;} + .d2-2957787074 .background-color-B1{background-color:#0D32B2;} + .d2-2957787074 .background-color-B2{background-color:#0D32B2;} + .d2-2957787074 .background-color-B3{background-color:#E3E9FD;} + .d2-2957787074 .background-color-B4{background-color:#E3E9FD;} + .d2-2957787074 .background-color-B5{background-color:#EDF0FD;} + .d2-2957787074 .background-color-B6{background-color:#F7F8FE;} + .d2-2957787074 .background-color-AA2{background-color:#4A6FF3;} + .d2-2957787074 .background-color-AA4{background-color:#EDF0FD;} + .d2-2957787074 .background-color-AA5{background-color:#F7F8FE;} + .d2-2957787074 .background-color-AB4{background-color:#EDF0FD;} + .d2-2957787074 .background-color-AB5{background-color:#F7F8FE;} + .d2-2957787074 .color-N1{color:#0A0F25;} + .d2-2957787074 .color-N2{color:#676C7E;} + .d2-2957787074 .color-N3{color:#9499AB;} + .d2-2957787074 .color-N4{color:#CFD2DD;} + .d2-2957787074 .color-N5{color:#DEE1EB;} + .d2-2957787074 .color-N6{color:#EEF1F8;} + .d2-2957787074 .color-N7{color:#FFFFFF;} + .d2-2957787074 .color-B1{color:#0D32B2;} + .d2-2957787074 .color-B2{color:#0D32B2;} + .d2-2957787074 .color-B3{color:#E3E9FD;} + .d2-2957787074 .color-B4{color:#E3E9FD;} + .d2-2957787074 .color-B5{color:#EDF0FD;} + .d2-2957787074 .color-B6{color:#F7F8FE;} + .d2-2957787074 .color-AA2{color:#4A6FF3;} + .d2-2957787074 .color-AA4{color:#EDF0FD;} + .d2-2957787074 .color-AA5{color:#F7F8FE;} + .d2-2957787074 .color-AB4{color:#EDF0FD;} + .d2-2957787074 .color-AB5{color:#F7F8FE;}.appendix text.text{fill:#0A0F25}.md{--color-fg-default:#0A0F25;--color-fg-muted:#676C7E;--color-fg-subtle:#9499AB;--color-canvas-default:#FFFFFF;--color-canvas-subtle:#EEF1F8;--color-border-default:#0D32B2;--color-border-muted:#0D32B2;--color-neutral-muted:#EEF1F8;--color-accent-fg:#0D32B2;--color-accent-emphasis:#0D32B2;--color-attention-subtle:#676C7E;--color-danger-fg:red;}.sketch-overlay-B1{fill:url(#streaks-darker);mix-blend-mode:lighten}.sketch-overlay-B2{fill:url(#streaks-darker);mix-blend-mode:lighten}.sketch-overlay-B3{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-B4{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-B5{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-B6{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-AA2{fill:url(#streaks-dark);mix-blend-mode:overlay}.sketch-overlay-AA4{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-AA5{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-AB4{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-AB5{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-N1{fill:url(#streaks-darker);mix-blend-mode:lighten}.sketch-overlay-N2{fill:url(#streaks-dark);mix-blend-mode:overlay}.sketch-overlay-N3{fill:url(#streaks-normal);mix-blend-mode:color-burn}.sketch-overlay-N4{fill:url(#streaks-normal);mix-blend-mode:color-burn}.sketch-overlay-N5{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-N6{fill:url(#streaks-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 \ No newline at end of file diff --git a/e2etests/testdata/stable/images/elk/board.exp.json b/e2etests/testdata/stable/images/elk/board.exp.json index 92f5e5535f..06af1dac13 100644 --- a/e2etests/testdata/stable/images/elk/board.exp.json +++ b/e2etests/testdata/stable/images/elk/board.exp.json @@ -115,10 +115,8 @@ "id": "(a -> b)[0]", "src": "a", "srcArrow": "none", - "srcLabel": "", "dst": "b", "dstArrow": "triangle", - "dstLabel": "", "opacity": 1, "strokeDash": 0, "strokeWidth": 2, diff --git a/e2etests/testdata/stable/images/elk/sketch.exp.svg b/e2etests/testdata/stable/images/elk/sketch.exp.svg index e23f6f56d5..5d51df44c5 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-700044450 .fill-N1{fill:#0A0F25;} + .d2-700044450 .fill-N2{fill:#676C7E;} + .d2-700044450 .fill-N3{fill:#9499AB;} + .d2-700044450 .fill-N4{fill:#CFD2DD;} + .d2-700044450 .fill-N5{fill:#DEE1EB;} + .d2-700044450 .fill-N6{fill:#EEF1F8;} + .d2-700044450 .fill-N7{fill:#FFFFFF;} + .d2-700044450 .fill-B1{fill:#0D32B2;} + .d2-700044450 .fill-B2{fill:#0D32B2;} + .d2-700044450 .fill-B3{fill:#E3E9FD;} + .d2-700044450 .fill-B4{fill:#E3E9FD;} + .d2-700044450 .fill-B5{fill:#EDF0FD;} + .d2-700044450 .fill-B6{fill:#F7F8FE;} + .d2-700044450 .fill-AA2{fill:#4A6FF3;} + .d2-700044450 .fill-AA4{fill:#EDF0FD;} + .d2-700044450 .fill-AA5{fill:#F7F8FE;} + .d2-700044450 .fill-AB4{fill:#EDF0FD;} + .d2-700044450 .fill-AB5{fill:#F7F8FE;} + .d2-700044450 .stroke-N1{stroke:#0A0F25;} + .d2-700044450 .stroke-N2{stroke:#676C7E;} + .d2-700044450 .stroke-N3{stroke:#9499AB;} + .d2-700044450 .stroke-N4{stroke:#CFD2DD;} + .d2-700044450 .stroke-N5{stroke:#DEE1EB;} + .d2-700044450 .stroke-N6{stroke:#EEF1F8;} + .d2-700044450 .stroke-N7{stroke:#FFFFFF;} + .d2-700044450 .stroke-B1{stroke:#0D32B2;} + .d2-700044450 .stroke-B2{stroke:#0D32B2;} + .d2-700044450 .stroke-B3{stroke:#E3E9FD;} + .d2-700044450 .stroke-B4{stroke:#E3E9FD;} + .d2-700044450 .stroke-B5{stroke:#EDF0FD;} + .d2-700044450 .stroke-B6{stroke:#F7F8FE;} + .d2-700044450 .stroke-AA2{stroke:#4A6FF3;} + .d2-700044450 .stroke-AA4{stroke:#EDF0FD;} + .d2-700044450 .stroke-AA5{stroke:#F7F8FE;} + .d2-700044450 .stroke-AB4{stroke:#EDF0FD;} + .d2-700044450 .stroke-AB5{stroke:#F7F8FE;} + .d2-700044450 .background-color-N1{background-color:#0A0F25;} + .d2-700044450 .background-color-N2{background-color:#676C7E;} + .d2-700044450 .background-color-N3{background-color:#9499AB;} + .d2-700044450 .background-color-N4{background-color:#CFD2DD;} + .d2-700044450 .background-color-N5{background-color:#DEE1EB;} + .d2-700044450 .background-color-N6{background-color:#EEF1F8;} + .d2-700044450 .background-color-N7{background-color:#FFFFFF;} + .d2-700044450 .background-color-B1{background-color:#0D32B2;} + .d2-700044450 .background-color-B2{background-color:#0D32B2;} + .d2-700044450 .background-color-B3{background-color:#E3E9FD;} + .d2-700044450 .background-color-B4{background-color:#E3E9FD;} + .d2-700044450 .background-color-B5{background-color:#EDF0FD;} + .d2-700044450 .background-color-B6{background-color:#F7F8FE;} + .d2-700044450 .background-color-AA2{background-color:#4A6FF3;} + .d2-700044450 .background-color-AA4{background-color:#EDF0FD;} + .d2-700044450 .background-color-AA5{background-color:#F7F8FE;} + .d2-700044450 .background-color-AB4{background-color:#EDF0FD;} + .d2-700044450 .background-color-AB5{background-color:#F7F8FE;} + .d2-700044450 .color-N1{color:#0A0F25;} + .d2-700044450 .color-N2{color:#676C7E;} + .d2-700044450 .color-N3{color:#9499AB;} + .d2-700044450 .color-N4{color:#CFD2DD;} + .d2-700044450 .color-N5{color:#DEE1EB;} + .d2-700044450 .color-N6{color:#EEF1F8;} + .d2-700044450 .color-N7{color:#FFFFFF;} + .d2-700044450 .color-B1{color:#0D32B2;} + .d2-700044450 .color-B2{color:#0D32B2;} + .d2-700044450 .color-B3{color:#E3E9FD;} + .d2-700044450 .color-B4{color:#E3E9FD;} + .d2-700044450 .color-B5{color:#EDF0FD;} + .d2-700044450 .color-B6{color:#F7F8FE;} + .d2-700044450 .color-AA2{color:#4A6FF3;} + .d2-700044450 .color-AA4{color:#EDF0FD;} + .d2-700044450 .color-AA5{color:#F7F8FE;} + .d2-700044450 .color-AB4{color:#EDF0FD;} + .d2-700044450 .color-AB5{color:#F7F8FE;}.appendix text.text{fill:#0A0F25}.md{--color-fg-default:#0A0F25;--color-fg-muted:#676C7E;--color-fg-subtle:#9499AB;--color-canvas-default:#FFFFFF;--color-canvas-subtle:#EEF1F8;--color-border-default:#0D32B2;--color-border-muted:#0D32B2;--color-neutral-muted:#EEF1F8;--color-accent-fg:#0D32B2;--color-accent-emphasis:#0D32B2;--color-attention-subtle:#676C7E;--color-danger-fg:red;}.sketch-overlay-B1{fill:url(#streaks-darker);mix-blend-mode:lighten}.sketch-overlay-B2{fill:url(#streaks-darker);mix-blend-mode:lighten}.sketch-overlay-B3{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-B4{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-B5{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-B6{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-AA2{fill:url(#streaks-dark);mix-blend-mode:overlay}.sketch-overlay-AA4{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-AA5{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-AB4{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-AB5{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-N1{fill:url(#streaks-darker);mix-blend-mode:lighten}.sketch-overlay-N2{fill:url(#streaks-dark);mix-blend-mode:overlay}.sketch-overlay-N3{fill:url(#streaks-normal);mix-blend-mode:color-burn}.sketch-overlay-N4{fill:url(#streaks-normal);mix-blend-mode:color-burn}.sketch-overlay-N5{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-N6{fill:url(#streaks-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 \ No newline at end of file diff --git a/e2etests/testdata/stable/investigate/dagre/board.exp.json b/e2etests/testdata/stable/investigate/dagre/board.exp.json index e7947fa06a..62761428c1 100644 --- a/e2etests/testdata/stable/investigate/dagre/board.exp.json +++ b/e2etests/testdata/stable/investigate/dagre/board.exp.json @@ -1304,10 +1304,8 @@ "id": "(aa -- bb)[0]", "src": "aa", "srcArrow": "none", - "srcLabel": "", "dst": "bb", "dstArrow": "none", - "dstLabel": "", "opacity": 1, "strokeDash": 0, "strokeWidth": 2, @@ -1353,10 +1351,8 @@ "id": "(bb -- cc)[0]", "src": "bb", "srcArrow": "none", - "srcLabel": "", "dst": "cc", "dstArrow": "none", - "dstLabel": "", "opacity": 1, "strokeDash": 0, "strokeWidth": 2, @@ -1402,10 +1398,8 @@ "id": "(aa -> dd.ee)[0]", "src": "aa", "srcArrow": "none", - "srcLabel": "", "dst": "dd.ee", "dstArrow": "triangle", - "dstLabel": "", "opacity": 1, "strokeDash": 0, "strokeWidth": 2, @@ -1499,10 +1493,8 @@ "id": "(bb -> ff.gg)[0]", "src": "bb", "srcArrow": "none", - "srcLabel": "", "dst": "ff.gg", "dstArrow": "triangle", - "dstLabel": "", "opacity": 1, "strokeDash": 0, "strokeWidth": 2, @@ -1764,10 +1756,8 @@ "id": "(cc -> dd.hh)[0]", "src": "cc", "srcArrow": "none", - "srcLabel": "", "dst": "dd.hh", "dstArrow": "triangle", - "dstLabel": "", "opacity": 1, "strokeDash": 0, "strokeWidth": 2, @@ -1813,10 +1803,8 @@ "id": "(dd.ee -> ii)[0]", "src": "dd.ee", "srcArrow": "none", - "srcLabel": "", "dst": "ii", "dstArrow": "triangle", - "dstLabel": "", "opacity": 1, "strokeDash": 0, "strokeWidth": 2, @@ -1862,10 +1850,8 @@ "id": "(ii -- jj)[0]", "src": "ii", "srcArrow": "none", - "srcLabel": "", "dst": "jj", "dstArrow": "none", - "dstLabel": "", "opacity": 1, "strokeDash": 0, "strokeWidth": 2, @@ -1911,10 +1897,8 @@ "id": "(jj -> kk)[0]", "src": "jj", "srcArrow": "none", - "srcLabel": "", "dst": "kk", "dstArrow": "triangle", - "dstLabel": "", "opacity": 1, "strokeDash": 0, "strokeWidth": 2, @@ -1972,10 +1956,8 @@ "id": "(kk -> ff.mm)[0]", "src": "kk", "srcArrow": "none", - "srcLabel": "", "dst": "ff.mm", "dstArrow": "triangle", - "dstLabel": "", "opacity": 1, "strokeDash": 0, "strokeWidth": 2, @@ -2081,10 +2063,8 @@ "id": "(ff.mm -> ll.mm)[0]", "src": "ff.mm", "srcArrow": "none", - "srcLabel": "", "dst": "ll.mm", "dstArrow": "triangle", - "dstLabel": "", "opacity": 1, "strokeDash": 0, "strokeWidth": 2, @@ -2166,10 +2146,8 @@ "id": "(ll.mm -> nn.oo)[0]", "src": "ll.mm", "srcArrow": "none", - "srcLabel": "", "dst": "nn.oo", "dstArrow": "triangle", - "dstLabel": "", "opacity": 1, "strokeDash": 0, "strokeWidth": 2, @@ -2299,10 +2277,8 @@ "id": "ff.(gg -> pp)[0]", "src": "ff.gg", "srcArrow": "none", - "srcLabel": "", "dst": "ff.pp", "dstArrow": "triangle", - "dstLabel": "", "opacity": 1, "strokeDash": 0, "strokeWidth": 2, @@ -2348,10 +2324,8 @@ "id": "(ff.pp -> ll.qq)[0]", "src": "ff.pp", "srcArrow": "none", - "srcLabel": "", "dst": "ll.qq", "dstArrow": "triangle", - "dstLabel": "", "opacity": 1, "strokeDash": 0, "strokeWidth": 2, @@ -2409,10 +2383,8 @@ "id": "ll.(qq -> rr)[0]", "src": "ll.qq", "srcArrow": "none", - "srcLabel": "", "dst": "ll.rr", "dstArrow": "triangle", - "dstLabel": "", "opacity": 1, "strokeDash": 0, "strokeWidth": 2, @@ -2458,10 +2430,8 @@ "id": "(dd.hh -> ss.tt)[0]", "src": "dd.hh", "srcArrow": "none", - "srcLabel": "", "dst": "ss.tt", "dstArrow": "triangle", - "dstLabel": "", "opacity": 1, "strokeDash": 0, "strokeWidth": 2, @@ -2543,10 +2513,8 @@ "id": "(ss.tt -> uu.vv)[0]", "src": "ss.tt", "srcArrow": "none", - "srcLabel": "", "dst": "uu.vv", "dstArrow": "triangle", - "dstLabel": "", "opacity": 1, "strokeDash": 0, "strokeWidth": 2, @@ -2604,10 +2572,8 @@ "id": "(kk -> ww)[0]", "src": "kk", "srcArrow": "none", - "srcLabel": "", "dst": "ww", "dstArrow": "triangle", - "dstLabel": "", "opacity": 1, "strokeDash": 0, "strokeWidth": 2, @@ -2653,10 +2619,8 @@ "id": "(uu.vv -> ww)[0]", "src": "uu.vv", "srcArrow": "none", - "srcLabel": "", "dst": "ww", "dstArrow": "triangle", - "dstLabel": "", "opacity": 1, "strokeDash": 0, "strokeWidth": 2, @@ -2702,10 +2666,8 @@ "id": "(ww -> rm)[0]", "src": "ww", "srcArrow": "none", - "srcLabel": "", "dst": "rm", "dstArrow": "triangle", - "dstLabel": "", "opacity": 1, "strokeDash": 0, "strokeWidth": 2, @@ -2847,10 +2809,8 @@ "id": "(rm -> nn.xx)[0]", "src": "rm", "srcArrow": "none", - "srcLabel": "", "dst": "nn.xx", "dstArrow": "triangle", - "dstLabel": "", "opacity": 1, "strokeDash": 0, "strokeWidth": 2, @@ -2980,10 +2940,8 @@ "id": "(ll.rr -> yy.zz)[0]", "src": "ll.rr", "srcArrow": "none", - "srcLabel": "", "dst": "yy.zz", "dstArrow": "triangle", - "dstLabel": "", "opacity": 1, "strokeDash": 0, "strokeWidth": 2, @@ -3041,10 +2999,8 @@ "id": "(rm -> yy.zz)[0]", "src": "rm", "srcArrow": "none", - "srcLabel": "", "dst": "yy.zz", "dstArrow": "triangle", - "dstLabel": "", "opacity": 1, "strokeDash": 0, "strokeWidth": 2, @@ -3102,10 +3058,8 @@ "id": "yy.(zz -> ab)[0]", "src": "yy.zz", "srcArrow": "none", - "srcLabel": "", "dst": "yy.ab", "dstArrow": "triangle", - "dstLabel": "", "opacity": 1, "strokeDash": 0, "strokeWidth": 2, @@ -3151,10 +3105,8 @@ "id": "(yy.ab -> nn.ac)[0]", "src": "yy.ab", "srcArrow": "none", - "srcLabel": "", "dst": "nn.ac", "dstArrow": "triangle", - "dstLabel": "", "opacity": 1, "strokeDash": 0, "strokeWidth": 2, @@ -3212,10 +3164,8 @@ "id": "(nn.ac -> ad)[0]", "src": "nn.ac", "srcArrow": "none", - "srcLabel": "", "dst": "ad", "dstArrow": "triangle", - "dstLabel": "", "opacity": 1, "strokeDash": 0, "strokeWidth": 2, @@ -3261,10 +3211,8 @@ "id": "(ww -> ff.gg)[0]", "src": "ww", "srcArrow": "none", - "srcLabel": "", "dst": "ff.gg", "dstArrow": "triangle", - "dstLabel": "", "opacity": 1, "strokeDash": 0, "strokeWidth": 2, diff --git a/e2etests/testdata/stable/investigate/dagre/sketch.exp.svg b/e2etests/testdata/stable/investigate/dagre/sketch.exp.svg index 25bf939b58..db9c77bb1a 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-2091367729 .fill-N1{fill:#0A0F25;} + .d2-2091367729 .fill-N2{fill:#676C7E;} + .d2-2091367729 .fill-N3{fill:#9499AB;} + .d2-2091367729 .fill-N4{fill:#CFD2DD;} + .d2-2091367729 .fill-N5{fill:#DEE1EB;} + .d2-2091367729 .fill-N6{fill:#EEF1F8;} + .d2-2091367729 .fill-N7{fill:#FFFFFF;} + .d2-2091367729 .fill-B1{fill:#0D32B2;} + .d2-2091367729 .fill-B2{fill:#0D32B2;} + .d2-2091367729 .fill-B3{fill:#E3E9FD;} + .d2-2091367729 .fill-B4{fill:#E3E9FD;} + .d2-2091367729 .fill-B5{fill:#EDF0FD;} + .d2-2091367729 .fill-B6{fill:#F7F8FE;} + .d2-2091367729 .fill-AA2{fill:#4A6FF3;} + .d2-2091367729 .fill-AA4{fill:#EDF0FD;} + .d2-2091367729 .fill-AA5{fill:#F7F8FE;} + .d2-2091367729 .fill-AB4{fill:#EDF0FD;} + .d2-2091367729 .fill-AB5{fill:#F7F8FE;} + .d2-2091367729 .stroke-N1{stroke:#0A0F25;} + .d2-2091367729 .stroke-N2{stroke:#676C7E;} + .d2-2091367729 .stroke-N3{stroke:#9499AB;} + .d2-2091367729 .stroke-N4{stroke:#CFD2DD;} + .d2-2091367729 .stroke-N5{stroke:#DEE1EB;} + .d2-2091367729 .stroke-N6{stroke:#EEF1F8;} + .d2-2091367729 .stroke-N7{stroke:#FFFFFF;} + .d2-2091367729 .stroke-B1{stroke:#0D32B2;} + .d2-2091367729 .stroke-B2{stroke:#0D32B2;} + .d2-2091367729 .stroke-B3{stroke:#E3E9FD;} + .d2-2091367729 .stroke-B4{stroke:#E3E9FD;} + .d2-2091367729 .stroke-B5{stroke:#EDF0FD;} + .d2-2091367729 .stroke-B6{stroke:#F7F8FE;} + .d2-2091367729 .stroke-AA2{stroke:#4A6FF3;} + .d2-2091367729 .stroke-AA4{stroke:#EDF0FD;} + .d2-2091367729 .stroke-AA5{stroke:#F7F8FE;} + .d2-2091367729 .stroke-AB4{stroke:#EDF0FD;} + .d2-2091367729 .stroke-AB5{stroke:#F7F8FE;} + .d2-2091367729 .background-color-N1{background-color:#0A0F25;} + .d2-2091367729 .background-color-N2{background-color:#676C7E;} + .d2-2091367729 .background-color-N3{background-color:#9499AB;} + .d2-2091367729 .background-color-N4{background-color:#CFD2DD;} + .d2-2091367729 .background-color-N5{background-color:#DEE1EB;} + .d2-2091367729 .background-color-N6{background-color:#EEF1F8;} + .d2-2091367729 .background-color-N7{background-color:#FFFFFF;} + .d2-2091367729 .background-color-B1{background-color:#0D32B2;} + .d2-2091367729 .background-color-B2{background-color:#0D32B2;} + .d2-2091367729 .background-color-B3{background-color:#E3E9FD;} + .d2-2091367729 .background-color-B4{background-color:#E3E9FD;} + .d2-2091367729 .background-color-B5{background-color:#EDF0FD;} + .d2-2091367729 .background-color-B6{background-color:#F7F8FE;} + .d2-2091367729 .background-color-AA2{background-color:#4A6FF3;} + .d2-2091367729 .background-color-AA4{background-color:#EDF0FD;} + .d2-2091367729 .background-color-AA5{background-color:#F7F8FE;} + .d2-2091367729 .background-color-AB4{background-color:#EDF0FD;} + .d2-2091367729 .background-color-AB5{background-color:#F7F8FE;} + .d2-2091367729 .color-N1{color:#0A0F25;} + .d2-2091367729 .color-N2{color:#676C7E;} + .d2-2091367729 .color-N3{color:#9499AB;} + .d2-2091367729 .color-N4{color:#CFD2DD;} + .d2-2091367729 .color-N5{color:#DEE1EB;} + .d2-2091367729 .color-N6{color:#EEF1F8;} + .d2-2091367729 .color-N7{color:#FFFFFF;} + .d2-2091367729 .color-B1{color:#0D32B2;} + .d2-2091367729 .color-B2{color:#0D32B2;} + .d2-2091367729 .color-B3{color:#E3E9FD;} + .d2-2091367729 .color-B4{color:#E3E9FD;} + .d2-2091367729 .color-B5{color:#EDF0FD;} + .d2-2091367729 .color-B6{color:#F7F8FE;} + .d2-2091367729 .color-AA2{color:#4A6FF3;} + .d2-2091367729 .color-AA4{color:#EDF0FD;} + .d2-2091367729 .color-AA5{color:#F7F8FE;} + .d2-2091367729 .color-AB4{color:#EDF0FD;} + .d2-2091367729 .color-AB5{color:#F7F8FE;}.appendix text.text{fill:#0A0F25}.md{--color-fg-default:#0A0F25;--color-fg-muted:#676C7E;--color-fg-subtle:#9499AB;--color-canvas-default:#FFFFFF;--color-canvas-subtle:#EEF1F8;--color-border-default:#0D32B2;--color-border-muted:#0D32B2;--color-neutral-muted:#EEF1F8;--color-accent-fg:#0D32B2;--color-accent-emphasis:#0D32B2;--color-attention-subtle:#676C7E;--color-danger-fg:red;}.sketch-overlay-B1{fill:url(#streaks-darker);mix-blend-mode:lighten}.sketch-overlay-B2{fill:url(#streaks-darker);mix-blend-mode:lighten}.sketch-overlay-B3{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-B4{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-B5{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-B6{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-AA2{fill:url(#streaks-dark);mix-blend-mode:overlay}.sketch-overlay-AA4{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-AA5{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-AB4{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-AB5{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-N1{fill:url(#streaks-darker);mix-blend-mode:lighten}.sketch-overlay-N2{fill:url(#streaks-dark);mix-blend-mode:overlay}.sketch-overlay-N3{fill:url(#streaks-normal);mix-blend-mode:color-burn}.sketch-overlay-N4{fill:url(#streaks-normal);mix-blend-mode:color-burn}.sketch-overlay-N5{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-N6{fill:url(#streaks-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 8bb54bb668..2d1681b39e 100644 --- a/e2etests/testdata/stable/investigate/elk/board.exp.json +++ b/e2etests/testdata/stable/investigate/elk/board.exp.json @@ -1304,10 +1304,8 @@ "id": "(aa -- bb)[0]", "src": "aa", "srcArrow": "none", - "srcLabel": "", "dst": "bb", "dstArrow": "none", - "dstLabel": "", "opacity": 1, "strokeDash": 0, "strokeWidth": 2, @@ -1344,10 +1342,8 @@ "id": "(bb -- cc)[0]", "src": "bb", "srcArrow": "none", - "srcLabel": "", "dst": "cc", "dstArrow": "none", - "dstLabel": "", "opacity": 1, "strokeDash": 0, "strokeWidth": 2, @@ -1392,10 +1388,8 @@ "id": "(aa -> dd.ee)[0]", "src": "aa", "srcArrow": "none", - "srcLabel": "", "dst": "dd.ee", "dstArrow": "triangle", - "dstLabel": "", "opacity": 1, "strokeDash": 0, "strokeWidth": 2, @@ -1440,10 +1434,8 @@ "id": "(bb -> ff.gg)[0]", "src": "bb", "srcArrow": "none", - "srcLabel": "", "dst": "ff.gg", "dstArrow": "triangle", - "dstLabel": "", "opacity": 1, "strokeDash": 0, "strokeWidth": 2, @@ -1488,10 +1480,8 @@ "id": "(cc -> dd.hh)[0]", "src": "cc", "srcArrow": "none", - "srcLabel": "", "dst": "dd.hh", "dstArrow": "triangle", - "dstLabel": "", "opacity": 1, "strokeDash": 0, "strokeWidth": 2, @@ -1528,10 +1518,8 @@ "id": "(dd.ee -> ii)[0]", "src": "dd.ee", "srcArrow": "none", - "srcLabel": "", "dst": "ii", "dstArrow": "triangle", - "dstLabel": "", "opacity": 1, "strokeDash": 0, "strokeWidth": 2, @@ -1576,10 +1564,8 @@ "id": "(ii -- jj)[0]", "src": "ii", "srcArrow": "none", - "srcLabel": "", "dst": "jj", "dstArrow": "none", - "dstLabel": "", "opacity": 1, "strokeDash": 0, "strokeWidth": 2, @@ -1616,10 +1602,8 @@ "id": "(jj -> kk)[0]", "src": "jj", "srcArrow": "none", - "srcLabel": "", "dst": "kk", "dstArrow": "triangle", - "dstLabel": "", "opacity": 1, "strokeDash": 0, "strokeWidth": 2, @@ -1656,10 +1640,8 @@ "id": "(kk -> ff.mm)[0]", "src": "kk", "srcArrow": "none", - "srcLabel": "", "dst": "ff.mm", "dstArrow": "triangle", - "dstLabel": "", "opacity": 1, "strokeDash": 0, "strokeWidth": 2, @@ -1704,10 +1686,8 @@ "id": "(ff.mm -> ll.mm)[0]", "src": "ff.mm", "srcArrow": "none", - "srcLabel": "", "dst": "ll.mm", "dstArrow": "triangle", - "dstLabel": "", "opacity": 1, "strokeDash": 0, "strokeWidth": 2, @@ -1752,10 +1732,8 @@ "id": "(ll.mm -> nn.oo)[0]", "src": "ll.mm", "srcArrow": "none", - "srcLabel": "", "dst": "nn.oo", "dstArrow": "triangle", - "dstLabel": "", "opacity": 1, "strokeDash": 0, "strokeWidth": 2, @@ -1808,10 +1786,8 @@ "id": "ff.(gg -> pp)[0]", "src": "ff.gg", "srcArrow": "none", - "srcLabel": "", "dst": "ff.pp", "dstArrow": "triangle", - "dstLabel": "", "opacity": 1, "strokeDash": 0, "strokeWidth": 2, @@ -1856,10 +1832,8 @@ "id": "(ff.pp -> ll.qq)[0]", "src": "ff.pp", "srcArrow": "none", - "srcLabel": "", "dst": "ll.qq", "dstArrow": "triangle", - "dstLabel": "", "opacity": 1, "strokeDash": 0, "strokeWidth": 2, @@ -1896,10 +1870,8 @@ "id": "ll.(qq -> rr)[0]", "src": "ll.qq", "srcArrow": "none", - "srcLabel": "", "dst": "ll.rr", "dstArrow": "triangle", - "dstLabel": "", "opacity": 1, "strokeDash": 0, "strokeWidth": 2, @@ -1936,10 +1908,8 @@ "id": "(dd.hh -> ss.tt)[0]", "src": "dd.hh", "srcArrow": "none", - "srcLabel": "", "dst": "ss.tt", "dstArrow": "triangle", - "dstLabel": "", "opacity": 1, "strokeDash": 0, "strokeWidth": 2, @@ -1984,10 +1954,8 @@ "id": "(ss.tt -> uu.vv)[0]", "src": "ss.tt", "srcArrow": "none", - "srcLabel": "", "dst": "uu.vv", "dstArrow": "triangle", - "dstLabel": "", "opacity": 1, "strokeDash": 0, "strokeWidth": 2, @@ -2024,10 +1992,8 @@ "id": "(kk -> ww)[0]", "src": "kk", "srcArrow": "none", - "srcLabel": "", "dst": "ww", "dstArrow": "triangle", - "dstLabel": "", "opacity": 1, "strokeDash": 0, "strokeWidth": 2, @@ -2064,10 +2030,8 @@ "id": "(uu.vv -> ww)[0]", "src": "uu.vv", "srcArrow": "none", - "srcLabel": "", "dst": "ww", "dstArrow": "triangle", - "dstLabel": "", "opacity": 1, "strokeDash": 0, "strokeWidth": 2, @@ -2112,10 +2076,8 @@ "id": "(ww -> rm)[0]", "src": "ww", "srcArrow": "none", - "srcLabel": "", "dst": "rm", "dstArrow": "triangle", - "dstLabel": "", "opacity": 1, "strokeDash": 0, "strokeWidth": 2, @@ -2152,10 +2114,8 @@ "id": "(rm -> nn.xx)[0]", "src": "rm", "srcArrow": "none", - "srcLabel": "", "dst": "nn.xx", "dstArrow": "triangle", - "dstLabel": "", "opacity": 1, "strokeDash": 0, "strokeWidth": 2, @@ -2200,10 +2160,8 @@ "id": "(ll.rr -> yy.zz)[0]", "src": "ll.rr", "srcArrow": "none", - "srcLabel": "", "dst": "yy.zz", "dstArrow": "triangle", - "dstLabel": "", "opacity": 1, "strokeDash": 0, "strokeWidth": 2, @@ -2240,10 +2198,8 @@ "id": "(rm -> yy.zz)[0]", "src": "rm", "srcArrow": "none", - "srcLabel": "", "dst": "yy.zz", "dstArrow": "triangle", - "dstLabel": "", "opacity": 1, "strokeDash": 0, "strokeWidth": 2, @@ -2288,10 +2244,8 @@ "id": "yy.(zz -> ab)[0]", "src": "yy.zz", "srcArrow": "none", - "srcLabel": "", "dst": "yy.ab", "dstArrow": "triangle", - "dstLabel": "", "opacity": 1, "strokeDash": 0, "strokeWidth": 2, @@ -2328,10 +2282,8 @@ "id": "(yy.ab -> nn.ac)[0]", "src": "yy.ab", "srcArrow": "none", - "srcLabel": "", "dst": "nn.ac", "dstArrow": "triangle", - "dstLabel": "", "opacity": 1, "strokeDash": 0, "strokeWidth": 2, @@ -2376,10 +2328,8 @@ "id": "(nn.ac -> ad)[0]", "src": "nn.ac", "srcArrow": "none", - "srcLabel": "", "dst": "ad", "dstArrow": "triangle", - "dstLabel": "", "opacity": 1, "strokeDash": 0, "strokeWidth": 2, @@ -2416,10 +2366,8 @@ "id": "(ww -> ff.gg)[0]", "src": "ww", "srcArrow": "none", - "srcLabel": "", "dst": "ff.gg", "dstArrow": "triangle", - "dstLabel": "", "opacity": 1, "strokeDash": 0, "strokeWidth": 2, diff --git a/e2etests/testdata/stable/investigate/elk/sketch.exp.svg b/e2etests/testdata/stable/investigate/elk/sketch.exp.svg index 8844d4e7e0..d0327be2d3 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-2591227634 .fill-N1{fill:#0A0F25;} + .d2-2591227634 .fill-N2{fill:#676C7E;} + .d2-2591227634 .fill-N3{fill:#9499AB;} + .d2-2591227634 .fill-N4{fill:#CFD2DD;} + .d2-2591227634 .fill-N5{fill:#DEE1EB;} + .d2-2591227634 .fill-N6{fill:#EEF1F8;} + .d2-2591227634 .fill-N7{fill:#FFFFFF;} + .d2-2591227634 .fill-B1{fill:#0D32B2;} + .d2-2591227634 .fill-B2{fill:#0D32B2;} + .d2-2591227634 .fill-B3{fill:#E3E9FD;} + .d2-2591227634 .fill-B4{fill:#E3E9FD;} + .d2-2591227634 .fill-B5{fill:#EDF0FD;} + .d2-2591227634 .fill-B6{fill:#F7F8FE;} + .d2-2591227634 .fill-AA2{fill:#4A6FF3;} + .d2-2591227634 .fill-AA4{fill:#EDF0FD;} + .d2-2591227634 .fill-AA5{fill:#F7F8FE;} + .d2-2591227634 .fill-AB4{fill:#EDF0FD;} + .d2-2591227634 .fill-AB5{fill:#F7F8FE;} + .d2-2591227634 .stroke-N1{stroke:#0A0F25;} + .d2-2591227634 .stroke-N2{stroke:#676C7E;} + .d2-2591227634 .stroke-N3{stroke:#9499AB;} + .d2-2591227634 .stroke-N4{stroke:#CFD2DD;} + .d2-2591227634 .stroke-N5{stroke:#DEE1EB;} + .d2-2591227634 .stroke-N6{stroke:#EEF1F8;} + .d2-2591227634 .stroke-N7{stroke:#FFFFFF;} + .d2-2591227634 .stroke-B1{stroke:#0D32B2;} + .d2-2591227634 .stroke-B2{stroke:#0D32B2;} + .d2-2591227634 .stroke-B3{stroke:#E3E9FD;} + .d2-2591227634 .stroke-B4{stroke:#E3E9FD;} + .d2-2591227634 .stroke-B5{stroke:#EDF0FD;} + .d2-2591227634 .stroke-B6{stroke:#F7F8FE;} + .d2-2591227634 .stroke-AA2{stroke:#4A6FF3;} + .d2-2591227634 .stroke-AA4{stroke:#EDF0FD;} + .d2-2591227634 .stroke-AA5{stroke:#F7F8FE;} + .d2-2591227634 .stroke-AB4{stroke:#EDF0FD;} + .d2-2591227634 .stroke-AB5{stroke:#F7F8FE;} + .d2-2591227634 .background-color-N1{background-color:#0A0F25;} + .d2-2591227634 .background-color-N2{background-color:#676C7E;} + .d2-2591227634 .background-color-N3{background-color:#9499AB;} + .d2-2591227634 .background-color-N4{background-color:#CFD2DD;} + .d2-2591227634 .background-color-N5{background-color:#DEE1EB;} + .d2-2591227634 .background-color-N6{background-color:#EEF1F8;} + .d2-2591227634 .background-color-N7{background-color:#FFFFFF;} + .d2-2591227634 .background-color-B1{background-color:#0D32B2;} + .d2-2591227634 .background-color-B2{background-color:#0D32B2;} + .d2-2591227634 .background-color-B3{background-color:#E3E9FD;} + .d2-2591227634 .background-color-B4{background-color:#E3E9FD;} + .d2-2591227634 .background-color-B5{background-color:#EDF0FD;} + .d2-2591227634 .background-color-B6{background-color:#F7F8FE;} + .d2-2591227634 .background-color-AA2{background-color:#4A6FF3;} + .d2-2591227634 .background-color-AA4{background-color:#EDF0FD;} + .d2-2591227634 .background-color-AA5{background-color:#F7F8FE;} + .d2-2591227634 .background-color-AB4{background-color:#EDF0FD;} + .d2-2591227634 .background-color-AB5{background-color:#F7F8FE;} + .d2-2591227634 .color-N1{color:#0A0F25;} + .d2-2591227634 .color-N2{color:#676C7E;} + .d2-2591227634 .color-N3{color:#9499AB;} + .d2-2591227634 .color-N4{color:#CFD2DD;} + .d2-2591227634 .color-N5{color:#DEE1EB;} + .d2-2591227634 .color-N6{color:#EEF1F8;} + .d2-2591227634 .color-N7{color:#FFFFFF;} + .d2-2591227634 .color-B1{color:#0D32B2;} + .d2-2591227634 .color-B2{color:#0D32B2;} + .d2-2591227634 .color-B3{color:#E3E9FD;} + .d2-2591227634 .color-B4{color:#E3E9FD;} + .d2-2591227634 .color-B5{color:#EDF0FD;} + .d2-2591227634 .color-B6{color:#F7F8FE;} + .d2-2591227634 .color-AA2{color:#4A6FF3;} + .d2-2591227634 .color-AA4{color:#EDF0FD;} + .d2-2591227634 .color-AA5{color:#F7F8FE;} + .d2-2591227634 .color-AB4{color:#EDF0FD;} + .d2-2591227634 .color-AB5{color:#F7F8FE;}.appendix text.text{fill:#0A0F25}.md{--color-fg-default:#0A0F25;--color-fg-muted:#676C7E;--color-fg-subtle:#9499AB;--color-canvas-default:#FFFFFF;--color-canvas-subtle:#EEF1F8;--color-border-default:#0D32B2;--color-border-muted:#0D32B2;--color-neutral-muted:#EEF1F8;--color-accent-fg:#0D32B2;--color-accent-emphasis:#0D32B2;--color-attention-subtle:#676C7E;--color-danger-fg:red;}.sketch-overlay-B1{fill:url(#streaks-darker);mix-blend-mode:lighten}.sketch-overlay-B2{fill:url(#streaks-darker);mix-blend-mode:lighten}.sketch-overlay-B3{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-B4{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-B5{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-B6{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-AA2{fill:url(#streaks-dark);mix-blend-mode:overlay}.sketch-overlay-AA4{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-AA5{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-AB4{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-AB5{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-N1{fill:url(#streaks-darker);mix-blend-mode:lighten}.sketch-overlay-N2{fill:url(#streaks-dark);mix-blend-mode:overlay}.sketch-overlay-N3{fill:url(#streaks-normal);mix-blend-mode:color-burn}.sketch-overlay-N4{fill:url(#streaks-normal);mix-blend-mode:color-burn}.sketch-overlay-N5{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-N6{fill:url(#streaks-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/large_arch/dagre/board.exp.json b/e2etests/testdata/stable/large_arch/dagre/board.exp.json index 65c6954aeb..7cf99c5f2c 100644 --- a/e2etests/testdata/stable/large_arch/dagre/board.exp.json +++ b/e2etests/testdata/stable/large_arch/dagre/board.exp.json @@ -1362,10 +1362,8 @@ "id": "i.(j.k -> m)[0]", "src": "i.j.k", "srcArrow": "none", - "srcLabel": "", "dst": "i.m", "dstArrow": "triangle", - "dstLabel": "", "opacity": 1, "strokeDash": 0, "strokeWidth": 2, @@ -1435,10 +1433,8 @@ "id": "i.(j.l -> o.p)[0]", "src": "i.j.l", "srcArrow": "none", - "srcLabel": "", "dst": "i.o.p", "dstArrow": "triangle", - "dstLabel": "", "opacity": 1, "strokeDash": 0, "strokeWidth": 2, @@ -1508,10 +1504,8 @@ "id": "(q -> i.m)[0]", "src": "q", "srcArrow": "none", - "srcLabel": "", "dst": "i.m", "dstArrow": "triangle", - "dstLabel": "", "opacity": 1, "strokeDash": 0, "strokeWidth": 2, @@ -1569,10 +1563,8 @@ "id": "(i.m -> q)[0]", "src": "i.m", "srcArrow": "none", - "srcLabel": "", "dst": "q", "dstArrow": "triangle", - "dstLabel": "", "opacity": 1, "strokeDash": 0, "strokeWidth": 2, @@ -1630,10 +1622,8 @@ "id": "(i.n -> q)[0]", "src": "i.n", "srcArrow": "none", - "srcLabel": "", "dst": "q", "dstArrow": "triangle", - "dstLabel": "", "opacity": 1, "strokeDash": 0, "strokeWidth": 2, @@ -1691,10 +1681,8 @@ "id": "(i.m -> c)[0]", "src": "i.m", "srcArrow": "none", - "srcLabel": "", "dst": "c", "dstArrow": "triangle", - "dstLabel": "", "opacity": 1, "strokeDash": 0, "strokeWidth": 2, @@ -1752,10 +1740,8 @@ "id": "(i.m -> d)[0]", "src": "i.m", "srcArrow": "none", - "srcLabel": "", "dst": "d", "dstArrow": "triangle", - "dstLabel": "", "opacity": 1, "strokeDash": 0, "strokeWidth": 2, @@ -1813,10 +1799,8 @@ "id": "(i.m -> g)[0]", "src": "i.m", "srcArrow": "none", - "srcLabel": "", "dst": "g", "dstArrow": "triangle", - "dstLabel": "", "opacity": 1, "strokeDash": 0, "strokeWidth": 2, @@ -1874,10 +1858,8 @@ "id": "(i.m -> f)[0]", "src": "i.m", "srcArrow": "none", - "srcLabel": "", "dst": "f", "dstArrow": "triangle", - "dstLabel": "", "opacity": 1, "strokeDash": 0, "strokeWidth": 2, @@ -1935,10 +1917,8 @@ "id": "(d -> e)[0]", "src": "d", "srcArrow": "none", - "srcLabel": "", "dst": "e", "dstArrow": "triangle", - "dstLabel": "", "opacity": 1, "strokeDash": 0, "strokeWidth": 2, @@ -1984,10 +1964,8 @@ "id": "r.s.(x -> t)[0]", "src": "r.s.x", "srcArrow": "none", - "srcLabel": "", "dst": "r.s.t", "dstArrow": "triangle", - "dstLabel": "", "opacity": 1, "strokeDash": 0, "strokeWidth": 2, @@ -2057,10 +2035,8 @@ "id": "r.s.(x -> w)[0]", "src": "r.s.x", "srcArrow": "none", - "srcLabel": "", "dst": "r.s.w", "dstArrow": "triangle", - "dstLabel": "", "opacity": 1, "strokeDash": 0, "strokeWidth": 2, @@ -2130,10 +2106,8 @@ "id": "r.(gg -> s.t)[0]", "src": "r.gg", "srcArrow": "none", - "srcLabel": "", "dst": "r.s.t", "dstArrow": "triangle", - "dstLabel": "", "opacity": 1, "strokeDash": 0, "strokeWidth": 2, @@ -2203,10 +2177,8 @@ "id": "r.(s.u.v -> z)[0]", "src": "r.s.u.v", "srcArrow": "none", - "srcLabel": "", "dst": "r.z", "dstArrow": "triangle", - "dstLabel": "", "opacity": 1, "strokeDash": 0, "strokeWidth": 2, @@ -2276,10 +2248,8 @@ "id": "r.(aa -> s.t)[0]", "src": "r.aa", "srcArrow": "none", - "srcLabel": "", "dst": "r.s.t", "dstArrow": "triangle", - "dstLabel": "", "opacity": 1, "strokeDash": 0, "strokeWidth": 2, @@ -2349,10 +2319,8 @@ "id": "(r.s.w -> i.m)[0]", "src": "r.s.w", "srcArrow": "none", - "srcLabel": "", "dst": "i.m", "dstArrow": "triangle", - "dstLabel": "", "opacity": 1, "strokeDash": 0, "strokeWidth": 2, @@ -2422,10 +2390,8 @@ "id": "(r.s.t -> g)[0]", "src": "r.s.t", "srcArrow": "none", - "srcLabel": "", "dst": "g", "dstArrow": "triangle", - "dstLabel": "", "opacity": 1, "strokeDash": 0, "strokeWidth": 2, @@ -2543,10 +2509,8 @@ "id": "(r.s.t -> h)[0]", "src": "r.s.t", "srcArrow": "none", - "srcLabel": "", "dst": "h", "dstArrow": "triangle", - "dstLabel": "", "opacity": 1, "strokeDash": 0, "strokeWidth": 2, @@ -2616,10 +2580,8 @@ "id": "r.(ee -> ff)[0]", "src": "r.ee", "srcArrow": "none", - "srcLabel": "", "dst": "r.ff", "dstArrow": "triangle", - "dstLabel": "", "opacity": 1, "strokeDash": 0, "strokeWidth": 2, diff --git a/e2etests/testdata/stable/large_arch/dagre/sketch.exp.svg b/e2etests/testdata/stable/large_arch/dagre/sketch.exp.svg index f215be6e8b..e99c622454 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-1527873351 .fill-N1{fill:#0A0F25;} + .d2-1527873351 .fill-N2{fill:#676C7E;} + .d2-1527873351 .fill-N3{fill:#9499AB;} + .d2-1527873351 .fill-N4{fill:#CFD2DD;} + .d2-1527873351 .fill-N5{fill:#DEE1EB;} + .d2-1527873351 .fill-N6{fill:#EEF1F8;} + .d2-1527873351 .fill-N7{fill:#FFFFFF;} + .d2-1527873351 .fill-B1{fill:#0D32B2;} + .d2-1527873351 .fill-B2{fill:#0D32B2;} + .d2-1527873351 .fill-B3{fill:#E3E9FD;} + .d2-1527873351 .fill-B4{fill:#E3E9FD;} + .d2-1527873351 .fill-B5{fill:#EDF0FD;} + .d2-1527873351 .fill-B6{fill:#F7F8FE;} + .d2-1527873351 .fill-AA2{fill:#4A6FF3;} + .d2-1527873351 .fill-AA4{fill:#EDF0FD;} + .d2-1527873351 .fill-AA5{fill:#F7F8FE;} + .d2-1527873351 .fill-AB4{fill:#EDF0FD;} + .d2-1527873351 .fill-AB5{fill:#F7F8FE;} + .d2-1527873351 .stroke-N1{stroke:#0A0F25;} + .d2-1527873351 .stroke-N2{stroke:#676C7E;} + .d2-1527873351 .stroke-N3{stroke:#9499AB;} + .d2-1527873351 .stroke-N4{stroke:#CFD2DD;} + .d2-1527873351 .stroke-N5{stroke:#DEE1EB;} + .d2-1527873351 .stroke-N6{stroke:#EEF1F8;} + .d2-1527873351 .stroke-N7{stroke:#FFFFFF;} + .d2-1527873351 .stroke-B1{stroke:#0D32B2;} + .d2-1527873351 .stroke-B2{stroke:#0D32B2;} + .d2-1527873351 .stroke-B3{stroke:#E3E9FD;} + .d2-1527873351 .stroke-B4{stroke:#E3E9FD;} + .d2-1527873351 .stroke-B5{stroke:#EDF0FD;} + .d2-1527873351 .stroke-B6{stroke:#F7F8FE;} + .d2-1527873351 .stroke-AA2{stroke:#4A6FF3;} + .d2-1527873351 .stroke-AA4{stroke:#EDF0FD;} + .d2-1527873351 .stroke-AA5{stroke:#F7F8FE;} + .d2-1527873351 .stroke-AB4{stroke:#EDF0FD;} + .d2-1527873351 .stroke-AB5{stroke:#F7F8FE;} + .d2-1527873351 .background-color-N1{background-color:#0A0F25;} + .d2-1527873351 .background-color-N2{background-color:#676C7E;} + .d2-1527873351 .background-color-N3{background-color:#9499AB;} + .d2-1527873351 .background-color-N4{background-color:#CFD2DD;} + .d2-1527873351 .background-color-N5{background-color:#DEE1EB;} + .d2-1527873351 .background-color-N6{background-color:#EEF1F8;} + .d2-1527873351 .background-color-N7{background-color:#FFFFFF;} + .d2-1527873351 .background-color-B1{background-color:#0D32B2;} + .d2-1527873351 .background-color-B2{background-color:#0D32B2;} + .d2-1527873351 .background-color-B3{background-color:#E3E9FD;} + .d2-1527873351 .background-color-B4{background-color:#E3E9FD;} + .d2-1527873351 .background-color-B5{background-color:#EDF0FD;} + .d2-1527873351 .background-color-B6{background-color:#F7F8FE;} + .d2-1527873351 .background-color-AA2{background-color:#4A6FF3;} + .d2-1527873351 .background-color-AA4{background-color:#EDF0FD;} + .d2-1527873351 .background-color-AA5{background-color:#F7F8FE;} + .d2-1527873351 .background-color-AB4{background-color:#EDF0FD;} + .d2-1527873351 .background-color-AB5{background-color:#F7F8FE;} + .d2-1527873351 .color-N1{color:#0A0F25;} + .d2-1527873351 .color-N2{color:#676C7E;} + .d2-1527873351 .color-N3{color:#9499AB;} + .d2-1527873351 .color-N4{color:#CFD2DD;} + .d2-1527873351 .color-N5{color:#DEE1EB;} + .d2-1527873351 .color-N6{color:#EEF1F8;} + .d2-1527873351 .color-N7{color:#FFFFFF;} + .d2-1527873351 .color-B1{color:#0D32B2;} + .d2-1527873351 .color-B2{color:#0D32B2;} + .d2-1527873351 .color-B3{color:#E3E9FD;} + .d2-1527873351 .color-B4{color:#E3E9FD;} + .d2-1527873351 .color-B5{color:#EDF0FD;} + .d2-1527873351 .color-B6{color:#F7F8FE;} + .d2-1527873351 .color-AA2{color:#4A6FF3;} + .d2-1527873351 .color-AA4{color:#EDF0FD;} + .d2-1527873351 .color-AA5{color:#F7F8FE;} + .d2-1527873351 .color-AB4{color:#EDF0FD;} + .d2-1527873351 .color-AB5{color:#F7F8FE;}.appendix text.text{fill:#0A0F25}.md{--color-fg-default:#0A0F25;--color-fg-muted:#676C7E;--color-fg-subtle:#9499AB;--color-canvas-default:#FFFFFF;--color-canvas-subtle:#EEF1F8;--color-border-default:#0D32B2;--color-border-muted:#0D32B2;--color-neutral-muted:#EEF1F8;--color-accent-fg:#0D32B2;--color-accent-emphasis:#0D32B2;--color-attention-subtle:#676C7E;--color-danger-fg:red;}.sketch-overlay-B1{fill:url(#streaks-darker);mix-blend-mode:lighten}.sketch-overlay-B2{fill:url(#streaks-darker);mix-blend-mode:lighten}.sketch-overlay-B3{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-B4{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-B5{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-B6{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-AA2{fill:url(#streaks-dark);mix-blend-mode:overlay}.sketch-overlay-AA4{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-AA5{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-AB4{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-AB5{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-N1{fill:url(#streaks-darker);mix-blend-mode:lighten}.sketch-overlay-N2{fill:url(#streaks-dark);mix-blend-mode:overlay}.sketch-overlay-N3{fill:url(#streaks-normal);mix-blend-mode:color-burn}.sketch-overlay-N4{fill:url(#streaks-normal);mix-blend-mode:color-burn}.sketch-overlay-N5{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-N6{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-N7{fill:url(#streaks-bright);mix-blend-mode:darken}.light-code{display: block}.dark-code{display: none}]]>abcdefghiqrjmnoszaabbeeffggklptuwxyccddv \ No newline at end of file diff --git a/e2etests/testdata/stable/large_arch/elk/board.exp.json b/e2etests/testdata/stable/large_arch/elk/board.exp.json index 2374c0d595..12b4d6e6fa 100644 --- a/e2etests/testdata/stable/large_arch/elk/board.exp.json +++ b/e2etests/testdata/stable/large_arch/elk/board.exp.json @@ -1362,10 +1362,8 @@ "id": "i.(j.k -> m)[0]", "src": "i.j.k", "srcArrow": "none", - "srcLabel": "", "dst": "i.m", "dstArrow": "triangle", - "dstLabel": "", "opacity": 1, "strokeDash": 0, "strokeWidth": 2, @@ -1410,10 +1408,8 @@ "id": "i.(j.l -> o.p)[0]", "src": "i.j.l", "srcArrow": "none", - "srcLabel": "", "dst": "i.o.p", "dstArrow": "triangle", - "dstLabel": "", "opacity": 1, "strokeDash": 0, "strokeWidth": 2, @@ -1450,10 +1446,8 @@ "id": "(q -> i.m)[0]", "src": "q", "srcArrow": "none", - "srcLabel": "", "dst": "i.m", "dstArrow": "triangle", - "dstLabel": "", "opacity": 1, "strokeDash": 0, "strokeWidth": 2, @@ -1506,10 +1500,8 @@ "id": "(i.m -> q)[0]", "src": "i.m", "srcArrow": "none", - "srcLabel": "", "dst": "q", "dstArrow": "triangle", - "dstLabel": "", "opacity": 1, "strokeDash": 0, "strokeWidth": 2, @@ -1554,10 +1546,8 @@ "id": "(i.n -> q)[0]", "src": "i.n", "srcArrow": "none", - "srcLabel": "", "dst": "q", "dstArrow": "triangle", - "dstLabel": "", "opacity": 1, "strokeDash": 0, "strokeWidth": 2, @@ -1602,10 +1592,8 @@ "id": "(i.m -> c)[0]", "src": "i.m", "srcArrow": "none", - "srcLabel": "", "dst": "c", "dstArrow": "triangle", - "dstLabel": "", "opacity": 1, "strokeDash": 0, "strokeWidth": 2, @@ -1650,10 +1638,8 @@ "id": "(i.m -> d)[0]", "src": "i.m", "srcArrow": "none", - "srcLabel": "", "dst": "d", "dstArrow": "triangle", - "dstLabel": "", "opacity": 1, "strokeDash": 0, "strokeWidth": 2, @@ -1698,10 +1684,8 @@ "id": "(i.m -> g)[0]", "src": "i.m", "srcArrow": "none", - "srcLabel": "", "dst": "g", "dstArrow": "triangle", - "dstLabel": "", "opacity": 1, "strokeDash": 0, "strokeWidth": 2, @@ -1746,10 +1730,8 @@ "id": "(i.m -> f)[0]", "src": "i.m", "srcArrow": "none", - "srcLabel": "", "dst": "f", "dstArrow": "triangle", - "dstLabel": "", "opacity": 1, "strokeDash": 0, "strokeWidth": 2, @@ -1786,10 +1768,8 @@ "id": "(d -> e)[0]", "src": "d", "srcArrow": "none", - "srcLabel": "", "dst": "e", "dstArrow": "triangle", - "dstLabel": "", "opacity": 1, "strokeDash": 0, "strokeWidth": 2, @@ -1826,10 +1806,8 @@ "id": "r.s.(x -> t)[0]", "src": "r.s.x", "srcArrow": "none", - "srcLabel": "", "dst": "r.s.t", "dstArrow": "triangle", - "dstLabel": "", "opacity": 1, "strokeDash": 0, "strokeWidth": 2, @@ -1874,10 +1852,8 @@ "id": "r.s.(x -> w)[0]", "src": "r.s.x", "srcArrow": "none", - "srcLabel": "", "dst": "r.s.w", "dstArrow": "triangle", - "dstLabel": "", "opacity": 1, "strokeDash": 0, "strokeWidth": 2, @@ -1914,10 +1890,8 @@ "id": "r.(gg -> s.t)[0]", "src": "r.gg", "srcArrow": "none", - "srcLabel": "", "dst": "r.s.t", "dstArrow": "triangle", - "dstLabel": "", "opacity": 1, "strokeDash": 0, "strokeWidth": 2, @@ -1962,10 +1936,8 @@ "id": "r.(s.u.v -> z)[0]", "src": "r.s.u.v", "srcArrow": "none", - "srcLabel": "", "dst": "r.z", "dstArrow": "triangle", - "dstLabel": "", "opacity": 1, "strokeDash": 0, "strokeWidth": 2, @@ -2002,10 +1974,8 @@ "id": "r.(aa -> s.t)[0]", "src": "r.aa", "srcArrow": "none", - "srcLabel": "", "dst": "r.s.t", "dstArrow": "triangle", - "dstLabel": "", "opacity": 1, "strokeDash": 0, "strokeWidth": 2, @@ -2042,10 +2012,8 @@ "id": "(r.s.w -> i.m)[0]", "src": "r.s.w", "srcArrow": "none", - "srcLabel": "", "dst": "i.m", "dstArrow": "triangle", - "dstLabel": "", "opacity": 1, "strokeDash": 0, "strokeWidth": 2, @@ -2082,10 +2050,8 @@ "id": "(r.s.t -> g)[0]", "src": "r.s.t", "srcArrow": "none", - "srcLabel": "", "dst": "g", "dstArrow": "triangle", - "dstLabel": "", "opacity": 1, "strokeDash": 0, "strokeWidth": 2, @@ -2122,10 +2088,8 @@ "id": "(r.s.t -> h)[0]", "src": "r.s.t", "srcArrow": "none", - "srcLabel": "", "dst": "h", "dstArrow": "triangle", - "dstLabel": "", "opacity": 1, "strokeDash": 0, "strokeWidth": 2, @@ -2162,10 +2126,8 @@ "id": "r.(ee -> ff)[0]", "src": "r.ee", "srcArrow": "none", - "srcLabel": "", "dst": "r.ff", "dstArrow": "triangle", - "dstLabel": "", "opacity": 1, "strokeDash": 0, "strokeWidth": 2, diff --git a/e2etests/testdata/stable/large_arch/elk/sketch.exp.svg b/e2etests/testdata/stable/large_arch/elk/sketch.exp.svg index c2d0c122be..a1e1aef228 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-1188340980 .fill-N1{fill:#0A0F25;} + .d2-1188340980 .fill-N2{fill:#676C7E;} + .d2-1188340980 .fill-N3{fill:#9499AB;} + .d2-1188340980 .fill-N4{fill:#CFD2DD;} + .d2-1188340980 .fill-N5{fill:#DEE1EB;} + .d2-1188340980 .fill-N6{fill:#EEF1F8;} + .d2-1188340980 .fill-N7{fill:#FFFFFF;} + .d2-1188340980 .fill-B1{fill:#0D32B2;} + .d2-1188340980 .fill-B2{fill:#0D32B2;} + .d2-1188340980 .fill-B3{fill:#E3E9FD;} + .d2-1188340980 .fill-B4{fill:#E3E9FD;} + .d2-1188340980 .fill-B5{fill:#EDF0FD;} + .d2-1188340980 .fill-B6{fill:#F7F8FE;} + .d2-1188340980 .fill-AA2{fill:#4A6FF3;} + .d2-1188340980 .fill-AA4{fill:#EDF0FD;} + .d2-1188340980 .fill-AA5{fill:#F7F8FE;} + .d2-1188340980 .fill-AB4{fill:#EDF0FD;} + .d2-1188340980 .fill-AB5{fill:#F7F8FE;} + .d2-1188340980 .stroke-N1{stroke:#0A0F25;} + .d2-1188340980 .stroke-N2{stroke:#676C7E;} + .d2-1188340980 .stroke-N3{stroke:#9499AB;} + .d2-1188340980 .stroke-N4{stroke:#CFD2DD;} + .d2-1188340980 .stroke-N5{stroke:#DEE1EB;} + .d2-1188340980 .stroke-N6{stroke:#EEF1F8;} + .d2-1188340980 .stroke-N7{stroke:#FFFFFF;} + .d2-1188340980 .stroke-B1{stroke:#0D32B2;} + .d2-1188340980 .stroke-B2{stroke:#0D32B2;} + .d2-1188340980 .stroke-B3{stroke:#E3E9FD;} + .d2-1188340980 .stroke-B4{stroke:#E3E9FD;} + .d2-1188340980 .stroke-B5{stroke:#EDF0FD;} + .d2-1188340980 .stroke-B6{stroke:#F7F8FE;} + .d2-1188340980 .stroke-AA2{stroke:#4A6FF3;} + .d2-1188340980 .stroke-AA4{stroke:#EDF0FD;} + .d2-1188340980 .stroke-AA5{stroke:#F7F8FE;} + .d2-1188340980 .stroke-AB4{stroke:#EDF0FD;} + .d2-1188340980 .stroke-AB5{stroke:#F7F8FE;} + .d2-1188340980 .background-color-N1{background-color:#0A0F25;} + .d2-1188340980 .background-color-N2{background-color:#676C7E;} + .d2-1188340980 .background-color-N3{background-color:#9499AB;} + .d2-1188340980 .background-color-N4{background-color:#CFD2DD;} + .d2-1188340980 .background-color-N5{background-color:#DEE1EB;} + .d2-1188340980 .background-color-N6{background-color:#EEF1F8;} + .d2-1188340980 .background-color-N7{background-color:#FFFFFF;} + .d2-1188340980 .background-color-B1{background-color:#0D32B2;} + .d2-1188340980 .background-color-B2{background-color:#0D32B2;} + .d2-1188340980 .background-color-B3{background-color:#E3E9FD;} + .d2-1188340980 .background-color-B4{background-color:#E3E9FD;} + .d2-1188340980 .background-color-B5{background-color:#EDF0FD;} + .d2-1188340980 .background-color-B6{background-color:#F7F8FE;} + .d2-1188340980 .background-color-AA2{background-color:#4A6FF3;} + .d2-1188340980 .background-color-AA4{background-color:#EDF0FD;} + .d2-1188340980 .background-color-AA5{background-color:#F7F8FE;} + .d2-1188340980 .background-color-AB4{background-color:#EDF0FD;} + .d2-1188340980 .background-color-AB5{background-color:#F7F8FE;} + .d2-1188340980 .color-N1{color:#0A0F25;} + .d2-1188340980 .color-N2{color:#676C7E;} + .d2-1188340980 .color-N3{color:#9499AB;} + .d2-1188340980 .color-N4{color:#CFD2DD;} + .d2-1188340980 .color-N5{color:#DEE1EB;} + .d2-1188340980 .color-N6{color:#EEF1F8;} + .d2-1188340980 .color-N7{color:#FFFFFF;} + .d2-1188340980 .color-B1{color:#0D32B2;} + .d2-1188340980 .color-B2{color:#0D32B2;} + .d2-1188340980 .color-B3{color:#E3E9FD;} + .d2-1188340980 .color-B4{color:#E3E9FD;} + .d2-1188340980 .color-B5{color:#EDF0FD;} + .d2-1188340980 .color-B6{color:#F7F8FE;} + .d2-1188340980 .color-AA2{color:#4A6FF3;} + .d2-1188340980 .color-AA4{color:#EDF0FD;} + .d2-1188340980 .color-AA5{color:#F7F8FE;} + .d2-1188340980 .color-AB4{color:#EDF0FD;} + .d2-1188340980 .color-AB5{color:#F7F8FE;}.appendix text.text{fill:#0A0F25}.md{--color-fg-default:#0A0F25;--color-fg-muted:#676C7E;--color-fg-subtle:#9499AB;--color-canvas-default:#FFFFFF;--color-canvas-subtle:#EEF1F8;--color-border-default:#0D32B2;--color-border-muted:#0D32B2;--color-neutral-muted:#EEF1F8;--color-accent-fg:#0D32B2;--color-accent-emphasis:#0D32B2;--color-attention-subtle:#676C7E;--color-danger-fg:red;}.sketch-overlay-B1{fill:url(#streaks-darker);mix-blend-mode:lighten}.sketch-overlay-B2{fill:url(#streaks-darker);mix-blend-mode:lighten}.sketch-overlay-B3{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-B4{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-B5{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-B6{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-AA2{fill:url(#streaks-dark);mix-blend-mode:overlay}.sketch-overlay-AA4{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-AA5{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-AB4{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-AB5{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-N1{fill:url(#streaks-darker);mix-blend-mode:lighten}.sketch-overlay-N2{fill:url(#streaks-dark);mix-blend-mode:overlay}.sketch-overlay-N3{fill:url(#streaks-normal);mix-blend-mode:color-burn}.sketch-overlay-N4{fill:url(#streaks-normal);mix-blend-mode:color-burn}.sketch-overlay-N5{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-N6{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-N7{fill:url(#streaks-bright);mix-blend-mode:darken}.light-code{display: block}.dark-code{display: none}]]>abcdefghiqrjmnoszaabbeeffggklptuwxyccddv \ No newline at end of file diff --git a/e2etests/testdata/stable/latex/dagre/board.exp.json b/e2etests/testdata/stable/latex/dagre/board.exp.json index e372548f79..560a32067f 100644 --- a/e2etests/testdata/stable/latex/dagre/board.exp.json +++ b/e2etests/testdata/stable/latex/dagre/board.exp.json @@ -252,10 +252,8 @@ "id": "(z -> a)[0]", "src": "z", "srcArrow": "none", - "srcLabel": "", "dst": "a", "dstArrow": "triangle", - "dstLabel": "", "opacity": 1, "strokeDash": 0, "strokeWidth": 2, @@ -301,10 +299,8 @@ "id": "(z -> b)[0]", "src": "z", "srcArrow": "none", - "srcLabel": "", "dst": "b", "dstArrow": "triangle", - "dstLabel": "", "opacity": 1, "strokeDash": 0, "strokeWidth": 2, @@ -350,10 +346,8 @@ "id": "(a -> c)[0]", "src": "a", "srcArrow": "none", - "srcLabel": "", "dst": "c", "dstArrow": "triangle", - "dstLabel": "", "opacity": 1, "strokeDash": 0, "strokeWidth": 2, @@ -399,10 +393,8 @@ "id": "(b -> c)[0]", "src": "b", "srcArrow": "none", - "srcLabel": "", "dst": "c", "dstArrow": "triangle", - "dstLabel": "", "opacity": 1, "strokeDash": 0, "strokeWidth": 2, @@ -448,10 +440,8 @@ "id": "(sugar -> c)[0]", "src": "sugar", "srcArrow": "none", - "srcLabel": "", "dst": "c", "dstArrow": "triangle", - "dstLabel": "", "opacity": 1, "strokeDash": 0, "strokeWidth": 2, @@ -497,10 +487,8 @@ "id": "(c -> solution)[0]", "src": "c", "srcArrow": "none", - "srcLabel": "", "dst": "solution", "dstArrow": "triangle", - "dstLabel": "", "opacity": 1, "strokeDash": 0, "strokeWidth": 2, diff --git a/e2etests/testdata/stable/latex/dagre/sketch.exp.svg b/e2etests/testdata/stable/latex/dagre/sketch.exp.svg index dfeb70439b..dd1b306ec8 100644 --- a/e2etests/testdata/stable/latex/dagre/sketch.exp.svg +++ b/e2etests/testdata/stable/latex/dagre/sketch.exp.svg @@ -1,16 +1,16 @@ -mixed togethersugarsolution we get +mixed togethersugarsolution we get \ No newline at end of file diff --git a/e2etests/testdata/stable/latex/elk/board.exp.json b/e2etests/testdata/stable/latex/elk/board.exp.json index bcc4c40d34..c1c469de68 100644 --- a/e2etests/testdata/stable/latex/elk/board.exp.json +++ b/e2etests/testdata/stable/latex/elk/board.exp.json @@ -252,10 +252,8 @@ "id": "(z -> a)[0]", "src": "z", "srcArrow": "none", - "srcLabel": "", "dst": "a", "dstArrow": "triangle", - "dstLabel": "", "opacity": 1, "strokeDash": 0, "strokeWidth": 2, @@ -292,10 +290,8 @@ "id": "(z -> b)[0]", "src": "z", "srcArrow": "none", - "srcLabel": "", "dst": "b", "dstArrow": "triangle", - "dstLabel": "", "opacity": 1, "strokeDash": 0, "strokeWidth": 2, @@ -340,10 +336,8 @@ "id": "(a -> c)[0]", "src": "a", "srcArrow": "none", - "srcLabel": "", "dst": "c", "dstArrow": "triangle", - "dstLabel": "", "opacity": 1, "strokeDash": 0, "strokeWidth": 2, @@ -388,10 +382,8 @@ "id": "(b -> c)[0]", "src": "b", "srcArrow": "none", - "srcLabel": "", "dst": "c", "dstArrow": "triangle", - "dstLabel": "", "opacity": 1, "strokeDash": 0, "strokeWidth": 2, @@ -428,10 +420,8 @@ "id": "(sugar -> c)[0]", "src": "sugar", "srcArrow": "none", - "srcLabel": "", "dst": "c", "dstArrow": "triangle", - "dstLabel": "", "opacity": 1, "strokeDash": 0, "strokeWidth": 2, @@ -476,10 +466,8 @@ "id": "(c -> solution)[0]", "src": "c", "srcArrow": "none", - "srcLabel": "", "dst": "solution", "dstArrow": "triangle", - "dstLabel": "", "opacity": 1, "strokeDash": 0, "strokeWidth": 2, diff --git a/e2etests/testdata/stable/latex/elk/sketch.exp.svg b/e2etests/testdata/stable/latex/elk/sketch.exp.svg index 9088b18d8d..1694ea3166 100644 --- a/e2etests/testdata/stable/latex/elk/sketch.exp.svg +++ b/e2etests/testdata/stable/latex/elk/sketch.exp.svg @@ -1,16 +1,16 @@ -mixed togethersugarsolution we get +mixed togethersugarsolution we get \ No newline at end of file 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 1d2073df60..0b5b99f6f4 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 @@ -253,10 +253,8 @@ "id": "(x -> y)[0]", "src": "x", "srcArrow": "none", - "srcLabel": "", "dst": "y", "dstArrow": "triangle", - "dstLabel": "", "opacity": 1, "strokeDash": 0, "strokeWidth": 2, @@ -302,10 +300,8 @@ "id": "(y -> z)[0]", "src": "y", "srcArrow": "none", - "srcLabel": "", "dst": "z", "dstArrow": "triangle", - "dstLabel": "", "opacity": 1, "strokeDash": 0, "strokeWidth": 2, 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 df08a3c57a..b159c03e3d 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 \ No newline at end of file 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 e2e2ac59b5..4c4053a0c3 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 @@ -253,10 +253,8 @@ "id": "(x -> y)[0]", "src": "x", "srcArrow": "none", - "srcLabel": "", "dst": "y", "dstArrow": "triangle", - "dstLabel": "", "opacity": 1, "strokeDash": 0, "strokeWidth": 2, @@ -293,10 +291,8 @@ "id": "(y -> z)[0]", "src": "y", "srcArrow": "none", - "srcLabel": "", "dst": "z", "dstArrow": "triangle", - "dstLabel": "", "opacity": 1, "strokeDash": 0, "strokeWidth": 2, 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 c9be31301d..4f8b5f004a 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 \ No newline at end of file diff --git a/e2etests/testdata/stable/li1/dagre/board.exp.json b/e2etests/testdata/stable/li1/dagre/board.exp.json index c853a9656f..ee30644ec5 100644 --- a/e2etests/testdata/stable/li1/dagre/board.exp.json +++ b/e2etests/testdata/stable/li1/dagre/board.exp.json @@ -131,10 +131,8 @@ "id": "(a -> md)[0]", "src": "a", "srcArrow": "none", - "srcLabel": "", "dst": "md", "dstArrow": "triangle", - "dstLabel": "", "opacity": 1, "strokeDash": 0, "strokeWidth": 2, @@ -180,10 +178,8 @@ "id": "(md -> b)[0]", "src": "md", "srcArrow": "none", - "srcLabel": "", "dst": "b", "dstArrow": "triangle", - "dstLabel": "", "opacity": 1, "strokeDash": 0, "strokeWidth": 2, diff --git a/e2etests/testdata/stable/li1/dagre/sketch.exp.svg b/e2etests/testdata/stable/li1/dagre/sketch.exp.svg index d517518130..49361259e8 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
    \ No newline at end of file diff --git a/e2etests/testdata/stable/li1/elk/board.exp.json b/e2etests/testdata/stable/li1/elk/board.exp.json index 6cdb80b427..211e446e7a 100644 --- a/e2etests/testdata/stable/li1/elk/board.exp.json +++ b/e2etests/testdata/stable/li1/elk/board.exp.json @@ -131,10 +131,8 @@ "id": "(a -> md)[0]", "src": "a", "srcArrow": "none", - "srcLabel": "", "dst": "md", "dstArrow": "triangle", - "dstLabel": "", "opacity": 1, "strokeDash": 0, "strokeWidth": 2, @@ -171,10 +169,8 @@ "id": "(md -> b)[0]", "src": "md", "srcArrow": "none", - "srcLabel": "", "dst": "b", "dstArrow": "triangle", - "dstLabel": "", "opacity": 1, "strokeDash": 0, "strokeWidth": 2, diff --git a/e2etests/testdata/stable/li1/elk/sketch.exp.svg b/e2etests/testdata/stable/li1/elk/sketch.exp.svg index dbede80311..a9b0dfcd33 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
    \ No newline at end of file diff --git a/e2etests/testdata/stable/li2/dagre/board.exp.json b/e2etests/testdata/stable/li2/dagre/board.exp.json index f96295a2d8..30d438f055 100644 --- a/e2etests/testdata/stable/li2/dagre/board.exp.json +++ b/e2etests/testdata/stable/li2/dagre/board.exp.json @@ -131,10 +131,8 @@ "id": "(a -> md)[0]", "src": "a", "srcArrow": "none", - "srcLabel": "", "dst": "md", "dstArrow": "triangle", - "dstLabel": "", "opacity": 1, "strokeDash": 0, "strokeWidth": 2, @@ -180,10 +178,8 @@ "id": "(md -> b)[0]", "src": "md", "srcArrow": "none", - "srcLabel": "", "dst": "b", "dstArrow": "triangle", - "dstLabel": "", "opacity": 1, "strokeDash": 0, "strokeWidth": 2, diff --git a/e2etests/testdata/stable/li2/dagre/sketch.exp.svg b/e2etests/testdata/stable/li2/dagre/sketch.exp.svg index 1ec2b3c586..df937d25ec 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
    \ No newline at end of file diff --git a/e2etests/testdata/stable/li2/elk/board.exp.json b/e2etests/testdata/stable/li2/elk/board.exp.json index b53198439f..c6e49bf400 100644 --- a/e2etests/testdata/stable/li2/elk/board.exp.json +++ b/e2etests/testdata/stable/li2/elk/board.exp.json @@ -131,10 +131,8 @@ "id": "(a -> md)[0]", "src": "a", "srcArrow": "none", - "srcLabel": "", "dst": "md", "dstArrow": "triangle", - "dstLabel": "", "opacity": 1, "strokeDash": 0, "strokeWidth": 2, @@ -171,10 +169,8 @@ "id": "(md -> b)[0]", "src": "md", "srcArrow": "none", - "srcLabel": "", "dst": "b", "dstArrow": "triangle", - "dstLabel": "", "opacity": 1, "strokeDash": 0, "strokeWidth": 2, diff --git a/e2etests/testdata/stable/li2/elk/sketch.exp.svg b/e2etests/testdata/stable/li2/elk/sketch.exp.svg index 85ccc434f6..b9910d31bb 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
    \ No newline at end of file diff --git a/e2etests/testdata/stable/li3/dagre/board.exp.json b/e2etests/testdata/stable/li3/dagre/board.exp.json index 3a98e42ed8..db4b055e92 100644 --- a/e2etests/testdata/stable/li3/dagre/board.exp.json +++ b/e2etests/testdata/stable/li3/dagre/board.exp.json @@ -131,10 +131,8 @@ "id": "(a -> md)[0]", "src": "a", "srcArrow": "none", - "srcLabel": "", "dst": "md", "dstArrow": "triangle", - "dstLabel": "", "opacity": 1, "strokeDash": 0, "strokeWidth": 2, @@ -180,10 +178,8 @@ "id": "(md -> b)[0]", "src": "md", "srcArrow": "none", - "srcLabel": "", "dst": "b", "dstArrow": "triangle", - "dstLabel": "", "opacity": 1, "strokeDash": 0, "strokeWidth": 2, diff --git a/e2etests/testdata/stable/li3/dagre/sketch.exp.svg b/e2etests/testdata/stable/li3/dagre/sketch.exp.svg index d83ba02848..0805d38340 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
    \ No newline at end of file diff --git a/e2etests/testdata/stable/li3/elk/board.exp.json b/e2etests/testdata/stable/li3/elk/board.exp.json index a5a64dc787..48e3e3a4b9 100644 --- a/e2etests/testdata/stable/li3/elk/board.exp.json +++ b/e2etests/testdata/stable/li3/elk/board.exp.json @@ -131,10 +131,8 @@ "id": "(a -> md)[0]", "src": "a", "srcArrow": "none", - "srcLabel": "", "dst": "md", "dstArrow": "triangle", - "dstLabel": "", "opacity": 1, "strokeDash": 0, "strokeWidth": 2, @@ -171,10 +169,8 @@ "id": "(md -> b)[0]", "src": "md", "srcArrow": "none", - "srcLabel": "", "dst": "b", "dstArrow": "triangle", - "dstLabel": "", "opacity": 1, "strokeDash": 0, "strokeWidth": 2, diff --git a/e2etests/testdata/stable/li3/elk/sketch.exp.svg b/e2etests/testdata/stable/li3/elk/sketch.exp.svg index 45f6f6436b..04f9c9a866 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
    \ No newline at end of file diff --git a/e2etests/testdata/stable/li4/dagre/board.exp.json b/e2etests/testdata/stable/li4/dagre/board.exp.json index 5618736685..7956cd4aa6 100644 --- a/e2etests/testdata/stable/li4/dagre/board.exp.json +++ b/e2etests/testdata/stable/li4/dagre/board.exp.json @@ -131,10 +131,8 @@ "id": "(a -> md)[0]", "src": "a", "srcArrow": "none", - "srcLabel": "", "dst": "md", "dstArrow": "triangle", - "dstLabel": "", "opacity": 1, "strokeDash": 0, "strokeWidth": 2, @@ -180,10 +178,8 @@ "id": "(md -> b)[0]", "src": "md", "srcArrow": "none", - "srcLabel": "", "dst": "b", "dstArrow": "triangle", - "dstLabel": "", "opacity": 1, "strokeDash": 0, "strokeWidth": 2, diff --git a/e2etests/testdata/stable/li4/dagre/sketch.exp.svg b/e2etests/testdata/stable/li4/dagre/sketch.exp.svg index cd448af18e..02b8a9b2c4 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
    \ No newline at end of file diff --git a/e2etests/testdata/stable/li4/elk/board.exp.json b/e2etests/testdata/stable/li4/elk/board.exp.json index 70366425d8..24a1774dd7 100644 --- a/e2etests/testdata/stable/li4/elk/board.exp.json +++ b/e2etests/testdata/stable/li4/elk/board.exp.json @@ -131,10 +131,8 @@ "id": "(a -> md)[0]", "src": "a", "srcArrow": "none", - "srcLabel": "", "dst": "md", "dstArrow": "triangle", - "dstLabel": "", "opacity": 1, "strokeDash": 0, "strokeWidth": 2, @@ -171,10 +169,8 @@ "id": "(md -> b)[0]", "src": "md", "srcArrow": "none", - "srcLabel": "", "dst": "b", "dstArrow": "triangle", - "dstLabel": "", "opacity": 1, "strokeDash": 0, "strokeWidth": 2, diff --git a/e2etests/testdata/stable/li4/elk/sketch.exp.svg b/e2etests/testdata/stable/li4/elk/sketch.exp.svg index b3d0297148..b8e2dde543 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
    \ No newline at end of file diff --git a/e2etests/testdata/stable/links/dagre/board.exp.json b/e2etests/testdata/stable/links/dagre/board.exp.json index a979cb192f..c61ebd02bb 100644 --- a/e2etests/testdata/stable/links/dagre/board.exp.json +++ b/e2etests/testdata/stable/links/dagre/board.exp.json @@ -91,10 +91,8 @@ "id": "(x -> y)[0]", "src": "x", "srcArrow": "none", - "srcLabel": "", "dst": "y", "dstArrow": "triangle", - "dstLabel": "", "opacity": 1, "strokeDash": 0, "strokeWidth": 2, diff --git a/e2etests/testdata/stable/links/dagre/sketch.exp.svg b/e2etests/testdata/stable/links/dagre/sketch.exp.svg index cee474d10b..29d8ba8947 100644 --- a/e2etests/testdata/stable/links/dagre/sketch.exp.svg +++ b/e2etests/testdata/stable/links/dagre/sketch.exp.svg @@ -1,12 +1,12 @@ -x + .d2-2692295619 .fill-N1{fill:#0A0F25;} + .d2-2692295619 .fill-N2{fill:#676C7E;} + .d2-2692295619 .fill-N3{fill:#9499AB;} + .d2-2692295619 .fill-N4{fill:#CFD2DD;} + .d2-2692295619 .fill-N5{fill:#DEE1EB;} + .d2-2692295619 .fill-N6{fill:#EEF1F8;} + .d2-2692295619 .fill-N7{fill:#FFFFFF;} + .d2-2692295619 .fill-B1{fill:#0D32B2;} + .d2-2692295619 .fill-B2{fill:#0D32B2;} + .d2-2692295619 .fill-B3{fill:#E3E9FD;} + .d2-2692295619 .fill-B4{fill:#E3E9FD;} + .d2-2692295619 .fill-B5{fill:#EDF0FD;} + .d2-2692295619 .fill-B6{fill:#F7F8FE;} + .d2-2692295619 .fill-AA2{fill:#4A6FF3;} + .d2-2692295619 .fill-AA4{fill:#EDF0FD;} + .d2-2692295619 .fill-AA5{fill:#F7F8FE;} + .d2-2692295619 .fill-AB4{fill:#EDF0FD;} + .d2-2692295619 .fill-AB5{fill:#F7F8FE;} + .d2-2692295619 .stroke-N1{stroke:#0A0F25;} + .d2-2692295619 .stroke-N2{stroke:#676C7E;} + .d2-2692295619 .stroke-N3{stroke:#9499AB;} + .d2-2692295619 .stroke-N4{stroke:#CFD2DD;} + .d2-2692295619 .stroke-N5{stroke:#DEE1EB;} + .d2-2692295619 .stroke-N6{stroke:#EEF1F8;} + .d2-2692295619 .stroke-N7{stroke:#FFFFFF;} + .d2-2692295619 .stroke-B1{stroke:#0D32B2;} + .d2-2692295619 .stroke-B2{stroke:#0D32B2;} + .d2-2692295619 .stroke-B3{stroke:#E3E9FD;} + .d2-2692295619 .stroke-B4{stroke:#E3E9FD;} + .d2-2692295619 .stroke-B5{stroke:#EDF0FD;} + .d2-2692295619 .stroke-B6{stroke:#F7F8FE;} + .d2-2692295619 .stroke-AA2{stroke:#4A6FF3;} + .d2-2692295619 .stroke-AA4{stroke:#EDF0FD;} + .d2-2692295619 .stroke-AA5{stroke:#F7F8FE;} + .d2-2692295619 .stroke-AB4{stroke:#EDF0FD;} + .d2-2692295619 .stroke-AB5{stroke:#F7F8FE;} + .d2-2692295619 .background-color-N1{background-color:#0A0F25;} + .d2-2692295619 .background-color-N2{background-color:#676C7E;} + .d2-2692295619 .background-color-N3{background-color:#9499AB;} + .d2-2692295619 .background-color-N4{background-color:#CFD2DD;} + .d2-2692295619 .background-color-N5{background-color:#DEE1EB;} + .d2-2692295619 .background-color-N6{background-color:#EEF1F8;} + .d2-2692295619 .background-color-N7{background-color:#FFFFFF;} + .d2-2692295619 .background-color-B1{background-color:#0D32B2;} + .d2-2692295619 .background-color-B2{background-color:#0D32B2;} + .d2-2692295619 .background-color-B3{background-color:#E3E9FD;} + .d2-2692295619 .background-color-B4{background-color:#E3E9FD;} + .d2-2692295619 .background-color-B5{background-color:#EDF0FD;} + .d2-2692295619 .background-color-B6{background-color:#F7F8FE;} + .d2-2692295619 .background-color-AA2{background-color:#4A6FF3;} + .d2-2692295619 .background-color-AA4{background-color:#EDF0FD;} + .d2-2692295619 .background-color-AA5{background-color:#F7F8FE;} + .d2-2692295619 .background-color-AB4{background-color:#EDF0FD;} + .d2-2692295619 .background-color-AB5{background-color:#F7F8FE;} + .d2-2692295619 .color-N1{color:#0A0F25;} + .d2-2692295619 .color-N2{color:#676C7E;} + .d2-2692295619 .color-N3{color:#9499AB;} + .d2-2692295619 .color-N4{color:#CFD2DD;} + .d2-2692295619 .color-N5{color:#DEE1EB;} + .d2-2692295619 .color-N6{color:#EEF1F8;} + .d2-2692295619 .color-N7{color:#FFFFFF;} + .d2-2692295619 .color-B1{color:#0D32B2;} + .d2-2692295619 .color-B2{color:#0D32B2;} + .d2-2692295619 .color-B3{color:#E3E9FD;} + .d2-2692295619 .color-B4{color:#E3E9FD;} + .d2-2692295619 .color-B5{color:#EDF0FD;} + .d2-2692295619 .color-B6{color:#F7F8FE;} + .d2-2692295619 .color-AA2{color:#4A6FF3;} + .d2-2692295619 .color-AA4{color:#EDF0FD;} + .d2-2692295619 .color-AA5{color:#F7F8FE;} + .d2-2692295619 .color-AB4{color:#EDF0FD;} + .d2-2692295619 .color-AB5{color:#F7F8FE;}.appendix text.text{fill:#0A0F25}.md{--color-fg-default:#0A0F25;--color-fg-muted:#676C7E;--color-fg-subtle:#9499AB;--color-canvas-default:#FFFFFF;--color-canvas-subtle:#EEF1F8;--color-border-default:#0D32B2;--color-border-muted:#0D32B2;--color-neutral-muted:#EEF1F8;--color-accent-fg:#0D32B2;--color-accent-emphasis:#0D32B2;--color-attention-subtle:#676C7E;--color-danger-fg:red;}.sketch-overlay-B1{fill:url(#streaks-darker);mix-blend-mode:lighten}.sketch-overlay-B2{fill:url(#streaks-darker);mix-blend-mode:lighten}.sketch-overlay-B3{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-B4{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-B5{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-B6{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-AA2{fill:url(#streaks-dark);mix-blend-mode:overlay}.sketch-overlay-AA4{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-AA5{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-AB4{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-AB5{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-N1{fill:url(#streaks-darker);mix-blend-mode:lighten}.sketch-overlay-N2{fill:url(#streaks-dark);mix-blend-mode:overlay}.sketch-overlay-N3{fill:url(#streaks-normal);mix-blend-mode:color-burn}.sketch-overlay-N4{fill:url(#streaks-normal);mix-blend-mode:color-burn}.sketch-overlay-N5{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-N6{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-N7{fill:url(#streaks-bright);mix-blend-mode:darken}.light-code{display: block}.dark-code{display: none}]]>x @@ -129,7 +129,7 @@ - + \ No newline at end of file diff --git a/e2etests/testdata/stable/links/elk/board.exp.json b/e2etests/testdata/stable/links/elk/board.exp.json index 18ef6477cd..52bb04fae2 100644 --- a/e2etests/testdata/stable/links/elk/board.exp.json +++ b/e2etests/testdata/stable/links/elk/board.exp.json @@ -91,10 +91,8 @@ "id": "(x -> y)[0]", "src": "x", "srcArrow": "none", - "srcLabel": "", "dst": "y", "dstArrow": "triangle", - "dstLabel": "", "opacity": 1, "strokeDash": 0, "strokeWidth": 2, diff --git a/e2etests/testdata/stable/links/elk/sketch.exp.svg b/e2etests/testdata/stable/links/elk/sketch.exp.svg index be5ecebffb..ccb4844388 100644 --- a/e2etests/testdata/stable/links/elk/sketch.exp.svg +++ b/e2etests/testdata/stable/links/elk/sketch.exp.svg @@ -1,12 +1,12 @@ -x + .d2-640734671 .fill-N1{fill:#0A0F25;} + .d2-640734671 .fill-N2{fill:#676C7E;} + .d2-640734671 .fill-N3{fill:#9499AB;} + .d2-640734671 .fill-N4{fill:#CFD2DD;} + .d2-640734671 .fill-N5{fill:#DEE1EB;} + .d2-640734671 .fill-N6{fill:#EEF1F8;} + .d2-640734671 .fill-N7{fill:#FFFFFF;} + .d2-640734671 .fill-B1{fill:#0D32B2;} + .d2-640734671 .fill-B2{fill:#0D32B2;} + .d2-640734671 .fill-B3{fill:#E3E9FD;} + .d2-640734671 .fill-B4{fill:#E3E9FD;} + .d2-640734671 .fill-B5{fill:#EDF0FD;} + .d2-640734671 .fill-B6{fill:#F7F8FE;} + .d2-640734671 .fill-AA2{fill:#4A6FF3;} + .d2-640734671 .fill-AA4{fill:#EDF0FD;} + .d2-640734671 .fill-AA5{fill:#F7F8FE;} + .d2-640734671 .fill-AB4{fill:#EDF0FD;} + .d2-640734671 .fill-AB5{fill:#F7F8FE;} + .d2-640734671 .stroke-N1{stroke:#0A0F25;} + .d2-640734671 .stroke-N2{stroke:#676C7E;} + .d2-640734671 .stroke-N3{stroke:#9499AB;} + .d2-640734671 .stroke-N4{stroke:#CFD2DD;} + .d2-640734671 .stroke-N5{stroke:#DEE1EB;} + .d2-640734671 .stroke-N6{stroke:#EEF1F8;} + .d2-640734671 .stroke-N7{stroke:#FFFFFF;} + .d2-640734671 .stroke-B1{stroke:#0D32B2;} + .d2-640734671 .stroke-B2{stroke:#0D32B2;} + .d2-640734671 .stroke-B3{stroke:#E3E9FD;} + .d2-640734671 .stroke-B4{stroke:#E3E9FD;} + .d2-640734671 .stroke-B5{stroke:#EDF0FD;} + .d2-640734671 .stroke-B6{stroke:#F7F8FE;} + .d2-640734671 .stroke-AA2{stroke:#4A6FF3;} + .d2-640734671 .stroke-AA4{stroke:#EDF0FD;} + .d2-640734671 .stroke-AA5{stroke:#F7F8FE;} + .d2-640734671 .stroke-AB4{stroke:#EDF0FD;} + .d2-640734671 .stroke-AB5{stroke:#F7F8FE;} + .d2-640734671 .background-color-N1{background-color:#0A0F25;} + .d2-640734671 .background-color-N2{background-color:#676C7E;} + .d2-640734671 .background-color-N3{background-color:#9499AB;} + .d2-640734671 .background-color-N4{background-color:#CFD2DD;} + .d2-640734671 .background-color-N5{background-color:#DEE1EB;} + .d2-640734671 .background-color-N6{background-color:#EEF1F8;} + .d2-640734671 .background-color-N7{background-color:#FFFFFF;} + .d2-640734671 .background-color-B1{background-color:#0D32B2;} + .d2-640734671 .background-color-B2{background-color:#0D32B2;} + .d2-640734671 .background-color-B3{background-color:#E3E9FD;} + .d2-640734671 .background-color-B4{background-color:#E3E9FD;} + .d2-640734671 .background-color-B5{background-color:#EDF0FD;} + .d2-640734671 .background-color-B6{background-color:#F7F8FE;} + .d2-640734671 .background-color-AA2{background-color:#4A6FF3;} + .d2-640734671 .background-color-AA4{background-color:#EDF0FD;} + .d2-640734671 .background-color-AA5{background-color:#F7F8FE;} + .d2-640734671 .background-color-AB4{background-color:#EDF0FD;} + .d2-640734671 .background-color-AB5{background-color:#F7F8FE;} + .d2-640734671 .color-N1{color:#0A0F25;} + .d2-640734671 .color-N2{color:#676C7E;} + .d2-640734671 .color-N3{color:#9499AB;} + .d2-640734671 .color-N4{color:#CFD2DD;} + .d2-640734671 .color-N5{color:#DEE1EB;} + .d2-640734671 .color-N6{color:#EEF1F8;} + .d2-640734671 .color-N7{color:#FFFFFF;} + .d2-640734671 .color-B1{color:#0D32B2;} + .d2-640734671 .color-B2{color:#0D32B2;} + .d2-640734671 .color-B3{color:#E3E9FD;} + .d2-640734671 .color-B4{color:#E3E9FD;} + .d2-640734671 .color-B5{color:#EDF0FD;} + .d2-640734671 .color-B6{color:#F7F8FE;} + .d2-640734671 .color-AA2{color:#4A6FF3;} + .d2-640734671 .color-AA4{color:#EDF0FD;} + .d2-640734671 .color-AA5{color:#F7F8FE;} + .d2-640734671 .color-AB4{color:#EDF0FD;} + .d2-640734671 .color-AB5{color:#F7F8FE;}.appendix text.text{fill:#0A0F25}.md{--color-fg-default:#0A0F25;--color-fg-muted:#676C7E;--color-fg-subtle:#9499AB;--color-canvas-default:#FFFFFF;--color-canvas-subtle:#EEF1F8;--color-border-default:#0D32B2;--color-border-muted:#0D32B2;--color-neutral-muted:#EEF1F8;--color-accent-fg:#0D32B2;--color-accent-emphasis:#0D32B2;--color-attention-subtle:#676C7E;--color-danger-fg:red;}.sketch-overlay-B1{fill:url(#streaks-darker);mix-blend-mode:lighten}.sketch-overlay-B2{fill:url(#streaks-darker);mix-blend-mode:lighten}.sketch-overlay-B3{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-B4{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-B5{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-B6{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-AA2{fill:url(#streaks-dark);mix-blend-mode:overlay}.sketch-overlay-AA4{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-AA5{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-AB4{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-AB5{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-N1{fill:url(#streaks-darker);mix-blend-mode:lighten}.sketch-overlay-N2{fill:url(#streaks-dark);mix-blend-mode:overlay}.sketch-overlay-N3{fill:url(#streaks-normal);mix-blend-mode:color-burn}.sketch-overlay-N4{fill:url(#streaks-normal);mix-blend-mode:color-burn}.sketch-overlay-N5{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-N6{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-N7{fill:url(#streaks-bright);mix-blend-mode:darken}.light-code{display: block}.dark-code{display: none}]]>x @@ -129,7 +129,7 @@ - + \ No newline at end of file diff --git a/e2etests/testdata/stable/lone_h1/dagre/board.exp.json b/e2etests/testdata/stable/lone_h1/dagre/board.exp.json index 1cc5775a36..505d6d68e1 100644 --- a/e2etests/testdata/stable/lone_h1/dagre/board.exp.json +++ b/e2etests/testdata/stable/lone_h1/dagre/board.exp.json @@ -131,10 +131,8 @@ "id": "(a -> md)[0]", "src": "a", "srcArrow": "none", - "srcLabel": "", "dst": "md", "dstArrow": "triangle", - "dstLabel": "", "opacity": 1, "strokeDash": 0, "strokeWidth": 2, @@ -180,10 +178,8 @@ "id": "(md -> b)[0]", "src": "md", "srcArrow": "none", - "srcLabel": "", "dst": "b", "dstArrow": "triangle", - "dstLabel": "", "opacity": 1, "strokeDash": 0, "strokeWidth": 2, diff --git a/e2etests/testdata/stable/lone_h1/dagre/sketch.exp.svg b/e2etests/testdata/stable/lone_h1/dagre/sketch.exp.svg index cedc920728..e5d0c3f632 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
    \ No newline at end of file diff --git a/e2etests/testdata/stable/lone_h1/elk/board.exp.json b/e2etests/testdata/stable/lone_h1/elk/board.exp.json index dc58eedc2f..d19c13dd08 100644 --- a/e2etests/testdata/stable/lone_h1/elk/board.exp.json +++ b/e2etests/testdata/stable/lone_h1/elk/board.exp.json @@ -131,10 +131,8 @@ "id": "(a -> md)[0]", "src": "a", "srcArrow": "none", - "srcLabel": "", "dst": "md", "dstArrow": "triangle", - "dstLabel": "", "opacity": 1, "strokeDash": 0, "strokeWidth": 2, @@ -171,10 +169,8 @@ "id": "(md -> b)[0]", "src": "md", "srcArrow": "none", - "srcLabel": "", "dst": "b", "dstArrow": "triangle", - "dstLabel": "", "opacity": 1, "strokeDash": 0, "strokeWidth": 2, diff --git a/e2etests/testdata/stable/lone_h1/elk/sketch.exp.svg b/e2etests/testdata/stable/lone_h1/elk/sketch.exp.svg index b6288c1523..a824ba8042 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
    \ No newline at end of file diff --git a/e2etests/testdata/stable/markdown/dagre/board.exp.json b/e2etests/testdata/stable/markdown/dagre/board.exp.json index 73b2e530eb..28860c0ee2 100644 --- a/e2etests/testdata/stable/markdown/dagre/board.exp.json +++ b/e2etests/testdata/stable/markdown/dagre/board.exp.json @@ -131,10 +131,8 @@ "id": "(x -> hey)[0]", "src": "x", "srcArrow": "none", - "srcLabel": "", "dst": "hey", "dstArrow": "triangle", - "dstLabel": "", "opacity": 1, "strokeDash": 0, "strokeWidth": 2, @@ -180,10 +178,8 @@ "id": "(hey -> y)[0]", "src": "hey", "srcArrow": "none", - "srcLabel": "", "dst": "y", "dstArrow": "triangle", - "dstLabel": "", "opacity": 1, "strokeDash": 0, "strokeWidth": 2, diff --git a/e2etests/testdata/stable/markdown/dagre/sketch.exp.svg b/e2etests/testdata/stable/markdown/dagre/sketch.exp.svg index 09019529b9..fca7aa634b 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
    \ No newline at end of file diff --git a/e2etests/testdata/stable/markdown/elk/board.exp.json b/e2etests/testdata/stable/markdown/elk/board.exp.json index 19b4f1ff2c..92ac04bef0 100644 --- a/e2etests/testdata/stable/markdown/elk/board.exp.json +++ b/e2etests/testdata/stable/markdown/elk/board.exp.json @@ -131,10 +131,8 @@ "id": "(x -> hey)[0]", "src": "x", "srcArrow": "none", - "srcLabel": "", "dst": "hey", "dstArrow": "triangle", - "dstLabel": "", "opacity": 1, "strokeDash": 0, "strokeWidth": 2, @@ -171,10 +169,8 @@ "id": "(hey -> y)[0]", "src": "hey", "srcArrow": "none", - "srcLabel": "", "dst": "y", "dstArrow": "triangle", - "dstLabel": "", "opacity": 1, "strokeDash": 0, "strokeWidth": 2, diff --git a/e2etests/testdata/stable/markdown/elk/sketch.exp.svg b/e2etests/testdata/stable/markdown/elk/sketch.exp.svg index f7bde17590..343647161f 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
    \ No newline at end of file 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 dea4c9e39e..5096d0de9c 100644 --- a/e2etests/testdata/stable/markdown_stroke_fill/dagre/board.exp.json +++ b/e2etests/testdata/stable/markdown_stroke_fill/dagre/board.exp.json @@ -130,10 +130,8 @@ "id": "(container -> no container)[0]", "src": "container", "srcArrow": "none", - "srcLabel": "", "dst": "no container", "dstArrow": "triangle", - "dstLabel": "", "opacity": 1, "strokeDash": 0, "strokeWidth": 2, 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 bcc62b36cf..ebf34a6921 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.

    -
    +
    \ No newline at end of file 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 ab33f2c9b6..1524575113 100644 --- a/e2etests/testdata/stable/markdown_stroke_fill/elk/board.exp.json +++ b/e2etests/testdata/stable/markdown_stroke_fill/elk/board.exp.json @@ -130,10 +130,8 @@ "id": "(container -> no container)[0]", "src": "container", "srcArrow": "none", - "srcLabel": "", "dst": "no container", "dstArrow": "triangle", - "dstLabel": "", "opacity": 1, "strokeDash": 0, "strokeWidth": 2, 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 35370965b7..f9ad1863a9 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.

    -
    +
    \ No newline at end of file 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 6dfb60944d..c6fade64fb 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 @@ -131,10 +131,8 @@ "id": "(a -> md)[0]", "src": "a", "srcArrow": "none", - "srcLabel": "", "dst": "md", "dstArrow": "triangle", - "dstLabel": "", "opacity": 1, "strokeDash": 0, "strokeWidth": 2, @@ -180,10 +178,8 @@ "id": "(md -> b)[0]", "src": "md", "srcArrow": "none", - "srcLabel": "", "dst": "b", "dstArrow": "triangle", - "dstLabel": "", "opacity": 1, "strokeDash": 0, "strokeWidth": 2, 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 b690854120..b9cc08afa6 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
    \ No newline at end of file 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 89100dfc51..cc732dc11b 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 @@ -131,10 +131,8 @@ "id": "(a -> md)[0]", "src": "a", "srcArrow": "none", - "srcLabel": "", "dst": "md", "dstArrow": "triangle", - "dstLabel": "", "opacity": 1, "strokeDash": 0, "strokeWidth": 2, @@ -171,10 +169,8 @@ "id": "(md -> b)[0]", "src": "md", "srcArrow": "none", - "srcLabel": "", "dst": "b", "dstArrow": "triangle", - "dstLabel": "", "opacity": 1, "strokeDash": 0, "strokeWidth": 2, 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 5428f59ee3..a2603111e8 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
    \ No newline at end of file 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 41a0f7290d..392c9757a9 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 @@ -131,10 +131,8 @@ "id": "(a -> md)[0]", "src": "a", "srcArrow": "none", - "srcLabel": "", "dst": "md", "dstArrow": "triangle", - "dstLabel": "", "opacity": 1, "strokeDash": 0, "strokeWidth": 2, @@ -180,10 +178,8 @@ "id": "(md -> b)[0]", "src": "md", "srcArrow": "none", - "srcLabel": "", "dst": "b", "dstArrow": "triangle", - "dstLabel": "", "opacity": 1, "strokeDash": 0, "strokeWidth": 2, 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 d4adab40a8..0403e31617 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
    \ No newline at end of file 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 dbf04898b2..1856b2a098 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 @@ -131,10 +131,8 @@ "id": "(a -> md)[0]", "src": "a", "srcArrow": "none", - "srcLabel": "", "dst": "md", "dstArrow": "triangle", - "dstLabel": "", "opacity": 1, "strokeDash": 0, "strokeWidth": 2, @@ -171,10 +169,8 @@ "id": "(md -> b)[0]", "src": "md", "srcArrow": "none", - "srcLabel": "", "dst": "b", "dstArrow": "triangle", - "dstLabel": "", "opacity": 1, "strokeDash": 0, "strokeWidth": 2, 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 fbcf3d0149..2846901375 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
    \ No newline at end of file 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 aa1c48787f..e09e0e2f68 100644 --- a/e2etests/testdata/stable/md_code_inline/dagre/board.exp.json +++ b/e2etests/testdata/stable/md_code_inline/dagre/board.exp.json @@ -131,10 +131,8 @@ "id": "(a -> md)[0]", "src": "a", "srcArrow": "none", - "srcLabel": "", "dst": "md", "dstArrow": "triangle", - "dstLabel": "", "opacity": 1, "strokeDash": 0, "strokeWidth": 2, @@ -180,10 +178,8 @@ "id": "(md -> b)[0]", "src": "md", "srcArrow": "none", - "srcLabel": "", "dst": "b", "dstArrow": "triangle", - "dstLabel": "", "opacity": 1, "strokeDash": 0, "strokeWidth": 2, 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 b2c20fbbd8..dbc1901133 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
    \ No newline at end of file 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 51e1804e45..98251845a9 100644 --- a/e2etests/testdata/stable/md_code_inline/elk/board.exp.json +++ b/e2etests/testdata/stable/md_code_inline/elk/board.exp.json @@ -131,10 +131,8 @@ "id": "(a -> md)[0]", "src": "a", "srcArrow": "none", - "srcLabel": "", "dst": "md", "dstArrow": "triangle", - "dstLabel": "", "opacity": 1, "strokeDash": 0, "strokeWidth": 2, @@ -171,10 +169,8 @@ "id": "(md -> b)[0]", "src": "md", "srcArrow": "none", - "srcLabel": "", "dst": "b", "dstArrow": "triangle", - "dstLabel": "", "opacity": 1, "strokeDash": 0, "strokeWidth": 2, 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 c2d8f9217f..66ed8d6429 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
    \ No newline at end of file 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 2d9a6eb1c0..40662f9b03 100644 --- a/e2etests/testdata/stable/md_fontsize_10/dagre/board.exp.json +++ b/e2etests/testdata/stable/md_fontsize_10/dagre/board.exp.json @@ -131,10 +131,8 @@ "id": "(x -> hey)[0]", "src": "x", "srcArrow": "none", - "srcLabel": "", "dst": "hey", "dstArrow": "triangle", - "dstLabel": "", "opacity": 1, "strokeDash": 0, "strokeWidth": 2, @@ -180,10 +178,8 @@ "id": "(hey -> y)[0]", "src": "hey", "srcArrow": "none", - "srcLabel": "", "dst": "y", "dstArrow": "triangle", - "dstLabel": "", "opacity": 1, "strokeDash": 0, "strokeWidth": 2, 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 342f61790d..19e5ff27ea 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
    \ No newline at end of file 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 0ed72da822..4092969805 100644 --- a/e2etests/testdata/stable/md_fontsize_10/elk/board.exp.json +++ b/e2etests/testdata/stable/md_fontsize_10/elk/board.exp.json @@ -131,10 +131,8 @@ "id": "(x -> hey)[0]", "src": "x", "srcArrow": "none", - "srcLabel": "", "dst": "hey", "dstArrow": "triangle", - "dstLabel": "", "opacity": 1, "strokeDash": 0, "strokeWidth": 2, @@ -171,10 +169,8 @@ "id": "(hey -> y)[0]", "src": "hey", "srcArrow": "none", - "srcLabel": "", "dst": "y", "dstArrow": "triangle", - "dstLabel": "", "opacity": 1, "strokeDash": 0, "strokeWidth": 2, 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 17e5d63d90..2a8f384176 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
    \ No newline at end of file diff --git a/e2etests/testdata/stable/mono-edge/dagre/board.exp.json b/e2etests/testdata/stable/mono-edge/dagre/board.exp.json index ed7d73dc47..811593d6dd 100644 --- a/e2etests/testdata/stable/mono-edge/dagre/board.exp.json +++ b/e2etests/testdata/stable/mono-edge/dagre/board.exp.json @@ -91,10 +91,8 @@ "id": "(x -> y)[0]", "src": "x", "srcArrow": "none", - "srcLabel": "", "dst": "y", "dstArrow": "triangle", - "dstLabel": "", "opacity": 1, "strokeDash": 0, "strokeWidth": 2, diff --git a/e2etests/testdata/stable/mono-edge/dagre/sketch.exp.svg b/e2etests/testdata/stable/mono-edge/dagre/sketch.exp.svg index fd543e7468..cad8a97227 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-305939625 .fill-N1{fill:#0A0F25;} + .d2-305939625 .fill-N2{fill:#676C7E;} + .d2-305939625 .fill-N3{fill:#9499AB;} + .d2-305939625 .fill-N4{fill:#CFD2DD;} + .d2-305939625 .fill-N5{fill:#DEE1EB;} + .d2-305939625 .fill-N6{fill:#EEF1F8;} + .d2-305939625 .fill-N7{fill:#FFFFFF;} + .d2-305939625 .fill-B1{fill:#0D32B2;} + .d2-305939625 .fill-B2{fill:#0D32B2;} + .d2-305939625 .fill-B3{fill:#E3E9FD;} + .d2-305939625 .fill-B4{fill:#E3E9FD;} + .d2-305939625 .fill-B5{fill:#EDF0FD;} + .d2-305939625 .fill-B6{fill:#F7F8FE;} + .d2-305939625 .fill-AA2{fill:#4A6FF3;} + .d2-305939625 .fill-AA4{fill:#EDF0FD;} + .d2-305939625 .fill-AA5{fill:#F7F8FE;} + .d2-305939625 .fill-AB4{fill:#EDF0FD;} + .d2-305939625 .fill-AB5{fill:#F7F8FE;} + .d2-305939625 .stroke-N1{stroke:#0A0F25;} + .d2-305939625 .stroke-N2{stroke:#676C7E;} + .d2-305939625 .stroke-N3{stroke:#9499AB;} + .d2-305939625 .stroke-N4{stroke:#CFD2DD;} + .d2-305939625 .stroke-N5{stroke:#DEE1EB;} + .d2-305939625 .stroke-N6{stroke:#EEF1F8;} + .d2-305939625 .stroke-N7{stroke:#FFFFFF;} + .d2-305939625 .stroke-B1{stroke:#0D32B2;} + .d2-305939625 .stroke-B2{stroke:#0D32B2;} + .d2-305939625 .stroke-B3{stroke:#E3E9FD;} + .d2-305939625 .stroke-B4{stroke:#E3E9FD;} + .d2-305939625 .stroke-B5{stroke:#EDF0FD;} + .d2-305939625 .stroke-B6{stroke:#F7F8FE;} + .d2-305939625 .stroke-AA2{stroke:#4A6FF3;} + .d2-305939625 .stroke-AA4{stroke:#EDF0FD;} + .d2-305939625 .stroke-AA5{stroke:#F7F8FE;} + .d2-305939625 .stroke-AB4{stroke:#EDF0FD;} + .d2-305939625 .stroke-AB5{stroke:#F7F8FE;} + .d2-305939625 .background-color-N1{background-color:#0A0F25;} + .d2-305939625 .background-color-N2{background-color:#676C7E;} + .d2-305939625 .background-color-N3{background-color:#9499AB;} + .d2-305939625 .background-color-N4{background-color:#CFD2DD;} + .d2-305939625 .background-color-N5{background-color:#DEE1EB;} + .d2-305939625 .background-color-N6{background-color:#EEF1F8;} + .d2-305939625 .background-color-N7{background-color:#FFFFFF;} + .d2-305939625 .background-color-B1{background-color:#0D32B2;} + .d2-305939625 .background-color-B2{background-color:#0D32B2;} + .d2-305939625 .background-color-B3{background-color:#E3E9FD;} + .d2-305939625 .background-color-B4{background-color:#E3E9FD;} + .d2-305939625 .background-color-B5{background-color:#EDF0FD;} + .d2-305939625 .background-color-B6{background-color:#F7F8FE;} + .d2-305939625 .background-color-AA2{background-color:#4A6FF3;} + .d2-305939625 .background-color-AA4{background-color:#EDF0FD;} + .d2-305939625 .background-color-AA5{background-color:#F7F8FE;} + .d2-305939625 .background-color-AB4{background-color:#EDF0FD;} + .d2-305939625 .background-color-AB5{background-color:#F7F8FE;} + .d2-305939625 .color-N1{color:#0A0F25;} + .d2-305939625 .color-N2{color:#676C7E;} + .d2-305939625 .color-N3{color:#9499AB;} + .d2-305939625 .color-N4{color:#CFD2DD;} + .d2-305939625 .color-N5{color:#DEE1EB;} + .d2-305939625 .color-N6{color:#EEF1F8;} + .d2-305939625 .color-N7{color:#FFFFFF;} + .d2-305939625 .color-B1{color:#0D32B2;} + .d2-305939625 .color-B2{color:#0D32B2;} + .d2-305939625 .color-B3{color:#E3E9FD;} + .d2-305939625 .color-B4{color:#E3E9FD;} + .d2-305939625 .color-B5{color:#EDF0FD;} + .d2-305939625 .color-B6{color:#F7F8FE;} + .d2-305939625 .color-AA2{color:#4A6FF3;} + .d2-305939625 .color-AA4{color:#EDF0FD;} + .d2-305939625 .color-AA5{color:#F7F8FE;} + .d2-305939625 .color-AB4{color:#EDF0FD;} + .d2-305939625 .color-AB5{color:#F7F8FE;}.appendix text.text{fill:#0A0F25}.md{--color-fg-default:#0A0F25;--color-fg-muted:#676C7E;--color-fg-subtle:#9499AB;--color-canvas-default:#FFFFFF;--color-canvas-subtle:#EEF1F8;--color-border-default:#0D32B2;--color-border-muted:#0D32B2;--color-neutral-muted:#EEF1F8;--color-accent-fg:#0D32B2;--color-accent-emphasis:#0D32B2;--color-attention-subtle:#676C7E;--color-danger-fg:red;}.sketch-overlay-B1{fill:url(#streaks-darker);mix-blend-mode:lighten}.sketch-overlay-B2{fill:url(#streaks-darker);mix-blend-mode:lighten}.sketch-overlay-B3{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-B4{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-B5{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-B6{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-AA2{fill:url(#streaks-dark);mix-blend-mode:overlay}.sketch-overlay-AA4{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-AA5{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-AB4{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-AB5{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-N1{fill:url(#streaks-darker);mix-blend-mode:lighten}.sketch-overlay-N2{fill:url(#streaks-dark);mix-blend-mode:overlay}.sketch-overlay-N3{fill:url(#streaks-normal);mix-blend-mode:color-burn}.sketch-overlay-N4{fill:url(#streaks-normal);mix-blend-mode:color-burn}.sketch-overlay-N5{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-N6{fill:url(#streaks-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 \ No newline at end of file diff --git a/e2etests/testdata/stable/mono-edge/elk/board.exp.json b/e2etests/testdata/stable/mono-edge/elk/board.exp.json index 00ea04b627..5a6cab54be 100644 --- a/e2etests/testdata/stable/mono-edge/elk/board.exp.json +++ b/e2etests/testdata/stable/mono-edge/elk/board.exp.json @@ -91,10 +91,8 @@ "id": "(x -> y)[0]", "src": "x", "srcArrow": "none", - "srcLabel": "", "dst": "y", "dstArrow": "triangle", - "dstLabel": "", "opacity": 1, "strokeDash": 0, "strokeWidth": 2, diff --git a/e2etests/testdata/stable/mono-edge/elk/sketch.exp.svg b/e2etests/testdata/stable/mono-edge/elk/sketch.exp.svg index 1a39b4ae3f..4b6e37e782 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-2411603745 .fill-N1{fill:#0A0F25;} + .d2-2411603745 .fill-N2{fill:#676C7E;} + .d2-2411603745 .fill-N3{fill:#9499AB;} + .d2-2411603745 .fill-N4{fill:#CFD2DD;} + .d2-2411603745 .fill-N5{fill:#DEE1EB;} + .d2-2411603745 .fill-N6{fill:#EEF1F8;} + .d2-2411603745 .fill-N7{fill:#FFFFFF;} + .d2-2411603745 .fill-B1{fill:#0D32B2;} + .d2-2411603745 .fill-B2{fill:#0D32B2;} + .d2-2411603745 .fill-B3{fill:#E3E9FD;} + .d2-2411603745 .fill-B4{fill:#E3E9FD;} + .d2-2411603745 .fill-B5{fill:#EDF0FD;} + .d2-2411603745 .fill-B6{fill:#F7F8FE;} + .d2-2411603745 .fill-AA2{fill:#4A6FF3;} + .d2-2411603745 .fill-AA4{fill:#EDF0FD;} + .d2-2411603745 .fill-AA5{fill:#F7F8FE;} + .d2-2411603745 .fill-AB4{fill:#EDF0FD;} + .d2-2411603745 .fill-AB5{fill:#F7F8FE;} + .d2-2411603745 .stroke-N1{stroke:#0A0F25;} + .d2-2411603745 .stroke-N2{stroke:#676C7E;} + .d2-2411603745 .stroke-N3{stroke:#9499AB;} + .d2-2411603745 .stroke-N4{stroke:#CFD2DD;} + .d2-2411603745 .stroke-N5{stroke:#DEE1EB;} + .d2-2411603745 .stroke-N6{stroke:#EEF1F8;} + .d2-2411603745 .stroke-N7{stroke:#FFFFFF;} + .d2-2411603745 .stroke-B1{stroke:#0D32B2;} + .d2-2411603745 .stroke-B2{stroke:#0D32B2;} + .d2-2411603745 .stroke-B3{stroke:#E3E9FD;} + .d2-2411603745 .stroke-B4{stroke:#E3E9FD;} + .d2-2411603745 .stroke-B5{stroke:#EDF0FD;} + .d2-2411603745 .stroke-B6{stroke:#F7F8FE;} + .d2-2411603745 .stroke-AA2{stroke:#4A6FF3;} + .d2-2411603745 .stroke-AA4{stroke:#EDF0FD;} + .d2-2411603745 .stroke-AA5{stroke:#F7F8FE;} + .d2-2411603745 .stroke-AB4{stroke:#EDF0FD;} + .d2-2411603745 .stroke-AB5{stroke:#F7F8FE;} + .d2-2411603745 .background-color-N1{background-color:#0A0F25;} + .d2-2411603745 .background-color-N2{background-color:#676C7E;} + .d2-2411603745 .background-color-N3{background-color:#9499AB;} + .d2-2411603745 .background-color-N4{background-color:#CFD2DD;} + .d2-2411603745 .background-color-N5{background-color:#DEE1EB;} + .d2-2411603745 .background-color-N6{background-color:#EEF1F8;} + .d2-2411603745 .background-color-N7{background-color:#FFFFFF;} + .d2-2411603745 .background-color-B1{background-color:#0D32B2;} + .d2-2411603745 .background-color-B2{background-color:#0D32B2;} + .d2-2411603745 .background-color-B3{background-color:#E3E9FD;} + .d2-2411603745 .background-color-B4{background-color:#E3E9FD;} + .d2-2411603745 .background-color-B5{background-color:#EDF0FD;} + .d2-2411603745 .background-color-B6{background-color:#F7F8FE;} + .d2-2411603745 .background-color-AA2{background-color:#4A6FF3;} + .d2-2411603745 .background-color-AA4{background-color:#EDF0FD;} + .d2-2411603745 .background-color-AA5{background-color:#F7F8FE;} + .d2-2411603745 .background-color-AB4{background-color:#EDF0FD;} + .d2-2411603745 .background-color-AB5{background-color:#F7F8FE;} + .d2-2411603745 .color-N1{color:#0A0F25;} + .d2-2411603745 .color-N2{color:#676C7E;} + .d2-2411603745 .color-N3{color:#9499AB;} + .d2-2411603745 .color-N4{color:#CFD2DD;} + .d2-2411603745 .color-N5{color:#DEE1EB;} + .d2-2411603745 .color-N6{color:#EEF1F8;} + .d2-2411603745 .color-N7{color:#FFFFFF;} + .d2-2411603745 .color-B1{color:#0D32B2;} + .d2-2411603745 .color-B2{color:#0D32B2;} + .d2-2411603745 .color-B3{color:#E3E9FD;} + .d2-2411603745 .color-B4{color:#E3E9FD;} + .d2-2411603745 .color-B5{color:#EDF0FD;} + .d2-2411603745 .color-B6{color:#F7F8FE;} + .d2-2411603745 .color-AA2{color:#4A6FF3;} + .d2-2411603745 .color-AA4{color:#EDF0FD;} + .d2-2411603745 .color-AA5{color:#F7F8FE;} + .d2-2411603745 .color-AB4{color:#EDF0FD;} + .d2-2411603745 .color-AB5{color:#F7F8FE;}.appendix text.text{fill:#0A0F25}.md{--color-fg-default:#0A0F25;--color-fg-muted:#676C7E;--color-fg-subtle:#9499AB;--color-canvas-default:#FFFFFF;--color-canvas-subtle:#EEF1F8;--color-border-default:#0D32B2;--color-border-muted:#0D32B2;--color-neutral-muted:#EEF1F8;--color-accent-fg:#0D32B2;--color-accent-emphasis:#0D32B2;--color-attention-subtle:#676C7E;--color-danger-fg:red;}.sketch-overlay-B1{fill:url(#streaks-darker);mix-blend-mode:lighten}.sketch-overlay-B2{fill:url(#streaks-darker);mix-blend-mode:lighten}.sketch-overlay-B3{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-B4{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-B5{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-B6{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-AA2{fill:url(#streaks-dark);mix-blend-mode:overlay}.sketch-overlay-AA4{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-AA5{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-AB4{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-AB5{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-N1{fill:url(#streaks-darker);mix-blend-mode:lighten}.sketch-overlay-N2{fill:url(#streaks-dark);mix-blend-mode:overlay}.sketch-overlay-N3{fill:url(#streaks-normal);mix-blend-mode:color-burn}.sketch-overlay-N4{fill:url(#streaks-normal);mix-blend-mode:color-burn}.sketch-overlay-N5{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-N6{fill:url(#streaks-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 \ No newline at end of file diff --git a/e2etests/testdata/stable/mono-font/dagre/board.exp.json b/e2etests/testdata/stable/mono-font/dagre/board.exp.json index 26858d4062..98df5e86ed 100644 --- a/e2etests/testdata/stable/mono-font/dagre/board.exp.json +++ b/e2etests/testdata/stable/mono-font/dagre/board.exp.json @@ -91,10 +91,8 @@ "id": "(satellites -> transmitter)[0]", "src": "satellites", "srcArrow": "none", - "srcLabel": "", "dst": "transmitter", "dstArrow": "triangle", - "dstLabel": "", "opacity": 1, "strokeDash": 0, "strokeWidth": 2, @@ -140,10 +138,8 @@ "id": "(satellites -> transmitter)[1]", "src": "satellites", "srcArrow": "none", - "srcLabel": "", "dst": "transmitter", "dstArrow": "triangle", - "dstLabel": "", "opacity": 1, "strokeDash": 0, "strokeWidth": 2, @@ -189,10 +185,8 @@ "id": "(satellites -> transmitter)[2]", "src": "satellites", "srcArrow": "none", - "srcLabel": "", "dst": "transmitter", "dstArrow": "triangle", - "dstLabel": "", "opacity": 1, "strokeDash": 0, "strokeWidth": 2, diff --git a/e2etests/testdata/stable/mono-font/dagre/sketch.exp.svg b/e2etests/testdata/stable/mono-font/dagre/sketch.exp.svg index ffbc4ffd54..63f7f41166 100644 --- a/e2etests/testdata/stable/mono-font/dagre/sketch.exp.svg +++ b/e2etests/testdata/stable/mono-font/dagre/sketch.exp.svg @@ -1,16 +1,16 @@ -SATELLITESTRANSMITTER SENDSENDSEND + .d2-3042614487 .fill-N1{fill:#0A0F25;} + .d2-3042614487 .fill-N2{fill:#676C7E;} + .d2-3042614487 .fill-N3{fill:#9499AB;} + .d2-3042614487 .fill-N4{fill:#CFD2DD;} + .d2-3042614487 .fill-N5{fill:#DEE1EB;} + .d2-3042614487 .fill-N6{fill:#EEF1F8;} + .d2-3042614487 .fill-N7{fill:#FFFFFF;} + .d2-3042614487 .fill-B1{fill:#0D32B2;} + .d2-3042614487 .fill-B2{fill:#0D32B2;} + .d2-3042614487 .fill-B3{fill:#E3E9FD;} + .d2-3042614487 .fill-B4{fill:#E3E9FD;} + .d2-3042614487 .fill-B5{fill:#EDF0FD;} + .d2-3042614487 .fill-B6{fill:#F7F8FE;} + .d2-3042614487 .fill-AA2{fill:#4A6FF3;} + .d2-3042614487 .fill-AA4{fill:#EDF0FD;} + .d2-3042614487 .fill-AA5{fill:#F7F8FE;} + .d2-3042614487 .fill-AB4{fill:#EDF0FD;} + .d2-3042614487 .fill-AB5{fill:#F7F8FE;} + .d2-3042614487 .stroke-N1{stroke:#0A0F25;} + .d2-3042614487 .stroke-N2{stroke:#676C7E;} + .d2-3042614487 .stroke-N3{stroke:#9499AB;} + .d2-3042614487 .stroke-N4{stroke:#CFD2DD;} + .d2-3042614487 .stroke-N5{stroke:#DEE1EB;} + .d2-3042614487 .stroke-N6{stroke:#EEF1F8;} + .d2-3042614487 .stroke-N7{stroke:#FFFFFF;} + .d2-3042614487 .stroke-B1{stroke:#0D32B2;} + .d2-3042614487 .stroke-B2{stroke:#0D32B2;} + .d2-3042614487 .stroke-B3{stroke:#E3E9FD;} + .d2-3042614487 .stroke-B4{stroke:#E3E9FD;} + .d2-3042614487 .stroke-B5{stroke:#EDF0FD;} + .d2-3042614487 .stroke-B6{stroke:#F7F8FE;} + .d2-3042614487 .stroke-AA2{stroke:#4A6FF3;} + .d2-3042614487 .stroke-AA4{stroke:#EDF0FD;} + .d2-3042614487 .stroke-AA5{stroke:#F7F8FE;} + .d2-3042614487 .stroke-AB4{stroke:#EDF0FD;} + .d2-3042614487 .stroke-AB5{stroke:#F7F8FE;} + .d2-3042614487 .background-color-N1{background-color:#0A0F25;} + .d2-3042614487 .background-color-N2{background-color:#676C7E;} + .d2-3042614487 .background-color-N3{background-color:#9499AB;} + .d2-3042614487 .background-color-N4{background-color:#CFD2DD;} + .d2-3042614487 .background-color-N5{background-color:#DEE1EB;} + .d2-3042614487 .background-color-N6{background-color:#EEF1F8;} + .d2-3042614487 .background-color-N7{background-color:#FFFFFF;} + .d2-3042614487 .background-color-B1{background-color:#0D32B2;} + .d2-3042614487 .background-color-B2{background-color:#0D32B2;} + .d2-3042614487 .background-color-B3{background-color:#E3E9FD;} + .d2-3042614487 .background-color-B4{background-color:#E3E9FD;} + .d2-3042614487 .background-color-B5{background-color:#EDF0FD;} + .d2-3042614487 .background-color-B6{background-color:#F7F8FE;} + .d2-3042614487 .background-color-AA2{background-color:#4A6FF3;} + .d2-3042614487 .background-color-AA4{background-color:#EDF0FD;} + .d2-3042614487 .background-color-AA5{background-color:#F7F8FE;} + .d2-3042614487 .background-color-AB4{background-color:#EDF0FD;} + .d2-3042614487 .background-color-AB5{background-color:#F7F8FE;} + .d2-3042614487 .color-N1{color:#0A0F25;} + .d2-3042614487 .color-N2{color:#676C7E;} + .d2-3042614487 .color-N3{color:#9499AB;} + .d2-3042614487 .color-N4{color:#CFD2DD;} + .d2-3042614487 .color-N5{color:#DEE1EB;} + .d2-3042614487 .color-N6{color:#EEF1F8;} + .d2-3042614487 .color-N7{color:#FFFFFF;} + .d2-3042614487 .color-B1{color:#0D32B2;} + .d2-3042614487 .color-B2{color:#0D32B2;} + .d2-3042614487 .color-B3{color:#E3E9FD;} + .d2-3042614487 .color-B4{color:#E3E9FD;} + .d2-3042614487 .color-B5{color:#EDF0FD;} + .d2-3042614487 .color-B6{color:#F7F8FE;} + .d2-3042614487 .color-AA2{color:#4A6FF3;} + .d2-3042614487 .color-AA4{color:#EDF0FD;} + .d2-3042614487 .color-AA5{color:#F7F8FE;} + .d2-3042614487 .color-AB4{color:#EDF0FD;} + .d2-3042614487 .color-AB5{color:#F7F8FE;}.appendix text.text{fill:#0A0F25}.md{--color-fg-default:#0A0F25;--color-fg-muted:#676C7E;--color-fg-subtle:#9499AB;--color-canvas-default:#FFFFFF;--color-canvas-subtle:#EEF1F8;--color-border-default:#0D32B2;--color-border-muted:#0D32B2;--color-neutral-muted:#EEF1F8;--color-accent-fg:#0D32B2;--color-accent-emphasis:#0D32B2;--color-attention-subtle:#676C7E;--color-danger-fg:red;}.sketch-overlay-B1{fill:url(#streaks-darker);mix-blend-mode:lighten}.sketch-overlay-B2{fill:url(#streaks-darker);mix-blend-mode:lighten}.sketch-overlay-B3{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-B4{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-B5{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-B6{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-AA2{fill:url(#streaks-dark);mix-blend-mode:overlay}.sketch-overlay-AA4{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-AA5{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-AB4{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-AB5{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-N1{fill:url(#streaks-darker);mix-blend-mode:lighten}.sketch-overlay-N2{fill:url(#streaks-dark);mix-blend-mode:overlay}.sketch-overlay-N3{fill:url(#streaks-normal);mix-blend-mode:color-burn}.sketch-overlay-N4{fill:url(#streaks-normal);mix-blend-mode:color-burn}.sketch-overlay-N5{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-N6{fill:url(#streaks-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 8847791df0..cff3bedecc 100644 --- a/e2etests/testdata/stable/mono-font/elk/board.exp.json +++ b/e2etests/testdata/stable/mono-font/elk/board.exp.json @@ -91,10 +91,8 @@ "id": "(satellites -> transmitter)[0]", "src": "satellites", "srcArrow": "none", - "srcLabel": "", "dst": "transmitter", "dstArrow": "triangle", - "dstLabel": "", "opacity": 1, "strokeDash": 0, "strokeWidth": 2, @@ -131,10 +129,8 @@ "id": "(satellites -> transmitter)[1]", "src": "satellites", "srcArrow": "none", - "srcLabel": "", "dst": "transmitter", "dstArrow": "triangle", - "dstLabel": "", "opacity": 1, "strokeDash": 0, "strokeWidth": 2, @@ -171,10 +167,8 @@ "id": "(satellites -> transmitter)[2]", "src": "satellites", "srcArrow": "none", - "srcLabel": "", "dst": "transmitter", "dstArrow": "triangle", - "dstLabel": "", "opacity": 1, "strokeDash": 0, "strokeWidth": 2, diff --git a/e2etests/testdata/stable/mono-font/elk/sketch.exp.svg b/e2etests/testdata/stable/mono-font/elk/sketch.exp.svg index 87ff28fd56..e5880f8706 100644 --- a/e2etests/testdata/stable/mono-font/elk/sketch.exp.svg +++ b/e2etests/testdata/stable/mono-font/elk/sketch.exp.svg @@ -1,16 +1,16 @@ -SATELLITESTRANSMITTER SENDSENDSEND + .d2-11477098 .fill-N1{fill:#0A0F25;} + .d2-11477098 .fill-N2{fill:#676C7E;} + .d2-11477098 .fill-N3{fill:#9499AB;} + .d2-11477098 .fill-N4{fill:#CFD2DD;} + .d2-11477098 .fill-N5{fill:#DEE1EB;} + .d2-11477098 .fill-N6{fill:#EEF1F8;} + .d2-11477098 .fill-N7{fill:#FFFFFF;} + .d2-11477098 .fill-B1{fill:#0D32B2;} + .d2-11477098 .fill-B2{fill:#0D32B2;} + .d2-11477098 .fill-B3{fill:#E3E9FD;} + .d2-11477098 .fill-B4{fill:#E3E9FD;} + .d2-11477098 .fill-B5{fill:#EDF0FD;} + .d2-11477098 .fill-B6{fill:#F7F8FE;} + .d2-11477098 .fill-AA2{fill:#4A6FF3;} + .d2-11477098 .fill-AA4{fill:#EDF0FD;} + .d2-11477098 .fill-AA5{fill:#F7F8FE;} + .d2-11477098 .fill-AB4{fill:#EDF0FD;} + .d2-11477098 .fill-AB5{fill:#F7F8FE;} + .d2-11477098 .stroke-N1{stroke:#0A0F25;} + .d2-11477098 .stroke-N2{stroke:#676C7E;} + .d2-11477098 .stroke-N3{stroke:#9499AB;} + .d2-11477098 .stroke-N4{stroke:#CFD2DD;} + .d2-11477098 .stroke-N5{stroke:#DEE1EB;} + .d2-11477098 .stroke-N6{stroke:#EEF1F8;} + .d2-11477098 .stroke-N7{stroke:#FFFFFF;} + .d2-11477098 .stroke-B1{stroke:#0D32B2;} + .d2-11477098 .stroke-B2{stroke:#0D32B2;} + .d2-11477098 .stroke-B3{stroke:#E3E9FD;} + .d2-11477098 .stroke-B4{stroke:#E3E9FD;} + .d2-11477098 .stroke-B5{stroke:#EDF0FD;} + .d2-11477098 .stroke-B6{stroke:#F7F8FE;} + .d2-11477098 .stroke-AA2{stroke:#4A6FF3;} + .d2-11477098 .stroke-AA4{stroke:#EDF0FD;} + .d2-11477098 .stroke-AA5{stroke:#F7F8FE;} + .d2-11477098 .stroke-AB4{stroke:#EDF0FD;} + .d2-11477098 .stroke-AB5{stroke:#F7F8FE;} + .d2-11477098 .background-color-N1{background-color:#0A0F25;} + .d2-11477098 .background-color-N2{background-color:#676C7E;} + .d2-11477098 .background-color-N3{background-color:#9499AB;} + .d2-11477098 .background-color-N4{background-color:#CFD2DD;} + .d2-11477098 .background-color-N5{background-color:#DEE1EB;} + .d2-11477098 .background-color-N6{background-color:#EEF1F8;} + .d2-11477098 .background-color-N7{background-color:#FFFFFF;} + .d2-11477098 .background-color-B1{background-color:#0D32B2;} + .d2-11477098 .background-color-B2{background-color:#0D32B2;} + .d2-11477098 .background-color-B3{background-color:#E3E9FD;} + .d2-11477098 .background-color-B4{background-color:#E3E9FD;} + .d2-11477098 .background-color-B5{background-color:#EDF0FD;} + .d2-11477098 .background-color-B6{background-color:#F7F8FE;} + .d2-11477098 .background-color-AA2{background-color:#4A6FF3;} + .d2-11477098 .background-color-AA4{background-color:#EDF0FD;} + .d2-11477098 .background-color-AA5{background-color:#F7F8FE;} + .d2-11477098 .background-color-AB4{background-color:#EDF0FD;} + .d2-11477098 .background-color-AB5{background-color:#F7F8FE;} + .d2-11477098 .color-N1{color:#0A0F25;} + .d2-11477098 .color-N2{color:#676C7E;} + .d2-11477098 .color-N3{color:#9499AB;} + .d2-11477098 .color-N4{color:#CFD2DD;} + .d2-11477098 .color-N5{color:#DEE1EB;} + .d2-11477098 .color-N6{color:#EEF1F8;} + .d2-11477098 .color-N7{color:#FFFFFF;} + .d2-11477098 .color-B1{color:#0D32B2;} + .d2-11477098 .color-B2{color:#0D32B2;} + .d2-11477098 .color-B3{color:#E3E9FD;} + .d2-11477098 .color-B4{color:#E3E9FD;} + .d2-11477098 .color-B5{color:#EDF0FD;} + .d2-11477098 .color-B6{color:#F7F8FE;} + .d2-11477098 .color-AA2{color:#4A6FF3;} + .d2-11477098 .color-AA4{color:#EDF0FD;} + .d2-11477098 .color-AA5{color:#F7F8FE;} + .d2-11477098 .color-AB4{color:#EDF0FD;} + .d2-11477098 .color-AB5{color:#F7F8FE;}.appendix text.text{fill:#0A0F25}.md{--color-fg-default:#0A0F25;--color-fg-muted:#676C7E;--color-fg-subtle:#9499AB;--color-canvas-default:#FFFFFF;--color-canvas-subtle:#EEF1F8;--color-border-default:#0D32B2;--color-border-muted:#0D32B2;--color-neutral-muted:#EEF1F8;--color-accent-fg:#0D32B2;--color-accent-emphasis:#0D32B2;--color-attention-subtle:#676C7E;--color-danger-fg:red;}.sketch-overlay-B1{fill:url(#streaks-darker);mix-blend-mode:lighten}.sketch-overlay-B2{fill:url(#streaks-darker);mix-blend-mode:lighten}.sketch-overlay-B3{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-B4{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-B5{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-B6{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-AA2{fill:url(#streaks-dark);mix-blend-mode:overlay}.sketch-overlay-AA4{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-AA5{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-AB4{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-AB5{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-N1{fill:url(#streaks-darker);mix-blend-mode:lighten}.sketch-overlay-N2{fill:url(#streaks-dark);mix-blend-mode:overlay}.sketch-overlay-N3{fill:url(#streaks-normal);mix-blend-mode:color-burn}.sketch-overlay-N4{fill:url(#streaks-normal);mix-blend-mode:color-burn}.sketch-overlay-N5{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-N6{fill:url(#streaks-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_trees/dagre/board.exp.json b/e2etests/testdata/stable/multiple_trees/dagre/board.exp.json index 14d2228af7..9dda925a70 100644 --- a/e2etests/testdata/stable/multiple_trees/dagre/board.exp.json +++ b/e2etests/testdata/stable/multiple_trees/dagre/board.exp.json @@ -952,10 +952,8 @@ "id": "(a -> b)[0]", "src": "a", "srcArrow": "none", - "srcLabel": "", "dst": "b", "dstArrow": "triangle", - "dstLabel": "", "opacity": 1, "strokeDash": 0, "strokeWidth": 2, @@ -1001,10 +999,8 @@ "id": "(a -> c)[0]", "src": "a", "srcArrow": "none", - "srcLabel": "", "dst": "c", "dstArrow": "triangle", - "dstLabel": "", "opacity": 1, "strokeDash": 0, "strokeWidth": 2, @@ -1050,10 +1046,8 @@ "id": "(a -> d)[0]", "src": "a", "srcArrow": "none", - "srcLabel": "", "dst": "d", "dstArrow": "triangle", - "dstLabel": "", "opacity": 1, "strokeDash": 0, "strokeWidth": 2, @@ -1099,10 +1093,8 @@ "id": "(a -> e)[0]", "src": "a", "srcArrow": "none", - "srcLabel": "", "dst": "e", "dstArrow": "triangle", - "dstLabel": "", "opacity": 1, "strokeDash": 0, "strokeWidth": 2, @@ -1148,10 +1140,8 @@ "id": "(a -> f)[0]", "src": "a", "srcArrow": "none", - "srcLabel": "", "dst": "f", "dstArrow": "triangle", - "dstLabel": "", "opacity": 1, "strokeDash": 0, "strokeWidth": 2, @@ -1197,10 +1187,8 @@ "id": "(g -> a)[0]", "src": "g", "srcArrow": "none", - "srcLabel": "", "dst": "a", "dstArrow": "triangle", - "dstLabel": "", "opacity": 1, "strokeDash": 0, "strokeWidth": 2, @@ -1246,10 +1234,8 @@ "id": "(a -> h)[0]", "src": "a", "srcArrow": "none", - "srcLabel": "", "dst": "h", "dstArrow": "triangle", - "dstLabel": "", "opacity": 1, "strokeDash": 0, "strokeWidth": 2, @@ -1295,10 +1281,8 @@ "id": "(i -> b)[0]", "src": "i", "srcArrow": "none", - "srcLabel": "", "dst": "b", "dstArrow": "triangle", - "dstLabel": "", "opacity": 1, "strokeDash": 0, "strokeWidth": 2, @@ -1344,10 +1328,8 @@ "id": "(j -> b)[0]", "src": "j", "srcArrow": "none", - "srcLabel": "", "dst": "b", "dstArrow": "triangle", - "dstLabel": "", "opacity": 1, "strokeDash": 0, "strokeWidth": 2, @@ -1393,10 +1375,8 @@ "id": "(k -> g)[0]", "src": "k", "srcArrow": "none", - "srcLabel": "", "dst": "g", "dstArrow": "triangle", - "dstLabel": "", "opacity": 1, "strokeDash": 0, "strokeWidth": 2, @@ -1442,10 +1422,8 @@ "id": "(l -> g)[0]", "src": "l", "srcArrow": "none", - "srcLabel": "", "dst": "g", "dstArrow": "triangle", - "dstLabel": "", "opacity": 1, "strokeDash": 0, "strokeWidth": 2, @@ -1491,10 +1469,8 @@ "id": "(c -> m)[0]", "src": "c", "srcArrow": "none", - "srcLabel": "", "dst": "m", "dstArrow": "triangle", - "dstLabel": "", "opacity": 1, "strokeDash": 0, "strokeWidth": 2, @@ -1540,10 +1516,8 @@ "id": "(c -> n)[0]", "src": "c", "srcArrow": "none", - "srcLabel": "", "dst": "n", "dstArrow": "triangle", - "dstLabel": "", "opacity": 1, "strokeDash": 0, "strokeWidth": 2, @@ -1589,10 +1563,8 @@ "id": "(d -> o)[0]", "src": "d", "srcArrow": "none", - "srcLabel": "", "dst": "o", "dstArrow": "triangle", - "dstLabel": "", "opacity": 1, "strokeDash": 0, "strokeWidth": 2, @@ -1638,10 +1610,8 @@ "id": "(d -> p)[0]", "src": "d", "srcArrow": "none", - "srcLabel": "", "dst": "p", "dstArrow": "triangle", - "dstLabel": "", "opacity": 1, "strokeDash": 0, "strokeWidth": 2, @@ -1687,10 +1657,8 @@ "id": "(e -> q)[0]", "src": "e", "srcArrow": "none", - "srcLabel": "", "dst": "q", "dstArrow": "triangle", - "dstLabel": "", "opacity": 1, "strokeDash": 0, "strokeWidth": 2, @@ -1736,10 +1704,8 @@ "id": "(e -> r)[0]", "src": "e", "srcArrow": "none", - "srcLabel": "", "dst": "r", "dstArrow": "triangle", - "dstLabel": "", "opacity": 1, "strokeDash": 0, "strokeWidth": 2, @@ -1785,10 +1751,8 @@ "id": "(p -> s)[0]", "src": "p", "srcArrow": "none", - "srcLabel": "", "dst": "s", "dstArrow": "triangle", - "dstLabel": "", "opacity": 1, "strokeDash": 0, "strokeWidth": 2, @@ -1834,10 +1798,8 @@ "id": "(f -> t)[0]", "src": "f", "srcArrow": "none", - "srcLabel": "", "dst": "t", "dstArrow": "triangle", - "dstLabel": "", "opacity": 1, "strokeDash": 0, "strokeWidth": 2, @@ -1883,10 +1845,8 @@ "id": "(f -> u)[0]", "src": "f", "srcArrow": "none", - "srcLabel": "", "dst": "u", "dstArrow": "triangle", - "dstLabel": "", "opacity": 1, "strokeDash": 0, "strokeWidth": 2, @@ -1932,10 +1892,8 @@ "id": "(v -> h)[0]", "src": "v", "srcArrow": "none", - "srcLabel": "", "dst": "h", "dstArrow": "triangle", - "dstLabel": "", "opacity": 1, "strokeDash": 0, "strokeWidth": 2, @@ -1981,10 +1939,8 @@ "id": "(w -> h)[0]", "src": "w", "srcArrow": "none", - "srcLabel": "", "dst": "h", "dstArrow": "triangle", - "dstLabel": "", "opacity": 1, "strokeDash": 0, "strokeWidth": 2, diff --git a/e2etests/testdata/stable/multiple_trees/dagre/sketch.exp.svg b/e2etests/testdata/stable/multiple_trees/dagre/sketch.exp.svg index 2bf5befc67..6f7cdb5e69 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-1030766506 .fill-N1{fill:#0A0F25;} + .d2-1030766506 .fill-N2{fill:#676C7E;} + .d2-1030766506 .fill-N3{fill:#9499AB;} + .d2-1030766506 .fill-N4{fill:#CFD2DD;} + .d2-1030766506 .fill-N5{fill:#DEE1EB;} + .d2-1030766506 .fill-N6{fill:#EEF1F8;} + .d2-1030766506 .fill-N7{fill:#FFFFFF;} + .d2-1030766506 .fill-B1{fill:#0D32B2;} + .d2-1030766506 .fill-B2{fill:#0D32B2;} + .d2-1030766506 .fill-B3{fill:#E3E9FD;} + .d2-1030766506 .fill-B4{fill:#E3E9FD;} + .d2-1030766506 .fill-B5{fill:#EDF0FD;} + .d2-1030766506 .fill-B6{fill:#F7F8FE;} + .d2-1030766506 .fill-AA2{fill:#4A6FF3;} + .d2-1030766506 .fill-AA4{fill:#EDF0FD;} + .d2-1030766506 .fill-AA5{fill:#F7F8FE;} + .d2-1030766506 .fill-AB4{fill:#EDF0FD;} + .d2-1030766506 .fill-AB5{fill:#F7F8FE;} + .d2-1030766506 .stroke-N1{stroke:#0A0F25;} + .d2-1030766506 .stroke-N2{stroke:#676C7E;} + .d2-1030766506 .stroke-N3{stroke:#9499AB;} + .d2-1030766506 .stroke-N4{stroke:#CFD2DD;} + .d2-1030766506 .stroke-N5{stroke:#DEE1EB;} + .d2-1030766506 .stroke-N6{stroke:#EEF1F8;} + .d2-1030766506 .stroke-N7{stroke:#FFFFFF;} + .d2-1030766506 .stroke-B1{stroke:#0D32B2;} + .d2-1030766506 .stroke-B2{stroke:#0D32B2;} + .d2-1030766506 .stroke-B3{stroke:#E3E9FD;} + .d2-1030766506 .stroke-B4{stroke:#E3E9FD;} + .d2-1030766506 .stroke-B5{stroke:#EDF0FD;} + .d2-1030766506 .stroke-B6{stroke:#F7F8FE;} + .d2-1030766506 .stroke-AA2{stroke:#4A6FF3;} + .d2-1030766506 .stroke-AA4{stroke:#EDF0FD;} + .d2-1030766506 .stroke-AA5{stroke:#F7F8FE;} + .d2-1030766506 .stroke-AB4{stroke:#EDF0FD;} + .d2-1030766506 .stroke-AB5{stroke:#F7F8FE;} + .d2-1030766506 .background-color-N1{background-color:#0A0F25;} + .d2-1030766506 .background-color-N2{background-color:#676C7E;} + .d2-1030766506 .background-color-N3{background-color:#9499AB;} + .d2-1030766506 .background-color-N4{background-color:#CFD2DD;} + .d2-1030766506 .background-color-N5{background-color:#DEE1EB;} + .d2-1030766506 .background-color-N6{background-color:#EEF1F8;} + .d2-1030766506 .background-color-N7{background-color:#FFFFFF;} + .d2-1030766506 .background-color-B1{background-color:#0D32B2;} + .d2-1030766506 .background-color-B2{background-color:#0D32B2;} + .d2-1030766506 .background-color-B3{background-color:#E3E9FD;} + .d2-1030766506 .background-color-B4{background-color:#E3E9FD;} + .d2-1030766506 .background-color-B5{background-color:#EDF0FD;} + .d2-1030766506 .background-color-B6{background-color:#F7F8FE;} + .d2-1030766506 .background-color-AA2{background-color:#4A6FF3;} + .d2-1030766506 .background-color-AA4{background-color:#EDF0FD;} + .d2-1030766506 .background-color-AA5{background-color:#F7F8FE;} + .d2-1030766506 .background-color-AB4{background-color:#EDF0FD;} + .d2-1030766506 .background-color-AB5{background-color:#F7F8FE;} + .d2-1030766506 .color-N1{color:#0A0F25;} + .d2-1030766506 .color-N2{color:#676C7E;} + .d2-1030766506 .color-N3{color:#9499AB;} + .d2-1030766506 .color-N4{color:#CFD2DD;} + .d2-1030766506 .color-N5{color:#DEE1EB;} + .d2-1030766506 .color-N6{color:#EEF1F8;} + .d2-1030766506 .color-N7{color:#FFFFFF;} + .d2-1030766506 .color-B1{color:#0D32B2;} + .d2-1030766506 .color-B2{color:#0D32B2;} + .d2-1030766506 .color-B3{color:#E3E9FD;} + .d2-1030766506 .color-B4{color:#E3E9FD;} + .d2-1030766506 .color-B5{color:#EDF0FD;} + .d2-1030766506 .color-B6{color:#F7F8FE;} + .d2-1030766506 .color-AA2{color:#4A6FF3;} + .d2-1030766506 .color-AA4{color:#EDF0FD;} + .d2-1030766506 .color-AA5{color:#F7F8FE;} + .d2-1030766506 .color-AB4{color:#EDF0FD;} + .d2-1030766506 .color-AB5{color:#F7F8FE;}.appendix text.text{fill:#0A0F25}.md{--color-fg-default:#0A0F25;--color-fg-muted:#676C7E;--color-fg-subtle:#9499AB;--color-canvas-default:#FFFFFF;--color-canvas-subtle:#EEF1F8;--color-border-default:#0D32B2;--color-border-muted:#0D32B2;--color-neutral-muted:#EEF1F8;--color-accent-fg:#0D32B2;--color-accent-emphasis:#0D32B2;--color-attention-subtle:#676C7E;--color-danger-fg:red;}.sketch-overlay-B1{fill:url(#streaks-darker);mix-blend-mode:lighten}.sketch-overlay-B2{fill:url(#streaks-darker);mix-blend-mode:lighten}.sketch-overlay-B3{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-B4{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-B5{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-B6{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-AA2{fill:url(#streaks-dark);mix-blend-mode:overlay}.sketch-overlay-AA4{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-AA5{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-AB4{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-AB5{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-N1{fill:url(#streaks-darker);mix-blend-mode:lighten}.sketch-overlay-N2{fill:url(#streaks-dark);mix-blend-mode:overlay}.sketch-overlay-N3{fill:url(#streaks-normal);mix-blend-mode:color-burn}.sketch-overlay-N4{fill:url(#streaks-normal);mix-blend-mode:color-burn}.sketch-overlay-N5{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-N6{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-N7{fill:url(#streaks-bright);mix-blend-mode:darken}.light-code{display: block}.dark-code{display: none}]]>abcdefghijklmnopqrstuvw \ No newline at end of file diff --git a/e2etests/testdata/stable/multiple_trees/elk/board.exp.json b/e2etests/testdata/stable/multiple_trees/elk/board.exp.json index dd3d5dded3..982f12e008 100644 --- a/e2etests/testdata/stable/multiple_trees/elk/board.exp.json +++ b/e2etests/testdata/stable/multiple_trees/elk/board.exp.json @@ -952,10 +952,8 @@ "id": "(a -> b)[0]", "src": "a", "srcArrow": "none", - "srcLabel": "", "dst": "b", "dstArrow": "triangle", - "dstLabel": "", "opacity": 1, "strokeDash": 0, "strokeWidth": 2, @@ -1000,10 +998,8 @@ "id": "(a -> c)[0]", "src": "a", "srcArrow": "none", - "srcLabel": "", "dst": "c", "dstArrow": "triangle", - "dstLabel": "", "opacity": 1, "strokeDash": 0, "strokeWidth": 2, @@ -1048,10 +1044,8 @@ "id": "(a -> d)[0]", "src": "a", "srcArrow": "none", - "srcLabel": "", "dst": "d", "dstArrow": "triangle", - "dstLabel": "", "opacity": 1, "strokeDash": 0, "strokeWidth": 2, @@ -1096,10 +1090,8 @@ "id": "(a -> e)[0]", "src": "a", "srcArrow": "none", - "srcLabel": "", "dst": "e", "dstArrow": "triangle", - "dstLabel": "", "opacity": 1, "strokeDash": 0, "strokeWidth": 2, @@ -1144,10 +1136,8 @@ "id": "(a -> f)[0]", "src": "a", "srcArrow": "none", - "srcLabel": "", "dst": "f", "dstArrow": "triangle", - "dstLabel": "", "opacity": 1, "strokeDash": 0, "strokeWidth": 2, @@ -1192,10 +1182,8 @@ "id": "(g -> a)[0]", "src": "g", "srcArrow": "none", - "srcLabel": "", "dst": "a", "dstArrow": "triangle", - "dstLabel": "", "opacity": 1, "strokeDash": 0, "strokeWidth": 2, @@ -1232,10 +1220,8 @@ "id": "(a -> h)[0]", "src": "a", "srcArrow": "none", - "srcLabel": "", "dst": "h", "dstArrow": "triangle", - "dstLabel": "", "opacity": 1, "strokeDash": 0, "strokeWidth": 2, @@ -1280,10 +1266,8 @@ "id": "(i -> b)[0]", "src": "i", "srcArrow": "none", - "srcLabel": "", "dst": "b", "dstArrow": "triangle", - "dstLabel": "", "opacity": 1, "strokeDash": 0, "strokeWidth": 2, @@ -1328,10 +1312,8 @@ "id": "(j -> b)[0]", "src": "j", "srcArrow": "none", - "srcLabel": "", "dst": "b", "dstArrow": "triangle", - "dstLabel": "", "opacity": 1, "strokeDash": 0, "strokeWidth": 2, @@ -1376,10 +1358,8 @@ "id": "(k -> g)[0]", "src": "k", "srcArrow": "none", - "srcLabel": "", "dst": "g", "dstArrow": "triangle", - "dstLabel": "", "opacity": 1, "strokeDash": 0, "strokeWidth": 2, @@ -1424,10 +1404,8 @@ "id": "(l -> g)[0]", "src": "l", "srcArrow": "none", - "srcLabel": "", "dst": "g", "dstArrow": "triangle", - "dstLabel": "", "opacity": 1, "strokeDash": 0, "strokeWidth": 2, @@ -1472,10 +1450,8 @@ "id": "(c -> m)[0]", "src": "c", "srcArrow": "none", - "srcLabel": "", "dst": "m", "dstArrow": "triangle", - "dstLabel": "", "opacity": 1, "strokeDash": 0, "strokeWidth": 2, @@ -1520,10 +1496,8 @@ "id": "(c -> n)[0]", "src": "c", "srcArrow": "none", - "srcLabel": "", "dst": "n", "dstArrow": "triangle", - "dstLabel": "", "opacity": 1, "strokeDash": 0, "strokeWidth": 2, @@ -1568,10 +1542,8 @@ "id": "(d -> o)[0]", "src": "d", "srcArrow": "none", - "srcLabel": "", "dst": "o", "dstArrow": "triangle", - "dstLabel": "", "opacity": 1, "strokeDash": 0, "strokeWidth": 2, @@ -1616,10 +1588,8 @@ "id": "(d -> p)[0]", "src": "d", "srcArrow": "none", - "srcLabel": "", "dst": "p", "dstArrow": "triangle", - "dstLabel": "", "opacity": 1, "strokeDash": 0, "strokeWidth": 2, @@ -1664,10 +1634,8 @@ "id": "(e -> q)[0]", "src": "e", "srcArrow": "none", - "srcLabel": "", "dst": "q", "dstArrow": "triangle", - "dstLabel": "", "opacity": 1, "strokeDash": 0, "strokeWidth": 2, @@ -1712,10 +1680,8 @@ "id": "(e -> r)[0]", "src": "e", "srcArrow": "none", - "srcLabel": "", "dst": "r", "dstArrow": "triangle", - "dstLabel": "", "opacity": 1, "strokeDash": 0, "strokeWidth": 2, @@ -1760,10 +1726,8 @@ "id": "(p -> s)[0]", "src": "p", "srcArrow": "none", - "srcLabel": "", "dst": "s", "dstArrow": "triangle", - "dstLabel": "", "opacity": 1, "strokeDash": 0, "strokeWidth": 2, @@ -1800,10 +1764,8 @@ "id": "(f -> t)[0]", "src": "f", "srcArrow": "none", - "srcLabel": "", "dst": "t", "dstArrow": "triangle", - "dstLabel": "", "opacity": 1, "strokeDash": 0, "strokeWidth": 2, @@ -1848,10 +1810,8 @@ "id": "(f -> u)[0]", "src": "f", "srcArrow": "none", - "srcLabel": "", "dst": "u", "dstArrow": "triangle", - "dstLabel": "", "opacity": 1, "strokeDash": 0, "strokeWidth": 2, @@ -1896,10 +1856,8 @@ "id": "(v -> h)[0]", "src": "v", "srcArrow": "none", - "srcLabel": "", "dst": "h", "dstArrow": "triangle", - "dstLabel": "", "opacity": 1, "strokeDash": 0, "strokeWidth": 2, @@ -1944,10 +1902,8 @@ "id": "(w -> h)[0]", "src": "w", "srcArrow": "none", - "srcLabel": "", "dst": "h", "dstArrow": "triangle", - "dstLabel": "", "opacity": 1, "strokeDash": 0, "strokeWidth": 2, diff --git a/e2etests/testdata/stable/multiple_trees/elk/sketch.exp.svg b/e2etests/testdata/stable/multiple_trees/elk/sketch.exp.svg index 734fc395ef..e41b401744 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-589244444 .fill-N1{fill:#0A0F25;} + .d2-589244444 .fill-N2{fill:#676C7E;} + .d2-589244444 .fill-N3{fill:#9499AB;} + .d2-589244444 .fill-N4{fill:#CFD2DD;} + .d2-589244444 .fill-N5{fill:#DEE1EB;} + .d2-589244444 .fill-N6{fill:#EEF1F8;} + .d2-589244444 .fill-N7{fill:#FFFFFF;} + .d2-589244444 .fill-B1{fill:#0D32B2;} + .d2-589244444 .fill-B2{fill:#0D32B2;} + .d2-589244444 .fill-B3{fill:#E3E9FD;} + .d2-589244444 .fill-B4{fill:#E3E9FD;} + .d2-589244444 .fill-B5{fill:#EDF0FD;} + .d2-589244444 .fill-B6{fill:#F7F8FE;} + .d2-589244444 .fill-AA2{fill:#4A6FF3;} + .d2-589244444 .fill-AA4{fill:#EDF0FD;} + .d2-589244444 .fill-AA5{fill:#F7F8FE;} + .d2-589244444 .fill-AB4{fill:#EDF0FD;} + .d2-589244444 .fill-AB5{fill:#F7F8FE;} + .d2-589244444 .stroke-N1{stroke:#0A0F25;} + .d2-589244444 .stroke-N2{stroke:#676C7E;} + .d2-589244444 .stroke-N3{stroke:#9499AB;} + .d2-589244444 .stroke-N4{stroke:#CFD2DD;} + .d2-589244444 .stroke-N5{stroke:#DEE1EB;} + .d2-589244444 .stroke-N6{stroke:#EEF1F8;} + .d2-589244444 .stroke-N7{stroke:#FFFFFF;} + .d2-589244444 .stroke-B1{stroke:#0D32B2;} + .d2-589244444 .stroke-B2{stroke:#0D32B2;} + .d2-589244444 .stroke-B3{stroke:#E3E9FD;} + .d2-589244444 .stroke-B4{stroke:#E3E9FD;} + .d2-589244444 .stroke-B5{stroke:#EDF0FD;} + .d2-589244444 .stroke-B6{stroke:#F7F8FE;} + .d2-589244444 .stroke-AA2{stroke:#4A6FF3;} + .d2-589244444 .stroke-AA4{stroke:#EDF0FD;} + .d2-589244444 .stroke-AA5{stroke:#F7F8FE;} + .d2-589244444 .stroke-AB4{stroke:#EDF0FD;} + .d2-589244444 .stroke-AB5{stroke:#F7F8FE;} + .d2-589244444 .background-color-N1{background-color:#0A0F25;} + .d2-589244444 .background-color-N2{background-color:#676C7E;} + .d2-589244444 .background-color-N3{background-color:#9499AB;} + .d2-589244444 .background-color-N4{background-color:#CFD2DD;} + .d2-589244444 .background-color-N5{background-color:#DEE1EB;} + .d2-589244444 .background-color-N6{background-color:#EEF1F8;} + .d2-589244444 .background-color-N7{background-color:#FFFFFF;} + .d2-589244444 .background-color-B1{background-color:#0D32B2;} + .d2-589244444 .background-color-B2{background-color:#0D32B2;} + .d2-589244444 .background-color-B3{background-color:#E3E9FD;} + .d2-589244444 .background-color-B4{background-color:#E3E9FD;} + .d2-589244444 .background-color-B5{background-color:#EDF0FD;} + .d2-589244444 .background-color-B6{background-color:#F7F8FE;} + .d2-589244444 .background-color-AA2{background-color:#4A6FF3;} + .d2-589244444 .background-color-AA4{background-color:#EDF0FD;} + .d2-589244444 .background-color-AA5{background-color:#F7F8FE;} + .d2-589244444 .background-color-AB4{background-color:#EDF0FD;} + .d2-589244444 .background-color-AB5{background-color:#F7F8FE;} + .d2-589244444 .color-N1{color:#0A0F25;} + .d2-589244444 .color-N2{color:#676C7E;} + .d2-589244444 .color-N3{color:#9499AB;} + .d2-589244444 .color-N4{color:#CFD2DD;} + .d2-589244444 .color-N5{color:#DEE1EB;} + .d2-589244444 .color-N6{color:#EEF1F8;} + .d2-589244444 .color-N7{color:#FFFFFF;} + .d2-589244444 .color-B1{color:#0D32B2;} + .d2-589244444 .color-B2{color:#0D32B2;} + .d2-589244444 .color-B3{color:#E3E9FD;} + .d2-589244444 .color-B4{color:#E3E9FD;} + .d2-589244444 .color-B5{color:#EDF0FD;} + .d2-589244444 .color-B6{color:#F7F8FE;} + .d2-589244444 .color-AA2{color:#4A6FF3;} + .d2-589244444 .color-AA4{color:#EDF0FD;} + .d2-589244444 .color-AA5{color:#F7F8FE;} + .d2-589244444 .color-AB4{color:#EDF0FD;} + .d2-589244444 .color-AB5{color:#F7F8FE;}.appendix text.text{fill:#0A0F25}.md{--color-fg-default:#0A0F25;--color-fg-muted:#676C7E;--color-fg-subtle:#9499AB;--color-canvas-default:#FFFFFF;--color-canvas-subtle:#EEF1F8;--color-border-default:#0D32B2;--color-border-muted:#0D32B2;--color-neutral-muted:#EEF1F8;--color-accent-fg:#0D32B2;--color-accent-emphasis:#0D32B2;--color-attention-subtle:#676C7E;--color-danger-fg:red;}.sketch-overlay-B1{fill:url(#streaks-darker);mix-blend-mode:lighten}.sketch-overlay-B2{fill:url(#streaks-darker);mix-blend-mode:lighten}.sketch-overlay-B3{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-B4{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-B5{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-B6{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-AA2{fill:url(#streaks-dark);mix-blend-mode:overlay}.sketch-overlay-AA4{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-AA5{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-AB4{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-AB5{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-N1{fill:url(#streaks-darker);mix-blend-mode:lighten}.sketch-overlay-N2{fill:url(#streaks-dark);mix-blend-mode:overlay}.sketch-overlay-N3{fill:url(#streaks-normal);mix-blend-mode:color-burn}.sketch-overlay-N4{fill:url(#streaks-normal);mix-blend-mode:color-burn}.sketch-overlay-N5{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-N6{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-N7{fill:url(#streaks-bright);mix-blend-mode:darken}.light-code{display: block}.dark-code{display: none}]]>abcdefghijklmnopqrstuvw \ No newline at end of file diff --git a/e2etests/testdata/stable/n22_e32/dagre/board.exp.json b/e2etests/testdata/stable/n22_e32/dagre/board.exp.json index 809f629f70..29e390fc2e 100644 --- a/e2etests/testdata/stable/n22_e32/dagre/board.exp.json +++ b/e2etests/testdata/stable/n22_e32/dagre/board.exp.json @@ -870,10 +870,8 @@ "id": "(a -> b)[0]", "src": "a", "srcArrow": "none", - "srcLabel": "", "dst": "b", "dstArrow": "triangle", - "dstLabel": "", "opacity": 1, "strokeDash": 0, "strokeWidth": 2, @@ -931,10 +929,8 @@ "id": "(c -> a)[0]", "src": "c", "srcArrow": "none", - "srcLabel": "", "dst": "a", "dstArrow": "triangle", - "dstLabel": "", "opacity": 1, "strokeDash": 0, "strokeWidth": 2, @@ -1016,10 +1012,8 @@ "id": "(d -> a)[0]", "src": "d", "srcArrow": "none", - "srcLabel": "", "dst": "a", "dstArrow": "triangle", - "dstLabel": "", "opacity": 1, "strokeDash": 0, "strokeWidth": 2, @@ -1065,10 +1059,8 @@ "id": "(d -> b)[0]", "src": "d", "srcArrow": "none", - "srcLabel": "", "dst": "b", "dstArrow": "triangle", - "dstLabel": "", "opacity": 1, "strokeDash": 0, "strokeWidth": 2, @@ -1150,10 +1142,8 @@ "id": "(d -> e)[0]", "src": "d", "srcArrow": "none", - "srcLabel": "", "dst": "e", "dstArrow": "triangle", - "dstLabel": "", "opacity": 1, "strokeDash": 0, "strokeWidth": 2, @@ -1199,10 +1189,8 @@ "id": "(e -> f)[0]", "src": "e", "srcArrow": "none", - "srcLabel": "", "dst": "f", "dstArrow": "triangle", - "dstLabel": "", "opacity": 1, "strokeDash": 0, "strokeWidth": 2, @@ -1248,10 +1236,8 @@ "id": "(f -> b)[0]", "src": "f", "srcArrow": "none", - "srcLabel": "", "dst": "b", "dstArrow": "triangle", - "dstLabel": "", "opacity": 1, "strokeDash": 0, "strokeWidth": 2, @@ -1297,10 +1283,8 @@ "id": "(c -> f)[0]", "src": "c", "srcArrow": "none", - "srcLabel": "", "dst": "f", "dstArrow": "triangle", - "dstLabel": "", "opacity": 1, "strokeDash": 0, "strokeWidth": 2, @@ -1406,10 +1390,8 @@ "id": "(g -> c)[0]", "src": "g", "srcArrow": "none", - "srcLabel": "", "dst": "c", "dstArrow": "triangle", - "dstLabel": "", "opacity": 1, "strokeDash": 0, "strokeWidth": 2, @@ -1467,10 +1449,8 @@ "id": "(g -> h)[0]", "src": "g", "srcArrow": "none", - "srcLabel": "", "dst": "h", "dstArrow": "triangle", - "dstLabel": "", "opacity": 1, "strokeDash": 0, "strokeWidth": 2, @@ -1516,10 +1496,8 @@ "id": "(h -> i)[0]", "src": "h", "srcArrow": "none", - "srcLabel": "", "dst": "i", "dstArrow": "triangle", - "dstLabel": "", "opacity": 1, "strokeDash": 0, "strokeWidth": 2, @@ -1565,10 +1543,8 @@ "id": "(i -> j)[0]", "src": "i", "srcArrow": "none", - "srcLabel": "", "dst": "j", "dstArrow": "triangle", - "dstLabel": "", "opacity": 1, "strokeDash": 0, "strokeWidth": 2, @@ -1614,10 +1590,8 @@ "id": "(j -> k)[0]", "src": "j", "srcArrow": "none", - "srcLabel": "", "dst": "k", "dstArrow": "triangle", - "dstLabel": "", "opacity": 1, "strokeDash": 0, "strokeWidth": 2, @@ -1663,10 +1637,8 @@ "id": "(k -> e)[0]", "src": "k", "srcArrow": "none", - "srcLabel": "", "dst": "e", "dstArrow": "triangle", - "dstLabel": "", "opacity": 1, "strokeDash": 0, "strokeWidth": 2, @@ -1712,10 +1684,8 @@ "id": "(j -> f)[0]", "src": "j", "srcArrow": "none", - "srcLabel": "", "dst": "f", "dstArrow": "triangle", - "dstLabel": "", "opacity": 1, "strokeDash": 0, "strokeWidth": 2, @@ -1797,10 +1767,8 @@ "id": "(l -> m)[0]", "src": "l", "srcArrow": "none", - "srcLabel": "", "dst": "m", "dstArrow": "triangle", - "dstLabel": "", "opacity": 1, "strokeDash": 0, "strokeWidth": 2, @@ -1858,10 +1826,8 @@ "id": "(n -> l)[0]", "src": "n", "srcArrow": "none", - "srcLabel": "", "dst": "l", "dstArrow": "triangle", - "dstLabel": "", "opacity": 1, "strokeDash": 0, "strokeWidth": 2, @@ -1907,10 +1873,8 @@ "id": "(n -> l)[1]", "src": "n", "srcArrow": "none", - "srcLabel": "", "dst": "l", "dstArrow": "triangle", - "dstLabel": "", "opacity": 1, "strokeDash": 0, "strokeWidth": 2, @@ -1956,10 +1920,8 @@ "id": "(n -> m)[0]", "src": "n", "srcArrow": "none", - "srcLabel": "", "dst": "m", "dstArrow": "triangle", - "dstLabel": "", "opacity": 1, "strokeDash": 0, "strokeWidth": 2, @@ -2041,10 +2003,8 @@ "id": "(n -> o)[0]", "src": "n", "srcArrow": "none", - "srcLabel": "", "dst": "o", "dstArrow": "triangle", - "dstLabel": "", "opacity": 1, "strokeDash": 0, "strokeWidth": 2, @@ -2090,10 +2050,8 @@ "id": "(o -> p)[0]", "src": "o", "srcArrow": "none", - "srcLabel": "", "dst": "p", "dstArrow": "triangle", - "dstLabel": "", "opacity": 1, "strokeDash": 0, "strokeWidth": 2, @@ -2139,10 +2097,8 @@ "id": "(p -> m)[0]", "src": "p", "srcArrow": "none", - "srcLabel": "", "dst": "m", "dstArrow": "triangle", - "dstLabel": "", "opacity": 1, "strokeDash": 0, "strokeWidth": 2, @@ -2188,10 +2144,8 @@ "id": "(n -> p)[0]", "src": "n", "srcArrow": "none", - "srcLabel": "", "dst": "p", "dstArrow": "triangle", - "dstLabel": "", "opacity": 1, "strokeDash": 0, "strokeWidth": 2, @@ -2249,10 +2203,8 @@ "id": "(q -> n)[0]", "src": "q", "srcArrow": "none", - "srcLabel": "", "dst": "n", "dstArrow": "triangle", - "dstLabel": "", "opacity": 1, "strokeDash": 0, "strokeWidth": 2, @@ -2358,10 +2310,8 @@ "id": "(q -> r)[0]", "src": "q", "srcArrow": "none", - "srcLabel": "", "dst": "r", "dstArrow": "triangle", - "dstLabel": "", "opacity": 1, "strokeDash": 0, "strokeWidth": 2, @@ -2407,10 +2357,8 @@ "id": "(r -> s)[0]", "src": "r", "srcArrow": "none", - "srcLabel": "", "dst": "s", "dstArrow": "triangle", - "dstLabel": "", "opacity": 1, "strokeDash": 0, "strokeWidth": 2, @@ -2456,10 +2404,8 @@ "id": "(s -> t)[0]", "src": "s", "srcArrow": "none", - "srcLabel": "", "dst": "t", "dstArrow": "triangle", - "dstLabel": "", "opacity": 1, "strokeDash": 0, "strokeWidth": 2, @@ -2505,10 +2451,8 @@ "id": "(t -> u)[0]", "src": "t", "srcArrow": "none", - "srcLabel": "", "dst": "u", "dstArrow": "triangle", - "dstLabel": "", "opacity": 1, "strokeDash": 0, "strokeWidth": 2, @@ -2554,10 +2498,8 @@ "id": "(u -> o)[0]", "src": "u", "srcArrow": "none", - "srcLabel": "", "dst": "o", "dstArrow": "triangle", - "dstLabel": "", "opacity": 1, "strokeDash": 0, "strokeWidth": 2, @@ -2603,10 +2545,8 @@ "id": "(t -> p)[0]", "src": "t", "srcArrow": "none", - "srcLabel": "", "dst": "p", "dstArrow": "triangle", - "dstLabel": "", "opacity": 1, "strokeDash": 0, "strokeWidth": 2, @@ -2688,10 +2628,8 @@ "id": "(c -> t)[0]", "src": "c", "srcArrow": "none", - "srcLabel": "", "dst": "t", "dstArrow": "triangle", - "dstLabel": "", "opacity": 1, "strokeDash": 0, "strokeWidth": 2, @@ -2737,10 +2675,8 @@ "id": "(s -> a)[0]", "src": "s", "srcArrow": "none", - "srcLabel": "", "dst": "a", "dstArrow": "triangle", - "dstLabel": "", "opacity": 1, "strokeDash": 0, "strokeWidth": 2, @@ -2822,10 +2758,8 @@ "id": "(u -> a)[0]", "src": "u", "srcArrow": "none", - "srcLabel": "", "dst": "a", "dstArrow": "triangle", - "dstLabel": "", "opacity": 1, "strokeDash": 0, "strokeWidth": 2, diff --git a/e2etests/testdata/stable/n22_e32/dagre/sketch.exp.svg b/e2etests/testdata/stable/n22_e32/dagre/sketch.exp.svg index 8cff0cdd69..a936b3412e 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-383295986 .fill-N1{fill:#0A0F25;} + .d2-383295986 .fill-N2{fill:#676C7E;} + .d2-383295986 .fill-N3{fill:#9499AB;} + .d2-383295986 .fill-N4{fill:#CFD2DD;} + .d2-383295986 .fill-N5{fill:#DEE1EB;} + .d2-383295986 .fill-N6{fill:#EEF1F8;} + .d2-383295986 .fill-N7{fill:#FFFFFF;} + .d2-383295986 .fill-B1{fill:#0D32B2;} + .d2-383295986 .fill-B2{fill:#0D32B2;} + .d2-383295986 .fill-B3{fill:#E3E9FD;} + .d2-383295986 .fill-B4{fill:#E3E9FD;} + .d2-383295986 .fill-B5{fill:#EDF0FD;} + .d2-383295986 .fill-B6{fill:#F7F8FE;} + .d2-383295986 .fill-AA2{fill:#4A6FF3;} + .d2-383295986 .fill-AA4{fill:#EDF0FD;} + .d2-383295986 .fill-AA5{fill:#F7F8FE;} + .d2-383295986 .fill-AB4{fill:#EDF0FD;} + .d2-383295986 .fill-AB5{fill:#F7F8FE;} + .d2-383295986 .stroke-N1{stroke:#0A0F25;} + .d2-383295986 .stroke-N2{stroke:#676C7E;} + .d2-383295986 .stroke-N3{stroke:#9499AB;} + .d2-383295986 .stroke-N4{stroke:#CFD2DD;} + .d2-383295986 .stroke-N5{stroke:#DEE1EB;} + .d2-383295986 .stroke-N6{stroke:#EEF1F8;} + .d2-383295986 .stroke-N7{stroke:#FFFFFF;} + .d2-383295986 .stroke-B1{stroke:#0D32B2;} + .d2-383295986 .stroke-B2{stroke:#0D32B2;} + .d2-383295986 .stroke-B3{stroke:#E3E9FD;} + .d2-383295986 .stroke-B4{stroke:#E3E9FD;} + .d2-383295986 .stroke-B5{stroke:#EDF0FD;} + .d2-383295986 .stroke-B6{stroke:#F7F8FE;} + .d2-383295986 .stroke-AA2{stroke:#4A6FF3;} + .d2-383295986 .stroke-AA4{stroke:#EDF0FD;} + .d2-383295986 .stroke-AA5{stroke:#F7F8FE;} + .d2-383295986 .stroke-AB4{stroke:#EDF0FD;} + .d2-383295986 .stroke-AB5{stroke:#F7F8FE;} + .d2-383295986 .background-color-N1{background-color:#0A0F25;} + .d2-383295986 .background-color-N2{background-color:#676C7E;} + .d2-383295986 .background-color-N3{background-color:#9499AB;} + .d2-383295986 .background-color-N4{background-color:#CFD2DD;} + .d2-383295986 .background-color-N5{background-color:#DEE1EB;} + .d2-383295986 .background-color-N6{background-color:#EEF1F8;} + .d2-383295986 .background-color-N7{background-color:#FFFFFF;} + .d2-383295986 .background-color-B1{background-color:#0D32B2;} + .d2-383295986 .background-color-B2{background-color:#0D32B2;} + .d2-383295986 .background-color-B3{background-color:#E3E9FD;} + .d2-383295986 .background-color-B4{background-color:#E3E9FD;} + .d2-383295986 .background-color-B5{background-color:#EDF0FD;} + .d2-383295986 .background-color-B6{background-color:#F7F8FE;} + .d2-383295986 .background-color-AA2{background-color:#4A6FF3;} + .d2-383295986 .background-color-AA4{background-color:#EDF0FD;} + .d2-383295986 .background-color-AA5{background-color:#F7F8FE;} + .d2-383295986 .background-color-AB4{background-color:#EDF0FD;} + .d2-383295986 .background-color-AB5{background-color:#F7F8FE;} + .d2-383295986 .color-N1{color:#0A0F25;} + .d2-383295986 .color-N2{color:#676C7E;} + .d2-383295986 .color-N3{color:#9499AB;} + .d2-383295986 .color-N4{color:#CFD2DD;} + .d2-383295986 .color-N5{color:#DEE1EB;} + .d2-383295986 .color-N6{color:#EEF1F8;} + .d2-383295986 .color-N7{color:#FFFFFF;} + .d2-383295986 .color-B1{color:#0D32B2;} + .d2-383295986 .color-B2{color:#0D32B2;} + .d2-383295986 .color-B3{color:#E3E9FD;} + .d2-383295986 .color-B4{color:#E3E9FD;} + .d2-383295986 .color-B5{color:#EDF0FD;} + .d2-383295986 .color-B6{color:#F7F8FE;} + .d2-383295986 .color-AA2{color:#4A6FF3;} + .d2-383295986 .color-AA4{color:#EDF0FD;} + .d2-383295986 .color-AA5{color:#F7F8FE;} + .d2-383295986 .color-AB4{color:#EDF0FD;} + .d2-383295986 .color-AB5{color:#F7F8FE;}.appendix text.text{fill:#0A0F25}.md{--color-fg-default:#0A0F25;--color-fg-muted:#676C7E;--color-fg-subtle:#9499AB;--color-canvas-default:#FFFFFF;--color-canvas-subtle:#EEF1F8;--color-border-default:#0D32B2;--color-border-muted:#0D32B2;--color-neutral-muted:#EEF1F8;--color-accent-fg:#0D32B2;--color-accent-emphasis:#0D32B2;--color-attention-subtle:#676C7E;--color-danger-fg:red;}.sketch-overlay-B1{fill:url(#streaks-darker);mix-blend-mode:lighten}.sketch-overlay-B2{fill:url(#streaks-darker);mix-blend-mode:lighten}.sketch-overlay-B3{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-B4{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-B5{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-B6{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-AA2{fill:url(#streaks-dark);mix-blend-mode:overlay}.sketch-overlay-AA4{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-AA5{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-AB4{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-AB5{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-N1{fill:url(#streaks-darker);mix-blend-mode:lighten}.sketch-overlay-N2{fill:url(#streaks-dark);mix-blend-mode:overlay}.sketch-overlay-N3{fill:url(#streaks-normal);mix-blend-mode:color-burn}.sketch-overlay-N4{fill:url(#streaks-normal);mix-blend-mode:color-burn}.sketch-overlay-N5{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-N6{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-N7{fill:url(#streaks-bright);mix-blend-mode:darken}.light-code{display: block}.dark-code{display: none}]]>abcdefghijklmnopqrstu \ No newline at end of file diff --git a/e2etests/testdata/stable/n22_e32/elk/board.exp.json b/e2etests/testdata/stable/n22_e32/elk/board.exp.json index 966ee53501..f6be8a4d68 100644 --- a/e2etests/testdata/stable/n22_e32/elk/board.exp.json +++ b/e2etests/testdata/stable/n22_e32/elk/board.exp.json @@ -870,10 +870,8 @@ "id": "(a -> b)[0]", "src": "a", "srcArrow": "none", - "srcLabel": "", "dst": "b", "dstArrow": "triangle", - "dstLabel": "", "opacity": 1, "strokeDash": 0, "strokeWidth": 2, @@ -918,10 +916,8 @@ "id": "(c -> a)[0]", "src": "c", "srcArrow": "none", - "srcLabel": "", "dst": "a", "dstArrow": "triangle", - "dstLabel": "", "opacity": 1, "strokeDash": 0, "strokeWidth": 2, @@ -966,10 +962,8 @@ "id": "(d -> a)[0]", "src": "d", "srcArrow": "none", - "srcLabel": "", "dst": "a", "dstArrow": "triangle", - "dstLabel": "", "opacity": 1, "strokeDash": 0, "strokeWidth": 2, @@ -1014,10 +1008,8 @@ "id": "(d -> b)[0]", "src": "d", "srcArrow": "none", - "srcLabel": "", "dst": "b", "dstArrow": "triangle", - "dstLabel": "", "opacity": 1, "strokeDash": 0, "strokeWidth": 2, @@ -1054,10 +1046,8 @@ "id": "(d -> e)[0]", "src": "d", "srcArrow": "none", - "srcLabel": "", "dst": "e", "dstArrow": "triangle", - "dstLabel": "", "opacity": 1, "strokeDash": 0, "strokeWidth": 2, @@ -1102,10 +1092,8 @@ "id": "(e -> f)[0]", "src": "e", "srcArrow": "none", - "srcLabel": "", "dst": "f", "dstArrow": "triangle", - "dstLabel": "", "opacity": 1, "strokeDash": 0, "strokeWidth": 2, @@ -1150,10 +1138,8 @@ "id": "(f -> b)[0]", "src": "f", "srcArrow": "none", - "srcLabel": "", "dst": "b", "dstArrow": "triangle", - "dstLabel": "", "opacity": 1, "strokeDash": 0, "strokeWidth": 2, @@ -1198,10 +1184,8 @@ "id": "(c -> f)[0]", "src": "c", "srcArrow": "none", - "srcLabel": "", "dst": "f", "dstArrow": "triangle", - "dstLabel": "", "opacity": 1, "strokeDash": 0, "strokeWidth": 2, @@ -1246,10 +1230,8 @@ "id": "(g -> c)[0]", "src": "g", "srcArrow": "none", - "srcLabel": "", "dst": "c", "dstArrow": "triangle", - "dstLabel": "", "opacity": 1, "strokeDash": 0, "strokeWidth": 2, @@ -1294,10 +1276,8 @@ "id": "(g -> h)[0]", "src": "g", "srcArrow": "none", - "srcLabel": "", "dst": "h", "dstArrow": "triangle", - "dstLabel": "", "opacity": 1, "strokeDash": 0, "strokeWidth": 2, @@ -1342,10 +1322,8 @@ "id": "(h -> i)[0]", "src": "h", "srcArrow": "none", - "srcLabel": "", "dst": "i", "dstArrow": "triangle", - "dstLabel": "", "opacity": 1, "strokeDash": 0, "strokeWidth": 2, @@ -1382,10 +1360,8 @@ "id": "(i -> j)[0]", "src": "i", "srcArrow": "none", - "srcLabel": "", "dst": "j", "dstArrow": "triangle", - "dstLabel": "", "opacity": 1, "strokeDash": 0, "strokeWidth": 2, @@ -1422,10 +1398,8 @@ "id": "(j -> k)[0]", "src": "j", "srcArrow": "none", - "srcLabel": "", "dst": "k", "dstArrow": "triangle", - "dstLabel": "", "opacity": 1, "strokeDash": 0, "strokeWidth": 2, @@ -1470,10 +1444,8 @@ "id": "(k -> e)[0]", "src": "k", "srcArrow": "none", - "srcLabel": "", "dst": "e", "dstArrow": "triangle", - "dstLabel": "", "opacity": 1, "strokeDash": 0, "strokeWidth": 2, @@ -1510,10 +1482,8 @@ "id": "(j -> f)[0]", "src": "j", "srcArrow": "none", - "srcLabel": "", "dst": "f", "dstArrow": "triangle", - "dstLabel": "", "opacity": 1, "strokeDash": 0, "strokeWidth": 2, @@ -1558,10 +1528,8 @@ "id": "(l -> m)[0]", "src": "l", "srcArrow": "none", - "srcLabel": "", "dst": "m", "dstArrow": "triangle", - "dstLabel": "", "opacity": 1, "strokeDash": 0, "strokeWidth": 2, @@ -1606,10 +1574,8 @@ "id": "(n -> l)[0]", "src": "n", "srcArrow": "none", - "srcLabel": "", "dst": "l", "dstArrow": "triangle", - "dstLabel": "", "opacity": 1, "strokeDash": 0, "strokeWidth": 2, @@ -1646,10 +1612,8 @@ "id": "(n -> l)[1]", "src": "n", "srcArrow": "none", - "srcLabel": "", "dst": "l", "dstArrow": "triangle", - "dstLabel": "", "opacity": 1, "strokeDash": 0, "strokeWidth": 2, @@ -1686,10 +1650,8 @@ "id": "(n -> m)[0]", "src": "n", "srcArrow": "none", - "srcLabel": "", "dst": "m", "dstArrow": "triangle", - "dstLabel": "", "opacity": 1, "strokeDash": 0, "strokeWidth": 2, @@ -1734,10 +1696,8 @@ "id": "(n -> o)[0]", "src": "n", "srcArrow": "none", - "srcLabel": "", "dst": "o", "dstArrow": "triangle", - "dstLabel": "", "opacity": 1, "strokeDash": 0, "strokeWidth": 2, @@ -1782,10 +1742,8 @@ "id": "(o -> p)[0]", "src": "o", "srcArrow": "none", - "srcLabel": "", "dst": "p", "dstArrow": "triangle", - "dstLabel": "", "opacity": 1, "strokeDash": 0, "strokeWidth": 2, @@ -1822,10 +1780,8 @@ "id": "(p -> m)[0]", "src": "p", "srcArrow": "none", - "srcLabel": "", "dst": "m", "dstArrow": "triangle", - "dstLabel": "", "opacity": 1, "strokeDash": 0, "strokeWidth": 2, @@ -1870,10 +1826,8 @@ "id": "(n -> p)[0]", "src": "n", "srcArrow": "none", - "srcLabel": "", "dst": "p", "dstArrow": "triangle", - "dstLabel": "", "opacity": 1, "strokeDash": 0, "strokeWidth": 2, @@ -1918,10 +1872,8 @@ "id": "(q -> n)[0]", "src": "q", "srcArrow": "none", - "srcLabel": "", "dst": "n", "dstArrow": "triangle", - "dstLabel": "", "opacity": 1, "strokeDash": 0, "strokeWidth": 2, @@ -1966,10 +1918,8 @@ "id": "(q -> r)[0]", "src": "q", "srcArrow": "none", - "srcLabel": "", "dst": "r", "dstArrow": "triangle", - "dstLabel": "", "opacity": 1, "strokeDash": 0, "strokeWidth": 2, @@ -2014,10 +1964,8 @@ "id": "(r -> s)[0]", "src": "r", "srcArrow": "none", - "srcLabel": "", "dst": "s", "dstArrow": "triangle", - "dstLabel": "", "opacity": 1, "strokeDash": 0, "strokeWidth": 2, @@ -2054,10 +2002,8 @@ "id": "(s -> t)[0]", "src": "s", "srcArrow": "none", - "srcLabel": "", "dst": "t", "dstArrow": "triangle", - "dstLabel": "", "opacity": 1, "strokeDash": 0, "strokeWidth": 2, @@ -2102,10 +2048,8 @@ "id": "(t -> u)[0]", "src": "t", "srcArrow": "none", - "srcLabel": "", "dst": "u", "dstArrow": "triangle", - "dstLabel": "", "opacity": 1, "strokeDash": 0, "strokeWidth": 2, @@ -2142,10 +2086,8 @@ "id": "(u -> o)[0]", "src": "u", "srcArrow": "none", - "srcLabel": "", "dst": "o", "dstArrow": "triangle", - "dstLabel": "", "opacity": 1, "strokeDash": 0, "strokeWidth": 2, @@ -2190,10 +2132,8 @@ "id": "(t -> p)[0]", "src": "t", "srcArrow": "none", - "srcLabel": "", "dst": "p", "dstArrow": "triangle", - "dstLabel": "", "opacity": 1, "strokeDash": 0, "strokeWidth": 2, @@ -2246,10 +2186,8 @@ "id": "(c -> t)[0]", "src": "c", "srcArrow": "none", - "srcLabel": "", "dst": "t", "dstArrow": "triangle", - "dstLabel": "", "opacity": 1, "strokeDash": 0, "strokeWidth": 2, @@ -2294,10 +2232,8 @@ "id": "(s -> a)[0]", "src": "s", "srcArrow": "none", - "srcLabel": "", "dst": "a", "dstArrow": "triangle", - "dstLabel": "", "opacity": 1, "strokeDash": 0, "strokeWidth": 2, @@ -2342,10 +2278,8 @@ "id": "(u -> a)[0]", "src": "u", "srcArrow": "none", - "srcLabel": "", "dst": "a", "dstArrow": "triangle", - "dstLabel": "", "opacity": 1, "strokeDash": 0, "strokeWidth": 2, diff --git a/e2etests/testdata/stable/n22_e32/elk/sketch.exp.svg b/e2etests/testdata/stable/n22_e32/elk/sketch.exp.svg index 73c4c65713..334be4a694 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-3858346909 .fill-N1{fill:#0A0F25;} + .d2-3858346909 .fill-N2{fill:#676C7E;} + .d2-3858346909 .fill-N3{fill:#9499AB;} + .d2-3858346909 .fill-N4{fill:#CFD2DD;} + .d2-3858346909 .fill-N5{fill:#DEE1EB;} + .d2-3858346909 .fill-N6{fill:#EEF1F8;} + .d2-3858346909 .fill-N7{fill:#FFFFFF;} + .d2-3858346909 .fill-B1{fill:#0D32B2;} + .d2-3858346909 .fill-B2{fill:#0D32B2;} + .d2-3858346909 .fill-B3{fill:#E3E9FD;} + .d2-3858346909 .fill-B4{fill:#E3E9FD;} + .d2-3858346909 .fill-B5{fill:#EDF0FD;} + .d2-3858346909 .fill-B6{fill:#F7F8FE;} + .d2-3858346909 .fill-AA2{fill:#4A6FF3;} + .d2-3858346909 .fill-AA4{fill:#EDF0FD;} + .d2-3858346909 .fill-AA5{fill:#F7F8FE;} + .d2-3858346909 .fill-AB4{fill:#EDF0FD;} + .d2-3858346909 .fill-AB5{fill:#F7F8FE;} + .d2-3858346909 .stroke-N1{stroke:#0A0F25;} + .d2-3858346909 .stroke-N2{stroke:#676C7E;} + .d2-3858346909 .stroke-N3{stroke:#9499AB;} + .d2-3858346909 .stroke-N4{stroke:#CFD2DD;} + .d2-3858346909 .stroke-N5{stroke:#DEE1EB;} + .d2-3858346909 .stroke-N6{stroke:#EEF1F8;} + .d2-3858346909 .stroke-N7{stroke:#FFFFFF;} + .d2-3858346909 .stroke-B1{stroke:#0D32B2;} + .d2-3858346909 .stroke-B2{stroke:#0D32B2;} + .d2-3858346909 .stroke-B3{stroke:#E3E9FD;} + .d2-3858346909 .stroke-B4{stroke:#E3E9FD;} + .d2-3858346909 .stroke-B5{stroke:#EDF0FD;} + .d2-3858346909 .stroke-B6{stroke:#F7F8FE;} + .d2-3858346909 .stroke-AA2{stroke:#4A6FF3;} + .d2-3858346909 .stroke-AA4{stroke:#EDF0FD;} + .d2-3858346909 .stroke-AA5{stroke:#F7F8FE;} + .d2-3858346909 .stroke-AB4{stroke:#EDF0FD;} + .d2-3858346909 .stroke-AB5{stroke:#F7F8FE;} + .d2-3858346909 .background-color-N1{background-color:#0A0F25;} + .d2-3858346909 .background-color-N2{background-color:#676C7E;} + .d2-3858346909 .background-color-N3{background-color:#9499AB;} + .d2-3858346909 .background-color-N4{background-color:#CFD2DD;} + .d2-3858346909 .background-color-N5{background-color:#DEE1EB;} + .d2-3858346909 .background-color-N6{background-color:#EEF1F8;} + .d2-3858346909 .background-color-N7{background-color:#FFFFFF;} + .d2-3858346909 .background-color-B1{background-color:#0D32B2;} + .d2-3858346909 .background-color-B2{background-color:#0D32B2;} + .d2-3858346909 .background-color-B3{background-color:#E3E9FD;} + .d2-3858346909 .background-color-B4{background-color:#E3E9FD;} + .d2-3858346909 .background-color-B5{background-color:#EDF0FD;} + .d2-3858346909 .background-color-B6{background-color:#F7F8FE;} + .d2-3858346909 .background-color-AA2{background-color:#4A6FF3;} + .d2-3858346909 .background-color-AA4{background-color:#EDF0FD;} + .d2-3858346909 .background-color-AA5{background-color:#F7F8FE;} + .d2-3858346909 .background-color-AB4{background-color:#EDF0FD;} + .d2-3858346909 .background-color-AB5{background-color:#F7F8FE;} + .d2-3858346909 .color-N1{color:#0A0F25;} + .d2-3858346909 .color-N2{color:#676C7E;} + .d2-3858346909 .color-N3{color:#9499AB;} + .d2-3858346909 .color-N4{color:#CFD2DD;} + .d2-3858346909 .color-N5{color:#DEE1EB;} + .d2-3858346909 .color-N6{color:#EEF1F8;} + .d2-3858346909 .color-N7{color:#FFFFFF;} + .d2-3858346909 .color-B1{color:#0D32B2;} + .d2-3858346909 .color-B2{color:#0D32B2;} + .d2-3858346909 .color-B3{color:#E3E9FD;} + .d2-3858346909 .color-B4{color:#E3E9FD;} + .d2-3858346909 .color-B5{color:#EDF0FD;} + .d2-3858346909 .color-B6{color:#F7F8FE;} + .d2-3858346909 .color-AA2{color:#4A6FF3;} + .d2-3858346909 .color-AA4{color:#EDF0FD;} + .d2-3858346909 .color-AA5{color:#F7F8FE;} + .d2-3858346909 .color-AB4{color:#EDF0FD;} + .d2-3858346909 .color-AB5{color:#F7F8FE;}.appendix text.text{fill:#0A0F25}.md{--color-fg-default:#0A0F25;--color-fg-muted:#676C7E;--color-fg-subtle:#9499AB;--color-canvas-default:#FFFFFF;--color-canvas-subtle:#EEF1F8;--color-border-default:#0D32B2;--color-border-muted:#0D32B2;--color-neutral-muted:#EEF1F8;--color-accent-fg:#0D32B2;--color-accent-emphasis:#0D32B2;--color-attention-subtle:#676C7E;--color-danger-fg:red;}.sketch-overlay-B1{fill:url(#streaks-darker);mix-blend-mode:lighten}.sketch-overlay-B2{fill:url(#streaks-darker);mix-blend-mode:lighten}.sketch-overlay-B3{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-B4{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-B5{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-B6{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-AA2{fill:url(#streaks-dark);mix-blend-mode:overlay}.sketch-overlay-AA4{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-AA5{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-AB4{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-AB5{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-N1{fill:url(#streaks-darker);mix-blend-mode:lighten}.sketch-overlay-N2{fill:url(#streaks-dark);mix-blend-mode:overlay}.sketch-overlay-N3{fill:url(#streaks-normal);mix-blend-mode:color-burn}.sketch-overlay-N4{fill:url(#streaks-normal);mix-blend-mode:color-burn}.sketch-overlay-N5{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-N6{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-N7{fill:url(#streaks-bright);mix-blend-mode:darken}.light-code{display: block}.dark-code{display: none}]]>abcdefghijklmnopqrstu \ No newline at end of file diff --git a/e2etests/testdata/stable/near_keys_for_container#01/dagre/board.exp.json b/e2etests/testdata/stable/near_keys_for_container#01/dagre/board.exp.json index 97329ee10b..a7f22c5ccc 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 @@ -911,10 +911,8 @@ "id": "z.(a -> b)[0]", "src": "z.a", "srcArrow": "none", - "srcLabel": "", "dst": "z.b", "dstArrow": "triangle", - "dstLabel": "", "opacity": 1, "strokeDash": 0, "strokeWidth": 2, @@ -960,10 +958,8 @@ "id": "z.(c -> d)[0]", "src": "z.c", "srcArrow": "none", - "srcLabel": "", "dst": "z.d", "dstArrow": "triangle", - "dstLabel": "", "opacity": 1, "strokeDash": 0, "strokeWidth": 2, @@ -1009,10 +1005,8 @@ "id": "x.(a -> b)[0]", "src": "x.a", "srcArrow": "none", - "srcLabel": "", "dst": "x.b", "dstArrow": "triangle", - "dstLabel": "", "opacity": 1, "strokeDash": 0, "strokeWidth": 2, @@ -1058,10 +1052,8 @@ "id": "x.(c -> d)[0]", "src": "x.c", "srcArrow": "none", - "srcLabel": "", "dst": "x.d", "dstArrow": "triangle", - "dstLabel": "", "opacity": 1, "strokeDash": 0, "strokeWidth": 2, @@ -1107,10 +1099,8 @@ "id": "y.(a -> b)[0]", "src": "y.a", "srcArrow": "none", - "srcLabel": "", "dst": "y.b", "dstArrow": "triangle", - "dstLabel": "", "opacity": 1, "strokeDash": 0, "strokeWidth": 2, @@ -1156,10 +1146,8 @@ "id": "y.(c -> d)[0]", "src": "y.c", "srcArrow": "none", - "srcLabel": "", "dst": "y.d", "dstArrow": "triangle", - "dstLabel": "", "opacity": 1, "strokeDash": 0, "strokeWidth": 2, 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 48a0d7d1b1..57ec1df986 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 @@ -zaxybabcdbabcdabcdaccd + .d2-460628021 .fill-N1{fill:#0A0F25;} + .d2-460628021 .fill-N2{fill:#676C7E;} + .d2-460628021 .fill-N3{fill:#9499AB;} + .d2-460628021 .fill-N4{fill:#CFD2DD;} + .d2-460628021 .fill-N5{fill:#DEE1EB;} + .d2-460628021 .fill-N6{fill:#EEF1F8;} + .d2-460628021 .fill-N7{fill:#FFFFFF;} + .d2-460628021 .fill-B1{fill:#0D32B2;} + .d2-460628021 .fill-B2{fill:#0D32B2;} + .d2-460628021 .fill-B3{fill:#E3E9FD;} + .d2-460628021 .fill-B4{fill:#E3E9FD;} + .d2-460628021 .fill-B5{fill:#EDF0FD;} + .d2-460628021 .fill-B6{fill:#F7F8FE;} + .d2-460628021 .fill-AA2{fill:#4A6FF3;} + .d2-460628021 .fill-AA4{fill:#EDF0FD;} + .d2-460628021 .fill-AA5{fill:#F7F8FE;} + .d2-460628021 .fill-AB4{fill:#EDF0FD;} + .d2-460628021 .fill-AB5{fill:#F7F8FE;} + .d2-460628021 .stroke-N1{stroke:#0A0F25;} + .d2-460628021 .stroke-N2{stroke:#676C7E;} + .d2-460628021 .stroke-N3{stroke:#9499AB;} + .d2-460628021 .stroke-N4{stroke:#CFD2DD;} + .d2-460628021 .stroke-N5{stroke:#DEE1EB;} + .d2-460628021 .stroke-N6{stroke:#EEF1F8;} + .d2-460628021 .stroke-N7{stroke:#FFFFFF;} + .d2-460628021 .stroke-B1{stroke:#0D32B2;} + .d2-460628021 .stroke-B2{stroke:#0D32B2;} + .d2-460628021 .stroke-B3{stroke:#E3E9FD;} + .d2-460628021 .stroke-B4{stroke:#E3E9FD;} + .d2-460628021 .stroke-B5{stroke:#EDF0FD;} + .d2-460628021 .stroke-B6{stroke:#F7F8FE;} + .d2-460628021 .stroke-AA2{stroke:#4A6FF3;} + .d2-460628021 .stroke-AA4{stroke:#EDF0FD;} + .d2-460628021 .stroke-AA5{stroke:#F7F8FE;} + .d2-460628021 .stroke-AB4{stroke:#EDF0FD;} + .d2-460628021 .stroke-AB5{stroke:#F7F8FE;} + .d2-460628021 .background-color-N1{background-color:#0A0F25;} + .d2-460628021 .background-color-N2{background-color:#676C7E;} + .d2-460628021 .background-color-N3{background-color:#9499AB;} + .d2-460628021 .background-color-N4{background-color:#CFD2DD;} + .d2-460628021 .background-color-N5{background-color:#DEE1EB;} + .d2-460628021 .background-color-N6{background-color:#EEF1F8;} + .d2-460628021 .background-color-N7{background-color:#FFFFFF;} + .d2-460628021 .background-color-B1{background-color:#0D32B2;} + .d2-460628021 .background-color-B2{background-color:#0D32B2;} + .d2-460628021 .background-color-B3{background-color:#E3E9FD;} + .d2-460628021 .background-color-B4{background-color:#E3E9FD;} + .d2-460628021 .background-color-B5{background-color:#EDF0FD;} + .d2-460628021 .background-color-B6{background-color:#F7F8FE;} + .d2-460628021 .background-color-AA2{background-color:#4A6FF3;} + .d2-460628021 .background-color-AA4{background-color:#EDF0FD;} + .d2-460628021 .background-color-AA5{background-color:#F7F8FE;} + .d2-460628021 .background-color-AB4{background-color:#EDF0FD;} + .d2-460628021 .background-color-AB5{background-color:#F7F8FE;} + .d2-460628021 .color-N1{color:#0A0F25;} + .d2-460628021 .color-N2{color:#676C7E;} + .d2-460628021 .color-N3{color:#9499AB;} + .d2-460628021 .color-N4{color:#CFD2DD;} + .d2-460628021 .color-N5{color:#DEE1EB;} + .d2-460628021 .color-N6{color:#EEF1F8;} + .d2-460628021 .color-N7{color:#FFFFFF;} + .d2-460628021 .color-B1{color:#0D32B2;} + .d2-460628021 .color-B2{color:#0D32B2;} + .d2-460628021 .color-B3{color:#E3E9FD;} + .d2-460628021 .color-B4{color:#E3E9FD;} + .d2-460628021 .color-B5{color:#EDF0FD;} + .d2-460628021 .color-B6{color:#F7F8FE;} + .d2-460628021 .color-AA2{color:#4A6FF3;} + .d2-460628021 .color-AA4{color:#EDF0FD;} + .d2-460628021 .color-AA5{color:#F7F8FE;} + .d2-460628021 .color-AB4{color:#EDF0FD;} + .d2-460628021 .color-AB5{color:#F7F8FE;}.appendix text.text{fill:#0A0F25}.md{--color-fg-default:#0A0F25;--color-fg-muted:#676C7E;--color-fg-subtle:#9499AB;--color-canvas-default:#FFFFFF;--color-canvas-subtle:#EEF1F8;--color-border-default:#0D32B2;--color-border-muted:#0D32B2;--color-neutral-muted:#EEF1F8;--color-accent-fg:#0D32B2;--color-accent-emphasis:#0D32B2;--color-attention-subtle:#676C7E;--color-danger-fg:red;}.sketch-overlay-B1{fill:url(#streaks-darker);mix-blend-mode:lighten}.sketch-overlay-B2{fill:url(#streaks-darker);mix-blend-mode:lighten}.sketch-overlay-B3{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-B4{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-B5{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-B6{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-AA2{fill:url(#streaks-dark);mix-blend-mode:overlay}.sketch-overlay-AA4{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-AA5{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-AB4{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-AB5{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-N1{fill:url(#streaks-darker);mix-blend-mode:lighten}.sketch-overlay-N2{fill:url(#streaks-dark);mix-blend-mode:overlay}.sketch-overlay-N3{fill:url(#streaks-normal);mix-blend-mode:color-burn}.sketch-overlay-N4{fill:url(#streaks-normal);mix-blend-mode:color-burn}.sketch-overlay-N5{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-N6{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-N7{fill:url(#streaks-bright);mix-blend-mode:darken}.light-code{display: block}.dark-code{display: none}]]>zaxybabcdbabcdabcdaccd \ No newline at end of file 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 942b0e639c..c216a61ab3 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 @@ -911,10 +911,8 @@ "id": "z.(a -> b)[0]", "src": "z.a", "srcArrow": "none", - "srcLabel": "", "dst": "z.b", "dstArrow": "triangle", - "dstLabel": "", "opacity": 1, "strokeDash": 0, "strokeWidth": 2, @@ -951,10 +949,8 @@ "id": "z.(c -> d)[0]", "src": "z.c", "srcArrow": "none", - "srcLabel": "", "dst": "z.d", "dstArrow": "triangle", - "dstLabel": "", "opacity": 1, "strokeDash": 0, "strokeWidth": 2, @@ -991,10 +987,8 @@ "id": "x.(a -> b)[0]", "src": "x.a", "srcArrow": "none", - "srcLabel": "", "dst": "x.b", "dstArrow": "triangle", - "dstLabel": "", "opacity": 1, "strokeDash": 0, "strokeWidth": 2, @@ -1031,10 +1025,8 @@ "id": "x.(c -> d)[0]", "src": "x.c", "srcArrow": "none", - "srcLabel": "", "dst": "x.d", "dstArrow": "triangle", - "dstLabel": "", "opacity": 1, "strokeDash": 0, "strokeWidth": 2, @@ -1071,10 +1063,8 @@ "id": "y.(a -> b)[0]", "src": "y.a", "srcArrow": "none", - "srcLabel": "", "dst": "y.b", "dstArrow": "triangle", - "dstLabel": "", "opacity": 1, "strokeDash": 0, "strokeWidth": 2, @@ -1111,10 +1101,8 @@ "id": "y.(c -> d)[0]", "src": "y.c", "srcArrow": "none", - "srcLabel": "", "dst": "y.d", "dstArrow": "triangle", - "dstLabel": "", "opacity": 1, "strokeDash": 0, "strokeWidth": 2, 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 4e75f8514c..212af70c42 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 @@ -zaxybabcdbabcdabcdaccd + .d2-1254933240 .fill-N1{fill:#0A0F25;} + .d2-1254933240 .fill-N2{fill:#676C7E;} + .d2-1254933240 .fill-N3{fill:#9499AB;} + .d2-1254933240 .fill-N4{fill:#CFD2DD;} + .d2-1254933240 .fill-N5{fill:#DEE1EB;} + .d2-1254933240 .fill-N6{fill:#EEF1F8;} + .d2-1254933240 .fill-N7{fill:#FFFFFF;} + .d2-1254933240 .fill-B1{fill:#0D32B2;} + .d2-1254933240 .fill-B2{fill:#0D32B2;} + .d2-1254933240 .fill-B3{fill:#E3E9FD;} + .d2-1254933240 .fill-B4{fill:#E3E9FD;} + .d2-1254933240 .fill-B5{fill:#EDF0FD;} + .d2-1254933240 .fill-B6{fill:#F7F8FE;} + .d2-1254933240 .fill-AA2{fill:#4A6FF3;} + .d2-1254933240 .fill-AA4{fill:#EDF0FD;} + .d2-1254933240 .fill-AA5{fill:#F7F8FE;} + .d2-1254933240 .fill-AB4{fill:#EDF0FD;} + .d2-1254933240 .fill-AB5{fill:#F7F8FE;} + .d2-1254933240 .stroke-N1{stroke:#0A0F25;} + .d2-1254933240 .stroke-N2{stroke:#676C7E;} + .d2-1254933240 .stroke-N3{stroke:#9499AB;} + .d2-1254933240 .stroke-N4{stroke:#CFD2DD;} + .d2-1254933240 .stroke-N5{stroke:#DEE1EB;} + .d2-1254933240 .stroke-N6{stroke:#EEF1F8;} + .d2-1254933240 .stroke-N7{stroke:#FFFFFF;} + .d2-1254933240 .stroke-B1{stroke:#0D32B2;} + .d2-1254933240 .stroke-B2{stroke:#0D32B2;} + .d2-1254933240 .stroke-B3{stroke:#E3E9FD;} + .d2-1254933240 .stroke-B4{stroke:#E3E9FD;} + .d2-1254933240 .stroke-B5{stroke:#EDF0FD;} + .d2-1254933240 .stroke-B6{stroke:#F7F8FE;} + .d2-1254933240 .stroke-AA2{stroke:#4A6FF3;} + .d2-1254933240 .stroke-AA4{stroke:#EDF0FD;} + .d2-1254933240 .stroke-AA5{stroke:#F7F8FE;} + .d2-1254933240 .stroke-AB4{stroke:#EDF0FD;} + .d2-1254933240 .stroke-AB5{stroke:#F7F8FE;} + .d2-1254933240 .background-color-N1{background-color:#0A0F25;} + .d2-1254933240 .background-color-N2{background-color:#676C7E;} + .d2-1254933240 .background-color-N3{background-color:#9499AB;} + .d2-1254933240 .background-color-N4{background-color:#CFD2DD;} + .d2-1254933240 .background-color-N5{background-color:#DEE1EB;} + .d2-1254933240 .background-color-N6{background-color:#EEF1F8;} + .d2-1254933240 .background-color-N7{background-color:#FFFFFF;} + .d2-1254933240 .background-color-B1{background-color:#0D32B2;} + .d2-1254933240 .background-color-B2{background-color:#0D32B2;} + .d2-1254933240 .background-color-B3{background-color:#E3E9FD;} + .d2-1254933240 .background-color-B4{background-color:#E3E9FD;} + .d2-1254933240 .background-color-B5{background-color:#EDF0FD;} + .d2-1254933240 .background-color-B6{background-color:#F7F8FE;} + .d2-1254933240 .background-color-AA2{background-color:#4A6FF3;} + .d2-1254933240 .background-color-AA4{background-color:#EDF0FD;} + .d2-1254933240 .background-color-AA5{background-color:#F7F8FE;} + .d2-1254933240 .background-color-AB4{background-color:#EDF0FD;} + .d2-1254933240 .background-color-AB5{background-color:#F7F8FE;} + .d2-1254933240 .color-N1{color:#0A0F25;} + .d2-1254933240 .color-N2{color:#676C7E;} + .d2-1254933240 .color-N3{color:#9499AB;} + .d2-1254933240 .color-N4{color:#CFD2DD;} + .d2-1254933240 .color-N5{color:#DEE1EB;} + .d2-1254933240 .color-N6{color:#EEF1F8;} + .d2-1254933240 .color-N7{color:#FFFFFF;} + .d2-1254933240 .color-B1{color:#0D32B2;} + .d2-1254933240 .color-B2{color:#0D32B2;} + .d2-1254933240 .color-B3{color:#E3E9FD;} + .d2-1254933240 .color-B4{color:#E3E9FD;} + .d2-1254933240 .color-B5{color:#EDF0FD;} + .d2-1254933240 .color-B6{color:#F7F8FE;} + .d2-1254933240 .color-AA2{color:#4A6FF3;} + .d2-1254933240 .color-AA4{color:#EDF0FD;} + .d2-1254933240 .color-AA5{color:#F7F8FE;} + .d2-1254933240 .color-AB4{color:#EDF0FD;} + .d2-1254933240 .color-AB5{color:#F7F8FE;}.appendix text.text{fill:#0A0F25}.md{--color-fg-default:#0A0F25;--color-fg-muted:#676C7E;--color-fg-subtle:#9499AB;--color-canvas-default:#FFFFFF;--color-canvas-subtle:#EEF1F8;--color-border-default:#0D32B2;--color-border-muted:#0D32B2;--color-neutral-muted:#EEF1F8;--color-accent-fg:#0D32B2;--color-accent-emphasis:#0D32B2;--color-attention-subtle:#676C7E;--color-danger-fg:red;}.sketch-overlay-B1{fill:url(#streaks-darker);mix-blend-mode:lighten}.sketch-overlay-B2{fill:url(#streaks-darker);mix-blend-mode:lighten}.sketch-overlay-B3{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-B4{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-B5{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-B6{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-AA2{fill:url(#streaks-dark);mix-blend-mode:overlay}.sketch-overlay-AA4{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-AA5{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-AB4{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-AB5{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-N1{fill:url(#streaks-darker);mix-blend-mode:lighten}.sketch-overlay-N2{fill:url(#streaks-dark);mix-blend-mode:overlay}.sketch-overlay-N3{fill:url(#streaks-normal);mix-blend-mode:color-burn}.sketch-overlay-N4{fill:url(#streaks-normal);mix-blend-mode:color-burn}.sketch-overlay-N5{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-N6{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-N7{fill:url(#streaks-bright);mix-blend-mode:darken}.light-code{display: block}.dark-code{display: none}]]>zaxybabcdbabcdabcdaccd \ No newline at end of file diff --git a/e2etests/testdata/stable/number_connections/dagre/board.exp.json b/e2etests/testdata/stable/number_connections/dagre/board.exp.json index 4a2903bb4c..7b55ac7093 100644 --- a/e2etests/testdata/stable/number_connections/dagre/board.exp.json +++ b/e2etests/testdata/stable/number_connections/dagre/board.exp.json @@ -173,10 +173,8 @@ "id": "(1 -> 2)[0]", "src": "1", "srcArrow": "none", - "srcLabel": "", "dst": "2", "dstArrow": "triangle", - "dstLabel": "", "opacity": 1, "strokeDash": 0, "strokeWidth": 2, @@ -222,10 +220,8 @@ "id": "(foo baz -> hello)[0]", "src": "foo baz", "srcArrow": "none", - "srcLabel": "", "dst": "hello", "dstArrow": "triangle", - "dstLabel": "", "opacity": 1, "strokeDash": 0, "strokeWidth": 2, diff --git a/e2etests/testdata/stable/number_connections/dagre/sketch.exp.svg b/e2etests/testdata/stable/number_connections/dagre/sketch.exp.svg index 902736aa07..3e0f4c891e 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-3558464789 .fill-N1{fill:#0A0F25;} + .d2-3558464789 .fill-N2{fill:#676C7E;} + .d2-3558464789 .fill-N3{fill:#9499AB;} + .d2-3558464789 .fill-N4{fill:#CFD2DD;} + .d2-3558464789 .fill-N5{fill:#DEE1EB;} + .d2-3558464789 .fill-N6{fill:#EEF1F8;} + .d2-3558464789 .fill-N7{fill:#FFFFFF;} + .d2-3558464789 .fill-B1{fill:#0D32B2;} + .d2-3558464789 .fill-B2{fill:#0D32B2;} + .d2-3558464789 .fill-B3{fill:#E3E9FD;} + .d2-3558464789 .fill-B4{fill:#E3E9FD;} + .d2-3558464789 .fill-B5{fill:#EDF0FD;} + .d2-3558464789 .fill-B6{fill:#F7F8FE;} + .d2-3558464789 .fill-AA2{fill:#4A6FF3;} + .d2-3558464789 .fill-AA4{fill:#EDF0FD;} + .d2-3558464789 .fill-AA5{fill:#F7F8FE;} + .d2-3558464789 .fill-AB4{fill:#EDF0FD;} + .d2-3558464789 .fill-AB5{fill:#F7F8FE;} + .d2-3558464789 .stroke-N1{stroke:#0A0F25;} + .d2-3558464789 .stroke-N2{stroke:#676C7E;} + .d2-3558464789 .stroke-N3{stroke:#9499AB;} + .d2-3558464789 .stroke-N4{stroke:#CFD2DD;} + .d2-3558464789 .stroke-N5{stroke:#DEE1EB;} + .d2-3558464789 .stroke-N6{stroke:#EEF1F8;} + .d2-3558464789 .stroke-N7{stroke:#FFFFFF;} + .d2-3558464789 .stroke-B1{stroke:#0D32B2;} + .d2-3558464789 .stroke-B2{stroke:#0D32B2;} + .d2-3558464789 .stroke-B3{stroke:#E3E9FD;} + .d2-3558464789 .stroke-B4{stroke:#E3E9FD;} + .d2-3558464789 .stroke-B5{stroke:#EDF0FD;} + .d2-3558464789 .stroke-B6{stroke:#F7F8FE;} + .d2-3558464789 .stroke-AA2{stroke:#4A6FF3;} + .d2-3558464789 .stroke-AA4{stroke:#EDF0FD;} + .d2-3558464789 .stroke-AA5{stroke:#F7F8FE;} + .d2-3558464789 .stroke-AB4{stroke:#EDF0FD;} + .d2-3558464789 .stroke-AB5{stroke:#F7F8FE;} + .d2-3558464789 .background-color-N1{background-color:#0A0F25;} + .d2-3558464789 .background-color-N2{background-color:#676C7E;} + .d2-3558464789 .background-color-N3{background-color:#9499AB;} + .d2-3558464789 .background-color-N4{background-color:#CFD2DD;} + .d2-3558464789 .background-color-N5{background-color:#DEE1EB;} + .d2-3558464789 .background-color-N6{background-color:#EEF1F8;} + .d2-3558464789 .background-color-N7{background-color:#FFFFFF;} + .d2-3558464789 .background-color-B1{background-color:#0D32B2;} + .d2-3558464789 .background-color-B2{background-color:#0D32B2;} + .d2-3558464789 .background-color-B3{background-color:#E3E9FD;} + .d2-3558464789 .background-color-B4{background-color:#E3E9FD;} + .d2-3558464789 .background-color-B5{background-color:#EDF0FD;} + .d2-3558464789 .background-color-B6{background-color:#F7F8FE;} + .d2-3558464789 .background-color-AA2{background-color:#4A6FF3;} + .d2-3558464789 .background-color-AA4{background-color:#EDF0FD;} + .d2-3558464789 .background-color-AA5{background-color:#F7F8FE;} + .d2-3558464789 .background-color-AB4{background-color:#EDF0FD;} + .d2-3558464789 .background-color-AB5{background-color:#F7F8FE;} + .d2-3558464789 .color-N1{color:#0A0F25;} + .d2-3558464789 .color-N2{color:#676C7E;} + .d2-3558464789 .color-N3{color:#9499AB;} + .d2-3558464789 .color-N4{color:#CFD2DD;} + .d2-3558464789 .color-N5{color:#DEE1EB;} + .d2-3558464789 .color-N6{color:#EEF1F8;} + .d2-3558464789 .color-N7{color:#FFFFFF;} + .d2-3558464789 .color-B1{color:#0D32B2;} + .d2-3558464789 .color-B2{color:#0D32B2;} + .d2-3558464789 .color-B3{color:#E3E9FD;} + .d2-3558464789 .color-B4{color:#E3E9FD;} + .d2-3558464789 .color-B5{color:#EDF0FD;} + .d2-3558464789 .color-B6{color:#F7F8FE;} + .d2-3558464789 .color-AA2{color:#4A6FF3;} + .d2-3558464789 .color-AA4{color:#EDF0FD;} + .d2-3558464789 .color-AA5{color:#F7F8FE;} + .d2-3558464789 .color-AB4{color:#EDF0FD;} + .d2-3558464789 .color-AB5{color:#F7F8FE;}.appendix text.text{fill:#0A0F25}.md{--color-fg-default:#0A0F25;--color-fg-muted:#676C7E;--color-fg-subtle:#9499AB;--color-canvas-default:#FFFFFF;--color-canvas-subtle:#EEF1F8;--color-border-default:#0D32B2;--color-border-muted:#0D32B2;--color-neutral-muted:#EEF1F8;--color-accent-fg:#0D32B2;--color-accent-emphasis:#0D32B2;--color-attention-subtle:#676C7E;--color-danger-fg:red;}.sketch-overlay-B1{fill:url(#streaks-darker);mix-blend-mode:lighten}.sketch-overlay-B2{fill:url(#streaks-darker);mix-blend-mode:lighten}.sketch-overlay-B3{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-B4{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-B5{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-B6{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-AA2{fill:url(#streaks-dark);mix-blend-mode:overlay}.sketch-overlay-AA4{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-AA5{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-AB4{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-AB5{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-N1{fill:url(#streaks-darker);mix-blend-mode:lighten}.sketch-overlay-N2{fill:url(#streaks-dark);mix-blend-mode:overlay}.sketch-overlay-N3{fill:url(#streaks-normal);mix-blend-mode:color-burn}.sketch-overlay-N4{fill:url(#streaks-normal);mix-blend-mode:color-burn}.sketch-overlay-N5{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-N6{fill:url(#streaks-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 \ No newline at end of file diff --git a/e2etests/testdata/stable/number_connections/elk/board.exp.json b/e2etests/testdata/stable/number_connections/elk/board.exp.json index 595e794187..65a6da4a52 100644 --- a/e2etests/testdata/stable/number_connections/elk/board.exp.json +++ b/e2etests/testdata/stable/number_connections/elk/board.exp.json @@ -173,10 +173,8 @@ "id": "(1 -> 2)[0]", "src": "1", "srcArrow": "none", - "srcLabel": "", "dst": "2", "dstArrow": "triangle", - "dstLabel": "", "opacity": 1, "strokeDash": 0, "strokeWidth": 2, @@ -213,10 +211,8 @@ "id": "(foo baz -> hello)[0]", "src": "foo baz", "srcArrow": "none", - "srcLabel": "", "dst": "hello", "dstArrow": "triangle", - "dstLabel": "", "opacity": 1, "strokeDash": 0, "strokeWidth": 2, diff --git a/e2etests/testdata/stable/number_connections/elk/sketch.exp.svg b/e2etests/testdata/stable/number_connections/elk/sketch.exp.svg index 66329689ee..00f93cd07d 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-3018316429 .fill-N1{fill:#0A0F25;} + .d2-3018316429 .fill-N2{fill:#676C7E;} + .d2-3018316429 .fill-N3{fill:#9499AB;} + .d2-3018316429 .fill-N4{fill:#CFD2DD;} + .d2-3018316429 .fill-N5{fill:#DEE1EB;} + .d2-3018316429 .fill-N6{fill:#EEF1F8;} + .d2-3018316429 .fill-N7{fill:#FFFFFF;} + .d2-3018316429 .fill-B1{fill:#0D32B2;} + .d2-3018316429 .fill-B2{fill:#0D32B2;} + .d2-3018316429 .fill-B3{fill:#E3E9FD;} + .d2-3018316429 .fill-B4{fill:#E3E9FD;} + .d2-3018316429 .fill-B5{fill:#EDF0FD;} + .d2-3018316429 .fill-B6{fill:#F7F8FE;} + .d2-3018316429 .fill-AA2{fill:#4A6FF3;} + .d2-3018316429 .fill-AA4{fill:#EDF0FD;} + .d2-3018316429 .fill-AA5{fill:#F7F8FE;} + .d2-3018316429 .fill-AB4{fill:#EDF0FD;} + .d2-3018316429 .fill-AB5{fill:#F7F8FE;} + .d2-3018316429 .stroke-N1{stroke:#0A0F25;} + .d2-3018316429 .stroke-N2{stroke:#676C7E;} + .d2-3018316429 .stroke-N3{stroke:#9499AB;} + .d2-3018316429 .stroke-N4{stroke:#CFD2DD;} + .d2-3018316429 .stroke-N5{stroke:#DEE1EB;} + .d2-3018316429 .stroke-N6{stroke:#EEF1F8;} + .d2-3018316429 .stroke-N7{stroke:#FFFFFF;} + .d2-3018316429 .stroke-B1{stroke:#0D32B2;} + .d2-3018316429 .stroke-B2{stroke:#0D32B2;} + .d2-3018316429 .stroke-B3{stroke:#E3E9FD;} + .d2-3018316429 .stroke-B4{stroke:#E3E9FD;} + .d2-3018316429 .stroke-B5{stroke:#EDF0FD;} + .d2-3018316429 .stroke-B6{stroke:#F7F8FE;} + .d2-3018316429 .stroke-AA2{stroke:#4A6FF3;} + .d2-3018316429 .stroke-AA4{stroke:#EDF0FD;} + .d2-3018316429 .stroke-AA5{stroke:#F7F8FE;} + .d2-3018316429 .stroke-AB4{stroke:#EDF0FD;} + .d2-3018316429 .stroke-AB5{stroke:#F7F8FE;} + .d2-3018316429 .background-color-N1{background-color:#0A0F25;} + .d2-3018316429 .background-color-N2{background-color:#676C7E;} + .d2-3018316429 .background-color-N3{background-color:#9499AB;} + .d2-3018316429 .background-color-N4{background-color:#CFD2DD;} + .d2-3018316429 .background-color-N5{background-color:#DEE1EB;} + .d2-3018316429 .background-color-N6{background-color:#EEF1F8;} + .d2-3018316429 .background-color-N7{background-color:#FFFFFF;} + .d2-3018316429 .background-color-B1{background-color:#0D32B2;} + .d2-3018316429 .background-color-B2{background-color:#0D32B2;} + .d2-3018316429 .background-color-B3{background-color:#E3E9FD;} + .d2-3018316429 .background-color-B4{background-color:#E3E9FD;} + .d2-3018316429 .background-color-B5{background-color:#EDF0FD;} + .d2-3018316429 .background-color-B6{background-color:#F7F8FE;} + .d2-3018316429 .background-color-AA2{background-color:#4A6FF3;} + .d2-3018316429 .background-color-AA4{background-color:#EDF0FD;} + .d2-3018316429 .background-color-AA5{background-color:#F7F8FE;} + .d2-3018316429 .background-color-AB4{background-color:#EDF0FD;} + .d2-3018316429 .background-color-AB5{background-color:#F7F8FE;} + .d2-3018316429 .color-N1{color:#0A0F25;} + .d2-3018316429 .color-N2{color:#676C7E;} + .d2-3018316429 .color-N3{color:#9499AB;} + .d2-3018316429 .color-N4{color:#CFD2DD;} + .d2-3018316429 .color-N5{color:#DEE1EB;} + .d2-3018316429 .color-N6{color:#EEF1F8;} + .d2-3018316429 .color-N7{color:#FFFFFF;} + .d2-3018316429 .color-B1{color:#0D32B2;} + .d2-3018316429 .color-B2{color:#0D32B2;} + .d2-3018316429 .color-B3{color:#E3E9FD;} + .d2-3018316429 .color-B4{color:#E3E9FD;} + .d2-3018316429 .color-B5{color:#EDF0FD;} + .d2-3018316429 .color-B6{color:#F7F8FE;} + .d2-3018316429 .color-AA2{color:#4A6FF3;} + .d2-3018316429 .color-AA4{color:#EDF0FD;} + .d2-3018316429 .color-AA5{color:#F7F8FE;} + .d2-3018316429 .color-AB4{color:#EDF0FD;} + .d2-3018316429 .color-AB5{color:#F7F8FE;}.appendix text.text{fill:#0A0F25}.md{--color-fg-default:#0A0F25;--color-fg-muted:#676C7E;--color-fg-subtle:#9499AB;--color-canvas-default:#FFFFFF;--color-canvas-subtle:#EEF1F8;--color-border-default:#0D32B2;--color-border-muted:#0D32B2;--color-neutral-muted:#EEF1F8;--color-accent-fg:#0D32B2;--color-accent-emphasis:#0D32B2;--color-attention-subtle:#676C7E;--color-danger-fg:red;}.sketch-overlay-B1{fill:url(#streaks-darker);mix-blend-mode:lighten}.sketch-overlay-B2{fill:url(#streaks-darker);mix-blend-mode:lighten}.sketch-overlay-B3{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-B4{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-B5{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-B6{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-AA2{fill:url(#streaks-dark);mix-blend-mode:overlay}.sketch-overlay-AA4{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-AA5{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-AB4{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-AB5{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-N1{fill:url(#streaks-darker);mix-blend-mode:lighten}.sketch-overlay-N2{fill:url(#streaks-dark);mix-blend-mode:overlay}.sketch-overlay-N3{fill:url(#streaks-normal);mix-blend-mode:color-burn}.sketch-overlay-N4{fill:url(#streaks-normal);mix-blend-mode:color-burn}.sketch-overlay-N5{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-N6{fill:url(#streaks-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 \ No newline at end of file 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 732fec1420..15c5629628 100644 --- a/e2etests/testdata/stable/one_container_loop/dagre/board.exp.json +++ b/e2etests/testdata/stable/one_container_loop/dagre/board.exp.json @@ -337,10 +337,8 @@ "id": "(a.b -> c)[0]", "src": "a.b", "srcArrow": "none", - "srcLabel": "", "dst": "c", "dstArrow": "triangle", - "dstLabel": "", "opacity": 1, "strokeDash": 0, "strokeWidth": 2, @@ -458,10 +456,8 @@ "id": "(d -> c)[0]", "src": "d", "srcArrow": "none", - "srcLabel": "", "dst": "c", "dstArrow": "triangle", - "dstLabel": "", "opacity": 1, "strokeDash": 0, "strokeWidth": 2, @@ -507,10 +503,8 @@ "id": "(e -> c)[0]", "src": "e", "srcArrow": "none", - "srcLabel": "", "dst": "c", "dstArrow": "triangle", - "dstLabel": "", "opacity": 1, "strokeDash": 0, "strokeWidth": 2, @@ -556,10 +550,8 @@ "id": "(f -> d)[0]", "src": "f", "srcArrow": "none", - "srcLabel": "", "dst": "d", "dstArrow": "triangle", - "dstLabel": "", "opacity": 1, "strokeDash": 0, "strokeWidth": 2, @@ -605,10 +597,8 @@ "id": "(a -> e)[0]", "src": "a", "srcArrow": "none", - "srcLabel": "", "dst": "e", "dstArrow": "triangle", - "dstLabel": "", "opacity": 1, "strokeDash": 0, "strokeWidth": 2, @@ -690,10 +680,8 @@ "id": "(g -> f)[0]", "src": "g", "srcArrow": "none", - "srcLabel": "", "dst": "f", "dstArrow": "triangle", - "dstLabel": "", "opacity": 1, "strokeDash": 0, "strokeWidth": 2, @@ -739,10 +727,8 @@ "id": "(a.h -> g)[0]", "src": "a.h", "srcArrow": "none", - "srcLabel": "", "dst": "g", "dstArrow": "triangle", - "dstLabel": "", "opacity": 1, "strokeDash": 0, "strokeWidth": 2, 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 3bc404ce51..6c17e34050 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-3533211801 .fill-N1{fill:#0A0F25;} + .d2-3533211801 .fill-N2{fill:#676C7E;} + .d2-3533211801 .fill-N3{fill:#9499AB;} + .d2-3533211801 .fill-N4{fill:#CFD2DD;} + .d2-3533211801 .fill-N5{fill:#DEE1EB;} + .d2-3533211801 .fill-N6{fill:#EEF1F8;} + .d2-3533211801 .fill-N7{fill:#FFFFFF;} + .d2-3533211801 .fill-B1{fill:#0D32B2;} + .d2-3533211801 .fill-B2{fill:#0D32B2;} + .d2-3533211801 .fill-B3{fill:#E3E9FD;} + .d2-3533211801 .fill-B4{fill:#E3E9FD;} + .d2-3533211801 .fill-B5{fill:#EDF0FD;} + .d2-3533211801 .fill-B6{fill:#F7F8FE;} + .d2-3533211801 .fill-AA2{fill:#4A6FF3;} + .d2-3533211801 .fill-AA4{fill:#EDF0FD;} + .d2-3533211801 .fill-AA5{fill:#F7F8FE;} + .d2-3533211801 .fill-AB4{fill:#EDF0FD;} + .d2-3533211801 .fill-AB5{fill:#F7F8FE;} + .d2-3533211801 .stroke-N1{stroke:#0A0F25;} + .d2-3533211801 .stroke-N2{stroke:#676C7E;} + .d2-3533211801 .stroke-N3{stroke:#9499AB;} + .d2-3533211801 .stroke-N4{stroke:#CFD2DD;} + .d2-3533211801 .stroke-N5{stroke:#DEE1EB;} + .d2-3533211801 .stroke-N6{stroke:#EEF1F8;} + .d2-3533211801 .stroke-N7{stroke:#FFFFFF;} + .d2-3533211801 .stroke-B1{stroke:#0D32B2;} + .d2-3533211801 .stroke-B2{stroke:#0D32B2;} + .d2-3533211801 .stroke-B3{stroke:#E3E9FD;} + .d2-3533211801 .stroke-B4{stroke:#E3E9FD;} + .d2-3533211801 .stroke-B5{stroke:#EDF0FD;} + .d2-3533211801 .stroke-B6{stroke:#F7F8FE;} + .d2-3533211801 .stroke-AA2{stroke:#4A6FF3;} + .d2-3533211801 .stroke-AA4{stroke:#EDF0FD;} + .d2-3533211801 .stroke-AA5{stroke:#F7F8FE;} + .d2-3533211801 .stroke-AB4{stroke:#EDF0FD;} + .d2-3533211801 .stroke-AB5{stroke:#F7F8FE;} + .d2-3533211801 .background-color-N1{background-color:#0A0F25;} + .d2-3533211801 .background-color-N2{background-color:#676C7E;} + .d2-3533211801 .background-color-N3{background-color:#9499AB;} + .d2-3533211801 .background-color-N4{background-color:#CFD2DD;} + .d2-3533211801 .background-color-N5{background-color:#DEE1EB;} + .d2-3533211801 .background-color-N6{background-color:#EEF1F8;} + .d2-3533211801 .background-color-N7{background-color:#FFFFFF;} + .d2-3533211801 .background-color-B1{background-color:#0D32B2;} + .d2-3533211801 .background-color-B2{background-color:#0D32B2;} + .d2-3533211801 .background-color-B3{background-color:#E3E9FD;} + .d2-3533211801 .background-color-B4{background-color:#E3E9FD;} + .d2-3533211801 .background-color-B5{background-color:#EDF0FD;} + .d2-3533211801 .background-color-B6{background-color:#F7F8FE;} + .d2-3533211801 .background-color-AA2{background-color:#4A6FF3;} + .d2-3533211801 .background-color-AA4{background-color:#EDF0FD;} + .d2-3533211801 .background-color-AA5{background-color:#F7F8FE;} + .d2-3533211801 .background-color-AB4{background-color:#EDF0FD;} + .d2-3533211801 .background-color-AB5{background-color:#F7F8FE;} + .d2-3533211801 .color-N1{color:#0A0F25;} + .d2-3533211801 .color-N2{color:#676C7E;} + .d2-3533211801 .color-N3{color:#9499AB;} + .d2-3533211801 .color-N4{color:#CFD2DD;} + .d2-3533211801 .color-N5{color:#DEE1EB;} + .d2-3533211801 .color-N6{color:#EEF1F8;} + .d2-3533211801 .color-N7{color:#FFFFFF;} + .d2-3533211801 .color-B1{color:#0D32B2;} + .d2-3533211801 .color-B2{color:#0D32B2;} + .d2-3533211801 .color-B3{color:#E3E9FD;} + .d2-3533211801 .color-B4{color:#E3E9FD;} + .d2-3533211801 .color-B5{color:#EDF0FD;} + .d2-3533211801 .color-B6{color:#F7F8FE;} + .d2-3533211801 .color-AA2{color:#4A6FF3;} + .d2-3533211801 .color-AA4{color:#EDF0FD;} + .d2-3533211801 .color-AA5{color:#F7F8FE;} + .d2-3533211801 .color-AB4{color:#EDF0FD;} + .d2-3533211801 .color-AB5{color:#F7F8FE;}.appendix text.text{fill:#0A0F25}.md{--color-fg-default:#0A0F25;--color-fg-muted:#676C7E;--color-fg-subtle:#9499AB;--color-canvas-default:#FFFFFF;--color-canvas-subtle:#EEF1F8;--color-border-default:#0D32B2;--color-border-muted:#0D32B2;--color-neutral-muted:#EEF1F8;--color-accent-fg:#0D32B2;--color-accent-emphasis:#0D32B2;--color-attention-subtle:#676C7E;--color-danger-fg:red;}.sketch-overlay-B1{fill:url(#streaks-darker);mix-blend-mode:lighten}.sketch-overlay-B2{fill:url(#streaks-darker);mix-blend-mode:lighten}.sketch-overlay-B3{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-B4{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-B5{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-B6{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-AA2{fill:url(#streaks-dark);mix-blend-mode:overlay}.sketch-overlay-AA4{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-AA5{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-AB4{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-AB5{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-N1{fill:url(#streaks-darker);mix-blend-mode:lighten}.sketch-overlay-N2{fill:url(#streaks-dark);mix-blend-mode:overlay}.sketch-overlay-N3{fill:url(#streaks-normal);mix-blend-mode:color-burn}.sketch-overlay-N4{fill:url(#streaks-normal);mix-blend-mode:color-burn}.sketch-overlay-N5{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-N6{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-N7{fill:url(#streaks-bright);mix-blend-mode:darken}.light-code{display: block}.dark-code{display: none}]]>acdefgbh \ No newline at end of file diff --git a/e2etests/testdata/stable/one_container_loop/elk/board.exp.json b/e2etests/testdata/stable/one_container_loop/elk/board.exp.json index 18497eca49..dbbe7f64d0 100644 --- a/e2etests/testdata/stable/one_container_loop/elk/board.exp.json +++ b/e2etests/testdata/stable/one_container_loop/elk/board.exp.json @@ -337,10 +337,8 @@ "id": "(a.b -> c)[0]", "src": "a.b", "srcArrow": "none", - "srcLabel": "", "dst": "c", "dstArrow": "triangle", - "dstLabel": "", "opacity": 1, "strokeDash": 0, "strokeWidth": 2, @@ -385,10 +383,8 @@ "id": "(d -> c)[0]", "src": "d", "srcArrow": "none", - "srcLabel": "", "dst": "c", "dstArrow": "triangle", - "dstLabel": "", "opacity": 1, "strokeDash": 0, "strokeWidth": 2, @@ -425,10 +421,8 @@ "id": "(e -> c)[0]", "src": "e", "srcArrow": "none", - "srcLabel": "", "dst": "c", "dstArrow": "triangle", - "dstLabel": "", "opacity": 1, "strokeDash": 0, "strokeWidth": 2, @@ -473,10 +467,8 @@ "id": "(f -> d)[0]", "src": "f", "srcArrow": "none", - "srcLabel": "", "dst": "d", "dstArrow": "triangle", - "dstLabel": "", "opacity": 1, "strokeDash": 0, "strokeWidth": 2, @@ -513,10 +505,8 @@ "id": "(a -> e)[0]", "src": "a", "srcArrow": "none", - "srcLabel": "", "dst": "e", "dstArrow": "triangle", - "dstLabel": "", "opacity": 1, "strokeDash": 0, "strokeWidth": 2, @@ -553,10 +543,8 @@ "id": "(g -> f)[0]", "src": "g", "srcArrow": "none", - "srcLabel": "", "dst": "f", "dstArrow": "triangle", - "dstLabel": "", "opacity": 1, "strokeDash": 0, "strokeWidth": 2, @@ -593,10 +581,8 @@ "id": "(a.h -> g)[0]", "src": "a.h", "srcArrow": "none", - "srcLabel": "", "dst": "g", "dstArrow": "triangle", - "dstLabel": "", "opacity": 1, "strokeDash": 0, "strokeWidth": 2, 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 d035338219..f2a3a9adad 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-2866832613 .fill-N1{fill:#0A0F25;} + .d2-2866832613 .fill-N2{fill:#676C7E;} + .d2-2866832613 .fill-N3{fill:#9499AB;} + .d2-2866832613 .fill-N4{fill:#CFD2DD;} + .d2-2866832613 .fill-N5{fill:#DEE1EB;} + .d2-2866832613 .fill-N6{fill:#EEF1F8;} + .d2-2866832613 .fill-N7{fill:#FFFFFF;} + .d2-2866832613 .fill-B1{fill:#0D32B2;} + .d2-2866832613 .fill-B2{fill:#0D32B2;} + .d2-2866832613 .fill-B3{fill:#E3E9FD;} + .d2-2866832613 .fill-B4{fill:#E3E9FD;} + .d2-2866832613 .fill-B5{fill:#EDF0FD;} + .d2-2866832613 .fill-B6{fill:#F7F8FE;} + .d2-2866832613 .fill-AA2{fill:#4A6FF3;} + .d2-2866832613 .fill-AA4{fill:#EDF0FD;} + .d2-2866832613 .fill-AA5{fill:#F7F8FE;} + .d2-2866832613 .fill-AB4{fill:#EDF0FD;} + .d2-2866832613 .fill-AB5{fill:#F7F8FE;} + .d2-2866832613 .stroke-N1{stroke:#0A0F25;} + .d2-2866832613 .stroke-N2{stroke:#676C7E;} + .d2-2866832613 .stroke-N3{stroke:#9499AB;} + .d2-2866832613 .stroke-N4{stroke:#CFD2DD;} + .d2-2866832613 .stroke-N5{stroke:#DEE1EB;} + .d2-2866832613 .stroke-N6{stroke:#EEF1F8;} + .d2-2866832613 .stroke-N7{stroke:#FFFFFF;} + .d2-2866832613 .stroke-B1{stroke:#0D32B2;} + .d2-2866832613 .stroke-B2{stroke:#0D32B2;} + .d2-2866832613 .stroke-B3{stroke:#E3E9FD;} + .d2-2866832613 .stroke-B4{stroke:#E3E9FD;} + .d2-2866832613 .stroke-B5{stroke:#EDF0FD;} + .d2-2866832613 .stroke-B6{stroke:#F7F8FE;} + .d2-2866832613 .stroke-AA2{stroke:#4A6FF3;} + .d2-2866832613 .stroke-AA4{stroke:#EDF0FD;} + .d2-2866832613 .stroke-AA5{stroke:#F7F8FE;} + .d2-2866832613 .stroke-AB4{stroke:#EDF0FD;} + .d2-2866832613 .stroke-AB5{stroke:#F7F8FE;} + .d2-2866832613 .background-color-N1{background-color:#0A0F25;} + .d2-2866832613 .background-color-N2{background-color:#676C7E;} + .d2-2866832613 .background-color-N3{background-color:#9499AB;} + .d2-2866832613 .background-color-N4{background-color:#CFD2DD;} + .d2-2866832613 .background-color-N5{background-color:#DEE1EB;} + .d2-2866832613 .background-color-N6{background-color:#EEF1F8;} + .d2-2866832613 .background-color-N7{background-color:#FFFFFF;} + .d2-2866832613 .background-color-B1{background-color:#0D32B2;} + .d2-2866832613 .background-color-B2{background-color:#0D32B2;} + .d2-2866832613 .background-color-B3{background-color:#E3E9FD;} + .d2-2866832613 .background-color-B4{background-color:#E3E9FD;} + .d2-2866832613 .background-color-B5{background-color:#EDF0FD;} + .d2-2866832613 .background-color-B6{background-color:#F7F8FE;} + .d2-2866832613 .background-color-AA2{background-color:#4A6FF3;} + .d2-2866832613 .background-color-AA4{background-color:#EDF0FD;} + .d2-2866832613 .background-color-AA5{background-color:#F7F8FE;} + .d2-2866832613 .background-color-AB4{background-color:#EDF0FD;} + .d2-2866832613 .background-color-AB5{background-color:#F7F8FE;} + .d2-2866832613 .color-N1{color:#0A0F25;} + .d2-2866832613 .color-N2{color:#676C7E;} + .d2-2866832613 .color-N3{color:#9499AB;} + .d2-2866832613 .color-N4{color:#CFD2DD;} + .d2-2866832613 .color-N5{color:#DEE1EB;} + .d2-2866832613 .color-N6{color:#EEF1F8;} + .d2-2866832613 .color-N7{color:#FFFFFF;} + .d2-2866832613 .color-B1{color:#0D32B2;} + .d2-2866832613 .color-B2{color:#0D32B2;} + .d2-2866832613 .color-B3{color:#E3E9FD;} + .d2-2866832613 .color-B4{color:#E3E9FD;} + .d2-2866832613 .color-B5{color:#EDF0FD;} + .d2-2866832613 .color-B6{color:#F7F8FE;} + .d2-2866832613 .color-AA2{color:#4A6FF3;} + .d2-2866832613 .color-AA4{color:#EDF0FD;} + .d2-2866832613 .color-AA5{color:#F7F8FE;} + .d2-2866832613 .color-AB4{color:#EDF0FD;} + .d2-2866832613 .color-AB5{color:#F7F8FE;}.appendix text.text{fill:#0A0F25}.md{--color-fg-default:#0A0F25;--color-fg-muted:#676C7E;--color-fg-subtle:#9499AB;--color-canvas-default:#FFFFFF;--color-canvas-subtle:#EEF1F8;--color-border-default:#0D32B2;--color-border-muted:#0D32B2;--color-neutral-muted:#EEF1F8;--color-accent-fg:#0D32B2;--color-accent-emphasis:#0D32B2;--color-attention-subtle:#676C7E;--color-danger-fg:red;}.sketch-overlay-B1{fill:url(#streaks-darker);mix-blend-mode:lighten}.sketch-overlay-B2{fill:url(#streaks-darker);mix-blend-mode:lighten}.sketch-overlay-B3{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-B4{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-B5{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-B6{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-AA2{fill:url(#streaks-dark);mix-blend-mode:overlay}.sketch-overlay-AA4{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-AA5{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-AB4{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-AB5{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-N1{fill:url(#streaks-darker);mix-blend-mode:lighten}.sketch-overlay-N2{fill:url(#streaks-dark);mix-blend-mode:overlay}.sketch-overlay-N3{fill:url(#streaks-normal);mix-blend-mode:color-burn}.sketch-overlay-N4{fill:url(#streaks-normal);mix-blend-mode:color-burn}.sketch-overlay-N5{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-N6{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-N7{fill:url(#streaks-bright);mix-blend-mode:darken}.light-code{display: block}.dark-code{display: none}]]>acdefgbh \ No newline at end of file diff --git a/e2etests/testdata/stable/one_three_one_container/dagre/board.exp.json b/e2etests/testdata/stable/one_three_one_container/dagre/board.exp.json index e3d622757d..a16a757ae9 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 @@ -296,10 +296,8 @@ "id": "(top2.start -> a)[0]", "src": "top2.start", "srcArrow": "none", - "srcLabel": "", "dst": "a", "dstArrow": "triangle", - "dstLabel": "", "opacity": 1, "strokeDash": 0, "strokeWidth": 2, @@ -345,10 +343,8 @@ "id": "(top2.start -> b)[0]", "src": "top2.start", "srcArrow": "none", - "srcLabel": "", "dst": "b", "dstArrow": "triangle", - "dstLabel": "", "opacity": 1, "strokeDash": 0, "strokeWidth": 2, @@ -394,10 +390,8 @@ "id": "(top2.start -> c)[0]", "src": "top2.start", "srcArrow": "none", - "srcLabel": "", "dst": "c", "dstArrow": "triangle", - "dstLabel": "", "opacity": 1, "strokeDash": 0, "strokeWidth": 2, @@ -443,10 +437,8 @@ "id": "(a -> bottom.end)[0]", "src": "a", "srcArrow": "none", - "srcLabel": "", "dst": "bottom.end", "dstArrow": "triangle", - "dstLabel": "", "opacity": 1, "strokeDash": 0, "strokeWidth": 2, @@ -492,10 +484,8 @@ "id": "(b -> bottom.end)[0]", "src": "b", "srcArrow": "none", - "srcLabel": "", "dst": "bottom.end", "dstArrow": "triangle", - "dstLabel": "", "opacity": 1, "strokeDash": 0, "strokeWidth": 2, @@ -541,10 +531,8 @@ "id": "(c -> bottom.end)[0]", "src": "c", "srcArrow": "none", - "srcLabel": "", "dst": "bottom.end", "dstArrow": "triangle", - "dstLabel": "", "opacity": 1, "strokeDash": 0, "strokeWidth": 2, 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 4a66183b49..3cb61acc53 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-386959540 .fill-N1{fill:#0A0F25;} + .d2-386959540 .fill-N2{fill:#676C7E;} + .d2-386959540 .fill-N3{fill:#9499AB;} + .d2-386959540 .fill-N4{fill:#CFD2DD;} + .d2-386959540 .fill-N5{fill:#DEE1EB;} + .d2-386959540 .fill-N6{fill:#EEF1F8;} + .d2-386959540 .fill-N7{fill:#FFFFFF;} + .d2-386959540 .fill-B1{fill:#0D32B2;} + .d2-386959540 .fill-B2{fill:#0D32B2;} + .d2-386959540 .fill-B3{fill:#E3E9FD;} + .d2-386959540 .fill-B4{fill:#E3E9FD;} + .d2-386959540 .fill-B5{fill:#EDF0FD;} + .d2-386959540 .fill-B6{fill:#F7F8FE;} + .d2-386959540 .fill-AA2{fill:#4A6FF3;} + .d2-386959540 .fill-AA4{fill:#EDF0FD;} + .d2-386959540 .fill-AA5{fill:#F7F8FE;} + .d2-386959540 .fill-AB4{fill:#EDF0FD;} + .d2-386959540 .fill-AB5{fill:#F7F8FE;} + .d2-386959540 .stroke-N1{stroke:#0A0F25;} + .d2-386959540 .stroke-N2{stroke:#676C7E;} + .d2-386959540 .stroke-N3{stroke:#9499AB;} + .d2-386959540 .stroke-N4{stroke:#CFD2DD;} + .d2-386959540 .stroke-N5{stroke:#DEE1EB;} + .d2-386959540 .stroke-N6{stroke:#EEF1F8;} + .d2-386959540 .stroke-N7{stroke:#FFFFFF;} + .d2-386959540 .stroke-B1{stroke:#0D32B2;} + .d2-386959540 .stroke-B2{stroke:#0D32B2;} + .d2-386959540 .stroke-B3{stroke:#E3E9FD;} + .d2-386959540 .stroke-B4{stroke:#E3E9FD;} + .d2-386959540 .stroke-B5{stroke:#EDF0FD;} + .d2-386959540 .stroke-B6{stroke:#F7F8FE;} + .d2-386959540 .stroke-AA2{stroke:#4A6FF3;} + .d2-386959540 .stroke-AA4{stroke:#EDF0FD;} + .d2-386959540 .stroke-AA5{stroke:#F7F8FE;} + .d2-386959540 .stroke-AB4{stroke:#EDF0FD;} + .d2-386959540 .stroke-AB5{stroke:#F7F8FE;} + .d2-386959540 .background-color-N1{background-color:#0A0F25;} + .d2-386959540 .background-color-N2{background-color:#676C7E;} + .d2-386959540 .background-color-N3{background-color:#9499AB;} + .d2-386959540 .background-color-N4{background-color:#CFD2DD;} + .d2-386959540 .background-color-N5{background-color:#DEE1EB;} + .d2-386959540 .background-color-N6{background-color:#EEF1F8;} + .d2-386959540 .background-color-N7{background-color:#FFFFFF;} + .d2-386959540 .background-color-B1{background-color:#0D32B2;} + .d2-386959540 .background-color-B2{background-color:#0D32B2;} + .d2-386959540 .background-color-B3{background-color:#E3E9FD;} + .d2-386959540 .background-color-B4{background-color:#E3E9FD;} + .d2-386959540 .background-color-B5{background-color:#EDF0FD;} + .d2-386959540 .background-color-B6{background-color:#F7F8FE;} + .d2-386959540 .background-color-AA2{background-color:#4A6FF3;} + .d2-386959540 .background-color-AA4{background-color:#EDF0FD;} + .d2-386959540 .background-color-AA5{background-color:#F7F8FE;} + .d2-386959540 .background-color-AB4{background-color:#EDF0FD;} + .d2-386959540 .background-color-AB5{background-color:#F7F8FE;} + .d2-386959540 .color-N1{color:#0A0F25;} + .d2-386959540 .color-N2{color:#676C7E;} + .d2-386959540 .color-N3{color:#9499AB;} + .d2-386959540 .color-N4{color:#CFD2DD;} + .d2-386959540 .color-N5{color:#DEE1EB;} + .d2-386959540 .color-N6{color:#EEF1F8;} + .d2-386959540 .color-N7{color:#FFFFFF;} + .d2-386959540 .color-B1{color:#0D32B2;} + .d2-386959540 .color-B2{color:#0D32B2;} + .d2-386959540 .color-B3{color:#E3E9FD;} + .d2-386959540 .color-B4{color:#E3E9FD;} + .d2-386959540 .color-B5{color:#EDF0FD;} + .d2-386959540 .color-B6{color:#F7F8FE;} + .d2-386959540 .color-AA2{color:#4A6FF3;} + .d2-386959540 .color-AA4{color:#EDF0FD;} + .d2-386959540 .color-AA5{color:#F7F8FE;} + .d2-386959540 .color-AB4{color:#EDF0FD;} + .d2-386959540 .color-AB5{color:#F7F8FE;}.appendix text.text{fill:#0A0F25}.md{--color-fg-default:#0A0F25;--color-fg-muted:#676C7E;--color-fg-subtle:#9499AB;--color-canvas-default:#FFFFFF;--color-canvas-subtle:#EEF1F8;--color-border-default:#0D32B2;--color-border-muted:#0D32B2;--color-neutral-muted:#EEF1F8;--color-accent-fg:#0D32B2;--color-accent-emphasis:#0D32B2;--color-attention-subtle:#676C7E;--color-danger-fg:red;}.sketch-overlay-B1{fill:url(#streaks-darker);mix-blend-mode:lighten}.sketch-overlay-B2{fill:url(#streaks-darker);mix-blend-mode:lighten}.sketch-overlay-B3{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-B4{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-B5{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-B6{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-AA2{fill:url(#streaks-dark);mix-blend-mode:overlay}.sketch-overlay-AA4{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-AA5{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-AB4{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-AB5{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-N1{fill:url(#streaks-darker);mix-blend-mode:lighten}.sketch-overlay-N2{fill:url(#streaks-dark);mix-blend-mode:overlay}.sketch-overlay-N3{fill:url(#streaks-normal);mix-blend-mode:color-burn}.sketch-overlay-N4{fill:url(#streaks-normal);mix-blend-mode:color-burn}.sketch-overlay-N5{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-N6{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-N7{fill:url(#streaks-bright);mix-blend-mode:darken}.light-code{display: block}.dark-code{display: none}]]>top2abcbottomstartend \ No newline at end of file diff --git a/e2etests/testdata/stable/one_three_one_container/elk/board.exp.json b/e2etests/testdata/stable/one_three_one_container/elk/board.exp.json index b8187362c8..a8953cb56e 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 @@ -296,10 +296,8 @@ "id": "(top2.start -> a)[0]", "src": "top2.start", "srcArrow": "none", - "srcLabel": "", "dst": "a", "dstArrow": "triangle", - "dstLabel": "", "opacity": 1, "strokeDash": 0, "strokeWidth": 2, @@ -344,10 +342,8 @@ "id": "(top2.start -> b)[0]", "src": "top2.start", "srcArrow": "none", - "srcLabel": "", "dst": "b", "dstArrow": "triangle", - "dstLabel": "", "opacity": 1, "strokeDash": 0, "strokeWidth": 2, @@ -384,10 +380,8 @@ "id": "(top2.start -> c)[0]", "src": "top2.start", "srcArrow": "none", - "srcLabel": "", "dst": "c", "dstArrow": "triangle", - "dstLabel": "", "opacity": 1, "strokeDash": 0, "strokeWidth": 2, @@ -432,10 +426,8 @@ "id": "(a -> bottom.end)[0]", "src": "a", "srcArrow": "none", - "srcLabel": "", "dst": "bottom.end", "dstArrow": "triangle", - "dstLabel": "", "opacity": 1, "strokeDash": 0, "strokeWidth": 2, @@ -480,10 +472,8 @@ "id": "(b -> bottom.end)[0]", "src": "b", "srcArrow": "none", - "srcLabel": "", "dst": "bottom.end", "dstArrow": "triangle", - "dstLabel": "", "opacity": 1, "strokeDash": 0, "strokeWidth": 2, @@ -520,10 +510,8 @@ "id": "(c -> bottom.end)[0]", "src": "c", "srcArrow": "none", - "srcLabel": "", "dst": "bottom.end", "dstArrow": "triangle", - "dstLabel": "", "opacity": 1, "strokeDash": 0, "strokeWidth": 2, 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 89ae5369a9..5049295a1a 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-2958267159 .fill-N1{fill:#0A0F25;} + .d2-2958267159 .fill-N2{fill:#676C7E;} + .d2-2958267159 .fill-N3{fill:#9499AB;} + .d2-2958267159 .fill-N4{fill:#CFD2DD;} + .d2-2958267159 .fill-N5{fill:#DEE1EB;} + .d2-2958267159 .fill-N6{fill:#EEF1F8;} + .d2-2958267159 .fill-N7{fill:#FFFFFF;} + .d2-2958267159 .fill-B1{fill:#0D32B2;} + .d2-2958267159 .fill-B2{fill:#0D32B2;} + .d2-2958267159 .fill-B3{fill:#E3E9FD;} + .d2-2958267159 .fill-B4{fill:#E3E9FD;} + .d2-2958267159 .fill-B5{fill:#EDF0FD;} + .d2-2958267159 .fill-B6{fill:#F7F8FE;} + .d2-2958267159 .fill-AA2{fill:#4A6FF3;} + .d2-2958267159 .fill-AA4{fill:#EDF0FD;} + .d2-2958267159 .fill-AA5{fill:#F7F8FE;} + .d2-2958267159 .fill-AB4{fill:#EDF0FD;} + .d2-2958267159 .fill-AB5{fill:#F7F8FE;} + .d2-2958267159 .stroke-N1{stroke:#0A0F25;} + .d2-2958267159 .stroke-N2{stroke:#676C7E;} + .d2-2958267159 .stroke-N3{stroke:#9499AB;} + .d2-2958267159 .stroke-N4{stroke:#CFD2DD;} + .d2-2958267159 .stroke-N5{stroke:#DEE1EB;} + .d2-2958267159 .stroke-N6{stroke:#EEF1F8;} + .d2-2958267159 .stroke-N7{stroke:#FFFFFF;} + .d2-2958267159 .stroke-B1{stroke:#0D32B2;} + .d2-2958267159 .stroke-B2{stroke:#0D32B2;} + .d2-2958267159 .stroke-B3{stroke:#E3E9FD;} + .d2-2958267159 .stroke-B4{stroke:#E3E9FD;} + .d2-2958267159 .stroke-B5{stroke:#EDF0FD;} + .d2-2958267159 .stroke-B6{stroke:#F7F8FE;} + .d2-2958267159 .stroke-AA2{stroke:#4A6FF3;} + .d2-2958267159 .stroke-AA4{stroke:#EDF0FD;} + .d2-2958267159 .stroke-AA5{stroke:#F7F8FE;} + .d2-2958267159 .stroke-AB4{stroke:#EDF0FD;} + .d2-2958267159 .stroke-AB5{stroke:#F7F8FE;} + .d2-2958267159 .background-color-N1{background-color:#0A0F25;} + .d2-2958267159 .background-color-N2{background-color:#676C7E;} + .d2-2958267159 .background-color-N3{background-color:#9499AB;} + .d2-2958267159 .background-color-N4{background-color:#CFD2DD;} + .d2-2958267159 .background-color-N5{background-color:#DEE1EB;} + .d2-2958267159 .background-color-N6{background-color:#EEF1F8;} + .d2-2958267159 .background-color-N7{background-color:#FFFFFF;} + .d2-2958267159 .background-color-B1{background-color:#0D32B2;} + .d2-2958267159 .background-color-B2{background-color:#0D32B2;} + .d2-2958267159 .background-color-B3{background-color:#E3E9FD;} + .d2-2958267159 .background-color-B4{background-color:#E3E9FD;} + .d2-2958267159 .background-color-B5{background-color:#EDF0FD;} + .d2-2958267159 .background-color-B6{background-color:#F7F8FE;} + .d2-2958267159 .background-color-AA2{background-color:#4A6FF3;} + .d2-2958267159 .background-color-AA4{background-color:#EDF0FD;} + .d2-2958267159 .background-color-AA5{background-color:#F7F8FE;} + .d2-2958267159 .background-color-AB4{background-color:#EDF0FD;} + .d2-2958267159 .background-color-AB5{background-color:#F7F8FE;} + .d2-2958267159 .color-N1{color:#0A0F25;} + .d2-2958267159 .color-N2{color:#676C7E;} + .d2-2958267159 .color-N3{color:#9499AB;} + .d2-2958267159 .color-N4{color:#CFD2DD;} + .d2-2958267159 .color-N5{color:#DEE1EB;} + .d2-2958267159 .color-N6{color:#EEF1F8;} + .d2-2958267159 .color-N7{color:#FFFFFF;} + .d2-2958267159 .color-B1{color:#0D32B2;} + .d2-2958267159 .color-B2{color:#0D32B2;} + .d2-2958267159 .color-B3{color:#E3E9FD;} + .d2-2958267159 .color-B4{color:#E3E9FD;} + .d2-2958267159 .color-B5{color:#EDF0FD;} + .d2-2958267159 .color-B6{color:#F7F8FE;} + .d2-2958267159 .color-AA2{color:#4A6FF3;} + .d2-2958267159 .color-AA4{color:#EDF0FD;} + .d2-2958267159 .color-AA5{color:#F7F8FE;} + .d2-2958267159 .color-AB4{color:#EDF0FD;} + .d2-2958267159 .color-AB5{color:#F7F8FE;}.appendix text.text{fill:#0A0F25}.md{--color-fg-default:#0A0F25;--color-fg-muted:#676C7E;--color-fg-subtle:#9499AB;--color-canvas-default:#FFFFFF;--color-canvas-subtle:#EEF1F8;--color-border-default:#0D32B2;--color-border-muted:#0D32B2;--color-neutral-muted:#EEF1F8;--color-accent-fg:#0D32B2;--color-accent-emphasis:#0D32B2;--color-attention-subtle:#676C7E;--color-danger-fg:red;}.sketch-overlay-B1{fill:url(#streaks-darker);mix-blend-mode:lighten}.sketch-overlay-B2{fill:url(#streaks-darker);mix-blend-mode:lighten}.sketch-overlay-B3{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-B4{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-B5{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-B6{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-AA2{fill:url(#streaks-dark);mix-blend-mode:overlay}.sketch-overlay-AA4{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-AA5{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-AB4{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-AB5{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-N1{fill:url(#streaks-darker);mix-blend-mode:lighten}.sketch-overlay-N2{fill:url(#streaks-dark);mix-blend-mode:overlay}.sketch-overlay-N3{fill:url(#streaks-normal);mix-blend-mode:color-burn}.sketch-overlay-N4{fill:url(#streaks-normal);mix-blend-mode:color-burn}.sketch-overlay-N5{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-N6{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-N7{fill:url(#streaks-bright);mix-blend-mode:darken}.light-code{display: block}.dark-code{display: none}]]>top2abcbottomstartend \ No newline at end of file diff --git a/e2etests/testdata/stable/overlapping_image_container_labels/dagre/board.exp.json b/e2etests/testdata/stable/overlapping_image_container_labels/dagre/board.exp.json index 28df6de41b..ef1e7adbe5 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 @@ -638,10 +638,8 @@ "id": "(root -> container.root)[0]", "src": "root", "srcArrow": "none", - "srcLabel": "", "dst": "container.root", "dstArrow": "triangle", - "dstLabel": "", "opacity": 1, "strokeDash": 0, "strokeWidth": 2, @@ -687,10 +685,8 @@ "id": "container.left2.(root -> inner.left2)[0]", "src": "container.left2.root", "srcArrow": "none", - "srcLabel": "", "dst": "container.left2.inner.left2", "dstArrow": "triangle", - "dstLabel": "", "opacity": 1, "strokeDash": 0, "strokeWidth": 2, @@ -736,10 +732,8 @@ "id": "container.left2.(root -> inner.right)[0]", "src": "container.left2.root", "srcArrow": "none", - "srcLabel": "", "dst": "container.left2.inner.right", "dstArrow": "triangle", - "dstLabel": "", "opacity": 1, "strokeDash": 0, "strokeWidth": 2, @@ -785,10 +779,8 @@ "id": "container.right.(root -> inner.left2)[0]", "src": "container.right.root", "srcArrow": "none", - "srcLabel": "", "dst": "container.right.inner.left2", "dstArrow": "triangle", - "dstLabel": "", "opacity": 1, "strokeDash": 0, "strokeWidth": 2, @@ -834,10 +826,8 @@ "id": "container.right.(root -> inner.right)[0]", "src": "container.right.root", "srcArrow": "none", - "srcLabel": "", "dst": "container.right.inner.right", "dstArrow": "triangle", - "dstLabel": "", "opacity": 1, "strokeDash": 0, "strokeWidth": 2, @@ -883,10 +873,8 @@ "id": "container.(root -> left2.root)[0]", "src": "container.root", "srcArrow": "none", - "srcLabel": "", "dst": "container.left2.root", "dstArrow": "triangle", - "dstLabel": "", "opacity": 1, "strokeDash": 0, "strokeWidth": 2, @@ -932,10 +920,8 @@ "id": "container.(root -> right.root)[0]", "src": "container.root", "srcArrow": "none", - "srcLabel": "", "dst": "container.right.root", "dstArrow": "triangle", - "dstLabel": "", "opacity": 1, "strokeDash": 0, "strokeWidth": 2, 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 56117d877a..a9334a71a6 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-1004440302 .fill-N1{fill:#0A0F25;} + .d2-1004440302 .fill-N2{fill:#676C7E;} + .d2-1004440302 .fill-N3{fill:#9499AB;} + .d2-1004440302 .fill-N4{fill:#CFD2DD;} + .d2-1004440302 .fill-N5{fill:#DEE1EB;} + .d2-1004440302 .fill-N6{fill:#EEF1F8;} + .d2-1004440302 .fill-N7{fill:#FFFFFF;} + .d2-1004440302 .fill-B1{fill:#0D32B2;} + .d2-1004440302 .fill-B2{fill:#0D32B2;} + .d2-1004440302 .fill-B3{fill:#E3E9FD;} + .d2-1004440302 .fill-B4{fill:#E3E9FD;} + .d2-1004440302 .fill-B5{fill:#EDF0FD;} + .d2-1004440302 .fill-B6{fill:#F7F8FE;} + .d2-1004440302 .fill-AA2{fill:#4A6FF3;} + .d2-1004440302 .fill-AA4{fill:#EDF0FD;} + .d2-1004440302 .fill-AA5{fill:#F7F8FE;} + .d2-1004440302 .fill-AB4{fill:#EDF0FD;} + .d2-1004440302 .fill-AB5{fill:#F7F8FE;} + .d2-1004440302 .stroke-N1{stroke:#0A0F25;} + .d2-1004440302 .stroke-N2{stroke:#676C7E;} + .d2-1004440302 .stroke-N3{stroke:#9499AB;} + .d2-1004440302 .stroke-N4{stroke:#CFD2DD;} + .d2-1004440302 .stroke-N5{stroke:#DEE1EB;} + .d2-1004440302 .stroke-N6{stroke:#EEF1F8;} + .d2-1004440302 .stroke-N7{stroke:#FFFFFF;} + .d2-1004440302 .stroke-B1{stroke:#0D32B2;} + .d2-1004440302 .stroke-B2{stroke:#0D32B2;} + .d2-1004440302 .stroke-B3{stroke:#E3E9FD;} + .d2-1004440302 .stroke-B4{stroke:#E3E9FD;} + .d2-1004440302 .stroke-B5{stroke:#EDF0FD;} + .d2-1004440302 .stroke-B6{stroke:#F7F8FE;} + .d2-1004440302 .stroke-AA2{stroke:#4A6FF3;} + .d2-1004440302 .stroke-AA4{stroke:#EDF0FD;} + .d2-1004440302 .stroke-AA5{stroke:#F7F8FE;} + .d2-1004440302 .stroke-AB4{stroke:#EDF0FD;} + .d2-1004440302 .stroke-AB5{stroke:#F7F8FE;} + .d2-1004440302 .background-color-N1{background-color:#0A0F25;} + .d2-1004440302 .background-color-N2{background-color:#676C7E;} + .d2-1004440302 .background-color-N3{background-color:#9499AB;} + .d2-1004440302 .background-color-N4{background-color:#CFD2DD;} + .d2-1004440302 .background-color-N5{background-color:#DEE1EB;} + .d2-1004440302 .background-color-N6{background-color:#EEF1F8;} + .d2-1004440302 .background-color-N7{background-color:#FFFFFF;} + .d2-1004440302 .background-color-B1{background-color:#0D32B2;} + .d2-1004440302 .background-color-B2{background-color:#0D32B2;} + .d2-1004440302 .background-color-B3{background-color:#E3E9FD;} + .d2-1004440302 .background-color-B4{background-color:#E3E9FD;} + .d2-1004440302 .background-color-B5{background-color:#EDF0FD;} + .d2-1004440302 .background-color-B6{background-color:#F7F8FE;} + .d2-1004440302 .background-color-AA2{background-color:#4A6FF3;} + .d2-1004440302 .background-color-AA4{background-color:#EDF0FD;} + .d2-1004440302 .background-color-AA5{background-color:#F7F8FE;} + .d2-1004440302 .background-color-AB4{background-color:#EDF0FD;} + .d2-1004440302 .background-color-AB5{background-color:#F7F8FE;} + .d2-1004440302 .color-N1{color:#0A0F25;} + .d2-1004440302 .color-N2{color:#676C7E;} + .d2-1004440302 .color-N3{color:#9499AB;} + .d2-1004440302 .color-N4{color:#CFD2DD;} + .d2-1004440302 .color-N5{color:#DEE1EB;} + .d2-1004440302 .color-N6{color:#EEF1F8;} + .d2-1004440302 .color-N7{color:#FFFFFF;} + .d2-1004440302 .color-B1{color:#0D32B2;} + .d2-1004440302 .color-B2{color:#0D32B2;} + .d2-1004440302 .color-B3{color:#E3E9FD;} + .d2-1004440302 .color-B4{color:#E3E9FD;} + .d2-1004440302 .color-B5{color:#EDF0FD;} + .d2-1004440302 .color-B6{color:#F7F8FE;} + .d2-1004440302 .color-AA2{color:#4A6FF3;} + .d2-1004440302 .color-AA4{color:#EDF0FD;} + .d2-1004440302 .color-AA5{color:#F7F8FE;} + .d2-1004440302 .color-AB4{color:#EDF0FD;} + .d2-1004440302 .color-AB5{color:#F7F8FE;}.appendix text.text{fill:#0A0F25}.md{--color-fg-default:#0A0F25;--color-fg-muted:#676C7E;--color-fg-subtle:#9499AB;--color-canvas-default:#FFFFFF;--color-canvas-subtle:#EEF1F8;--color-border-default:#0D32B2;--color-border-muted:#0D32B2;--color-neutral-muted:#EEF1F8;--color-accent-fg:#0D32B2;--color-accent-emphasis:#0D32B2;--color-attention-subtle:#676C7E;--color-danger-fg:red;}.sketch-overlay-B1{fill:url(#streaks-darker);mix-blend-mode:lighten}.sketch-overlay-B2{fill:url(#streaks-darker);mix-blend-mode:lighten}.sketch-overlay-B3{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-B4{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-B5{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-B6{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-AA2{fill:url(#streaks-dark);mix-blend-mode:overlay}.sketch-overlay-AA4{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-AA5{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-AB4{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-AB5{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-N1{fill:url(#streaks-darker);mix-blend-mode:lighten}.sketch-overlay-N2{fill:url(#streaks-dark);mix-blend-mode:overlay}.sketch-overlay-N3{fill:url(#streaks-normal);mix-blend-mode:color-burn}.sketch-overlay-N4{fill:url(#streaks-normal);mix-blend-mode:color-burn}.sketch-overlay-N5{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-N6{fill:url(#streaks-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 3a1b6921d1..e02ff2a4f5 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 @@ -638,10 +638,8 @@ "id": "(root -> container.root)[0]", "src": "root", "srcArrow": "none", - "srcLabel": "", "dst": "container.root", "dstArrow": "triangle", - "dstLabel": "", "opacity": 1, "strokeDash": 0, "strokeWidth": 2, @@ -678,10 +676,8 @@ "id": "container.left2.(root -> inner.left2)[0]", "src": "container.left2.root", "srcArrow": "none", - "srcLabel": "", "dst": "container.left2.inner.left2", "dstArrow": "triangle", - "dstLabel": "", "opacity": 1, "strokeDash": 0, "strokeWidth": 2, @@ -726,10 +722,8 @@ "id": "container.left2.(root -> inner.right)[0]", "src": "container.left2.root", "srcArrow": "none", - "srcLabel": "", "dst": "container.left2.inner.right", "dstArrow": "triangle", - "dstLabel": "", "opacity": 1, "strokeDash": 0, "strokeWidth": 2, @@ -774,10 +768,8 @@ "id": "container.right.(root -> inner.left2)[0]", "src": "container.right.root", "srcArrow": "none", - "srcLabel": "", "dst": "container.right.inner.left2", "dstArrow": "triangle", - "dstLabel": "", "opacity": 1, "strokeDash": 0, "strokeWidth": 2, @@ -822,10 +814,8 @@ "id": "container.right.(root -> inner.right)[0]", "src": "container.right.root", "srcArrow": "none", - "srcLabel": "", "dst": "container.right.inner.right", "dstArrow": "triangle", - "dstLabel": "", "opacity": 1, "strokeDash": 0, "strokeWidth": 2, @@ -870,10 +860,8 @@ "id": "container.(root -> left2.root)[0]", "src": "container.root", "srcArrow": "none", - "srcLabel": "", "dst": "container.left2.root", "dstArrow": "triangle", - "dstLabel": "", "opacity": 1, "strokeDash": 0, "strokeWidth": 2, @@ -918,10 +906,8 @@ "id": "container.(root -> right.root)[0]", "src": "container.root", "srcArrow": "none", - "srcLabel": "", "dst": "container.right.root", "dstArrow": "triangle", - "dstLabel": "", "opacity": 1, "strokeDash": 0, "strokeWidth": 2, 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 17b856ddbe..6431fd8ef2 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-1647614742 .fill-N1{fill:#0A0F25;} + .d2-1647614742 .fill-N2{fill:#676C7E;} + .d2-1647614742 .fill-N3{fill:#9499AB;} + .d2-1647614742 .fill-N4{fill:#CFD2DD;} + .d2-1647614742 .fill-N5{fill:#DEE1EB;} + .d2-1647614742 .fill-N6{fill:#EEF1F8;} + .d2-1647614742 .fill-N7{fill:#FFFFFF;} + .d2-1647614742 .fill-B1{fill:#0D32B2;} + .d2-1647614742 .fill-B2{fill:#0D32B2;} + .d2-1647614742 .fill-B3{fill:#E3E9FD;} + .d2-1647614742 .fill-B4{fill:#E3E9FD;} + .d2-1647614742 .fill-B5{fill:#EDF0FD;} + .d2-1647614742 .fill-B6{fill:#F7F8FE;} + .d2-1647614742 .fill-AA2{fill:#4A6FF3;} + .d2-1647614742 .fill-AA4{fill:#EDF0FD;} + .d2-1647614742 .fill-AA5{fill:#F7F8FE;} + .d2-1647614742 .fill-AB4{fill:#EDF0FD;} + .d2-1647614742 .fill-AB5{fill:#F7F8FE;} + .d2-1647614742 .stroke-N1{stroke:#0A0F25;} + .d2-1647614742 .stroke-N2{stroke:#676C7E;} + .d2-1647614742 .stroke-N3{stroke:#9499AB;} + .d2-1647614742 .stroke-N4{stroke:#CFD2DD;} + .d2-1647614742 .stroke-N5{stroke:#DEE1EB;} + .d2-1647614742 .stroke-N6{stroke:#EEF1F8;} + .d2-1647614742 .stroke-N7{stroke:#FFFFFF;} + .d2-1647614742 .stroke-B1{stroke:#0D32B2;} + .d2-1647614742 .stroke-B2{stroke:#0D32B2;} + .d2-1647614742 .stroke-B3{stroke:#E3E9FD;} + .d2-1647614742 .stroke-B4{stroke:#E3E9FD;} + .d2-1647614742 .stroke-B5{stroke:#EDF0FD;} + .d2-1647614742 .stroke-B6{stroke:#F7F8FE;} + .d2-1647614742 .stroke-AA2{stroke:#4A6FF3;} + .d2-1647614742 .stroke-AA4{stroke:#EDF0FD;} + .d2-1647614742 .stroke-AA5{stroke:#F7F8FE;} + .d2-1647614742 .stroke-AB4{stroke:#EDF0FD;} + .d2-1647614742 .stroke-AB5{stroke:#F7F8FE;} + .d2-1647614742 .background-color-N1{background-color:#0A0F25;} + .d2-1647614742 .background-color-N2{background-color:#676C7E;} + .d2-1647614742 .background-color-N3{background-color:#9499AB;} + .d2-1647614742 .background-color-N4{background-color:#CFD2DD;} + .d2-1647614742 .background-color-N5{background-color:#DEE1EB;} + .d2-1647614742 .background-color-N6{background-color:#EEF1F8;} + .d2-1647614742 .background-color-N7{background-color:#FFFFFF;} + .d2-1647614742 .background-color-B1{background-color:#0D32B2;} + .d2-1647614742 .background-color-B2{background-color:#0D32B2;} + .d2-1647614742 .background-color-B3{background-color:#E3E9FD;} + .d2-1647614742 .background-color-B4{background-color:#E3E9FD;} + .d2-1647614742 .background-color-B5{background-color:#EDF0FD;} + .d2-1647614742 .background-color-B6{background-color:#F7F8FE;} + .d2-1647614742 .background-color-AA2{background-color:#4A6FF3;} + .d2-1647614742 .background-color-AA4{background-color:#EDF0FD;} + .d2-1647614742 .background-color-AA5{background-color:#F7F8FE;} + .d2-1647614742 .background-color-AB4{background-color:#EDF0FD;} + .d2-1647614742 .background-color-AB5{background-color:#F7F8FE;} + .d2-1647614742 .color-N1{color:#0A0F25;} + .d2-1647614742 .color-N2{color:#676C7E;} + .d2-1647614742 .color-N3{color:#9499AB;} + .d2-1647614742 .color-N4{color:#CFD2DD;} + .d2-1647614742 .color-N5{color:#DEE1EB;} + .d2-1647614742 .color-N6{color:#EEF1F8;} + .d2-1647614742 .color-N7{color:#FFFFFF;} + .d2-1647614742 .color-B1{color:#0D32B2;} + .d2-1647614742 .color-B2{color:#0D32B2;} + .d2-1647614742 .color-B3{color:#E3E9FD;} + .d2-1647614742 .color-B4{color:#E3E9FD;} + .d2-1647614742 .color-B5{color:#EDF0FD;} + .d2-1647614742 .color-B6{color:#F7F8FE;} + .d2-1647614742 .color-AA2{color:#4A6FF3;} + .d2-1647614742 .color-AA4{color:#EDF0FD;} + .d2-1647614742 .color-AA5{color:#F7F8FE;} + .d2-1647614742 .color-AB4{color:#EDF0FD;} + .d2-1647614742 .color-AB5{color:#F7F8FE;}.appendix text.text{fill:#0A0F25}.md{--color-fg-default:#0A0F25;--color-fg-muted:#676C7E;--color-fg-subtle:#9499AB;--color-canvas-default:#FFFFFF;--color-canvas-subtle:#EEF1F8;--color-border-default:#0D32B2;--color-border-muted:#0D32B2;--color-neutral-muted:#EEF1F8;--color-accent-fg:#0D32B2;--color-accent-emphasis:#0D32B2;--color-attention-subtle:#676C7E;--color-danger-fg:red;}.sketch-overlay-B1{fill:url(#streaks-darker);mix-blend-mode:lighten}.sketch-overlay-B2{fill:url(#streaks-darker);mix-blend-mode:lighten}.sketch-overlay-B3{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-B4{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-B5{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-B6{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-AA2{fill:url(#streaks-dark);mix-blend-mode:overlay}.sketch-overlay-AA4{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-AA5{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-AB4{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-AB5{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-N1{fill:url(#streaks-darker);mix-blend-mode:lighten}.sketch-overlay-N2{fill:url(#streaks-dark);mix-blend-mode:overlay}.sketch-overlay-N3{fill:url(#streaks-normal);mix-blend-mode:color-burn}.sketch-overlay-N4{fill:url(#streaks-normal);mix-blend-mode:color-burn}.sketch-overlay-N5{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-N6{fill:url(#streaks-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 92c51dbf8d..74eaf40777 100644 --- a/e2etests/testdata/stable/p/dagre/board.exp.json +++ b/e2etests/testdata/stable/p/dagre/board.exp.json @@ -131,10 +131,8 @@ "id": "(a -> md)[0]", "src": "a", "srcArrow": "none", - "srcLabel": "", "dst": "md", "dstArrow": "triangle", - "dstLabel": "", "opacity": 1, "strokeDash": 0, "strokeWidth": 2, @@ -180,10 +178,8 @@ "id": "(md -> b)[0]", "src": "md", "srcArrow": "none", - "srcLabel": "", "dst": "b", "dstArrow": "triangle", - "dstLabel": "", "opacity": 1, "strokeDash": 0, "strokeWidth": 2, diff --git a/e2etests/testdata/stable/p/dagre/sketch.exp.svg b/e2etests/testdata/stable/p/dagre/sketch.exp.svg index 2abc9174d9..38a94a4799 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
    \ No newline at end of file diff --git a/e2etests/testdata/stable/p/elk/board.exp.json b/e2etests/testdata/stable/p/elk/board.exp.json index 3d6181973a..73da203185 100644 --- a/e2etests/testdata/stable/p/elk/board.exp.json +++ b/e2etests/testdata/stable/p/elk/board.exp.json @@ -131,10 +131,8 @@ "id": "(a -> md)[0]", "src": "a", "srcArrow": "none", - "srcLabel": "", "dst": "md", "dstArrow": "triangle", - "dstLabel": "", "opacity": 1, "strokeDash": 0, "strokeWidth": 2, @@ -171,10 +169,8 @@ "id": "(md -> b)[0]", "src": "md", "srcArrow": "none", - "srcLabel": "", "dst": "b", "dstArrow": "triangle", - "dstLabel": "", "opacity": 1, "strokeDash": 0, "strokeWidth": 2, diff --git a/e2etests/testdata/stable/p/elk/sketch.exp.svg b/e2etests/testdata/stable/p/elk/sketch.exp.svg index af846f378e..bb407aa690 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
    \ No newline at end of file diff --git a/e2etests/testdata/stable/pre/dagre/board.exp.json b/e2etests/testdata/stable/pre/dagre/board.exp.json index a564f0ea68..d272f4e630 100644 --- a/e2etests/testdata/stable/pre/dagre/board.exp.json +++ b/e2etests/testdata/stable/pre/dagre/board.exp.json @@ -131,10 +131,8 @@ "id": "(a -> md)[0]", "src": "a", "srcArrow": "none", - "srcLabel": "", "dst": "md", "dstArrow": "triangle", - "dstLabel": "", "opacity": 1, "strokeDash": 0, "strokeWidth": 2, @@ -180,10 +178,8 @@ "id": "(md -> b)[0]", "src": "md", "srcArrow": "none", - "srcLabel": "", "dst": "b", "dstArrow": "triangle", - "dstLabel": "", "opacity": 1, "strokeDash": 0, "strokeWidth": 2, diff --git a/e2etests/testdata/stable/pre/dagre/sketch.exp.svg b/e2etests/testdata/stable/pre/dagre/sketch.exp.svg index ad9ef1748a..344e83a603 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
    \ No newline at end of file diff --git a/e2etests/testdata/stable/pre/elk/board.exp.json b/e2etests/testdata/stable/pre/elk/board.exp.json index 49910b77c4..fecef5b092 100644 --- a/e2etests/testdata/stable/pre/elk/board.exp.json +++ b/e2etests/testdata/stable/pre/elk/board.exp.json @@ -131,10 +131,8 @@ "id": "(a -> md)[0]", "src": "a", "srcArrow": "none", - "srcLabel": "", "dst": "md", "dstArrow": "triangle", - "dstLabel": "", "opacity": 1, "strokeDash": 0, "strokeWidth": 2, @@ -171,10 +169,8 @@ "id": "(md -> b)[0]", "src": "md", "srcArrow": "none", - "srcLabel": "", "dst": "b", "dstArrow": "triangle", - "dstLabel": "", "opacity": 1, "strokeDash": 0, "strokeWidth": 2, diff --git a/e2etests/testdata/stable/pre/elk/sketch.exp.svg b/e2etests/testdata/stable/pre/elk/sketch.exp.svg index 89f8a80bf5..1fb2014f89 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
    \ No newline at end of file diff --git a/e2etests/testdata/stable/self-referencing/dagre/board.exp.json b/e2etests/testdata/stable/self-referencing/dagre/board.exp.json index f0bffef02d..9ef678c797 100644 --- a/e2etests/testdata/stable/self-referencing/dagre/board.exp.json +++ b/e2etests/testdata/stable/self-referencing/dagre/board.exp.json @@ -132,10 +132,8 @@ "id": "(x -> x)[0]", "src": "x", "srcArrow": "none", - "srcLabel": "", "dst": "x", "dstArrow": "triangle", - "dstLabel": "", "opacity": 1, "strokeDash": 0, "strokeWidth": 2, @@ -217,10 +215,8 @@ "id": "(x -> x)[1]", "src": "x", "srcArrow": "none", - "srcLabel": "", "dst": "x", "dstArrow": "triangle", - "dstLabel": "", "opacity": 1, "strokeDash": 0, "strokeWidth": 2, @@ -302,10 +298,8 @@ "id": "(x -> y)[0]", "src": "x", "srcArrow": "none", - "srcLabel": "", "dst": "y", "dstArrow": "triangle", - "dstLabel": "", "opacity": 1, "strokeDash": 0, "strokeWidth": 2, @@ -351,10 +345,8 @@ "id": "(z -> y)[0]", "src": "z", "srcArrow": "none", - "srcLabel": "", "dst": "y", "dstArrow": "triangle", - "dstLabel": "", "opacity": 1, "strokeDash": 0, "strokeWidth": 2, @@ -400,10 +392,8 @@ "id": "(z -> z)[0]", "src": "z", "srcArrow": "none", - "srcLabel": "", "dst": "z", "dstArrow": "triangle", - "dstLabel": "", "opacity": 1, "strokeDash": 0, "strokeWidth": 2, diff --git a/e2etests/testdata/stable/self-referencing/dagre/sketch.exp.svg b/e2etests/testdata/stable/self-referencing/dagre/sketch.exp.svg index bf96491ff6..2c8cf38c5b 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-2469920120 .fill-N1{fill:#0A0F25;} + .d2-2469920120 .fill-N2{fill:#676C7E;} + .d2-2469920120 .fill-N3{fill:#9499AB;} + .d2-2469920120 .fill-N4{fill:#CFD2DD;} + .d2-2469920120 .fill-N5{fill:#DEE1EB;} + .d2-2469920120 .fill-N6{fill:#EEF1F8;} + .d2-2469920120 .fill-N7{fill:#FFFFFF;} + .d2-2469920120 .fill-B1{fill:#0D32B2;} + .d2-2469920120 .fill-B2{fill:#0D32B2;} + .d2-2469920120 .fill-B3{fill:#E3E9FD;} + .d2-2469920120 .fill-B4{fill:#E3E9FD;} + .d2-2469920120 .fill-B5{fill:#EDF0FD;} + .d2-2469920120 .fill-B6{fill:#F7F8FE;} + .d2-2469920120 .fill-AA2{fill:#4A6FF3;} + .d2-2469920120 .fill-AA4{fill:#EDF0FD;} + .d2-2469920120 .fill-AA5{fill:#F7F8FE;} + .d2-2469920120 .fill-AB4{fill:#EDF0FD;} + .d2-2469920120 .fill-AB5{fill:#F7F8FE;} + .d2-2469920120 .stroke-N1{stroke:#0A0F25;} + .d2-2469920120 .stroke-N2{stroke:#676C7E;} + .d2-2469920120 .stroke-N3{stroke:#9499AB;} + .d2-2469920120 .stroke-N4{stroke:#CFD2DD;} + .d2-2469920120 .stroke-N5{stroke:#DEE1EB;} + .d2-2469920120 .stroke-N6{stroke:#EEF1F8;} + .d2-2469920120 .stroke-N7{stroke:#FFFFFF;} + .d2-2469920120 .stroke-B1{stroke:#0D32B2;} + .d2-2469920120 .stroke-B2{stroke:#0D32B2;} + .d2-2469920120 .stroke-B3{stroke:#E3E9FD;} + .d2-2469920120 .stroke-B4{stroke:#E3E9FD;} + .d2-2469920120 .stroke-B5{stroke:#EDF0FD;} + .d2-2469920120 .stroke-B6{stroke:#F7F8FE;} + .d2-2469920120 .stroke-AA2{stroke:#4A6FF3;} + .d2-2469920120 .stroke-AA4{stroke:#EDF0FD;} + .d2-2469920120 .stroke-AA5{stroke:#F7F8FE;} + .d2-2469920120 .stroke-AB4{stroke:#EDF0FD;} + .d2-2469920120 .stroke-AB5{stroke:#F7F8FE;} + .d2-2469920120 .background-color-N1{background-color:#0A0F25;} + .d2-2469920120 .background-color-N2{background-color:#676C7E;} + .d2-2469920120 .background-color-N3{background-color:#9499AB;} + .d2-2469920120 .background-color-N4{background-color:#CFD2DD;} + .d2-2469920120 .background-color-N5{background-color:#DEE1EB;} + .d2-2469920120 .background-color-N6{background-color:#EEF1F8;} + .d2-2469920120 .background-color-N7{background-color:#FFFFFF;} + .d2-2469920120 .background-color-B1{background-color:#0D32B2;} + .d2-2469920120 .background-color-B2{background-color:#0D32B2;} + .d2-2469920120 .background-color-B3{background-color:#E3E9FD;} + .d2-2469920120 .background-color-B4{background-color:#E3E9FD;} + .d2-2469920120 .background-color-B5{background-color:#EDF0FD;} + .d2-2469920120 .background-color-B6{background-color:#F7F8FE;} + .d2-2469920120 .background-color-AA2{background-color:#4A6FF3;} + .d2-2469920120 .background-color-AA4{background-color:#EDF0FD;} + .d2-2469920120 .background-color-AA5{background-color:#F7F8FE;} + .d2-2469920120 .background-color-AB4{background-color:#EDF0FD;} + .d2-2469920120 .background-color-AB5{background-color:#F7F8FE;} + .d2-2469920120 .color-N1{color:#0A0F25;} + .d2-2469920120 .color-N2{color:#676C7E;} + .d2-2469920120 .color-N3{color:#9499AB;} + .d2-2469920120 .color-N4{color:#CFD2DD;} + .d2-2469920120 .color-N5{color:#DEE1EB;} + .d2-2469920120 .color-N6{color:#EEF1F8;} + .d2-2469920120 .color-N7{color:#FFFFFF;} + .d2-2469920120 .color-B1{color:#0D32B2;} + .d2-2469920120 .color-B2{color:#0D32B2;} + .d2-2469920120 .color-B3{color:#E3E9FD;} + .d2-2469920120 .color-B4{color:#E3E9FD;} + .d2-2469920120 .color-B5{color:#EDF0FD;} + .d2-2469920120 .color-B6{color:#F7F8FE;} + .d2-2469920120 .color-AA2{color:#4A6FF3;} + .d2-2469920120 .color-AA4{color:#EDF0FD;} + .d2-2469920120 .color-AA5{color:#F7F8FE;} + .d2-2469920120 .color-AB4{color:#EDF0FD;} + .d2-2469920120 .color-AB5{color:#F7F8FE;}.appendix text.text{fill:#0A0F25}.md{--color-fg-default:#0A0F25;--color-fg-muted:#676C7E;--color-fg-subtle:#9499AB;--color-canvas-default:#FFFFFF;--color-canvas-subtle:#EEF1F8;--color-border-default:#0D32B2;--color-border-muted:#0D32B2;--color-neutral-muted:#EEF1F8;--color-accent-fg:#0D32B2;--color-accent-emphasis:#0D32B2;--color-attention-subtle:#676C7E;--color-danger-fg:red;}.sketch-overlay-B1{fill:url(#streaks-darker);mix-blend-mode:lighten}.sketch-overlay-B2{fill:url(#streaks-darker);mix-blend-mode:lighten}.sketch-overlay-B3{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-B4{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-B5{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-B6{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-AA2{fill:url(#streaks-dark);mix-blend-mode:overlay}.sketch-overlay-AA4{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-AA5{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-AB4{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-AB5{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-N1{fill:url(#streaks-darker);mix-blend-mode:lighten}.sketch-overlay-N2{fill:url(#streaks-dark);mix-blend-mode:overlay}.sketch-overlay-N3{fill:url(#streaks-normal);mix-blend-mode:color-burn}.sketch-overlay-N4{fill:url(#streaks-normal);mix-blend-mode:color-burn}.sketch-overlay-N5{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-N6{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-N7{fill:url(#streaks-bright);mix-blend-mode:darken}.light-code{display: block}.dark-code{display: none}]]>xyz hello \ No newline at end of file diff --git a/e2etests/testdata/stable/self-referencing/elk/board.exp.json b/e2etests/testdata/stable/self-referencing/elk/board.exp.json index 6d7b33a304..29a40166da 100644 --- a/e2etests/testdata/stable/self-referencing/elk/board.exp.json +++ b/e2etests/testdata/stable/self-referencing/elk/board.exp.json @@ -132,10 +132,8 @@ "id": "(x -> x)[0]", "src": "x", "srcArrow": "none", - "srcLabel": "", "dst": "x", "dstArrow": "triangle", - "dstLabel": "", "opacity": 1, "strokeDash": 0, "strokeWidth": 2, @@ -180,10 +178,8 @@ "id": "(x -> x)[1]", "src": "x", "srcArrow": "none", - "srcLabel": "", "dst": "x", "dstArrow": "triangle", - "dstLabel": "", "opacity": 1, "strokeDash": 0, "strokeWidth": 2, @@ -228,10 +224,8 @@ "id": "(x -> y)[0]", "src": "x", "srcArrow": "none", - "srcLabel": "", "dst": "y", "dstArrow": "triangle", - "dstLabel": "", "opacity": 1, "strokeDash": 0, "strokeWidth": 2, @@ -276,10 +270,8 @@ "id": "(z -> y)[0]", "src": "z", "srcArrow": "none", - "srcLabel": "", "dst": "y", "dstArrow": "triangle", - "dstLabel": "", "opacity": 1, "strokeDash": 0, "strokeWidth": 2, @@ -324,10 +316,8 @@ "id": "(z -> z)[0]", "src": "z", "srcArrow": "none", - "srcLabel": "", "dst": "z", "dstArrow": "triangle", - "dstLabel": "", "opacity": 1, "strokeDash": 0, "strokeWidth": 2, diff --git a/e2etests/testdata/stable/self-referencing/elk/sketch.exp.svg b/e2etests/testdata/stable/self-referencing/elk/sketch.exp.svg index 10ec4e0f17..f907d5b230 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-1823189575 .fill-N1{fill:#0A0F25;} + .d2-1823189575 .fill-N2{fill:#676C7E;} + .d2-1823189575 .fill-N3{fill:#9499AB;} + .d2-1823189575 .fill-N4{fill:#CFD2DD;} + .d2-1823189575 .fill-N5{fill:#DEE1EB;} + .d2-1823189575 .fill-N6{fill:#EEF1F8;} + .d2-1823189575 .fill-N7{fill:#FFFFFF;} + .d2-1823189575 .fill-B1{fill:#0D32B2;} + .d2-1823189575 .fill-B2{fill:#0D32B2;} + .d2-1823189575 .fill-B3{fill:#E3E9FD;} + .d2-1823189575 .fill-B4{fill:#E3E9FD;} + .d2-1823189575 .fill-B5{fill:#EDF0FD;} + .d2-1823189575 .fill-B6{fill:#F7F8FE;} + .d2-1823189575 .fill-AA2{fill:#4A6FF3;} + .d2-1823189575 .fill-AA4{fill:#EDF0FD;} + .d2-1823189575 .fill-AA5{fill:#F7F8FE;} + .d2-1823189575 .fill-AB4{fill:#EDF0FD;} + .d2-1823189575 .fill-AB5{fill:#F7F8FE;} + .d2-1823189575 .stroke-N1{stroke:#0A0F25;} + .d2-1823189575 .stroke-N2{stroke:#676C7E;} + .d2-1823189575 .stroke-N3{stroke:#9499AB;} + .d2-1823189575 .stroke-N4{stroke:#CFD2DD;} + .d2-1823189575 .stroke-N5{stroke:#DEE1EB;} + .d2-1823189575 .stroke-N6{stroke:#EEF1F8;} + .d2-1823189575 .stroke-N7{stroke:#FFFFFF;} + .d2-1823189575 .stroke-B1{stroke:#0D32B2;} + .d2-1823189575 .stroke-B2{stroke:#0D32B2;} + .d2-1823189575 .stroke-B3{stroke:#E3E9FD;} + .d2-1823189575 .stroke-B4{stroke:#E3E9FD;} + .d2-1823189575 .stroke-B5{stroke:#EDF0FD;} + .d2-1823189575 .stroke-B6{stroke:#F7F8FE;} + .d2-1823189575 .stroke-AA2{stroke:#4A6FF3;} + .d2-1823189575 .stroke-AA4{stroke:#EDF0FD;} + .d2-1823189575 .stroke-AA5{stroke:#F7F8FE;} + .d2-1823189575 .stroke-AB4{stroke:#EDF0FD;} + .d2-1823189575 .stroke-AB5{stroke:#F7F8FE;} + .d2-1823189575 .background-color-N1{background-color:#0A0F25;} + .d2-1823189575 .background-color-N2{background-color:#676C7E;} + .d2-1823189575 .background-color-N3{background-color:#9499AB;} + .d2-1823189575 .background-color-N4{background-color:#CFD2DD;} + .d2-1823189575 .background-color-N5{background-color:#DEE1EB;} + .d2-1823189575 .background-color-N6{background-color:#EEF1F8;} + .d2-1823189575 .background-color-N7{background-color:#FFFFFF;} + .d2-1823189575 .background-color-B1{background-color:#0D32B2;} + .d2-1823189575 .background-color-B2{background-color:#0D32B2;} + .d2-1823189575 .background-color-B3{background-color:#E3E9FD;} + .d2-1823189575 .background-color-B4{background-color:#E3E9FD;} + .d2-1823189575 .background-color-B5{background-color:#EDF0FD;} + .d2-1823189575 .background-color-B6{background-color:#F7F8FE;} + .d2-1823189575 .background-color-AA2{background-color:#4A6FF3;} + .d2-1823189575 .background-color-AA4{background-color:#EDF0FD;} + .d2-1823189575 .background-color-AA5{background-color:#F7F8FE;} + .d2-1823189575 .background-color-AB4{background-color:#EDF0FD;} + .d2-1823189575 .background-color-AB5{background-color:#F7F8FE;} + .d2-1823189575 .color-N1{color:#0A0F25;} + .d2-1823189575 .color-N2{color:#676C7E;} + .d2-1823189575 .color-N3{color:#9499AB;} + .d2-1823189575 .color-N4{color:#CFD2DD;} + .d2-1823189575 .color-N5{color:#DEE1EB;} + .d2-1823189575 .color-N6{color:#EEF1F8;} + .d2-1823189575 .color-N7{color:#FFFFFF;} + .d2-1823189575 .color-B1{color:#0D32B2;} + .d2-1823189575 .color-B2{color:#0D32B2;} + .d2-1823189575 .color-B3{color:#E3E9FD;} + .d2-1823189575 .color-B4{color:#E3E9FD;} + .d2-1823189575 .color-B5{color:#EDF0FD;} + .d2-1823189575 .color-B6{color:#F7F8FE;} + .d2-1823189575 .color-AA2{color:#4A6FF3;} + .d2-1823189575 .color-AA4{color:#EDF0FD;} + .d2-1823189575 .color-AA5{color:#F7F8FE;} + .d2-1823189575 .color-AB4{color:#EDF0FD;} + .d2-1823189575 .color-AB5{color:#F7F8FE;}.appendix text.text{fill:#0A0F25}.md{--color-fg-default:#0A0F25;--color-fg-muted:#676C7E;--color-fg-subtle:#9499AB;--color-canvas-default:#FFFFFF;--color-canvas-subtle:#EEF1F8;--color-border-default:#0D32B2;--color-border-muted:#0D32B2;--color-neutral-muted:#EEF1F8;--color-accent-fg:#0D32B2;--color-accent-emphasis:#0D32B2;--color-attention-subtle:#676C7E;--color-danger-fg:red;}.sketch-overlay-B1{fill:url(#streaks-darker);mix-blend-mode:lighten}.sketch-overlay-B2{fill:url(#streaks-darker);mix-blend-mode:lighten}.sketch-overlay-B3{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-B4{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-B5{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-B6{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-AA2{fill:url(#streaks-dark);mix-blend-mode:overlay}.sketch-overlay-AA4{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-AA5{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-AB4{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-AB5{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-N1{fill:url(#streaks-darker);mix-blend-mode:lighten}.sketch-overlay-N2{fill:url(#streaks-dark);mix-blend-mode:overlay}.sketch-overlay-N3{fill:url(#streaks-normal);mix-blend-mode:color-burn}.sketch-overlay-N4{fill:url(#streaks-normal);mix-blend-mode:color-burn}.sketch-overlay-N5{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-N6{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-N7{fill:url(#streaks-bright);mix-blend-mode:darken}.light-code{display: block}.dark-code{display: none}]]>xyz hello \ No newline at end of file diff --git a/e2etests/testdata/stable/sequence-inter-span-self/dagre/board.exp.json b/e2etests/testdata/stable/sequence-inter-span-self/dagre/board.exp.json index f531325564..1a4753593c 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 @@ -171,10 +171,8 @@ "id": "(a.sp1 -> b)[0]", "src": "a.sp1", "srcArrow": "none", - "srcLabel": "", "dst": "b", "dstArrow": "triangle", - "dstLabel": "", "opacity": 1, "strokeDash": 0, "strokeWidth": 2, @@ -211,10 +209,8 @@ "id": "a.(sp1 -> sp2)[0]", "src": "a.sp1", "srcArrow": "none", - "srcLabel": "", "dst": "a.sp2", "dstArrow": "triangle", - "dstLabel": "", "opacity": 1, "strokeDash": 0, "strokeWidth": 2, @@ -259,10 +255,8 @@ "id": "(a.sp2 -> b)[0]", "src": "a.sp2", "srcArrow": "none", - "srcLabel": "", "dst": "b", "dstArrow": "triangle", - "dstLabel": "", "opacity": 1, "strokeDash": 0, "strokeWidth": 2, @@ -299,10 +293,8 @@ "id": "(a -- )[0]", "src": "a", "srcArrow": "none", - "srcLabel": "", "dst": "a-lifeline-end-2251863791", "dstArrow": "none", - "dstLabel": "", "opacity": 1, "strokeDash": 6, "strokeWidth": 2, @@ -339,10 +331,8 @@ "id": "(b -- )[0]", "src": "b", "srcArrow": "none", - "srcLabel": "", "dst": "b-lifeline-end-668380428", "dstArrow": "none", - "dstLabel": "", "opacity": 1, "strokeDash": 6, "strokeWidth": 2, 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 03b8cdbf92..9d03500dd1 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-577863312 .fill-N1{fill:#0A0F25;} + .d2-577863312 .fill-N2{fill:#676C7E;} + .d2-577863312 .fill-N3{fill:#9499AB;} + .d2-577863312 .fill-N4{fill:#CFD2DD;} + .d2-577863312 .fill-N5{fill:#DEE1EB;} + .d2-577863312 .fill-N6{fill:#EEF1F8;} + .d2-577863312 .fill-N7{fill:#FFFFFF;} + .d2-577863312 .fill-B1{fill:#0D32B2;} + .d2-577863312 .fill-B2{fill:#0D32B2;} + .d2-577863312 .fill-B3{fill:#E3E9FD;} + .d2-577863312 .fill-B4{fill:#E3E9FD;} + .d2-577863312 .fill-B5{fill:#EDF0FD;} + .d2-577863312 .fill-B6{fill:#F7F8FE;} + .d2-577863312 .fill-AA2{fill:#4A6FF3;} + .d2-577863312 .fill-AA4{fill:#EDF0FD;} + .d2-577863312 .fill-AA5{fill:#F7F8FE;} + .d2-577863312 .fill-AB4{fill:#EDF0FD;} + .d2-577863312 .fill-AB5{fill:#F7F8FE;} + .d2-577863312 .stroke-N1{stroke:#0A0F25;} + .d2-577863312 .stroke-N2{stroke:#676C7E;} + .d2-577863312 .stroke-N3{stroke:#9499AB;} + .d2-577863312 .stroke-N4{stroke:#CFD2DD;} + .d2-577863312 .stroke-N5{stroke:#DEE1EB;} + .d2-577863312 .stroke-N6{stroke:#EEF1F8;} + .d2-577863312 .stroke-N7{stroke:#FFFFFF;} + .d2-577863312 .stroke-B1{stroke:#0D32B2;} + .d2-577863312 .stroke-B2{stroke:#0D32B2;} + .d2-577863312 .stroke-B3{stroke:#E3E9FD;} + .d2-577863312 .stroke-B4{stroke:#E3E9FD;} + .d2-577863312 .stroke-B5{stroke:#EDF0FD;} + .d2-577863312 .stroke-B6{stroke:#F7F8FE;} + .d2-577863312 .stroke-AA2{stroke:#4A6FF3;} + .d2-577863312 .stroke-AA4{stroke:#EDF0FD;} + .d2-577863312 .stroke-AA5{stroke:#F7F8FE;} + .d2-577863312 .stroke-AB4{stroke:#EDF0FD;} + .d2-577863312 .stroke-AB5{stroke:#F7F8FE;} + .d2-577863312 .background-color-N1{background-color:#0A0F25;} + .d2-577863312 .background-color-N2{background-color:#676C7E;} + .d2-577863312 .background-color-N3{background-color:#9499AB;} + .d2-577863312 .background-color-N4{background-color:#CFD2DD;} + .d2-577863312 .background-color-N5{background-color:#DEE1EB;} + .d2-577863312 .background-color-N6{background-color:#EEF1F8;} + .d2-577863312 .background-color-N7{background-color:#FFFFFF;} + .d2-577863312 .background-color-B1{background-color:#0D32B2;} + .d2-577863312 .background-color-B2{background-color:#0D32B2;} + .d2-577863312 .background-color-B3{background-color:#E3E9FD;} + .d2-577863312 .background-color-B4{background-color:#E3E9FD;} + .d2-577863312 .background-color-B5{background-color:#EDF0FD;} + .d2-577863312 .background-color-B6{background-color:#F7F8FE;} + .d2-577863312 .background-color-AA2{background-color:#4A6FF3;} + .d2-577863312 .background-color-AA4{background-color:#EDF0FD;} + .d2-577863312 .background-color-AA5{background-color:#F7F8FE;} + .d2-577863312 .background-color-AB4{background-color:#EDF0FD;} + .d2-577863312 .background-color-AB5{background-color:#F7F8FE;} + .d2-577863312 .color-N1{color:#0A0F25;} + .d2-577863312 .color-N2{color:#676C7E;} + .d2-577863312 .color-N3{color:#9499AB;} + .d2-577863312 .color-N4{color:#CFD2DD;} + .d2-577863312 .color-N5{color:#DEE1EB;} + .d2-577863312 .color-N6{color:#EEF1F8;} + .d2-577863312 .color-N7{color:#FFFFFF;} + .d2-577863312 .color-B1{color:#0D32B2;} + .d2-577863312 .color-B2{color:#0D32B2;} + .d2-577863312 .color-B3{color:#E3E9FD;} + .d2-577863312 .color-B4{color:#E3E9FD;} + .d2-577863312 .color-B5{color:#EDF0FD;} + .d2-577863312 .color-B6{color:#F7F8FE;} + .d2-577863312 .color-AA2{color:#4A6FF3;} + .d2-577863312 .color-AA4{color:#EDF0FD;} + .d2-577863312 .color-AA5{color:#F7F8FE;} + .d2-577863312 .color-AB4{color:#EDF0FD;} + .d2-577863312 .color-AB5{color:#F7F8FE;}.appendix text.text{fill:#0A0F25}.md{--color-fg-default:#0A0F25;--color-fg-muted:#676C7E;--color-fg-subtle:#9499AB;--color-canvas-default:#FFFFFF;--color-canvas-subtle:#EEF1F8;--color-border-default:#0D32B2;--color-border-muted:#0D32B2;--color-neutral-muted:#EEF1F8;--color-accent-fg:#0D32B2;--color-accent-emphasis:#0D32B2;--color-attention-subtle:#676C7E;--color-danger-fg:red;}.sketch-overlay-B1{fill:url(#streaks-darker);mix-blend-mode:lighten}.sketch-overlay-B2{fill:url(#streaks-darker);mix-blend-mode:lighten}.sketch-overlay-B3{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-B4{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-B5{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-B6{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-AA2{fill:url(#streaks-dark);mix-blend-mode:overlay}.sketch-overlay-AA4{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-AA5{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-AB4{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-AB5{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-N1{fill:url(#streaks-darker);mix-blend-mode:lighten}.sketch-overlay-N2{fill:url(#streaks-dark);mix-blend-mode:overlay}.sketch-overlay-N3{fill:url(#streaks-normal);mix-blend-mode:color-burn}.sketch-overlay-N4{fill:url(#streaks-normal);mix-blend-mode:color-burn}.sketch-overlay-N5{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-N6{fill:url(#streaks-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 f531325564..1a4753593c 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 @@ -171,10 +171,8 @@ "id": "(a.sp1 -> b)[0]", "src": "a.sp1", "srcArrow": "none", - "srcLabel": "", "dst": "b", "dstArrow": "triangle", - "dstLabel": "", "opacity": 1, "strokeDash": 0, "strokeWidth": 2, @@ -211,10 +209,8 @@ "id": "a.(sp1 -> sp2)[0]", "src": "a.sp1", "srcArrow": "none", - "srcLabel": "", "dst": "a.sp2", "dstArrow": "triangle", - "dstLabel": "", "opacity": 1, "strokeDash": 0, "strokeWidth": 2, @@ -259,10 +255,8 @@ "id": "(a.sp2 -> b)[0]", "src": "a.sp2", "srcArrow": "none", - "srcLabel": "", "dst": "b", "dstArrow": "triangle", - "dstLabel": "", "opacity": 1, "strokeDash": 0, "strokeWidth": 2, @@ -299,10 +293,8 @@ "id": "(a -- )[0]", "src": "a", "srcArrow": "none", - "srcLabel": "", "dst": "a-lifeline-end-2251863791", "dstArrow": "none", - "dstLabel": "", "opacity": 1, "strokeDash": 6, "strokeWidth": 2, @@ -339,10 +331,8 @@ "id": "(b -- )[0]", "src": "b", "srcArrow": "none", - "srcLabel": "", "dst": "b-lifeline-end-668380428", "dstArrow": "none", - "dstLabel": "", "opacity": 1, "strokeDash": 6, "strokeWidth": 2, 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 03b8cdbf92..9d03500dd1 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-577863312 .fill-N1{fill:#0A0F25;} + .d2-577863312 .fill-N2{fill:#676C7E;} + .d2-577863312 .fill-N3{fill:#9499AB;} + .d2-577863312 .fill-N4{fill:#CFD2DD;} + .d2-577863312 .fill-N5{fill:#DEE1EB;} + .d2-577863312 .fill-N6{fill:#EEF1F8;} + .d2-577863312 .fill-N7{fill:#FFFFFF;} + .d2-577863312 .fill-B1{fill:#0D32B2;} + .d2-577863312 .fill-B2{fill:#0D32B2;} + .d2-577863312 .fill-B3{fill:#E3E9FD;} + .d2-577863312 .fill-B4{fill:#E3E9FD;} + .d2-577863312 .fill-B5{fill:#EDF0FD;} + .d2-577863312 .fill-B6{fill:#F7F8FE;} + .d2-577863312 .fill-AA2{fill:#4A6FF3;} + .d2-577863312 .fill-AA4{fill:#EDF0FD;} + .d2-577863312 .fill-AA5{fill:#F7F8FE;} + .d2-577863312 .fill-AB4{fill:#EDF0FD;} + .d2-577863312 .fill-AB5{fill:#F7F8FE;} + .d2-577863312 .stroke-N1{stroke:#0A0F25;} + .d2-577863312 .stroke-N2{stroke:#676C7E;} + .d2-577863312 .stroke-N3{stroke:#9499AB;} + .d2-577863312 .stroke-N4{stroke:#CFD2DD;} + .d2-577863312 .stroke-N5{stroke:#DEE1EB;} + .d2-577863312 .stroke-N6{stroke:#EEF1F8;} + .d2-577863312 .stroke-N7{stroke:#FFFFFF;} + .d2-577863312 .stroke-B1{stroke:#0D32B2;} + .d2-577863312 .stroke-B2{stroke:#0D32B2;} + .d2-577863312 .stroke-B3{stroke:#E3E9FD;} + .d2-577863312 .stroke-B4{stroke:#E3E9FD;} + .d2-577863312 .stroke-B5{stroke:#EDF0FD;} + .d2-577863312 .stroke-B6{stroke:#F7F8FE;} + .d2-577863312 .stroke-AA2{stroke:#4A6FF3;} + .d2-577863312 .stroke-AA4{stroke:#EDF0FD;} + .d2-577863312 .stroke-AA5{stroke:#F7F8FE;} + .d2-577863312 .stroke-AB4{stroke:#EDF0FD;} + .d2-577863312 .stroke-AB5{stroke:#F7F8FE;} + .d2-577863312 .background-color-N1{background-color:#0A0F25;} + .d2-577863312 .background-color-N2{background-color:#676C7E;} + .d2-577863312 .background-color-N3{background-color:#9499AB;} + .d2-577863312 .background-color-N4{background-color:#CFD2DD;} + .d2-577863312 .background-color-N5{background-color:#DEE1EB;} + .d2-577863312 .background-color-N6{background-color:#EEF1F8;} + .d2-577863312 .background-color-N7{background-color:#FFFFFF;} + .d2-577863312 .background-color-B1{background-color:#0D32B2;} + .d2-577863312 .background-color-B2{background-color:#0D32B2;} + .d2-577863312 .background-color-B3{background-color:#E3E9FD;} + .d2-577863312 .background-color-B4{background-color:#E3E9FD;} + .d2-577863312 .background-color-B5{background-color:#EDF0FD;} + .d2-577863312 .background-color-B6{background-color:#F7F8FE;} + .d2-577863312 .background-color-AA2{background-color:#4A6FF3;} + .d2-577863312 .background-color-AA4{background-color:#EDF0FD;} + .d2-577863312 .background-color-AA5{background-color:#F7F8FE;} + .d2-577863312 .background-color-AB4{background-color:#EDF0FD;} + .d2-577863312 .background-color-AB5{background-color:#F7F8FE;} + .d2-577863312 .color-N1{color:#0A0F25;} + .d2-577863312 .color-N2{color:#676C7E;} + .d2-577863312 .color-N3{color:#9499AB;} + .d2-577863312 .color-N4{color:#CFD2DD;} + .d2-577863312 .color-N5{color:#DEE1EB;} + .d2-577863312 .color-N6{color:#EEF1F8;} + .d2-577863312 .color-N7{color:#FFFFFF;} + .d2-577863312 .color-B1{color:#0D32B2;} + .d2-577863312 .color-B2{color:#0D32B2;} + .d2-577863312 .color-B3{color:#E3E9FD;} + .d2-577863312 .color-B4{color:#E3E9FD;} + .d2-577863312 .color-B5{color:#EDF0FD;} + .d2-577863312 .color-B6{color:#F7F8FE;} + .d2-577863312 .color-AA2{color:#4A6FF3;} + .d2-577863312 .color-AA4{color:#EDF0FD;} + .d2-577863312 .color-AA5{color:#F7F8FE;} + .d2-577863312 .color-AB4{color:#EDF0FD;} + .d2-577863312 .color-AB5{color:#F7F8FE;}.appendix text.text{fill:#0A0F25}.md{--color-fg-default:#0A0F25;--color-fg-muted:#676C7E;--color-fg-subtle:#9499AB;--color-canvas-default:#FFFFFF;--color-canvas-subtle:#EEF1F8;--color-border-default:#0D32B2;--color-border-muted:#0D32B2;--color-neutral-muted:#EEF1F8;--color-accent-fg:#0D32B2;--color-accent-emphasis:#0D32B2;--color-attention-subtle:#676C7E;--color-danger-fg:red;}.sketch-overlay-B1{fill:url(#streaks-darker);mix-blend-mode:lighten}.sketch-overlay-B2{fill:url(#streaks-darker);mix-blend-mode:lighten}.sketch-overlay-B3{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-B4{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-B5{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-B6{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-AA2{fill:url(#streaks-dark);mix-blend-mode:overlay}.sketch-overlay-AA4{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-AA5{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-AB4{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-AB5{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-N1{fill:url(#streaks-darker);mix-blend-mode:lighten}.sketch-overlay-N2{fill:url(#streaks-dark);mix-blend-mode:overlay}.sketch-overlay-N3{fill:url(#streaks-normal);mix-blend-mode:color-burn}.sketch-overlay-N4{fill:url(#streaks-normal);mix-blend-mode:color-burn}.sketch-overlay-N5{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-N6{fill:url(#streaks-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 595d6bb870..62c7526582 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 @@ -255,10 +255,8 @@ "id": "(a -> b)[0]", "src": "a", "srcArrow": "none", - "srcLabel": "", "dst": "b", "dstArrow": "triangle", - "dstLabel": "", "opacity": 1, "strokeDash": 0, "strokeWidth": 2, @@ -295,10 +293,8 @@ "id": "(a -> b)[1]", "src": "a", "srcArrow": "none", - "srcLabel": "", "dst": "b", "dstArrow": "triangle", - "dstLabel": "", "opacity": 1, "strokeDash": 0, "strokeWidth": 2, @@ -335,10 +331,8 @@ "id": "(c -> d)[0]", "src": "c", "srcArrow": "none", - "srcLabel": "", "dst": "d", "dstArrow": "triangle", - "dstLabel": "", "opacity": 1, "strokeDash": 0, "strokeWidth": 2, @@ -375,10 +369,8 @@ "id": "(a -> d)[0]", "src": "a", "srcArrow": "none", - "srcLabel": "", "dst": "d", "dstArrow": "triangle", - "dstLabel": "", "opacity": 1, "strokeDash": 0, "strokeWidth": 2, @@ -415,10 +407,8 @@ "id": "(d -> e)[0]", "src": "d", "srcArrow": "none", - "srcLabel": "", "dst": "e", "dstArrow": "triangle", - "dstLabel": "", "opacity": 1, "strokeDash": 0, "strokeWidth": 2, @@ -455,10 +445,8 @@ "id": "(a -> f)[0]", "src": "a", "srcArrow": "none", - "srcLabel": "", "dst": "f", "dstArrow": "triangle", - "dstLabel": "", "opacity": 1, "strokeDash": 0, "strokeWidth": 2, @@ -495,10 +483,8 @@ "id": "(a -- )[0]", "src": "a", "srcArrow": "none", - "srcLabel": "", "dst": "a-lifeline-end-2251863791", "dstArrow": "none", - "dstLabel": "", "opacity": 1, "strokeDash": 6, "strokeWidth": 2, @@ -535,10 +521,8 @@ "id": "(c -- )[0]", "src": "c", "srcArrow": "none", - "srcLabel": "", "dst": "c-lifeline-end-955173837", "dstArrow": "none", - "dstLabel": "", "opacity": 1, "strokeDash": 6, "strokeWidth": 2, @@ -575,10 +559,8 @@ "id": "(d -- )[0]", "src": "d", "srcArrow": "none", - "srcLabel": "", "dst": "d-lifeline-end-2106864010", "dstArrow": "none", - "dstLabel": "", "opacity": 1, "strokeDash": 6, "strokeWidth": 2, @@ -615,10 +597,8 @@ "id": "(e -- )[0]", "src": "e", "srcArrow": "none", - "srcLabel": "", "dst": "e-lifeline-end-2214352275", "dstArrow": "none", - "dstLabel": "", "opacity": 1, "strokeDash": 6, "strokeWidth": 2, @@ -655,10 +635,8 @@ "id": "(b -- )[0]", "src": "b", "srcArrow": "none", - "srcLabel": "", "dst": "b-lifeline-end-668380428", "dstArrow": "none", - "dstLabel": "", "opacity": 1, "strokeDash": 6, "strokeWidth": 2, @@ -695,10 +673,8 @@ "id": "(f -- )[0]", "src": "f", "srcArrow": "none", - "srcLabel": "", "dst": "f-lifeline-end-865917984", "dstArrow": "none", - "dstLabel": "", "opacity": 1, "strokeDash": 6, "strokeWidth": 2, 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 d002b1f4a1..c41addb8bc 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-2124703508 .fill-N1{fill:#0A0F25;} + .d2-2124703508 .fill-N2{fill:#676C7E;} + .d2-2124703508 .fill-N3{fill:#9499AB;} + .d2-2124703508 .fill-N4{fill:#CFD2DD;} + .d2-2124703508 .fill-N5{fill:#DEE1EB;} + .d2-2124703508 .fill-N6{fill:#EEF1F8;} + .d2-2124703508 .fill-N7{fill:#FFFFFF;} + .d2-2124703508 .fill-B1{fill:#0D32B2;} + .d2-2124703508 .fill-B2{fill:#0D32B2;} + .d2-2124703508 .fill-B3{fill:#E3E9FD;} + .d2-2124703508 .fill-B4{fill:#E3E9FD;} + .d2-2124703508 .fill-B5{fill:#EDF0FD;} + .d2-2124703508 .fill-B6{fill:#F7F8FE;} + .d2-2124703508 .fill-AA2{fill:#4A6FF3;} + .d2-2124703508 .fill-AA4{fill:#EDF0FD;} + .d2-2124703508 .fill-AA5{fill:#F7F8FE;} + .d2-2124703508 .fill-AB4{fill:#EDF0FD;} + .d2-2124703508 .fill-AB5{fill:#F7F8FE;} + .d2-2124703508 .stroke-N1{stroke:#0A0F25;} + .d2-2124703508 .stroke-N2{stroke:#676C7E;} + .d2-2124703508 .stroke-N3{stroke:#9499AB;} + .d2-2124703508 .stroke-N4{stroke:#CFD2DD;} + .d2-2124703508 .stroke-N5{stroke:#DEE1EB;} + .d2-2124703508 .stroke-N6{stroke:#EEF1F8;} + .d2-2124703508 .stroke-N7{stroke:#FFFFFF;} + .d2-2124703508 .stroke-B1{stroke:#0D32B2;} + .d2-2124703508 .stroke-B2{stroke:#0D32B2;} + .d2-2124703508 .stroke-B3{stroke:#E3E9FD;} + .d2-2124703508 .stroke-B4{stroke:#E3E9FD;} + .d2-2124703508 .stroke-B5{stroke:#EDF0FD;} + .d2-2124703508 .stroke-B6{stroke:#F7F8FE;} + .d2-2124703508 .stroke-AA2{stroke:#4A6FF3;} + .d2-2124703508 .stroke-AA4{stroke:#EDF0FD;} + .d2-2124703508 .stroke-AA5{stroke:#F7F8FE;} + .d2-2124703508 .stroke-AB4{stroke:#EDF0FD;} + .d2-2124703508 .stroke-AB5{stroke:#F7F8FE;} + .d2-2124703508 .background-color-N1{background-color:#0A0F25;} + .d2-2124703508 .background-color-N2{background-color:#676C7E;} + .d2-2124703508 .background-color-N3{background-color:#9499AB;} + .d2-2124703508 .background-color-N4{background-color:#CFD2DD;} + .d2-2124703508 .background-color-N5{background-color:#DEE1EB;} + .d2-2124703508 .background-color-N6{background-color:#EEF1F8;} + .d2-2124703508 .background-color-N7{background-color:#FFFFFF;} + .d2-2124703508 .background-color-B1{background-color:#0D32B2;} + .d2-2124703508 .background-color-B2{background-color:#0D32B2;} + .d2-2124703508 .background-color-B3{background-color:#E3E9FD;} + .d2-2124703508 .background-color-B4{background-color:#E3E9FD;} + .d2-2124703508 .background-color-B5{background-color:#EDF0FD;} + .d2-2124703508 .background-color-B6{background-color:#F7F8FE;} + .d2-2124703508 .background-color-AA2{background-color:#4A6FF3;} + .d2-2124703508 .background-color-AA4{background-color:#EDF0FD;} + .d2-2124703508 .background-color-AA5{background-color:#F7F8FE;} + .d2-2124703508 .background-color-AB4{background-color:#EDF0FD;} + .d2-2124703508 .background-color-AB5{background-color:#F7F8FE;} + .d2-2124703508 .color-N1{color:#0A0F25;} + .d2-2124703508 .color-N2{color:#676C7E;} + .d2-2124703508 .color-N3{color:#9499AB;} + .d2-2124703508 .color-N4{color:#CFD2DD;} + .d2-2124703508 .color-N5{color:#DEE1EB;} + .d2-2124703508 .color-N6{color:#EEF1F8;} + .d2-2124703508 .color-N7{color:#FFFFFF;} + .d2-2124703508 .color-B1{color:#0D32B2;} + .d2-2124703508 .color-B2{color:#0D32B2;} + .d2-2124703508 .color-B3{color:#E3E9FD;} + .d2-2124703508 .color-B4{color:#E3E9FD;} + .d2-2124703508 .color-B5{color:#EDF0FD;} + .d2-2124703508 .color-B6{color:#F7F8FE;} + .d2-2124703508 .color-AA2{color:#4A6FF3;} + .d2-2124703508 .color-AA4{color:#EDF0FD;} + .d2-2124703508 .color-AA5{color:#F7F8FE;} + .d2-2124703508 .color-AB4{color:#EDF0FD;} + .d2-2124703508 .color-AB5{color:#F7F8FE;}.appendix text.text{fill:#0A0F25}.md{--color-fg-default:#0A0F25;--color-fg-muted:#676C7E;--color-fg-subtle:#9499AB;--color-canvas-default:#FFFFFF;--color-canvas-subtle:#EEF1F8;--color-border-default:#0D32B2;--color-border-muted:#0D32B2;--color-neutral-muted:#EEF1F8;--color-accent-fg:#0D32B2;--color-accent-emphasis:#0D32B2;--color-attention-subtle:#676C7E;--color-danger-fg:red;}.sketch-overlay-B1{fill:url(#streaks-darker);mix-blend-mode:lighten}.sketch-overlay-B2{fill:url(#streaks-darker);mix-blend-mode:lighten}.sketch-overlay-B3{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-B4{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-B5{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-B6{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-AA2{fill:url(#streaks-dark);mix-blend-mode:overlay}.sketch-overlay-AA4{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-AA5{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-AB4{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-AB5{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-N1{fill:url(#streaks-darker);mix-blend-mode:lighten}.sketch-overlay-N2{fill:url(#streaks-dark);mix-blend-mode:overlay}.sketch-overlay-N3{fill:url(#streaks-normal);mix-blend-mode:color-burn}.sketch-overlay-N4{fill:url(#streaks-normal);mix-blend-mode:color-burn}.sketch-overlay-N5{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-N6{fill:url(#streaks-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 595d6bb870..62c7526582 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 @@ -255,10 +255,8 @@ "id": "(a -> b)[0]", "src": "a", "srcArrow": "none", - "srcLabel": "", "dst": "b", "dstArrow": "triangle", - "dstLabel": "", "opacity": 1, "strokeDash": 0, "strokeWidth": 2, @@ -295,10 +293,8 @@ "id": "(a -> b)[1]", "src": "a", "srcArrow": "none", - "srcLabel": "", "dst": "b", "dstArrow": "triangle", - "dstLabel": "", "opacity": 1, "strokeDash": 0, "strokeWidth": 2, @@ -335,10 +331,8 @@ "id": "(c -> d)[0]", "src": "c", "srcArrow": "none", - "srcLabel": "", "dst": "d", "dstArrow": "triangle", - "dstLabel": "", "opacity": 1, "strokeDash": 0, "strokeWidth": 2, @@ -375,10 +369,8 @@ "id": "(a -> d)[0]", "src": "a", "srcArrow": "none", - "srcLabel": "", "dst": "d", "dstArrow": "triangle", - "dstLabel": "", "opacity": 1, "strokeDash": 0, "strokeWidth": 2, @@ -415,10 +407,8 @@ "id": "(d -> e)[0]", "src": "d", "srcArrow": "none", - "srcLabel": "", "dst": "e", "dstArrow": "triangle", - "dstLabel": "", "opacity": 1, "strokeDash": 0, "strokeWidth": 2, @@ -455,10 +445,8 @@ "id": "(a -> f)[0]", "src": "a", "srcArrow": "none", - "srcLabel": "", "dst": "f", "dstArrow": "triangle", - "dstLabel": "", "opacity": 1, "strokeDash": 0, "strokeWidth": 2, @@ -495,10 +483,8 @@ "id": "(a -- )[0]", "src": "a", "srcArrow": "none", - "srcLabel": "", "dst": "a-lifeline-end-2251863791", "dstArrow": "none", - "dstLabel": "", "opacity": 1, "strokeDash": 6, "strokeWidth": 2, @@ -535,10 +521,8 @@ "id": "(c -- )[0]", "src": "c", "srcArrow": "none", - "srcLabel": "", "dst": "c-lifeline-end-955173837", "dstArrow": "none", - "dstLabel": "", "opacity": 1, "strokeDash": 6, "strokeWidth": 2, @@ -575,10 +559,8 @@ "id": "(d -- )[0]", "src": "d", "srcArrow": "none", - "srcLabel": "", "dst": "d-lifeline-end-2106864010", "dstArrow": "none", - "dstLabel": "", "opacity": 1, "strokeDash": 6, "strokeWidth": 2, @@ -615,10 +597,8 @@ "id": "(e -- )[0]", "src": "e", "srcArrow": "none", - "srcLabel": "", "dst": "e-lifeline-end-2214352275", "dstArrow": "none", - "dstLabel": "", "opacity": 1, "strokeDash": 6, "strokeWidth": 2, @@ -655,10 +635,8 @@ "id": "(b -- )[0]", "src": "b", "srcArrow": "none", - "srcLabel": "", "dst": "b-lifeline-end-668380428", "dstArrow": "none", - "dstLabel": "", "opacity": 1, "strokeDash": 6, "strokeWidth": 2, @@ -695,10 +673,8 @@ "id": "(f -- )[0]", "src": "f", "srcArrow": "none", - "srcLabel": "", "dst": "f-lifeline-end-865917984", "dstArrow": "none", - "dstLabel": "", "opacity": 1, "strokeDash": 6, "strokeWidth": 2, 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 d002b1f4a1..c41addb8bc 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-2124703508 .fill-N1{fill:#0A0F25;} + .d2-2124703508 .fill-N2{fill:#676C7E;} + .d2-2124703508 .fill-N3{fill:#9499AB;} + .d2-2124703508 .fill-N4{fill:#CFD2DD;} + .d2-2124703508 .fill-N5{fill:#DEE1EB;} + .d2-2124703508 .fill-N6{fill:#EEF1F8;} + .d2-2124703508 .fill-N7{fill:#FFFFFF;} + .d2-2124703508 .fill-B1{fill:#0D32B2;} + .d2-2124703508 .fill-B2{fill:#0D32B2;} + .d2-2124703508 .fill-B3{fill:#E3E9FD;} + .d2-2124703508 .fill-B4{fill:#E3E9FD;} + .d2-2124703508 .fill-B5{fill:#EDF0FD;} + .d2-2124703508 .fill-B6{fill:#F7F8FE;} + .d2-2124703508 .fill-AA2{fill:#4A6FF3;} + .d2-2124703508 .fill-AA4{fill:#EDF0FD;} + .d2-2124703508 .fill-AA5{fill:#F7F8FE;} + .d2-2124703508 .fill-AB4{fill:#EDF0FD;} + .d2-2124703508 .fill-AB5{fill:#F7F8FE;} + .d2-2124703508 .stroke-N1{stroke:#0A0F25;} + .d2-2124703508 .stroke-N2{stroke:#676C7E;} + .d2-2124703508 .stroke-N3{stroke:#9499AB;} + .d2-2124703508 .stroke-N4{stroke:#CFD2DD;} + .d2-2124703508 .stroke-N5{stroke:#DEE1EB;} + .d2-2124703508 .stroke-N6{stroke:#EEF1F8;} + .d2-2124703508 .stroke-N7{stroke:#FFFFFF;} + .d2-2124703508 .stroke-B1{stroke:#0D32B2;} + .d2-2124703508 .stroke-B2{stroke:#0D32B2;} + .d2-2124703508 .stroke-B3{stroke:#E3E9FD;} + .d2-2124703508 .stroke-B4{stroke:#E3E9FD;} + .d2-2124703508 .stroke-B5{stroke:#EDF0FD;} + .d2-2124703508 .stroke-B6{stroke:#F7F8FE;} + .d2-2124703508 .stroke-AA2{stroke:#4A6FF3;} + .d2-2124703508 .stroke-AA4{stroke:#EDF0FD;} + .d2-2124703508 .stroke-AA5{stroke:#F7F8FE;} + .d2-2124703508 .stroke-AB4{stroke:#EDF0FD;} + .d2-2124703508 .stroke-AB5{stroke:#F7F8FE;} + .d2-2124703508 .background-color-N1{background-color:#0A0F25;} + .d2-2124703508 .background-color-N2{background-color:#676C7E;} + .d2-2124703508 .background-color-N3{background-color:#9499AB;} + .d2-2124703508 .background-color-N4{background-color:#CFD2DD;} + .d2-2124703508 .background-color-N5{background-color:#DEE1EB;} + .d2-2124703508 .background-color-N6{background-color:#EEF1F8;} + .d2-2124703508 .background-color-N7{background-color:#FFFFFF;} + .d2-2124703508 .background-color-B1{background-color:#0D32B2;} + .d2-2124703508 .background-color-B2{background-color:#0D32B2;} + .d2-2124703508 .background-color-B3{background-color:#E3E9FD;} + .d2-2124703508 .background-color-B4{background-color:#E3E9FD;} + .d2-2124703508 .background-color-B5{background-color:#EDF0FD;} + .d2-2124703508 .background-color-B6{background-color:#F7F8FE;} + .d2-2124703508 .background-color-AA2{background-color:#4A6FF3;} + .d2-2124703508 .background-color-AA4{background-color:#EDF0FD;} + .d2-2124703508 .background-color-AA5{background-color:#F7F8FE;} + .d2-2124703508 .background-color-AB4{background-color:#EDF0FD;} + .d2-2124703508 .background-color-AB5{background-color:#F7F8FE;} + .d2-2124703508 .color-N1{color:#0A0F25;} + .d2-2124703508 .color-N2{color:#676C7E;} + .d2-2124703508 .color-N3{color:#9499AB;} + .d2-2124703508 .color-N4{color:#CFD2DD;} + .d2-2124703508 .color-N5{color:#DEE1EB;} + .d2-2124703508 .color-N6{color:#EEF1F8;} + .d2-2124703508 .color-N7{color:#FFFFFF;} + .d2-2124703508 .color-B1{color:#0D32B2;} + .d2-2124703508 .color-B2{color:#0D32B2;} + .d2-2124703508 .color-B3{color:#E3E9FD;} + .d2-2124703508 .color-B4{color:#E3E9FD;} + .d2-2124703508 .color-B5{color:#EDF0FD;} + .d2-2124703508 .color-B6{color:#F7F8FE;} + .d2-2124703508 .color-AA2{color:#4A6FF3;} + .d2-2124703508 .color-AA4{color:#EDF0FD;} + .d2-2124703508 .color-AA5{color:#F7F8FE;} + .d2-2124703508 .color-AB4{color:#EDF0FD;} + .d2-2124703508 .color-AB5{color:#F7F8FE;}.appendix text.text{fill:#0A0F25}.md{--color-fg-default:#0A0F25;--color-fg-muted:#676C7E;--color-fg-subtle:#9499AB;--color-canvas-default:#FFFFFF;--color-canvas-subtle:#EEF1F8;--color-border-default:#0D32B2;--color-border-muted:#0D32B2;--color-neutral-muted:#EEF1F8;--color-accent-fg:#0D32B2;--color-accent-emphasis:#0D32B2;--color-attention-subtle:#676C7E;--color-danger-fg:red;}.sketch-overlay-B1{fill:url(#streaks-darker);mix-blend-mode:lighten}.sketch-overlay-B2{fill:url(#streaks-darker);mix-blend-mode:lighten}.sketch-overlay-B3{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-B4{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-B5{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-B6{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-AA2{fill:url(#streaks-dark);mix-blend-mode:overlay}.sketch-overlay-AA4{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-AA5{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-AB4{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-AB5{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-N1{fill:url(#streaks-darker);mix-blend-mode:lighten}.sketch-overlay-N2{fill:url(#streaks-dark);mix-blend-mode:overlay}.sketch-overlay-N3{fill:url(#streaks-normal);mix-blend-mode:color-burn}.sketch-overlay-N4{fill:url(#streaks-normal);mix-blend-mode:color-burn}.sketch-overlay-N5{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-N6{fill:url(#streaks-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 e413b24baf..7b5c313229 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 @@ -915,10 +915,8 @@ "id": "(a -> b)[0]", "src": "a", "srcArrow": "none", - "srcLabel": "", "dst": "b", "dstArrow": "triangle", - "dstLabel": "", "opacity": 1, "strokeDash": 0, "strokeWidth": 2, @@ -955,10 +953,32 @@ "id": "(b <-> c)[0]", "src": "b", "srcArrow": "diamond", - "srcLabel": "this side", + "srcLabel": { + "label": "this side", + "fontSize": 0, + "fontFamily": "", + "language": "", + "color": "", + "italic": false, + "bold": false, + "underline": false, + "labelWidth": 54, + "labelHeight": 21 + }, "dst": "c", "dstArrow": "triangle", - "dstLabel": "other side", + "dstLabel": { + "label": "other side", + "fontSize": 0, + "fontFamily": "", + "language": "", + "color": "", + "italic": false, + "bold": false, + "underline": false, + "labelWidth": 65, + "labelHeight": 21 + }, "opacity": 1, "strokeDash": 0, "strokeWidth": 2, @@ -995,10 +1015,8 @@ "id": "(c -> d)[0]", "src": "c", "srcArrow": "none", - "srcLabel": "", "dst": "d", "dstArrow": "triangle", - "dstLabel": "", "opacity": 1, "strokeDash": 0, "strokeWidth": 2, @@ -1035,10 +1053,8 @@ "id": "(d -> e)[0]", "src": "d", "srcArrow": "none", - "srcLabel": "", "dst": "e", "dstArrow": "triangle", - "dstLabel": "", "opacity": 1, "strokeDash": 0, "strokeWidth": 2, @@ -1075,10 +1091,8 @@ "id": "(e -> f)[0]", "src": "e", "srcArrow": "none", - "srcLabel": "", "dst": "f", "dstArrow": "triangle", - "dstLabel": "", "opacity": 1, "strokeDash": 0, "strokeWidth": 2, @@ -1115,10 +1129,8 @@ "id": "(f -> g)[0]", "src": "f", "srcArrow": "none", - "srcLabel": "", "dst": "g", "dstArrow": "triangle", - "dstLabel": "", "opacity": 1, "strokeDash": 0, "strokeWidth": 2, @@ -1155,10 +1167,8 @@ "id": "(g -> h)[0]", "src": "g", "srcArrow": "none", - "srcLabel": "", "dst": "h", "dstArrow": "triangle", - "dstLabel": "", "opacity": 1, "strokeDash": 0, "strokeWidth": 2, @@ -1195,10 +1205,8 @@ "id": "(h -> i)[0]", "src": "h", "srcArrow": "none", - "srcLabel": "", "dst": "i", "dstArrow": "triangle", - "dstLabel": "", "opacity": 1, "strokeDash": 0, "strokeWidth": 2, @@ -1235,10 +1243,8 @@ "id": "(i -> j)[0]", "src": "i", "srcArrow": "none", - "srcLabel": "", "dst": "j", "dstArrow": "triangle", - "dstLabel": "", "opacity": 1, "strokeDash": 0, "strokeWidth": 2, @@ -1275,10 +1281,8 @@ "id": "(j -> k)[0]", "src": "j", "srcArrow": "none", - "srcLabel": "", "dst": "k", "dstArrow": "triangle", - "dstLabel": "", "opacity": 1, "strokeDash": 0, "strokeWidth": 2, @@ -1315,10 +1319,8 @@ "id": "(k -> l)[0]", "src": "k", "srcArrow": "none", - "srcLabel": "", "dst": "l", "dstArrow": "triangle", - "dstLabel": "", "opacity": 1, "strokeDash": 0, "strokeWidth": 2, @@ -1355,10 +1357,8 @@ "id": "(l -> m)[0]", "src": "l", "srcArrow": "none", - "srcLabel": "", "dst": "m", "dstArrow": "triangle", - "dstLabel": "", "opacity": 1, "strokeDash": 0, "strokeWidth": 2, @@ -1395,10 +1395,8 @@ "id": "(m -> n)[0]", "src": "m", "srcArrow": "none", - "srcLabel": "", "dst": "n", "dstArrow": "triangle", - "dstLabel": "", "opacity": 1, "strokeDash": 0, "strokeWidth": 2, @@ -1435,10 +1433,8 @@ "id": "(n -> o)[0]", "src": "n", "srcArrow": "none", - "srcLabel": "", "dst": "o", "dstArrow": "triangle", - "dstLabel": "", "opacity": 1, "strokeDash": 0, "strokeWidth": 2, @@ -1475,10 +1471,8 @@ "id": "(o -> p)[0]", "src": "o", "srcArrow": "none", - "srcLabel": "", "dst": "p", "dstArrow": "triangle", - "dstLabel": "", "opacity": 1, "strokeDash": 0, "strokeWidth": 2, @@ -1515,10 +1509,8 @@ "id": "(p -> q)[0]", "src": "p", "srcArrow": "none", - "srcLabel": "", "dst": "q", "dstArrow": "triangle", - "dstLabel": "", "opacity": 1, "strokeDash": 0, "strokeWidth": 2, @@ -1555,10 +1547,8 @@ "id": "(q -> r)[0]", "src": "q", "srcArrow": "none", - "srcLabel": "", "dst": "r", "dstArrow": "triangle", - "dstLabel": "", "opacity": 1, "strokeDash": 0, "strokeWidth": 2, @@ -1595,10 +1585,8 @@ "id": "(r -> s)[0]", "src": "r", "srcArrow": "none", - "srcLabel": "", "dst": "s", "dstArrow": "triangle", - "dstLabel": "", "opacity": 1, "strokeDash": 0, "strokeWidth": 2, @@ -1635,10 +1623,8 @@ "id": "(s -> t)[0]", "src": "s", "srcArrow": "none", - "srcLabel": "", "dst": "t", "dstArrow": "triangle", - "dstLabel": "", "opacity": 1, "strokeDash": 0, "strokeWidth": 2, @@ -1675,10 +1661,8 @@ "id": "(a -- )[0]", "src": "a", "srcArrow": "none", - "srcLabel": "", "dst": "a-lifeline-end-2251863791", "dstArrow": "none", - "dstLabel": "", "opacity": 1, "strokeDash": 6, "strokeWidth": 2, @@ -1715,10 +1699,8 @@ "id": "(b -- )[0]", "src": "b", "srcArrow": "none", - "srcLabel": "", "dst": "b-lifeline-end-668380428", "dstArrow": "none", - "dstLabel": "", "opacity": 1, "strokeDash": 6, "strokeWidth": 2, @@ -1755,10 +1737,8 @@ "id": "(c -- )[0]", "src": "c", "srcArrow": "none", - "srcLabel": "", "dst": "c-lifeline-end-955173837", "dstArrow": "none", - "dstLabel": "", "opacity": 1, "strokeDash": 6, "strokeWidth": 2, @@ -1795,10 +1775,8 @@ "id": "(d -- )[0]", "src": "d", "srcArrow": "none", - "srcLabel": "", "dst": "d-lifeline-end-2106864010", "dstArrow": "none", - "dstLabel": "", "opacity": 1, "strokeDash": 6, "strokeWidth": 2, @@ -1835,10 +1813,8 @@ "id": "(e -- )[0]", "src": "e", "srcArrow": "none", - "srcLabel": "", "dst": "e-lifeline-end-2214352275", "dstArrow": "none", - "dstLabel": "", "opacity": 1, "strokeDash": 6, "strokeWidth": 2, @@ -1875,10 +1851,8 @@ "id": "(f -- )[0]", "src": "f", "srcArrow": "none", - "srcLabel": "", "dst": "f-lifeline-end-865917984", "dstArrow": "none", - "dstLabel": "", "opacity": 1, "strokeDash": 6, "strokeWidth": 2, @@ -1915,10 +1889,8 @@ "id": "(g -- )[0]", "src": "g", "srcArrow": "none", - "srcLabel": "", "dst": "g-lifeline-end-354922897", "dstArrow": "none", - "dstLabel": "", "opacity": 1, "strokeDash": 6, "strokeWidth": 2, @@ -1955,10 +1927,8 @@ "id": "(h -- )[0]", "src": "h", "srcArrow": "none", - "srcLabel": "", "dst": "h-lifeline-end-1346385566", "dstArrow": "none", - "dstLabel": "", "opacity": 1, "strokeDash": 6, "strokeWidth": 2, @@ -1995,10 +1965,8 @@ "id": "(i -- )[0]", "src": "i", "srcArrow": "none", - "srcLabel": "", "dst": "i-lifeline-end-96090903", "dstArrow": "none", - "dstLabel": "", "opacity": 1, "strokeDash": 6, "strokeWidth": 2, @@ -2035,10 +2003,8 @@ "id": "(j -- )[0]", "src": "j", "srcArrow": "none", - "srcLabel": "", "dst": "j-lifeline-end-238402964", "dstArrow": "none", - "dstLabel": "", "opacity": 1, "strokeDash": 6, "strokeWidth": 2, @@ -2075,10 +2041,8 @@ "id": "(k -- )[0]", "src": "k", "srcArrow": "none", - "srcLabel": "", "dst": "k-lifeline-end-4059607989", "dstArrow": "none", - "dstLabel": "", "opacity": 1, "strokeDash": 6, "strokeWidth": 2, @@ -2115,10 +2079,8 @@ "id": "(l -- )[0]", "src": "l", "srcArrow": "none", - "srcLabel": "", "dst": "l-lifeline-end-731076402", "dstArrow": "none", - "dstLabel": "", "opacity": 1, "strokeDash": 6, "strokeWidth": 2, @@ -2155,10 +2117,8 @@ "id": "(m -- )[0]", "src": "m", "srcArrow": "none", - "srcLabel": "", "dst": "m-lifeline-end-2432785211", "dstArrow": "none", - "dstLabel": "", "opacity": 1, "strokeDash": 6, "strokeWidth": 2, @@ -2195,10 +2155,8 @@ "id": "(n -- )[0]", "src": "n", "srcArrow": "none", - "srcLabel": "", "dst": "n-lifeline-end-2146380744", "dstArrow": "none", - "dstLabel": "", "opacity": 1, "strokeDash": 6, "strokeWidth": 2, @@ -2235,10 +2193,8 @@ "id": "(o -- )[0]", "src": "o", "srcArrow": "none", - "srcLabel": "", "dst": "o-lifeline-end-2956646265", "dstArrow": "none", - "dstLabel": "", "opacity": 1, "strokeDash": 6, "strokeWidth": 2, @@ -2275,10 +2231,8 @@ "id": "(p -- )[0]", "src": "p", "srcArrow": "none", - "srcLabel": "", "dst": "p-lifeline-end-1398835718", "dstArrow": "none", - "dstLabel": "", "opacity": 1, "strokeDash": 6, "strokeWidth": 2, @@ -2315,10 +2269,8 @@ "id": "(q -- )[0]", "src": "q", "srcArrow": "none", - "srcLabel": "", "dst": "q-lifeline-end-1491495039", "dstArrow": "none", - "dstLabel": "", "opacity": 1, "strokeDash": 6, "strokeWidth": 2, @@ -2355,10 +2307,8 @@ "id": "(r -- )[0]", "src": "r", "srcArrow": "none", - "srcLabel": "", "dst": "r-lifeline-end-2013739420", "dstArrow": "none", - "dstLabel": "", "opacity": 1, "strokeDash": 6, "strokeWidth": 2, @@ -2395,10 +2345,8 @@ "id": "(s -- )[0]", "src": "s", "srcArrow": "none", - "srcLabel": "", "dst": "s-lifeline-end-4156599325", "dstArrow": "none", - "dstLabel": "", "opacity": 1, "strokeDash": 6, "strokeWidth": 2, @@ -2435,10 +2383,8 @@ "id": "(t -- )[0]", "src": "t", "srcArrow": "none", - "srcLabel": "", "dst": "t-lifeline-end-3566287450", "dstArrow": "none", - "dstLabel": "", "opacity": 1, "strokeDash": 6, "strokeWidth": 2, 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 42648e8d08..4ac1ce773c 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-1324883695 .fill-N1{fill:#0A0F25;} + .d2-1324883695 .fill-N2{fill:#676C7E;} + .d2-1324883695 .fill-N3{fill:#9499AB;} + .d2-1324883695 .fill-N4{fill:#CFD2DD;} + .d2-1324883695 .fill-N5{fill:#DEE1EB;} + .d2-1324883695 .fill-N6{fill:#EEF1F8;} + .d2-1324883695 .fill-N7{fill:#FFFFFF;} + .d2-1324883695 .fill-B1{fill:#0D32B2;} + .d2-1324883695 .fill-B2{fill:#0D32B2;} + .d2-1324883695 .fill-B3{fill:#E3E9FD;} + .d2-1324883695 .fill-B4{fill:#E3E9FD;} + .d2-1324883695 .fill-B5{fill:#EDF0FD;} + .d2-1324883695 .fill-B6{fill:#F7F8FE;} + .d2-1324883695 .fill-AA2{fill:#4A6FF3;} + .d2-1324883695 .fill-AA4{fill:#EDF0FD;} + .d2-1324883695 .fill-AA5{fill:#F7F8FE;} + .d2-1324883695 .fill-AB4{fill:#EDF0FD;} + .d2-1324883695 .fill-AB5{fill:#F7F8FE;} + .d2-1324883695 .stroke-N1{stroke:#0A0F25;} + .d2-1324883695 .stroke-N2{stroke:#676C7E;} + .d2-1324883695 .stroke-N3{stroke:#9499AB;} + .d2-1324883695 .stroke-N4{stroke:#CFD2DD;} + .d2-1324883695 .stroke-N5{stroke:#DEE1EB;} + .d2-1324883695 .stroke-N6{stroke:#EEF1F8;} + .d2-1324883695 .stroke-N7{stroke:#FFFFFF;} + .d2-1324883695 .stroke-B1{stroke:#0D32B2;} + .d2-1324883695 .stroke-B2{stroke:#0D32B2;} + .d2-1324883695 .stroke-B3{stroke:#E3E9FD;} + .d2-1324883695 .stroke-B4{stroke:#E3E9FD;} + .d2-1324883695 .stroke-B5{stroke:#EDF0FD;} + .d2-1324883695 .stroke-B6{stroke:#F7F8FE;} + .d2-1324883695 .stroke-AA2{stroke:#4A6FF3;} + .d2-1324883695 .stroke-AA4{stroke:#EDF0FD;} + .d2-1324883695 .stroke-AA5{stroke:#F7F8FE;} + .d2-1324883695 .stroke-AB4{stroke:#EDF0FD;} + .d2-1324883695 .stroke-AB5{stroke:#F7F8FE;} + .d2-1324883695 .background-color-N1{background-color:#0A0F25;} + .d2-1324883695 .background-color-N2{background-color:#676C7E;} + .d2-1324883695 .background-color-N3{background-color:#9499AB;} + .d2-1324883695 .background-color-N4{background-color:#CFD2DD;} + .d2-1324883695 .background-color-N5{background-color:#DEE1EB;} + .d2-1324883695 .background-color-N6{background-color:#EEF1F8;} + .d2-1324883695 .background-color-N7{background-color:#FFFFFF;} + .d2-1324883695 .background-color-B1{background-color:#0D32B2;} + .d2-1324883695 .background-color-B2{background-color:#0D32B2;} + .d2-1324883695 .background-color-B3{background-color:#E3E9FD;} + .d2-1324883695 .background-color-B4{background-color:#E3E9FD;} + .d2-1324883695 .background-color-B5{background-color:#EDF0FD;} + .d2-1324883695 .background-color-B6{background-color:#F7F8FE;} + .d2-1324883695 .background-color-AA2{background-color:#4A6FF3;} + .d2-1324883695 .background-color-AA4{background-color:#EDF0FD;} + .d2-1324883695 .background-color-AA5{background-color:#F7F8FE;} + .d2-1324883695 .background-color-AB4{background-color:#EDF0FD;} + .d2-1324883695 .background-color-AB5{background-color:#F7F8FE;} + .d2-1324883695 .color-N1{color:#0A0F25;} + .d2-1324883695 .color-N2{color:#676C7E;} + .d2-1324883695 .color-N3{color:#9499AB;} + .d2-1324883695 .color-N4{color:#CFD2DD;} + .d2-1324883695 .color-N5{color:#DEE1EB;} + .d2-1324883695 .color-N6{color:#EEF1F8;} + .d2-1324883695 .color-N7{color:#FFFFFF;} + .d2-1324883695 .color-B1{color:#0D32B2;} + .d2-1324883695 .color-B2{color:#0D32B2;} + .d2-1324883695 .color-B3{color:#E3E9FD;} + .d2-1324883695 .color-B4{color:#E3E9FD;} + .d2-1324883695 .color-B5{color:#EDF0FD;} + .d2-1324883695 .color-B6{color:#F7F8FE;} + .d2-1324883695 .color-AA2{color:#4A6FF3;} + .d2-1324883695 .color-AA4{color:#EDF0FD;} + .d2-1324883695 .color-AA5{color:#F7F8FE;} + .d2-1324883695 .color-AB4{color:#EDF0FD;} + .d2-1324883695 .color-AB5{color:#F7F8FE;}.appendix text.text{fill:#0A0F25}.md{--color-fg-default:#0A0F25;--color-fg-muted:#676C7E;--color-fg-subtle:#9499AB;--color-canvas-default:#FFFFFF;--color-canvas-subtle:#EEF1F8;--color-border-default:#0D32B2;--color-border-muted:#0D32B2;--color-neutral-muted:#EEF1F8;--color-accent-fg:#0D32B2;--color-accent-emphasis:#0D32B2;--color-attention-subtle:#676C7E;--color-danger-fg:red;}.sketch-overlay-B1{fill:url(#streaks-darker);mix-blend-mode:lighten}.sketch-overlay-B2{fill:url(#streaks-darker);mix-blend-mode:lighten}.sketch-overlay-B3{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-B4{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-B5{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-B6{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-AA2{fill:url(#streaks-dark);mix-blend-mode:overlay}.sketch-overlay-AA4{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-AA5{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-AB4{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-AB5{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-N1{fill:url(#streaks-darker);mix-blend-mode:lighten}.sketch-overlay-N2{fill:url(#streaks-dark);mix-blend-mode:overlay}.sketch-overlay-N3{fill:url(#streaks-normal);mix-blend-mode:color-burn}.sketch-overlay-N4{fill:url(#streaks-normal);mix-blend-mode:color-burn}.sketch-overlay-N5{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-N6{fill:url(#streaks-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 e413b24baf..7b5c313229 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 @@ -915,10 +915,8 @@ "id": "(a -> b)[0]", "src": "a", "srcArrow": "none", - "srcLabel": "", "dst": "b", "dstArrow": "triangle", - "dstLabel": "", "opacity": 1, "strokeDash": 0, "strokeWidth": 2, @@ -955,10 +953,32 @@ "id": "(b <-> c)[0]", "src": "b", "srcArrow": "diamond", - "srcLabel": "this side", + "srcLabel": { + "label": "this side", + "fontSize": 0, + "fontFamily": "", + "language": "", + "color": "", + "italic": false, + "bold": false, + "underline": false, + "labelWidth": 54, + "labelHeight": 21 + }, "dst": "c", "dstArrow": "triangle", - "dstLabel": "other side", + "dstLabel": { + "label": "other side", + "fontSize": 0, + "fontFamily": "", + "language": "", + "color": "", + "italic": false, + "bold": false, + "underline": false, + "labelWidth": 65, + "labelHeight": 21 + }, "opacity": 1, "strokeDash": 0, "strokeWidth": 2, @@ -995,10 +1015,8 @@ "id": "(c -> d)[0]", "src": "c", "srcArrow": "none", - "srcLabel": "", "dst": "d", "dstArrow": "triangle", - "dstLabel": "", "opacity": 1, "strokeDash": 0, "strokeWidth": 2, @@ -1035,10 +1053,8 @@ "id": "(d -> e)[0]", "src": "d", "srcArrow": "none", - "srcLabel": "", "dst": "e", "dstArrow": "triangle", - "dstLabel": "", "opacity": 1, "strokeDash": 0, "strokeWidth": 2, @@ -1075,10 +1091,8 @@ "id": "(e -> f)[0]", "src": "e", "srcArrow": "none", - "srcLabel": "", "dst": "f", "dstArrow": "triangle", - "dstLabel": "", "opacity": 1, "strokeDash": 0, "strokeWidth": 2, @@ -1115,10 +1129,8 @@ "id": "(f -> g)[0]", "src": "f", "srcArrow": "none", - "srcLabel": "", "dst": "g", "dstArrow": "triangle", - "dstLabel": "", "opacity": 1, "strokeDash": 0, "strokeWidth": 2, @@ -1155,10 +1167,8 @@ "id": "(g -> h)[0]", "src": "g", "srcArrow": "none", - "srcLabel": "", "dst": "h", "dstArrow": "triangle", - "dstLabel": "", "opacity": 1, "strokeDash": 0, "strokeWidth": 2, @@ -1195,10 +1205,8 @@ "id": "(h -> i)[0]", "src": "h", "srcArrow": "none", - "srcLabel": "", "dst": "i", "dstArrow": "triangle", - "dstLabel": "", "opacity": 1, "strokeDash": 0, "strokeWidth": 2, @@ -1235,10 +1243,8 @@ "id": "(i -> j)[0]", "src": "i", "srcArrow": "none", - "srcLabel": "", "dst": "j", "dstArrow": "triangle", - "dstLabel": "", "opacity": 1, "strokeDash": 0, "strokeWidth": 2, @@ -1275,10 +1281,8 @@ "id": "(j -> k)[0]", "src": "j", "srcArrow": "none", - "srcLabel": "", "dst": "k", "dstArrow": "triangle", - "dstLabel": "", "opacity": 1, "strokeDash": 0, "strokeWidth": 2, @@ -1315,10 +1319,8 @@ "id": "(k -> l)[0]", "src": "k", "srcArrow": "none", - "srcLabel": "", "dst": "l", "dstArrow": "triangle", - "dstLabel": "", "opacity": 1, "strokeDash": 0, "strokeWidth": 2, @@ -1355,10 +1357,8 @@ "id": "(l -> m)[0]", "src": "l", "srcArrow": "none", - "srcLabel": "", "dst": "m", "dstArrow": "triangle", - "dstLabel": "", "opacity": 1, "strokeDash": 0, "strokeWidth": 2, @@ -1395,10 +1395,8 @@ "id": "(m -> n)[0]", "src": "m", "srcArrow": "none", - "srcLabel": "", "dst": "n", "dstArrow": "triangle", - "dstLabel": "", "opacity": 1, "strokeDash": 0, "strokeWidth": 2, @@ -1435,10 +1433,8 @@ "id": "(n -> o)[0]", "src": "n", "srcArrow": "none", - "srcLabel": "", "dst": "o", "dstArrow": "triangle", - "dstLabel": "", "opacity": 1, "strokeDash": 0, "strokeWidth": 2, @@ -1475,10 +1471,8 @@ "id": "(o -> p)[0]", "src": "o", "srcArrow": "none", - "srcLabel": "", "dst": "p", "dstArrow": "triangle", - "dstLabel": "", "opacity": 1, "strokeDash": 0, "strokeWidth": 2, @@ -1515,10 +1509,8 @@ "id": "(p -> q)[0]", "src": "p", "srcArrow": "none", - "srcLabel": "", "dst": "q", "dstArrow": "triangle", - "dstLabel": "", "opacity": 1, "strokeDash": 0, "strokeWidth": 2, @@ -1555,10 +1547,8 @@ "id": "(q -> r)[0]", "src": "q", "srcArrow": "none", - "srcLabel": "", "dst": "r", "dstArrow": "triangle", - "dstLabel": "", "opacity": 1, "strokeDash": 0, "strokeWidth": 2, @@ -1595,10 +1585,8 @@ "id": "(r -> s)[0]", "src": "r", "srcArrow": "none", - "srcLabel": "", "dst": "s", "dstArrow": "triangle", - "dstLabel": "", "opacity": 1, "strokeDash": 0, "strokeWidth": 2, @@ -1635,10 +1623,8 @@ "id": "(s -> t)[0]", "src": "s", "srcArrow": "none", - "srcLabel": "", "dst": "t", "dstArrow": "triangle", - "dstLabel": "", "opacity": 1, "strokeDash": 0, "strokeWidth": 2, @@ -1675,10 +1661,8 @@ "id": "(a -- )[0]", "src": "a", "srcArrow": "none", - "srcLabel": "", "dst": "a-lifeline-end-2251863791", "dstArrow": "none", - "dstLabel": "", "opacity": 1, "strokeDash": 6, "strokeWidth": 2, @@ -1715,10 +1699,8 @@ "id": "(b -- )[0]", "src": "b", "srcArrow": "none", - "srcLabel": "", "dst": "b-lifeline-end-668380428", "dstArrow": "none", - "dstLabel": "", "opacity": 1, "strokeDash": 6, "strokeWidth": 2, @@ -1755,10 +1737,8 @@ "id": "(c -- )[0]", "src": "c", "srcArrow": "none", - "srcLabel": "", "dst": "c-lifeline-end-955173837", "dstArrow": "none", - "dstLabel": "", "opacity": 1, "strokeDash": 6, "strokeWidth": 2, @@ -1795,10 +1775,8 @@ "id": "(d -- )[0]", "src": "d", "srcArrow": "none", - "srcLabel": "", "dst": "d-lifeline-end-2106864010", "dstArrow": "none", - "dstLabel": "", "opacity": 1, "strokeDash": 6, "strokeWidth": 2, @@ -1835,10 +1813,8 @@ "id": "(e -- )[0]", "src": "e", "srcArrow": "none", - "srcLabel": "", "dst": "e-lifeline-end-2214352275", "dstArrow": "none", - "dstLabel": "", "opacity": 1, "strokeDash": 6, "strokeWidth": 2, @@ -1875,10 +1851,8 @@ "id": "(f -- )[0]", "src": "f", "srcArrow": "none", - "srcLabel": "", "dst": "f-lifeline-end-865917984", "dstArrow": "none", - "dstLabel": "", "opacity": 1, "strokeDash": 6, "strokeWidth": 2, @@ -1915,10 +1889,8 @@ "id": "(g -- )[0]", "src": "g", "srcArrow": "none", - "srcLabel": "", "dst": "g-lifeline-end-354922897", "dstArrow": "none", - "dstLabel": "", "opacity": 1, "strokeDash": 6, "strokeWidth": 2, @@ -1955,10 +1927,8 @@ "id": "(h -- )[0]", "src": "h", "srcArrow": "none", - "srcLabel": "", "dst": "h-lifeline-end-1346385566", "dstArrow": "none", - "dstLabel": "", "opacity": 1, "strokeDash": 6, "strokeWidth": 2, @@ -1995,10 +1965,8 @@ "id": "(i -- )[0]", "src": "i", "srcArrow": "none", - "srcLabel": "", "dst": "i-lifeline-end-96090903", "dstArrow": "none", - "dstLabel": "", "opacity": 1, "strokeDash": 6, "strokeWidth": 2, @@ -2035,10 +2003,8 @@ "id": "(j -- )[0]", "src": "j", "srcArrow": "none", - "srcLabel": "", "dst": "j-lifeline-end-238402964", "dstArrow": "none", - "dstLabel": "", "opacity": 1, "strokeDash": 6, "strokeWidth": 2, @@ -2075,10 +2041,8 @@ "id": "(k -- )[0]", "src": "k", "srcArrow": "none", - "srcLabel": "", "dst": "k-lifeline-end-4059607989", "dstArrow": "none", - "dstLabel": "", "opacity": 1, "strokeDash": 6, "strokeWidth": 2, @@ -2115,10 +2079,8 @@ "id": "(l -- )[0]", "src": "l", "srcArrow": "none", - "srcLabel": "", "dst": "l-lifeline-end-731076402", "dstArrow": "none", - "dstLabel": "", "opacity": 1, "strokeDash": 6, "strokeWidth": 2, @@ -2155,10 +2117,8 @@ "id": "(m -- )[0]", "src": "m", "srcArrow": "none", - "srcLabel": "", "dst": "m-lifeline-end-2432785211", "dstArrow": "none", - "dstLabel": "", "opacity": 1, "strokeDash": 6, "strokeWidth": 2, @@ -2195,10 +2155,8 @@ "id": "(n -- )[0]", "src": "n", "srcArrow": "none", - "srcLabel": "", "dst": "n-lifeline-end-2146380744", "dstArrow": "none", - "dstLabel": "", "opacity": 1, "strokeDash": 6, "strokeWidth": 2, @@ -2235,10 +2193,8 @@ "id": "(o -- )[0]", "src": "o", "srcArrow": "none", - "srcLabel": "", "dst": "o-lifeline-end-2956646265", "dstArrow": "none", - "dstLabel": "", "opacity": 1, "strokeDash": 6, "strokeWidth": 2, @@ -2275,10 +2231,8 @@ "id": "(p -- )[0]", "src": "p", "srcArrow": "none", - "srcLabel": "", "dst": "p-lifeline-end-1398835718", "dstArrow": "none", - "dstLabel": "", "opacity": 1, "strokeDash": 6, "strokeWidth": 2, @@ -2315,10 +2269,8 @@ "id": "(q -- )[0]", "src": "q", "srcArrow": "none", - "srcLabel": "", "dst": "q-lifeline-end-1491495039", "dstArrow": "none", - "dstLabel": "", "opacity": 1, "strokeDash": 6, "strokeWidth": 2, @@ -2355,10 +2307,8 @@ "id": "(r -- )[0]", "src": "r", "srcArrow": "none", - "srcLabel": "", "dst": "r-lifeline-end-2013739420", "dstArrow": "none", - "dstLabel": "", "opacity": 1, "strokeDash": 6, "strokeWidth": 2, @@ -2395,10 +2345,8 @@ "id": "(s -- )[0]", "src": "s", "srcArrow": "none", - "srcLabel": "", "dst": "s-lifeline-end-4156599325", "dstArrow": "none", - "dstLabel": "", "opacity": 1, "strokeDash": 6, "strokeWidth": 2, @@ -2435,10 +2383,8 @@ "id": "(t -- )[0]", "src": "t", "srcArrow": "none", - "srcLabel": "", "dst": "t-lifeline-end-3566287450", "dstArrow": "none", - "dstLabel": "", "opacity": 1, "strokeDash": 6, "strokeWidth": 2, 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 42648e8d08..4ac1ce773c 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-1324883695 .fill-N1{fill:#0A0F25;} + .d2-1324883695 .fill-N2{fill:#676C7E;} + .d2-1324883695 .fill-N3{fill:#9499AB;} + .d2-1324883695 .fill-N4{fill:#CFD2DD;} + .d2-1324883695 .fill-N5{fill:#DEE1EB;} + .d2-1324883695 .fill-N6{fill:#EEF1F8;} + .d2-1324883695 .fill-N7{fill:#FFFFFF;} + .d2-1324883695 .fill-B1{fill:#0D32B2;} + .d2-1324883695 .fill-B2{fill:#0D32B2;} + .d2-1324883695 .fill-B3{fill:#E3E9FD;} + .d2-1324883695 .fill-B4{fill:#E3E9FD;} + .d2-1324883695 .fill-B5{fill:#EDF0FD;} + .d2-1324883695 .fill-B6{fill:#F7F8FE;} + .d2-1324883695 .fill-AA2{fill:#4A6FF3;} + .d2-1324883695 .fill-AA4{fill:#EDF0FD;} + .d2-1324883695 .fill-AA5{fill:#F7F8FE;} + .d2-1324883695 .fill-AB4{fill:#EDF0FD;} + .d2-1324883695 .fill-AB5{fill:#F7F8FE;} + .d2-1324883695 .stroke-N1{stroke:#0A0F25;} + .d2-1324883695 .stroke-N2{stroke:#676C7E;} + .d2-1324883695 .stroke-N3{stroke:#9499AB;} + .d2-1324883695 .stroke-N4{stroke:#CFD2DD;} + .d2-1324883695 .stroke-N5{stroke:#DEE1EB;} + .d2-1324883695 .stroke-N6{stroke:#EEF1F8;} + .d2-1324883695 .stroke-N7{stroke:#FFFFFF;} + .d2-1324883695 .stroke-B1{stroke:#0D32B2;} + .d2-1324883695 .stroke-B2{stroke:#0D32B2;} + .d2-1324883695 .stroke-B3{stroke:#E3E9FD;} + .d2-1324883695 .stroke-B4{stroke:#E3E9FD;} + .d2-1324883695 .stroke-B5{stroke:#EDF0FD;} + .d2-1324883695 .stroke-B6{stroke:#F7F8FE;} + .d2-1324883695 .stroke-AA2{stroke:#4A6FF3;} + .d2-1324883695 .stroke-AA4{stroke:#EDF0FD;} + .d2-1324883695 .stroke-AA5{stroke:#F7F8FE;} + .d2-1324883695 .stroke-AB4{stroke:#EDF0FD;} + .d2-1324883695 .stroke-AB5{stroke:#F7F8FE;} + .d2-1324883695 .background-color-N1{background-color:#0A0F25;} + .d2-1324883695 .background-color-N2{background-color:#676C7E;} + .d2-1324883695 .background-color-N3{background-color:#9499AB;} + .d2-1324883695 .background-color-N4{background-color:#CFD2DD;} + .d2-1324883695 .background-color-N5{background-color:#DEE1EB;} + .d2-1324883695 .background-color-N6{background-color:#EEF1F8;} + .d2-1324883695 .background-color-N7{background-color:#FFFFFF;} + .d2-1324883695 .background-color-B1{background-color:#0D32B2;} + .d2-1324883695 .background-color-B2{background-color:#0D32B2;} + .d2-1324883695 .background-color-B3{background-color:#E3E9FD;} + .d2-1324883695 .background-color-B4{background-color:#E3E9FD;} + .d2-1324883695 .background-color-B5{background-color:#EDF0FD;} + .d2-1324883695 .background-color-B6{background-color:#F7F8FE;} + .d2-1324883695 .background-color-AA2{background-color:#4A6FF3;} + .d2-1324883695 .background-color-AA4{background-color:#EDF0FD;} + .d2-1324883695 .background-color-AA5{background-color:#F7F8FE;} + .d2-1324883695 .background-color-AB4{background-color:#EDF0FD;} + .d2-1324883695 .background-color-AB5{background-color:#F7F8FE;} + .d2-1324883695 .color-N1{color:#0A0F25;} + .d2-1324883695 .color-N2{color:#676C7E;} + .d2-1324883695 .color-N3{color:#9499AB;} + .d2-1324883695 .color-N4{color:#CFD2DD;} + .d2-1324883695 .color-N5{color:#DEE1EB;} + .d2-1324883695 .color-N6{color:#EEF1F8;} + .d2-1324883695 .color-N7{color:#FFFFFF;} + .d2-1324883695 .color-B1{color:#0D32B2;} + .d2-1324883695 .color-B2{color:#0D32B2;} + .d2-1324883695 .color-B3{color:#E3E9FD;} + .d2-1324883695 .color-B4{color:#E3E9FD;} + .d2-1324883695 .color-B5{color:#EDF0FD;} + .d2-1324883695 .color-B6{color:#F7F8FE;} + .d2-1324883695 .color-AA2{color:#4A6FF3;} + .d2-1324883695 .color-AA4{color:#EDF0FD;} + .d2-1324883695 .color-AA5{color:#F7F8FE;} + .d2-1324883695 .color-AB4{color:#EDF0FD;} + .d2-1324883695 .color-AB5{color:#F7F8FE;}.appendix text.text{fill:#0A0F25}.md{--color-fg-default:#0A0F25;--color-fg-muted:#676C7E;--color-fg-subtle:#9499AB;--color-canvas-default:#FFFFFF;--color-canvas-subtle:#EEF1F8;--color-border-default:#0D32B2;--color-border-muted:#0D32B2;--color-neutral-muted:#EEF1F8;--color-accent-fg:#0D32B2;--color-accent-emphasis:#0D32B2;--color-attention-subtle:#676C7E;--color-danger-fg:red;}.sketch-overlay-B1{fill:url(#streaks-darker);mix-blend-mode:lighten}.sketch-overlay-B2{fill:url(#streaks-darker);mix-blend-mode:lighten}.sketch-overlay-B3{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-B4{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-B5{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-B6{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-AA2{fill:url(#streaks-dark);mix-blend-mode:overlay}.sketch-overlay-AA4{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-AA5{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-AB4{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-AB5{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-N1{fill:url(#streaks-darker);mix-blend-mode:lighten}.sketch-overlay-N2{fill:url(#streaks-dark);mix-blend-mode:overlay}.sketch-overlay-N3{fill:url(#streaks-normal);mix-blend-mode:color-burn}.sketch-overlay-N4{fill:url(#streaks-normal);mix-blend-mode:color-burn}.sketch-overlay-N5{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-N6{fill:url(#streaks-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 f9f2da0f12..92cc37a3e6 100644 --- a/e2etests/testdata/stable/sequence_diagram_distance/dagre/board.exp.json +++ b/e2etests/testdata/stable/sequence_diagram_distance/dagre/board.exp.json @@ -91,10 +91,8 @@ "id": "(alice -> bob)[0]", "src": "alice", "srcArrow": "none", - "srcLabel": "", "dst": "bob", "dstArrow": "triangle", - "dstLabel": "", "opacity": 1, "strokeDash": 0, "strokeWidth": 2, @@ -131,10 +129,8 @@ "id": "(bob -> alice)[0]", "src": "bob", "srcArrow": "none", - "srcLabel": "", "dst": "alice", "dstArrow": "triangle", - "dstLabel": "", "opacity": 1, "strokeDash": 0, "strokeWidth": 2, @@ -171,10 +167,8 @@ "id": "(alice -- )[0]", "src": "alice", "srcArrow": "none", - "srcLabel": "", "dst": "alice-lifeline-end-3851299086", "dstArrow": "none", - "dstLabel": "", "opacity": 1, "strokeDash": 6, "strokeWidth": 2, @@ -211,10 +205,8 @@ "id": "(bob -- )[0]", "src": "bob", "srcArrow": "none", - "srcLabel": "", "dst": "bob-lifeline-end-3036726343", "dstArrow": "none", - "dstLabel": "", "opacity": 1, "strokeDash": 6, "strokeWidth": 2, 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 bad1349bd9..b3d3c42ce9 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-3013112664 .fill-N1{fill:#0A0F25;} + .d2-3013112664 .fill-N2{fill:#676C7E;} + .d2-3013112664 .fill-N3{fill:#9499AB;} + .d2-3013112664 .fill-N4{fill:#CFD2DD;} + .d2-3013112664 .fill-N5{fill:#DEE1EB;} + .d2-3013112664 .fill-N6{fill:#EEF1F8;} + .d2-3013112664 .fill-N7{fill:#FFFFFF;} + .d2-3013112664 .fill-B1{fill:#0D32B2;} + .d2-3013112664 .fill-B2{fill:#0D32B2;} + .d2-3013112664 .fill-B3{fill:#E3E9FD;} + .d2-3013112664 .fill-B4{fill:#E3E9FD;} + .d2-3013112664 .fill-B5{fill:#EDF0FD;} + .d2-3013112664 .fill-B6{fill:#F7F8FE;} + .d2-3013112664 .fill-AA2{fill:#4A6FF3;} + .d2-3013112664 .fill-AA4{fill:#EDF0FD;} + .d2-3013112664 .fill-AA5{fill:#F7F8FE;} + .d2-3013112664 .fill-AB4{fill:#EDF0FD;} + .d2-3013112664 .fill-AB5{fill:#F7F8FE;} + .d2-3013112664 .stroke-N1{stroke:#0A0F25;} + .d2-3013112664 .stroke-N2{stroke:#676C7E;} + .d2-3013112664 .stroke-N3{stroke:#9499AB;} + .d2-3013112664 .stroke-N4{stroke:#CFD2DD;} + .d2-3013112664 .stroke-N5{stroke:#DEE1EB;} + .d2-3013112664 .stroke-N6{stroke:#EEF1F8;} + .d2-3013112664 .stroke-N7{stroke:#FFFFFF;} + .d2-3013112664 .stroke-B1{stroke:#0D32B2;} + .d2-3013112664 .stroke-B2{stroke:#0D32B2;} + .d2-3013112664 .stroke-B3{stroke:#E3E9FD;} + .d2-3013112664 .stroke-B4{stroke:#E3E9FD;} + .d2-3013112664 .stroke-B5{stroke:#EDF0FD;} + .d2-3013112664 .stroke-B6{stroke:#F7F8FE;} + .d2-3013112664 .stroke-AA2{stroke:#4A6FF3;} + .d2-3013112664 .stroke-AA4{stroke:#EDF0FD;} + .d2-3013112664 .stroke-AA5{stroke:#F7F8FE;} + .d2-3013112664 .stroke-AB4{stroke:#EDF0FD;} + .d2-3013112664 .stroke-AB5{stroke:#F7F8FE;} + .d2-3013112664 .background-color-N1{background-color:#0A0F25;} + .d2-3013112664 .background-color-N2{background-color:#676C7E;} + .d2-3013112664 .background-color-N3{background-color:#9499AB;} + .d2-3013112664 .background-color-N4{background-color:#CFD2DD;} + .d2-3013112664 .background-color-N5{background-color:#DEE1EB;} + .d2-3013112664 .background-color-N6{background-color:#EEF1F8;} + .d2-3013112664 .background-color-N7{background-color:#FFFFFF;} + .d2-3013112664 .background-color-B1{background-color:#0D32B2;} + .d2-3013112664 .background-color-B2{background-color:#0D32B2;} + .d2-3013112664 .background-color-B3{background-color:#E3E9FD;} + .d2-3013112664 .background-color-B4{background-color:#E3E9FD;} + .d2-3013112664 .background-color-B5{background-color:#EDF0FD;} + .d2-3013112664 .background-color-B6{background-color:#F7F8FE;} + .d2-3013112664 .background-color-AA2{background-color:#4A6FF3;} + .d2-3013112664 .background-color-AA4{background-color:#EDF0FD;} + .d2-3013112664 .background-color-AA5{background-color:#F7F8FE;} + .d2-3013112664 .background-color-AB4{background-color:#EDF0FD;} + .d2-3013112664 .background-color-AB5{background-color:#F7F8FE;} + .d2-3013112664 .color-N1{color:#0A0F25;} + .d2-3013112664 .color-N2{color:#676C7E;} + .d2-3013112664 .color-N3{color:#9499AB;} + .d2-3013112664 .color-N4{color:#CFD2DD;} + .d2-3013112664 .color-N5{color:#DEE1EB;} + .d2-3013112664 .color-N6{color:#EEF1F8;} + .d2-3013112664 .color-N7{color:#FFFFFF;} + .d2-3013112664 .color-B1{color:#0D32B2;} + .d2-3013112664 .color-B2{color:#0D32B2;} + .d2-3013112664 .color-B3{color:#E3E9FD;} + .d2-3013112664 .color-B4{color:#E3E9FD;} + .d2-3013112664 .color-B5{color:#EDF0FD;} + .d2-3013112664 .color-B6{color:#F7F8FE;} + .d2-3013112664 .color-AA2{color:#4A6FF3;} + .d2-3013112664 .color-AA4{color:#EDF0FD;} + .d2-3013112664 .color-AA5{color:#F7F8FE;} + .d2-3013112664 .color-AB4{color:#EDF0FD;} + .d2-3013112664 .color-AB5{color:#F7F8FE;}.appendix text.text{fill:#0A0F25}.md{--color-fg-default:#0A0F25;--color-fg-muted:#676C7E;--color-fg-subtle:#9499AB;--color-canvas-default:#FFFFFF;--color-canvas-subtle:#EEF1F8;--color-border-default:#0D32B2;--color-border-muted:#0D32B2;--color-neutral-muted:#EEF1F8;--color-accent-fg:#0D32B2;--color-accent-emphasis:#0D32B2;--color-attention-subtle:#676C7E;--color-danger-fg:red;}.sketch-overlay-B1{fill:url(#streaks-darker);mix-blend-mode:lighten}.sketch-overlay-B2{fill:url(#streaks-darker);mix-blend-mode:lighten}.sketch-overlay-B3{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-B4{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-B5{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-B6{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-AA2{fill:url(#streaks-dark);mix-blend-mode:overlay}.sketch-overlay-AA4{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-AA5{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-AB4{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-AB5{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-N1{fill:url(#streaks-darker);mix-blend-mode:lighten}.sketch-overlay-N2{fill:url(#streaks-dark);mix-blend-mode:overlay}.sketch-overlay-N3{fill:url(#streaks-normal);mix-blend-mode:color-burn}.sketch-overlay-N4{fill:url(#streaks-normal);mix-blend-mode:color-burn}.sketch-overlay-N5{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-N6{fill:url(#streaks-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 f9f2da0f12..92cc37a3e6 100644 --- a/e2etests/testdata/stable/sequence_diagram_distance/elk/board.exp.json +++ b/e2etests/testdata/stable/sequence_diagram_distance/elk/board.exp.json @@ -91,10 +91,8 @@ "id": "(alice -> bob)[0]", "src": "alice", "srcArrow": "none", - "srcLabel": "", "dst": "bob", "dstArrow": "triangle", - "dstLabel": "", "opacity": 1, "strokeDash": 0, "strokeWidth": 2, @@ -131,10 +129,8 @@ "id": "(bob -> alice)[0]", "src": "bob", "srcArrow": "none", - "srcLabel": "", "dst": "alice", "dstArrow": "triangle", - "dstLabel": "", "opacity": 1, "strokeDash": 0, "strokeWidth": 2, @@ -171,10 +167,8 @@ "id": "(alice -- )[0]", "src": "alice", "srcArrow": "none", - "srcLabel": "", "dst": "alice-lifeline-end-3851299086", "dstArrow": "none", - "dstLabel": "", "opacity": 1, "strokeDash": 6, "strokeWidth": 2, @@ -211,10 +205,8 @@ "id": "(bob -- )[0]", "src": "bob", "srcArrow": "none", - "srcLabel": "", "dst": "bob-lifeline-end-3036726343", "dstArrow": "none", - "dstLabel": "", "opacity": 1, "strokeDash": 6, "strokeWidth": 2, 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 bad1349bd9..b3d3c42ce9 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-3013112664 .fill-N1{fill:#0A0F25;} + .d2-3013112664 .fill-N2{fill:#676C7E;} + .d2-3013112664 .fill-N3{fill:#9499AB;} + .d2-3013112664 .fill-N4{fill:#CFD2DD;} + .d2-3013112664 .fill-N5{fill:#DEE1EB;} + .d2-3013112664 .fill-N6{fill:#EEF1F8;} + .d2-3013112664 .fill-N7{fill:#FFFFFF;} + .d2-3013112664 .fill-B1{fill:#0D32B2;} + .d2-3013112664 .fill-B2{fill:#0D32B2;} + .d2-3013112664 .fill-B3{fill:#E3E9FD;} + .d2-3013112664 .fill-B4{fill:#E3E9FD;} + .d2-3013112664 .fill-B5{fill:#EDF0FD;} + .d2-3013112664 .fill-B6{fill:#F7F8FE;} + .d2-3013112664 .fill-AA2{fill:#4A6FF3;} + .d2-3013112664 .fill-AA4{fill:#EDF0FD;} + .d2-3013112664 .fill-AA5{fill:#F7F8FE;} + .d2-3013112664 .fill-AB4{fill:#EDF0FD;} + .d2-3013112664 .fill-AB5{fill:#F7F8FE;} + .d2-3013112664 .stroke-N1{stroke:#0A0F25;} + .d2-3013112664 .stroke-N2{stroke:#676C7E;} + .d2-3013112664 .stroke-N3{stroke:#9499AB;} + .d2-3013112664 .stroke-N4{stroke:#CFD2DD;} + .d2-3013112664 .stroke-N5{stroke:#DEE1EB;} + .d2-3013112664 .stroke-N6{stroke:#EEF1F8;} + .d2-3013112664 .stroke-N7{stroke:#FFFFFF;} + .d2-3013112664 .stroke-B1{stroke:#0D32B2;} + .d2-3013112664 .stroke-B2{stroke:#0D32B2;} + .d2-3013112664 .stroke-B3{stroke:#E3E9FD;} + .d2-3013112664 .stroke-B4{stroke:#E3E9FD;} + .d2-3013112664 .stroke-B5{stroke:#EDF0FD;} + .d2-3013112664 .stroke-B6{stroke:#F7F8FE;} + .d2-3013112664 .stroke-AA2{stroke:#4A6FF3;} + .d2-3013112664 .stroke-AA4{stroke:#EDF0FD;} + .d2-3013112664 .stroke-AA5{stroke:#F7F8FE;} + .d2-3013112664 .stroke-AB4{stroke:#EDF0FD;} + .d2-3013112664 .stroke-AB5{stroke:#F7F8FE;} + .d2-3013112664 .background-color-N1{background-color:#0A0F25;} + .d2-3013112664 .background-color-N2{background-color:#676C7E;} + .d2-3013112664 .background-color-N3{background-color:#9499AB;} + .d2-3013112664 .background-color-N4{background-color:#CFD2DD;} + .d2-3013112664 .background-color-N5{background-color:#DEE1EB;} + .d2-3013112664 .background-color-N6{background-color:#EEF1F8;} + .d2-3013112664 .background-color-N7{background-color:#FFFFFF;} + .d2-3013112664 .background-color-B1{background-color:#0D32B2;} + .d2-3013112664 .background-color-B2{background-color:#0D32B2;} + .d2-3013112664 .background-color-B3{background-color:#E3E9FD;} + .d2-3013112664 .background-color-B4{background-color:#E3E9FD;} + .d2-3013112664 .background-color-B5{background-color:#EDF0FD;} + .d2-3013112664 .background-color-B6{background-color:#F7F8FE;} + .d2-3013112664 .background-color-AA2{background-color:#4A6FF3;} + .d2-3013112664 .background-color-AA4{background-color:#EDF0FD;} + .d2-3013112664 .background-color-AA5{background-color:#F7F8FE;} + .d2-3013112664 .background-color-AB4{background-color:#EDF0FD;} + .d2-3013112664 .background-color-AB5{background-color:#F7F8FE;} + .d2-3013112664 .color-N1{color:#0A0F25;} + .d2-3013112664 .color-N2{color:#676C7E;} + .d2-3013112664 .color-N3{color:#9499AB;} + .d2-3013112664 .color-N4{color:#CFD2DD;} + .d2-3013112664 .color-N5{color:#DEE1EB;} + .d2-3013112664 .color-N6{color:#EEF1F8;} + .d2-3013112664 .color-N7{color:#FFFFFF;} + .d2-3013112664 .color-B1{color:#0D32B2;} + .d2-3013112664 .color-B2{color:#0D32B2;} + .d2-3013112664 .color-B3{color:#E3E9FD;} + .d2-3013112664 .color-B4{color:#E3E9FD;} + .d2-3013112664 .color-B5{color:#EDF0FD;} + .d2-3013112664 .color-B6{color:#F7F8FE;} + .d2-3013112664 .color-AA2{color:#4A6FF3;} + .d2-3013112664 .color-AA4{color:#EDF0FD;} + .d2-3013112664 .color-AA5{color:#F7F8FE;} + .d2-3013112664 .color-AB4{color:#EDF0FD;} + .d2-3013112664 .color-AB5{color:#F7F8FE;}.appendix text.text{fill:#0A0F25}.md{--color-fg-default:#0A0F25;--color-fg-muted:#676C7E;--color-fg-subtle:#9499AB;--color-canvas-default:#FFFFFF;--color-canvas-subtle:#EEF1F8;--color-border-default:#0D32B2;--color-border-muted:#0D32B2;--color-neutral-muted:#EEF1F8;--color-accent-fg:#0D32B2;--color-accent-emphasis:#0D32B2;--color-attention-subtle:#676C7E;--color-danger-fg:red;}.sketch-overlay-B1{fill:url(#streaks-darker);mix-blend-mode:lighten}.sketch-overlay-B2{fill:url(#streaks-darker);mix-blend-mode:lighten}.sketch-overlay-B3{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-B4{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-B5{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-B6{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-AA2{fill:url(#streaks-dark);mix-blend-mode:overlay}.sketch-overlay-AA4{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-AA5{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-AB4{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-AB5{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-N1{fill:url(#streaks-darker);mix-blend-mode:lighten}.sketch-overlay-N2{fill:url(#streaks-dark);mix-blend-mode:overlay}.sketch-overlay-N3{fill:url(#streaks-normal);mix-blend-mode:color-burn}.sketch-overlay-N4{fill:url(#streaks-normal);mix-blend-mode:color-burn}.sketch-overlay-N5{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-N6{fill:url(#streaks-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 5b614d7a1b..a34c65e5b5 100644 --- a/e2etests/testdata/stable/sequence_diagram_groups/dagre/board.exp.json +++ b/e2etests/testdata/stable/sequence_diagram_groups/dagre/board.exp.json @@ -585,10 +585,8 @@ "id": "(a -> b)[1]", "src": "a", "srcArrow": "none", - "srcLabel": "", "dst": "b", "dstArrow": "triangle", - "dstLabel": "", "opacity": 1, "strokeDash": 0, "strokeWidth": 2, @@ -625,10 +623,8 @@ "id": "(a -> b)[0]", "src": "a", "srcArrow": "none", - "srcLabel": "", "dst": "b", "dstArrow": "triangle", - "dstLabel": "", "opacity": 1, "strokeDash": 0, "strokeWidth": 2, @@ -665,10 +661,8 @@ "id": "(b -> c)[0]", "src": "b", "srcArrow": "none", - "srcLabel": "", "dst": "c", "dstArrow": "triangle", - "dstLabel": "", "opacity": 1, "strokeDash": 0, "strokeWidth": 2, @@ -705,10 +699,8 @@ "id": "(c -> b)[1]", "src": "c", "srcArrow": "none", - "srcLabel": "", "dst": "b", "dstArrow": "triangle", - "dstLabel": "", "opacity": 1, "strokeDash": 0, "strokeWidth": 2, @@ -745,10 +737,8 @@ "id": "(c -> b)[0]", "src": "c", "srcArrow": "none", - "srcLabel": "", "dst": "b", "dstArrow": "triangle", - "dstLabel": "", "opacity": 1, "strokeDash": 0, "strokeWidth": 2, @@ -785,10 +775,8 @@ "id": "(b.t1 -> c.t1)[0]", "src": "b.t1", "srcArrow": "none", - "srcLabel": "", "dst": "c.t1", "dstArrow": "triangle", - "dstLabel": "", "opacity": 1, "strokeDash": 0, "strokeWidth": 2, @@ -825,10 +813,8 @@ "id": "(b.t1.t2 -> c.t1)[0]", "src": "b.t1.t2", "srcArrow": "none", - "srcLabel": "", "dst": "c.t1", "dstArrow": "triangle", - "dstLabel": "", "opacity": 1, "strokeDash": 0, "strokeWidth": 2, @@ -865,10 +851,8 @@ "id": "(c.t1 -> b.t1)[0]", "src": "c.t1", "srcArrow": "none", - "srcLabel": "", "dst": "b.t1", "dstArrow": "triangle", - "dstLabel": "", "opacity": 1, "strokeDash": 0, "strokeWidth": 2, @@ -905,10 +889,8 @@ "id": "(b -> c)[1]", "src": "b", "srcArrow": "none", - "srcLabel": "", "dst": "c", "dstArrow": "triangle", - "dstLabel": "", "opacity": 1, "strokeDash": 0, "strokeWidth": 2, @@ -945,10 +927,8 @@ "id": "(c -> b)[2]", "src": "c", "srcArrow": "none", - "srcLabel": "", "dst": "b", "dstArrow": "triangle", - "dstLabel": "", "opacity": 1, "strokeDash": 0, "strokeWidth": 2, @@ -985,10 +965,8 @@ "id": "(a -- )[0]", "src": "a", "srcArrow": "none", - "srcLabel": "", "dst": "a-lifeline-end-2251863791", "dstArrow": "none", - "dstLabel": "", "opacity": 1, "strokeDash": 6, "strokeWidth": 2, @@ -1025,10 +1003,8 @@ "id": "(b -- )[0]", "src": "b", "srcArrow": "none", - "srcLabel": "", "dst": "b-lifeline-end-668380428", "dstArrow": "none", - "dstLabel": "", "opacity": 1, "strokeDash": 6, "strokeWidth": 2, @@ -1065,10 +1041,8 @@ "id": "(c -- )[0]", "src": "c", "srcArrow": "none", - "srcLabel": "", "dst": "c-lifeline-end-955173837", "dstArrow": "none", - "dstLabel": "", "opacity": 1, "strokeDash": 6, "strokeWidth": 2, @@ -1105,10 +1079,8 @@ "id": "(d -- )[0]", "src": "d", "srcArrow": "none", - "srcLabel": "", "dst": "d-lifeline-end-2106864010", "dstArrow": "none", - "dstLabel": "", "opacity": 1, "strokeDash": 6, "strokeWidth": 2, 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 6cc77f5752..c4e626f651 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-4070900950 .fill-N1{fill:#0A0F25;} + .d2-4070900950 .fill-N2{fill:#676C7E;} + .d2-4070900950 .fill-N3{fill:#9499AB;} + .d2-4070900950 .fill-N4{fill:#CFD2DD;} + .d2-4070900950 .fill-N5{fill:#DEE1EB;} + .d2-4070900950 .fill-N6{fill:#EEF1F8;} + .d2-4070900950 .fill-N7{fill:#FFFFFF;} + .d2-4070900950 .fill-B1{fill:#0D32B2;} + .d2-4070900950 .fill-B2{fill:#0D32B2;} + .d2-4070900950 .fill-B3{fill:#E3E9FD;} + .d2-4070900950 .fill-B4{fill:#E3E9FD;} + .d2-4070900950 .fill-B5{fill:#EDF0FD;} + .d2-4070900950 .fill-B6{fill:#F7F8FE;} + .d2-4070900950 .fill-AA2{fill:#4A6FF3;} + .d2-4070900950 .fill-AA4{fill:#EDF0FD;} + .d2-4070900950 .fill-AA5{fill:#F7F8FE;} + .d2-4070900950 .fill-AB4{fill:#EDF0FD;} + .d2-4070900950 .fill-AB5{fill:#F7F8FE;} + .d2-4070900950 .stroke-N1{stroke:#0A0F25;} + .d2-4070900950 .stroke-N2{stroke:#676C7E;} + .d2-4070900950 .stroke-N3{stroke:#9499AB;} + .d2-4070900950 .stroke-N4{stroke:#CFD2DD;} + .d2-4070900950 .stroke-N5{stroke:#DEE1EB;} + .d2-4070900950 .stroke-N6{stroke:#EEF1F8;} + .d2-4070900950 .stroke-N7{stroke:#FFFFFF;} + .d2-4070900950 .stroke-B1{stroke:#0D32B2;} + .d2-4070900950 .stroke-B2{stroke:#0D32B2;} + .d2-4070900950 .stroke-B3{stroke:#E3E9FD;} + .d2-4070900950 .stroke-B4{stroke:#E3E9FD;} + .d2-4070900950 .stroke-B5{stroke:#EDF0FD;} + .d2-4070900950 .stroke-B6{stroke:#F7F8FE;} + .d2-4070900950 .stroke-AA2{stroke:#4A6FF3;} + .d2-4070900950 .stroke-AA4{stroke:#EDF0FD;} + .d2-4070900950 .stroke-AA5{stroke:#F7F8FE;} + .d2-4070900950 .stroke-AB4{stroke:#EDF0FD;} + .d2-4070900950 .stroke-AB5{stroke:#F7F8FE;} + .d2-4070900950 .background-color-N1{background-color:#0A0F25;} + .d2-4070900950 .background-color-N2{background-color:#676C7E;} + .d2-4070900950 .background-color-N3{background-color:#9499AB;} + .d2-4070900950 .background-color-N4{background-color:#CFD2DD;} + .d2-4070900950 .background-color-N5{background-color:#DEE1EB;} + .d2-4070900950 .background-color-N6{background-color:#EEF1F8;} + .d2-4070900950 .background-color-N7{background-color:#FFFFFF;} + .d2-4070900950 .background-color-B1{background-color:#0D32B2;} + .d2-4070900950 .background-color-B2{background-color:#0D32B2;} + .d2-4070900950 .background-color-B3{background-color:#E3E9FD;} + .d2-4070900950 .background-color-B4{background-color:#E3E9FD;} + .d2-4070900950 .background-color-B5{background-color:#EDF0FD;} + .d2-4070900950 .background-color-B6{background-color:#F7F8FE;} + .d2-4070900950 .background-color-AA2{background-color:#4A6FF3;} + .d2-4070900950 .background-color-AA4{background-color:#EDF0FD;} + .d2-4070900950 .background-color-AA5{background-color:#F7F8FE;} + .d2-4070900950 .background-color-AB4{background-color:#EDF0FD;} + .d2-4070900950 .background-color-AB5{background-color:#F7F8FE;} + .d2-4070900950 .color-N1{color:#0A0F25;} + .d2-4070900950 .color-N2{color:#676C7E;} + .d2-4070900950 .color-N3{color:#9499AB;} + .d2-4070900950 .color-N4{color:#CFD2DD;} + .d2-4070900950 .color-N5{color:#DEE1EB;} + .d2-4070900950 .color-N6{color:#EEF1F8;} + .d2-4070900950 .color-N7{color:#FFFFFF;} + .d2-4070900950 .color-B1{color:#0D32B2;} + .d2-4070900950 .color-B2{color:#0D32B2;} + .d2-4070900950 .color-B3{color:#E3E9FD;} + .d2-4070900950 .color-B4{color:#E3E9FD;} + .d2-4070900950 .color-B5{color:#EDF0FD;} + .d2-4070900950 .color-B6{color:#F7F8FE;} + .d2-4070900950 .color-AA2{color:#4A6FF3;} + .d2-4070900950 .color-AA4{color:#EDF0FD;} + .d2-4070900950 .color-AA5{color:#F7F8FE;} + .d2-4070900950 .color-AB4{color:#EDF0FD;} + .d2-4070900950 .color-AB5{color:#F7F8FE;}.appendix text.text{fill:#0A0F25}.md{--color-fg-default:#0A0F25;--color-fg-muted:#676C7E;--color-fg-subtle:#9499AB;--color-canvas-default:#FFFFFF;--color-canvas-subtle:#EEF1F8;--color-border-default:#0D32B2;--color-border-muted:#0D32B2;--color-neutral-muted:#EEF1F8;--color-accent-fg:#0D32B2;--color-accent-emphasis:#0D32B2;--color-attention-subtle:#676C7E;--color-danger-fg:red;}.sketch-overlay-B1{fill:url(#streaks-darker);mix-blend-mode:lighten}.sketch-overlay-B2{fill:url(#streaks-darker);mix-blend-mode:lighten}.sketch-overlay-B3{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-B4{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-B5{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-B6{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-AA2{fill:url(#streaks-dark);mix-blend-mode:overlay}.sketch-overlay-AA4{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-AA5{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-AB4{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-AB5{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-N1{fill:url(#streaks-darker);mix-blend-mode:lighten}.sketch-overlay-N2{fill:url(#streaks-dark);mix-blend-mode:overlay}.sketch-overlay-N3{fill:url(#streaks-normal);mix-blend-mode:color-burn}.sketch-overlay-N4{fill:url(#streaks-normal);mix-blend-mode:color-burn}.sketch-overlay-N5{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-N6{fill:url(#streaks-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 5b614d7a1b..a34c65e5b5 100644 --- a/e2etests/testdata/stable/sequence_diagram_groups/elk/board.exp.json +++ b/e2etests/testdata/stable/sequence_diagram_groups/elk/board.exp.json @@ -585,10 +585,8 @@ "id": "(a -> b)[1]", "src": "a", "srcArrow": "none", - "srcLabel": "", "dst": "b", "dstArrow": "triangle", - "dstLabel": "", "opacity": 1, "strokeDash": 0, "strokeWidth": 2, @@ -625,10 +623,8 @@ "id": "(a -> b)[0]", "src": "a", "srcArrow": "none", - "srcLabel": "", "dst": "b", "dstArrow": "triangle", - "dstLabel": "", "opacity": 1, "strokeDash": 0, "strokeWidth": 2, @@ -665,10 +661,8 @@ "id": "(b -> c)[0]", "src": "b", "srcArrow": "none", - "srcLabel": "", "dst": "c", "dstArrow": "triangle", - "dstLabel": "", "opacity": 1, "strokeDash": 0, "strokeWidth": 2, @@ -705,10 +699,8 @@ "id": "(c -> b)[1]", "src": "c", "srcArrow": "none", - "srcLabel": "", "dst": "b", "dstArrow": "triangle", - "dstLabel": "", "opacity": 1, "strokeDash": 0, "strokeWidth": 2, @@ -745,10 +737,8 @@ "id": "(c -> b)[0]", "src": "c", "srcArrow": "none", - "srcLabel": "", "dst": "b", "dstArrow": "triangle", - "dstLabel": "", "opacity": 1, "strokeDash": 0, "strokeWidth": 2, @@ -785,10 +775,8 @@ "id": "(b.t1 -> c.t1)[0]", "src": "b.t1", "srcArrow": "none", - "srcLabel": "", "dst": "c.t1", "dstArrow": "triangle", - "dstLabel": "", "opacity": 1, "strokeDash": 0, "strokeWidth": 2, @@ -825,10 +813,8 @@ "id": "(b.t1.t2 -> c.t1)[0]", "src": "b.t1.t2", "srcArrow": "none", - "srcLabel": "", "dst": "c.t1", "dstArrow": "triangle", - "dstLabel": "", "opacity": 1, "strokeDash": 0, "strokeWidth": 2, @@ -865,10 +851,8 @@ "id": "(c.t1 -> b.t1)[0]", "src": "c.t1", "srcArrow": "none", - "srcLabel": "", "dst": "b.t1", "dstArrow": "triangle", - "dstLabel": "", "opacity": 1, "strokeDash": 0, "strokeWidth": 2, @@ -905,10 +889,8 @@ "id": "(b -> c)[1]", "src": "b", "srcArrow": "none", - "srcLabel": "", "dst": "c", "dstArrow": "triangle", - "dstLabel": "", "opacity": 1, "strokeDash": 0, "strokeWidth": 2, @@ -945,10 +927,8 @@ "id": "(c -> b)[2]", "src": "c", "srcArrow": "none", - "srcLabel": "", "dst": "b", "dstArrow": "triangle", - "dstLabel": "", "opacity": 1, "strokeDash": 0, "strokeWidth": 2, @@ -985,10 +965,8 @@ "id": "(a -- )[0]", "src": "a", "srcArrow": "none", - "srcLabel": "", "dst": "a-lifeline-end-2251863791", "dstArrow": "none", - "dstLabel": "", "opacity": 1, "strokeDash": 6, "strokeWidth": 2, @@ -1025,10 +1003,8 @@ "id": "(b -- )[0]", "src": "b", "srcArrow": "none", - "srcLabel": "", "dst": "b-lifeline-end-668380428", "dstArrow": "none", - "dstLabel": "", "opacity": 1, "strokeDash": 6, "strokeWidth": 2, @@ -1065,10 +1041,8 @@ "id": "(c -- )[0]", "src": "c", "srcArrow": "none", - "srcLabel": "", "dst": "c-lifeline-end-955173837", "dstArrow": "none", - "dstLabel": "", "opacity": 1, "strokeDash": 6, "strokeWidth": 2, @@ -1105,10 +1079,8 @@ "id": "(d -- )[0]", "src": "d", "srcArrow": "none", - "srcLabel": "", "dst": "d-lifeline-end-2106864010", "dstArrow": "none", - "dstLabel": "", "opacity": 1, "strokeDash": 6, "strokeWidth": 2, 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 6cc77f5752..c4e626f651 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-4070900950 .fill-N1{fill:#0A0F25;} + .d2-4070900950 .fill-N2{fill:#676C7E;} + .d2-4070900950 .fill-N3{fill:#9499AB;} + .d2-4070900950 .fill-N4{fill:#CFD2DD;} + .d2-4070900950 .fill-N5{fill:#DEE1EB;} + .d2-4070900950 .fill-N6{fill:#EEF1F8;} + .d2-4070900950 .fill-N7{fill:#FFFFFF;} + .d2-4070900950 .fill-B1{fill:#0D32B2;} + .d2-4070900950 .fill-B2{fill:#0D32B2;} + .d2-4070900950 .fill-B3{fill:#E3E9FD;} + .d2-4070900950 .fill-B4{fill:#E3E9FD;} + .d2-4070900950 .fill-B5{fill:#EDF0FD;} + .d2-4070900950 .fill-B6{fill:#F7F8FE;} + .d2-4070900950 .fill-AA2{fill:#4A6FF3;} + .d2-4070900950 .fill-AA4{fill:#EDF0FD;} + .d2-4070900950 .fill-AA5{fill:#F7F8FE;} + .d2-4070900950 .fill-AB4{fill:#EDF0FD;} + .d2-4070900950 .fill-AB5{fill:#F7F8FE;} + .d2-4070900950 .stroke-N1{stroke:#0A0F25;} + .d2-4070900950 .stroke-N2{stroke:#676C7E;} + .d2-4070900950 .stroke-N3{stroke:#9499AB;} + .d2-4070900950 .stroke-N4{stroke:#CFD2DD;} + .d2-4070900950 .stroke-N5{stroke:#DEE1EB;} + .d2-4070900950 .stroke-N6{stroke:#EEF1F8;} + .d2-4070900950 .stroke-N7{stroke:#FFFFFF;} + .d2-4070900950 .stroke-B1{stroke:#0D32B2;} + .d2-4070900950 .stroke-B2{stroke:#0D32B2;} + .d2-4070900950 .stroke-B3{stroke:#E3E9FD;} + .d2-4070900950 .stroke-B4{stroke:#E3E9FD;} + .d2-4070900950 .stroke-B5{stroke:#EDF0FD;} + .d2-4070900950 .stroke-B6{stroke:#F7F8FE;} + .d2-4070900950 .stroke-AA2{stroke:#4A6FF3;} + .d2-4070900950 .stroke-AA4{stroke:#EDF0FD;} + .d2-4070900950 .stroke-AA5{stroke:#F7F8FE;} + .d2-4070900950 .stroke-AB4{stroke:#EDF0FD;} + .d2-4070900950 .stroke-AB5{stroke:#F7F8FE;} + .d2-4070900950 .background-color-N1{background-color:#0A0F25;} + .d2-4070900950 .background-color-N2{background-color:#676C7E;} + .d2-4070900950 .background-color-N3{background-color:#9499AB;} + .d2-4070900950 .background-color-N4{background-color:#CFD2DD;} + .d2-4070900950 .background-color-N5{background-color:#DEE1EB;} + .d2-4070900950 .background-color-N6{background-color:#EEF1F8;} + .d2-4070900950 .background-color-N7{background-color:#FFFFFF;} + .d2-4070900950 .background-color-B1{background-color:#0D32B2;} + .d2-4070900950 .background-color-B2{background-color:#0D32B2;} + .d2-4070900950 .background-color-B3{background-color:#E3E9FD;} + .d2-4070900950 .background-color-B4{background-color:#E3E9FD;} + .d2-4070900950 .background-color-B5{background-color:#EDF0FD;} + .d2-4070900950 .background-color-B6{background-color:#F7F8FE;} + .d2-4070900950 .background-color-AA2{background-color:#4A6FF3;} + .d2-4070900950 .background-color-AA4{background-color:#EDF0FD;} + .d2-4070900950 .background-color-AA5{background-color:#F7F8FE;} + .d2-4070900950 .background-color-AB4{background-color:#EDF0FD;} + .d2-4070900950 .background-color-AB5{background-color:#F7F8FE;} + .d2-4070900950 .color-N1{color:#0A0F25;} + .d2-4070900950 .color-N2{color:#676C7E;} + .d2-4070900950 .color-N3{color:#9499AB;} + .d2-4070900950 .color-N4{color:#CFD2DD;} + .d2-4070900950 .color-N5{color:#DEE1EB;} + .d2-4070900950 .color-N6{color:#EEF1F8;} + .d2-4070900950 .color-N7{color:#FFFFFF;} + .d2-4070900950 .color-B1{color:#0D32B2;} + .d2-4070900950 .color-B2{color:#0D32B2;} + .d2-4070900950 .color-B3{color:#E3E9FD;} + .d2-4070900950 .color-B4{color:#E3E9FD;} + .d2-4070900950 .color-B5{color:#EDF0FD;} + .d2-4070900950 .color-B6{color:#F7F8FE;} + .d2-4070900950 .color-AA2{color:#4A6FF3;} + .d2-4070900950 .color-AA4{color:#EDF0FD;} + .d2-4070900950 .color-AA5{color:#F7F8FE;} + .d2-4070900950 .color-AB4{color:#EDF0FD;} + .d2-4070900950 .color-AB5{color:#F7F8FE;}.appendix text.text{fill:#0A0F25}.md{--color-fg-default:#0A0F25;--color-fg-muted:#676C7E;--color-fg-subtle:#9499AB;--color-canvas-default:#FFFFFF;--color-canvas-subtle:#EEF1F8;--color-border-default:#0D32B2;--color-border-muted:#0D32B2;--color-neutral-muted:#EEF1F8;--color-accent-fg:#0D32B2;--color-accent-emphasis:#0D32B2;--color-attention-subtle:#676C7E;--color-danger-fg:red;}.sketch-overlay-B1{fill:url(#streaks-darker);mix-blend-mode:lighten}.sketch-overlay-B2{fill:url(#streaks-darker);mix-blend-mode:lighten}.sketch-overlay-B3{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-B4{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-B5{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-B6{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-AA2{fill:url(#streaks-dark);mix-blend-mode:overlay}.sketch-overlay-AA4{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-AA5{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-AB4{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-AB5{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-N1{fill:url(#streaks-darker);mix-blend-mode:lighten}.sketch-overlay-N2{fill:url(#streaks-dark);mix-blend-mode:overlay}.sketch-overlay-N3{fill:url(#streaks-normal);mix-blend-mode:color-burn}.sketch-overlay-N4{fill:url(#streaks-normal);mix-blend-mode:color-burn}.sketch-overlay-N5{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-N6{fill:url(#streaks-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 553d14eb18..3bf4762eff 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 @@ -173,10 +173,8 @@ "id": "(a -> b)[0]", "src": "a", "srcArrow": "none", - "srcLabel": "", "dst": "b", "dstArrow": "triangle", - "dstLabel": "", "opacity": 1, "strokeDash": 0, "strokeWidth": 2, @@ -213,10 +211,8 @@ "id": "(a -- )[0]", "src": "a", "srcArrow": "none", - "srcLabel": "", "dst": "a-lifeline-end-2251863791", "dstArrow": "none", - "dstLabel": "", "opacity": 1, "strokeDash": 6, "strokeWidth": 2, @@ -253,10 +249,8 @@ "id": "(b -- )[0]", "src": "b", "srcArrow": "none", - "srcLabel": "", "dst": "b-lifeline-end-668380428", "dstArrow": "none", - "dstLabel": "", "opacity": 1, "strokeDash": 6, "strokeWidth": 2, 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 f75770b0eb..49be907d29 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-2281305743 .fill-N1{fill:#0A0F25;} + .d2-2281305743 .fill-N2{fill:#676C7E;} + .d2-2281305743 .fill-N3{fill:#9499AB;} + .d2-2281305743 .fill-N4{fill:#CFD2DD;} + .d2-2281305743 .fill-N5{fill:#DEE1EB;} + .d2-2281305743 .fill-N6{fill:#EEF1F8;} + .d2-2281305743 .fill-N7{fill:#FFFFFF;} + .d2-2281305743 .fill-B1{fill:#0D32B2;} + .d2-2281305743 .fill-B2{fill:#0D32B2;} + .d2-2281305743 .fill-B3{fill:#E3E9FD;} + .d2-2281305743 .fill-B4{fill:#E3E9FD;} + .d2-2281305743 .fill-B5{fill:#EDF0FD;} + .d2-2281305743 .fill-B6{fill:#F7F8FE;} + .d2-2281305743 .fill-AA2{fill:#4A6FF3;} + .d2-2281305743 .fill-AA4{fill:#EDF0FD;} + .d2-2281305743 .fill-AA5{fill:#F7F8FE;} + .d2-2281305743 .fill-AB4{fill:#EDF0FD;} + .d2-2281305743 .fill-AB5{fill:#F7F8FE;} + .d2-2281305743 .stroke-N1{stroke:#0A0F25;} + .d2-2281305743 .stroke-N2{stroke:#676C7E;} + .d2-2281305743 .stroke-N3{stroke:#9499AB;} + .d2-2281305743 .stroke-N4{stroke:#CFD2DD;} + .d2-2281305743 .stroke-N5{stroke:#DEE1EB;} + .d2-2281305743 .stroke-N6{stroke:#EEF1F8;} + .d2-2281305743 .stroke-N7{stroke:#FFFFFF;} + .d2-2281305743 .stroke-B1{stroke:#0D32B2;} + .d2-2281305743 .stroke-B2{stroke:#0D32B2;} + .d2-2281305743 .stroke-B3{stroke:#E3E9FD;} + .d2-2281305743 .stroke-B4{stroke:#E3E9FD;} + .d2-2281305743 .stroke-B5{stroke:#EDF0FD;} + .d2-2281305743 .stroke-B6{stroke:#F7F8FE;} + .d2-2281305743 .stroke-AA2{stroke:#4A6FF3;} + .d2-2281305743 .stroke-AA4{stroke:#EDF0FD;} + .d2-2281305743 .stroke-AA5{stroke:#F7F8FE;} + .d2-2281305743 .stroke-AB4{stroke:#EDF0FD;} + .d2-2281305743 .stroke-AB5{stroke:#F7F8FE;} + .d2-2281305743 .background-color-N1{background-color:#0A0F25;} + .d2-2281305743 .background-color-N2{background-color:#676C7E;} + .d2-2281305743 .background-color-N3{background-color:#9499AB;} + .d2-2281305743 .background-color-N4{background-color:#CFD2DD;} + .d2-2281305743 .background-color-N5{background-color:#DEE1EB;} + .d2-2281305743 .background-color-N6{background-color:#EEF1F8;} + .d2-2281305743 .background-color-N7{background-color:#FFFFFF;} + .d2-2281305743 .background-color-B1{background-color:#0D32B2;} + .d2-2281305743 .background-color-B2{background-color:#0D32B2;} + .d2-2281305743 .background-color-B3{background-color:#E3E9FD;} + .d2-2281305743 .background-color-B4{background-color:#E3E9FD;} + .d2-2281305743 .background-color-B5{background-color:#EDF0FD;} + .d2-2281305743 .background-color-B6{background-color:#F7F8FE;} + .d2-2281305743 .background-color-AA2{background-color:#4A6FF3;} + .d2-2281305743 .background-color-AA4{background-color:#EDF0FD;} + .d2-2281305743 .background-color-AA5{background-color:#F7F8FE;} + .d2-2281305743 .background-color-AB4{background-color:#EDF0FD;} + .d2-2281305743 .background-color-AB5{background-color:#F7F8FE;} + .d2-2281305743 .color-N1{color:#0A0F25;} + .d2-2281305743 .color-N2{color:#676C7E;} + .d2-2281305743 .color-N3{color:#9499AB;} + .d2-2281305743 .color-N4{color:#CFD2DD;} + .d2-2281305743 .color-N5{color:#DEE1EB;} + .d2-2281305743 .color-N6{color:#EEF1F8;} + .d2-2281305743 .color-N7{color:#FFFFFF;} + .d2-2281305743 .color-B1{color:#0D32B2;} + .d2-2281305743 .color-B2{color:#0D32B2;} + .d2-2281305743 .color-B3{color:#E3E9FD;} + .d2-2281305743 .color-B4{color:#E3E9FD;} + .d2-2281305743 .color-B5{color:#EDF0FD;} + .d2-2281305743 .color-B6{color:#F7F8FE;} + .d2-2281305743 .color-AA2{color:#4A6FF3;} + .d2-2281305743 .color-AA4{color:#EDF0FD;} + .d2-2281305743 .color-AA5{color:#F7F8FE;} + .d2-2281305743 .color-AB4{color:#EDF0FD;} + .d2-2281305743 .color-AB5{color:#F7F8FE;}.appendix text.text{fill:#0A0F25}.md{--color-fg-default:#0A0F25;--color-fg-muted:#676C7E;--color-fg-subtle:#9499AB;--color-canvas-default:#FFFFFF;--color-canvas-subtle:#EEF1F8;--color-border-default:#0D32B2;--color-border-muted:#0D32B2;--color-neutral-muted:#EEF1F8;--color-accent-fg:#0D32B2;--color-accent-emphasis:#0D32B2;--color-attention-subtle:#676C7E;--color-danger-fg:red;}.sketch-overlay-B1{fill:url(#streaks-darker);mix-blend-mode:lighten}.sketch-overlay-B2{fill:url(#streaks-darker);mix-blend-mode:lighten}.sketch-overlay-B3{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-B4{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-B5{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-B6{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-AA2{fill:url(#streaks-dark);mix-blend-mode:overlay}.sketch-overlay-AA4{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-AA5{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-AB4{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-AB5{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-N1{fill:url(#streaks-darker);mix-blend-mode:lighten}.sketch-overlay-N2{fill:url(#streaks-dark);mix-blend-mode:overlay}.sketch-overlay-N3{fill:url(#streaks-normal);mix-blend-mode:color-burn}.sketch-overlay-N4{fill:url(#streaks-normal);mix-blend-mode:color-burn}.sketch-overlay-N5{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-N6{fill:url(#streaks-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 \ No newline at end of file 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 553d14eb18..3bf4762eff 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 @@ -173,10 +173,8 @@ "id": "(a -> b)[0]", "src": "a", "srcArrow": "none", - "srcLabel": "", "dst": "b", "dstArrow": "triangle", - "dstLabel": "", "opacity": 1, "strokeDash": 0, "strokeWidth": 2, @@ -213,10 +211,8 @@ "id": "(a -- )[0]", "src": "a", "srcArrow": "none", - "srcLabel": "", "dst": "a-lifeline-end-2251863791", "dstArrow": "none", - "dstLabel": "", "opacity": 1, "strokeDash": 6, "strokeWidth": 2, @@ -253,10 +249,8 @@ "id": "(b -- )[0]", "src": "b", "srcArrow": "none", - "srcLabel": "", "dst": "b-lifeline-end-668380428", "dstArrow": "none", - "dstLabel": "", "opacity": 1, "strokeDash": 6, "strokeWidth": 2, 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 f75770b0eb..49be907d29 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-2281305743 .fill-N1{fill:#0A0F25;} + .d2-2281305743 .fill-N2{fill:#676C7E;} + .d2-2281305743 .fill-N3{fill:#9499AB;} + .d2-2281305743 .fill-N4{fill:#CFD2DD;} + .d2-2281305743 .fill-N5{fill:#DEE1EB;} + .d2-2281305743 .fill-N6{fill:#EEF1F8;} + .d2-2281305743 .fill-N7{fill:#FFFFFF;} + .d2-2281305743 .fill-B1{fill:#0D32B2;} + .d2-2281305743 .fill-B2{fill:#0D32B2;} + .d2-2281305743 .fill-B3{fill:#E3E9FD;} + .d2-2281305743 .fill-B4{fill:#E3E9FD;} + .d2-2281305743 .fill-B5{fill:#EDF0FD;} + .d2-2281305743 .fill-B6{fill:#F7F8FE;} + .d2-2281305743 .fill-AA2{fill:#4A6FF3;} + .d2-2281305743 .fill-AA4{fill:#EDF0FD;} + .d2-2281305743 .fill-AA5{fill:#F7F8FE;} + .d2-2281305743 .fill-AB4{fill:#EDF0FD;} + .d2-2281305743 .fill-AB5{fill:#F7F8FE;} + .d2-2281305743 .stroke-N1{stroke:#0A0F25;} + .d2-2281305743 .stroke-N2{stroke:#676C7E;} + .d2-2281305743 .stroke-N3{stroke:#9499AB;} + .d2-2281305743 .stroke-N4{stroke:#CFD2DD;} + .d2-2281305743 .stroke-N5{stroke:#DEE1EB;} + .d2-2281305743 .stroke-N6{stroke:#EEF1F8;} + .d2-2281305743 .stroke-N7{stroke:#FFFFFF;} + .d2-2281305743 .stroke-B1{stroke:#0D32B2;} + .d2-2281305743 .stroke-B2{stroke:#0D32B2;} + .d2-2281305743 .stroke-B3{stroke:#E3E9FD;} + .d2-2281305743 .stroke-B4{stroke:#E3E9FD;} + .d2-2281305743 .stroke-B5{stroke:#EDF0FD;} + .d2-2281305743 .stroke-B6{stroke:#F7F8FE;} + .d2-2281305743 .stroke-AA2{stroke:#4A6FF3;} + .d2-2281305743 .stroke-AA4{stroke:#EDF0FD;} + .d2-2281305743 .stroke-AA5{stroke:#F7F8FE;} + .d2-2281305743 .stroke-AB4{stroke:#EDF0FD;} + .d2-2281305743 .stroke-AB5{stroke:#F7F8FE;} + .d2-2281305743 .background-color-N1{background-color:#0A0F25;} + .d2-2281305743 .background-color-N2{background-color:#676C7E;} + .d2-2281305743 .background-color-N3{background-color:#9499AB;} + .d2-2281305743 .background-color-N4{background-color:#CFD2DD;} + .d2-2281305743 .background-color-N5{background-color:#DEE1EB;} + .d2-2281305743 .background-color-N6{background-color:#EEF1F8;} + .d2-2281305743 .background-color-N7{background-color:#FFFFFF;} + .d2-2281305743 .background-color-B1{background-color:#0D32B2;} + .d2-2281305743 .background-color-B2{background-color:#0D32B2;} + .d2-2281305743 .background-color-B3{background-color:#E3E9FD;} + .d2-2281305743 .background-color-B4{background-color:#E3E9FD;} + .d2-2281305743 .background-color-B5{background-color:#EDF0FD;} + .d2-2281305743 .background-color-B6{background-color:#F7F8FE;} + .d2-2281305743 .background-color-AA2{background-color:#4A6FF3;} + .d2-2281305743 .background-color-AA4{background-color:#EDF0FD;} + .d2-2281305743 .background-color-AA5{background-color:#F7F8FE;} + .d2-2281305743 .background-color-AB4{background-color:#EDF0FD;} + .d2-2281305743 .background-color-AB5{background-color:#F7F8FE;} + .d2-2281305743 .color-N1{color:#0A0F25;} + .d2-2281305743 .color-N2{color:#676C7E;} + .d2-2281305743 .color-N3{color:#9499AB;} + .d2-2281305743 .color-N4{color:#CFD2DD;} + .d2-2281305743 .color-N5{color:#DEE1EB;} + .d2-2281305743 .color-N6{color:#EEF1F8;} + .d2-2281305743 .color-N7{color:#FFFFFF;} + .d2-2281305743 .color-B1{color:#0D32B2;} + .d2-2281305743 .color-B2{color:#0D32B2;} + .d2-2281305743 .color-B3{color:#E3E9FD;} + .d2-2281305743 .color-B4{color:#E3E9FD;} + .d2-2281305743 .color-B5{color:#EDF0FD;} + .d2-2281305743 .color-B6{color:#F7F8FE;} + .d2-2281305743 .color-AA2{color:#4A6FF3;} + .d2-2281305743 .color-AA4{color:#EDF0FD;} + .d2-2281305743 .color-AA5{color:#F7F8FE;} + .d2-2281305743 .color-AB4{color:#EDF0FD;} + .d2-2281305743 .color-AB5{color:#F7F8FE;}.appendix text.text{fill:#0A0F25}.md{--color-fg-default:#0A0F25;--color-fg-muted:#676C7E;--color-fg-subtle:#9499AB;--color-canvas-default:#FFFFFF;--color-canvas-subtle:#EEF1F8;--color-border-default:#0D32B2;--color-border-muted:#0D32B2;--color-neutral-muted:#EEF1F8;--color-accent-fg:#0D32B2;--color-accent-emphasis:#0D32B2;--color-attention-subtle:#676C7E;--color-danger-fg:red;}.sketch-overlay-B1{fill:url(#streaks-darker);mix-blend-mode:lighten}.sketch-overlay-B2{fill:url(#streaks-darker);mix-blend-mode:lighten}.sketch-overlay-B3{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-B4{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-B5{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-B6{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-AA2{fill:url(#streaks-dark);mix-blend-mode:overlay}.sketch-overlay-AA4{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-AA5{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-AB4{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-AB5{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-N1{fill:url(#streaks-darker);mix-blend-mode:lighten}.sketch-overlay-N2{fill:url(#streaks-dark);mix-blend-mode:overlay}.sketch-overlay-N3{fill:url(#streaks-normal);mix-blend-mode:color-burn}.sketch-overlay-N4{fill:url(#streaks-normal);mix-blend-mode:color-burn}.sketch-overlay-N5{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-N6{fill:url(#streaks-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 \ No newline at end of file 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 6ebd2ace37..3f6bf1bc5f 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 @@ -675,10 +675,8 @@ "id": "(a -> b)[4]", "src": "a", "srcArrow": "none", - "srcLabel": "", "dst": "b", "dstArrow": "triangle", - "dstLabel": "", "opacity": 1, "strokeDash": 0, "strokeWidth": 2, @@ -715,10 +713,8 @@ "id": "(a -> b)[3]", "src": "a", "srcArrow": "none", - "srcLabel": "", "dst": "b", "dstArrow": "triangle", - "dstLabel": "", "opacity": 1, "strokeDash": 0, "strokeWidth": 2, @@ -755,10 +751,8 @@ "id": "(a -> b)[2]", "src": "a", "srcArrow": "none", - "srcLabel": "", "dst": "b", "dstArrow": "triangle", - "dstLabel": "", "opacity": 1, "strokeDash": 0, "strokeWidth": 2, @@ -795,10 +789,8 @@ "id": "(a -> b)[1]", "src": "a", "srcArrow": "none", - "srcLabel": "", "dst": "b", "dstArrow": "triangle", - "dstLabel": "", "opacity": 1, "strokeDash": 0, "strokeWidth": 2, @@ -835,10 +827,8 @@ "id": "(a -> b)[0]", "src": "a", "srcArrow": "none", - "srcLabel": "", "dst": "b", "dstArrow": "triangle", - "dstLabel": "", "opacity": 1, "strokeDash": 0, "strokeWidth": 2, @@ -875,10 +865,8 @@ "id": "(b -> c)[0]", "src": "b", "srcArrow": "none", - "srcLabel": "", "dst": "c", "dstArrow": "triangle", - "dstLabel": "", "opacity": 1, "strokeDash": 0, "strokeWidth": 2, @@ -915,10 +903,8 @@ "id": "(b -> c)[1]", "src": "b", "srcArrow": "none", - "srcLabel": "", "dst": "c", "dstArrow": "triangle", - "dstLabel": "", "opacity": 1, "strokeDash": 0, "strokeWidth": 2, @@ -955,10 +941,8 @@ "id": "(b -> c)[2]", "src": "b", "srcArrow": "none", - "srcLabel": "", "dst": "c", "dstArrow": "triangle", - "dstLabel": "", "opacity": 1, "strokeDash": 0, "strokeWidth": 2, @@ -995,10 +979,8 @@ "id": "(b -> c)[3]", "src": "b", "srcArrow": "none", - "srcLabel": "", "dst": "c", "dstArrow": "triangle", - "dstLabel": "", "opacity": 1, "strokeDash": 0, "strokeWidth": 2, @@ -1035,10 +1017,8 @@ "id": "(a -- )[0]", "src": "a", "srcArrow": "none", - "srcLabel": "", "dst": "a-lifeline-end-2251863791", "dstArrow": "none", - "dstLabel": "", "opacity": 1, "strokeDash": 6, "strokeWidth": 2, @@ -1075,10 +1055,8 @@ "id": "(b -- )[0]", "src": "b", "srcArrow": "none", - "srcLabel": "", "dst": "b-lifeline-end-668380428", "dstArrow": "none", - "dstLabel": "", "opacity": 1, "strokeDash": 6, "strokeWidth": 2, @@ -1115,10 +1093,8 @@ "id": "(c -- )[0]", "src": "c", "srcArrow": "none", - "srcLabel": "", "dst": "c-lifeline-end-955173837", "dstArrow": "none", - "dstLabel": "", "opacity": 1, "strokeDash": 6, "strokeWidth": 2, 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 a86941b7dd..36e9782bb6 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-555084297 .fill-N1{fill:#0A0F25;} + .d2-555084297 .fill-N2{fill:#676C7E;} + .d2-555084297 .fill-N3{fill:#9499AB;} + .d2-555084297 .fill-N4{fill:#CFD2DD;} + .d2-555084297 .fill-N5{fill:#DEE1EB;} + .d2-555084297 .fill-N6{fill:#EEF1F8;} + .d2-555084297 .fill-N7{fill:#FFFFFF;} + .d2-555084297 .fill-B1{fill:#0D32B2;} + .d2-555084297 .fill-B2{fill:#0D32B2;} + .d2-555084297 .fill-B3{fill:#E3E9FD;} + .d2-555084297 .fill-B4{fill:#E3E9FD;} + .d2-555084297 .fill-B5{fill:#EDF0FD;} + .d2-555084297 .fill-B6{fill:#F7F8FE;} + .d2-555084297 .fill-AA2{fill:#4A6FF3;} + .d2-555084297 .fill-AA4{fill:#EDF0FD;} + .d2-555084297 .fill-AA5{fill:#F7F8FE;} + .d2-555084297 .fill-AB4{fill:#EDF0FD;} + .d2-555084297 .fill-AB5{fill:#F7F8FE;} + .d2-555084297 .stroke-N1{stroke:#0A0F25;} + .d2-555084297 .stroke-N2{stroke:#676C7E;} + .d2-555084297 .stroke-N3{stroke:#9499AB;} + .d2-555084297 .stroke-N4{stroke:#CFD2DD;} + .d2-555084297 .stroke-N5{stroke:#DEE1EB;} + .d2-555084297 .stroke-N6{stroke:#EEF1F8;} + .d2-555084297 .stroke-N7{stroke:#FFFFFF;} + .d2-555084297 .stroke-B1{stroke:#0D32B2;} + .d2-555084297 .stroke-B2{stroke:#0D32B2;} + .d2-555084297 .stroke-B3{stroke:#E3E9FD;} + .d2-555084297 .stroke-B4{stroke:#E3E9FD;} + .d2-555084297 .stroke-B5{stroke:#EDF0FD;} + .d2-555084297 .stroke-B6{stroke:#F7F8FE;} + .d2-555084297 .stroke-AA2{stroke:#4A6FF3;} + .d2-555084297 .stroke-AA4{stroke:#EDF0FD;} + .d2-555084297 .stroke-AA5{stroke:#F7F8FE;} + .d2-555084297 .stroke-AB4{stroke:#EDF0FD;} + .d2-555084297 .stroke-AB5{stroke:#F7F8FE;} + .d2-555084297 .background-color-N1{background-color:#0A0F25;} + .d2-555084297 .background-color-N2{background-color:#676C7E;} + .d2-555084297 .background-color-N3{background-color:#9499AB;} + .d2-555084297 .background-color-N4{background-color:#CFD2DD;} + .d2-555084297 .background-color-N5{background-color:#DEE1EB;} + .d2-555084297 .background-color-N6{background-color:#EEF1F8;} + .d2-555084297 .background-color-N7{background-color:#FFFFFF;} + .d2-555084297 .background-color-B1{background-color:#0D32B2;} + .d2-555084297 .background-color-B2{background-color:#0D32B2;} + .d2-555084297 .background-color-B3{background-color:#E3E9FD;} + .d2-555084297 .background-color-B4{background-color:#E3E9FD;} + .d2-555084297 .background-color-B5{background-color:#EDF0FD;} + .d2-555084297 .background-color-B6{background-color:#F7F8FE;} + .d2-555084297 .background-color-AA2{background-color:#4A6FF3;} + .d2-555084297 .background-color-AA4{background-color:#EDF0FD;} + .d2-555084297 .background-color-AA5{background-color:#F7F8FE;} + .d2-555084297 .background-color-AB4{background-color:#EDF0FD;} + .d2-555084297 .background-color-AB5{background-color:#F7F8FE;} + .d2-555084297 .color-N1{color:#0A0F25;} + .d2-555084297 .color-N2{color:#676C7E;} + .d2-555084297 .color-N3{color:#9499AB;} + .d2-555084297 .color-N4{color:#CFD2DD;} + .d2-555084297 .color-N5{color:#DEE1EB;} + .d2-555084297 .color-N6{color:#EEF1F8;} + .d2-555084297 .color-N7{color:#FFFFFF;} + .d2-555084297 .color-B1{color:#0D32B2;} + .d2-555084297 .color-B2{color:#0D32B2;} + .d2-555084297 .color-B3{color:#E3E9FD;} + .d2-555084297 .color-B4{color:#E3E9FD;} + .d2-555084297 .color-B5{color:#EDF0FD;} + .d2-555084297 .color-B6{color:#F7F8FE;} + .d2-555084297 .color-AA2{color:#4A6FF3;} + .d2-555084297 .color-AA4{color:#EDF0FD;} + .d2-555084297 .color-AA5{color:#F7F8FE;} + .d2-555084297 .color-AB4{color:#EDF0FD;} + .d2-555084297 .color-AB5{color:#F7F8FE;}.appendix text.text{fill:#0A0F25}.md{--color-fg-default:#0A0F25;--color-fg-muted:#676C7E;--color-fg-subtle:#9499AB;--color-canvas-default:#FFFFFF;--color-canvas-subtle:#EEF1F8;--color-border-default:#0D32B2;--color-border-muted:#0D32B2;--color-neutral-muted:#EEF1F8;--color-accent-fg:#0D32B2;--color-accent-emphasis:#0D32B2;--color-attention-subtle:#676C7E;--color-danger-fg:red;}.sketch-overlay-B1{fill:url(#streaks-darker);mix-blend-mode:lighten}.sketch-overlay-B2{fill:url(#streaks-darker);mix-blend-mode:lighten}.sketch-overlay-B3{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-B4{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-B5{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-B6{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-AA2{fill:url(#streaks-dark);mix-blend-mode:overlay}.sketch-overlay-AA4{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-AA5{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-AB4{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-AB5{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-N1{fill:url(#streaks-darker);mix-blend-mode:lighten}.sketch-overlay-N2{fill:url(#streaks-dark);mix-blend-mode:overlay}.sketch-overlay-N3{fill:url(#streaks-normal);mix-blend-mode:color-burn}.sketch-overlay-N4{fill:url(#streaks-normal);mix-blend-mode:color-burn}.sketch-overlay-N5{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-N6{fill:url(#streaks-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 6ebd2ace37..3f6bf1bc5f 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 @@ -675,10 +675,8 @@ "id": "(a -> b)[4]", "src": "a", "srcArrow": "none", - "srcLabel": "", "dst": "b", "dstArrow": "triangle", - "dstLabel": "", "opacity": 1, "strokeDash": 0, "strokeWidth": 2, @@ -715,10 +713,8 @@ "id": "(a -> b)[3]", "src": "a", "srcArrow": "none", - "srcLabel": "", "dst": "b", "dstArrow": "triangle", - "dstLabel": "", "opacity": 1, "strokeDash": 0, "strokeWidth": 2, @@ -755,10 +751,8 @@ "id": "(a -> b)[2]", "src": "a", "srcArrow": "none", - "srcLabel": "", "dst": "b", "dstArrow": "triangle", - "dstLabel": "", "opacity": 1, "strokeDash": 0, "strokeWidth": 2, @@ -795,10 +789,8 @@ "id": "(a -> b)[1]", "src": "a", "srcArrow": "none", - "srcLabel": "", "dst": "b", "dstArrow": "triangle", - "dstLabel": "", "opacity": 1, "strokeDash": 0, "strokeWidth": 2, @@ -835,10 +827,8 @@ "id": "(a -> b)[0]", "src": "a", "srcArrow": "none", - "srcLabel": "", "dst": "b", "dstArrow": "triangle", - "dstLabel": "", "opacity": 1, "strokeDash": 0, "strokeWidth": 2, @@ -875,10 +865,8 @@ "id": "(b -> c)[0]", "src": "b", "srcArrow": "none", - "srcLabel": "", "dst": "c", "dstArrow": "triangle", - "dstLabel": "", "opacity": 1, "strokeDash": 0, "strokeWidth": 2, @@ -915,10 +903,8 @@ "id": "(b -> c)[1]", "src": "b", "srcArrow": "none", - "srcLabel": "", "dst": "c", "dstArrow": "triangle", - "dstLabel": "", "opacity": 1, "strokeDash": 0, "strokeWidth": 2, @@ -955,10 +941,8 @@ "id": "(b -> c)[2]", "src": "b", "srcArrow": "none", - "srcLabel": "", "dst": "c", "dstArrow": "triangle", - "dstLabel": "", "opacity": 1, "strokeDash": 0, "strokeWidth": 2, @@ -995,10 +979,8 @@ "id": "(b -> c)[3]", "src": "b", "srcArrow": "none", - "srcLabel": "", "dst": "c", "dstArrow": "triangle", - "dstLabel": "", "opacity": 1, "strokeDash": 0, "strokeWidth": 2, @@ -1035,10 +1017,8 @@ "id": "(a -- )[0]", "src": "a", "srcArrow": "none", - "srcLabel": "", "dst": "a-lifeline-end-2251863791", "dstArrow": "none", - "dstLabel": "", "opacity": 1, "strokeDash": 6, "strokeWidth": 2, @@ -1075,10 +1055,8 @@ "id": "(b -- )[0]", "src": "b", "srcArrow": "none", - "srcLabel": "", "dst": "b-lifeline-end-668380428", "dstArrow": "none", - "dstLabel": "", "opacity": 1, "strokeDash": 6, "strokeWidth": 2, @@ -1115,10 +1093,8 @@ "id": "(c -- )[0]", "src": "c", "srcArrow": "none", - "srcLabel": "", "dst": "c-lifeline-end-955173837", "dstArrow": "none", - "dstLabel": "", "opacity": 1, "strokeDash": 6, "strokeWidth": 2, 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 a86941b7dd..36e9782bb6 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-555084297 .fill-N1{fill:#0A0F25;} + .d2-555084297 .fill-N2{fill:#676C7E;} + .d2-555084297 .fill-N3{fill:#9499AB;} + .d2-555084297 .fill-N4{fill:#CFD2DD;} + .d2-555084297 .fill-N5{fill:#DEE1EB;} + .d2-555084297 .fill-N6{fill:#EEF1F8;} + .d2-555084297 .fill-N7{fill:#FFFFFF;} + .d2-555084297 .fill-B1{fill:#0D32B2;} + .d2-555084297 .fill-B2{fill:#0D32B2;} + .d2-555084297 .fill-B3{fill:#E3E9FD;} + .d2-555084297 .fill-B4{fill:#E3E9FD;} + .d2-555084297 .fill-B5{fill:#EDF0FD;} + .d2-555084297 .fill-B6{fill:#F7F8FE;} + .d2-555084297 .fill-AA2{fill:#4A6FF3;} + .d2-555084297 .fill-AA4{fill:#EDF0FD;} + .d2-555084297 .fill-AA5{fill:#F7F8FE;} + .d2-555084297 .fill-AB4{fill:#EDF0FD;} + .d2-555084297 .fill-AB5{fill:#F7F8FE;} + .d2-555084297 .stroke-N1{stroke:#0A0F25;} + .d2-555084297 .stroke-N2{stroke:#676C7E;} + .d2-555084297 .stroke-N3{stroke:#9499AB;} + .d2-555084297 .stroke-N4{stroke:#CFD2DD;} + .d2-555084297 .stroke-N5{stroke:#DEE1EB;} + .d2-555084297 .stroke-N6{stroke:#EEF1F8;} + .d2-555084297 .stroke-N7{stroke:#FFFFFF;} + .d2-555084297 .stroke-B1{stroke:#0D32B2;} + .d2-555084297 .stroke-B2{stroke:#0D32B2;} + .d2-555084297 .stroke-B3{stroke:#E3E9FD;} + .d2-555084297 .stroke-B4{stroke:#E3E9FD;} + .d2-555084297 .stroke-B5{stroke:#EDF0FD;} + .d2-555084297 .stroke-B6{stroke:#F7F8FE;} + .d2-555084297 .stroke-AA2{stroke:#4A6FF3;} + .d2-555084297 .stroke-AA4{stroke:#EDF0FD;} + .d2-555084297 .stroke-AA5{stroke:#F7F8FE;} + .d2-555084297 .stroke-AB4{stroke:#EDF0FD;} + .d2-555084297 .stroke-AB5{stroke:#F7F8FE;} + .d2-555084297 .background-color-N1{background-color:#0A0F25;} + .d2-555084297 .background-color-N2{background-color:#676C7E;} + .d2-555084297 .background-color-N3{background-color:#9499AB;} + .d2-555084297 .background-color-N4{background-color:#CFD2DD;} + .d2-555084297 .background-color-N5{background-color:#DEE1EB;} + .d2-555084297 .background-color-N6{background-color:#EEF1F8;} + .d2-555084297 .background-color-N7{background-color:#FFFFFF;} + .d2-555084297 .background-color-B1{background-color:#0D32B2;} + .d2-555084297 .background-color-B2{background-color:#0D32B2;} + .d2-555084297 .background-color-B3{background-color:#E3E9FD;} + .d2-555084297 .background-color-B4{background-color:#E3E9FD;} + .d2-555084297 .background-color-B5{background-color:#EDF0FD;} + .d2-555084297 .background-color-B6{background-color:#F7F8FE;} + .d2-555084297 .background-color-AA2{background-color:#4A6FF3;} + .d2-555084297 .background-color-AA4{background-color:#EDF0FD;} + .d2-555084297 .background-color-AA5{background-color:#F7F8FE;} + .d2-555084297 .background-color-AB4{background-color:#EDF0FD;} + .d2-555084297 .background-color-AB5{background-color:#F7F8FE;} + .d2-555084297 .color-N1{color:#0A0F25;} + .d2-555084297 .color-N2{color:#676C7E;} + .d2-555084297 .color-N3{color:#9499AB;} + .d2-555084297 .color-N4{color:#CFD2DD;} + .d2-555084297 .color-N5{color:#DEE1EB;} + .d2-555084297 .color-N6{color:#EEF1F8;} + .d2-555084297 .color-N7{color:#FFFFFF;} + .d2-555084297 .color-B1{color:#0D32B2;} + .d2-555084297 .color-B2{color:#0D32B2;} + .d2-555084297 .color-B3{color:#E3E9FD;} + .d2-555084297 .color-B4{color:#E3E9FD;} + .d2-555084297 .color-B5{color:#EDF0FD;} + .d2-555084297 .color-B6{color:#F7F8FE;} + .d2-555084297 .color-AA2{color:#4A6FF3;} + .d2-555084297 .color-AA4{color:#EDF0FD;} + .d2-555084297 .color-AA5{color:#F7F8FE;} + .d2-555084297 .color-AB4{color:#EDF0FD;} + .d2-555084297 .color-AB5{color:#F7F8FE;}.appendix text.text{fill:#0A0F25}.md{--color-fg-default:#0A0F25;--color-fg-muted:#676C7E;--color-fg-subtle:#9499AB;--color-canvas-default:#FFFFFF;--color-canvas-subtle:#EEF1F8;--color-border-default:#0D32B2;--color-border-muted:#0D32B2;--color-neutral-muted:#EEF1F8;--color-accent-fg:#0D32B2;--color-accent-emphasis:#0D32B2;--color-attention-subtle:#676C7E;--color-danger-fg:red;}.sketch-overlay-B1{fill:url(#streaks-darker);mix-blend-mode:lighten}.sketch-overlay-B2{fill:url(#streaks-darker);mix-blend-mode:lighten}.sketch-overlay-B3{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-B4{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-B5{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-B6{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-AA2{fill:url(#streaks-dark);mix-blend-mode:overlay}.sketch-overlay-AA4{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-AA5{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-AB4{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-AB5{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-N1{fill:url(#streaks-darker);mix-blend-mode:lighten}.sketch-overlay-N2{fill:url(#streaks-dark);mix-blend-mode:overlay}.sketch-overlay-N3{fill:url(#streaks-normal);mix-blend-mode:color-burn}.sketch-overlay-N4{fill:url(#streaks-normal);mix-blend-mode:color-burn}.sketch-overlay-N5{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-N6{fill:url(#streaks-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 fc722c2105..01de76e5dc 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 @@ -935,10 +935,8 @@ "id": "(scorer -> itemResponse.a)[0]", "src": "scorer", "srcArrow": "none", - "srcLabel": "", "dst": "itemResponse.a", "dstArrow": "triangle", - "dstLabel": "", "opacity": 1, "strokeDash": 0, "strokeWidth": 10, @@ -975,10 +973,8 @@ "id": "(itemResponse.a -> item.a.b)[0]", "src": "itemResponse.a", "srcArrow": "none", - "srcLabel": "", "dst": "item.a.b", "dstArrow": "triangle", - "dstLabel": "", "opacity": 1, "strokeDash": 0, "strokeWidth": 2, @@ -1015,10 +1011,8 @@ "id": "(item.a.b -> essayRubric.a.b.c)[0]", "src": "item.a.b", "srcArrow": "none", - "srcLabel": "", "dst": "essayRubric.a.b.c", "dstArrow": "triangle", - "dstLabel": "", "opacity": 1, "strokeDash": 0, "strokeWidth": 2, @@ -1055,10 +1049,8 @@ "id": "(essayRubric.a.b.c -> concept.a.b.c.d)[0]", "src": "essayRubric.a.b.c", "srcArrow": "none", - "srcLabel": "", "dst": "concept.a.b.c.d", "dstArrow": "triangle", - "dstLabel": "", "opacity": 1, "strokeDash": 0, "strokeWidth": 2, @@ -1095,10 +1087,8 @@ "id": "(item.a -> essayRubric.a.b)[0]", "src": "item.a", "srcArrow": "none", - "srcLabel": "", "dst": "essayRubric.a.b", "dstArrow": "triangle", - "dstLabel": "", "opacity": 1, "strokeDash": 0, "strokeWidth": 2, @@ -1135,10 +1125,8 @@ "id": "(concept.a.b.c.d -> itemOutcome.a.b.c.d.e)[0]", "src": "concept.a.b.c.d", "srcArrow": "none", - "srcLabel": "", "dst": "itemOutcome.a.b.c.d.e", "dstArrow": "triangle", - "dstLabel": "", "opacity": 1, "strokeDash": 0, "strokeWidth": 2, @@ -1175,10 +1163,8 @@ "id": "(scorer.abc -> item.a)[0]", "src": "scorer.abc", "srcArrow": "none", - "srcLabel": "", "dst": "item.a", "dstArrow": "triangle", - "dstLabel": "", "opacity": 1, "strokeDash": 0, "strokeWidth": 2, @@ -1215,10 +1201,8 @@ "id": "(itemOutcome.a.b.c.d.e -> scorer)[0]", "src": "itemOutcome.a.b.c.d.e", "srcArrow": "none", - "srcLabel": "", "dst": "scorer", "dstArrow": "triangle", - "dstLabel": "", "opacity": 1, "strokeDash": 0, "strokeWidth": 2, @@ -1255,10 +1239,8 @@ "id": "(scorer -> itemResponse.c)[0]", "src": "scorer", "srcArrow": "none", - "srcLabel": "", "dst": "itemResponse.c", "dstArrow": "triangle", - "dstLabel": "", "opacity": 1, "strokeDash": 0, "strokeWidth": 2, @@ -1295,10 +1277,8 @@ "id": "(scorer -- )[0]", "src": "scorer", "srcArrow": "none", - "srcLabel": "", "dst": "scorer-lifeline-end-3390057676", "dstArrow": "none", - "dstLabel": "", "opacity": 1, "strokeDash": 6, "strokeWidth": 2, @@ -1335,10 +1315,8 @@ "id": "(itemResponse -- )[0]", "src": "itemResponse", "srcArrow": "none", - "srcLabel": "", "dst": "itemResponse-lifeline-end-3886259856", "dstArrow": "none", - "dstLabel": "", "opacity": 1, "strokeDash": 6, "strokeWidth": 2, @@ -1375,10 +1353,8 @@ "id": "(item -- )[0]", "src": "item", "srcArrow": "none", - "srcLabel": "", "dst": "item-lifeline-end-4102336625", "dstArrow": "none", - "dstLabel": "", "opacity": 1, "strokeDash": 6, "strokeWidth": 2, @@ -1415,10 +1391,8 @@ "id": "(essayRubric -- )[0]", "src": "essayRubric", "srcArrow": "none", - "srcLabel": "", "dst": "essayRubric-lifeline-end-1632038932", "dstArrow": "none", - "dstLabel": "", "opacity": 1, "strokeDash": 6, "strokeWidth": 2, @@ -1455,10 +1429,8 @@ "id": "(concept -- )[0]", "src": "concept", "srcArrow": "none", - "srcLabel": "", "dst": "concept-lifeline-end-1391711018", "dstArrow": "none", - "dstLabel": "", "opacity": 1, "strokeDash": 6, "strokeWidth": 2, @@ -1495,10 +1467,8 @@ "id": "(itemOutcome -- )[0]", "src": "itemOutcome", "srcArrow": "none", - "srcLabel": "", "dst": "itemOutcome-lifeline-end-3921917181", "dstArrow": "none", - "dstLabel": "", "opacity": 1, "strokeDash": 6, "strokeWidth": 2, 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 c20dcc22df..a791e5379c 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-1296086168 .fill-N1{fill:#0A0F25;} + .d2-1296086168 .fill-N2{fill:#676C7E;} + .d2-1296086168 .fill-N3{fill:#9499AB;} + .d2-1296086168 .fill-N4{fill:#CFD2DD;} + .d2-1296086168 .fill-N5{fill:#DEE1EB;} + .d2-1296086168 .fill-N6{fill:#EEF1F8;} + .d2-1296086168 .fill-N7{fill:#FFFFFF;} + .d2-1296086168 .fill-B1{fill:#0D32B2;} + .d2-1296086168 .fill-B2{fill:#0D32B2;} + .d2-1296086168 .fill-B3{fill:#E3E9FD;} + .d2-1296086168 .fill-B4{fill:#E3E9FD;} + .d2-1296086168 .fill-B5{fill:#EDF0FD;} + .d2-1296086168 .fill-B6{fill:#F7F8FE;} + .d2-1296086168 .fill-AA2{fill:#4A6FF3;} + .d2-1296086168 .fill-AA4{fill:#EDF0FD;} + .d2-1296086168 .fill-AA5{fill:#F7F8FE;} + .d2-1296086168 .fill-AB4{fill:#EDF0FD;} + .d2-1296086168 .fill-AB5{fill:#F7F8FE;} + .d2-1296086168 .stroke-N1{stroke:#0A0F25;} + .d2-1296086168 .stroke-N2{stroke:#676C7E;} + .d2-1296086168 .stroke-N3{stroke:#9499AB;} + .d2-1296086168 .stroke-N4{stroke:#CFD2DD;} + .d2-1296086168 .stroke-N5{stroke:#DEE1EB;} + .d2-1296086168 .stroke-N6{stroke:#EEF1F8;} + .d2-1296086168 .stroke-N7{stroke:#FFFFFF;} + .d2-1296086168 .stroke-B1{stroke:#0D32B2;} + .d2-1296086168 .stroke-B2{stroke:#0D32B2;} + .d2-1296086168 .stroke-B3{stroke:#E3E9FD;} + .d2-1296086168 .stroke-B4{stroke:#E3E9FD;} + .d2-1296086168 .stroke-B5{stroke:#EDF0FD;} + .d2-1296086168 .stroke-B6{stroke:#F7F8FE;} + .d2-1296086168 .stroke-AA2{stroke:#4A6FF3;} + .d2-1296086168 .stroke-AA4{stroke:#EDF0FD;} + .d2-1296086168 .stroke-AA5{stroke:#F7F8FE;} + .d2-1296086168 .stroke-AB4{stroke:#EDF0FD;} + .d2-1296086168 .stroke-AB5{stroke:#F7F8FE;} + .d2-1296086168 .background-color-N1{background-color:#0A0F25;} + .d2-1296086168 .background-color-N2{background-color:#676C7E;} + .d2-1296086168 .background-color-N3{background-color:#9499AB;} + .d2-1296086168 .background-color-N4{background-color:#CFD2DD;} + .d2-1296086168 .background-color-N5{background-color:#DEE1EB;} + .d2-1296086168 .background-color-N6{background-color:#EEF1F8;} + .d2-1296086168 .background-color-N7{background-color:#FFFFFF;} + .d2-1296086168 .background-color-B1{background-color:#0D32B2;} + .d2-1296086168 .background-color-B2{background-color:#0D32B2;} + .d2-1296086168 .background-color-B3{background-color:#E3E9FD;} + .d2-1296086168 .background-color-B4{background-color:#E3E9FD;} + .d2-1296086168 .background-color-B5{background-color:#EDF0FD;} + .d2-1296086168 .background-color-B6{background-color:#F7F8FE;} + .d2-1296086168 .background-color-AA2{background-color:#4A6FF3;} + .d2-1296086168 .background-color-AA4{background-color:#EDF0FD;} + .d2-1296086168 .background-color-AA5{background-color:#F7F8FE;} + .d2-1296086168 .background-color-AB4{background-color:#EDF0FD;} + .d2-1296086168 .background-color-AB5{background-color:#F7F8FE;} + .d2-1296086168 .color-N1{color:#0A0F25;} + .d2-1296086168 .color-N2{color:#676C7E;} + .d2-1296086168 .color-N3{color:#9499AB;} + .d2-1296086168 .color-N4{color:#CFD2DD;} + .d2-1296086168 .color-N5{color:#DEE1EB;} + .d2-1296086168 .color-N6{color:#EEF1F8;} + .d2-1296086168 .color-N7{color:#FFFFFF;} + .d2-1296086168 .color-B1{color:#0D32B2;} + .d2-1296086168 .color-B2{color:#0D32B2;} + .d2-1296086168 .color-B3{color:#E3E9FD;} + .d2-1296086168 .color-B4{color:#E3E9FD;} + .d2-1296086168 .color-B5{color:#EDF0FD;} + .d2-1296086168 .color-B6{color:#F7F8FE;} + .d2-1296086168 .color-AA2{color:#4A6FF3;} + .d2-1296086168 .color-AA4{color:#EDF0FD;} + .d2-1296086168 .color-AA5{color:#F7F8FE;} + .d2-1296086168 .color-AB4{color:#EDF0FD;} + .d2-1296086168 .color-AB5{color:#F7F8FE;}.appendix text.text{fill:#0A0F25}.md{--color-fg-default:#0A0F25;--color-fg-muted:#676C7E;--color-fg-subtle:#9499AB;--color-canvas-default:#FFFFFF;--color-canvas-subtle:#EEF1F8;--color-border-default:#0D32B2;--color-border-muted:#0D32B2;--color-neutral-muted:#EEF1F8;--color-accent-fg:#0D32B2;--color-accent-emphasis:#0D32B2;--color-attention-subtle:#676C7E;--color-danger-fg:red;}.sketch-overlay-B1{fill:url(#streaks-darker);mix-blend-mode:lighten}.sketch-overlay-B2{fill:url(#streaks-darker);mix-blend-mode:lighten}.sketch-overlay-B3{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-B4{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-B5{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-B6{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-AA2{fill:url(#streaks-dark);mix-blend-mode:overlay}.sketch-overlay-AA4{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-AA5{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-AB4{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-AB5{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-N1{fill:url(#streaks-darker);mix-blend-mode:lighten}.sketch-overlay-N2{fill:url(#streaks-dark);mix-blend-mode:overlay}.sketch-overlay-N3{fill:url(#streaks-normal);mix-blend-mode:color-burn}.sketch-overlay-N4{fill:url(#streaks-normal);mix-blend-mode:color-burn}.sketch-overlay-N5{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-N6{fill:url(#streaks-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 \ No newline at end of file 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 fc722c2105..01de76e5dc 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 @@ -935,10 +935,8 @@ "id": "(scorer -> itemResponse.a)[0]", "src": "scorer", "srcArrow": "none", - "srcLabel": "", "dst": "itemResponse.a", "dstArrow": "triangle", - "dstLabel": "", "opacity": 1, "strokeDash": 0, "strokeWidth": 10, @@ -975,10 +973,8 @@ "id": "(itemResponse.a -> item.a.b)[0]", "src": "itemResponse.a", "srcArrow": "none", - "srcLabel": "", "dst": "item.a.b", "dstArrow": "triangle", - "dstLabel": "", "opacity": 1, "strokeDash": 0, "strokeWidth": 2, @@ -1015,10 +1011,8 @@ "id": "(item.a.b -> essayRubric.a.b.c)[0]", "src": "item.a.b", "srcArrow": "none", - "srcLabel": "", "dst": "essayRubric.a.b.c", "dstArrow": "triangle", - "dstLabel": "", "opacity": 1, "strokeDash": 0, "strokeWidth": 2, @@ -1055,10 +1049,8 @@ "id": "(essayRubric.a.b.c -> concept.a.b.c.d)[0]", "src": "essayRubric.a.b.c", "srcArrow": "none", - "srcLabel": "", "dst": "concept.a.b.c.d", "dstArrow": "triangle", - "dstLabel": "", "opacity": 1, "strokeDash": 0, "strokeWidth": 2, @@ -1095,10 +1087,8 @@ "id": "(item.a -> essayRubric.a.b)[0]", "src": "item.a", "srcArrow": "none", - "srcLabel": "", "dst": "essayRubric.a.b", "dstArrow": "triangle", - "dstLabel": "", "opacity": 1, "strokeDash": 0, "strokeWidth": 2, @@ -1135,10 +1125,8 @@ "id": "(concept.a.b.c.d -> itemOutcome.a.b.c.d.e)[0]", "src": "concept.a.b.c.d", "srcArrow": "none", - "srcLabel": "", "dst": "itemOutcome.a.b.c.d.e", "dstArrow": "triangle", - "dstLabel": "", "opacity": 1, "strokeDash": 0, "strokeWidth": 2, @@ -1175,10 +1163,8 @@ "id": "(scorer.abc -> item.a)[0]", "src": "scorer.abc", "srcArrow": "none", - "srcLabel": "", "dst": "item.a", "dstArrow": "triangle", - "dstLabel": "", "opacity": 1, "strokeDash": 0, "strokeWidth": 2, @@ -1215,10 +1201,8 @@ "id": "(itemOutcome.a.b.c.d.e -> scorer)[0]", "src": "itemOutcome.a.b.c.d.e", "srcArrow": "none", - "srcLabel": "", "dst": "scorer", "dstArrow": "triangle", - "dstLabel": "", "opacity": 1, "strokeDash": 0, "strokeWidth": 2, @@ -1255,10 +1239,8 @@ "id": "(scorer -> itemResponse.c)[0]", "src": "scorer", "srcArrow": "none", - "srcLabel": "", "dst": "itemResponse.c", "dstArrow": "triangle", - "dstLabel": "", "opacity": 1, "strokeDash": 0, "strokeWidth": 2, @@ -1295,10 +1277,8 @@ "id": "(scorer -- )[0]", "src": "scorer", "srcArrow": "none", - "srcLabel": "", "dst": "scorer-lifeline-end-3390057676", "dstArrow": "none", - "dstLabel": "", "opacity": 1, "strokeDash": 6, "strokeWidth": 2, @@ -1335,10 +1315,8 @@ "id": "(itemResponse -- )[0]", "src": "itemResponse", "srcArrow": "none", - "srcLabel": "", "dst": "itemResponse-lifeline-end-3886259856", "dstArrow": "none", - "dstLabel": "", "opacity": 1, "strokeDash": 6, "strokeWidth": 2, @@ -1375,10 +1353,8 @@ "id": "(item -- )[0]", "src": "item", "srcArrow": "none", - "srcLabel": "", "dst": "item-lifeline-end-4102336625", "dstArrow": "none", - "dstLabel": "", "opacity": 1, "strokeDash": 6, "strokeWidth": 2, @@ -1415,10 +1391,8 @@ "id": "(essayRubric -- )[0]", "src": "essayRubric", "srcArrow": "none", - "srcLabel": "", "dst": "essayRubric-lifeline-end-1632038932", "dstArrow": "none", - "dstLabel": "", "opacity": 1, "strokeDash": 6, "strokeWidth": 2, @@ -1455,10 +1429,8 @@ "id": "(concept -- )[0]", "src": "concept", "srcArrow": "none", - "srcLabel": "", "dst": "concept-lifeline-end-1391711018", "dstArrow": "none", - "dstLabel": "", "opacity": 1, "strokeDash": 6, "strokeWidth": 2, @@ -1495,10 +1467,8 @@ "id": "(itemOutcome -- )[0]", "src": "itemOutcome", "srcArrow": "none", - "srcLabel": "", "dst": "itemOutcome-lifeline-end-3921917181", "dstArrow": "none", - "dstLabel": "", "opacity": 1, "strokeDash": 6, "strokeWidth": 2, 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 c20dcc22df..a791e5379c 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-1296086168 .fill-N1{fill:#0A0F25;} + .d2-1296086168 .fill-N2{fill:#676C7E;} + .d2-1296086168 .fill-N3{fill:#9499AB;} + .d2-1296086168 .fill-N4{fill:#CFD2DD;} + .d2-1296086168 .fill-N5{fill:#DEE1EB;} + .d2-1296086168 .fill-N6{fill:#EEF1F8;} + .d2-1296086168 .fill-N7{fill:#FFFFFF;} + .d2-1296086168 .fill-B1{fill:#0D32B2;} + .d2-1296086168 .fill-B2{fill:#0D32B2;} + .d2-1296086168 .fill-B3{fill:#E3E9FD;} + .d2-1296086168 .fill-B4{fill:#E3E9FD;} + .d2-1296086168 .fill-B5{fill:#EDF0FD;} + .d2-1296086168 .fill-B6{fill:#F7F8FE;} + .d2-1296086168 .fill-AA2{fill:#4A6FF3;} + .d2-1296086168 .fill-AA4{fill:#EDF0FD;} + .d2-1296086168 .fill-AA5{fill:#F7F8FE;} + .d2-1296086168 .fill-AB4{fill:#EDF0FD;} + .d2-1296086168 .fill-AB5{fill:#F7F8FE;} + .d2-1296086168 .stroke-N1{stroke:#0A0F25;} + .d2-1296086168 .stroke-N2{stroke:#676C7E;} + .d2-1296086168 .stroke-N3{stroke:#9499AB;} + .d2-1296086168 .stroke-N4{stroke:#CFD2DD;} + .d2-1296086168 .stroke-N5{stroke:#DEE1EB;} + .d2-1296086168 .stroke-N6{stroke:#EEF1F8;} + .d2-1296086168 .stroke-N7{stroke:#FFFFFF;} + .d2-1296086168 .stroke-B1{stroke:#0D32B2;} + .d2-1296086168 .stroke-B2{stroke:#0D32B2;} + .d2-1296086168 .stroke-B3{stroke:#E3E9FD;} + .d2-1296086168 .stroke-B4{stroke:#E3E9FD;} + .d2-1296086168 .stroke-B5{stroke:#EDF0FD;} + .d2-1296086168 .stroke-B6{stroke:#F7F8FE;} + .d2-1296086168 .stroke-AA2{stroke:#4A6FF3;} + .d2-1296086168 .stroke-AA4{stroke:#EDF0FD;} + .d2-1296086168 .stroke-AA5{stroke:#F7F8FE;} + .d2-1296086168 .stroke-AB4{stroke:#EDF0FD;} + .d2-1296086168 .stroke-AB5{stroke:#F7F8FE;} + .d2-1296086168 .background-color-N1{background-color:#0A0F25;} + .d2-1296086168 .background-color-N2{background-color:#676C7E;} + .d2-1296086168 .background-color-N3{background-color:#9499AB;} + .d2-1296086168 .background-color-N4{background-color:#CFD2DD;} + .d2-1296086168 .background-color-N5{background-color:#DEE1EB;} + .d2-1296086168 .background-color-N6{background-color:#EEF1F8;} + .d2-1296086168 .background-color-N7{background-color:#FFFFFF;} + .d2-1296086168 .background-color-B1{background-color:#0D32B2;} + .d2-1296086168 .background-color-B2{background-color:#0D32B2;} + .d2-1296086168 .background-color-B3{background-color:#E3E9FD;} + .d2-1296086168 .background-color-B4{background-color:#E3E9FD;} + .d2-1296086168 .background-color-B5{background-color:#EDF0FD;} + .d2-1296086168 .background-color-B6{background-color:#F7F8FE;} + .d2-1296086168 .background-color-AA2{background-color:#4A6FF3;} + .d2-1296086168 .background-color-AA4{background-color:#EDF0FD;} + .d2-1296086168 .background-color-AA5{background-color:#F7F8FE;} + .d2-1296086168 .background-color-AB4{background-color:#EDF0FD;} + .d2-1296086168 .background-color-AB5{background-color:#F7F8FE;} + .d2-1296086168 .color-N1{color:#0A0F25;} + .d2-1296086168 .color-N2{color:#676C7E;} + .d2-1296086168 .color-N3{color:#9499AB;} + .d2-1296086168 .color-N4{color:#CFD2DD;} + .d2-1296086168 .color-N5{color:#DEE1EB;} + .d2-1296086168 .color-N6{color:#EEF1F8;} + .d2-1296086168 .color-N7{color:#FFFFFF;} + .d2-1296086168 .color-B1{color:#0D32B2;} + .d2-1296086168 .color-B2{color:#0D32B2;} + .d2-1296086168 .color-B3{color:#E3E9FD;} + .d2-1296086168 .color-B4{color:#E3E9FD;} + .d2-1296086168 .color-B5{color:#EDF0FD;} + .d2-1296086168 .color-B6{color:#F7F8FE;} + .d2-1296086168 .color-AA2{color:#4A6FF3;} + .d2-1296086168 .color-AA4{color:#EDF0FD;} + .d2-1296086168 .color-AA5{color:#F7F8FE;} + .d2-1296086168 .color-AB4{color:#EDF0FD;} + .d2-1296086168 .color-AB5{color:#F7F8FE;}.appendix text.text{fill:#0A0F25}.md{--color-fg-default:#0A0F25;--color-fg-muted:#676C7E;--color-fg-subtle:#9499AB;--color-canvas-default:#FFFFFF;--color-canvas-subtle:#EEF1F8;--color-border-default:#0D32B2;--color-border-muted:#0D32B2;--color-neutral-muted:#EEF1F8;--color-accent-fg:#0D32B2;--color-accent-emphasis:#0D32B2;--color-attention-subtle:#676C7E;--color-danger-fg:red;}.sketch-overlay-B1{fill:url(#streaks-darker);mix-blend-mode:lighten}.sketch-overlay-B2{fill:url(#streaks-darker);mix-blend-mode:lighten}.sketch-overlay-B3{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-B4{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-B5{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-B6{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-AA2{fill:url(#streaks-dark);mix-blend-mode:overlay}.sketch-overlay-AA4{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-AA5{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-AB4{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-AB5{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-N1{fill:url(#streaks-darker);mix-blend-mode:lighten}.sketch-overlay-N2{fill:url(#streaks-dark);mix-blend-mode:overlay}.sketch-overlay-N3{fill:url(#streaks-normal);mix-blend-mode:color-burn}.sketch-overlay-N4{fill:url(#streaks-normal);mix-blend-mode:color-burn}.sketch-overlay-N5{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-N6{fill:url(#streaks-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 \ No newline at end of file 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 3e21aa2004..445065821a 100644 --- a/e2etests/testdata/stable/sequence_diagram_note/dagre/board.exp.json +++ b/e2etests/testdata/stable/sequence_diagram_note/dagre/board.exp.json @@ -337,10 +337,8 @@ "id": "(a -> b)[0]", "src": "a", "srcArrow": "none", - "srcLabel": "", "dst": "b", "dstArrow": "triangle", - "dstLabel": "", "opacity": 1, "strokeDash": 0, "strokeWidth": 2, @@ -377,10 +375,8 @@ "id": "(b -> c)[0]", "src": "b", "srcArrow": "none", - "srcLabel": "", "dst": "c", "dstArrow": "triangle", - "dstLabel": "", "opacity": 1, "strokeDash": 0, "strokeWidth": 2, @@ -417,10 +413,8 @@ "id": "(c -> b)[0]", "src": "c", "srcArrow": "none", - "srcLabel": "", "dst": "b", "dstArrow": "triangle", - "dstLabel": "", "opacity": 1, "strokeDash": 0, "strokeWidth": 2, @@ -457,10 +451,8 @@ "id": "(a -- )[0]", "src": "a", "srcArrow": "none", - "srcLabel": "", "dst": "a-lifeline-end-2251863791", "dstArrow": "none", - "dstLabel": "", "opacity": 1, "strokeDash": 6, "strokeWidth": 2, @@ -497,10 +489,8 @@ "id": "(b -- )[0]", "src": "b", "srcArrow": "none", - "srcLabel": "", "dst": "b-lifeline-end-668380428", "dstArrow": "none", - "dstLabel": "", "opacity": 1, "strokeDash": 6, "strokeWidth": 2, @@ -537,10 +527,8 @@ "id": "(c -- )[0]", "src": "c", "srcArrow": "none", - "srcLabel": "", "dst": "c-lifeline-end-955173837", "dstArrow": "none", - "dstLabel": "", "opacity": 1, "strokeDash": 6, "strokeWidth": 2, @@ -577,10 +565,8 @@ "id": "(d -- )[0]", "src": "d", "srcArrow": "none", - "srcLabel": "", "dst": "d-lifeline-end-2106864010", "dstArrow": "none", - "dstLabel": "", "opacity": 1, "strokeDash": 6, "strokeWidth": 2, 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 dc75a5566a..0a884aab12 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-3405455601 .fill-N1{fill:#0A0F25;} + .d2-3405455601 .fill-N2{fill:#676C7E;} + .d2-3405455601 .fill-N3{fill:#9499AB;} + .d2-3405455601 .fill-N4{fill:#CFD2DD;} + .d2-3405455601 .fill-N5{fill:#DEE1EB;} + .d2-3405455601 .fill-N6{fill:#EEF1F8;} + .d2-3405455601 .fill-N7{fill:#FFFFFF;} + .d2-3405455601 .fill-B1{fill:#0D32B2;} + .d2-3405455601 .fill-B2{fill:#0D32B2;} + .d2-3405455601 .fill-B3{fill:#E3E9FD;} + .d2-3405455601 .fill-B4{fill:#E3E9FD;} + .d2-3405455601 .fill-B5{fill:#EDF0FD;} + .d2-3405455601 .fill-B6{fill:#F7F8FE;} + .d2-3405455601 .fill-AA2{fill:#4A6FF3;} + .d2-3405455601 .fill-AA4{fill:#EDF0FD;} + .d2-3405455601 .fill-AA5{fill:#F7F8FE;} + .d2-3405455601 .fill-AB4{fill:#EDF0FD;} + .d2-3405455601 .fill-AB5{fill:#F7F8FE;} + .d2-3405455601 .stroke-N1{stroke:#0A0F25;} + .d2-3405455601 .stroke-N2{stroke:#676C7E;} + .d2-3405455601 .stroke-N3{stroke:#9499AB;} + .d2-3405455601 .stroke-N4{stroke:#CFD2DD;} + .d2-3405455601 .stroke-N5{stroke:#DEE1EB;} + .d2-3405455601 .stroke-N6{stroke:#EEF1F8;} + .d2-3405455601 .stroke-N7{stroke:#FFFFFF;} + .d2-3405455601 .stroke-B1{stroke:#0D32B2;} + .d2-3405455601 .stroke-B2{stroke:#0D32B2;} + .d2-3405455601 .stroke-B3{stroke:#E3E9FD;} + .d2-3405455601 .stroke-B4{stroke:#E3E9FD;} + .d2-3405455601 .stroke-B5{stroke:#EDF0FD;} + .d2-3405455601 .stroke-B6{stroke:#F7F8FE;} + .d2-3405455601 .stroke-AA2{stroke:#4A6FF3;} + .d2-3405455601 .stroke-AA4{stroke:#EDF0FD;} + .d2-3405455601 .stroke-AA5{stroke:#F7F8FE;} + .d2-3405455601 .stroke-AB4{stroke:#EDF0FD;} + .d2-3405455601 .stroke-AB5{stroke:#F7F8FE;} + .d2-3405455601 .background-color-N1{background-color:#0A0F25;} + .d2-3405455601 .background-color-N2{background-color:#676C7E;} + .d2-3405455601 .background-color-N3{background-color:#9499AB;} + .d2-3405455601 .background-color-N4{background-color:#CFD2DD;} + .d2-3405455601 .background-color-N5{background-color:#DEE1EB;} + .d2-3405455601 .background-color-N6{background-color:#EEF1F8;} + .d2-3405455601 .background-color-N7{background-color:#FFFFFF;} + .d2-3405455601 .background-color-B1{background-color:#0D32B2;} + .d2-3405455601 .background-color-B2{background-color:#0D32B2;} + .d2-3405455601 .background-color-B3{background-color:#E3E9FD;} + .d2-3405455601 .background-color-B4{background-color:#E3E9FD;} + .d2-3405455601 .background-color-B5{background-color:#EDF0FD;} + .d2-3405455601 .background-color-B6{background-color:#F7F8FE;} + .d2-3405455601 .background-color-AA2{background-color:#4A6FF3;} + .d2-3405455601 .background-color-AA4{background-color:#EDF0FD;} + .d2-3405455601 .background-color-AA5{background-color:#F7F8FE;} + .d2-3405455601 .background-color-AB4{background-color:#EDF0FD;} + .d2-3405455601 .background-color-AB5{background-color:#F7F8FE;} + .d2-3405455601 .color-N1{color:#0A0F25;} + .d2-3405455601 .color-N2{color:#676C7E;} + .d2-3405455601 .color-N3{color:#9499AB;} + .d2-3405455601 .color-N4{color:#CFD2DD;} + .d2-3405455601 .color-N5{color:#DEE1EB;} + .d2-3405455601 .color-N6{color:#EEF1F8;} + .d2-3405455601 .color-N7{color:#FFFFFF;} + .d2-3405455601 .color-B1{color:#0D32B2;} + .d2-3405455601 .color-B2{color:#0D32B2;} + .d2-3405455601 .color-B3{color:#E3E9FD;} + .d2-3405455601 .color-B4{color:#E3E9FD;} + .d2-3405455601 .color-B5{color:#EDF0FD;} + .d2-3405455601 .color-B6{color:#F7F8FE;} + .d2-3405455601 .color-AA2{color:#4A6FF3;} + .d2-3405455601 .color-AA4{color:#EDF0FD;} + .d2-3405455601 .color-AA5{color:#F7F8FE;} + .d2-3405455601 .color-AB4{color:#EDF0FD;} + .d2-3405455601 .color-AB5{color:#F7F8FE;}.appendix text.text{fill:#0A0F25}.md{--color-fg-default:#0A0F25;--color-fg-muted:#676C7E;--color-fg-subtle:#9499AB;--color-canvas-default:#FFFFFF;--color-canvas-subtle:#EEF1F8;--color-border-default:#0D32B2;--color-border-muted:#0D32B2;--color-neutral-muted:#EEF1F8;--color-accent-fg:#0D32B2;--color-accent-emphasis:#0D32B2;--color-attention-subtle:#676C7E;--color-danger-fg:red;}.sketch-overlay-B1{fill:url(#streaks-darker);mix-blend-mode:lighten}.sketch-overlay-B2{fill:url(#streaks-darker);mix-blend-mode:lighten}.sketch-overlay-B3{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-B4{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-B5{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-B6{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-AA2{fill:url(#streaks-dark);mix-blend-mode:overlay}.sketch-overlay-AA4{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-AA5{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-AB4{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-AB5{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-N1{fill:url(#streaks-darker);mix-blend-mode:lighten}.sketch-overlay-N2{fill:url(#streaks-dark);mix-blend-mode:overlay}.sketch-overlay-N3{fill:url(#streaks-normal);mix-blend-mode:color-burn}.sketch-overlay-N4{fill:url(#streaks-normal);mix-blend-mode:color-burn}.sketch-overlay-N5{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-N6{fill:url(#streaks-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 \ No newline at end of file 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 3e21aa2004..445065821a 100644 --- a/e2etests/testdata/stable/sequence_diagram_note/elk/board.exp.json +++ b/e2etests/testdata/stable/sequence_diagram_note/elk/board.exp.json @@ -337,10 +337,8 @@ "id": "(a -> b)[0]", "src": "a", "srcArrow": "none", - "srcLabel": "", "dst": "b", "dstArrow": "triangle", - "dstLabel": "", "opacity": 1, "strokeDash": 0, "strokeWidth": 2, @@ -377,10 +375,8 @@ "id": "(b -> c)[0]", "src": "b", "srcArrow": "none", - "srcLabel": "", "dst": "c", "dstArrow": "triangle", - "dstLabel": "", "opacity": 1, "strokeDash": 0, "strokeWidth": 2, @@ -417,10 +413,8 @@ "id": "(c -> b)[0]", "src": "c", "srcArrow": "none", - "srcLabel": "", "dst": "b", "dstArrow": "triangle", - "dstLabel": "", "opacity": 1, "strokeDash": 0, "strokeWidth": 2, @@ -457,10 +451,8 @@ "id": "(a -- )[0]", "src": "a", "srcArrow": "none", - "srcLabel": "", "dst": "a-lifeline-end-2251863791", "dstArrow": "none", - "dstLabel": "", "opacity": 1, "strokeDash": 6, "strokeWidth": 2, @@ -497,10 +489,8 @@ "id": "(b -- )[0]", "src": "b", "srcArrow": "none", - "srcLabel": "", "dst": "b-lifeline-end-668380428", "dstArrow": "none", - "dstLabel": "", "opacity": 1, "strokeDash": 6, "strokeWidth": 2, @@ -537,10 +527,8 @@ "id": "(c -- )[0]", "src": "c", "srcArrow": "none", - "srcLabel": "", "dst": "c-lifeline-end-955173837", "dstArrow": "none", - "dstLabel": "", "opacity": 1, "strokeDash": 6, "strokeWidth": 2, @@ -577,10 +565,8 @@ "id": "(d -- )[0]", "src": "d", "srcArrow": "none", - "srcLabel": "", "dst": "d-lifeline-end-2106864010", "dstArrow": "none", - "dstLabel": "", "opacity": 1, "strokeDash": 6, "strokeWidth": 2, 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 dc75a5566a..0a884aab12 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-3405455601 .fill-N1{fill:#0A0F25;} + .d2-3405455601 .fill-N2{fill:#676C7E;} + .d2-3405455601 .fill-N3{fill:#9499AB;} + .d2-3405455601 .fill-N4{fill:#CFD2DD;} + .d2-3405455601 .fill-N5{fill:#DEE1EB;} + .d2-3405455601 .fill-N6{fill:#EEF1F8;} + .d2-3405455601 .fill-N7{fill:#FFFFFF;} + .d2-3405455601 .fill-B1{fill:#0D32B2;} + .d2-3405455601 .fill-B2{fill:#0D32B2;} + .d2-3405455601 .fill-B3{fill:#E3E9FD;} + .d2-3405455601 .fill-B4{fill:#E3E9FD;} + .d2-3405455601 .fill-B5{fill:#EDF0FD;} + .d2-3405455601 .fill-B6{fill:#F7F8FE;} + .d2-3405455601 .fill-AA2{fill:#4A6FF3;} + .d2-3405455601 .fill-AA4{fill:#EDF0FD;} + .d2-3405455601 .fill-AA5{fill:#F7F8FE;} + .d2-3405455601 .fill-AB4{fill:#EDF0FD;} + .d2-3405455601 .fill-AB5{fill:#F7F8FE;} + .d2-3405455601 .stroke-N1{stroke:#0A0F25;} + .d2-3405455601 .stroke-N2{stroke:#676C7E;} + .d2-3405455601 .stroke-N3{stroke:#9499AB;} + .d2-3405455601 .stroke-N4{stroke:#CFD2DD;} + .d2-3405455601 .stroke-N5{stroke:#DEE1EB;} + .d2-3405455601 .stroke-N6{stroke:#EEF1F8;} + .d2-3405455601 .stroke-N7{stroke:#FFFFFF;} + .d2-3405455601 .stroke-B1{stroke:#0D32B2;} + .d2-3405455601 .stroke-B2{stroke:#0D32B2;} + .d2-3405455601 .stroke-B3{stroke:#E3E9FD;} + .d2-3405455601 .stroke-B4{stroke:#E3E9FD;} + .d2-3405455601 .stroke-B5{stroke:#EDF0FD;} + .d2-3405455601 .stroke-B6{stroke:#F7F8FE;} + .d2-3405455601 .stroke-AA2{stroke:#4A6FF3;} + .d2-3405455601 .stroke-AA4{stroke:#EDF0FD;} + .d2-3405455601 .stroke-AA5{stroke:#F7F8FE;} + .d2-3405455601 .stroke-AB4{stroke:#EDF0FD;} + .d2-3405455601 .stroke-AB5{stroke:#F7F8FE;} + .d2-3405455601 .background-color-N1{background-color:#0A0F25;} + .d2-3405455601 .background-color-N2{background-color:#676C7E;} + .d2-3405455601 .background-color-N3{background-color:#9499AB;} + .d2-3405455601 .background-color-N4{background-color:#CFD2DD;} + .d2-3405455601 .background-color-N5{background-color:#DEE1EB;} + .d2-3405455601 .background-color-N6{background-color:#EEF1F8;} + .d2-3405455601 .background-color-N7{background-color:#FFFFFF;} + .d2-3405455601 .background-color-B1{background-color:#0D32B2;} + .d2-3405455601 .background-color-B2{background-color:#0D32B2;} + .d2-3405455601 .background-color-B3{background-color:#E3E9FD;} + .d2-3405455601 .background-color-B4{background-color:#E3E9FD;} + .d2-3405455601 .background-color-B5{background-color:#EDF0FD;} + .d2-3405455601 .background-color-B6{background-color:#F7F8FE;} + .d2-3405455601 .background-color-AA2{background-color:#4A6FF3;} + .d2-3405455601 .background-color-AA4{background-color:#EDF0FD;} + .d2-3405455601 .background-color-AA5{background-color:#F7F8FE;} + .d2-3405455601 .background-color-AB4{background-color:#EDF0FD;} + .d2-3405455601 .background-color-AB5{background-color:#F7F8FE;} + .d2-3405455601 .color-N1{color:#0A0F25;} + .d2-3405455601 .color-N2{color:#676C7E;} + .d2-3405455601 .color-N3{color:#9499AB;} + .d2-3405455601 .color-N4{color:#CFD2DD;} + .d2-3405455601 .color-N5{color:#DEE1EB;} + .d2-3405455601 .color-N6{color:#EEF1F8;} + .d2-3405455601 .color-N7{color:#FFFFFF;} + .d2-3405455601 .color-B1{color:#0D32B2;} + .d2-3405455601 .color-B2{color:#0D32B2;} + .d2-3405455601 .color-B3{color:#E3E9FD;} + .d2-3405455601 .color-B4{color:#E3E9FD;} + .d2-3405455601 .color-B5{color:#EDF0FD;} + .d2-3405455601 .color-B6{color:#F7F8FE;} + .d2-3405455601 .color-AA2{color:#4A6FF3;} + .d2-3405455601 .color-AA4{color:#EDF0FD;} + .d2-3405455601 .color-AA5{color:#F7F8FE;} + .d2-3405455601 .color-AB4{color:#EDF0FD;} + .d2-3405455601 .color-AB5{color:#F7F8FE;}.appendix text.text{fill:#0A0F25}.md{--color-fg-default:#0A0F25;--color-fg-muted:#676C7E;--color-fg-subtle:#9499AB;--color-canvas-default:#FFFFFF;--color-canvas-subtle:#EEF1F8;--color-border-default:#0D32B2;--color-border-muted:#0D32B2;--color-neutral-muted:#EEF1F8;--color-accent-fg:#0D32B2;--color-accent-emphasis:#0D32B2;--color-attention-subtle:#676C7E;--color-danger-fg:red;}.sketch-overlay-B1{fill:url(#streaks-darker);mix-blend-mode:lighten}.sketch-overlay-B2{fill:url(#streaks-darker);mix-blend-mode:lighten}.sketch-overlay-B3{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-B4{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-B5{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-B6{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-AA2{fill:url(#streaks-dark);mix-blend-mode:overlay}.sketch-overlay-AA4{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-AA5{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-AB4{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-AB5{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-N1{fill:url(#streaks-darker);mix-blend-mode:lighten}.sketch-overlay-N2{fill:url(#streaks-dark);mix-blend-mode:overlay}.sketch-overlay-N3{fill:url(#streaks-normal);mix-blend-mode:color-burn}.sketch-overlay-N4{fill:url(#streaks-normal);mix-blend-mode:color-burn}.sketch-overlay-N5{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-N6{fill:url(#streaks-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 \ No newline at end of file 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 ff527f4074..d1cad4b7db 100644 --- a/e2etests/testdata/stable/sequence_diagram_real/dagre/board.exp.json +++ b/e2etests/testdata/stable/sequence_diagram_real/dagre/board.exp.json @@ -582,10 +582,8 @@ "id": "How this is rendered.(CLI -> d2ast)[0]", "src": "How this is rendered.CLI", "srcArrow": "none", - "srcLabel": "", "dst": "How this is rendered.d2ast", "dstArrow": "triangle", - "dstLabel": "", "opacity": 1, "strokeDash": 0, "strokeWidth": 2, @@ -622,10 +620,8 @@ "id": "How this is rendered.(d2ast -> CLI)[0]", "src": "How this is rendered.d2ast", "srcArrow": "none", - "srcLabel": "", "dst": "How this is rendered.CLI", "dstArrow": "triangle", - "dstLabel": "", "opacity": 1, "strokeDash": 0, "strokeWidth": 2, @@ -662,10 +658,8 @@ "id": "How this is rendered.(CLI -> d2compiler)[0]", "src": "How this is rendered.CLI", "srcArrow": "none", - "srcLabel": "", "dst": "How this is rendered.d2compiler", "dstArrow": "triangle", - "dstLabel": "", "opacity": 1, "strokeDash": 0, "strokeWidth": 2, @@ -702,10 +696,8 @@ "id": "How this is rendered.(d2compiler -> CLI)[0]", "src": "How this is rendered.d2compiler", "srcArrow": "none", - "srcLabel": "", "dst": "How this is rendered.CLI", "dstArrow": "triangle", - "dstLabel": "", "opacity": 1, "strokeDash": 0, "strokeWidth": 2, @@ -742,10 +734,8 @@ "id": "How this is rendered.(CLI -> d2layout.layout)[0]", "src": "How this is rendered.CLI", "srcArrow": "none", - "srcLabel": "", "dst": "How this is rendered.d2layout.layout", "dstArrow": "triangle", - "dstLabel": "", "opacity": 1, "strokeDash": 0, "strokeWidth": 2, @@ -782,10 +772,8 @@ "id": "How this is rendered.(d2layout.layout -> d2sequencelayout)[0]", "src": "How this is rendered.d2layout.layout", "srcArrow": "none", - "srcLabel": "", "dst": "How this is rendered.d2sequencelayout", "dstArrow": "triangle", - "dstLabel": "", "opacity": 1, "strokeDash": 0, "strokeWidth": 2, @@ -822,10 +810,8 @@ "id": "How this is rendered.(d2layout.layout -> d2dagrelayout)[0]", "src": "How this is rendered.d2layout.layout", "srcArrow": "none", - "srcLabel": "", "dst": "How this is rendered.d2dagrelayout", "dstArrow": "triangle", - "dstLabel": "", "opacity": 1, "strokeDash": 0, "strokeWidth": 2, @@ -862,10 +848,8 @@ "id": "How this is rendered.(d2layout.layout <- d2sequencelayout)[0]", "src": "How this is rendered.d2layout.layout", "srcArrow": "triangle", - "srcLabel": "", "dst": "How this is rendered.d2sequencelayout", "dstArrow": "none", - "dstLabel": "", "opacity": 1, "strokeDash": 0, "strokeWidth": 2, @@ -902,10 +886,8 @@ "id": "How this is rendered.(d2layout -> CLI)[0]", "src": "How this is rendered.d2layout", "srcArrow": "none", - "srcLabel": "", "dst": "How this is rendered.CLI", "dstArrow": "triangle", - "dstLabel": "", "opacity": 1, "strokeDash": 0, "strokeWidth": 2, @@ -942,10 +924,8 @@ "id": "How this is rendered.(CLI -> d2exporter)[0]", "src": "How this is rendered.CLI", "srcArrow": "none", - "srcLabel": "", "dst": "How this is rendered.d2exporter", "dstArrow": "triangle", - "dstLabel": "", "opacity": 1, "strokeDash": 0, "strokeWidth": 2, @@ -982,10 +962,8 @@ "id": "How this is rendered.(d2exporter.export -> d2themes)[0]", "src": "How this is rendered.d2exporter.export", "srcArrow": "none", - "srcLabel": "", "dst": "How this is rendered.d2themes", "dstArrow": "triangle", - "dstLabel": "", "opacity": 1, "strokeDash": 0, "strokeWidth": 2, @@ -1022,10 +1000,8 @@ "id": "How this is rendered.(d2exporter.export -> d2renderer)[0]", "src": "How this is rendered.d2exporter.export", "srcArrow": "none", - "srcLabel": "", "dst": "How this is rendered.d2renderer", "dstArrow": "triangle", - "dstLabel": "", "opacity": 1, "strokeDash": 0, "strokeWidth": 2, @@ -1062,10 +1038,8 @@ "id": "How this is rendered.(d2exporter.export -> CLI)[0]", "src": "How this is rendered.d2exporter.export", "srcArrow": "none", - "srcLabel": "", "dst": "How this is rendered.CLI", "dstArrow": "triangle", - "dstLabel": "", "opacity": 1, "strokeDash": 0, "strokeWidth": 2, @@ -1102,10 +1076,8 @@ "id": "(How this is rendered.CLI -- )[0]", "src": "How this is rendered.CLI", "srcArrow": "none", - "srcLabel": "", "dst": "CLI-lifeline-end-1708808208", "dstArrow": "none", - "dstLabel": "", "opacity": 1, "strokeDash": 6, "strokeWidth": 2, @@ -1142,10 +1114,8 @@ "id": "(How this is rendered.d2ast -- )[0]", "src": "How this is rendered.d2ast", "srcArrow": "none", - "srcLabel": "", "dst": "d2ast-lifeline-end-2301832456", "dstArrow": "none", - "dstLabel": "", "opacity": 1, "strokeDash": 6, "strokeWidth": 2, @@ -1182,10 +1152,8 @@ "id": "(How this is rendered.d2compiler -- )[0]", "src": "How this is rendered.d2compiler", "srcArrow": "none", - "srcLabel": "", "dst": "d2compiler-lifeline-end-4225513585", "dstArrow": "none", - "dstLabel": "", "opacity": 1, "strokeDash": 6, "strokeWidth": 2, @@ -1222,10 +1190,8 @@ "id": "(How this is rendered.d2layout -- )[0]", "src": "How this is rendered.d2layout", "srcArrow": "none", - "srcLabel": "", "dst": "d2layout-lifeline-end-1285981920", "dstArrow": "none", - "dstLabel": "", "opacity": 1, "strokeDash": 6, "strokeWidth": 2, @@ -1262,10 +1228,8 @@ "id": "(How this is rendered.d2exporter -- )[0]", "src": "How this is rendered.d2exporter", "srcArrow": "none", - "srcLabel": "", "dst": "d2exporter-lifeline-end-882815229", "dstArrow": "none", - "dstLabel": "", "opacity": 1, "strokeDash": 6, "strokeWidth": 2, @@ -1302,10 +1266,8 @@ "id": "(How this is rendered.d2themes -- )[0]", "src": "How this is rendered.d2themes", "srcArrow": "none", - "srcLabel": "", "dst": "d2themes-lifeline-end-1104056036", "dstArrow": "none", - "dstLabel": "", "opacity": 1, "strokeDash": 6, "strokeWidth": 2, @@ -1342,10 +1304,8 @@ "id": "(How this is rendered.d2renderer -- )[0]", "src": "How this is rendered.d2renderer", "srcArrow": "none", - "srcLabel": "", "dst": "d2renderer-lifeline-end-3212976943", "dstArrow": "none", - "dstLabel": "", "opacity": 1, "strokeDash": 6, "strokeWidth": 2, @@ -1382,10 +1342,8 @@ "id": "(How this is rendered.d2sequencelayout -- )[0]", "src": "How this is rendered.d2sequencelayout", "srcArrow": "none", - "srcLabel": "", "dst": "d2sequencelayout-lifeline-end-3085844671", "dstArrow": "none", - "dstLabel": "", "opacity": 1, "strokeDash": 6, "strokeWidth": 2, @@ -1422,10 +1380,8 @@ "id": "(How this is rendered.d2dagrelayout -- )[0]", "src": "How this is rendered.d2dagrelayout", "srcArrow": "none", - "srcLabel": "", "dst": "d2dagrelayout-lifeline-end-3371915605", "dstArrow": "none", - "dstLabel": "", "opacity": 1, "strokeDash": 6, "strokeWidth": 2, 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 98c619cc8e..27c80ea21c 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-2785161253 .fill-N1{fill:#0A0F25;} + .d2-2785161253 .fill-N2{fill:#676C7E;} + .d2-2785161253 .fill-N3{fill:#9499AB;} + .d2-2785161253 .fill-N4{fill:#CFD2DD;} + .d2-2785161253 .fill-N5{fill:#DEE1EB;} + .d2-2785161253 .fill-N6{fill:#EEF1F8;} + .d2-2785161253 .fill-N7{fill:#FFFFFF;} + .d2-2785161253 .fill-B1{fill:#0D32B2;} + .d2-2785161253 .fill-B2{fill:#0D32B2;} + .d2-2785161253 .fill-B3{fill:#E3E9FD;} + .d2-2785161253 .fill-B4{fill:#E3E9FD;} + .d2-2785161253 .fill-B5{fill:#EDF0FD;} + .d2-2785161253 .fill-B6{fill:#F7F8FE;} + .d2-2785161253 .fill-AA2{fill:#4A6FF3;} + .d2-2785161253 .fill-AA4{fill:#EDF0FD;} + .d2-2785161253 .fill-AA5{fill:#F7F8FE;} + .d2-2785161253 .fill-AB4{fill:#EDF0FD;} + .d2-2785161253 .fill-AB5{fill:#F7F8FE;} + .d2-2785161253 .stroke-N1{stroke:#0A0F25;} + .d2-2785161253 .stroke-N2{stroke:#676C7E;} + .d2-2785161253 .stroke-N3{stroke:#9499AB;} + .d2-2785161253 .stroke-N4{stroke:#CFD2DD;} + .d2-2785161253 .stroke-N5{stroke:#DEE1EB;} + .d2-2785161253 .stroke-N6{stroke:#EEF1F8;} + .d2-2785161253 .stroke-N7{stroke:#FFFFFF;} + .d2-2785161253 .stroke-B1{stroke:#0D32B2;} + .d2-2785161253 .stroke-B2{stroke:#0D32B2;} + .d2-2785161253 .stroke-B3{stroke:#E3E9FD;} + .d2-2785161253 .stroke-B4{stroke:#E3E9FD;} + .d2-2785161253 .stroke-B5{stroke:#EDF0FD;} + .d2-2785161253 .stroke-B6{stroke:#F7F8FE;} + .d2-2785161253 .stroke-AA2{stroke:#4A6FF3;} + .d2-2785161253 .stroke-AA4{stroke:#EDF0FD;} + .d2-2785161253 .stroke-AA5{stroke:#F7F8FE;} + .d2-2785161253 .stroke-AB4{stroke:#EDF0FD;} + .d2-2785161253 .stroke-AB5{stroke:#F7F8FE;} + .d2-2785161253 .background-color-N1{background-color:#0A0F25;} + .d2-2785161253 .background-color-N2{background-color:#676C7E;} + .d2-2785161253 .background-color-N3{background-color:#9499AB;} + .d2-2785161253 .background-color-N4{background-color:#CFD2DD;} + .d2-2785161253 .background-color-N5{background-color:#DEE1EB;} + .d2-2785161253 .background-color-N6{background-color:#EEF1F8;} + .d2-2785161253 .background-color-N7{background-color:#FFFFFF;} + .d2-2785161253 .background-color-B1{background-color:#0D32B2;} + .d2-2785161253 .background-color-B2{background-color:#0D32B2;} + .d2-2785161253 .background-color-B3{background-color:#E3E9FD;} + .d2-2785161253 .background-color-B4{background-color:#E3E9FD;} + .d2-2785161253 .background-color-B5{background-color:#EDF0FD;} + .d2-2785161253 .background-color-B6{background-color:#F7F8FE;} + .d2-2785161253 .background-color-AA2{background-color:#4A6FF3;} + .d2-2785161253 .background-color-AA4{background-color:#EDF0FD;} + .d2-2785161253 .background-color-AA5{background-color:#F7F8FE;} + .d2-2785161253 .background-color-AB4{background-color:#EDF0FD;} + .d2-2785161253 .background-color-AB5{background-color:#F7F8FE;} + .d2-2785161253 .color-N1{color:#0A0F25;} + .d2-2785161253 .color-N2{color:#676C7E;} + .d2-2785161253 .color-N3{color:#9499AB;} + .d2-2785161253 .color-N4{color:#CFD2DD;} + .d2-2785161253 .color-N5{color:#DEE1EB;} + .d2-2785161253 .color-N6{color:#EEF1F8;} + .d2-2785161253 .color-N7{color:#FFFFFF;} + .d2-2785161253 .color-B1{color:#0D32B2;} + .d2-2785161253 .color-B2{color:#0D32B2;} + .d2-2785161253 .color-B3{color:#E3E9FD;} + .d2-2785161253 .color-B4{color:#E3E9FD;} + .d2-2785161253 .color-B5{color:#EDF0FD;} + .d2-2785161253 .color-B6{color:#F7F8FE;} + .d2-2785161253 .color-AA2{color:#4A6FF3;} + .d2-2785161253 .color-AA4{color:#EDF0FD;} + .d2-2785161253 .color-AA5{color:#F7F8FE;} + .d2-2785161253 .color-AB4{color:#EDF0FD;} + .d2-2785161253 .color-AB5{color:#F7F8FE;}.appendix text.text{fill:#0A0F25}.md{--color-fg-default:#0A0F25;--color-fg-muted:#676C7E;--color-fg-subtle:#9499AB;--color-canvas-default:#FFFFFF;--color-canvas-subtle:#EEF1F8;--color-border-default:#0D32B2;--color-border-muted:#0D32B2;--color-neutral-muted:#EEF1F8;--color-accent-fg:#0D32B2;--color-accent-emphasis:#0D32B2;--color-attention-subtle:#676C7E;--color-danger-fg:red;}.sketch-overlay-B1{fill:url(#streaks-darker);mix-blend-mode:lighten}.sketch-overlay-B2{fill:url(#streaks-darker);mix-blend-mode:lighten}.sketch-overlay-B3{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-B4{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-B5{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-B6{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-AA2{fill:url(#streaks-dark);mix-blend-mode:overlay}.sketch-overlay-AA4{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-AA5{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-AB4{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-AB5{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-N1{fill:url(#streaks-darker);mix-blend-mode:lighten}.sketch-overlay-N2{fill:url(#streaks-dark);mix-blend-mode:overlay}.sketch-overlay-N3{fill:url(#streaks-normal);mix-blend-mode:color-burn}.sketch-overlay-N4{fill:url(#streaks-normal);mix-blend-mode:color-burn}.sketch-overlay-N5{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-N6{fill:url(#streaks-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 3e0a984984..4540f48560 100644 --- a/e2etests/testdata/stable/sequence_diagram_real/elk/board.exp.json +++ b/e2etests/testdata/stable/sequence_diagram_real/elk/board.exp.json @@ -582,10 +582,8 @@ "id": "How this is rendered.(CLI -> d2ast)[0]", "src": "How this is rendered.CLI", "srcArrow": "none", - "srcLabel": "", "dst": "How this is rendered.d2ast", "dstArrow": "triangle", - "dstLabel": "", "opacity": 1, "strokeDash": 0, "strokeWidth": 2, @@ -622,10 +620,8 @@ "id": "How this is rendered.(d2ast -> CLI)[0]", "src": "How this is rendered.d2ast", "srcArrow": "none", - "srcLabel": "", "dst": "How this is rendered.CLI", "dstArrow": "triangle", - "dstLabel": "", "opacity": 1, "strokeDash": 0, "strokeWidth": 2, @@ -662,10 +658,8 @@ "id": "How this is rendered.(CLI -> d2compiler)[0]", "src": "How this is rendered.CLI", "srcArrow": "none", - "srcLabel": "", "dst": "How this is rendered.d2compiler", "dstArrow": "triangle", - "dstLabel": "", "opacity": 1, "strokeDash": 0, "strokeWidth": 2, @@ -702,10 +696,8 @@ "id": "How this is rendered.(d2compiler -> CLI)[0]", "src": "How this is rendered.d2compiler", "srcArrow": "none", - "srcLabel": "", "dst": "How this is rendered.CLI", "dstArrow": "triangle", - "dstLabel": "", "opacity": 1, "strokeDash": 0, "strokeWidth": 2, @@ -742,10 +734,8 @@ "id": "How this is rendered.(CLI -> d2layout.layout)[0]", "src": "How this is rendered.CLI", "srcArrow": "none", - "srcLabel": "", "dst": "How this is rendered.d2layout.layout", "dstArrow": "triangle", - "dstLabel": "", "opacity": 1, "strokeDash": 0, "strokeWidth": 2, @@ -782,10 +772,8 @@ "id": "How this is rendered.(d2layout.layout -> d2sequencelayout)[0]", "src": "How this is rendered.d2layout.layout", "srcArrow": "none", - "srcLabel": "", "dst": "How this is rendered.d2sequencelayout", "dstArrow": "triangle", - "dstLabel": "", "opacity": 1, "strokeDash": 0, "strokeWidth": 2, @@ -822,10 +810,8 @@ "id": "How this is rendered.(d2layout.layout -> d2dagrelayout)[0]", "src": "How this is rendered.d2layout.layout", "srcArrow": "none", - "srcLabel": "", "dst": "How this is rendered.d2dagrelayout", "dstArrow": "triangle", - "dstLabel": "", "opacity": 1, "strokeDash": 0, "strokeWidth": 2, @@ -862,10 +848,8 @@ "id": "How this is rendered.(d2layout.layout <- d2sequencelayout)[0]", "src": "How this is rendered.d2layout.layout", "srcArrow": "triangle", - "srcLabel": "", "dst": "How this is rendered.d2sequencelayout", "dstArrow": "none", - "dstLabel": "", "opacity": 1, "strokeDash": 0, "strokeWidth": 2, @@ -902,10 +886,8 @@ "id": "How this is rendered.(d2layout -> CLI)[0]", "src": "How this is rendered.d2layout", "srcArrow": "none", - "srcLabel": "", "dst": "How this is rendered.CLI", "dstArrow": "triangle", - "dstLabel": "", "opacity": 1, "strokeDash": 0, "strokeWidth": 2, @@ -942,10 +924,8 @@ "id": "How this is rendered.(CLI -> d2exporter)[0]", "src": "How this is rendered.CLI", "srcArrow": "none", - "srcLabel": "", "dst": "How this is rendered.d2exporter", "dstArrow": "triangle", - "dstLabel": "", "opacity": 1, "strokeDash": 0, "strokeWidth": 2, @@ -982,10 +962,8 @@ "id": "How this is rendered.(d2exporter.export -> d2themes)[0]", "src": "How this is rendered.d2exporter.export", "srcArrow": "none", - "srcLabel": "", "dst": "How this is rendered.d2themes", "dstArrow": "triangle", - "dstLabel": "", "opacity": 1, "strokeDash": 0, "strokeWidth": 2, @@ -1022,10 +1000,8 @@ "id": "How this is rendered.(d2exporter.export -> d2renderer)[0]", "src": "How this is rendered.d2exporter.export", "srcArrow": "none", - "srcLabel": "", "dst": "How this is rendered.d2renderer", "dstArrow": "triangle", - "dstLabel": "", "opacity": 1, "strokeDash": 0, "strokeWidth": 2, @@ -1062,10 +1038,8 @@ "id": "How this is rendered.(d2exporter.export -> CLI)[0]", "src": "How this is rendered.d2exporter.export", "srcArrow": "none", - "srcLabel": "", "dst": "How this is rendered.CLI", "dstArrow": "triangle", - "dstLabel": "", "opacity": 1, "strokeDash": 0, "strokeWidth": 2, @@ -1102,10 +1076,8 @@ "id": "(How this is rendered.CLI -- )[0]", "src": "How this is rendered.CLI", "srcArrow": "none", - "srcLabel": "", "dst": "CLI-lifeline-end-1708808208", "dstArrow": "none", - "dstLabel": "", "opacity": 1, "strokeDash": 6, "strokeWidth": 2, @@ -1142,10 +1114,8 @@ "id": "(How this is rendered.d2ast -- )[0]", "src": "How this is rendered.d2ast", "srcArrow": "none", - "srcLabel": "", "dst": "d2ast-lifeline-end-2301832456", "dstArrow": "none", - "dstLabel": "", "opacity": 1, "strokeDash": 6, "strokeWidth": 2, @@ -1182,10 +1152,8 @@ "id": "(How this is rendered.d2compiler -- )[0]", "src": "How this is rendered.d2compiler", "srcArrow": "none", - "srcLabel": "", "dst": "d2compiler-lifeline-end-4225513585", "dstArrow": "none", - "dstLabel": "", "opacity": 1, "strokeDash": 6, "strokeWidth": 2, @@ -1222,10 +1190,8 @@ "id": "(How this is rendered.d2layout -- )[0]", "src": "How this is rendered.d2layout", "srcArrow": "none", - "srcLabel": "", "dst": "d2layout-lifeline-end-1285981920", "dstArrow": "none", - "dstLabel": "", "opacity": 1, "strokeDash": 6, "strokeWidth": 2, @@ -1262,10 +1228,8 @@ "id": "(How this is rendered.d2exporter -- )[0]", "src": "How this is rendered.d2exporter", "srcArrow": "none", - "srcLabel": "", "dst": "d2exporter-lifeline-end-882815229", "dstArrow": "none", - "dstLabel": "", "opacity": 1, "strokeDash": 6, "strokeWidth": 2, @@ -1302,10 +1266,8 @@ "id": "(How this is rendered.d2themes -- )[0]", "src": "How this is rendered.d2themes", "srcArrow": "none", - "srcLabel": "", "dst": "d2themes-lifeline-end-1104056036", "dstArrow": "none", - "dstLabel": "", "opacity": 1, "strokeDash": 6, "strokeWidth": 2, @@ -1342,10 +1304,8 @@ "id": "(How this is rendered.d2renderer -- )[0]", "src": "How this is rendered.d2renderer", "srcArrow": "none", - "srcLabel": "", "dst": "d2renderer-lifeline-end-3212976943", "dstArrow": "none", - "dstLabel": "", "opacity": 1, "strokeDash": 6, "strokeWidth": 2, @@ -1382,10 +1342,8 @@ "id": "(How this is rendered.d2sequencelayout -- )[0]", "src": "How this is rendered.d2sequencelayout", "srcArrow": "none", - "srcLabel": "", "dst": "d2sequencelayout-lifeline-end-3085844671", "dstArrow": "none", - "dstLabel": "", "opacity": 1, "strokeDash": 6, "strokeWidth": 2, @@ -1422,10 +1380,8 @@ "id": "(How this is rendered.d2dagrelayout -- )[0]", "src": "How this is rendered.d2dagrelayout", "srcArrow": "none", - "srcLabel": "", "dst": "d2dagrelayout-lifeline-end-3371915605", "dstArrow": "none", - "dstLabel": "", "opacity": 1, "strokeDash": 6, "strokeWidth": 2, 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 35ed2ec396..b4b8d1a0f5 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-2809305509 .fill-N1{fill:#0A0F25;} + .d2-2809305509 .fill-N2{fill:#676C7E;} + .d2-2809305509 .fill-N3{fill:#9499AB;} + .d2-2809305509 .fill-N4{fill:#CFD2DD;} + .d2-2809305509 .fill-N5{fill:#DEE1EB;} + .d2-2809305509 .fill-N6{fill:#EEF1F8;} + .d2-2809305509 .fill-N7{fill:#FFFFFF;} + .d2-2809305509 .fill-B1{fill:#0D32B2;} + .d2-2809305509 .fill-B2{fill:#0D32B2;} + .d2-2809305509 .fill-B3{fill:#E3E9FD;} + .d2-2809305509 .fill-B4{fill:#E3E9FD;} + .d2-2809305509 .fill-B5{fill:#EDF0FD;} + .d2-2809305509 .fill-B6{fill:#F7F8FE;} + .d2-2809305509 .fill-AA2{fill:#4A6FF3;} + .d2-2809305509 .fill-AA4{fill:#EDF0FD;} + .d2-2809305509 .fill-AA5{fill:#F7F8FE;} + .d2-2809305509 .fill-AB4{fill:#EDF0FD;} + .d2-2809305509 .fill-AB5{fill:#F7F8FE;} + .d2-2809305509 .stroke-N1{stroke:#0A0F25;} + .d2-2809305509 .stroke-N2{stroke:#676C7E;} + .d2-2809305509 .stroke-N3{stroke:#9499AB;} + .d2-2809305509 .stroke-N4{stroke:#CFD2DD;} + .d2-2809305509 .stroke-N5{stroke:#DEE1EB;} + .d2-2809305509 .stroke-N6{stroke:#EEF1F8;} + .d2-2809305509 .stroke-N7{stroke:#FFFFFF;} + .d2-2809305509 .stroke-B1{stroke:#0D32B2;} + .d2-2809305509 .stroke-B2{stroke:#0D32B2;} + .d2-2809305509 .stroke-B3{stroke:#E3E9FD;} + .d2-2809305509 .stroke-B4{stroke:#E3E9FD;} + .d2-2809305509 .stroke-B5{stroke:#EDF0FD;} + .d2-2809305509 .stroke-B6{stroke:#F7F8FE;} + .d2-2809305509 .stroke-AA2{stroke:#4A6FF3;} + .d2-2809305509 .stroke-AA4{stroke:#EDF0FD;} + .d2-2809305509 .stroke-AA5{stroke:#F7F8FE;} + .d2-2809305509 .stroke-AB4{stroke:#EDF0FD;} + .d2-2809305509 .stroke-AB5{stroke:#F7F8FE;} + .d2-2809305509 .background-color-N1{background-color:#0A0F25;} + .d2-2809305509 .background-color-N2{background-color:#676C7E;} + .d2-2809305509 .background-color-N3{background-color:#9499AB;} + .d2-2809305509 .background-color-N4{background-color:#CFD2DD;} + .d2-2809305509 .background-color-N5{background-color:#DEE1EB;} + .d2-2809305509 .background-color-N6{background-color:#EEF1F8;} + .d2-2809305509 .background-color-N7{background-color:#FFFFFF;} + .d2-2809305509 .background-color-B1{background-color:#0D32B2;} + .d2-2809305509 .background-color-B2{background-color:#0D32B2;} + .d2-2809305509 .background-color-B3{background-color:#E3E9FD;} + .d2-2809305509 .background-color-B4{background-color:#E3E9FD;} + .d2-2809305509 .background-color-B5{background-color:#EDF0FD;} + .d2-2809305509 .background-color-B6{background-color:#F7F8FE;} + .d2-2809305509 .background-color-AA2{background-color:#4A6FF3;} + .d2-2809305509 .background-color-AA4{background-color:#EDF0FD;} + .d2-2809305509 .background-color-AA5{background-color:#F7F8FE;} + .d2-2809305509 .background-color-AB4{background-color:#EDF0FD;} + .d2-2809305509 .background-color-AB5{background-color:#F7F8FE;} + .d2-2809305509 .color-N1{color:#0A0F25;} + .d2-2809305509 .color-N2{color:#676C7E;} + .d2-2809305509 .color-N3{color:#9499AB;} + .d2-2809305509 .color-N4{color:#CFD2DD;} + .d2-2809305509 .color-N5{color:#DEE1EB;} + .d2-2809305509 .color-N6{color:#EEF1F8;} + .d2-2809305509 .color-N7{color:#FFFFFF;} + .d2-2809305509 .color-B1{color:#0D32B2;} + .d2-2809305509 .color-B2{color:#0D32B2;} + .d2-2809305509 .color-B3{color:#E3E9FD;} + .d2-2809305509 .color-B4{color:#E3E9FD;} + .d2-2809305509 .color-B5{color:#EDF0FD;} + .d2-2809305509 .color-B6{color:#F7F8FE;} + .d2-2809305509 .color-AA2{color:#4A6FF3;} + .d2-2809305509 .color-AA4{color:#EDF0FD;} + .d2-2809305509 .color-AA5{color:#F7F8FE;} + .d2-2809305509 .color-AB4{color:#EDF0FD;} + .d2-2809305509 .color-AB5{color:#F7F8FE;}.appendix text.text{fill:#0A0F25}.md{--color-fg-default:#0A0F25;--color-fg-muted:#676C7E;--color-fg-subtle:#9499AB;--color-canvas-default:#FFFFFF;--color-canvas-subtle:#EEF1F8;--color-border-default:#0D32B2;--color-border-muted:#0D32B2;--color-neutral-muted:#EEF1F8;--color-accent-fg:#0D32B2;--color-accent-emphasis:#0D32B2;--color-attention-subtle:#676C7E;--color-danger-fg:red;}.sketch-overlay-B1{fill:url(#streaks-darker);mix-blend-mode:lighten}.sketch-overlay-B2{fill:url(#streaks-darker);mix-blend-mode:lighten}.sketch-overlay-B3{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-B4{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-B5{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-B6{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-AA2{fill:url(#streaks-dark);mix-blend-mode:overlay}.sketch-overlay-AA4{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-AA5{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-AB4{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-AB5{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-N1{fill:url(#streaks-darker);mix-blend-mode:lighten}.sketch-overlay-N2{fill:url(#streaks-dark);mix-blend-mode:overlay}.sketch-overlay-N3{fill:url(#streaks-normal);mix-blend-mode:color-burn}.sketch-overlay-N4{fill:url(#streaks-normal);mix-blend-mode:color-burn}.sketch-overlay-N5{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-N6{fill:url(#streaks-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 fb01915e04..21c41ae543 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 @@ -291,10 +291,8 @@ "id": "(a -> a)[0]", "src": "a", "srcArrow": "none", - "srcLabel": "", "dst": "a", "dstArrow": "triangle", - "dstLabel": "", "opacity": 1, "strokeDash": 0, "strokeWidth": 2, @@ -339,10 +337,8 @@ "id": "(a -> b)[0]", "src": "a", "srcArrow": "none", - "srcLabel": "", "dst": "b", "dstArrow": "triangle", - "dstLabel": "", "opacity": 1, "strokeDash": 0, "strokeWidth": 2, @@ -379,10 +375,8 @@ "id": "(b -> b.1)[0]", "src": "b", "srcArrow": "none", - "srcLabel": "", "dst": "b.1", "dstArrow": "triangle", - "dstLabel": "", "opacity": 1, "strokeDash": 0, "strokeWidth": 2, @@ -427,10 +421,8 @@ "id": "b.(1 -> 1.2)[0]", "src": "b.1", "srcArrow": "none", - "srcLabel": "", "dst": "b.1.2", "dstArrow": "triangle", - "dstLabel": "", "opacity": 1, "strokeDash": 0, "strokeWidth": 2, @@ -475,10 +467,8 @@ "id": "(b.1.2 -> b)[0]", "src": "b.1.2", "srcArrow": "none", - "srcLabel": "", "dst": "b", "dstArrow": "triangle", - "dstLabel": "", "opacity": 1, "strokeDash": 0, "strokeWidth": 2, @@ -523,10 +513,8 @@ "id": "(b -> a.1.2)[0]", "src": "b", "srcArrow": "none", - "srcLabel": "", "dst": "a.1.2", "dstArrow": "triangle", - "dstLabel": "", "opacity": 1, "strokeDash": 0, "strokeWidth": 2, @@ -563,10 +551,8 @@ "id": "(a.1 -> b.3)[0]", "src": "a.1", "srcArrow": "none", - "srcLabel": "", "dst": "b.3", "dstArrow": "triangle", - "dstLabel": "", "opacity": 1, "strokeDash": 0, "strokeWidth": 2, @@ -603,10 +589,8 @@ "id": "(a -- )[0]", "src": "a", "srcArrow": "none", - "srcLabel": "", "dst": "a-lifeline-end-2251863791", "dstArrow": "none", - "dstLabel": "", "opacity": 1, "strokeDash": 6, "strokeWidth": 2, @@ -643,10 +627,8 @@ "id": "(b -- )[0]", "src": "b", "srcArrow": "none", - "srcLabel": "", "dst": "b-lifeline-end-668380428", "dstArrow": "none", - "dstLabel": "", "opacity": 1, "strokeDash": 6, "strokeWidth": 2, 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 07b3755730..0c535ac3da 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-2958583257 .fill-N1{fill:#0A0F25;} + .d2-2958583257 .fill-N2{fill:#676C7E;} + .d2-2958583257 .fill-N3{fill:#9499AB;} + .d2-2958583257 .fill-N4{fill:#CFD2DD;} + .d2-2958583257 .fill-N5{fill:#DEE1EB;} + .d2-2958583257 .fill-N6{fill:#EEF1F8;} + .d2-2958583257 .fill-N7{fill:#FFFFFF;} + .d2-2958583257 .fill-B1{fill:#0D32B2;} + .d2-2958583257 .fill-B2{fill:#0D32B2;} + .d2-2958583257 .fill-B3{fill:#E3E9FD;} + .d2-2958583257 .fill-B4{fill:#E3E9FD;} + .d2-2958583257 .fill-B5{fill:#EDF0FD;} + .d2-2958583257 .fill-B6{fill:#F7F8FE;} + .d2-2958583257 .fill-AA2{fill:#4A6FF3;} + .d2-2958583257 .fill-AA4{fill:#EDF0FD;} + .d2-2958583257 .fill-AA5{fill:#F7F8FE;} + .d2-2958583257 .fill-AB4{fill:#EDF0FD;} + .d2-2958583257 .fill-AB5{fill:#F7F8FE;} + .d2-2958583257 .stroke-N1{stroke:#0A0F25;} + .d2-2958583257 .stroke-N2{stroke:#676C7E;} + .d2-2958583257 .stroke-N3{stroke:#9499AB;} + .d2-2958583257 .stroke-N4{stroke:#CFD2DD;} + .d2-2958583257 .stroke-N5{stroke:#DEE1EB;} + .d2-2958583257 .stroke-N6{stroke:#EEF1F8;} + .d2-2958583257 .stroke-N7{stroke:#FFFFFF;} + .d2-2958583257 .stroke-B1{stroke:#0D32B2;} + .d2-2958583257 .stroke-B2{stroke:#0D32B2;} + .d2-2958583257 .stroke-B3{stroke:#E3E9FD;} + .d2-2958583257 .stroke-B4{stroke:#E3E9FD;} + .d2-2958583257 .stroke-B5{stroke:#EDF0FD;} + .d2-2958583257 .stroke-B6{stroke:#F7F8FE;} + .d2-2958583257 .stroke-AA2{stroke:#4A6FF3;} + .d2-2958583257 .stroke-AA4{stroke:#EDF0FD;} + .d2-2958583257 .stroke-AA5{stroke:#F7F8FE;} + .d2-2958583257 .stroke-AB4{stroke:#EDF0FD;} + .d2-2958583257 .stroke-AB5{stroke:#F7F8FE;} + .d2-2958583257 .background-color-N1{background-color:#0A0F25;} + .d2-2958583257 .background-color-N2{background-color:#676C7E;} + .d2-2958583257 .background-color-N3{background-color:#9499AB;} + .d2-2958583257 .background-color-N4{background-color:#CFD2DD;} + .d2-2958583257 .background-color-N5{background-color:#DEE1EB;} + .d2-2958583257 .background-color-N6{background-color:#EEF1F8;} + .d2-2958583257 .background-color-N7{background-color:#FFFFFF;} + .d2-2958583257 .background-color-B1{background-color:#0D32B2;} + .d2-2958583257 .background-color-B2{background-color:#0D32B2;} + .d2-2958583257 .background-color-B3{background-color:#E3E9FD;} + .d2-2958583257 .background-color-B4{background-color:#E3E9FD;} + .d2-2958583257 .background-color-B5{background-color:#EDF0FD;} + .d2-2958583257 .background-color-B6{background-color:#F7F8FE;} + .d2-2958583257 .background-color-AA2{background-color:#4A6FF3;} + .d2-2958583257 .background-color-AA4{background-color:#EDF0FD;} + .d2-2958583257 .background-color-AA5{background-color:#F7F8FE;} + .d2-2958583257 .background-color-AB4{background-color:#EDF0FD;} + .d2-2958583257 .background-color-AB5{background-color:#F7F8FE;} + .d2-2958583257 .color-N1{color:#0A0F25;} + .d2-2958583257 .color-N2{color:#676C7E;} + .d2-2958583257 .color-N3{color:#9499AB;} + .d2-2958583257 .color-N4{color:#CFD2DD;} + .d2-2958583257 .color-N5{color:#DEE1EB;} + .d2-2958583257 .color-N6{color:#EEF1F8;} + .d2-2958583257 .color-N7{color:#FFFFFF;} + .d2-2958583257 .color-B1{color:#0D32B2;} + .d2-2958583257 .color-B2{color:#0D32B2;} + .d2-2958583257 .color-B3{color:#E3E9FD;} + .d2-2958583257 .color-B4{color:#E3E9FD;} + .d2-2958583257 .color-B5{color:#EDF0FD;} + .d2-2958583257 .color-B6{color:#F7F8FE;} + .d2-2958583257 .color-AA2{color:#4A6FF3;} + .d2-2958583257 .color-AA4{color:#EDF0FD;} + .d2-2958583257 .color-AA5{color:#F7F8FE;} + .d2-2958583257 .color-AB4{color:#EDF0FD;} + .d2-2958583257 .color-AB5{color:#F7F8FE;}.appendix text.text{fill:#0A0F25}.md{--color-fg-default:#0A0F25;--color-fg-muted:#676C7E;--color-fg-subtle:#9499AB;--color-canvas-default:#FFFFFF;--color-canvas-subtle:#EEF1F8;--color-border-default:#0D32B2;--color-border-muted:#0D32B2;--color-neutral-muted:#EEF1F8;--color-accent-fg:#0D32B2;--color-accent-emphasis:#0D32B2;--color-attention-subtle:#676C7E;--color-danger-fg:red;}.sketch-overlay-B1{fill:url(#streaks-darker);mix-blend-mode:lighten}.sketch-overlay-B2{fill:url(#streaks-darker);mix-blend-mode:lighten}.sketch-overlay-B3{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-B4{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-B5{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-B6{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-AA2{fill:url(#streaks-dark);mix-blend-mode:overlay}.sketch-overlay-AA4{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-AA5{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-AB4{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-AB5{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-N1{fill:url(#streaks-darker);mix-blend-mode:lighten}.sketch-overlay-N2{fill:url(#streaks-dark);mix-blend-mode:overlay}.sketch-overlay-N3{fill:url(#streaks-normal);mix-blend-mode:color-burn}.sketch-overlay-N4{fill:url(#streaks-normal);mix-blend-mode:color-burn}.sketch-overlay-N5{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-N6{fill:url(#streaks-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 fb01915e04..21c41ae543 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 @@ -291,10 +291,8 @@ "id": "(a -> a)[0]", "src": "a", "srcArrow": "none", - "srcLabel": "", "dst": "a", "dstArrow": "triangle", - "dstLabel": "", "opacity": 1, "strokeDash": 0, "strokeWidth": 2, @@ -339,10 +337,8 @@ "id": "(a -> b)[0]", "src": "a", "srcArrow": "none", - "srcLabel": "", "dst": "b", "dstArrow": "triangle", - "dstLabel": "", "opacity": 1, "strokeDash": 0, "strokeWidth": 2, @@ -379,10 +375,8 @@ "id": "(b -> b.1)[0]", "src": "b", "srcArrow": "none", - "srcLabel": "", "dst": "b.1", "dstArrow": "triangle", - "dstLabel": "", "opacity": 1, "strokeDash": 0, "strokeWidth": 2, @@ -427,10 +421,8 @@ "id": "b.(1 -> 1.2)[0]", "src": "b.1", "srcArrow": "none", - "srcLabel": "", "dst": "b.1.2", "dstArrow": "triangle", - "dstLabel": "", "opacity": 1, "strokeDash": 0, "strokeWidth": 2, @@ -475,10 +467,8 @@ "id": "(b.1.2 -> b)[0]", "src": "b.1.2", "srcArrow": "none", - "srcLabel": "", "dst": "b", "dstArrow": "triangle", - "dstLabel": "", "opacity": 1, "strokeDash": 0, "strokeWidth": 2, @@ -523,10 +513,8 @@ "id": "(b -> a.1.2)[0]", "src": "b", "srcArrow": "none", - "srcLabel": "", "dst": "a.1.2", "dstArrow": "triangle", - "dstLabel": "", "opacity": 1, "strokeDash": 0, "strokeWidth": 2, @@ -563,10 +551,8 @@ "id": "(a.1 -> b.3)[0]", "src": "a.1", "srcArrow": "none", - "srcLabel": "", "dst": "b.3", "dstArrow": "triangle", - "dstLabel": "", "opacity": 1, "strokeDash": 0, "strokeWidth": 2, @@ -603,10 +589,8 @@ "id": "(a -- )[0]", "src": "a", "srcArrow": "none", - "srcLabel": "", "dst": "a-lifeline-end-2251863791", "dstArrow": "none", - "dstLabel": "", "opacity": 1, "strokeDash": 6, "strokeWidth": 2, @@ -643,10 +627,8 @@ "id": "(b -- )[0]", "src": "b", "srcArrow": "none", - "srcLabel": "", "dst": "b-lifeline-end-668380428", "dstArrow": "none", - "dstLabel": "", "opacity": 1, "strokeDash": 6, "strokeWidth": 2, 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 07b3755730..0c535ac3da 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-2958583257 .fill-N1{fill:#0A0F25;} + .d2-2958583257 .fill-N2{fill:#676C7E;} + .d2-2958583257 .fill-N3{fill:#9499AB;} + .d2-2958583257 .fill-N4{fill:#CFD2DD;} + .d2-2958583257 .fill-N5{fill:#DEE1EB;} + .d2-2958583257 .fill-N6{fill:#EEF1F8;} + .d2-2958583257 .fill-N7{fill:#FFFFFF;} + .d2-2958583257 .fill-B1{fill:#0D32B2;} + .d2-2958583257 .fill-B2{fill:#0D32B2;} + .d2-2958583257 .fill-B3{fill:#E3E9FD;} + .d2-2958583257 .fill-B4{fill:#E3E9FD;} + .d2-2958583257 .fill-B5{fill:#EDF0FD;} + .d2-2958583257 .fill-B6{fill:#F7F8FE;} + .d2-2958583257 .fill-AA2{fill:#4A6FF3;} + .d2-2958583257 .fill-AA4{fill:#EDF0FD;} + .d2-2958583257 .fill-AA5{fill:#F7F8FE;} + .d2-2958583257 .fill-AB4{fill:#EDF0FD;} + .d2-2958583257 .fill-AB5{fill:#F7F8FE;} + .d2-2958583257 .stroke-N1{stroke:#0A0F25;} + .d2-2958583257 .stroke-N2{stroke:#676C7E;} + .d2-2958583257 .stroke-N3{stroke:#9499AB;} + .d2-2958583257 .stroke-N4{stroke:#CFD2DD;} + .d2-2958583257 .stroke-N5{stroke:#DEE1EB;} + .d2-2958583257 .stroke-N6{stroke:#EEF1F8;} + .d2-2958583257 .stroke-N7{stroke:#FFFFFF;} + .d2-2958583257 .stroke-B1{stroke:#0D32B2;} + .d2-2958583257 .stroke-B2{stroke:#0D32B2;} + .d2-2958583257 .stroke-B3{stroke:#E3E9FD;} + .d2-2958583257 .stroke-B4{stroke:#E3E9FD;} + .d2-2958583257 .stroke-B5{stroke:#EDF0FD;} + .d2-2958583257 .stroke-B6{stroke:#F7F8FE;} + .d2-2958583257 .stroke-AA2{stroke:#4A6FF3;} + .d2-2958583257 .stroke-AA4{stroke:#EDF0FD;} + .d2-2958583257 .stroke-AA5{stroke:#F7F8FE;} + .d2-2958583257 .stroke-AB4{stroke:#EDF0FD;} + .d2-2958583257 .stroke-AB5{stroke:#F7F8FE;} + .d2-2958583257 .background-color-N1{background-color:#0A0F25;} + .d2-2958583257 .background-color-N2{background-color:#676C7E;} + .d2-2958583257 .background-color-N3{background-color:#9499AB;} + .d2-2958583257 .background-color-N4{background-color:#CFD2DD;} + .d2-2958583257 .background-color-N5{background-color:#DEE1EB;} + .d2-2958583257 .background-color-N6{background-color:#EEF1F8;} + .d2-2958583257 .background-color-N7{background-color:#FFFFFF;} + .d2-2958583257 .background-color-B1{background-color:#0D32B2;} + .d2-2958583257 .background-color-B2{background-color:#0D32B2;} + .d2-2958583257 .background-color-B3{background-color:#E3E9FD;} + .d2-2958583257 .background-color-B4{background-color:#E3E9FD;} + .d2-2958583257 .background-color-B5{background-color:#EDF0FD;} + .d2-2958583257 .background-color-B6{background-color:#F7F8FE;} + .d2-2958583257 .background-color-AA2{background-color:#4A6FF3;} + .d2-2958583257 .background-color-AA4{background-color:#EDF0FD;} + .d2-2958583257 .background-color-AA5{background-color:#F7F8FE;} + .d2-2958583257 .background-color-AB4{background-color:#EDF0FD;} + .d2-2958583257 .background-color-AB5{background-color:#F7F8FE;} + .d2-2958583257 .color-N1{color:#0A0F25;} + .d2-2958583257 .color-N2{color:#676C7E;} + .d2-2958583257 .color-N3{color:#9499AB;} + .d2-2958583257 .color-N4{color:#CFD2DD;} + .d2-2958583257 .color-N5{color:#DEE1EB;} + .d2-2958583257 .color-N6{color:#EEF1F8;} + .d2-2958583257 .color-N7{color:#FFFFFF;} + .d2-2958583257 .color-B1{color:#0D32B2;} + .d2-2958583257 .color-B2{color:#0D32B2;} + .d2-2958583257 .color-B3{color:#E3E9FD;} + .d2-2958583257 .color-B4{color:#E3E9FD;} + .d2-2958583257 .color-B5{color:#EDF0FD;} + .d2-2958583257 .color-B6{color:#F7F8FE;} + .d2-2958583257 .color-AA2{color:#4A6FF3;} + .d2-2958583257 .color-AA4{color:#EDF0FD;} + .d2-2958583257 .color-AA5{color:#F7F8FE;} + .d2-2958583257 .color-AB4{color:#EDF0FD;} + .d2-2958583257 .color-AB5{color:#F7F8FE;}.appendix text.text{fill:#0A0F25}.md{--color-fg-default:#0A0F25;--color-fg-muted:#676C7E;--color-fg-subtle:#9499AB;--color-canvas-default:#FFFFFF;--color-canvas-subtle:#EEF1F8;--color-border-default:#0D32B2;--color-border-muted:#0D32B2;--color-neutral-muted:#EEF1F8;--color-accent-fg:#0D32B2;--color-accent-emphasis:#0D32B2;--color-attention-subtle:#676C7E;--color-danger-fg:red;}.sketch-overlay-B1{fill:url(#streaks-darker);mix-blend-mode:lighten}.sketch-overlay-B2{fill:url(#streaks-darker);mix-blend-mode:lighten}.sketch-overlay-B3{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-B4{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-B5{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-B6{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-AA2{fill:url(#streaks-dark);mix-blend-mode:overlay}.sketch-overlay-AA4{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-AA5{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-AB4{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-AB5{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-N1{fill:url(#streaks-darker);mix-blend-mode:lighten}.sketch-overlay-N2{fill:url(#streaks-dark);mix-blend-mode:overlay}.sketch-overlay-N3{fill:url(#streaks-normal);mix-blend-mode:color-burn}.sketch-overlay-N4{fill:url(#streaks-normal);mix-blend-mode:color-burn}.sketch-overlay-N5{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-N6{fill:url(#streaks-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 b1f454427e..0585af062a 100644 --- a/e2etests/testdata/stable/sequence_diagram_simple/dagre/board.exp.json +++ b/e2etests/testdata/stable/sequence_diagram_simple/dagre/board.exp.json @@ -214,10 +214,8 @@ "id": "(alice -> bob)[0]", "src": "alice", "srcArrow": "none", - "srcLabel": "", "dst": "bob", "dstArrow": "triangle", - "dstLabel": "", "opacity": 1, "strokeDash": 0, "strokeWidth": 2, @@ -254,10 +252,8 @@ "id": "(bob -> service)[0]", "src": "bob", "srcArrow": "none", - "srcLabel": "", "dst": "service", "dstArrow": "triangle", - "dstLabel": "", "opacity": 1, "strokeDash": 0, "strokeWidth": 2, @@ -294,10 +290,8 @@ "id": "(service -> db)[0]", "src": "service", "srcArrow": "none", - "srcLabel": "", "dst": "db", "dstArrow": "triangle", - "dstLabel": "", "opacity": 1, "strokeDash": 0, "strokeWidth": 2, @@ -334,10 +328,8 @@ "id": "(db -> service)[0]", "src": "db", "srcArrow": "none", - "srcLabel": "", "dst": "service", "dstArrow": "triangle", - "dstLabel": "", "opacity": 1, "strokeDash": 4, "strokeWidth": 2, @@ -374,10 +366,8 @@ "id": "(service -> bob)[0]", "src": "service", "srcArrow": "none", - "srcLabel": "", "dst": "bob", "dstArrow": "triangle", - "dstLabel": "", "opacity": 1, "strokeDash": 4, "strokeWidth": 2, @@ -414,10 +404,8 @@ "id": "(bob -> alice)[0]", "src": "bob", "srcArrow": "none", - "srcLabel": "", "dst": "alice", "dstArrow": "triangle", - "dstLabel": "", "opacity": 1, "strokeDash": 0, "strokeWidth": 2, @@ -454,10 +442,8 @@ "id": "(alice -> bob)[1]", "src": "alice", "srcArrow": "none", - "srcLabel": "", "dst": "bob", "dstArrow": "triangle", - "dstLabel": "", "opacity": 1, "strokeDash": 0, "strokeWidth": 2, @@ -494,10 +480,8 @@ "id": "(bob -> queue)[0]", "src": "bob", "srcArrow": "none", - "srcLabel": "", "dst": "queue", "dstArrow": "triangle", - "dstLabel": "", "opacity": 1, "strokeDash": 0, "strokeWidth": 2, @@ -534,10 +518,8 @@ "id": "(queue -> bob)[0]", "src": "queue", "srcArrow": "none", - "srcLabel": "", "dst": "bob", "dstArrow": "triangle", - "dstLabel": "", "opacity": 1, "strokeDash": 3, "strokeWidth": 5, @@ -574,10 +556,8 @@ "id": "(bob -> alice)[1]", "src": "bob", "srcArrow": "none", - "srcLabel": "", "dst": "alice", "dstArrow": "triangle", - "dstLabel": "", "opacity": 1, "strokeDash": 0, "strokeWidth": 2, @@ -614,10 +594,8 @@ "id": "(alice -- )[0]", "src": "alice", "srcArrow": "none", - "srcLabel": "", "dst": "alice-lifeline-end-3851299086", "dstArrow": "none", - "dstLabel": "", "opacity": 1, "strokeDash": 6, "strokeWidth": 2, @@ -654,10 +632,8 @@ "id": "(bob -- )[0]", "src": "bob", "srcArrow": "none", - "srcLabel": "", "dst": "bob-lifeline-end-3036726343", "dstArrow": "none", - "dstLabel": "", "opacity": 1, "strokeDash": 6, "strokeWidth": 2, @@ -694,10 +670,8 @@ "id": "(db -- )[0]", "src": "db", "srcArrow": "none", - "srcLabel": "", "dst": "db-lifeline-end-2675250554", "dstArrow": "none", - "dstLabel": "", "opacity": 1, "strokeDash": 6, "strokeWidth": 2, @@ -734,10 +708,8 @@ "id": "(queue -- )[0]", "src": "queue", "srcArrow": "none", - "srcLabel": "", "dst": "queue-lifeline-end-1097346683", "dstArrow": "none", - "dstLabel": "", "opacity": 1, "strokeDash": 6, "strokeWidth": 2, @@ -774,10 +746,8 @@ "id": "(service -- )[0]", "src": "service", "srcArrow": "none", - "srcLabel": "", "dst": "service-lifeline-end-22863415", "dstArrow": "none", - "dstLabel": "", "opacity": 1, "strokeDash": 6, "strokeWidth": 2, 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 959487ec13..a5159aded0 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-3847313062 .fill-N1{fill:#0A0F25;} + .d2-3847313062 .fill-N2{fill:#676C7E;} + .d2-3847313062 .fill-N3{fill:#9499AB;} + .d2-3847313062 .fill-N4{fill:#CFD2DD;} + .d2-3847313062 .fill-N5{fill:#DEE1EB;} + .d2-3847313062 .fill-N6{fill:#EEF1F8;} + .d2-3847313062 .fill-N7{fill:#FFFFFF;} + .d2-3847313062 .fill-B1{fill:#0D32B2;} + .d2-3847313062 .fill-B2{fill:#0D32B2;} + .d2-3847313062 .fill-B3{fill:#E3E9FD;} + .d2-3847313062 .fill-B4{fill:#E3E9FD;} + .d2-3847313062 .fill-B5{fill:#EDF0FD;} + .d2-3847313062 .fill-B6{fill:#F7F8FE;} + .d2-3847313062 .fill-AA2{fill:#4A6FF3;} + .d2-3847313062 .fill-AA4{fill:#EDF0FD;} + .d2-3847313062 .fill-AA5{fill:#F7F8FE;} + .d2-3847313062 .fill-AB4{fill:#EDF0FD;} + .d2-3847313062 .fill-AB5{fill:#F7F8FE;} + .d2-3847313062 .stroke-N1{stroke:#0A0F25;} + .d2-3847313062 .stroke-N2{stroke:#676C7E;} + .d2-3847313062 .stroke-N3{stroke:#9499AB;} + .d2-3847313062 .stroke-N4{stroke:#CFD2DD;} + .d2-3847313062 .stroke-N5{stroke:#DEE1EB;} + .d2-3847313062 .stroke-N6{stroke:#EEF1F8;} + .d2-3847313062 .stroke-N7{stroke:#FFFFFF;} + .d2-3847313062 .stroke-B1{stroke:#0D32B2;} + .d2-3847313062 .stroke-B2{stroke:#0D32B2;} + .d2-3847313062 .stroke-B3{stroke:#E3E9FD;} + .d2-3847313062 .stroke-B4{stroke:#E3E9FD;} + .d2-3847313062 .stroke-B5{stroke:#EDF0FD;} + .d2-3847313062 .stroke-B6{stroke:#F7F8FE;} + .d2-3847313062 .stroke-AA2{stroke:#4A6FF3;} + .d2-3847313062 .stroke-AA4{stroke:#EDF0FD;} + .d2-3847313062 .stroke-AA5{stroke:#F7F8FE;} + .d2-3847313062 .stroke-AB4{stroke:#EDF0FD;} + .d2-3847313062 .stroke-AB5{stroke:#F7F8FE;} + .d2-3847313062 .background-color-N1{background-color:#0A0F25;} + .d2-3847313062 .background-color-N2{background-color:#676C7E;} + .d2-3847313062 .background-color-N3{background-color:#9499AB;} + .d2-3847313062 .background-color-N4{background-color:#CFD2DD;} + .d2-3847313062 .background-color-N5{background-color:#DEE1EB;} + .d2-3847313062 .background-color-N6{background-color:#EEF1F8;} + .d2-3847313062 .background-color-N7{background-color:#FFFFFF;} + .d2-3847313062 .background-color-B1{background-color:#0D32B2;} + .d2-3847313062 .background-color-B2{background-color:#0D32B2;} + .d2-3847313062 .background-color-B3{background-color:#E3E9FD;} + .d2-3847313062 .background-color-B4{background-color:#E3E9FD;} + .d2-3847313062 .background-color-B5{background-color:#EDF0FD;} + .d2-3847313062 .background-color-B6{background-color:#F7F8FE;} + .d2-3847313062 .background-color-AA2{background-color:#4A6FF3;} + .d2-3847313062 .background-color-AA4{background-color:#EDF0FD;} + .d2-3847313062 .background-color-AA5{background-color:#F7F8FE;} + .d2-3847313062 .background-color-AB4{background-color:#EDF0FD;} + .d2-3847313062 .background-color-AB5{background-color:#F7F8FE;} + .d2-3847313062 .color-N1{color:#0A0F25;} + .d2-3847313062 .color-N2{color:#676C7E;} + .d2-3847313062 .color-N3{color:#9499AB;} + .d2-3847313062 .color-N4{color:#CFD2DD;} + .d2-3847313062 .color-N5{color:#DEE1EB;} + .d2-3847313062 .color-N6{color:#EEF1F8;} + .d2-3847313062 .color-N7{color:#FFFFFF;} + .d2-3847313062 .color-B1{color:#0D32B2;} + .d2-3847313062 .color-B2{color:#0D32B2;} + .d2-3847313062 .color-B3{color:#E3E9FD;} + .d2-3847313062 .color-B4{color:#E3E9FD;} + .d2-3847313062 .color-B5{color:#EDF0FD;} + .d2-3847313062 .color-B6{color:#F7F8FE;} + .d2-3847313062 .color-AA2{color:#4A6FF3;} + .d2-3847313062 .color-AA4{color:#EDF0FD;} + .d2-3847313062 .color-AA5{color:#F7F8FE;} + .d2-3847313062 .color-AB4{color:#EDF0FD;} + .d2-3847313062 .color-AB5{color:#F7F8FE;}.appendix text.text{fill:#0A0F25}.md{--color-fg-default:#0A0F25;--color-fg-muted:#676C7E;--color-fg-subtle:#9499AB;--color-canvas-default:#FFFFFF;--color-canvas-subtle:#EEF1F8;--color-border-default:#0D32B2;--color-border-muted:#0D32B2;--color-neutral-muted:#EEF1F8;--color-accent-fg:#0D32B2;--color-accent-emphasis:#0D32B2;--color-attention-subtle:#676C7E;--color-danger-fg:red;}.sketch-overlay-B1{fill:url(#streaks-darker);mix-blend-mode:lighten}.sketch-overlay-B2{fill:url(#streaks-darker);mix-blend-mode:lighten}.sketch-overlay-B3{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-B4{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-B5{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-B6{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-AA2{fill:url(#streaks-dark);mix-blend-mode:overlay}.sketch-overlay-AA4{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-AA5{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-AB4{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-AB5{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-N1{fill:url(#streaks-darker);mix-blend-mode:lighten}.sketch-overlay-N2{fill:url(#streaks-dark);mix-blend-mode:overlay}.sketch-overlay-N3{fill:url(#streaks-normal);mix-blend-mode:color-burn}.sketch-overlay-N4{fill:url(#streaks-normal);mix-blend-mode:color-burn}.sketch-overlay-N5{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-N6{fill:url(#streaks-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 b1f454427e..0585af062a 100644 --- a/e2etests/testdata/stable/sequence_diagram_simple/elk/board.exp.json +++ b/e2etests/testdata/stable/sequence_diagram_simple/elk/board.exp.json @@ -214,10 +214,8 @@ "id": "(alice -> bob)[0]", "src": "alice", "srcArrow": "none", - "srcLabel": "", "dst": "bob", "dstArrow": "triangle", - "dstLabel": "", "opacity": 1, "strokeDash": 0, "strokeWidth": 2, @@ -254,10 +252,8 @@ "id": "(bob -> service)[0]", "src": "bob", "srcArrow": "none", - "srcLabel": "", "dst": "service", "dstArrow": "triangle", - "dstLabel": "", "opacity": 1, "strokeDash": 0, "strokeWidth": 2, @@ -294,10 +290,8 @@ "id": "(service -> db)[0]", "src": "service", "srcArrow": "none", - "srcLabel": "", "dst": "db", "dstArrow": "triangle", - "dstLabel": "", "opacity": 1, "strokeDash": 0, "strokeWidth": 2, @@ -334,10 +328,8 @@ "id": "(db -> service)[0]", "src": "db", "srcArrow": "none", - "srcLabel": "", "dst": "service", "dstArrow": "triangle", - "dstLabel": "", "opacity": 1, "strokeDash": 4, "strokeWidth": 2, @@ -374,10 +366,8 @@ "id": "(service -> bob)[0]", "src": "service", "srcArrow": "none", - "srcLabel": "", "dst": "bob", "dstArrow": "triangle", - "dstLabel": "", "opacity": 1, "strokeDash": 4, "strokeWidth": 2, @@ -414,10 +404,8 @@ "id": "(bob -> alice)[0]", "src": "bob", "srcArrow": "none", - "srcLabel": "", "dst": "alice", "dstArrow": "triangle", - "dstLabel": "", "opacity": 1, "strokeDash": 0, "strokeWidth": 2, @@ -454,10 +442,8 @@ "id": "(alice -> bob)[1]", "src": "alice", "srcArrow": "none", - "srcLabel": "", "dst": "bob", "dstArrow": "triangle", - "dstLabel": "", "opacity": 1, "strokeDash": 0, "strokeWidth": 2, @@ -494,10 +480,8 @@ "id": "(bob -> queue)[0]", "src": "bob", "srcArrow": "none", - "srcLabel": "", "dst": "queue", "dstArrow": "triangle", - "dstLabel": "", "opacity": 1, "strokeDash": 0, "strokeWidth": 2, @@ -534,10 +518,8 @@ "id": "(queue -> bob)[0]", "src": "queue", "srcArrow": "none", - "srcLabel": "", "dst": "bob", "dstArrow": "triangle", - "dstLabel": "", "opacity": 1, "strokeDash": 3, "strokeWidth": 5, @@ -574,10 +556,8 @@ "id": "(bob -> alice)[1]", "src": "bob", "srcArrow": "none", - "srcLabel": "", "dst": "alice", "dstArrow": "triangle", - "dstLabel": "", "opacity": 1, "strokeDash": 0, "strokeWidth": 2, @@ -614,10 +594,8 @@ "id": "(alice -- )[0]", "src": "alice", "srcArrow": "none", - "srcLabel": "", "dst": "alice-lifeline-end-3851299086", "dstArrow": "none", - "dstLabel": "", "opacity": 1, "strokeDash": 6, "strokeWidth": 2, @@ -654,10 +632,8 @@ "id": "(bob -- )[0]", "src": "bob", "srcArrow": "none", - "srcLabel": "", "dst": "bob-lifeline-end-3036726343", "dstArrow": "none", - "dstLabel": "", "opacity": 1, "strokeDash": 6, "strokeWidth": 2, @@ -694,10 +670,8 @@ "id": "(db -- )[0]", "src": "db", "srcArrow": "none", - "srcLabel": "", "dst": "db-lifeline-end-2675250554", "dstArrow": "none", - "dstLabel": "", "opacity": 1, "strokeDash": 6, "strokeWidth": 2, @@ -734,10 +708,8 @@ "id": "(queue -- )[0]", "src": "queue", "srcArrow": "none", - "srcLabel": "", "dst": "queue-lifeline-end-1097346683", "dstArrow": "none", - "dstLabel": "", "opacity": 1, "strokeDash": 6, "strokeWidth": 2, @@ -774,10 +746,8 @@ "id": "(service -- )[0]", "src": "service", "srcArrow": "none", - "srcLabel": "", "dst": "service-lifeline-end-22863415", "dstArrow": "none", - "dstLabel": "", "opacity": 1, "strokeDash": 6, "strokeWidth": 2, 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 959487ec13..a5159aded0 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-3847313062 .fill-N1{fill:#0A0F25;} + .d2-3847313062 .fill-N2{fill:#676C7E;} + .d2-3847313062 .fill-N3{fill:#9499AB;} + .d2-3847313062 .fill-N4{fill:#CFD2DD;} + .d2-3847313062 .fill-N5{fill:#DEE1EB;} + .d2-3847313062 .fill-N6{fill:#EEF1F8;} + .d2-3847313062 .fill-N7{fill:#FFFFFF;} + .d2-3847313062 .fill-B1{fill:#0D32B2;} + .d2-3847313062 .fill-B2{fill:#0D32B2;} + .d2-3847313062 .fill-B3{fill:#E3E9FD;} + .d2-3847313062 .fill-B4{fill:#E3E9FD;} + .d2-3847313062 .fill-B5{fill:#EDF0FD;} + .d2-3847313062 .fill-B6{fill:#F7F8FE;} + .d2-3847313062 .fill-AA2{fill:#4A6FF3;} + .d2-3847313062 .fill-AA4{fill:#EDF0FD;} + .d2-3847313062 .fill-AA5{fill:#F7F8FE;} + .d2-3847313062 .fill-AB4{fill:#EDF0FD;} + .d2-3847313062 .fill-AB5{fill:#F7F8FE;} + .d2-3847313062 .stroke-N1{stroke:#0A0F25;} + .d2-3847313062 .stroke-N2{stroke:#676C7E;} + .d2-3847313062 .stroke-N3{stroke:#9499AB;} + .d2-3847313062 .stroke-N4{stroke:#CFD2DD;} + .d2-3847313062 .stroke-N5{stroke:#DEE1EB;} + .d2-3847313062 .stroke-N6{stroke:#EEF1F8;} + .d2-3847313062 .stroke-N7{stroke:#FFFFFF;} + .d2-3847313062 .stroke-B1{stroke:#0D32B2;} + .d2-3847313062 .stroke-B2{stroke:#0D32B2;} + .d2-3847313062 .stroke-B3{stroke:#E3E9FD;} + .d2-3847313062 .stroke-B4{stroke:#E3E9FD;} + .d2-3847313062 .stroke-B5{stroke:#EDF0FD;} + .d2-3847313062 .stroke-B6{stroke:#F7F8FE;} + .d2-3847313062 .stroke-AA2{stroke:#4A6FF3;} + .d2-3847313062 .stroke-AA4{stroke:#EDF0FD;} + .d2-3847313062 .stroke-AA5{stroke:#F7F8FE;} + .d2-3847313062 .stroke-AB4{stroke:#EDF0FD;} + .d2-3847313062 .stroke-AB5{stroke:#F7F8FE;} + .d2-3847313062 .background-color-N1{background-color:#0A0F25;} + .d2-3847313062 .background-color-N2{background-color:#676C7E;} + .d2-3847313062 .background-color-N3{background-color:#9499AB;} + .d2-3847313062 .background-color-N4{background-color:#CFD2DD;} + .d2-3847313062 .background-color-N5{background-color:#DEE1EB;} + .d2-3847313062 .background-color-N6{background-color:#EEF1F8;} + .d2-3847313062 .background-color-N7{background-color:#FFFFFF;} + .d2-3847313062 .background-color-B1{background-color:#0D32B2;} + .d2-3847313062 .background-color-B2{background-color:#0D32B2;} + .d2-3847313062 .background-color-B3{background-color:#E3E9FD;} + .d2-3847313062 .background-color-B4{background-color:#E3E9FD;} + .d2-3847313062 .background-color-B5{background-color:#EDF0FD;} + .d2-3847313062 .background-color-B6{background-color:#F7F8FE;} + .d2-3847313062 .background-color-AA2{background-color:#4A6FF3;} + .d2-3847313062 .background-color-AA4{background-color:#EDF0FD;} + .d2-3847313062 .background-color-AA5{background-color:#F7F8FE;} + .d2-3847313062 .background-color-AB4{background-color:#EDF0FD;} + .d2-3847313062 .background-color-AB5{background-color:#F7F8FE;} + .d2-3847313062 .color-N1{color:#0A0F25;} + .d2-3847313062 .color-N2{color:#676C7E;} + .d2-3847313062 .color-N3{color:#9499AB;} + .d2-3847313062 .color-N4{color:#CFD2DD;} + .d2-3847313062 .color-N5{color:#DEE1EB;} + .d2-3847313062 .color-N6{color:#EEF1F8;} + .d2-3847313062 .color-N7{color:#FFFFFF;} + .d2-3847313062 .color-B1{color:#0D32B2;} + .d2-3847313062 .color-B2{color:#0D32B2;} + .d2-3847313062 .color-B3{color:#E3E9FD;} + .d2-3847313062 .color-B4{color:#E3E9FD;} + .d2-3847313062 .color-B5{color:#EDF0FD;} + .d2-3847313062 .color-B6{color:#F7F8FE;} + .d2-3847313062 .color-AA2{color:#4A6FF3;} + .d2-3847313062 .color-AA4{color:#EDF0FD;} + .d2-3847313062 .color-AA5{color:#F7F8FE;} + .d2-3847313062 .color-AB4{color:#EDF0FD;} + .d2-3847313062 .color-AB5{color:#F7F8FE;}.appendix text.text{fill:#0A0F25}.md{--color-fg-default:#0A0F25;--color-fg-muted:#676C7E;--color-fg-subtle:#9499AB;--color-canvas-default:#FFFFFF;--color-canvas-subtle:#EEF1F8;--color-border-default:#0D32B2;--color-border-muted:#0D32B2;--color-neutral-muted:#EEF1F8;--color-accent-fg:#0D32B2;--color-accent-emphasis:#0D32B2;--color-attention-subtle:#676C7E;--color-danger-fg:red;}.sketch-overlay-B1{fill:url(#streaks-darker);mix-blend-mode:lighten}.sketch-overlay-B2{fill:url(#streaks-darker);mix-blend-mode:lighten}.sketch-overlay-B3{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-B4{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-B5{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-B6{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-AA2{fill:url(#streaks-dark);mix-blend-mode:overlay}.sketch-overlay-AA4{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-AA5{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-AB4{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-AB5{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-N1{fill:url(#streaks-darker);mix-blend-mode:lighten}.sketch-overlay-N2{fill:url(#streaks-dark);mix-blend-mode:overlay}.sketch-overlay-N3{fill:url(#streaks-normal);mix-blend-mode:color-burn}.sketch-overlay-N4{fill:url(#streaks-normal);mix-blend-mode:color-burn}.sketch-overlay-N5{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-N6{fill:url(#streaks-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 d1d6a08f98..dd70c5cfdb 100644 --- a/e2etests/testdata/stable/sequence_diagram_span/dagre/board.exp.json +++ b/e2etests/testdata/stable/sequence_diagram_span/dagre/board.exp.json @@ -695,10 +695,8 @@ "id": "(scorer.t -> itemResponse.t)[0]", "src": "scorer.t", "srcArrow": "none", - "srcLabel": "", "dst": "itemResponse.t", "dstArrow": "triangle", - "dstLabel": "", "opacity": 1, "strokeDash": 0, "strokeWidth": 2, @@ -735,10 +733,8 @@ "id": "(scorer.t <- itemResponse.t)[0]", "src": "scorer.t", "srcArrow": "triangle", - "srcLabel": "", "dst": "itemResponse.t", "dstArrow": "none", - "dstLabel": "", "opacity": 1, "strokeDash": 0, "strokeWidth": 2, @@ -775,10 +771,8 @@ "id": "(scorer.t -> item.t1)[0]", "src": "scorer.t", "srcArrow": "none", - "srcLabel": "", "dst": "item.t1", "dstArrow": "triangle", - "dstLabel": "", "opacity": 1, "strokeDash": 0, "strokeWidth": 2, @@ -815,10 +809,8 @@ "id": "(scorer.t <- item.t1)[0]", "src": "scorer.t", "srcArrow": "triangle", - "srcLabel": "", "dst": "item.t1", "dstArrow": "none", - "dstLabel": "", "opacity": 1, "strokeDash": 0, "strokeWidth": 2, @@ -855,10 +847,8 @@ "id": "(scorer.t -> essayRubric.t)[0]", "src": "scorer.t", "srcArrow": "none", - "srcLabel": "", "dst": "essayRubric.t", "dstArrow": "triangle", - "dstLabel": "", "opacity": 1, "strokeDash": 0, "strokeWidth": 2, @@ -895,10 +885,8 @@ "id": "(itemResponse -> essayRubric.t.c)[0]", "src": "itemResponse", "srcArrow": "none", - "srcLabel": "", "dst": "essayRubric.t.c", "dstArrow": "triangle", - "dstLabel": "", "opacity": 1, "strokeDash": 0, "strokeWidth": 2, @@ -935,10 +923,8 @@ "id": "(essayRubric.t.c -> concept.t)[0]", "src": "essayRubric.t.c", "srcArrow": "none", - "srcLabel": "", "dst": "concept.t", "dstArrow": "triangle", - "dstLabel": "", "opacity": 1, "strokeDash": 0, "strokeWidth": 2, @@ -975,10 +961,8 @@ "id": "(scorer <- essayRubric.t)[0]", "src": "scorer", "srcArrow": "triangle", - "srcLabel": "", "dst": "essayRubric.t", "dstArrow": "none", - "dstLabel": "", "opacity": 1, "strokeDash": 0, "strokeWidth": 2, @@ -1015,10 +999,8 @@ "id": "(scorer.t -> itemOutcome.t1)[0]", "src": "scorer.t", "srcArrow": "none", - "srcLabel": "", "dst": "itemOutcome.t1", "dstArrow": "triangle", - "dstLabel": "", "opacity": 1, "strokeDash": 0, "strokeWidth": 2, @@ -1055,10 +1037,8 @@ "id": "(scorer.t -> item.t2)[0]", "src": "scorer.t", "srcArrow": "none", - "srcLabel": "", "dst": "item.t2", "dstArrow": "triangle", - "dstLabel": "", "opacity": 1, "strokeDash": 0, "strokeWidth": 2, @@ -1095,10 +1075,8 @@ "id": "(scorer.t -> item.t3)[0]", "src": "scorer.t", "srcArrow": "none", - "srcLabel": "", "dst": "item.t3", "dstArrow": "triangle", - "dstLabel": "", "opacity": 1, "strokeDash": 0, "strokeWidth": 2, @@ -1135,10 +1113,8 @@ "id": "(scorer.t -> itemOutcome.t2)[0]", "src": "scorer.t", "srcArrow": "none", - "srcLabel": "", "dst": "itemOutcome.t2", "dstArrow": "triangle", - "dstLabel": "", "opacity": 1, "strokeDash": 0, "strokeWidth": 2, @@ -1175,10 +1151,8 @@ "id": "(scorer.t -> itemOutcome.t3)[0]", "src": "scorer.t", "srcArrow": "none", - "srcLabel": "", "dst": "itemOutcome.t3", "dstArrow": "triangle", - "dstLabel": "", "opacity": 1, "strokeDash": 0, "strokeWidth": 2, @@ -1215,10 +1189,8 @@ "id": "(scorer -- )[0]", "src": "scorer", "srcArrow": "none", - "srcLabel": "", "dst": "scorer-lifeline-end-3390057676", "dstArrow": "none", - "dstLabel": "", "opacity": 1, "strokeDash": 6, "strokeWidth": 2, @@ -1255,10 +1227,8 @@ "id": "(itemResponse -- )[0]", "src": "itemResponse", "srcArrow": "none", - "srcLabel": "", "dst": "itemResponse-lifeline-end-3886259856", "dstArrow": "none", - "dstLabel": "", "opacity": 1, "strokeDash": 6, "strokeWidth": 2, @@ -1295,10 +1265,8 @@ "id": "(item -- )[0]", "src": "item", "srcArrow": "none", - "srcLabel": "", "dst": "item-lifeline-end-4102336625", "dstArrow": "none", - "dstLabel": "", "opacity": 1, "strokeDash": 6, "strokeWidth": 2, @@ -1335,10 +1303,8 @@ "id": "(essayRubric -- )[0]", "src": "essayRubric", "srcArrow": "none", - "srcLabel": "", "dst": "essayRubric-lifeline-end-1632038932", "dstArrow": "none", - "dstLabel": "", "opacity": 1, "strokeDash": 6, "strokeWidth": 2, @@ -1375,10 +1341,8 @@ "id": "(concept -- )[0]", "src": "concept", "srcArrow": "none", - "srcLabel": "", "dst": "concept-lifeline-end-1391711018", "dstArrow": "none", - "dstLabel": "", "opacity": 1, "strokeDash": 6, "strokeWidth": 2, @@ -1415,10 +1379,8 @@ "id": "(itemOutcome -- )[0]", "src": "itemOutcome", "srcArrow": "none", - "srcLabel": "", "dst": "itemOutcome-lifeline-end-3921917181", "dstArrow": "none", - "dstLabel": "", "opacity": 1, "strokeDash": 6, "strokeWidth": 2, 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 674b89e8d8..249c8b8f33 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-1507370184 .fill-N1{fill:#0A0F25;} + .d2-1507370184 .fill-N2{fill:#676C7E;} + .d2-1507370184 .fill-N3{fill:#9499AB;} + .d2-1507370184 .fill-N4{fill:#CFD2DD;} + .d2-1507370184 .fill-N5{fill:#DEE1EB;} + .d2-1507370184 .fill-N6{fill:#EEF1F8;} + .d2-1507370184 .fill-N7{fill:#FFFFFF;} + .d2-1507370184 .fill-B1{fill:#0D32B2;} + .d2-1507370184 .fill-B2{fill:#0D32B2;} + .d2-1507370184 .fill-B3{fill:#E3E9FD;} + .d2-1507370184 .fill-B4{fill:#E3E9FD;} + .d2-1507370184 .fill-B5{fill:#EDF0FD;} + .d2-1507370184 .fill-B6{fill:#F7F8FE;} + .d2-1507370184 .fill-AA2{fill:#4A6FF3;} + .d2-1507370184 .fill-AA4{fill:#EDF0FD;} + .d2-1507370184 .fill-AA5{fill:#F7F8FE;} + .d2-1507370184 .fill-AB4{fill:#EDF0FD;} + .d2-1507370184 .fill-AB5{fill:#F7F8FE;} + .d2-1507370184 .stroke-N1{stroke:#0A0F25;} + .d2-1507370184 .stroke-N2{stroke:#676C7E;} + .d2-1507370184 .stroke-N3{stroke:#9499AB;} + .d2-1507370184 .stroke-N4{stroke:#CFD2DD;} + .d2-1507370184 .stroke-N5{stroke:#DEE1EB;} + .d2-1507370184 .stroke-N6{stroke:#EEF1F8;} + .d2-1507370184 .stroke-N7{stroke:#FFFFFF;} + .d2-1507370184 .stroke-B1{stroke:#0D32B2;} + .d2-1507370184 .stroke-B2{stroke:#0D32B2;} + .d2-1507370184 .stroke-B3{stroke:#E3E9FD;} + .d2-1507370184 .stroke-B4{stroke:#E3E9FD;} + .d2-1507370184 .stroke-B5{stroke:#EDF0FD;} + .d2-1507370184 .stroke-B6{stroke:#F7F8FE;} + .d2-1507370184 .stroke-AA2{stroke:#4A6FF3;} + .d2-1507370184 .stroke-AA4{stroke:#EDF0FD;} + .d2-1507370184 .stroke-AA5{stroke:#F7F8FE;} + .d2-1507370184 .stroke-AB4{stroke:#EDF0FD;} + .d2-1507370184 .stroke-AB5{stroke:#F7F8FE;} + .d2-1507370184 .background-color-N1{background-color:#0A0F25;} + .d2-1507370184 .background-color-N2{background-color:#676C7E;} + .d2-1507370184 .background-color-N3{background-color:#9499AB;} + .d2-1507370184 .background-color-N4{background-color:#CFD2DD;} + .d2-1507370184 .background-color-N5{background-color:#DEE1EB;} + .d2-1507370184 .background-color-N6{background-color:#EEF1F8;} + .d2-1507370184 .background-color-N7{background-color:#FFFFFF;} + .d2-1507370184 .background-color-B1{background-color:#0D32B2;} + .d2-1507370184 .background-color-B2{background-color:#0D32B2;} + .d2-1507370184 .background-color-B3{background-color:#E3E9FD;} + .d2-1507370184 .background-color-B4{background-color:#E3E9FD;} + .d2-1507370184 .background-color-B5{background-color:#EDF0FD;} + .d2-1507370184 .background-color-B6{background-color:#F7F8FE;} + .d2-1507370184 .background-color-AA2{background-color:#4A6FF3;} + .d2-1507370184 .background-color-AA4{background-color:#EDF0FD;} + .d2-1507370184 .background-color-AA5{background-color:#F7F8FE;} + .d2-1507370184 .background-color-AB4{background-color:#EDF0FD;} + .d2-1507370184 .background-color-AB5{background-color:#F7F8FE;} + .d2-1507370184 .color-N1{color:#0A0F25;} + .d2-1507370184 .color-N2{color:#676C7E;} + .d2-1507370184 .color-N3{color:#9499AB;} + .d2-1507370184 .color-N4{color:#CFD2DD;} + .d2-1507370184 .color-N5{color:#DEE1EB;} + .d2-1507370184 .color-N6{color:#EEF1F8;} + .d2-1507370184 .color-N7{color:#FFFFFF;} + .d2-1507370184 .color-B1{color:#0D32B2;} + .d2-1507370184 .color-B2{color:#0D32B2;} + .d2-1507370184 .color-B3{color:#E3E9FD;} + .d2-1507370184 .color-B4{color:#E3E9FD;} + .d2-1507370184 .color-B5{color:#EDF0FD;} + .d2-1507370184 .color-B6{color:#F7F8FE;} + .d2-1507370184 .color-AA2{color:#4A6FF3;} + .d2-1507370184 .color-AA4{color:#EDF0FD;} + .d2-1507370184 .color-AA5{color:#F7F8FE;} + .d2-1507370184 .color-AB4{color:#EDF0FD;} + .d2-1507370184 .color-AB5{color:#F7F8FE;}.appendix text.text{fill:#0A0F25}.md{--color-fg-default:#0A0F25;--color-fg-muted:#676C7E;--color-fg-subtle:#9499AB;--color-canvas-default:#FFFFFF;--color-canvas-subtle:#EEF1F8;--color-border-default:#0D32B2;--color-border-muted:#0D32B2;--color-neutral-muted:#EEF1F8;--color-accent-fg:#0D32B2;--color-accent-emphasis:#0D32B2;--color-attention-subtle:#676C7E;--color-danger-fg:red;}.sketch-overlay-B1{fill:url(#streaks-darker);mix-blend-mode:lighten}.sketch-overlay-B2{fill:url(#streaks-darker);mix-blend-mode:lighten}.sketch-overlay-B3{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-B4{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-B5{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-B6{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-AA2{fill:url(#streaks-dark);mix-blend-mode:overlay}.sketch-overlay-AA4{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-AA5{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-AB4{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-AB5{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-N1{fill:url(#streaks-darker);mix-blend-mode:lighten}.sketch-overlay-N2{fill:url(#streaks-dark);mix-blend-mode:overlay}.sketch-overlay-N3{fill:url(#streaks-normal);mix-blend-mode:color-burn}.sketch-overlay-N4{fill:url(#streaks-normal);mix-blend-mode:color-burn}.sketch-overlay-N5{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-N6{fill:url(#streaks-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 d1d6a08f98..dd70c5cfdb 100644 --- a/e2etests/testdata/stable/sequence_diagram_span/elk/board.exp.json +++ b/e2etests/testdata/stable/sequence_diagram_span/elk/board.exp.json @@ -695,10 +695,8 @@ "id": "(scorer.t -> itemResponse.t)[0]", "src": "scorer.t", "srcArrow": "none", - "srcLabel": "", "dst": "itemResponse.t", "dstArrow": "triangle", - "dstLabel": "", "opacity": 1, "strokeDash": 0, "strokeWidth": 2, @@ -735,10 +733,8 @@ "id": "(scorer.t <- itemResponse.t)[0]", "src": "scorer.t", "srcArrow": "triangle", - "srcLabel": "", "dst": "itemResponse.t", "dstArrow": "none", - "dstLabel": "", "opacity": 1, "strokeDash": 0, "strokeWidth": 2, @@ -775,10 +771,8 @@ "id": "(scorer.t -> item.t1)[0]", "src": "scorer.t", "srcArrow": "none", - "srcLabel": "", "dst": "item.t1", "dstArrow": "triangle", - "dstLabel": "", "opacity": 1, "strokeDash": 0, "strokeWidth": 2, @@ -815,10 +809,8 @@ "id": "(scorer.t <- item.t1)[0]", "src": "scorer.t", "srcArrow": "triangle", - "srcLabel": "", "dst": "item.t1", "dstArrow": "none", - "dstLabel": "", "opacity": 1, "strokeDash": 0, "strokeWidth": 2, @@ -855,10 +847,8 @@ "id": "(scorer.t -> essayRubric.t)[0]", "src": "scorer.t", "srcArrow": "none", - "srcLabel": "", "dst": "essayRubric.t", "dstArrow": "triangle", - "dstLabel": "", "opacity": 1, "strokeDash": 0, "strokeWidth": 2, @@ -895,10 +885,8 @@ "id": "(itemResponse -> essayRubric.t.c)[0]", "src": "itemResponse", "srcArrow": "none", - "srcLabel": "", "dst": "essayRubric.t.c", "dstArrow": "triangle", - "dstLabel": "", "opacity": 1, "strokeDash": 0, "strokeWidth": 2, @@ -935,10 +923,8 @@ "id": "(essayRubric.t.c -> concept.t)[0]", "src": "essayRubric.t.c", "srcArrow": "none", - "srcLabel": "", "dst": "concept.t", "dstArrow": "triangle", - "dstLabel": "", "opacity": 1, "strokeDash": 0, "strokeWidth": 2, @@ -975,10 +961,8 @@ "id": "(scorer <- essayRubric.t)[0]", "src": "scorer", "srcArrow": "triangle", - "srcLabel": "", "dst": "essayRubric.t", "dstArrow": "none", - "dstLabel": "", "opacity": 1, "strokeDash": 0, "strokeWidth": 2, @@ -1015,10 +999,8 @@ "id": "(scorer.t -> itemOutcome.t1)[0]", "src": "scorer.t", "srcArrow": "none", - "srcLabel": "", "dst": "itemOutcome.t1", "dstArrow": "triangle", - "dstLabel": "", "opacity": 1, "strokeDash": 0, "strokeWidth": 2, @@ -1055,10 +1037,8 @@ "id": "(scorer.t -> item.t2)[0]", "src": "scorer.t", "srcArrow": "none", - "srcLabel": "", "dst": "item.t2", "dstArrow": "triangle", - "dstLabel": "", "opacity": 1, "strokeDash": 0, "strokeWidth": 2, @@ -1095,10 +1075,8 @@ "id": "(scorer.t -> item.t3)[0]", "src": "scorer.t", "srcArrow": "none", - "srcLabel": "", "dst": "item.t3", "dstArrow": "triangle", - "dstLabel": "", "opacity": 1, "strokeDash": 0, "strokeWidth": 2, @@ -1135,10 +1113,8 @@ "id": "(scorer.t -> itemOutcome.t2)[0]", "src": "scorer.t", "srcArrow": "none", - "srcLabel": "", "dst": "itemOutcome.t2", "dstArrow": "triangle", - "dstLabel": "", "opacity": 1, "strokeDash": 0, "strokeWidth": 2, @@ -1175,10 +1151,8 @@ "id": "(scorer.t -> itemOutcome.t3)[0]", "src": "scorer.t", "srcArrow": "none", - "srcLabel": "", "dst": "itemOutcome.t3", "dstArrow": "triangle", - "dstLabel": "", "opacity": 1, "strokeDash": 0, "strokeWidth": 2, @@ -1215,10 +1189,8 @@ "id": "(scorer -- )[0]", "src": "scorer", "srcArrow": "none", - "srcLabel": "", "dst": "scorer-lifeline-end-3390057676", "dstArrow": "none", - "dstLabel": "", "opacity": 1, "strokeDash": 6, "strokeWidth": 2, @@ -1255,10 +1227,8 @@ "id": "(itemResponse -- )[0]", "src": "itemResponse", "srcArrow": "none", - "srcLabel": "", "dst": "itemResponse-lifeline-end-3886259856", "dstArrow": "none", - "dstLabel": "", "opacity": 1, "strokeDash": 6, "strokeWidth": 2, @@ -1295,10 +1265,8 @@ "id": "(item -- )[0]", "src": "item", "srcArrow": "none", - "srcLabel": "", "dst": "item-lifeline-end-4102336625", "dstArrow": "none", - "dstLabel": "", "opacity": 1, "strokeDash": 6, "strokeWidth": 2, @@ -1335,10 +1303,8 @@ "id": "(essayRubric -- )[0]", "src": "essayRubric", "srcArrow": "none", - "srcLabel": "", "dst": "essayRubric-lifeline-end-1632038932", "dstArrow": "none", - "dstLabel": "", "opacity": 1, "strokeDash": 6, "strokeWidth": 2, @@ -1375,10 +1341,8 @@ "id": "(concept -- )[0]", "src": "concept", "srcArrow": "none", - "srcLabel": "", "dst": "concept-lifeline-end-1391711018", "dstArrow": "none", - "dstLabel": "", "opacity": 1, "strokeDash": 6, "strokeWidth": 2, @@ -1415,10 +1379,8 @@ "id": "(itemOutcome -- )[0]", "src": "itemOutcome", "srcArrow": "none", - "srcLabel": "", "dst": "itemOutcome-lifeline-end-3921917181", "dstArrow": "none", - "dstLabel": "", "opacity": 1, "strokeDash": 6, "strokeWidth": 2, 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 674b89e8d8..249c8b8f33 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-1507370184 .fill-N1{fill:#0A0F25;} + .d2-1507370184 .fill-N2{fill:#676C7E;} + .d2-1507370184 .fill-N3{fill:#9499AB;} + .d2-1507370184 .fill-N4{fill:#CFD2DD;} + .d2-1507370184 .fill-N5{fill:#DEE1EB;} + .d2-1507370184 .fill-N6{fill:#EEF1F8;} + .d2-1507370184 .fill-N7{fill:#FFFFFF;} + .d2-1507370184 .fill-B1{fill:#0D32B2;} + .d2-1507370184 .fill-B2{fill:#0D32B2;} + .d2-1507370184 .fill-B3{fill:#E3E9FD;} + .d2-1507370184 .fill-B4{fill:#E3E9FD;} + .d2-1507370184 .fill-B5{fill:#EDF0FD;} + .d2-1507370184 .fill-B6{fill:#F7F8FE;} + .d2-1507370184 .fill-AA2{fill:#4A6FF3;} + .d2-1507370184 .fill-AA4{fill:#EDF0FD;} + .d2-1507370184 .fill-AA5{fill:#F7F8FE;} + .d2-1507370184 .fill-AB4{fill:#EDF0FD;} + .d2-1507370184 .fill-AB5{fill:#F7F8FE;} + .d2-1507370184 .stroke-N1{stroke:#0A0F25;} + .d2-1507370184 .stroke-N2{stroke:#676C7E;} + .d2-1507370184 .stroke-N3{stroke:#9499AB;} + .d2-1507370184 .stroke-N4{stroke:#CFD2DD;} + .d2-1507370184 .stroke-N5{stroke:#DEE1EB;} + .d2-1507370184 .stroke-N6{stroke:#EEF1F8;} + .d2-1507370184 .stroke-N7{stroke:#FFFFFF;} + .d2-1507370184 .stroke-B1{stroke:#0D32B2;} + .d2-1507370184 .stroke-B2{stroke:#0D32B2;} + .d2-1507370184 .stroke-B3{stroke:#E3E9FD;} + .d2-1507370184 .stroke-B4{stroke:#E3E9FD;} + .d2-1507370184 .stroke-B5{stroke:#EDF0FD;} + .d2-1507370184 .stroke-B6{stroke:#F7F8FE;} + .d2-1507370184 .stroke-AA2{stroke:#4A6FF3;} + .d2-1507370184 .stroke-AA4{stroke:#EDF0FD;} + .d2-1507370184 .stroke-AA5{stroke:#F7F8FE;} + .d2-1507370184 .stroke-AB4{stroke:#EDF0FD;} + .d2-1507370184 .stroke-AB5{stroke:#F7F8FE;} + .d2-1507370184 .background-color-N1{background-color:#0A0F25;} + .d2-1507370184 .background-color-N2{background-color:#676C7E;} + .d2-1507370184 .background-color-N3{background-color:#9499AB;} + .d2-1507370184 .background-color-N4{background-color:#CFD2DD;} + .d2-1507370184 .background-color-N5{background-color:#DEE1EB;} + .d2-1507370184 .background-color-N6{background-color:#EEF1F8;} + .d2-1507370184 .background-color-N7{background-color:#FFFFFF;} + .d2-1507370184 .background-color-B1{background-color:#0D32B2;} + .d2-1507370184 .background-color-B2{background-color:#0D32B2;} + .d2-1507370184 .background-color-B3{background-color:#E3E9FD;} + .d2-1507370184 .background-color-B4{background-color:#E3E9FD;} + .d2-1507370184 .background-color-B5{background-color:#EDF0FD;} + .d2-1507370184 .background-color-B6{background-color:#F7F8FE;} + .d2-1507370184 .background-color-AA2{background-color:#4A6FF3;} + .d2-1507370184 .background-color-AA4{background-color:#EDF0FD;} + .d2-1507370184 .background-color-AA5{background-color:#F7F8FE;} + .d2-1507370184 .background-color-AB4{background-color:#EDF0FD;} + .d2-1507370184 .background-color-AB5{background-color:#F7F8FE;} + .d2-1507370184 .color-N1{color:#0A0F25;} + .d2-1507370184 .color-N2{color:#676C7E;} + .d2-1507370184 .color-N3{color:#9499AB;} + .d2-1507370184 .color-N4{color:#CFD2DD;} + .d2-1507370184 .color-N5{color:#DEE1EB;} + .d2-1507370184 .color-N6{color:#EEF1F8;} + .d2-1507370184 .color-N7{color:#FFFFFF;} + .d2-1507370184 .color-B1{color:#0D32B2;} + .d2-1507370184 .color-B2{color:#0D32B2;} + .d2-1507370184 .color-B3{color:#E3E9FD;} + .d2-1507370184 .color-B4{color:#E3E9FD;} + .d2-1507370184 .color-B5{color:#EDF0FD;} + .d2-1507370184 .color-B6{color:#F7F8FE;} + .d2-1507370184 .color-AA2{color:#4A6FF3;} + .d2-1507370184 .color-AA4{color:#EDF0FD;} + .d2-1507370184 .color-AA5{color:#F7F8FE;} + .d2-1507370184 .color-AB4{color:#EDF0FD;} + .d2-1507370184 .color-AB5{color:#F7F8FE;}.appendix text.text{fill:#0A0F25}.md{--color-fg-default:#0A0F25;--color-fg-muted:#676C7E;--color-fg-subtle:#9499AB;--color-canvas-default:#FFFFFF;--color-canvas-subtle:#EEF1F8;--color-border-default:#0D32B2;--color-border-muted:#0D32B2;--color-neutral-muted:#EEF1F8;--color-accent-fg:#0D32B2;--color-accent-emphasis:#0D32B2;--color-attention-subtle:#676C7E;--color-danger-fg:red;}.sketch-overlay-B1{fill:url(#streaks-darker);mix-blend-mode:lighten}.sketch-overlay-B2{fill:url(#streaks-darker);mix-blend-mode:lighten}.sketch-overlay-B3{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-B4{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-B5{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-B6{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-AA2{fill:url(#streaks-dark);mix-blend-mode:overlay}.sketch-overlay-AA4{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-AA5{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-AB4{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-AB5{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-N1{fill:url(#streaks-darker);mix-blend-mode:lighten}.sketch-overlay-N2{fill:url(#streaks-dark);mix-blend-mode:overlay}.sketch-overlay-N3{fill:url(#streaks-normal);mix-blend-mode:color-burn}.sketch-overlay-N4{fill:url(#streaks-normal);mix-blend-mode:color-burn}.sketch-overlay-N5{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-N6{fill:url(#streaks-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 c51806b426..dfb222fada 100644 --- a/e2etests/testdata/stable/sequence_diagrams/dagre/board.exp.json +++ b/e2etests/testdata/stable/sequence_diagrams/dagre/board.exp.json @@ -2594,10 +2594,8 @@ "id": "a_sequence.(scorer.t -> itemResponse.t)[0]", "src": "a_sequence.scorer.t", "srcArrow": "none", - "srcLabel": "", "dst": "a_sequence.itemResponse.t", "dstArrow": "triangle", - "dstLabel": "", "opacity": 1, "strokeDash": 0, "strokeWidth": 2, @@ -2634,10 +2632,8 @@ "id": "a_sequence.(scorer.t <- itemResponse.t)[0]", "src": "a_sequence.scorer.t", "srcArrow": "triangle", - "srcLabel": "", "dst": "a_sequence.itemResponse.t", "dstArrow": "none", - "dstLabel": "", "opacity": 1, "strokeDash": 0, "strokeWidth": 2, @@ -2674,10 +2670,8 @@ "id": "a_sequence.(scorer.t -> item.t1)[0]", "src": "a_sequence.scorer.t", "srcArrow": "none", - "srcLabel": "", "dst": "a_sequence.item.t1", "dstArrow": "triangle", - "dstLabel": "", "opacity": 1, "strokeDash": 0, "strokeWidth": 2, @@ -2714,10 +2708,8 @@ "id": "a_sequence.(scorer.t <- item.t1)[0]", "src": "a_sequence.scorer.t", "srcArrow": "triangle", - "srcLabel": "", "dst": "a_sequence.item.t1", "dstArrow": "none", - "dstLabel": "", "opacity": 1, "strokeDash": 0, "strokeWidth": 2, @@ -2754,10 +2746,8 @@ "id": "a_sequence.(scorer.t -> essayRubric.t)[0]", "src": "a_sequence.scorer.t", "srcArrow": "none", - "srcLabel": "", "dst": "a_sequence.essayRubric.t", "dstArrow": "triangle", - "dstLabel": "", "opacity": 1, "strokeDash": 0, "strokeWidth": 2, @@ -2794,10 +2784,8 @@ "id": "a_sequence.(itemResponse -> essayRubric.t.c)[0]", "src": "a_sequence.itemResponse", "srcArrow": "none", - "srcLabel": "", "dst": "a_sequence.essayRubric.t.c", "dstArrow": "triangle", - "dstLabel": "", "opacity": 1, "strokeDash": 0, "strokeWidth": 2, @@ -2834,10 +2822,8 @@ "id": "a_sequence.(essayRubric.t.c -> concept.t)[0]", "src": "a_sequence.essayRubric.t.c", "srcArrow": "none", - "srcLabel": "", "dst": "a_sequence.concept.t", "dstArrow": "triangle", - "dstLabel": "", "opacity": 1, "strokeDash": 0, "strokeWidth": 2, @@ -2874,10 +2860,8 @@ "id": "a_sequence.(scorer <- essayRubric.t)[0]", "src": "a_sequence.scorer", "srcArrow": "triangle", - "srcLabel": "", "dst": "a_sequence.essayRubric.t", "dstArrow": "none", - "dstLabel": "", "opacity": 1, "strokeDash": 0, "strokeWidth": 2, @@ -2914,10 +2898,8 @@ "id": "a_sequence.(scorer.t <-> itemOutcome.t1)[0]", "src": "a_sequence.scorer.t", "srcArrow": "triangle", - "srcLabel": "", "dst": "a_sequence.itemOutcome.t1", "dstArrow": "triangle", - "dstLabel": "", "opacity": 1, "strokeDash": 0, "strokeWidth": 2, @@ -2954,10 +2936,8 @@ "id": "a_sequence.(scorer.t <-> item.t2)[0]", "src": "a_sequence.scorer.t", "srcArrow": "triangle", - "srcLabel": "", "dst": "a_sequence.item.t2", "dstArrow": "triangle", - "dstLabel": "", "opacity": 1, "strokeDash": 0, "strokeWidth": 2, @@ -2994,10 +2974,8 @@ "id": "a_sequence.(scorer.t -> item.t3)[0]", "src": "a_sequence.scorer.t", "srcArrow": "none", - "srcLabel": "", "dst": "a_sequence.item.t3", "dstArrow": "triangle", - "dstLabel": "", "opacity": 1, "strokeDash": 0, "strokeWidth": 2, @@ -3034,10 +3012,8 @@ "id": "a_sequence.(scorer.t -- itemOutcome.t2)[0]", "src": "a_sequence.scorer.t", "srcArrow": "none", - "srcLabel": "", "dst": "a_sequence.itemOutcome.t2", "dstArrow": "none", - "dstLabel": "", "opacity": 1, "strokeDash": 0, "strokeWidth": 2, @@ -3074,10 +3050,8 @@ "id": "a_sequence.(scorer.t -- itemOutcome.t3)[0]", "src": "a_sequence.scorer.t", "srcArrow": "none", - "srcLabel": "", "dst": "a_sequence.itemOutcome.t3", "dstArrow": "none", - "dstLabel": "", "opacity": 1, "strokeDash": 0, "strokeWidth": 2, @@ -3114,10 +3088,8 @@ "id": "another.sequence.(scorer.t -> itemResponse.t)[0]", "src": "another.sequence.scorer.t", "srcArrow": "none", - "srcLabel": "", "dst": "another.sequence.itemResponse.t", "dstArrow": "triangle", - "dstLabel": "", "opacity": 1, "strokeDash": 0, "strokeWidth": 2, @@ -3154,10 +3126,8 @@ "id": "another.sequence.(scorer.t <- itemResponse.t)[0]", "src": "another.sequence.scorer.t", "srcArrow": "triangle", - "srcLabel": "", "dst": "another.sequence.itemResponse.t", "dstArrow": "none", - "dstLabel": "", "opacity": 1, "strokeDash": 0, "strokeWidth": 2, @@ -3194,10 +3164,8 @@ "id": "another.sequence.(scorer.t -> item.t1)[0]", "src": "another.sequence.scorer.t", "srcArrow": "none", - "srcLabel": "", "dst": "another.sequence.item.t1", "dstArrow": "triangle", - "dstLabel": "", "opacity": 1, "strokeDash": 0, "strokeWidth": 2, @@ -3234,10 +3202,8 @@ "id": "another.sequence.(scorer.t <- item.t1)[0]", "src": "another.sequence.scorer.t", "srcArrow": "triangle", - "srcLabel": "", "dst": "another.sequence.item.t1", "dstArrow": "none", - "dstLabel": "", "opacity": 1, "strokeDash": 0, "strokeWidth": 2, @@ -3274,10 +3240,8 @@ "id": "another.sequence.(scorer.t -> essayRubric.t)[0]", "src": "another.sequence.scorer.t", "srcArrow": "none", - "srcLabel": "", "dst": "another.sequence.essayRubric.t", "dstArrow": "triangle", - "dstLabel": "", "opacity": 1, "strokeDash": 0, "strokeWidth": 2, @@ -3314,10 +3278,8 @@ "id": "another.sequence.(itemResponse -> essayRubric.t.c)[0]", "src": "another.sequence.itemResponse", "srcArrow": "none", - "srcLabel": "", "dst": "another.sequence.essayRubric.t.c", "dstArrow": "triangle", - "dstLabel": "", "opacity": 1, "strokeDash": 0, "strokeWidth": 2, @@ -3354,10 +3316,8 @@ "id": "another.sequence.(essayRubric.t.c -> concept.t)[0]", "src": "another.sequence.essayRubric.t.c", "srcArrow": "none", - "srcLabel": "", "dst": "another.sequence.concept.t", "dstArrow": "triangle", - "dstLabel": "", "opacity": 1, "strokeDash": 0, "strokeWidth": 2, @@ -3394,10 +3354,8 @@ "id": "another.sequence.(scorer <- essayRubric.t)[0]", "src": "another.sequence.scorer", "srcArrow": "triangle", - "srcLabel": "", "dst": "another.sequence.essayRubric.t", "dstArrow": "none", - "dstLabel": "", "opacity": 1, "strokeDash": 0, "strokeWidth": 2, @@ -3434,10 +3392,8 @@ "id": "another.sequence.(scorer.t -> itemOutcome.t1)[0]", "src": "another.sequence.scorer.t", "srcArrow": "none", - "srcLabel": "", "dst": "another.sequence.itemOutcome.t1", "dstArrow": "triangle", - "dstLabel": "", "opacity": 1, "strokeDash": 0, "strokeWidth": 2, @@ -3474,10 +3430,8 @@ "id": "another.sequence.(scorer.t <-> item.t2)[0]", "src": "another.sequence.scorer.t", "srcArrow": "triangle", - "srcLabel": "", "dst": "another.sequence.item.t2", "dstArrow": "triangle", - "dstLabel": "", "opacity": 1, "strokeDash": 0, "strokeWidth": 2, @@ -3514,10 +3468,8 @@ "id": "another.sequence.(scorer.t -> item.t3)[0]", "src": "another.sequence.scorer.t", "srcArrow": "none", - "srcLabel": "", "dst": "another.sequence.item.t3", "dstArrow": "triangle", - "dstLabel": "", "opacity": 1, "strokeDash": 0, "strokeWidth": 2, @@ -3554,10 +3506,8 @@ "id": "another.sequence.(scorer.t -> itemOutcome.t2)[0]", "src": "another.sequence.scorer.t", "srcArrow": "none", - "srcLabel": "", "dst": "another.sequence.itemOutcome.t2", "dstArrow": "triangle", - "dstLabel": "", "opacity": 1, "strokeDash": 0, "strokeWidth": 2, @@ -3594,10 +3544,8 @@ "id": "another.sequence.(scorer.t -> itemOutcome.t3)[0]", "src": "another.sequence.scorer.t", "srcArrow": "none", - "srcLabel": "", "dst": "another.sequence.itemOutcome.t3", "dstArrow": "triangle", - "dstLabel": "", "opacity": 1, "strokeDash": 0, "strokeWidth": 2, @@ -3634,10 +3582,8 @@ "id": "(a_shape -> a_sequence)[0]", "src": "a_shape", "srcArrow": "none", - "srcLabel": "", "dst": "a_sequence", "dstArrow": "triangle", - "dstLabel": "", "opacity": 1, "strokeDash": 0, "strokeWidth": 2, @@ -3683,10 +3629,8 @@ "id": "(a_shape -> another.sequence)[0]", "src": "a_shape", "srcArrow": "none", - "srcLabel": "", "dst": "another.sequence", "dstArrow": "triangle", - "dstLabel": "", "opacity": 1, "strokeDash": 0, "strokeWidth": 2, @@ -3732,10 +3676,8 @@ "id": "(a_sequence -> sequence)[0]", "src": "a_sequence", "srcArrow": "none", - "srcLabel": "", "dst": "sequence", "dstArrow": "triangle", - "dstLabel": "", "opacity": 1, "strokeDash": 0, "strokeWidth": 2, @@ -3793,10 +3735,8 @@ "id": "(another.sequence <-> finally.sequence)[0]", "src": "another.sequence", "srcArrow": "triangle", - "srcLabel": "", "dst": "finally.sequence", "dstArrow": "triangle", - "dstLabel": "", "opacity": 1, "strokeDash": 0, "strokeWidth": 2, @@ -3854,10 +3794,8 @@ "id": "(a_shape -- finally)[0]", "src": "a_shape", "srcArrow": "none", - "srcLabel": "", "dst": "finally", "dstArrow": "none", - "dstLabel": "", "opacity": 1, "strokeDash": 0, "strokeWidth": 2, @@ -3939,10 +3877,8 @@ "id": "finally.sequence.(itemResponse.a -> item.a.b)[0]", "src": "finally.sequence.itemResponse.a", "srcArrow": "none", - "srcLabel": "", "dst": "finally.sequence.item.a.b", "dstArrow": "triangle", - "dstLabel": "", "opacity": 1, "strokeDash": 0, "strokeWidth": 2, @@ -3979,10 +3915,8 @@ "id": "finally.sequence.(item.a.b -> essayRubric.a.b.c)[0]", "src": "finally.sequence.item.a.b", "srcArrow": "none", - "srcLabel": "", "dst": "finally.sequence.essayRubric.a.b.c", "dstArrow": "triangle", - "dstLabel": "", "opacity": 1, "strokeDash": 0, "strokeWidth": 2, @@ -4019,10 +3953,8 @@ "id": "finally.sequence.(essayRubric.a.b.c -> concept.a.b.c.d)[0]", "src": "finally.sequence.essayRubric.a.b.c", "srcArrow": "none", - "srcLabel": "", "dst": "finally.sequence.concept.a.b.c.d", "dstArrow": "triangle", - "dstLabel": "", "opacity": 1, "strokeDash": 0, "strokeWidth": 2, @@ -4059,10 +3991,8 @@ "id": "finally.sequence.(item.a -> essayRubric.a.b)[0]", "src": "finally.sequence.item.a", "srcArrow": "none", - "srcLabel": "", "dst": "finally.sequence.essayRubric.a.b", "dstArrow": "triangle", - "dstLabel": "", "opacity": 1, "strokeDash": 0, "strokeWidth": 2, @@ -4099,10 +4029,8 @@ "id": "finally.sequence.(concept.a.b.c.d -> itemOutcome.a.b.c.d.e)[0]", "src": "finally.sequence.concept.a.b.c.d", "srcArrow": "none", - "srcLabel": "", "dst": "finally.sequence.itemOutcome.a.b.c.d.e", "dstArrow": "triangle", - "dstLabel": "", "opacity": 1, "strokeDash": 0, "strokeWidth": 2, @@ -4139,10 +4067,8 @@ "id": "finally.sequence.(scorer.abc -> item.a)[0]", "src": "finally.sequence.scorer.abc", "srcArrow": "none", - "srcLabel": "", "dst": "finally.sequence.item.a", "dstArrow": "triangle", - "dstLabel": "", "opacity": 1, "strokeDash": 0, "strokeWidth": 2, @@ -4179,10 +4105,8 @@ "id": "finally.sequence.(itemOutcome.a.b.c.d.e -> scorer)[0]", "src": "finally.sequence.itemOutcome.a.b.c.d.e", "srcArrow": "none", - "srcLabel": "", "dst": "finally.sequence.scorer", "dstArrow": "triangle", - "dstLabel": "", "opacity": 1, "strokeDash": 0, "strokeWidth": 2, @@ -4219,10 +4143,8 @@ "id": "finally.sequence.(scorer -> itemResponse.c)[0]", "src": "finally.sequence.scorer", "srcArrow": "none", - "srcLabel": "", "dst": "finally.sequence.itemResponse.c", "dstArrow": "triangle", - "dstLabel": "", "opacity": 1, "strokeDash": 0, "strokeWidth": 2, @@ -4259,10 +4181,8 @@ "id": "(a_sequence.scorer -- )[0]", "src": "a_sequence.scorer", "srcArrow": "none", - "srcLabel": "", "dst": "scorer-lifeline-end-3390057676", "dstArrow": "none", - "dstLabel": "", "opacity": 1, "strokeDash": 6, "strokeWidth": 2, @@ -4299,10 +4219,8 @@ "id": "(a_sequence.itemResponse -- )[0]", "src": "a_sequence.itemResponse", "srcArrow": "none", - "srcLabel": "", "dst": "itemResponse-lifeline-end-3886259856", "dstArrow": "none", - "dstLabel": "", "opacity": 1, "strokeDash": 6, "strokeWidth": 2, @@ -4339,10 +4257,8 @@ "id": "(a_sequence.item -- )[0]", "src": "a_sequence.item", "srcArrow": "none", - "srcLabel": "", "dst": "item-lifeline-end-4102336625", "dstArrow": "none", - "dstLabel": "", "opacity": 1, "strokeDash": 6, "strokeWidth": 2, @@ -4379,10 +4295,8 @@ "id": "(a_sequence.essayRubric -- )[0]", "src": "a_sequence.essayRubric", "srcArrow": "none", - "srcLabel": "", "dst": "essayRubric-lifeline-end-1632038932", "dstArrow": "none", - "dstLabel": "", "opacity": 1, "strokeDash": 6, "strokeWidth": 2, @@ -4419,10 +4333,8 @@ "id": "(a_sequence.concept -- )[0]", "src": "a_sequence.concept", "srcArrow": "none", - "srcLabel": "", "dst": "concept-lifeline-end-1391711018", "dstArrow": "none", - "dstLabel": "", "opacity": 1, "strokeDash": 6, "strokeWidth": 2, @@ -4459,10 +4371,8 @@ "id": "(a_sequence.itemOutcome -- )[0]", "src": "a_sequence.itemOutcome", "srcArrow": "none", - "srcLabel": "", "dst": "itemOutcome-lifeline-end-3921917181", "dstArrow": "none", - "dstLabel": "", "opacity": 1, "strokeDash": 6, "strokeWidth": 2, @@ -4499,10 +4409,8 @@ "id": "(another.sequence.scorer -- )[0]", "src": "another.sequence.scorer", "srcArrow": "none", - "srcLabel": "", "dst": "scorer-lifeline-end-3390057676", "dstArrow": "none", - "dstLabel": "", "opacity": 1, "strokeDash": 6, "strokeWidth": 2, @@ -4539,10 +4447,8 @@ "id": "(another.sequence.itemResponse -- )[0]", "src": "another.sequence.itemResponse", "srcArrow": "none", - "srcLabel": "", "dst": "itemResponse-lifeline-end-3886259856", "dstArrow": "none", - "dstLabel": "", "opacity": 1, "strokeDash": 6, "strokeWidth": 2, @@ -4579,10 +4485,8 @@ "id": "(another.sequence.item -- )[0]", "src": "another.sequence.item", "srcArrow": "none", - "srcLabel": "", "dst": "item-lifeline-end-4102336625", "dstArrow": "none", - "dstLabel": "", "opacity": 1, "strokeDash": 6, "strokeWidth": 2, @@ -4619,10 +4523,8 @@ "id": "(another.sequence.essayRubric -- )[0]", "src": "another.sequence.essayRubric", "srcArrow": "none", - "srcLabel": "", "dst": "essayRubric-lifeline-end-1632038932", "dstArrow": "none", - "dstLabel": "", "opacity": 1, "strokeDash": 6, "strokeWidth": 2, @@ -4659,10 +4561,8 @@ "id": "(another.sequence.concept -- )[0]", "src": "another.sequence.concept", "srcArrow": "none", - "srcLabel": "", "dst": "concept-lifeline-end-1391711018", "dstArrow": "none", - "dstLabel": "", "opacity": 1, "strokeDash": 6, "strokeWidth": 2, @@ -4699,10 +4599,8 @@ "id": "(another.sequence.itemOutcome -- )[0]", "src": "another.sequence.itemOutcome", "srcArrow": "none", - "srcLabel": "", "dst": "itemOutcome-lifeline-end-3921917181", "dstArrow": "none", - "dstLabel": "", "opacity": 1, "strokeDash": 6, "strokeWidth": 2, @@ -4739,10 +4637,8 @@ "id": "(finally.sequence.scorer -- )[0]", "src": "finally.sequence.scorer", "srcArrow": "none", - "srcLabel": "", "dst": "scorer-lifeline-end-3390057676", "dstArrow": "none", - "dstLabel": "", "opacity": 1, "strokeDash": 2, "strokeWidth": 2, @@ -4779,10 +4675,8 @@ "id": "(finally.sequence.concept -- )[0]", "src": "finally.sequence.concept", "srcArrow": "none", - "srcLabel": "", "dst": "concept-lifeline-end-1391711018", "dstArrow": "none", - "dstLabel": "", "opacity": 1, "strokeDash": 6, "strokeWidth": 2, @@ -4819,10 +4713,8 @@ "id": "(finally.sequence.essayRubric -- )[0]", "src": "finally.sequence.essayRubric", "srcArrow": "none", - "srcLabel": "", "dst": "essayRubric-lifeline-end-1632038932", "dstArrow": "none", - "dstLabel": "", "opacity": 1, "strokeDash": 6, "strokeWidth": 2, @@ -4859,10 +4751,8 @@ "id": "(finally.sequence.item -- )[0]", "src": "finally.sequence.item", "srcArrow": "none", - "srcLabel": "", "dst": "item-lifeline-end-4102336625", "dstArrow": "none", - "dstLabel": "", "opacity": 1, "strokeDash": 6, "strokeWidth": 2, @@ -4899,10 +4789,8 @@ "id": "(finally.sequence.itemOutcome -- )[0]", "src": "finally.sequence.itemOutcome", "srcArrow": "none", - "srcLabel": "", "dst": "itemOutcome-lifeline-end-3921917181", "dstArrow": "none", - "dstLabel": "", "opacity": 1, "strokeDash": 6, "strokeWidth": 2, @@ -4939,10 +4827,8 @@ "id": "(finally.sequence.itemResponse -- )[0]", "src": "finally.sequence.itemResponse", "srcArrow": "none", - "srcLabel": "", "dst": "itemResponse-lifeline-end-3886259856", "dstArrow": "none", - "dstLabel": "", "opacity": 1, "strokeDash": 6, "strokeWidth": 2, diff --git a/e2etests/testdata/stable/sequence_diagrams/dagre/sketch.exp.svg b/e2etests/testdata/stable/sequence_diagrams/dagre/sketch.exp.svg index a9e21e5c76..c990173017 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-959131997 .fill-N1{fill:#0A0F25;} + .d2-959131997 .fill-N2{fill:#676C7E;} + .d2-959131997 .fill-N3{fill:#9499AB;} + .d2-959131997 .fill-N4{fill:#CFD2DD;} + .d2-959131997 .fill-N5{fill:#DEE1EB;} + .d2-959131997 .fill-N6{fill:#EEF1F8;} + .d2-959131997 .fill-N7{fill:#FFFFFF;} + .d2-959131997 .fill-B1{fill:#0D32B2;} + .d2-959131997 .fill-B2{fill:#0D32B2;} + .d2-959131997 .fill-B3{fill:#E3E9FD;} + .d2-959131997 .fill-B4{fill:#E3E9FD;} + .d2-959131997 .fill-B5{fill:#EDF0FD;} + .d2-959131997 .fill-B6{fill:#F7F8FE;} + .d2-959131997 .fill-AA2{fill:#4A6FF3;} + .d2-959131997 .fill-AA4{fill:#EDF0FD;} + .d2-959131997 .fill-AA5{fill:#F7F8FE;} + .d2-959131997 .fill-AB4{fill:#EDF0FD;} + .d2-959131997 .fill-AB5{fill:#F7F8FE;} + .d2-959131997 .stroke-N1{stroke:#0A0F25;} + .d2-959131997 .stroke-N2{stroke:#676C7E;} + .d2-959131997 .stroke-N3{stroke:#9499AB;} + .d2-959131997 .stroke-N4{stroke:#CFD2DD;} + .d2-959131997 .stroke-N5{stroke:#DEE1EB;} + .d2-959131997 .stroke-N6{stroke:#EEF1F8;} + .d2-959131997 .stroke-N7{stroke:#FFFFFF;} + .d2-959131997 .stroke-B1{stroke:#0D32B2;} + .d2-959131997 .stroke-B2{stroke:#0D32B2;} + .d2-959131997 .stroke-B3{stroke:#E3E9FD;} + .d2-959131997 .stroke-B4{stroke:#E3E9FD;} + .d2-959131997 .stroke-B5{stroke:#EDF0FD;} + .d2-959131997 .stroke-B6{stroke:#F7F8FE;} + .d2-959131997 .stroke-AA2{stroke:#4A6FF3;} + .d2-959131997 .stroke-AA4{stroke:#EDF0FD;} + .d2-959131997 .stroke-AA5{stroke:#F7F8FE;} + .d2-959131997 .stroke-AB4{stroke:#EDF0FD;} + .d2-959131997 .stroke-AB5{stroke:#F7F8FE;} + .d2-959131997 .background-color-N1{background-color:#0A0F25;} + .d2-959131997 .background-color-N2{background-color:#676C7E;} + .d2-959131997 .background-color-N3{background-color:#9499AB;} + .d2-959131997 .background-color-N4{background-color:#CFD2DD;} + .d2-959131997 .background-color-N5{background-color:#DEE1EB;} + .d2-959131997 .background-color-N6{background-color:#EEF1F8;} + .d2-959131997 .background-color-N7{background-color:#FFFFFF;} + .d2-959131997 .background-color-B1{background-color:#0D32B2;} + .d2-959131997 .background-color-B2{background-color:#0D32B2;} + .d2-959131997 .background-color-B3{background-color:#E3E9FD;} + .d2-959131997 .background-color-B4{background-color:#E3E9FD;} + .d2-959131997 .background-color-B5{background-color:#EDF0FD;} + .d2-959131997 .background-color-B6{background-color:#F7F8FE;} + .d2-959131997 .background-color-AA2{background-color:#4A6FF3;} + .d2-959131997 .background-color-AA4{background-color:#EDF0FD;} + .d2-959131997 .background-color-AA5{background-color:#F7F8FE;} + .d2-959131997 .background-color-AB4{background-color:#EDF0FD;} + .d2-959131997 .background-color-AB5{background-color:#F7F8FE;} + .d2-959131997 .color-N1{color:#0A0F25;} + .d2-959131997 .color-N2{color:#676C7E;} + .d2-959131997 .color-N3{color:#9499AB;} + .d2-959131997 .color-N4{color:#CFD2DD;} + .d2-959131997 .color-N5{color:#DEE1EB;} + .d2-959131997 .color-N6{color:#EEF1F8;} + .d2-959131997 .color-N7{color:#FFFFFF;} + .d2-959131997 .color-B1{color:#0D32B2;} + .d2-959131997 .color-B2{color:#0D32B2;} + .d2-959131997 .color-B3{color:#E3E9FD;} + .d2-959131997 .color-B4{color:#E3E9FD;} + .d2-959131997 .color-B5{color:#EDF0FD;} + .d2-959131997 .color-B6{color:#F7F8FE;} + .d2-959131997 .color-AA2{color:#4A6FF3;} + .d2-959131997 .color-AA4{color:#EDF0FD;} + .d2-959131997 .color-AA5{color:#F7F8FE;} + .d2-959131997 .color-AB4{color:#EDF0FD;} + .d2-959131997 .color-AB5{color:#F7F8FE;}.appendix text.text{fill:#0A0F25}.md{--color-fg-default:#0A0F25;--color-fg-muted:#676C7E;--color-fg-subtle:#9499AB;--color-canvas-default:#FFFFFF;--color-canvas-subtle:#EEF1F8;--color-border-default:#0D32B2;--color-border-muted:#0D32B2;--color-neutral-muted:#EEF1F8;--color-accent-fg:#0D32B2;--color-accent-emphasis:#0D32B2;--color-attention-subtle:#676C7E;--color-danger-fg:red;}.sketch-overlay-B1{fill:url(#streaks-darker);mix-blend-mode:lighten}.sketch-overlay-B2{fill:url(#streaks-darker);mix-blend-mode:lighten}.sketch-overlay-B3{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-B4{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-B5{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-B6{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-AA2{fill:url(#streaks-dark);mix-blend-mode:overlay}.sketch-overlay-AA4{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-AA5{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-AB4{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-AB5{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-N1{fill:url(#streaks-darker);mix-blend-mode:lighten}.sketch-overlay-N2{fill:url(#streaks-dark);mix-blend-mode:overlay}.sketch-overlay-N3{fill:url(#streaks-normal);mix-blend-mode:color-burn}.sketch-overlay-N4{fill:url(#streaks-normal);mix-blend-mode:color-burn}.sketch-overlay-N5{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-N6{fill:url(#streaks-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 32d8460cf1..12b8ca0966 100644 --- a/e2etests/testdata/stable/sequence_diagrams/elk/board.exp.json +++ b/e2etests/testdata/stable/sequence_diagrams/elk/board.exp.json @@ -2594,10 +2594,8 @@ "id": "a_sequence.(scorer.t -> itemResponse.t)[0]", "src": "a_sequence.scorer.t", "srcArrow": "none", - "srcLabel": "", "dst": "a_sequence.itemResponse.t", "dstArrow": "triangle", - "dstLabel": "", "opacity": 1, "strokeDash": 0, "strokeWidth": 2, @@ -2634,10 +2632,8 @@ "id": "a_sequence.(scorer.t <- itemResponse.t)[0]", "src": "a_sequence.scorer.t", "srcArrow": "triangle", - "srcLabel": "", "dst": "a_sequence.itemResponse.t", "dstArrow": "none", - "dstLabel": "", "opacity": 1, "strokeDash": 0, "strokeWidth": 2, @@ -2674,10 +2670,8 @@ "id": "a_sequence.(scorer.t -> item.t1)[0]", "src": "a_sequence.scorer.t", "srcArrow": "none", - "srcLabel": "", "dst": "a_sequence.item.t1", "dstArrow": "triangle", - "dstLabel": "", "opacity": 1, "strokeDash": 0, "strokeWidth": 2, @@ -2714,10 +2708,8 @@ "id": "a_sequence.(scorer.t <- item.t1)[0]", "src": "a_sequence.scorer.t", "srcArrow": "triangle", - "srcLabel": "", "dst": "a_sequence.item.t1", "dstArrow": "none", - "dstLabel": "", "opacity": 1, "strokeDash": 0, "strokeWidth": 2, @@ -2754,10 +2746,8 @@ "id": "a_sequence.(scorer.t -> essayRubric.t)[0]", "src": "a_sequence.scorer.t", "srcArrow": "none", - "srcLabel": "", "dst": "a_sequence.essayRubric.t", "dstArrow": "triangle", - "dstLabel": "", "opacity": 1, "strokeDash": 0, "strokeWidth": 2, @@ -2794,10 +2784,8 @@ "id": "a_sequence.(itemResponse -> essayRubric.t.c)[0]", "src": "a_sequence.itemResponse", "srcArrow": "none", - "srcLabel": "", "dst": "a_sequence.essayRubric.t.c", "dstArrow": "triangle", - "dstLabel": "", "opacity": 1, "strokeDash": 0, "strokeWidth": 2, @@ -2834,10 +2822,8 @@ "id": "a_sequence.(essayRubric.t.c -> concept.t)[0]", "src": "a_sequence.essayRubric.t.c", "srcArrow": "none", - "srcLabel": "", "dst": "a_sequence.concept.t", "dstArrow": "triangle", - "dstLabel": "", "opacity": 1, "strokeDash": 0, "strokeWidth": 2, @@ -2874,10 +2860,8 @@ "id": "a_sequence.(scorer <- essayRubric.t)[0]", "src": "a_sequence.scorer", "srcArrow": "triangle", - "srcLabel": "", "dst": "a_sequence.essayRubric.t", "dstArrow": "none", - "dstLabel": "", "opacity": 1, "strokeDash": 0, "strokeWidth": 2, @@ -2914,10 +2898,8 @@ "id": "a_sequence.(scorer.t <-> itemOutcome.t1)[0]", "src": "a_sequence.scorer.t", "srcArrow": "triangle", - "srcLabel": "", "dst": "a_sequence.itemOutcome.t1", "dstArrow": "triangle", - "dstLabel": "", "opacity": 1, "strokeDash": 0, "strokeWidth": 2, @@ -2954,10 +2936,8 @@ "id": "a_sequence.(scorer.t <-> item.t2)[0]", "src": "a_sequence.scorer.t", "srcArrow": "triangle", - "srcLabel": "", "dst": "a_sequence.item.t2", "dstArrow": "triangle", - "dstLabel": "", "opacity": 1, "strokeDash": 0, "strokeWidth": 2, @@ -2994,10 +2974,8 @@ "id": "a_sequence.(scorer.t -> item.t3)[0]", "src": "a_sequence.scorer.t", "srcArrow": "none", - "srcLabel": "", "dst": "a_sequence.item.t3", "dstArrow": "triangle", - "dstLabel": "", "opacity": 1, "strokeDash": 0, "strokeWidth": 2, @@ -3034,10 +3012,8 @@ "id": "a_sequence.(scorer.t -- itemOutcome.t2)[0]", "src": "a_sequence.scorer.t", "srcArrow": "none", - "srcLabel": "", "dst": "a_sequence.itemOutcome.t2", "dstArrow": "none", - "dstLabel": "", "opacity": 1, "strokeDash": 0, "strokeWidth": 2, @@ -3074,10 +3050,8 @@ "id": "a_sequence.(scorer.t -- itemOutcome.t3)[0]", "src": "a_sequence.scorer.t", "srcArrow": "none", - "srcLabel": "", "dst": "a_sequence.itemOutcome.t3", "dstArrow": "none", - "dstLabel": "", "opacity": 1, "strokeDash": 0, "strokeWidth": 2, @@ -3114,10 +3088,8 @@ "id": "another.sequence.(scorer.t -> itemResponse.t)[0]", "src": "another.sequence.scorer.t", "srcArrow": "none", - "srcLabel": "", "dst": "another.sequence.itemResponse.t", "dstArrow": "triangle", - "dstLabel": "", "opacity": 1, "strokeDash": 0, "strokeWidth": 2, @@ -3154,10 +3126,8 @@ "id": "another.sequence.(scorer.t <- itemResponse.t)[0]", "src": "another.sequence.scorer.t", "srcArrow": "triangle", - "srcLabel": "", "dst": "another.sequence.itemResponse.t", "dstArrow": "none", - "dstLabel": "", "opacity": 1, "strokeDash": 0, "strokeWidth": 2, @@ -3194,10 +3164,8 @@ "id": "another.sequence.(scorer.t -> item.t1)[0]", "src": "another.sequence.scorer.t", "srcArrow": "none", - "srcLabel": "", "dst": "another.sequence.item.t1", "dstArrow": "triangle", - "dstLabel": "", "opacity": 1, "strokeDash": 0, "strokeWidth": 2, @@ -3234,10 +3202,8 @@ "id": "another.sequence.(scorer.t <- item.t1)[0]", "src": "another.sequence.scorer.t", "srcArrow": "triangle", - "srcLabel": "", "dst": "another.sequence.item.t1", "dstArrow": "none", - "dstLabel": "", "opacity": 1, "strokeDash": 0, "strokeWidth": 2, @@ -3274,10 +3240,8 @@ "id": "another.sequence.(scorer.t -> essayRubric.t)[0]", "src": "another.sequence.scorer.t", "srcArrow": "none", - "srcLabel": "", "dst": "another.sequence.essayRubric.t", "dstArrow": "triangle", - "dstLabel": "", "opacity": 1, "strokeDash": 0, "strokeWidth": 2, @@ -3314,10 +3278,8 @@ "id": "another.sequence.(itemResponse -> essayRubric.t.c)[0]", "src": "another.sequence.itemResponse", "srcArrow": "none", - "srcLabel": "", "dst": "another.sequence.essayRubric.t.c", "dstArrow": "triangle", - "dstLabel": "", "opacity": 1, "strokeDash": 0, "strokeWidth": 2, @@ -3354,10 +3316,8 @@ "id": "another.sequence.(essayRubric.t.c -> concept.t)[0]", "src": "another.sequence.essayRubric.t.c", "srcArrow": "none", - "srcLabel": "", "dst": "another.sequence.concept.t", "dstArrow": "triangle", - "dstLabel": "", "opacity": 1, "strokeDash": 0, "strokeWidth": 2, @@ -3394,10 +3354,8 @@ "id": "another.sequence.(scorer <- essayRubric.t)[0]", "src": "another.sequence.scorer", "srcArrow": "triangle", - "srcLabel": "", "dst": "another.sequence.essayRubric.t", "dstArrow": "none", - "dstLabel": "", "opacity": 1, "strokeDash": 0, "strokeWidth": 2, @@ -3434,10 +3392,8 @@ "id": "another.sequence.(scorer.t -> itemOutcome.t1)[0]", "src": "another.sequence.scorer.t", "srcArrow": "none", - "srcLabel": "", "dst": "another.sequence.itemOutcome.t1", "dstArrow": "triangle", - "dstLabel": "", "opacity": 1, "strokeDash": 0, "strokeWidth": 2, @@ -3474,10 +3430,8 @@ "id": "another.sequence.(scorer.t <-> item.t2)[0]", "src": "another.sequence.scorer.t", "srcArrow": "triangle", - "srcLabel": "", "dst": "another.sequence.item.t2", "dstArrow": "triangle", - "dstLabel": "", "opacity": 1, "strokeDash": 0, "strokeWidth": 2, @@ -3514,10 +3468,8 @@ "id": "another.sequence.(scorer.t -> item.t3)[0]", "src": "another.sequence.scorer.t", "srcArrow": "none", - "srcLabel": "", "dst": "another.sequence.item.t3", "dstArrow": "triangle", - "dstLabel": "", "opacity": 1, "strokeDash": 0, "strokeWidth": 2, @@ -3554,10 +3506,8 @@ "id": "another.sequence.(scorer.t -> itemOutcome.t2)[0]", "src": "another.sequence.scorer.t", "srcArrow": "none", - "srcLabel": "", "dst": "another.sequence.itemOutcome.t2", "dstArrow": "triangle", - "dstLabel": "", "opacity": 1, "strokeDash": 0, "strokeWidth": 2, @@ -3594,10 +3544,8 @@ "id": "another.sequence.(scorer.t -> itemOutcome.t3)[0]", "src": "another.sequence.scorer.t", "srcArrow": "none", - "srcLabel": "", "dst": "another.sequence.itemOutcome.t3", "dstArrow": "triangle", - "dstLabel": "", "opacity": 1, "strokeDash": 0, "strokeWidth": 2, @@ -3634,10 +3582,8 @@ "id": "(a_shape -> a_sequence)[0]", "src": "a_shape", "srcArrow": "none", - "srcLabel": "", "dst": "a_sequence", "dstArrow": "triangle", - "dstLabel": "", "opacity": 1, "strokeDash": 0, "strokeWidth": 2, @@ -3682,10 +3628,8 @@ "id": "(a_shape -> another.sequence)[0]", "src": "a_shape", "srcArrow": "none", - "srcLabel": "", "dst": "another.sequence", "dstArrow": "triangle", - "dstLabel": "", "opacity": 1, "strokeDash": 0, "strokeWidth": 2, @@ -3722,10 +3666,8 @@ "id": "(a_sequence -> sequence)[0]", "src": "a_sequence", "srcArrow": "none", - "srcLabel": "", "dst": "sequence", "dstArrow": "triangle", - "dstLabel": "", "opacity": 1, "strokeDash": 0, "strokeWidth": 2, @@ -3762,10 +3704,8 @@ "id": "(another.sequence <-> finally.sequence)[0]", "src": "another.sequence", "srcArrow": "triangle", - "srcLabel": "", "dst": "finally.sequence", "dstArrow": "triangle", - "dstLabel": "", "opacity": 1, "strokeDash": 0, "strokeWidth": 2, @@ -3802,10 +3742,8 @@ "id": "(a_shape -- finally)[0]", "src": "a_shape", "srcArrow": "none", - "srcLabel": "", "dst": "finally", "dstArrow": "none", - "dstLabel": "", "opacity": 1, "strokeDash": 0, "strokeWidth": 2, @@ -3850,10 +3788,8 @@ "id": "finally.sequence.(itemResponse.a -> item.a.b)[0]", "src": "finally.sequence.itemResponse.a", "srcArrow": "none", - "srcLabel": "", "dst": "finally.sequence.item.a.b", "dstArrow": "triangle", - "dstLabel": "", "opacity": 1, "strokeDash": 0, "strokeWidth": 2, @@ -3890,10 +3826,8 @@ "id": "finally.sequence.(item.a.b -> essayRubric.a.b.c)[0]", "src": "finally.sequence.item.a.b", "srcArrow": "none", - "srcLabel": "", "dst": "finally.sequence.essayRubric.a.b.c", "dstArrow": "triangle", - "dstLabel": "", "opacity": 1, "strokeDash": 0, "strokeWidth": 2, @@ -3930,10 +3864,8 @@ "id": "finally.sequence.(essayRubric.a.b.c -> concept.a.b.c.d)[0]", "src": "finally.sequence.essayRubric.a.b.c", "srcArrow": "none", - "srcLabel": "", "dst": "finally.sequence.concept.a.b.c.d", "dstArrow": "triangle", - "dstLabel": "", "opacity": 1, "strokeDash": 0, "strokeWidth": 2, @@ -3970,10 +3902,8 @@ "id": "finally.sequence.(item.a -> essayRubric.a.b)[0]", "src": "finally.sequence.item.a", "srcArrow": "none", - "srcLabel": "", "dst": "finally.sequence.essayRubric.a.b", "dstArrow": "triangle", - "dstLabel": "", "opacity": 1, "strokeDash": 0, "strokeWidth": 2, @@ -4010,10 +3940,8 @@ "id": "finally.sequence.(concept.a.b.c.d -> itemOutcome.a.b.c.d.e)[0]", "src": "finally.sequence.concept.a.b.c.d", "srcArrow": "none", - "srcLabel": "", "dst": "finally.sequence.itemOutcome.a.b.c.d.e", "dstArrow": "triangle", - "dstLabel": "", "opacity": 1, "strokeDash": 0, "strokeWidth": 2, @@ -4050,10 +3978,8 @@ "id": "finally.sequence.(scorer.abc -> item.a)[0]", "src": "finally.sequence.scorer.abc", "srcArrow": "none", - "srcLabel": "", "dst": "finally.sequence.item.a", "dstArrow": "triangle", - "dstLabel": "", "opacity": 1, "strokeDash": 0, "strokeWidth": 2, @@ -4090,10 +4016,8 @@ "id": "finally.sequence.(itemOutcome.a.b.c.d.e -> scorer)[0]", "src": "finally.sequence.itemOutcome.a.b.c.d.e", "srcArrow": "none", - "srcLabel": "", "dst": "finally.sequence.scorer", "dstArrow": "triangle", - "dstLabel": "", "opacity": 1, "strokeDash": 0, "strokeWidth": 2, @@ -4130,10 +4054,8 @@ "id": "finally.sequence.(scorer -> itemResponse.c)[0]", "src": "finally.sequence.scorer", "srcArrow": "none", - "srcLabel": "", "dst": "finally.sequence.itemResponse.c", "dstArrow": "triangle", - "dstLabel": "", "opacity": 1, "strokeDash": 0, "strokeWidth": 2, @@ -4170,10 +4092,8 @@ "id": "(a_sequence.scorer -- )[0]", "src": "a_sequence.scorer", "srcArrow": "none", - "srcLabel": "", "dst": "scorer-lifeline-end-3390057676", "dstArrow": "none", - "dstLabel": "", "opacity": 1, "strokeDash": 6, "strokeWidth": 2, @@ -4210,10 +4130,8 @@ "id": "(a_sequence.itemResponse -- )[0]", "src": "a_sequence.itemResponse", "srcArrow": "none", - "srcLabel": "", "dst": "itemResponse-lifeline-end-3886259856", "dstArrow": "none", - "dstLabel": "", "opacity": 1, "strokeDash": 6, "strokeWidth": 2, @@ -4250,10 +4168,8 @@ "id": "(a_sequence.item -- )[0]", "src": "a_sequence.item", "srcArrow": "none", - "srcLabel": "", "dst": "item-lifeline-end-4102336625", "dstArrow": "none", - "dstLabel": "", "opacity": 1, "strokeDash": 6, "strokeWidth": 2, @@ -4290,10 +4206,8 @@ "id": "(a_sequence.essayRubric -- )[0]", "src": "a_sequence.essayRubric", "srcArrow": "none", - "srcLabel": "", "dst": "essayRubric-lifeline-end-1632038932", "dstArrow": "none", - "dstLabel": "", "opacity": 1, "strokeDash": 6, "strokeWidth": 2, @@ -4330,10 +4244,8 @@ "id": "(a_sequence.concept -- )[0]", "src": "a_sequence.concept", "srcArrow": "none", - "srcLabel": "", "dst": "concept-lifeline-end-1391711018", "dstArrow": "none", - "dstLabel": "", "opacity": 1, "strokeDash": 6, "strokeWidth": 2, @@ -4370,10 +4282,8 @@ "id": "(a_sequence.itemOutcome -- )[0]", "src": "a_sequence.itemOutcome", "srcArrow": "none", - "srcLabel": "", "dst": "itemOutcome-lifeline-end-3921917181", "dstArrow": "none", - "dstLabel": "", "opacity": 1, "strokeDash": 6, "strokeWidth": 2, @@ -4410,10 +4320,8 @@ "id": "(another.sequence.scorer -- )[0]", "src": "another.sequence.scorer", "srcArrow": "none", - "srcLabel": "", "dst": "scorer-lifeline-end-3390057676", "dstArrow": "none", - "dstLabel": "", "opacity": 1, "strokeDash": 6, "strokeWidth": 2, @@ -4450,10 +4358,8 @@ "id": "(another.sequence.itemResponse -- )[0]", "src": "another.sequence.itemResponse", "srcArrow": "none", - "srcLabel": "", "dst": "itemResponse-lifeline-end-3886259856", "dstArrow": "none", - "dstLabel": "", "opacity": 1, "strokeDash": 6, "strokeWidth": 2, @@ -4490,10 +4396,8 @@ "id": "(another.sequence.item -- )[0]", "src": "another.sequence.item", "srcArrow": "none", - "srcLabel": "", "dst": "item-lifeline-end-4102336625", "dstArrow": "none", - "dstLabel": "", "opacity": 1, "strokeDash": 6, "strokeWidth": 2, @@ -4530,10 +4434,8 @@ "id": "(another.sequence.essayRubric -- )[0]", "src": "another.sequence.essayRubric", "srcArrow": "none", - "srcLabel": "", "dst": "essayRubric-lifeline-end-1632038932", "dstArrow": "none", - "dstLabel": "", "opacity": 1, "strokeDash": 6, "strokeWidth": 2, @@ -4570,10 +4472,8 @@ "id": "(another.sequence.concept -- )[0]", "src": "another.sequence.concept", "srcArrow": "none", - "srcLabel": "", "dst": "concept-lifeline-end-1391711018", "dstArrow": "none", - "dstLabel": "", "opacity": 1, "strokeDash": 6, "strokeWidth": 2, @@ -4610,10 +4510,8 @@ "id": "(another.sequence.itemOutcome -- )[0]", "src": "another.sequence.itemOutcome", "srcArrow": "none", - "srcLabel": "", "dst": "itemOutcome-lifeline-end-3921917181", "dstArrow": "none", - "dstLabel": "", "opacity": 1, "strokeDash": 6, "strokeWidth": 2, @@ -4650,10 +4548,8 @@ "id": "(finally.sequence.scorer -- )[0]", "src": "finally.sequence.scorer", "srcArrow": "none", - "srcLabel": "", "dst": "scorer-lifeline-end-3390057676", "dstArrow": "none", - "dstLabel": "", "opacity": 1, "strokeDash": 2, "strokeWidth": 2, @@ -4690,10 +4586,8 @@ "id": "(finally.sequence.concept -- )[0]", "src": "finally.sequence.concept", "srcArrow": "none", - "srcLabel": "", "dst": "concept-lifeline-end-1391711018", "dstArrow": "none", - "dstLabel": "", "opacity": 1, "strokeDash": 6, "strokeWidth": 2, @@ -4730,10 +4624,8 @@ "id": "(finally.sequence.essayRubric -- )[0]", "src": "finally.sequence.essayRubric", "srcArrow": "none", - "srcLabel": "", "dst": "essayRubric-lifeline-end-1632038932", "dstArrow": "none", - "dstLabel": "", "opacity": 1, "strokeDash": 6, "strokeWidth": 2, @@ -4770,10 +4662,8 @@ "id": "(finally.sequence.item -- )[0]", "src": "finally.sequence.item", "srcArrow": "none", - "srcLabel": "", "dst": "item-lifeline-end-4102336625", "dstArrow": "none", - "dstLabel": "", "opacity": 1, "strokeDash": 6, "strokeWidth": 2, @@ -4810,10 +4700,8 @@ "id": "(finally.sequence.itemOutcome -- )[0]", "src": "finally.sequence.itemOutcome", "srcArrow": "none", - "srcLabel": "", "dst": "itemOutcome-lifeline-end-3921917181", "dstArrow": "none", - "dstLabel": "", "opacity": 1, "strokeDash": 6, "strokeWidth": 2, @@ -4850,10 +4738,8 @@ "id": "(finally.sequence.itemResponse -- )[0]", "src": "finally.sequence.itemResponse", "srcArrow": "none", - "srcLabel": "", "dst": "itemResponse-lifeline-end-3886259856", "dstArrow": "none", - "dstLabel": "", "opacity": 1, "strokeDash": 6, "strokeWidth": 2, diff --git a/e2etests/testdata/stable/sequence_diagrams/elk/sketch.exp.svg b/e2etests/testdata/stable/sequence_diagrams/elk/sketch.exp.svg index ef3486e126..78ee2475b9 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-2705969454 .fill-N1{fill:#0A0F25;} + .d2-2705969454 .fill-N2{fill:#676C7E;} + .d2-2705969454 .fill-N3{fill:#9499AB;} + .d2-2705969454 .fill-N4{fill:#CFD2DD;} + .d2-2705969454 .fill-N5{fill:#DEE1EB;} + .d2-2705969454 .fill-N6{fill:#EEF1F8;} + .d2-2705969454 .fill-N7{fill:#FFFFFF;} + .d2-2705969454 .fill-B1{fill:#0D32B2;} + .d2-2705969454 .fill-B2{fill:#0D32B2;} + .d2-2705969454 .fill-B3{fill:#E3E9FD;} + .d2-2705969454 .fill-B4{fill:#E3E9FD;} + .d2-2705969454 .fill-B5{fill:#EDF0FD;} + .d2-2705969454 .fill-B6{fill:#F7F8FE;} + .d2-2705969454 .fill-AA2{fill:#4A6FF3;} + .d2-2705969454 .fill-AA4{fill:#EDF0FD;} + .d2-2705969454 .fill-AA5{fill:#F7F8FE;} + .d2-2705969454 .fill-AB4{fill:#EDF0FD;} + .d2-2705969454 .fill-AB5{fill:#F7F8FE;} + .d2-2705969454 .stroke-N1{stroke:#0A0F25;} + .d2-2705969454 .stroke-N2{stroke:#676C7E;} + .d2-2705969454 .stroke-N3{stroke:#9499AB;} + .d2-2705969454 .stroke-N4{stroke:#CFD2DD;} + .d2-2705969454 .stroke-N5{stroke:#DEE1EB;} + .d2-2705969454 .stroke-N6{stroke:#EEF1F8;} + .d2-2705969454 .stroke-N7{stroke:#FFFFFF;} + .d2-2705969454 .stroke-B1{stroke:#0D32B2;} + .d2-2705969454 .stroke-B2{stroke:#0D32B2;} + .d2-2705969454 .stroke-B3{stroke:#E3E9FD;} + .d2-2705969454 .stroke-B4{stroke:#E3E9FD;} + .d2-2705969454 .stroke-B5{stroke:#EDF0FD;} + .d2-2705969454 .stroke-B6{stroke:#F7F8FE;} + .d2-2705969454 .stroke-AA2{stroke:#4A6FF3;} + .d2-2705969454 .stroke-AA4{stroke:#EDF0FD;} + .d2-2705969454 .stroke-AA5{stroke:#F7F8FE;} + .d2-2705969454 .stroke-AB4{stroke:#EDF0FD;} + .d2-2705969454 .stroke-AB5{stroke:#F7F8FE;} + .d2-2705969454 .background-color-N1{background-color:#0A0F25;} + .d2-2705969454 .background-color-N2{background-color:#676C7E;} + .d2-2705969454 .background-color-N3{background-color:#9499AB;} + .d2-2705969454 .background-color-N4{background-color:#CFD2DD;} + .d2-2705969454 .background-color-N5{background-color:#DEE1EB;} + .d2-2705969454 .background-color-N6{background-color:#EEF1F8;} + .d2-2705969454 .background-color-N7{background-color:#FFFFFF;} + .d2-2705969454 .background-color-B1{background-color:#0D32B2;} + .d2-2705969454 .background-color-B2{background-color:#0D32B2;} + .d2-2705969454 .background-color-B3{background-color:#E3E9FD;} + .d2-2705969454 .background-color-B4{background-color:#E3E9FD;} + .d2-2705969454 .background-color-B5{background-color:#EDF0FD;} + .d2-2705969454 .background-color-B6{background-color:#F7F8FE;} + .d2-2705969454 .background-color-AA2{background-color:#4A6FF3;} + .d2-2705969454 .background-color-AA4{background-color:#EDF0FD;} + .d2-2705969454 .background-color-AA5{background-color:#F7F8FE;} + .d2-2705969454 .background-color-AB4{background-color:#EDF0FD;} + .d2-2705969454 .background-color-AB5{background-color:#F7F8FE;} + .d2-2705969454 .color-N1{color:#0A0F25;} + .d2-2705969454 .color-N2{color:#676C7E;} + .d2-2705969454 .color-N3{color:#9499AB;} + .d2-2705969454 .color-N4{color:#CFD2DD;} + .d2-2705969454 .color-N5{color:#DEE1EB;} + .d2-2705969454 .color-N6{color:#EEF1F8;} + .d2-2705969454 .color-N7{color:#FFFFFF;} + .d2-2705969454 .color-B1{color:#0D32B2;} + .d2-2705969454 .color-B2{color:#0D32B2;} + .d2-2705969454 .color-B3{color:#E3E9FD;} + .d2-2705969454 .color-B4{color:#E3E9FD;} + .d2-2705969454 .color-B5{color:#EDF0FD;} + .d2-2705969454 .color-B6{color:#F7F8FE;} + .d2-2705969454 .color-AA2{color:#4A6FF3;} + .d2-2705969454 .color-AA4{color:#EDF0FD;} + .d2-2705969454 .color-AA5{color:#F7F8FE;} + .d2-2705969454 .color-AB4{color:#EDF0FD;} + .d2-2705969454 .color-AB5{color:#F7F8FE;}.appendix text.text{fill:#0A0F25}.md{--color-fg-default:#0A0F25;--color-fg-muted:#676C7E;--color-fg-subtle:#9499AB;--color-canvas-default:#FFFFFF;--color-canvas-subtle:#EEF1F8;--color-border-default:#0D32B2;--color-border-muted:#0D32B2;--color-neutral-muted:#EEF1F8;--color-accent-fg:#0D32B2;--color-accent-emphasis:#0D32B2;--color-attention-subtle:#676C7E;--color-danger-fg:red;}.sketch-overlay-B1{fill:url(#streaks-darker);mix-blend-mode:lighten}.sketch-overlay-B2{fill:url(#streaks-darker);mix-blend-mode:lighten}.sketch-overlay-B3{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-B4{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-B5{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-B6{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-AA2{fill:url(#streaks-dark);mix-blend-mode:overlay}.sketch-overlay-AA4{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-AA5{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-AB4{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-AB5{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-N1{fill:url(#streaks-darker);mix-blend-mode:lighten}.sketch-overlay-N2{fill:url(#streaks-dark);mix-blend-mode:overlay}.sketch-overlay-N3{fill:url(#streaks-normal);mix-blend-mode:color-burn}.sketch-overlay-N4{fill:url(#streaks-normal);mix-blend-mode:color-burn}.sketch-overlay-N5{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-N6{fill:url(#streaks-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/sql_table_tooltip_animated/dagre/board.exp.json b/e2etests/testdata/stable/sql_table_tooltip_animated/dagre/board.exp.json index 9133ec74ee..24914b4790 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 @@ -153,10 +153,8 @@ "id": "(x -> a)[0]", "src": "x", "srcArrow": "none", - "srcLabel": "", "dst": "a", "dstArrow": "cf-many", - "dstLabel": "", "opacity": 1, "strokeDash": 0, "strokeWidth": 2, 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 12ba542673..ad09b5ebe7 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 @@ -xy + .d2-3234620565 .fill-N1{fill:#0A0F25;} + .d2-3234620565 .fill-N2{fill:#676C7E;} + .d2-3234620565 .fill-N3{fill:#9499AB;} + .d2-3234620565 .fill-N4{fill:#CFD2DD;} + .d2-3234620565 .fill-N5{fill:#DEE1EB;} + .d2-3234620565 .fill-N6{fill:#EEF1F8;} + .d2-3234620565 .fill-N7{fill:#FFFFFF;} + .d2-3234620565 .fill-B1{fill:#0D32B2;} + .d2-3234620565 .fill-B2{fill:#0D32B2;} + .d2-3234620565 .fill-B3{fill:#E3E9FD;} + .d2-3234620565 .fill-B4{fill:#E3E9FD;} + .d2-3234620565 .fill-B5{fill:#EDF0FD;} + .d2-3234620565 .fill-B6{fill:#F7F8FE;} + .d2-3234620565 .fill-AA2{fill:#4A6FF3;} + .d2-3234620565 .fill-AA4{fill:#EDF0FD;} + .d2-3234620565 .fill-AA5{fill:#F7F8FE;} + .d2-3234620565 .fill-AB4{fill:#EDF0FD;} + .d2-3234620565 .fill-AB5{fill:#F7F8FE;} + .d2-3234620565 .stroke-N1{stroke:#0A0F25;} + .d2-3234620565 .stroke-N2{stroke:#676C7E;} + .d2-3234620565 .stroke-N3{stroke:#9499AB;} + .d2-3234620565 .stroke-N4{stroke:#CFD2DD;} + .d2-3234620565 .stroke-N5{stroke:#DEE1EB;} + .d2-3234620565 .stroke-N6{stroke:#EEF1F8;} + .d2-3234620565 .stroke-N7{stroke:#FFFFFF;} + .d2-3234620565 .stroke-B1{stroke:#0D32B2;} + .d2-3234620565 .stroke-B2{stroke:#0D32B2;} + .d2-3234620565 .stroke-B3{stroke:#E3E9FD;} + .d2-3234620565 .stroke-B4{stroke:#E3E9FD;} + .d2-3234620565 .stroke-B5{stroke:#EDF0FD;} + .d2-3234620565 .stroke-B6{stroke:#F7F8FE;} + .d2-3234620565 .stroke-AA2{stroke:#4A6FF3;} + .d2-3234620565 .stroke-AA4{stroke:#EDF0FD;} + .d2-3234620565 .stroke-AA5{stroke:#F7F8FE;} + .d2-3234620565 .stroke-AB4{stroke:#EDF0FD;} + .d2-3234620565 .stroke-AB5{stroke:#F7F8FE;} + .d2-3234620565 .background-color-N1{background-color:#0A0F25;} + .d2-3234620565 .background-color-N2{background-color:#676C7E;} + .d2-3234620565 .background-color-N3{background-color:#9499AB;} + .d2-3234620565 .background-color-N4{background-color:#CFD2DD;} + .d2-3234620565 .background-color-N5{background-color:#DEE1EB;} + .d2-3234620565 .background-color-N6{background-color:#EEF1F8;} + .d2-3234620565 .background-color-N7{background-color:#FFFFFF;} + .d2-3234620565 .background-color-B1{background-color:#0D32B2;} + .d2-3234620565 .background-color-B2{background-color:#0D32B2;} + .d2-3234620565 .background-color-B3{background-color:#E3E9FD;} + .d2-3234620565 .background-color-B4{background-color:#E3E9FD;} + .d2-3234620565 .background-color-B5{background-color:#EDF0FD;} + .d2-3234620565 .background-color-B6{background-color:#F7F8FE;} + .d2-3234620565 .background-color-AA2{background-color:#4A6FF3;} + .d2-3234620565 .background-color-AA4{background-color:#EDF0FD;} + .d2-3234620565 .background-color-AA5{background-color:#F7F8FE;} + .d2-3234620565 .background-color-AB4{background-color:#EDF0FD;} + .d2-3234620565 .background-color-AB5{background-color:#F7F8FE;} + .d2-3234620565 .color-N1{color:#0A0F25;} + .d2-3234620565 .color-N2{color:#676C7E;} + .d2-3234620565 .color-N3{color:#9499AB;} + .d2-3234620565 .color-N4{color:#CFD2DD;} + .d2-3234620565 .color-N5{color:#DEE1EB;} + .d2-3234620565 .color-N6{color:#EEF1F8;} + .d2-3234620565 .color-N7{color:#FFFFFF;} + .d2-3234620565 .color-B1{color:#0D32B2;} + .d2-3234620565 .color-B2{color:#0D32B2;} + .d2-3234620565 .color-B3{color:#E3E9FD;} + .d2-3234620565 .color-B4{color:#E3E9FD;} + .d2-3234620565 .color-B5{color:#EDF0FD;} + .d2-3234620565 .color-B6{color:#F7F8FE;} + .d2-3234620565 .color-AA2{color:#4A6FF3;} + .d2-3234620565 .color-AA4{color:#EDF0FD;} + .d2-3234620565 .color-AA5{color:#F7F8FE;} + .d2-3234620565 .color-AB4{color:#EDF0FD;} + .d2-3234620565 .color-AB5{color:#F7F8FE;}.appendix text.text{fill:#0A0F25}.md{--color-fg-default:#0A0F25;--color-fg-muted:#676C7E;--color-fg-subtle:#9499AB;--color-canvas-default:#FFFFFF;--color-canvas-subtle:#EEF1F8;--color-border-default:#0D32B2;--color-border-muted:#0D32B2;--color-neutral-muted:#EEF1F8;--color-accent-fg:#0D32B2;--color-accent-emphasis:#0D32B2;--color-attention-subtle:#676C7E;--color-danger-fg:red;}.sketch-overlay-B1{fill:url(#streaks-darker);mix-blend-mode:lighten}.sketch-overlay-B2{fill:url(#streaks-darker);mix-blend-mode:lighten}.sketch-overlay-B3{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-B4{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-B5{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-B6{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-AA2{fill:url(#streaks-dark);mix-blend-mode:overlay}.sketch-overlay-AA4{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-AA5{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-AB4{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-AB5{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-N1{fill:url(#streaks-darker);mix-blend-mode:lighten}.sketch-overlay-N2{fill:url(#streaks-dark);mix-blend-mode:overlay}.sketch-overlay-N3{fill:url(#streaks-normal);mix-blend-mode:color-burn}.sketch-overlay-N4{fill:url(#streaks-normal);mix-blend-mode:color-burn}.sketch-overlay-N5{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-N6{fill:url(#streaks-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 @@ -111,7 +111,7 @@ -I like turtlesab +I like turtlesab \ 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 222ca6ada3..196665d6c3 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 @@ -153,10 +153,8 @@ "id": "(x -> a)[0]", "src": "x", "srcArrow": "none", - "srcLabel": "", "dst": "a", "dstArrow": "cf-many", - "dstLabel": "", "opacity": 1, "strokeDash": 0, "strokeWidth": 2, 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 e344592f13..82dbbf099f 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 @@ -xy + .d2-4177879266 .fill-N1{fill:#0A0F25;} + .d2-4177879266 .fill-N2{fill:#676C7E;} + .d2-4177879266 .fill-N3{fill:#9499AB;} + .d2-4177879266 .fill-N4{fill:#CFD2DD;} + .d2-4177879266 .fill-N5{fill:#DEE1EB;} + .d2-4177879266 .fill-N6{fill:#EEF1F8;} + .d2-4177879266 .fill-N7{fill:#FFFFFF;} + .d2-4177879266 .fill-B1{fill:#0D32B2;} + .d2-4177879266 .fill-B2{fill:#0D32B2;} + .d2-4177879266 .fill-B3{fill:#E3E9FD;} + .d2-4177879266 .fill-B4{fill:#E3E9FD;} + .d2-4177879266 .fill-B5{fill:#EDF0FD;} + .d2-4177879266 .fill-B6{fill:#F7F8FE;} + .d2-4177879266 .fill-AA2{fill:#4A6FF3;} + .d2-4177879266 .fill-AA4{fill:#EDF0FD;} + .d2-4177879266 .fill-AA5{fill:#F7F8FE;} + .d2-4177879266 .fill-AB4{fill:#EDF0FD;} + .d2-4177879266 .fill-AB5{fill:#F7F8FE;} + .d2-4177879266 .stroke-N1{stroke:#0A0F25;} + .d2-4177879266 .stroke-N2{stroke:#676C7E;} + .d2-4177879266 .stroke-N3{stroke:#9499AB;} + .d2-4177879266 .stroke-N4{stroke:#CFD2DD;} + .d2-4177879266 .stroke-N5{stroke:#DEE1EB;} + .d2-4177879266 .stroke-N6{stroke:#EEF1F8;} + .d2-4177879266 .stroke-N7{stroke:#FFFFFF;} + .d2-4177879266 .stroke-B1{stroke:#0D32B2;} + .d2-4177879266 .stroke-B2{stroke:#0D32B2;} + .d2-4177879266 .stroke-B3{stroke:#E3E9FD;} + .d2-4177879266 .stroke-B4{stroke:#E3E9FD;} + .d2-4177879266 .stroke-B5{stroke:#EDF0FD;} + .d2-4177879266 .stroke-B6{stroke:#F7F8FE;} + .d2-4177879266 .stroke-AA2{stroke:#4A6FF3;} + .d2-4177879266 .stroke-AA4{stroke:#EDF0FD;} + .d2-4177879266 .stroke-AA5{stroke:#F7F8FE;} + .d2-4177879266 .stroke-AB4{stroke:#EDF0FD;} + .d2-4177879266 .stroke-AB5{stroke:#F7F8FE;} + .d2-4177879266 .background-color-N1{background-color:#0A0F25;} + .d2-4177879266 .background-color-N2{background-color:#676C7E;} + .d2-4177879266 .background-color-N3{background-color:#9499AB;} + .d2-4177879266 .background-color-N4{background-color:#CFD2DD;} + .d2-4177879266 .background-color-N5{background-color:#DEE1EB;} + .d2-4177879266 .background-color-N6{background-color:#EEF1F8;} + .d2-4177879266 .background-color-N7{background-color:#FFFFFF;} + .d2-4177879266 .background-color-B1{background-color:#0D32B2;} + .d2-4177879266 .background-color-B2{background-color:#0D32B2;} + .d2-4177879266 .background-color-B3{background-color:#E3E9FD;} + .d2-4177879266 .background-color-B4{background-color:#E3E9FD;} + .d2-4177879266 .background-color-B5{background-color:#EDF0FD;} + .d2-4177879266 .background-color-B6{background-color:#F7F8FE;} + .d2-4177879266 .background-color-AA2{background-color:#4A6FF3;} + .d2-4177879266 .background-color-AA4{background-color:#EDF0FD;} + .d2-4177879266 .background-color-AA5{background-color:#F7F8FE;} + .d2-4177879266 .background-color-AB4{background-color:#EDF0FD;} + .d2-4177879266 .background-color-AB5{background-color:#F7F8FE;} + .d2-4177879266 .color-N1{color:#0A0F25;} + .d2-4177879266 .color-N2{color:#676C7E;} + .d2-4177879266 .color-N3{color:#9499AB;} + .d2-4177879266 .color-N4{color:#CFD2DD;} + .d2-4177879266 .color-N5{color:#DEE1EB;} + .d2-4177879266 .color-N6{color:#EEF1F8;} + .d2-4177879266 .color-N7{color:#FFFFFF;} + .d2-4177879266 .color-B1{color:#0D32B2;} + .d2-4177879266 .color-B2{color:#0D32B2;} + .d2-4177879266 .color-B3{color:#E3E9FD;} + .d2-4177879266 .color-B4{color:#E3E9FD;} + .d2-4177879266 .color-B5{color:#EDF0FD;} + .d2-4177879266 .color-B6{color:#F7F8FE;} + .d2-4177879266 .color-AA2{color:#4A6FF3;} + .d2-4177879266 .color-AA4{color:#EDF0FD;} + .d2-4177879266 .color-AA5{color:#F7F8FE;} + .d2-4177879266 .color-AB4{color:#EDF0FD;} + .d2-4177879266 .color-AB5{color:#F7F8FE;}.appendix text.text{fill:#0A0F25}.md{--color-fg-default:#0A0F25;--color-fg-muted:#676C7E;--color-fg-subtle:#9499AB;--color-canvas-default:#FFFFFF;--color-canvas-subtle:#EEF1F8;--color-border-default:#0D32B2;--color-border-muted:#0D32B2;--color-neutral-muted:#EEF1F8;--color-accent-fg:#0D32B2;--color-accent-emphasis:#0D32B2;--color-attention-subtle:#676C7E;--color-danger-fg:red;}.sketch-overlay-B1{fill:url(#streaks-darker);mix-blend-mode:lighten}.sketch-overlay-B2{fill:url(#streaks-darker);mix-blend-mode:lighten}.sketch-overlay-B3{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-B4{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-B5{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-B6{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-AA2{fill:url(#streaks-dark);mix-blend-mode:overlay}.sketch-overlay-AA4{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-AA5{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-AB4{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-AB5{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-N1{fill:url(#streaks-darker);mix-blend-mode:lighten}.sketch-overlay-N2{fill:url(#streaks-dark);mix-blend-mode:overlay}.sketch-overlay-N3{fill:url(#streaks-normal);mix-blend-mode:color-burn}.sketch-overlay-N4{fill:url(#streaks-normal);mix-blend-mode:color-burn}.sketch-overlay-N5{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-N6{fill:url(#streaks-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 @@ -111,7 +111,7 @@ -I like turtlesab +I like turtlesab \ 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 1b0118c7ff..581e46023d 100644 --- a/e2etests/testdata/stable/sql_tables/dagre/board.exp.json +++ b/e2etests/testdata/stable/sql_tables/dagre/board.exp.json @@ -633,10 +633,8 @@ "id": "(users <-> orders)[0]", "src": "users", "srcArrow": "triangle", - "srcLabel": "", "dst": "orders", "dstArrow": "triangle", - "dstLabel": "", "opacity": 1, "strokeDash": 0, "strokeWidth": 2, @@ -682,10 +680,8 @@ "id": "(products <-> orders)[0]", "src": "products", "srcArrow": "triangle", - "srcLabel": "", "dst": "orders", "dstArrow": "triangle", - "dstLabel": "", "opacity": 1, "strokeDash": 0, "strokeWidth": 2, @@ -731,10 +727,8 @@ "id": "(shipments <-> orders)[0]", "src": "shipments", "srcArrow": "triangle", - "srcLabel": "", "dst": "orders", "dstArrow": "triangle", - "dstLabel": "", "opacity": 1, "strokeDash": 0, "strokeWidth": 2, diff --git a/e2etests/testdata/stable/sql_tables/dagre/sketch.exp.svg b/e2etests/testdata/stable/sql_tables/dagre/sketch.exp.svg index 64ab95ce46..e52f06ac47 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 @@ -usersidintnamestringemailstringpasswordstringlast_logindatetimePKproductsidintpricedecimalskustringnamestringordersidintuser_idintproduct_idintshipmentsidintorder_idinttracking_numberstringstatusstring + .d2-2921966909 .fill-N1{fill:#0A0F25;} + .d2-2921966909 .fill-N2{fill:#676C7E;} + .d2-2921966909 .fill-N3{fill:#9499AB;} + .d2-2921966909 .fill-N4{fill:#CFD2DD;} + .d2-2921966909 .fill-N5{fill:#DEE1EB;} + .d2-2921966909 .fill-N6{fill:#EEF1F8;} + .d2-2921966909 .fill-N7{fill:#FFFFFF;} + .d2-2921966909 .fill-B1{fill:#0D32B2;} + .d2-2921966909 .fill-B2{fill:#0D32B2;} + .d2-2921966909 .fill-B3{fill:#E3E9FD;} + .d2-2921966909 .fill-B4{fill:#E3E9FD;} + .d2-2921966909 .fill-B5{fill:#EDF0FD;} + .d2-2921966909 .fill-B6{fill:#F7F8FE;} + .d2-2921966909 .fill-AA2{fill:#4A6FF3;} + .d2-2921966909 .fill-AA4{fill:#EDF0FD;} + .d2-2921966909 .fill-AA5{fill:#F7F8FE;} + .d2-2921966909 .fill-AB4{fill:#EDF0FD;} + .d2-2921966909 .fill-AB5{fill:#F7F8FE;} + .d2-2921966909 .stroke-N1{stroke:#0A0F25;} + .d2-2921966909 .stroke-N2{stroke:#676C7E;} + .d2-2921966909 .stroke-N3{stroke:#9499AB;} + .d2-2921966909 .stroke-N4{stroke:#CFD2DD;} + .d2-2921966909 .stroke-N5{stroke:#DEE1EB;} + .d2-2921966909 .stroke-N6{stroke:#EEF1F8;} + .d2-2921966909 .stroke-N7{stroke:#FFFFFF;} + .d2-2921966909 .stroke-B1{stroke:#0D32B2;} + .d2-2921966909 .stroke-B2{stroke:#0D32B2;} + .d2-2921966909 .stroke-B3{stroke:#E3E9FD;} + .d2-2921966909 .stroke-B4{stroke:#E3E9FD;} + .d2-2921966909 .stroke-B5{stroke:#EDF0FD;} + .d2-2921966909 .stroke-B6{stroke:#F7F8FE;} + .d2-2921966909 .stroke-AA2{stroke:#4A6FF3;} + .d2-2921966909 .stroke-AA4{stroke:#EDF0FD;} + .d2-2921966909 .stroke-AA5{stroke:#F7F8FE;} + .d2-2921966909 .stroke-AB4{stroke:#EDF0FD;} + .d2-2921966909 .stroke-AB5{stroke:#F7F8FE;} + .d2-2921966909 .background-color-N1{background-color:#0A0F25;} + .d2-2921966909 .background-color-N2{background-color:#676C7E;} + .d2-2921966909 .background-color-N3{background-color:#9499AB;} + .d2-2921966909 .background-color-N4{background-color:#CFD2DD;} + .d2-2921966909 .background-color-N5{background-color:#DEE1EB;} + .d2-2921966909 .background-color-N6{background-color:#EEF1F8;} + .d2-2921966909 .background-color-N7{background-color:#FFFFFF;} + .d2-2921966909 .background-color-B1{background-color:#0D32B2;} + .d2-2921966909 .background-color-B2{background-color:#0D32B2;} + .d2-2921966909 .background-color-B3{background-color:#E3E9FD;} + .d2-2921966909 .background-color-B4{background-color:#E3E9FD;} + .d2-2921966909 .background-color-B5{background-color:#EDF0FD;} + .d2-2921966909 .background-color-B6{background-color:#F7F8FE;} + .d2-2921966909 .background-color-AA2{background-color:#4A6FF3;} + .d2-2921966909 .background-color-AA4{background-color:#EDF0FD;} + .d2-2921966909 .background-color-AA5{background-color:#F7F8FE;} + .d2-2921966909 .background-color-AB4{background-color:#EDF0FD;} + .d2-2921966909 .background-color-AB5{background-color:#F7F8FE;} + .d2-2921966909 .color-N1{color:#0A0F25;} + .d2-2921966909 .color-N2{color:#676C7E;} + .d2-2921966909 .color-N3{color:#9499AB;} + .d2-2921966909 .color-N4{color:#CFD2DD;} + .d2-2921966909 .color-N5{color:#DEE1EB;} + .d2-2921966909 .color-N6{color:#EEF1F8;} + .d2-2921966909 .color-N7{color:#FFFFFF;} + .d2-2921966909 .color-B1{color:#0D32B2;} + .d2-2921966909 .color-B2{color:#0D32B2;} + .d2-2921966909 .color-B3{color:#E3E9FD;} + .d2-2921966909 .color-B4{color:#E3E9FD;} + .d2-2921966909 .color-B5{color:#EDF0FD;} + .d2-2921966909 .color-B6{color:#F7F8FE;} + .d2-2921966909 .color-AA2{color:#4A6FF3;} + .d2-2921966909 .color-AA4{color:#EDF0FD;} + .d2-2921966909 .color-AA5{color:#F7F8FE;} + .d2-2921966909 .color-AB4{color:#EDF0FD;} + .d2-2921966909 .color-AB5{color:#F7F8FE;}.appendix text.text{fill:#0A0F25}.md{--color-fg-default:#0A0F25;--color-fg-muted:#676C7E;--color-fg-subtle:#9499AB;--color-canvas-default:#FFFFFF;--color-canvas-subtle:#EEF1F8;--color-border-default:#0D32B2;--color-border-muted:#0D32B2;--color-neutral-muted:#EEF1F8;--color-accent-fg:#0D32B2;--color-accent-emphasis:#0D32B2;--color-attention-subtle:#676C7E;--color-danger-fg:red;}.sketch-overlay-B1{fill:url(#streaks-darker);mix-blend-mode:lighten}.sketch-overlay-B2{fill:url(#streaks-darker);mix-blend-mode:lighten}.sketch-overlay-B3{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-B4{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-B5{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-B6{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-AA2{fill:url(#streaks-dark);mix-blend-mode:overlay}.sketch-overlay-AA4{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-AA5{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-AB4{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-AB5{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-N1{fill:url(#streaks-darker);mix-blend-mode:lighten}.sketch-overlay-N2{fill:url(#streaks-dark);mix-blend-mode:overlay}.sketch-overlay-N3{fill:url(#streaks-normal);mix-blend-mode:color-burn}.sketch-overlay-N4{fill:url(#streaks-normal);mix-blend-mode:color-burn}.sketch-overlay-N5{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-N6{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-N7{fill:url(#streaks-bright);mix-blend-mode:darken}.light-code{display: block}.dark-code{display: none}]]>usersidintnamestringemailstringpasswordstringlast_logindatetimePKproductsidintpricedecimalskustringnamestringordersidintuser_idintproduct_idintshipmentsidintorder_idinttracking_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 38ea3ed745..286573e69a 100644 --- a/e2etests/testdata/stable/sql_tables/elk/board.exp.json +++ b/e2etests/testdata/stable/sql_tables/elk/board.exp.json @@ -633,10 +633,8 @@ "id": "(users <-> orders)[0]", "src": "users", "srcArrow": "triangle", - "srcLabel": "", "dst": "orders", "dstArrow": "triangle", - "dstLabel": "", "opacity": 1, "strokeDash": 0, "strokeWidth": 2, @@ -681,10 +679,8 @@ "id": "(products <-> orders)[0]", "src": "products", "srcArrow": "triangle", - "srcLabel": "", "dst": "orders", "dstArrow": "triangle", - "dstLabel": "", "opacity": 1, "strokeDash": 0, "strokeWidth": 2, @@ -721,10 +717,8 @@ "id": "(shipments <-> orders)[0]", "src": "shipments", "srcArrow": "triangle", - "srcLabel": "", "dst": "orders", "dstArrow": "triangle", - "dstLabel": "", "opacity": 1, "strokeDash": 0, "strokeWidth": 2, diff --git a/e2etests/testdata/stable/sql_tables/elk/sketch.exp.svg b/e2etests/testdata/stable/sql_tables/elk/sketch.exp.svg index b96a2120aa..33b3edfa81 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 @@ -usersidintnamestringemailstringpasswordstringlast_logindatetimePKproductsidintpricedecimalskustringnamestringordersidintuser_idintproduct_idintshipmentsidintorder_idinttracking_numberstringstatusstring + .d2-4158298870 .fill-N1{fill:#0A0F25;} + .d2-4158298870 .fill-N2{fill:#676C7E;} + .d2-4158298870 .fill-N3{fill:#9499AB;} + .d2-4158298870 .fill-N4{fill:#CFD2DD;} + .d2-4158298870 .fill-N5{fill:#DEE1EB;} + .d2-4158298870 .fill-N6{fill:#EEF1F8;} + .d2-4158298870 .fill-N7{fill:#FFFFFF;} + .d2-4158298870 .fill-B1{fill:#0D32B2;} + .d2-4158298870 .fill-B2{fill:#0D32B2;} + .d2-4158298870 .fill-B3{fill:#E3E9FD;} + .d2-4158298870 .fill-B4{fill:#E3E9FD;} + .d2-4158298870 .fill-B5{fill:#EDF0FD;} + .d2-4158298870 .fill-B6{fill:#F7F8FE;} + .d2-4158298870 .fill-AA2{fill:#4A6FF3;} + .d2-4158298870 .fill-AA4{fill:#EDF0FD;} + .d2-4158298870 .fill-AA5{fill:#F7F8FE;} + .d2-4158298870 .fill-AB4{fill:#EDF0FD;} + .d2-4158298870 .fill-AB5{fill:#F7F8FE;} + .d2-4158298870 .stroke-N1{stroke:#0A0F25;} + .d2-4158298870 .stroke-N2{stroke:#676C7E;} + .d2-4158298870 .stroke-N3{stroke:#9499AB;} + .d2-4158298870 .stroke-N4{stroke:#CFD2DD;} + .d2-4158298870 .stroke-N5{stroke:#DEE1EB;} + .d2-4158298870 .stroke-N6{stroke:#EEF1F8;} + .d2-4158298870 .stroke-N7{stroke:#FFFFFF;} + .d2-4158298870 .stroke-B1{stroke:#0D32B2;} + .d2-4158298870 .stroke-B2{stroke:#0D32B2;} + .d2-4158298870 .stroke-B3{stroke:#E3E9FD;} + .d2-4158298870 .stroke-B4{stroke:#E3E9FD;} + .d2-4158298870 .stroke-B5{stroke:#EDF0FD;} + .d2-4158298870 .stroke-B6{stroke:#F7F8FE;} + .d2-4158298870 .stroke-AA2{stroke:#4A6FF3;} + .d2-4158298870 .stroke-AA4{stroke:#EDF0FD;} + .d2-4158298870 .stroke-AA5{stroke:#F7F8FE;} + .d2-4158298870 .stroke-AB4{stroke:#EDF0FD;} + .d2-4158298870 .stroke-AB5{stroke:#F7F8FE;} + .d2-4158298870 .background-color-N1{background-color:#0A0F25;} + .d2-4158298870 .background-color-N2{background-color:#676C7E;} + .d2-4158298870 .background-color-N3{background-color:#9499AB;} + .d2-4158298870 .background-color-N4{background-color:#CFD2DD;} + .d2-4158298870 .background-color-N5{background-color:#DEE1EB;} + .d2-4158298870 .background-color-N6{background-color:#EEF1F8;} + .d2-4158298870 .background-color-N7{background-color:#FFFFFF;} + .d2-4158298870 .background-color-B1{background-color:#0D32B2;} + .d2-4158298870 .background-color-B2{background-color:#0D32B2;} + .d2-4158298870 .background-color-B3{background-color:#E3E9FD;} + .d2-4158298870 .background-color-B4{background-color:#E3E9FD;} + .d2-4158298870 .background-color-B5{background-color:#EDF0FD;} + .d2-4158298870 .background-color-B6{background-color:#F7F8FE;} + .d2-4158298870 .background-color-AA2{background-color:#4A6FF3;} + .d2-4158298870 .background-color-AA4{background-color:#EDF0FD;} + .d2-4158298870 .background-color-AA5{background-color:#F7F8FE;} + .d2-4158298870 .background-color-AB4{background-color:#EDF0FD;} + .d2-4158298870 .background-color-AB5{background-color:#F7F8FE;} + .d2-4158298870 .color-N1{color:#0A0F25;} + .d2-4158298870 .color-N2{color:#676C7E;} + .d2-4158298870 .color-N3{color:#9499AB;} + .d2-4158298870 .color-N4{color:#CFD2DD;} + .d2-4158298870 .color-N5{color:#DEE1EB;} + .d2-4158298870 .color-N6{color:#EEF1F8;} + .d2-4158298870 .color-N7{color:#FFFFFF;} + .d2-4158298870 .color-B1{color:#0D32B2;} + .d2-4158298870 .color-B2{color:#0D32B2;} + .d2-4158298870 .color-B3{color:#E3E9FD;} + .d2-4158298870 .color-B4{color:#E3E9FD;} + .d2-4158298870 .color-B5{color:#EDF0FD;} + .d2-4158298870 .color-B6{color:#F7F8FE;} + .d2-4158298870 .color-AA2{color:#4A6FF3;} + .d2-4158298870 .color-AA4{color:#EDF0FD;} + .d2-4158298870 .color-AA5{color:#F7F8FE;} + .d2-4158298870 .color-AB4{color:#EDF0FD;} + .d2-4158298870 .color-AB5{color:#F7F8FE;}.appendix text.text{fill:#0A0F25}.md{--color-fg-default:#0A0F25;--color-fg-muted:#676C7E;--color-fg-subtle:#9499AB;--color-canvas-default:#FFFFFF;--color-canvas-subtle:#EEF1F8;--color-border-default:#0D32B2;--color-border-muted:#0D32B2;--color-neutral-muted:#EEF1F8;--color-accent-fg:#0D32B2;--color-accent-emphasis:#0D32B2;--color-attention-subtle:#676C7E;--color-danger-fg:red;}.sketch-overlay-B1{fill:url(#streaks-darker);mix-blend-mode:lighten}.sketch-overlay-B2{fill:url(#streaks-darker);mix-blend-mode:lighten}.sketch-overlay-B3{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-B4{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-B5{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-B6{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-AA2{fill:url(#streaks-dark);mix-blend-mode:overlay}.sketch-overlay-AA4{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-AA5{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-AB4{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-AB5{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-N1{fill:url(#streaks-darker);mix-blend-mode:lighten}.sketch-overlay-N2{fill:url(#streaks-dark);mix-blend-mode:overlay}.sketch-overlay-N3{fill:url(#streaks-normal);mix-blend-mode:color-burn}.sketch-overlay-N4{fill:url(#streaks-normal);mix-blend-mode:color-burn}.sketch-overlay-N5{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-N6{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-N7{fill:url(#streaks-bright);mix-blend-mode:darken}.light-code{display: block}.dark-code{display: none}]]>usersidintnamestringemailstringpasswordstringlast_logindatetimePKproductsidintpricedecimalskustringnamestringordersidintuser_idintproduct_idintshipmentsidintorder_idinttracking_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 eaa2a678d6..c36b4d3305 100644 --- a/e2etests/testdata/stable/square_3d/dagre/board.exp.json +++ b/e2etests/testdata/stable/square_3d/dagre/board.exp.json @@ -91,10 +91,8 @@ "id": "(rectangle -> square)[0]", "src": "rectangle", "srcArrow": "none", - "srcLabel": "", "dst": "square", "dstArrow": "triangle", - "dstLabel": "", "opacity": 1, "strokeDash": 0, "strokeWidth": 2, diff --git a/e2etests/testdata/stable/square_3d/dagre/sketch.exp.svg b/e2etests/testdata/stable/square_3d/dagre/sketch.exp.svg index fb17215fd9..8e2d54d59c 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-443350842 .fill-N1{fill:#0A0F25;} + .d2-443350842 .fill-N2{fill:#676C7E;} + .d2-443350842 .fill-N3{fill:#9499AB;} + .d2-443350842 .fill-N4{fill:#CFD2DD;} + .d2-443350842 .fill-N5{fill:#DEE1EB;} + .d2-443350842 .fill-N6{fill:#EEF1F8;} + .d2-443350842 .fill-N7{fill:#FFFFFF;} + .d2-443350842 .fill-B1{fill:#0D32B2;} + .d2-443350842 .fill-B2{fill:#0D32B2;} + .d2-443350842 .fill-B3{fill:#E3E9FD;} + .d2-443350842 .fill-B4{fill:#E3E9FD;} + .d2-443350842 .fill-B5{fill:#EDF0FD;} + .d2-443350842 .fill-B6{fill:#F7F8FE;} + .d2-443350842 .fill-AA2{fill:#4A6FF3;} + .d2-443350842 .fill-AA4{fill:#EDF0FD;} + .d2-443350842 .fill-AA5{fill:#F7F8FE;} + .d2-443350842 .fill-AB4{fill:#EDF0FD;} + .d2-443350842 .fill-AB5{fill:#F7F8FE;} + .d2-443350842 .stroke-N1{stroke:#0A0F25;} + .d2-443350842 .stroke-N2{stroke:#676C7E;} + .d2-443350842 .stroke-N3{stroke:#9499AB;} + .d2-443350842 .stroke-N4{stroke:#CFD2DD;} + .d2-443350842 .stroke-N5{stroke:#DEE1EB;} + .d2-443350842 .stroke-N6{stroke:#EEF1F8;} + .d2-443350842 .stroke-N7{stroke:#FFFFFF;} + .d2-443350842 .stroke-B1{stroke:#0D32B2;} + .d2-443350842 .stroke-B2{stroke:#0D32B2;} + .d2-443350842 .stroke-B3{stroke:#E3E9FD;} + .d2-443350842 .stroke-B4{stroke:#E3E9FD;} + .d2-443350842 .stroke-B5{stroke:#EDF0FD;} + .d2-443350842 .stroke-B6{stroke:#F7F8FE;} + .d2-443350842 .stroke-AA2{stroke:#4A6FF3;} + .d2-443350842 .stroke-AA4{stroke:#EDF0FD;} + .d2-443350842 .stroke-AA5{stroke:#F7F8FE;} + .d2-443350842 .stroke-AB4{stroke:#EDF0FD;} + .d2-443350842 .stroke-AB5{stroke:#F7F8FE;} + .d2-443350842 .background-color-N1{background-color:#0A0F25;} + .d2-443350842 .background-color-N2{background-color:#676C7E;} + .d2-443350842 .background-color-N3{background-color:#9499AB;} + .d2-443350842 .background-color-N4{background-color:#CFD2DD;} + .d2-443350842 .background-color-N5{background-color:#DEE1EB;} + .d2-443350842 .background-color-N6{background-color:#EEF1F8;} + .d2-443350842 .background-color-N7{background-color:#FFFFFF;} + .d2-443350842 .background-color-B1{background-color:#0D32B2;} + .d2-443350842 .background-color-B2{background-color:#0D32B2;} + .d2-443350842 .background-color-B3{background-color:#E3E9FD;} + .d2-443350842 .background-color-B4{background-color:#E3E9FD;} + .d2-443350842 .background-color-B5{background-color:#EDF0FD;} + .d2-443350842 .background-color-B6{background-color:#F7F8FE;} + .d2-443350842 .background-color-AA2{background-color:#4A6FF3;} + .d2-443350842 .background-color-AA4{background-color:#EDF0FD;} + .d2-443350842 .background-color-AA5{background-color:#F7F8FE;} + .d2-443350842 .background-color-AB4{background-color:#EDF0FD;} + .d2-443350842 .background-color-AB5{background-color:#F7F8FE;} + .d2-443350842 .color-N1{color:#0A0F25;} + .d2-443350842 .color-N2{color:#676C7E;} + .d2-443350842 .color-N3{color:#9499AB;} + .d2-443350842 .color-N4{color:#CFD2DD;} + .d2-443350842 .color-N5{color:#DEE1EB;} + .d2-443350842 .color-N6{color:#EEF1F8;} + .d2-443350842 .color-N7{color:#FFFFFF;} + .d2-443350842 .color-B1{color:#0D32B2;} + .d2-443350842 .color-B2{color:#0D32B2;} + .d2-443350842 .color-B3{color:#E3E9FD;} + .d2-443350842 .color-B4{color:#E3E9FD;} + .d2-443350842 .color-B5{color:#EDF0FD;} + .d2-443350842 .color-B6{color:#F7F8FE;} + .d2-443350842 .color-AA2{color:#4A6FF3;} + .d2-443350842 .color-AA4{color:#EDF0FD;} + .d2-443350842 .color-AA5{color:#F7F8FE;} + .d2-443350842 .color-AB4{color:#EDF0FD;} + .d2-443350842 .color-AB5{color:#F7F8FE;}.appendix text.text{fill:#0A0F25}.md{--color-fg-default:#0A0F25;--color-fg-muted:#676C7E;--color-fg-subtle:#9499AB;--color-canvas-default:#FFFFFF;--color-canvas-subtle:#EEF1F8;--color-border-default:#0D32B2;--color-border-muted:#0D32B2;--color-neutral-muted:#EEF1F8;--color-accent-fg:#0D32B2;--color-accent-emphasis:#0D32B2;--color-attention-subtle:#676C7E;--color-danger-fg:red;}.sketch-overlay-B1{fill:url(#streaks-darker);mix-blend-mode:lighten}.sketch-overlay-B2{fill:url(#streaks-darker);mix-blend-mode:lighten}.sketch-overlay-B3{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-B4{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-B5{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-B6{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-AA2{fill:url(#streaks-dark);mix-blend-mode:overlay}.sketch-overlay-AA4{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-AA5{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-AB4{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-AB5{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-N1{fill:url(#streaks-darker);mix-blend-mode:lighten}.sketch-overlay-N2{fill:url(#streaks-dark);mix-blend-mode:overlay}.sketch-overlay-N3{fill:url(#streaks-normal);mix-blend-mode:color-burn}.sketch-overlay-N4{fill:url(#streaks-normal);mix-blend-mode:color-burn}.sketch-overlay-N5{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-N6{fill:url(#streaks-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 \ No newline at end of file diff --git a/e2etests/testdata/stable/square_3d/elk/board.exp.json b/e2etests/testdata/stable/square_3d/elk/board.exp.json index 870031f0e6..2e0638b79e 100644 --- a/e2etests/testdata/stable/square_3d/elk/board.exp.json +++ b/e2etests/testdata/stable/square_3d/elk/board.exp.json @@ -91,10 +91,8 @@ "id": "(rectangle -> square)[0]", "src": "rectangle", "srcArrow": "none", - "srcLabel": "", "dst": "square", "dstArrow": "triangle", - "dstLabel": "", "opacity": 1, "strokeDash": 0, "strokeWidth": 2, diff --git a/e2etests/testdata/stable/square_3d/elk/sketch.exp.svg b/e2etests/testdata/stable/square_3d/elk/sketch.exp.svg index f2006c64b2..7428077386 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-781267675 .fill-N1{fill:#0A0F25;} + .d2-781267675 .fill-N2{fill:#676C7E;} + .d2-781267675 .fill-N3{fill:#9499AB;} + .d2-781267675 .fill-N4{fill:#CFD2DD;} + .d2-781267675 .fill-N5{fill:#DEE1EB;} + .d2-781267675 .fill-N6{fill:#EEF1F8;} + .d2-781267675 .fill-N7{fill:#FFFFFF;} + .d2-781267675 .fill-B1{fill:#0D32B2;} + .d2-781267675 .fill-B2{fill:#0D32B2;} + .d2-781267675 .fill-B3{fill:#E3E9FD;} + .d2-781267675 .fill-B4{fill:#E3E9FD;} + .d2-781267675 .fill-B5{fill:#EDF0FD;} + .d2-781267675 .fill-B6{fill:#F7F8FE;} + .d2-781267675 .fill-AA2{fill:#4A6FF3;} + .d2-781267675 .fill-AA4{fill:#EDF0FD;} + .d2-781267675 .fill-AA5{fill:#F7F8FE;} + .d2-781267675 .fill-AB4{fill:#EDF0FD;} + .d2-781267675 .fill-AB5{fill:#F7F8FE;} + .d2-781267675 .stroke-N1{stroke:#0A0F25;} + .d2-781267675 .stroke-N2{stroke:#676C7E;} + .d2-781267675 .stroke-N3{stroke:#9499AB;} + .d2-781267675 .stroke-N4{stroke:#CFD2DD;} + .d2-781267675 .stroke-N5{stroke:#DEE1EB;} + .d2-781267675 .stroke-N6{stroke:#EEF1F8;} + .d2-781267675 .stroke-N7{stroke:#FFFFFF;} + .d2-781267675 .stroke-B1{stroke:#0D32B2;} + .d2-781267675 .stroke-B2{stroke:#0D32B2;} + .d2-781267675 .stroke-B3{stroke:#E3E9FD;} + .d2-781267675 .stroke-B4{stroke:#E3E9FD;} + .d2-781267675 .stroke-B5{stroke:#EDF0FD;} + .d2-781267675 .stroke-B6{stroke:#F7F8FE;} + .d2-781267675 .stroke-AA2{stroke:#4A6FF3;} + .d2-781267675 .stroke-AA4{stroke:#EDF0FD;} + .d2-781267675 .stroke-AA5{stroke:#F7F8FE;} + .d2-781267675 .stroke-AB4{stroke:#EDF0FD;} + .d2-781267675 .stroke-AB5{stroke:#F7F8FE;} + .d2-781267675 .background-color-N1{background-color:#0A0F25;} + .d2-781267675 .background-color-N2{background-color:#676C7E;} + .d2-781267675 .background-color-N3{background-color:#9499AB;} + .d2-781267675 .background-color-N4{background-color:#CFD2DD;} + .d2-781267675 .background-color-N5{background-color:#DEE1EB;} + .d2-781267675 .background-color-N6{background-color:#EEF1F8;} + .d2-781267675 .background-color-N7{background-color:#FFFFFF;} + .d2-781267675 .background-color-B1{background-color:#0D32B2;} + .d2-781267675 .background-color-B2{background-color:#0D32B2;} + .d2-781267675 .background-color-B3{background-color:#E3E9FD;} + .d2-781267675 .background-color-B4{background-color:#E3E9FD;} + .d2-781267675 .background-color-B5{background-color:#EDF0FD;} + .d2-781267675 .background-color-B6{background-color:#F7F8FE;} + .d2-781267675 .background-color-AA2{background-color:#4A6FF3;} + .d2-781267675 .background-color-AA4{background-color:#EDF0FD;} + .d2-781267675 .background-color-AA5{background-color:#F7F8FE;} + .d2-781267675 .background-color-AB4{background-color:#EDF0FD;} + .d2-781267675 .background-color-AB5{background-color:#F7F8FE;} + .d2-781267675 .color-N1{color:#0A0F25;} + .d2-781267675 .color-N2{color:#676C7E;} + .d2-781267675 .color-N3{color:#9499AB;} + .d2-781267675 .color-N4{color:#CFD2DD;} + .d2-781267675 .color-N5{color:#DEE1EB;} + .d2-781267675 .color-N6{color:#EEF1F8;} + .d2-781267675 .color-N7{color:#FFFFFF;} + .d2-781267675 .color-B1{color:#0D32B2;} + .d2-781267675 .color-B2{color:#0D32B2;} + .d2-781267675 .color-B3{color:#E3E9FD;} + .d2-781267675 .color-B4{color:#E3E9FD;} + .d2-781267675 .color-B5{color:#EDF0FD;} + .d2-781267675 .color-B6{color:#F7F8FE;} + .d2-781267675 .color-AA2{color:#4A6FF3;} + .d2-781267675 .color-AA4{color:#EDF0FD;} + .d2-781267675 .color-AA5{color:#F7F8FE;} + .d2-781267675 .color-AB4{color:#EDF0FD;} + .d2-781267675 .color-AB5{color:#F7F8FE;}.appendix text.text{fill:#0A0F25}.md{--color-fg-default:#0A0F25;--color-fg-muted:#676C7E;--color-fg-subtle:#9499AB;--color-canvas-default:#FFFFFF;--color-canvas-subtle:#EEF1F8;--color-border-default:#0D32B2;--color-border-muted:#0D32B2;--color-neutral-muted:#EEF1F8;--color-accent-fg:#0D32B2;--color-accent-emphasis:#0D32B2;--color-attention-subtle:#676C7E;--color-danger-fg:red;}.sketch-overlay-B1{fill:url(#streaks-darker);mix-blend-mode:lighten}.sketch-overlay-B2{fill:url(#streaks-darker);mix-blend-mode:lighten}.sketch-overlay-B3{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-B4{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-B5{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-B6{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-AA2{fill:url(#streaks-dark);mix-blend-mode:overlay}.sketch-overlay-AA4{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-AA5{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-AB4{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-AB5{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-N1{fill:url(#streaks-darker);mix-blend-mode:lighten}.sketch-overlay-N2{fill:url(#streaks-dark);mix-blend-mode:overlay}.sketch-overlay-N3{fill:url(#streaks-normal);mix-blend-mode:color-burn}.sketch-overlay-N4{fill:url(#streaks-normal);mix-blend-mode:color-burn}.sketch-overlay-N5{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-N6{fill:url(#streaks-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 \ No newline at end of file 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 2956ec07fb..18922787fd 100644 --- a/e2etests/testdata/stable/straight_hierarchy_container/dagre/board.exp.json +++ b/e2etests/testdata/stable/straight_hierarchy_container/dagre/board.exp.json @@ -1034,10 +1034,8 @@ "id": "(b -> l1.b)[0]", "src": "b", "srcArrow": "none", - "srcLabel": "", "dst": "l1.b", "dstArrow": "triangle", - "dstLabel": "", "opacity": 1, "strokeDash": 0, "strokeWidth": 2, @@ -1083,10 +1081,8 @@ "id": "(a -> l1.a)[0]", "src": "a", "srcArrow": "none", - "srcLabel": "", "dst": "l1.a", "dstArrow": "triangle", - "dstLabel": "", "opacity": 1, "strokeDash": 0, "strokeWidth": 2, @@ -1132,10 +1128,8 @@ "id": "(c -> l1.c)[0]", "src": "c", "srcArrow": "none", - "srcLabel": "", "dst": "l1.c", "dstArrow": "triangle", - "dstLabel": "", "opacity": 1, "strokeDash": 0, "strokeWidth": 2, @@ -1181,10 +1175,8 @@ "id": "(l1.a -> l2c1.a)[0]", "src": "l1.a", "srcArrow": "none", - "srcLabel": "", "dst": "l2c1.a", "dstArrow": "triangle", - "dstLabel": "", "opacity": 1, "strokeDash": 0, "strokeWidth": 2, @@ -1242,10 +1234,8 @@ "id": "(l1.c -> l2c3.c)[0]", "src": "l1.c", "srcArrow": "none", - "srcLabel": "", "dst": "l2c3.c", "dstArrow": "triangle", - "dstLabel": "", "opacity": 1, "strokeDash": 0, "strokeWidth": 2, @@ -1303,10 +1293,8 @@ "id": "(l1.b -> l2c2.b)[0]", "src": "l1.b", "srcArrow": "none", - "srcLabel": "", "dst": "l2c2.b", "dstArrow": "triangle", - "dstLabel": "", "opacity": 1, "strokeDash": 0, "strokeWidth": 2, @@ -1364,10 +1352,8 @@ "id": "(l2c1.a -> l3c1.a)[0]", "src": "l2c1.a", "srcArrow": "none", - "srcLabel": "", "dst": "l3c1.a", "dstArrow": "triangle", - "dstLabel": "", "opacity": 1, "strokeDash": 0, "strokeWidth": 2, @@ -1425,10 +1411,8 @@ "id": "(l2c2.b -> l3c1.b)[0]", "src": "l2c2.b", "srcArrow": "none", - "srcLabel": "", "dst": "l3c1.b", "dstArrow": "triangle", - "dstLabel": "", "opacity": 1, "strokeDash": 0, "strokeWidth": 2, @@ -1486,10 +1470,8 @@ "id": "(l2c3.c -> l3c2.c)[0]", "src": "l2c3.c", "srcArrow": "none", - "srcLabel": "", "dst": "l3c2.c", "dstArrow": "triangle", - "dstLabel": "", "opacity": 1, "strokeDash": 0, "strokeWidth": 2, @@ -1547,10 +1529,8 @@ "id": "(l3c1.a -> l4.c1.a)[0]", "src": "l3c1.a", "srcArrow": "none", - "srcLabel": "", "dst": "l4.c1.a", "dstArrow": "triangle", - "dstLabel": "", "opacity": 1, "strokeDash": 0, "strokeWidth": 2, @@ -1620,10 +1600,8 @@ "id": "(l3c1.b -> l4.c2.b)[0]", "src": "l3c1.b", "srcArrow": "none", - "srcLabel": "", "dst": "l4.c2.b", "dstArrow": "triangle", - "dstLabel": "", "opacity": 1, "strokeDash": 0, "strokeWidth": 2, @@ -1693,10 +1671,8 @@ "id": "(l3c2.c -> l4.c3.c)[0]", "src": "l3c2.c", "srcArrow": "none", - "srcLabel": "", "dst": "l4.c3.c", "dstArrow": "triangle", - "dstLabel": "", "opacity": 1, "strokeDash": 0, "strokeWidth": 2, 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 86276eea5a..53e5ed9d3c 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-3300913788 .fill-N1{fill:#0A0F25;} + .d2-3300913788 .fill-N2{fill:#676C7E;} + .d2-3300913788 .fill-N3{fill:#9499AB;} + .d2-3300913788 .fill-N4{fill:#CFD2DD;} + .d2-3300913788 .fill-N5{fill:#DEE1EB;} + .d2-3300913788 .fill-N6{fill:#EEF1F8;} + .d2-3300913788 .fill-N7{fill:#FFFFFF;} + .d2-3300913788 .fill-B1{fill:#0D32B2;} + .d2-3300913788 .fill-B2{fill:#0D32B2;} + .d2-3300913788 .fill-B3{fill:#E3E9FD;} + .d2-3300913788 .fill-B4{fill:#E3E9FD;} + .d2-3300913788 .fill-B5{fill:#EDF0FD;} + .d2-3300913788 .fill-B6{fill:#F7F8FE;} + .d2-3300913788 .fill-AA2{fill:#4A6FF3;} + .d2-3300913788 .fill-AA4{fill:#EDF0FD;} + .d2-3300913788 .fill-AA5{fill:#F7F8FE;} + .d2-3300913788 .fill-AB4{fill:#EDF0FD;} + .d2-3300913788 .fill-AB5{fill:#F7F8FE;} + .d2-3300913788 .stroke-N1{stroke:#0A0F25;} + .d2-3300913788 .stroke-N2{stroke:#676C7E;} + .d2-3300913788 .stroke-N3{stroke:#9499AB;} + .d2-3300913788 .stroke-N4{stroke:#CFD2DD;} + .d2-3300913788 .stroke-N5{stroke:#DEE1EB;} + .d2-3300913788 .stroke-N6{stroke:#EEF1F8;} + .d2-3300913788 .stroke-N7{stroke:#FFFFFF;} + .d2-3300913788 .stroke-B1{stroke:#0D32B2;} + .d2-3300913788 .stroke-B2{stroke:#0D32B2;} + .d2-3300913788 .stroke-B3{stroke:#E3E9FD;} + .d2-3300913788 .stroke-B4{stroke:#E3E9FD;} + .d2-3300913788 .stroke-B5{stroke:#EDF0FD;} + .d2-3300913788 .stroke-B6{stroke:#F7F8FE;} + .d2-3300913788 .stroke-AA2{stroke:#4A6FF3;} + .d2-3300913788 .stroke-AA4{stroke:#EDF0FD;} + .d2-3300913788 .stroke-AA5{stroke:#F7F8FE;} + .d2-3300913788 .stroke-AB4{stroke:#EDF0FD;} + .d2-3300913788 .stroke-AB5{stroke:#F7F8FE;} + .d2-3300913788 .background-color-N1{background-color:#0A0F25;} + .d2-3300913788 .background-color-N2{background-color:#676C7E;} + .d2-3300913788 .background-color-N3{background-color:#9499AB;} + .d2-3300913788 .background-color-N4{background-color:#CFD2DD;} + .d2-3300913788 .background-color-N5{background-color:#DEE1EB;} + .d2-3300913788 .background-color-N6{background-color:#EEF1F8;} + .d2-3300913788 .background-color-N7{background-color:#FFFFFF;} + .d2-3300913788 .background-color-B1{background-color:#0D32B2;} + .d2-3300913788 .background-color-B2{background-color:#0D32B2;} + .d2-3300913788 .background-color-B3{background-color:#E3E9FD;} + .d2-3300913788 .background-color-B4{background-color:#E3E9FD;} + .d2-3300913788 .background-color-B5{background-color:#EDF0FD;} + .d2-3300913788 .background-color-B6{background-color:#F7F8FE;} + .d2-3300913788 .background-color-AA2{background-color:#4A6FF3;} + .d2-3300913788 .background-color-AA4{background-color:#EDF0FD;} + .d2-3300913788 .background-color-AA5{background-color:#F7F8FE;} + .d2-3300913788 .background-color-AB4{background-color:#EDF0FD;} + .d2-3300913788 .background-color-AB5{background-color:#F7F8FE;} + .d2-3300913788 .color-N1{color:#0A0F25;} + .d2-3300913788 .color-N2{color:#676C7E;} + .d2-3300913788 .color-N3{color:#9499AB;} + .d2-3300913788 .color-N4{color:#CFD2DD;} + .d2-3300913788 .color-N5{color:#DEE1EB;} + .d2-3300913788 .color-N6{color:#EEF1F8;} + .d2-3300913788 .color-N7{color:#FFFFFF;} + .d2-3300913788 .color-B1{color:#0D32B2;} + .d2-3300913788 .color-B2{color:#0D32B2;} + .d2-3300913788 .color-B3{color:#E3E9FD;} + .d2-3300913788 .color-B4{color:#E3E9FD;} + .d2-3300913788 .color-B5{color:#EDF0FD;} + .d2-3300913788 .color-B6{color:#F7F8FE;} + .d2-3300913788 .color-AA2{color:#4A6FF3;} + .d2-3300913788 .color-AA4{color:#EDF0FD;} + .d2-3300913788 .color-AA5{color:#F7F8FE;} + .d2-3300913788 .color-AB4{color:#EDF0FD;} + .d2-3300913788 .color-AB5{color:#F7F8FE;}.appendix text.text{fill:#0A0F25}.md{--color-fg-default:#0A0F25;--color-fg-muted:#676C7E;--color-fg-subtle:#9499AB;--color-canvas-default:#FFFFFF;--color-canvas-subtle:#EEF1F8;--color-border-default:#0D32B2;--color-border-muted:#0D32B2;--color-neutral-muted:#EEF1F8;--color-accent-fg:#0D32B2;--color-accent-emphasis:#0D32B2;--color-attention-subtle:#676C7E;--color-danger-fg:red;}.sketch-overlay-B1{fill:url(#streaks-darker);mix-blend-mode:lighten}.sketch-overlay-B2{fill:url(#streaks-darker);mix-blend-mode:lighten}.sketch-overlay-B3{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-B4{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-B5{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-B6{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-AA2{fill:url(#streaks-dark);mix-blend-mode:overlay}.sketch-overlay-AA4{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-AA5{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-AB4{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-AB5{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-N1{fill:url(#streaks-darker);mix-blend-mode:lighten}.sketch-overlay-N2{fill:url(#streaks-dark);mix-blend-mode:overlay}.sketch-overlay-N3{fill:url(#streaks-normal);mix-blend-mode:color-burn}.sketch-overlay-N4{fill:url(#streaks-normal);mix-blend-mode:color-burn}.sketch-overlay-N5{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-N6{fill:url(#streaks-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 \ No newline at end of file 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 30e0ff7682..9818a0916c 100644 --- a/e2etests/testdata/stable/straight_hierarchy_container/elk/board.exp.json +++ b/e2etests/testdata/stable/straight_hierarchy_container/elk/board.exp.json @@ -1034,10 +1034,8 @@ "id": "(b -> l1.b)[0]", "src": "b", "srcArrow": "none", - "srcLabel": "", "dst": "l1.b", "dstArrow": "triangle", - "dstLabel": "", "opacity": 1, "strokeDash": 0, "strokeWidth": 2, @@ -1074,10 +1072,8 @@ "id": "(a -> l1.a)[0]", "src": "a", "srcArrow": "none", - "srcLabel": "", "dst": "l1.a", "dstArrow": "triangle", - "dstLabel": "", "opacity": 1, "strokeDash": 0, "strokeWidth": 2, @@ -1114,10 +1110,8 @@ "id": "(c -> l1.c)[0]", "src": "c", "srcArrow": "none", - "srcLabel": "", "dst": "l1.c", "dstArrow": "triangle", - "dstLabel": "", "opacity": 1, "strokeDash": 0, "strokeWidth": 2, @@ -1154,10 +1148,8 @@ "id": "(l1.a -> l2c1.a)[0]", "src": "l1.a", "srcArrow": "none", - "srcLabel": "", "dst": "l2c1.a", "dstArrow": "triangle", - "dstLabel": "", "opacity": 1, "strokeDash": 0, "strokeWidth": 2, @@ -1202,10 +1194,8 @@ "id": "(l1.c -> l2c3.c)[0]", "src": "l1.c", "srcArrow": "none", - "srcLabel": "", "dst": "l2c3.c", "dstArrow": "triangle", - "dstLabel": "", "opacity": 1, "strokeDash": 0, "strokeWidth": 2, @@ -1250,10 +1240,8 @@ "id": "(l1.b -> l2c2.b)[0]", "src": "l1.b", "srcArrow": "none", - "srcLabel": "", "dst": "l2c2.b", "dstArrow": "triangle", - "dstLabel": "", "opacity": 1, "strokeDash": 0, "strokeWidth": 2, @@ -1298,10 +1286,8 @@ "id": "(l2c1.a -> l3c1.a)[0]", "src": "l2c1.a", "srcArrow": "none", - "srcLabel": "", "dst": "l3c1.a", "dstArrow": "triangle", - "dstLabel": "", "opacity": 1, "strokeDash": 0, "strokeWidth": 2, @@ -1346,10 +1332,8 @@ "id": "(l2c2.b -> l3c1.b)[0]", "src": "l2c2.b", "srcArrow": "none", - "srcLabel": "", "dst": "l3c1.b", "dstArrow": "triangle", - "dstLabel": "", "opacity": 1, "strokeDash": 0, "strokeWidth": 2, @@ -1394,10 +1378,8 @@ "id": "(l2c3.c -> l3c2.c)[0]", "src": "l2c3.c", "srcArrow": "none", - "srcLabel": "", "dst": "l3c2.c", "dstArrow": "triangle", - "dstLabel": "", "opacity": 1, "strokeDash": 0, "strokeWidth": 2, @@ -1434,10 +1416,8 @@ "id": "(l3c1.a -> l4.c1.a)[0]", "src": "l3c1.a", "srcArrow": "none", - "srcLabel": "", "dst": "l4.c1.a", "dstArrow": "triangle", - "dstLabel": "", "opacity": 1, "strokeDash": 0, "strokeWidth": 2, @@ -1474,10 +1454,8 @@ "id": "(l3c1.b -> l4.c2.b)[0]", "src": "l3c1.b", "srcArrow": "none", - "srcLabel": "", "dst": "l4.c2.b", "dstArrow": "triangle", - "dstLabel": "", "opacity": 1, "strokeDash": 0, "strokeWidth": 2, @@ -1522,10 +1500,8 @@ "id": "(l3c2.c -> l4.c3.c)[0]", "src": "l3c2.c", "srcArrow": "none", - "srcLabel": "", "dst": "l4.c3.c", "dstArrow": "triangle", - "dstLabel": "", "opacity": 1, "strokeDash": 0, "strokeWidth": 2, 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 2577b88a86..c98b6c5a3b 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-1968745254 .fill-N1{fill:#0A0F25;} + .d2-1968745254 .fill-N2{fill:#676C7E;} + .d2-1968745254 .fill-N3{fill:#9499AB;} + .d2-1968745254 .fill-N4{fill:#CFD2DD;} + .d2-1968745254 .fill-N5{fill:#DEE1EB;} + .d2-1968745254 .fill-N6{fill:#EEF1F8;} + .d2-1968745254 .fill-N7{fill:#FFFFFF;} + .d2-1968745254 .fill-B1{fill:#0D32B2;} + .d2-1968745254 .fill-B2{fill:#0D32B2;} + .d2-1968745254 .fill-B3{fill:#E3E9FD;} + .d2-1968745254 .fill-B4{fill:#E3E9FD;} + .d2-1968745254 .fill-B5{fill:#EDF0FD;} + .d2-1968745254 .fill-B6{fill:#F7F8FE;} + .d2-1968745254 .fill-AA2{fill:#4A6FF3;} + .d2-1968745254 .fill-AA4{fill:#EDF0FD;} + .d2-1968745254 .fill-AA5{fill:#F7F8FE;} + .d2-1968745254 .fill-AB4{fill:#EDF0FD;} + .d2-1968745254 .fill-AB5{fill:#F7F8FE;} + .d2-1968745254 .stroke-N1{stroke:#0A0F25;} + .d2-1968745254 .stroke-N2{stroke:#676C7E;} + .d2-1968745254 .stroke-N3{stroke:#9499AB;} + .d2-1968745254 .stroke-N4{stroke:#CFD2DD;} + .d2-1968745254 .stroke-N5{stroke:#DEE1EB;} + .d2-1968745254 .stroke-N6{stroke:#EEF1F8;} + .d2-1968745254 .stroke-N7{stroke:#FFFFFF;} + .d2-1968745254 .stroke-B1{stroke:#0D32B2;} + .d2-1968745254 .stroke-B2{stroke:#0D32B2;} + .d2-1968745254 .stroke-B3{stroke:#E3E9FD;} + .d2-1968745254 .stroke-B4{stroke:#E3E9FD;} + .d2-1968745254 .stroke-B5{stroke:#EDF0FD;} + .d2-1968745254 .stroke-B6{stroke:#F7F8FE;} + .d2-1968745254 .stroke-AA2{stroke:#4A6FF3;} + .d2-1968745254 .stroke-AA4{stroke:#EDF0FD;} + .d2-1968745254 .stroke-AA5{stroke:#F7F8FE;} + .d2-1968745254 .stroke-AB4{stroke:#EDF0FD;} + .d2-1968745254 .stroke-AB5{stroke:#F7F8FE;} + .d2-1968745254 .background-color-N1{background-color:#0A0F25;} + .d2-1968745254 .background-color-N2{background-color:#676C7E;} + .d2-1968745254 .background-color-N3{background-color:#9499AB;} + .d2-1968745254 .background-color-N4{background-color:#CFD2DD;} + .d2-1968745254 .background-color-N5{background-color:#DEE1EB;} + .d2-1968745254 .background-color-N6{background-color:#EEF1F8;} + .d2-1968745254 .background-color-N7{background-color:#FFFFFF;} + .d2-1968745254 .background-color-B1{background-color:#0D32B2;} + .d2-1968745254 .background-color-B2{background-color:#0D32B2;} + .d2-1968745254 .background-color-B3{background-color:#E3E9FD;} + .d2-1968745254 .background-color-B4{background-color:#E3E9FD;} + .d2-1968745254 .background-color-B5{background-color:#EDF0FD;} + .d2-1968745254 .background-color-B6{background-color:#F7F8FE;} + .d2-1968745254 .background-color-AA2{background-color:#4A6FF3;} + .d2-1968745254 .background-color-AA4{background-color:#EDF0FD;} + .d2-1968745254 .background-color-AA5{background-color:#F7F8FE;} + .d2-1968745254 .background-color-AB4{background-color:#EDF0FD;} + .d2-1968745254 .background-color-AB5{background-color:#F7F8FE;} + .d2-1968745254 .color-N1{color:#0A0F25;} + .d2-1968745254 .color-N2{color:#676C7E;} + .d2-1968745254 .color-N3{color:#9499AB;} + .d2-1968745254 .color-N4{color:#CFD2DD;} + .d2-1968745254 .color-N5{color:#DEE1EB;} + .d2-1968745254 .color-N6{color:#EEF1F8;} + .d2-1968745254 .color-N7{color:#FFFFFF;} + .d2-1968745254 .color-B1{color:#0D32B2;} + .d2-1968745254 .color-B2{color:#0D32B2;} + .d2-1968745254 .color-B3{color:#E3E9FD;} + .d2-1968745254 .color-B4{color:#E3E9FD;} + .d2-1968745254 .color-B5{color:#EDF0FD;} + .d2-1968745254 .color-B6{color:#F7F8FE;} + .d2-1968745254 .color-AA2{color:#4A6FF3;} + .d2-1968745254 .color-AA4{color:#EDF0FD;} + .d2-1968745254 .color-AA5{color:#F7F8FE;} + .d2-1968745254 .color-AB4{color:#EDF0FD;} + .d2-1968745254 .color-AB5{color:#F7F8FE;}.appendix text.text{fill:#0A0F25}.md{--color-fg-default:#0A0F25;--color-fg-muted:#676C7E;--color-fg-subtle:#9499AB;--color-canvas-default:#FFFFFF;--color-canvas-subtle:#EEF1F8;--color-border-default:#0D32B2;--color-border-muted:#0D32B2;--color-neutral-muted:#EEF1F8;--color-accent-fg:#0D32B2;--color-accent-emphasis:#0D32B2;--color-attention-subtle:#676C7E;--color-danger-fg:red;}.sketch-overlay-B1{fill:url(#streaks-darker);mix-blend-mode:lighten}.sketch-overlay-B2{fill:url(#streaks-darker);mix-blend-mode:lighten}.sketch-overlay-B3{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-B4{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-B5{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-B6{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-AA2{fill:url(#streaks-dark);mix-blend-mode:overlay}.sketch-overlay-AA4{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-AA5{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-AB4{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-AB5{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-N1{fill:url(#streaks-darker);mix-blend-mode:lighten}.sketch-overlay-N2{fill:url(#streaks-dark);mix-blend-mode:overlay}.sketch-overlay-N3{fill:url(#streaks-normal);mix-blend-mode:color-burn}.sketch-overlay-N4{fill:url(#streaks-normal);mix-blend-mode:color-burn}.sketch-overlay-N5{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-N6{fill:url(#streaks-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 \ No newline at end of file diff --git a/e2etests/testdata/stable/stylish/dagre/board.exp.json b/e2etests/testdata/stable/stylish/dagre/board.exp.json index 645a1b8474..e526f51305 100644 --- a/e2etests/testdata/stable/stylish/dagre/board.exp.json +++ b/e2etests/testdata/stable/stylish/dagre/board.exp.json @@ -91,10 +91,8 @@ "id": "(x -> y)[0]", "src": "x", "srcArrow": "none", - "srcLabel": "", "dst": "y", "dstArrow": "triangle", - "dstLabel": "", "opacity": 0.5, "strokeDash": 5, "strokeWidth": 2, diff --git a/e2etests/testdata/stable/stylish/dagre/sketch.exp.svg b/e2etests/testdata/stable/stylish/dagre/sketch.exp.svg index 2a0874edd1..d000d3cc65 100644 --- a/e2etests/testdata/stable/stylish/dagre/sketch.exp.svg +++ b/e2etests/testdata/stable/stylish/dagre/sketch.exp.svg @@ -1,16 +1,16 @@ - + .d2-2248129539 .fill-N1{fill:#0A0F25;} + .d2-2248129539 .fill-N2{fill:#676C7E;} + .d2-2248129539 .fill-N3{fill:#9499AB;} + .d2-2248129539 .fill-N4{fill:#CFD2DD;} + .d2-2248129539 .fill-N5{fill:#DEE1EB;} + .d2-2248129539 .fill-N6{fill:#EEF1F8;} + .d2-2248129539 .fill-N7{fill:#FFFFFF;} + .d2-2248129539 .fill-B1{fill:#0D32B2;} + .d2-2248129539 .fill-B2{fill:#0D32B2;} + .d2-2248129539 .fill-B3{fill:#E3E9FD;} + .d2-2248129539 .fill-B4{fill:#E3E9FD;} + .d2-2248129539 .fill-B5{fill:#EDF0FD;} + .d2-2248129539 .fill-B6{fill:#F7F8FE;} + .d2-2248129539 .fill-AA2{fill:#4A6FF3;} + .d2-2248129539 .fill-AA4{fill:#EDF0FD;} + .d2-2248129539 .fill-AA5{fill:#F7F8FE;} + .d2-2248129539 .fill-AB4{fill:#EDF0FD;} + .d2-2248129539 .fill-AB5{fill:#F7F8FE;} + .d2-2248129539 .stroke-N1{stroke:#0A0F25;} + .d2-2248129539 .stroke-N2{stroke:#676C7E;} + .d2-2248129539 .stroke-N3{stroke:#9499AB;} + .d2-2248129539 .stroke-N4{stroke:#CFD2DD;} + .d2-2248129539 .stroke-N5{stroke:#DEE1EB;} + .d2-2248129539 .stroke-N6{stroke:#EEF1F8;} + .d2-2248129539 .stroke-N7{stroke:#FFFFFF;} + .d2-2248129539 .stroke-B1{stroke:#0D32B2;} + .d2-2248129539 .stroke-B2{stroke:#0D32B2;} + .d2-2248129539 .stroke-B3{stroke:#E3E9FD;} + .d2-2248129539 .stroke-B4{stroke:#E3E9FD;} + .d2-2248129539 .stroke-B5{stroke:#EDF0FD;} + .d2-2248129539 .stroke-B6{stroke:#F7F8FE;} + .d2-2248129539 .stroke-AA2{stroke:#4A6FF3;} + .d2-2248129539 .stroke-AA4{stroke:#EDF0FD;} + .d2-2248129539 .stroke-AA5{stroke:#F7F8FE;} + .d2-2248129539 .stroke-AB4{stroke:#EDF0FD;} + .d2-2248129539 .stroke-AB5{stroke:#F7F8FE;} + .d2-2248129539 .background-color-N1{background-color:#0A0F25;} + .d2-2248129539 .background-color-N2{background-color:#676C7E;} + .d2-2248129539 .background-color-N3{background-color:#9499AB;} + .d2-2248129539 .background-color-N4{background-color:#CFD2DD;} + .d2-2248129539 .background-color-N5{background-color:#DEE1EB;} + .d2-2248129539 .background-color-N6{background-color:#EEF1F8;} + .d2-2248129539 .background-color-N7{background-color:#FFFFFF;} + .d2-2248129539 .background-color-B1{background-color:#0D32B2;} + .d2-2248129539 .background-color-B2{background-color:#0D32B2;} + .d2-2248129539 .background-color-B3{background-color:#E3E9FD;} + .d2-2248129539 .background-color-B4{background-color:#E3E9FD;} + .d2-2248129539 .background-color-B5{background-color:#EDF0FD;} + .d2-2248129539 .background-color-B6{background-color:#F7F8FE;} + .d2-2248129539 .background-color-AA2{background-color:#4A6FF3;} + .d2-2248129539 .background-color-AA4{background-color:#EDF0FD;} + .d2-2248129539 .background-color-AA5{background-color:#F7F8FE;} + .d2-2248129539 .background-color-AB4{background-color:#EDF0FD;} + .d2-2248129539 .background-color-AB5{background-color:#F7F8FE;} + .d2-2248129539 .color-N1{color:#0A0F25;} + .d2-2248129539 .color-N2{color:#676C7E;} + .d2-2248129539 .color-N3{color:#9499AB;} + .d2-2248129539 .color-N4{color:#CFD2DD;} + .d2-2248129539 .color-N5{color:#DEE1EB;} + .d2-2248129539 .color-N6{color:#EEF1F8;} + .d2-2248129539 .color-N7{color:#FFFFFF;} + .d2-2248129539 .color-B1{color:#0D32B2;} + .d2-2248129539 .color-B2{color:#0D32B2;} + .d2-2248129539 .color-B3{color:#E3E9FD;} + .d2-2248129539 .color-B4{color:#E3E9FD;} + .d2-2248129539 .color-B5{color:#EDF0FD;} + .d2-2248129539 .color-B6{color:#F7F8FE;} + .d2-2248129539 .color-AA2{color:#4A6FF3;} + .d2-2248129539 .color-AA4{color:#EDF0FD;} + .d2-2248129539 .color-AA5{color:#F7F8FE;} + .d2-2248129539 .color-AB4{color:#EDF0FD;} + .d2-2248129539 .color-AB5{color:#F7F8FE;}.appendix text.text{fill:#0A0F25}.md{--color-fg-default:#0A0F25;--color-fg-muted:#676C7E;--color-fg-subtle:#9499AB;--color-canvas-default:#FFFFFF;--color-canvas-subtle:#EEF1F8;--color-border-default:#0D32B2;--color-border-muted:#0D32B2;--color-neutral-muted:#EEF1F8;--color-accent-fg:#0D32B2;--color-accent-emphasis:#0D32B2;--color-attention-subtle:#676C7E;--color-danger-fg:red;}.sketch-overlay-B1{fill:url(#streaks-darker);mix-blend-mode:lighten}.sketch-overlay-B2{fill:url(#streaks-darker);mix-blend-mode:lighten}.sketch-overlay-B3{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-B4{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-B5{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-B6{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-AA2{fill:url(#streaks-dark);mix-blend-mode:overlay}.sketch-overlay-AA4{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-AA5{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-AB4{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-AB5{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-N1{fill:url(#streaks-darker);mix-blend-mode:lighten}.sketch-overlay-N2{fill:url(#streaks-dark);mix-blend-mode:overlay}.sketch-overlay-N3{fill:url(#streaks-normal);mix-blend-mode:color-burn}.sketch-overlay-N4{fill:url(#streaks-normal);mix-blend-mode:color-burn}.sketch-overlay-N5{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-N6{fill:url(#streaks-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 \ No newline at end of file diff --git a/e2etests/testdata/stable/stylish/elk/board.exp.json b/e2etests/testdata/stable/stylish/elk/board.exp.json index c2f94a254b..23f758ba8d 100644 --- a/e2etests/testdata/stable/stylish/elk/board.exp.json +++ b/e2etests/testdata/stable/stylish/elk/board.exp.json @@ -91,10 +91,8 @@ "id": "(x -> y)[0]", "src": "x", "srcArrow": "none", - "srcLabel": "", "dst": "y", "dstArrow": "triangle", - "dstLabel": "", "opacity": 0.5, "strokeDash": 5, "strokeWidth": 2, diff --git a/e2etests/testdata/stable/stylish/elk/sketch.exp.svg b/e2etests/testdata/stable/stylish/elk/sketch.exp.svg index c3ac5bbab3..31f8adf350 100644 --- a/e2etests/testdata/stable/stylish/elk/sketch.exp.svg +++ b/e2etests/testdata/stable/stylish/elk/sketch.exp.svg @@ -1,16 +1,16 @@ - + .d2-2862809397 .fill-N1{fill:#0A0F25;} + .d2-2862809397 .fill-N2{fill:#676C7E;} + .d2-2862809397 .fill-N3{fill:#9499AB;} + .d2-2862809397 .fill-N4{fill:#CFD2DD;} + .d2-2862809397 .fill-N5{fill:#DEE1EB;} + .d2-2862809397 .fill-N6{fill:#EEF1F8;} + .d2-2862809397 .fill-N7{fill:#FFFFFF;} + .d2-2862809397 .fill-B1{fill:#0D32B2;} + .d2-2862809397 .fill-B2{fill:#0D32B2;} + .d2-2862809397 .fill-B3{fill:#E3E9FD;} + .d2-2862809397 .fill-B4{fill:#E3E9FD;} + .d2-2862809397 .fill-B5{fill:#EDF0FD;} + .d2-2862809397 .fill-B6{fill:#F7F8FE;} + .d2-2862809397 .fill-AA2{fill:#4A6FF3;} + .d2-2862809397 .fill-AA4{fill:#EDF0FD;} + .d2-2862809397 .fill-AA5{fill:#F7F8FE;} + .d2-2862809397 .fill-AB4{fill:#EDF0FD;} + .d2-2862809397 .fill-AB5{fill:#F7F8FE;} + .d2-2862809397 .stroke-N1{stroke:#0A0F25;} + .d2-2862809397 .stroke-N2{stroke:#676C7E;} + .d2-2862809397 .stroke-N3{stroke:#9499AB;} + .d2-2862809397 .stroke-N4{stroke:#CFD2DD;} + .d2-2862809397 .stroke-N5{stroke:#DEE1EB;} + .d2-2862809397 .stroke-N6{stroke:#EEF1F8;} + .d2-2862809397 .stroke-N7{stroke:#FFFFFF;} + .d2-2862809397 .stroke-B1{stroke:#0D32B2;} + .d2-2862809397 .stroke-B2{stroke:#0D32B2;} + .d2-2862809397 .stroke-B3{stroke:#E3E9FD;} + .d2-2862809397 .stroke-B4{stroke:#E3E9FD;} + .d2-2862809397 .stroke-B5{stroke:#EDF0FD;} + .d2-2862809397 .stroke-B6{stroke:#F7F8FE;} + .d2-2862809397 .stroke-AA2{stroke:#4A6FF3;} + .d2-2862809397 .stroke-AA4{stroke:#EDF0FD;} + .d2-2862809397 .stroke-AA5{stroke:#F7F8FE;} + .d2-2862809397 .stroke-AB4{stroke:#EDF0FD;} + .d2-2862809397 .stroke-AB5{stroke:#F7F8FE;} + .d2-2862809397 .background-color-N1{background-color:#0A0F25;} + .d2-2862809397 .background-color-N2{background-color:#676C7E;} + .d2-2862809397 .background-color-N3{background-color:#9499AB;} + .d2-2862809397 .background-color-N4{background-color:#CFD2DD;} + .d2-2862809397 .background-color-N5{background-color:#DEE1EB;} + .d2-2862809397 .background-color-N6{background-color:#EEF1F8;} + .d2-2862809397 .background-color-N7{background-color:#FFFFFF;} + .d2-2862809397 .background-color-B1{background-color:#0D32B2;} + .d2-2862809397 .background-color-B2{background-color:#0D32B2;} + .d2-2862809397 .background-color-B3{background-color:#E3E9FD;} + .d2-2862809397 .background-color-B4{background-color:#E3E9FD;} + .d2-2862809397 .background-color-B5{background-color:#EDF0FD;} + .d2-2862809397 .background-color-B6{background-color:#F7F8FE;} + .d2-2862809397 .background-color-AA2{background-color:#4A6FF3;} + .d2-2862809397 .background-color-AA4{background-color:#EDF0FD;} + .d2-2862809397 .background-color-AA5{background-color:#F7F8FE;} + .d2-2862809397 .background-color-AB4{background-color:#EDF0FD;} + .d2-2862809397 .background-color-AB5{background-color:#F7F8FE;} + .d2-2862809397 .color-N1{color:#0A0F25;} + .d2-2862809397 .color-N2{color:#676C7E;} + .d2-2862809397 .color-N3{color:#9499AB;} + .d2-2862809397 .color-N4{color:#CFD2DD;} + .d2-2862809397 .color-N5{color:#DEE1EB;} + .d2-2862809397 .color-N6{color:#EEF1F8;} + .d2-2862809397 .color-N7{color:#FFFFFF;} + .d2-2862809397 .color-B1{color:#0D32B2;} + .d2-2862809397 .color-B2{color:#0D32B2;} + .d2-2862809397 .color-B3{color:#E3E9FD;} + .d2-2862809397 .color-B4{color:#E3E9FD;} + .d2-2862809397 .color-B5{color:#EDF0FD;} + .d2-2862809397 .color-B6{color:#F7F8FE;} + .d2-2862809397 .color-AA2{color:#4A6FF3;} + .d2-2862809397 .color-AA4{color:#EDF0FD;} + .d2-2862809397 .color-AA5{color:#F7F8FE;} + .d2-2862809397 .color-AB4{color:#EDF0FD;} + .d2-2862809397 .color-AB5{color:#F7F8FE;}.appendix text.text{fill:#0A0F25}.md{--color-fg-default:#0A0F25;--color-fg-muted:#676C7E;--color-fg-subtle:#9499AB;--color-canvas-default:#FFFFFF;--color-canvas-subtle:#EEF1F8;--color-border-default:#0D32B2;--color-border-muted:#0D32B2;--color-neutral-muted:#EEF1F8;--color-accent-fg:#0D32B2;--color-accent-emphasis:#0D32B2;--color-attention-subtle:#676C7E;--color-danger-fg:red;}.sketch-overlay-B1{fill:url(#streaks-darker);mix-blend-mode:lighten}.sketch-overlay-B2{fill:url(#streaks-darker);mix-blend-mode:lighten}.sketch-overlay-B3{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-B4{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-B5{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-B6{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-AA2{fill:url(#streaks-dark);mix-blend-mode:overlay}.sketch-overlay-AA4{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-AA5{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-AB4{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-AB5{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-N1{fill:url(#streaks-darker);mix-blend-mode:lighten}.sketch-overlay-N2{fill:url(#streaks-dark);mix-blend-mode:overlay}.sketch-overlay-N3{fill:url(#streaks-normal);mix-blend-mode:color-burn}.sketch-overlay-N4{fill:url(#streaks-normal);mix-blend-mode:color-burn}.sketch-overlay-N5{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-N6{fill:url(#streaks-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 \ No newline at end of file diff --git a/e2etests/testdata/stable/teleport_grid/dagre/board.exp.json b/e2etests/testdata/stable/teleport_grid/dagre/board.exp.json index bc7ba32710..db283cb2ed 100644 --- a/e2etests/testdata/stable/teleport_grid/dagre/board.exp.json +++ b/e2etests/testdata/stable/teleport_grid/dagre/board.exp.json @@ -1272,10 +1272,8 @@ "id": "(users -- via)[0]", "src": "users", "srcArrow": "none", - "srcLabel": "", "dst": "via", "dstArrow": "none", - "dstLabel": "", "opacity": 1, "strokeDash": 0, "strokeWidth": 2, @@ -1321,10 +1319,8 @@ "id": "(via -- teleport)[0]", "src": "via", "srcArrow": "none", - "srcLabel": "", "dst": "teleport", "dstArrow": "none", - "dstLabel": "", "opacity": 1, "strokeDash": 0, "strokeWidth": 2, @@ -1370,10 +1366,8 @@ "id": "(teleport -> jita)[0]", "src": "teleport", "srcArrow": "none", - "srcLabel": "", "dst": "jita", "dstArrow": "triangle", - "dstLabel": "", "opacity": 1, "strokeDash": 0, "strokeWidth": 2, @@ -1419,10 +1413,8 @@ "id": "(teleport -> infra)[0]", "src": "teleport", "srcArrow": "none", - "srcLabel": "", "dst": "infra", "dstArrow": "triangle", - "dstLabel": "", "opacity": 1, "strokeDash": 0, "strokeWidth": 2, @@ -1468,10 +1460,8 @@ "id": "(teleport -> identity provider)[0]", "src": "teleport", "srcArrow": "none", - "srcLabel": "", "dst": "identity provider", "dstArrow": "triangle", - "dstLabel": "", "opacity": 1, "strokeDash": 0, "strokeWidth": 2, @@ -1517,10 +1507,8 @@ "id": "(teleport <- identity provider)[0]", "src": "teleport", "srcArrow": "triangle", - "srcLabel": "", "dst": "identity provider", "dstArrow": "none", - "dstLabel": "", "opacity": 1, "strokeDash": 0, "strokeWidth": 2, diff --git a/e2etests/testdata/stable/teleport_grid/dagre/sketch.exp.svg b/e2etests/testdata/stable/teleport_grid/dagre/sketch.exp.svg index e0c4c6689a..af18432b50 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
    \ No newline at end of file diff --git a/e2etests/testdata/stable/teleport_grid/elk/board.exp.json b/e2etests/testdata/stable/teleport_grid/elk/board.exp.json index 2545af9d6b..6b789e179f 100644 --- a/e2etests/testdata/stable/teleport_grid/elk/board.exp.json +++ b/e2etests/testdata/stable/teleport_grid/elk/board.exp.json @@ -1272,10 +1272,8 @@ "id": "(users -- via)[0]", "src": "users", "srcArrow": "none", - "srcLabel": "", "dst": "via", "dstArrow": "none", - "dstLabel": "", "opacity": 1, "strokeDash": 0, "strokeWidth": 2, @@ -1312,10 +1310,8 @@ "id": "(via -- teleport)[0]", "src": "via", "srcArrow": "none", - "srcLabel": "", "dst": "teleport", "dstArrow": "none", - "dstLabel": "", "opacity": 1, "strokeDash": 0, "strokeWidth": 2, @@ -1352,10 +1348,8 @@ "id": "(teleport -> jita)[0]", "src": "teleport", "srcArrow": "none", - "srcLabel": "", "dst": "jita", "dstArrow": "triangle", - "dstLabel": "", "opacity": 1, "strokeDash": 0, "strokeWidth": 2, @@ -1400,10 +1394,8 @@ "id": "(teleport -> infra)[0]", "src": "teleport", "srcArrow": "none", - "srcLabel": "", "dst": "infra", "dstArrow": "triangle", - "dstLabel": "", "opacity": 1, "strokeDash": 0, "strokeWidth": 2, @@ -1440,10 +1432,8 @@ "id": "(teleport -> identity provider)[0]", "src": "teleport", "srcArrow": "none", - "srcLabel": "", "dst": "identity provider", "dstArrow": "triangle", - "dstLabel": "", "opacity": 1, "strokeDash": 0, "strokeWidth": 2, @@ -1488,10 +1478,8 @@ "id": "(teleport <- identity provider)[0]", "src": "teleport", "srcArrow": "triangle", - "srcLabel": "", "dst": "identity provider", "dstArrow": "none", - "dstLabel": "", "opacity": 1, "strokeDash": 0, "strokeWidth": 2, diff --git a/e2etests/testdata/stable/teleport_grid/elk/sketch.exp.svg b/e2etests/testdata/stable/teleport_grid/elk/sketch.exp.svg index 9c70729279..b0c2393b19 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
    \ No newline at end of file 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 3db2516f88..22b2170859 100644 --- a/e2etests/testdata/stable/text_font_sizes/dagre/board.exp.json +++ b/e2etests/testdata/stable/text_font_sizes/dagre/board.exp.json @@ -129,10 +129,8 @@ "id": "(mama bear -> bear)[0]", "src": "mama bear", "srcArrow": "none", - "srcLabel": "", "dst": "bear", "dstArrow": "triangle", - "dstLabel": "", "opacity": 1, "strokeDash": 0, "strokeWidth": 2, @@ -178,10 +176,8 @@ "id": "(papa bear -> bear)[0]", "src": "papa bear", "srcArrow": "none", - "srcLabel": "", "dst": "bear", "dstArrow": "triangle", - "dstLabel": "", "opacity": 1, "strokeDash": 0, "strokeWidth": 2, 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 bcd663298e..e69a4d9cce 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 \ No newline at end of file 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 d0658b5537..a65a139eda 100644 --- a/e2etests/testdata/stable/text_font_sizes/elk/board.exp.json +++ b/e2etests/testdata/stable/text_font_sizes/elk/board.exp.json @@ -129,10 +129,8 @@ "id": "(mama bear -> bear)[0]", "src": "mama bear", "srcArrow": "none", - "srcLabel": "", "dst": "bear", "dstArrow": "triangle", - "dstLabel": "", "opacity": 1, "strokeDash": 0, "strokeWidth": 2, @@ -177,10 +175,8 @@ "id": "(papa bear -> bear)[0]", "src": "papa bear", "srcArrow": "none", - "srcLabel": "", "dst": "bear", "dstArrow": "triangle", - "dstLabel": "", "opacity": 1, "strokeDash": 0, "strokeWidth": 2, 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 aae9e17cea..0d87b73e51 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 \ No newline at end of file diff --git a/e2etests/testdata/stable/tooltips/dagre/board.exp.json b/e2etests/testdata/stable/tooltips/dagre/board.exp.json index 37bd8bf9e8..ade6dee49d 100644 --- a/e2etests/testdata/stable/tooltips/dagre/board.exp.json +++ b/e2etests/testdata/stable/tooltips/dagre/board.exp.json @@ -91,10 +91,8 @@ "id": "(x -> y)[0]", "src": "x", "srcArrow": "none", - "srcLabel": "", "dst": "y", "dstArrow": "triangle", - "dstLabel": "", "opacity": 1, "strokeDash": 0, "strokeWidth": 2, diff --git a/e2etests/testdata/stable/tooltips/dagre/sketch.exp.svg b/e2etests/testdata/stable/tooltips/dagre/sketch.exp.svg index edff3b1cb6..91ac786402 100644 --- a/e2etests/testdata/stable/tooltips/dagre/sketch.exp.svg +++ b/e2etests/testdata/stable/tooltips/dagre/sketch.exp.svg @@ -1,12 +1,12 @@ -x + .d2-820103664 .fill-N1{fill:#0A0F25;} + .d2-820103664 .fill-N2{fill:#676C7E;} + .d2-820103664 .fill-N3{fill:#9499AB;} + .d2-820103664 .fill-N4{fill:#CFD2DD;} + .d2-820103664 .fill-N5{fill:#DEE1EB;} + .d2-820103664 .fill-N6{fill:#EEF1F8;} + .d2-820103664 .fill-N7{fill:#FFFFFF;} + .d2-820103664 .fill-B1{fill:#0D32B2;} + .d2-820103664 .fill-B2{fill:#0D32B2;} + .d2-820103664 .fill-B3{fill:#E3E9FD;} + .d2-820103664 .fill-B4{fill:#E3E9FD;} + .d2-820103664 .fill-B5{fill:#EDF0FD;} + .d2-820103664 .fill-B6{fill:#F7F8FE;} + .d2-820103664 .fill-AA2{fill:#4A6FF3;} + .d2-820103664 .fill-AA4{fill:#EDF0FD;} + .d2-820103664 .fill-AA5{fill:#F7F8FE;} + .d2-820103664 .fill-AB4{fill:#EDF0FD;} + .d2-820103664 .fill-AB5{fill:#F7F8FE;} + .d2-820103664 .stroke-N1{stroke:#0A0F25;} + .d2-820103664 .stroke-N2{stroke:#676C7E;} + .d2-820103664 .stroke-N3{stroke:#9499AB;} + .d2-820103664 .stroke-N4{stroke:#CFD2DD;} + .d2-820103664 .stroke-N5{stroke:#DEE1EB;} + .d2-820103664 .stroke-N6{stroke:#EEF1F8;} + .d2-820103664 .stroke-N7{stroke:#FFFFFF;} + .d2-820103664 .stroke-B1{stroke:#0D32B2;} + .d2-820103664 .stroke-B2{stroke:#0D32B2;} + .d2-820103664 .stroke-B3{stroke:#E3E9FD;} + .d2-820103664 .stroke-B4{stroke:#E3E9FD;} + .d2-820103664 .stroke-B5{stroke:#EDF0FD;} + .d2-820103664 .stroke-B6{stroke:#F7F8FE;} + .d2-820103664 .stroke-AA2{stroke:#4A6FF3;} + .d2-820103664 .stroke-AA4{stroke:#EDF0FD;} + .d2-820103664 .stroke-AA5{stroke:#F7F8FE;} + .d2-820103664 .stroke-AB4{stroke:#EDF0FD;} + .d2-820103664 .stroke-AB5{stroke:#F7F8FE;} + .d2-820103664 .background-color-N1{background-color:#0A0F25;} + .d2-820103664 .background-color-N2{background-color:#676C7E;} + .d2-820103664 .background-color-N3{background-color:#9499AB;} + .d2-820103664 .background-color-N4{background-color:#CFD2DD;} + .d2-820103664 .background-color-N5{background-color:#DEE1EB;} + .d2-820103664 .background-color-N6{background-color:#EEF1F8;} + .d2-820103664 .background-color-N7{background-color:#FFFFFF;} + .d2-820103664 .background-color-B1{background-color:#0D32B2;} + .d2-820103664 .background-color-B2{background-color:#0D32B2;} + .d2-820103664 .background-color-B3{background-color:#E3E9FD;} + .d2-820103664 .background-color-B4{background-color:#E3E9FD;} + .d2-820103664 .background-color-B5{background-color:#EDF0FD;} + .d2-820103664 .background-color-B6{background-color:#F7F8FE;} + .d2-820103664 .background-color-AA2{background-color:#4A6FF3;} + .d2-820103664 .background-color-AA4{background-color:#EDF0FD;} + .d2-820103664 .background-color-AA5{background-color:#F7F8FE;} + .d2-820103664 .background-color-AB4{background-color:#EDF0FD;} + .d2-820103664 .background-color-AB5{background-color:#F7F8FE;} + .d2-820103664 .color-N1{color:#0A0F25;} + .d2-820103664 .color-N2{color:#676C7E;} + .d2-820103664 .color-N3{color:#9499AB;} + .d2-820103664 .color-N4{color:#CFD2DD;} + .d2-820103664 .color-N5{color:#DEE1EB;} + .d2-820103664 .color-N6{color:#EEF1F8;} + .d2-820103664 .color-N7{color:#FFFFFF;} + .d2-820103664 .color-B1{color:#0D32B2;} + .d2-820103664 .color-B2{color:#0D32B2;} + .d2-820103664 .color-B3{color:#E3E9FD;} + .d2-820103664 .color-B4{color:#E3E9FD;} + .d2-820103664 .color-B5{color:#EDF0FD;} + .d2-820103664 .color-B6{color:#F7F8FE;} + .d2-820103664 .color-AA2{color:#4A6FF3;} + .d2-820103664 .color-AA4{color:#EDF0FD;} + .d2-820103664 .color-AA5{color:#F7F8FE;} + .d2-820103664 .color-AB4{color:#EDF0FD;} + .d2-820103664 .color-AB5{color:#F7F8FE;}.appendix text.text{fill:#0A0F25}.md{--color-fg-default:#0A0F25;--color-fg-muted:#676C7E;--color-fg-subtle:#9499AB;--color-canvas-default:#FFFFFF;--color-canvas-subtle:#EEF1F8;--color-border-default:#0D32B2;--color-border-muted:#0D32B2;--color-neutral-muted:#EEF1F8;--color-accent-fg:#0D32B2;--color-accent-emphasis:#0D32B2;--color-attention-subtle:#676C7E;--color-danger-fg:red;}.sketch-overlay-B1{fill:url(#streaks-darker);mix-blend-mode:lighten}.sketch-overlay-B2{fill:url(#streaks-darker);mix-blend-mode:lighten}.sketch-overlay-B3{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-B4{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-B5{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-B6{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-AA2{fill:url(#streaks-dark);mix-blend-mode:overlay}.sketch-overlay-AA4{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-AA5{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-AB4{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-AB5{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-N1{fill:url(#streaks-darker);mix-blend-mode:lighten}.sketch-overlay-N2{fill:url(#streaks-dark);mix-blend-mode:overlay}.sketch-overlay-N3{fill:url(#streaks-normal);mix-blend-mode:color-burn}.sketch-overlay-N4{fill:url(#streaks-normal);mix-blend-mode:color-burn}.sketch-overlay-N5{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-N6{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-N7{fill:url(#streaks-bright);mix-blend-mode:darken}.light-code{display: block}.dark-code{display: none}]]>x @@ -118,7 +118,7 @@ -Gee, I feel kind of LIGHT in the head now, knowing I can't make my satellite dish PAYMENTS! +Gee, I feel kind of LIGHT in the head now, knowing I can't make my satellite dish PAYMENTS! \ No newline at end of file diff --git a/e2etests/testdata/stable/tooltips/elk/board.exp.json b/e2etests/testdata/stable/tooltips/elk/board.exp.json index 93fcce7ea5..8c92da7b5f 100644 --- a/e2etests/testdata/stable/tooltips/elk/board.exp.json +++ b/e2etests/testdata/stable/tooltips/elk/board.exp.json @@ -91,10 +91,8 @@ "id": "(x -> y)[0]", "src": "x", "srcArrow": "none", - "srcLabel": "", "dst": "y", "dstArrow": "triangle", - "dstLabel": "", "opacity": 1, "strokeDash": 0, "strokeWidth": 2, diff --git a/e2etests/testdata/stable/tooltips/elk/sketch.exp.svg b/e2etests/testdata/stable/tooltips/elk/sketch.exp.svg index 191aa8d7fb..264a0b9c13 100644 --- a/e2etests/testdata/stable/tooltips/elk/sketch.exp.svg +++ b/e2etests/testdata/stable/tooltips/elk/sketch.exp.svg @@ -1,12 +1,12 @@ -x + .d2-3162884028 .fill-N1{fill:#0A0F25;} + .d2-3162884028 .fill-N2{fill:#676C7E;} + .d2-3162884028 .fill-N3{fill:#9499AB;} + .d2-3162884028 .fill-N4{fill:#CFD2DD;} + .d2-3162884028 .fill-N5{fill:#DEE1EB;} + .d2-3162884028 .fill-N6{fill:#EEF1F8;} + .d2-3162884028 .fill-N7{fill:#FFFFFF;} + .d2-3162884028 .fill-B1{fill:#0D32B2;} + .d2-3162884028 .fill-B2{fill:#0D32B2;} + .d2-3162884028 .fill-B3{fill:#E3E9FD;} + .d2-3162884028 .fill-B4{fill:#E3E9FD;} + .d2-3162884028 .fill-B5{fill:#EDF0FD;} + .d2-3162884028 .fill-B6{fill:#F7F8FE;} + .d2-3162884028 .fill-AA2{fill:#4A6FF3;} + .d2-3162884028 .fill-AA4{fill:#EDF0FD;} + .d2-3162884028 .fill-AA5{fill:#F7F8FE;} + .d2-3162884028 .fill-AB4{fill:#EDF0FD;} + .d2-3162884028 .fill-AB5{fill:#F7F8FE;} + .d2-3162884028 .stroke-N1{stroke:#0A0F25;} + .d2-3162884028 .stroke-N2{stroke:#676C7E;} + .d2-3162884028 .stroke-N3{stroke:#9499AB;} + .d2-3162884028 .stroke-N4{stroke:#CFD2DD;} + .d2-3162884028 .stroke-N5{stroke:#DEE1EB;} + .d2-3162884028 .stroke-N6{stroke:#EEF1F8;} + .d2-3162884028 .stroke-N7{stroke:#FFFFFF;} + .d2-3162884028 .stroke-B1{stroke:#0D32B2;} + .d2-3162884028 .stroke-B2{stroke:#0D32B2;} + .d2-3162884028 .stroke-B3{stroke:#E3E9FD;} + .d2-3162884028 .stroke-B4{stroke:#E3E9FD;} + .d2-3162884028 .stroke-B5{stroke:#EDF0FD;} + .d2-3162884028 .stroke-B6{stroke:#F7F8FE;} + .d2-3162884028 .stroke-AA2{stroke:#4A6FF3;} + .d2-3162884028 .stroke-AA4{stroke:#EDF0FD;} + .d2-3162884028 .stroke-AA5{stroke:#F7F8FE;} + .d2-3162884028 .stroke-AB4{stroke:#EDF0FD;} + .d2-3162884028 .stroke-AB5{stroke:#F7F8FE;} + .d2-3162884028 .background-color-N1{background-color:#0A0F25;} + .d2-3162884028 .background-color-N2{background-color:#676C7E;} + .d2-3162884028 .background-color-N3{background-color:#9499AB;} + .d2-3162884028 .background-color-N4{background-color:#CFD2DD;} + .d2-3162884028 .background-color-N5{background-color:#DEE1EB;} + .d2-3162884028 .background-color-N6{background-color:#EEF1F8;} + .d2-3162884028 .background-color-N7{background-color:#FFFFFF;} + .d2-3162884028 .background-color-B1{background-color:#0D32B2;} + .d2-3162884028 .background-color-B2{background-color:#0D32B2;} + .d2-3162884028 .background-color-B3{background-color:#E3E9FD;} + .d2-3162884028 .background-color-B4{background-color:#E3E9FD;} + .d2-3162884028 .background-color-B5{background-color:#EDF0FD;} + .d2-3162884028 .background-color-B6{background-color:#F7F8FE;} + .d2-3162884028 .background-color-AA2{background-color:#4A6FF3;} + .d2-3162884028 .background-color-AA4{background-color:#EDF0FD;} + .d2-3162884028 .background-color-AA5{background-color:#F7F8FE;} + .d2-3162884028 .background-color-AB4{background-color:#EDF0FD;} + .d2-3162884028 .background-color-AB5{background-color:#F7F8FE;} + .d2-3162884028 .color-N1{color:#0A0F25;} + .d2-3162884028 .color-N2{color:#676C7E;} + .d2-3162884028 .color-N3{color:#9499AB;} + .d2-3162884028 .color-N4{color:#CFD2DD;} + .d2-3162884028 .color-N5{color:#DEE1EB;} + .d2-3162884028 .color-N6{color:#EEF1F8;} + .d2-3162884028 .color-N7{color:#FFFFFF;} + .d2-3162884028 .color-B1{color:#0D32B2;} + .d2-3162884028 .color-B2{color:#0D32B2;} + .d2-3162884028 .color-B3{color:#E3E9FD;} + .d2-3162884028 .color-B4{color:#E3E9FD;} + .d2-3162884028 .color-B5{color:#EDF0FD;} + .d2-3162884028 .color-B6{color:#F7F8FE;} + .d2-3162884028 .color-AA2{color:#4A6FF3;} + .d2-3162884028 .color-AA4{color:#EDF0FD;} + .d2-3162884028 .color-AA5{color:#F7F8FE;} + .d2-3162884028 .color-AB4{color:#EDF0FD;} + .d2-3162884028 .color-AB5{color:#F7F8FE;}.appendix text.text{fill:#0A0F25}.md{--color-fg-default:#0A0F25;--color-fg-muted:#676C7E;--color-fg-subtle:#9499AB;--color-canvas-default:#FFFFFF;--color-canvas-subtle:#EEF1F8;--color-border-default:#0D32B2;--color-border-muted:#0D32B2;--color-neutral-muted:#EEF1F8;--color-accent-fg:#0D32B2;--color-accent-emphasis:#0D32B2;--color-attention-subtle:#676C7E;--color-danger-fg:red;}.sketch-overlay-B1{fill:url(#streaks-darker);mix-blend-mode:lighten}.sketch-overlay-B2{fill:url(#streaks-darker);mix-blend-mode:lighten}.sketch-overlay-B3{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-B4{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-B5{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-B6{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-AA2{fill:url(#streaks-dark);mix-blend-mode:overlay}.sketch-overlay-AA4{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-AA5{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-AB4{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-AB5{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-N1{fill:url(#streaks-darker);mix-blend-mode:lighten}.sketch-overlay-N2{fill:url(#streaks-dark);mix-blend-mode:overlay}.sketch-overlay-N3{fill:url(#streaks-normal);mix-blend-mode:color-burn}.sketch-overlay-N4{fill:url(#streaks-normal);mix-blend-mode:color-burn}.sketch-overlay-N5{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-N6{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-N7{fill:url(#streaks-bright);mix-blend-mode:darken}.light-code{display: block}.dark-code{display: none}]]>x @@ -118,7 +118,7 @@ -Gee, I feel kind of LIGHT in the head now, knowing I can't make my satellite dish PAYMENTS! +Gee, I feel kind of LIGHT in the head now, knowing I can't make my satellite dish PAYMENTS! \ No newline at end of file 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 9deabdd805..75d93d0519 100644 --- a/e2etests/testdata/stable/unnamed_only_height/dagre/board.exp.json +++ b/e2etests/testdata/stable/unnamed_only_height/dagre/board.exp.json @@ -388,10 +388,8 @@ "id": "(class2 -> users)[0]", "src": "class2", "srcArrow": "none", - "srcLabel": "", "dst": "users", "dstArrow": "triangle", - "dstLabel": "", "opacity": 1, "strokeDash": 0, "strokeWidth": 2, @@ -437,10 +435,8 @@ "id": "(users -> code)[0]", "src": "users", "srcArrow": "none", - "srcLabel": "", "dst": "code", "dstArrow": "triangle", - "dstLabel": "", "opacity": 1, "strokeDash": 0, "strokeWidth": 2, @@ -486,10 +482,8 @@ "id": "(code -> package)[0]", "src": "code", "srcArrow": "none", - "srcLabel": "", "dst": "package", "dstArrow": "triangle", - "dstLabel": "", "opacity": 1, "strokeDash": 0, "strokeWidth": 2, @@ -535,10 +529,8 @@ "id": "(package -> no height)[0]", "src": "package", "srcArrow": "none", - "srcLabel": "", "dst": "no height", "dstArrow": "triangle", - "dstLabel": "", "opacity": 1, "strokeDash": 0, "strokeWidth": 2, 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 d5d2f934d8..b8c6354b84 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-3275356935 .fill-N1{fill:#0A0F25;} + .d2-3275356935 .fill-N2{fill:#676C7E;} + .d2-3275356935 .fill-N3{fill:#9499AB;} + .d2-3275356935 .fill-N4{fill:#CFD2DD;} + .d2-3275356935 .fill-N5{fill:#DEE1EB;} + .d2-3275356935 .fill-N6{fill:#EEF1F8;} + .d2-3275356935 .fill-N7{fill:#FFFFFF;} + .d2-3275356935 .fill-B1{fill:#0D32B2;} + .d2-3275356935 .fill-B2{fill:#0D32B2;} + .d2-3275356935 .fill-B3{fill:#E3E9FD;} + .d2-3275356935 .fill-B4{fill:#E3E9FD;} + .d2-3275356935 .fill-B5{fill:#EDF0FD;} + .d2-3275356935 .fill-B6{fill:#F7F8FE;} + .d2-3275356935 .fill-AA2{fill:#4A6FF3;} + .d2-3275356935 .fill-AA4{fill:#EDF0FD;} + .d2-3275356935 .fill-AA5{fill:#F7F8FE;} + .d2-3275356935 .fill-AB4{fill:#EDF0FD;} + .d2-3275356935 .fill-AB5{fill:#F7F8FE;} + .d2-3275356935 .stroke-N1{stroke:#0A0F25;} + .d2-3275356935 .stroke-N2{stroke:#676C7E;} + .d2-3275356935 .stroke-N3{stroke:#9499AB;} + .d2-3275356935 .stroke-N4{stroke:#CFD2DD;} + .d2-3275356935 .stroke-N5{stroke:#DEE1EB;} + .d2-3275356935 .stroke-N6{stroke:#EEF1F8;} + .d2-3275356935 .stroke-N7{stroke:#FFFFFF;} + .d2-3275356935 .stroke-B1{stroke:#0D32B2;} + .d2-3275356935 .stroke-B2{stroke:#0D32B2;} + .d2-3275356935 .stroke-B3{stroke:#E3E9FD;} + .d2-3275356935 .stroke-B4{stroke:#E3E9FD;} + .d2-3275356935 .stroke-B5{stroke:#EDF0FD;} + .d2-3275356935 .stroke-B6{stroke:#F7F8FE;} + .d2-3275356935 .stroke-AA2{stroke:#4A6FF3;} + .d2-3275356935 .stroke-AA4{stroke:#EDF0FD;} + .d2-3275356935 .stroke-AA5{stroke:#F7F8FE;} + .d2-3275356935 .stroke-AB4{stroke:#EDF0FD;} + .d2-3275356935 .stroke-AB5{stroke:#F7F8FE;} + .d2-3275356935 .background-color-N1{background-color:#0A0F25;} + .d2-3275356935 .background-color-N2{background-color:#676C7E;} + .d2-3275356935 .background-color-N3{background-color:#9499AB;} + .d2-3275356935 .background-color-N4{background-color:#CFD2DD;} + .d2-3275356935 .background-color-N5{background-color:#DEE1EB;} + .d2-3275356935 .background-color-N6{background-color:#EEF1F8;} + .d2-3275356935 .background-color-N7{background-color:#FFFFFF;} + .d2-3275356935 .background-color-B1{background-color:#0D32B2;} + .d2-3275356935 .background-color-B2{background-color:#0D32B2;} + .d2-3275356935 .background-color-B3{background-color:#E3E9FD;} + .d2-3275356935 .background-color-B4{background-color:#E3E9FD;} + .d2-3275356935 .background-color-B5{background-color:#EDF0FD;} + .d2-3275356935 .background-color-B6{background-color:#F7F8FE;} + .d2-3275356935 .background-color-AA2{background-color:#4A6FF3;} + .d2-3275356935 .background-color-AA4{background-color:#EDF0FD;} + .d2-3275356935 .background-color-AA5{background-color:#F7F8FE;} + .d2-3275356935 .background-color-AB4{background-color:#EDF0FD;} + .d2-3275356935 .background-color-AB5{background-color:#F7F8FE;} + .d2-3275356935 .color-N1{color:#0A0F25;} + .d2-3275356935 .color-N2{color:#676C7E;} + .d2-3275356935 .color-N3{color:#9499AB;} + .d2-3275356935 .color-N4{color:#CFD2DD;} + .d2-3275356935 .color-N5{color:#DEE1EB;} + .d2-3275356935 .color-N6{color:#EEF1F8;} + .d2-3275356935 .color-N7{color:#FFFFFF;} + .d2-3275356935 .color-B1{color:#0D32B2;} + .d2-3275356935 .color-B2{color:#0D32B2;} + .d2-3275356935 .color-B3{color:#E3E9FD;} + .d2-3275356935 .color-B4{color:#E3E9FD;} + .d2-3275356935 .color-B5{color:#EDF0FD;} + .d2-3275356935 .color-B6{color:#F7F8FE;} + .d2-3275356935 .color-AA2{color:#4A6FF3;} + .d2-3275356935 .color-AA4{color:#EDF0FD;} + .d2-3275356935 .color-AA5{color:#F7F8FE;} + .d2-3275356935 .color-AB4{color:#EDF0FD;} + .d2-3275356935 .color-AB5{color:#F7F8FE;}.appendix text.text{fill:#0A0F25}.md{--color-fg-default:#0A0F25;--color-fg-muted:#676C7E;--color-fg-subtle:#9499AB;--color-canvas-default:#FFFFFF;--color-canvas-subtle:#EEF1F8;--color-border-default:#0D32B2;--color-border-muted:#0D32B2;--color-neutral-muted:#EEF1F8;--color-accent-fg:#0D32B2;--color-accent-emphasis:#0D32B2;--color-attention-subtle:#676C7E;--color-danger-fg:red;}.sketch-overlay-B1{fill:url(#streaks-darker);mix-blend-mode:lighten}.sketch-overlay-B2{fill:url(#streaks-darker);mix-blend-mode:lighten}.sketch-overlay-B3{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-B4{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-B5{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-B6{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-AA2{fill:url(#streaks-dark);mix-blend-mode:overlay}.sketch-overlay-AA4{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-AA5{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-AB4{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-AB5{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-N1{fill:url(#streaks-darker);mix-blend-mode:lighten}.sketch-overlay-N2{fill:url(#streaks-dark);mix-blend-mode:overlay}.sketch-overlay-N3{fill:url(#streaks-normal);mix-blend-mode:color-burn}.sketch-overlay-N4{fill:url(#streaks-normal);mix-blend-mode:color-burn}.sketch-overlay-N5{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-N6{fill:url(#streaks-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 5947ad5c25..93804d2060 100644 --- a/e2etests/testdata/stable/unnamed_only_height/elk/board.exp.json +++ b/e2etests/testdata/stable/unnamed_only_height/elk/board.exp.json @@ -388,10 +388,8 @@ "id": "(class2 -> users)[0]", "src": "class2", "srcArrow": "none", - "srcLabel": "", "dst": "users", "dstArrow": "triangle", - "dstLabel": "", "opacity": 1, "strokeDash": 0, "strokeWidth": 2, @@ -428,10 +426,8 @@ "id": "(users -> code)[0]", "src": "users", "srcArrow": "none", - "srcLabel": "", "dst": "code", "dstArrow": "triangle", - "dstLabel": "", "opacity": 1, "strokeDash": 0, "strokeWidth": 2, @@ -468,10 +464,8 @@ "id": "(code -> package)[0]", "src": "code", "srcArrow": "none", - "srcLabel": "", "dst": "package", "dstArrow": "triangle", - "dstLabel": "", "opacity": 1, "strokeDash": 0, "strokeWidth": 2, @@ -508,10 +502,8 @@ "id": "(package -> no height)[0]", "src": "package", "srcArrow": "none", - "srcLabel": "", "dst": "no height", "dstArrow": "triangle", - "dstLabel": "", "opacity": 1, "strokeDash": 0, "strokeWidth": 2, 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 7c952ba13b..248b46985f 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-1058406674 .fill-N1{fill:#0A0F25;} + .d2-1058406674 .fill-N2{fill:#676C7E;} + .d2-1058406674 .fill-N3{fill:#9499AB;} + .d2-1058406674 .fill-N4{fill:#CFD2DD;} + .d2-1058406674 .fill-N5{fill:#DEE1EB;} + .d2-1058406674 .fill-N6{fill:#EEF1F8;} + .d2-1058406674 .fill-N7{fill:#FFFFFF;} + .d2-1058406674 .fill-B1{fill:#0D32B2;} + .d2-1058406674 .fill-B2{fill:#0D32B2;} + .d2-1058406674 .fill-B3{fill:#E3E9FD;} + .d2-1058406674 .fill-B4{fill:#E3E9FD;} + .d2-1058406674 .fill-B5{fill:#EDF0FD;} + .d2-1058406674 .fill-B6{fill:#F7F8FE;} + .d2-1058406674 .fill-AA2{fill:#4A6FF3;} + .d2-1058406674 .fill-AA4{fill:#EDF0FD;} + .d2-1058406674 .fill-AA5{fill:#F7F8FE;} + .d2-1058406674 .fill-AB4{fill:#EDF0FD;} + .d2-1058406674 .fill-AB5{fill:#F7F8FE;} + .d2-1058406674 .stroke-N1{stroke:#0A0F25;} + .d2-1058406674 .stroke-N2{stroke:#676C7E;} + .d2-1058406674 .stroke-N3{stroke:#9499AB;} + .d2-1058406674 .stroke-N4{stroke:#CFD2DD;} + .d2-1058406674 .stroke-N5{stroke:#DEE1EB;} + .d2-1058406674 .stroke-N6{stroke:#EEF1F8;} + .d2-1058406674 .stroke-N7{stroke:#FFFFFF;} + .d2-1058406674 .stroke-B1{stroke:#0D32B2;} + .d2-1058406674 .stroke-B2{stroke:#0D32B2;} + .d2-1058406674 .stroke-B3{stroke:#E3E9FD;} + .d2-1058406674 .stroke-B4{stroke:#E3E9FD;} + .d2-1058406674 .stroke-B5{stroke:#EDF0FD;} + .d2-1058406674 .stroke-B6{stroke:#F7F8FE;} + .d2-1058406674 .stroke-AA2{stroke:#4A6FF3;} + .d2-1058406674 .stroke-AA4{stroke:#EDF0FD;} + .d2-1058406674 .stroke-AA5{stroke:#F7F8FE;} + .d2-1058406674 .stroke-AB4{stroke:#EDF0FD;} + .d2-1058406674 .stroke-AB5{stroke:#F7F8FE;} + .d2-1058406674 .background-color-N1{background-color:#0A0F25;} + .d2-1058406674 .background-color-N2{background-color:#676C7E;} + .d2-1058406674 .background-color-N3{background-color:#9499AB;} + .d2-1058406674 .background-color-N4{background-color:#CFD2DD;} + .d2-1058406674 .background-color-N5{background-color:#DEE1EB;} + .d2-1058406674 .background-color-N6{background-color:#EEF1F8;} + .d2-1058406674 .background-color-N7{background-color:#FFFFFF;} + .d2-1058406674 .background-color-B1{background-color:#0D32B2;} + .d2-1058406674 .background-color-B2{background-color:#0D32B2;} + .d2-1058406674 .background-color-B3{background-color:#E3E9FD;} + .d2-1058406674 .background-color-B4{background-color:#E3E9FD;} + .d2-1058406674 .background-color-B5{background-color:#EDF0FD;} + .d2-1058406674 .background-color-B6{background-color:#F7F8FE;} + .d2-1058406674 .background-color-AA2{background-color:#4A6FF3;} + .d2-1058406674 .background-color-AA4{background-color:#EDF0FD;} + .d2-1058406674 .background-color-AA5{background-color:#F7F8FE;} + .d2-1058406674 .background-color-AB4{background-color:#EDF0FD;} + .d2-1058406674 .background-color-AB5{background-color:#F7F8FE;} + .d2-1058406674 .color-N1{color:#0A0F25;} + .d2-1058406674 .color-N2{color:#676C7E;} + .d2-1058406674 .color-N3{color:#9499AB;} + .d2-1058406674 .color-N4{color:#CFD2DD;} + .d2-1058406674 .color-N5{color:#DEE1EB;} + .d2-1058406674 .color-N6{color:#EEF1F8;} + .d2-1058406674 .color-N7{color:#FFFFFF;} + .d2-1058406674 .color-B1{color:#0D32B2;} + .d2-1058406674 .color-B2{color:#0D32B2;} + .d2-1058406674 .color-B3{color:#E3E9FD;} + .d2-1058406674 .color-B4{color:#E3E9FD;} + .d2-1058406674 .color-B5{color:#EDF0FD;} + .d2-1058406674 .color-B6{color:#F7F8FE;} + .d2-1058406674 .color-AA2{color:#4A6FF3;} + .d2-1058406674 .color-AA4{color:#EDF0FD;} + .d2-1058406674 .color-AA5{color:#F7F8FE;} + .d2-1058406674 .color-AB4{color:#EDF0FD;} + .d2-1058406674 .color-AB5{color:#F7F8FE;}.appendix text.text{fill:#0A0F25}.md{--color-fg-default:#0A0F25;--color-fg-muted:#676C7E;--color-fg-subtle:#9499AB;--color-canvas-default:#FFFFFF;--color-canvas-subtle:#EEF1F8;--color-border-default:#0D32B2;--color-border-muted:#0D32B2;--color-neutral-muted:#EEF1F8;--color-accent-fg:#0D32B2;--color-accent-emphasis:#0D32B2;--color-attention-subtle:#676C7E;--color-danger-fg:red;}.sketch-overlay-B1{fill:url(#streaks-darker);mix-blend-mode:lighten}.sketch-overlay-B2{fill:url(#streaks-darker);mix-blend-mode:lighten}.sketch-overlay-B3{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-B4{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-B5{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-B6{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-AA2{fill:url(#streaks-dark);mix-blend-mode:overlay}.sketch-overlay-AA4{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-AA5{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-AB4{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-AB5{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-N1{fill:url(#streaks-darker);mix-blend-mode:lighten}.sketch-overlay-N2{fill:url(#streaks-dark);mix-blend-mode:overlay}.sketch-overlay-N3{fill:url(#streaks-normal);mix-blend-mode:color-burn}.sketch-overlay-N4{fill:url(#streaks-normal);mix-blend-mode:color-burn}.sketch-overlay-N5{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-N6{fill:url(#streaks-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 981058d390..bc19074e83 100644 --- a/e2etests/testdata/stable/unnamed_only_width/dagre/board.exp.json +++ b/e2etests/testdata/stable/unnamed_only_width/dagre/board.exp.json @@ -388,10 +388,8 @@ "id": "(class2 -> users)[0]", "src": "class2", "srcArrow": "none", - "srcLabel": "", "dst": "users", "dstArrow": "triangle", - "dstLabel": "", "opacity": 1, "strokeDash": 0, "strokeWidth": 2, @@ -437,10 +435,8 @@ "id": "(users -> code)[0]", "src": "users", "srcArrow": "none", - "srcLabel": "", "dst": "code", "dstArrow": "triangle", - "dstLabel": "", "opacity": 1, "strokeDash": 0, "strokeWidth": 2, @@ -486,10 +482,8 @@ "id": "(code -> package)[0]", "src": "code", "srcArrow": "none", - "srcLabel": "", "dst": "package", "dstArrow": "triangle", - "dstLabel": "", "opacity": 1, "strokeDash": 0, "strokeWidth": 2, @@ -535,10 +529,8 @@ "id": "(package -> no width)[0]", "src": "package", "srcArrow": "none", - "srcLabel": "", "dst": "no width", "dstArrow": "triangle", - "dstLabel": "", "opacity": 1, "strokeDash": 0, "strokeWidth": 2, 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 1f8b8567a7..88fdc516ea 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-2871173232 .fill-N1{fill:#0A0F25;} + .d2-2871173232 .fill-N2{fill:#676C7E;} + .d2-2871173232 .fill-N3{fill:#9499AB;} + .d2-2871173232 .fill-N4{fill:#CFD2DD;} + .d2-2871173232 .fill-N5{fill:#DEE1EB;} + .d2-2871173232 .fill-N6{fill:#EEF1F8;} + .d2-2871173232 .fill-N7{fill:#FFFFFF;} + .d2-2871173232 .fill-B1{fill:#0D32B2;} + .d2-2871173232 .fill-B2{fill:#0D32B2;} + .d2-2871173232 .fill-B3{fill:#E3E9FD;} + .d2-2871173232 .fill-B4{fill:#E3E9FD;} + .d2-2871173232 .fill-B5{fill:#EDF0FD;} + .d2-2871173232 .fill-B6{fill:#F7F8FE;} + .d2-2871173232 .fill-AA2{fill:#4A6FF3;} + .d2-2871173232 .fill-AA4{fill:#EDF0FD;} + .d2-2871173232 .fill-AA5{fill:#F7F8FE;} + .d2-2871173232 .fill-AB4{fill:#EDF0FD;} + .d2-2871173232 .fill-AB5{fill:#F7F8FE;} + .d2-2871173232 .stroke-N1{stroke:#0A0F25;} + .d2-2871173232 .stroke-N2{stroke:#676C7E;} + .d2-2871173232 .stroke-N3{stroke:#9499AB;} + .d2-2871173232 .stroke-N4{stroke:#CFD2DD;} + .d2-2871173232 .stroke-N5{stroke:#DEE1EB;} + .d2-2871173232 .stroke-N6{stroke:#EEF1F8;} + .d2-2871173232 .stroke-N7{stroke:#FFFFFF;} + .d2-2871173232 .stroke-B1{stroke:#0D32B2;} + .d2-2871173232 .stroke-B2{stroke:#0D32B2;} + .d2-2871173232 .stroke-B3{stroke:#E3E9FD;} + .d2-2871173232 .stroke-B4{stroke:#E3E9FD;} + .d2-2871173232 .stroke-B5{stroke:#EDF0FD;} + .d2-2871173232 .stroke-B6{stroke:#F7F8FE;} + .d2-2871173232 .stroke-AA2{stroke:#4A6FF3;} + .d2-2871173232 .stroke-AA4{stroke:#EDF0FD;} + .d2-2871173232 .stroke-AA5{stroke:#F7F8FE;} + .d2-2871173232 .stroke-AB4{stroke:#EDF0FD;} + .d2-2871173232 .stroke-AB5{stroke:#F7F8FE;} + .d2-2871173232 .background-color-N1{background-color:#0A0F25;} + .d2-2871173232 .background-color-N2{background-color:#676C7E;} + .d2-2871173232 .background-color-N3{background-color:#9499AB;} + .d2-2871173232 .background-color-N4{background-color:#CFD2DD;} + .d2-2871173232 .background-color-N5{background-color:#DEE1EB;} + .d2-2871173232 .background-color-N6{background-color:#EEF1F8;} + .d2-2871173232 .background-color-N7{background-color:#FFFFFF;} + .d2-2871173232 .background-color-B1{background-color:#0D32B2;} + .d2-2871173232 .background-color-B2{background-color:#0D32B2;} + .d2-2871173232 .background-color-B3{background-color:#E3E9FD;} + .d2-2871173232 .background-color-B4{background-color:#E3E9FD;} + .d2-2871173232 .background-color-B5{background-color:#EDF0FD;} + .d2-2871173232 .background-color-B6{background-color:#F7F8FE;} + .d2-2871173232 .background-color-AA2{background-color:#4A6FF3;} + .d2-2871173232 .background-color-AA4{background-color:#EDF0FD;} + .d2-2871173232 .background-color-AA5{background-color:#F7F8FE;} + .d2-2871173232 .background-color-AB4{background-color:#EDF0FD;} + .d2-2871173232 .background-color-AB5{background-color:#F7F8FE;} + .d2-2871173232 .color-N1{color:#0A0F25;} + .d2-2871173232 .color-N2{color:#676C7E;} + .d2-2871173232 .color-N3{color:#9499AB;} + .d2-2871173232 .color-N4{color:#CFD2DD;} + .d2-2871173232 .color-N5{color:#DEE1EB;} + .d2-2871173232 .color-N6{color:#EEF1F8;} + .d2-2871173232 .color-N7{color:#FFFFFF;} + .d2-2871173232 .color-B1{color:#0D32B2;} + .d2-2871173232 .color-B2{color:#0D32B2;} + .d2-2871173232 .color-B3{color:#E3E9FD;} + .d2-2871173232 .color-B4{color:#E3E9FD;} + .d2-2871173232 .color-B5{color:#EDF0FD;} + .d2-2871173232 .color-B6{color:#F7F8FE;} + .d2-2871173232 .color-AA2{color:#4A6FF3;} + .d2-2871173232 .color-AA4{color:#EDF0FD;} + .d2-2871173232 .color-AA5{color:#F7F8FE;} + .d2-2871173232 .color-AB4{color:#EDF0FD;} + .d2-2871173232 .color-AB5{color:#F7F8FE;}.appendix text.text{fill:#0A0F25}.md{--color-fg-default:#0A0F25;--color-fg-muted:#676C7E;--color-fg-subtle:#9499AB;--color-canvas-default:#FFFFFF;--color-canvas-subtle:#EEF1F8;--color-border-default:#0D32B2;--color-border-muted:#0D32B2;--color-neutral-muted:#EEF1F8;--color-accent-fg:#0D32B2;--color-accent-emphasis:#0D32B2;--color-attention-subtle:#676C7E;--color-danger-fg:red;}.sketch-overlay-B1{fill:url(#streaks-darker);mix-blend-mode:lighten}.sketch-overlay-B2{fill:url(#streaks-darker);mix-blend-mode:lighten}.sketch-overlay-B3{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-B4{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-B5{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-B6{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-AA2{fill:url(#streaks-dark);mix-blend-mode:overlay}.sketch-overlay-AA4{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-AA5{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-AB4{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-AB5{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-N1{fill:url(#streaks-darker);mix-blend-mode:lighten}.sketch-overlay-N2{fill:url(#streaks-dark);mix-blend-mode:overlay}.sketch-overlay-N3{fill:url(#streaks-normal);mix-blend-mode:color-burn}.sketch-overlay-N4{fill:url(#streaks-normal);mix-blend-mode:color-burn}.sketch-overlay-N5{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-N6{fill:url(#streaks-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 fa82ab65a4..e3549a8969 100644 --- a/e2etests/testdata/stable/unnamed_only_width/elk/board.exp.json +++ b/e2etests/testdata/stable/unnamed_only_width/elk/board.exp.json @@ -388,10 +388,8 @@ "id": "(class2 -> users)[0]", "src": "class2", "srcArrow": "none", - "srcLabel": "", "dst": "users", "dstArrow": "triangle", - "dstLabel": "", "opacity": 1, "strokeDash": 0, "strokeWidth": 2, @@ -428,10 +426,8 @@ "id": "(users -> code)[0]", "src": "users", "srcArrow": "none", - "srcLabel": "", "dst": "code", "dstArrow": "triangle", - "dstLabel": "", "opacity": 1, "strokeDash": 0, "strokeWidth": 2, @@ -468,10 +464,8 @@ "id": "(code -> package)[0]", "src": "code", "srcArrow": "none", - "srcLabel": "", "dst": "package", "dstArrow": "triangle", - "dstLabel": "", "opacity": 1, "strokeDash": 0, "strokeWidth": 2, @@ -508,10 +502,8 @@ "id": "(package -> no width)[0]", "src": "package", "srcArrow": "none", - "srcLabel": "", "dst": "no width", "dstArrow": "triangle", - "dstLabel": "", "opacity": 1, "strokeDash": 0, "strokeWidth": 2, 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 5f9549e000..82a8315d67 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-3969630496 .fill-N1{fill:#0A0F25;} + .d2-3969630496 .fill-N2{fill:#676C7E;} + .d2-3969630496 .fill-N3{fill:#9499AB;} + .d2-3969630496 .fill-N4{fill:#CFD2DD;} + .d2-3969630496 .fill-N5{fill:#DEE1EB;} + .d2-3969630496 .fill-N6{fill:#EEF1F8;} + .d2-3969630496 .fill-N7{fill:#FFFFFF;} + .d2-3969630496 .fill-B1{fill:#0D32B2;} + .d2-3969630496 .fill-B2{fill:#0D32B2;} + .d2-3969630496 .fill-B3{fill:#E3E9FD;} + .d2-3969630496 .fill-B4{fill:#E3E9FD;} + .d2-3969630496 .fill-B5{fill:#EDF0FD;} + .d2-3969630496 .fill-B6{fill:#F7F8FE;} + .d2-3969630496 .fill-AA2{fill:#4A6FF3;} + .d2-3969630496 .fill-AA4{fill:#EDF0FD;} + .d2-3969630496 .fill-AA5{fill:#F7F8FE;} + .d2-3969630496 .fill-AB4{fill:#EDF0FD;} + .d2-3969630496 .fill-AB5{fill:#F7F8FE;} + .d2-3969630496 .stroke-N1{stroke:#0A0F25;} + .d2-3969630496 .stroke-N2{stroke:#676C7E;} + .d2-3969630496 .stroke-N3{stroke:#9499AB;} + .d2-3969630496 .stroke-N4{stroke:#CFD2DD;} + .d2-3969630496 .stroke-N5{stroke:#DEE1EB;} + .d2-3969630496 .stroke-N6{stroke:#EEF1F8;} + .d2-3969630496 .stroke-N7{stroke:#FFFFFF;} + .d2-3969630496 .stroke-B1{stroke:#0D32B2;} + .d2-3969630496 .stroke-B2{stroke:#0D32B2;} + .d2-3969630496 .stroke-B3{stroke:#E3E9FD;} + .d2-3969630496 .stroke-B4{stroke:#E3E9FD;} + .d2-3969630496 .stroke-B5{stroke:#EDF0FD;} + .d2-3969630496 .stroke-B6{stroke:#F7F8FE;} + .d2-3969630496 .stroke-AA2{stroke:#4A6FF3;} + .d2-3969630496 .stroke-AA4{stroke:#EDF0FD;} + .d2-3969630496 .stroke-AA5{stroke:#F7F8FE;} + .d2-3969630496 .stroke-AB4{stroke:#EDF0FD;} + .d2-3969630496 .stroke-AB5{stroke:#F7F8FE;} + .d2-3969630496 .background-color-N1{background-color:#0A0F25;} + .d2-3969630496 .background-color-N2{background-color:#676C7E;} + .d2-3969630496 .background-color-N3{background-color:#9499AB;} + .d2-3969630496 .background-color-N4{background-color:#CFD2DD;} + .d2-3969630496 .background-color-N5{background-color:#DEE1EB;} + .d2-3969630496 .background-color-N6{background-color:#EEF1F8;} + .d2-3969630496 .background-color-N7{background-color:#FFFFFF;} + .d2-3969630496 .background-color-B1{background-color:#0D32B2;} + .d2-3969630496 .background-color-B2{background-color:#0D32B2;} + .d2-3969630496 .background-color-B3{background-color:#E3E9FD;} + .d2-3969630496 .background-color-B4{background-color:#E3E9FD;} + .d2-3969630496 .background-color-B5{background-color:#EDF0FD;} + .d2-3969630496 .background-color-B6{background-color:#F7F8FE;} + .d2-3969630496 .background-color-AA2{background-color:#4A6FF3;} + .d2-3969630496 .background-color-AA4{background-color:#EDF0FD;} + .d2-3969630496 .background-color-AA5{background-color:#F7F8FE;} + .d2-3969630496 .background-color-AB4{background-color:#EDF0FD;} + .d2-3969630496 .background-color-AB5{background-color:#F7F8FE;} + .d2-3969630496 .color-N1{color:#0A0F25;} + .d2-3969630496 .color-N2{color:#676C7E;} + .d2-3969630496 .color-N3{color:#9499AB;} + .d2-3969630496 .color-N4{color:#CFD2DD;} + .d2-3969630496 .color-N5{color:#DEE1EB;} + .d2-3969630496 .color-N6{color:#EEF1F8;} + .d2-3969630496 .color-N7{color:#FFFFFF;} + .d2-3969630496 .color-B1{color:#0D32B2;} + .d2-3969630496 .color-B2{color:#0D32B2;} + .d2-3969630496 .color-B3{color:#E3E9FD;} + .d2-3969630496 .color-B4{color:#E3E9FD;} + .d2-3969630496 .color-B5{color:#EDF0FD;} + .d2-3969630496 .color-B6{color:#F7F8FE;} + .d2-3969630496 .color-AA2{color:#4A6FF3;} + .d2-3969630496 .color-AA4{color:#EDF0FD;} + .d2-3969630496 .color-AA5{color:#F7F8FE;} + .d2-3969630496 .color-AB4{color:#EDF0FD;} + .d2-3969630496 .color-AB5{color:#F7F8FE;}.appendix text.text{fill:#0A0F25}.md{--color-fg-default:#0A0F25;--color-fg-muted:#676C7E;--color-fg-subtle:#9499AB;--color-canvas-default:#FFFFFF;--color-canvas-subtle:#EEF1F8;--color-border-default:#0D32B2;--color-border-muted:#0D32B2;--color-neutral-muted:#EEF1F8;--color-accent-fg:#0D32B2;--color-accent-emphasis:#0D32B2;--color-attention-subtle:#676C7E;--color-danger-fg:red;}.sketch-overlay-B1{fill:url(#streaks-darker);mix-blend-mode:lighten}.sketch-overlay-B2{fill:url(#streaks-darker);mix-blend-mode:lighten}.sketch-overlay-B3{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-B4{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-B5{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-B6{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-AA2{fill:url(#streaks-dark);mix-blend-mode:overlay}.sketch-overlay-AA4{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-AA5{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-AB4{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-AB5{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-N1{fill:url(#streaks-darker);mix-blend-mode:lighten}.sketch-overlay-N2{fill:url(#streaks-dark);mix-blend-mode:overlay}.sketch-overlay-N3{fill:url(#streaks-normal);mix-blend-mode:color-burn}.sketch-overlay-N4{fill:url(#streaks-normal);mix-blend-mode:color-burn}.sketch-overlay-N5{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-N6{fill:url(#streaks-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 59196069e5..a74bc3dcb6 100644 --- a/e2etests/testdata/stable/us_map/dagre/board.exp.json +++ b/e2etests/testdata/stable/us_map/dagre/board.exp.json @@ -2059,10 +2059,8 @@ "id": "(AL -- FL)[0]", "src": "AL", "srcArrow": "none", - "srcLabel": "", "dst": "FL", "dstArrow": "none", - "dstLabel": "", "opacity": 1, "strokeDash": 0, "strokeWidth": 2, @@ -2108,10 +2106,8 @@ "id": "(FL -- GA)[0]", "src": "FL", "srcArrow": "none", - "srcLabel": "", "dst": "GA", "dstArrow": "none", - "dstLabel": "", "opacity": 1, "strokeDash": 0, "strokeWidth": 2, @@ -2157,10 +2153,8 @@ "id": "(GA -- MS)[0]", "src": "GA", "srcArrow": "none", - "srcLabel": "", "dst": "MS", "dstArrow": "none", - "dstLabel": "", "opacity": 1, "strokeDash": 0, "strokeWidth": 2, @@ -2206,10 +2200,8 @@ "id": "(MS -- TN)[0]", "src": "MS", "srcArrow": "none", - "srcLabel": "", "dst": "TN", "dstArrow": "none", - "dstLabel": "", "opacity": 1, "strokeDash": 0, "strokeWidth": 2, @@ -2339,10 +2331,8 @@ "id": "(AZ -- CA)[0]", "src": "AZ", "srcArrow": "none", - "srcLabel": "", "dst": "CA", "dstArrow": "none", - "dstLabel": "", "opacity": 1, "strokeDash": 0, "strokeWidth": 2, @@ -2388,10 +2378,8 @@ "id": "(CA -- NV)[0]", "src": "CA", "srcArrow": "none", - "srcLabel": "", "dst": "NV", "dstArrow": "none", - "dstLabel": "", "opacity": 1, "strokeDash": 0, "strokeWidth": 2, @@ -2437,10 +2425,8 @@ "id": "(NV -- NM)[0]", "src": "NV", "srcArrow": "none", - "srcLabel": "", "dst": "NM", "dstArrow": "none", - "dstLabel": "", "opacity": 1, "strokeDash": 0, "strokeWidth": 2, @@ -2486,10 +2472,8 @@ "id": "(NM -- UT)[0]", "src": "NM", "srcArrow": "none", - "srcLabel": "", "dst": "UT", "dstArrow": "none", - "dstLabel": "", "opacity": 1, "strokeDash": 0, "strokeWidth": 2, @@ -2547,10 +2531,8 @@ "id": "(AR -- LA)[0]", "src": "AR", "srcArrow": "none", - "srcLabel": "", "dst": "LA", "dstArrow": "none", - "dstLabel": "", "opacity": 1, "strokeDash": 0, "strokeWidth": 2, @@ -2596,10 +2578,8 @@ "id": "(LA -- MS)[0]", "src": "LA", "srcArrow": "none", - "srcLabel": "", "dst": "MS", "dstArrow": "none", - "dstLabel": "", "opacity": 1, "strokeDash": 0, "strokeWidth": 2, @@ -2645,10 +2625,8 @@ "id": "(MS -- MO)[0]", "src": "MS", "srcArrow": "none", - "srcLabel": "", "dst": "MO", "dstArrow": "none", - "dstLabel": "", "opacity": 1, "strokeDash": 0, "strokeWidth": 2, @@ -2694,10 +2672,8 @@ "id": "(MO -- OK)[0]", "src": "MO", "srcArrow": "none", - "srcLabel": "", "dst": "OK", "dstArrow": "none", - "dstLabel": "", "opacity": 1, "strokeDash": 0, "strokeWidth": 2, @@ -2779,10 +2755,8 @@ "id": "(OK -- TN)[0]", "src": "OK", "srcArrow": "none", - "srcLabel": "", "dst": "TN", "dstArrow": "none", - "dstLabel": "", "opacity": 1, "strokeDash": 0, "strokeWidth": 2, @@ -2828,10 +2802,8 @@ "id": "(TN -- TX)[0]", "src": "TN", "srcArrow": "none", - "srcLabel": "", "dst": "TX", "dstArrow": "none", - "dstLabel": "", "opacity": 1, "strokeDash": 0, "strokeWidth": 2, @@ -2877,10 +2849,8 @@ "id": "(CA -- NV)[1]", "src": "CA", "srcArrow": "none", - "srcLabel": "", "dst": "NV", "dstArrow": "none", - "dstLabel": "", "opacity": 1, "strokeDash": 0, "strokeWidth": 2, @@ -2926,10 +2896,8 @@ "id": "(NV -- OR)[0]", "src": "NV", "srcArrow": "none", - "srcLabel": "", "dst": "OR", "dstArrow": "none", - "dstLabel": "", "opacity": 1, "strokeDash": 0, "strokeWidth": 2, @@ -2987,10 +2955,8 @@ "id": "(CO -- KS)[0]", "src": "CO", "srcArrow": "none", - "srcLabel": "", "dst": "KS", "dstArrow": "none", - "dstLabel": "", "opacity": 1, "strokeDash": 0, "strokeWidth": 2, @@ -3036,10 +3002,8 @@ "id": "(KS -- NE)[0]", "src": "KS", "srcArrow": "none", - "srcLabel": "", "dst": "NE", "dstArrow": "none", - "dstLabel": "", "opacity": 1, "strokeDash": 0, "strokeWidth": 2, @@ -3097,10 +3061,8 @@ "id": "(NE -- NM)[0]", "src": "NE", "srcArrow": "none", - "srcLabel": "", "dst": "NM", "dstArrow": "none", - "dstLabel": "", "opacity": 1, "strokeDash": 0, "strokeWidth": 2, @@ -3146,10 +3108,8 @@ "id": "(NM -- OK)[0]", "src": "NM", "srcArrow": "none", - "srcLabel": "", "dst": "OK", "dstArrow": "none", - "dstLabel": "", "opacity": 1, "strokeDash": 0, "strokeWidth": 2, @@ -3195,10 +3155,8 @@ "id": "(OK -- UT)[0]", "src": "OK", "srcArrow": "none", - "srcLabel": "", "dst": "UT", "dstArrow": "none", - "dstLabel": "", "opacity": 1, "strokeDash": 0, "strokeWidth": 2, @@ -3244,10 +3202,8 @@ "id": "(UT -- WY)[0]", "src": "UT", "srcArrow": "none", - "srcLabel": "", "dst": "WY", "dstArrow": "none", - "dstLabel": "", "opacity": 1, "strokeDash": 0, "strokeWidth": 2, @@ -3305,10 +3261,8 @@ "id": "(CT -- MA)[0]", "src": "CT", "srcArrow": "none", - "srcLabel": "", "dst": "MA", "dstArrow": "none", - "dstLabel": "", "opacity": 1, "strokeDash": 0, "strokeWidth": 2, @@ -3354,10 +3308,8 @@ "id": "(MA -- NY)[0]", "src": "MA", "srcArrow": "none", - "srcLabel": "", "dst": "NY", "dstArrow": "none", - "dstLabel": "", "opacity": 1, "strokeDash": 0, "strokeWidth": 2, @@ -3415,10 +3367,8 @@ "id": "(NY -- RI)[0]", "src": "NY", "srcArrow": "none", - "srcLabel": "", "dst": "RI", "dstArrow": "none", - "dstLabel": "", "opacity": 1, "strokeDash": 0, "strokeWidth": 2, @@ -3476,10 +3426,8 @@ "id": "(DE -- MD)[0]", "src": "DE", "srcArrow": "none", - "srcLabel": "", "dst": "MD", "dstArrow": "none", - "dstLabel": "", "opacity": 1, "strokeDash": 0, "strokeWidth": 2, @@ -3525,10 +3473,8 @@ "id": "(MD -- NJ)[0]", "src": "MD", "srcArrow": "none", - "srcLabel": "", "dst": "NJ", "dstArrow": "none", - "dstLabel": "", "opacity": 1, "strokeDash": 0, "strokeWidth": 2, @@ -3574,10 +3520,8 @@ "id": "(NJ -- PA)[0]", "src": "NJ", "srcArrow": "none", - "srcLabel": "", "dst": "PA", "dstArrow": "none", - "dstLabel": "", "opacity": 1, "strokeDash": 0, "strokeWidth": 2, @@ -3635,10 +3579,8 @@ "id": "(FL -- GA)[1]", "src": "FL", "srcArrow": "none", - "srcLabel": "", "dst": "GA", "dstArrow": "none", - "dstLabel": "", "opacity": 1, "strokeDash": 0, "strokeWidth": 2, @@ -3684,10 +3626,8 @@ "id": "(GA -- NC)[0]", "src": "GA", "srcArrow": "none", - "srcLabel": "", "dst": "NC", "dstArrow": "none", - "dstLabel": "", "opacity": 1, "strokeDash": 0, "strokeWidth": 2, @@ -3793,10 +3733,8 @@ "id": "(NC -- SC)[0]", "src": "NC", "srcArrow": "none", - "srcLabel": "", "dst": "SC", "dstArrow": "none", - "dstLabel": "", "opacity": 1, "strokeDash": 0, "strokeWidth": 2, @@ -3842,10 +3780,8 @@ "id": "(SC -- TN)[0]", "src": "SC", "srcArrow": "none", - "srcLabel": "", "dst": "TN", "dstArrow": "none", - "dstLabel": "", "opacity": 1, "strokeDash": 0, "strokeWidth": 2, @@ -3891,10 +3827,8 @@ "id": "(ID -- MT)[0]", "src": "ID", "srcArrow": "none", - "srcLabel": "", "dst": "MT", "dstArrow": "none", - "dstLabel": "", "opacity": 1, "strokeDash": 0, "strokeWidth": 2, @@ -3940,10 +3874,8 @@ "id": "(MT -- NV)[0]", "src": "MT", "srcArrow": "none", - "srcLabel": "", "dst": "NV", "dstArrow": "none", - "dstLabel": "", "opacity": 1, "strokeDash": 0, "strokeWidth": 2, @@ -3989,10 +3921,8 @@ "id": "(NV -- OR)[1]", "src": "NV", "srcArrow": "none", - "srcLabel": "", "dst": "OR", "dstArrow": "none", - "dstLabel": "", "opacity": 1, "strokeDash": 0, "strokeWidth": 2, @@ -4050,10 +3980,8 @@ "id": "(OR -- UT)[0]", "src": "OR", "srcArrow": "none", - "srcLabel": "", "dst": "UT", "dstArrow": "none", - "dstLabel": "", "opacity": 1, "strokeDash": 0, "strokeWidth": 2, @@ -4099,10 +4027,8 @@ "id": "(UT -- WA)[0]", "src": "UT", "srcArrow": "none", - "srcLabel": "", "dst": "WA", "dstArrow": "none", - "dstLabel": "", "opacity": 1, "strokeDash": 0, "strokeWidth": 2, @@ -4148,10 +4074,8 @@ "id": "(WA -- WY)[0]", "src": "WA", "srcArrow": "none", - "srcLabel": "", "dst": "WY", "dstArrow": "none", - "dstLabel": "", "opacity": 1, "strokeDash": 0, "strokeWidth": 2, @@ -4197,10 +4121,8 @@ "id": "(IL -- IN)[0]", "src": "IL", "srcArrow": "none", - "srcLabel": "", "dst": "IN", "dstArrow": "none", - "dstLabel": "", "opacity": 1, "strokeDash": 0, "strokeWidth": 2, @@ -4246,10 +4168,8 @@ "id": "(IN -- IA)[0]", "src": "IN", "srcArrow": "none", - "srcLabel": "", "dst": "IA", "dstArrow": "none", - "dstLabel": "", "opacity": 1, "strokeDash": 0, "strokeWidth": 2, @@ -4295,10 +4215,8 @@ "id": "(IA -- MI)[0]", "src": "IA", "srcArrow": "none", - "srcLabel": "", "dst": "MI", "dstArrow": "none", - "dstLabel": "", "opacity": 1, "strokeDash": 0, "strokeWidth": 2, @@ -4344,10 +4262,8 @@ "id": "(MI -- KY)[0]", "src": "MI", "srcArrow": "none", - "srcLabel": "", "dst": "KY", "dstArrow": "none", - "dstLabel": "", "opacity": 1, "strokeDash": 0, "strokeWidth": 2, @@ -4393,10 +4309,8 @@ "id": "(KY -- MO)[0]", "src": "KY", "srcArrow": "none", - "srcLabel": "", "dst": "MO", "dstArrow": "none", - "dstLabel": "", "opacity": 1, "strokeDash": 0, "strokeWidth": 2, @@ -4442,10 +4356,8 @@ "id": "(MO -- WI)[0]", "src": "MO", "srcArrow": "none", - "srcLabel": "", "dst": "WI", "dstArrow": "none", - "dstLabel": "", "opacity": 1, "strokeDash": 0, "strokeWidth": 2, @@ -4527,10 +4439,8 @@ "id": "(IN -- KY)[0]", "src": "IN", "srcArrow": "none", - "srcLabel": "", "dst": "KY", "dstArrow": "none", - "dstLabel": "", "opacity": 1, "strokeDash": 0, "strokeWidth": 2, @@ -4612,10 +4522,8 @@ "id": "(KY -- MI)[0]", "src": "KY", "srcArrow": "none", - "srcLabel": "", "dst": "MI", "dstArrow": "none", - "dstLabel": "", "opacity": 1, "strokeDash": 0, "strokeWidth": 2, @@ -4661,10 +4569,8 @@ "id": "(MI -- OH)[0]", "src": "MI", "srcArrow": "none", - "srcLabel": "", "dst": "OH", "dstArrow": "none", - "dstLabel": "", "opacity": 1, "strokeDash": 0, "strokeWidth": 2, @@ -4770,10 +4676,8 @@ "id": "(IA -- MN)[0]", "src": "IA", "srcArrow": "none", - "srcLabel": "", "dst": "MN", "dstArrow": "none", - "dstLabel": "", "opacity": 1, "strokeDash": 0, "strokeWidth": 2, @@ -4831,10 +4735,8 @@ "id": "(MN -- MO)[0]", "src": "MN", "srcArrow": "none", - "srcLabel": "", "dst": "MO", "dstArrow": "none", - "dstLabel": "", "opacity": 1, "strokeDash": 0, "strokeWidth": 2, @@ -4880,10 +4782,8 @@ "id": "(MO -- NE)[0]", "src": "MO", "srcArrow": "none", - "srcLabel": "", "dst": "NE", "dstArrow": "none", - "dstLabel": "", "opacity": 1, "strokeDash": 0, "strokeWidth": 2, @@ -4929,10 +4829,8 @@ "id": "(NE -- SD)[0]", "src": "NE", "srcArrow": "none", - "srcLabel": "", "dst": "SD", "dstArrow": "none", - "dstLabel": "", "opacity": 1, "strokeDash": 0, "strokeWidth": 2, @@ -4978,10 +4876,8 @@ "id": "(SD -- WI)[0]", "src": "SD", "srcArrow": "none", - "srcLabel": "", "dst": "WI", "dstArrow": "none", - "dstLabel": "", "opacity": 1, "strokeDash": 0, "strokeWidth": 2, @@ -5027,10 +4923,8 @@ "id": "(KS -- MO)[0]", "src": "KS", "srcArrow": "none", - "srcLabel": "", "dst": "MO", "dstArrow": "none", - "dstLabel": "", "opacity": 1, "strokeDash": 0, "strokeWidth": 2, @@ -5076,10 +4970,8 @@ "id": "(MO -- NE)[1]", "src": "MO", "srcArrow": "none", - "srcLabel": "", "dst": "NE", "dstArrow": "none", - "dstLabel": "", "opacity": 1, "strokeDash": 0, "strokeWidth": 2, @@ -5125,10 +5017,8 @@ "id": "(NE -- OK)[0]", "src": "NE", "srcArrow": "none", - "srcLabel": "", "dst": "OK", "dstArrow": "none", - "dstLabel": "", "opacity": 1, "strokeDash": 0, "strokeWidth": 2, @@ -5186,10 +5076,8 @@ "id": "(KY -- MO)[1]", "src": "KY", "srcArrow": "none", - "srcLabel": "", "dst": "MO", "dstArrow": "none", - "dstLabel": "", "opacity": 1, "strokeDash": 0, "strokeWidth": 2, @@ -5235,10 +5123,8 @@ "id": "(MO -- OH)[0]", "src": "MO", "srcArrow": "none", - "srcLabel": "", "dst": "OH", "dstArrow": "none", - "dstLabel": "", "opacity": 1, "strokeDash": 0, "strokeWidth": 2, @@ -5296,10 +5182,8 @@ "id": "(OH -- TN)[0]", "src": "OH", "srcArrow": "none", - "srcLabel": "", "dst": "TN", "dstArrow": "none", - "dstLabel": "", "opacity": 1, "strokeDash": 0, "strokeWidth": 2, @@ -5357,10 +5241,8 @@ "id": "(TN -- VA)[0]", "src": "TN", "srcArrow": "none", - "srcLabel": "", "dst": "VA", "dstArrow": "none", - "dstLabel": "", "opacity": 1, "strokeDash": 0, "strokeWidth": 2, @@ -5406,10 +5288,8 @@ "id": "(VA -- WV)[0]", "src": "VA", "srcArrow": "none", - "srcLabel": "", "dst": "WV", "dstArrow": "none", - "dstLabel": "", "opacity": 1, "strokeDash": 0, "strokeWidth": 2, @@ -5455,10 +5335,8 @@ "id": "(LA -- MS)[1]", "src": "LA", "srcArrow": "none", - "srcLabel": "", "dst": "MS", "dstArrow": "none", - "dstLabel": "", "opacity": 1, "strokeDash": 0, "strokeWidth": 2, @@ -5504,10 +5382,8 @@ "id": "(MS -- TX)[0]", "src": "MS", "srcArrow": "none", - "srcLabel": "", "dst": "TX", "dstArrow": "none", - "dstLabel": "", "opacity": 1, "strokeDash": 0, "strokeWidth": 2, @@ -5661,10 +5537,8 @@ "id": "(ME -- NH)[0]", "src": "ME", "srcArrow": "none", - "srcLabel": "", "dst": "NH", "dstArrow": "none", - "dstLabel": "", "opacity": 1, "strokeDash": 0, "strokeWidth": 2, @@ -5710,10 +5584,8 @@ "id": "(MD -- PA)[0]", "src": "MD", "srcArrow": "none", - "srcLabel": "", "dst": "PA", "dstArrow": "none", - "dstLabel": "", "opacity": 1, "strokeDash": 0, "strokeWidth": 2, @@ -5795,10 +5667,8 @@ "id": "(PA -- VA)[0]", "src": "PA", "srcArrow": "none", - "srcLabel": "", "dst": "VA", "dstArrow": "none", - "dstLabel": "", "opacity": 1, "strokeDash": 0, "strokeWidth": 2, @@ -5844,10 +5714,8 @@ "id": "(VA -- WV)[1]", "src": "VA", "srcArrow": "none", - "srcLabel": "", "dst": "WV", "dstArrow": "none", - "dstLabel": "", "opacity": 1, "strokeDash": 0, "strokeWidth": 2, @@ -5893,10 +5761,8 @@ "id": "(MA -- NH)[0]", "src": "MA", "srcArrow": "none", - "srcLabel": "", "dst": "NH", "dstArrow": "none", - "dstLabel": "", "opacity": 1, "strokeDash": 0, "strokeWidth": 2, @@ -5942,10 +5808,8 @@ "id": "(NH -- NY)[0]", "src": "NH", "srcArrow": "none", - "srcLabel": "", "dst": "NY", "dstArrow": "none", - "dstLabel": "", "opacity": 1, "strokeDash": 0, "strokeWidth": 2, @@ -5991,10 +5855,8 @@ "id": "(NY -- RI)[1]", "src": "NY", "srcArrow": "none", - "srcLabel": "", "dst": "RI", "dstArrow": "none", - "dstLabel": "", "opacity": 1, "strokeDash": 0, "strokeWidth": 2, @@ -6052,10 +5914,8 @@ "id": "(RI -- VT)[0]", "src": "RI", "srcArrow": "none", - "srcLabel": "", "dst": "VT", "dstArrow": "none", - "dstLabel": "", "opacity": 1, "strokeDash": 0, "strokeWidth": 2, @@ -6101,10 +5961,8 @@ "id": "(MI -- MN)[0]", "src": "MI", "srcArrow": "none", - "srcLabel": "", "dst": "MN", "dstArrow": "none", - "dstLabel": "", "opacity": 1, "strokeDash": 0, "strokeWidth": 2, @@ -6150,10 +6008,8 @@ "id": "(MN -- OH)[0]", "src": "MN", "srcArrow": "none", - "srcLabel": "", "dst": "OH", "dstArrow": "none", - "dstLabel": "", "opacity": 1, "strokeDash": 0, "strokeWidth": 2, @@ -6235,10 +6091,8 @@ "id": "(OH -- WI)[0]", "src": "OH", "srcArrow": "none", - "srcLabel": "", "dst": "WI", "dstArrow": "none", - "dstLabel": "", "opacity": 1, "strokeDash": 0, "strokeWidth": 2, @@ -6284,10 +6138,8 @@ "id": "(MN -- ND)[0]", "src": "MN", "srcArrow": "none", - "srcLabel": "", "dst": "ND", "dstArrow": "none", - "dstLabel": "", "opacity": 1, "strokeDash": 0, "strokeWidth": 2, @@ -6345,10 +6197,8 @@ "id": "(ND -- SD)[0]", "src": "ND", "srcArrow": "none", - "srcLabel": "", "dst": "SD", "dstArrow": "none", - "dstLabel": "", "opacity": 1, "strokeDash": 0, "strokeWidth": 2, @@ -6394,10 +6244,8 @@ "id": "(SD -- WI)[1]", "src": "SD", "srcArrow": "none", - "srcLabel": "", "dst": "WI", "dstArrow": "none", - "dstLabel": "", "opacity": 1, "strokeDash": 0, "strokeWidth": 2, @@ -6443,10 +6291,8 @@ "id": "(MS -- TN)[1]", "src": "MS", "srcArrow": "none", - "srcLabel": "", "dst": "TN", "dstArrow": "none", - "dstLabel": "", "opacity": 1, "strokeDash": 0, "strokeWidth": 2, @@ -6576,10 +6422,8 @@ "id": "(MO -- NE)[2]", "src": "MO", "srcArrow": "none", - "srcLabel": "", "dst": "NE", "dstArrow": "none", - "dstLabel": "", "opacity": 1, "strokeDash": 0, "strokeWidth": 2, @@ -6625,10 +6469,8 @@ "id": "(NE -- OK)[1]", "src": "NE", "srcArrow": "none", - "srcLabel": "", "dst": "OK", "dstArrow": "none", - "dstLabel": "", "opacity": 1, "strokeDash": 0, "strokeWidth": 2, @@ -6686,10 +6528,8 @@ "id": "(OK -- TN)[1]", "src": "OK", "srcArrow": "none", - "srcLabel": "", "dst": "TN", "dstArrow": "none", - "dstLabel": "", "opacity": 1, "strokeDash": 0, "strokeWidth": 2, @@ -6735,10 +6575,8 @@ "id": "(MT -- ND)[0]", "src": "MT", "srcArrow": "none", - "srcLabel": "", "dst": "ND", "dstArrow": "none", - "dstLabel": "", "opacity": 1, "strokeDash": 0, "strokeWidth": 2, @@ -6784,10 +6622,8 @@ "id": "(ND -- SD)[1]", "src": "ND", "srcArrow": "none", - "srcLabel": "", "dst": "SD", "dstArrow": "none", - "dstLabel": "", "opacity": 1, "strokeDash": 0, "strokeWidth": 2, @@ -6833,10 +6669,8 @@ "id": "(SD -- WY)[0]", "src": "SD", "srcArrow": "none", - "srcLabel": "", "dst": "WY", "dstArrow": "none", - "dstLabel": "", "opacity": 1, "strokeDash": 0, "strokeWidth": 2, @@ -6942,10 +6776,8 @@ "id": "(NE -- SD)[1]", "src": "NE", "srcArrow": "none", - "srcLabel": "", "dst": "SD", "dstArrow": "none", - "dstLabel": "", "opacity": 1, "strokeDash": 0, "strokeWidth": 2, @@ -6991,10 +6823,8 @@ "id": "(SD -- WY)[1]", "src": "SD", "srcArrow": "none", - "srcLabel": "", "dst": "WY", "dstArrow": "none", - "dstLabel": "", "opacity": 1, "strokeDash": 0, "strokeWidth": 2, @@ -7100,10 +6930,8 @@ "id": "(NV -- OR)[2]", "src": "NV", "srcArrow": "none", - "srcLabel": "", "dst": "OR", "dstArrow": "none", - "dstLabel": "", "opacity": 1, "strokeDash": 0, "strokeWidth": 2, @@ -7161,10 +6989,8 @@ "id": "(OR -- UT)[1]", "src": "OR", "srcArrow": "none", - "srcLabel": "", "dst": "UT", "dstArrow": "none", - "dstLabel": "", "opacity": 1, "strokeDash": 0, "strokeWidth": 2, @@ -7210,10 +7036,8 @@ "id": "(NH -- VT)[0]", "src": "NH", "srcArrow": "none", - "srcLabel": "", "dst": "VT", "dstArrow": "none", - "dstLabel": "", "opacity": 1, "strokeDash": 0, "strokeWidth": 2, @@ -7319,10 +7143,8 @@ "id": "(NJ -- NY)[0]", "src": "NJ", "srcArrow": "none", - "srcLabel": "", "dst": "NY", "dstArrow": "none", - "dstLabel": "", "opacity": 1, "strokeDash": 0, "strokeWidth": 2, @@ -7368,10 +7190,8 @@ "id": "(NY -- PA)[0]", "src": "NY", "srcArrow": "none", - "srcLabel": "", "dst": "PA", "dstArrow": "none", - "dstLabel": "", "opacity": 1, "strokeDash": 0, "strokeWidth": 2, @@ -7417,10 +7237,8 @@ "id": "(NM -- OK)[1]", "src": "NM", "srcArrow": "none", - "srcLabel": "", "dst": "OK", "dstArrow": "none", - "dstLabel": "", "opacity": 1, "strokeDash": 0, "strokeWidth": 2, @@ -7466,10 +7284,8 @@ "id": "(OK -- TX)[0]", "src": "OK", "srcArrow": "none", - "srcLabel": "", "dst": "TX", "dstArrow": "none", - "dstLabel": "", "opacity": 1, "strokeDash": 0, "strokeWidth": 2, @@ -7527,10 +7343,8 @@ "id": "(NY -- PA)[1]", "src": "NY", "srcArrow": "none", - "srcLabel": "", "dst": "PA", "dstArrow": "none", - "dstLabel": "", "opacity": 1, "strokeDash": 0, "strokeWidth": 2, @@ -7576,10 +7390,8 @@ "id": "(PA -- RI)[0]", "src": "PA", "srcArrow": "none", - "srcLabel": "", "dst": "RI", "dstArrow": "none", - "dstLabel": "", "opacity": 1, "strokeDash": 0, "strokeWidth": 2, @@ -7625,10 +7437,8 @@ "id": "(RI -- VT)[1]", "src": "RI", "srcArrow": "none", - "srcLabel": "", "dst": "VT", "dstArrow": "none", - "dstLabel": "", "opacity": 1, "strokeDash": 0, "strokeWidth": 2, @@ -7674,10 +7484,8 @@ "id": "(NC -- SC)[1]", "src": "NC", "srcArrow": "none", - "srcLabel": "", "dst": "SC", "dstArrow": "none", - "dstLabel": "", "opacity": 1, "strokeDash": 0, "strokeWidth": 2, @@ -7723,10 +7531,8 @@ "id": "(SC -- TN)[1]", "src": "SC", "srcArrow": "none", - "srcLabel": "", "dst": "TN", "dstArrow": "none", - "dstLabel": "", "opacity": 1, "strokeDash": 0, "strokeWidth": 2, @@ -7772,10 +7578,8 @@ "id": "(TN -- VA)[1]", "src": "TN", "srcArrow": "none", - "srcLabel": "", "dst": "VA", "dstArrow": "none", - "dstLabel": "", "opacity": 1, "strokeDash": 0, "strokeWidth": 2, @@ -7821,10 +7625,8 @@ "id": "(ND -- SD)[2]", "src": "ND", "srcArrow": "none", - "srcLabel": "", "dst": "SD", "dstArrow": "none", - "dstLabel": "", "opacity": 1, "strokeDash": 0, "strokeWidth": 2, @@ -7870,10 +7672,8 @@ "id": "(OH -- PA)[0]", "src": "OH", "srcArrow": "none", - "srcLabel": "", "dst": "PA", "dstArrow": "none", - "dstLabel": "", "opacity": 1, "strokeDash": 0, "strokeWidth": 2, @@ -7931,10 +7731,8 @@ "id": "(PA -- WV)[0]", "src": "PA", "srcArrow": "none", - "srcLabel": "", "dst": "WV", "dstArrow": "none", - "dstLabel": "", "opacity": 1, "strokeDash": 0, "strokeWidth": 2, @@ -7992,10 +7790,8 @@ "id": "(OK -- TX)[1]", "src": "OK", "srcArrow": "none", - "srcLabel": "", "dst": "TX", "dstArrow": "none", - "dstLabel": "", "opacity": 1, "strokeDash": 0, "strokeWidth": 2, @@ -8053,10 +7849,8 @@ "id": "(OR -- WA)[0]", "src": "OR", "srcArrow": "none", - "srcLabel": "", "dst": "WA", "dstArrow": "none", - "dstLabel": "", "opacity": 1, "strokeDash": 0, "strokeWidth": 2, @@ -8114,10 +7908,8 @@ "id": "(PA -- WV)[1]", "src": "PA", "srcArrow": "none", - "srcLabel": "", "dst": "WV", "dstArrow": "none", - "dstLabel": "", "opacity": 1, "strokeDash": 0, "strokeWidth": 2, @@ -8175,10 +7967,8 @@ "id": "(SD -- WY)[2]", "src": "SD", "srcArrow": "none", - "srcLabel": "", "dst": "WY", "dstArrow": "none", - "dstLabel": "", "opacity": 1, "strokeDash": 0, "strokeWidth": 2, @@ -8284,10 +8074,8 @@ "id": "(TN -- VA)[2]", "src": "TN", "srcArrow": "none", - "srcLabel": "", "dst": "VA", "dstArrow": "none", - "dstLabel": "", "opacity": 1, "strokeDash": 0, "strokeWidth": 2, @@ -8333,10 +8121,8 @@ "id": "(UT -- WY)[1]", "src": "UT", "srcArrow": "none", - "srcLabel": "", "dst": "WY", "dstArrow": "none", - "dstLabel": "", "opacity": 1, "strokeDash": 0, "strokeWidth": 2, @@ -8394,10 +8180,8 @@ "id": "(VA -- WV)[2]", "src": "VA", "srcArrow": "none", - "srcLabel": "", "dst": "WV", "dstArrow": "none", - "dstLabel": "", "opacity": 1, "strokeDash": 0, "strokeWidth": 2, diff --git a/e2etests/testdata/stable/us_map/dagre/sketch.exp.svg b/e2etests/testdata/stable/us_map/dagre/sketch.exp.svg index d287ceb111..d2d743c409 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-631525372 .fill-N1{fill:#0A0F25;} + .d2-631525372 .fill-N2{fill:#676C7E;} + .d2-631525372 .fill-N3{fill:#9499AB;} + .d2-631525372 .fill-N4{fill:#CFD2DD;} + .d2-631525372 .fill-N5{fill:#DEE1EB;} + .d2-631525372 .fill-N6{fill:#EEF1F8;} + .d2-631525372 .fill-N7{fill:#FFFFFF;} + .d2-631525372 .fill-B1{fill:#0D32B2;} + .d2-631525372 .fill-B2{fill:#0D32B2;} + .d2-631525372 .fill-B3{fill:#E3E9FD;} + .d2-631525372 .fill-B4{fill:#E3E9FD;} + .d2-631525372 .fill-B5{fill:#EDF0FD;} + .d2-631525372 .fill-B6{fill:#F7F8FE;} + .d2-631525372 .fill-AA2{fill:#4A6FF3;} + .d2-631525372 .fill-AA4{fill:#EDF0FD;} + .d2-631525372 .fill-AA5{fill:#F7F8FE;} + .d2-631525372 .fill-AB4{fill:#EDF0FD;} + .d2-631525372 .fill-AB5{fill:#F7F8FE;} + .d2-631525372 .stroke-N1{stroke:#0A0F25;} + .d2-631525372 .stroke-N2{stroke:#676C7E;} + .d2-631525372 .stroke-N3{stroke:#9499AB;} + .d2-631525372 .stroke-N4{stroke:#CFD2DD;} + .d2-631525372 .stroke-N5{stroke:#DEE1EB;} + .d2-631525372 .stroke-N6{stroke:#EEF1F8;} + .d2-631525372 .stroke-N7{stroke:#FFFFFF;} + .d2-631525372 .stroke-B1{stroke:#0D32B2;} + .d2-631525372 .stroke-B2{stroke:#0D32B2;} + .d2-631525372 .stroke-B3{stroke:#E3E9FD;} + .d2-631525372 .stroke-B4{stroke:#E3E9FD;} + .d2-631525372 .stroke-B5{stroke:#EDF0FD;} + .d2-631525372 .stroke-B6{stroke:#F7F8FE;} + .d2-631525372 .stroke-AA2{stroke:#4A6FF3;} + .d2-631525372 .stroke-AA4{stroke:#EDF0FD;} + .d2-631525372 .stroke-AA5{stroke:#F7F8FE;} + .d2-631525372 .stroke-AB4{stroke:#EDF0FD;} + .d2-631525372 .stroke-AB5{stroke:#F7F8FE;} + .d2-631525372 .background-color-N1{background-color:#0A0F25;} + .d2-631525372 .background-color-N2{background-color:#676C7E;} + .d2-631525372 .background-color-N3{background-color:#9499AB;} + .d2-631525372 .background-color-N4{background-color:#CFD2DD;} + .d2-631525372 .background-color-N5{background-color:#DEE1EB;} + .d2-631525372 .background-color-N6{background-color:#EEF1F8;} + .d2-631525372 .background-color-N7{background-color:#FFFFFF;} + .d2-631525372 .background-color-B1{background-color:#0D32B2;} + .d2-631525372 .background-color-B2{background-color:#0D32B2;} + .d2-631525372 .background-color-B3{background-color:#E3E9FD;} + .d2-631525372 .background-color-B4{background-color:#E3E9FD;} + .d2-631525372 .background-color-B5{background-color:#EDF0FD;} + .d2-631525372 .background-color-B6{background-color:#F7F8FE;} + .d2-631525372 .background-color-AA2{background-color:#4A6FF3;} + .d2-631525372 .background-color-AA4{background-color:#EDF0FD;} + .d2-631525372 .background-color-AA5{background-color:#F7F8FE;} + .d2-631525372 .background-color-AB4{background-color:#EDF0FD;} + .d2-631525372 .background-color-AB5{background-color:#F7F8FE;} + .d2-631525372 .color-N1{color:#0A0F25;} + .d2-631525372 .color-N2{color:#676C7E;} + .d2-631525372 .color-N3{color:#9499AB;} + .d2-631525372 .color-N4{color:#CFD2DD;} + .d2-631525372 .color-N5{color:#DEE1EB;} + .d2-631525372 .color-N6{color:#EEF1F8;} + .d2-631525372 .color-N7{color:#FFFFFF;} + .d2-631525372 .color-B1{color:#0D32B2;} + .d2-631525372 .color-B2{color:#0D32B2;} + .d2-631525372 .color-B3{color:#E3E9FD;} + .d2-631525372 .color-B4{color:#E3E9FD;} + .d2-631525372 .color-B5{color:#EDF0FD;} + .d2-631525372 .color-B6{color:#F7F8FE;} + .d2-631525372 .color-AA2{color:#4A6FF3;} + .d2-631525372 .color-AA4{color:#EDF0FD;} + .d2-631525372 .color-AA5{color:#F7F8FE;} + .d2-631525372 .color-AB4{color:#EDF0FD;} + .d2-631525372 .color-AB5{color:#F7F8FE;}.appendix text.text{fill:#0A0F25}.md{--color-fg-default:#0A0F25;--color-fg-muted:#676C7E;--color-fg-subtle:#9499AB;--color-canvas-default:#FFFFFF;--color-canvas-subtle:#EEF1F8;--color-border-default:#0D32B2;--color-border-muted:#0D32B2;--color-neutral-muted:#EEF1F8;--color-accent-fg:#0D32B2;--color-accent-emphasis:#0D32B2;--color-attention-subtle:#676C7E;--color-danger-fg:red;}.sketch-overlay-B1{fill:url(#streaks-darker);mix-blend-mode:lighten}.sketch-overlay-B2{fill:url(#streaks-darker);mix-blend-mode:lighten}.sketch-overlay-B3{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-B4{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-B5{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-B6{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-AA2{fill:url(#streaks-dark);mix-blend-mode:overlay}.sketch-overlay-AA4{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-AA5{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-AB4{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-AB5{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-N1{fill:url(#streaks-darker);mix-blend-mode:lighten}.sketch-overlay-N2{fill:url(#streaks-dark);mix-blend-mode:overlay}.sketch-overlay-N3{fill:url(#streaks-normal);mix-blend-mode:color-burn}.sketch-overlay-N4{fill:url(#streaks-normal);mix-blend-mode:color-burn}.sketch-overlay-N5{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-N6{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-N7{fill:url(#streaks-bright);mix-blend-mode:darken}.light-code{display: block}.dark-code{display: none}]]>ALFLGAMSTNAKAZCANVNMUTARLAMOOKTXORCOKSNEWYCTMANYRIDEMDNJPANCSCHIIDMTWAILINIAMIKYWIOHMNSDVAWVMENHVTND \ No newline at end of file diff --git a/e2etests/testdata/stable/us_map/elk/board.exp.json b/e2etests/testdata/stable/us_map/elk/board.exp.json index 32c3583999..90d1af9577 100644 --- a/e2etests/testdata/stable/us_map/elk/board.exp.json +++ b/e2etests/testdata/stable/us_map/elk/board.exp.json @@ -2059,10 +2059,8 @@ "id": "(AL -- FL)[0]", "src": "AL", "srcArrow": "none", - "srcLabel": "", "dst": "FL", "dstArrow": "none", - "dstLabel": "", "opacity": 1, "strokeDash": 0, "strokeWidth": 2, @@ -2099,10 +2097,8 @@ "id": "(FL -- GA)[0]", "src": "FL", "srcArrow": "none", - "srcLabel": "", "dst": "GA", "dstArrow": "none", - "dstLabel": "", "opacity": 1, "strokeDash": 0, "strokeWidth": 2, @@ -2139,10 +2135,8 @@ "id": "(GA -- MS)[0]", "src": "GA", "srcArrow": "none", - "srcLabel": "", "dst": "MS", "dstArrow": "none", - "dstLabel": "", "opacity": 1, "strokeDash": 0, "strokeWidth": 2, @@ -2187,10 +2181,8 @@ "id": "(MS -- TN)[0]", "src": "MS", "srcArrow": "none", - "srcLabel": "", "dst": "TN", "dstArrow": "none", - "dstLabel": "", "opacity": 1, "strokeDash": 0, "strokeWidth": 2, @@ -2235,10 +2227,8 @@ "id": "(AZ -- CA)[0]", "src": "AZ", "srcArrow": "none", - "srcLabel": "", "dst": "CA", "dstArrow": "none", - "dstLabel": "", "opacity": 1, "strokeDash": 0, "strokeWidth": 2, @@ -2275,10 +2265,8 @@ "id": "(CA -- NV)[0]", "src": "CA", "srcArrow": "none", - "srcLabel": "", "dst": "NV", "dstArrow": "none", - "dstLabel": "", "opacity": 1, "strokeDash": 0, "strokeWidth": 2, @@ -2315,10 +2303,8 @@ "id": "(NV -- NM)[0]", "src": "NV", "srcArrow": "none", - "srcLabel": "", "dst": "NM", "dstArrow": "none", - "dstLabel": "", "opacity": 1, "strokeDash": 0, "strokeWidth": 2, @@ -2363,10 +2349,8 @@ "id": "(NM -- UT)[0]", "src": "NM", "srcArrow": "none", - "srcLabel": "", "dst": "UT", "dstArrow": "none", - "dstLabel": "", "opacity": 1, "strokeDash": 0, "strokeWidth": 2, @@ -2411,10 +2395,8 @@ "id": "(AR -- LA)[0]", "src": "AR", "srcArrow": "none", - "srcLabel": "", "dst": "LA", "dstArrow": "none", - "dstLabel": "", "opacity": 1, "strokeDash": 0, "strokeWidth": 2, @@ -2451,10 +2433,8 @@ "id": "(LA -- MS)[0]", "src": "LA", "srcArrow": "none", - "srcLabel": "", "dst": "MS", "dstArrow": "none", - "dstLabel": "", "opacity": 1, "strokeDash": 0, "strokeWidth": 2, @@ -2491,10 +2471,8 @@ "id": "(MS -- MO)[0]", "src": "MS", "srcArrow": "none", - "srcLabel": "", "dst": "MO", "dstArrow": "none", - "dstLabel": "", "opacity": 1, "strokeDash": 0, "strokeWidth": 2, @@ -2539,10 +2517,8 @@ "id": "(MO -- OK)[0]", "src": "MO", "srcArrow": "none", - "srcLabel": "", "dst": "OK", "dstArrow": "none", - "dstLabel": "", "opacity": 1, "strokeDash": 0, "strokeWidth": 2, @@ -2587,10 +2563,8 @@ "id": "(OK -- TN)[0]", "src": "OK", "srcArrow": "none", - "srcLabel": "", "dst": "TN", "dstArrow": "none", - "dstLabel": "", "opacity": 1, "strokeDash": 0, "strokeWidth": 2, @@ -2635,10 +2609,8 @@ "id": "(TN -- TX)[0]", "src": "TN", "srcArrow": "none", - "srcLabel": "", "dst": "TX", "dstArrow": "none", - "dstLabel": "", "opacity": 1, "strokeDash": 0, "strokeWidth": 2, @@ -2683,10 +2655,8 @@ "id": "(CA -- NV)[1]", "src": "CA", "srcArrow": "none", - "srcLabel": "", "dst": "NV", "dstArrow": "none", - "dstLabel": "", "opacity": 1, "strokeDash": 0, "strokeWidth": 2, @@ -2723,10 +2693,8 @@ "id": "(NV -- OR)[0]", "src": "NV", "srcArrow": "none", - "srcLabel": "", "dst": "OR", "dstArrow": "none", - "dstLabel": "", "opacity": 1, "strokeDash": 0, "strokeWidth": 2, @@ -2763,10 +2731,8 @@ "id": "(CO -- KS)[0]", "src": "CO", "srcArrow": "none", - "srcLabel": "", "dst": "KS", "dstArrow": "none", - "dstLabel": "", "opacity": 1, "strokeDash": 0, "strokeWidth": 2, @@ -2811,10 +2777,8 @@ "id": "(KS -- NE)[0]", "src": "KS", "srcArrow": "none", - "srcLabel": "", "dst": "NE", "dstArrow": "none", - "dstLabel": "", "opacity": 1, "strokeDash": 0, "strokeWidth": 2, @@ -2859,10 +2823,8 @@ "id": "(NE -- NM)[0]", "src": "NE", "srcArrow": "none", - "srcLabel": "", "dst": "NM", "dstArrow": "none", - "dstLabel": "", "opacity": 1, "strokeDash": 0, "strokeWidth": 2, @@ -2899,10 +2861,8 @@ "id": "(NM -- OK)[0]", "src": "NM", "srcArrow": "none", - "srcLabel": "", "dst": "OK", "dstArrow": "none", - "dstLabel": "", "opacity": 1, "strokeDash": 0, "strokeWidth": 2, @@ -2947,10 +2907,8 @@ "id": "(OK -- UT)[0]", "src": "OK", "srcArrow": "none", - "srcLabel": "", "dst": "UT", "dstArrow": "none", - "dstLabel": "", "opacity": 1, "strokeDash": 0, "strokeWidth": 2, @@ -2995,10 +2953,8 @@ "id": "(UT -- WY)[0]", "src": "UT", "srcArrow": "none", - "srcLabel": "", "dst": "WY", "dstArrow": "none", - "dstLabel": "", "opacity": 1, "strokeDash": 0, "strokeWidth": 2, @@ -3043,10 +2999,8 @@ "id": "(CT -- MA)[0]", "src": "CT", "srcArrow": "none", - "srcLabel": "", "dst": "MA", "dstArrow": "none", - "dstLabel": "", "opacity": 1, "strokeDash": 0, "strokeWidth": 2, @@ -3083,10 +3037,8 @@ "id": "(MA -- NY)[0]", "src": "MA", "srcArrow": "none", - "srcLabel": "", "dst": "NY", "dstArrow": "none", - "dstLabel": "", "opacity": 1, "strokeDash": 0, "strokeWidth": 2, @@ -3123,10 +3075,8 @@ "id": "(NY -- RI)[0]", "src": "NY", "srcArrow": "none", - "srcLabel": "", "dst": "RI", "dstArrow": "none", - "dstLabel": "", "opacity": 1, "strokeDash": 0, "strokeWidth": 2, @@ -3163,10 +3113,8 @@ "id": "(DE -- MD)[0]", "src": "DE", "srcArrow": "none", - "srcLabel": "", "dst": "MD", "dstArrow": "none", - "dstLabel": "", "opacity": 1, "strokeDash": 0, "strokeWidth": 2, @@ -3203,10 +3151,8 @@ "id": "(MD -- NJ)[0]", "src": "MD", "srcArrow": "none", - "srcLabel": "", "dst": "NJ", "dstArrow": "none", - "dstLabel": "", "opacity": 1, "strokeDash": 0, "strokeWidth": 2, @@ -3243,10 +3189,8 @@ "id": "(NJ -- PA)[0]", "src": "NJ", "srcArrow": "none", - "srcLabel": "", "dst": "PA", "dstArrow": "none", - "dstLabel": "", "opacity": 1, "strokeDash": 0, "strokeWidth": 2, @@ -3283,10 +3227,8 @@ "id": "(FL -- GA)[1]", "src": "FL", "srcArrow": "none", - "srcLabel": "", "dst": "GA", "dstArrow": "none", - "dstLabel": "", "opacity": 1, "strokeDash": 0, "strokeWidth": 2, @@ -3323,10 +3265,8 @@ "id": "(GA -- NC)[0]", "src": "GA", "srcArrow": "none", - "srcLabel": "", "dst": "NC", "dstArrow": "none", - "dstLabel": "", "opacity": 1, "strokeDash": 0, "strokeWidth": 2, @@ -3363,10 +3303,8 @@ "id": "(NC -- SC)[0]", "src": "NC", "srcArrow": "none", - "srcLabel": "", "dst": "SC", "dstArrow": "none", - "dstLabel": "", "opacity": 1, "strokeDash": 0, "strokeWidth": 2, @@ -3403,10 +3341,8 @@ "id": "(SC -- TN)[0]", "src": "SC", "srcArrow": "none", - "srcLabel": "", "dst": "TN", "dstArrow": "none", - "dstLabel": "", "opacity": 1, "strokeDash": 0, "strokeWidth": 2, @@ -3451,10 +3387,8 @@ "id": "(ID -- MT)[0]", "src": "ID", "srcArrow": "none", - "srcLabel": "", "dst": "MT", "dstArrow": "none", - "dstLabel": "", "opacity": 1, "strokeDash": 0, "strokeWidth": 2, @@ -3499,10 +3433,8 @@ "id": "(MT -- NV)[0]", "src": "MT", "srcArrow": "none", - "srcLabel": "", "dst": "NV", "dstArrow": "none", - "dstLabel": "", "opacity": 1, "strokeDash": 0, "strokeWidth": 2, @@ -3547,10 +3479,8 @@ "id": "(NV -- OR)[1]", "src": "NV", "srcArrow": "none", - "srcLabel": "", "dst": "OR", "dstArrow": "none", - "dstLabel": "", "opacity": 1, "strokeDash": 0, "strokeWidth": 2, @@ -3587,10 +3517,8 @@ "id": "(OR -- UT)[0]", "src": "OR", "srcArrow": "none", - "srcLabel": "", "dst": "UT", "dstArrow": "none", - "dstLabel": "", "opacity": 1, "strokeDash": 0, "strokeWidth": 2, @@ -3635,10 +3563,8 @@ "id": "(UT -- WA)[0]", "src": "UT", "srcArrow": "none", - "srcLabel": "", "dst": "WA", "dstArrow": "none", - "dstLabel": "", "opacity": 1, "strokeDash": 0, "strokeWidth": 2, @@ -3683,10 +3609,8 @@ "id": "(WA -- WY)[0]", "src": "WA", "srcArrow": "none", - "srcLabel": "", "dst": "WY", "dstArrow": "none", - "dstLabel": "", "opacity": 1, "strokeDash": 0, "strokeWidth": 2, @@ -3731,10 +3655,8 @@ "id": "(IL -- IN)[0]", "src": "IL", "srcArrow": "none", - "srcLabel": "", "dst": "IN", "dstArrow": "none", - "dstLabel": "", "opacity": 1, "strokeDash": 0, "strokeWidth": 2, @@ -3771,10 +3693,8 @@ "id": "(IN -- IA)[0]", "src": "IN", "srcArrow": "none", - "srcLabel": "", "dst": "IA", "dstArrow": "none", - "dstLabel": "", "opacity": 1, "strokeDash": 0, "strokeWidth": 2, @@ -3819,10 +3739,8 @@ "id": "(IA -- MI)[0]", "src": "IA", "srcArrow": "none", - "srcLabel": "", "dst": "MI", "dstArrow": "none", - "dstLabel": "", "opacity": 1, "strokeDash": 0, "strokeWidth": 2, @@ -3867,10 +3785,8 @@ "id": "(MI -- KY)[0]", "src": "MI", "srcArrow": "none", - "srcLabel": "", "dst": "KY", "dstArrow": "none", - "dstLabel": "", "opacity": 1, "strokeDash": 0, "strokeWidth": 2, @@ -3915,10 +3831,8 @@ "id": "(KY -- MO)[0]", "src": "KY", "srcArrow": "none", - "srcLabel": "", "dst": "MO", "dstArrow": "none", - "dstLabel": "", "opacity": 1, "strokeDash": 0, "strokeWidth": 2, @@ -3963,10 +3877,8 @@ "id": "(MO -- WI)[0]", "src": "MO", "srcArrow": "none", - "srcLabel": "", "dst": "WI", "dstArrow": "none", - "dstLabel": "", "opacity": 1, "strokeDash": 0, "strokeWidth": 2, @@ -4011,10 +3923,8 @@ "id": "(IN -- KY)[0]", "src": "IN", "srcArrow": "none", - "srcLabel": "", "dst": "KY", "dstArrow": "none", - "dstLabel": "", "opacity": 1, "strokeDash": 0, "strokeWidth": 2, @@ -4051,10 +3961,8 @@ "id": "(KY -- MI)[0]", "src": "KY", "srcArrow": "none", - "srcLabel": "", "dst": "MI", "dstArrow": "none", - "dstLabel": "", "opacity": 1, "strokeDash": 0, "strokeWidth": 2, @@ -4099,10 +4007,8 @@ "id": "(MI -- OH)[0]", "src": "MI", "srcArrow": "none", - "srcLabel": "", "dst": "OH", "dstArrow": "none", - "dstLabel": "", "opacity": 1, "strokeDash": 0, "strokeWidth": 2, @@ -4155,10 +4061,8 @@ "id": "(IA -- MN)[0]", "src": "IA", "srcArrow": "none", - "srcLabel": "", "dst": "MN", "dstArrow": "none", - "dstLabel": "", "opacity": 1, "strokeDash": 0, "strokeWidth": 2, @@ -4195,10 +4099,8 @@ "id": "(MN -- MO)[0]", "src": "MN", "srcArrow": "none", - "srcLabel": "", "dst": "MO", "dstArrow": "none", - "dstLabel": "", "opacity": 1, "strokeDash": 0, "strokeWidth": 2, @@ -4243,10 +4145,8 @@ "id": "(MO -- NE)[0]", "src": "MO", "srcArrow": "none", - "srcLabel": "", "dst": "NE", "dstArrow": "none", - "dstLabel": "", "opacity": 1, "strokeDash": 0, "strokeWidth": 2, @@ -4291,10 +4191,8 @@ "id": "(NE -- SD)[0]", "src": "NE", "srcArrow": "none", - "srcLabel": "", "dst": "SD", "dstArrow": "none", - "dstLabel": "", "opacity": 1, "strokeDash": 0, "strokeWidth": 2, @@ -4339,10 +4237,8 @@ "id": "(SD -- WI)[0]", "src": "SD", "srcArrow": "none", - "srcLabel": "", "dst": "WI", "dstArrow": "none", - "dstLabel": "", "opacity": 1, "strokeDash": 0, "strokeWidth": 2, @@ -4387,10 +4283,8 @@ "id": "(KS -- MO)[0]", "src": "KS", "srcArrow": "none", - "srcLabel": "", "dst": "MO", "dstArrow": "none", - "dstLabel": "", "opacity": 1, "strokeDash": 0, "strokeWidth": 2, @@ -4435,10 +4329,8 @@ "id": "(MO -- NE)[1]", "src": "MO", "srcArrow": "none", - "srcLabel": "", "dst": "NE", "dstArrow": "none", - "dstLabel": "", "opacity": 1, "strokeDash": 0, "strokeWidth": 2, @@ -4483,10 +4375,8 @@ "id": "(NE -- OK)[0]", "src": "NE", "srcArrow": "none", - "srcLabel": "", "dst": "OK", "dstArrow": "none", - "dstLabel": "", "opacity": 1, "strokeDash": 0, "strokeWidth": 2, @@ -4531,10 +4421,8 @@ "id": "(KY -- MO)[1]", "src": "KY", "srcArrow": "none", - "srcLabel": "", "dst": "MO", "dstArrow": "none", - "dstLabel": "", "opacity": 1, "strokeDash": 0, "strokeWidth": 2, @@ -4587,10 +4475,8 @@ "id": "(MO -- OH)[0]", "src": "MO", "srcArrow": "none", - "srcLabel": "", "dst": "OH", "dstArrow": "none", - "dstLabel": "", "opacity": 1, "strokeDash": 0, "strokeWidth": 2, @@ -4635,10 +4521,8 @@ "id": "(OH -- TN)[0]", "src": "OH", "srcArrow": "none", - "srcLabel": "", "dst": "TN", "dstArrow": "none", - "dstLabel": "", "opacity": 1, "strokeDash": 0, "strokeWidth": 2, @@ -4683,10 +4567,8 @@ "id": "(TN -- VA)[0]", "src": "TN", "srcArrow": "none", - "srcLabel": "", "dst": "VA", "dstArrow": "none", - "dstLabel": "", "opacity": 1, "strokeDash": 0, "strokeWidth": 2, @@ -4731,10 +4613,8 @@ "id": "(VA -- WV)[0]", "src": "VA", "srcArrow": "none", - "srcLabel": "", "dst": "WV", "dstArrow": "none", - "dstLabel": "", "opacity": 1, "strokeDash": 0, "strokeWidth": 2, @@ -4779,10 +4659,8 @@ "id": "(LA -- MS)[1]", "src": "LA", "srcArrow": "none", - "srcLabel": "", "dst": "MS", "dstArrow": "none", - "dstLabel": "", "opacity": 1, "strokeDash": 0, "strokeWidth": 2, @@ -4819,10 +4697,8 @@ "id": "(MS -- TX)[0]", "src": "MS", "srcArrow": "none", - "srcLabel": "", "dst": "TX", "dstArrow": "none", - "dstLabel": "", "opacity": 1, "strokeDash": 0, "strokeWidth": 2, @@ -4859,10 +4735,8 @@ "id": "(ME -- NH)[0]", "src": "ME", "srcArrow": "none", - "srcLabel": "", "dst": "NH", "dstArrow": "none", - "dstLabel": "", "opacity": 1, "strokeDash": 0, "strokeWidth": 2, @@ -4899,10 +4773,8 @@ "id": "(MD -- PA)[0]", "src": "MD", "srcArrow": "none", - "srcLabel": "", "dst": "PA", "dstArrow": "none", - "dstLabel": "", "opacity": 1, "strokeDash": 0, "strokeWidth": 2, @@ -4955,10 +4827,8 @@ "id": "(PA -- VA)[0]", "src": "PA", "srcArrow": "none", - "srcLabel": "", "dst": "VA", "dstArrow": "none", - "dstLabel": "", "opacity": 1, "strokeDash": 0, "strokeWidth": 2, @@ -5003,10 +4873,8 @@ "id": "(VA -- WV)[1]", "src": "VA", "srcArrow": "none", - "srcLabel": "", "dst": "WV", "dstArrow": "none", - "dstLabel": "", "opacity": 1, "strokeDash": 0, "strokeWidth": 2, @@ -5051,10 +4919,8 @@ "id": "(MA -- NH)[0]", "src": "MA", "srcArrow": "none", - "srcLabel": "", "dst": "NH", "dstArrow": "none", - "dstLabel": "", "opacity": 1, "strokeDash": 0, "strokeWidth": 2, @@ -5099,10 +4965,8 @@ "id": "(NH -- NY)[0]", "src": "NH", "srcArrow": "none", - "srcLabel": "", "dst": "NY", "dstArrow": "none", - "dstLabel": "", "opacity": 1, "strokeDash": 0, "strokeWidth": 2, @@ -5147,10 +5011,8 @@ "id": "(NY -- RI)[1]", "src": "NY", "srcArrow": "none", - "srcLabel": "", "dst": "RI", "dstArrow": "none", - "dstLabel": "", "opacity": 1, "strokeDash": 0, "strokeWidth": 2, @@ -5187,10 +5049,8 @@ "id": "(RI -- VT)[0]", "src": "RI", "srcArrow": "none", - "srcLabel": "", "dst": "VT", "dstArrow": "none", - "dstLabel": "", "opacity": 1, "strokeDash": 0, "strokeWidth": 2, @@ -5227,10 +5087,8 @@ "id": "(MI -- MN)[0]", "src": "MI", "srcArrow": "none", - "srcLabel": "", "dst": "MN", "dstArrow": "none", - "dstLabel": "", "opacity": 1, "strokeDash": 0, "strokeWidth": 2, @@ -5275,10 +5133,8 @@ "id": "(MN -- OH)[0]", "src": "MN", "srcArrow": "none", - "srcLabel": "", "dst": "OH", "dstArrow": "none", - "dstLabel": "", "opacity": 1, "strokeDash": 0, "strokeWidth": 2, @@ -5323,10 +5179,8 @@ "id": "(OH -- WI)[0]", "src": "OH", "srcArrow": "none", - "srcLabel": "", "dst": "WI", "dstArrow": "none", - "dstLabel": "", "opacity": 1, "strokeDash": 0, "strokeWidth": 2, @@ -5379,10 +5233,8 @@ "id": "(MN -- ND)[0]", "src": "MN", "srcArrow": "none", - "srcLabel": "", "dst": "ND", "dstArrow": "none", - "dstLabel": "", "opacity": 1, "strokeDash": 0, "strokeWidth": 2, @@ -5427,10 +5279,8 @@ "id": "(ND -- SD)[0]", "src": "ND", "srcArrow": "none", - "srcLabel": "", "dst": "SD", "dstArrow": "none", - "dstLabel": "", "opacity": 1, "strokeDash": 0, "strokeWidth": 2, @@ -5467,10 +5317,8 @@ "id": "(SD -- WI)[1]", "src": "SD", "srcArrow": "none", - "srcLabel": "", "dst": "WI", "dstArrow": "none", - "dstLabel": "", "opacity": 1, "strokeDash": 0, "strokeWidth": 2, @@ -5515,10 +5363,8 @@ "id": "(MS -- TN)[1]", "src": "MS", "srcArrow": "none", - "srcLabel": "", "dst": "TN", "dstArrow": "none", - "dstLabel": "", "opacity": 1, "strokeDash": 0, "strokeWidth": 2, @@ -5563,10 +5409,8 @@ "id": "(MO -- NE)[2]", "src": "MO", "srcArrow": "none", - "srcLabel": "", "dst": "NE", "dstArrow": "none", - "dstLabel": "", "opacity": 1, "strokeDash": 0, "strokeWidth": 2, @@ -5611,10 +5455,8 @@ "id": "(NE -- OK)[1]", "src": "NE", "srcArrow": "none", - "srcLabel": "", "dst": "OK", "dstArrow": "none", - "dstLabel": "", "opacity": 1, "strokeDash": 0, "strokeWidth": 2, @@ -5659,10 +5501,8 @@ "id": "(OK -- TN)[1]", "src": "OK", "srcArrow": "none", - "srcLabel": "", "dst": "TN", "dstArrow": "none", - "dstLabel": "", "opacity": 1, "strokeDash": 0, "strokeWidth": 2, @@ -5707,10 +5547,8 @@ "id": "(MT -- ND)[0]", "src": "MT", "srcArrow": "none", - "srcLabel": "", "dst": "ND", "dstArrow": "none", - "dstLabel": "", "opacity": 1, "strokeDash": 0, "strokeWidth": 2, @@ -5747,10 +5585,8 @@ "id": "(ND -- SD)[1]", "src": "ND", "srcArrow": "none", - "srcLabel": "", "dst": "SD", "dstArrow": "none", - "dstLabel": "", "opacity": 1, "strokeDash": 0, "strokeWidth": 2, @@ -5787,10 +5623,8 @@ "id": "(SD -- WY)[0]", "src": "SD", "srcArrow": "none", - "srcLabel": "", "dst": "WY", "dstArrow": "none", - "dstLabel": "", "opacity": 1, "strokeDash": 0, "strokeWidth": 2, @@ -5843,10 +5677,8 @@ "id": "(NE -- SD)[1]", "src": "NE", "srcArrow": "none", - "srcLabel": "", "dst": "SD", "dstArrow": "none", - "dstLabel": "", "opacity": 1, "strokeDash": 0, "strokeWidth": 2, @@ -5891,10 +5723,8 @@ "id": "(SD -- WY)[1]", "src": "SD", "srcArrow": "none", - "srcLabel": "", "dst": "WY", "dstArrow": "none", - "dstLabel": "", "opacity": 1, "strokeDash": 0, "strokeWidth": 2, @@ -5947,10 +5777,8 @@ "id": "(NV -- OR)[2]", "src": "NV", "srcArrow": "none", - "srcLabel": "", "dst": "OR", "dstArrow": "none", - "dstLabel": "", "opacity": 1, "strokeDash": 0, "strokeWidth": 2, @@ -5987,10 +5815,8 @@ "id": "(OR -- UT)[1]", "src": "OR", "srcArrow": "none", - "srcLabel": "", "dst": "UT", "dstArrow": "none", - "dstLabel": "", "opacity": 1, "strokeDash": 0, "strokeWidth": 2, @@ -6035,10 +5861,8 @@ "id": "(NH -- VT)[0]", "src": "NH", "srcArrow": "none", - "srcLabel": "", "dst": "VT", "dstArrow": "none", - "dstLabel": "", "opacity": 1, "strokeDash": 0, "strokeWidth": 2, @@ -6083,10 +5907,8 @@ "id": "(NJ -- NY)[0]", "src": "NJ", "srcArrow": "none", - "srcLabel": "", "dst": "NY", "dstArrow": "none", - "dstLabel": "", "opacity": 1, "strokeDash": 0, "strokeWidth": 2, @@ -6131,10 +5953,8 @@ "id": "(NY -- PA)[0]", "src": "NY", "srcArrow": "none", - "srcLabel": "", "dst": "PA", "dstArrow": "none", - "dstLabel": "", "opacity": 1, "strokeDash": 0, "strokeWidth": 2, @@ -6179,10 +5999,8 @@ "id": "(NM -- OK)[1]", "src": "NM", "srcArrow": "none", - "srcLabel": "", "dst": "OK", "dstArrow": "none", - "dstLabel": "", "opacity": 1, "strokeDash": 0, "strokeWidth": 2, @@ -6227,10 +6045,8 @@ "id": "(OK -- TX)[0]", "src": "OK", "srcArrow": "none", - "srcLabel": "", "dst": "TX", "dstArrow": "none", - "dstLabel": "", "opacity": 1, "strokeDash": 0, "strokeWidth": 2, @@ -6275,10 +6091,8 @@ "id": "(NY -- PA)[1]", "src": "NY", "srcArrow": "none", - "srcLabel": "", "dst": "PA", "dstArrow": "none", - "dstLabel": "", "opacity": 1, "strokeDash": 0, "strokeWidth": 2, @@ -6323,10 +6137,8 @@ "id": "(PA -- RI)[0]", "src": "PA", "srcArrow": "none", - "srcLabel": "", "dst": "RI", "dstArrow": "none", - "dstLabel": "", "opacity": 1, "strokeDash": 0, "strokeWidth": 2, @@ -6371,10 +6183,8 @@ "id": "(RI -- VT)[1]", "src": "RI", "srcArrow": "none", - "srcLabel": "", "dst": "VT", "dstArrow": "none", - "dstLabel": "", "opacity": 1, "strokeDash": 0, "strokeWidth": 2, @@ -6411,10 +6221,8 @@ "id": "(NC -- SC)[1]", "src": "NC", "srcArrow": "none", - "srcLabel": "", "dst": "SC", "dstArrow": "none", - "dstLabel": "", "opacity": 1, "strokeDash": 0, "strokeWidth": 2, @@ -6451,10 +6259,8 @@ "id": "(SC -- TN)[1]", "src": "SC", "srcArrow": "none", - "srcLabel": "", "dst": "TN", "dstArrow": "none", - "dstLabel": "", "opacity": 1, "strokeDash": 0, "strokeWidth": 2, @@ -6499,10 +6305,8 @@ "id": "(TN -- VA)[1]", "src": "TN", "srcArrow": "none", - "srcLabel": "", "dst": "VA", "dstArrow": "none", - "dstLabel": "", "opacity": 1, "strokeDash": 0, "strokeWidth": 2, @@ -6539,10 +6343,8 @@ "id": "(ND -- SD)[2]", "src": "ND", "srcArrow": "none", - "srcLabel": "", "dst": "SD", "dstArrow": "none", - "dstLabel": "", "opacity": 1, "strokeDash": 0, "strokeWidth": 2, @@ -6579,10 +6381,8 @@ "id": "(OH -- PA)[0]", "src": "OH", "srcArrow": "none", - "srcLabel": "", "dst": "PA", "dstArrow": "none", - "dstLabel": "", "opacity": 1, "strokeDash": 0, "strokeWidth": 2, @@ -6627,10 +6427,8 @@ "id": "(PA -- WV)[0]", "src": "PA", "srcArrow": "none", - "srcLabel": "", "dst": "WV", "dstArrow": "none", - "dstLabel": "", "opacity": 1, "strokeDash": 0, "strokeWidth": 2, @@ -6675,10 +6473,8 @@ "id": "(OK -- TX)[1]", "src": "OK", "srcArrow": "none", - "srcLabel": "", "dst": "TX", "dstArrow": "none", - "dstLabel": "", "opacity": 1, "strokeDash": 0, "strokeWidth": 2, @@ -6723,10 +6519,8 @@ "id": "(OR -- WA)[0]", "src": "OR", "srcArrow": "none", - "srcLabel": "", "dst": "WA", "dstArrow": "none", - "dstLabel": "", "opacity": 1, "strokeDash": 0, "strokeWidth": 2, @@ -6763,10 +6557,8 @@ "id": "(PA -- WV)[1]", "src": "PA", "srcArrow": "none", - "srcLabel": "", "dst": "WV", "dstArrow": "none", - "dstLabel": "", "opacity": 1, "strokeDash": 0, "strokeWidth": 2, @@ -6811,10 +6603,8 @@ "id": "(SD -- WY)[2]", "src": "SD", "srcArrow": "none", - "srcLabel": "", "dst": "WY", "dstArrow": "none", - "dstLabel": "", "opacity": 1, "strokeDash": 0, "strokeWidth": 2, @@ -6867,10 +6657,8 @@ "id": "(TN -- VA)[2]", "src": "TN", "srcArrow": "none", - "srcLabel": "", "dst": "VA", "dstArrow": "none", - "dstLabel": "", "opacity": 1, "strokeDash": 0, "strokeWidth": 2, @@ -6907,10 +6695,8 @@ "id": "(UT -- WY)[1]", "src": "UT", "srcArrow": "none", - "srcLabel": "", "dst": "WY", "dstArrow": "none", - "dstLabel": "", "opacity": 1, "strokeDash": 0, "strokeWidth": 2, @@ -6947,10 +6733,8 @@ "id": "(VA -- WV)[2]", "src": "VA", "srcArrow": "none", - "srcLabel": "", "dst": "WV", "dstArrow": "none", - "dstLabel": "", "opacity": 1, "strokeDash": 0, "strokeWidth": 2, diff --git a/e2etests/testdata/stable/us_map/elk/sketch.exp.svg b/e2etests/testdata/stable/us_map/elk/sketch.exp.svg index 901abf6083..18727cd711 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-3959340839 .fill-N1{fill:#0A0F25;} + .d2-3959340839 .fill-N2{fill:#676C7E;} + .d2-3959340839 .fill-N3{fill:#9499AB;} + .d2-3959340839 .fill-N4{fill:#CFD2DD;} + .d2-3959340839 .fill-N5{fill:#DEE1EB;} + .d2-3959340839 .fill-N6{fill:#EEF1F8;} + .d2-3959340839 .fill-N7{fill:#FFFFFF;} + .d2-3959340839 .fill-B1{fill:#0D32B2;} + .d2-3959340839 .fill-B2{fill:#0D32B2;} + .d2-3959340839 .fill-B3{fill:#E3E9FD;} + .d2-3959340839 .fill-B4{fill:#E3E9FD;} + .d2-3959340839 .fill-B5{fill:#EDF0FD;} + .d2-3959340839 .fill-B6{fill:#F7F8FE;} + .d2-3959340839 .fill-AA2{fill:#4A6FF3;} + .d2-3959340839 .fill-AA4{fill:#EDF0FD;} + .d2-3959340839 .fill-AA5{fill:#F7F8FE;} + .d2-3959340839 .fill-AB4{fill:#EDF0FD;} + .d2-3959340839 .fill-AB5{fill:#F7F8FE;} + .d2-3959340839 .stroke-N1{stroke:#0A0F25;} + .d2-3959340839 .stroke-N2{stroke:#676C7E;} + .d2-3959340839 .stroke-N3{stroke:#9499AB;} + .d2-3959340839 .stroke-N4{stroke:#CFD2DD;} + .d2-3959340839 .stroke-N5{stroke:#DEE1EB;} + .d2-3959340839 .stroke-N6{stroke:#EEF1F8;} + .d2-3959340839 .stroke-N7{stroke:#FFFFFF;} + .d2-3959340839 .stroke-B1{stroke:#0D32B2;} + .d2-3959340839 .stroke-B2{stroke:#0D32B2;} + .d2-3959340839 .stroke-B3{stroke:#E3E9FD;} + .d2-3959340839 .stroke-B4{stroke:#E3E9FD;} + .d2-3959340839 .stroke-B5{stroke:#EDF0FD;} + .d2-3959340839 .stroke-B6{stroke:#F7F8FE;} + .d2-3959340839 .stroke-AA2{stroke:#4A6FF3;} + .d2-3959340839 .stroke-AA4{stroke:#EDF0FD;} + .d2-3959340839 .stroke-AA5{stroke:#F7F8FE;} + .d2-3959340839 .stroke-AB4{stroke:#EDF0FD;} + .d2-3959340839 .stroke-AB5{stroke:#F7F8FE;} + .d2-3959340839 .background-color-N1{background-color:#0A0F25;} + .d2-3959340839 .background-color-N2{background-color:#676C7E;} + .d2-3959340839 .background-color-N3{background-color:#9499AB;} + .d2-3959340839 .background-color-N4{background-color:#CFD2DD;} + .d2-3959340839 .background-color-N5{background-color:#DEE1EB;} + .d2-3959340839 .background-color-N6{background-color:#EEF1F8;} + .d2-3959340839 .background-color-N7{background-color:#FFFFFF;} + .d2-3959340839 .background-color-B1{background-color:#0D32B2;} + .d2-3959340839 .background-color-B2{background-color:#0D32B2;} + .d2-3959340839 .background-color-B3{background-color:#E3E9FD;} + .d2-3959340839 .background-color-B4{background-color:#E3E9FD;} + .d2-3959340839 .background-color-B5{background-color:#EDF0FD;} + .d2-3959340839 .background-color-B6{background-color:#F7F8FE;} + .d2-3959340839 .background-color-AA2{background-color:#4A6FF3;} + .d2-3959340839 .background-color-AA4{background-color:#EDF0FD;} + .d2-3959340839 .background-color-AA5{background-color:#F7F8FE;} + .d2-3959340839 .background-color-AB4{background-color:#EDF0FD;} + .d2-3959340839 .background-color-AB5{background-color:#F7F8FE;} + .d2-3959340839 .color-N1{color:#0A0F25;} + .d2-3959340839 .color-N2{color:#676C7E;} + .d2-3959340839 .color-N3{color:#9499AB;} + .d2-3959340839 .color-N4{color:#CFD2DD;} + .d2-3959340839 .color-N5{color:#DEE1EB;} + .d2-3959340839 .color-N6{color:#EEF1F8;} + .d2-3959340839 .color-N7{color:#FFFFFF;} + .d2-3959340839 .color-B1{color:#0D32B2;} + .d2-3959340839 .color-B2{color:#0D32B2;} + .d2-3959340839 .color-B3{color:#E3E9FD;} + .d2-3959340839 .color-B4{color:#E3E9FD;} + .d2-3959340839 .color-B5{color:#EDF0FD;} + .d2-3959340839 .color-B6{color:#F7F8FE;} + .d2-3959340839 .color-AA2{color:#4A6FF3;} + .d2-3959340839 .color-AA4{color:#EDF0FD;} + .d2-3959340839 .color-AA5{color:#F7F8FE;} + .d2-3959340839 .color-AB4{color:#EDF0FD;} + .d2-3959340839 .color-AB5{color:#F7F8FE;}.appendix text.text{fill:#0A0F25}.md{--color-fg-default:#0A0F25;--color-fg-muted:#676C7E;--color-fg-subtle:#9499AB;--color-canvas-default:#FFFFFF;--color-canvas-subtle:#EEF1F8;--color-border-default:#0D32B2;--color-border-muted:#0D32B2;--color-neutral-muted:#EEF1F8;--color-accent-fg:#0D32B2;--color-accent-emphasis:#0D32B2;--color-attention-subtle:#676C7E;--color-danger-fg:red;}.sketch-overlay-B1{fill:url(#streaks-darker);mix-blend-mode:lighten}.sketch-overlay-B2{fill:url(#streaks-darker);mix-blend-mode:lighten}.sketch-overlay-B3{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-B4{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-B5{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-B6{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-AA2{fill:url(#streaks-dark);mix-blend-mode:overlay}.sketch-overlay-AA4{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-AA5{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-AB4{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-AB5{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-N1{fill:url(#streaks-darker);mix-blend-mode:lighten}.sketch-overlay-N2{fill:url(#streaks-dark);mix-blend-mode:overlay}.sketch-overlay-N3{fill:url(#streaks-normal);mix-blend-mode:color-burn}.sketch-overlay-N4{fill:url(#streaks-normal);mix-blend-mode:color-burn}.sketch-overlay-N5{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-N6{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-N7{fill:url(#streaks-bright);mix-blend-mode:darken}.light-code{display: block}.dark-code{display: none}]]>ALFLGAMSTNAKAZCANVNMUTARLAMOOKTXORCOKSNEWYCTMANYRIDEMDNJPANCSCHIIDMTWAILINIAMIKYWIOHMNSDVAWVMENHVTND \ No newline at end of file diff --git a/e2etests/testdata/themes/dark_terrastruct_flagship/dagre/board.exp.json b/e2etests/testdata/themes/dark_terrastruct_flagship/dagre/board.exp.json index d205ed520b..dff52458ea 100644 --- a/e2etests/testdata/themes/dark_terrastruct_flagship/dagre/board.exp.json +++ b/e2etests/testdata/themes/dark_terrastruct_flagship/dagre/board.exp.json @@ -828,10 +828,8 @@ "id": "network.cell tower.(satellites -> transmitter)[0]", "src": "network.cell tower.satellites", "srcArrow": "none", - "srcLabel": "", "dst": "network.cell tower.transmitter", "dstArrow": "triangle", - "dstLabel": "", "opacity": 1, "strokeDash": 0, "strokeWidth": 2, @@ -877,10 +875,8 @@ "id": "network.cell tower.(satellites -> transmitter)[1]", "src": "network.cell tower.satellites", "srcArrow": "none", - "srcLabel": "", "dst": "network.cell tower.transmitter", "dstArrow": "triangle", - "dstLabel": "", "opacity": 1, "strokeDash": 0, "strokeWidth": 2, @@ -926,10 +922,8 @@ "id": "network.cell tower.(satellites -> transmitter)[2]", "src": "network.cell tower.satellites", "srcArrow": "none", - "srcLabel": "", "dst": "network.cell tower.transmitter", "dstArrow": "triangle", - "dstLabel": "", "opacity": 1, "strokeDash": 0, "strokeWidth": 2, @@ -975,10 +969,8 @@ "id": "network.(cell tower.transmitter -> data processor.storage)[0]", "src": "network.cell tower.transmitter", "srcArrow": "none", - "srcLabel": "", "dst": "network.data processor.storage", "dstArrow": "triangle", - "dstLabel": "", "opacity": 1, "strokeDash": 0, "strokeWidth": 2, @@ -1036,10 +1028,8 @@ "id": "(user -> network.cell tower)[0]", "src": "user", "srcArrow": "none", - "srcLabel": "", "dst": "network.cell tower", "dstArrow": "triangle", - "dstLabel": "", "opacity": 1, "strokeDash": 0, "strokeWidth": 2, @@ -1085,10 +1075,8 @@ "id": "(user -> network.online portal.ui)[0]", "src": "user", "srcArrow": "none", - "srcLabel": "", "dst": "network.online portal.ui", "dstArrow": "triangle", - "dstLabel": "", "opacity": 1, "strokeDash": 3, "strokeWidth": 2, @@ -1290,10 +1278,8 @@ "id": "(api server -> network.online portal.ui)[0]", "src": "api server", "srcArrow": "none", - "srcLabel": "", "dst": "network.online portal.ui", "dstArrow": "triangle", - "dstLabel": "", "opacity": 1, "strokeDash": 0, "strokeWidth": 2, @@ -1339,10 +1325,8 @@ "id": "(api server -> logs)[0]", "src": "api server", "srcArrow": "none", - "srcLabel": "", "dst": "logs", "dstArrow": "triangle", - "dstLabel": "", "opacity": 1, "strokeDash": 0, "strokeWidth": 2, @@ -1388,10 +1372,8 @@ "id": "(network.data processor -> api server)[0]", "src": "network.data processor", "srcArrow": "none", - "srcLabel": "", "dst": "api server", "dstArrow": "triangle", - "dstLabel": "", "opacity": 1, "strokeDash": 0, "strokeWidth": 2, @@ -1437,10 +1419,8 @@ "id": "(markdown -> code)[0]", "src": "markdown", "srcArrow": "none", - "srcLabel": "", "dst": "code", "dstArrow": "triangle", - "dstLabel": "", "opacity": 1, "strokeDash": 0, "strokeWidth": 2, @@ -1498,10 +1478,8 @@ "id": "(code -> ex)[0]", "src": "code", "srcArrow": "none", - "srcLabel": "", "dst": "ex", "dstArrow": "triangle", - "dstLabel": "", "opacity": 1, "strokeDash": 0, "strokeWidth": 2, 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 04afe97b58..a9d3fe07fc 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 cea32c1879..0a1dbee0c2 100644 --- a/e2etests/testdata/themes/dark_terrastruct_flagship/elk/board.exp.json +++ b/e2etests/testdata/themes/dark_terrastruct_flagship/elk/board.exp.json @@ -828,10 +828,8 @@ "id": "network.cell tower.(satellites -> transmitter)[0]", "src": "network.cell tower.satellites", "srcArrow": "none", - "srcLabel": "", "dst": "network.cell tower.transmitter", "dstArrow": "triangle", - "dstLabel": "", "opacity": 1, "strokeDash": 0, "strokeWidth": 2, @@ -868,10 +866,8 @@ "id": "network.cell tower.(satellites -> transmitter)[1]", "src": "network.cell tower.satellites", "srcArrow": "none", - "srcLabel": "", "dst": "network.cell tower.transmitter", "dstArrow": "triangle", - "dstLabel": "", "opacity": 1, "strokeDash": 0, "strokeWidth": 2, @@ -908,10 +904,8 @@ "id": "network.cell tower.(satellites -> transmitter)[2]", "src": "network.cell tower.satellites", "srcArrow": "none", - "srcLabel": "", "dst": "network.cell tower.transmitter", "dstArrow": "triangle", - "dstLabel": "", "opacity": 1, "strokeDash": 0, "strokeWidth": 2, @@ -948,10 +942,8 @@ "id": "network.(cell tower.transmitter -> data processor.storage)[0]", "src": "network.cell tower.transmitter", "srcArrow": "none", - "srcLabel": "", "dst": "network.data processor.storage", "dstArrow": "triangle", - "dstLabel": "", "opacity": 1, "strokeDash": 0, "strokeWidth": 2, @@ -988,10 +980,8 @@ "id": "(user -> network.cell tower)[0]", "src": "user", "srcArrow": "none", - "srcLabel": "", "dst": "network.cell tower", "dstArrow": "triangle", - "dstLabel": "", "opacity": 1, "strokeDash": 0, "strokeWidth": 2, @@ -1036,10 +1026,8 @@ "id": "(user -> network.online portal.ui)[0]", "src": "user", "srcArrow": "none", - "srcLabel": "", "dst": "network.online portal.ui", "dstArrow": "triangle", - "dstLabel": "", "opacity": 1, "strokeDash": 3, "strokeWidth": 2, @@ -1084,10 +1072,8 @@ "id": "(api server -> network.online portal.ui)[0]", "src": "api server", "srcArrow": "none", - "srcLabel": "", "dst": "network.online portal.ui", "dstArrow": "triangle", - "dstLabel": "", "opacity": 1, "strokeDash": 0, "strokeWidth": 2, @@ -1132,10 +1118,8 @@ "id": "(api server -> logs)[0]", "src": "api server", "srcArrow": "none", - "srcLabel": "", "dst": "logs", "dstArrow": "triangle", - "dstLabel": "", "opacity": 1, "strokeDash": 0, "strokeWidth": 2, @@ -1180,10 +1164,8 @@ "id": "(network.data processor -> api server)[0]", "src": "network.data processor", "srcArrow": "none", - "srcLabel": "", "dst": "api server", "dstArrow": "triangle", - "dstLabel": "", "opacity": 1, "strokeDash": 0, "strokeWidth": 2, @@ -1236,10 +1218,8 @@ "id": "(markdown -> code)[0]", "src": "markdown", "srcArrow": "none", - "srcLabel": "", "dst": "code", "dstArrow": "triangle", - "dstLabel": "", "opacity": 1, "strokeDash": 0, "strokeWidth": 2, @@ -1276,10 +1256,8 @@ "id": "(code -> ex)[0]", "src": "code", "srcArrow": "none", - "srcLabel": "", "dst": "ex", "dstArrow": "triangle", - "dstLabel": "", "opacity": 1, "strokeDash": 0, "strokeWidth": 2, 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 f7ce2b48a5..08db78f17a 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 0c5fd8bb2f..9ac4e095fa 100644 --- a/e2etests/testdata/themes/origami/dagre/board.exp.json +++ b/e2etests/testdata/themes/origami/dagre/board.exp.json @@ -513,10 +513,8 @@ "id": "network.cell tower.(satellites -> transmitter)[0]", "src": "network.cell tower.satellites", "srcArrow": "none", - "srcLabel": "", "dst": "network.cell tower.transmitter", "dstArrow": "triangle", - "dstLabel": "", "opacity": 1, "strokeDash": 0, "strokeWidth": 2, @@ -561,10 +559,8 @@ "id": "network.cell tower.(satellites -> transmitter)[1]", "src": "network.cell tower.satellites", "srcArrow": "none", - "srcLabel": "", "dst": "network.cell tower.transmitter", "dstArrow": "triangle", - "dstLabel": "", "opacity": 1, "strokeDash": 0, "strokeWidth": 2, @@ -609,10 +605,8 @@ "id": "network.cell tower.(satellites -> transmitter)[2]", "src": "network.cell tower.satellites", "srcArrow": "none", - "srcLabel": "", "dst": "network.cell tower.transmitter", "dstArrow": "triangle", - "dstLabel": "", "opacity": 1, "strokeDash": 0, "strokeWidth": 2, @@ -657,10 +651,8 @@ "id": "network.(cell tower.transmitter -> data processor.storage)[0]", "src": "network.cell tower.transmitter", "srcArrow": "none", - "srcLabel": "", "dst": "network.data processor.storage", "dstArrow": "triangle", - "dstLabel": "", "opacity": 1, "strokeDash": 0, "strokeWidth": 2, @@ -717,10 +709,8 @@ "id": "(user -> network.cell tower)[0]", "src": "user", "srcArrow": "none", - "srcLabel": "", "dst": "network.cell tower", "dstArrow": "triangle", - "dstLabel": "", "opacity": 1, "strokeDash": 0, "strokeWidth": 2, @@ -765,10 +755,8 @@ "id": "(user -> network.online portal.ui)[0]", "src": "user", "srcArrow": "none", - "srcLabel": "", "dst": "network.online portal.ui", "dstArrow": "triangle", - "dstLabel": "", "opacity": 1, "strokeDash": 3, "strokeWidth": 2, @@ -969,10 +957,8 @@ "id": "(api server -> network.online portal.ui)[0]", "src": "api server", "srcArrow": "none", - "srcLabel": "", "dst": "network.online portal.ui", "dstArrow": "triangle", - "dstLabel": "", "opacity": 1, "strokeDash": 0, "strokeWidth": 2, @@ -1017,10 +1003,8 @@ "id": "(api server -> logs)[0]", "src": "api server", "srcArrow": "none", - "srcLabel": "", "dst": "logs", "dstArrow": "triangle", - "dstLabel": "", "opacity": 1, "strokeDash": 0, "strokeWidth": 2, @@ -1065,10 +1049,8 @@ "id": "(network.data processor -> api server)[0]", "src": "network.data processor", "srcArrow": "none", - "srcLabel": "", "dst": "api server", "dstArrow": "triangle", - "dstLabel": "", "opacity": 1, "strokeDash": 0, "strokeWidth": 2, diff --git a/e2etests/testdata/themes/origami/dagre/sketch.exp.svg b/e2etests/testdata/themes/origami/dagre/sketch.exp.svg index e76787aad9..6c60f2b20d 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-2230390889 .fill-N1{fill:#0A0F25;} + .d2-2230390889 .fill-N2{fill:#676C7E;} + .d2-2230390889 .fill-N3{fill:#9499AB;} + .d2-2230390889 .fill-N4{fill:#CFD2DD;} + .d2-2230390889 .fill-N5{fill:#DEE1EB;} + .d2-2230390889 .fill-N6{fill:#EEF1F8;} + .d2-2230390889 .fill-N7{fill:#FFFFFF;} + .d2-2230390889 .fill-B1{fill:#0D32B2;} + .d2-2230390889 .fill-B2{fill:#0D32B2;} + .d2-2230390889 .fill-B3{fill:#E3E9FD;} + .d2-2230390889 .fill-B4{fill:#E3E9FD;} + .d2-2230390889 .fill-B5{fill:#EDF0FD;} + .d2-2230390889 .fill-B6{fill:#F7F8FE;} + .d2-2230390889 .fill-AA2{fill:#4A6FF3;} + .d2-2230390889 .fill-AA4{fill:#EDF0FD;} + .d2-2230390889 .fill-AA5{fill:#F7F8FE;} + .d2-2230390889 .fill-AB4{fill:#EDF0FD;} + .d2-2230390889 .fill-AB5{fill:#F7F8FE;} + .d2-2230390889 .stroke-N1{stroke:#0A0F25;} + .d2-2230390889 .stroke-N2{stroke:#676C7E;} + .d2-2230390889 .stroke-N3{stroke:#9499AB;} + .d2-2230390889 .stroke-N4{stroke:#CFD2DD;} + .d2-2230390889 .stroke-N5{stroke:#DEE1EB;} + .d2-2230390889 .stroke-N6{stroke:#EEF1F8;} + .d2-2230390889 .stroke-N7{stroke:#FFFFFF;} + .d2-2230390889 .stroke-B1{stroke:#0D32B2;} + .d2-2230390889 .stroke-B2{stroke:#0D32B2;} + .d2-2230390889 .stroke-B3{stroke:#E3E9FD;} + .d2-2230390889 .stroke-B4{stroke:#E3E9FD;} + .d2-2230390889 .stroke-B5{stroke:#EDF0FD;} + .d2-2230390889 .stroke-B6{stroke:#F7F8FE;} + .d2-2230390889 .stroke-AA2{stroke:#4A6FF3;} + .d2-2230390889 .stroke-AA4{stroke:#EDF0FD;} + .d2-2230390889 .stroke-AA5{stroke:#F7F8FE;} + .d2-2230390889 .stroke-AB4{stroke:#EDF0FD;} + .d2-2230390889 .stroke-AB5{stroke:#F7F8FE;} + .d2-2230390889 .background-color-N1{background-color:#0A0F25;} + .d2-2230390889 .background-color-N2{background-color:#676C7E;} + .d2-2230390889 .background-color-N3{background-color:#9499AB;} + .d2-2230390889 .background-color-N4{background-color:#CFD2DD;} + .d2-2230390889 .background-color-N5{background-color:#DEE1EB;} + .d2-2230390889 .background-color-N6{background-color:#EEF1F8;} + .d2-2230390889 .background-color-N7{background-color:#FFFFFF;} + .d2-2230390889 .background-color-B1{background-color:#0D32B2;} + .d2-2230390889 .background-color-B2{background-color:#0D32B2;} + .d2-2230390889 .background-color-B3{background-color:#E3E9FD;} + .d2-2230390889 .background-color-B4{background-color:#E3E9FD;} + .d2-2230390889 .background-color-B5{background-color:#EDF0FD;} + .d2-2230390889 .background-color-B6{background-color:#F7F8FE;} + .d2-2230390889 .background-color-AA2{background-color:#4A6FF3;} + .d2-2230390889 .background-color-AA4{background-color:#EDF0FD;} + .d2-2230390889 .background-color-AA5{background-color:#F7F8FE;} + .d2-2230390889 .background-color-AB4{background-color:#EDF0FD;} + .d2-2230390889 .background-color-AB5{background-color:#F7F8FE;} + .d2-2230390889 .color-N1{color:#0A0F25;} + .d2-2230390889 .color-N2{color:#676C7E;} + .d2-2230390889 .color-N3{color:#9499AB;} + .d2-2230390889 .color-N4{color:#CFD2DD;} + .d2-2230390889 .color-N5{color:#DEE1EB;} + .d2-2230390889 .color-N6{color:#EEF1F8;} + .d2-2230390889 .color-N7{color:#FFFFFF;} + .d2-2230390889 .color-B1{color:#0D32B2;} + .d2-2230390889 .color-B2{color:#0D32B2;} + .d2-2230390889 .color-B3{color:#E3E9FD;} + .d2-2230390889 .color-B4{color:#E3E9FD;} + .d2-2230390889 .color-B5{color:#EDF0FD;} + .d2-2230390889 .color-B6{color:#F7F8FE;} + .d2-2230390889 .color-AA2{color:#4A6FF3;} + .d2-2230390889 .color-AA4{color:#EDF0FD;} + .d2-2230390889 .color-AA5{color:#F7F8FE;} + .d2-2230390889 .color-AB4{color:#EDF0FD;} + .d2-2230390889 .color-AB5{color:#F7F8FE;}.appendix text.text{fill:#0A0F25}.md{--color-fg-default:#0A0F25;--color-fg-muted:#676C7E;--color-fg-subtle:#9499AB;--color-canvas-default:#FFFFFF;--color-canvas-subtle:#EEF1F8;--color-border-default:#0D32B2;--color-border-muted:#0D32B2;--color-neutral-muted:#EEF1F8;--color-accent-fg:#0D32B2;--color-accent-emphasis:#0D32B2;--color-attention-subtle:#676C7E;--color-danger-fg:red;}.sketch-overlay-B1{fill:url(#streaks-darker);mix-blend-mode:lighten}.sketch-overlay-B2{fill:url(#streaks-darker);mix-blend-mode:lighten}.sketch-overlay-B3{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-B4{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-B5{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-B6{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-AA2{fill:url(#streaks-dark);mix-blend-mode:overlay}.sketch-overlay-AA4{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-AA5{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-AB4{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-AB5{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-N1{fill:url(#streaks-darker);mix-blend-mode:lighten}.sketch-overlay-N2{fill:url(#streaks-dark);mix-blend-mode:overlay}.sketch-overlay-N3{fill:url(#streaks-normal);mix-blend-mode:color-burn}.sketch-overlay-N4{fill:url(#streaks-normal);mix-blend-mode:color-burn}.sketch-overlay-N5{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-N6{fill:url(#streaks-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 \ No newline at end of file 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 0e353b6499..3d510ee0de 100644 --- a/e2etests/testdata/todo/container_icon_label/elk/board.exp.json +++ b/e2etests/testdata/todo/container_icon_label/elk/board.exp.json @@ -226,10 +226,8 @@ "id": "a.(a -> b)[0]", "src": "a.a", "srcArrow": "none", - "srcLabel": "", "dst": "a.b", "dstArrow": "triangle", - "dstLabel": "", "opacity": 1, "strokeDash": 0, "strokeWidth": 2, @@ -266,10 +264,8 @@ "id": "a.(b -> c)[0]", "src": "a.b", "srcArrow": "none", - "srcLabel": "", "dst": "a.c", "dstArrow": "triangle", - "dstLabel": "", "opacity": 1, "strokeDash": 0, "strokeWidth": 2, 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 00616fcff0..b975fde8b4 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-2380555655 .fill-N1{fill:#0A0F25;} + .d2-2380555655 .fill-N2{fill:#676C7E;} + .d2-2380555655 .fill-N3{fill:#9499AB;} + .d2-2380555655 .fill-N4{fill:#CFD2DD;} + .d2-2380555655 .fill-N5{fill:#DEE1EB;} + .d2-2380555655 .fill-N6{fill:#EEF1F8;} + .d2-2380555655 .fill-N7{fill:#FFFFFF;} + .d2-2380555655 .fill-B1{fill:#0D32B2;} + .d2-2380555655 .fill-B2{fill:#0D32B2;} + .d2-2380555655 .fill-B3{fill:#E3E9FD;} + .d2-2380555655 .fill-B4{fill:#E3E9FD;} + .d2-2380555655 .fill-B5{fill:#EDF0FD;} + .d2-2380555655 .fill-B6{fill:#F7F8FE;} + .d2-2380555655 .fill-AA2{fill:#4A6FF3;} + .d2-2380555655 .fill-AA4{fill:#EDF0FD;} + .d2-2380555655 .fill-AA5{fill:#F7F8FE;} + .d2-2380555655 .fill-AB4{fill:#EDF0FD;} + .d2-2380555655 .fill-AB5{fill:#F7F8FE;} + .d2-2380555655 .stroke-N1{stroke:#0A0F25;} + .d2-2380555655 .stroke-N2{stroke:#676C7E;} + .d2-2380555655 .stroke-N3{stroke:#9499AB;} + .d2-2380555655 .stroke-N4{stroke:#CFD2DD;} + .d2-2380555655 .stroke-N5{stroke:#DEE1EB;} + .d2-2380555655 .stroke-N6{stroke:#EEF1F8;} + .d2-2380555655 .stroke-N7{stroke:#FFFFFF;} + .d2-2380555655 .stroke-B1{stroke:#0D32B2;} + .d2-2380555655 .stroke-B2{stroke:#0D32B2;} + .d2-2380555655 .stroke-B3{stroke:#E3E9FD;} + .d2-2380555655 .stroke-B4{stroke:#E3E9FD;} + .d2-2380555655 .stroke-B5{stroke:#EDF0FD;} + .d2-2380555655 .stroke-B6{stroke:#F7F8FE;} + .d2-2380555655 .stroke-AA2{stroke:#4A6FF3;} + .d2-2380555655 .stroke-AA4{stroke:#EDF0FD;} + .d2-2380555655 .stroke-AA5{stroke:#F7F8FE;} + .d2-2380555655 .stroke-AB4{stroke:#EDF0FD;} + .d2-2380555655 .stroke-AB5{stroke:#F7F8FE;} + .d2-2380555655 .background-color-N1{background-color:#0A0F25;} + .d2-2380555655 .background-color-N2{background-color:#676C7E;} + .d2-2380555655 .background-color-N3{background-color:#9499AB;} + .d2-2380555655 .background-color-N4{background-color:#CFD2DD;} + .d2-2380555655 .background-color-N5{background-color:#DEE1EB;} + .d2-2380555655 .background-color-N6{background-color:#EEF1F8;} + .d2-2380555655 .background-color-N7{background-color:#FFFFFF;} + .d2-2380555655 .background-color-B1{background-color:#0D32B2;} + .d2-2380555655 .background-color-B2{background-color:#0D32B2;} + .d2-2380555655 .background-color-B3{background-color:#E3E9FD;} + .d2-2380555655 .background-color-B4{background-color:#E3E9FD;} + .d2-2380555655 .background-color-B5{background-color:#EDF0FD;} + .d2-2380555655 .background-color-B6{background-color:#F7F8FE;} + .d2-2380555655 .background-color-AA2{background-color:#4A6FF3;} + .d2-2380555655 .background-color-AA4{background-color:#EDF0FD;} + .d2-2380555655 .background-color-AA5{background-color:#F7F8FE;} + .d2-2380555655 .background-color-AB4{background-color:#EDF0FD;} + .d2-2380555655 .background-color-AB5{background-color:#F7F8FE;} + .d2-2380555655 .color-N1{color:#0A0F25;} + .d2-2380555655 .color-N2{color:#676C7E;} + .d2-2380555655 .color-N3{color:#9499AB;} + .d2-2380555655 .color-N4{color:#CFD2DD;} + .d2-2380555655 .color-N5{color:#DEE1EB;} + .d2-2380555655 .color-N6{color:#EEF1F8;} + .d2-2380555655 .color-N7{color:#FFFFFF;} + .d2-2380555655 .color-B1{color:#0D32B2;} + .d2-2380555655 .color-B2{color:#0D32B2;} + .d2-2380555655 .color-B3{color:#E3E9FD;} + .d2-2380555655 .color-B4{color:#E3E9FD;} + .d2-2380555655 .color-B5{color:#EDF0FD;} + .d2-2380555655 .color-B6{color:#F7F8FE;} + .d2-2380555655 .color-AA2{color:#4A6FF3;} + .d2-2380555655 .color-AA4{color:#EDF0FD;} + .d2-2380555655 .color-AA5{color:#F7F8FE;} + .d2-2380555655 .color-AB4{color:#EDF0FD;} + .d2-2380555655 .color-AB5{color:#F7F8FE;}.appendix text.text{fill:#0A0F25}.md{--color-fg-default:#0A0F25;--color-fg-muted:#676C7E;--color-fg-subtle:#9499AB;--color-canvas-default:#FFFFFF;--color-canvas-subtle:#EEF1F8;--color-border-default:#0D32B2;--color-border-muted:#0D32B2;--color-neutral-muted:#EEF1F8;--color-accent-fg:#0D32B2;--color-accent-emphasis:#0D32B2;--color-attention-subtle:#676C7E;--color-danger-fg:red;}.sketch-overlay-B1{fill:url(#streaks-darker);mix-blend-mode:lighten}.sketch-overlay-B2{fill:url(#streaks-darker);mix-blend-mode:lighten}.sketch-overlay-B3{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-B4{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-B5{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-B6{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-AA2{fill:url(#streaks-dark);mix-blend-mode:overlay}.sketch-overlay-AA4{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-AA5{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-AB4{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-AB5{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-N1{fill:url(#streaks-darker);mix-blend-mode:lighten}.sketch-overlay-N2{fill:url(#streaks-dark);mix-blend-mode:overlay}.sketch-overlay-N3{fill:url(#streaks-normal);mix-blend-mode:color-burn}.sketch-overlay-N4{fill:url(#streaks-normal);mix-blend-mode:color-burn}.sketch-overlay-N5{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-N6{fill:url(#streaks-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 \ No newline at end of file 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 453f6f27c4..4d986265bd 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 @@ -296,10 +296,8 @@ "id": "(a -> b.c)[0]", "src": "a", "srcArrow": "none", - "srcLabel": "", "dst": "b.c", "dstArrow": "filled-diamond", - "dstLabel": "", "opacity": 1, "strokeDash": 0, "strokeWidth": 8, @@ -345,10 +343,8 @@ "id": "(b.c -> d)[0]", "src": "b.c", "srcArrow": "none", - "srcLabel": "", "dst": "d", "dstArrow": "filled-diamond", - "dstLabel": "", "opacity": 1, "strokeDash": 0, "strokeWidth": 8, @@ -394,10 +390,8 @@ "id": "(e -> b.c)[0]", "src": "e", "srcArrow": "none", - "srcLabel": "", "dst": "b.c", "dstArrow": "filled-diamond", - "dstLabel": "", "opacity": 1, "strokeDash": 0, "strokeWidth": 8, @@ -443,10 +437,8 @@ "id": "(f -> b)[0]", "src": "f", "srcArrow": "none", - "srcLabel": "", "dst": "b", "dstArrow": "filled-diamond", - "dstLabel": "", "opacity": 1, "strokeDash": 0, "strokeWidth": 8, @@ -492,10 +484,8 @@ "id": "(g -> b)[0]", "src": "g", "srcArrow": "none", - "srcLabel": "", "dst": "b", "dstArrow": "filled-diamond", - "dstLabel": "", "opacity": 1, "strokeDash": 0, "strokeWidth": 8, 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 a944d200a2..e71c1529c4 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-2106071035 .fill-N1{fill:#0A0F25;} + .d2-2106071035 .fill-N2{fill:#676C7E;} + .d2-2106071035 .fill-N3{fill:#9499AB;} + .d2-2106071035 .fill-N4{fill:#CFD2DD;} + .d2-2106071035 .fill-N5{fill:#DEE1EB;} + .d2-2106071035 .fill-N6{fill:#EEF1F8;} + .d2-2106071035 .fill-N7{fill:#FFFFFF;} + .d2-2106071035 .fill-B1{fill:#0D32B2;} + .d2-2106071035 .fill-B2{fill:#0D32B2;} + .d2-2106071035 .fill-B3{fill:#E3E9FD;} + .d2-2106071035 .fill-B4{fill:#E3E9FD;} + .d2-2106071035 .fill-B5{fill:#EDF0FD;} + .d2-2106071035 .fill-B6{fill:#F7F8FE;} + .d2-2106071035 .fill-AA2{fill:#4A6FF3;} + .d2-2106071035 .fill-AA4{fill:#EDF0FD;} + .d2-2106071035 .fill-AA5{fill:#F7F8FE;} + .d2-2106071035 .fill-AB4{fill:#EDF0FD;} + .d2-2106071035 .fill-AB5{fill:#F7F8FE;} + .d2-2106071035 .stroke-N1{stroke:#0A0F25;} + .d2-2106071035 .stroke-N2{stroke:#676C7E;} + .d2-2106071035 .stroke-N3{stroke:#9499AB;} + .d2-2106071035 .stroke-N4{stroke:#CFD2DD;} + .d2-2106071035 .stroke-N5{stroke:#DEE1EB;} + .d2-2106071035 .stroke-N6{stroke:#EEF1F8;} + .d2-2106071035 .stroke-N7{stroke:#FFFFFF;} + .d2-2106071035 .stroke-B1{stroke:#0D32B2;} + .d2-2106071035 .stroke-B2{stroke:#0D32B2;} + .d2-2106071035 .stroke-B3{stroke:#E3E9FD;} + .d2-2106071035 .stroke-B4{stroke:#E3E9FD;} + .d2-2106071035 .stroke-B5{stroke:#EDF0FD;} + .d2-2106071035 .stroke-B6{stroke:#F7F8FE;} + .d2-2106071035 .stroke-AA2{stroke:#4A6FF3;} + .d2-2106071035 .stroke-AA4{stroke:#EDF0FD;} + .d2-2106071035 .stroke-AA5{stroke:#F7F8FE;} + .d2-2106071035 .stroke-AB4{stroke:#EDF0FD;} + .d2-2106071035 .stroke-AB5{stroke:#F7F8FE;} + .d2-2106071035 .background-color-N1{background-color:#0A0F25;} + .d2-2106071035 .background-color-N2{background-color:#676C7E;} + .d2-2106071035 .background-color-N3{background-color:#9499AB;} + .d2-2106071035 .background-color-N4{background-color:#CFD2DD;} + .d2-2106071035 .background-color-N5{background-color:#DEE1EB;} + .d2-2106071035 .background-color-N6{background-color:#EEF1F8;} + .d2-2106071035 .background-color-N7{background-color:#FFFFFF;} + .d2-2106071035 .background-color-B1{background-color:#0D32B2;} + .d2-2106071035 .background-color-B2{background-color:#0D32B2;} + .d2-2106071035 .background-color-B3{background-color:#E3E9FD;} + .d2-2106071035 .background-color-B4{background-color:#E3E9FD;} + .d2-2106071035 .background-color-B5{background-color:#EDF0FD;} + .d2-2106071035 .background-color-B6{background-color:#F7F8FE;} + .d2-2106071035 .background-color-AA2{background-color:#4A6FF3;} + .d2-2106071035 .background-color-AA4{background-color:#EDF0FD;} + .d2-2106071035 .background-color-AA5{background-color:#F7F8FE;} + .d2-2106071035 .background-color-AB4{background-color:#EDF0FD;} + .d2-2106071035 .background-color-AB5{background-color:#F7F8FE;} + .d2-2106071035 .color-N1{color:#0A0F25;} + .d2-2106071035 .color-N2{color:#676C7E;} + .d2-2106071035 .color-N3{color:#9499AB;} + .d2-2106071035 .color-N4{color:#CFD2DD;} + .d2-2106071035 .color-N5{color:#DEE1EB;} + .d2-2106071035 .color-N6{color:#EEF1F8;} + .d2-2106071035 .color-N7{color:#FFFFFF;} + .d2-2106071035 .color-B1{color:#0D32B2;} + .d2-2106071035 .color-B2{color:#0D32B2;} + .d2-2106071035 .color-B3{color:#E3E9FD;} + .d2-2106071035 .color-B4{color:#E3E9FD;} + .d2-2106071035 .color-B5{color:#EDF0FD;} + .d2-2106071035 .color-B6{color:#F7F8FE;} + .d2-2106071035 .color-AA2{color:#4A6FF3;} + .d2-2106071035 .color-AA4{color:#EDF0FD;} + .d2-2106071035 .color-AA5{color:#F7F8FE;} + .d2-2106071035 .color-AB4{color:#EDF0FD;} + .d2-2106071035 .color-AB5{color:#F7F8FE;}.appendix text.text{fill:#0A0F25}.md{--color-fg-default:#0A0F25;--color-fg-muted:#676C7E;--color-fg-subtle:#9499AB;--color-canvas-default:#FFFFFF;--color-canvas-subtle:#EEF1F8;--color-border-default:#0D32B2;--color-border-muted:#0D32B2;--color-neutral-muted:#EEF1F8;--color-accent-fg:#0D32B2;--color-accent-emphasis:#0D32B2;--color-attention-subtle:#676C7E;--color-danger-fg:red;}.sketch-overlay-B1{fill:url(#streaks-darker);mix-blend-mode:lighten}.sketch-overlay-B2{fill:url(#streaks-darker);mix-blend-mode:lighten}.sketch-overlay-B3{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-B4{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-B5{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-B6{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-AA2{fill:url(#streaks-dark);mix-blend-mode:overlay}.sketch-overlay-AA4{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-AA5{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-AB4{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-AB5{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-N1{fill:url(#streaks-darker);mix-blend-mode:lighten}.sketch-overlay-N2{fill:url(#streaks-dark);mix-blend-mode:overlay}.sketch-overlay-N3{fill:url(#streaks-normal);mix-blend-mode:color-burn}.sketch-overlay-N4{fill:url(#streaks-normal);mix-blend-mode:color-burn}.sketch-overlay-N5{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-N6{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-N7{fill:url(#streaks-bright);mix-blend-mode:darken}.light-code{display: block}.dark-code{display: none}]]>aa container labeldefgc \ No newline at end of file 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 789bf33149..3a095836ea 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 @@ -296,10 +296,8 @@ "id": "(a -> b.c)[0]", "src": "a", "srcArrow": "none", - "srcLabel": "", "dst": "b.c", "dstArrow": "filled-diamond", - "dstLabel": "", "opacity": 1, "strokeDash": 0, "strokeWidth": 8, @@ -344,10 +342,8 @@ "id": "(b.c -> d)[0]", "src": "b.c", "srcArrow": "none", - "srcLabel": "", "dst": "d", "dstArrow": "filled-diamond", - "dstLabel": "", "opacity": 1, "strokeDash": 0, "strokeWidth": 8, @@ -384,10 +380,8 @@ "id": "(e -> b.c)[0]", "src": "e", "srcArrow": "none", - "srcLabel": "", "dst": "b.c", "dstArrow": "filled-diamond", - "dstLabel": "", "opacity": 1, "strokeDash": 0, "strokeWidth": 8, @@ -432,10 +426,8 @@ "id": "(f -> b)[0]", "src": "f", "srcArrow": "none", - "srcLabel": "", "dst": "b", "dstArrow": "filled-diamond", - "dstLabel": "", "opacity": 1, "strokeDash": 0, "strokeWidth": 8, @@ -480,10 +472,8 @@ "id": "(g -> b)[0]", "src": "g", "srcArrow": "none", - "srcLabel": "", "dst": "b", "dstArrow": "filled-diamond", - "dstLabel": "", "opacity": 1, "strokeDash": 0, "strokeWidth": 8, 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 e529917b83..5b442bb6ad 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-2256873910 .fill-N1{fill:#0A0F25;} + .d2-2256873910 .fill-N2{fill:#676C7E;} + .d2-2256873910 .fill-N3{fill:#9499AB;} + .d2-2256873910 .fill-N4{fill:#CFD2DD;} + .d2-2256873910 .fill-N5{fill:#DEE1EB;} + .d2-2256873910 .fill-N6{fill:#EEF1F8;} + .d2-2256873910 .fill-N7{fill:#FFFFFF;} + .d2-2256873910 .fill-B1{fill:#0D32B2;} + .d2-2256873910 .fill-B2{fill:#0D32B2;} + .d2-2256873910 .fill-B3{fill:#E3E9FD;} + .d2-2256873910 .fill-B4{fill:#E3E9FD;} + .d2-2256873910 .fill-B5{fill:#EDF0FD;} + .d2-2256873910 .fill-B6{fill:#F7F8FE;} + .d2-2256873910 .fill-AA2{fill:#4A6FF3;} + .d2-2256873910 .fill-AA4{fill:#EDF0FD;} + .d2-2256873910 .fill-AA5{fill:#F7F8FE;} + .d2-2256873910 .fill-AB4{fill:#EDF0FD;} + .d2-2256873910 .fill-AB5{fill:#F7F8FE;} + .d2-2256873910 .stroke-N1{stroke:#0A0F25;} + .d2-2256873910 .stroke-N2{stroke:#676C7E;} + .d2-2256873910 .stroke-N3{stroke:#9499AB;} + .d2-2256873910 .stroke-N4{stroke:#CFD2DD;} + .d2-2256873910 .stroke-N5{stroke:#DEE1EB;} + .d2-2256873910 .stroke-N6{stroke:#EEF1F8;} + .d2-2256873910 .stroke-N7{stroke:#FFFFFF;} + .d2-2256873910 .stroke-B1{stroke:#0D32B2;} + .d2-2256873910 .stroke-B2{stroke:#0D32B2;} + .d2-2256873910 .stroke-B3{stroke:#E3E9FD;} + .d2-2256873910 .stroke-B4{stroke:#E3E9FD;} + .d2-2256873910 .stroke-B5{stroke:#EDF0FD;} + .d2-2256873910 .stroke-B6{stroke:#F7F8FE;} + .d2-2256873910 .stroke-AA2{stroke:#4A6FF3;} + .d2-2256873910 .stroke-AA4{stroke:#EDF0FD;} + .d2-2256873910 .stroke-AA5{stroke:#F7F8FE;} + .d2-2256873910 .stroke-AB4{stroke:#EDF0FD;} + .d2-2256873910 .stroke-AB5{stroke:#F7F8FE;} + .d2-2256873910 .background-color-N1{background-color:#0A0F25;} + .d2-2256873910 .background-color-N2{background-color:#676C7E;} + .d2-2256873910 .background-color-N3{background-color:#9499AB;} + .d2-2256873910 .background-color-N4{background-color:#CFD2DD;} + .d2-2256873910 .background-color-N5{background-color:#DEE1EB;} + .d2-2256873910 .background-color-N6{background-color:#EEF1F8;} + .d2-2256873910 .background-color-N7{background-color:#FFFFFF;} + .d2-2256873910 .background-color-B1{background-color:#0D32B2;} + .d2-2256873910 .background-color-B2{background-color:#0D32B2;} + .d2-2256873910 .background-color-B3{background-color:#E3E9FD;} + .d2-2256873910 .background-color-B4{background-color:#E3E9FD;} + .d2-2256873910 .background-color-B5{background-color:#EDF0FD;} + .d2-2256873910 .background-color-B6{background-color:#F7F8FE;} + .d2-2256873910 .background-color-AA2{background-color:#4A6FF3;} + .d2-2256873910 .background-color-AA4{background-color:#EDF0FD;} + .d2-2256873910 .background-color-AA5{background-color:#F7F8FE;} + .d2-2256873910 .background-color-AB4{background-color:#EDF0FD;} + .d2-2256873910 .background-color-AB5{background-color:#F7F8FE;} + .d2-2256873910 .color-N1{color:#0A0F25;} + .d2-2256873910 .color-N2{color:#676C7E;} + .d2-2256873910 .color-N3{color:#9499AB;} + .d2-2256873910 .color-N4{color:#CFD2DD;} + .d2-2256873910 .color-N5{color:#DEE1EB;} + .d2-2256873910 .color-N6{color:#EEF1F8;} + .d2-2256873910 .color-N7{color:#FFFFFF;} + .d2-2256873910 .color-B1{color:#0D32B2;} + .d2-2256873910 .color-B2{color:#0D32B2;} + .d2-2256873910 .color-B3{color:#E3E9FD;} + .d2-2256873910 .color-B4{color:#E3E9FD;} + .d2-2256873910 .color-B5{color:#EDF0FD;} + .d2-2256873910 .color-B6{color:#F7F8FE;} + .d2-2256873910 .color-AA2{color:#4A6FF3;} + .d2-2256873910 .color-AA4{color:#EDF0FD;} + .d2-2256873910 .color-AA5{color:#F7F8FE;} + .d2-2256873910 .color-AB4{color:#EDF0FD;} + .d2-2256873910 .color-AB5{color:#F7F8FE;}.appendix text.text{fill:#0A0F25}.md{--color-fg-default:#0A0F25;--color-fg-muted:#676C7E;--color-fg-subtle:#9499AB;--color-canvas-default:#FFFFFF;--color-canvas-subtle:#EEF1F8;--color-border-default:#0D32B2;--color-border-muted:#0D32B2;--color-neutral-muted:#EEF1F8;--color-accent-fg:#0D32B2;--color-accent-emphasis:#0D32B2;--color-attention-subtle:#676C7E;--color-danger-fg:red;}.sketch-overlay-B1{fill:url(#streaks-darker);mix-blend-mode:lighten}.sketch-overlay-B2{fill:url(#streaks-darker);mix-blend-mode:lighten}.sketch-overlay-B3{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-B4{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-B5{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-B6{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-AA2{fill:url(#streaks-dark);mix-blend-mode:overlay}.sketch-overlay-AA4{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-AA5{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-AB4{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-AB5{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-N1{fill:url(#streaks-darker);mix-blend-mode:lighten}.sketch-overlay-N2{fill:url(#streaks-dark);mix-blend-mode:overlay}.sketch-overlay-N3{fill:url(#streaks-normal);mix-blend-mode:color-burn}.sketch-overlay-N4{fill:url(#streaks-normal);mix-blend-mode:color-burn}.sketch-overlay-N5{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-N6{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-N7{fill:url(#streaks-bright);mix-blend-mode:darken}.light-code{display: block}.dark-code{display: none}]]>aa container labeldefgc \ No newline at end of file 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 0a24c53015..3dc98d2b02 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 @@ -132,10 +132,20 @@ "id": "(x -> y)[0]", "src": "x", "srcArrow": "none", - "srcLabel": "", "dst": "y", "dstArrow": "filled-diamond", - "dstLabel": "foo", + "dstLabel": { + "label": "foo", + "fontSize": 0, + "fontFamily": "", + "language": "", + "color": "", + "italic": false, + "bold": false, + "underline": false, + "labelWidth": 21, + "labelHeight": 21 + }, "opacity": 1, "strokeDash": 0, "strokeWidth": 2, 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 18aea3274c..abaa5ddcf3 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-3705601939 .fill-N1{fill:#0A0F25;} + .d2-3705601939 .fill-N2{fill:#676C7E;} + .d2-3705601939 .fill-N3{fill:#9499AB;} + .d2-3705601939 .fill-N4{fill:#CFD2DD;} + .d2-3705601939 .fill-N5{fill:#DEE1EB;} + .d2-3705601939 .fill-N6{fill:#EEF1F8;} + .d2-3705601939 .fill-N7{fill:#FFFFFF;} + .d2-3705601939 .fill-B1{fill:#0D32B2;} + .d2-3705601939 .fill-B2{fill:#0D32B2;} + .d2-3705601939 .fill-B3{fill:#E3E9FD;} + .d2-3705601939 .fill-B4{fill:#E3E9FD;} + .d2-3705601939 .fill-B5{fill:#EDF0FD;} + .d2-3705601939 .fill-B6{fill:#F7F8FE;} + .d2-3705601939 .fill-AA2{fill:#4A6FF3;} + .d2-3705601939 .fill-AA4{fill:#EDF0FD;} + .d2-3705601939 .fill-AA5{fill:#F7F8FE;} + .d2-3705601939 .fill-AB4{fill:#EDF0FD;} + .d2-3705601939 .fill-AB5{fill:#F7F8FE;} + .d2-3705601939 .stroke-N1{stroke:#0A0F25;} + .d2-3705601939 .stroke-N2{stroke:#676C7E;} + .d2-3705601939 .stroke-N3{stroke:#9499AB;} + .d2-3705601939 .stroke-N4{stroke:#CFD2DD;} + .d2-3705601939 .stroke-N5{stroke:#DEE1EB;} + .d2-3705601939 .stroke-N6{stroke:#EEF1F8;} + .d2-3705601939 .stroke-N7{stroke:#FFFFFF;} + .d2-3705601939 .stroke-B1{stroke:#0D32B2;} + .d2-3705601939 .stroke-B2{stroke:#0D32B2;} + .d2-3705601939 .stroke-B3{stroke:#E3E9FD;} + .d2-3705601939 .stroke-B4{stroke:#E3E9FD;} + .d2-3705601939 .stroke-B5{stroke:#EDF0FD;} + .d2-3705601939 .stroke-B6{stroke:#F7F8FE;} + .d2-3705601939 .stroke-AA2{stroke:#4A6FF3;} + .d2-3705601939 .stroke-AA4{stroke:#EDF0FD;} + .d2-3705601939 .stroke-AA5{stroke:#F7F8FE;} + .d2-3705601939 .stroke-AB4{stroke:#EDF0FD;} + .d2-3705601939 .stroke-AB5{stroke:#F7F8FE;} + .d2-3705601939 .background-color-N1{background-color:#0A0F25;} + .d2-3705601939 .background-color-N2{background-color:#676C7E;} + .d2-3705601939 .background-color-N3{background-color:#9499AB;} + .d2-3705601939 .background-color-N4{background-color:#CFD2DD;} + .d2-3705601939 .background-color-N5{background-color:#DEE1EB;} + .d2-3705601939 .background-color-N6{background-color:#EEF1F8;} + .d2-3705601939 .background-color-N7{background-color:#FFFFFF;} + .d2-3705601939 .background-color-B1{background-color:#0D32B2;} + .d2-3705601939 .background-color-B2{background-color:#0D32B2;} + .d2-3705601939 .background-color-B3{background-color:#E3E9FD;} + .d2-3705601939 .background-color-B4{background-color:#E3E9FD;} + .d2-3705601939 .background-color-B5{background-color:#EDF0FD;} + .d2-3705601939 .background-color-B6{background-color:#F7F8FE;} + .d2-3705601939 .background-color-AA2{background-color:#4A6FF3;} + .d2-3705601939 .background-color-AA4{background-color:#EDF0FD;} + .d2-3705601939 .background-color-AA5{background-color:#F7F8FE;} + .d2-3705601939 .background-color-AB4{background-color:#EDF0FD;} + .d2-3705601939 .background-color-AB5{background-color:#F7F8FE;} + .d2-3705601939 .color-N1{color:#0A0F25;} + .d2-3705601939 .color-N2{color:#676C7E;} + .d2-3705601939 .color-N3{color:#9499AB;} + .d2-3705601939 .color-N4{color:#CFD2DD;} + .d2-3705601939 .color-N5{color:#DEE1EB;} + .d2-3705601939 .color-N6{color:#EEF1F8;} + .d2-3705601939 .color-N7{color:#FFFFFF;} + .d2-3705601939 .color-B1{color:#0D32B2;} + .d2-3705601939 .color-B2{color:#0D32B2;} + .d2-3705601939 .color-B3{color:#E3E9FD;} + .d2-3705601939 .color-B4{color:#E3E9FD;} + .d2-3705601939 .color-B5{color:#EDF0FD;} + .d2-3705601939 .color-B6{color:#F7F8FE;} + .d2-3705601939 .color-AA2{color:#4A6FF3;} + .d2-3705601939 .color-AA4{color:#EDF0FD;} + .d2-3705601939 .color-AA5{color:#F7F8FE;} + .d2-3705601939 .color-AB4{color:#EDF0FD;} + .d2-3705601939 .color-AB5{color:#F7F8FE;}.appendix text.text{fill:#0A0F25}.md{--color-fg-default:#0A0F25;--color-fg-muted:#676C7E;--color-fg-subtle:#9499AB;--color-canvas-default:#FFFFFF;--color-canvas-subtle:#EEF1F8;--color-border-default:#0D32B2;--color-border-muted:#0D32B2;--color-neutral-muted:#EEF1F8;--color-accent-fg:#0D32B2;--color-accent-emphasis:#0D32B2;--color-attention-subtle:#676C7E;--color-danger-fg:red;}.sketch-overlay-B1{fill:url(#streaks-darker);mix-blend-mode:lighten}.sketch-overlay-B2{fill:url(#streaks-darker);mix-blend-mode:lighten}.sketch-overlay-B3{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-B4{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-B5{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-B6{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-AA2{fill:url(#streaks-dark);mix-blend-mode:overlay}.sketch-overlay-AA4{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-AA5{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-AB4{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-AB5{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-N1{fill:url(#streaks-darker);mix-blend-mode:lighten}.sketch-overlay-N2{fill:url(#streaks-dark);mix-blend-mode:overlay}.sketch-overlay-N3{fill:url(#streaks-normal);mix-blend-mode:color-burn}.sketch-overlay-N4{fill:url(#streaks-normal);mix-blend-mode:color-burn}.sketch-overlay-N5{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-N6{fill:url(#streaks-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 \ No newline at end of file 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 5416000021..8afd69d287 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 @@ -132,10 +132,20 @@ "id": "(x -> y)[0]", "src": "x", "srcArrow": "none", - "srcLabel": "", "dst": "y", "dstArrow": "filled-diamond", - "dstLabel": "foo", + "dstLabel": { + "label": "foo", + "fontSize": 0, + "fontFamily": "", + "language": "", + "color": "", + "italic": false, + "bold": false, + "underline": false, + "labelWidth": 21, + "labelHeight": 21 + }, "opacity": 1, "strokeDash": 0, "strokeWidth": 2, 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 34b0c21c79..36386da582 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-4259852277 .fill-N1{fill:#0A0F25;} + .d2-4259852277 .fill-N2{fill:#676C7E;} + .d2-4259852277 .fill-N3{fill:#9499AB;} + .d2-4259852277 .fill-N4{fill:#CFD2DD;} + .d2-4259852277 .fill-N5{fill:#DEE1EB;} + .d2-4259852277 .fill-N6{fill:#EEF1F8;} + .d2-4259852277 .fill-N7{fill:#FFFFFF;} + .d2-4259852277 .fill-B1{fill:#0D32B2;} + .d2-4259852277 .fill-B2{fill:#0D32B2;} + .d2-4259852277 .fill-B3{fill:#E3E9FD;} + .d2-4259852277 .fill-B4{fill:#E3E9FD;} + .d2-4259852277 .fill-B5{fill:#EDF0FD;} + .d2-4259852277 .fill-B6{fill:#F7F8FE;} + .d2-4259852277 .fill-AA2{fill:#4A6FF3;} + .d2-4259852277 .fill-AA4{fill:#EDF0FD;} + .d2-4259852277 .fill-AA5{fill:#F7F8FE;} + .d2-4259852277 .fill-AB4{fill:#EDF0FD;} + .d2-4259852277 .fill-AB5{fill:#F7F8FE;} + .d2-4259852277 .stroke-N1{stroke:#0A0F25;} + .d2-4259852277 .stroke-N2{stroke:#676C7E;} + .d2-4259852277 .stroke-N3{stroke:#9499AB;} + .d2-4259852277 .stroke-N4{stroke:#CFD2DD;} + .d2-4259852277 .stroke-N5{stroke:#DEE1EB;} + .d2-4259852277 .stroke-N6{stroke:#EEF1F8;} + .d2-4259852277 .stroke-N7{stroke:#FFFFFF;} + .d2-4259852277 .stroke-B1{stroke:#0D32B2;} + .d2-4259852277 .stroke-B2{stroke:#0D32B2;} + .d2-4259852277 .stroke-B3{stroke:#E3E9FD;} + .d2-4259852277 .stroke-B4{stroke:#E3E9FD;} + .d2-4259852277 .stroke-B5{stroke:#EDF0FD;} + .d2-4259852277 .stroke-B6{stroke:#F7F8FE;} + .d2-4259852277 .stroke-AA2{stroke:#4A6FF3;} + .d2-4259852277 .stroke-AA4{stroke:#EDF0FD;} + .d2-4259852277 .stroke-AA5{stroke:#F7F8FE;} + .d2-4259852277 .stroke-AB4{stroke:#EDF0FD;} + .d2-4259852277 .stroke-AB5{stroke:#F7F8FE;} + .d2-4259852277 .background-color-N1{background-color:#0A0F25;} + .d2-4259852277 .background-color-N2{background-color:#676C7E;} + .d2-4259852277 .background-color-N3{background-color:#9499AB;} + .d2-4259852277 .background-color-N4{background-color:#CFD2DD;} + .d2-4259852277 .background-color-N5{background-color:#DEE1EB;} + .d2-4259852277 .background-color-N6{background-color:#EEF1F8;} + .d2-4259852277 .background-color-N7{background-color:#FFFFFF;} + .d2-4259852277 .background-color-B1{background-color:#0D32B2;} + .d2-4259852277 .background-color-B2{background-color:#0D32B2;} + .d2-4259852277 .background-color-B3{background-color:#E3E9FD;} + .d2-4259852277 .background-color-B4{background-color:#E3E9FD;} + .d2-4259852277 .background-color-B5{background-color:#EDF0FD;} + .d2-4259852277 .background-color-B6{background-color:#F7F8FE;} + .d2-4259852277 .background-color-AA2{background-color:#4A6FF3;} + .d2-4259852277 .background-color-AA4{background-color:#EDF0FD;} + .d2-4259852277 .background-color-AA5{background-color:#F7F8FE;} + .d2-4259852277 .background-color-AB4{background-color:#EDF0FD;} + .d2-4259852277 .background-color-AB5{background-color:#F7F8FE;} + .d2-4259852277 .color-N1{color:#0A0F25;} + .d2-4259852277 .color-N2{color:#676C7E;} + .d2-4259852277 .color-N3{color:#9499AB;} + .d2-4259852277 .color-N4{color:#CFD2DD;} + .d2-4259852277 .color-N5{color:#DEE1EB;} + .d2-4259852277 .color-N6{color:#EEF1F8;} + .d2-4259852277 .color-N7{color:#FFFFFF;} + .d2-4259852277 .color-B1{color:#0D32B2;} + .d2-4259852277 .color-B2{color:#0D32B2;} + .d2-4259852277 .color-B3{color:#E3E9FD;} + .d2-4259852277 .color-B4{color:#E3E9FD;} + .d2-4259852277 .color-B5{color:#EDF0FD;} + .d2-4259852277 .color-B6{color:#F7F8FE;} + .d2-4259852277 .color-AA2{color:#4A6FF3;} + .d2-4259852277 .color-AA4{color:#EDF0FD;} + .d2-4259852277 .color-AA5{color:#F7F8FE;} + .d2-4259852277 .color-AB4{color:#EDF0FD;} + .d2-4259852277 .color-AB5{color:#F7F8FE;}.appendix text.text{fill:#0A0F25}.md{--color-fg-default:#0A0F25;--color-fg-muted:#676C7E;--color-fg-subtle:#9499AB;--color-canvas-default:#FFFFFF;--color-canvas-subtle:#EEF1F8;--color-border-default:#0D32B2;--color-border-muted:#0D32B2;--color-neutral-muted:#EEF1F8;--color-accent-fg:#0D32B2;--color-accent-emphasis:#0D32B2;--color-attention-subtle:#676C7E;--color-danger-fg:red;}.sketch-overlay-B1{fill:url(#streaks-darker);mix-blend-mode:lighten}.sketch-overlay-B2{fill:url(#streaks-darker);mix-blend-mode:lighten}.sketch-overlay-B3{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-B4{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-B5{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-B6{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-AA2{fill:url(#streaks-dark);mix-blend-mode:overlay}.sketch-overlay-AA4{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-AA5{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-AB4{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-AB5{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-N1{fill:url(#streaks-darker);mix-blend-mode:lighten}.sketch-overlay-N2{fill:url(#streaks-dark);mix-blend-mode:overlay}.sketch-overlay-N3{fill:url(#streaks-normal);mix-blend-mode:color-burn}.sketch-overlay-N4{fill:url(#streaks-normal);mix-blend-mode:color-burn}.sketch-overlay-N5{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-N6{fill:url(#streaks-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 \ No newline at end of file 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 a2fd28ba4f..d09e43897c 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 @@ -254,10 +254,8 @@ "id": "(OEM Factory -> company Warehouse)[0]", "src": "OEM Factory", "srcArrow": "none", - "srcLabel": "", "dst": "company Warehouse", "dstArrow": "triangle", - "dstLabel": "", "opacity": 1, "strokeDash": 0, "strokeWidth": 2, @@ -303,10 +301,8 @@ "id": "company Warehouse.(Master -> Regional-1)[0]", "src": "company Warehouse.Master", "srcArrow": "none", - "srcLabel": "", "dst": "company Warehouse.Regional-1", "dstArrow": "triangle", - "dstLabel": "", "opacity": 1, "strokeDash": 0, "strokeWidth": 2, @@ -352,10 +348,8 @@ "id": "company Warehouse.(Master -> Regional-2)[0]", "src": "company Warehouse.Master", "srcArrow": "none", - "srcLabel": "", "dst": "company Warehouse.Regional-2", "dstArrow": "triangle", - "dstLabel": "", "opacity": 1, "strokeDash": 0, "strokeWidth": 2, @@ -413,10 +407,8 @@ "id": "company Warehouse.(Master -> Regional-N)[0]", "src": "company Warehouse.Master", "srcArrow": "none", - "srcLabel": "", "dst": "company Warehouse.Regional-N", "dstArrow": "triangle", - "dstLabel": "", "opacity": 1, "strokeDash": 0, "strokeWidth": 2, @@ -498,10 +490,8 @@ "id": "company Warehouse.(Regional-1 -> Regional-2)[0]", "src": "company Warehouse.Regional-1", "srcArrow": "none", - "srcLabel": "", "dst": "company Warehouse.Regional-2", "dstArrow": "triangle", - "dstLabel": "", "opacity": 1, "strokeDash": 0, "strokeWidth": 2, @@ -547,10 +537,8 @@ "id": "company Warehouse.(Regional-2 -> Regional-N)[0]", "src": "company Warehouse.Regional-2", "srcArrow": "none", - "srcLabel": "", "dst": "company Warehouse.Regional-N", "dstArrow": "triangle", - "dstLabel": "", "opacity": 1, "strokeDash": 0, "strokeWidth": 2, @@ -596,10 +584,8 @@ "id": "company Warehouse.(Regional-N -> Regional-1)[0]", "src": "company Warehouse.Regional-N", "srcArrow": "none", - "srcLabel": "", "dst": "company Warehouse.Regional-1", "dstArrow": "triangle", - "dstLabel": "", "opacity": 1, "strokeDash": 0, "strokeWidth": 2, 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 3388a9af90..9394dba4f9 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
    \ No newline at end of file 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 d768baee1a..3f47239046 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 @@ -254,10 +254,8 @@ "id": "(OEM Factory -> company Warehouse)[0]", "src": "OEM Factory", "srcArrow": "none", - "srcLabel": "", "dst": "company Warehouse", "dstArrow": "triangle", - "dstLabel": "", "opacity": 1, "strokeDash": 0, "strokeWidth": 2, @@ -294,10 +292,8 @@ "id": "company Warehouse.(Master -> Regional-1)[0]", "src": "company Warehouse.Master", "srcArrow": "none", - "srcLabel": "", "dst": "company Warehouse.Regional-1", "dstArrow": "triangle", - "dstLabel": "", "opacity": 1, "strokeDash": 0, "strokeWidth": 2, @@ -342,10 +338,8 @@ "id": "company Warehouse.(Master -> Regional-2)[0]", "src": "company Warehouse.Master", "srcArrow": "none", - "srcLabel": "", "dst": "company Warehouse.Regional-2", "dstArrow": "triangle", - "dstLabel": "", "opacity": 1, "strokeDash": 0, "strokeWidth": 2, @@ -382,10 +376,8 @@ "id": "company Warehouse.(Master -> Regional-N)[0]", "src": "company Warehouse.Master", "srcArrow": "none", - "srcLabel": "", "dst": "company Warehouse.Regional-N", "dstArrow": "triangle", - "dstLabel": "", "opacity": 1, "strokeDash": 0, "strokeWidth": 2, @@ -438,10 +430,8 @@ "id": "company Warehouse.(Regional-1 -> Regional-2)[0]", "src": "company Warehouse.Regional-1", "srcArrow": "none", - "srcLabel": "", "dst": "company Warehouse.Regional-2", "dstArrow": "triangle", - "dstLabel": "", "opacity": 1, "strokeDash": 0, "strokeWidth": 2, @@ -486,10 +476,8 @@ "id": "company Warehouse.(Regional-2 -> Regional-N)[0]", "src": "company Warehouse.Regional-2", "srcArrow": "none", - "srcLabel": "", "dst": "company Warehouse.Regional-N", "dstArrow": "triangle", - "dstLabel": "", "opacity": 1, "strokeDash": 0, "strokeWidth": 2, @@ -526,10 +514,8 @@ "id": "company Warehouse.(Regional-N -> Regional-1)[0]", "src": "company Warehouse.Regional-N", "srcArrow": "none", - "srcLabel": "", "dst": "company Warehouse.Regional-1", "dstArrow": "triangle", - "dstLabel": "", "opacity": 1, "strokeDash": 0, "strokeWidth": 2, 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 f541f4da84..efc0f35ff7 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
    \ No newline at end of file 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 91ed04c342..b8ff62e88a 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 @@ -342,10 +342,8 @@ "id": "(b -> c)[0]", "src": "b", "srcArrow": "none", - "srcLabel": "", "dst": "c", "dstArrow": "triangle", - "dstLabel": "", "opacity": 1, "strokeDash": 0, "strokeWidth": 2, @@ -382,10 +380,8 @@ "id": "(a -> b)[4]", "src": "a", "srcArrow": "none", - "srcLabel": "", "dst": "b", "dstArrow": "triangle", - "dstLabel": "", "opacity": 1, "strokeDash": 0, "strokeWidth": 2, @@ -422,10 +418,8 @@ "id": "(a -> b)[3]", "src": "a", "srcArrow": "none", - "srcLabel": "", "dst": "b", "dstArrow": "triangle", - "dstLabel": "", "opacity": 1, "strokeDash": 0, "strokeWidth": 2, @@ -462,10 +456,8 @@ "id": "(a -> b)[2]", "src": "a", "srcArrow": "none", - "srcLabel": "", "dst": "b", "dstArrow": "triangle", - "dstLabel": "", "opacity": 1, "strokeDash": 0, "strokeWidth": 2, @@ -502,10 +494,8 @@ "id": "(a -> b)[1]", "src": "a", "srcArrow": "none", - "srcLabel": "", "dst": "b", "dstArrow": "triangle", - "dstLabel": "", "opacity": 1, "strokeDash": 0, "strokeWidth": 2, @@ -542,10 +532,8 @@ "id": "(a -> b)[0]", "src": "a", "srcArrow": "none", - "srcLabel": "", "dst": "b", "dstArrow": "triangle", - "dstLabel": "", "opacity": 1, "strokeDash": 0, "strokeWidth": 2, @@ -582,10 +570,8 @@ "id": "(b -- )[0]", "src": "b", "srcArrow": "none", - "srcLabel": "", "dst": "b-lifeline-end-668380428", "dstArrow": "none", - "dstLabel": "", "opacity": 1, "strokeDash": 6, "strokeWidth": 2, @@ -622,10 +608,8 @@ "id": "(a -- )[0]", "src": "a", "srcArrow": "none", - "srcLabel": "", "dst": "a-lifeline-end-2251863791", "dstArrow": "none", - "dstLabel": "", "opacity": 1, "strokeDash": 6, "strokeWidth": 2, @@ -662,10 +646,8 @@ "id": "(c -- )[0]", "src": "c", "srcArrow": "none", - "srcLabel": "", "dst": "c-lifeline-end-955173837", "dstArrow": "none", - "dstLabel": "", "opacity": 1, "strokeDash": 6, "strokeWidth": 2, 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 baa7436661..9bc40efafa 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-114625628 .fill-N1{fill:#0A0F25;} + .d2-114625628 .fill-N2{fill:#676C7E;} + .d2-114625628 .fill-N3{fill:#9499AB;} + .d2-114625628 .fill-N4{fill:#CFD2DD;} + .d2-114625628 .fill-N5{fill:#DEE1EB;} + .d2-114625628 .fill-N6{fill:#EEF1F8;} + .d2-114625628 .fill-N7{fill:#FFFFFF;} + .d2-114625628 .fill-B1{fill:#0D32B2;} + .d2-114625628 .fill-B2{fill:#0D32B2;} + .d2-114625628 .fill-B3{fill:#E3E9FD;} + .d2-114625628 .fill-B4{fill:#E3E9FD;} + .d2-114625628 .fill-B5{fill:#EDF0FD;} + .d2-114625628 .fill-B6{fill:#F7F8FE;} + .d2-114625628 .fill-AA2{fill:#4A6FF3;} + .d2-114625628 .fill-AA4{fill:#EDF0FD;} + .d2-114625628 .fill-AA5{fill:#F7F8FE;} + .d2-114625628 .fill-AB4{fill:#EDF0FD;} + .d2-114625628 .fill-AB5{fill:#F7F8FE;} + .d2-114625628 .stroke-N1{stroke:#0A0F25;} + .d2-114625628 .stroke-N2{stroke:#676C7E;} + .d2-114625628 .stroke-N3{stroke:#9499AB;} + .d2-114625628 .stroke-N4{stroke:#CFD2DD;} + .d2-114625628 .stroke-N5{stroke:#DEE1EB;} + .d2-114625628 .stroke-N6{stroke:#EEF1F8;} + .d2-114625628 .stroke-N7{stroke:#FFFFFF;} + .d2-114625628 .stroke-B1{stroke:#0D32B2;} + .d2-114625628 .stroke-B2{stroke:#0D32B2;} + .d2-114625628 .stroke-B3{stroke:#E3E9FD;} + .d2-114625628 .stroke-B4{stroke:#E3E9FD;} + .d2-114625628 .stroke-B5{stroke:#EDF0FD;} + .d2-114625628 .stroke-B6{stroke:#F7F8FE;} + .d2-114625628 .stroke-AA2{stroke:#4A6FF3;} + .d2-114625628 .stroke-AA4{stroke:#EDF0FD;} + .d2-114625628 .stroke-AA5{stroke:#F7F8FE;} + .d2-114625628 .stroke-AB4{stroke:#EDF0FD;} + .d2-114625628 .stroke-AB5{stroke:#F7F8FE;} + .d2-114625628 .background-color-N1{background-color:#0A0F25;} + .d2-114625628 .background-color-N2{background-color:#676C7E;} + .d2-114625628 .background-color-N3{background-color:#9499AB;} + .d2-114625628 .background-color-N4{background-color:#CFD2DD;} + .d2-114625628 .background-color-N5{background-color:#DEE1EB;} + .d2-114625628 .background-color-N6{background-color:#EEF1F8;} + .d2-114625628 .background-color-N7{background-color:#FFFFFF;} + .d2-114625628 .background-color-B1{background-color:#0D32B2;} + .d2-114625628 .background-color-B2{background-color:#0D32B2;} + .d2-114625628 .background-color-B3{background-color:#E3E9FD;} + .d2-114625628 .background-color-B4{background-color:#E3E9FD;} + .d2-114625628 .background-color-B5{background-color:#EDF0FD;} + .d2-114625628 .background-color-B6{background-color:#F7F8FE;} + .d2-114625628 .background-color-AA2{background-color:#4A6FF3;} + .d2-114625628 .background-color-AA4{background-color:#EDF0FD;} + .d2-114625628 .background-color-AA5{background-color:#F7F8FE;} + .d2-114625628 .background-color-AB4{background-color:#EDF0FD;} + .d2-114625628 .background-color-AB5{background-color:#F7F8FE;} + .d2-114625628 .color-N1{color:#0A0F25;} + .d2-114625628 .color-N2{color:#676C7E;} + .d2-114625628 .color-N3{color:#9499AB;} + .d2-114625628 .color-N4{color:#CFD2DD;} + .d2-114625628 .color-N5{color:#DEE1EB;} + .d2-114625628 .color-N6{color:#EEF1F8;} + .d2-114625628 .color-N7{color:#FFFFFF;} + .d2-114625628 .color-B1{color:#0D32B2;} + .d2-114625628 .color-B2{color:#0D32B2;} + .d2-114625628 .color-B3{color:#E3E9FD;} + .d2-114625628 .color-B4{color:#E3E9FD;} + .d2-114625628 .color-B5{color:#EDF0FD;} + .d2-114625628 .color-B6{color:#F7F8FE;} + .d2-114625628 .color-AA2{color:#4A6FF3;} + .d2-114625628 .color-AA4{color:#EDF0FD;} + .d2-114625628 .color-AA5{color:#F7F8FE;} + .d2-114625628 .color-AB4{color:#EDF0FD;} + .d2-114625628 .color-AB5{color:#F7F8FE;}.appendix text.text{fill:#0A0F25}.md{--color-fg-default:#0A0F25;--color-fg-muted:#676C7E;--color-fg-subtle:#9499AB;--color-canvas-default:#FFFFFF;--color-canvas-subtle:#EEF1F8;--color-border-default:#0D32B2;--color-border-muted:#0D32B2;--color-neutral-muted:#EEF1F8;--color-accent-fg:#0D32B2;--color-accent-emphasis:#0D32B2;--color-attention-subtle:#676C7E;--color-danger-fg:red;}.sketch-overlay-B1{fill:url(#streaks-darker);mix-blend-mode:lighten}.sketch-overlay-B2{fill:url(#streaks-darker);mix-blend-mode:lighten}.sketch-overlay-B3{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-B4{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-B5{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-B6{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-AA2{fill:url(#streaks-dark);mix-blend-mode:overlay}.sketch-overlay-AA4{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-AA5{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-AB4{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-AB5{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-N1{fill:url(#streaks-darker);mix-blend-mode:lighten}.sketch-overlay-N2{fill:url(#streaks-dark);mix-blend-mode:overlay}.sketch-overlay-N3{fill:url(#streaks-normal);mix-blend-mode:color-burn}.sketch-overlay-N4{fill:url(#streaks-normal);mix-blend-mode:color-burn}.sketch-overlay-N5{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-N6{fill:url(#streaks-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 91ed04c342..b8ff62e88a 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 @@ -342,10 +342,8 @@ "id": "(b -> c)[0]", "src": "b", "srcArrow": "none", - "srcLabel": "", "dst": "c", "dstArrow": "triangle", - "dstLabel": "", "opacity": 1, "strokeDash": 0, "strokeWidth": 2, @@ -382,10 +380,8 @@ "id": "(a -> b)[4]", "src": "a", "srcArrow": "none", - "srcLabel": "", "dst": "b", "dstArrow": "triangle", - "dstLabel": "", "opacity": 1, "strokeDash": 0, "strokeWidth": 2, @@ -422,10 +418,8 @@ "id": "(a -> b)[3]", "src": "a", "srcArrow": "none", - "srcLabel": "", "dst": "b", "dstArrow": "triangle", - "dstLabel": "", "opacity": 1, "strokeDash": 0, "strokeWidth": 2, @@ -462,10 +456,8 @@ "id": "(a -> b)[2]", "src": "a", "srcArrow": "none", - "srcLabel": "", "dst": "b", "dstArrow": "triangle", - "dstLabel": "", "opacity": 1, "strokeDash": 0, "strokeWidth": 2, @@ -502,10 +494,8 @@ "id": "(a -> b)[1]", "src": "a", "srcArrow": "none", - "srcLabel": "", "dst": "b", "dstArrow": "triangle", - "dstLabel": "", "opacity": 1, "strokeDash": 0, "strokeWidth": 2, @@ -542,10 +532,8 @@ "id": "(a -> b)[0]", "src": "a", "srcArrow": "none", - "srcLabel": "", "dst": "b", "dstArrow": "triangle", - "dstLabel": "", "opacity": 1, "strokeDash": 0, "strokeWidth": 2, @@ -582,10 +570,8 @@ "id": "(b -- )[0]", "src": "b", "srcArrow": "none", - "srcLabel": "", "dst": "b-lifeline-end-668380428", "dstArrow": "none", - "dstLabel": "", "opacity": 1, "strokeDash": 6, "strokeWidth": 2, @@ -622,10 +608,8 @@ "id": "(a -- )[0]", "src": "a", "srcArrow": "none", - "srcLabel": "", "dst": "a-lifeline-end-2251863791", "dstArrow": "none", - "dstLabel": "", "opacity": 1, "strokeDash": 6, "strokeWidth": 2, @@ -662,10 +646,8 @@ "id": "(c -- )[0]", "src": "c", "srcArrow": "none", - "srcLabel": "", "dst": "c-lifeline-end-955173837", "dstArrow": "none", - "dstLabel": "", "opacity": 1, "strokeDash": 6, "strokeWidth": 2, 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 baa7436661..9bc40efafa 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-114625628 .fill-N1{fill:#0A0F25;} + .d2-114625628 .fill-N2{fill:#676C7E;} + .d2-114625628 .fill-N3{fill:#9499AB;} + .d2-114625628 .fill-N4{fill:#CFD2DD;} + .d2-114625628 .fill-N5{fill:#DEE1EB;} + .d2-114625628 .fill-N6{fill:#EEF1F8;} + .d2-114625628 .fill-N7{fill:#FFFFFF;} + .d2-114625628 .fill-B1{fill:#0D32B2;} + .d2-114625628 .fill-B2{fill:#0D32B2;} + .d2-114625628 .fill-B3{fill:#E3E9FD;} + .d2-114625628 .fill-B4{fill:#E3E9FD;} + .d2-114625628 .fill-B5{fill:#EDF0FD;} + .d2-114625628 .fill-B6{fill:#F7F8FE;} + .d2-114625628 .fill-AA2{fill:#4A6FF3;} + .d2-114625628 .fill-AA4{fill:#EDF0FD;} + .d2-114625628 .fill-AA5{fill:#F7F8FE;} + .d2-114625628 .fill-AB4{fill:#EDF0FD;} + .d2-114625628 .fill-AB5{fill:#F7F8FE;} + .d2-114625628 .stroke-N1{stroke:#0A0F25;} + .d2-114625628 .stroke-N2{stroke:#676C7E;} + .d2-114625628 .stroke-N3{stroke:#9499AB;} + .d2-114625628 .stroke-N4{stroke:#CFD2DD;} + .d2-114625628 .stroke-N5{stroke:#DEE1EB;} + .d2-114625628 .stroke-N6{stroke:#EEF1F8;} + .d2-114625628 .stroke-N7{stroke:#FFFFFF;} + .d2-114625628 .stroke-B1{stroke:#0D32B2;} + .d2-114625628 .stroke-B2{stroke:#0D32B2;} + .d2-114625628 .stroke-B3{stroke:#E3E9FD;} + .d2-114625628 .stroke-B4{stroke:#E3E9FD;} + .d2-114625628 .stroke-B5{stroke:#EDF0FD;} + .d2-114625628 .stroke-B6{stroke:#F7F8FE;} + .d2-114625628 .stroke-AA2{stroke:#4A6FF3;} + .d2-114625628 .stroke-AA4{stroke:#EDF0FD;} + .d2-114625628 .stroke-AA5{stroke:#F7F8FE;} + .d2-114625628 .stroke-AB4{stroke:#EDF0FD;} + .d2-114625628 .stroke-AB5{stroke:#F7F8FE;} + .d2-114625628 .background-color-N1{background-color:#0A0F25;} + .d2-114625628 .background-color-N2{background-color:#676C7E;} + .d2-114625628 .background-color-N3{background-color:#9499AB;} + .d2-114625628 .background-color-N4{background-color:#CFD2DD;} + .d2-114625628 .background-color-N5{background-color:#DEE1EB;} + .d2-114625628 .background-color-N6{background-color:#EEF1F8;} + .d2-114625628 .background-color-N7{background-color:#FFFFFF;} + .d2-114625628 .background-color-B1{background-color:#0D32B2;} + .d2-114625628 .background-color-B2{background-color:#0D32B2;} + .d2-114625628 .background-color-B3{background-color:#E3E9FD;} + .d2-114625628 .background-color-B4{background-color:#E3E9FD;} + .d2-114625628 .background-color-B5{background-color:#EDF0FD;} + .d2-114625628 .background-color-B6{background-color:#F7F8FE;} + .d2-114625628 .background-color-AA2{background-color:#4A6FF3;} + .d2-114625628 .background-color-AA4{background-color:#EDF0FD;} + .d2-114625628 .background-color-AA5{background-color:#F7F8FE;} + .d2-114625628 .background-color-AB4{background-color:#EDF0FD;} + .d2-114625628 .background-color-AB5{background-color:#F7F8FE;} + .d2-114625628 .color-N1{color:#0A0F25;} + .d2-114625628 .color-N2{color:#676C7E;} + .d2-114625628 .color-N3{color:#9499AB;} + .d2-114625628 .color-N4{color:#CFD2DD;} + .d2-114625628 .color-N5{color:#DEE1EB;} + .d2-114625628 .color-N6{color:#EEF1F8;} + .d2-114625628 .color-N7{color:#FFFFFF;} + .d2-114625628 .color-B1{color:#0D32B2;} + .d2-114625628 .color-B2{color:#0D32B2;} + .d2-114625628 .color-B3{color:#E3E9FD;} + .d2-114625628 .color-B4{color:#E3E9FD;} + .d2-114625628 .color-B5{color:#EDF0FD;} + .d2-114625628 .color-B6{color:#F7F8FE;} + .d2-114625628 .color-AA2{color:#4A6FF3;} + .d2-114625628 .color-AA4{color:#EDF0FD;} + .d2-114625628 .color-AA5{color:#F7F8FE;} + .d2-114625628 .color-AB4{color:#EDF0FD;} + .d2-114625628 .color-AB5{color:#F7F8FE;}.appendix text.text{fill:#0A0F25}.md{--color-fg-default:#0A0F25;--color-fg-muted:#676C7E;--color-fg-subtle:#9499AB;--color-canvas-default:#FFFFFF;--color-canvas-subtle:#EEF1F8;--color-border-default:#0D32B2;--color-border-muted:#0D32B2;--color-neutral-muted:#EEF1F8;--color-accent-fg:#0D32B2;--color-accent-emphasis:#0D32B2;--color-attention-subtle:#676C7E;--color-danger-fg:red;}.sketch-overlay-B1{fill:url(#streaks-darker);mix-blend-mode:lighten}.sketch-overlay-B2{fill:url(#streaks-darker);mix-blend-mode:lighten}.sketch-overlay-B3{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-B4{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-B5{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-B6{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-AA2{fill:url(#streaks-dark);mix-blend-mode:overlay}.sketch-overlay-AA4{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-AA5{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-AB4{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-AB5{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-N1{fill:url(#streaks-darker);mix-blend-mode:lighten}.sketch-overlay-N2{fill:url(#streaks-dark);mix-blend-mode:overlay}.sketch-overlay-N3{fill:url(#streaks-normal);mix-blend-mode:color-burn}.sketch-overlay-N4{fill:url(#streaks-normal);mix-blend-mode:color-burn}.sketch-overlay-N5{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-N6{fill:url(#streaks-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 8ad20bef63..24af32116c 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 @@ -338,10 +338,8 @@ "id": "Office chatter.(alice -> bob)[1]", "src": "Office chatter.alice", "srcArrow": "none", - "srcLabel": "", "dst": "Office chatter.bob", "dstArrow": "triangle", - "dstLabel": "", "opacity": 1, "strokeDash": 0, "strokeWidth": 2, @@ -378,10 +376,8 @@ "id": "Office chatter.(bob -> alice)[0]", "src": "Office chatter.bob", "srcArrow": "none", - "srcLabel": "", "dst": "Office chatter.alice", "dstArrow": "triangle", - "dstLabel": "", "opacity": 1, "strokeDash": 0, "strokeWidth": 2, @@ -418,10 +414,8 @@ "id": "Office chatter.(alice -> bob)[0]", "src": "Office chatter.alice", "srcArrow": "none", - "srcLabel": "", "dst": "Office chatter.bob", "dstArrow": "triangle", - "dstLabel": "", "opacity": 1, "strokeDash": 0, "strokeWidth": 2, @@ -458,10 +452,8 @@ "id": "Office chatter.(bob.a -> alice.a)[0]", "src": "Office chatter.bob.a", "srcArrow": "none", - "srcLabel": "", "dst": "Office chatter.alice.a", "dstArrow": "triangle", - "dstLabel": "", "opacity": 1, "strokeDash": 0, "strokeWidth": 2, @@ -498,10 +490,8 @@ "id": "(Office chatter.alice -- )[0]", "src": "Office chatter.alice", "srcArrow": "none", - "srcLabel": "", "dst": "alice-lifeline-end-3851299086", "dstArrow": "none", - "dstLabel": "", "opacity": 1, "strokeDash": 6, "strokeWidth": 2, @@ -538,10 +528,8 @@ "id": "(Office chatter.bob -- )[0]", "src": "Office chatter.bob", "srcArrow": "none", - "srcLabel": "", "dst": "bob-lifeline-end-3036726343", "dstArrow": "none", - "dstLabel": "", "opacity": 1, "strokeDash": 6, "strokeWidth": 2, 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 5fdd970a3e..b9da04e847 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-1861241406 .fill-N1{fill:#0A0F25;} + .d2-1861241406 .fill-N2{fill:#676C7E;} + .d2-1861241406 .fill-N3{fill:#9499AB;} + .d2-1861241406 .fill-N4{fill:#CFD2DD;} + .d2-1861241406 .fill-N5{fill:#DEE1EB;} + .d2-1861241406 .fill-N6{fill:#EEF1F8;} + .d2-1861241406 .fill-N7{fill:#FFFFFF;} + .d2-1861241406 .fill-B1{fill:#0D32B2;} + .d2-1861241406 .fill-B2{fill:#0D32B2;} + .d2-1861241406 .fill-B3{fill:#E3E9FD;} + .d2-1861241406 .fill-B4{fill:#E3E9FD;} + .d2-1861241406 .fill-B5{fill:#EDF0FD;} + .d2-1861241406 .fill-B6{fill:#F7F8FE;} + .d2-1861241406 .fill-AA2{fill:#4A6FF3;} + .d2-1861241406 .fill-AA4{fill:#EDF0FD;} + .d2-1861241406 .fill-AA5{fill:#F7F8FE;} + .d2-1861241406 .fill-AB4{fill:#EDF0FD;} + .d2-1861241406 .fill-AB5{fill:#F7F8FE;} + .d2-1861241406 .stroke-N1{stroke:#0A0F25;} + .d2-1861241406 .stroke-N2{stroke:#676C7E;} + .d2-1861241406 .stroke-N3{stroke:#9499AB;} + .d2-1861241406 .stroke-N4{stroke:#CFD2DD;} + .d2-1861241406 .stroke-N5{stroke:#DEE1EB;} + .d2-1861241406 .stroke-N6{stroke:#EEF1F8;} + .d2-1861241406 .stroke-N7{stroke:#FFFFFF;} + .d2-1861241406 .stroke-B1{stroke:#0D32B2;} + .d2-1861241406 .stroke-B2{stroke:#0D32B2;} + .d2-1861241406 .stroke-B3{stroke:#E3E9FD;} + .d2-1861241406 .stroke-B4{stroke:#E3E9FD;} + .d2-1861241406 .stroke-B5{stroke:#EDF0FD;} + .d2-1861241406 .stroke-B6{stroke:#F7F8FE;} + .d2-1861241406 .stroke-AA2{stroke:#4A6FF3;} + .d2-1861241406 .stroke-AA4{stroke:#EDF0FD;} + .d2-1861241406 .stroke-AA5{stroke:#F7F8FE;} + .d2-1861241406 .stroke-AB4{stroke:#EDF0FD;} + .d2-1861241406 .stroke-AB5{stroke:#F7F8FE;} + .d2-1861241406 .background-color-N1{background-color:#0A0F25;} + .d2-1861241406 .background-color-N2{background-color:#676C7E;} + .d2-1861241406 .background-color-N3{background-color:#9499AB;} + .d2-1861241406 .background-color-N4{background-color:#CFD2DD;} + .d2-1861241406 .background-color-N5{background-color:#DEE1EB;} + .d2-1861241406 .background-color-N6{background-color:#EEF1F8;} + .d2-1861241406 .background-color-N7{background-color:#FFFFFF;} + .d2-1861241406 .background-color-B1{background-color:#0D32B2;} + .d2-1861241406 .background-color-B2{background-color:#0D32B2;} + .d2-1861241406 .background-color-B3{background-color:#E3E9FD;} + .d2-1861241406 .background-color-B4{background-color:#E3E9FD;} + .d2-1861241406 .background-color-B5{background-color:#EDF0FD;} + .d2-1861241406 .background-color-B6{background-color:#F7F8FE;} + .d2-1861241406 .background-color-AA2{background-color:#4A6FF3;} + .d2-1861241406 .background-color-AA4{background-color:#EDF0FD;} + .d2-1861241406 .background-color-AA5{background-color:#F7F8FE;} + .d2-1861241406 .background-color-AB4{background-color:#EDF0FD;} + .d2-1861241406 .background-color-AB5{background-color:#F7F8FE;} + .d2-1861241406 .color-N1{color:#0A0F25;} + .d2-1861241406 .color-N2{color:#676C7E;} + .d2-1861241406 .color-N3{color:#9499AB;} + .d2-1861241406 .color-N4{color:#CFD2DD;} + .d2-1861241406 .color-N5{color:#DEE1EB;} + .d2-1861241406 .color-N6{color:#EEF1F8;} + .d2-1861241406 .color-N7{color:#FFFFFF;} + .d2-1861241406 .color-B1{color:#0D32B2;} + .d2-1861241406 .color-B2{color:#0D32B2;} + .d2-1861241406 .color-B3{color:#E3E9FD;} + .d2-1861241406 .color-B4{color:#E3E9FD;} + .d2-1861241406 .color-B5{color:#EDF0FD;} + .d2-1861241406 .color-B6{color:#F7F8FE;} + .d2-1861241406 .color-AA2{color:#4A6FF3;} + .d2-1861241406 .color-AA4{color:#EDF0FD;} + .d2-1861241406 .color-AA5{color:#F7F8FE;} + .d2-1861241406 .color-AB4{color:#EDF0FD;} + .d2-1861241406 .color-AB5{color:#F7F8FE;}.appendix text.text{fill:#0A0F25}.md{--color-fg-default:#0A0F25;--color-fg-muted:#676C7E;--color-fg-subtle:#9499AB;--color-canvas-default:#FFFFFF;--color-canvas-subtle:#EEF1F8;--color-border-default:#0D32B2;--color-border-muted:#0D32B2;--color-neutral-muted:#EEF1F8;--color-accent-fg:#0D32B2;--color-accent-emphasis:#0D32B2;--color-attention-subtle:#676C7E;--color-danger-fg:red;}.sketch-overlay-B1{fill:url(#streaks-darker);mix-blend-mode:lighten}.sketch-overlay-B2{fill:url(#streaks-darker);mix-blend-mode:lighten}.sketch-overlay-B3{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-B4{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-B5{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-B6{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-AA2{fill:url(#streaks-dark);mix-blend-mode:overlay}.sketch-overlay-AA4{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-AA5{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-AB4{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-AB5{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-N1{fill:url(#streaks-darker);mix-blend-mode:lighten}.sketch-overlay-N2{fill:url(#streaks-dark);mix-blend-mode:overlay}.sketch-overlay-N3{fill:url(#streaks-normal);mix-blend-mode:color-burn}.sketch-overlay-N4{fill:url(#streaks-normal);mix-blend-mode:color-burn}.sketch-overlay-N5{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-N6{fill:url(#streaks-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 9c18c09767..0436acfb47 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 @@ -338,10 +338,8 @@ "id": "Office chatter.(alice -> bob)[1]", "src": "Office chatter.alice", "srcArrow": "none", - "srcLabel": "", "dst": "Office chatter.bob", "dstArrow": "triangle", - "dstLabel": "", "opacity": 1, "strokeDash": 0, "strokeWidth": 2, @@ -378,10 +376,8 @@ "id": "Office chatter.(bob -> alice)[0]", "src": "Office chatter.bob", "srcArrow": "none", - "srcLabel": "", "dst": "Office chatter.alice", "dstArrow": "triangle", - "dstLabel": "", "opacity": 1, "strokeDash": 0, "strokeWidth": 2, @@ -418,10 +414,8 @@ "id": "Office chatter.(alice -> bob)[0]", "src": "Office chatter.alice", "srcArrow": "none", - "srcLabel": "", "dst": "Office chatter.bob", "dstArrow": "triangle", - "dstLabel": "", "opacity": 1, "strokeDash": 0, "strokeWidth": 2, @@ -458,10 +452,8 @@ "id": "Office chatter.(bob.a -> alice.a)[0]", "src": "Office chatter.bob.a", "srcArrow": "none", - "srcLabel": "", "dst": "Office chatter.alice.a", "dstArrow": "triangle", - "dstLabel": "", "opacity": 1, "strokeDash": 0, "strokeWidth": 2, @@ -498,10 +490,8 @@ "id": "(Office chatter.alice -- )[0]", "src": "Office chatter.alice", "srcArrow": "none", - "srcLabel": "", "dst": "alice-lifeline-end-3851299086", "dstArrow": "none", - "dstLabel": "", "opacity": 1, "strokeDash": 6, "strokeWidth": 2, @@ -538,10 +528,8 @@ "id": "(Office chatter.bob -- )[0]", "src": "Office chatter.bob", "srcArrow": "none", - "srcLabel": "", "dst": "bob-lifeline-end-3036726343", "dstArrow": "none", - "dstLabel": "", "opacity": 1, "strokeDash": 6, "strokeWidth": 2, 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 d5d1c7e501..09cea77cf2 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-269035171 .fill-N1{fill:#0A0F25;} + .d2-269035171 .fill-N2{fill:#676C7E;} + .d2-269035171 .fill-N3{fill:#9499AB;} + .d2-269035171 .fill-N4{fill:#CFD2DD;} + .d2-269035171 .fill-N5{fill:#DEE1EB;} + .d2-269035171 .fill-N6{fill:#EEF1F8;} + .d2-269035171 .fill-N7{fill:#FFFFFF;} + .d2-269035171 .fill-B1{fill:#0D32B2;} + .d2-269035171 .fill-B2{fill:#0D32B2;} + .d2-269035171 .fill-B3{fill:#E3E9FD;} + .d2-269035171 .fill-B4{fill:#E3E9FD;} + .d2-269035171 .fill-B5{fill:#EDF0FD;} + .d2-269035171 .fill-B6{fill:#F7F8FE;} + .d2-269035171 .fill-AA2{fill:#4A6FF3;} + .d2-269035171 .fill-AA4{fill:#EDF0FD;} + .d2-269035171 .fill-AA5{fill:#F7F8FE;} + .d2-269035171 .fill-AB4{fill:#EDF0FD;} + .d2-269035171 .fill-AB5{fill:#F7F8FE;} + .d2-269035171 .stroke-N1{stroke:#0A0F25;} + .d2-269035171 .stroke-N2{stroke:#676C7E;} + .d2-269035171 .stroke-N3{stroke:#9499AB;} + .d2-269035171 .stroke-N4{stroke:#CFD2DD;} + .d2-269035171 .stroke-N5{stroke:#DEE1EB;} + .d2-269035171 .stroke-N6{stroke:#EEF1F8;} + .d2-269035171 .stroke-N7{stroke:#FFFFFF;} + .d2-269035171 .stroke-B1{stroke:#0D32B2;} + .d2-269035171 .stroke-B2{stroke:#0D32B2;} + .d2-269035171 .stroke-B3{stroke:#E3E9FD;} + .d2-269035171 .stroke-B4{stroke:#E3E9FD;} + .d2-269035171 .stroke-B5{stroke:#EDF0FD;} + .d2-269035171 .stroke-B6{stroke:#F7F8FE;} + .d2-269035171 .stroke-AA2{stroke:#4A6FF3;} + .d2-269035171 .stroke-AA4{stroke:#EDF0FD;} + .d2-269035171 .stroke-AA5{stroke:#F7F8FE;} + .d2-269035171 .stroke-AB4{stroke:#EDF0FD;} + .d2-269035171 .stroke-AB5{stroke:#F7F8FE;} + .d2-269035171 .background-color-N1{background-color:#0A0F25;} + .d2-269035171 .background-color-N2{background-color:#676C7E;} + .d2-269035171 .background-color-N3{background-color:#9499AB;} + .d2-269035171 .background-color-N4{background-color:#CFD2DD;} + .d2-269035171 .background-color-N5{background-color:#DEE1EB;} + .d2-269035171 .background-color-N6{background-color:#EEF1F8;} + .d2-269035171 .background-color-N7{background-color:#FFFFFF;} + .d2-269035171 .background-color-B1{background-color:#0D32B2;} + .d2-269035171 .background-color-B2{background-color:#0D32B2;} + .d2-269035171 .background-color-B3{background-color:#E3E9FD;} + .d2-269035171 .background-color-B4{background-color:#E3E9FD;} + .d2-269035171 .background-color-B5{background-color:#EDF0FD;} + .d2-269035171 .background-color-B6{background-color:#F7F8FE;} + .d2-269035171 .background-color-AA2{background-color:#4A6FF3;} + .d2-269035171 .background-color-AA4{background-color:#EDF0FD;} + .d2-269035171 .background-color-AA5{background-color:#F7F8FE;} + .d2-269035171 .background-color-AB4{background-color:#EDF0FD;} + .d2-269035171 .background-color-AB5{background-color:#F7F8FE;} + .d2-269035171 .color-N1{color:#0A0F25;} + .d2-269035171 .color-N2{color:#676C7E;} + .d2-269035171 .color-N3{color:#9499AB;} + .d2-269035171 .color-N4{color:#CFD2DD;} + .d2-269035171 .color-N5{color:#DEE1EB;} + .d2-269035171 .color-N6{color:#EEF1F8;} + .d2-269035171 .color-N7{color:#FFFFFF;} + .d2-269035171 .color-B1{color:#0D32B2;} + .d2-269035171 .color-B2{color:#0D32B2;} + .d2-269035171 .color-B3{color:#E3E9FD;} + .d2-269035171 .color-B4{color:#E3E9FD;} + .d2-269035171 .color-B5{color:#EDF0FD;} + .d2-269035171 .color-B6{color:#F7F8FE;} + .d2-269035171 .color-AA2{color:#4A6FF3;} + .d2-269035171 .color-AA4{color:#EDF0FD;} + .d2-269035171 .color-AA5{color:#F7F8FE;} + .d2-269035171 .color-AB4{color:#EDF0FD;} + .d2-269035171 .color-AB5{color:#F7F8FE;}.appendix text.text{fill:#0A0F25}.md{--color-fg-default:#0A0F25;--color-fg-muted:#676C7E;--color-fg-subtle:#9499AB;--color-canvas-default:#FFFFFF;--color-canvas-subtle:#EEF1F8;--color-border-default:#0D32B2;--color-border-muted:#0D32B2;--color-neutral-muted:#EEF1F8;--color-accent-fg:#0D32B2;--color-accent-emphasis:#0D32B2;--color-attention-subtle:#676C7E;--color-danger-fg:red;}.sketch-overlay-B1{fill:url(#streaks-darker);mix-blend-mode:lighten}.sketch-overlay-B2{fill:url(#streaks-darker);mix-blend-mode:lighten}.sketch-overlay-B3{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-B4{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-B5{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-B6{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-AA2{fill:url(#streaks-dark);mix-blend-mode:overlay}.sketch-overlay-AA4{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-AA5{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-AB4{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-AB5{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-N1{fill:url(#streaks-darker);mix-blend-mode:lighten}.sketch-overlay-N2{fill:url(#streaks-dark);mix-blend-mode:overlay}.sketch-overlay-N3{fill:url(#streaks-normal);mix-blend-mode:color-burn}.sketch-overlay-N4{fill:url(#streaks-normal);mix-blend-mode:color-burn}.sketch-overlay-N5{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-N6{fill:url(#streaks-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 a621c64a77..8f64b5755a 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 @@ -880,10 +880,8 @@ "id": "(cloud -> class2)[0]", "src": "cloud", "srcArrow": "none", - "srcLabel": "", "dst": "class2", "dstArrow": "triangle", - "dstLabel": "", "opacity": 1, "strokeDash": 0, "strokeWidth": 2, @@ -941,10 +939,8 @@ "id": "(class2 -> tall cylinder)[0]", "src": "class2", "srcArrow": "none", - "srcLabel": "", "dst": "tall cylinder", "dstArrow": "triangle", - "dstLabel": "", "opacity": 1, "strokeDash": 0, "strokeWidth": 2, @@ -990,10 +986,8 @@ "id": "(tall cylinder -> users)[0]", "src": "tall cylinder", "srcArrow": "none", - "srcLabel": "", "dst": "users", "dstArrow": "triangle", - "dstLabel": "", "opacity": 1, "strokeDash": 0, "strokeWidth": 2, @@ -1039,10 +1033,8 @@ "id": "(container -> text)[0]", "src": "container", "srcArrow": "none", - "srcLabel": "", "dst": "text", "dstArrow": "triangle", - "dstLabel": "", "opacity": 1, "strokeDash": 0, "strokeWidth": 2, @@ -1100,10 +1092,8 @@ "id": "(text -> code)[0]", "src": "text", "srcArrow": "none", - "srcLabel": "", "dst": "code", "dstArrow": "triangle", - "dstLabel": "", "opacity": 1, "strokeDash": 0, "strokeWidth": 2, @@ -1149,10 +1139,8 @@ "id": "(code -> small code)[0]", "src": "code", "srcArrow": "none", - "srcLabel": "", "dst": "small code", "dstArrow": "triangle", - "dstLabel": "", "opacity": 1, "strokeDash": 0, "strokeWidth": 2, 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 678598abef..563ca3044e 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 \ No newline at end of file diff --git a/e2etests/testdata/todo/shape_set_width_height/elk/board.exp.json b/e2etests/testdata/todo/shape_set_width_height/elk/board.exp.json index 0d3b5740ed..a461cb6a04 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 @@ -880,10 +880,8 @@ "id": "(cloud -> class2)[0]", "src": "cloud", "srcArrow": "none", - "srcLabel": "", "dst": "class2", "dstArrow": "triangle", - "dstLabel": "", "opacity": 1, "strokeDash": 0, "strokeWidth": 2, @@ -920,10 +918,8 @@ "id": "(class2 -> tall cylinder)[0]", "src": "class2", "srcArrow": "none", - "srcLabel": "", "dst": "tall cylinder", "dstArrow": "triangle", - "dstLabel": "", "opacity": 1, "strokeDash": 0, "strokeWidth": 2, @@ -960,10 +956,8 @@ "id": "(tall cylinder -> users)[0]", "src": "tall cylinder", "srcArrow": "none", - "srcLabel": "", "dst": "users", "dstArrow": "triangle", - "dstLabel": "", "opacity": 1, "strokeDash": 0, "strokeWidth": 2, @@ -1000,10 +994,8 @@ "id": "(container -> text)[0]", "src": "container", "srcArrow": "none", - "srcLabel": "", "dst": "text", "dstArrow": "triangle", - "dstLabel": "", "opacity": 1, "strokeDash": 0, "strokeWidth": 2, @@ -1040,10 +1032,8 @@ "id": "(text -> code)[0]", "src": "text", "srcArrow": "none", - "srcLabel": "", "dst": "code", "dstArrow": "triangle", - "dstLabel": "", "opacity": 1, "strokeDash": 0, "strokeWidth": 2, @@ -1080,10 +1070,8 @@ "id": "(code -> small code)[0]", "src": "code", "srcArrow": "none", - "srcLabel": "", "dst": "small code", "dstArrow": "triangle", - "dstLabel": "", "opacity": 1, "strokeDash": 0, "strokeWidth": 2, 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 49872f3cc7..d7b29900c4 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 \ No newline at end of file diff --git a/e2etests/testdata/unicode/chinese/dagre/board.exp.json b/e2etests/testdata/unicode/chinese/dagre/board.exp.json index 3b695a6b4f..bc030e8888 100644 --- a/e2etests/testdata/unicode/chinese/dagre/board.exp.json +++ b/e2etests/testdata/unicode/chinese/dagre/board.exp.json @@ -90,10 +90,8 @@ "id": "(poem -> a)[0]", "src": "poem", "srcArrow": "none", - "srcLabel": "", "dst": "a", "dstArrow": "triangle", - "dstLabel": "", "opacity": 1, "strokeDash": 0, "strokeWidth": 2, diff --git a/e2etests/testdata/unicode/chinese/dagre/sketch.exp.svg b/e2etests/testdata/unicode/chinese/dagre/sketch.exp.svg index b0fcf63902..670cc746e5 100644 --- a/e2etests/testdata/unicode/chinese/dagre/sketch.exp.svg +++ b/e2etests/testdata/unicode/chinese/dagre/sketch.exp.svg @@ -1,20 +1,20 @@ -

    床前明月光,

    疑是地上霜。

    举头望明月,

    低头思故乡。

    -
    所以,即使夏天很热 +
    所以,即使夏天很热
    \ No newline at end of file diff --git a/e2etests/testdata/unicode/chinese/elk/board.exp.json b/e2etests/testdata/unicode/chinese/elk/board.exp.json index b7263373a5..adb895ecf7 100644 --- a/e2etests/testdata/unicode/chinese/elk/board.exp.json +++ b/e2etests/testdata/unicode/chinese/elk/board.exp.json @@ -90,10 +90,8 @@ "id": "(poem -> a)[0]", "src": "poem", "srcArrow": "none", - "srcLabel": "", "dst": "a", "dstArrow": "triangle", - "dstLabel": "", "opacity": 1, "strokeDash": 0, "strokeWidth": 2, diff --git a/e2etests/testdata/unicode/chinese/elk/sketch.exp.svg b/e2etests/testdata/unicode/chinese/elk/sketch.exp.svg index fdbd0b4d55..40e00d39ef 100644 --- a/e2etests/testdata/unicode/chinese/elk/sketch.exp.svg +++ b/e2etests/testdata/unicode/chinese/elk/sketch.exp.svg @@ -1,20 +1,20 @@ -

    床前明月光,

    疑是地上霜。

    举头望明月,

    低头思故乡。

    -
    所以,即使夏天很热 +
    所以,即使夏天很热
    \ No newline at end of file diff --git a/e2etests/testdata/unicode/emojis/dagre/board.exp.json b/e2etests/testdata/unicode/emojis/dagre/board.exp.json index e688149ef1..7bf49961a2 100644 --- a/e2etests/testdata/unicode/emojis/dagre/board.exp.json +++ b/e2etests/testdata/unicode/emojis/dagre/board.exp.json @@ -132,10 +132,8 @@ "id": "(✊✊✊✊✊✊✊✊✊✊✊✊✊✊✊✊✊✊✊✊✊✊✊✊✊✊✊✊✊✊✊✊✊✊✊✊✊✊✊ -> ☁️☁️☁️☁️☁️☁️☁️☁️☁️☁️☁️☁️☁️☁️☁️☁️☁️☁️☁️☁️☁️☁️☁️☁️☁️☁️☁️☁️☁️☁️☁️☁️☁️☁️☁️☁️☁️☁️☁️)[0]", "src": "✊✊✊✊✊✊✊✊✊✊✊✊✊✊✊✊✊✊✊✊✊✊✊✊✊✊✊✊✊✊✊✊✊✊✊✊✊✊✊", "srcArrow": "none", - "srcLabel": "", "dst": "☁️☁️☁️☁️☁️☁️☁️☁️☁️☁️☁️☁️☁️☁️☁️☁️☁️☁️☁️☁️☁️☁️☁️☁️☁️☁️☁️☁️☁️☁️☁️☁️☁️☁️☁️☁️☁️☁️☁️", "dstArrow": "triangle", - "dstLabel": "", "opacity": 1, "strokeDash": 0, "strokeWidth": 2, diff --git a/e2etests/testdata/unicode/emojis/dagre/sketch.exp.svg b/e2etests/testdata/unicode/emojis/dagre/sketch.exp.svg index 2ec219a8b6..2d47288b70 100644 --- a/e2etests/testdata/unicode/emojis/dagre/sketch.exp.svg +++ b/e2etests/testdata/unicode/emojis/dagre/sketch.exp.svg @@ -1,9 +1,9 @@ -🙈🙈🙈🙈🙈🙈🙈🙈✊✊✊✊✊✊✊✊✊✊✊✊✊✊✊✊✊✊✊✊✊✊✊✊✊✊✊✊✊✊✊✊✊✊✊✊✊✊✊☁️☁️☁️☁️☁️☁️☁️☁️☁️☁️☁️☁️☁️☁️☁️☁️☁️☁️☁️☁️☁️☁️☁️☁️☁️☁️☁️☁️☁️☁️☁️☁️☁️☁️☁️☁️☁️☁️☁️ + .d2-167875042 .fill-N1{fill:#0A0F25;} + .d2-167875042 .fill-N2{fill:#676C7E;} + .d2-167875042 .fill-N3{fill:#9499AB;} + .d2-167875042 .fill-N4{fill:#CFD2DD;} + .d2-167875042 .fill-N5{fill:#DEE1EB;} + .d2-167875042 .fill-N6{fill:#EEF1F8;} + .d2-167875042 .fill-N7{fill:#FFFFFF;} + .d2-167875042 .fill-B1{fill:#0D32B2;} + .d2-167875042 .fill-B2{fill:#0D32B2;} + .d2-167875042 .fill-B3{fill:#E3E9FD;} + .d2-167875042 .fill-B4{fill:#E3E9FD;} + .d2-167875042 .fill-B5{fill:#EDF0FD;} + .d2-167875042 .fill-B6{fill:#F7F8FE;} + .d2-167875042 .fill-AA2{fill:#4A6FF3;} + .d2-167875042 .fill-AA4{fill:#EDF0FD;} + .d2-167875042 .fill-AA5{fill:#F7F8FE;} + .d2-167875042 .fill-AB4{fill:#EDF0FD;} + .d2-167875042 .fill-AB5{fill:#F7F8FE;} + .d2-167875042 .stroke-N1{stroke:#0A0F25;} + .d2-167875042 .stroke-N2{stroke:#676C7E;} + .d2-167875042 .stroke-N3{stroke:#9499AB;} + .d2-167875042 .stroke-N4{stroke:#CFD2DD;} + .d2-167875042 .stroke-N5{stroke:#DEE1EB;} + .d2-167875042 .stroke-N6{stroke:#EEF1F8;} + .d2-167875042 .stroke-N7{stroke:#FFFFFF;} + .d2-167875042 .stroke-B1{stroke:#0D32B2;} + .d2-167875042 .stroke-B2{stroke:#0D32B2;} + .d2-167875042 .stroke-B3{stroke:#E3E9FD;} + .d2-167875042 .stroke-B4{stroke:#E3E9FD;} + .d2-167875042 .stroke-B5{stroke:#EDF0FD;} + .d2-167875042 .stroke-B6{stroke:#F7F8FE;} + .d2-167875042 .stroke-AA2{stroke:#4A6FF3;} + .d2-167875042 .stroke-AA4{stroke:#EDF0FD;} + .d2-167875042 .stroke-AA5{stroke:#F7F8FE;} + .d2-167875042 .stroke-AB4{stroke:#EDF0FD;} + .d2-167875042 .stroke-AB5{stroke:#F7F8FE;} + .d2-167875042 .background-color-N1{background-color:#0A0F25;} + .d2-167875042 .background-color-N2{background-color:#676C7E;} + .d2-167875042 .background-color-N3{background-color:#9499AB;} + .d2-167875042 .background-color-N4{background-color:#CFD2DD;} + .d2-167875042 .background-color-N5{background-color:#DEE1EB;} + .d2-167875042 .background-color-N6{background-color:#EEF1F8;} + .d2-167875042 .background-color-N7{background-color:#FFFFFF;} + .d2-167875042 .background-color-B1{background-color:#0D32B2;} + .d2-167875042 .background-color-B2{background-color:#0D32B2;} + .d2-167875042 .background-color-B3{background-color:#E3E9FD;} + .d2-167875042 .background-color-B4{background-color:#E3E9FD;} + .d2-167875042 .background-color-B5{background-color:#EDF0FD;} + .d2-167875042 .background-color-B6{background-color:#F7F8FE;} + .d2-167875042 .background-color-AA2{background-color:#4A6FF3;} + .d2-167875042 .background-color-AA4{background-color:#EDF0FD;} + .d2-167875042 .background-color-AA5{background-color:#F7F8FE;} + .d2-167875042 .background-color-AB4{background-color:#EDF0FD;} + .d2-167875042 .background-color-AB5{background-color:#F7F8FE;} + .d2-167875042 .color-N1{color:#0A0F25;} + .d2-167875042 .color-N2{color:#676C7E;} + .d2-167875042 .color-N3{color:#9499AB;} + .d2-167875042 .color-N4{color:#CFD2DD;} + .d2-167875042 .color-N5{color:#DEE1EB;} + .d2-167875042 .color-N6{color:#EEF1F8;} + .d2-167875042 .color-N7{color:#FFFFFF;} + .d2-167875042 .color-B1{color:#0D32B2;} + .d2-167875042 .color-B2{color:#0D32B2;} + .d2-167875042 .color-B3{color:#E3E9FD;} + .d2-167875042 .color-B4{color:#E3E9FD;} + .d2-167875042 .color-B5{color:#EDF0FD;} + .d2-167875042 .color-B6{color:#F7F8FE;} + .d2-167875042 .color-AA2{color:#4A6FF3;} + .d2-167875042 .color-AA4{color:#EDF0FD;} + .d2-167875042 .color-AA5{color:#F7F8FE;} + .d2-167875042 .color-AB4{color:#EDF0FD;} + .d2-167875042 .color-AB5{color:#F7F8FE;}.appendix text.text{fill:#0A0F25}.md{--color-fg-default:#0A0F25;--color-fg-muted:#676C7E;--color-fg-subtle:#9499AB;--color-canvas-default:#FFFFFF;--color-canvas-subtle:#EEF1F8;--color-border-default:#0D32B2;--color-border-muted:#0D32B2;--color-neutral-muted:#EEF1F8;--color-accent-fg:#0D32B2;--color-accent-emphasis:#0D32B2;--color-attention-subtle:#676C7E;--color-danger-fg:red;}.sketch-overlay-B1{fill:url(#streaks-darker);mix-blend-mode:lighten}.sketch-overlay-B2{fill:url(#streaks-darker);mix-blend-mode:lighten}.sketch-overlay-B3{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-B4{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-B5{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-B6{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-AA2{fill:url(#streaks-dark);mix-blend-mode:overlay}.sketch-overlay-AA4{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-AA5{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-AB4{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-AB5{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-N1{fill:url(#streaks-darker);mix-blend-mode:lighten}.sketch-overlay-N2{fill:url(#streaks-dark);mix-blend-mode:overlay}.sketch-overlay-N3{fill:url(#streaks-normal);mix-blend-mode:color-burn}.sketch-overlay-N4{fill:url(#streaks-normal);mix-blend-mode:color-burn}.sketch-overlay-N5{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-N6{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-N7{fill:url(#streaks-bright);mix-blend-mode:darken}.light-code{display: block}.dark-code{display: none}]]>🙈🙈🙈🙈🙈🙈🙈🙈✊✊✊✊✊✊✊✊✊✊✊✊✊✊✊✊✊✊✊✊✊✊✊✊✊✊✊✊✊✊✊✊✊✊✊✊✊✊✊☁️☁️☁️☁️☁️☁️☁️☁️☁️☁️☁️☁️☁️☁️☁️☁️☁️☁️☁️☁️☁️☁️☁️☁️☁️☁️☁️☁️☁️☁️☁️☁️☁️☁️☁️☁️☁️☁️☁️ \ No newline at end of file diff --git a/e2etests/testdata/unicode/emojis/elk/board.exp.json b/e2etests/testdata/unicode/emojis/elk/board.exp.json index 757d920b18..ad8d87f70e 100644 --- a/e2etests/testdata/unicode/emojis/elk/board.exp.json +++ b/e2etests/testdata/unicode/emojis/elk/board.exp.json @@ -132,10 +132,8 @@ "id": "(✊✊✊✊✊✊✊✊✊✊✊✊✊✊✊✊✊✊✊✊✊✊✊✊✊✊✊✊✊✊✊✊✊✊✊✊✊✊✊ -> ☁️☁️☁️☁️☁️☁️☁️☁️☁️☁️☁️☁️☁️☁️☁️☁️☁️☁️☁️☁️☁️☁️☁️☁️☁️☁️☁️☁️☁️☁️☁️☁️☁️☁️☁️☁️☁️☁️☁️)[0]", "src": "✊✊✊✊✊✊✊✊✊✊✊✊✊✊✊✊✊✊✊✊✊✊✊✊✊✊✊✊✊✊✊✊✊✊✊✊✊✊✊", "srcArrow": "none", - "srcLabel": "", "dst": "☁️☁️☁️☁️☁️☁️☁️☁️☁️☁️☁️☁️☁️☁️☁️☁️☁️☁️☁️☁️☁️☁️☁️☁️☁️☁️☁️☁️☁️☁️☁️☁️☁️☁️☁️☁️☁️☁️☁️", "dstArrow": "triangle", - "dstLabel": "", "opacity": 1, "strokeDash": 0, "strokeWidth": 2, diff --git a/e2etests/testdata/unicode/emojis/elk/sketch.exp.svg b/e2etests/testdata/unicode/emojis/elk/sketch.exp.svg index 090fb631b6..2ec85465dc 100644 --- a/e2etests/testdata/unicode/emojis/elk/sketch.exp.svg +++ b/e2etests/testdata/unicode/emojis/elk/sketch.exp.svg @@ -1,9 +1,9 @@ -🙈🙈🙈🙈🙈🙈🙈🙈✊✊✊✊✊✊✊✊✊✊✊✊✊✊✊✊✊✊✊✊✊✊✊✊✊✊✊✊✊✊✊✊✊✊✊✊✊✊✊☁️☁️☁️☁️☁️☁️☁️☁️☁️☁️☁️☁️☁️☁️☁️☁️☁️☁️☁️☁️☁️☁️☁️☁️☁️☁️☁️☁️☁️☁️☁️☁️☁️☁️☁️☁️☁️☁️☁️ + .d2-2303818856 .fill-N1{fill:#0A0F25;} + .d2-2303818856 .fill-N2{fill:#676C7E;} + .d2-2303818856 .fill-N3{fill:#9499AB;} + .d2-2303818856 .fill-N4{fill:#CFD2DD;} + .d2-2303818856 .fill-N5{fill:#DEE1EB;} + .d2-2303818856 .fill-N6{fill:#EEF1F8;} + .d2-2303818856 .fill-N7{fill:#FFFFFF;} + .d2-2303818856 .fill-B1{fill:#0D32B2;} + .d2-2303818856 .fill-B2{fill:#0D32B2;} + .d2-2303818856 .fill-B3{fill:#E3E9FD;} + .d2-2303818856 .fill-B4{fill:#E3E9FD;} + .d2-2303818856 .fill-B5{fill:#EDF0FD;} + .d2-2303818856 .fill-B6{fill:#F7F8FE;} + .d2-2303818856 .fill-AA2{fill:#4A6FF3;} + .d2-2303818856 .fill-AA4{fill:#EDF0FD;} + .d2-2303818856 .fill-AA5{fill:#F7F8FE;} + .d2-2303818856 .fill-AB4{fill:#EDF0FD;} + .d2-2303818856 .fill-AB5{fill:#F7F8FE;} + .d2-2303818856 .stroke-N1{stroke:#0A0F25;} + .d2-2303818856 .stroke-N2{stroke:#676C7E;} + .d2-2303818856 .stroke-N3{stroke:#9499AB;} + .d2-2303818856 .stroke-N4{stroke:#CFD2DD;} + .d2-2303818856 .stroke-N5{stroke:#DEE1EB;} + .d2-2303818856 .stroke-N6{stroke:#EEF1F8;} + .d2-2303818856 .stroke-N7{stroke:#FFFFFF;} + .d2-2303818856 .stroke-B1{stroke:#0D32B2;} + .d2-2303818856 .stroke-B2{stroke:#0D32B2;} + .d2-2303818856 .stroke-B3{stroke:#E3E9FD;} + .d2-2303818856 .stroke-B4{stroke:#E3E9FD;} + .d2-2303818856 .stroke-B5{stroke:#EDF0FD;} + .d2-2303818856 .stroke-B6{stroke:#F7F8FE;} + .d2-2303818856 .stroke-AA2{stroke:#4A6FF3;} + .d2-2303818856 .stroke-AA4{stroke:#EDF0FD;} + .d2-2303818856 .stroke-AA5{stroke:#F7F8FE;} + .d2-2303818856 .stroke-AB4{stroke:#EDF0FD;} + .d2-2303818856 .stroke-AB5{stroke:#F7F8FE;} + .d2-2303818856 .background-color-N1{background-color:#0A0F25;} + .d2-2303818856 .background-color-N2{background-color:#676C7E;} + .d2-2303818856 .background-color-N3{background-color:#9499AB;} + .d2-2303818856 .background-color-N4{background-color:#CFD2DD;} + .d2-2303818856 .background-color-N5{background-color:#DEE1EB;} + .d2-2303818856 .background-color-N6{background-color:#EEF1F8;} + .d2-2303818856 .background-color-N7{background-color:#FFFFFF;} + .d2-2303818856 .background-color-B1{background-color:#0D32B2;} + .d2-2303818856 .background-color-B2{background-color:#0D32B2;} + .d2-2303818856 .background-color-B3{background-color:#E3E9FD;} + .d2-2303818856 .background-color-B4{background-color:#E3E9FD;} + .d2-2303818856 .background-color-B5{background-color:#EDF0FD;} + .d2-2303818856 .background-color-B6{background-color:#F7F8FE;} + .d2-2303818856 .background-color-AA2{background-color:#4A6FF3;} + .d2-2303818856 .background-color-AA4{background-color:#EDF0FD;} + .d2-2303818856 .background-color-AA5{background-color:#F7F8FE;} + .d2-2303818856 .background-color-AB4{background-color:#EDF0FD;} + .d2-2303818856 .background-color-AB5{background-color:#F7F8FE;} + .d2-2303818856 .color-N1{color:#0A0F25;} + .d2-2303818856 .color-N2{color:#676C7E;} + .d2-2303818856 .color-N3{color:#9499AB;} + .d2-2303818856 .color-N4{color:#CFD2DD;} + .d2-2303818856 .color-N5{color:#DEE1EB;} + .d2-2303818856 .color-N6{color:#EEF1F8;} + .d2-2303818856 .color-N7{color:#FFFFFF;} + .d2-2303818856 .color-B1{color:#0D32B2;} + .d2-2303818856 .color-B2{color:#0D32B2;} + .d2-2303818856 .color-B3{color:#E3E9FD;} + .d2-2303818856 .color-B4{color:#E3E9FD;} + .d2-2303818856 .color-B5{color:#EDF0FD;} + .d2-2303818856 .color-B6{color:#F7F8FE;} + .d2-2303818856 .color-AA2{color:#4A6FF3;} + .d2-2303818856 .color-AA4{color:#EDF0FD;} + .d2-2303818856 .color-AA5{color:#F7F8FE;} + .d2-2303818856 .color-AB4{color:#EDF0FD;} + .d2-2303818856 .color-AB5{color:#F7F8FE;}.appendix text.text{fill:#0A0F25}.md{--color-fg-default:#0A0F25;--color-fg-muted:#676C7E;--color-fg-subtle:#9499AB;--color-canvas-default:#FFFFFF;--color-canvas-subtle:#EEF1F8;--color-border-default:#0D32B2;--color-border-muted:#0D32B2;--color-neutral-muted:#EEF1F8;--color-accent-fg:#0D32B2;--color-accent-emphasis:#0D32B2;--color-attention-subtle:#676C7E;--color-danger-fg:red;}.sketch-overlay-B1{fill:url(#streaks-darker);mix-blend-mode:lighten}.sketch-overlay-B2{fill:url(#streaks-darker);mix-blend-mode:lighten}.sketch-overlay-B3{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-B4{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-B5{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-B6{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-AA2{fill:url(#streaks-dark);mix-blend-mode:overlay}.sketch-overlay-AA4{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-AA5{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-AB4{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-AB5{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-N1{fill:url(#streaks-darker);mix-blend-mode:lighten}.sketch-overlay-N2{fill:url(#streaks-dark);mix-blend-mode:overlay}.sketch-overlay-N3{fill:url(#streaks-normal);mix-blend-mode:color-burn}.sketch-overlay-N4{fill:url(#streaks-normal);mix-blend-mode:color-burn}.sketch-overlay-N5{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-N6{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-N7{fill:url(#streaks-bright);mix-blend-mode:darken}.light-code{display: block}.dark-code{display: none}]]>🙈🙈🙈🙈🙈🙈🙈🙈✊✊✊✊✊✊✊✊✊✊✊✊✊✊✊✊✊✊✊✊✊✊✊✊✊✊✊✊✊✊✊✊✊✊✊✊✊✊✊☁️☁️☁️☁️☁️☁️☁️☁️☁️☁️☁️☁️☁️☁️☁️☁️☁️☁️☁️☁️☁️☁️☁️☁️☁️☁️☁️☁️☁️☁️☁️☁️☁️☁️☁️☁️☁️☁️☁️ \ No newline at end of file diff --git a/e2etests/testdata/unicode/japanese-full/dagre/board.exp.json b/e2etests/testdata/unicode/japanese-full/dagre/board.exp.json index 3440d8c2a3..9dd9e6af9e 100644 --- a/e2etests/testdata/unicode/japanese-full/dagre/board.exp.json +++ b/e2etests/testdata/unicode/japanese-full/dagre/board.exp.json @@ -91,10 +91,8 @@ "id": "(a -> b)[0]", "src": "a", "srcArrow": "none", - "srcLabel": "", "dst": "b", "dstArrow": "triangle", - "dstLabel": "", "opacity": 1, "strokeDash": 0, "strokeWidth": 2, diff --git a/e2etests/testdata/unicode/japanese-full/dagre/sketch.exp.svg b/e2etests/testdata/unicode/japanese-full/dagre/sketch.exp.svg index 20e22ca385..1a1ddf0dc8 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-3864867202 .fill-N1{fill:#0A0F25;} + .d2-3864867202 .fill-N2{fill:#676C7E;} + .d2-3864867202 .fill-N3{fill:#9499AB;} + .d2-3864867202 .fill-N4{fill:#CFD2DD;} + .d2-3864867202 .fill-N5{fill:#DEE1EB;} + .d2-3864867202 .fill-N6{fill:#EEF1F8;} + .d2-3864867202 .fill-N7{fill:#FFFFFF;} + .d2-3864867202 .fill-B1{fill:#0D32B2;} + .d2-3864867202 .fill-B2{fill:#0D32B2;} + .d2-3864867202 .fill-B3{fill:#E3E9FD;} + .d2-3864867202 .fill-B4{fill:#E3E9FD;} + .d2-3864867202 .fill-B5{fill:#EDF0FD;} + .d2-3864867202 .fill-B6{fill:#F7F8FE;} + .d2-3864867202 .fill-AA2{fill:#4A6FF3;} + .d2-3864867202 .fill-AA4{fill:#EDF0FD;} + .d2-3864867202 .fill-AA5{fill:#F7F8FE;} + .d2-3864867202 .fill-AB4{fill:#EDF0FD;} + .d2-3864867202 .fill-AB5{fill:#F7F8FE;} + .d2-3864867202 .stroke-N1{stroke:#0A0F25;} + .d2-3864867202 .stroke-N2{stroke:#676C7E;} + .d2-3864867202 .stroke-N3{stroke:#9499AB;} + .d2-3864867202 .stroke-N4{stroke:#CFD2DD;} + .d2-3864867202 .stroke-N5{stroke:#DEE1EB;} + .d2-3864867202 .stroke-N6{stroke:#EEF1F8;} + .d2-3864867202 .stroke-N7{stroke:#FFFFFF;} + .d2-3864867202 .stroke-B1{stroke:#0D32B2;} + .d2-3864867202 .stroke-B2{stroke:#0D32B2;} + .d2-3864867202 .stroke-B3{stroke:#E3E9FD;} + .d2-3864867202 .stroke-B4{stroke:#E3E9FD;} + .d2-3864867202 .stroke-B5{stroke:#EDF0FD;} + .d2-3864867202 .stroke-B6{stroke:#F7F8FE;} + .d2-3864867202 .stroke-AA2{stroke:#4A6FF3;} + .d2-3864867202 .stroke-AA4{stroke:#EDF0FD;} + .d2-3864867202 .stroke-AA5{stroke:#F7F8FE;} + .d2-3864867202 .stroke-AB4{stroke:#EDF0FD;} + .d2-3864867202 .stroke-AB5{stroke:#F7F8FE;} + .d2-3864867202 .background-color-N1{background-color:#0A0F25;} + .d2-3864867202 .background-color-N2{background-color:#676C7E;} + .d2-3864867202 .background-color-N3{background-color:#9499AB;} + .d2-3864867202 .background-color-N4{background-color:#CFD2DD;} + .d2-3864867202 .background-color-N5{background-color:#DEE1EB;} + .d2-3864867202 .background-color-N6{background-color:#EEF1F8;} + .d2-3864867202 .background-color-N7{background-color:#FFFFFF;} + .d2-3864867202 .background-color-B1{background-color:#0D32B2;} + .d2-3864867202 .background-color-B2{background-color:#0D32B2;} + .d2-3864867202 .background-color-B3{background-color:#E3E9FD;} + .d2-3864867202 .background-color-B4{background-color:#E3E9FD;} + .d2-3864867202 .background-color-B5{background-color:#EDF0FD;} + .d2-3864867202 .background-color-B6{background-color:#F7F8FE;} + .d2-3864867202 .background-color-AA2{background-color:#4A6FF3;} + .d2-3864867202 .background-color-AA4{background-color:#EDF0FD;} + .d2-3864867202 .background-color-AA5{background-color:#F7F8FE;} + .d2-3864867202 .background-color-AB4{background-color:#EDF0FD;} + .d2-3864867202 .background-color-AB5{background-color:#F7F8FE;} + .d2-3864867202 .color-N1{color:#0A0F25;} + .d2-3864867202 .color-N2{color:#676C7E;} + .d2-3864867202 .color-N3{color:#9499AB;} + .d2-3864867202 .color-N4{color:#CFD2DD;} + .d2-3864867202 .color-N5{color:#DEE1EB;} + .d2-3864867202 .color-N6{color:#EEF1F8;} + .d2-3864867202 .color-N7{color:#FFFFFF;} + .d2-3864867202 .color-B1{color:#0D32B2;} + .d2-3864867202 .color-B2{color:#0D32B2;} + .d2-3864867202 .color-B3{color:#E3E9FD;} + .d2-3864867202 .color-B4{color:#E3E9FD;} + .d2-3864867202 .color-B5{color:#EDF0FD;} + .d2-3864867202 .color-B6{color:#F7F8FE;} + .d2-3864867202 .color-AA2{color:#4A6FF3;} + .d2-3864867202 .color-AA4{color:#EDF0FD;} + .d2-3864867202 .color-AA5{color:#F7F8FE;} + .d2-3864867202 .color-AB4{color:#EDF0FD;} + .d2-3864867202 .color-AB5{color:#F7F8FE;}.appendix text.text{fill:#0A0F25}.md{--color-fg-default:#0A0F25;--color-fg-muted:#676C7E;--color-fg-subtle:#9499AB;--color-canvas-default:#FFFFFF;--color-canvas-subtle:#EEF1F8;--color-border-default:#0D32B2;--color-border-muted:#0D32B2;--color-neutral-muted:#EEF1F8;--color-accent-fg:#0D32B2;--color-accent-emphasis:#0D32B2;--color-attention-subtle:#676C7E;--color-danger-fg:red;}.sketch-overlay-B1{fill:url(#streaks-darker);mix-blend-mode:lighten}.sketch-overlay-B2{fill:url(#streaks-darker);mix-blend-mode:lighten}.sketch-overlay-B3{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-B4{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-B5{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-B6{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-AA2{fill:url(#streaks-dark);mix-blend-mode:overlay}.sketch-overlay-AA4{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-AA5{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-AB4{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-AB5{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-N1{fill:url(#streaks-darker);mix-blend-mode:lighten}.sketch-overlay-N2{fill:url(#streaks-dark);mix-blend-mode:overlay}.sketch-overlay-N3{fill:url(#streaks-normal);mix-blend-mode:color-burn}.sketch-overlay-N4{fill:url(#streaks-normal);mix-blend-mode:color-burn}.sketch-overlay-N5{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-N6{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-N7{fill:url(#streaks-bright);mix-blend-mode:darken}.light-code{display: block}.dark-code{display: none}]]>ある日、トマトが道を歩いていたら、道路の向こうからキュウリがやって来ました。トマトは驚いて尋ねました。「キュウリさん、どうしてあなたはここにいるのですか?」 キュウリは答えました。「あなたと同じ理由でここにいます。サラダになるために。」「バナナは皮を剥いて食べるものです。」 「バカは死ななきゃ治らない。」 \ No newline at end of file diff --git a/e2etests/testdata/unicode/japanese-full/elk/board.exp.json b/e2etests/testdata/unicode/japanese-full/elk/board.exp.json index 9d29c7556f..73f51d3c62 100644 --- a/e2etests/testdata/unicode/japanese-full/elk/board.exp.json +++ b/e2etests/testdata/unicode/japanese-full/elk/board.exp.json @@ -91,10 +91,8 @@ "id": "(a -> b)[0]", "src": "a", "srcArrow": "none", - "srcLabel": "", "dst": "b", "dstArrow": "triangle", - "dstLabel": "", "opacity": 1, "strokeDash": 0, "strokeWidth": 2, diff --git a/e2etests/testdata/unicode/japanese-full/elk/sketch.exp.svg b/e2etests/testdata/unicode/japanese-full/elk/sketch.exp.svg index 39bc7a2e68..1b0aa5196f 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-1309353933 .fill-N1{fill:#0A0F25;} + .d2-1309353933 .fill-N2{fill:#676C7E;} + .d2-1309353933 .fill-N3{fill:#9499AB;} + .d2-1309353933 .fill-N4{fill:#CFD2DD;} + .d2-1309353933 .fill-N5{fill:#DEE1EB;} + .d2-1309353933 .fill-N6{fill:#EEF1F8;} + .d2-1309353933 .fill-N7{fill:#FFFFFF;} + .d2-1309353933 .fill-B1{fill:#0D32B2;} + .d2-1309353933 .fill-B2{fill:#0D32B2;} + .d2-1309353933 .fill-B3{fill:#E3E9FD;} + .d2-1309353933 .fill-B4{fill:#E3E9FD;} + .d2-1309353933 .fill-B5{fill:#EDF0FD;} + .d2-1309353933 .fill-B6{fill:#F7F8FE;} + .d2-1309353933 .fill-AA2{fill:#4A6FF3;} + .d2-1309353933 .fill-AA4{fill:#EDF0FD;} + .d2-1309353933 .fill-AA5{fill:#F7F8FE;} + .d2-1309353933 .fill-AB4{fill:#EDF0FD;} + .d2-1309353933 .fill-AB5{fill:#F7F8FE;} + .d2-1309353933 .stroke-N1{stroke:#0A0F25;} + .d2-1309353933 .stroke-N2{stroke:#676C7E;} + .d2-1309353933 .stroke-N3{stroke:#9499AB;} + .d2-1309353933 .stroke-N4{stroke:#CFD2DD;} + .d2-1309353933 .stroke-N5{stroke:#DEE1EB;} + .d2-1309353933 .stroke-N6{stroke:#EEF1F8;} + .d2-1309353933 .stroke-N7{stroke:#FFFFFF;} + .d2-1309353933 .stroke-B1{stroke:#0D32B2;} + .d2-1309353933 .stroke-B2{stroke:#0D32B2;} + .d2-1309353933 .stroke-B3{stroke:#E3E9FD;} + .d2-1309353933 .stroke-B4{stroke:#E3E9FD;} + .d2-1309353933 .stroke-B5{stroke:#EDF0FD;} + .d2-1309353933 .stroke-B6{stroke:#F7F8FE;} + .d2-1309353933 .stroke-AA2{stroke:#4A6FF3;} + .d2-1309353933 .stroke-AA4{stroke:#EDF0FD;} + .d2-1309353933 .stroke-AA5{stroke:#F7F8FE;} + .d2-1309353933 .stroke-AB4{stroke:#EDF0FD;} + .d2-1309353933 .stroke-AB5{stroke:#F7F8FE;} + .d2-1309353933 .background-color-N1{background-color:#0A0F25;} + .d2-1309353933 .background-color-N2{background-color:#676C7E;} + .d2-1309353933 .background-color-N3{background-color:#9499AB;} + .d2-1309353933 .background-color-N4{background-color:#CFD2DD;} + .d2-1309353933 .background-color-N5{background-color:#DEE1EB;} + .d2-1309353933 .background-color-N6{background-color:#EEF1F8;} + .d2-1309353933 .background-color-N7{background-color:#FFFFFF;} + .d2-1309353933 .background-color-B1{background-color:#0D32B2;} + .d2-1309353933 .background-color-B2{background-color:#0D32B2;} + .d2-1309353933 .background-color-B3{background-color:#E3E9FD;} + .d2-1309353933 .background-color-B4{background-color:#E3E9FD;} + .d2-1309353933 .background-color-B5{background-color:#EDF0FD;} + .d2-1309353933 .background-color-B6{background-color:#F7F8FE;} + .d2-1309353933 .background-color-AA2{background-color:#4A6FF3;} + .d2-1309353933 .background-color-AA4{background-color:#EDF0FD;} + .d2-1309353933 .background-color-AA5{background-color:#F7F8FE;} + .d2-1309353933 .background-color-AB4{background-color:#EDF0FD;} + .d2-1309353933 .background-color-AB5{background-color:#F7F8FE;} + .d2-1309353933 .color-N1{color:#0A0F25;} + .d2-1309353933 .color-N2{color:#676C7E;} + .d2-1309353933 .color-N3{color:#9499AB;} + .d2-1309353933 .color-N4{color:#CFD2DD;} + .d2-1309353933 .color-N5{color:#DEE1EB;} + .d2-1309353933 .color-N6{color:#EEF1F8;} + .d2-1309353933 .color-N7{color:#FFFFFF;} + .d2-1309353933 .color-B1{color:#0D32B2;} + .d2-1309353933 .color-B2{color:#0D32B2;} + .d2-1309353933 .color-B3{color:#E3E9FD;} + .d2-1309353933 .color-B4{color:#E3E9FD;} + .d2-1309353933 .color-B5{color:#EDF0FD;} + .d2-1309353933 .color-B6{color:#F7F8FE;} + .d2-1309353933 .color-AA2{color:#4A6FF3;} + .d2-1309353933 .color-AA4{color:#EDF0FD;} + .d2-1309353933 .color-AA5{color:#F7F8FE;} + .d2-1309353933 .color-AB4{color:#EDF0FD;} + .d2-1309353933 .color-AB5{color:#F7F8FE;}.appendix text.text{fill:#0A0F25}.md{--color-fg-default:#0A0F25;--color-fg-muted:#676C7E;--color-fg-subtle:#9499AB;--color-canvas-default:#FFFFFF;--color-canvas-subtle:#EEF1F8;--color-border-default:#0D32B2;--color-border-muted:#0D32B2;--color-neutral-muted:#EEF1F8;--color-accent-fg:#0D32B2;--color-accent-emphasis:#0D32B2;--color-attention-subtle:#676C7E;--color-danger-fg:red;}.sketch-overlay-B1{fill:url(#streaks-darker);mix-blend-mode:lighten}.sketch-overlay-B2{fill:url(#streaks-darker);mix-blend-mode:lighten}.sketch-overlay-B3{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-B4{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-B5{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-B6{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-AA2{fill:url(#streaks-dark);mix-blend-mode:overlay}.sketch-overlay-AA4{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-AA5{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-AB4{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-AB5{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-N1{fill:url(#streaks-darker);mix-blend-mode:lighten}.sketch-overlay-N2{fill:url(#streaks-dark);mix-blend-mode:overlay}.sketch-overlay-N3{fill:url(#streaks-normal);mix-blend-mode:color-burn}.sketch-overlay-N4{fill:url(#streaks-normal);mix-blend-mode:color-burn}.sketch-overlay-N5{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-N6{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-N7{fill:url(#streaks-bright);mix-blend-mode:darken}.light-code{display: block}.dark-code{display: none}]]>ある日、トマトが道を歩いていたら、道路の向こうからキュウリがやって来ました。トマトは驚いて尋ねました。「キュウリさん、どうしてあなたはここにいるのですか?」 キュウリは答えました。「あなたと同じ理由でここにいます。サラダになるために。」「バナナは皮を剥いて食べるものです。」 「バカは死ななきゃ治らない。」 \ No newline at end of file diff --git a/e2etests/testdata/unicode/japanese-mixed/dagre/board.exp.json b/e2etests/testdata/unicode/japanese-mixed/dagre/board.exp.json index dd61726e61..03c5f64b61 100644 --- a/e2etests/testdata/unicode/japanese-mixed/dagre/board.exp.json +++ b/e2etests/testdata/unicode/japanese-mixed/dagre/board.exp.json @@ -255,10 +255,8 @@ "id": "(a -> b)[0]", "src": "a", "srcArrow": "none", - "srcLabel": "", "dst": "b", "dstArrow": "triangle", - "dstLabel": "", "opacity": 1, "strokeDash": 0, "strokeWidth": 2, @@ -304,10 +302,8 @@ "id": "(b -> c)[0]", "src": "b", "srcArrow": "none", - "srcLabel": "", "dst": "c", "dstArrow": "triangle", - "dstLabel": "", "opacity": 1, "strokeDash": 0, "strokeWidth": 2, @@ -353,10 +349,8 @@ "id": "(c -> d)[0]", "src": "c", "srcArrow": "none", - "srcLabel": "", "dst": "d", "dstArrow": "triangle", - "dstLabel": "", "opacity": 1, "strokeDash": 0, "strokeWidth": 2, @@ -402,10 +396,8 @@ "id": "(d -> e)[0]", "src": "d", "srcArrow": "none", - "srcLabel": "", "dst": "e", "dstArrow": "triangle", - "dstLabel": "", "opacity": 1, "strokeDash": 0, "strokeWidth": 2, @@ -451,10 +443,8 @@ "id": "(e -> f)[0]", "src": "e", "srcArrow": "none", - "srcLabel": "", "dst": "f", "dstArrow": "triangle", - "dstLabel": "", "opacity": 1, "strokeDash": 0, "strokeWidth": 2, diff --git a/e2etests/testdata/unicode/japanese-mixed/dagre/sketch.exp.svg b/e2etests/testdata/unicode/japanese-mixed/dagre/sketch.exp.svg index 9cb157b2a9..fa9d39c283 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-32611704 .fill-N1{fill:#0A0F25;} + .d2-32611704 .fill-N2{fill:#676C7E;} + .d2-32611704 .fill-N3{fill:#9499AB;} + .d2-32611704 .fill-N4{fill:#CFD2DD;} + .d2-32611704 .fill-N5{fill:#DEE1EB;} + .d2-32611704 .fill-N6{fill:#EEF1F8;} + .d2-32611704 .fill-N7{fill:#FFFFFF;} + .d2-32611704 .fill-B1{fill:#0D32B2;} + .d2-32611704 .fill-B2{fill:#0D32B2;} + .d2-32611704 .fill-B3{fill:#E3E9FD;} + .d2-32611704 .fill-B4{fill:#E3E9FD;} + .d2-32611704 .fill-B5{fill:#EDF0FD;} + .d2-32611704 .fill-B6{fill:#F7F8FE;} + .d2-32611704 .fill-AA2{fill:#4A6FF3;} + .d2-32611704 .fill-AA4{fill:#EDF0FD;} + .d2-32611704 .fill-AA5{fill:#F7F8FE;} + .d2-32611704 .fill-AB4{fill:#EDF0FD;} + .d2-32611704 .fill-AB5{fill:#F7F8FE;} + .d2-32611704 .stroke-N1{stroke:#0A0F25;} + .d2-32611704 .stroke-N2{stroke:#676C7E;} + .d2-32611704 .stroke-N3{stroke:#9499AB;} + .d2-32611704 .stroke-N4{stroke:#CFD2DD;} + .d2-32611704 .stroke-N5{stroke:#DEE1EB;} + .d2-32611704 .stroke-N6{stroke:#EEF1F8;} + .d2-32611704 .stroke-N7{stroke:#FFFFFF;} + .d2-32611704 .stroke-B1{stroke:#0D32B2;} + .d2-32611704 .stroke-B2{stroke:#0D32B2;} + .d2-32611704 .stroke-B3{stroke:#E3E9FD;} + .d2-32611704 .stroke-B4{stroke:#E3E9FD;} + .d2-32611704 .stroke-B5{stroke:#EDF0FD;} + .d2-32611704 .stroke-B6{stroke:#F7F8FE;} + .d2-32611704 .stroke-AA2{stroke:#4A6FF3;} + .d2-32611704 .stroke-AA4{stroke:#EDF0FD;} + .d2-32611704 .stroke-AA5{stroke:#F7F8FE;} + .d2-32611704 .stroke-AB4{stroke:#EDF0FD;} + .d2-32611704 .stroke-AB5{stroke:#F7F8FE;} + .d2-32611704 .background-color-N1{background-color:#0A0F25;} + .d2-32611704 .background-color-N2{background-color:#676C7E;} + .d2-32611704 .background-color-N3{background-color:#9499AB;} + .d2-32611704 .background-color-N4{background-color:#CFD2DD;} + .d2-32611704 .background-color-N5{background-color:#DEE1EB;} + .d2-32611704 .background-color-N6{background-color:#EEF1F8;} + .d2-32611704 .background-color-N7{background-color:#FFFFFF;} + .d2-32611704 .background-color-B1{background-color:#0D32B2;} + .d2-32611704 .background-color-B2{background-color:#0D32B2;} + .d2-32611704 .background-color-B3{background-color:#E3E9FD;} + .d2-32611704 .background-color-B4{background-color:#E3E9FD;} + .d2-32611704 .background-color-B5{background-color:#EDF0FD;} + .d2-32611704 .background-color-B6{background-color:#F7F8FE;} + .d2-32611704 .background-color-AA2{background-color:#4A6FF3;} + .d2-32611704 .background-color-AA4{background-color:#EDF0FD;} + .d2-32611704 .background-color-AA5{background-color:#F7F8FE;} + .d2-32611704 .background-color-AB4{background-color:#EDF0FD;} + .d2-32611704 .background-color-AB5{background-color:#F7F8FE;} + .d2-32611704 .color-N1{color:#0A0F25;} + .d2-32611704 .color-N2{color:#676C7E;} + .d2-32611704 .color-N3{color:#9499AB;} + .d2-32611704 .color-N4{color:#CFD2DD;} + .d2-32611704 .color-N5{color:#DEE1EB;} + .d2-32611704 .color-N6{color:#EEF1F8;} + .d2-32611704 .color-N7{color:#FFFFFF;} + .d2-32611704 .color-B1{color:#0D32B2;} + .d2-32611704 .color-B2{color:#0D32B2;} + .d2-32611704 .color-B3{color:#E3E9FD;} + .d2-32611704 .color-B4{color:#E3E9FD;} + .d2-32611704 .color-B5{color:#EDF0FD;} + .d2-32611704 .color-B6{color:#F7F8FE;} + .d2-32611704 .color-AA2{color:#4A6FF3;} + .d2-32611704 .color-AA4{color:#EDF0FD;} + .d2-32611704 .color-AA5{color:#F7F8FE;} + .d2-32611704 .color-AB4{color:#EDF0FD;} + .d2-32611704 .color-AB5{color:#F7F8FE;}.appendix text.text{fill:#0A0F25}.md{--color-fg-default:#0A0F25;--color-fg-muted:#676C7E;--color-fg-subtle:#9499AB;--color-canvas-default:#FFFFFF;--color-canvas-subtle:#EEF1F8;--color-border-default:#0D32B2;--color-border-muted:#0D32B2;--color-neutral-muted:#EEF1F8;--color-accent-fg:#0D32B2;--color-accent-emphasis:#0D32B2;--color-attention-subtle:#676C7E;--color-danger-fg:red;}.sketch-overlay-B1{fill:url(#streaks-darker);mix-blend-mode:lighten}.sketch-overlay-B2{fill:url(#streaks-darker);mix-blend-mode:lighten}.sketch-overlay-B3{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-B4{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-B5{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-B6{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-AA2{fill:url(#streaks-dark);mix-blend-mode:overlay}.sketch-overlay-AA4{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-AA5{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-AB4{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-AB5{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-N1{fill:url(#streaks-darker);mix-blend-mode:lighten}.sketch-overlay-N2{fill:url(#streaks-dark);mix-blend-mode:overlay}.sketch-overlay-N3{fill:url(#streaks-normal);mix-blend-mode:color-burn}.sketch-overlay-N4{fill:url(#streaks-normal);mix-blend-mode:color-burn}.sketch-overlay-N5{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-N6{fill:url(#streaks-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先日先日先日 \ No newline at end of file diff --git a/e2etests/testdata/unicode/japanese-mixed/elk/board.exp.json b/e2etests/testdata/unicode/japanese-mixed/elk/board.exp.json index 6bbde7cc4e..b402f364e1 100644 --- a/e2etests/testdata/unicode/japanese-mixed/elk/board.exp.json +++ b/e2etests/testdata/unicode/japanese-mixed/elk/board.exp.json @@ -255,10 +255,8 @@ "id": "(a -> b)[0]", "src": "a", "srcArrow": "none", - "srcLabel": "", "dst": "b", "dstArrow": "triangle", - "dstLabel": "", "opacity": 1, "strokeDash": 0, "strokeWidth": 2, @@ -295,10 +293,8 @@ "id": "(b -> c)[0]", "src": "b", "srcArrow": "none", - "srcLabel": "", "dst": "c", "dstArrow": "triangle", - "dstLabel": "", "opacity": 1, "strokeDash": 0, "strokeWidth": 2, @@ -335,10 +331,8 @@ "id": "(c -> d)[0]", "src": "c", "srcArrow": "none", - "srcLabel": "", "dst": "d", "dstArrow": "triangle", - "dstLabel": "", "opacity": 1, "strokeDash": 0, "strokeWidth": 2, @@ -375,10 +369,8 @@ "id": "(d -> e)[0]", "src": "d", "srcArrow": "none", - "srcLabel": "", "dst": "e", "dstArrow": "triangle", - "dstLabel": "", "opacity": 1, "strokeDash": 0, "strokeWidth": 2, @@ -415,10 +407,8 @@ "id": "(e -> f)[0]", "src": "e", "srcArrow": "none", - "srcLabel": "", "dst": "f", "dstArrow": "triangle", - "dstLabel": "", "opacity": 1, "strokeDash": 0, "strokeWidth": 2, diff --git a/e2etests/testdata/unicode/japanese-mixed/elk/sketch.exp.svg b/e2etests/testdata/unicode/japanese-mixed/elk/sketch.exp.svg index 4e78d1eedb..cc01584873 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-4107475192 .fill-N1{fill:#0A0F25;} + .d2-4107475192 .fill-N2{fill:#676C7E;} + .d2-4107475192 .fill-N3{fill:#9499AB;} + .d2-4107475192 .fill-N4{fill:#CFD2DD;} + .d2-4107475192 .fill-N5{fill:#DEE1EB;} + .d2-4107475192 .fill-N6{fill:#EEF1F8;} + .d2-4107475192 .fill-N7{fill:#FFFFFF;} + .d2-4107475192 .fill-B1{fill:#0D32B2;} + .d2-4107475192 .fill-B2{fill:#0D32B2;} + .d2-4107475192 .fill-B3{fill:#E3E9FD;} + .d2-4107475192 .fill-B4{fill:#E3E9FD;} + .d2-4107475192 .fill-B5{fill:#EDF0FD;} + .d2-4107475192 .fill-B6{fill:#F7F8FE;} + .d2-4107475192 .fill-AA2{fill:#4A6FF3;} + .d2-4107475192 .fill-AA4{fill:#EDF0FD;} + .d2-4107475192 .fill-AA5{fill:#F7F8FE;} + .d2-4107475192 .fill-AB4{fill:#EDF0FD;} + .d2-4107475192 .fill-AB5{fill:#F7F8FE;} + .d2-4107475192 .stroke-N1{stroke:#0A0F25;} + .d2-4107475192 .stroke-N2{stroke:#676C7E;} + .d2-4107475192 .stroke-N3{stroke:#9499AB;} + .d2-4107475192 .stroke-N4{stroke:#CFD2DD;} + .d2-4107475192 .stroke-N5{stroke:#DEE1EB;} + .d2-4107475192 .stroke-N6{stroke:#EEF1F8;} + .d2-4107475192 .stroke-N7{stroke:#FFFFFF;} + .d2-4107475192 .stroke-B1{stroke:#0D32B2;} + .d2-4107475192 .stroke-B2{stroke:#0D32B2;} + .d2-4107475192 .stroke-B3{stroke:#E3E9FD;} + .d2-4107475192 .stroke-B4{stroke:#E3E9FD;} + .d2-4107475192 .stroke-B5{stroke:#EDF0FD;} + .d2-4107475192 .stroke-B6{stroke:#F7F8FE;} + .d2-4107475192 .stroke-AA2{stroke:#4A6FF3;} + .d2-4107475192 .stroke-AA4{stroke:#EDF0FD;} + .d2-4107475192 .stroke-AA5{stroke:#F7F8FE;} + .d2-4107475192 .stroke-AB4{stroke:#EDF0FD;} + .d2-4107475192 .stroke-AB5{stroke:#F7F8FE;} + .d2-4107475192 .background-color-N1{background-color:#0A0F25;} + .d2-4107475192 .background-color-N2{background-color:#676C7E;} + .d2-4107475192 .background-color-N3{background-color:#9499AB;} + .d2-4107475192 .background-color-N4{background-color:#CFD2DD;} + .d2-4107475192 .background-color-N5{background-color:#DEE1EB;} + .d2-4107475192 .background-color-N6{background-color:#EEF1F8;} + .d2-4107475192 .background-color-N7{background-color:#FFFFFF;} + .d2-4107475192 .background-color-B1{background-color:#0D32B2;} + .d2-4107475192 .background-color-B2{background-color:#0D32B2;} + .d2-4107475192 .background-color-B3{background-color:#E3E9FD;} + .d2-4107475192 .background-color-B4{background-color:#E3E9FD;} + .d2-4107475192 .background-color-B5{background-color:#EDF0FD;} + .d2-4107475192 .background-color-B6{background-color:#F7F8FE;} + .d2-4107475192 .background-color-AA2{background-color:#4A6FF3;} + .d2-4107475192 .background-color-AA4{background-color:#EDF0FD;} + .d2-4107475192 .background-color-AA5{background-color:#F7F8FE;} + .d2-4107475192 .background-color-AB4{background-color:#EDF0FD;} + .d2-4107475192 .background-color-AB5{background-color:#F7F8FE;} + .d2-4107475192 .color-N1{color:#0A0F25;} + .d2-4107475192 .color-N2{color:#676C7E;} + .d2-4107475192 .color-N3{color:#9499AB;} + .d2-4107475192 .color-N4{color:#CFD2DD;} + .d2-4107475192 .color-N5{color:#DEE1EB;} + .d2-4107475192 .color-N6{color:#EEF1F8;} + .d2-4107475192 .color-N7{color:#FFFFFF;} + .d2-4107475192 .color-B1{color:#0D32B2;} + .d2-4107475192 .color-B2{color:#0D32B2;} + .d2-4107475192 .color-B3{color:#E3E9FD;} + .d2-4107475192 .color-B4{color:#E3E9FD;} + .d2-4107475192 .color-B5{color:#EDF0FD;} + .d2-4107475192 .color-B6{color:#F7F8FE;} + .d2-4107475192 .color-AA2{color:#4A6FF3;} + .d2-4107475192 .color-AA4{color:#EDF0FD;} + .d2-4107475192 .color-AA5{color:#F7F8FE;} + .d2-4107475192 .color-AB4{color:#EDF0FD;} + .d2-4107475192 .color-AB5{color:#F7F8FE;}.appendix text.text{fill:#0A0F25}.md{--color-fg-default:#0A0F25;--color-fg-muted:#676C7E;--color-fg-subtle:#9499AB;--color-canvas-default:#FFFFFF;--color-canvas-subtle:#EEF1F8;--color-border-default:#0D32B2;--color-border-muted:#0D32B2;--color-neutral-muted:#EEF1F8;--color-accent-fg:#0D32B2;--color-accent-emphasis:#0D32B2;--color-attention-subtle:#676C7E;--color-danger-fg:red;}.sketch-overlay-B1{fill:url(#streaks-darker);mix-blend-mode:lighten}.sketch-overlay-B2{fill:url(#streaks-darker);mix-blend-mode:lighten}.sketch-overlay-B3{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-B4{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-B5{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-B6{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-AA2{fill:url(#streaks-dark);mix-blend-mode:overlay}.sketch-overlay-AA4{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-AA5{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-AB4{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-AB5{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-N1{fill:url(#streaks-darker);mix-blend-mode:lighten}.sketch-overlay-N2{fill:url(#streaks-dark);mix-blend-mode:overlay}.sketch-overlay-N3{fill:url(#streaks-normal);mix-blend-mode:color-burn}.sketch-overlay-N4{fill:url(#streaks-normal);mix-blend-mode:color-burn}.sketch-overlay-N5{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-N6{fill:url(#streaks-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先日先日先日 \ No newline at end of file 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 74720d1ad4..b1b7f04a82 100644 --- a/e2etests/testdata/unicode/mixed-language-2/dagre/board.exp.json +++ b/e2etests/testdata/unicode/mixed-language-2/dagre/board.exp.json @@ -911,10 +911,8 @@ "id": "(a -> b)[0]", "src": "a", "srcArrow": "none", - "srcLabel": "", "dst": "b", "dstArrow": "triangle", - "dstLabel": "", "opacity": 1, "strokeDash": 0, "strokeWidth": 2, @@ -960,10 +958,8 @@ "id": "(b -> c)[0]", "src": "b", "srcArrow": "none", - "srcLabel": "", "dst": "c", "dstArrow": "triangle", - "dstLabel": "", "opacity": 1, "strokeDash": 0, "strokeWidth": 2, @@ -1009,10 +1005,8 @@ "id": "(c -> d)[0]", "src": "c", "srcArrow": "none", - "srcLabel": "", "dst": "d", "dstArrow": "triangle", - "dstLabel": "", "opacity": 1, "strokeDash": 0, "strokeWidth": 2, @@ -1058,10 +1052,8 @@ "id": "(e -> f)[0]", "src": "e", "srcArrow": "none", - "srcLabel": "", "dst": "f", "dstArrow": "triangle", - "dstLabel": "", "opacity": 1, "strokeDash": 0, "strokeWidth": 2, @@ -1107,10 +1099,8 @@ "id": "(f -> g)[0]", "src": "f", "srcArrow": "none", - "srcLabel": "", "dst": "g", "dstArrow": "triangle", - "dstLabel": "", "opacity": 1, "strokeDash": 0, "strokeWidth": 2, @@ -1156,10 +1146,8 @@ "id": "(g -> h)[0]", "src": "g", "srcArrow": "none", - "srcLabel": "", "dst": "h", "dstArrow": "triangle", - "dstLabel": "", "opacity": 1, "strokeDash": 0, "strokeWidth": 2, @@ -1205,10 +1193,8 @@ "id": "(i -> j)[0]", "src": "i", "srcArrow": "none", - "srcLabel": "", "dst": "j", "dstArrow": "triangle", - "dstLabel": "", "opacity": 1, "strokeDash": 0, "strokeWidth": 2, @@ -1254,10 +1240,8 @@ "id": "(j -> k)[0]", "src": "j", "srcArrow": "none", - "srcLabel": "", "dst": "k", "dstArrow": "triangle", - "dstLabel": "", "opacity": 1, "strokeDash": 0, "strokeWidth": 2, @@ -1303,10 +1287,8 @@ "id": "(k -> l)[0]", "src": "k", "srcArrow": "none", - "srcLabel": "", "dst": "l", "dstArrow": "triangle", - "dstLabel": "", "opacity": 1, "strokeDash": 0, "strokeWidth": 2, @@ -1352,10 +1334,8 @@ "id": "(m -> n)[0]", "src": "m", "srcArrow": "none", - "srcLabel": "", "dst": "n", "dstArrow": "triangle", - "dstLabel": "", "opacity": 1, "strokeDash": 0, "strokeWidth": 2, @@ -1401,10 +1381,8 @@ "id": "(n -> o)[0]", "src": "n", "srcArrow": "none", - "srcLabel": "", "dst": "o", "dstArrow": "triangle", - "dstLabel": "", "opacity": 1, "strokeDash": 0, "strokeWidth": 2, @@ -1450,10 +1428,8 @@ "id": "(o -> p)[0]", "src": "o", "srcArrow": "none", - "srcLabel": "", "dst": "p", "dstArrow": "triangle", - "dstLabel": "", "opacity": 1, "strokeDash": 0, "strokeWidth": 2, 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 f372f15351..61641ae0c7 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-4271120609 .fill-N1{fill:#0A0F25;} + .d2-4271120609 .fill-N2{fill:#676C7E;} + .d2-4271120609 .fill-N3{fill:#9499AB;} + .d2-4271120609 .fill-N4{fill:#CFD2DD;} + .d2-4271120609 .fill-N5{fill:#DEE1EB;} + .d2-4271120609 .fill-N6{fill:#EEF1F8;} + .d2-4271120609 .fill-N7{fill:#FFFFFF;} + .d2-4271120609 .fill-B1{fill:#0D32B2;} + .d2-4271120609 .fill-B2{fill:#0D32B2;} + .d2-4271120609 .fill-B3{fill:#E3E9FD;} + .d2-4271120609 .fill-B4{fill:#E3E9FD;} + .d2-4271120609 .fill-B5{fill:#EDF0FD;} + .d2-4271120609 .fill-B6{fill:#F7F8FE;} + .d2-4271120609 .fill-AA2{fill:#4A6FF3;} + .d2-4271120609 .fill-AA4{fill:#EDF0FD;} + .d2-4271120609 .fill-AA5{fill:#F7F8FE;} + .d2-4271120609 .fill-AB4{fill:#EDF0FD;} + .d2-4271120609 .fill-AB5{fill:#F7F8FE;} + .d2-4271120609 .stroke-N1{stroke:#0A0F25;} + .d2-4271120609 .stroke-N2{stroke:#676C7E;} + .d2-4271120609 .stroke-N3{stroke:#9499AB;} + .d2-4271120609 .stroke-N4{stroke:#CFD2DD;} + .d2-4271120609 .stroke-N5{stroke:#DEE1EB;} + .d2-4271120609 .stroke-N6{stroke:#EEF1F8;} + .d2-4271120609 .stroke-N7{stroke:#FFFFFF;} + .d2-4271120609 .stroke-B1{stroke:#0D32B2;} + .d2-4271120609 .stroke-B2{stroke:#0D32B2;} + .d2-4271120609 .stroke-B3{stroke:#E3E9FD;} + .d2-4271120609 .stroke-B4{stroke:#E3E9FD;} + .d2-4271120609 .stroke-B5{stroke:#EDF0FD;} + .d2-4271120609 .stroke-B6{stroke:#F7F8FE;} + .d2-4271120609 .stroke-AA2{stroke:#4A6FF3;} + .d2-4271120609 .stroke-AA4{stroke:#EDF0FD;} + .d2-4271120609 .stroke-AA5{stroke:#F7F8FE;} + .d2-4271120609 .stroke-AB4{stroke:#EDF0FD;} + .d2-4271120609 .stroke-AB5{stroke:#F7F8FE;} + .d2-4271120609 .background-color-N1{background-color:#0A0F25;} + .d2-4271120609 .background-color-N2{background-color:#676C7E;} + .d2-4271120609 .background-color-N3{background-color:#9499AB;} + .d2-4271120609 .background-color-N4{background-color:#CFD2DD;} + .d2-4271120609 .background-color-N5{background-color:#DEE1EB;} + .d2-4271120609 .background-color-N6{background-color:#EEF1F8;} + .d2-4271120609 .background-color-N7{background-color:#FFFFFF;} + .d2-4271120609 .background-color-B1{background-color:#0D32B2;} + .d2-4271120609 .background-color-B2{background-color:#0D32B2;} + .d2-4271120609 .background-color-B3{background-color:#E3E9FD;} + .d2-4271120609 .background-color-B4{background-color:#E3E9FD;} + .d2-4271120609 .background-color-B5{background-color:#EDF0FD;} + .d2-4271120609 .background-color-B6{background-color:#F7F8FE;} + .d2-4271120609 .background-color-AA2{background-color:#4A6FF3;} + .d2-4271120609 .background-color-AA4{background-color:#EDF0FD;} + .d2-4271120609 .background-color-AA5{background-color:#F7F8FE;} + .d2-4271120609 .background-color-AB4{background-color:#EDF0FD;} + .d2-4271120609 .background-color-AB5{background-color:#F7F8FE;} + .d2-4271120609 .color-N1{color:#0A0F25;} + .d2-4271120609 .color-N2{color:#676C7E;} + .d2-4271120609 .color-N3{color:#9499AB;} + .d2-4271120609 .color-N4{color:#CFD2DD;} + .d2-4271120609 .color-N5{color:#DEE1EB;} + .d2-4271120609 .color-N6{color:#EEF1F8;} + .d2-4271120609 .color-N7{color:#FFFFFF;} + .d2-4271120609 .color-B1{color:#0D32B2;} + .d2-4271120609 .color-B2{color:#0D32B2;} + .d2-4271120609 .color-B3{color:#E3E9FD;} + .d2-4271120609 .color-B4{color:#E3E9FD;} + .d2-4271120609 .color-B5{color:#EDF0FD;} + .d2-4271120609 .color-B6{color:#F7F8FE;} + .d2-4271120609 .color-AA2{color:#4A6FF3;} + .d2-4271120609 .color-AA4{color:#EDF0FD;} + .d2-4271120609 .color-AA5{color:#F7F8FE;} + .d2-4271120609 .color-AB4{color:#EDF0FD;} + .d2-4271120609 .color-AB5{color:#F7F8FE;}.appendix text.text{fill:#0A0F25}.md{--color-fg-default:#0A0F25;--color-fg-muted:#676C7E;--color-fg-subtle:#9499AB;--color-canvas-default:#FFFFFF;--color-canvas-subtle:#EEF1F8;--color-border-default:#0D32B2;--color-border-muted:#0D32B2;--color-neutral-muted:#EEF1F8;--color-accent-fg:#0D32B2;--color-accent-emphasis:#0D32B2;--color-attention-subtle:#676C7E;--color-danger-fg:red;}.sketch-overlay-B1{fill:url(#streaks-darker);mix-blend-mode:lighten}.sketch-overlay-B2{fill:url(#streaks-darker);mix-blend-mode:lighten}.sketch-overlay-B3{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-B4{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-B5{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-B6{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-AA2{fill:url(#streaks-dark);mix-blend-mode:overlay}.sketch-overlay-AA4{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-AA5{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-AB4{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-AB5{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-N1{fill:url(#streaks-darker);mix-blend-mode:lighten}.sketch-overlay-N2{fill:url(#streaks-dark);mix-blend-mode:overlay}.sketch-overlay-N3{fill:url(#streaks-normal);mix-blend-mode:color-burn}.sketch-overlay-N4{fill:url(#streaks-normal);mix-blend-mode:color-burn}.sketch-overlay-N5{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-N6{fill:url(#streaks-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مەن سىزنى ياخشى ئۈمىد ق \ No newline at end of file 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 c42927b9bd..d7112ca954 100644 --- a/e2etests/testdata/unicode/mixed-language-2/elk/board.exp.json +++ b/e2etests/testdata/unicode/mixed-language-2/elk/board.exp.json @@ -911,10 +911,8 @@ "id": "(a -> b)[0]", "src": "a", "srcArrow": "none", - "srcLabel": "", "dst": "b", "dstArrow": "triangle", - "dstLabel": "", "opacity": 1, "strokeDash": 0, "strokeWidth": 2, @@ -951,10 +949,8 @@ "id": "(b -> c)[0]", "src": "b", "srcArrow": "none", - "srcLabel": "", "dst": "c", "dstArrow": "triangle", - "dstLabel": "", "opacity": 1, "strokeDash": 0, "strokeWidth": 2, @@ -991,10 +987,8 @@ "id": "(c -> d)[0]", "src": "c", "srcArrow": "none", - "srcLabel": "", "dst": "d", "dstArrow": "triangle", - "dstLabel": "", "opacity": 1, "strokeDash": 0, "strokeWidth": 2, @@ -1031,10 +1025,8 @@ "id": "(e -> f)[0]", "src": "e", "srcArrow": "none", - "srcLabel": "", "dst": "f", "dstArrow": "triangle", - "dstLabel": "", "opacity": 1, "strokeDash": 0, "strokeWidth": 2, @@ -1071,10 +1063,8 @@ "id": "(f -> g)[0]", "src": "f", "srcArrow": "none", - "srcLabel": "", "dst": "g", "dstArrow": "triangle", - "dstLabel": "", "opacity": 1, "strokeDash": 0, "strokeWidth": 2, @@ -1111,10 +1101,8 @@ "id": "(g -> h)[0]", "src": "g", "srcArrow": "none", - "srcLabel": "", "dst": "h", "dstArrow": "triangle", - "dstLabel": "", "opacity": 1, "strokeDash": 0, "strokeWidth": 2, @@ -1151,10 +1139,8 @@ "id": "(i -> j)[0]", "src": "i", "srcArrow": "none", - "srcLabel": "", "dst": "j", "dstArrow": "triangle", - "dstLabel": "", "opacity": 1, "strokeDash": 0, "strokeWidth": 2, @@ -1191,10 +1177,8 @@ "id": "(j -> k)[0]", "src": "j", "srcArrow": "none", - "srcLabel": "", "dst": "k", "dstArrow": "triangle", - "dstLabel": "", "opacity": 1, "strokeDash": 0, "strokeWidth": 2, @@ -1231,10 +1215,8 @@ "id": "(k -> l)[0]", "src": "k", "srcArrow": "none", - "srcLabel": "", "dst": "l", "dstArrow": "triangle", - "dstLabel": "", "opacity": 1, "strokeDash": 0, "strokeWidth": 2, @@ -1271,10 +1253,8 @@ "id": "(m -> n)[0]", "src": "m", "srcArrow": "none", - "srcLabel": "", "dst": "n", "dstArrow": "triangle", - "dstLabel": "", "opacity": 1, "strokeDash": 0, "strokeWidth": 2, @@ -1311,10 +1291,8 @@ "id": "(n -> o)[0]", "src": "n", "srcArrow": "none", - "srcLabel": "", "dst": "o", "dstArrow": "triangle", - "dstLabel": "", "opacity": 1, "strokeDash": 0, "strokeWidth": 2, @@ -1351,10 +1329,8 @@ "id": "(o -> p)[0]", "src": "o", "srcArrow": "none", - "srcLabel": "", "dst": "p", "dstArrow": "triangle", - "dstLabel": "", "opacity": 1, "strokeDash": 0, "strokeWidth": 2, 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 c3937bca3f..5a46dc8259 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-2142257737 .fill-N1{fill:#0A0F25;} + .d2-2142257737 .fill-N2{fill:#676C7E;} + .d2-2142257737 .fill-N3{fill:#9499AB;} + .d2-2142257737 .fill-N4{fill:#CFD2DD;} + .d2-2142257737 .fill-N5{fill:#DEE1EB;} + .d2-2142257737 .fill-N6{fill:#EEF1F8;} + .d2-2142257737 .fill-N7{fill:#FFFFFF;} + .d2-2142257737 .fill-B1{fill:#0D32B2;} + .d2-2142257737 .fill-B2{fill:#0D32B2;} + .d2-2142257737 .fill-B3{fill:#E3E9FD;} + .d2-2142257737 .fill-B4{fill:#E3E9FD;} + .d2-2142257737 .fill-B5{fill:#EDF0FD;} + .d2-2142257737 .fill-B6{fill:#F7F8FE;} + .d2-2142257737 .fill-AA2{fill:#4A6FF3;} + .d2-2142257737 .fill-AA4{fill:#EDF0FD;} + .d2-2142257737 .fill-AA5{fill:#F7F8FE;} + .d2-2142257737 .fill-AB4{fill:#EDF0FD;} + .d2-2142257737 .fill-AB5{fill:#F7F8FE;} + .d2-2142257737 .stroke-N1{stroke:#0A0F25;} + .d2-2142257737 .stroke-N2{stroke:#676C7E;} + .d2-2142257737 .stroke-N3{stroke:#9499AB;} + .d2-2142257737 .stroke-N4{stroke:#CFD2DD;} + .d2-2142257737 .stroke-N5{stroke:#DEE1EB;} + .d2-2142257737 .stroke-N6{stroke:#EEF1F8;} + .d2-2142257737 .stroke-N7{stroke:#FFFFFF;} + .d2-2142257737 .stroke-B1{stroke:#0D32B2;} + .d2-2142257737 .stroke-B2{stroke:#0D32B2;} + .d2-2142257737 .stroke-B3{stroke:#E3E9FD;} + .d2-2142257737 .stroke-B4{stroke:#E3E9FD;} + .d2-2142257737 .stroke-B5{stroke:#EDF0FD;} + .d2-2142257737 .stroke-B6{stroke:#F7F8FE;} + .d2-2142257737 .stroke-AA2{stroke:#4A6FF3;} + .d2-2142257737 .stroke-AA4{stroke:#EDF0FD;} + .d2-2142257737 .stroke-AA5{stroke:#F7F8FE;} + .d2-2142257737 .stroke-AB4{stroke:#EDF0FD;} + .d2-2142257737 .stroke-AB5{stroke:#F7F8FE;} + .d2-2142257737 .background-color-N1{background-color:#0A0F25;} + .d2-2142257737 .background-color-N2{background-color:#676C7E;} + .d2-2142257737 .background-color-N3{background-color:#9499AB;} + .d2-2142257737 .background-color-N4{background-color:#CFD2DD;} + .d2-2142257737 .background-color-N5{background-color:#DEE1EB;} + .d2-2142257737 .background-color-N6{background-color:#EEF1F8;} + .d2-2142257737 .background-color-N7{background-color:#FFFFFF;} + .d2-2142257737 .background-color-B1{background-color:#0D32B2;} + .d2-2142257737 .background-color-B2{background-color:#0D32B2;} + .d2-2142257737 .background-color-B3{background-color:#E3E9FD;} + .d2-2142257737 .background-color-B4{background-color:#E3E9FD;} + .d2-2142257737 .background-color-B5{background-color:#EDF0FD;} + .d2-2142257737 .background-color-B6{background-color:#F7F8FE;} + .d2-2142257737 .background-color-AA2{background-color:#4A6FF3;} + .d2-2142257737 .background-color-AA4{background-color:#EDF0FD;} + .d2-2142257737 .background-color-AA5{background-color:#F7F8FE;} + .d2-2142257737 .background-color-AB4{background-color:#EDF0FD;} + .d2-2142257737 .background-color-AB5{background-color:#F7F8FE;} + .d2-2142257737 .color-N1{color:#0A0F25;} + .d2-2142257737 .color-N2{color:#676C7E;} + .d2-2142257737 .color-N3{color:#9499AB;} + .d2-2142257737 .color-N4{color:#CFD2DD;} + .d2-2142257737 .color-N5{color:#DEE1EB;} + .d2-2142257737 .color-N6{color:#EEF1F8;} + .d2-2142257737 .color-N7{color:#FFFFFF;} + .d2-2142257737 .color-B1{color:#0D32B2;} + .d2-2142257737 .color-B2{color:#0D32B2;} + .d2-2142257737 .color-B3{color:#E3E9FD;} + .d2-2142257737 .color-B4{color:#E3E9FD;} + .d2-2142257737 .color-B5{color:#EDF0FD;} + .d2-2142257737 .color-B6{color:#F7F8FE;} + .d2-2142257737 .color-AA2{color:#4A6FF3;} + .d2-2142257737 .color-AA4{color:#EDF0FD;} + .d2-2142257737 .color-AA5{color:#F7F8FE;} + .d2-2142257737 .color-AB4{color:#EDF0FD;} + .d2-2142257737 .color-AB5{color:#F7F8FE;}.appendix text.text{fill:#0A0F25}.md{--color-fg-default:#0A0F25;--color-fg-muted:#676C7E;--color-fg-subtle:#9499AB;--color-canvas-default:#FFFFFF;--color-canvas-subtle:#EEF1F8;--color-border-default:#0D32B2;--color-border-muted:#0D32B2;--color-neutral-muted:#EEF1F8;--color-accent-fg:#0D32B2;--color-accent-emphasis:#0D32B2;--color-attention-subtle:#676C7E;--color-danger-fg:red;}.sketch-overlay-B1{fill:url(#streaks-darker);mix-blend-mode:lighten}.sketch-overlay-B2{fill:url(#streaks-darker);mix-blend-mode:lighten}.sketch-overlay-B3{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-B4{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-B5{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-B6{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-AA2{fill:url(#streaks-dark);mix-blend-mode:overlay}.sketch-overlay-AA4{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-AA5{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-AB4{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-AB5{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-N1{fill:url(#streaks-darker);mix-blend-mode:lighten}.sketch-overlay-N2{fill:url(#streaks-dark);mix-blend-mode:overlay}.sketch-overlay-N3{fill:url(#streaks-normal);mix-blend-mode:color-burn}.sketch-overlay-N4{fill:url(#streaks-normal);mix-blend-mode:color-burn}.sketch-overlay-N5{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-N6{fill:url(#streaks-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مەن سىزنى ياخشى ئۈمىد ق \ No newline at end of file diff --git a/e2etests/testdata/unicode/mixed-language/dagre/board.exp.json b/e2etests/testdata/unicode/mixed-language/dagre/board.exp.json index 5a9857ae00..81c3db6101 100644 --- a/e2etests/testdata/unicode/mixed-language/dagre/board.exp.json +++ b/e2etests/testdata/unicode/mixed-language/dagre/board.exp.json @@ -131,10 +131,8 @@ "id": "(a -> b)[0]", "src": "a", "srcArrow": "none", - "srcLabel": "", "dst": "b", "dstArrow": "triangle", - "dstLabel": "", "opacity": 1, "strokeDash": 0, "strokeWidth": 2, @@ -180,10 +178,8 @@ "id": "(a -> c)[0]", "src": "a", "srcArrow": "none", - "srcLabel": "", "dst": "c", "dstArrow": "triangle", - "dstLabel": "", "opacity": 1, "strokeDash": 0, "strokeWidth": 2, diff --git a/e2etests/testdata/unicode/mixed-language/dagre/sketch.exp.svg b/e2etests/testdata/unicode/mixed-language/dagre/sketch.exp.svg index c73d11677e..5fefb4ff28 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 @@ -有一个叫做夏天的季节。 ある季節、夏という名前がついています。한 계절, 여름이란 이름이 있습니다.夏天的时候,天气非常热,人们总是流着汗。

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

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

    -
    +
    \ No newline at end of file diff --git a/e2etests/testdata/unicode/mixed-language/elk/board.exp.json b/e2etests/testdata/unicode/mixed-language/elk/board.exp.json index f09546918f..1446e21ca5 100644 --- a/e2etests/testdata/unicode/mixed-language/elk/board.exp.json +++ b/e2etests/testdata/unicode/mixed-language/elk/board.exp.json @@ -131,10 +131,8 @@ "id": "(a -> b)[0]", "src": "a", "srcArrow": "none", - "srcLabel": "", "dst": "b", "dstArrow": "triangle", - "dstLabel": "", "opacity": 1, "strokeDash": 0, "strokeWidth": 2, @@ -171,10 +169,8 @@ "id": "(a -> c)[0]", "src": "a", "srcArrow": "none", - "srcLabel": "", "dst": "c", "dstArrow": "triangle", - "dstLabel": "", "opacity": 1, "strokeDash": 0, "strokeWidth": 2, diff --git a/e2etests/testdata/unicode/mixed-language/elk/sketch.exp.svg b/e2etests/testdata/unicode/mixed-language/elk/sketch.exp.svg index 2f35512c0e..15df5fd944 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 @@ -有一个叫做夏天的季节。 ある季節、夏という名前がついています。한 계절, 여름이란 이름이 있습니다.夏天的时候,天气非常热,人们总是流着汗。

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

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

    -
    +
    \ No newline at end of file diff --git a/lib/label/label.go b/lib/label/label.go index fff93e1a0a..030a57a75c 100644 --- a/lib/label/label.go +++ b/lib/label/label.go @@ -223,7 +223,8 @@ func (labelPosition Position) GetPointOnBox(box *geo.Box, padding, width, height } // return the top left point of a width x height label at the given label position on the route -func (labelPosition Position) GetPointOnRoute(route geo.Route, strokeWidth, labelPercentage, width, height float64) *geo.Point { +// also return the index of the route segment that point is on +func (labelPosition Position) GetPointOnRoute(route geo.Route, strokeWidth, labelPercentage, width, height float64) (point *geo.Point, index int) { totalLength := route.Length() leftPosition := LEFT_LABEL_POSITION * totalLength centerPosition := CENTER_LABEL_POSITION * totalLength @@ -272,11 +273,11 @@ func (labelPosition Position) GetPointOnRoute(route geo.Route, strokeWidth, labe var labelCenter *geo.Point switch labelPosition { case InsideMiddleLeft: - labelCenter, _ = route.GetPointAtDistance(leftPosition) + labelCenter, index = route.GetPointAtDistance(leftPosition) case InsideMiddleCenter: - labelCenter, _ = route.GetPointAtDistance(centerPosition) + labelCenter, index = route.GetPointAtDistance(centerPosition) case InsideMiddleRight: - labelCenter, _ = route.GetPointAtDistance(rightPosition) + labelCenter, index = route.GetPointAtDistance(rightPosition) case OutsideTopLeft: basePoint, index := route.GetPointAtDistance(leftPosition) @@ -302,17 +303,17 @@ func (labelPosition Position) GetPointOnRoute(route geo.Route, strokeWidth, labe basePoint, index := route.GetPointAtDistance(unlockedPosition) labelCenter = getOffsetLabelPosition(basePoint, route[index], route[index+1], true) case UnlockedMiddle: - labelCenter, _ = route.GetPointAtDistance(unlockedPosition) + labelCenter, index = route.GetPointAtDistance(unlockedPosition) case UnlockedBottom: basePoint, index := route.GetPointAtDistance(unlockedPosition) labelCenter = getOffsetLabelPosition(basePoint, route[index], route[index+1], false) default: - return nil + return nil, -1 } // convert from center to top left labelCenter.X = chopPrecision(labelCenter.X - width/2) labelCenter.Y = chopPrecision(labelCenter.Y - height/2) - return labelCenter + return labelCenter, index } // TODO probably use math.Big diff --git a/testdata/d2compiler/TestCompile/classes.exp.json b/testdata/d2compiler/TestCompile/classes.exp.json index d5b6c64010..dc70458426 100644 --- a/testdata/d2compiler/TestCompile/classes.exp.json +++ b/testdata/d2compiler/TestCompile/classes.exp.json @@ -658,8 +658,6 @@ "edges": [ { "index": 0, - "minWidth": 0, - "minHeight": 0, "isCurve": false, "src_arrow": false, "dst_arrow": true, diff --git a/testdata/d2compiler/TestCompile/edge.exp.json b/testdata/d2compiler/TestCompile/edge.exp.json index 6ae52f4c10..f888ec8495 100644 --- a/testdata/d2compiler/TestCompile/edge.exp.json +++ b/testdata/d2compiler/TestCompile/edge.exp.json @@ -81,8 +81,6 @@ "edges": [ { "index": 0, - "minWidth": 0, - "minHeight": 0, "isCurve": false, "src_arrow": false, "dst_arrow": true, diff --git a/testdata/d2compiler/TestCompile/edge_arrowhead_fields.exp.json b/testdata/d2compiler/TestCompile/edge_arrowhead_fields.exp.json index f27e6840a6..b5b40590e5 100644 --- a/testdata/d2compiler/TestCompile/edge_arrowhead_fields.exp.json +++ b/testdata/d2compiler/TestCompile/edge_arrowhead_fields.exp.json @@ -260,8 +260,6 @@ "edges": [ { "index": 0, - "minWidth": 0, - "minHeight": 0, "isCurve": false, "src_arrow": false, "srcArrowhead": { diff --git a/testdata/d2compiler/TestCompile/edge_arrowhead_primary.exp.json b/testdata/d2compiler/TestCompile/edge_arrowhead_primary.exp.json index c15beb9d42..8d8ed81271 100644 --- a/testdata/d2compiler/TestCompile/edge_arrowhead_primary.exp.json +++ b/testdata/d2compiler/TestCompile/edge_arrowhead_primary.exp.json @@ -120,8 +120,6 @@ "edges": [ { "index": 0, - "minWidth": 0, - "minHeight": 0, "isCurve": false, "src_arrow": false, "srcArrowhead": { diff --git a/testdata/d2compiler/TestCompile/edge_chain.exp.json b/testdata/d2compiler/TestCompile/edge_chain.exp.json index a15f354a0b..539f251572 100644 --- a/testdata/d2compiler/TestCompile/edge_chain.exp.json +++ b/testdata/d2compiler/TestCompile/edge_chain.exp.json @@ -128,8 +128,6 @@ "edges": [ { "index": 0, - "minWidth": 0, - "minHeight": 0, "isCurve": false, "src_arrow": false, "dst_arrow": true, @@ -162,8 +160,6 @@ }, { "index": 0, - "minWidth": 0, - "minHeight": 0, "isCurve": false, "src_arrow": false, "dst_arrow": true, diff --git a/testdata/d2compiler/TestCompile/edge_chain_map.exp.json b/testdata/d2compiler/TestCompile/edge_chain_map.exp.json index d83b205b6d..79bb97959d 100644 --- a/testdata/d2compiler/TestCompile/edge_chain_map.exp.json +++ b/testdata/d2compiler/TestCompile/edge_chain_map.exp.json @@ -157,8 +157,6 @@ "edges": [ { "index": 0, - "minWidth": 0, - "minHeight": 0, "isCurve": false, "src_arrow": false, "dst_arrow": true, @@ -191,8 +189,6 @@ }, { "index": 0, - "minWidth": 0, - "minHeight": 0, "isCurve": false, "src_arrow": false, "dst_arrow": true, diff --git a/testdata/d2compiler/TestCompile/edge_column_index.exp.json b/testdata/d2compiler/TestCompile/edge_column_index.exp.json index 8ac773efb3..1921eab2bd 100644 --- a/testdata/d2compiler/TestCompile/edge_column_index.exp.json +++ b/testdata/d2compiler/TestCompile/edge_column_index.exp.json @@ -359,8 +359,6 @@ "edges": [ { "index": 0, - "minWidth": 0, - "minHeight": 0, "srcTableColumnIndex": 0, "dstTableColumnIndex": 1, "isCurve": false, diff --git a/testdata/d2compiler/TestCompile/edge_exclusive_style.exp.json b/testdata/d2compiler/TestCompile/edge_exclusive_style.exp.json index 5aec57fd08..7a53845c0d 100644 --- a/testdata/d2compiler/TestCompile/edge_exclusive_style.exp.json +++ b/testdata/d2compiler/TestCompile/edge_exclusive_style.exp.json @@ -126,8 +126,6 @@ "edges": [ { "index": 0, - "minWidth": 0, - "minHeight": 0, "isCurve": false, "src_arrow": false, "dst_arrow": true, diff --git a/testdata/d2compiler/TestCompile/edge_flat_arrowhead.exp.json b/testdata/d2compiler/TestCompile/edge_flat_arrowhead.exp.json index d106b016f9..650bd27976 100644 --- a/testdata/d2compiler/TestCompile/edge_flat_arrowhead.exp.json +++ b/testdata/d2compiler/TestCompile/edge_flat_arrowhead.exp.json @@ -169,8 +169,6 @@ "edges": [ { "index": 0, - "minWidth": 0, - "minHeight": 0, "isCurve": false, "src_arrow": false, "srcArrowhead": { diff --git a/testdata/d2compiler/TestCompile/edge_flat_label_arrowhead.exp.json b/testdata/d2compiler/TestCompile/edge_flat_label_arrowhead.exp.json index f80f3b0c1a..ad7c1b4732 100644 --- a/testdata/d2compiler/TestCompile/edge_flat_label_arrowhead.exp.json +++ b/testdata/d2compiler/TestCompile/edge_flat_label_arrowhead.exp.json @@ -137,8 +137,6 @@ "edges": [ { "index": 0, - "minWidth": 0, - "minHeight": 0, "isCurve": false, "src_arrow": false, "srcArrowhead": { diff --git a/testdata/d2compiler/TestCompile/edge_index.exp.json b/testdata/d2compiler/TestCompile/edge_index.exp.json index 6b7b80f2c4..ca945bea74 100644 --- a/testdata/d2compiler/TestCompile/edge_index.exp.json +++ b/testdata/d2compiler/TestCompile/edge_index.exp.json @@ -152,8 +152,6 @@ "edges": [ { "index": 0, - "minWidth": 0, - "minHeight": 0, "isCurve": false, "src_arrow": false, "dst_arrow": true, diff --git a/testdata/d2compiler/TestCompile/edge_index_map.exp.json b/testdata/d2compiler/TestCompile/edge_index_map.exp.json index f52759f3a1..0cafc323b5 100644 --- a/testdata/d2compiler/TestCompile/edge_index_map.exp.json +++ b/testdata/d2compiler/TestCompile/edge_index_map.exp.json @@ -171,8 +171,6 @@ "edges": [ { "index": 0, - "minWidth": 0, - "minHeight": 0, "isCurve": false, "src_arrow": false, "dst_arrow": true, diff --git a/testdata/d2compiler/TestCompile/edge_index_nested.exp.json b/testdata/d2compiler/TestCompile/edge_index_nested.exp.json index 415924a40d..d0c5807157 100644 --- a/testdata/d2compiler/TestCompile/edge_index_nested.exp.json +++ b/testdata/d2compiler/TestCompile/edge_index_nested.exp.json @@ -181,8 +181,6 @@ "edges": [ { "index": 0, - "minWidth": 0, - "minHeight": 0, "isCurve": false, "src_arrow": false, "dst_arrow": true, diff --git a/testdata/d2compiler/TestCompile/edge_index_nested_cross_scope.exp.json b/testdata/d2compiler/TestCompile/edge_index_nested_cross_scope.exp.json index 0511077605..312d38e8d2 100644 --- a/testdata/d2compiler/TestCompile/edge_index_nested_cross_scope.exp.json +++ b/testdata/d2compiler/TestCompile/edge_index_nested_cross_scope.exp.json @@ -197,8 +197,6 @@ "edges": [ { "index": 0, - "minWidth": 0, - "minHeight": 0, "isCurve": false, "src_arrow": false, "dst_arrow": true, diff --git a/testdata/d2compiler/TestCompile/edge_key_group_flat_nested.exp.json b/testdata/d2compiler/TestCompile/edge_key_group_flat_nested.exp.json index 89e7f02d5f..bcad401455 100644 --- a/testdata/d2compiler/TestCompile/edge_key_group_flat_nested.exp.json +++ b/testdata/d2compiler/TestCompile/edge_key_group_flat_nested.exp.json @@ -210,8 +210,6 @@ "edges": [ { "index": 0, - "minWidth": 0, - "minHeight": 0, "isCurve": false, "src_arrow": false, "dst_arrow": true, diff --git a/testdata/d2compiler/TestCompile/edge_key_group_flat_nested_underscore.exp.json b/testdata/d2compiler/TestCompile/edge_key_group_flat_nested_underscore.exp.json index 06eb0620f9..d3c7ca6edc 100644 --- a/testdata/d2compiler/TestCompile/edge_key_group_flat_nested_underscore.exp.json +++ b/testdata/d2compiler/TestCompile/edge_key_group_flat_nested_underscore.exp.json @@ -216,8 +216,6 @@ "edges": [ { "index": 0, - "minWidth": 0, - "minHeight": 0, "isCurve": false, "src_arrow": false, "dst_arrow": true, diff --git a/testdata/d2compiler/TestCompile/edge_key_group_map_flat_nested_underscore.exp.json b/testdata/d2compiler/TestCompile/edge_key_group_map_flat_nested_underscore.exp.json index 0e34db6240..63647e8284 100644 --- a/testdata/d2compiler/TestCompile/edge_key_group_map_flat_nested_underscore.exp.json +++ b/testdata/d2compiler/TestCompile/edge_key_group_map_flat_nested_underscore.exp.json @@ -229,8 +229,6 @@ "edges": [ { "index": 0, - "minWidth": 0, - "minHeight": 0, "isCurve": false, "src_arrow": false, "dst_arrow": true, diff --git a/testdata/d2compiler/TestCompile/edge_key_group_map_nested_underscore.exp.json b/testdata/d2compiler/TestCompile/edge_key_group_map_nested_underscore.exp.json index 88a318cbfb..7da55f2d6d 100644 --- a/testdata/d2compiler/TestCompile/edge_key_group_map_nested_underscore.exp.json +++ b/testdata/d2compiler/TestCompile/edge_key_group_map_nested_underscore.exp.json @@ -247,8 +247,6 @@ "edges": [ { "index": 0, - "minWidth": 0, - "minHeight": 0, "isCurve": false, "src_arrow": false, "dst_arrow": true, diff --git a/testdata/d2compiler/TestCompile/edge_label_map.exp.json b/testdata/d2compiler/TestCompile/edge_label_map.exp.json index 5c4805390a..4be3fe8c2a 100644 --- a/testdata/d2compiler/TestCompile/edge_label_map.exp.json +++ b/testdata/d2compiler/TestCompile/edge_label_map.exp.json @@ -137,8 +137,6 @@ "edges": [ { "index": 0, - "minWidth": 0, - "minHeight": 0, "isCurve": false, "src_arrow": false, "dst_arrow": true, diff --git a/testdata/d2compiler/TestCompile/edge_map.exp.json b/testdata/d2compiler/TestCompile/edge_map.exp.json index cf444d4ad7..a5431b793a 100644 --- a/testdata/d2compiler/TestCompile/edge_map.exp.json +++ b/testdata/d2compiler/TestCompile/edge_map.exp.json @@ -120,8 +120,6 @@ "edges": [ { "index": 0, - "minWidth": 0, - "minHeight": 0, "isCurve": false, "src_arrow": false, "dst_arrow": true, diff --git a/testdata/d2compiler/TestCompile/edge_map_arrowhead.exp.json b/testdata/d2compiler/TestCompile/edge_map_arrowhead.exp.json index 68600055ba..88a53d3d25 100644 --- a/testdata/d2compiler/TestCompile/edge_map_arrowhead.exp.json +++ b/testdata/d2compiler/TestCompile/edge_map_arrowhead.exp.json @@ -149,8 +149,6 @@ "edges": [ { "index": 0, - "minWidth": 0, - "minHeight": 0, "isCurve": false, "src_arrow": false, "srcArrowhead": { diff --git a/testdata/d2compiler/TestCompile/edge_map_group_flat.exp.json b/testdata/d2compiler/TestCompile/edge_map_group_flat.exp.json index 979f8966c4..a3524f7da1 100644 --- a/testdata/d2compiler/TestCompile/edge_map_group_flat.exp.json +++ b/testdata/d2compiler/TestCompile/edge_map_group_flat.exp.json @@ -165,8 +165,6 @@ "edges": [ { "index": 0, - "minWidth": 0, - "minHeight": 0, "isCurve": false, "src_arrow": false, "dst_arrow": true, diff --git a/testdata/d2compiler/TestCompile/edge_map_group_semiflat.exp.json b/testdata/d2compiler/TestCompile/edge_map_group_semiflat.exp.json index 2d9530f7f1..630447498c 100644 --- a/testdata/d2compiler/TestCompile/edge_map_group_semiflat.exp.json +++ b/testdata/d2compiler/TestCompile/edge_map_group_semiflat.exp.json @@ -183,8 +183,6 @@ "edges": [ { "index": 0, - "minWidth": 0, - "minHeight": 0, "isCurve": false, "src_arrow": false, "dst_arrow": true, diff --git a/testdata/d2compiler/TestCompile/edge_map_nested.exp.json b/testdata/d2compiler/TestCompile/edge_map_nested.exp.json index 3871d49927..ef5f4f2e8f 100644 --- a/testdata/d2compiler/TestCompile/edge_map_nested.exp.json +++ b/testdata/d2compiler/TestCompile/edge_map_nested.exp.json @@ -145,8 +145,6 @@ "edges": [ { "index": 0, - "minWidth": 0, - "minHeight": 0, "isCurve": false, "src_arrow": false, "dst_arrow": true, diff --git a/testdata/d2compiler/TestCompile/edge_map_nested_flat.exp.json b/testdata/d2compiler/TestCompile/edge_map_nested_flat.exp.json index 0be99c56f4..11f5a9a8e5 100644 --- a/testdata/d2compiler/TestCompile/edge_map_nested_flat.exp.json +++ b/testdata/d2compiler/TestCompile/edge_map_nested_flat.exp.json @@ -127,8 +127,6 @@ "edges": [ { "index": 0, - "minWidth": 0, - "minHeight": 0, "isCurve": false, "src_arrow": false, "dst_arrow": true, diff --git a/testdata/d2compiler/TestCompile/edge_mixed_arrowhead.exp.json b/testdata/d2compiler/TestCompile/edge_mixed_arrowhead.exp.json index 77eb47df20..100752bf72 100644 --- a/testdata/d2compiler/TestCompile/edge_mixed_arrowhead.exp.json +++ b/testdata/d2compiler/TestCompile/edge_mixed_arrowhead.exp.json @@ -237,8 +237,6 @@ "edges": [ { "index": 0, - "minWidth": 0, - "minHeight": 0, "isCurve": false, "src_arrow": false, "srcArrowhead": { diff --git a/testdata/d2compiler/TestCompile/edge_non_shape_arrowhead.exp.json b/testdata/d2compiler/TestCompile/edge_non_shape_arrowhead.exp.json index 53b8a0d57a..9684e7d9bb 100644 --- a/testdata/d2compiler/TestCompile/edge_non_shape_arrowhead.exp.json +++ b/testdata/d2compiler/TestCompile/edge_non_shape_arrowhead.exp.json @@ -131,8 +131,6 @@ "edges": [ { "index": 0, - "minWidth": 0, - "minHeight": 0, "isCurve": false, "src_arrow": false, "srcArrowhead": { diff --git a/testdata/d2compiler/TestCompile/edge_semiflat_arrowhead.exp.json b/testdata/d2compiler/TestCompile/edge_semiflat_arrowhead.exp.json index 431de06644..e1998a59b5 100644 --- a/testdata/d2compiler/TestCompile/edge_semiflat_arrowhead.exp.json +++ b/testdata/d2compiler/TestCompile/edge_semiflat_arrowhead.exp.json @@ -187,8 +187,6 @@ "edges": [ { "index": 0, - "minWidth": 0, - "minHeight": 0, "isCurve": false, "src_arrow": false, "srcArrowhead": { diff --git a/testdata/d2compiler/TestCompile/link-board-mixed.exp.json b/testdata/d2compiler/TestCompile/link-board-mixed.exp.json index 29d6875b9b..5026294ec8 100644 --- a/testdata/d2compiler/TestCompile/link-board-mixed.exp.json +++ b/testdata/d2compiler/TestCompile/link-board-mixed.exp.json @@ -759,8 +759,6 @@ "edges": [ { "index": 0, - "minWidth": 0, - "minHeight": 0, "isCurve": false, "src_arrow": false, "dst_arrow": true, diff --git a/testdata/d2compiler/TestCompile/self-referencing.exp.json b/testdata/d2compiler/TestCompile/self-referencing.exp.json index b6b41a49c8..4529e7133d 100644 --- a/testdata/d2compiler/TestCompile/self-referencing.exp.json +++ b/testdata/d2compiler/TestCompile/self-referencing.exp.json @@ -81,8 +81,6 @@ "edges": [ { "index": 0, - "minWidth": 0, - "minHeight": 0, "isCurve": false, "src_arrow": false, "dst_arrow": true, diff --git a/testdata/d2compiler/TestCompile/sequence-timestamp.exp.json b/testdata/d2compiler/TestCompile/sequence-timestamp.exp.json index a8548020b7..b72c145c31 100644 --- a/testdata/d2compiler/TestCompile/sequence-timestamp.exp.json +++ b/testdata/d2compiler/TestCompile/sequence-timestamp.exp.json @@ -252,8 +252,6 @@ "edges": [ { "index": 0, - "minWidth": 0, - "minHeight": 0, "isCurve": false, "src_arrow": false, "dst_arrow": true, diff --git a/testdata/d2compiler/TestCompile/sequence_container.exp.json b/testdata/d2compiler/TestCompile/sequence_container.exp.json index 0b4ccfecb2..e99e984064 100644 --- a/testdata/d2compiler/TestCompile/sequence_container.exp.json +++ b/testdata/d2compiler/TestCompile/sequence_container.exp.json @@ -277,8 +277,6 @@ "edges": [ { "index": 1, - "minWidth": 0, - "minHeight": 0, "isCurve": false, "src_arrow": false, "dst_arrow": true, @@ -311,8 +309,6 @@ }, { "index": 0, - "minWidth": 0, - "minHeight": 0, "isCurve": false, "src_arrow": false, "dst_arrow": true, diff --git a/testdata/d2compiler/TestCompile/sequence_container_2.exp.json b/testdata/d2compiler/TestCompile/sequence_container_2.exp.json index 02396a4bd1..d243d21d7a 100644 --- a/testdata/d2compiler/TestCompile/sequence_container_2.exp.json +++ b/testdata/d2compiler/TestCompile/sequence_container_2.exp.json @@ -255,8 +255,6 @@ "edges": [ { "index": 0, - "minWidth": 0, - "minHeight": 0, "isCurve": false, "src_arrow": false, "dst_arrow": true, diff --git a/testdata/d2compiler/TestCompile/sequence_scoping.exp.json b/testdata/d2compiler/TestCompile/sequence_scoping.exp.json index a828caff80..a16a4da10e 100644 --- a/testdata/d2compiler/TestCompile/sequence_scoping.exp.json +++ b/testdata/d2compiler/TestCompile/sequence_scoping.exp.json @@ -365,8 +365,6 @@ "edges": [ { "index": 0, - "minWidth": 0, - "minHeight": 0, "isCurve": false, "src_arrow": false, "dst_arrow": true, @@ -399,8 +397,6 @@ }, { "index": 0, - "minWidth": 0, - "minHeight": 0, "isCurve": false, "src_arrow": false, "dst_arrow": true, @@ -433,8 +429,6 @@ }, { "index": 0, - "minWidth": 0, - "minHeight": 0, "isCurve": false, "src_arrow": false, "dst_arrow": true, diff --git a/testdata/d2compiler/TestCompile/table_connection_attr.exp.json b/testdata/d2compiler/TestCompile/table_connection_attr.exp.json index 403e884161..32b14aa78d 100644 --- a/testdata/d2compiler/TestCompile/table_connection_attr.exp.json +++ b/testdata/d2compiler/TestCompile/table_connection_attr.exp.json @@ -318,8 +318,6 @@ "edges": [ { "index": 0, - "minWidth": 0, - "minHeight": 0, "srcTableColumnIndex": 0, "dstTableColumnIndex": 0, "isCurve": false, diff --git a/testdata/d2compiler/TestCompile/text-transform.exp.json b/testdata/d2compiler/TestCompile/text-transform.exp.json index 60231b5bda..7a15df912d 100644 --- a/testdata/d2compiler/TestCompile/text-transform.exp.json +++ b/testdata/d2compiler/TestCompile/text-transform.exp.json @@ -302,8 +302,6 @@ "edges": [ { "index": 0, - "minWidth": 0, - "minHeight": 0, "isCurve": false, "src_arrow": false, "dst_arrow": true, diff --git a/testdata/d2compiler/TestCompile/underscore_connection.exp.json b/testdata/d2compiler/TestCompile/underscore_connection.exp.json index d0395220b3..0ede3dff7b 100644 --- a/testdata/d2compiler/TestCompile/underscore_connection.exp.json +++ b/testdata/d2compiler/TestCompile/underscore_connection.exp.json @@ -154,8 +154,6 @@ "edges": [ { "index": 0, - "minWidth": 0, - "minHeight": 0, "isCurve": false, "src_arrow": false, "dst_arrow": true, diff --git a/testdata/d2compiler/TestCompile/underscore_edge.exp.json b/testdata/d2compiler/TestCompile/underscore_edge.exp.json index 0dcb36ed00..e2e362d3e5 100644 --- a/testdata/d2compiler/TestCompile/underscore_edge.exp.json +++ b/testdata/d2compiler/TestCompile/underscore_edge.exp.json @@ -132,8 +132,6 @@ "edges": [ { "index": 0, - "minWidth": 0, - "minHeight": 0, "isCurve": false, "src_arrow": false, "dst_arrow": true, diff --git a/testdata/d2compiler/TestCompile/underscore_edge_chain.exp.json b/testdata/d2compiler/TestCompile/underscore_edge_chain.exp.json index a2a364502b..b172abb7c2 100644 --- a/testdata/d2compiler/TestCompile/underscore_edge_chain.exp.json +++ b/testdata/d2compiler/TestCompile/underscore_edge_chain.exp.json @@ -191,8 +191,6 @@ "edges": [ { "index": 0, - "minWidth": 0, - "minHeight": 0, "isCurve": false, "src_arrow": false, "dst_arrow": true, @@ -225,8 +223,6 @@ }, { "index": 0, - "minWidth": 0, - "minHeight": 0, "isCurve": false, "src_arrow": false, "dst_arrow": true, diff --git a/testdata/d2compiler/TestCompile/underscore_edge_existing.exp.json b/testdata/d2compiler/TestCompile/underscore_edge_existing.exp.json index dda6d7102f..45d5e9c44b 100644 --- a/testdata/d2compiler/TestCompile/underscore_edge_existing.exp.json +++ b/testdata/d2compiler/TestCompile/underscore_edge_existing.exp.json @@ -198,8 +198,6 @@ "edges": [ { "index": 0, - "minWidth": 0, - "minHeight": 0, "isCurve": false, "src_arrow": false, "dst_arrow": true, @@ -232,8 +230,6 @@ }, { "index": 1, - "minWidth": 0, - "minHeight": 0, "isCurve": false, "src_arrow": false, "dst_arrow": true, diff --git a/testdata/d2compiler/TestCompile/underscore_edge_index.exp.json b/testdata/d2compiler/TestCompile/underscore_edge_index.exp.json index c7a5e89b1f..cfc16dc744 100644 --- a/testdata/d2compiler/TestCompile/underscore_edge_index.exp.json +++ b/testdata/d2compiler/TestCompile/underscore_edge_index.exp.json @@ -203,8 +203,6 @@ "edges": [ { "index": 0, - "minWidth": 0, - "minHeight": 0, "isCurve": false, "src_arrow": false, "dst_arrow": true, diff --git a/testdata/d2compiler/TestCompile/underscore_edge_nested.exp.json b/testdata/d2compiler/TestCompile/underscore_edge_nested.exp.json index 8042988e31..436f040f2a 100644 --- a/testdata/d2compiler/TestCompile/underscore_edge_nested.exp.json +++ b/testdata/d2compiler/TestCompile/underscore_edge_nested.exp.json @@ -172,8 +172,6 @@ "edges": [ { "index": 0, - "minWidth": 0, - "minHeight": 0, "isCurve": false, "src_arrow": false, "dst_arrow": true, diff --git a/testdata/d2compiler/TestCompile/wrong_column_index.exp.json b/testdata/d2compiler/TestCompile/wrong_column_index.exp.json index 184ed5d2b6..1d80ecd546 100644 --- a/testdata/d2compiler/TestCompile/wrong_column_index.exp.json +++ b/testdata/d2compiler/TestCompile/wrong_column_index.exp.json @@ -719,8 +719,6 @@ "edges": [ { "index": 0, - "minWidth": 0, - "minHeight": 0, "srcTableColumnIndex": 2, "dstTableColumnIndex": 0, "isCurve": false, diff --git a/testdata/d2compiler/TestCompile2/boards/scenarios_edge_index.exp.json b/testdata/d2compiler/TestCompile2/boards/scenarios_edge_index.exp.json index 1290562628..1ae53eaf14 100644 --- a/testdata/d2compiler/TestCompile2/boards/scenarios_edge_index.exp.json +++ b/testdata/d2compiler/TestCompile2/boards/scenarios_edge_index.exp.json @@ -223,8 +223,6 @@ "edges": [ { "index": 0, - "minWidth": 0, - "minHeight": 0, "isCurve": false, "src_arrow": false, "dst_arrow": true, @@ -577,8 +575,6 @@ "edges": [ { "index": 0, - "minWidth": 0, - "minHeight": 0, "isCurve": false, "src_arrow": false, "dst_arrow": true, diff --git a/testdata/d2exporter/TestExport/connection/arrowhead.exp.json b/testdata/d2exporter/TestExport/connection/arrowhead.exp.json index d6912f2b71..470ab802c3 100644 --- a/testdata/d2exporter/TestExport/connection/arrowhead.exp.json +++ b/testdata/d2exporter/TestExport/connection/arrowhead.exp.json @@ -89,10 +89,32 @@ "id": "(x -> y)[0]", "src": "x", "srcArrow": "none", - "srcLabel": "If you've done six impossible things before breakfast, why not round it", + "srcLabel": { + "label": "If you've done six impossible things before breakfast, why not round it", + "fontSize": 0, + "fontFamily": "", + "language": "", + "color": "", + "italic": false, + "bold": false, + "underline": false, + "labelWidth": 454, + "labelHeight": 21 + }, "dst": "y", "dstArrow": "filled-diamond", - "dstLabel": "A man with one watch knows what time it is.", + "dstLabel": { + "label": "A man with one watch knows what time it is.", + "fontSize": 0, + "fontFamily": "", + "language": "", + "color": "", + "italic": false, + "bold": false, + "underline": false, + "labelWidth": 289, + "labelHeight": 21 + }, "opacity": 1, "strokeDash": 0, "strokeWidth": 2, diff --git a/testdata/d2exporter/TestExport/connection/basic.exp.json b/testdata/d2exporter/TestExport/connection/basic.exp.json index 1b593419c7..c6d945ff4e 100644 --- a/testdata/d2exporter/TestExport/connection/basic.exp.json +++ b/testdata/d2exporter/TestExport/connection/basic.exp.json @@ -89,10 +89,8 @@ "id": "(x -> y)[0]", "src": "x", "srcArrow": "none", - "srcLabel": "", "dst": "y", "dstArrow": "triangle", - "dstLabel": "", "opacity": 1, "strokeDash": 0, "strokeWidth": 2, diff --git a/testdata/d2exporter/TestExport/connection/stroke-dash.exp.json b/testdata/d2exporter/TestExport/connection/stroke-dash.exp.json index ab53c6edb6..45e0a88785 100644 --- a/testdata/d2exporter/TestExport/connection/stroke-dash.exp.json +++ b/testdata/d2exporter/TestExport/connection/stroke-dash.exp.json @@ -89,10 +89,8 @@ "id": "(x -> y)[0]", "src": "x", "srcArrow": "none", - "srcLabel": "", "dst": "y", "dstArrow": "triangle", - "dstLabel": "", "opacity": 1, "strokeDash": 4, "strokeWidth": 2, diff --git a/testdata/d2exporter/TestExport/connection/theme_stroke-dash.exp.json b/testdata/d2exporter/TestExport/connection/theme_stroke-dash.exp.json index 11619abf4b..ab22cf7855 100644 --- a/testdata/d2exporter/TestExport/connection/theme_stroke-dash.exp.json +++ b/testdata/d2exporter/TestExport/connection/theme_stroke-dash.exp.json @@ -89,10 +89,8 @@ "id": "(x -> y)[0]", "src": "x", "srcArrow": "none", - "srcLabel": "", "dst": "y", "dstArrow": "triangle", - "dstLabel": "", "opacity": 1, "strokeDash": 0, "strokeWidth": 2, @@ -121,10 +119,8 @@ "id": "(x -> y)[1]", "src": "x", "srcArrow": "none", - "srcLabel": "", "dst": "y", "dstArrow": "triangle", - "dstLabel": "", "opacity": 1, "strokeDash": 0, "strokeWidth": 2, diff --git a/testdata/d2exporter/TestExport/label/connection_font_color.exp.json b/testdata/d2exporter/TestExport/label/connection_font_color.exp.json index e2e1d11b07..5b7d8fdfe3 100644 --- a/testdata/d2exporter/TestExport/label/connection_font_color.exp.json +++ b/testdata/d2exporter/TestExport/label/connection_font_color.exp.json @@ -89,10 +89,8 @@ "id": "(x -> y)[0]", "src": "x", "srcArrow": "none", - "srcLabel": "", "dst": "y", "dstArrow": "triangle", - "dstLabel": "", "opacity": 1, "strokeDash": 0, "strokeWidth": 2, diff --git a/testdata/d2exporter/TestExport/shape/sequence_group_position.exp.json b/testdata/d2exporter/TestExport/shape/sequence_group_position.exp.json index a3805aa864..bbdd390b7d 100644 --- a/testdata/d2exporter/TestExport/shape/sequence_group_position.exp.json +++ b/testdata/d2exporter/TestExport/shape/sequence_group_position.exp.json @@ -170,10 +170,8 @@ "id": "hey.(a -> b)[0]", "src": "hey.a", "srcArrow": "none", - "srcLabel": "", "dst": "hey.b", "dstArrow": "triangle", - "dstLabel": "", "opacity": 1, "strokeDash": 0, "strokeWidth": 2, @@ -201,10 +199,8 @@ "id": "(hey.a -- )[0]", "src": "hey.a", "srcArrow": "none", - "srcLabel": "", "dst": "a-lifeline-end-2251863791", "dstArrow": "none", - "dstLabel": "", "opacity": 1, "strokeDash": 6, "strokeWidth": 2, @@ -232,10 +228,8 @@ "id": "(hey.b -- )[0]", "src": "hey.b", "srcArrow": "none", - "srcLabel": "", "dst": "b-lifeline-end-668380428", "dstArrow": "none", - "dstLabel": "", "opacity": 1, "strokeDash": 6, "strokeWidth": 2, diff --git a/testdata/d2exporter/TestExport/theme/connection_with_bold.exp.json b/testdata/d2exporter/TestExport/theme/connection_with_bold.exp.json index 99c9173fca..fedddcdde3 100644 --- a/testdata/d2exporter/TestExport/theme/connection_with_bold.exp.json +++ b/testdata/d2exporter/TestExport/theme/connection_with_bold.exp.json @@ -89,10 +89,8 @@ "id": "(x -> y)[0]", "src": "x", "srcArrow": "none", - "srcLabel": "", "dst": "y", "dstArrow": "triangle", - "dstLabel": "", "opacity": 1, "strokeDash": 0, "strokeWidth": 2, diff --git a/testdata/d2exporter/TestExport/theme/connection_with_italic.exp.json b/testdata/d2exporter/TestExport/theme/connection_with_italic.exp.json index 25f009d62a..46a3f99796 100644 --- a/testdata/d2exporter/TestExport/theme/connection_with_italic.exp.json +++ b/testdata/d2exporter/TestExport/theme/connection_with_italic.exp.json @@ -89,10 +89,8 @@ "id": "(x -> y)[0]", "src": "x", "srcArrow": "none", - "srcLabel": "", "dst": "y", "dstArrow": "triangle", - "dstLabel": "", "opacity": 1, "strokeDash": 0, "strokeWidth": 2, diff --git a/testdata/d2exporter/TestExport/theme/connection_without_italic.exp.json b/testdata/d2exporter/TestExport/theme/connection_without_italic.exp.json index 8aa68f5e59..150de8af83 100644 --- a/testdata/d2exporter/TestExport/theme/connection_without_italic.exp.json +++ b/testdata/d2exporter/TestExport/theme/connection_without_italic.exp.json @@ -89,10 +89,8 @@ "id": "(x -> y)[0]", "src": "x", "srcArrow": "none", - "srcLabel": "", "dst": "y", "dstArrow": "triangle", - "dstLabel": "", "opacity": 1, "strokeDash": 0, "strokeWidth": 2, diff --git a/testdata/d2oracle/TestCreate/container_edge.exp.json b/testdata/d2oracle/TestCreate/container_edge.exp.json index 8b005b24e2..a27ba30572 100644 --- a/testdata/d2oracle/TestCreate/container_edge.exp.json +++ b/testdata/d2oracle/TestCreate/container_edge.exp.json @@ -110,8 +110,6 @@ "edges": [ { "index": 0, - "minWidth": 0, - "minHeight": 0, "isCurve": false, "src_arrow": false, "dst_arrow": true, diff --git a/testdata/d2oracle/TestCreate/container_edge_label.exp.json b/testdata/d2oracle/TestCreate/container_edge_label.exp.json index 75dd4ef515..0a36050a2b 100644 --- a/testdata/d2oracle/TestCreate/container_edge_label.exp.json +++ b/testdata/d2oracle/TestCreate/container_edge_label.exp.json @@ -120,8 +120,6 @@ "edges": [ { "index": 0, - "minWidth": 0, - "minHeight": 0, "isCurve": false, "src_arrow": false, "dst_arrow": true, diff --git a/testdata/d2oracle/TestCreate/edge.exp.json b/testdata/d2oracle/TestCreate/edge.exp.json index 02a120686c..15e79deed4 100644 --- a/testdata/d2oracle/TestCreate/edge.exp.json +++ b/testdata/d2oracle/TestCreate/edge.exp.json @@ -81,8 +81,6 @@ "edges": [ { "index": 0, - "minWidth": 0, - "minHeight": 0, "isCurve": false, "src_arrow": false, "dst_arrow": true, diff --git a/testdata/d2oracle/TestCreate/edge_nested.exp.json b/testdata/d2oracle/TestCreate/edge_nested.exp.json index f8fb740142..f67e5d5296 100644 --- a/testdata/d2oracle/TestCreate/edge_nested.exp.json +++ b/testdata/d2oracle/TestCreate/edge_nested.exp.json @@ -97,8 +97,6 @@ "edges": [ { "index": 0, - "minWidth": 0, - "minHeight": 0, "isCurve": false, "src_arrow": false, "dst_arrow": true, diff --git a/testdata/d2oracle/TestCreate/edge_scope.exp.json b/testdata/d2oracle/TestCreate/edge_scope.exp.json index 5f0141fa50..d6026c51c3 100644 --- a/testdata/d2oracle/TestCreate/edge_scope.exp.json +++ b/testdata/d2oracle/TestCreate/edge_scope.exp.json @@ -110,8 +110,6 @@ "edges": [ { "index": 0, - "minWidth": 0, - "minHeight": 0, "isCurve": false, "src_arrow": false, "dst_arrow": true, diff --git a/testdata/d2oracle/TestCreate/edge_scope_flat.exp.json b/testdata/d2oracle/TestCreate/edge_scope_flat.exp.json index d82d3527c9..c35a7b9bb7 100644 --- a/testdata/d2oracle/TestCreate/edge_scope_flat.exp.json +++ b/testdata/d2oracle/TestCreate/edge_scope_flat.exp.json @@ -110,8 +110,6 @@ "edges": [ { "index": 0, - "minWidth": 0, - "minHeight": 0, "isCurve": false, "src_arrow": false, "dst_arrow": true, diff --git a/testdata/d2oracle/TestCreate/edge_scope_nested.exp.json b/testdata/d2oracle/TestCreate/edge_scope_nested.exp.json index d49acdf7ef..580de558b7 100644 --- a/testdata/d2oracle/TestCreate/edge_scope_nested.exp.json +++ b/testdata/d2oracle/TestCreate/edge_scope_nested.exp.json @@ -121,8 +121,6 @@ "edges": [ { "index": 0, - "minWidth": 0, - "minHeight": 0, "isCurve": false, "src_arrow": false, "dst_arrow": true, diff --git a/testdata/d2oracle/TestCreate/edge_unique.exp.json b/testdata/d2oracle/TestCreate/edge_unique.exp.json index fcbc63dffc..d24660ebe5 100644 --- a/testdata/d2oracle/TestCreate/edge_unique.exp.json +++ b/testdata/d2oracle/TestCreate/edge_unique.exp.json @@ -267,8 +267,6 @@ "edges": [ { "index": 0, - "minWidth": 0, - "minHeight": 0, "isCurve": false, "src_arrow": false, "dst_arrow": true, @@ -301,8 +299,6 @@ }, { "index": 0, - "minWidth": 0, - "minHeight": 0, "isCurve": false, "src_arrow": false, "dst_arrow": true, @@ -335,8 +331,6 @@ }, { "index": 1, - "minWidth": 0, - "minHeight": 0, "isCurve": false, "src_arrow": false, "dst_arrow": true, @@ -369,8 +363,6 @@ }, { "index": 2, - "minWidth": 0, - "minHeight": 0, "isCurve": false, "src_arrow": false, "dst_arrow": true, diff --git a/testdata/d2oracle/TestDelete/arrowhead.exp.json b/testdata/d2oracle/TestDelete/arrowhead.exp.json index 81816d2e2a..e9c9910743 100644 --- a/testdata/d2oracle/TestDelete/arrowhead.exp.json +++ b/testdata/d2oracle/TestDelete/arrowhead.exp.json @@ -81,8 +81,6 @@ "edges": [ { "index": 0, - "minWidth": 0, - "minHeight": 0, "isCurve": false, "src_arrow": false, "dst_arrow": true, diff --git a/testdata/d2oracle/TestDelete/arrowhead_label.exp.json b/testdata/d2oracle/TestDelete/arrowhead_label.exp.json index b54bc8a008..ee16c6be04 100644 --- a/testdata/d2oracle/TestDelete/arrowhead_label.exp.json +++ b/testdata/d2oracle/TestDelete/arrowhead_label.exp.json @@ -131,8 +131,6 @@ "edges": [ { "index": 0, - "minWidth": 0, - "minHeight": 0, "isCurve": false, "src_arrow": false, "dst_arrow": true, diff --git a/testdata/d2oracle/TestDelete/arrowhead_map.exp.json b/testdata/d2oracle/TestDelete/arrowhead_map.exp.json index ca010626bd..148b37cf2b 100644 --- a/testdata/d2oracle/TestDelete/arrowhead_map.exp.json +++ b/testdata/d2oracle/TestDelete/arrowhead_map.exp.json @@ -81,8 +81,6 @@ "edges": [ { "index": 0, - "minWidth": 0, - "minHeight": 0, "isCurve": false, "src_arrow": false, "dst_arrow": true, diff --git a/testdata/d2oracle/TestDelete/arrowhead_shape.exp.json b/testdata/d2oracle/TestDelete/arrowhead_shape.exp.json index d9fc308326..748dc7359f 100644 --- a/testdata/d2oracle/TestDelete/arrowhead_shape.exp.json +++ b/testdata/d2oracle/TestDelete/arrowhead_shape.exp.json @@ -81,8 +81,6 @@ "edges": [ { "index": 0, - "minWidth": 0, - "minHeight": 0, "isCurve": false, "src_arrow": false, "dst_arrow": true, diff --git a/testdata/d2oracle/TestDelete/chaos_1.exp.json b/testdata/d2oracle/TestDelete/chaos_1.exp.json index eced27761b..281f522043 100644 --- a/testdata/d2oracle/TestDelete/chaos_1.exp.json +++ b/testdata/d2oracle/TestDelete/chaos_1.exp.json @@ -272,8 +272,6 @@ "edges": [ { "index": 0, - "minWidth": 0, - "minHeight": 0, "isCurve": false, "src_arrow": true, "srcArrowhead": { diff --git a/testdata/d2oracle/TestDelete/children.exp.json b/testdata/d2oracle/TestDelete/children.exp.json index e5711b2e61..59151d5cad 100644 --- a/testdata/d2oracle/TestDelete/children.exp.json +++ b/testdata/d2oracle/TestDelete/children.exp.json @@ -104,8 +104,6 @@ "edges": [ { "index": 0, - "minWidth": 0, - "minHeight": 0, "isCurve": false, "src_arrow": false, "dst_arrow": true, diff --git a/testdata/d2oracle/TestDelete/children_edge_conflicts.exp.json b/testdata/d2oracle/TestDelete/children_edge_conflicts.exp.json index 5b9115bfa8..577ecc8754 100644 --- a/testdata/d2oracle/TestDelete/children_edge_conflicts.exp.json +++ b/testdata/d2oracle/TestDelete/children_edge_conflicts.exp.json @@ -137,8 +137,6 @@ "edges": [ { "index": 0, - "minWidth": 0, - "minHeight": 0, "isCurve": false, "src_arrow": false, "dst_arrow": true, diff --git a/testdata/d2oracle/TestDelete/children_edges_flat_conflicts.exp.json b/testdata/d2oracle/TestDelete/children_edges_flat_conflicts.exp.json index 2444895177..c04e1106e8 100644 --- a/testdata/d2oracle/TestDelete/children_edges_flat_conflicts.exp.json +++ b/testdata/d2oracle/TestDelete/children_edges_flat_conflicts.exp.json @@ -230,8 +230,6 @@ "edges": [ { "index": 0, - "minWidth": 0, - "minHeight": 0, "isCurve": false, "src_arrow": false, "dst_arrow": true, @@ -264,8 +262,6 @@ }, { "index": 0, - "minWidth": 0, - "minHeight": 0, "isCurve": false, "src_arrow": false, "dst_arrow": true, diff --git a/testdata/d2oracle/TestDelete/children_multiple_conflicts.exp.json b/testdata/d2oracle/TestDelete/children_multiple_conflicts.exp.json index c015486b4d..f1dda9f2b8 100644 --- a/testdata/d2oracle/TestDelete/children_multiple_conflicts.exp.json +++ b/testdata/d2oracle/TestDelete/children_multiple_conflicts.exp.json @@ -206,8 +206,6 @@ "edges": [ { "index": 0, - "minWidth": 0, - "minHeight": 0, "isCurve": false, "src_arrow": false, "dst_arrow": true, diff --git a/testdata/d2oracle/TestDelete/children_scope.exp.json b/testdata/d2oracle/TestDelete/children_scope.exp.json index c5ea795e1c..7557b9508a 100644 --- a/testdata/d2oracle/TestDelete/children_scope.exp.json +++ b/testdata/d2oracle/TestDelete/children_scope.exp.json @@ -144,8 +144,6 @@ "edges": [ { "index": 0, - "minWidth": 0, - "minHeight": 0, "isCurve": false, "src_arrow": false, "dst_arrow": true, diff --git a/testdata/d2oracle/TestDelete/delete_container_of_near.exp.json b/testdata/d2oracle/TestDelete/delete_container_of_near.exp.json index 5f74033bab..f070f1b828 100644 --- a/testdata/d2oracle/TestDelete/delete_container_of_near.exp.json +++ b/testdata/d2oracle/TestDelete/delete_container_of_near.exp.json @@ -490,8 +490,6 @@ "edges": [ { "index": 0, - "minWidth": 0, - "minHeight": 0, "isCurve": false, "src_arrow": false, "dst_arrow": true, @@ -524,8 +522,6 @@ }, { "index": 0, - "minWidth": 0, - "minHeight": 0, "isCurve": false, "src_arrow": false, "dst_arrow": true, @@ -558,8 +554,6 @@ }, { "index": 0, - "minWidth": 0, - "minHeight": 0, "isCurve": false, "src_arrow": false, "dst_arrow": true, @@ -592,8 +586,6 @@ }, { "index": 0, - "minWidth": 0, - "minHeight": 0, "isCurve": false, "src_arrow": false, "dst_arrow": true, @@ -626,8 +618,6 @@ }, { "index": 0, - "minWidth": 0, - "minHeight": 0, "isCurve": false, "src_arrow": false, "dst_arrow": true, @@ -660,8 +650,6 @@ }, { "index": 0, - "minWidth": 0, - "minHeight": 0, "isCurve": false, "src_arrow": false, "dst_arrow": true, @@ -694,8 +682,6 @@ }, { "index": 0, - "minWidth": 0, - "minHeight": 0, "isCurve": false, "src_arrow": false, "dst_arrow": true, @@ -728,8 +714,6 @@ }, { "index": 0, - "minWidth": 0, - "minHeight": 0, "isCurve": false, "src_arrow": false, "dst_arrow": true, @@ -762,8 +746,6 @@ }, { "index": 0, - "minWidth": 0, - "minHeight": 0, "isCurve": false, "src_arrow": false, "dst_arrow": true, diff --git a/testdata/d2oracle/TestDelete/edge-only-style.exp.json b/testdata/d2oracle/TestDelete/edge-only-style.exp.json index ed66a3095b..d933367e3a 100644 --- a/testdata/d2oracle/TestDelete/edge-only-style.exp.json +++ b/testdata/d2oracle/TestDelete/edge-only-style.exp.json @@ -81,8 +81,6 @@ "edges": [ { "index": 0, - "minWidth": 0, - "minHeight": 0, "isCurve": false, "src_arrow": false, "dst_arrow": true, diff --git a/testdata/d2oracle/TestDelete/edge_both_identical_childs.exp.json b/testdata/d2oracle/TestDelete/edge_both_identical_childs.exp.json index 83654da599..6742da8ec6 100644 --- a/testdata/d2oracle/TestDelete/edge_both_identical_childs.exp.json +++ b/testdata/d2oracle/TestDelete/edge_both_identical_childs.exp.json @@ -114,8 +114,6 @@ "edges": [ { "index": 0, - "minWidth": 0, - "minHeight": 0, "isCurve": false, "src_arrow": false, "dst_arrow": true, diff --git a/testdata/d2oracle/TestDelete/edge_common.exp.json b/testdata/d2oracle/TestDelete/edge_common.exp.json index ade4617214..ac36a9a41a 100644 --- a/testdata/d2oracle/TestDelete/edge_common.exp.json +++ b/testdata/d2oracle/TestDelete/edge_common.exp.json @@ -81,8 +81,6 @@ "edges": [ { "index": 0, - "minWidth": 0, - "minHeight": 0, "isCurve": false, "src_arrow": false, "dst_arrow": true, diff --git a/testdata/d2oracle/TestDelete/edge_common_2.exp.json b/testdata/d2oracle/TestDelete/edge_common_2.exp.json index 9785749719..0577b32920 100644 --- a/testdata/d2oracle/TestDelete/edge_common_2.exp.json +++ b/testdata/d2oracle/TestDelete/edge_common_2.exp.json @@ -81,8 +81,6 @@ "edges": [ { "index": 0, - "minWidth": 0, - "minHeight": 0, "isCurve": false, "src_arrow": false, "dst_arrow": true, diff --git a/testdata/d2oracle/TestDelete/edge_conflict.exp.json b/testdata/d2oracle/TestDelete/edge_conflict.exp.json index c0b7d976d6..8a1b3829fe 100644 --- a/testdata/d2oracle/TestDelete/edge_conflict.exp.json +++ b/testdata/d2oracle/TestDelete/edge_conflict.exp.json @@ -126,8 +126,6 @@ "edges": [ { "index": 0, - "minWidth": 0, - "minHeight": 0, "isCurve": false, "src_arrow": false, "dst_arrow": true, diff --git a/testdata/d2oracle/TestDelete/edge_decrement.exp.json b/testdata/d2oracle/TestDelete/edge_decrement.exp.json index 90cadd216a..1eaab9e899 100644 --- a/testdata/d2oracle/TestDelete/edge_decrement.exp.json +++ b/testdata/d2oracle/TestDelete/edge_decrement.exp.json @@ -463,8 +463,6 @@ "edges": [ { "index": 0, - "minWidth": 0, - "minHeight": 0, "isCurve": false, "src_arrow": false, "dst_arrow": true, @@ -500,8 +498,6 @@ }, { "index": 1, - "minWidth": 0, - "minHeight": 0, "isCurve": false, "src_arrow": false, "dst_arrow": true, @@ -537,8 +533,6 @@ }, { "index": 2, - "minWidth": 0, - "minHeight": 0, "isCurve": false, "src_arrow": false, "dst_arrow": true, @@ -574,8 +568,6 @@ }, { "index": 3, - "minWidth": 0, - "minHeight": 0, "isCurve": false, "src_arrow": false, "dst_arrow": true, diff --git a/testdata/d2oracle/TestDelete/edge_first.exp.json b/testdata/d2oracle/TestDelete/edge_first.exp.json index 68b64b98c5..2d55e252c9 100644 --- a/testdata/d2oracle/TestDelete/edge_first.exp.json +++ b/testdata/d2oracle/TestDelete/edge_first.exp.json @@ -192,8 +192,6 @@ "edges": [ { "index": 0, - "minWidth": 0, - "minHeight": 0, "isCurve": false, "src_arrow": false, "dst_arrow": true, @@ -226,8 +224,6 @@ }, { "index": 0, - "minWidth": 0, - "minHeight": 0, "isCurve": false, "src_arrow": false, "dst_arrow": true, diff --git a/testdata/d2oracle/TestDelete/edge_identical_child.exp.json b/testdata/d2oracle/TestDelete/edge_identical_child.exp.json index 7f58df1f5c..64b346930a 100644 --- a/testdata/d2oracle/TestDelete/edge_identical_child.exp.json +++ b/testdata/d2oracle/TestDelete/edge_identical_child.exp.json @@ -114,8 +114,6 @@ "edges": [ { "index": 0, - "minWidth": 0, - "minHeight": 0, "isCurve": false, "src_arrow": false, "dst_arrow": true, diff --git a/testdata/d2oracle/TestDelete/edge_key_style.exp.json b/testdata/d2oracle/TestDelete/edge_key_style.exp.json index b09fedf920..b0339c5b1a 100644 --- a/testdata/d2oracle/TestDelete/edge_key_style.exp.json +++ b/testdata/d2oracle/TestDelete/edge_key_style.exp.json @@ -81,8 +81,6 @@ "edges": [ { "index": 0, - "minWidth": 0, - "minHeight": 0, "isCurve": false, "src_arrow": false, "dst_arrow": true, diff --git a/testdata/d2oracle/TestDelete/edge_last.exp.json b/testdata/d2oracle/TestDelete/edge_last.exp.json index e9e6a4e2e8..116cd398ec 100644 --- a/testdata/d2oracle/TestDelete/edge_last.exp.json +++ b/testdata/d2oracle/TestDelete/edge_last.exp.json @@ -229,8 +229,6 @@ "edges": [ { "index": 0, - "minWidth": 0, - "minHeight": 0, "isCurve": false, "src_arrow": false, "dst_arrow": true, @@ -263,8 +261,6 @@ }, { "index": 0, - "minWidth": 0, - "minHeight": 0, "isCurve": false, "src_arrow": false, "dst_arrow": true, @@ -297,8 +293,6 @@ }, { "index": 0, - "minWidth": 0, - "minHeight": 0, "isCurve": false, "src_arrow": false, "dst_arrow": true, diff --git a/testdata/d2oracle/TestDelete/edge_map_style.exp.json b/testdata/d2oracle/TestDelete/edge_map_style.exp.json index be76a5e4a5..b34908eab3 100644 --- a/testdata/d2oracle/TestDelete/edge_map_style.exp.json +++ b/testdata/d2oracle/TestDelete/edge_map_style.exp.json @@ -81,8 +81,6 @@ "edges": [ { "index": 0, - "minWidth": 0, - "minHeight": 0, "isCurve": false, "src_arrow": false, "dst_arrow": true, diff --git a/testdata/d2oracle/TestDelete/edge_middle.exp.json b/testdata/d2oracle/TestDelete/edge_middle.exp.json index 05ce75c8b9..5b25a1b51b 100644 --- a/testdata/d2oracle/TestDelete/edge_middle.exp.json +++ b/testdata/d2oracle/TestDelete/edge_middle.exp.json @@ -215,8 +215,6 @@ "edges": [ { "index": 0, - "minWidth": 0, - "minHeight": 0, "isCurve": false, "src_arrow": false, "dst_arrow": true, @@ -249,8 +247,6 @@ }, { "index": 0, - "minWidth": 0, - "minHeight": 0, "isCurve": false, "src_arrow": false, "dst_arrow": true, @@ -283,8 +279,6 @@ }, { "index": 0, - "minWidth": 0, - "minHeight": 0, "isCurve": false, "src_arrow": false, "dst_arrow": true, diff --git a/testdata/d2oracle/TestDelete/flat_reserved.exp.json b/testdata/d2oracle/TestDelete/flat_reserved.exp.json index 20cc351b0f..08ee89d3dd 100644 --- a/testdata/d2oracle/TestDelete/flat_reserved.exp.json +++ b/testdata/d2oracle/TestDelete/flat_reserved.exp.json @@ -81,8 +81,6 @@ "edges": [ { "index": 0, - "minWidth": 0, - "minHeight": 0, "isCurve": false, "src_arrow": false, "dst_arrow": true, diff --git a/testdata/d2oracle/TestDelete/hoist_edge_children.exp.json b/testdata/d2oracle/TestDelete/hoist_edge_children.exp.json index 7e25bca9b8..20fbe284ec 100644 --- a/testdata/d2oracle/TestDelete/hoist_edge_children.exp.json +++ b/testdata/d2oracle/TestDelete/hoist_edge_children.exp.json @@ -104,8 +104,6 @@ "edges": [ { "index": 0, - "minWidth": 0, - "minHeight": 0, "isCurve": false, "src_arrow": false, "dst_arrow": true, diff --git a/testdata/d2oracle/TestDelete/nested_edge_key_style.exp.json b/testdata/d2oracle/TestDelete/nested_edge_key_style.exp.json index 728da23e18..d19aea41f9 100644 --- a/testdata/d2oracle/TestDelete/nested_edge_key_style.exp.json +++ b/testdata/d2oracle/TestDelete/nested_edge_key_style.exp.json @@ -110,8 +110,6 @@ "edges": [ { "index": 0, - "minWidth": 0, - "minHeight": 0, "isCurve": false, "src_arrow": false, "dst_arrow": true, diff --git a/testdata/d2oracle/TestDelete/node_in_edge.exp.json b/testdata/d2oracle/TestDelete/node_in_edge.exp.json index 7d059da59c..691e5ab52d 100644 --- a/testdata/d2oracle/TestDelete/node_in_edge.exp.json +++ b/testdata/d2oracle/TestDelete/node_in_edge.exp.json @@ -179,8 +179,6 @@ "edges": [ { "index": 0, - "minWidth": 0, - "minHeight": 0, "isCurve": false, "src_arrow": false, "dst_arrow": true, @@ -213,8 +211,6 @@ }, { "index": 0, - "minWidth": 0, - "minHeight": 0, "isCurve": false, "src_arrow": false, "dst_arrow": true, diff --git a/testdata/d2oracle/TestDelete/node_in_edge_last.exp.json b/testdata/d2oracle/TestDelete/node_in_edge_last.exp.json index 99f91daa81..8dc6bd161d 100644 --- a/testdata/d2oracle/TestDelete/node_in_edge_last.exp.json +++ b/testdata/d2oracle/TestDelete/node_in_edge_last.exp.json @@ -218,8 +218,6 @@ "edges": [ { "index": 0, - "minWidth": 0, - "minHeight": 0, "isCurve": false, "src_arrow": false, "dst_arrow": true, @@ -252,8 +250,6 @@ }, { "index": 0, - "minWidth": 0, - "minHeight": 0, "isCurve": false, "src_arrow": false, "dst_arrow": true, @@ -286,8 +282,6 @@ }, { "index": 0, - "minWidth": 0, - "minHeight": 0, "isCurve": false, "src_arrow": false, "dst_arrow": true, diff --git a/testdata/d2oracle/TestDelete/only_delete_edge_reserved.exp.json b/testdata/d2oracle/TestDelete/only_delete_edge_reserved.exp.json index e2f9b54b83..fdbb6c2d5f 100644 --- a/testdata/d2oracle/TestDelete/only_delete_edge_reserved.exp.json +++ b/testdata/d2oracle/TestDelete/only_delete_edge_reserved.exp.json @@ -177,8 +177,6 @@ "edges": [ { "index": 0, - "minWidth": 0, - "minHeight": 0, "isCurve": false, "src_arrow": false, "dst_arrow": true, diff --git a/testdata/d2oracle/TestDelete/only_delete_obj_reserved.exp.json b/testdata/d2oracle/TestDelete/only_delete_obj_reserved.exp.json index e90f0b5845..34ac25510f 100644 --- a/testdata/d2oracle/TestDelete/only_delete_obj_reserved.exp.json +++ b/testdata/d2oracle/TestDelete/only_delete_obj_reserved.exp.json @@ -177,8 +177,6 @@ "edges": [ { "index": 0, - "minWidth": 0, - "minHeight": 0, "isCurve": false, "src_arrow": false, "dst_arrow": true, diff --git a/testdata/d2oracle/TestDelete/order_1.exp.json b/testdata/d2oracle/TestDelete/order_1.exp.json index 1acaa992d0..11726ededc 100644 --- a/testdata/d2oracle/TestDelete/order_1.exp.json +++ b/testdata/d2oracle/TestDelete/order_1.exp.json @@ -104,8 +104,6 @@ "edges": [ { "index": 0, - "minWidth": 0, - "minHeight": 0, "isCurve": false, "src_arrow": false, "dst_arrow": true, diff --git a/testdata/d2oracle/TestDelete/order_5.exp.json b/testdata/d2oracle/TestDelete/order_5.exp.json index dbfaa32825..144fd9070c 100644 --- a/testdata/d2oracle/TestDelete/order_5.exp.json +++ b/testdata/d2oracle/TestDelete/order_5.exp.json @@ -156,8 +156,6 @@ "edges": [ { "index": 0, - "minWidth": 0, - "minHeight": 0, "isCurve": false, "src_arrow": false, "dst_arrow": true, @@ -190,8 +188,6 @@ }, { "index": 0, - "minWidth": 0, - "minHeight": 0, "isCurve": false, "src_arrow": false, "dst_arrow": true, diff --git a/testdata/d2oracle/TestDelete/shape_sql_table.exp.json b/testdata/d2oracle/TestDelete/shape_sql_table.exp.json index 6c0ddfa0d7..7b51e91f9e 100644 --- a/testdata/d2oracle/TestDelete/shape_sql_table.exp.json +++ b/testdata/d2oracle/TestDelete/shape_sql_table.exp.json @@ -278,8 +278,6 @@ "edges": [ { "index": 0, - "minWidth": 0, - "minHeight": 0, "isCurve": false, "src_arrow": false, "dst_arrow": true, diff --git a/testdata/d2oracle/TestDelete/underscore_remove.exp.json b/testdata/d2oracle/TestDelete/underscore_remove.exp.json index 63e2e787cc..d05524d740 100644 --- a/testdata/d2oracle/TestDelete/underscore_remove.exp.json +++ b/testdata/d2oracle/TestDelete/underscore_remove.exp.json @@ -150,8 +150,6 @@ "edges": [ { "index": 0, - "minWidth": 0, - "minHeight": 0, "isCurve": false, "src_arrow": false, "dst_arrow": true, @@ -184,8 +182,6 @@ }, { "index": 0, - "minWidth": 0, - "minHeight": 0, "isCurve": false, "src_arrow": false, "dst_arrow": true, diff --git a/testdata/d2oracle/TestMove/chain_connected_nested.exp.json b/testdata/d2oracle/TestMove/chain_connected_nested.exp.json index a8e1d66a97..031cbc070a 100644 --- a/testdata/d2oracle/TestMove/chain_connected_nested.exp.json +++ b/testdata/d2oracle/TestMove/chain_connected_nested.exp.json @@ -141,8 +141,6 @@ "edges": [ { "index": 0, - "minWidth": 0, - "minHeight": 0, "isCurve": false, "src_arrow": false, "dst_arrow": true, @@ -175,8 +173,6 @@ }, { "index": 0, - "minWidth": 0, - "minHeight": 0, "isCurve": false, "src_arrow": false, "dst_arrow": true, diff --git a/testdata/d2oracle/TestMove/chain_connected_nested_no_extra_create.exp.json b/testdata/d2oracle/TestMove/chain_connected_nested_no_extra_create.exp.json index fcbc50886b..5810e288e6 100644 --- a/testdata/d2oracle/TestMove/chain_connected_nested_no_extra_create.exp.json +++ b/testdata/d2oracle/TestMove/chain_connected_nested_no_extra_create.exp.json @@ -129,8 +129,6 @@ "edges": [ { "index": 0, - "minWidth": 0, - "minHeight": 0, "isCurve": false, "src_arrow": false, "dst_arrow": true, @@ -163,8 +161,6 @@ }, { "index": 0, - "minWidth": 0, - "minHeight": 0, "isCurve": false, "src_arrow": false, "dst_arrow": true, diff --git a/testdata/d2oracle/TestMove/connected_nested.exp.json b/testdata/d2oracle/TestMove/connected_nested.exp.json index 8bf599ce57..de374c82fc 100644 --- a/testdata/d2oracle/TestMove/connected_nested.exp.json +++ b/testdata/d2oracle/TestMove/connected_nested.exp.json @@ -104,8 +104,6 @@ "edges": [ { "index": 0, - "minWidth": 0, - "minHeight": 0, "isCurve": false, "src_arrow": false, "dst_arrow": true, diff --git a/testdata/d2oracle/TestMove/edge_across_containers.exp.json b/testdata/d2oracle/TestMove/edge_across_containers.exp.json index 0047584fcc..bc9126e8a5 100644 --- a/testdata/d2oracle/TestMove/edge_across_containers.exp.json +++ b/testdata/d2oracle/TestMove/edge_across_containers.exp.json @@ -155,8 +155,6 @@ "edges": [ { "index": 0, - "minWidth": 0, - "minHeight": 0, "isCurve": false, "src_arrow": false, "dst_arrow": true, diff --git a/testdata/d2oracle/TestMove/edge_basic.exp.json b/testdata/d2oracle/TestMove/edge_basic.exp.json index 9a7418efb8..c8b1532731 100644 --- a/testdata/d2oracle/TestMove/edge_basic.exp.json +++ b/testdata/d2oracle/TestMove/edge_basic.exp.json @@ -81,8 +81,6 @@ "edges": [ { "index": 0, - "minWidth": 0, - "minHeight": 0, "isCurve": false, "src_arrow": false, "dst_arrow": true, diff --git a/testdata/d2oracle/TestMove/edge_chain_basic.exp.json b/testdata/d2oracle/TestMove/edge_chain_basic.exp.json index 63ece0733a..ce721c308d 100644 --- a/testdata/d2oracle/TestMove/edge_chain_basic.exp.json +++ b/testdata/d2oracle/TestMove/edge_chain_basic.exp.json @@ -118,8 +118,6 @@ "edges": [ { "index": 0, - "minWidth": 0, - "minHeight": 0, "isCurve": false, "src_arrow": false, "dst_arrow": true, @@ -152,8 +150,6 @@ }, { "index": 0, - "minWidth": 0, - "minHeight": 0, "isCurve": false, "src_arrow": false, "dst_arrow": true, diff --git a/testdata/d2oracle/TestMove/edge_chain_circular.exp.json b/testdata/d2oracle/TestMove/edge_chain_circular.exp.json index 4af629bf7a..653ab7d08f 100644 --- a/testdata/d2oracle/TestMove/edge_chain_circular.exp.json +++ b/testdata/d2oracle/TestMove/edge_chain_circular.exp.json @@ -169,8 +169,6 @@ "edges": [ { "index": 0, - "minWidth": 0, - "minHeight": 0, "isCurve": false, "src_arrow": false, "dst_arrow": true, @@ -203,8 +201,6 @@ }, { "index": 0, - "minWidth": 0, - "minHeight": 0, "isCurve": false, "src_arrow": false, "dst_arrow": true, diff --git a/testdata/d2oracle/TestMove/edge_chain_into_container.exp.json b/testdata/d2oracle/TestMove/edge_chain_into_container.exp.json index 22a8fcbb52..d49f6a4478 100644 --- a/testdata/d2oracle/TestMove/edge_chain_into_container.exp.json +++ b/testdata/d2oracle/TestMove/edge_chain_into_container.exp.json @@ -152,8 +152,6 @@ "edges": [ { "index": 0, - "minWidth": 0, - "minHeight": 0, "isCurve": false, "src_arrow": false, "dst_arrow": true, @@ -186,8 +184,6 @@ }, { "index": 0, - "minWidth": 0, - "minHeight": 0, "isCurve": false, "src_arrow": false, "dst_arrow": true, diff --git a/testdata/d2oracle/TestMove/edge_chain_out_container.exp.json b/testdata/d2oracle/TestMove/edge_chain_out_container.exp.json index 2e52339132..5756753518 100644 --- a/testdata/d2oracle/TestMove/edge_chain_out_container.exp.json +++ b/testdata/d2oracle/TestMove/edge_chain_out_container.exp.json @@ -169,8 +169,6 @@ "edges": [ { "index": 0, - "minWidth": 0, - "minHeight": 0, "isCurve": false, "src_arrow": false, "dst_arrow": true, @@ -203,8 +201,6 @@ }, { "index": 0, - "minWidth": 0, - "minHeight": 0, "isCurve": false, "src_arrow": false, "dst_arrow": true, diff --git a/testdata/d2oracle/TestMove/edge_conflict.exp.json b/testdata/d2oracle/TestMove/edge_conflict.exp.json index 0b6151c725..a908608d3c 100644 --- a/testdata/d2oracle/TestMove/edge_conflict.exp.json +++ b/testdata/d2oracle/TestMove/edge_conflict.exp.json @@ -155,8 +155,6 @@ "edges": [ { "index": 0, - "minWidth": 0, - "minHeight": 0, "isCurve": false, "src_arrow": false, "dst_arrow": true, diff --git a/testdata/d2oracle/TestMove/edge_into_container.exp.json b/testdata/d2oracle/TestMove/edge_into_container.exp.json index 67f114ab85..8c1cfb37ab 100644 --- a/testdata/d2oracle/TestMove/edge_into_container.exp.json +++ b/testdata/d2oracle/TestMove/edge_into_container.exp.json @@ -144,8 +144,6 @@ "edges": [ { "index": 0, - "minWidth": 0, - "minHeight": 0, "isCurve": false, "src_arrow": false, "dst_arrow": true, diff --git a/testdata/d2oracle/TestMove/edge_nested_basic.exp.json b/testdata/d2oracle/TestMove/edge_nested_basic.exp.json index 2871ff860d..24a4ba70eb 100644 --- a/testdata/d2oracle/TestMove/edge_nested_basic.exp.json +++ b/testdata/d2oracle/TestMove/edge_nested_basic.exp.json @@ -110,8 +110,6 @@ "edges": [ { "index": 0, - "minWidth": 0, - "minHeight": 0, "isCurve": false, "src_arrow": false, "dst_arrow": true, diff --git a/testdata/d2oracle/TestMove/edge_out_of_container.exp.json b/testdata/d2oracle/TestMove/edge_out_of_container.exp.json index 669aa339f6..fbf01a18f5 100644 --- a/testdata/d2oracle/TestMove/edge_out_of_container.exp.json +++ b/testdata/d2oracle/TestMove/edge_out_of_container.exp.json @@ -121,8 +121,6 @@ "edges": [ { "index": 0, - "minWidth": 0, - "minHeight": 0, "isCurve": false, "src_arrow": false, "dst_arrow": true, diff --git a/testdata/d2oracle/TestMove/full_edge_slice.exp.json b/testdata/d2oracle/TestMove/full_edge_slice.exp.json index eb16a82e37..9ae346bc4a 100644 --- a/testdata/d2oracle/TestMove/full_edge_slice.exp.json +++ b/testdata/d2oracle/TestMove/full_edge_slice.exp.json @@ -224,8 +224,6 @@ "edges": [ { "index": 0, - "minWidth": 0, - "minHeight": 0, "isCurve": false, "src_arrow": false, "dst_arrow": true, @@ -258,8 +256,6 @@ }, { "index": 1, - "minWidth": 0, - "minHeight": 0, "isCurve": false, "src_arrow": false, "dst_arrow": true, diff --git a/testdata/d2oracle/TestMove/gnarly_1.exp.json b/testdata/d2oracle/TestMove/gnarly_1.exp.json index 13f0fd0da4..7f572e4476 100644 --- a/testdata/d2oracle/TestMove/gnarly_1.exp.json +++ b/testdata/d2oracle/TestMove/gnarly_1.exp.json @@ -368,8 +368,6 @@ "edges": [ { "index": 0, - "minWidth": 0, - "minHeight": 0, "isCurve": false, "src_arrow": false, "dst_arrow": true, @@ -402,8 +400,6 @@ }, { "index": 0, - "minWidth": 0, - "minHeight": 0, "isCurve": false, "src_arrow": false, "dst_arrow": true, @@ -436,8 +432,6 @@ }, { "index": 0, - "minWidth": 0, - "minHeight": 0, "isCurve": false, "src_arrow": false, "dst_arrow": true, diff --git a/testdata/d2oracle/TestMove/middle_container_generated_conflict.exp.json b/testdata/d2oracle/TestMove/middle_container_generated_conflict.exp.json index fef4ad059e..a309e0c34d 100644 --- a/testdata/d2oracle/TestMove/middle_container_generated_conflict.exp.json +++ b/testdata/d2oracle/TestMove/middle_container_generated_conflict.exp.json @@ -304,8 +304,6 @@ "edges": [ { "index": 0, - "minWidth": 0, - "minHeight": 0, "isCurve": false, "src_arrow": false, "dst_arrow": true, @@ -338,8 +336,6 @@ }, { "index": 0, - "minWidth": 0, - "minHeight": 0, "isCurve": false, "src_arrow": false, "dst_arrow": true, diff --git a/testdata/d2oracle/TestMove/move_out_of_edge.exp.json b/testdata/d2oracle/TestMove/move_out_of_edge.exp.json index ce5452469b..a8f68bf180 100644 --- a/testdata/d2oracle/TestMove/move_out_of_edge.exp.json +++ b/testdata/d2oracle/TestMove/move_out_of_edge.exp.json @@ -137,8 +137,6 @@ "edges": [ { "index": 0, - "minWidth": 0, - "minHeight": 0, "isCurve": false, "src_arrow": false, "dst_arrow": true, diff --git a/testdata/d2oracle/TestMove/move_out_of_nested_edge.exp.json b/testdata/d2oracle/TestMove/move_out_of_nested_edge.exp.json index 0523597efb..45411b8f5d 100644 --- a/testdata/d2oracle/TestMove/move_out_of_nested_edge.exp.json +++ b/testdata/d2oracle/TestMove/move_out_of_nested_edge.exp.json @@ -177,8 +177,6 @@ "edges": [ { "index": 0, - "minWidth": 0, - "minHeight": 0, "isCurve": false, "src_arrow": false, "dst_arrow": true, diff --git a/testdata/d2oracle/TestMove/nhooyr_two.exp.json b/testdata/d2oracle/TestMove/nhooyr_two.exp.json index 23803a2ec8..3faa27f089 100644 --- a/testdata/d2oracle/TestMove/nhooyr_two.exp.json +++ b/testdata/d2oracle/TestMove/nhooyr_two.exp.json @@ -185,8 +185,6 @@ "edges": [ { "index": 0, - "minWidth": 0, - "minHeight": 0, "isCurve": false, "src_arrow": false, "dst_arrow": true, diff --git a/testdata/d2oracle/TestMove/parentheses.exp.json b/testdata/d2oracle/TestMove/parentheses.exp.json index a588bcc9e6..d59d54b5fc 100644 --- a/testdata/d2oracle/TestMove/parentheses.exp.json +++ b/testdata/d2oracle/TestMove/parentheses.exp.json @@ -120,8 +120,6 @@ "edges": [ { "index": 0, - "minWidth": 0, - "minHeight": 0, "isCurve": false, "src_arrow": false, "dst_arrow": true, diff --git a/testdata/d2oracle/TestMove/partial_edge_slice.exp.json b/testdata/d2oracle/TestMove/partial_edge_slice.exp.json index 7f1c0632a7..aee09a3491 100644 --- a/testdata/d2oracle/TestMove/partial_edge_slice.exp.json +++ b/testdata/d2oracle/TestMove/partial_edge_slice.exp.json @@ -127,8 +127,6 @@ "edges": [ { "index": 0, - "minWidth": 0, - "minHeight": 0, "isCurve": false, "src_arrow": false, "dst_arrow": true, diff --git a/testdata/d2oracle/TestMove/underscore-connection.exp.json b/testdata/d2oracle/TestMove/underscore-connection.exp.json index ed3dadacd3..45a2ba38c4 100644 --- a/testdata/d2oracle/TestMove/underscore-connection.exp.json +++ b/testdata/d2oracle/TestMove/underscore-connection.exp.json @@ -229,8 +229,6 @@ "edges": [ { "index": 0, - "minWidth": 0, - "minHeight": 0, "isCurve": false, "src_arrow": false, "dst_arrow": true, diff --git a/testdata/d2oracle/TestMove/underscore_edge_children.exp.json b/testdata/d2oracle/TestMove/underscore_edge_children.exp.json index f484a07452..720b01ae2b 100644 --- a/testdata/d2oracle/TestMove/underscore_edge_children.exp.json +++ b/testdata/d2oracle/TestMove/underscore_edge_children.exp.json @@ -144,8 +144,6 @@ "edges": [ { "index": 0, - "minWidth": 0, - "minHeight": 0, "isCurve": false, "src_arrow": false, "dst_arrow": true, diff --git a/testdata/d2oracle/TestMove/underscore_edge_container_1.exp.json b/testdata/d2oracle/TestMove/underscore_edge_container_1.exp.json index bf103735e9..7c6bb74522 100644 --- a/testdata/d2oracle/TestMove/underscore_edge_container_1.exp.json +++ b/testdata/d2oracle/TestMove/underscore_edge_container_1.exp.json @@ -110,8 +110,6 @@ "edges": [ { "index": 0, - "minWidth": 0, - "minHeight": 0, "isCurve": false, "src_arrow": false, "dst_arrow": true, diff --git a/testdata/d2oracle/TestMove/underscore_edge_container_2.exp.json b/testdata/d2oracle/TestMove/underscore_edge_container_2.exp.json index 6bf4f6042c..6c97bcbec1 100644 --- a/testdata/d2oracle/TestMove/underscore_edge_container_2.exp.json +++ b/testdata/d2oracle/TestMove/underscore_edge_container_2.exp.json @@ -121,8 +121,6 @@ "edges": [ { "index": 0, - "minWidth": 0, - "minHeight": 0, "isCurve": false, "src_arrow": false, "dst_arrow": true, diff --git a/testdata/d2oracle/TestMove/underscore_edge_container_3.exp.json b/testdata/d2oracle/TestMove/underscore_edge_container_3.exp.json index 31935a6384..daa84062c3 100644 --- a/testdata/d2oracle/TestMove/underscore_edge_container_3.exp.json +++ b/testdata/d2oracle/TestMove/underscore_edge_container_3.exp.json @@ -121,8 +121,6 @@ "edges": [ { "index": 0, - "minWidth": 0, - "minHeight": 0, "isCurve": false, "src_arrow": false, "dst_arrow": true, diff --git a/testdata/d2oracle/TestMove/underscore_edge_container_4.exp.json b/testdata/d2oracle/TestMove/underscore_edge_container_4.exp.json index c1f83bbb1a..66b9b06c84 100644 --- a/testdata/d2oracle/TestMove/underscore_edge_container_4.exp.json +++ b/testdata/d2oracle/TestMove/underscore_edge_container_4.exp.json @@ -110,8 +110,6 @@ "edges": [ { "index": 0, - "minWidth": 0, - "minHeight": 0, "isCurve": false, "src_arrow": false, "dst_arrow": true, diff --git a/testdata/d2oracle/TestMove/underscore_edge_container_5.exp.json b/testdata/d2oracle/TestMove/underscore_edge_container_5.exp.json index 36afc1bbe8..7b1a4901de 100644 --- a/testdata/d2oracle/TestMove/underscore_edge_container_5.exp.json +++ b/testdata/d2oracle/TestMove/underscore_edge_container_5.exp.json @@ -143,8 +143,6 @@ "edges": [ { "index": 0, - "minWidth": 0, - "minHeight": 0, "isCurve": false, "src_arrow": false, "dst_arrow": true, diff --git a/testdata/d2oracle/TestMove/underscore_edge_split.exp.json b/testdata/d2oracle/TestMove/underscore_edge_split.exp.json index 6db40bb9e3..777d6ba3e6 100644 --- a/testdata/d2oracle/TestMove/underscore_edge_split.exp.json +++ b/testdata/d2oracle/TestMove/underscore_edge_split.exp.json @@ -173,8 +173,6 @@ "edges": [ { "index": 0, - "minWidth": 0, - "minHeight": 0, "isCurve": false, "src_arrow": false, "dst_arrow": true, diff --git a/testdata/d2oracle/TestMove/unique_name_with_references.exp.json b/testdata/d2oracle/TestMove/unique_name_with_references.exp.json index 7513e8cb0f..5047979878 100644 --- a/testdata/d2oracle/TestMove/unique_name_with_references.exp.json +++ b/testdata/d2oracle/TestMove/unique_name_with_references.exp.json @@ -190,8 +190,6 @@ "edges": [ { "index": 0, - "minWidth": 0, - "minHeight": 0, "isCurve": false, "src_arrow": false, "dst_arrow": true, diff --git a/testdata/d2oracle/TestRename/arrows.exp.json b/testdata/d2oracle/TestRename/arrows.exp.json index 9adb2e55fd..65601ceb24 100644 --- a/testdata/d2oracle/TestRename/arrows.exp.json +++ b/testdata/d2oracle/TestRename/arrows.exp.json @@ -81,8 +81,6 @@ "edges": [ { "index": 0, - "minWidth": 0, - "minHeight": 0, "isCurve": false, "src_arrow": true, "dst_arrow": false, diff --git a/testdata/d2oracle/TestRename/arrows_chain.exp.json b/testdata/d2oracle/TestRename/arrows_chain.exp.json index 7fa2bce4af..ebbc0754cf 100644 --- a/testdata/d2oracle/TestRename/arrows_chain.exp.json +++ b/testdata/d2oracle/TestRename/arrows_chain.exp.json @@ -155,8 +155,6 @@ "edges": [ { "index": 0, - "minWidth": 0, - "minHeight": 0, "isCurve": false, "src_arrow": true, "dst_arrow": true, @@ -189,8 +187,6 @@ }, { "index": 0, - "minWidth": 0, - "minHeight": 0, "isCurve": false, "src_arrow": false, "dst_arrow": true, @@ -223,8 +219,6 @@ }, { "index": 0, - "minWidth": 0, - "minHeight": 0, "isCurve": false, "src_arrow": false, "dst_arrow": true, diff --git a/testdata/d2oracle/TestRename/arrows_complex.exp.json b/testdata/d2oracle/TestRename/arrows_complex.exp.json index d7f1136dc4..92260d2213 100644 --- a/testdata/d2oracle/TestRename/arrows_complex.exp.json +++ b/testdata/d2oracle/TestRename/arrows_complex.exp.json @@ -135,8 +135,6 @@ "edges": [ { "index": 0, - "minWidth": 0, - "minHeight": 0, "isCurve": false, "src_arrow": true, "dst_arrow": true, diff --git a/testdata/d2oracle/TestRename/arrows_trim_common.exp.json b/testdata/d2oracle/TestRename/arrows_trim_common.exp.json index 90bf18a1b7..bda0cfb12b 100644 --- a/testdata/d2oracle/TestRename/arrows_trim_common.exp.json +++ b/testdata/d2oracle/TestRename/arrows_trim_common.exp.json @@ -171,8 +171,6 @@ "edges": [ { "index": 0, - "minWidth": 0, - "minHeight": 0, "isCurve": false, "src_arrow": true, "dst_arrow": true, @@ -205,8 +203,6 @@ }, { "index": 0, - "minWidth": 0, - "minHeight": 0, "isCurve": false, "src_arrow": false, "dst_arrow": true, @@ -239,8 +235,6 @@ }, { "index": 0, - "minWidth": 0, - "minHeight": 0, "isCurve": false, "src_arrow": false, "dst_arrow": true, diff --git a/testdata/d2oracle/TestRename/arrows_trim_common_2.exp.json b/testdata/d2oracle/TestRename/arrows_trim_common_2.exp.json index 7411ddeccc..d5603eef64 100644 --- a/testdata/d2oracle/TestRename/arrows_trim_common_2.exp.json +++ b/testdata/d2oracle/TestRename/arrows_trim_common_2.exp.json @@ -221,8 +221,6 @@ "edges": [ { "index": 0, - "minWidth": 0, - "minHeight": 0, "isCurve": false, "src_arrow": true, "dst_arrow": true, @@ -255,8 +253,6 @@ }, { "index": 0, - "minWidth": 0, - "minHeight": 0, "isCurve": false, "src_arrow": false, "dst_arrow": true, @@ -289,8 +285,6 @@ }, { "index": 0, - "minWidth": 0, - "minHeight": 0, "isCurve": false, "src_arrow": false, "dst_arrow": true, diff --git a/testdata/d2oracle/TestRename/complex_edge_1.exp.json b/testdata/d2oracle/TestRename/complex_edge_1.exp.json index c344c37b20..1fb5764c42 100644 --- a/testdata/d2oracle/TestRename/complex_edge_1.exp.json +++ b/testdata/d2oracle/TestRename/complex_edge_1.exp.json @@ -135,8 +135,6 @@ "edges": [ { "index": 0, - "minWidth": 0, - "minHeight": 0, "isCurve": false, "src_arrow": false, "dst_arrow": true, diff --git a/testdata/d2oracle/TestRename/complex_edge_2.exp.json b/testdata/d2oracle/TestRename/complex_edge_2.exp.json index 4ed72d8957..d060f7c14a 100644 --- a/testdata/d2oracle/TestRename/complex_edge_2.exp.json +++ b/testdata/d2oracle/TestRename/complex_edge_2.exp.json @@ -135,8 +135,6 @@ "edges": [ { "index": 0, - "minWidth": 0, - "minHeight": 0, "isCurve": false, "src_arrow": false, "dst_arrow": true, diff --git a/testdata/d2oracle/TestRename/container.exp.json b/testdata/d2oracle/TestRename/container.exp.json index e651cdfe29..830fb8025b 100644 --- a/testdata/d2oracle/TestRename/container.exp.json +++ b/testdata/d2oracle/TestRename/container.exp.json @@ -760,8 +760,6 @@ "edges": [ { "index": 0, - "minWidth": 0, - "minHeight": 0, "isCurve": false, "src_arrow": false, "dst_arrow": true, @@ -797,8 +795,6 @@ }, { "index": 0, - "minWidth": 0, - "minHeight": 0, "isCurve": false, "src_arrow": false, "dst_arrow": true, @@ -831,8 +827,6 @@ }, { "index": 0, - "minWidth": 0, - "minHeight": 0, "isCurve": false, "src_arrow": false, "dst_arrow": true, @@ -865,8 +859,6 @@ }, { "index": 0, - "minWidth": 0, - "minHeight": 0, "isCurve": false, "src_arrow": false, "dst_arrow": true, @@ -899,8 +891,6 @@ }, { "index": 0, - "minWidth": 0, - "minHeight": 0, "isCurve": false, "src_arrow": false, "dst_arrow": true, @@ -933,8 +923,6 @@ }, { "index": 0, - "minWidth": 0, - "minHeight": 0, "isCurve": false, "src_arrow": false, "dst_arrow": true, @@ -967,8 +955,6 @@ }, { "index": 0, - "minWidth": 0, - "minHeight": 0, "isCurve": false, "src_arrow": false, "dst_arrow": true, diff --git a/testdata/d2oracle/TestRename/edges.exp.json b/testdata/d2oracle/TestRename/edges.exp.json index e238182c9b..678a43a468 100644 --- a/testdata/d2oracle/TestRename/edges.exp.json +++ b/testdata/d2oracle/TestRename/edges.exp.json @@ -425,8 +425,6 @@ "edges": [ { "index": 0, - "minWidth": 0, - "minHeight": 0, "isCurve": false, "src_arrow": false, "dst_arrow": true, @@ -459,8 +457,6 @@ }, { "index": 0, - "minWidth": 0, - "minHeight": 0, "isCurve": false, "src_arrow": false, "dst_arrow": true, @@ -493,8 +489,6 @@ }, { "index": 0, - "minWidth": 0, - "minHeight": 0, "isCurve": false, "src_arrow": false, "dst_arrow": true, @@ -527,8 +521,6 @@ }, { "index": 0, - "minWidth": 0, - "minHeight": 0, "isCurve": false, "src_arrow": false, "dst_arrow": true, @@ -561,8 +553,6 @@ }, { "index": 0, - "minWidth": 0, - "minHeight": 0, "isCurve": false, "src_arrow": false, "dst_arrow": true, @@ -595,8 +585,6 @@ }, { "index": 0, - "minWidth": 0, - "minHeight": 0, "isCurve": false, "src_arrow": false, "dst_arrow": true, diff --git a/testdata/d2oracle/TestSet/edge.exp.json b/testdata/d2oracle/TestSet/edge.exp.json index 3bbddb4e3a..2c76cca833 100644 --- a/testdata/d2oracle/TestSet/edge.exp.json +++ b/testdata/d2oracle/TestSet/edge.exp.json @@ -91,8 +91,6 @@ "edges": [ { "index": 0, - "minWidth": 0, - "minHeight": 0, "isCurve": false, "src_arrow": false, "dst_arrow": true, diff --git a/testdata/d2oracle/TestSet/edge_append_style.exp.json b/testdata/d2oracle/TestSet/edge_append_style.exp.json index 49be23cef2..c8f216c659 100644 --- a/testdata/d2oracle/TestSet/edge_append_style.exp.json +++ b/testdata/d2oracle/TestSet/edge_append_style.exp.json @@ -126,8 +126,6 @@ "edges": [ { "index": 0, - "minWidth": 0, - "minHeight": 0, "isCurve": false, "src_arrow": false, "dst_arrow": true, diff --git a/testdata/d2oracle/TestSet/edge_chain.exp.json b/testdata/d2oracle/TestSet/edge_chain.exp.json index e827540308..51b4137c97 100644 --- a/testdata/d2oracle/TestSet/edge_chain.exp.json +++ b/testdata/d2oracle/TestSet/edge_chain.exp.json @@ -218,8 +218,6 @@ "edges": [ { "index": 0, - "minWidth": 0, - "minHeight": 0, "isCurve": false, "src_arrow": false, "dst_arrow": true, @@ -255,8 +253,6 @@ }, { "index": 0, - "minWidth": 0, - "minHeight": 0, "isCurve": false, "src_arrow": false, "dst_arrow": true, diff --git a/testdata/d2oracle/TestSet/edge_chain_append_style.exp.json b/testdata/d2oracle/TestSet/edge_chain_append_style.exp.json index 20b5ad8bac..301659aa65 100644 --- a/testdata/d2oracle/TestSet/edge_chain_append_style.exp.json +++ b/testdata/d2oracle/TestSet/edge_chain_append_style.exp.json @@ -201,8 +201,6 @@ "edges": [ { "index": 0, - "minWidth": 0, - "minHeight": 0, "isCurve": false, "src_arrow": false, "dst_arrow": true, @@ -242,8 +240,6 @@ }, { "index": 0, - "minWidth": 0, - "minHeight": 0, "isCurve": false, "src_arrow": false, "dst_arrow": true, diff --git a/testdata/d2oracle/TestSet/edge_chain_existing_style.exp.json b/testdata/d2oracle/TestSet/edge_chain_existing_style.exp.json index eab6879d98..7e2d1bd9e1 100644 --- a/testdata/d2oracle/TestSet/edge_chain_existing_style.exp.json +++ b/testdata/d2oracle/TestSet/edge_chain_existing_style.exp.json @@ -285,8 +285,6 @@ "edges": [ { "index": 0, - "minWidth": 0, - "minHeight": 0, "isCurve": false, "src_arrow": false, "dst_arrow": true, @@ -319,8 +317,6 @@ }, { "index": 0, - "minWidth": 0, - "minHeight": 0, "isCurve": false, "src_arrow": false, "dst_arrow": true, diff --git a/testdata/d2oracle/TestSet/edge_chain_nested_set.exp.json b/testdata/d2oracle/TestSet/edge_chain_nested_set.exp.json index 79a3883017..672a3f5649 100644 --- a/testdata/d2oracle/TestSet/edge_chain_nested_set.exp.json +++ b/testdata/d2oracle/TestSet/edge_chain_nested_set.exp.json @@ -241,8 +241,6 @@ "edges": [ { "index": 0, - "minWidth": 0, - "minHeight": 0, "isCurve": false, "src_arrow": false, "dst_arrow": true, @@ -282,8 +280,6 @@ }, { "index": 0, - "minWidth": 0, - "minHeight": 0, "isCurve": false, "src_arrow": false, "dst_arrow": true, diff --git a/testdata/d2oracle/TestSet/edge_flat_merge_arrowhead.exp.json b/testdata/d2oracle/TestSet/edge_flat_merge_arrowhead.exp.json index b1d4395183..ded67e709a 100644 --- a/testdata/d2oracle/TestSet/edge_flat_merge_arrowhead.exp.json +++ b/testdata/d2oracle/TestSet/edge_flat_merge_arrowhead.exp.json @@ -206,8 +206,6 @@ "edges": [ { "index": 0, - "minWidth": 0, - "minHeight": 0, "isCurve": false, "src_arrow": false, "dst_arrow": true, @@ -263,8 +261,6 @@ }, { "index": 0, - "minWidth": 0, - "minHeight": 0, "isCurve": false, "src_arrow": false, "dst_arrow": true, diff --git a/testdata/d2oracle/TestSet/edge_index_case.exp.json b/testdata/d2oracle/TestSet/edge_index_case.exp.json index 2a3e7daf1c..f0ae94d5dc 100644 --- a/testdata/d2oracle/TestSet/edge_index_case.exp.json +++ b/testdata/d2oracle/TestSet/edge_index_case.exp.json @@ -195,8 +195,6 @@ "edges": [ { "index": 0, - "minWidth": 0, - "minHeight": 0, "isCurve": false, "src_arrow": false, "dst_arrow": true, @@ -229,8 +227,6 @@ }, { "index": 0, - "minWidth": 0, - "minHeight": 0, "isCurve": false, "src_arrow": false, "dst_arrow": true, diff --git a/testdata/d2oracle/TestSet/edge_index_merge_style.exp.json b/testdata/d2oracle/TestSet/edge_index_merge_style.exp.json index 9ff56c9492..c1c983fada 100644 --- a/testdata/d2oracle/TestSet/edge_index_merge_style.exp.json +++ b/testdata/d2oracle/TestSet/edge_index_merge_style.exp.json @@ -202,8 +202,6 @@ "edges": [ { "index": 0, - "minWidth": 0, - "minHeight": 0, "isCurve": false, "src_arrow": false, "dst_arrow": true, @@ -243,8 +241,6 @@ }, { "index": 0, - "minWidth": 0, - "minHeight": 0, "isCurve": false, "src_arrow": false, "dst_arrow": true, diff --git a/testdata/d2oracle/TestSet/edge_index_nested.exp.json b/testdata/d2oracle/TestSet/edge_index_nested.exp.json index c19a426397..be7387a8df 100644 --- a/testdata/d2oracle/TestSet/edge_index_nested.exp.json +++ b/testdata/d2oracle/TestSet/edge_index_nested.exp.json @@ -120,8 +120,6 @@ "edges": [ { "index": 0, - "minWidth": 0, - "minHeight": 0, "isCurve": false, "src_arrow": false, "dst_arrow": true, diff --git a/testdata/d2oracle/TestSet/edge_key_and_key.exp.json b/testdata/d2oracle/TestSet/edge_key_and_key.exp.json index 75fc1dee1a..ab67c717c3 100644 --- a/testdata/d2oracle/TestSet/edge_key_and_key.exp.json +++ b/testdata/d2oracle/TestSet/edge_key_and_key.exp.json @@ -171,8 +171,6 @@ "edges": [ { "index": 0, - "minWidth": 0, - "minHeight": 0, "isCurve": false, "src_arrow": false, "dst_arrow": true, diff --git a/testdata/d2oracle/TestSet/edge_label.exp.json b/testdata/d2oracle/TestSet/edge_label.exp.json index 2021f3512c..a55c91c0a6 100644 --- a/testdata/d2oracle/TestSet/edge_label.exp.json +++ b/testdata/d2oracle/TestSet/edge_label.exp.json @@ -136,8 +136,6 @@ "edges": [ { "index": 0, - "minWidth": 0, - "minHeight": 0, "isCurve": false, "src_arrow": false, "dst_arrow": true, diff --git a/testdata/d2oracle/TestSet/edge_merge_arrowhead.exp.json b/testdata/d2oracle/TestSet/edge_merge_arrowhead.exp.json index a3e4c0657d..124ccee33c 100644 --- a/testdata/d2oracle/TestSet/edge_merge_arrowhead.exp.json +++ b/testdata/d2oracle/TestSet/edge_merge_arrowhead.exp.json @@ -178,8 +178,6 @@ "edges": [ { "index": 0, - "minWidth": 0, - "minHeight": 0, "isCurve": false, "src_arrow": false, "dst_arrow": true, diff --git a/testdata/d2oracle/TestSet/edge_merge_style.exp.json b/testdata/d2oracle/TestSet/edge_merge_style.exp.json index 96c83fdf62..cc5c9b6ebe 100644 --- a/testdata/d2oracle/TestSet/edge_merge_style.exp.json +++ b/testdata/d2oracle/TestSet/edge_merge_style.exp.json @@ -173,8 +173,6 @@ "edges": [ { "index": 0, - "minWidth": 0, - "minHeight": 0, "isCurve": false, "src_arrow": false, "dst_arrow": true, diff --git a/testdata/d2oracle/TestSet/edge_nested_label_set.exp.json b/testdata/d2oracle/TestSet/edge_nested_label_set.exp.json index f12c012055..73a1c5b793 100644 --- a/testdata/d2oracle/TestSet/edge_nested_label_set.exp.json +++ b/testdata/d2oracle/TestSet/edge_nested_label_set.exp.json @@ -120,8 +120,6 @@ "edges": [ { "index": 0, - "minWidth": 0, - "minHeight": 0, "isCurve": false, "src_arrow": false, "dst_arrow": true, diff --git a/testdata/d2oracle/TestSet/edge_nested_style_set.exp.json b/testdata/d2oracle/TestSet/edge_nested_style_set.exp.json index 481d967076..4781ea1c7e 100644 --- a/testdata/d2oracle/TestSet/edge_nested_style_set.exp.json +++ b/testdata/d2oracle/TestSet/edge_nested_style_set.exp.json @@ -166,8 +166,6 @@ "edges": [ { "index": 0, - "minWidth": 0, - "minHeight": 0, "isCurve": false, "src_arrow": false, "dst_arrow": true, diff --git a/testdata/d2oracle/TestSet/edge_replace_arrowhead.exp.json b/testdata/d2oracle/TestSet/edge_replace_arrowhead.exp.json index 48d8962587..ed0a6baff3 100644 --- a/testdata/d2oracle/TestSet/edge_replace_arrowhead.exp.json +++ b/testdata/d2oracle/TestSet/edge_replace_arrowhead.exp.json @@ -131,8 +131,6 @@ "edges": [ { "index": 0, - "minWidth": 0, - "minHeight": 0, "isCurve": false, "src_arrow": false, "dst_arrow": true, diff --git a/testdata/d2oracle/TestSet/edge_replace_arrowhead_indexed.exp.json b/testdata/d2oracle/TestSet/edge_replace_arrowhead_indexed.exp.json index 7b9e54f3a0..da49006e5e 100644 --- a/testdata/d2oracle/TestSet/edge_replace_arrowhead_indexed.exp.json +++ b/testdata/d2oracle/TestSet/edge_replace_arrowhead_indexed.exp.json @@ -169,8 +169,6 @@ "edges": [ { "index": 0, - "minWidth": 0, - "minHeight": 0, "isCurve": false, "src_arrow": false, "dst_arrow": true, diff --git a/testdata/d2oracle/TestSet/edge_set_arrowhead.exp.json b/testdata/d2oracle/TestSet/edge_set_arrowhead.exp.json index c4c488f719..e3c6f6c316 100644 --- a/testdata/d2oracle/TestSet/edge_set_arrowhead.exp.json +++ b/testdata/d2oracle/TestSet/edge_set_arrowhead.exp.json @@ -131,8 +131,6 @@ "edges": [ { "index": 0, - "minWidth": 0, - "minHeight": 0, "isCurve": false, "src_arrow": false, "dst_arrow": true, diff --git a/testdata/d2oracle/TestSet/label_primary.exp.json b/testdata/d2oracle/TestSet/label_primary.exp.json index b03974c277..5d048c6906 100644 --- a/testdata/d2oracle/TestSet/label_primary.exp.json +++ b/testdata/d2oracle/TestSet/label_primary.exp.json @@ -116,8 +116,6 @@ "edges": [ { "index": 0, - "minWidth": 0, - "minHeight": 0, "isCurve": false, "src_arrow": false, "dst_arrow": true, diff --git a/testdata/d2oracle/TestSet/map_key_missing.exp.json b/testdata/d2oracle/TestSet/map_key_missing.exp.json index 6ac4391fea..03123bb2ce 100644 --- a/testdata/d2oracle/TestSet/map_key_missing.exp.json +++ b/testdata/d2oracle/TestSet/map_key_missing.exp.json @@ -114,8 +114,6 @@ "edges": [ { "index": 0, - "minWidth": 0, - "minHeight": 0, "isCurve": false, "src_arrow": false, "dst_arrow": true, diff --git a/testdata/d2oracle/TestSet/nested_alex.exp.json b/testdata/d2oracle/TestSet/nested_alex.exp.json index 9bf7f792a8..da163d7960 100644 --- a/testdata/d2oracle/TestSet/nested_alex.exp.json +++ b/testdata/d2oracle/TestSet/nested_alex.exp.json @@ -186,8 +186,6 @@ "edges": [ { "index": 0, - "minWidth": 0, - "minHeight": 0, "isCurve": false, "src_arrow": false, "dst_arrow": true, diff --git a/testdata/d2oracle/TestSet/replace_arrowhead.exp.json b/testdata/d2oracle/TestSet/replace_arrowhead.exp.json index d7f8656191..248870e77f 100644 --- a/testdata/d2oracle/TestSet/replace_arrowhead.exp.json +++ b/testdata/d2oracle/TestSet/replace_arrowhead.exp.json @@ -131,8 +131,6 @@ "edges": [ { "index": 0, - "minWidth": 0, - "minHeight": 0, "isCurve": false, "src_arrow": false, "dst_arrow": true, diff --git a/testdata/d2oracle/TestSet/replace_arrowhead_map.exp.json b/testdata/d2oracle/TestSet/replace_arrowhead_map.exp.json index 43bf5806ca..3de2bb5bcc 100644 --- a/testdata/d2oracle/TestSet/replace_arrowhead_map.exp.json +++ b/testdata/d2oracle/TestSet/replace_arrowhead_map.exp.json @@ -149,8 +149,6 @@ "edges": [ { "index": 0, - "minWidth": 0, - "minHeight": 0, "isCurve": false, "src_arrow": false, "dst_arrow": true, diff --git a/testdata/d2oracle/TestSet/replace_edge_style.exp.json b/testdata/d2oracle/TestSet/replace_edge_style.exp.json index c3ca19fdd0..f5ce4d7f62 100644 --- a/testdata/d2oracle/TestSet/replace_edge_style.exp.json +++ b/testdata/d2oracle/TestSet/replace_edge_style.exp.json @@ -167,8 +167,6 @@ "edges": [ { "index": 0, - "minWidth": 0, - "minHeight": 0, "isCurve": false, "src_arrow": false, "dst_arrow": true, diff --git a/testdata/d2oracle/TestSet/replace_edge_style_map.exp.json b/testdata/d2oracle/TestSet/replace_edge_style_map.exp.json index f877fa5bec..4499d37b8f 100644 --- a/testdata/d2oracle/TestSet/replace_edge_style_map.exp.json +++ b/testdata/d2oracle/TestSet/replace_edge_style_map.exp.json @@ -145,8 +145,6 @@ "edges": [ { "index": 0, - "minWidth": 0, - "minHeight": 0, "isCurve": false, "src_arrow": false, "dst_arrow": true,