diff --git a/ci/release/changelogs/next.md b/ci/release/changelogs/next.md
index 685665e2f..9705e0993 100644
--- a/ci/release/changelogs/next.md
+++ b/ci/release/changelogs/next.md
@@ -8,6 +8,7 @@
- Arrowhead labels are now supported. [#182](https://github.com/terrastruct/d2/pull/182)
- `stroke-dash` on shapes is now supported. [#188](https://github.com/terrastruct/d2/issues/188)
- `font-color` is now supported on shapes and connections. [#215](https://github.com/terrastruct/d2/pull/215)
+- `font-size` is now supported on shapes and connections. [#250](https://github.com/terrastruct/d2/pull/250)
- Querying shapes and connections by ID is now supported in renders. [#218](https://github.com/terrastruct/d2/pull/218)
- [install.sh](./install.sh) now accepts `-d` as an alias for `--dry-run`.
[#266](https://github.com/terrastruct/d2/pull/266)
diff --git a/d2exporter/export.go b/d2exporter/export.go
index 987ede37d..3a1274f89 100644
--- a/d2exporter/export.go
+++ b/d2exporter/export.go
@@ -88,13 +88,14 @@ func toShape(obj *d2graph.Object, theme *d2themes.Theme) d2target.Shape {
shape := d2target.BaseShape()
shape.SetType(obj.Attributes.Shape.Value)
shape.ID = obj.AbsID()
+ shape.ZIndex = obj.ZIndex
+ shape.Level = int(obj.Level())
shape.Pos = d2target.NewPoint(int(obj.TopLeft.X), int(obj.TopLeft.Y))
shape.Width = int(obj.Width)
shape.Height = int(obj.Height)
text := obj.Text()
shape.FontSize = text.FontSize
- shape.Level = int(obj.Level())
applyStyles(shape, obj)
applyTheme(shape, obj, theme)
@@ -133,6 +134,7 @@ func toShape(obj *d2graph.Object, theme *d2themes.Theme) d2target.Shape {
func toConnection(edge *d2graph.Edge, theme *d2themes.Theme) d2target.Connection {
connection := d2target.BaseConnection()
connection.ID = edge.AbsID()
+ connection.ZIndex = edge.ZIndex
// edge.Edge.ID = go2.StringToIntHash(connection.ID)
text := edge.Text()
diff --git a/d2graph/d2graph.go b/d2graph/d2graph.go
index 7bc2ba1cc..5e3f5e566 100644
--- a/d2graph/d2graph.go
+++ b/d2graph/d2graph.go
@@ -78,6 +78,8 @@ type Object struct {
ChildrenArray []*Object `json:"-"`
Attributes Attributes `json:"attributes"`
+
+ ZIndex int `json:"zIndex"`
}
type Attributes struct {
@@ -415,6 +417,9 @@ func (obj *Object) Text() *d2target.MText {
if obj.IsContainer() {
fontSize = obj.Level().LabelSize()
}
+ if obj.Attributes.Style.FontSize != nil {
+ fontSize, _ = strconv.Atoi(obj.Attributes.Style.FontSize.Value)
+ }
// Class and Table objects have Label set to header
if obj.Class != nil || obj.SQLTable != nil {
fontSize = d2fonts.FONT_SIZE_XL
@@ -630,6 +635,8 @@ type Edge struct {
References []EdgeReference `json:"references,omitempty"`
Attributes Attributes `json:"attributes"`
+
+ ZIndex int `json:"zIndex"`
}
type EdgeReference struct {
@@ -662,9 +669,13 @@ func (e *Edge) ArrowString() string {
}
func (e *Edge) Text() *d2target.MText {
+ fontSize := d2fonts.FONT_SIZE_M
+ if e.Attributes.Style.FontSize != nil {
+ fontSize, _ = strconv.Atoi(e.Attributes.Style.FontSize.Value)
+ }
return &d2target.MText{
Text: e.Attributes.Label.Value,
- FontSize: d2fonts.FONT_SIZE_M,
+ FontSize: fontSize,
IsBold: false,
IsItalic: true,
diff --git a/d2layouts/d2sequence/layout.go b/d2layouts/d2sequence/layout.go
index 0f965b50f..92d3dae22 100644
--- a/d2layouts/d2sequence/layout.go
+++ b/d2layouts/d2sequence/layout.go
@@ -222,6 +222,7 @@ func (sd *sequenceDiagram) placeSpans() {
width := SPAN_WIDTH + (float64(span.Level()-2) * SPAN_DEPTH_GROW_FACTOR)
x := rankToX[sd.objectRank[span]] - (width / 2.)
span.Box = geo.NewBox(geo.NewPoint(x, minY), width, height)
+ span.ZIndex = 1
}
}
diff --git a/d2layouts/d2sequence/layout_test.go b/d2layouts/d2sequence/layout_test.go
index 388f538f1..9d7abc9fa 100644
--- a/d2layouts/d2sequence/layout_test.go
+++ b/d2layouts/d2sequence/layout_test.go
@@ -209,7 +209,13 @@ func TestSpansSequenceDiagram(t *testing.T) {
t.Fatalf("expected a.t1 and b.t1 to have the same height, got %.5f and %.5f", a_t1.Height, b_t1.Height)
}
- // Y diff of the 2 first messages
+ for _, span := range []*d2graph.Object{a_t1, a_t2, b_t1} {
+ if span.ZIndex != 1 {
+ t.Fatalf("expected span ZIndex=1, got %d", span.ZIndex)
+ }
+ }
+
+ // Y diff of the 2 first edges
expectedHeight := g.Edges[1].Route[0].Y - g.Edges[0].Route[0].Y + (2 * SPAN_MESSAGE_PAD)
if a_t1.Height != expectedHeight {
t.Fatalf("expected a.t1 height to be %.5f, got %.5f", expectedHeight, a_t1.Height)
diff --git a/d2renderers/d2svg/d2svg.go b/d2renderers/d2svg/d2svg.go
index 9d2cb1bd1..d2f41b9d7 100644
--- a/d2renderers/d2svg/d2svg.go
+++ b/d2renderers/d2svg/d2svg.go
@@ -10,6 +10,7 @@ import (
"fmt"
"hash/fnv"
"io"
+ "sort"
"strings"
"math"
@@ -983,25 +984,29 @@ func Render(diagram *d2target.Diagram) ([]byte, error) {
// SVG has no notion of z-index. The z-index is effectively the order it's drawn.
// So draw from the least nested to most nested
idToShape := make(map[string]d2target.Shape)
- highest := 1
+ allObjects := make([]DiagramObject, 0, len(diagram.Shapes)+len(diagram.Connections))
for _, s := range diagram.Shapes {
- highest = go2.Max(highest, s.Level)
idToShape[s.ID] = s
+ allObjects = append(allObjects, s)
}
- for i := 1; i <= highest; i++ {
- for _, s := range diagram.Shapes {
- if s.Level == i {
- err := drawShape(buf, s)
- if err != nil {
- return nil, err
- }
- }
- }
+ for _, c := range diagram.Connections {
+ allObjects = append(allObjects, c)
}
+ sortObjects(allObjects)
+
markers := map[string]struct{}{}
- for _, c := range diagram.Connections {
- drawConnection(buf, c, markers, idToShape)
+ for _, obj := range allObjects {
+ if c, is := obj.(d2target.Connection); is {
+ drawConnection(buf, c, markers, idToShape)
+ } else if s, is := obj.(d2target.Shape); is {
+ err := drawShape(buf, s)
+ if err != nil {
+ return nil, err
+ }
+ } else {
+ return nil, fmt.Errorf("unknow object of type %T", obj)
+ }
}
embedFonts(buf)
@@ -1010,6 +1015,39 @@ func Render(diagram *d2target.Diagram) ([]byte, error) {
return buf.Bytes(), nil
}
+type DiagramObject interface {
+ GetID() string
+ GetZIndex() int
+}
+
+// sortObjects sorts all diagrams objects (shapes and connections) in the desired drawing order
+// the sorting criteria is:
+// 1. zIndex, lower comes first
+// 2. two shapes with the same zIndex are sorted by their level (container nesting), containers come first
+// 3. two shapes with the same zIndex and same level, are sorted in the order they were exported
+// 4. shape and edge, shapes come first
+func sortObjects(allObjects []DiagramObject) {
+ sort.SliceStable(allObjects, func(i, j int) bool {
+ // first sort by zIndex
+ iZIndex := allObjects[i].GetZIndex()
+ jZIndex := allObjects[j].GetZIndex()
+ if iZIndex != jZIndex {
+ return iZIndex < jZIndex
+ }
+
+ // then, if both are shapes, parents come before their children
+ iShape, iIsShape := allObjects[i].(d2target.Shape)
+ jShape, jIsShape := allObjects[j].(d2target.Shape)
+ if iIsShape && jIsShape {
+ return iShape.Level < jShape.Level
+ }
+
+ // then, shapes come before connections
+ _, jIsConnection := allObjects[j].(d2target.Connection)
+ return iIsShape && jIsConnection
+ })
+}
+
func hash(s string) string {
const secret = "lalalas"
h := fnv.New32a()
diff --git a/d2renderers/d2svg/d2svg_test.go b/d2renderers/d2svg/d2svg_test.go
new file mode 100644
index 000000000..2d99dfe32
--- /dev/null
+++ b/d2renderers/d2svg/d2svg_test.go
@@ -0,0 +1,83 @@
+package d2svg
+
+import (
+ "testing"
+
+ "oss.terrastruct.com/d2/d2target"
+)
+
+func TestSortObjects(t *testing.T) {
+ allObjects := []DiagramObject{
+ // same zIndex and level, should keep in this order
+ d2target.Shape{
+ ID: "0",
+ ZIndex: 0,
+ Level: 0,
+ },
+ d2target.Shape{
+ ID: "1",
+ ZIndex: 0,
+ Level: 0,
+ },
+ // same zIndex, different level, should be swapped
+ d2target.Shape{
+ ID: "2",
+ ZIndex: 0,
+ Level: 1,
+ },
+ d2target.Shape{
+ ID: "3",
+ ZIndex: 0,
+ Level: 0,
+ },
+ // different zIndex, should come after connections
+ d2target.Shape{
+ ID: "4",
+ ZIndex: 1,
+ Level: 0,
+ },
+ // connections come after shapes
+ d2target.Connection{
+ ID: "5",
+ ZIndex: 0,
+ },
+ d2target.Connection{
+ ID: "6",
+ ZIndex: 0,
+ },
+ // this should be last object
+ d2target.Connection{
+ ID: "7",
+ ZIndex: 2,
+ },
+ // this should be the first object
+ d2target.Connection{
+ ID: "8",
+ ZIndex: -1,
+ },
+ }
+
+ expectedOrder := []DiagramObject{
+ allObjects[8],
+ allObjects[0],
+ allObjects[1],
+ allObjects[3],
+ allObjects[2],
+ allObjects[5],
+ allObjects[6],
+ allObjects[4],
+ allObjects[7],
+ }
+
+ sortObjects(allObjects)
+
+ if len(allObjects) != len(expectedOrder) {
+ t.Fatal("number of objects changed while sorting")
+ }
+
+ for i := 0; i < len(allObjects); i++ {
+ if allObjects[i].GetID() != expectedOrder[i].GetID() {
+ t.Fatalf("object order differs at index %d, got '%s' expected '%s'", i, allObjects[i].GetID(), expectedOrder[i].GetID())
+ }
+ }
+}
diff --git a/d2renderers/textmeasure/markdown.go b/d2renderers/textmeasure/markdown.go
index 056af2f77..e625e9597 100644
--- a/d2renderers/textmeasure/markdown.go
+++ b/d2renderers/textmeasure/markdown.go
@@ -4,7 +4,6 @@ import (
"bytes"
"math"
"strings"
- "unicode/utf8"
"github.com/PuerkitoBio/goquery"
"github.com/yuin/goldmark"
@@ -212,20 +211,17 @@ func (ruler *Ruler) measureNode(depth int, n *html.Node, font d2fonts.Font) bloc
if strings.TrimSpace(n.Data) == "" {
return blockAttrs{}
}
- spaceWidths := 0.
-
- // consecutive leading/trailing spaces end up rendered as a single space
- spaceRune, _ := utf8.DecodeRuneInString(" ")
- // measure will not include leading or trailing whitespace, so we have to add in the space width
- spaceWidth := ruler.atlases[font].glyph(spaceRune).advance
-
str := n.Data
isCode := parentElementType == "pre" || parentElementType == "code"
+ spaceWidths := 0.
if !isCode {
+ spaceWidth := ruler.spaceWidth(font)
+ // MeasurePrecise will not include leading or trailing whitespace, so we account for it here
str = strings.ReplaceAll(str, "\n", " ")
str = strings.ReplaceAll(str, "\t", " ")
if strings.HasPrefix(str, " ") {
+ // consecutive leading/trailing spaces end up rendered as a single space
str = strings.TrimPrefix(str, " ")
if hasPrev(n) {
spaceWidths += spaceWidth
diff --git a/d2renderers/textmeasure/textmeasure.go b/d2renderers/textmeasure/textmeasure.go
index 4a96c0c3a..5eb309ae4 100644
--- a/d2renderers/textmeasure/textmeasure.go
+++ b/d2renderers/textmeasure/textmeasure.go
@@ -76,6 +76,8 @@ type Ruler struct {
atlases map[d2fonts.Font]*atlas
+ ttfs map[d2fonts.Font]*truetype.Font
+
buf []byte
prevR rune
bounds *rect
@@ -97,49 +99,52 @@ type Ruler struct {
// })
// txt := text.New(orig, text.NewAtlas(face, text.ASCII))
func NewRuler() (*Ruler, error) {
- lineHeights := make(map[d2fonts.Font]float64)
- tabWidths := make(map[d2fonts.Font]float64)
- atlases := make(map[d2fonts.Font]*atlas)
+ origin := geo.NewPoint(0, 0)
+ r := &Ruler{
+ Orig: origin,
+ Dot: origin.Copy(),
+ LineHeightFactor: 1.,
+ lineHeights: make(map[d2fonts.Font]float64),
+ tabWidths: make(map[d2fonts.Font]float64),
+ atlases: make(map[d2fonts.Font]*atlas),
+ ttfs: make(map[d2fonts.Font]*truetype.Font),
+ }
for _, fontFamily := range d2fonts.FontFamilies {
- for _, fontSize := range d2fonts.FontSizes {
- for _, fontStyle := range d2fonts.FontStyles {
- font := d2fonts.Font{
- Family: fontFamily,
- Style: fontStyle,
- }
- if _, ok := d2fonts.FontFaces[font]; !ok {
- continue
- }
+ for _, fontStyle := range d2fonts.FontStyles {
+ font := d2fonts.Font{
+ Family: fontFamily,
+ Style: fontStyle,
+ }
+ // Note: FontFaces lookup is size-agnostic
+ if _, ok := d2fonts.FontFaces[font]; !ok {
+ continue
+ }
+ if _, loaded := r.ttfs[font]; !loaded {
ttf, err := truetype.Parse(d2fonts.FontFaces[font])
if err != nil {
return nil, err
}
- // Added after, since FontFaces lookup is size-agnostic
- font.Size = fontSize
- face := truetype.NewFace(ttf, &truetype.Options{
- Size: float64(fontSize),
- })
- atlas := NewAtlas(face, ASCII)
- atlases[font] = atlas
- lineHeights[font] = atlas.lineHeight
- tabWidths[font] = atlas.glyph(' ').advance * TAB_SIZE
+ r.ttfs[font] = ttf
}
}
}
- origin := geo.NewPoint(0, 0)
- txt := &Ruler{
- Orig: origin,
- Dot: origin.Copy(),
- LineHeightFactor: 1.,
- lineHeights: lineHeights,
- tabWidths: tabWidths,
- atlases: atlases,
- }
- txt.clear()
+ r.clear()
- return txt, nil
+ return r, nil
+}
+
+func (r *Ruler) addFontSize(font d2fonts.Font) {
+ sizeless := font
+ sizeless.Size = 0
+ face := truetype.NewFace(r.ttfs[sizeless], &truetype.Options{
+ Size: float64(font.Size),
+ })
+ atlas := NewAtlas(face, ASCII)
+ r.atlases[font] = atlas
+ r.lineHeights[font] = atlas.lineHeight
+ r.tabWidths[font] = atlas.glyph(' ').advance * TAB_SIZE
}
func (t *Ruler) Measure(font d2fonts.Font, s string) (width, height int) {
@@ -148,6 +153,9 @@ func (t *Ruler) Measure(font d2fonts.Font, s string) (width, height int) {
}
func (t *Ruler) MeasurePrecise(font d2fonts.Font, s string) (width, height float64) {
+ if _, ok := t.atlases[font]; !ok {
+ t.addFontSize(font)
+ }
t.clear()
t.buf = append(t.buf, s...)
t.drawBuf(font)
@@ -216,3 +224,11 @@ func (txt *Ruler) drawBuf(font d2fonts.Font) {
}
}
}
+
+func (ruler *Ruler) spaceWidth(font d2fonts.Font) float64 {
+ if _, has := ruler.atlases[font]; !has {
+ ruler.addFontSize(font)
+ }
+ spaceRune, _ := utf8.DecodeRuneInString(" ")
+ return ruler.atlases[font].glyph(spaceRune).advance
+}
diff --git a/d2target/d2target.go b/d2target/d2target.go
index 1582db666..3f749fa87 100644
--- a/d2target/d2target.go
+++ b/d2target/d2target.go
@@ -91,7 +91,6 @@ type Shape struct {
Pos Point `json:"pos"`
Width int `json:"width"`
Height int `json:"height"`
- Level int `json:"level"`
Opacity float64 `json:"opacity"`
StrokeDash float64 `json:"strokeDash"`
@@ -117,6 +116,9 @@ type Shape struct {
Text
LabelPosition string `json:"labelPosition,omitempty"`
+
+ ZIndex int `json:"zIndex"`
+ Level int `json:"level"`
}
func (s *Shape) SetType(t string) {
@@ -130,6 +132,14 @@ func (s *Shape) SetType(t string) {
s.Type = strings.ToLower(t)
}
+func (s Shape) GetZIndex() int {
+ return s.ZIndex
+}
+
+func (s Shape) GetID() string {
+ return s.ID
+}
+
type Text struct {
Label string `json:"label"`
FontSize int `json:"fontSize"`
@@ -183,6 +193,8 @@ type Connection struct {
Animated bool `json:"animated"`
Tooltip string `json:"tooltip"`
Icon *url.URL `json:"icon"`
+
+ ZIndex int `json:"zIndex"`
}
func BaseConnection() *Connection {
@@ -210,6 +222,14 @@ func (c *Connection) GetLabelTopLeft() *geo.Point {
)
}
+func (c Connection) GetZIndex() int {
+ return c.ZIndex
+}
+
+func (c Connection) GetID() string {
+ return c.ID
+}
+
type Arrowhead string
const (
diff --git a/e2etests/stable_test.go b/e2etests/stable_test.go
index 02b66f0a3..f75a8d6e3 100644
--- a/e2etests/stable_test.go
+++ b/e2etests/stable_test.go
@@ -1014,6 +1014,34 @@ cube: {
stroke-width: 7
}
}
+`,
+ },
+ {
+ name: "font_sizes",
+ script: `
+size XS.style.font-size: 13
+size S.style.font-size: 14
+size M.style.font-size: 16
+size L.style.font-size: 20
+size XL.style.font-size: 24
+size XXL.style.font-size: 28
+size XXXL.style.font-size: 32
+
+custom 8.style.font-size: 8
+custom 12.style.font-size: 12
+custom 18.style.font-size: 18
+custom 21.style.font-size: 21
+custom 64.style.font-size: 64
+
+custom 8 -> size XS: custom 10 {
+ style.font-size: 10
+}
+size S -> size M: custom 15 {
+ style.font-size: 15
+}
+size XXXL -> custom 64: custom 48 {
+ style.font-size: 48
+}
`,
},
}
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 25104c1a5..7649f1aa0 100644
--- a/e2etests/testdata/sanity/1_to_2/dagre/board.exp.json
+++ b/e2etests/testdata/sanity/1_to_2/dagre/board.exp.json
@@ -10,7 +10,6 @@
},
"width": 113,
"height": 126,
- "level": 1,
"opacity": 1,
"strokeDash": 0,
"strokeWidth": 2,
@@ -37,7 +36,9 @@
"underline": false,
"labelWidth": 13,
"labelHeight": 26,
- "labelPosition": "INSIDE_MIDDLE_CENTER"
+ "labelPosition": "INSIDE_MIDDLE_CENTER",
+ "zIndex": 0,
+ "level": 1
},
{
"id": "b",
@@ -48,7 +49,6 @@
},
"width": 113,
"height": 126,
- "level": 1,
"opacity": 1,
"strokeDash": 0,
"strokeWidth": 2,
@@ -75,7 +75,9 @@
"underline": false,
"labelWidth": 13,
"labelHeight": 26,
- "labelPosition": "INSIDE_MIDDLE_CENTER"
+ "labelPosition": "INSIDE_MIDDLE_CENTER",
+ "zIndex": 0,
+ "level": 1
},
{
"id": "c",
@@ -86,7 +88,6 @@
},
"width": 113,
"height": 126,
- "level": 1,
"opacity": 1,
"strokeDash": 0,
"strokeWidth": 2,
@@ -113,7 +114,9 @@
"underline": false,
"labelWidth": 13,
"labelHeight": 26,
- "labelPosition": "INSIDE_MIDDLE_CENTER"
+ "labelPosition": "INSIDE_MIDDLE_CENTER",
+ "zIndex": 0,
+ "level": 1
}
],
"connections": [
@@ -162,7 +165,8 @@
"isCurve": true,
"animated": false,
"tooltip": "",
- "icon": null
+ "icon": null,
+ "zIndex": 0
},
{
"id": "(a -> c)[0]",
@@ -209,7 +213,8 @@
"isCurve": true,
"animated": false,
"tooltip": "",
- "icon": null
+ "icon": null,
+ "zIndex": 0
}
]
}
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 6c709942a..e00047008 100644
--- a/e2etests/testdata/sanity/1_to_2/elk/board.exp.json
+++ b/e2etests/testdata/sanity/1_to_2/elk/board.exp.json
@@ -10,7 +10,6 @@
},
"width": 113,
"height": 126,
- "level": 1,
"opacity": 1,
"strokeDash": 0,
"strokeWidth": 2,
@@ -37,7 +36,9 @@
"underline": false,
"labelWidth": 13,
"labelHeight": 26,
- "labelPosition": "INSIDE_MIDDLE_CENTER"
+ "labelPosition": "INSIDE_MIDDLE_CENTER",
+ "zIndex": 0,
+ "level": 1
},
{
"id": "b",
@@ -48,7 +49,6 @@
},
"width": 113,
"height": 126,
- "level": 1,
"opacity": 1,
"strokeDash": 0,
"strokeWidth": 2,
@@ -75,7 +75,9 @@
"underline": false,
"labelWidth": 13,
"labelHeight": 26,
- "labelPosition": "INSIDE_MIDDLE_CENTER"
+ "labelPosition": "INSIDE_MIDDLE_CENTER",
+ "zIndex": 0,
+ "level": 1
},
{
"id": "c",
@@ -86,7 +88,6 @@
},
"width": 113,
"height": 126,
- "level": 1,
"opacity": 1,
"strokeDash": 0,
"strokeWidth": 2,
@@ -113,7 +114,9 @@
"underline": false,
"labelWidth": 13,
"labelHeight": 26,
- "labelPosition": "INSIDE_MIDDLE_CENTER"
+ "labelPosition": "INSIDE_MIDDLE_CENTER",
+ "zIndex": 0,
+ "level": 1
}
],
"connections": [
@@ -153,7 +156,8 @@
],
"animated": false,
"tooltip": "",
- "icon": null
+ "icon": null,
+ "zIndex": 0
},
{
"id": "(a -> c)[0]",
@@ -199,7 +203,8 @@
],
"animated": false,
"tooltip": "",
- "icon": null
+ "icon": null,
+ "zIndex": 0
}
]
}
diff --git a/e2etests/testdata/sanity/basic/dagre/board.exp.json b/e2etests/testdata/sanity/basic/dagre/board.exp.json
index e6bd79868..7f1b084a1 100644
--- a/e2etests/testdata/sanity/basic/dagre/board.exp.json
+++ b/e2etests/testdata/sanity/basic/dagre/board.exp.json
@@ -10,7 +10,6 @@
},
"width": 113,
"height": 126,
- "level": 1,
"opacity": 1,
"strokeDash": 0,
"strokeWidth": 2,
@@ -37,7 +36,9 @@
"underline": false,
"labelWidth": 13,
"labelHeight": 26,
- "labelPosition": "INSIDE_MIDDLE_CENTER"
+ "labelPosition": "INSIDE_MIDDLE_CENTER",
+ "zIndex": 0,
+ "level": 1
},
{
"id": "b",
@@ -48,7 +49,6 @@
},
"width": 113,
"height": 126,
- "level": 1,
"opacity": 1,
"strokeDash": 0,
"strokeWidth": 2,
@@ -75,7 +75,9 @@
"underline": false,
"labelWidth": 13,
"labelHeight": 26,
- "labelPosition": "INSIDE_MIDDLE_CENTER"
+ "labelPosition": "INSIDE_MIDDLE_CENTER",
+ "zIndex": 0,
+ "level": 1
}
],
"connections": [
@@ -124,7 +126,8 @@
"isCurve": true,
"animated": false,
"tooltip": "",
- "icon": null
+ "icon": null,
+ "zIndex": 0
}
]
}
diff --git a/e2etests/testdata/sanity/basic/elk/board.exp.json b/e2etests/testdata/sanity/basic/elk/board.exp.json
index 5661d68d7..6ad182635 100644
--- a/e2etests/testdata/sanity/basic/elk/board.exp.json
+++ b/e2etests/testdata/sanity/basic/elk/board.exp.json
@@ -10,7 +10,6 @@
},
"width": 113,
"height": 126,
- "level": 1,
"opacity": 1,
"strokeDash": 0,
"strokeWidth": 2,
@@ -37,7 +36,9 @@
"underline": false,
"labelWidth": 13,
"labelHeight": 26,
- "labelPosition": "INSIDE_MIDDLE_CENTER"
+ "labelPosition": "INSIDE_MIDDLE_CENTER",
+ "zIndex": 0,
+ "level": 1
},
{
"id": "b",
@@ -48,7 +49,6 @@
},
"width": 113,
"height": 126,
- "level": 1,
"opacity": 1,
"strokeDash": 0,
"strokeWidth": 2,
@@ -75,7 +75,9 @@
"underline": false,
"labelWidth": 13,
"labelHeight": 26,
- "labelPosition": "INSIDE_MIDDLE_CENTER"
+ "labelPosition": "INSIDE_MIDDLE_CENTER",
+ "zIndex": 0,
+ "level": 1
}
],
"connections": [
@@ -115,7 +117,8 @@
],
"animated": false,
"tooltip": "",
- "icon": null
+ "icon": null,
+ "zIndex": 0
}
]
}
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 b27380f82..6e06f2f68 100644
--- a/e2etests/testdata/sanity/child_to_child/dagre/board.exp.json
+++ b/e2etests/testdata/sanity/child_to_child/dagre/board.exp.json
@@ -10,7 +10,6 @@
},
"width": 213,
"height": 226,
- "level": 1,
"opacity": 1,
"strokeDash": 0,
"strokeWidth": 2,
@@ -37,7 +36,9 @@
"underline": false,
"labelWidth": 17,
"labelHeight": 41,
- "labelPosition": "INSIDE_TOP_CENTER"
+ "labelPosition": "INSIDE_TOP_CENTER",
+ "zIndex": 0,
+ "level": 1
},
{
"id": "a.b",
@@ -48,7 +49,6 @@
},
"width": 113,
"height": 126,
- "level": 2,
"opacity": 1,
"strokeDash": 0,
"strokeWidth": 2,
@@ -75,7 +75,9 @@
"underline": false,
"labelWidth": 13,
"labelHeight": 26,
- "labelPosition": "INSIDE_MIDDLE_CENTER"
+ "labelPosition": "INSIDE_MIDDLE_CENTER",
+ "zIndex": 0,
+ "level": 2
},
{
"id": "c",
@@ -86,7 +88,6 @@
},
"width": 214,
"height": 226,
- "level": 1,
"opacity": 1,
"strokeDash": 0,
"strokeWidth": 2,
@@ -113,7 +114,9 @@
"underline": false,
"labelWidth": 17,
"labelHeight": 41,
- "labelPosition": "INSIDE_TOP_CENTER"
+ "labelPosition": "INSIDE_TOP_CENTER",
+ "zIndex": 0,
+ "level": 1
},
{
"id": "c.d",
@@ -124,7 +127,6 @@
},
"width": 114,
"height": 126,
- "level": 2,
"opacity": 1,
"strokeDash": 0,
"strokeWidth": 2,
@@ -151,7 +153,9 @@
"underline": false,
"labelWidth": 14,
"labelHeight": 26,
- "labelPosition": "INSIDE_MIDDLE_CENTER"
+ "labelPosition": "INSIDE_MIDDLE_CENTER",
+ "zIndex": 0,
+ "level": 2
}
],
"connections": [
@@ -212,7 +216,8 @@
"isCurve": true,
"animated": false,
"tooltip": "",
- "icon": null
+ "icon": null,
+ "zIndex": 0
}
]
}
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 8bc9b6211..1235bf60f 100644
--- a/e2etests/testdata/sanity/child_to_child/elk/board.exp.json
+++ b/e2etests/testdata/sanity/child_to_child/elk/board.exp.json
@@ -10,7 +10,6 @@
},
"width": 263,
"height": 276,
- "level": 1,
"opacity": 1,
"strokeDash": 0,
"strokeWidth": 2,
@@ -37,7 +36,9 @@
"underline": false,
"labelWidth": 17,
"labelHeight": 41,
- "labelPosition": "INSIDE_TOP_CENTER"
+ "labelPosition": "INSIDE_TOP_CENTER",
+ "zIndex": 0,
+ "level": 1
},
{
"id": "a.b",
@@ -48,7 +49,6 @@
},
"width": 113,
"height": 126,
- "level": 2,
"opacity": 1,
"strokeDash": 0,
"strokeWidth": 2,
@@ -75,7 +75,9 @@
"underline": false,
"labelWidth": 13,
"labelHeight": 26,
- "labelPosition": "INSIDE_MIDDLE_CENTER"
+ "labelPosition": "INSIDE_MIDDLE_CENTER",
+ "zIndex": 0,
+ "level": 2
},
{
"id": "c",
@@ -86,7 +88,6 @@
},
"width": 264,
"height": 276,
- "level": 1,
"opacity": 1,
"strokeDash": 0,
"strokeWidth": 2,
@@ -113,7 +114,9 @@
"underline": false,
"labelWidth": 17,
"labelHeight": 41,
- "labelPosition": "INSIDE_TOP_CENTER"
+ "labelPosition": "INSIDE_TOP_CENTER",
+ "zIndex": 0,
+ "level": 1
},
{
"id": "c.d",
@@ -124,7 +127,6 @@
},
"width": 114,
"height": 126,
- "level": 2,
"opacity": 1,
"strokeDash": 0,
"strokeWidth": 2,
@@ -151,7 +153,9 @@
"underline": false,
"labelWidth": 14,
"labelHeight": 26,
- "labelPosition": "INSIDE_MIDDLE_CENTER"
+ "labelPosition": "INSIDE_MIDDLE_CENTER",
+ "zIndex": 0,
+ "level": 2
}
],
"connections": [
@@ -191,7 +195,8 @@
],
"animated": false,
"tooltip": "",
- "icon": null
+ "icon": null,
+ "zIndex": 0
}
]
}
diff --git a/e2etests/testdata/sanity/connection_label/dagre/board.exp.json b/e2etests/testdata/sanity/connection_label/dagre/board.exp.json
index d1f6a5b5d..dae192a6e 100644
--- a/e2etests/testdata/sanity/connection_label/dagre/board.exp.json
+++ b/e2etests/testdata/sanity/connection_label/dagre/board.exp.json
@@ -10,7 +10,6 @@
},
"width": 113,
"height": 126,
- "level": 1,
"opacity": 1,
"strokeDash": 0,
"strokeWidth": 2,
@@ -37,7 +36,9 @@
"underline": false,
"labelWidth": 13,
"labelHeight": 26,
- "labelPosition": "INSIDE_MIDDLE_CENTER"
+ "labelPosition": "INSIDE_MIDDLE_CENTER",
+ "zIndex": 0,
+ "level": 1
},
{
"id": "b",
@@ -48,7 +49,6 @@
},
"width": 113,
"height": 126,
- "level": 1,
"opacity": 1,
"strokeDash": 0,
"strokeWidth": 2,
@@ -75,7 +75,9 @@
"underline": false,
"labelWidth": 13,
"labelHeight": 26,
- "labelPosition": "INSIDE_MIDDLE_CENTER"
+ "labelPosition": "INSIDE_MIDDLE_CENTER",
+ "zIndex": 0,
+ "level": 1
}
],
"connections": [
@@ -124,7 +126,8 @@
"isCurve": true,
"animated": false,
"tooltip": "",
- "icon": null
+ "icon": null,
+ "zIndex": 0
}
]
}
diff --git a/e2etests/testdata/sanity/connection_label/elk/board.exp.json b/e2etests/testdata/sanity/connection_label/elk/board.exp.json
index de990b413..2680db2b1 100644
--- a/e2etests/testdata/sanity/connection_label/elk/board.exp.json
+++ b/e2etests/testdata/sanity/connection_label/elk/board.exp.json
@@ -10,7 +10,6 @@
},
"width": 113,
"height": 126,
- "level": 1,
"opacity": 1,
"strokeDash": 0,
"strokeWidth": 2,
@@ -37,7 +36,9 @@
"underline": false,
"labelWidth": 13,
"labelHeight": 26,
- "labelPosition": "INSIDE_MIDDLE_CENTER"
+ "labelPosition": "INSIDE_MIDDLE_CENTER",
+ "zIndex": 0,
+ "level": 1
},
{
"id": "b",
@@ -48,7 +49,6 @@
},
"width": 113,
"height": 126,
- "level": 1,
"opacity": 1,
"strokeDash": 0,
"strokeWidth": 2,
@@ -75,7 +75,9 @@
"underline": false,
"labelWidth": 13,
"labelHeight": 26,
- "labelPosition": "INSIDE_MIDDLE_CENTER"
+ "labelPosition": "INSIDE_MIDDLE_CENTER",
+ "zIndex": 0,
+ "level": 1
}
],
"connections": [
@@ -115,7 +117,8 @@
],
"animated": false,
"tooltip": "",
- "icon": null
+ "icon": null,
+ "zIndex": 0
}
]
}
diff --git a/e2etests/testdata/stable/all_shapes/dagre/board.exp.json b/e2etests/testdata/stable/all_shapes/dagre/board.exp.json
index 6f4eccd75..a86e092db 100644
--- a/e2etests/testdata/stable/all_shapes/dagre/board.exp.json
+++ b/e2etests/testdata/stable/all_shapes/dagre/board.exp.json
@@ -10,7 +10,6 @@
},
"width": 171,
"height": 126,
- "level": 1,
"opacity": 1,
"strokeDash": 0,
"strokeWidth": 2,
@@ -37,7 +36,9 @@
"underline": false,
"labelWidth": 71,
"labelHeight": 26,
- "labelPosition": "INSIDE_MIDDLE_CENTER"
+ "labelPosition": "INSIDE_MIDDLE_CENTER",
+ "zIndex": 0,
+ "level": 1
},
{
"id": "square",
@@ -48,7 +49,6 @@
},
"width": 154,
"height": 154,
- "level": 1,
"opacity": 1,
"strokeDash": 0,
"strokeWidth": 2,
@@ -75,7 +75,9 @@
"underline": false,
"labelWidth": 54,
"labelHeight": 26,
- "labelPosition": "INSIDE_MIDDLE_CENTER"
+ "labelPosition": "INSIDE_MIDDLE_CENTER",
+ "zIndex": 0,
+ "level": 1
},
{
"id": "page",
@@ -86,7 +88,6 @@
},
"width": 139,
"height": 126,
- "level": 1,
"opacity": 1,
"strokeDash": 0,
"strokeWidth": 2,
@@ -113,7 +114,9 @@
"underline": false,
"labelWidth": 39,
"labelHeight": 26,
- "labelPosition": "INSIDE_MIDDLE_CENTER"
+ "labelPosition": "INSIDE_MIDDLE_CENTER",
+ "zIndex": 0,
+ "level": 1
},
{
"id": "parallelogram",
@@ -124,7 +127,6 @@
},
"width": 204,
"height": 126,
- "level": 1,
"opacity": 1,
"strokeDash": 0,
"strokeWidth": 2,
@@ -151,7 +153,9 @@
"underline": false,
"labelWidth": 104,
"labelHeight": 26,
- "labelPosition": "INSIDE_MIDDLE_CENTER"
+ "labelPosition": "INSIDE_MIDDLE_CENTER",
+ "zIndex": 0,
+ "level": 1
},
{
"id": "document",
@@ -162,7 +166,6 @@
},
"width": 177,
"height": 126,
- "level": 1,
"opacity": 1,
"strokeDash": 0,
"strokeWidth": 2,
@@ -189,7 +192,9 @@
"underline": false,
"labelWidth": 77,
"labelHeight": 26,
- "labelPosition": "INSIDE_MIDDLE_CENTER"
+ "labelPosition": "INSIDE_MIDDLE_CENTER",
+ "zIndex": 0,
+ "level": 1
},
{
"id": "cylinder",
@@ -200,7 +205,6 @@
},
"width": 164,
"height": 126,
- "level": 1,
"opacity": 1,
"strokeDash": 0,
"strokeWidth": 2,
@@ -227,7 +231,9 @@
"underline": false,
"labelWidth": 64,
"labelHeight": 26,
- "labelPosition": "INSIDE_MIDDLE_CENTER"
+ "labelPosition": "INSIDE_MIDDLE_CENTER",
+ "zIndex": 0,
+ "level": 1
},
{
"id": "queue",
@@ -238,7 +244,6 @@
},
"width": 149,
"height": 126,
- "level": 1,
"opacity": 1,
"strokeDash": 0,
"strokeWidth": 2,
@@ -265,7 +270,9 @@
"underline": false,
"labelWidth": 49,
"labelHeight": 26,
- "labelPosition": "INSIDE_MIDDLE_CENTER"
+ "labelPosition": "INSIDE_MIDDLE_CENTER",
+ "zIndex": 0,
+ "level": 1
},
{
"id": "package",
@@ -276,7 +283,6 @@
},
"width": 163,
"height": 126,
- "level": 1,
"opacity": 1,
"strokeDash": 0,
"strokeWidth": 2,
@@ -303,7 +309,9 @@
"underline": false,
"labelWidth": 63,
"labelHeight": 26,
- "labelPosition": "INSIDE_MIDDLE_CENTER"
+ "labelPosition": "INSIDE_MIDDLE_CENTER",
+ "zIndex": 0,
+ "level": 1
},
{
"id": "step",
@@ -314,7 +322,6 @@
},
"width": 136,
"height": 126,
- "level": 1,
"opacity": 1,
"strokeDash": 0,
"strokeWidth": 2,
@@ -341,7 +348,9 @@
"underline": false,
"labelWidth": 36,
"labelHeight": 26,
- "labelPosition": "INSIDE_MIDDLE_CENTER"
+ "labelPosition": "INSIDE_MIDDLE_CENTER",
+ "zIndex": 0,
+ "level": 1
},
{
"id": "callout",
@@ -352,7 +361,6 @@
},
"width": 155,
"height": 126,
- "level": 1,
"opacity": 1,
"strokeDash": 0,
"strokeWidth": 2,
@@ -379,7 +387,9 @@
"underline": false,
"labelWidth": 55,
"labelHeight": 26,
- "labelPosition": "INSIDE_MIDDLE_CENTER"
+ "labelPosition": "INSIDE_MIDDLE_CENTER",
+ "zIndex": 0,
+ "level": 1
},
{
"id": "stored_data",
@@ -390,7 +400,6 @@
},
"width": 191,
"height": 126,
- "level": 1,
"opacity": 1,
"strokeDash": 0,
"strokeWidth": 2,
@@ -417,7 +426,9 @@
"underline": false,
"labelWidth": 91,
"labelHeight": 26,
- "labelPosition": "INSIDE_MIDDLE_CENTER"
+ "labelPosition": "INSIDE_MIDDLE_CENTER",
+ "zIndex": 0,
+ "level": 1
},
{
"id": "person",
@@ -428,7 +439,6 @@
},
"width": 153,
"height": 126,
- "level": 1,
"opacity": 1,
"strokeDash": 0,
"strokeWidth": 2,
@@ -455,7 +465,9 @@
"underline": false,
"labelWidth": 53,
"labelHeight": 26,
- "labelPosition": "INSIDE_MIDDLE_CENTER"
+ "labelPosition": "INSIDE_MIDDLE_CENTER",
+ "zIndex": 0,
+ "level": 1
},
{
"id": "diamond",
@@ -466,7 +478,6 @@
},
"width": 168,
"height": 126,
- "level": 1,
"opacity": 1,
"strokeDash": 0,
"strokeWidth": 2,
@@ -493,7 +504,9 @@
"underline": false,
"labelWidth": 68,
"labelHeight": 26,
- "labelPosition": "INSIDE_MIDDLE_CENTER"
+ "labelPosition": "INSIDE_MIDDLE_CENTER",
+ "zIndex": 0,
+ "level": 1
},
{
"id": "oval",
@@ -504,7 +517,6 @@
},
"width": 136,
"height": 126,
- "level": 1,
"opacity": 1,
"strokeDash": 0,
"strokeWidth": 2,
@@ -531,7 +543,9 @@
"underline": false,
"labelWidth": 36,
"labelHeight": 26,
- "labelPosition": "INSIDE_MIDDLE_CENTER"
+ "labelPosition": "INSIDE_MIDDLE_CENTER",
+ "zIndex": 0,
+ "level": 1
},
{
"id": "circle",
@@ -542,7 +556,6 @@
},
"width": 144,
"height": 144,
- "level": 1,
"opacity": 1,
"strokeDash": 0,
"strokeWidth": 2,
@@ -569,7 +582,9 @@
"underline": false,
"labelWidth": 44,
"labelHeight": 26,
- "labelPosition": "INSIDE_MIDDLE_CENTER"
+ "labelPosition": "INSIDE_MIDDLE_CENTER",
+ "zIndex": 0,
+ "level": 1
},
{
"id": "hexagon",
@@ -580,7 +595,6 @@
},
"width": 165,
"height": 126,
- "level": 1,
"opacity": 1,
"strokeDash": 0,
"strokeWidth": 2,
@@ -607,7 +621,9 @@
"underline": false,
"labelWidth": 65,
"labelHeight": 26,
- "labelPosition": "INSIDE_MIDDLE_CENTER"
+ "labelPosition": "INSIDE_MIDDLE_CENTER",
+ "zIndex": 0,
+ "level": 1
},
{
"id": "cloud",
@@ -618,7 +634,6 @@
},
"width": 145,
"height": 126,
- "level": 1,
"opacity": 1,
"strokeDash": 0,
"strokeWidth": 2,
@@ -645,7 +660,9 @@
"underline": false,
"labelWidth": 45,
"labelHeight": 26,
- "labelPosition": "INSIDE_MIDDLE_CENTER"
+ "labelPosition": "INSIDE_MIDDLE_CENTER",
+ "zIndex": 0,
+ "level": 1
}
],
"connections": [
@@ -694,7 +711,8 @@
"isCurve": true,
"animated": false,
"tooltip": "",
- "icon": null
+ "icon": null,
+ "zIndex": 0
},
{
"id": "(square -> page)[0]",
@@ -741,7 +759,8 @@
"isCurve": true,
"animated": false,
"tooltip": "",
- "icon": null
+ "icon": null,
+ "zIndex": 0
},
{
"id": "(parallelogram -> document)[0]",
@@ -788,7 +807,8 @@
"isCurve": true,
"animated": false,
"tooltip": "",
- "icon": null
+ "icon": null,
+ "zIndex": 0
},
{
"id": "(document -> cylinder)[0]",
@@ -835,7 +855,8 @@
"isCurve": true,
"animated": false,
"tooltip": "",
- "icon": null
+ "icon": null,
+ "zIndex": 0
},
{
"id": "(queue -> package)[0]",
@@ -882,7 +903,8 @@
"isCurve": true,
"animated": false,
"tooltip": "",
- "icon": null
+ "icon": null,
+ "zIndex": 0
},
{
"id": "(package -> step)[0]",
@@ -929,7 +951,8 @@
"isCurve": true,
"animated": false,
"tooltip": "",
- "icon": null
+ "icon": null,
+ "zIndex": 0
},
{
"id": "(callout -> stored_data)[0]",
@@ -976,7 +999,8 @@
"isCurve": true,
"animated": false,
"tooltip": "",
- "icon": null
+ "icon": null,
+ "zIndex": 0
},
{
"id": "(stored_data -> person)[0]",
@@ -1023,7 +1047,8 @@
"isCurve": true,
"animated": false,
"tooltip": "",
- "icon": null
+ "icon": null,
+ "zIndex": 0
},
{
"id": "(diamond -> oval)[0]",
@@ -1070,7 +1095,8 @@
"isCurve": true,
"animated": false,
"tooltip": "",
- "icon": null
+ "icon": null,
+ "zIndex": 0
},
{
"id": "(oval -> circle)[0]",
@@ -1117,7 +1143,8 @@
"isCurve": true,
"animated": false,
"tooltip": "",
- "icon": null
+ "icon": null,
+ "zIndex": 0
},
{
"id": "(hexagon -> cloud)[0]",
@@ -1164,7 +1191,8 @@
"isCurve": true,
"animated": false,
"tooltip": "",
- "icon": null
+ "icon": null,
+ "zIndex": 0
}
]
}
diff --git a/e2etests/testdata/stable/all_shapes/elk/board.exp.json b/e2etests/testdata/stable/all_shapes/elk/board.exp.json
index 811647e29..cf413393a 100644
--- a/e2etests/testdata/stable/all_shapes/elk/board.exp.json
+++ b/e2etests/testdata/stable/all_shapes/elk/board.exp.json
@@ -10,7 +10,6 @@
},
"width": 171,
"height": 126,
- "level": 1,
"opacity": 1,
"strokeDash": 0,
"strokeWidth": 2,
@@ -37,7 +36,9 @@
"underline": false,
"labelWidth": 71,
"labelHeight": 26,
- "labelPosition": "INSIDE_MIDDLE_CENTER"
+ "labelPosition": "INSIDE_MIDDLE_CENTER",
+ "zIndex": 0,
+ "level": 1
},
{
"id": "square",
@@ -48,7 +49,6 @@
},
"width": 154,
"height": 154,
- "level": 1,
"opacity": 1,
"strokeDash": 0,
"strokeWidth": 2,
@@ -75,7 +75,9 @@
"underline": false,
"labelWidth": 54,
"labelHeight": 26,
- "labelPosition": "INSIDE_MIDDLE_CENTER"
+ "labelPosition": "INSIDE_MIDDLE_CENTER",
+ "zIndex": 0,
+ "level": 1
},
{
"id": "page",
@@ -86,7 +88,6 @@
},
"width": 139,
"height": 126,
- "level": 1,
"opacity": 1,
"strokeDash": 0,
"strokeWidth": 2,
@@ -113,7 +114,9 @@
"underline": false,
"labelWidth": 39,
"labelHeight": 26,
- "labelPosition": "INSIDE_MIDDLE_CENTER"
+ "labelPosition": "INSIDE_MIDDLE_CENTER",
+ "zIndex": 0,
+ "level": 1
},
{
"id": "parallelogram",
@@ -124,7 +127,6 @@
},
"width": 204,
"height": 126,
- "level": 1,
"opacity": 1,
"strokeDash": 0,
"strokeWidth": 2,
@@ -151,7 +153,9 @@
"underline": false,
"labelWidth": 104,
"labelHeight": 26,
- "labelPosition": "INSIDE_MIDDLE_CENTER"
+ "labelPosition": "INSIDE_MIDDLE_CENTER",
+ "zIndex": 0,
+ "level": 1
},
{
"id": "document",
@@ -162,7 +166,6 @@
},
"width": 177,
"height": 126,
- "level": 1,
"opacity": 1,
"strokeDash": 0,
"strokeWidth": 2,
@@ -189,7 +192,9 @@
"underline": false,
"labelWidth": 77,
"labelHeight": 26,
- "labelPosition": "INSIDE_MIDDLE_CENTER"
+ "labelPosition": "INSIDE_MIDDLE_CENTER",
+ "zIndex": 0,
+ "level": 1
},
{
"id": "cylinder",
@@ -200,7 +205,6 @@
},
"width": 164,
"height": 126,
- "level": 1,
"opacity": 1,
"strokeDash": 0,
"strokeWidth": 2,
@@ -227,7 +231,9 @@
"underline": false,
"labelWidth": 64,
"labelHeight": 26,
- "labelPosition": "INSIDE_MIDDLE_CENTER"
+ "labelPosition": "INSIDE_MIDDLE_CENTER",
+ "zIndex": 0,
+ "level": 1
},
{
"id": "queue",
@@ -238,7 +244,6 @@
},
"width": 149,
"height": 126,
- "level": 1,
"opacity": 1,
"strokeDash": 0,
"strokeWidth": 2,
@@ -265,7 +270,9 @@
"underline": false,
"labelWidth": 49,
"labelHeight": 26,
- "labelPosition": "INSIDE_MIDDLE_CENTER"
+ "labelPosition": "INSIDE_MIDDLE_CENTER",
+ "zIndex": 0,
+ "level": 1
},
{
"id": "package",
@@ -276,7 +283,6 @@
},
"width": 163,
"height": 126,
- "level": 1,
"opacity": 1,
"strokeDash": 0,
"strokeWidth": 2,
@@ -303,7 +309,9 @@
"underline": false,
"labelWidth": 63,
"labelHeight": 26,
- "labelPosition": "INSIDE_MIDDLE_CENTER"
+ "labelPosition": "INSIDE_MIDDLE_CENTER",
+ "zIndex": 0,
+ "level": 1
},
{
"id": "step",
@@ -314,7 +322,6 @@
},
"width": 136,
"height": 126,
- "level": 1,
"opacity": 1,
"strokeDash": 0,
"strokeWidth": 2,
@@ -341,7 +348,9 @@
"underline": false,
"labelWidth": 36,
"labelHeight": 26,
- "labelPosition": "INSIDE_MIDDLE_CENTER"
+ "labelPosition": "INSIDE_MIDDLE_CENTER",
+ "zIndex": 0,
+ "level": 1
},
{
"id": "callout",
@@ -352,7 +361,6 @@
},
"width": 155,
"height": 126,
- "level": 1,
"opacity": 1,
"strokeDash": 0,
"strokeWidth": 2,
@@ -379,7 +387,9 @@
"underline": false,
"labelWidth": 55,
"labelHeight": 26,
- "labelPosition": "INSIDE_MIDDLE_CENTER"
+ "labelPosition": "INSIDE_MIDDLE_CENTER",
+ "zIndex": 0,
+ "level": 1
},
{
"id": "stored_data",
@@ -390,7 +400,6 @@
},
"width": 191,
"height": 126,
- "level": 1,
"opacity": 1,
"strokeDash": 0,
"strokeWidth": 2,
@@ -417,7 +426,9 @@
"underline": false,
"labelWidth": 91,
"labelHeight": 26,
- "labelPosition": "INSIDE_MIDDLE_CENTER"
+ "labelPosition": "INSIDE_MIDDLE_CENTER",
+ "zIndex": 0,
+ "level": 1
},
{
"id": "person",
@@ -428,7 +439,6 @@
},
"width": 153,
"height": 126,
- "level": 1,
"opacity": 1,
"strokeDash": 0,
"strokeWidth": 2,
@@ -455,7 +465,9 @@
"underline": false,
"labelWidth": 53,
"labelHeight": 26,
- "labelPosition": "INSIDE_MIDDLE_CENTER"
+ "labelPosition": "INSIDE_MIDDLE_CENTER",
+ "zIndex": 0,
+ "level": 1
},
{
"id": "diamond",
@@ -466,7 +478,6 @@
},
"width": 168,
"height": 126,
- "level": 1,
"opacity": 1,
"strokeDash": 0,
"strokeWidth": 2,
@@ -493,7 +504,9 @@
"underline": false,
"labelWidth": 68,
"labelHeight": 26,
- "labelPosition": "INSIDE_MIDDLE_CENTER"
+ "labelPosition": "INSIDE_MIDDLE_CENTER",
+ "zIndex": 0,
+ "level": 1
},
{
"id": "oval",
@@ -504,7 +517,6 @@
},
"width": 136,
"height": 126,
- "level": 1,
"opacity": 1,
"strokeDash": 0,
"strokeWidth": 2,
@@ -531,7 +543,9 @@
"underline": false,
"labelWidth": 36,
"labelHeight": 26,
- "labelPosition": "INSIDE_MIDDLE_CENTER"
+ "labelPosition": "INSIDE_MIDDLE_CENTER",
+ "zIndex": 0,
+ "level": 1
},
{
"id": "circle",
@@ -542,7 +556,6 @@
},
"width": 144,
"height": 144,
- "level": 1,
"opacity": 1,
"strokeDash": 0,
"strokeWidth": 2,
@@ -569,7 +582,9 @@
"underline": false,
"labelWidth": 44,
"labelHeight": 26,
- "labelPosition": "INSIDE_MIDDLE_CENTER"
+ "labelPosition": "INSIDE_MIDDLE_CENTER",
+ "zIndex": 0,
+ "level": 1
},
{
"id": "hexagon",
@@ -580,7 +595,6 @@
},
"width": 165,
"height": 126,
- "level": 1,
"opacity": 1,
"strokeDash": 0,
"strokeWidth": 2,
@@ -607,7 +621,9 @@
"underline": false,
"labelWidth": 65,
"labelHeight": 26,
- "labelPosition": "INSIDE_MIDDLE_CENTER"
+ "labelPosition": "INSIDE_MIDDLE_CENTER",
+ "zIndex": 0,
+ "level": 1
},
{
"id": "cloud",
@@ -618,7 +634,6 @@
},
"width": 145,
"height": 126,
- "level": 1,
"opacity": 1,
"strokeDash": 0,
"strokeWidth": 2,
@@ -645,7 +660,9 @@
"underline": false,
"labelWidth": 45,
"labelHeight": 26,
- "labelPosition": "INSIDE_MIDDLE_CENTER"
+ "labelPosition": "INSIDE_MIDDLE_CENTER",
+ "zIndex": 0,
+ "level": 1
}
],
"connections": [
@@ -685,7 +702,8 @@
],
"animated": false,
"tooltip": "",
- "icon": null
+ "icon": null,
+ "zIndex": 0
},
{
"id": "(square -> page)[0]",
@@ -723,7 +741,8 @@
],
"animated": false,
"tooltip": "",
- "icon": null
+ "icon": null,
+ "zIndex": 0
},
{
"id": "(parallelogram -> document)[0]",
@@ -761,7 +780,8 @@
],
"animated": false,
"tooltip": "",
- "icon": null
+ "icon": null,
+ "zIndex": 0
},
{
"id": "(document -> cylinder)[0]",
@@ -799,7 +819,8 @@
],
"animated": false,
"tooltip": "",
- "icon": null
+ "icon": null,
+ "zIndex": 0
},
{
"id": "(queue -> package)[0]",
@@ -837,7 +858,8 @@
],
"animated": false,
"tooltip": "",
- "icon": null
+ "icon": null,
+ "zIndex": 0
},
{
"id": "(package -> step)[0]",
@@ -875,7 +897,8 @@
],
"animated": false,
"tooltip": "",
- "icon": null
+ "icon": null,
+ "zIndex": 0
},
{
"id": "(callout -> stored_data)[0]",
@@ -913,7 +936,8 @@
],
"animated": false,
"tooltip": "",
- "icon": null
+ "icon": null,
+ "zIndex": 0
},
{
"id": "(stored_data -> person)[0]",
@@ -951,7 +975,8 @@
],
"animated": false,
"tooltip": "",
- "icon": null
+ "icon": null,
+ "zIndex": 0
},
{
"id": "(diamond -> oval)[0]",
@@ -989,7 +1014,8 @@
],
"animated": false,
"tooltip": "",
- "icon": null
+ "icon": null,
+ "zIndex": 0
},
{
"id": "(oval -> circle)[0]",
@@ -1027,7 +1053,8 @@
],
"animated": false,
"tooltip": "",
- "icon": null
+ "icon": null,
+ "zIndex": 0
},
{
"id": "(hexagon -> cloud)[0]",
@@ -1065,7 +1092,8 @@
],
"animated": false,
"tooltip": "",
- "icon": null
+ "icon": null,
+ "zIndex": 0
}
]
}
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 b379936c3..fbc808da0 100644
--- a/e2etests/testdata/stable/all_shapes_multiple/dagre/board.exp.json
+++ b/e2etests/testdata/stable/all_shapes_multiple/dagre/board.exp.json
@@ -10,7 +10,6 @@
},
"width": 171,
"height": 126,
- "level": 1,
"opacity": 1,
"strokeDash": 0,
"strokeWidth": 2,
@@ -37,7 +36,9 @@
"underline": false,
"labelWidth": 71,
"labelHeight": 26,
- "labelPosition": "INSIDE_MIDDLE_CENTER"
+ "labelPosition": "INSIDE_MIDDLE_CENTER",
+ "zIndex": 0,
+ "level": 1
},
{
"id": "square",
@@ -48,7 +49,6 @@
},
"width": 154,
"height": 154,
- "level": 1,
"opacity": 1,
"strokeDash": 0,
"strokeWidth": 2,
@@ -75,7 +75,9 @@
"underline": false,
"labelWidth": 54,
"labelHeight": 26,
- "labelPosition": "INSIDE_MIDDLE_CENTER"
+ "labelPosition": "INSIDE_MIDDLE_CENTER",
+ "zIndex": 0,
+ "level": 1
},
{
"id": "page",
@@ -86,7 +88,6 @@
},
"width": 139,
"height": 126,
- "level": 1,
"opacity": 1,
"strokeDash": 0,
"strokeWidth": 2,
@@ -113,7 +114,9 @@
"underline": false,
"labelWidth": 39,
"labelHeight": 26,
- "labelPosition": "INSIDE_MIDDLE_CENTER"
+ "labelPosition": "INSIDE_MIDDLE_CENTER",
+ "zIndex": 0,
+ "level": 1
},
{
"id": "parallelogram",
@@ -124,7 +127,6 @@
},
"width": 204,
"height": 126,
- "level": 1,
"opacity": 1,
"strokeDash": 0,
"strokeWidth": 2,
@@ -151,7 +153,9 @@
"underline": false,
"labelWidth": 104,
"labelHeight": 26,
- "labelPosition": "INSIDE_MIDDLE_CENTER"
+ "labelPosition": "INSIDE_MIDDLE_CENTER",
+ "zIndex": 0,
+ "level": 1
},
{
"id": "document",
@@ -162,7 +166,6 @@
},
"width": 177,
"height": 126,
- "level": 1,
"opacity": 1,
"strokeDash": 0,
"strokeWidth": 2,
@@ -189,7 +192,9 @@
"underline": false,
"labelWidth": 77,
"labelHeight": 26,
- "labelPosition": "INSIDE_MIDDLE_CENTER"
+ "labelPosition": "INSIDE_MIDDLE_CENTER",
+ "zIndex": 0,
+ "level": 1
},
{
"id": "cylinder",
@@ -200,7 +205,6 @@
},
"width": 164,
"height": 126,
- "level": 1,
"opacity": 1,
"strokeDash": 0,
"strokeWidth": 2,
@@ -227,7 +231,9 @@
"underline": false,
"labelWidth": 64,
"labelHeight": 26,
- "labelPosition": "INSIDE_MIDDLE_CENTER"
+ "labelPosition": "INSIDE_MIDDLE_CENTER",
+ "zIndex": 0,
+ "level": 1
},
{
"id": "queue",
@@ -238,7 +244,6 @@
},
"width": 149,
"height": 126,
- "level": 1,
"opacity": 1,
"strokeDash": 0,
"strokeWidth": 2,
@@ -265,7 +270,9 @@
"underline": false,
"labelWidth": 49,
"labelHeight": 26,
- "labelPosition": "INSIDE_MIDDLE_CENTER"
+ "labelPosition": "INSIDE_MIDDLE_CENTER",
+ "zIndex": 0,
+ "level": 1
},
{
"id": "package",
@@ -276,7 +283,6 @@
},
"width": 163,
"height": 126,
- "level": 1,
"opacity": 1,
"strokeDash": 0,
"strokeWidth": 2,
@@ -303,7 +309,9 @@
"underline": false,
"labelWidth": 63,
"labelHeight": 26,
- "labelPosition": "INSIDE_MIDDLE_CENTER"
+ "labelPosition": "INSIDE_MIDDLE_CENTER",
+ "zIndex": 0,
+ "level": 1
},
{
"id": "step",
@@ -314,7 +322,6 @@
},
"width": 136,
"height": 126,
- "level": 1,
"opacity": 1,
"strokeDash": 0,
"strokeWidth": 2,
@@ -341,7 +348,9 @@
"underline": false,
"labelWidth": 36,
"labelHeight": 26,
- "labelPosition": "INSIDE_MIDDLE_CENTER"
+ "labelPosition": "INSIDE_MIDDLE_CENTER",
+ "zIndex": 0,
+ "level": 1
},
{
"id": "callout",
@@ -352,7 +361,6 @@
},
"width": 155,
"height": 126,
- "level": 1,
"opacity": 1,
"strokeDash": 0,
"strokeWidth": 2,
@@ -379,7 +387,9 @@
"underline": false,
"labelWidth": 55,
"labelHeight": 26,
- "labelPosition": "INSIDE_MIDDLE_CENTER"
+ "labelPosition": "INSIDE_MIDDLE_CENTER",
+ "zIndex": 0,
+ "level": 1
},
{
"id": "stored_data",
@@ -390,7 +400,6 @@
},
"width": 191,
"height": 126,
- "level": 1,
"opacity": 1,
"strokeDash": 0,
"strokeWidth": 2,
@@ -417,7 +426,9 @@
"underline": false,
"labelWidth": 91,
"labelHeight": 26,
- "labelPosition": "INSIDE_MIDDLE_CENTER"
+ "labelPosition": "INSIDE_MIDDLE_CENTER",
+ "zIndex": 0,
+ "level": 1
},
{
"id": "person",
@@ -428,7 +439,6 @@
},
"width": 153,
"height": 126,
- "level": 1,
"opacity": 1,
"strokeDash": 0,
"strokeWidth": 2,
@@ -455,7 +465,9 @@
"underline": false,
"labelWidth": 53,
"labelHeight": 26,
- "labelPosition": "INSIDE_MIDDLE_CENTER"
+ "labelPosition": "INSIDE_MIDDLE_CENTER",
+ "zIndex": 0,
+ "level": 1
},
{
"id": "diamond",
@@ -466,7 +478,6 @@
},
"width": 168,
"height": 126,
- "level": 1,
"opacity": 1,
"strokeDash": 0,
"strokeWidth": 2,
@@ -493,7 +504,9 @@
"underline": false,
"labelWidth": 68,
"labelHeight": 26,
- "labelPosition": "INSIDE_MIDDLE_CENTER"
+ "labelPosition": "INSIDE_MIDDLE_CENTER",
+ "zIndex": 0,
+ "level": 1
},
{
"id": "oval",
@@ -504,7 +517,6 @@
},
"width": 136,
"height": 126,
- "level": 1,
"opacity": 1,
"strokeDash": 0,
"strokeWidth": 2,
@@ -531,7 +543,9 @@
"underline": false,
"labelWidth": 36,
"labelHeight": 26,
- "labelPosition": "INSIDE_MIDDLE_CENTER"
+ "labelPosition": "INSIDE_MIDDLE_CENTER",
+ "zIndex": 0,
+ "level": 1
},
{
"id": "circle",
@@ -542,7 +556,6 @@
},
"width": 144,
"height": 144,
- "level": 1,
"opacity": 1,
"strokeDash": 0,
"strokeWidth": 2,
@@ -569,7 +582,9 @@
"underline": false,
"labelWidth": 44,
"labelHeight": 26,
- "labelPosition": "INSIDE_MIDDLE_CENTER"
+ "labelPosition": "INSIDE_MIDDLE_CENTER",
+ "zIndex": 0,
+ "level": 1
},
{
"id": "hexagon",
@@ -580,7 +595,6 @@
},
"width": 165,
"height": 126,
- "level": 1,
"opacity": 1,
"strokeDash": 0,
"strokeWidth": 2,
@@ -607,7 +621,9 @@
"underline": false,
"labelWidth": 65,
"labelHeight": 26,
- "labelPosition": "INSIDE_MIDDLE_CENTER"
+ "labelPosition": "INSIDE_MIDDLE_CENTER",
+ "zIndex": 0,
+ "level": 1
},
{
"id": "cloud",
@@ -618,7 +634,6 @@
},
"width": 145,
"height": 126,
- "level": 1,
"opacity": 1,
"strokeDash": 0,
"strokeWidth": 2,
@@ -645,7 +660,9 @@
"underline": false,
"labelWidth": 45,
"labelHeight": 26,
- "labelPosition": "INSIDE_MIDDLE_CENTER"
+ "labelPosition": "INSIDE_MIDDLE_CENTER",
+ "zIndex": 0,
+ "level": 1
}
],
"connections": [
@@ -694,7 +711,8 @@
"isCurve": true,
"animated": false,
"tooltip": "",
- "icon": null
+ "icon": null,
+ "zIndex": 0
},
{
"id": "(square -> page)[0]",
@@ -741,7 +759,8 @@
"isCurve": true,
"animated": false,
"tooltip": "",
- "icon": null
+ "icon": null,
+ "zIndex": 0
},
{
"id": "(parallelogram -> document)[0]",
@@ -788,7 +807,8 @@
"isCurve": true,
"animated": false,
"tooltip": "",
- "icon": null
+ "icon": null,
+ "zIndex": 0
},
{
"id": "(document -> cylinder)[0]",
@@ -835,7 +855,8 @@
"isCurve": true,
"animated": false,
"tooltip": "",
- "icon": null
+ "icon": null,
+ "zIndex": 0
},
{
"id": "(queue -> package)[0]",
@@ -882,7 +903,8 @@
"isCurve": true,
"animated": false,
"tooltip": "",
- "icon": null
+ "icon": null,
+ "zIndex": 0
},
{
"id": "(package -> step)[0]",
@@ -929,7 +951,8 @@
"isCurve": true,
"animated": false,
"tooltip": "",
- "icon": null
+ "icon": null,
+ "zIndex": 0
},
{
"id": "(callout -> stored_data)[0]",
@@ -976,7 +999,8 @@
"isCurve": true,
"animated": false,
"tooltip": "",
- "icon": null
+ "icon": null,
+ "zIndex": 0
},
{
"id": "(stored_data -> person)[0]",
@@ -1023,7 +1047,8 @@
"isCurve": true,
"animated": false,
"tooltip": "",
- "icon": null
+ "icon": null,
+ "zIndex": 0
},
{
"id": "(diamond -> oval)[0]",
@@ -1070,7 +1095,8 @@
"isCurve": true,
"animated": false,
"tooltip": "",
- "icon": null
+ "icon": null,
+ "zIndex": 0
},
{
"id": "(oval -> circle)[0]",
@@ -1117,7 +1143,8 @@
"isCurve": true,
"animated": false,
"tooltip": "",
- "icon": null
+ "icon": null,
+ "zIndex": 0
},
{
"id": "(hexagon -> cloud)[0]",
@@ -1164,7 +1191,8 @@
"isCurve": true,
"animated": false,
"tooltip": "",
- "icon": null
+ "icon": null,
+ "zIndex": 0
}
]
}
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 bf2621398..fc778ada3 100644
--- a/e2etests/testdata/stable/all_shapes_multiple/elk/board.exp.json
+++ b/e2etests/testdata/stable/all_shapes_multiple/elk/board.exp.json
@@ -10,7 +10,6 @@
},
"width": 171,
"height": 126,
- "level": 1,
"opacity": 1,
"strokeDash": 0,
"strokeWidth": 2,
@@ -37,7 +36,9 @@
"underline": false,
"labelWidth": 71,
"labelHeight": 26,
- "labelPosition": "INSIDE_MIDDLE_CENTER"
+ "labelPosition": "INSIDE_MIDDLE_CENTER",
+ "zIndex": 0,
+ "level": 1
},
{
"id": "square",
@@ -48,7 +49,6 @@
},
"width": 154,
"height": 154,
- "level": 1,
"opacity": 1,
"strokeDash": 0,
"strokeWidth": 2,
@@ -75,7 +75,9 @@
"underline": false,
"labelWidth": 54,
"labelHeight": 26,
- "labelPosition": "INSIDE_MIDDLE_CENTER"
+ "labelPosition": "INSIDE_MIDDLE_CENTER",
+ "zIndex": 0,
+ "level": 1
},
{
"id": "page",
@@ -86,7 +88,6 @@
},
"width": 139,
"height": 126,
- "level": 1,
"opacity": 1,
"strokeDash": 0,
"strokeWidth": 2,
@@ -113,7 +114,9 @@
"underline": false,
"labelWidth": 39,
"labelHeight": 26,
- "labelPosition": "INSIDE_MIDDLE_CENTER"
+ "labelPosition": "INSIDE_MIDDLE_CENTER",
+ "zIndex": 0,
+ "level": 1
},
{
"id": "parallelogram",
@@ -124,7 +127,6 @@
},
"width": 204,
"height": 126,
- "level": 1,
"opacity": 1,
"strokeDash": 0,
"strokeWidth": 2,
@@ -151,7 +153,9 @@
"underline": false,
"labelWidth": 104,
"labelHeight": 26,
- "labelPosition": "INSIDE_MIDDLE_CENTER"
+ "labelPosition": "INSIDE_MIDDLE_CENTER",
+ "zIndex": 0,
+ "level": 1
},
{
"id": "document",
@@ -162,7 +166,6 @@
},
"width": 177,
"height": 126,
- "level": 1,
"opacity": 1,
"strokeDash": 0,
"strokeWidth": 2,
@@ -189,7 +192,9 @@
"underline": false,
"labelWidth": 77,
"labelHeight": 26,
- "labelPosition": "INSIDE_MIDDLE_CENTER"
+ "labelPosition": "INSIDE_MIDDLE_CENTER",
+ "zIndex": 0,
+ "level": 1
},
{
"id": "cylinder",
@@ -200,7 +205,6 @@
},
"width": 164,
"height": 126,
- "level": 1,
"opacity": 1,
"strokeDash": 0,
"strokeWidth": 2,
@@ -227,7 +231,9 @@
"underline": false,
"labelWidth": 64,
"labelHeight": 26,
- "labelPosition": "INSIDE_MIDDLE_CENTER"
+ "labelPosition": "INSIDE_MIDDLE_CENTER",
+ "zIndex": 0,
+ "level": 1
},
{
"id": "queue",
@@ -238,7 +244,6 @@
},
"width": 149,
"height": 126,
- "level": 1,
"opacity": 1,
"strokeDash": 0,
"strokeWidth": 2,
@@ -265,7 +270,9 @@
"underline": false,
"labelWidth": 49,
"labelHeight": 26,
- "labelPosition": "INSIDE_MIDDLE_CENTER"
+ "labelPosition": "INSIDE_MIDDLE_CENTER",
+ "zIndex": 0,
+ "level": 1
},
{
"id": "package",
@@ -276,7 +283,6 @@
},
"width": 163,
"height": 126,
- "level": 1,
"opacity": 1,
"strokeDash": 0,
"strokeWidth": 2,
@@ -303,7 +309,9 @@
"underline": false,
"labelWidth": 63,
"labelHeight": 26,
- "labelPosition": "INSIDE_MIDDLE_CENTER"
+ "labelPosition": "INSIDE_MIDDLE_CENTER",
+ "zIndex": 0,
+ "level": 1
},
{
"id": "step",
@@ -314,7 +322,6 @@
},
"width": 136,
"height": 126,
- "level": 1,
"opacity": 1,
"strokeDash": 0,
"strokeWidth": 2,
@@ -341,7 +348,9 @@
"underline": false,
"labelWidth": 36,
"labelHeight": 26,
- "labelPosition": "INSIDE_MIDDLE_CENTER"
+ "labelPosition": "INSIDE_MIDDLE_CENTER",
+ "zIndex": 0,
+ "level": 1
},
{
"id": "callout",
@@ -352,7 +361,6 @@
},
"width": 155,
"height": 126,
- "level": 1,
"opacity": 1,
"strokeDash": 0,
"strokeWidth": 2,
@@ -379,7 +387,9 @@
"underline": false,
"labelWidth": 55,
"labelHeight": 26,
- "labelPosition": "INSIDE_MIDDLE_CENTER"
+ "labelPosition": "INSIDE_MIDDLE_CENTER",
+ "zIndex": 0,
+ "level": 1
},
{
"id": "stored_data",
@@ -390,7 +400,6 @@
},
"width": 191,
"height": 126,
- "level": 1,
"opacity": 1,
"strokeDash": 0,
"strokeWidth": 2,
@@ -417,7 +426,9 @@
"underline": false,
"labelWidth": 91,
"labelHeight": 26,
- "labelPosition": "INSIDE_MIDDLE_CENTER"
+ "labelPosition": "INSIDE_MIDDLE_CENTER",
+ "zIndex": 0,
+ "level": 1
},
{
"id": "person",
@@ -428,7 +439,6 @@
},
"width": 153,
"height": 126,
- "level": 1,
"opacity": 1,
"strokeDash": 0,
"strokeWidth": 2,
@@ -455,7 +465,9 @@
"underline": false,
"labelWidth": 53,
"labelHeight": 26,
- "labelPosition": "INSIDE_MIDDLE_CENTER"
+ "labelPosition": "INSIDE_MIDDLE_CENTER",
+ "zIndex": 0,
+ "level": 1
},
{
"id": "diamond",
@@ -466,7 +478,6 @@
},
"width": 168,
"height": 126,
- "level": 1,
"opacity": 1,
"strokeDash": 0,
"strokeWidth": 2,
@@ -493,7 +504,9 @@
"underline": false,
"labelWidth": 68,
"labelHeight": 26,
- "labelPosition": "INSIDE_MIDDLE_CENTER"
+ "labelPosition": "INSIDE_MIDDLE_CENTER",
+ "zIndex": 0,
+ "level": 1
},
{
"id": "oval",
@@ -504,7 +517,6 @@
},
"width": 136,
"height": 126,
- "level": 1,
"opacity": 1,
"strokeDash": 0,
"strokeWidth": 2,
@@ -531,7 +543,9 @@
"underline": false,
"labelWidth": 36,
"labelHeight": 26,
- "labelPosition": "INSIDE_MIDDLE_CENTER"
+ "labelPosition": "INSIDE_MIDDLE_CENTER",
+ "zIndex": 0,
+ "level": 1
},
{
"id": "circle",
@@ -542,7 +556,6 @@
},
"width": 144,
"height": 144,
- "level": 1,
"opacity": 1,
"strokeDash": 0,
"strokeWidth": 2,
@@ -569,7 +582,9 @@
"underline": false,
"labelWidth": 44,
"labelHeight": 26,
- "labelPosition": "INSIDE_MIDDLE_CENTER"
+ "labelPosition": "INSIDE_MIDDLE_CENTER",
+ "zIndex": 0,
+ "level": 1
},
{
"id": "hexagon",
@@ -580,7 +595,6 @@
},
"width": 165,
"height": 126,
- "level": 1,
"opacity": 1,
"strokeDash": 0,
"strokeWidth": 2,
@@ -607,7 +621,9 @@
"underline": false,
"labelWidth": 65,
"labelHeight": 26,
- "labelPosition": "INSIDE_MIDDLE_CENTER"
+ "labelPosition": "INSIDE_MIDDLE_CENTER",
+ "zIndex": 0,
+ "level": 1
},
{
"id": "cloud",
@@ -618,7 +634,6 @@
},
"width": 145,
"height": 126,
- "level": 1,
"opacity": 1,
"strokeDash": 0,
"strokeWidth": 2,
@@ -645,7 +660,9 @@
"underline": false,
"labelWidth": 45,
"labelHeight": 26,
- "labelPosition": "INSIDE_MIDDLE_CENTER"
+ "labelPosition": "INSIDE_MIDDLE_CENTER",
+ "zIndex": 0,
+ "level": 1
}
],
"connections": [
@@ -685,7 +702,8 @@
],
"animated": false,
"tooltip": "",
- "icon": null
+ "icon": null,
+ "zIndex": 0
},
{
"id": "(square -> page)[0]",
@@ -723,7 +741,8 @@
],
"animated": false,
"tooltip": "",
- "icon": null
+ "icon": null,
+ "zIndex": 0
},
{
"id": "(parallelogram -> document)[0]",
@@ -761,7 +780,8 @@
],
"animated": false,
"tooltip": "",
- "icon": null
+ "icon": null,
+ "zIndex": 0
},
{
"id": "(document -> cylinder)[0]",
@@ -799,7 +819,8 @@
],
"animated": false,
"tooltip": "",
- "icon": null
+ "icon": null,
+ "zIndex": 0
},
{
"id": "(queue -> package)[0]",
@@ -837,7 +858,8 @@
],
"animated": false,
"tooltip": "",
- "icon": null
+ "icon": null,
+ "zIndex": 0
},
{
"id": "(package -> step)[0]",
@@ -875,7 +897,8 @@
],
"animated": false,
"tooltip": "",
- "icon": null
+ "icon": null,
+ "zIndex": 0
},
{
"id": "(callout -> stored_data)[0]",
@@ -913,7 +936,8 @@
],
"animated": false,
"tooltip": "",
- "icon": null
+ "icon": null,
+ "zIndex": 0
},
{
"id": "(stored_data -> person)[0]",
@@ -951,7 +975,8 @@
],
"animated": false,
"tooltip": "",
- "icon": null
+ "icon": null,
+ "zIndex": 0
},
{
"id": "(diamond -> oval)[0]",
@@ -989,7 +1014,8 @@
],
"animated": false,
"tooltip": "",
- "icon": null
+ "icon": null,
+ "zIndex": 0
},
{
"id": "(oval -> circle)[0]",
@@ -1027,7 +1053,8 @@
],
"animated": false,
"tooltip": "",
- "icon": null
+ "icon": null,
+ "zIndex": 0
},
{
"id": "(hexagon -> cloud)[0]",
@@ -1065,7 +1092,8 @@
],
"animated": false,
"tooltip": "",
- "icon": null
+ "icon": null,
+ "zIndex": 0
}
]
}
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 b751096e7..505c071a4 100644
--- a/e2etests/testdata/stable/all_shapes_shadow/dagre/board.exp.json
+++ b/e2etests/testdata/stable/all_shapes_shadow/dagre/board.exp.json
@@ -10,7 +10,6 @@
},
"width": 171,
"height": 126,
- "level": 1,
"opacity": 1,
"strokeDash": 0,
"strokeWidth": 2,
@@ -37,7 +36,9 @@
"underline": false,
"labelWidth": 71,
"labelHeight": 26,
- "labelPosition": "INSIDE_MIDDLE_CENTER"
+ "labelPosition": "INSIDE_MIDDLE_CENTER",
+ "zIndex": 0,
+ "level": 1
},
{
"id": "square",
@@ -48,7 +49,6 @@
},
"width": 154,
"height": 154,
- "level": 1,
"opacity": 1,
"strokeDash": 0,
"strokeWidth": 2,
@@ -75,7 +75,9 @@
"underline": false,
"labelWidth": 54,
"labelHeight": 26,
- "labelPosition": "INSIDE_MIDDLE_CENTER"
+ "labelPosition": "INSIDE_MIDDLE_CENTER",
+ "zIndex": 0,
+ "level": 1
},
{
"id": "page",
@@ -86,7 +88,6 @@
},
"width": 139,
"height": 126,
- "level": 1,
"opacity": 1,
"strokeDash": 0,
"strokeWidth": 2,
@@ -113,7 +114,9 @@
"underline": false,
"labelWidth": 39,
"labelHeight": 26,
- "labelPosition": "INSIDE_MIDDLE_CENTER"
+ "labelPosition": "INSIDE_MIDDLE_CENTER",
+ "zIndex": 0,
+ "level": 1
},
{
"id": "parallelogram",
@@ -124,7 +127,6 @@
},
"width": 204,
"height": 126,
- "level": 1,
"opacity": 1,
"strokeDash": 0,
"strokeWidth": 2,
@@ -151,7 +153,9 @@
"underline": false,
"labelWidth": 104,
"labelHeight": 26,
- "labelPosition": "INSIDE_MIDDLE_CENTER"
+ "labelPosition": "INSIDE_MIDDLE_CENTER",
+ "zIndex": 0,
+ "level": 1
},
{
"id": "document",
@@ -162,7 +166,6 @@
},
"width": 177,
"height": 126,
- "level": 1,
"opacity": 1,
"strokeDash": 0,
"strokeWidth": 2,
@@ -189,7 +192,9 @@
"underline": false,
"labelWidth": 77,
"labelHeight": 26,
- "labelPosition": "INSIDE_MIDDLE_CENTER"
+ "labelPosition": "INSIDE_MIDDLE_CENTER",
+ "zIndex": 0,
+ "level": 1
},
{
"id": "cylinder",
@@ -200,7 +205,6 @@
},
"width": 164,
"height": 126,
- "level": 1,
"opacity": 1,
"strokeDash": 0,
"strokeWidth": 2,
@@ -227,7 +231,9 @@
"underline": false,
"labelWidth": 64,
"labelHeight": 26,
- "labelPosition": "INSIDE_MIDDLE_CENTER"
+ "labelPosition": "INSIDE_MIDDLE_CENTER",
+ "zIndex": 0,
+ "level": 1
},
{
"id": "queue",
@@ -238,7 +244,6 @@
},
"width": 149,
"height": 126,
- "level": 1,
"opacity": 1,
"strokeDash": 0,
"strokeWidth": 2,
@@ -265,7 +270,9 @@
"underline": false,
"labelWidth": 49,
"labelHeight": 26,
- "labelPosition": "INSIDE_MIDDLE_CENTER"
+ "labelPosition": "INSIDE_MIDDLE_CENTER",
+ "zIndex": 0,
+ "level": 1
},
{
"id": "package",
@@ -276,7 +283,6 @@
},
"width": 163,
"height": 126,
- "level": 1,
"opacity": 1,
"strokeDash": 0,
"strokeWidth": 2,
@@ -303,7 +309,9 @@
"underline": false,
"labelWidth": 63,
"labelHeight": 26,
- "labelPosition": "INSIDE_MIDDLE_CENTER"
+ "labelPosition": "INSIDE_MIDDLE_CENTER",
+ "zIndex": 0,
+ "level": 1
},
{
"id": "step",
@@ -314,7 +322,6 @@
},
"width": 136,
"height": 126,
- "level": 1,
"opacity": 1,
"strokeDash": 0,
"strokeWidth": 2,
@@ -341,7 +348,9 @@
"underline": false,
"labelWidth": 36,
"labelHeight": 26,
- "labelPosition": "INSIDE_MIDDLE_CENTER"
+ "labelPosition": "INSIDE_MIDDLE_CENTER",
+ "zIndex": 0,
+ "level": 1
},
{
"id": "callout",
@@ -352,7 +361,6 @@
},
"width": 155,
"height": 126,
- "level": 1,
"opacity": 1,
"strokeDash": 0,
"strokeWidth": 2,
@@ -379,7 +387,9 @@
"underline": false,
"labelWidth": 55,
"labelHeight": 26,
- "labelPosition": "INSIDE_MIDDLE_CENTER"
+ "labelPosition": "INSIDE_MIDDLE_CENTER",
+ "zIndex": 0,
+ "level": 1
},
{
"id": "stored_data",
@@ -390,7 +400,6 @@
},
"width": 191,
"height": 126,
- "level": 1,
"opacity": 1,
"strokeDash": 0,
"strokeWidth": 2,
@@ -417,7 +426,9 @@
"underline": false,
"labelWidth": 91,
"labelHeight": 26,
- "labelPosition": "INSIDE_MIDDLE_CENTER"
+ "labelPosition": "INSIDE_MIDDLE_CENTER",
+ "zIndex": 0,
+ "level": 1
},
{
"id": "person",
@@ -428,7 +439,6 @@
},
"width": 153,
"height": 126,
- "level": 1,
"opacity": 1,
"strokeDash": 0,
"strokeWidth": 2,
@@ -455,7 +465,9 @@
"underline": false,
"labelWidth": 53,
"labelHeight": 26,
- "labelPosition": "INSIDE_MIDDLE_CENTER"
+ "labelPosition": "INSIDE_MIDDLE_CENTER",
+ "zIndex": 0,
+ "level": 1
},
{
"id": "diamond",
@@ -466,7 +478,6 @@
},
"width": 168,
"height": 126,
- "level": 1,
"opacity": 1,
"strokeDash": 0,
"strokeWidth": 2,
@@ -493,7 +504,9 @@
"underline": false,
"labelWidth": 68,
"labelHeight": 26,
- "labelPosition": "INSIDE_MIDDLE_CENTER"
+ "labelPosition": "INSIDE_MIDDLE_CENTER",
+ "zIndex": 0,
+ "level": 1
},
{
"id": "oval",
@@ -504,7 +517,6 @@
},
"width": 136,
"height": 126,
- "level": 1,
"opacity": 1,
"strokeDash": 0,
"strokeWidth": 2,
@@ -531,7 +543,9 @@
"underline": false,
"labelWidth": 36,
"labelHeight": 26,
- "labelPosition": "INSIDE_MIDDLE_CENTER"
+ "labelPosition": "INSIDE_MIDDLE_CENTER",
+ "zIndex": 0,
+ "level": 1
},
{
"id": "circle",
@@ -542,7 +556,6 @@
},
"width": 144,
"height": 144,
- "level": 1,
"opacity": 1,
"strokeDash": 0,
"strokeWidth": 2,
@@ -569,7 +582,9 @@
"underline": false,
"labelWidth": 44,
"labelHeight": 26,
- "labelPosition": "INSIDE_MIDDLE_CENTER"
+ "labelPosition": "INSIDE_MIDDLE_CENTER",
+ "zIndex": 0,
+ "level": 1
},
{
"id": "hexagon",
@@ -580,7 +595,6 @@
},
"width": 165,
"height": 126,
- "level": 1,
"opacity": 1,
"strokeDash": 0,
"strokeWidth": 2,
@@ -607,7 +621,9 @@
"underline": false,
"labelWidth": 65,
"labelHeight": 26,
- "labelPosition": "INSIDE_MIDDLE_CENTER"
+ "labelPosition": "INSIDE_MIDDLE_CENTER",
+ "zIndex": 0,
+ "level": 1
},
{
"id": "cloud",
@@ -618,7 +634,6 @@
},
"width": 145,
"height": 126,
- "level": 1,
"opacity": 1,
"strokeDash": 0,
"strokeWidth": 2,
@@ -645,7 +660,9 @@
"underline": false,
"labelWidth": 45,
"labelHeight": 26,
- "labelPosition": "INSIDE_MIDDLE_CENTER"
+ "labelPosition": "INSIDE_MIDDLE_CENTER",
+ "zIndex": 0,
+ "level": 1
}
],
"connections": [
@@ -694,7 +711,8 @@
"isCurve": true,
"animated": false,
"tooltip": "",
- "icon": null
+ "icon": null,
+ "zIndex": 0
},
{
"id": "(square -> page)[0]",
@@ -741,7 +759,8 @@
"isCurve": true,
"animated": false,
"tooltip": "",
- "icon": null
+ "icon": null,
+ "zIndex": 0
},
{
"id": "(parallelogram -> document)[0]",
@@ -788,7 +807,8 @@
"isCurve": true,
"animated": false,
"tooltip": "",
- "icon": null
+ "icon": null,
+ "zIndex": 0
},
{
"id": "(document -> cylinder)[0]",
@@ -835,7 +855,8 @@
"isCurve": true,
"animated": false,
"tooltip": "",
- "icon": null
+ "icon": null,
+ "zIndex": 0
},
{
"id": "(queue -> package)[0]",
@@ -882,7 +903,8 @@
"isCurve": true,
"animated": false,
"tooltip": "",
- "icon": null
+ "icon": null,
+ "zIndex": 0
},
{
"id": "(package -> step)[0]",
@@ -929,7 +951,8 @@
"isCurve": true,
"animated": false,
"tooltip": "",
- "icon": null
+ "icon": null,
+ "zIndex": 0
},
{
"id": "(callout -> stored_data)[0]",
@@ -976,7 +999,8 @@
"isCurve": true,
"animated": false,
"tooltip": "",
- "icon": null
+ "icon": null,
+ "zIndex": 0
},
{
"id": "(stored_data -> person)[0]",
@@ -1023,7 +1047,8 @@
"isCurve": true,
"animated": false,
"tooltip": "",
- "icon": null
+ "icon": null,
+ "zIndex": 0
},
{
"id": "(diamond -> oval)[0]",
@@ -1070,7 +1095,8 @@
"isCurve": true,
"animated": false,
"tooltip": "",
- "icon": null
+ "icon": null,
+ "zIndex": 0
},
{
"id": "(oval -> circle)[0]",
@@ -1117,7 +1143,8 @@
"isCurve": true,
"animated": false,
"tooltip": "",
- "icon": null
+ "icon": null,
+ "zIndex": 0
},
{
"id": "(hexagon -> cloud)[0]",
@@ -1164,7 +1191,8 @@
"isCurve": true,
"animated": false,
"tooltip": "",
- "icon": null
+ "icon": null,
+ "zIndex": 0
}
]
}
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 147234806..4ed2ccd1d 100644
--- a/e2etests/testdata/stable/all_shapes_shadow/elk/board.exp.json
+++ b/e2etests/testdata/stable/all_shapes_shadow/elk/board.exp.json
@@ -10,7 +10,6 @@
},
"width": 171,
"height": 126,
- "level": 1,
"opacity": 1,
"strokeDash": 0,
"strokeWidth": 2,
@@ -37,7 +36,9 @@
"underline": false,
"labelWidth": 71,
"labelHeight": 26,
- "labelPosition": "INSIDE_MIDDLE_CENTER"
+ "labelPosition": "INSIDE_MIDDLE_CENTER",
+ "zIndex": 0,
+ "level": 1
},
{
"id": "square",
@@ -48,7 +49,6 @@
},
"width": 154,
"height": 154,
- "level": 1,
"opacity": 1,
"strokeDash": 0,
"strokeWidth": 2,
@@ -75,7 +75,9 @@
"underline": false,
"labelWidth": 54,
"labelHeight": 26,
- "labelPosition": "INSIDE_MIDDLE_CENTER"
+ "labelPosition": "INSIDE_MIDDLE_CENTER",
+ "zIndex": 0,
+ "level": 1
},
{
"id": "page",
@@ -86,7 +88,6 @@
},
"width": 139,
"height": 126,
- "level": 1,
"opacity": 1,
"strokeDash": 0,
"strokeWidth": 2,
@@ -113,7 +114,9 @@
"underline": false,
"labelWidth": 39,
"labelHeight": 26,
- "labelPosition": "INSIDE_MIDDLE_CENTER"
+ "labelPosition": "INSIDE_MIDDLE_CENTER",
+ "zIndex": 0,
+ "level": 1
},
{
"id": "parallelogram",
@@ -124,7 +127,6 @@
},
"width": 204,
"height": 126,
- "level": 1,
"opacity": 1,
"strokeDash": 0,
"strokeWidth": 2,
@@ -151,7 +153,9 @@
"underline": false,
"labelWidth": 104,
"labelHeight": 26,
- "labelPosition": "INSIDE_MIDDLE_CENTER"
+ "labelPosition": "INSIDE_MIDDLE_CENTER",
+ "zIndex": 0,
+ "level": 1
},
{
"id": "document",
@@ -162,7 +166,6 @@
},
"width": 177,
"height": 126,
- "level": 1,
"opacity": 1,
"strokeDash": 0,
"strokeWidth": 2,
@@ -189,7 +192,9 @@
"underline": false,
"labelWidth": 77,
"labelHeight": 26,
- "labelPosition": "INSIDE_MIDDLE_CENTER"
+ "labelPosition": "INSIDE_MIDDLE_CENTER",
+ "zIndex": 0,
+ "level": 1
},
{
"id": "cylinder",
@@ -200,7 +205,6 @@
},
"width": 164,
"height": 126,
- "level": 1,
"opacity": 1,
"strokeDash": 0,
"strokeWidth": 2,
@@ -227,7 +231,9 @@
"underline": false,
"labelWidth": 64,
"labelHeight": 26,
- "labelPosition": "INSIDE_MIDDLE_CENTER"
+ "labelPosition": "INSIDE_MIDDLE_CENTER",
+ "zIndex": 0,
+ "level": 1
},
{
"id": "queue",
@@ -238,7 +244,6 @@
},
"width": 149,
"height": 126,
- "level": 1,
"opacity": 1,
"strokeDash": 0,
"strokeWidth": 2,
@@ -265,7 +270,9 @@
"underline": false,
"labelWidth": 49,
"labelHeight": 26,
- "labelPosition": "INSIDE_MIDDLE_CENTER"
+ "labelPosition": "INSIDE_MIDDLE_CENTER",
+ "zIndex": 0,
+ "level": 1
},
{
"id": "package",
@@ -276,7 +283,6 @@
},
"width": 163,
"height": 126,
- "level": 1,
"opacity": 1,
"strokeDash": 0,
"strokeWidth": 2,
@@ -303,7 +309,9 @@
"underline": false,
"labelWidth": 63,
"labelHeight": 26,
- "labelPosition": "INSIDE_MIDDLE_CENTER"
+ "labelPosition": "INSIDE_MIDDLE_CENTER",
+ "zIndex": 0,
+ "level": 1
},
{
"id": "step",
@@ -314,7 +322,6 @@
},
"width": 136,
"height": 126,
- "level": 1,
"opacity": 1,
"strokeDash": 0,
"strokeWidth": 2,
@@ -341,7 +348,9 @@
"underline": false,
"labelWidth": 36,
"labelHeight": 26,
- "labelPosition": "INSIDE_MIDDLE_CENTER"
+ "labelPosition": "INSIDE_MIDDLE_CENTER",
+ "zIndex": 0,
+ "level": 1
},
{
"id": "callout",
@@ -352,7 +361,6 @@
},
"width": 155,
"height": 126,
- "level": 1,
"opacity": 1,
"strokeDash": 0,
"strokeWidth": 2,
@@ -379,7 +387,9 @@
"underline": false,
"labelWidth": 55,
"labelHeight": 26,
- "labelPosition": "INSIDE_MIDDLE_CENTER"
+ "labelPosition": "INSIDE_MIDDLE_CENTER",
+ "zIndex": 0,
+ "level": 1
},
{
"id": "stored_data",
@@ -390,7 +400,6 @@
},
"width": 191,
"height": 126,
- "level": 1,
"opacity": 1,
"strokeDash": 0,
"strokeWidth": 2,
@@ -417,7 +426,9 @@
"underline": false,
"labelWidth": 91,
"labelHeight": 26,
- "labelPosition": "INSIDE_MIDDLE_CENTER"
+ "labelPosition": "INSIDE_MIDDLE_CENTER",
+ "zIndex": 0,
+ "level": 1
},
{
"id": "person",
@@ -428,7 +439,6 @@
},
"width": 153,
"height": 126,
- "level": 1,
"opacity": 1,
"strokeDash": 0,
"strokeWidth": 2,
@@ -455,7 +465,9 @@
"underline": false,
"labelWidth": 53,
"labelHeight": 26,
- "labelPosition": "INSIDE_MIDDLE_CENTER"
+ "labelPosition": "INSIDE_MIDDLE_CENTER",
+ "zIndex": 0,
+ "level": 1
},
{
"id": "diamond",
@@ -466,7 +478,6 @@
},
"width": 168,
"height": 126,
- "level": 1,
"opacity": 1,
"strokeDash": 0,
"strokeWidth": 2,
@@ -493,7 +504,9 @@
"underline": false,
"labelWidth": 68,
"labelHeight": 26,
- "labelPosition": "INSIDE_MIDDLE_CENTER"
+ "labelPosition": "INSIDE_MIDDLE_CENTER",
+ "zIndex": 0,
+ "level": 1
},
{
"id": "oval",
@@ -504,7 +517,6 @@
},
"width": 136,
"height": 126,
- "level": 1,
"opacity": 1,
"strokeDash": 0,
"strokeWidth": 2,
@@ -531,7 +543,9 @@
"underline": false,
"labelWidth": 36,
"labelHeight": 26,
- "labelPosition": "INSIDE_MIDDLE_CENTER"
+ "labelPosition": "INSIDE_MIDDLE_CENTER",
+ "zIndex": 0,
+ "level": 1
},
{
"id": "circle",
@@ -542,7 +556,6 @@
},
"width": 144,
"height": 144,
- "level": 1,
"opacity": 1,
"strokeDash": 0,
"strokeWidth": 2,
@@ -569,7 +582,9 @@
"underline": false,
"labelWidth": 44,
"labelHeight": 26,
- "labelPosition": "INSIDE_MIDDLE_CENTER"
+ "labelPosition": "INSIDE_MIDDLE_CENTER",
+ "zIndex": 0,
+ "level": 1
},
{
"id": "hexagon",
@@ -580,7 +595,6 @@
},
"width": 165,
"height": 126,
- "level": 1,
"opacity": 1,
"strokeDash": 0,
"strokeWidth": 2,
@@ -607,7 +621,9 @@
"underline": false,
"labelWidth": 65,
"labelHeight": 26,
- "labelPosition": "INSIDE_MIDDLE_CENTER"
+ "labelPosition": "INSIDE_MIDDLE_CENTER",
+ "zIndex": 0,
+ "level": 1
},
{
"id": "cloud",
@@ -618,7 +634,6 @@
},
"width": 145,
"height": 126,
- "level": 1,
"opacity": 1,
"strokeDash": 0,
"strokeWidth": 2,
@@ -645,7 +660,9 @@
"underline": false,
"labelWidth": 45,
"labelHeight": 26,
- "labelPosition": "INSIDE_MIDDLE_CENTER"
+ "labelPosition": "INSIDE_MIDDLE_CENTER",
+ "zIndex": 0,
+ "level": 1
}
],
"connections": [
@@ -685,7 +702,8 @@
],
"animated": false,
"tooltip": "",
- "icon": null
+ "icon": null,
+ "zIndex": 0
},
{
"id": "(square -> page)[0]",
@@ -723,7 +741,8 @@
],
"animated": false,
"tooltip": "",
- "icon": null
+ "icon": null,
+ "zIndex": 0
},
{
"id": "(parallelogram -> document)[0]",
@@ -761,7 +780,8 @@
],
"animated": false,
"tooltip": "",
- "icon": null
+ "icon": null,
+ "zIndex": 0
},
{
"id": "(document -> cylinder)[0]",
@@ -799,7 +819,8 @@
],
"animated": false,
"tooltip": "",
- "icon": null
+ "icon": null,
+ "zIndex": 0
},
{
"id": "(queue -> package)[0]",
@@ -837,7 +858,8 @@
],
"animated": false,
"tooltip": "",
- "icon": null
+ "icon": null,
+ "zIndex": 0
},
{
"id": "(package -> step)[0]",
@@ -875,7 +897,8 @@
],
"animated": false,
"tooltip": "",
- "icon": null
+ "icon": null,
+ "zIndex": 0
},
{
"id": "(callout -> stored_data)[0]",
@@ -913,7 +936,8 @@
],
"animated": false,
"tooltip": "",
- "icon": null
+ "icon": null,
+ "zIndex": 0
},
{
"id": "(stored_data -> person)[0]",
@@ -951,7 +975,8 @@
],
"animated": false,
"tooltip": "",
- "icon": null
+ "icon": null,
+ "zIndex": 0
},
{
"id": "(diamond -> oval)[0]",
@@ -989,7 +1014,8 @@
],
"animated": false,
"tooltip": "",
- "icon": null
+ "icon": null,
+ "zIndex": 0
},
{
"id": "(oval -> circle)[0]",
@@ -1027,7 +1053,8 @@
],
"animated": false,
"tooltip": "",
- "icon": null
+ "icon": null,
+ "zIndex": 0
},
{
"id": "(hexagon -> cloud)[0]",
@@ -1065,7 +1092,8 @@
],
"animated": false,
"tooltip": "",
- "icon": null
+ "icon": null,
+ "zIndex": 0
}
]
}
diff --git a/e2etests/testdata/stable/arrowhead_adjustment/dagre/board.exp.json b/e2etests/testdata/stable/arrowhead_adjustment/dagre/board.exp.json
index 882b69a62..53e292e5b 100644
--- a/e2etests/testdata/stable/arrowhead_adjustment/dagre/board.exp.json
+++ b/e2etests/testdata/stable/arrowhead_adjustment/dagre/board.exp.json
@@ -10,7 +10,6 @@
},
"width": 113,
"height": 126,
- "level": 1,
"opacity": 1,
"strokeDash": 0,
"strokeWidth": 7,
@@ -37,7 +36,9 @@
"underline": false,
"labelWidth": 13,
"labelHeight": 26,
- "labelPosition": "INSIDE_MIDDLE_CENTER"
+ "labelPosition": "INSIDE_MIDDLE_CENTER",
+ "zIndex": 0,
+ "level": 1
},
{
"id": "b",
@@ -48,7 +49,6 @@
},
"width": 113,
"height": 126,
- "level": 1,
"opacity": 1,
"strokeDash": 0,
"strokeWidth": 8,
@@ -75,7 +75,9 @@
"underline": false,
"labelWidth": 13,
"labelHeight": 26,
- "labelPosition": "INSIDE_MIDDLE_CENTER"
+ "labelPosition": "INSIDE_MIDDLE_CENTER",
+ "zIndex": 0,
+ "level": 1
},
{
"id": "a",
@@ -86,7 +88,6 @@
},
"width": 113,
"height": 126,
- "level": 1,
"opacity": 1,
"strokeDash": 0,
"strokeWidth": 8,
@@ -113,7 +114,9 @@
"underline": false,
"labelWidth": 13,
"labelHeight": 26,
- "labelPosition": "INSIDE_MIDDLE_CENTER"
+ "labelPosition": "INSIDE_MIDDLE_CENTER",
+ "zIndex": 0,
+ "level": 1
},
{
"id": "Oval",
@@ -124,7 +127,6 @@
},
"width": 100,
"height": 100,
- "level": 1,
"opacity": 1,
"strokeDash": 0,
"strokeWidth": 6,
@@ -150,7 +152,9 @@
"bold": true,
"underline": false,
"labelWidth": 0,
- "labelHeight": 0
+ "labelHeight": 0,
+ "zIndex": 0,
+ "level": 1
}
],
"connections": [
@@ -199,7 +203,8 @@
"isCurve": true,
"animated": false,
"tooltip": "",
- "icon": null
+ "icon": null,
+ "zIndex": 0
},
{
"id": "(c -> b)[0]",
@@ -258,7 +263,8 @@
"isCurve": true,
"animated": false,
"tooltip": "",
- "icon": null
+ "icon": null,
+ "zIndex": 0
},
{
"id": "(a <-> Oval)[0]",
@@ -305,7 +311,8 @@
"isCurve": true,
"animated": false,
"tooltip": "",
- "icon": null
+ "icon": null,
+ "zIndex": 0
},
{
"id": "(c -- a)[0]",
@@ -352,7 +359,8 @@
"isCurve": true,
"animated": false,
"tooltip": "",
- "icon": null
+ "icon": null,
+ "zIndex": 0
},
{
"id": "(Oval <-> c)[0]",
@@ -411,7 +419,8 @@
"isCurve": true,
"animated": false,
"tooltip": "",
- "icon": null
+ "icon": null,
+ "zIndex": 0
}
]
}
diff --git a/e2etests/testdata/stable/arrowhead_adjustment/elk/board.exp.json b/e2etests/testdata/stable/arrowhead_adjustment/elk/board.exp.json
index 0130bc347..a7eb43d09 100644
--- a/e2etests/testdata/stable/arrowhead_adjustment/elk/board.exp.json
+++ b/e2etests/testdata/stable/arrowhead_adjustment/elk/board.exp.json
@@ -10,7 +10,6 @@
},
"width": 113,
"height": 126,
- "level": 1,
"opacity": 1,
"strokeDash": 0,
"strokeWidth": 7,
@@ -37,7 +36,9 @@
"underline": false,
"labelWidth": 13,
"labelHeight": 26,
- "labelPosition": "INSIDE_MIDDLE_CENTER"
+ "labelPosition": "INSIDE_MIDDLE_CENTER",
+ "zIndex": 0,
+ "level": 1
},
{
"id": "b",
@@ -48,7 +49,6 @@
},
"width": 113,
"height": 126,
- "level": 1,
"opacity": 1,
"strokeDash": 0,
"strokeWidth": 8,
@@ -75,7 +75,9 @@
"underline": false,
"labelWidth": 13,
"labelHeight": 26,
- "labelPosition": "INSIDE_MIDDLE_CENTER"
+ "labelPosition": "INSIDE_MIDDLE_CENTER",
+ "zIndex": 0,
+ "level": 1
},
{
"id": "a",
@@ -86,7 +88,6 @@
},
"width": 113,
"height": 126,
- "level": 1,
"opacity": 1,
"strokeDash": 0,
"strokeWidth": 8,
@@ -113,7 +114,9 @@
"underline": false,
"labelWidth": 13,
"labelHeight": 26,
- "labelPosition": "INSIDE_MIDDLE_CENTER"
+ "labelPosition": "INSIDE_MIDDLE_CENTER",
+ "zIndex": 0,
+ "level": 1
},
{
"id": "Oval",
@@ -124,7 +127,6 @@
},
"width": 100,
"height": 100,
- "level": 1,
"opacity": 1,
"strokeDash": 0,
"strokeWidth": 6,
@@ -150,7 +152,9 @@
"bold": true,
"underline": false,
"labelWidth": 0,
- "labelHeight": 0
+ "labelHeight": 0,
+ "zIndex": 0,
+ "level": 1
}
],
"connections": [
@@ -198,7 +202,8 @@
],
"animated": false,
"tooltip": "",
- "icon": null
+ "icon": null,
+ "zIndex": 0
},
{
"id": "(c -> b)[0]",
@@ -236,7 +241,8 @@
],
"animated": false,
"tooltip": "",
- "icon": null
+ "icon": null,
+ "zIndex": 0
},
{
"id": "(a <-> Oval)[0]",
@@ -274,7 +280,8 @@
],
"animated": false,
"tooltip": "",
- "icon": null
+ "icon": null,
+ "zIndex": 0
},
{
"id": "(c -- a)[0]",
@@ -320,7 +327,8 @@
],
"animated": false,
"tooltip": "",
- "icon": null
+ "icon": null,
+ "zIndex": 0
},
{
"id": "(Oval <-> c)[0]",
@@ -374,7 +382,8 @@
],
"animated": false,
"tooltip": "",
- "icon": null
+ "icon": null,
+ "zIndex": 0
}
]
}
diff --git a/e2etests/testdata/stable/arrowhead_labels/dagre/board.exp.json b/e2etests/testdata/stable/arrowhead_labels/dagre/board.exp.json
index 60b8d8edd..60509b81b 100644
--- a/e2etests/testdata/stable/arrowhead_labels/dagre/board.exp.json
+++ b/e2etests/testdata/stable/arrowhead_labels/dagre/board.exp.json
@@ -10,7 +10,6 @@
},
"width": 113,
"height": 126,
- "level": 1,
"opacity": 1,
"strokeDash": 0,
"strokeWidth": 2,
@@ -37,7 +36,9 @@
"underline": false,
"labelWidth": 13,
"labelHeight": 26,
- "labelPosition": "INSIDE_MIDDLE_CENTER"
+ "labelPosition": "INSIDE_MIDDLE_CENTER",
+ "zIndex": 0,
+ "level": 1
},
{
"id": "b",
@@ -48,7 +49,6 @@
},
"width": 113,
"height": 126,
- "level": 1,
"opacity": 1,
"strokeDash": 0,
"strokeWidth": 2,
@@ -75,7 +75,9 @@
"underline": false,
"labelWidth": 13,
"labelHeight": 26,
- "labelPosition": "INSIDE_MIDDLE_CENTER"
+ "labelPosition": "INSIDE_MIDDLE_CENTER",
+ "zIndex": 0,
+ "level": 1
}
],
"connections": [
@@ -124,7 +126,8 @@
"isCurve": true,
"animated": false,
"tooltip": "",
- "icon": null
+ "icon": null,
+ "zIndex": 0
}
]
}
diff --git a/e2etests/testdata/stable/arrowhead_labels/elk/board.exp.json b/e2etests/testdata/stable/arrowhead_labels/elk/board.exp.json
index baa8b7d7e..648d83fc8 100644
--- a/e2etests/testdata/stable/arrowhead_labels/elk/board.exp.json
+++ b/e2etests/testdata/stable/arrowhead_labels/elk/board.exp.json
@@ -10,7 +10,6 @@
},
"width": 113,
"height": 126,
- "level": 1,
"opacity": 1,
"strokeDash": 0,
"strokeWidth": 2,
@@ -37,7 +36,9 @@
"underline": false,
"labelWidth": 13,
"labelHeight": 26,
- "labelPosition": "INSIDE_MIDDLE_CENTER"
+ "labelPosition": "INSIDE_MIDDLE_CENTER",
+ "zIndex": 0,
+ "level": 1
},
{
"id": "b",
@@ -48,7 +49,6 @@
},
"width": 113,
"height": 126,
- "level": 1,
"opacity": 1,
"strokeDash": 0,
"strokeWidth": 2,
@@ -75,7 +75,9 @@
"underline": false,
"labelWidth": 13,
"labelHeight": 26,
- "labelPosition": "INSIDE_MIDDLE_CENTER"
+ "labelPosition": "INSIDE_MIDDLE_CENTER",
+ "zIndex": 0,
+ "level": 1
}
],
"connections": [
@@ -115,7 +117,8 @@
],
"animated": false,
"tooltip": "",
- "icon": null
+ "icon": null,
+ "zIndex": 0
}
]
}
diff --git a/e2etests/testdata/stable/binary_tree/dagre/board.exp.json b/e2etests/testdata/stable/binary_tree/dagre/board.exp.json
index 3a6b384e4..92781dc2d 100644
--- a/e2etests/testdata/stable/binary_tree/dagre/board.exp.json
+++ b/e2etests/testdata/stable/binary_tree/dagre/board.exp.json
@@ -10,7 +10,6 @@
},
"width": 113,
"height": 126,
- "level": 1,
"opacity": 1,
"strokeDash": 0,
"strokeWidth": 2,
@@ -37,7 +36,9 @@
"underline": false,
"labelWidth": 13,
"labelHeight": 26,
- "labelPosition": "INSIDE_MIDDLE_CENTER"
+ "labelPosition": "INSIDE_MIDDLE_CENTER",
+ "zIndex": 0,
+ "level": 1
},
{
"id": "b",
@@ -48,7 +49,6 @@
},
"width": 113,
"height": 126,
- "level": 1,
"opacity": 1,
"strokeDash": 0,
"strokeWidth": 2,
@@ -75,7 +75,9 @@
"underline": false,
"labelWidth": 13,
"labelHeight": 26,
- "labelPosition": "INSIDE_MIDDLE_CENTER"
+ "labelPosition": "INSIDE_MIDDLE_CENTER",
+ "zIndex": 0,
+ "level": 1
},
{
"id": "c",
@@ -86,7 +88,6 @@
},
"width": 113,
"height": 126,
- "level": 1,
"opacity": 1,
"strokeDash": 0,
"strokeWidth": 2,
@@ -113,7 +114,9 @@
"underline": false,
"labelWidth": 13,
"labelHeight": 26,
- "labelPosition": "INSIDE_MIDDLE_CENTER"
+ "labelPosition": "INSIDE_MIDDLE_CENTER",
+ "zIndex": 0,
+ "level": 1
},
{
"id": "d",
@@ -124,7 +127,6 @@
},
"width": 114,
"height": 126,
- "level": 1,
"opacity": 1,
"strokeDash": 0,
"strokeWidth": 2,
@@ -151,7 +153,9 @@
"underline": false,
"labelWidth": 14,
"labelHeight": 26,
- "labelPosition": "INSIDE_MIDDLE_CENTER"
+ "labelPosition": "INSIDE_MIDDLE_CENTER",
+ "zIndex": 0,
+ "level": 1
},
{
"id": "e",
@@ -162,7 +166,6 @@
},
"width": 113,
"height": 126,
- "level": 1,
"opacity": 1,
"strokeDash": 0,
"strokeWidth": 2,
@@ -189,7 +192,9 @@
"underline": false,
"labelWidth": 13,
"labelHeight": 26,
- "labelPosition": "INSIDE_MIDDLE_CENTER"
+ "labelPosition": "INSIDE_MIDDLE_CENTER",
+ "zIndex": 0,
+ "level": 1
},
{
"id": "f",
@@ -200,7 +205,6 @@
},
"width": 111,
"height": 126,
- "level": 1,
"opacity": 1,
"strokeDash": 0,
"strokeWidth": 2,
@@ -227,7 +231,9 @@
"underline": false,
"labelWidth": 11,
"labelHeight": 26,
- "labelPosition": "INSIDE_MIDDLE_CENTER"
+ "labelPosition": "INSIDE_MIDDLE_CENTER",
+ "zIndex": 0,
+ "level": 1
},
{
"id": "g",
@@ -238,7 +244,6 @@
},
"width": 114,
"height": 126,
- "level": 1,
"opacity": 1,
"strokeDash": 0,
"strokeWidth": 2,
@@ -265,7 +270,9 @@
"underline": false,
"labelWidth": 14,
"labelHeight": 26,
- "labelPosition": "INSIDE_MIDDLE_CENTER"
+ "labelPosition": "INSIDE_MIDDLE_CENTER",
+ "zIndex": 0,
+ "level": 1
},
{
"id": "h",
@@ -276,7 +283,6 @@
},
"width": 113,
"height": 126,
- "level": 1,
"opacity": 1,
"strokeDash": 0,
"strokeWidth": 2,
@@ -303,7 +309,9 @@
"underline": false,
"labelWidth": 13,
"labelHeight": 26,
- "labelPosition": "INSIDE_MIDDLE_CENTER"
+ "labelPosition": "INSIDE_MIDDLE_CENTER",
+ "zIndex": 0,
+ "level": 1
},
{
"id": "i",
@@ -314,7 +322,6 @@
},
"width": 109,
"height": 126,
- "level": 1,
"opacity": 1,
"strokeDash": 0,
"strokeWidth": 2,
@@ -341,7 +348,9 @@
"underline": false,
"labelWidth": 9,
"labelHeight": 26,
- "labelPosition": "INSIDE_MIDDLE_CENTER"
+ "labelPosition": "INSIDE_MIDDLE_CENTER",
+ "zIndex": 0,
+ "level": 1
},
{
"id": "j",
@@ -352,7 +361,6 @@
},
"width": 110,
"height": 126,
- "level": 1,
"opacity": 1,
"strokeDash": 0,
"strokeWidth": 2,
@@ -379,7 +387,9 @@
"underline": false,
"labelWidth": 10,
"labelHeight": 26,
- "labelPosition": "INSIDE_MIDDLE_CENTER"
+ "labelPosition": "INSIDE_MIDDLE_CENTER",
+ "zIndex": 0,
+ "level": 1
},
{
"id": "k",
@@ -390,7 +400,6 @@
},
"width": 113,
"height": 126,
- "level": 1,
"opacity": 1,
"strokeDash": 0,
"strokeWidth": 2,
@@ -417,7 +426,9 @@
"underline": false,
"labelWidth": 13,
"labelHeight": 26,
- "labelPosition": "INSIDE_MIDDLE_CENTER"
+ "labelPosition": "INSIDE_MIDDLE_CENTER",
+ "zIndex": 0,
+ "level": 1
},
{
"id": "l",
@@ -428,7 +439,6 @@
},
"width": 109,
"height": 126,
- "level": 1,
"opacity": 1,
"strokeDash": 0,
"strokeWidth": 2,
@@ -455,7 +465,9 @@
"underline": false,
"labelWidth": 9,
"labelHeight": 26,
- "labelPosition": "INSIDE_MIDDLE_CENTER"
+ "labelPosition": "INSIDE_MIDDLE_CENTER",
+ "zIndex": 0,
+ "level": 1
},
{
"id": "m",
@@ -466,7 +478,6 @@
},
"width": 117,
"height": 126,
- "level": 1,
"opacity": 1,
"strokeDash": 0,
"strokeWidth": 2,
@@ -493,7 +504,9 @@
"underline": false,
"labelWidth": 17,
"labelHeight": 26,
- "labelPosition": "INSIDE_MIDDLE_CENTER"
+ "labelPosition": "INSIDE_MIDDLE_CENTER",
+ "zIndex": 0,
+ "level": 1
},
{
"id": "n",
@@ -504,7 +517,6 @@
},
"width": 113,
"height": 126,
- "level": 1,
"opacity": 1,
"strokeDash": 0,
"strokeWidth": 2,
@@ -531,7 +543,9 @@
"underline": false,
"labelWidth": 13,
"labelHeight": 26,
- "labelPosition": "INSIDE_MIDDLE_CENTER"
+ "labelPosition": "INSIDE_MIDDLE_CENTER",
+ "zIndex": 0,
+ "level": 1
},
{
"id": "o",
@@ -542,7 +556,6 @@
},
"width": 114,
"height": 126,
- "level": 1,
"opacity": 1,
"strokeDash": 0,
"strokeWidth": 2,
@@ -569,7 +582,9 @@
"underline": false,
"labelWidth": 14,
"labelHeight": 26,
- "labelPosition": "INSIDE_MIDDLE_CENTER"
+ "labelPosition": "INSIDE_MIDDLE_CENTER",
+ "zIndex": 0,
+ "level": 1
}
],
"connections": [
@@ -618,7 +633,8 @@
"isCurve": true,
"animated": false,
"tooltip": "",
- "icon": null
+ "icon": null,
+ "zIndex": 0
},
{
"id": "(a -> c)[0]",
@@ -665,7 +681,8 @@
"isCurve": true,
"animated": false,
"tooltip": "",
- "icon": null
+ "icon": null,
+ "zIndex": 0
},
{
"id": "(b -> d)[0]",
@@ -712,7 +729,8 @@
"isCurve": true,
"animated": false,
"tooltip": "",
- "icon": null
+ "icon": null,
+ "zIndex": 0
},
{
"id": "(b -> e)[0]",
@@ -759,7 +777,8 @@
"isCurve": true,
"animated": false,
"tooltip": "",
- "icon": null
+ "icon": null,
+ "zIndex": 0
},
{
"id": "(c -> f)[0]",
@@ -806,7 +825,8 @@
"isCurve": true,
"animated": false,
"tooltip": "",
- "icon": null
+ "icon": null,
+ "zIndex": 0
},
{
"id": "(c -> g)[0]",
@@ -853,7 +873,8 @@
"isCurve": true,
"animated": false,
"tooltip": "",
- "icon": null
+ "icon": null,
+ "zIndex": 0
},
{
"id": "(d -> h)[0]",
@@ -900,7 +921,8 @@
"isCurve": true,
"animated": false,
"tooltip": "",
- "icon": null
+ "icon": null,
+ "zIndex": 0
},
{
"id": "(d -> i)[0]",
@@ -947,7 +969,8 @@
"isCurve": true,
"animated": false,
"tooltip": "",
- "icon": null
+ "icon": null,
+ "zIndex": 0
},
{
"id": "(e -> j)[0]",
@@ -994,7 +1017,8 @@
"isCurve": true,
"animated": false,
"tooltip": "",
- "icon": null
+ "icon": null,
+ "zIndex": 0
},
{
"id": "(e -> k)[0]",
@@ -1041,7 +1065,8 @@
"isCurve": true,
"animated": false,
"tooltip": "",
- "icon": null
+ "icon": null,
+ "zIndex": 0
},
{
"id": "(f -> l)[0]",
@@ -1088,7 +1113,8 @@
"isCurve": true,
"animated": false,
"tooltip": "",
- "icon": null
+ "icon": null,
+ "zIndex": 0
},
{
"id": "(f -> m)[0]",
@@ -1135,7 +1161,8 @@
"isCurve": true,
"animated": false,
"tooltip": "",
- "icon": null
+ "icon": null,
+ "zIndex": 0
},
{
"id": "(g -> n)[0]",
@@ -1182,7 +1209,8 @@
"isCurve": true,
"animated": false,
"tooltip": "",
- "icon": null
+ "icon": null,
+ "zIndex": 0
},
{
"id": "(g -> o)[0]",
@@ -1229,7 +1257,8 @@
"isCurve": true,
"animated": false,
"tooltip": "",
- "icon": null
+ "icon": null,
+ "zIndex": 0
}
]
}
diff --git a/e2etests/testdata/stable/binary_tree/elk/board.exp.json b/e2etests/testdata/stable/binary_tree/elk/board.exp.json
index fe1cfc467..287a0e4fe 100644
--- a/e2etests/testdata/stable/binary_tree/elk/board.exp.json
+++ b/e2etests/testdata/stable/binary_tree/elk/board.exp.json
@@ -10,7 +10,6 @@
},
"width": 113,
"height": 126,
- "level": 1,
"opacity": 1,
"strokeDash": 0,
"strokeWidth": 2,
@@ -37,7 +36,9 @@
"underline": false,
"labelWidth": 13,
"labelHeight": 26,
- "labelPosition": "INSIDE_MIDDLE_CENTER"
+ "labelPosition": "INSIDE_MIDDLE_CENTER",
+ "zIndex": 0,
+ "level": 1
},
{
"id": "b",
@@ -48,7 +49,6 @@
},
"width": 113,
"height": 126,
- "level": 1,
"opacity": 1,
"strokeDash": 0,
"strokeWidth": 2,
@@ -75,7 +75,9 @@
"underline": false,
"labelWidth": 13,
"labelHeight": 26,
- "labelPosition": "INSIDE_MIDDLE_CENTER"
+ "labelPosition": "INSIDE_MIDDLE_CENTER",
+ "zIndex": 0,
+ "level": 1
},
{
"id": "c",
@@ -86,7 +88,6 @@
},
"width": 113,
"height": 126,
- "level": 1,
"opacity": 1,
"strokeDash": 0,
"strokeWidth": 2,
@@ -113,7 +114,9 @@
"underline": false,
"labelWidth": 13,
"labelHeight": 26,
- "labelPosition": "INSIDE_MIDDLE_CENTER"
+ "labelPosition": "INSIDE_MIDDLE_CENTER",
+ "zIndex": 0,
+ "level": 1
},
{
"id": "d",
@@ -124,7 +127,6 @@
},
"width": 114,
"height": 126,
- "level": 1,
"opacity": 1,
"strokeDash": 0,
"strokeWidth": 2,
@@ -151,7 +153,9 @@
"underline": false,
"labelWidth": 14,
"labelHeight": 26,
- "labelPosition": "INSIDE_MIDDLE_CENTER"
+ "labelPosition": "INSIDE_MIDDLE_CENTER",
+ "zIndex": 0,
+ "level": 1
},
{
"id": "e",
@@ -162,7 +166,6 @@
},
"width": 113,
"height": 126,
- "level": 1,
"opacity": 1,
"strokeDash": 0,
"strokeWidth": 2,
@@ -189,7 +192,9 @@
"underline": false,
"labelWidth": 13,
"labelHeight": 26,
- "labelPosition": "INSIDE_MIDDLE_CENTER"
+ "labelPosition": "INSIDE_MIDDLE_CENTER",
+ "zIndex": 0,
+ "level": 1
},
{
"id": "f",
@@ -200,7 +205,6 @@
},
"width": 111,
"height": 126,
- "level": 1,
"opacity": 1,
"strokeDash": 0,
"strokeWidth": 2,
@@ -227,7 +231,9 @@
"underline": false,
"labelWidth": 11,
"labelHeight": 26,
- "labelPosition": "INSIDE_MIDDLE_CENTER"
+ "labelPosition": "INSIDE_MIDDLE_CENTER",
+ "zIndex": 0,
+ "level": 1
},
{
"id": "g",
@@ -238,7 +244,6 @@
},
"width": 114,
"height": 126,
- "level": 1,
"opacity": 1,
"strokeDash": 0,
"strokeWidth": 2,
@@ -265,7 +270,9 @@
"underline": false,
"labelWidth": 14,
"labelHeight": 26,
- "labelPosition": "INSIDE_MIDDLE_CENTER"
+ "labelPosition": "INSIDE_MIDDLE_CENTER",
+ "zIndex": 0,
+ "level": 1
},
{
"id": "h",
@@ -276,7 +283,6 @@
},
"width": 113,
"height": 126,
- "level": 1,
"opacity": 1,
"strokeDash": 0,
"strokeWidth": 2,
@@ -303,7 +309,9 @@
"underline": false,
"labelWidth": 13,
"labelHeight": 26,
- "labelPosition": "INSIDE_MIDDLE_CENTER"
+ "labelPosition": "INSIDE_MIDDLE_CENTER",
+ "zIndex": 0,
+ "level": 1
},
{
"id": "i",
@@ -314,7 +322,6 @@
},
"width": 109,
"height": 126,
- "level": 1,
"opacity": 1,
"strokeDash": 0,
"strokeWidth": 2,
@@ -341,7 +348,9 @@
"underline": false,
"labelWidth": 9,
"labelHeight": 26,
- "labelPosition": "INSIDE_MIDDLE_CENTER"
+ "labelPosition": "INSIDE_MIDDLE_CENTER",
+ "zIndex": 0,
+ "level": 1
},
{
"id": "j",
@@ -352,7 +361,6 @@
},
"width": 110,
"height": 126,
- "level": 1,
"opacity": 1,
"strokeDash": 0,
"strokeWidth": 2,
@@ -379,7 +387,9 @@
"underline": false,
"labelWidth": 10,
"labelHeight": 26,
- "labelPosition": "INSIDE_MIDDLE_CENTER"
+ "labelPosition": "INSIDE_MIDDLE_CENTER",
+ "zIndex": 0,
+ "level": 1
},
{
"id": "k",
@@ -390,7 +400,6 @@
},
"width": 113,
"height": 126,
- "level": 1,
"opacity": 1,
"strokeDash": 0,
"strokeWidth": 2,
@@ -417,7 +426,9 @@
"underline": false,
"labelWidth": 13,
"labelHeight": 26,
- "labelPosition": "INSIDE_MIDDLE_CENTER"
+ "labelPosition": "INSIDE_MIDDLE_CENTER",
+ "zIndex": 0,
+ "level": 1
},
{
"id": "l",
@@ -428,7 +439,6 @@
},
"width": 109,
"height": 126,
- "level": 1,
"opacity": 1,
"strokeDash": 0,
"strokeWidth": 2,
@@ -455,7 +465,9 @@
"underline": false,
"labelWidth": 9,
"labelHeight": 26,
- "labelPosition": "INSIDE_MIDDLE_CENTER"
+ "labelPosition": "INSIDE_MIDDLE_CENTER",
+ "zIndex": 0,
+ "level": 1
},
{
"id": "m",
@@ -466,7 +478,6 @@
},
"width": 117,
"height": 126,
- "level": 1,
"opacity": 1,
"strokeDash": 0,
"strokeWidth": 2,
@@ -493,7 +504,9 @@
"underline": false,
"labelWidth": 17,
"labelHeight": 26,
- "labelPosition": "INSIDE_MIDDLE_CENTER"
+ "labelPosition": "INSIDE_MIDDLE_CENTER",
+ "zIndex": 0,
+ "level": 1
},
{
"id": "n",
@@ -504,7 +517,6 @@
},
"width": 113,
"height": 126,
- "level": 1,
"opacity": 1,
"strokeDash": 0,
"strokeWidth": 2,
@@ -531,7 +543,9 @@
"underline": false,
"labelWidth": 13,
"labelHeight": 26,
- "labelPosition": "INSIDE_MIDDLE_CENTER"
+ "labelPosition": "INSIDE_MIDDLE_CENTER",
+ "zIndex": 0,
+ "level": 1
},
{
"id": "o",
@@ -542,7 +556,6 @@
},
"width": 114,
"height": 126,
- "level": 1,
"opacity": 1,
"strokeDash": 0,
"strokeWidth": 2,
@@ -569,7 +582,9 @@
"underline": false,
"labelWidth": 14,
"labelHeight": 26,
- "labelPosition": "INSIDE_MIDDLE_CENTER"
+ "labelPosition": "INSIDE_MIDDLE_CENTER",
+ "zIndex": 0,
+ "level": 1
}
],
"connections": [
@@ -609,7 +624,8 @@
],
"animated": false,
"tooltip": "",
- "icon": null
+ "icon": null,
+ "zIndex": 0
},
{
"id": "(a -> c)[0]",
@@ -655,7 +671,8 @@
],
"animated": false,
"tooltip": "",
- "icon": null
+ "icon": null,
+ "zIndex": 0
},
{
"id": "(b -> d)[0]",
@@ -701,7 +718,8 @@
],
"animated": false,
"tooltip": "",
- "icon": null
+ "icon": null,
+ "zIndex": 0
},
{
"id": "(b -> e)[0]",
@@ -739,7 +757,8 @@
],
"animated": false,
"tooltip": "",
- "icon": null
+ "icon": null,
+ "zIndex": 0
},
{
"id": "(c -> f)[0]",
@@ -785,7 +804,8 @@
],
"animated": false,
"tooltip": "",
- "icon": null
+ "icon": null,
+ "zIndex": 0
},
{
"id": "(c -> g)[0]",
@@ -823,7 +843,8 @@
],
"animated": false,
"tooltip": "",
- "icon": null
+ "icon": null,
+ "zIndex": 0
},
{
"id": "(d -> h)[0]",
@@ -861,7 +882,8 @@
],
"animated": false,
"tooltip": "",
- "icon": null
+ "icon": null,
+ "zIndex": 0
},
{
"id": "(d -> i)[0]",
@@ -907,7 +929,8 @@
],
"animated": false,
"tooltip": "",
- "icon": null
+ "icon": null,
+ "zIndex": 0
},
{
"id": "(e -> j)[0]",
@@ -945,7 +968,8 @@
],
"animated": false,
"tooltip": "",
- "icon": null
+ "icon": null,
+ "zIndex": 0
},
{
"id": "(e -> k)[0]",
@@ -991,7 +1015,8 @@
],
"animated": false,
"tooltip": "",
- "icon": null
+ "icon": null,
+ "zIndex": 0
},
{
"id": "(f -> l)[0]",
@@ -1029,7 +1054,8 @@
],
"animated": false,
"tooltip": "",
- "icon": null
+ "icon": null,
+ "zIndex": 0
},
{
"id": "(f -> m)[0]",
@@ -1075,7 +1101,8 @@
],
"animated": false,
"tooltip": "",
- "icon": null
+ "icon": null,
+ "zIndex": 0
},
{
"id": "(g -> n)[0]",
@@ -1121,7 +1148,8 @@
],
"animated": false,
"tooltip": "",
- "icon": null
+ "icon": null,
+ "zIndex": 0
},
{
"id": "(g -> o)[0]",
@@ -1159,7 +1187,8 @@
],
"animated": false,
"tooltip": "",
- "icon": null
+ "icon": null,
+ "zIndex": 0
}
]
}
diff --git a/e2etests/testdata/stable/chaos1/dagre/board.exp.json b/e2etests/testdata/stable/chaos1/dagre/board.exp.json
index b1b5defb8..37dd9e762 100644
--- a/e2etests/testdata/stable/chaos1/dagre/board.exp.json
+++ b/e2etests/testdata/stable/chaos1/dagre/board.exp.json
@@ -10,7 +10,6 @@
},
"width": 251,
"height": 452,
- "level": 1,
"opacity": 1,
"strokeDash": 0,
"strokeWidth": 2,
@@ -37,7 +36,9 @@
"underline": false,
"labelWidth": 46,
"labelHeight": 41,
- "labelPosition": "INSIDE_TOP_CENTER"
+ "labelPosition": "INSIDE_TOP_CENTER",
+ "zIndex": 0,
+ "level": 1
},
{
"id": "aaa.bbb",
@@ -48,7 +49,6 @@
},
"width": 132,
"height": 126,
- "level": 2,
"opacity": 1,
"strokeDash": 0,
"strokeWidth": 2,
@@ -75,7 +75,9 @@
"underline": false,
"labelWidth": 32,
"labelHeight": 26,
- "labelPosition": "INSIDE_MIDDLE_CENTER"
+ "labelPosition": "INSIDE_MIDDLE_CENTER",
+ "zIndex": 0,
+ "level": 2
},
{
"id": "ddd",
@@ -86,7 +88,6 @@
},
"width": 133,
"height": 126,
- "level": 1,
"opacity": 1,
"strokeDash": 0,
"strokeWidth": 2,
@@ -113,7 +114,9 @@
"underline": false,
"labelWidth": 33,
"labelHeight": 26,
- "labelPosition": "INSIDE_MIDDLE_CENTER"
+ "labelPosition": "INSIDE_MIDDLE_CENTER",
+ "zIndex": 0,
+ "level": 1
},
{
"id": "eee",
@@ -124,7 +127,6 @@
},
"width": 130,
"height": 126,
- "level": 1,
"opacity": 1,
"strokeDash": 0,
"strokeWidth": 2,
@@ -151,7 +153,9 @@
"underline": false,
"labelWidth": 30,
"labelHeight": 26,
- "labelPosition": "INSIDE_MIDDLE_CENTER"
+ "labelPosition": "INSIDE_MIDDLE_CENTER",
+ "zIndex": 0,
+ "level": 1
},
{
"id": "aaa.ccc",
@@ -162,7 +166,6 @@
},
"width": 128,
"height": 126,
- "level": 2,
"opacity": 1,
"strokeDash": 0,
"strokeWidth": 2,
@@ -189,7 +192,9 @@
"underline": false,
"labelWidth": 28,
"labelHeight": 26,
- "labelPosition": "INSIDE_MIDDLE_CENTER"
+ "labelPosition": "INSIDE_MIDDLE_CENTER",
+ "zIndex": 0,
+ "level": 2
}
],
"connections": [
@@ -238,7 +243,8 @@
"isCurve": true,
"animated": false,
"tooltip": "",
- "icon": null
+ "icon": null,
+ "zIndex": 0
},
{
"id": "(eee <- aaa.ccc)[0]",
@@ -285,7 +291,8 @@
"isCurve": true,
"animated": false,
"tooltip": "",
- "icon": null
+ "icon": null,
+ "zIndex": 0
}
]
}
diff --git a/e2etests/testdata/stable/chaos1/elk/board.exp.json b/e2etests/testdata/stable/chaos1/elk/board.exp.json
index 5e28a8c41..f7b484b65 100644
--- a/e2etests/testdata/stable/chaos1/elk/board.exp.json
+++ b/e2etests/testdata/stable/chaos1/elk/board.exp.json
@@ -10,7 +10,6 @@
},
"width": 430,
"height": 317,
- "level": 1,
"opacity": 1,
"strokeDash": 0,
"strokeWidth": 2,
@@ -37,7 +36,9 @@
"underline": false,
"labelWidth": 46,
"labelHeight": 41,
- "labelPosition": "INSIDE_TOP_CENTER"
+ "labelPosition": "INSIDE_TOP_CENTER",
+ "zIndex": 0,
+ "level": 1
},
{
"id": "aaa.bbb",
@@ -48,7 +49,6 @@
},
"width": 132,
"height": 126,
- "level": 2,
"opacity": 1,
"strokeDash": 0,
"strokeWidth": 2,
@@ -75,7 +75,9 @@
"underline": false,
"labelWidth": 32,
"labelHeight": 26,
- "labelPosition": "INSIDE_MIDDLE_CENTER"
+ "labelPosition": "INSIDE_MIDDLE_CENTER",
+ "zIndex": 0,
+ "level": 2
},
{
"id": "ddd",
@@ -86,7 +88,6 @@
},
"width": 133,
"height": 126,
- "level": 1,
"opacity": 1,
"strokeDash": 0,
"strokeWidth": 2,
@@ -113,7 +114,9 @@
"underline": false,
"labelWidth": 33,
"labelHeight": 26,
- "labelPosition": "INSIDE_MIDDLE_CENTER"
+ "labelPosition": "INSIDE_MIDDLE_CENTER",
+ "zIndex": 0,
+ "level": 1
},
{
"id": "eee",
@@ -124,7 +127,6 @@
},
"width": 130,
"height": 126,
- "level": 1,
"opacity": 1,
"strokeDash": 0,
"strokeWidth": 2,
@@ -151,7 +153,9 @@
"underline": false,
"labelWidth": 30,
"labelHeight": 26,
- "labelPosition": "INSIDE_MIDDLE_CENTER"
+ "labelPosition": "INSIDE_MIDDLE_CENTER",
+ "zIndex": 0,
+ "level": 1
},
{
"id": "aaa.ccc",
@@ -162,7 +166,6 @@
},
"width": 128,
"height": 126,
- "level": 2,
"opacity": 1,
"strokeDash": 0,
"strokeWidth": 2,
@@ -189,7 +192,9 @@
"underline": false,
"labelWidth": 28,
"labelHeight": 26,
- "labelPosition": "INSIDE_MIDDLE_CENTER"
+ "labelPosition": "INSIDE_MIDDLE_CENTER",
+ "zIndex": 0,
+ "level": 2
}
],
"connections": [
@@ -229,7 +234,8 @@
],
"animated": false,
"tooltip": "",
- "icon": null
+ "icon": null,
+ "zIndex": 0
},
{
"id": "(eee <- aaa.ccc)[0]",
@@ -267,7 +273,8 @@
],
"animated": false,
"tooltip": "",
- "icon": null
+ "icon": null,
+ "zIndex": 0
}
]
}
diff --git a/e2etests/testdata/stable/chaos2/dagre/board.exp.json b/e2etests/testdata/stable/chaos2/dagre/board.exp.json
index 8caeb8bd9..e14512753 100644
--- a/e2etests/testdata/stable/chaos2/dagre/board.exp.json
+++ b/e2etests/testdata/stable/chaos2/dagre/board.exp.json
@@ -10,7 +10,6 @@
},
"width": 1117,
"height": 1654,
- "level": 1,
"opacity": 1,
"strokeDash": 0,
"strokeWidth": 2,
@@ -37,7 +36,9 @@
"underline": false,
"labelWidth": 32,
"labelHeight": 41,
- "labelPosition": "INSIDE_TOP_CENTER"
+ "labelPosition": "INSIDE_TOP_CENTER",
+ "zIndex": 0,
+ "level": 1
},
{
"id": "aa.bb",
@@ -48,7 +49,6 @@
},
"width": 776,
"height": 1554,
- "level": 2,
"opacity": 1,
"strokeDash": 0,
"strokeWidth": 2,
@@ -75,7 +75,9 @@
"underline": false,
"labelWidth": 31,
"labelHeight": 36,
- "labelPosition": "INSIDE_TOP_CENTER"
+ "labelPosition": "INSIDE_TOP_CENTER",
+ "zIndex": 0,
+ "level": 2
},
{
"id": "aa.bb.cc",
@@ -86,7 +88,6 @@
},
"width": 510,
"height": 676,
- "level": 3,
"opacity": 1,
"strokeDash": 0,
"strokeWidth": 2,
@@ -113,7 +114,9 @@
"underline": false,
"labelWidth": 24,
"labelHeight": 31,
- "labelPosition": "INSIDE_TOP_CENTER"
+ "labelPosition": "INSIDE_TOP_CENTER",
+ "zIndex": 0,
+ "level": 3
},
{
"id": "aa.bb.cc.dd",
@@ -124,7 +127,6 @@
},
"width": 355,
"height": 226,
- "level": 4,
"opacity": 1,
"strokeDash": 0,
"strokeWidth": 2,
@@ -151,7 +153,9 @@
"underline": false,
"labelWidth": 22,
"labelHeight": 26,
- "labelPosition": "INSIDE_TOP_CENTER"
+ "labelPosition": "INSIDE_TOP_CENTER",
+ "zIndex": 0,
+ "level": 4
},
{
"id": "aa.bb.cc.dd.ee",
@@ -162,7 +166,6 @@
},
"width": 16,
"height": 24,
- "level": 5,
"opacity": 1,
"strokeDash": 0,
"strokeWidth": 2,
@@ -188,7 +191,9 @@
"bold": true,
"underline": false,
"labelWidth": 16,
- "labelHeight": 24
+ "labelHeight": 24,
+ "zIndex": 0,
+ "level": 5
},
{
"id": "aa.bb.cc.dd.ff",
@@ -199,7 +204,6 @@
},
"width": 117,
"height": 126,
- "level": 5,
"opacity": 1,
"strokeDash": 0,
"strokeWidth": 2,
@@ -226,7 +230,9 @@
"underline": false,
"labelWidth": 17,
"labelHeight": 26,
- "labelPosition": "INSIDE_MIDDLE_CENTER"
+ "labelPosition": "INSIDE_MIDDLE_CENTER",
+ "zIndex": 0,
+ "level": 5
},
{
"id": "aa.bb.cc.gg",
@@ -237,7 +243,6 @@
},
"width": 17,
"height": 24,
- "level": 4,
"opacity": 1,
"strokeDash": 0,
"strokeWidth": 2,
@@ -263,7 +268,9 @@
"bold": true,
"underline": false,
"labelWidth": 17,
- "labelHeight": 24
+ "labelHeight": 24,
+ "zIndex": 0,
+ "level": 4
},
{
"id": "aa.bb.cc.hh",
@@ -274,7 +281,6 @@
},
"width": 123,
"height": 126,
- "level": 4,
"opacity": 1,
"strokeDash": 0,
"strokeWidth": 2,
@@ -301,7 +307,9 @@
"underline": false,
"labelWidth": 23,
"labelHeight": 26,
- "labelPosition": "INSIDE_MIDDLE_CENTER"
+ "labelPosition": "INSIDE_MIDDLE_CENTER",
+ "zIndex": 0,
+ "level": 4
},
{
"id": "aa.bb.ii",
@@ -312,7 +320,6 @@
},
"width": 367,
"height": 226,
- "level": 3,
"opacity": 1,
"strokeDash": 0,
"strokeWidth": 2,
@@ -339,7 +346,9 @@
"underline": false,
"labelWidth": 14,
"labelHeight": 31,
- "labelPosition": "INSIDE_TOP_CENTER"
+ "labelPosition": "INSIDE_TOP_CENTER",
+ "zIndex": 0,
+ "level": 3
},
{
"id": "aa.bb.ii.jj",
@@ -350,7 +359,6 @@
},
"width": 115,
"height": 126,
- "level": 4,
"opacity": 1,
"strokeDash": 0,
"strokeWidth": 2,
@@ -377,7 +385,9 @@
"underline": false,
"labelWidth": 15,
"labelHeight": 26,
- "labelPosition": "INSIDE_MIDDLE_CENTER"
+ "labelPosition": "INSIDE_MIDDLE_CENTER",
+ "zIndex": 0,
+ "level": 4
},
{
"id": "aa.bb.kk",
@@ -388,7 +398,6 @@
},
"width": 126,
"height": 126,
- "level": 3,
"opacity": 1,
"strokeDash": 0,
"strokeWidth": 2,
@@ -415,7 +424,9 @@
"underline": false,
"labelWidth": 22,
"labelHeight": 26,
- "labelPosition": "INSIDE_MIDDLE_CENTER"
+ "labelPosition": "INSIDE_MIDDLE_CENTER",
+ "zIndex": 0,
+ "level": 3
},
{
"id": "aa.ll",
@@ -426,7 +437,6 @@
},
"width": 114,
"height": 126,
- "level": 2,
"opacity": 1,
"strokeDash": 0,
"strokeWidth": 2,
@@ -453,7 +463,9 @@
"underline": false,
"labelWidth": 14,
"labelHeight": 26,
- "labelPosition": "INSIDE_MIDDLE_CENTER"
+ "labelPosition": "INSIDE_MIDDLE_CENTER",
+ "zIndex": 0,
+ "level": 2
},
{
"id": "aa.mm",
@@ -464,7 +476,6 @@
},
"width": 131,
"height": 126,
- "level": 2,
"opacity": 1,
"strokeDash": 0,
"strokeWidth": 2,
@@ -491,7 +502,9 @@
"underline": false,
"labelWidth": 31,
"labelHeight": 26,
- "labelPosition": "INSIDE_MIDDLE_CENTER"
+ "labelPosition": "INSIDE_MIDDLE_CENTER",
+ "zIndex": 0,
+ "level": 2
},
{
"id": "aa.nn",
@@ -502,7 +515,6 @@
},
"width": 18,
"height": 24,
- "level": 2,
"opacity": 1,
"strokeDash": 0,
"strokeWidth": 2,
@@ -528,7 +540,9 @@
"bold": true,
"underline": false,
"labelWidth": 18,
- "labelHeight": 24
+ "labelHeight": 24,
+ "zIndex": 0,
+ "level": 2
},
{
"id": "aa.oo",
@@ -539,7 +553,6 @@
},
"width": 123,
"height": 126,
- "level": 2,
"opacity": 1,
"strokeDash": 0,
"strokeWidth": 2,
@@ -566,7 +579,9 @@
"underline": false,
"labelWidth": 23,
"labelHeight": 26,
- "labelPosition": "INSIDE_MIDDLE_CENTER"
+ "labelPosition": "INSIDE_MIDDLE_CENTER",
+ "zIndex": 0,
+ "level": 2
}
],
"connections": [
@@ -615,7 +630,8 @@
"isCurve": true,
"animated": false,
"tooltip": "",
- "icon": null
+ "icon": null,
+ "zIndex": 0
},
{
"id": "aa.bb.cc.(gg -- hh)[0]",
@@ -662,7 +678,8 @@
"isCurve": true,
"animated": false,
"tooltip": "",
- "icon": null
+ "icon": null,
+ "zIndex": 0
},
{
"id": "aa.bb.(ii -> cc.dd)[0]",
@@ -757,7 +774,8 @@
"isCurve": true,
"animated": false,
"tooltip": "",
- "icon": null
+ "icon": null,
+ "zIndex": 0
},
{
"id": "aa.(ll <-> bb)[0]",
@@ -804,7 +822,8 @@
"isCurve": true,
"animated": false,
"tooltip": "",
- "icon": null
+ "icon": null,
+ "zIndex": 0
},
{
"id": "aa.(mm -> bb.cc)[0]",
@@ -863,7 +882,8 @@
"isCurve": true,
"animated": false,
"tooltip": "",
- "icon": null
+ "icon": null,
+ "zIndex": 0
},
{
"id": "aa.(mm -> ll)[0]",
@@ -910,7 +930,8 @@
"isCurve": true,
"animated": false,
"tooltip": "",
- "icon": null
+ "icon": null,
+ "zIndex": 0
},
{
"id": "aa.(mm <-> bb)[0]",
@@ -957,7 +978,8 @@
"isCurve": true,
"animated": false,
"tooltip": "",
- "icon": null
+ "icon": null,
+ "zIndex": 0
},
{
"id": "aa.(ll <-> bb.cc.gg)[0]",
@@ -1052,7 +1074,8 @@
"isCurve": true,
"animated": false,
"tooltip": "",
- "icon": null
+ "icon": null,
+ "zIndex": 0
},
{
"id": "aa.(mm <- bb.ii)[0]",
@@ -1099,7 +1122,8 @@
"isCurve": true,
"animated": false,
"tooltip": "",
- "icon": null
+ "icon": null,
+ "zIndex": 0
},
{
"id": "aa.(bb.cc <- ll)[0]",
@@ -1146,7 +1170,8 @@
"isCurve": true,
"animated": false,
"tooltip": "",
- "icon": null
+ "icon": null,
+ "zIndex": 0
},
{
"id": "aa.(bb.ii <-> ll)[0]",
@@ -1205,7 +1230,8 @@
"isCurve": true,
"animated": false,
"tooltip": "",
- "icon": null
+ "icon": null,
+ "zIndex": 0
}
]
}
diff --git a/e2etests/testdata/stable/chaos2/elk/board.exp.json b/e2etests/testdata/stable/chaos2/elk/board.exp.json
index fbe4f1cdd..8b13f40e1 100644
--- a/e2etests/testdata/stable/chaos2/elk/board.exp.json
+++ b/e2etests/testdata/stable/chaos2/elk/board.exp.json
@@ -10,7 +10,6 @@
},
"width": 892,
"height": 1707,
- "level": 1,
"opacity": 1,
"strokeDash": 0,
"strokeWidth": 2,
@@ -37,7 +36,9 @@
"underline": false,
"labelWidth": 32,
"labelHeight": 41,
- "labelPosition": "INSIDE_TOP_CENTER"
+ "labelPosition": "INSIDE_TOP_CENTER",
+ "zIndex": 0,
+ "level": 1
},
{
"id": "aa.bb",
@@ -48,7 +49,6 @@
},
"width": 685,
"height": 1174,
- "level": 2,
"opacity": 1,
"strokeDash": 0,
"strokeWidth": 2,
@@ -75,7 +75,9 @@
"underline": false,
"labelWidth": 31,
"labelHeight": 36,
- "labelPosition": "INSIDE_TOP_CENTER"
+ "labelPosition": "INSIDE_TOP_CENTER",
+ "zIndex": 0,
+ "level": 2
},
{
"id": "aa.bb.cc",
@@ -86,7 +88,6 @@
},
"width": 464,
"height": 703,
- "level": 3,
"opacity": 1,
"strokeDash": 0,
"strokeWidth": 2,
@@ -113,7 +114,9 @@
"underline": false,
"labelWidth": 24,
"labelHeight": 31,
- "labelPosition": "INSIDE_TOP_CENTER"
+ "labelPosition": "INSIDE_TOP_CENTER",
+ "zIndex": 0,
+ "level": 3
},
{
"id": "aa.bb.cc.dd",
@@ -124,7 +127,6 @@
},
"width": 303,
"height": 276,
- "level": 4,
"opacity": 1,
"strokeDash": 0,
"strokeWidth": 2,
@@ -151,7 +153,9 @@
"underline": false,
"labelWidth": 22,
"labelHeight": 26,
- "labelPosition": "INSIDE_TOP_CENTER"
+ "labelPosition": "INSIDE_TOP_CENTER",
+ "zIndex": 0,
+ "level": 4
},
{
"id": "aa.bb.cc.dd.ee",
@@ -162,7 +166,6 @@
},
"width": 16,
"height": 24,
- "level": 5,
"opacity": 1,
"strokeDash": 0,
"strokeWidth": 2,
@@ -188,7 +191,9 @@
"bold": true,
"underline": false,
"labelWidth": 16,
- "labelHeight": 24
+ "labelHeight": 24,
+ "zIndex": 0,
+ "level": 5
},
{
"id": "aa.bb.cc.dd.ff",
@@ -199,7 +204,6 @@
},
"width": 117,
"height": 126,
- "level": 5,
"opacity": 1,
"strokeDash": 0,
"strokeWidth": 2,
@@ -226,7 +230,9 @@
"underline": false,
"labelWidth": 17,
"labelHeight": 26,
- "labelPosition": "INSIDE_MIDDLE_CENTER"
+ "labelPosition": "INSIDE_MIDDLE_CENTER",
+ "zIndex": 0,
+ "level": 5
},
{
"id": "aa.bb.cc.gg",
@@ -237,7 +243,6 @@
},
"width": 17,
"height": 24,
- "level": 4,
"opacity": 1,
"strokeDash": 0,
"strokeWidth": 2,
@@ -263,7 +268,9 @@
"bold": true,
"underline": false,
"labelWidth": 17,
- "labelHeight": 24
+ "labelHeight": 24,
+ "zIndex": 0,
+ "level": 4
},
{
"id": "aa.bb.cc.hh",
@@ -274,7 +281,6 @@
},
"width": 123,
"height": 126,
- "level": 4,
"opacity": 1,
"strokeDash": 0,
"strokeWidth": 2,
@@ -301,7 +307,9 @@
"underline": false,
"labelWidth": 23,
"labelHeight": 26,
- "labelPosition": "INSIDE_MIDDLE_CENTER"
+ "labelPosition": "INSIDE_MIDDLE_CENTER",
+ "zIndex": 0,
+ "level": 4
},
{
"id": "aa.bb.ii",
@@ -312,7 +320,6 @@
},
"width": 265,
"height": 276,
- "level": 3,
"opacity": 1,
"strokeDash": 0,
"strokeWidth": 2,
@@ -339,7 +346,9 @@
"underline": false,
"labelWidth": 14,
"labelHeight": 31,
- "labelPosition": "INSIDE_TOP_CENTER"
+ "labelPosition": "INSIDE_TOP_CENTER",
+ "zIndex": 0,
+ "level": 3
},
{
"id": "aa.bb.ii.jj",
@@ -350,7 +359,6 @@
},
"width": 115,
"height": 126,
- "level": 4,
"opacity": 1,
"strokeDash": 0,
"strokeWidth": 2,
@@ -377,7 +385,9 @@
"underline": false,
"labelWidth": 15,
"labelHeight": 26,
- "labelPosition": "INSIDE_MIDDLE_CENTER"
+ "labelPosition": "INSIDE_MIDDLE_CENTER",
+ "zIndex": 0,
+ "level": 4
},
{
"id": "aa.bb.kk",
@@ -388,7 +398,6 @@
},
"width": 126,
"height": 126,
- "level": 3,
"opacity": 1,
"strokeDash": 0,
"strokeWidth": 2,
@@ -415,7 +424,9 @@
"underline": false,
"labelWidth": 22,
"labelHeight": 26,
- "labelPosition": "INSIDE_MIDDLE_CENTER"
+ "labelPosition": "INSIDE_MIDDLE_CENTER",
+ "zIndex": 0,
+ "level": 3
},
{
"id": "aa.ll",
@@ -426,7 +437,6 @@
},
"width": 114,
"height": 126,
- "level": 2,
"opacity": 1,
"strokeDash": 0,
"strokeWidth": 2,
@@ -453,7 +463,9 @@
"underline": false,
"labelWidth": 14,
"labelHeight": 26,
- "labelPosition": "INSIDE_MIDDLE_CENTER"
+ "labelPosition": "INSIDE_MIDDLE_CENTER",
+ "zIndex": 0,
+ "level": 2
},
{
"id": "aa.mm",
@@ -464,7 +476,6 @@
},
"width": 131,
"height": 126,
- "level": 2,
"opacity": 1,
"strokeDash": 0,
"strokeWidth": 2,
@@ -491,7 +502,9 @@
"underline": false,
"labelWidth": 31,
"labelHeight": 26,
- "labelPosition": "INSIDE_MIDDLE_CENTER"
+ "labelPosition": "INSIDE_MIDDLE_CENTER",
+ "zIndex": 0,
+ "level": 2
},
{
"id": "aa.nn",
@@ -502,7 +515,6 @@
},
"width": 18,
"height": 24,
- "level": 2,
"opacity": 1,
"strokeDash": 0,
"strokeWidth": 2,
@@ -528,7 +540,9 @@
"bold": true,
"underline": false,
"labelWidth": 18,
- "labelHeight": 24
+ "labelHeight": 24,
+ "zIndex": 0,
+ "level": 2
},
{
"id": "aa.oo",
@@ -539,7 +553,6 @@
},
"width": 123,
"height": 126,
- "level": 2,
"opacity": 1,
"strokeDash": 0,
"strokeWidth": 2,
@@ -566,7 +579,9 @@
"underline": false,
"labelWidth": 23,
"labelHeight": 26,
- "labelPosition": "INSIDE_MIDDLE_CENTER"
+ "labelPosition": "INSIDE_MIDDLE_CENTER",
+ "zIndex": 0,
+ "level": 2
}
],
"connections": [
@@ -606,7 +621,8 @@
],
"animated": false,
"tooltip": "",
- "icon": null
+ "icon": null,
+ "zIndex": 0
},
{
"id": "aa.bb.cc.(gg -- hh)[0]",
@@ -644,7 +660,8 @@
],
"animated": false,
"tooltip": "",
- "icon": null
+ "icon": null,
+ "zIndex": 0
},
{
"id": "aa.bb.(ii -> cc.dd)[0]",
@@ -690,7 +707,8 @@
],
"animated": false,
"tooltip": "",
- "icon": null
+ "icon": null,
+ "zIndex": 0
},
{
"id": "aa.(ll <-> bb)[0]",
@@ -736,7 +754,8 @@
],
"animated": false,
"tooltip": "",
- "icon": null
+ "icon": null,
+ "zIndex": 0
},
{
"id": "aa.(mm -> bb.cc)[0]",
@@ -790,7 +809,8 @@
],
"animated": false,
"tooltip": "",
- "icon": null
+ "icon": null,
+ "zIndex": 0
},
{
"id": "aa.(mm -> ll)[0]",
@@ -836,7 +856,8 @@
],
"animated": false,
"tooltip": "",
- "icon": null
+ "icon": null,
+ "zIndex": 0
},
{
"id": "aa.(mm <-> bb)[0]",
@@ -890,7 +911,8 @@
],
"animated": false,
"tooltip": "",
- "icon": null
+ "icon": null,
+ "zIndex": 0
},
{
"id": "aa.(ll <-> bb.cc.gg)[0]",
@@ -944,7 +966,8 @@
],
"animated": false,
"tooltip": "",
- "icon": null
+ "icon": null,
+ "zIndex": 0
},
{
"id": "aa.(mm <- bb.ii)[0]",
@@ -990,7 +1013,8 @@
],
"animated": false,
"tooltip": "",
- "icon": null
+ "icon": null,
+ "zIndex": 0
},
{
"id": "aa.(bb.cc <- ll)[0]",
@@ -1044,7 +1068,8 @@
],
"animated": false,
"tooltip": "",
- "icon": null
+ "icon": null,
+ "zIndex": 0
},
{
"id": "aa.(bb.ii <-> ll)[0]",
@@ -1106,7 +1131,8 @@
],
"animated": false,
"tooltip": "",
- "icon": null
+ "icon": null,
+ "zIndex": 0
}
]
}
diff --git a/e2etests/testdata/stable/child_parent_edges/dagre/board.exp.json b/e2etests/testdata/stable/child_parent_edges/dagre/board.exp.json
index 8c3d30dfc..dd97cece7 100644
--- a/e2etests/testdata/stable/child_parent_edges/dagre/board.exp.json
+++ b/e2etests/testdata/stable/child_parent_edges/dagre/board.exp.json
@@ -10,7 +10,6 @@
},
"width": 524,
"height": 426,
- "level": 1,
"opacity": 1,
"strokeDash": 0,
"strokeWidth": 2,
@@ -37,7 +36,9 @@
"underline": false,
"labelWidth": 17,
"labelHeight": 41,
- "labelPosition": "INSIDE_TOP_CENTER"
+ "labelPosition": "INSIDE_TOP_CENTER",
+ "zIndex": 0,
+ "level": 1
},
{
"id": "a.b",
@@ -48,7 +49,6 @@
},
"width": 444,
"height": 326,
- "level": 2,
"opacity": 1,
"strokeDash": 0,
"strokeWidth": 2,
@@ -75,7 +75,9 @@
"underline": false,
"labelWidth": 17,
"labelHeight": 36,
- "labelPosition": "INSIDE_TOP_CENTER"
+ "labelPosition": "INSIDE_TOP_CENTER",
+ "zIndex": 0,
+ "level": 2
},
{
"id": "a.b.c",
@@ -86,7 +88,6 @@
},
"width": 364,
"height": 226,
- "level": 3,
"opacity": 1,
"strokeDash": 0,
"strokeWidth": 2,
@@ -113,7 +114,9 @@
"underline": false,
"labelWidth": 14,
"labelHeight": 31,
- "labelPosition": "INSIDE_TOP_CENTER"
+ "labelPosition": "INSIDE_TOP_CENTER",
+ "zIndex": 0,
+ "level": 3
},
{
"id": "a.b.c.d",
@@ -124,7 +127,6 @@
},
"width": 114,
"height": 126,
- "level": 4,
"opacity": 1,
"strokeDash": 0,
"strokeWidth": 2,
@@ -151,7 +153,9 @@
"underline": false,
"labelWidth": 14,
"labelHeight": 26,
- "labelPosition": "INSIDE_MIDDLE_CENTER"
+ "labelPosition": "INSIDE_MIDDLE_CENTER",
+ "zIndex": 0,
+ "level": 4
}
],
"connections": [
@@ -236,7 +240,8 @@
"isCurve": true,
"animated": false,
"tooltip": "",
- "icon": null
+ "icon": null,
+ "zIndex": 0
},
{
"id": "a.(b -> b.c)[0]",
@@ -319,7 +324,8 @@
"isCurve": true,
"animated": false,
"tooltip": "",
- "icon": null
+ "icon": null,
+ "zIndex": 0
},
{
"id": "a.(b.c.d -> b)[0]",
@@ -366,7 +372,8 @@
"isCurve": true,
"animated": false,
"tooltip": "",
- "icon": null
+ "icon": null,
+ "zIndex": 0
}
]
}
diff --git a/e2etests/testdata/stable/child_parent_edges/elk/board.exp.json b/e2etests/testdata/stable/child_parent_edges/elk/board.exp.json
index 41f392aef..14e93a0b2 100644
--- a/e2etests/testdata/stable/child_parent_edges/elk/board.exp.json
+++ b/e2etests/testdata/stable/child_parent_edges/elk/board.exp.json
@@ -10,7 +10,6 @@
},
"width": 574,
"height": 601,
- "level": 1,
"opacity": 1,
"strokeDash": 0,
"strokeWidth": 2,
@@ -37,7 +36,9 @@
"underline": false,
"labelWidth": 17,
"labelHeight": 41,
- "labelPosition": "INSIDE_TOP_CENTER"
+ "labelPosition": "INSIDE_TOP_CENTER",
+ "zIndex": 0,
+ "level": 1
},
{
"id": "a.b",
@@ -48,7 +49,6 @@
},
"width": 424,
"height": 451,
- "level": 2,
"opacity": 1,
"strokeDash": 0,
"strokeWidth": 2,
@@ -75,7 +75,9 @@
"underline": false,
"labelWidth": 17,
"labelHeight": 36,
- "labelPosition": "INSIDE_TOP_CENTER"
+ "labelPosition": "INSIDE_TOP_CENTER",
+ "zIndex": 0,
+ "level": 2
},
{
"id": "a.b.c",
@@ -86,7 +88,6 @@
},
"width": 264,
"height": 276,
- "level": 3,
"opacity": 1,
"strokeDash": 0,
"strokeWidth": 2,
@@ -113,7 +114,9 @@
"underline": false,
"labelWidth": 14,
"labelHeight": 31,
- "labelPosition": "INSIDE_TOP_CENTER"
+ "labelPosition": "INSIDE_TOP_CENTER",
+ "zIndex": 0,
+ "level": 3
},
{
"id": "a.b.c.d",
@@ -124,7 +127,6 @@
},
"width": 114,
"height": 126,
- "level": 4,
"opacity": 1,
"strokeDash": 0,
"strokeWidth": 2,
@@ -151,7 +153,9 @@
"underline": false,
"labelWidth": 14,
"labelHeight": 26,
- "labelPosition": "INSIDE_MIDDLE_CENTER"
+ "labelPosition": "INSIDE_MIDDLE_CENTER",
+ "zIndex": 0,
+ "level": 4
}
],
"connections": [
@@ -191,7 +195,8 @@
],
"animated": false,
"tooltip": "",
- "icon": null
+ "icon": null,
+ "zIndex": 0
},
{
"id": "a.(b -> b.c)[0]",
@@ -229,7 +234,8 @@
],
"animated": false,
"tooltip": "",
- "icon": null
+ "icon": null,
+ "zIndex": 0
},
{
"id": "a.(b.c.d -> b)[0]",
@@ -275,7 +281,8 @@
],
"animated": false,
"tooltip": "",
- "icon": null
+ "icon": null,
+ "zIndex": 0
}
]
}
diff --git a/e2etests/testdata/stable/circular_dependency/dagre/board.exp.json b/e2etests/testdata/stable/circular_dependency/dagre/board.exp.json
index c965af9c1..416286d6c 100644
--- a/e2etests/testdata/stable/circular_dependency/dagre/board.exp.json
+++ b/e2etests/testdata/stable/circular_dependency/dagre/board.exp.json
@@ -10,7 +10,6 @@
},
"width": 113,
"height": 126,
- "level": 1,
"opacity": 1,
"strokeDash": 0,
"strokeWidth": 2,
@@ -37,7 +36,9 @@
"underline": false,
"labelWidth": 13,
"labelHeight": 26,
- "labelPosition": "INSIDE_MIDDLE_CENTER"
+ "labelPosition": "INSIDE_MIDDLE_CENTER",
+ "zIndex": 0,
+ "level": 1
},
{
"id": "b",
@@ -48,7 +49,6 @@
},
"width": 113,
"height": 126,
- "level": 1,
"opacity": 1,
"strokeDash": 0,
"strokeWidth": 2,
@@ -75,7 +75,9 @@
"underline": false,
"labelWidth": 13,
"labelHeight": 26,
- "labelPosition": "INSIDE_MIDDLE_CENTER"
+ "labelPosition": "INSIDE_MIDDLE_CENTER",
+ "zIndex": 0,
+ "level": 1
},
{
"id": "c",
@@ -86,7 +88,6 @@
},
"width": 113,
"height": 126,
- "level": 1,
"opacity": 1,
"strokeDash": 0,
"strokeWidth": 2,
@@ -113,7 +114,9 @@
"underline": false,
"labelWidth": 13,
"labelHeight": 26,
- "labelPosition": "INSIDE_MIDDLE_CENTER"
+ "labelPosition": "INSIDE_MIDDLE_CENTER",
+ "zIndex": 0,
+ "level": 1
}
],
"connections": [
@@ -162,7 +165,8 @@
"isCurve": true,
"animated": false,
"tooltip": "",
- "icon": null
+ "icon": null,
+ "zIndex": 0
},
{
"id": "(b -> c)[0]",
@@ -209,7 +213,8 @@
"isCurve": true,
"animated": false,
"tooltip": "",
- "icon": null
+ "icon": null,
+ "zIndex": 0
},
{
"id": "(c -> b)[0]",
@@ -256,7 +261,8 @@
"isCurve": true,
"animated": false,
"tooltip": "",
- "icon": null
+ "icon": null,
+ "zIndex": 0
},
{
"id": "(b -> a)[0]",
@@ -303,7 +309,8 @@
"isCurve": true,
"animated": false,
"tooltip": "",
- "icon": null
+ "icon": null,
+ "zIndex": 0
}
]
}
diff --git a/e2etests/testdata/stable/circular_dependency/elk/board.exp.json b/e2etests/testdata/stable/circular_dependency/elk/board.exp.json
index eef9a097a..2f1b78b23 100644
--- a/e2etests/testdata/stable/circular_dependency/elk/board.exp.json
+++ b/e2etests/testdata/stable/circular_dependency/elk/board.exp.json
@@ -10,7 +10,6 @@
},
"width": 113,
"height": 126,
- "level": 1,
"opacity": 1,
"strokeDash": 0,
"strokeWidth": 2,
@@ -37,7 +36,9 @@
"underline": false,
"labelWidth": 13,
"labelHeight": 26,
- "labelPosition": "INSIDE_MIDDLE_CENTER"
+ "labelPosition": "INSIDE_MIDDLE_CENTER",
+ "zIndex": 0,
+ "level": 1
},
{
"id": "b",
@@ -48,7 +49,6 @@
},
"width": 113,
"height": 126,
- "level": 1,
"opacity": 1,
"strokeDash": 0,
"strokeWidth": 2,
@@ -75,7 +75,9 @@
"underline": false,
"labelWidth": 13,
"labelHeight": 26,
- "labelPosition": "INSIDE_MIDDLE_CENTER"
+ "labelPosition": "INSIDE_MIDDLE_CENTER",
+ "zIndex": 0,
+ "level": 1
},
{
"id": "c",
@@ -86,7 +88,6 @@
},
"width": 113,
"height": 126,
- "level": 1,
"opacity": 1,
"strokeDash": 0,
"strokeWidth": 2,
@@ -113,7 +114,9 @@
"underline": false,
"labelWidth": 13,
"labelHeight": 26,
- "labelPosition": "INSIDE_MIDDLE_CENTER"
+ "labelPosition": "INSIDE_MIDDLE_CENTER",
+ "zIndex": 0,
+ "level": 1
}
],
"connections": [
@@ -153,7 +156,8 @@
],
"animated": false,
"tooltip": "",
- "icon": null
+ "icon": null,
+ "zIndex": 0
},
{
"id": "(b -> c)[0]",
@@ -191,7 +195,8 @@
],
"animated": false,
"tooltip": "",
- "icon": null
+ "icon": null,
+ "zIndex": 0
},
{
"id": "(c -> b)[0]",
@@ -229,7 +234,8 @@
],
"animated": false,
"tooltip": "",
- "icon": null
+ "icon": null,
+ "zIndex": 0
},
{
"id": "(b -> a)[0]",
@@ -267,7 +273,8 @@
],
"animated": false,
"tooltip": "",
- "icon": null
+ "icon": null,
+ "zIndex": 0
}
]
}
diff --git a/e2etests/testdata/stable/class/dagre/board.exp.json b/e2etests/testdata/stable/class/dagre/board.exp.json
index 501753f8d..224b7f5b1 100644
--- a/e2etests/testdata/stable/class/dagre/board.exp.json
+++ b/e2etests/testdata/stable/class/dagre/board.exp.json
@@ -10,7 +10,6 @@
},
"width": 339,
"height": 368,
- "level": 1,
"opacity": 1,
"strokeDash": 0,
"strokeWidth": 2,
@@ -68,7 +67,9 @@
"bold": true,
"underline": false,
"labelWidth": 150,
- "labelHeight": 36
+ "labelHeight": 36,
+ "zIndex": 0,
+ "level": 1
}
],
"connections": []
diff --git a/e2etests/testdata/stable/class/elk/board.exp.json b/e2etests/testdata/stable/class/elk/board.exp.json
index 592a921c2..b9f35589b 100644
--- a/e2etests/testdata/stable/class/elk/board.exp.json
+++ b/e2etests/testdata/stable/class/elk/board.exp.json
@@ -10,7 +10,6 @@
},
"width": 339,
"height": 368,
- "level": 1,
"opacity": 1,
"strokeDash": 0,
"strokeWidth": 2,
@@ -68,7 +67,9 @@
"bold": true,
"underline": false,
"labelWidth": 150,
- "labelHeight": 36
+ "labelHeight": 36,
+ "zIndex": 0,
+ "level": 1
}
],
"connections": []
diff --git a/e2etests/testdata/stable/code_snippet/dagre/board.exp.json b/e2etests/testdata/stable/code_snippet/dagre/board.exp.json
index 79b6896f4..6cd1e4202 100644
--- a/e2etests/testdata/stable/code_snippet/dagre/board.exp.json
+++ b/e2etests/testdata/stable/code_snippet/dagre/board.exp.json
@@ -10,7 +10,6 @@
},
"width": 755,
"height": 166,
- "level": 1,
"opacity": 1,
"strokeDash": 0,
"strokeWidth": 2,
@@ -36,7 +35,9 @@
"bold": true,
"underline": false,
"labelWidth": 755,
- "labelHeight": 166
+ "labelHeight": 166,
+ "zIndex": 0,
+ "level": 1
},
{
"id": "x",
@@ -47,7 +48,6 @@
},
"width": 113,
"height": 126,
- "level": 1,
"opacity": 1,
"strokeDash": 0,
"strokeWidth": 2,
@@ -74,7 +74,9 @@
"underline": false,
"labelWidth": 13,
"labelHeight": 26,
- "labelPosition": "INSIDE_MIDDLE_CENTER"
+ "labelPosition": "INSIDE_MIDDLE_CENTER",
+ "zIndex": 0,
+ "level": 1
},
{
"id": "y",
@@ -85,7 +87,6 @@
},
"width": 114,
"height": 126,
- "level": 1,
"opacity": 1,
"strokeDash": 0,
"strokeWidth": 2,
@@ -112,7 +113,9 @@
"underline": false,
"labelWidth": 14,
"labelHeight": 26,
- "labelPosition": "INSIDE_MIDDLE_CENTER"
+ "labelPosition": "INSIDE_MIDDLE_CENTER",
+ "zIndex": 0,
+ "level": 1
}
],
"connections": [
@@ -161,7 +164,8 @@
"isCurve": true,
"animated": false,
"tooltip": "",
- "icon": null
+ "icon": null,
+ "zIndex": 0
},
{
"id": "(hey -> y)[0]",
@@ -208,7 +212,8 @@
"isCurve": true,
"animated": false,
"tooltip": "",
- "icon": null
+ "icon": null,
+ "zIndex": 0
}
]
}
diff --git a/e2etests/testdata/stable/code_snippet/elk/board.exp.json b/e2etests/testdata/stable/code_snippet/elk/board.exp.json
index 2c9cfc714..b8f8d107a 100644
--- a/e2etests/testdata/stable/code_snippet/elk/board.exp.json
+++ b/e2etests/testdata/stable/code_snippet/elk/board.exp.json
@@ -10,7 +10,6 @@
},
"width": 755,
"height": 166,
- "level": 1,
"opacity": 1,
"strokeDash": 0,
"strokeWidth": 2,
@@ -36,7 +35,9 @@
"bold": true,
"underline": false,
"labelWidth": 755,
- "labelHeight": 166
+ "labelHeight": 166,
+ "zIndex": 0,
+ "level": 1
},
{
"id": "x",
@@ -47,7 +48,6 @@
},
"width": 113,
"height": 126,
- "level": 1,
"opacity": 1,
"strokeDash": 0,
"strokeWidth": 2,
@@ -74,7 +74,9 @@
"underline": false,
"labelWidth": 13,
"labelHeight": 26,
- "labelPosition": "INSIDE_MIDDLE_CENTER"
+ "labelPosition": "INSIDE_MIDDLE_CENTER",
+ "zIndex": 0,
+ "level": 1
},
{
"id": "y",
@@ -85,7 +87,6 @@
},
"width": 114,
"height": 126,
- "level": 1,
"opacity": 1,
"strokeDash": 0,
"strokeWidth": 2,
@@ -112,7 +113,9 @@
"underline": false,
"labelWidth": 14,
"labelHeight": 26,
- "labelPosition": "INSIDE_MIDDLE_CENTER"
+ "labelPosition": "INSIDE_MIDDLE_CENTER",
+ "zIndex": 0,
+ "level": 1
}
],
"connections": [
@@ -152,7 +155,8 @@
],
"animated": false,
"tooltip": "",
- "icon": null
+ "icon": null,
+ "zIndex": 0
},
{
"id": "(hey -> y)[0]",
@@ -190,7 +194,8 @@
],
"animated": false,
"tooltip": "",
- "icon": null
+ "icon": null,
+ "zIndex": 0
}
]
}
diff --git a/e2etests/testdata/stable/connected_container/dagre/board.exp.json b/e2etests/testdata/stable/connected_container/dagre/board.exp.json
index 33ddd4b57..6ee7a8a33 100644
--- a/e2etests/testdata/stable/connected_container/dagre/board.exp.json
+++ b/e2etests/testdata/stable/connected_container/dagre/board.exp.json
@@ -10,7 +10,6 @@
},
"width": 213,
"height": 226,
- "level": 1,
"opacity": 1,
"strokeDash": 0,
"strokeWidth": 2,
@@ -37,7 +36,9 @@
"underline": false,
"labelWidth": 17,
"labelHeight": 41,
- "labelPosition": "INSIDE_TOP_CENTER"
+ "labelPosition": "INSIDE_TOP_CENTER",
+ "zIndex": 0,
+ "level": 1
},
{
"id": "a.b",
@@ -48,7 +49,6 @@
},
"width": 113,
"height": 126,
- "level": 2,
"opacity": 1,
"strokeDash": 0,
"strokeWidth": 2,
@@ -75,7 +75,9 @@
"underline": false,
"labelWidth": 13,
"labelHeight": 26,
- "labelPosition": "INSIDE_MIDDLE_CENTER"
+ "labelPosition": "INSIDE_MIDDLE_CENTER",
+ "zIndex": 0,
+ "level": 2
},
{
"id": "c",
@@ -86,7 +88,6 @@
},
"width": 214,
"height": 226,
- "level": 1,
"opacity": 1,
"strokeDash": 0,
"strokeWidth": 2,
@@ -113,7 +114,9 @@
"underline": false,
"labelWidth": 17,
"labelHeight": 41,
- "labelPosition": "INSIDE_TOP_CENTER"
+ "labelPosition": "INSIDE_TOP_CENTER",
+ "zIndex": 0,
+ "level": 1
},
{
"id": "c.d",
@@ -124,7 +127,6 @@
},
"width": 114,
"height": 126,
- "level": 2,
"opacity": 1,
"strokeDash": 0,
"strokeWidth": 2,
@@ -151,7 +153,9 @@
"underline": false,
"labelWidth": 14,
"labelHeight": 26,
- "labelPosition": "INSIDE_MIDDLE_CENTER"
+ "labelPosition": "INSIDE_MIDDLE_CENTER",
+ "zIndex": 0,
+ "level": 2
},
{
"id": "f",
@@ -162,7 +166,6 @@
},
"width": 294,
"height": 326,
- "level": 1,
"opacity": 1,
"strokeDash": 0,
"strokeWidth": 2,
@@ -189,7 +192,9 @@
"underline": false,
"labelWidth": 14,
"labelHeight": 41,
- "labelPosition": "INSIDE_TOP_CENTER"
+ "labelPosition": "INSIDE_TOP_CENTER",
+ "zIndex": 0,
+ "level": 1
},
{
"id": "f.h",
@@ -200,7 +205,6 @@
},
"width": 214,
"height": 226,
- "level": 2,
"opacity": 1,
"strokeDash": 0,
"strokeWidth": 2,
@@ -227,7 +231,9 @@
"underline": false,
"labelWidth": 16,
"labelHeight": 36,
- "labelPosition": "INSIDE_TOP_CENTER"
+ "labelPosition": "INSIDE_TOP_CENTER",
+ "zIndex": 0,
+ "level": 2
},
{
"id": "f.h.g",
@@ -238,7 +244,6 @@
},
"width": 114,
"height": 126,
- "level": 3,
"opacity": 1,
"strokeDash": 0,
"strokeWidth": 2,
@@ -265,7 +270,9 @@
"underline": false,
"labelWidth": 14,
"labelHeight": 26,
- "labelPosition": "INSIDE_MIDDLE_CENTER"
+ "labelPosition": "INSIDE_MIDDLE_CENTER",
+ "zIndex": 0,
+ "level": 3
}
],
"connections": [
@@ -326,7 +333,8 @@
"isCurve": true,
"animated": false,
"tooltip": "",
- "icon": null
+ "icon": null,
+ "zIndex": 0
},
{
"id": "(c.d -> f.h.g)[0]",
@@ -397,7 +405,8 @@
"isCurve": true,
"animated": false,
"tooltip": "",
- "icon": null
+ "icon": null,
+ "zIndex": 0
}
]
}
diff --git a/e2etests/testdata/stable/connected_container/elk/board.exp.json b/e2etests/testdata/stable/connected_container/elk/board.exp.json
index 73c9e7864..40e019241 100644
--- a/e2etests/testdata/stable/connected_container/elk/board.exp.json
+++ b/e2etests/testdata/stable/connected_container/elk/board.exp.json
@@ -10,7 +10,6 @@
},
"width": 263,
"height": 276,
- "level": 1,
"opacity": 1,
"strokeDash": 0,
"strokeWidth": 2,
@@ -37,7 +36,9 @@
"underline": false,
"labelWidth": 17,
"labelHeight": 41,
- "labelPosition": "INSIDE_TOP_CENTER"
+ "labelPosition": "INSIDE_TOP_CENTER",
+ "zIndex": 0,
+ "level": 1
},
{
"id": "a.b",
@@ -48,7 +49,6 @@
},
"width": 113,
"height": 126,
- "level": 2,
"opacity": 1,
"strokeDash": 0,
"strokeWidth": 2,
@@ -75,7 +75,9 @@
"underline": false,
"labelWidth": 13,
"labelHeight": 26,
- "labelPosition": "INSIDE_MIDDLE_CENTER"
+ "labelPosition": "INSIDE_MIDDLE_CENTER",
+ "zIndex": 0,
+ "level": 2
},
{
"id": "c",
@@ -86,7 +88,6 @@
},
"width": 264,
"height": 276,
- "level": 1,
"opacity": 1,
"strokeDash": 0,
"strokeWidth": 2,
@@ -113,7 +114,9 @@
"underline": false,
"labelWidth": 17,
"labelHeight": 41,
- "labelPosition": "INSIDE_TOP_CENTER"
+ "labelPosition": "INSIDE_TOP_CENTER",
+ "zIndex": 0,
+ "level": 1
},
{
"id": "c.d",
@@ -124,7 +127,6 @@
},
"width": 114,
"height": 126,
- "level": 2,
"opacity": 1,
"strokeDash": 0,
"strokeWidth": 2,
@@ -151,7 +153,9 @@
"underline": false,
"labelWidth": 14,
"labelHeight": 26,
- "labelPosition": "INSIDE_MIDDLE_CENTER"
+ "labelPosition": "INSIDE_MIDDLE_CENTER",
+ "zIndex": 0,
+ "level": 2
},
{
"id": "f",
@@ -162,7 +166,6 @@
},
"width": 414,
"height": 431,
- "level": 1,
"opacity": 1,
"strokeDash": 0,
"strokeWidth": 2,
@@ -189,7 +192,9 @@
"underline": false,
"labelWidth": 14,
"labelHeight": 41,
- "labelPosition": "INSIDE_TOP_CENTER"
+ "labelPosition": "INSIDE_TOP_CENTER",
+ "zIndex": 0,
+ "level": 1
},
{
"id": "f.h",
@@ -200,7 +205,6 @@
},
"width": 264,
"height": 276,
- "level": 2,
"opacity": 1,
"strokeDash": 0,
"strokeWidth": 2,
@@ -227,7 +231,9 @@
"underline": false,
"labelWidth": 16,
"labelHeight": 36,
- "labelPosition": "INSIDE_TOP_CENTER"
+ "labelPosition": "INSIDE_TOP_CENTER",
+ "zIndex": 0,
+ "level": 2
},
{
"id": "f.h.g",
@@ -238,7 +244,6 @@
},
"width": 114,
"height": 126,
- "level": 3,
"opacity": 1,
"strokeDash": 0,
"strokeWidth": 2,
@@ -265,7 +270,9 @@
"underline": false,
"labelWidth": 14,
"labelHeight": 26,
- "labelPosition": "INSIDE_MIDDLE_CENTER"
+ "labelPosition": "INSIDE_MIDDLE_CENTER",
+ "zIndex": 0,
+ "level": 3
}
],
"connections": [
@@ -305,7 +312,8 @@
],
"animated": false,
"tooltip": "",
- "icon": null
+ "icon": null,
+ "zIndex": 0
},
{
"id": "(c.d -> f.h.g)[0]",
@@ -343,7 +351,8 @@
],
"animated": false,
"tooltip": "",
- "icon": null
+ "icon": null,
+ "zIndex": 0
}
]
}
diff --git a/e2etests/testdata/stable/container_edges/dagre/board.exp.json b/e2etests/testdata/stable/container_edges/dagre/board.exp.json
index 8166e4d26..01a5da1bc 100644
--- a/e2etests/testdata/stable/container_edges/dagre/board.exp.json
+++ b/e2etests/testdata/stable/container_edges/dagre/board.exp.json
@@ -10,7 +10,6 @@
},
"width": 113,
"height": 126,
- "level": 1,
"opacity": 1,
"strokeDash": 0,
"strokeWidth": 2,
@@ -37,7 +36,9 @@
"underline": false,
"labelWidth": 13,
"labelHeight": 26,
- "labelPosition": "INSIDE_MIDDLE_CENTER"
+ "labelPosition": "INSIDE_MIDDLE_CENTER",
+ "zIndex": 0,
+ "level": 1
},
{
"id": "g",
@@ -48,7 +49,6 @@
},
"width": 253,
"height": 878,
- "level": 1,
"opacity": 1,
"strokeDash": 0,
"strokeWidth": 2,
@@ -75,7 +75,9 @@
"underline": false,
"labelWidth": 18,
"labelHeight": 41,
- "labelPosition": "INSIDE_TOP_CENTER"
+ "labelPosition": "INSIDE_TOP_CENTER",
+ "zIndex": 0,
+ "level": 1
},
{
"id": "g.b",
@@ -86,7 +88,6 @@
},
"width": 113,
"height": 126,
- "level": 2,
"opacity": 1,
"strokeDash": 0,
"strokeWidth": 2,
@@ -113,7 +114,9 @@
"underline": false,
"labelWidth": 13,
"labelHeight": 26,
- "labelPosition": "INSIDE_MIDDLE_CENTER"
+ "labelPosition": "INSIDE_MIDDLE_CENTER",
+ "zIndex": 0,
+ "level": 2
},
{
"id": "d",
@@ -124,7 +127,6 @@
},
"width": 293,
"height": 326,
- "level": 1,
"opacity": 1,
"strokeDash": 0,
"strokeWidth": 2,
@@ -151,7 +153,9 @@
"underline": false,
"labelWidth": 18,
"labelHeight": 41,
- "labelPosition": "INSIDE_TOP_CENTER"
+ "labelPosition": "INSIDE_TOP_CENTER",
+ "zIndex": 0,
+ "level": 1
},
{
"id": "d.h",
@@ -162,7 +166,6 @@
},
"width": 213,
"height": 226,
- "level": 2,
"opacity": 1,
"strokeDash": 0,
"strokeWidth": 2,
@@ -189,7 +192,9 @@
"underline": false,
"labelWidth": 16,
"labelHeight": 36,
- "labelPosition": "INSIDE_TOP_CENTER"
+ "labelPosition": "INSIDE_TOP_CENTER",
+ "zIndex": 0,
+ "level": 2
},
{
"id": "d.h.c",
@@ -200,7 +205,6 @@
},
"width": 113,
"height": 126,
- "level": 3,
"opacity": 1,
"strokeDash": 0,
"strokeWidth": 2,
@@ -227,7 +231,9 @@
"underline": false,
"labelWidth": 13,
"labelHeight": 26,
- "labelPosition": "INSIDE_MIDDLE_CENTER"
+ "labelPosition": "INSIDE_MIDDLE_CENTER",
+ "zIndex": 0,
+ "level": 3
},
{
"id": "g.e",
@@ -238,7 +244,6 @@
},
"width": 113,
"height": 126,
- "level": 2,
"opacity": 1,
"strokeDash": 0,
"strokeWidth": 2,
@@ -265,7 +270,9 @@
"underline": false,
"labelWidth": 13,
"labelHeight": 26,
- "labelPosition": "INSIDE_MIDDLE_CENTER"
+ "labelPosition": "INSIDE_MIDDLE_CENTER",
+ "zIndex": 0,
+ "level": 2
},
{
"id": "f",
@@ -276,7 +283,6 @@
},
"width": 111,
"height": 126,
- "level": 1,
"opacity": 1,
"strokeDash": 0,
"strokeWidth": 2,
@@ -303,7 +309,9 @@
"underline": false,
"labelWidth": 11,
"labelHeight": 26,
- "labelPosition": "INSIDE_MIDDLE_CENTER"
+ "labelPosition": "INSIDE_MIDDLE_CENTER",
+ "zIndex": 0,
+ "level": 1
}
],
"connections": [
@@ -352,7 +360,8 @@
"isCurve": true,
"animated": false,
"tooltip": "",
- "icon": null
+ "icon": null,
+ "zIndex": 0
},
{
"id": "(g.b -> d.h.c)[0]",
@@ -411,7 +420,8 @@
"isCurve": true,
"animated": false,
"tooltip": "",
- "icon": null
+ "icon": null,
+ "zIndex": 0
},
{
"id": "(d -> g.e)[0]",
@@ -458,7 +468,8 @@
"isCurve": true,
"animated": false,
"tooltip": "",
- "icon": null
+ "icon": null,
+ "zIndex": 0
},
{
"id": "(g.e -> f)[0]",
@@ -505,7 +516,8 @@
"isCurve": true,
"animated": false,
"tooltip": "",
- "icon": null
+ "icon": null,
+ "zIndex": 0
},
{
"id": "(f -> g)[0]",
@@ -552,7 +564,8 @@
"isCurve": true,
"animated": false,
"tooltip": "",
- "icon": null
+ "icon": null,
+ "zIndex": 0
},
{
"id": "(g -> d.h)[0]",
@@ -599,7 +612,8 @@
"isCurve": true,
"animated": false,
"tooltip": "",
- "icon": null
+ "icon": null,
+ "zIndex": 0
}
]
}
diff --git a/e2etests/testdata/stable/container_edges/elk/board.exp.json b/e2etests/testdata/stable/container_edges/elk/board.exp.json
index eff0f69f1..646780050 100644
--- a/e2etests/testdata/stable/container_edges/elk/board.exp.json
+++ b/e2etests/testdata/stable/container_edges/elk/board.exp.json
@@ -10,7 +10,6 @@
},
"width": 113,
"height": 126,
- "level": 1,
"opacity": 1,
"strokeDash": 0,
"strokeWidth": 2,
@@ -37,7 +36,9 @@
"underline": false,
"labelWidth": 13,
"labelHeight": 26,
- "labelPosition": "INSIDE_MIDDLE_CENTER"
+ "labelPosition": "INSIDE_MIDDLE_CENTER",
+ "zIndex": 0,
+ "level": 1
},
{
"id": "g",
@@ -48,7 +49,6 @@
},
"width": 396,
"height": 276,
- "level": 1,
"opacity": 1,
"strokeDash": 0,
"strokeWidth": 2,
@@ -75,7 +75,9 @@
"underline": false,
"labelWidth": 18,
"labelHeight": 41,
- "labelPosition": "INSIDE_TOP_CENTER"
+ "labelPosition": "INSIDE_TOP_CENTER",
+ "zIndex": 0,
+ "level": 1
},
{
"id": "g.b",
@@ -86,7 +88,6 @@
},
"width": 113,
"height": 126,
- "level": 2,
"opacity": 1,
"strokeDash": 0,
"strokeWidth": 2,
@@ -113,7 +114,9 @@
"underline": false,
"labelWidth": 13,
"labelHeight": 26,
- "labelPosition": "INSIDE_MIDDLE_CENTER"
+ "labelPosition": "INSIDE_MIDDLE_CENTER",
+ "zIndex": 0,
+ "level": 2
},
{
"id": "d",
@@ -124,7 +127,6 @@
},
"width": 413,
"height": 431,
- "level": 1,
"opacity": 1,
"strokeDash": 0,
"strokeWidth": 2,
@@ -151,7 +153,9 @@
"underline": false,
"labelWidth": 18,
"labelHeight": 41,
- "labelPosition": "INSIDE_TOP_CENTER"
+ "labelPosition": "INSIDE_TOP_CENTER",
+ "zIndex": 0,
+ "level": 1
},
{
"id": "d.h",
@@ -162,7 +166,6 @@
},
"width": 263,
"height": 276,
- "level": 2,
"opacity": 1,
"strokeDash": 0,
"strokeWidth": 2,
@@ -189,7 +192,9 @@
"underline": false,
"labelWidth": 16,
"labelHeight": 36,
- "labelPosition": "INSIDE_TOP_CENTER"
+ "labelPosition": "INSIDE_TOP_CENTER",
+ "zIndex": 0,
+ "level": 2
},
{
"id": "d.h.c",
@@ -200,7 +205,6 @@
},
"width": 113,
"height": 126,
- "level": 3,
"opacity": 1,
"strokeDash": 0,
"strokeWidth": 2,
@@ -227,7 +231,9 @@
"underline": false,
"labelWidth": 13,
"labelHeight": 26,
- "labelPosition": "INSIDE_MIDDLE_CENTER"
+ "labelPosition": "INSIDE_MIDDLE_CENTER",
+ "zIndex": 0,
+ "level": 3
},
{
"id": "g.e",
@@ -238,7 +244,6 @@
},
"width": 113,
"height": 126,
- "level": 2,
"opacity": 1,
"strokeDash": 0,
"strokeWidth": 2,
@@ -265,7 +270,9 @@
"underline": false,
"labelWidth": 13,
"labelHeight": 26,
- "labelPosition": "INSIDE_MIDDLE_CENTER"
+ "labelPosition": "INSIDE_MIDDLE_CENTER",
+ "zIndex": 0,
+ "level": 2
},
{
"id": "f",
@@ -276,7 +283,6 @@
},
"width": 111,
"height": 126,
- "level": 1,
"opacity": 1,
"strokeDash": 0,
"strokeWidth": 2,
@@ -303,7 +309,9 @@
"underline": false,
"labelWidth": 11,
"labelHeight": 26,
- "labelPosition": "INSIDE_MIDDLE_CENTER"
+ "labelPosition": "INSIDE_MIDDLE_CENTER",
+ "zIndex": 0,
+ "level": 1
}
],
"connections": [
@@ -343,7 +351,8 @@
],
"animated": false,
"tooltip": "",
- "icon": null
+ "icon": null,
+ "zIndex": 0
},
{
"id": "(g.b -> d.h.c)[0]",
@@ -381,7 +390,8 @@
],
"animated": false,
"tooltip": "",
- "icon": null
+ "icon": null,
+ "zIndex": 0
},
{
"id": "(d -> g.e)[0]",
@@ -435,7 +445,8 @@
],
"animated": false,
"tooltip": "",
- "icon": null
+ "icon": null,
+ "zIndex": 0
},
{
"id": "(g.e -> f)[0]",
@@ -481,7 +492,8 @@
],
"animated": false,
"tooltip": "",
- "icon": null
+ "icon": null,
+ "zIndex": 0
},
{
"id": "(f -> g)[0]",
@@ -527,7 +539,8 @@
],
"animated": false,
"tooltip": "",
- "icon": null
+ "icon": null,
+ "zIndex": 0
},
{
"id": "(g -> d.h)[0]",
@@ -565,7 +578,8 @@
],
"animated": false,
"tooltip": "",
- "icon": null
+ "icon": null,
+ "zIndex": 0
}
]
}
diff --git a/e2etests/testdata/stable/dense/dagre/board.exp.json b/e2etests/testdata/stable/dense/dagre/board.exp.json
index 45e6e5df1..9ad565eb3 100644
--- a/e2etests/testdata/stable/dense/dagre/board.exp.json
+++ b/e2etests/testdata/stable/dense/dagre/board.exp.json
@@ -10,7 +10,6 @@
},
"width": 113,
"height": 126,
- "level": 1,
"opacity": 1,
"strokeDash": 0,
"strokeWidth": 2,
@@ -37,7 +36,9 @@
"underline": false,
"labelWidth": 13,
"labelHeight": 26,
- "labelPosition": "INSIDE_MIDDLE_CENTER"
+ "labelPosition": "INSIDE_MIDDLE_CENTER",
+ "zIndex": 0,
+ "level": 1
},
{
"id": "b",
@@ -48,7 +49,6 @@
},
"width": 113,
"height": 126,
- "level": 1,
"opacity": 1,
"strokeDash": 0,
"strokeWidth": 2,
@@ -75,7 +75,9 @@
"underline": false,
"labelWidth": 13,
"labelHeight": 26,
- "labelPosition": "INSIDE_MIDDLE_CENTER"
+ "labelPosition": "INSIDE_MIDDLE_CENTER",
+ "zIndex": 0,
+ "level": 1
},
{
"id": "c",
@@ -86,7 +88,6 @@
},
"width": 113,
"height": 126,
- "level": 1,
"opacity": 1,
"strokeDash": 0,
"strokeWidth": 2,
@@ -113,7 +114,9 @@
"underline": false,
"labelWidth": 13,
"labelHeight": 26,
- "labelPosition": "INSIDE_MIDDLE_CENTER"
+ "labelPosition": "INSIDE_MIDDLE_CENTER",
+ "zIndex": 0,
+ "level": 1
},
{
"id": "d",
@@ -124,7 +127,6 @@
},
"width": 114,
"height": 126,
- "level": 1,
"opacity": 1,
"strokeDash": 0,
"strokeWidth": 2,
@@ -151,7 +153,9 @@
"underline": false,
"labelWidth": 14,
"labelHeight": 26,
- "labelPosition": "INSIDE_MIDDLE_CENTER"
+ "labelPosition": "INSIDE_MIDDLE_CENTER",
+ "zIndex": 0,
+ "level": 1
},
{
"id": "e",
@@ -162,7 +166,6 @@
},
"width": 113,
"height": 126,
- "level": 1,
"opacity": 1,
"strokeDash": 0,
"strokeWidth": 2,
@@ -189,7 +192,9 @@
"underline": false,
"labelWidth": 13,
"labelHeight": 26,
- "labelPosition": "INSIDE_MIDDLE_CENTER"
+ "labelPosition": "INSIDE_MIDDLE_CENTER",
+ "zIndex": 0,
+ "level": 1
},
{
"id": "f",
@@ -200,7 +205,6 @@
},
"width": 111,
"height": 126,
- "level": 1,
"opacity": 1,
"strokeDash": 0,
"strokeWidth": 2,
@@ -227,7 +231,9 @@
"underline": false,
"labelWidth": 11,
"labelHeight": 26,
- "labelPosition": "INSIDE_MIDDLE_CENTER"
+ "labelPosition": "INSIDE_MIDDLE_CENTER",
+ "zIndex": 0,
+ "level": 1
},
{
"id": "g",
@@ -238,7 +244,6 @@
},
"width": 114,
"height": 126,
- "level": 1,
"opacity": 1,
"strokeDash": 0,
"strokeWidth": 2,
@@ -265,7 +270,9 @@
"underline": false,
"labelWidth": 14,
"labelHeight": 26,
- "labelPosition": "INSIDE_MIDDLE_CENTER"
+ "labelPosition": "INSIDE_MIDDLE_CENTER",
+ "zIndex": 0,
+ "level": 1
},
{
"id": "h",
@@ -276,7 +283,6 @@
},
"width": 113,
"height": 126,
- "level": 1,
"opacity": 1,
"strokeDash": 0,
"strokeWidth": 2,
@@ -303,7 +309,9 @@
"underline": false,
"labelWidth": 13,
"labelHeight": 26,
- "labelPosition": "INSIDE_MIDDLE_CENTER"
+ "labelPosition": "INSIDE_MIDDLE_CENTER",
+ "zIndex": 0,
+ "level": 1
},
{
"id": "i",
@@ -314,7 +322,6 @@
},
"width": 109,
"height": 126,
- "level": 1,
"opacity": 1,
"strokeDash": 0,
"strokeWidth": 2,
@@ -341,7 +348,9 @@
"underline": false,
"labelWidth": 9,
"labelHeight": 26,
- "labelPosition": "INSIDE_MIDDLE_CENTER"
+ "labelPosition": "INSIDE_MIDDLE_CENTER",
+ "zIndex": 0,
+ "level": 1
},
{
"id": "j",
@@ -352,7 +361,6 @@
},
"width": 110,
"height": 126,
- "level": 1,
"opacity": 1,
"strokeDash": 0,
"strokeWidth": 2,
@@ -379,7 +387,9 @@
"underline": false,
"labelWidth": 10,
"labelHeight": 26,
- "labelPosition": "INSIDE_MIDDLE_CENTER"
+ "labelPosition": "INSIDE_MIDDLE_CENTER",
+ "zIndex": 0,
+ "level": 1
},
{
"id": "k",
@@ -390,7 +400,6 @@
},
"width": 113,
"height": 126,
- "level": 1,
"opacity": 1,
"strokeDash": 0,
"strokeWidth": 2,
@@ -417,7 +426,9 @@
"underline": false,
"labelWidth": 13,
"labelHeight": 26,
- "labelPosition": "INSIDE_MIDDLE_CENTER"
+ "labelPosition": "INSIDE_MIDDLE_CENTER",
+ "zIndex": 0,
+ "level": 1
},
{
"id": "l",
@@ -428,7 +439,6 @@
},
"width": 109,
"height": 126,
- "level": 1,
"opacity": 1,
"strokeDash": 0,
"strokeWidth": 2,
@@ -455,7 +465,9 @@
"underline": false,
"labelWidth": 9,
"labelHeight": 26,
- "labelPosition": "INSIDE_MIDDLE_CENTER"
+ "labelPosition": "INSIDE_MIDDLE_CENTER",
+ "zIndex": 0,
+ "level": 1
},
{
"id": "m",
@@ -466,7 +478,6 @@
},
"width": 117,
"height": 126,
- "level": 1,
"opacity": 1,
"strokeDash": 0,
"strokeWidth": 2,
@@ -493,7 +504,9 @@
"underline": false,
"labelWidth": 17,
"labelHeight": 26,
- "labelPosition": "INSIDE_MIDDLE_CENTER"
+ "labelPosition": "INSIDE_MIDDLE_CENTER",
+ "zIndex": 0,
+ "level": 1
},
{
"id": "n",
@@ -504,7 +517,6 @@
},
"width": 113,
"height": 126,
- "level": 1,
"opacity": 1,
"strokeDash": 0,
"strokeWidth": 2,
@@ -531,7 +543,9 @@
"underline": false,
"labelWidth": 13,
"labelHeight": 26,
- "labelPosition": "INSIDE_MIDDLE_CENTER"
+ "labelPosition": "INSIDE_MIDDLE_CENTER",
+ "zIndex": 0,
+ "level": 1
},
{
"id": "o",
@@ -542,7 +556,6 @@
},
"width": 114,
"height": 126,
- "level": 1,
"opacity": 1,
"strokeDash": 0,
"strokeWidth": 2,
@@ -569,7 +582,9 @@
"underline": false,
"labelWidth": 14,
"labelHeight": 26,
- "labelPosition": "INSIDE_MIDDLE_CENTER"
+ "labelPosition": "INSIDE_MIDDLE_CENTER",
+ "zIndex": 0,
+ "level": 1
},
{
"id": "p",
@@ -580,7 +595,6 @@
},
"width": 113,
"height": 126,
- "level": 1,
"opacity": 1,
"strokeDash": 0,
"strokeWidth": 2,
@@ -607,7 +621,9 @@
"underline": false,
"labelWidth": 13,
"labelHeight": 26,
- "labelPosition": "INSIDE_MIDDLE_CENTER"
+ "labelPosition": "INSIDE_MIDDLE_CENTER",
+ "zIndex": 0,
+ "level": 1
},
{
"id": "q",
@@ -618,7 +634,6 @@
},
"width": 114,
"height": 126,
- "level": 1,
"opacity": 1,
"strokeDash": 0,
"strokeWidth": 2,
@@ -645,7 +660,9 @@
"underline": false,
"labelWidth": 14,
"labelHeight": 26,
- "labelPosition": "INSIDE_MIDDLE_CENTER"
+ "labelPosition": "INSIDE_MIDDLE_CENTER",
+ "zIndex": 0,
+ "level": 1
}
],
"connections": [
@@ -694,7 +711,8 @@
"isCurve": true,
"animated": false,
"tooltip": "",
- "icon": null
+ "icon": null,
+ "zIndex": 0
},
{
"id": "(c -> b)[0]",
@@ -753,7 +771,8 @@
"isCurve": true,
"animated": false,
"tooltip": "",
- "icon": null
+ "icon": null,
+ "zIndex": 0
},
{
"id": "(d -> e)[0]",
@@ -812,7 +831,8 @@
"isCurve": true,
"animated": false,
"tooltip": "",
- "icon": null
+ "icon": null,
+ "zIndex": 0
},
{
"id": "(f -> e)[0]",
@@ -871,7 +891,8 @@
"isCurve": true,
"animated": false,
"tooltip": "",
- "icon": null
+ "icon": null,
+ "zIndex": 0
},
{
"id": "(b -> f)[0]",
@@ -930,7 +951,8 @@
"isCurve": true,
"animated": false,
"tooltip": "",
- "icon": null
+ "icon": null,
+ "zIndex": 0
},
{
"id": "(b -> g)[0]",
@@ -977,7 +999,8 @@
"isCurve": true,
"animated": false,
"tooltip": "",
- "icon": null
+ "icon": null,
+ "zIndex": 0
},
{
"id": "(g -> f)[0]",
@@ -1024,7 +1047,8 @@
"isCurve": true,
"animated": false,
"tooltip": "",
- "icon": null
+ "icon": null,
+ "zIndex": 0
},
{
"id": "(b -> h)[0]",
@@ -1071,7 +1095,8 @@
"isCurve": true,
"animated": false,
"tooltip": "",
- "icon": null
+ "icon": null,
+ "zIndex": 0
},
{
"id": "(b -> i)[0]",
@@ -1178,7 +1203,8 @@
"isCurve": true,
"animated": false,
"tooltip": "",
- "icon": null
+ "icon": null,
+ "zIndex": 0
},
{
"id": "(b -> d)[0]",
@@ -1237,7 +1263,8 @@
"isCurve": true,
"animated": false,
"tooltip": "",
- "icon": null
+ "icon": null,
+ "zIndex": 0
},
{
"id": "(j -> c)[0]",
@@ -1284,7 +1311,8 @@
"isCurve": true,
"animated": false,
"tooltip": "",
- "icon": null
+ "icon": null,
+ "zIndex": 0
},
{
"id": "(j -> a)[0]",
@@ -1343,7 +1371,8 @@
"isCurve": true,
"animated": false,
"tooltip": "",
- "icon": null
+ "icon": null,
+ "zIndex": 0
},
{
"id": "(b -> j)[0]",
@@ -1390,7 +1419,8 @@
"isCurve": true,
"animated": false,
"tooltip": "",
- "icon": null
+ "icon": null,
+ "zIndex": 0
},
{
"id": "(i -> k)[0]",
@@ -1437,7 +1467,8 @@
"isCurve": true,
"animated": false,
"tooltip": "",
- "icon": null
+ "icon": null,
+ "zIndex": 0
},
{
"id": "(d -> l)[0]",
@@ -1484,7 +1515,8 @@
"isCurve": true,
"animated": false,
"tooltip": "",
- "icon": null
+ "icon": null,
+ "zIndex": 0
},
{
"id": "(l -> e)[0]",
@@ -1531,7 +1563,8 @@
"isCurve": true,
"animated": false,
"tooltip": "",
- "icon": null
+ "icon": null,
+ "zIndex": 0
},
{
"id": "(m -> l)[0]",
@@ -1578,7 +1611,8 @@
"isCurve": true,
"animated": false,
"tooltip": "",
- "icon": null
+ "icon": null,
+ "zIndex": 0
},
{
"id": "(m -> n)[0]",
@@ -1625,7 +1659,8 @@
"isCurve": true,
"animated": false,
"tooltip": "",
- "icon": null
+ "icon": null,
+ "zIndex": 0
},
{
"id": "(n -> i)[0]",
@@ -1672,7 +1707,8 @@
"isCurve": true,
"animated": false,
"tooltip": "",
- "icon": null
+ "icon": null,
+ "zIndex": 0
},
{
"id": "(d -> n)[0]",
@@ -1719,7 +1755,8 @@
"isCurve": true,
"animated": false,
"tooltip": "",
- "icon": null
+ "icon": null,
+ "zIndex": 0
},
{
"id": "(f -> n)[0]",
@@ -1766,7 +1803,8 @@
"isCurve": true,
"animated": false,
"tooltip": "",
- "icon": null
+ "icon": null,
+ "zIndex": 0
},
{
"id": "(b -> o)[0]",
@@ -1813,7 +1851,8 @@
"isCurve": true,
"animated": false,
"tooltip": "",
- "icon": null
+ "icon": null,
+ "zIndex": 0
},
{
"id": "(p -> l)[0]",
@@ -1860,7 +1899,8 @@
"isCurve": true,
"animated": false,
"tooltip": "",
- "icon": null
+ "icon": null,
+ "zIndex": 0
},
{
"id": "(e -> q)[0]",
@@ -1907,7 +1947,8 @@
"isCurve": true,
"animated": false,
"tooltip": "",
- "icon": null
+ "icon": null,
+ "zIndex": 0
}
]
}
diff --git a/e2etests/testdata/stable/dense/elk/board.exp.json b/e2etests/testdata/stable/dense/elk/board.exp.json
index d9c745b45..8c8866ecc 100644
--- a/e2etests/testdata/stable/dense/elk/board.exp.json
+++ b/e2etests/testdata/stable/dense/elk/board.exp.json
@@ -10,7 +10,6 @@
},
"width": 113,
"height": 126,
- "level": 1,
"opacity": 1,
"strokeDash": 0,
"strokeWidth": 2,
@@ -37,7 +36,9 @@
"underline": false,
"labelWidth": 13,
"labelHeight": 26,
- "labelPosition": "INSIDE_MIDDLE_CENTER"
+ "labelPosition": "INSIDE_MIDDLE_CENTER",
+ "zIndex": 0,
+ "level": 1
},
{
"id": "b",
@@ -48,7 +49,6 @@
},
"width": 113,
"height": 126,
- "level": 1,
"opacity": 1,
"strokeDash": 0,
"strokeWidth": 2,
@@ -75,7 +75,9 @@
"underline": false,
"labelWidth": 13,
"labelHeight": 26,
- "labelPosition": "INSIDE_MIDDLE_CENTER"
+ "labelPosition": "INSIDE_MIDDLE_CENTER",
+ "zIndex": 0,
+ "level": 1
},
{
"id": "c",
@@ -86,7 +88,6 @@
},
"width": 113,
"height": 126,
- "level": 1,
"opacity": 1,
"strokeDash": 0,
"strokeWidth": 2,
@@ -113,7 +114,9 @@
"underline": false,
"labelWidth": 13,
"labelHeight": 26,
- "labelPosition": "INSIDE_MIDDLE_CENTER"
+ "labelPosition": "INSIDE_MIDDLE_CENTER",
+ "zIndex": 0,
+ "level": 1
},
{
"id": "d",
@@ -124,7 +127,6 @@
},
"width": 114,
"height": 126,
- "level": 1,
"opacity": 1,
"strokeDash": 0,
"strokeWidth": 2,
@@ -151,7 +153,9 @@
"underline": false,
"labelWidth": 14,
"labelHeight": 26,
- "labelPosition": "INSIDE_MIDDLE_CENTER"
+ "labelPosition": "INSIDE_MIDDLE_CENTER",
+ "zIndex": 0,
+ "level": 1
},
{
"id": "e",
@@ -162,7 +166,6 @@
},
"width": 113,
"height": 126,
- "level": 1,
"opacity": 1,
"strokeDash": 0,
"strokeWidth": 2,
@@ -189,7 +192,9 @@
"underline": false,
"labelWidth": 13,
"labelHeight": 26,
- "labelPosition": "INSIDE_MIDDLE_CENTER"
+ "labelPosition": "INSIDE_MIDDLE_CENTER",
+ "zIndex": 0,
+ "level": 1
},
{
"id": "f",
@@ -200,7 +205,6 @@
},
"width": 111,
"height": 126,
- "level": 1,
"opacity": 1,
"strokeDash": 0,
"strokeWidth": 2,
@@ -227,7 +231,9 @@
"underline": false,
"labelWidth": 11,
"labelHeight": 26,
- "labelPosition": "INSIDE_MIDDLE_CENTER"
+ "labelPosition": "INSIDE_MIDDLE_CENTER",
+ "zIndex": 0,
+ "level": 1
},
{
"id": "g",
@@ -238,7 +244,6 @@
},
"width": 114,
"height": 126,
- "level": 1,
"opacity": 1,
"strokeDash": 0,
"strokeWidth": 2,
@@ -265,7 +270,9 @@
"underline": false,
"labelWidth": 14,
"labelHeight": 26,
- "labelPosition": "INSIDE_MIDDLE_CENTER"
+ "labelPosition": "INSIDE_MIDDLE_CENTER",
+ "zIndex": 0,
+ "level": 1
},
{
"id": "h",
@@ -276,7 +283,6 @@
},
"width": 113,
"height": 126,
- "level": 1,
"opacity": 1,
"strokeDash": 0,
"strokeWidth": 2,
@@ -303,7 +309,9 @@
"underline": false,
"labelWidth": 13,
"labelHeight": 26,
- "labelPosition": "INSIDE_MIDDLE_CENTER"
+ "labelPosition": "INSIDE_MIDDLE_CENTER",
+ "zIndex": 0,
+ "level": 1
},
{
"id": "i",
@@ -314,7 +322,6 @@
},
"width": 109,
"height": 126,
- "level": 1,
"opacity": 1,
"strokeDash": 0,
"strokeWidth": 2,
@@ -341,7 +348,9 @@
"underline": false,
"labelWidth": 9,
"labelHeight": 26,
- "labelPosition": "INSIDE_MIDDLE_CENTER"
+ "labelPosition": "INSIDE_MIDDLE_CENTER",
+ "zIndex": 0,
+ "level": 1
},
{
"id": "j",
@@ -352,7 +361,6 @@
},
"width": 110,
"height": 126,
- "level": 1,
"opacity": 1,
"strokeDash": 0,
"strokeWidth": 2,
@@ -379,7 +387,9 @@
"underline": false,
"labelWidth": 10,
"labelHeight": 26,
- "labelPosition": "INSIDE_MIDDLE_CENTER"
+ "labelPosition": "INSIDE_MIDDLE_CENTER",
+ "zIndex": 0,
+ "level": 1
},
{
"id": "k",
@@ -390,7 +400,6 @@
},
"width": 113,
"height": 126,
- "level": 1,
"opacity": 1,
"strokeDash": 0,
"strokeWidth": 2,
@@ -417,7 +426,9 @@
"underline": false,
"labelWidth": 13,
"labelHeight": 26,
- "labelPosition": "INSIDE_MIDDLE_CENTER"
+ "labelPosition": "INSIDE_MIDDLE_CENTER",
+ "zIndex": 0,
+ "level": 1
},
{
"id": "l",
@@ -428,7 +439,6 @@
},
"width": 109,
"height": 126,
- "level": 1,
"opacity": 1,
"strokeDash": 0,
"strokeWidth": 2,
@@ -455,7 +465,9 @@
"underline": false,
"labelWidth": 9,
"labelHeight": 26,
- "labelPosition": "INSIDE_MIDDLE_CENTER"
+ "labelPosition": "INSIDE_MIDDLE_CENTER",
+ "zIndex": 0,
+ "level": 1
},
{
"id": "m",
@@ -466,7 +478,6 @@
},
"width": 117,
"height": 126,
- "level": 1,
"opacity": 1,
"strokeDash": 0,
"strokeWidth": 2,
@@ -493,7 +504,9 @@
"underline": false,
"labelWidth": 17,
"labelHeight": 26,
- "labelPosition": "INSIDE_MIDDLE_CENTER"
+ "labelPosition": "INSIDE_MIDDLE_CENTER",
+ "zIndex": 0,
+ "level": 1
},
{
"id": "n",
@@ -504,7 +517,6 @@
},
"width": 113,
"height": 126,
- "level": 1,
"opacity": 1,
"strokeDash": 0,
"strokeWidth": 2,
@@ -531,7 +543,9 @@
"underline": false,
"labelWidth": 13,
"labelHeight": 26,
- "labelPosition": "INSIDE_MIDDLE_CENTER"
+ "labelPosition": "INSIDE_MIDDLE_CENTER",
+ "zIndex": 0,
+ "level": 1
},
{
"id": "o",
@@ -542,7 +556,6 @@
},
"width": 114,
"height": 126,
- "level": 1,
"opacity": 1,
"strokeDash": 0,
"strokeWidth": 2,
@@ -569,7 +582,9 @@
"underline": false,
"labelWidth": 14,
"labelHeight": 26,
- "labelPosition": "INSIDE_MIDDLE_CENTER"
+ "labelPosition": "INSIDE_MIDDLE_CENTER",
+ "zIndex": 0,
+ "level": 1
},
{
"id": "p",
@@ -580,7 +595,6 @@
},
"width": 113,
"height": 126,
- "level": 1,
"opacity": 1,
"strokeDash": 0,
"strokeWidth": 2,
@@ -607,7 +621,9 @@
"underline": false,
"labelWidth": 13,
"labelHeight": 26,
- "labelPosition": "INSIDE_MIDDLE_CENTER"
+ "labelPosition": "INSIDE_MIDDLE_CENTER",
+ "zIndex": 0,
+ "level": 1
},
{
"id": "q",
@@ -618,7 +634,6 @@
},
"width": 114,
"height": 126,
- "level": 1,
"opacity": 1,
"strokeDash": 0,
"strokeWidth": 2,
@@ -645,7 +660,9 @@
"underline": false,
"labelWidth": 14,
"labelHeight": 26,
- "labelPosition": "INSIDE_MIDDLE_CENTER"
+ "labelPosition": "INSIDE_MIDDLE_CENTER",
+ "zIndex": 0,
+ "level": 1
}
],
"connections": [
@@ -685,7 +702,8 @@
],
"animated": false,
"tooltip": "",
- "icon": null
+ "icon": null,
+ "zIndex": 0
},
{
"id": "(c -> b)[0]",
@@ -731,7 +749,8 @@
],
"animated": false,
"tooltip": "",
- "icon": null
+ "icon": null,
+ "zIndex": 0
},
{
"id": "(d -> e)[0]",
@@ -777,7 +796,8 @@
],
"animated": false,
"tooltip": "",
- "icon": null
+ "icon": null,
+ "zIndex": 0
},
{
"id": "(f -> e)[0]",
@@ -823,7 +843,8 @@
],
"animated": false,
"tooltip": "",
- "icon": null
+ "icon": null,
+ "zIndex": 0
},
{
"id": "(b -> f)[0]",
@@ -869,7 +890,8 @@
],
"animated": false,
"tooltip": "",
- "icon": null
+ "icon": null,
+ "zIndex": 0
},
{
"id": "(b -> g)[0]",
@@ -915,7 +937,8 @@
],
"animated": false,
"tooltip": "",
- "icon": null
+ "icon": null,
+ "zIndex": 0
},
{
"id": "(g -> f)[0]",
@@ -961,7 +984,8 @@
],
"animated": false,
"tooltip": "",
- "icon": null
+ "icon": null,
+ "zIndex": 0
},
{
"id": "(b -> h)[0]",
@@ -1007,7 +1031,8 @@
],
"animated": false,
"tooltip": "",
- "icon": null
+ "icon": null,
+ "zIndex": 0
},
{
"id": "(b -> i)[0]",
@@ -1061,7 +1086,8 @@
],
"animated": false,
"tooltip": "",
- "icon": null
+ "icon": null,
+ "zIndex": 0
},
{
"id": "(b -> d)[0]",
@@ -1099,7 +1125,8 @@
],
"animated": false,
"tooltip": "",
- "icon": null
+ "icon": null,
+ "zIndex": 0
},
{
"id": "(j -> c)[0]",
@@ -1137,7 +1164,8 @@
],
"animated": false,
"tooltip": "",
- "icon": null
+ "icon": null,
+ "zIndex": 0
},
{
"id": "(j -> a)[0]",
@@ -1183,7 +1211,8 @@
],
"animated": false,
"tooltip": "",
- "icon": null
+ "icon": null,
+ "zIndex": 0
},
{
"id": "(b -> j)[0]",
@@ -1237,7 +1266,8 @@
],
"animated": false,
"tooltip": "",
- "icon": null
+ "icon": null,
+ "zIndex": 0
},
{
"id": "(i -> k)[0]",
@@ -1275,7 +1305,8 @@
],
"animated": false,
"tooltip": "",
- "icon": null
+ "icon": null,
+ "zIndex": 0
},
{
"id": "(d -> l)[0]",
@@ -1321,7 +1352,8 @@
],
"animated": false,
"tooltip": "",
- "icon": null
+ "icon": null,
+ "zIndex": 0
},
{
"id": "(l -> e)[0]",
@@ -1367,7 +1399,8 @@
],
"animated": false,
"tooltip": "",
- "icon": null
+ "icon": null,
+ "zIndex": 0
},
{
"id": "(m -> l)[0]",
@@ -1413,7 +1446,8 @@
],
"animated": false,
"tooltip": "",
- "icon": null
+ "icon": null,
+ "zIndex": 0
},
{
"id": "(m -> n)[0]",
@@ -1459,7 +1493,8 @@
],
"animated": false,
"tooltip": "",
- "icon": null
+ "icon": null,
+ "zIndex": 0
},
{
"id": "(n -> i)[0]",
@@ -1497,7 +1532,8 @@
],
"animated": false,
"tooltip": "",
- "icon": null
+ "icon": null,
+ "zIndex": 0
},
{
"id": "(d -> n)[0]",
@@ -1535,7 +1571,8 @@
],
"animated": false,
"tooltip": "",
- "icon": null
+ "icon": null,
+ "zIndex": 0
},
{
"id": "(f -> n)[0]",
@@ -1581,7 +1618,8 @@
],
"animated": false,
"tooltip": "",
- "icon": null
+ "icon": null,
+ "zIndex": 0
},
{
"id": "(b -> o)[0]",
@@ -1627,7 +1665,8 @@
],
"animated": false,
"tooltip": "",
- "icon": null
+ "icon": null,
+ "zIndex": 0
},
{
"id": "(p -> l)[0]",
@@ -1665,7 +1704,8 @@
],
"animated": false,
"tooltip": "",
- "icon": null
+ "icon": null,
+ "zIndex": 0
},
{
"id": "(e -> q)[0]",
@@ -1703,7 +1743,8 @@
],
"animated": false,
"tooltip": "",
- "icon": null
+ "icon": null,
+ "zIndex": 0
}
]
}
diff --git a/e2etests/testdata/stable/different_subgraphs/dagre/board.exp.json b/e2etests/testdata/stable/different_subgraphs/dagre/board.exp.json
index d5ef295bb..1019e206f 100644
--- a/e2etests/testdata/stable/different_subgraphs/dagre/board.exp.json
+++ b/e2etests/testdata/stable/different_subgraphs/dagre/board.exp.json
@@ -10,7 +10,6 @@
},
"width": 465,
"height": 904,
- "level": 1,
"opacity": 1,
"strokeDash": 0,
"strokeWidth": 2,
@@ -37,7 +36,9 @@
"underline": false,
"labelWidth": 77,
"labelHeight": 41,
- "labelPosition": "INSIDE_TOP_CENTER"
+ "labelPosition": "INSIDE_TOP_CENTER",
+ "zIndex": 0,
+ "level": 1
},
{
"id": "a",
@@ -48,7 +49,6 @@
},
"width": 113,
"height": 126,
- "level": 1,
"opacity": 1,
"strokeDash": 0,
"strokeWidth": 2,
@@ -75,7 +75,9 @@
"underline": false,
"labelWidth": 13,
"labelHeight": 26,
- "labelPosition": "INSIDE_MIDDLE_CENTER"
+ "labelPosition": "INSIDE_MIDDLE_CENTER",
+ "zIndex": 0,
+ "level": 1
},
{
"id": "tree",
@@ -86,7 +88,6 @@
},
"width": 134,
"height": 126,
- "level": 1,
"opacity": 1,
"strokeDash": 0,
"strokeWidth": 2,
@@ -113,7 +114,9 @@
"underline": false,
"labelWidth": 34,
"labelHeight": 26,
- "labelPosition": "INSIDE_MIDDLE_CENTER"
+ "labelPosition": "INSIDE_MIDDLE_CENTER",
+ "zIndex": 0,
+ "level": 1
},
{
"id": "and",
@@ -124,7 +127,6 @@
},
"width": 132,
"height": 126,
- "level": 1,
"opacity": 1,
"strokeDash": 0,
"strokeWidth": 2,
@@ -151,7 +153,9 @@
"underline": false,
"labelWidth": 32,
"labelHeight": 26,
- "labelPosition": "INSIDE_MIDDLE_CENTER"
+ "labelPosition": "INSIDE_MIDDLE_CENTER",
+ "zIndex": 0,
+ "level": 1
},
{
"id": "nodes",
@@ -162,7 +166,6 @@
},
"width": 147,
"height": 126,
- "level": 1,
"opacity": 1,
"strokeDash": 0,
"strokeWidth": 2,
@@ -189,7 +192,9 @@
"underline": false,
"labelWidth": 47,
"labelHeight": 26,
- "labelPosition": "INSIDE_MIDDLE_CENTER"
+ "labelPosition": "INSIDE_MIDDLE_CENTER",
+ "zIndex": 0,
+ "level": 1
},
{
"id": "some",
@@ -200,7 +205,6 @@
},
"width": 143,
"height": 126,
- "level": 1,
"opacity": 1,
"strokeDash": 0,
"strokeWidth": 2,
@@ -227,7 +231,9 @@
"underline": false,
"labelWidth": 43,
"labelHeight": 26,
- "labelPosition": "INSIDE_MIDDLE_CENTER"
+ "labelPosition": "INSIDE_MIDDLE_CENTER",
+ "zIndex": 0,
+ "level": 1
},
{
"id": "more",
@@ -238,7 +244,6 @@
},
"width": 141,
"height": 126,
- "level": 1,
"opacity": 1,
"strokeDash": 0,
"strokeWidth": 2,
@@ -265,7 +270,9 @@
"underline": false,
"labelWidth": 41,
"labelHeight": 26,
- "labelPosition": "INSIDE_MIDDLE_CENTER"
+ "labelPosition": "INSIDE_MIDDLE_CENTER",
+ "zIndex": 0,
+ "level": 1
},
{
"id": "many",
@@ -276,7 +283,6 @@
},
"width": 145,
"height": 126,
- "level": 1,
"opacity": 1,
"strokeDash": 0,
"strokeWidth": 2,
@@ -303,7 +309,9 @@
"underline": false,
"labelWidth": 45,
"labelHeight": 26,
- "labelPosition": "INSIDE_MIDDLE_CENTER"
+ "labelPosition": "INSIDE_MIDDLE_CENTER",
+ "zIndex": 0,
+ "level": 1
},
{
"id": "then",
@@ -314,7 +322,6 @@
},
"width": 138,
"height": 126,
- "level": 1,
"opacity": 1,
"strokeDash": 0,
"strokeWidth": 2,
@@ -341,7 +348,9 @@
"underline": false,
"labelWidth": 38,
"labelHeight": 26,
- "labelPosition": "INSIDE_MIDDLE_CENTER"
+ "labelPosition": "INSIDE_MIDDLE_CENTER",
+ "zIndex": 0,
+ "level": 1
},
{
"id": "here",
@@ -352,7 +361,6 @@
},
"width": 136,
"height": 126,
- "level": 1,
"opacity": 1,
"strokeDash": 0,
"strokeWidth": 2,
@@ -379,7 +387,9 @@
"underline": false,
"labelWidth": 36,
"labelHeight": 26,
- "labelPosition": "INSIDE_MIDDLE_CENTER"
+ "labelPosition": "INSIDE_MIDDLE_CENTER",
+ "zIndex": 0,
+ "level": 1
},
{
"id": "you",
@@ -390,7 +400,6 @@
},
"width": 132,
"height": 126,
- "level": 1,
"opacity": 1,
"strokeDash": 0,
"strokeWidth": 2,
@@ -417,7 +426,9 @@
"underline": false,
"labelWidth": 32,
"labelHeight": 26,
- "labelPosition": "INSIDE_MIDDLE_CENTER"
+ "labelPosition": "INSIDE_MIDDLE_CENTER",
+ "zIndex": 0,
+ "level": 1
},
{
"id": "have",
@@ -428,7 +439,6 @@
},
"width": 138,
"height": 126,
- "level": 1,
"opacity": 1,
"strokeDash": 0,
"strokeWidth": 2,
@@ -455,7 +465,9 @@
"underline": false,
"labelWidth": 38,
"labelHeight": 26,
- "labelPosition": "INSIDE_MIDDLE_CENTER"
+ "labelPosition": "INSIDE_MIDDLE_CENTER",
+ "zIndex": 0,
+ "level": 1
},
{
"id": "hierarchy",
@@ -466,7 +478,6 @@
},
"width": 173,
"height": 126,
- "level": 1,
"opacity": 1,
"strokeDash": 0,
"strokeWidth": 2,
@@ -493,7 +504,9 @@
"underline": false,
"labelWidth": 73,
"labelHeight": 26,
- "labelPosition": "INSIDE_MIDDLE_CENTER"
+ "labelPosition": "INSIDE_MIDDLE_CENTER",
+ "zIndex": 0,
+ "level": 1
},
{
"id": "another",
@@ -504,7 +517,6 @@
},
"width": 163,
"height": 126,
- "level": 1,
"opacity": 1,
"strokeDash": 0,
"strokeWidth": 2,
@@ -531,7 +543,9 @@
"underline": false,
"labelWidth": 63,
"labelHeight": 26,
- "labelPosition": "INSIDE_MIDDLE_CENTER"
+ "labelPosition": "INSIDE_MIDDLE_CENTER",
+ "zIndex": 0,
+ "level": 1
},
{
"id": "of",
@@ -542,7 +556,6 @@
},
"width": 120,
"height": 126,
- "level": 1,
"opacity": 1,
"strokeDash": 0,
"strokeWidth": 2,
@@ -569,7 +582,9 @@
"underline": false,
"labelWidth": 20,
"labelHeight": 26,
- "labelPosition": "INSIDE_MIDDLE_CENTER"
+ "labelPosition": "INSIDE_MIDDLE_CENTER",
+ "zIndex": 0,
+ "level": 1
},
{
"id": "nesting",
@@ -580,7 +595,6 @@
},
"width": 158,
"height": 126,
- "level": 1,
"opacity": 1,
"strokeDash": 0,
"strokeWidth": 2,
@@ -607,7 +621,9 @@
"underline": false,
"labelWidth": 58,
"labelHeight": 26,
- "labelPosition": "INSIDE_MIDDLE_CENTER"
+ "labelPosition": "INSIDE_MIDDLE_CENTER",
+ "zIndex": 0,
+ "level": 1
},
{
"id": "trees",
@@ -618,7 +634,6 @@
},
"width": 142,
"height": 126,
- "level": 1,
"opacity": 1,
"strokeDash": 0,
"strokeWidth": 2,
@@ -645,7 +660,9 @@
"underline": false,
"labelWidth": 42,
"labelHeight": 26,
- "labelPosition": "INSIDE_MIDDLE_CENTER"
+ "labelPosition": "INSIDE_MIDDLE_CENTER",
+ "zIndex": 0,
+ "level": 1
},
{
"id": "finally.a",
@@ -656,7 +673,6 @@
},
"width": 113,
"height": 126,
- "level": 2,
"opacity": 1,
"strokeDash": 0,
"strokeWidth": 2,
@@ -683,7 +699,9 @@
"underline": false,
"labelWidth": 13,
"labelHeight": 26,
- "labelPosition": "INSIDE_MIDDLE_CENTER"
+ "labelPosition": "INSIDE_MIDDLE_CENTER",
+ "zIndex": 0,
+ "level": 2
},
{
"id": "finally.tree",
@@ -694,7 +712,6 @@
},
"width": 134,
"height": 126,
- "level": 2,
"opacity": 1,
"strokeDash": 0,
"strokeWidth": 2,
@@ -721,7 +738,9 @@
"underline": false,
"labelWidth": 34,
"labelHeight": 26,
- "labelPosition": "INSIDE_MIDDLE_CENTER"
+ "labelPosition": "INSIDE_MIDDLE_CENTER",
+ "zIndex": 0,
+ "level": 2
},
{
"id": "finally.inside",
@@ -732,7 +751,6 @@
},
"width": 148,
"height": 126,
- "level": 2,
"opacity": 1,
"strokeDash": 0,
"strokeWidth": 2,
@@ -759,7 +777,9 @@
"underline": false,
"labelWidth": 48,
"labelHeight": 26,
- "labelPosition": "INSIDE_MIDDLE_CENTER"
+ "labelPosition": "INSIDE_MIDDLE_CENTER",
+ "zIndex": 0,
+ "level": 2
},
{
"id": "finally.hierarchy",
@@ -770,7 +790,6 @@
},
"width": 173,
"height": 126,
- "level": 2,
"opacity": 1,
"strokeDash": 0,
"strokeWidth": 2,
@@ -797,7 +816,9 @@
"underline": false,
"labelWidth": 73,
"labelHeight": 26,
- "labelPosition": "INSIDE_MIDDLE_CENTER"
+ "labelPosition": "INSIDE_MIDDLE_CENTER",
+ "zIndex": 0,
+ "level": 2
},
{
"id": "finally.root",
@@ -808,7 +829,6 @@
},
"width": 135,
"height": 126,
- "level": 2,
"opacity": 1,
"strokeDash": 0,
"strokeWidth": 2,
@@ -835,7 +855,9 @@
"underline": false,
"labelWidth": 35,
"labelHeight": 26,
- "labelPosition": "INSIDE_MIDDLE_CENTER"
+ "labelPosition": "INSIDE_MIDDLE_CENTER",
+ "zIndex": 0,
+ "level": 2
}
],
"connections": [
@@ -884,7 +906,8 @@
"isCurve": true,
"animated": false,
"tooltip": "",
- "icon": null
+ "icon": null,
+ "zIndex": 0
},
{
"id": "(a -> and)[0]",
@@ -931,7 +954,8 @@
"isCurve": true,
"animated": false,
"tooltip": "",
- "icon": null
+ "icon": null,
+ "zIndex": 0
},
{
"id": "(a -> nodes)[0]",
@@ -978,7 +1002,8 @@
"isCurve": true,
"animated": false,
"tooltip": "",
- "icon": null
+ "icon": null,
+ "zIndex": 0
},
{
"id": "(and -> some)[0]",
@@ -1025,7 +1050,8 @@
"isCurve": true,
"animated": false,
"tooltip": "",
- "icon": null
+ "icon": null,
+ "zIndex": 0
},
{
"id": "(tree -> more)[0]",
@@ -1072,7 +1098,8 @@
"isCurve": true,
"animated": false,
"tooltip": "",
- "icon": null
+ "icon": null,
+ "zIndex": 0
},
{
"id": "(tree -> many)[0]",
@@ -1119,7 +1146,8 @@
"isCurve": true,
"animated": false,
"tooltip": "",
- "icon": null
+ "icon": null,
+ "zIndex": 0
},
{
"id": "(then -> here)[0]",
@@ -1166,7 +1194,8 @@
"isCurve": true,
"animated": false,
"tooltip": "",
- "icon": null
+ "icon": null,
+ "zIndex": 0
},
{
"id": "(here -> you)[0]",
@@ -1213,7 +1242,8 @@
"isCurve": true,
"animated": false,
"tooltip": "",
- "icon": null
+ "icon": null,
+ "zIndex": 0
},
{
"id": "(have -> hierarchy)[0]",
@@ -1260,7 +1290,8 @@
"isCurve": true,
"animated": false,
"tooltip": "",
- "icon": null
+ "icon": null,
+ "zIndex": 0
},
{
"id": "(then -> hierarchy)[0]",
@@ -1307,7 +1338,8 @@
"isCurve": true,
"animated": false,
"tooltip": "",
- "icon": null
+ "icon": null,
+ "zIndex": 0
},
{
"id": "(finally -> another)[0]",
@@ -1354,7 +1386,8 @@
"isCurve": true,
"animated": false,
"tooltip": "",
- "icon": null
+ "icon": null,
+ "zIndex": 0
},
{
"id": "(another -> of)[0]",
@@ -1401,7 +1434,8 @@
"isCurve": true,
"animated": false,
"tooltip": "",
- "icon": null
+ "icon": null,
+ "zIndex": 0
},
{
"id": "(nesting -> trees)[0]",
@@ -1448,7 +1482,8 @@
"isCurve": true,
"animated": false,
"tooltip": "",
- "icon": null
+ "icon": null,
+ "zIndex": 0
},
{
"id": "(finally -> trees)[0]",
@@ -1495,7 +1530,8 @@
"isCurve": true,
"animated": false,
"tooltip": "",
- "icon": null
+ "icon": null,
+ "zIndex": 0
},
{
"id": "finally.(a -> tree)[0]",
@@ -1542,7 +1578,8 @@
"isCurve": true,
"animated": false,
"tooltip": "",
- "icon": null
+ "icon": null,
+ "zIndex": 0
},
{
"id": "finally.(inside -> a)[0]",
@@ -1589,7 +1626,8 @@
"isCurve": true,
"animated": false,
"tooltip": "",
- "icon": null
+ "icon": null,
+ "zIndex": 0
},
{
"id": "finally.(tree -> hierarchy)[0]",
@@ -1636,7 +1674,8 @@
"isCurve": true,
"animated": false,
"tooltip": "",
- "icon": null
+ "icon": null,
+ "zIndex": 0
},
{
"id": "finally.(a -> root)[0]",
@@ -1683,7 +1722,8 @@
"isCurve": true,
"animated": false,
"tooltip": "",
- "icon": null
+ "icon": null,
+ "zIndex": 0
}
]
}
diff --git a/e2etests/testdata/stable/different_subgraphs/elk/board.exp.json b/e2etests/testdata/stable/different_subgraphs/elk/board.exp.json
index 09b3469c1..d057f23a2 100644
--- a/e2etests/testdata/stable/different_subgraphs/elk/board.exp.json
+++ b/e2etests/testdata/stable/different_subgraphs/elk/board.exp.json
@@ -10,7 +10,6 @@
},
"width": 458,
"height": 714,
- "level": 1,
"opacity": 1,
"strokeDash": 0,
"strokeWidth": 2,
@@ -37,7 +36,9 @@
"underline": false,
"labelWidth": 77,
"labelHeight": 41,
- "labelPosition": "INSIDE_TOP_CENTER"
+ "labelPosition": "INSIDE_TOP_CENTER",
+ "zIndex": 0,
+ "level": 1
},
{
"id": "a",
@@ -48,7 +49,6 @@
},
"width": 113,
"height": 126,
- "level": 1,
"opacity": 1,
"strokeDash": 0,
"strokeWidth": 2,
@@ -75,7 +75,9 @@
"underline": false,
"labelWidth": 13,
"labelHeight": 26,
- "labelPosition": "INSIDE_MIDDLE_CENTER"
+ "labelPosition": "INSIDE_MIDDLE_CENTER",
+ "zIndex": 0,
+ "level": 1
},
{
"id": "tree",
@@ -86,7 +88,6 @@
},
"width": 134,
"height": 126,
- "level": 1,
"opacity": 1,
"strokeDash": 0,
"strokeWidth": 2,
@@ -113,7 +114,9 @@
"underline": false,
"labelWidth": 34,
"labelHeight": 26,
- "labelPosition": "INSIDE_MIDDLE_CENTER"
+ "labelPosition": "INSIDE_MIDDLE_CENTER",
+ "zIndex": 0,
+ "level": 1
},
{
"id": "and",
@@ -124,7 +127,6 @@
},
"width": 132,
"height": 126,
- "level": 1,
"opacity": 1,
"strokeDash": 0,
"strokeWidth": 2,
@@ -151,7 +153,9 @@
"underline": false,
"labelWidth": 32,
"labelHeight": 26,
- "labelPosition": "INSIDE_MIDDLE_CENTER"
+ "labelPosition": "INSIDE_MIDDLE_CENTER",
+ "zIndex": 0,
+ "level": 1
},
{
"id": "nodes",
@@ -162,7 +166,6 @@
},
"width": 147,
"height": 126,
- "level": 1,
"opacity": 1,
"strokeDash": 0,
"strokeWidth": 2,
@@ -189,7 +192,9 @@
"underline": false,
"labelWidth": 47,
"labelHeight": 26,
- "labelPosition": "INSIDE_MIDDLE_CENTER"
+ "labelPosition": "INSIDE_MIDDLE_CENTER",
+ "zIndex": 0,
+ "level": 1
},
{
"id": "some",
@@ -200,7 +205,6 @@
},
"width": 143,
"height": 126,
- "level": 1,
"opacity": 1,
"strokeDash": 0,
"strokeWidth": 2,
@@ -227,7 +231,9 @@
"underline": false,
"labelWidth": 43,
"labelHeight": 26,
- "labelPosition": "INSIDE_MIDDLE_CENTER"
+ "labelPosition": "INSIDE_MIDDLE_CENTER",
+ "zIndex": 0,
+ "level": 1
},
{
"id": "more",
@@ -238,7 +244,6 @@
},
"width": 141,
"height": 126,
- "level": 1,
"opacity": 1,
"strokeDash": 0,
"strokeWidth": 2,
@@ -265,7 +270,9 @@
"underline": false,
"labelWidth": 41,
"labelHeight": 26,
- "labelPosition": "INSIDE_MIDDLE_CENTER"
+ "labelPosition": "INSIDE_MIDDLE_CENTER",
+ "zIndex": 0,
+ "level": 1
},
{
"id": "many",
@@ -276,7 +283,6 @@
},
"width": 145,
"height": 126,
- "level": 1,
"opacity": 1,
"strokeDash": 0,
"strokeWidth": 2,
@@ -303,7 +309,9 @@
"underline": false,
"labelWidth": 45,
"labelHeight": 26,
- "labelPosition": "INSIDE_MIDDLE_CENTER"
+ "labelPosition": "INSIDE_MIDDLE_CENTER",
+ "zIndex": 0,
+ "level": 1
},
{
"id": "then",
@@ -314,7 +322,6 @@
},
"width": 138,
"height": 126,
- "level": 1,
"opacity": 1,
"strokeDash": 0,
"strokeWidth": 2,
@@ -341,7 +348,9 @@
"underline": false,
"labelWidth": 38,
"labelHeight": 26,
- "labelPosition": "INSIDE_MIDDLE_CENTER"
+ "labelPosition": "INSIDE_MIDDLE_CENTER",
+ "zIndex": 0,
+ "level": 1
},
{
"id": "here",
@@ -352,7 +361,6 @@
},
"width": 136,
"height": 126,
- "level": 1,
"opacity": 1,
"strokeDash": 0,
"strokeWidth": 2,
@@ -379,7 +387,9 @@
"underline": false,
"labelWidth": 36,
"labelHeight": 26,
- "labelPosition": "INSIDE_MIDDLE_CENTER"
+ "labelPosition": "INSIDE_MIDDLE_CENTER",
+ "zIndex": 0,
+ "level": 1
},
{
"id": "you",
@@ -390,7 +400,6 @@
},
"width": 132,
"height": 126,
- "level": 1,
"opacity": 1,
"strokeDash": 0,
"strokeWidth": 2,
@@ -417,7 +426,9 @@
"underline": false,
"labelWidth": 32,
"labelHeight": 26,
- "labelPosition": "INSIDE_MIDDLE_CENTER"
+ "labelPosition": "INSIDE_MIDDLE_CENTER",
+ "zIndex": 0,
+ "level": 1
},
{
"id": "have",
@@ -428,7 +439,6 @@
},
"width": 138,
"height": 126,
- "level": 1,
"opacity": 1,
"strokeDash": 0,
"strokeWidth": 2,
@@ -455,7 +465,9 @@
"underline": false,
"labelWidth": 38,
"labelHeight": 26,
- "labelPosition": "INSIDE_MIDDLE_CENTER"
+ "labelPosition": "INSIDE_MIDDLE_CENTER",
+ "zIndex": 0,
+ "level": 1
},
{
"id": "hierarchy",
@@ -466,7 +478,6 @@
},
"width": 173,
"height": 126,
- "level": 1,
"opacity": 1,
"strokeDash": 0,
"strokeWidth": 2,
@@ -493,7 +504,9 @@
"underline": false,
"labelWidth": 73,
"labelHeight": 26,
- "labelPosition": "INSIDE_MIDDLE_CENTER"
+ "labelPosition": "INSIDE_MIDDLE_CENTER",
+ "zIndex": 0,
+ "level": 1
},
{
"id": "another",
@@ -504,7 +517,6 @@
},
"width": 163,
"height": 126,
- "level": 1,
"opacity": 1,
"strokeDash": 0,
"strokeWidth": 2,
@@ -531,7 +543,9 @@
"underline": false,
"labelWidth": 63,
"labelHeight": 26,
- "labelPosition": "INSIDE_MIDDLE_CENTER"
+ "labelPosition": "INSIDE_MIDDLE_CENTER",
+ "zIndex": 0,
+ "level": 1
},
{
"id": "of",
@@ -542,7 +556,6 @@
},
"width": 120,
"height": 126,
- "level": 1,
"opacity": 1,
"strokeDash": 0,
"strokeWidth": 2,
@@ -569,7 +582,9 @@
"underline": false,
"labelWidth": 20,
"labelHeight": 26,
- "labelPosition": "INSIDE_MIDDLE_CENTER"
+ "labelPosition": "INSIDE_MIDDLE_CENTER",
+ "zIndex": 0,
+ "level": 1
},
{
"id": "nesting",
@@ -580,7 +595,6 @@
},
"width": 158,
"height": 126,
- "level": 1,
"opacity": 1,
"strokeDash": 0,
"strokeWidth": 2,
@@ -607,7 +621,9 @@
"underline": false,
"labelWidth": 58,
"labelHeight": 26,
- "labelPosition": "INSIDE_MIDDLE_CENTER"
+ "labelPosition": "INSIDE_MIDDLE_CENTER",
+ "zIndex": 0,
+ "level": 1
},
{
"id": "trees",
@@ -618,7 +634,6 @@
},
"width": 142,
"height": 126,
- "level": 1,
"opacity": 1,
"strokeDash": 0,
"strokeWidth": 2,
@@ -645,7 +660,9 @@
"underline": false,
"labelWidth": 42,
"labelHeight": 26,
- "labelPosition": "INSIDE_MIDDLE_CENTER"
+ "labelPosition": "INSIDE_MIDDLE_CENTER",
+ "zIndex": 0,
+ "level": 1
},
{
"id": "finally.a",
@@ -656,7 +673,6 @@
},
"width": 113,
"height": 126,
- "level": 2,
"opacity": 1,
"strokeDash": 0,
"strokeWidth": 2,
@@ -683,7 +699,9 @@
"underline": false,
"labelWidth": 13,
"labelHeight": 26,
- "labelPosition": "INSIDE_MIDDLE_CENTER"
+ "labelPosition": "INSIDE_MIDDLE_CENTER",
+ "zIndex": 0,
+ "level": 2
},
{
"id": "finally.tree",
@@ -694,7 +712,6 @@
},
"width": 134,
"height": 126,
- "level": 2,
"opacity": 1,
"strokeDash": 0,
"strokeWidth": 2,
@@ -721,7 +738,9 @@
"underline": false,
"labelWidth": 34,
"labelHeight": 26,
- "labelPosition": "INSIDE_MIDDLE_CENTER"
+ "labelPosition": "INSIDE_MIDDLE_CENTER",
+ "zIndex": 0,
+ "level": 2
},
{
"id": "finally.inside",
@@ -732,7 +751,6 @@
},
"width": 148,
"height": 126,
- "level": 2,
"opacity": 1,
"strokeDash": 0,
"strokeWidth": 2,
@@ -759,7 +777,9 @@
"underline": false,
"labelWidth": 48,
"labelHeight": 26,
- "labelPosition": "INSIDE_MIDDLE_CENTER"
+ "labelPosition": "INSIDE_MIDDLE_CENTER",
+ "zIndex": 0,
+ "level": 2
},
{
"id": "finally.hierarchy",
@@ -770,7 +790,6 @@
},
"width": 173,
"height": 126,
- "level": 2,
"opacity": 1,
"strokeDash": 0,
"strokeWidth": 2,
@@ -797,7 +816,9 @@
"underline": false,
"labelWidth": 73,
"labelHeight": 26,
- "labelPosition": "INSIDE_MIDDLE_CENTER"
+ "labelPosition": "INSIDE_MIDDLE_CENTER",
+ "zIndex": 0,
+ "level": 2
},
{
"id": "finally.root",
@@ -808,7 +829,6 @@
},
"width": 135,
"height": 126,
- "level": 2,
"opacity": 1,
"strokeDash": 0,
"strokeWidth": 2,
@@ -835,7 +855,9 @@
"underline": false,
"labelWidth": 35,
"labelHeight": 26,
- "labelPosition": "INSIDE_MIDDLE_CENTER"
+ "labelPosition": "INSIDE_MIDDLE_CENTER",
+ "zIndex": 0,
+ "level": 2
}
],
"connections": [
@@ -883,7 +905,8 @@
],
"animated": false,
"tooltip": "",
- "icon": null
+ "icon": null,
+ "zIndex": 0
},
{
"id": "(a -> and)[0]",
@@ -929,7 +952,8 @@
],
"animated": false,
"tooltip": "",
- "icon": null
+ "icon": null,
+ "zIndex": 0
},
{
"id": "(a -> nodes)[0]",
@@ -967,7 +991,8 @@
],
"animated": false,
"tooltip": "",
- "icon": null
+ "icon": null,
+ "zIndex": 0
},
{
"id": "(and -> some)[0]",
@@ -1005,7 +1030,8 @@
],
"animated": false,
"tooltip": "",
- "icon": null
+ "icon": null,
+ "zIndex": 0
},
{
"id": "(tree -> more)[0]",
@@ -1043,7 +1069,8 @@
],
"animated": false,
"tooltip": "",
- "icon": null
+ "icon": null,
+ "zIndex": 0
},
{
"id": "(tree -> many)[0]",
@@ -1089,7 +1116,8 @@
],
"animated": false,
"tooltip": "",
- "icon": null
+ "icon": null,
+ "zIndex": 0
},
{
"id": "(then -> here)[0]",
@@ -1127,7 +1155,8 @@
],
"animated": false,
"tooltip": "",
- "icon": null
+ "icon": null,
+ "zIndex": 0
},
{
"id": "(here -> you)[0]",
@@ -1165,7 +1194,8 @@
],
"animated": false,
"tooltip": "",
- "icon": null
+ "icon": null,
+ "zIndex": 0
},
{
"id": "(have -> hierarchy)[0]",
@@ -1203,7 +1233,8 @@
],
"animated": false,
"tooltip": "",
- "icon": null
+ "icon": null,
+ "zIndex": 0
},
{
"id": "(then -> hierarchy)[0]",
@@ -1249,7 +1280,8 @@
],
"animated": false,
"tooltip": "",
- "icon": null
+ "icon": null,
+ "zIndex": 0
},
{
"id": "(finally -> another)[0]",
@@ -1287,7 +1319,8 @@
],
"animated": false,
"tooltip": "",
- "icon": null
+ "icon": null,
+ "zIndex": 0
},
{
"id": "(another -> of)[0]",
@@ -1325,7 +1358,8 @@
],
"animated": false,
"tooltip": "",
- "icon": null
+ "icon": null,
+ "zIndex": 0
},
{
"id": "(nesting -> trees)[0]",
@@ -1363,7 +1397,8 @@
],
"animated": false,
"tooltip": "",
- "icon": null
+ "icon": null,
+ "zIndex": 0
},
{
"id": "(finally -> trees)[0]",
@@ -1409,7 +1444,8 @@
],
"animated": false,
"tooltip": "",
- "icon": null
+ "icon": null,
+ "zIndex": 0
},
{
"id": "finally.(a -> tree)[0]",
@@ -1455,7 +1491,8 @@
],
"animated": false,
"tooltip": "",
- "icon": null
+ "icon": null,
+ "zIndex": 0
},
{
"id": "finally.(inside -> a)[0]",
@@ -1493,7 +1530,8 @@
],
"animated": false,
"tooltip": "",
- "icon": null
+ "icon": null,
+ "zIndex": 0
},
{
"id": "finally.(tree -> hierarchy)[0]",
@@ -1531,7 +1569,8 @@
],
"animated": false,
"tooltip": "",
- "icon": null
+ "icon": null,
+ "zIndex": 0
},
{
"id": "finally.(a -> root)[0]",
@@ -1569,7 +1608,8 @@
],
"animated": false,
"tooltip": "",
- "icon": null
+ "icon": null,
+ "zIndex": 0
}
]
}
diff --git a/e2etests/testdata/stable/direction/dagre/board.exp.json b/e2etests/testdata/stable/direction/dagre/board.exp.json
index cc01c3fae..94bdc0db0 100644
--- a/e2etests/testdata/stable/direction/dagre/board.exp.json
+++ b/e2etests/testdata/stable/direction/dagre/board.exp.json
@@ -10,7 +10,6 @@
},
"width": 494,
"height": 1456,
- "level": 1,
"opacity": 1,
"strokeDash": 0,
"strokeWidth": 2,
@@ -37,7 +36,9 @@
"underline": false,
"labelWidth": 18,
"labelHeight": 41,
- "labelPosition": "INSIDE_TOP_CENTER"
+ "labelPosition": "INSIDE_TOP_CENTER",
+ "zIndex": 0,
+ "level": 1
},
{
"id": "b.2",
@@ -48,7 +49,6 @@
},
"width": 240,
"height": 1130,
- "level": 2,
"opacity": 1,
"strokeDash": 0,
"strokeWidth": 2,
@@ -75,7 +75,9 @@
"underline": false,
"labelWidth": 16,
"labelHeight": 36,
- "labelPosition": "INSIDE_TOP_CENTER"
+ "labelPosition": "INSIDE_TOP_CENTER",
+ "zIndex": 0,
+ "level": 2
},
{
"id": "a",
@@ -86,7 +88,6 @@
},
"width": 113,
"height": 126,
- "level": 1,
"opacity": 1,
"strokeDash": 0,
"strokeWidth": 2,
@@ -113,7 +114,9 @@
"underline": false,
"labelWidth": 13,
"labelHeight": 26,
- "labelPosition": "INSIDE_MIDDLE_CENTER"
+ "labelPosition": "INSIDE_MIDDLE_CENTER",
+ "zIndex": 0,
+ "level": 1
},
{
"id": "c",
@@ -124,7 +127,6 @@
},
"width": 113,
"height": 126,
- "level": 1,
"opacity": 1,
"strokeDash": 0,
"strokeWidth": 2,
@@ -151,7 +153,9 @@
"underline": false,
"labelWidth": 13,
"labelHeight": 26,
- "labelPosition": "INSIDE_MIDDLE_CENTER"
+ "labelPosition": "INSIDE_MIDDLE_CENTER",
+ "zIndex": 0,
+ "level": 1
},
{
"id": "d",
@@ -162,7 +166,6 @@
},
"width": 114,
"height": 126,
- "level": 1,
"opacity": 1,
"strokeDash": 0,
"strokeWidth": 2,
@@ -189,7 +192,9 @@
"underline": false,
"labelWidth": 14,
"labelHeight": 26,
- "labelPosition": "INSIDE_MIDDLE_CENTER"
+ "labelPosition": "INSIDE_MIDDLE_CENTER",
+ "zIndex": 0,
+ "level": 1
},
{
"id": "e",
@@ -200,7 +205,6 @@
},
"width": 113,
"height": 126,
- "level": 1,
"opacity": 1,
"strokeDash": 0,
"strokeWidth": 2,
@@ -227,7 +231,9 @@
"underline": false,
"labelWidth": 13,
"labelHeight": 26,
- "labelPosition": "INSIDE_MIDDLE_CENTER"
+ "labelPosition": "INSIDE_MIDDLE_CENTER",
+ "zIndex": 0,
+ "level": 1
},
{
"id": "b.1",
@@ -238,7 +244,6 @@
},
"width": 112,
"height": 126,
- "level": 2,
"opacity": 1,
"strokeDash": 0,
"strokeWidth": 2,
@@ -265,7 +270,9 @@
"underline": false,
"labelWidth": 12,
"labelHeight": 26,
- "labelPosition": "INSIDE_MIDDLE_CENTER"
+ "labelPosition": "INSIDE_MIDDLE_CENTER",
+ "zIndex": 0,
+ "level": 2
},
{
"id": "b.3",
@@ -276,7 +283,6 @@
},
"width": 113,
"height": 126,
- "level": 2,
"opacity": 1,
"strokeDash": 0,
"strokeWidth": 2,
@@ -303,7 +309,9 @@
"underline": false,
"labelWidth": 13,
"labelHeight": 26,
- "labelPosition": "INSIDE_MIDDLE_CENTER"
+ "labelPosition": "INSIDE_MIDDLE_CENTER",
+ "zIndex": 0,
+ "level": 2
},
{
"id": "b.4",
@@ -314,7 +322,6 @@
},
"width": 114,
"height": 126,
- "level": 2,
"opacity": 1,
"strokeDash": 0,
"strokeWidth": 2,
@@ -341,7 +348,9 @@
"underline": false,
"labelWidth": 14,
"labelHeight": 26,
- "labelPosition": "INSIDE_MIDDLE_CENTER"
+ "labelPosition": "INSIDE_MIDDLE_CENTER",
+ "zIndex": 0,
+ "level": 2
},
{
"id": "b.5",
@@ -352,7 +361,6 @@
},
"width": 113,
"height": 126,
- "level": 2,
"opacity": 1,
"strokeDash": 0,
"strokeWidth": 2,
@@ -379,7 +387,9 @@
"underline": false,
"labelWidth": 13,
"labelHeight": 26,
- "labelPosition": "INSIDE_MIDDLE_CENTER"
+ "labelPosition": "INSIDE_MIDDLE_CENTER",
+ "zIndex": 0,
+ "level": 2
},
{
"id": "b.2.a",
@@ -390,7 +400,6 @@
},
"width": 113,
"height": 126,
- "level": 3,
"opacity": 1,
"strokeDash": 0,
"strokeWidth": 2,
@@ -417,7 +426,9 @@
"underline": false,
"labelWidth": 13,
"labelHeight": 26,
- "labelPosition": "INSIDE_MIDDLE_CENTER"
+ "labelPosition": "INSIDE_MIDDLE_CENTER",
+ "zIndex": 0,
+ "level": 3
},
{
"id": "b.2.b",
@@ -428,7 +439,6 @@
},
"width": 113,
"height": 126,
- "level": 3,
"opacity": 1,
"strokeDash": 0,
"strokeWidth": 2,
@@ -455,7 +465,9 @@
"underline": false,
"labelWidth": 13,
"labelHeight": 26,
- "labelPosition": "INSIDE_MIDDLE_CENTER"
+ "labelPosition": "INSIDE_MIDDLE_CENTER",
+ "zIndex": 0,
+ "level": 3
},
{
"id": "b.2.c",
@@ -466,7 +478,6 @@
},
"width": 113,
"height": 126,
- "level": 3,
"opacity": 1,
"strokeDash": 0,
"strokeWidth": 2,
@@ -493,7 +504,9 @@
"underline": false,
"labelWidth": 13,
"labelHeight": 26,
- "labelPosition": "INSIDE_MIDDLE_CENTER"
+ "labelPosition": "INSIDE_MIDDLE_CENTER",
+ "zIndex": 0,
+ "level": 3
},
{
"id": "b.2.d",
@@ -504,7 +517,6 @@
},
"width": 114,
"height": 126,
- "level": 3,
"opacity": 1,
"strokeDash": 0,
"strokeWidth": 2,
@@ -531,7 +543,9 @@
"underline": false,
"labelWidth": 14,
"labelHeight": 26,
- "labelPosition": "INSIDE_MIDDLE_CENTER"
+ "labelPosition": "INSIDE_MIDDLE_CENTER",
+ "zIndex": 0,
+ "level": 3
},
{
"id": "b.2.e",
@@ -542,7 +556,6 @@
},
"width": 113,
"height": 126,
- "level": 3,
"opacity": 1,
"strokeDash": 0,
"strokeWidth": 2,
@@ -569,7 +582,9 @@
"underline": false,
"labelWidth": 13,
"labelHeight": 26,
- "labelPosition": "INSIDE_MIDDLE_CENTER"
+ "labelPosition": "INSIDE_MIDDLE_CENTER",
+ "zIndex": 0,
+ "level": 3
}
],
"connections": [
@@ -618,7 +633,8 @@
"isCurve": true,
"animated": false,
"tooltip": "",
- "icon": null
+ "icon": null,
+ "zIndex": 0
},
{
"id": "(b -> c)[0]",
@@ -665,7 +681,8 @@
"isCurve": true,
"animated": false,
"tooltip": "",
- "icon": null
+ "icon": null,
+ "zIndex": 0
},
{
"id": "(c -> d)[0]",
@@ -712,7 +729,8 @@
"isCurve": true,
"animated": false,
"tooltip": "",
- "icon": null
+ "icon": null,
+ "zIndex": 0
},
{
"id": "(d -> e)[0]",
@@ -759,7 +777,8 @@
"isCurve": true,
"animated": false,
"tooltip": "",
- "icon": null
+ "icon": null,
+ "zIndex": 0
},
{
"id": "b.(1 -> 2)[0]",
@@ -806,7 +825,8 @@
"isCurve": true,
"animated": false,
"tooltip": "",
- "icon": null
+ "icon": null,
+ "zIndex": 0
},
{
"id": "b.(2 -> 3)[0]",
@@ -853,7 +873,8 @@
"isCurve": true,
"animated": false,
"tooltip": "",
- "icon": null
+ "icon": null,
+ "zIndex": 0
},
{
"id": "b.(3 -> 4)[0]",
@@ -900,7 +921,8 @@
"isCurve": true,
"animated": false,
"tooltip": "",
- "icon": null
+ "icon": null,
+ "zIndex": 0
},
{
"id": "b.(4 -> 5)[0]",
@@ -947,7 +969,8 @@
"isCurve": true,
"animated": false,
"tooltip": "",
- "icon": null
+ "icon": null,
+ "zIndex": 0
},
{
"id": "b.2.(a -> b)[0]",
@@ -994,7 +1017,8 @@
"isCurve": true,
"animated": false,
"tooltip": "",
- "icon": null
+ "icon": null,
+ "zIndex": 0
},
{
"id": "b.2.(b -> c)[0]",
@@ -1041,7 +1065,8 @@
"isCurve": true,
"animated": false,
"tooltip": "",
- "icon": null
+ "icon": null,
+ "zIndex": 0
},
{
"id": "b.2.(c -> d)[0]",
@@ -1088,7 +1113,8 @@
"isCurve": true,
"animated": false,
"tooltip": "",
- "icon": null
+ "icon": null,
+ "zIndex": 0
},
{
"id": "b.2.(d -> e)[0]",
@@ -1135,7 +1161,8 @@
"isCurve": true,
"animated": false,
"tooltip": "",
- "icon": null
+ "icon": null,
+ "zIndex": 0
}
]
}
diff --git a/e2etests/testdata/stable/direction/elk/board.exp.json b/e2etests/testdata/stable/direction/elk/board.exp.json
index 37051403b..2406399ad 100644
--- a/e2etests/testdata/stable/direction/elk/board.exp.json
+++ b/e2etests/testdata/stable/direction/elk/board.exp.json
@@ -10,7 +10,6 @@
},
"width": 414,
"height": 1594,
- "level": 1,
"opacity": 1,
"strokeDash": 0,
"strokeWidth": 2,
@@ -37,7 +36,9 @@
"underline": false,
"labelWidth": 18,
"labelHeight": 41,
- "labelPosition": "INSIDE_TOP_CENTER"
+ "labelPosition": "INSIDE_TOP_CENTER",
+ "zIndex": 0,
+ "level": 1
},
{
"id": "b.2",
@@ -48,7 +49,6 @@
},
"width": 264,
"height": 860,
- "level": 2,
"opacity": 1,
"strokeDash": 0,
"strokeWidth": 2,
@@ -75,7 +75,9 @@
"underline": false,
"labelWidth": 16,
"labelHeight": 36,
- "labelPosition": "INSIDE_TOP_CENTER"
+ "labelPosition": "INSIDE_TOP_CENTER",
+ "zIndex": 0,
+ "level": 2
},
{
"id": "a",
@@ -86,7 +88,6 @@
},
"width": 113,
"height": 126,
- "level": 1,
"opacity": 1,
"strokeDash": 0,
"strokeWidth": 2,
@@ -113,7 +114,9 @@
"underline": false,
"labelWidth": 13,
"labelHeight": 26,
- "labelPosition": "INSIDE_MIDDLE_CENTER"
+ "labelPosition": "INSIDE_MIDDLE_CENTER",
+ "zIndex": 0,
+ "level": 1
},
{
"id": "c",
@@ -124,7 +127,6 @@
},
"width": 113,
"height": 126,
- "level": 1,
"opacity": 1,
"strokeDash": 0,
"strokeWidth": 2,
@@ -151,7 +153,9 @@
"underline": false,
"labelWidth": 13,
"labelHeight": 26,
- "labelPosition": "INSIDE_MIDDLE_CENTER"
+ "labelPosition": "INSIDE_MIDDLE_CENTER",
+ "zIndex": 0,
+ "level": 1
},
{
"id": "d",
@@ -162,7 +166,6 @@
},
"width": 114,
"height": 126,
- "level": 1,
"opacity": 1,
"strokeDash": 0,
"strokeWidth": 2,
@@ -189,7 +192,9 @@
"underline": false,
"labelWidth": 14,
"labelHeight": 26,
- "labelPosition": "INSIDE_MIDDLE_CENTER"
+ "labelPosition": "INSIDE_MIDDLE_CENTER",
+ "zIndex": 0,
+ "level": 1
},
{
"id": "e",
@@ -200,7 +205,6 @@
},
"width": 113,
"height": 126,
- "level": 1,
"opacity": 1,
"strokeDash": 0,
"strokeWidth": 2,
@@ -227,7 +231,9 @@
"underline": false,
"labelWidth": 13,
"labelHeight": 26,
- "labelPosition": "INSIDE_MIDDLE_CENTER"
+ "labelPosition": "INSIDE_MIDDLE_CENTER",
+ "zIndex": 0,
+ "level": 1
},
{
"id": "b.1",
@@ -238,7 +244,6 @@
},
"width": 112,
"height": 126,
- "level": 2,
"opacity": 1,
"strokeDash": 0,
"strokeWidth": 2,
@@ -265,7 +270,9 @@
"underline": false,
"labelWidth": 12,
"labelHeight": 26,
- "labelPosition": "INSIDE_MIDDLE_CENTER"
+ "labelPosition": "INSIDE_MIDDLE_CENTER",
+ "zIndex": 0,
+ "level": 2
},
{
"id": "b.3",
@@ -276,7 +283,6 @@
},
"width": 113,
"height": 126,
- "level": 2,
"opacity": 1,
"strokeDash": 0,
"strokeWidth": 2,
@@ -303,7 +309,9 @@
"underline": false,
"labelWidth": 13,
"labelHeight": 26,
- "labelPosition": "INSIDE_MIDDLE_CENTER"
+ "labelPosition": "INSIDE_MIDDLE_CENTER",
+ "zIndex": 0,
+ "level": 2
},
{
"id": "b.4",
@@ -314,7 +322,6 @@
},
"width": 114,
"height": 126,
- "level": 2,
"opacity": 1,
"strokeDash": 0,
"strokeWidth": 2,
@@ -341,7 +348,9 @@
"underline": false,
"labelWidth": 14,
"labelHeight": 26,
- "labelPosition": "INSIDE_MIDDLE_CENTER"
+ "labelPosition": "INSIDE_MIDDLE_CENTER",
+ "zIndex": 0,
+ "level": 2
},
{
"id": "b.5",
@@ -352,7 +361,6 @@
},
"width": 113,
"height": 126,
- "level": 2,
"opacity": 1,
"strokeDash": 0,
"strokeWidth": 2,
@@ -379,7 +387,9 @@
"underline": false,
"labelWidth": 13,
"labelHeight": 26,
- "labelPosition": "INSIDE_MIDDLE_CENTER"
+ "labelPosition": "INSIDE_MIDDLE_CENTER",
+ "zIndex": 0,
+ "level": 2
},
{
"id": "b.2.a",
@@ -390,7 +400,6 @@
},
"width": 113,
"height": 126,
- "level": 3,
"opacity": 1,
"strokeDash": 0,
"strokeWidth": 2,
@@ -417,7 +426,9 @@
"underline": false,
"labelWidth": 13,
"labelHeight": 26,
- "labelPosition": "INSIDE_MIDDLE_CENTER"
+ "labelPosition": "INSIDE_MIDDLE_CENTER",
+ "zIndex": 0,
+ "level": 3
},
{
"id": "b.2.b",
@@ -428,7 +439,6 @@
},
"width": 113,
"height": 126,
- "level": 3,
"opacity": 1,
"strokeDash": 0,
"strokeWidth": 2,
@@ -455,7 +465,9 @@
"underline": false,
"labelWidth": 13,
"labelHeight": 26,
- "labelPosition": "INSIDE_MIDDLE_CENTER"
+ "labelPosition": "INSIDE_MIDDLE_CENTER",
+ "zIndex": 0,
+ "level": 3
},
{
"id": "b.2.c",
@@ -466,7 +478,6 @@
},
"width": 113,
"height": 126,
- "level": 3,
"opacity": 1,
"strokeDash": 0,
"strokeWidth": 2,
@@ -493,7 +504,9 @@
"underline": false,
"labelWidth": 13,
"labelHeight": 26,
- "labelPosition": "INSIDE_MIDDLE_CENTER"
+ "labelPosition": "INSIDE_MIDDLE_CENTER",
+ "zIndex": 0,
+ "level": 3
},
{
"id": "b.2.d",
@@ -504,7 +517,6 @@
},
"width": 114,
"height": 126,
- "level": 3,
"opacity": 1,
"strokeDash": 0,
"strokeWidth": 2,
@@ -531,7 +543,9 @@
"underline": false,
"labelWidth": 14,
"labelHeight": 26,
- "labelPosition": "INSIDE_MIDDLE_CENTER"
+ "labelPosition": "INSIDE_MIDDLE_CENTER",
+ "zIndex": 0,
+ "level": 3
},
{
"id": "b.2.e",
@@ -542,7 +556,6 @@
},
"width": 113,
"height": 126,
- "level": 3,
"opacity": 1,
"strokeDash": 0,
"strokeWidth": 2,
@@ -569,7 +582,9 @@
"underline": false,
"labelWidth": 13,
"labelHeight": 26,
- "labelPosition": "INSIDE_MIDDLE_CENTER"
+ "labelPosition": "INSIDE_MIDDLE_CENTER",
+ "zIndex": 0,
+ "level": 3
}
],
"connections": [
@@ -609,7 +624,8 @@
],
"animated": false,
"tooltip": "",
- "icon": null
+ "icon": null,
+ "zIndex": 0
},
{
"id": "(b -> c)[0]",
@@ -647,7 +663,8 @@
],
"animated": false,
"tooltip": "",
- "icon": null
+ "icon": null,
+ "zIndex": 0
},
{
"id": "(c -> d)[0]",
@@ -685,7 +702,8 @@
],
"animated": false,
"tooltip": "",
- "icon": null
+ "icon": null,
+ "zIndex": 0
},
{
"id": "(d -> e)[0]",
@@ -723,7 +741,8 @@
],
"animated": false,
"tooltip": "",
- "icon": null
+ "icon": null,
+ "zIndex": 0
},
{
"id": "b.(1 -> 2)[0]",
@@ -761,7 +780,8 @@
],
"animated": false,
"tooltip": "",
- "icon": null
+ "icon": null,
+ "zIndex": 0
},
{
"id": "b.(2 -> 3)[0]",
@@ -799,7 +819,8 @@
],
"animated": false,
"tooltip": "",
- "icon": null
+ "icon": null,
+ "zIndex": 0
},
{
"id": "b.(3 -> 4)[0]",
@@ -837,7 +858,8 @@
],
"animated": false,
"tooltip": "",
- "icon": null
+ "icon": null,
+ "zIndex": 0
},
{
"id": "b.(4 -> 5)[0]",
@@ -875,7 +897,8 @@
],
"animated": false,
"tooltip": "",
- "icon": null
+ "icon": null,
+ "zIndex": 0
},
{
"id": "b.2.(a -> b)[0]",
@@ -913,7 +936,8 @@
],
"animated": false,
"tooltip": "",
- "icon": null
+ "icon": null,
+ "zIndex": 0
},
{
"id": "b.2.(b -> c)[0]",
@@ -951,7 +975,8 @@
],
"animated": false,
"tooltip": "",
- "icon": null
+ "icon": null,
+ "zIndex": 0
},
{
"id": "b.2.(c -> d)[0]",
@@ -989,7 +1014,8 @@
],
"animated": false,
"tooltip": "",
- "icon": null
+ "icon": null,
+ "zIndex": 0
},
{
"id": "b.2.(d -> e)[0]",
@@ -1027,7 +1053,8 @@
],
"animated": false,
"tooltip": "",
- "icon": null
+ "icon": null,
+ "zIndex": 0
}
]
}
diff --git a/e2etests/testdata/stable/font_colors/dagre/board.exp.json b/e2etests/testdata/stable/font_colors/dagre/board.exp.json
index 6ce3d7a71..baa3326bd 100644
--- a/e2etests/testdata/stable/font_colors/dagre/board.exp.json
+++ b/e2etests/testdata/stable/font_colors/dagre/board.exp.json
@@ -10,7 +10,6 @@
},
"width": 145,
"height": 126,
- "level": 1,
"opacity": 1,
"strokeDash": 0,
"strokeWidth": 2,
@@ -37,7 +36,9 @@
"underline": false,
"labelWidth": 45,
"labelHeight": 26,
- "labelPosition": "INSIDE_MIDDLE_CENTER"
+ "labelPosition": "INSIDE_MIDDLE_CENTER",
+ "zIndex": 0,
+ "level": 1
},
{
"id": "beta",
@@ -48,7 +49,6 @@
},
"width": 136,
"height": 126,
- "level": 1,
"opacity": 1,
"strokeDash": 0,
"strokeWidth": 2,
@@ -75,7 +75,9 @@
"underline": false,
"labelWidth": 36,
"labelHeight": 26,
- "labelPosition": "INSIDE_MIDDLE_CENTER"
+ "labelPosition": "INSIDE_MIDDLE_CENTER",
+ "zIndex": 0,
+ "level": 1
}
],
"connections": [
@@ -124,7 +126,8 @@
"isCurve": true,
"animated": false,
"tooltip": "",
- "icon": null
+ "icon": null,
+ "zIndex": 0
}
]
}
diff --git a/e2etests/testdata/stable/font_colors/elk/board.exp.json b/e2etests/testdata/stable/font_colors/elk/board.exp.json
index 41a5119ca..2766ed834 100644
--- a/e2etests/testdata/stable/font_colors/elk/board.exp.json
+++ b/e2etests/testdata/stable/font_colors/elk/board.exp.json
@@ -10,7 +10,6 @@
},
"width": 145,
"height": 126,
- "level": 1,
"opacity": 1,
"strokeDash": 0,
"strokeWidth": 2,
@@ -37,7 +36,9 @@
"underline": false,
"labelWidth": 45,
"labelHeight": 26,
- "labelPosition": "INSIDE_MIDDLE_CENTER"
+ "labelPosition": "INSIDE_MIDDLE_CENTER",
+ "zIndex": 0,
+ "level": 1
},
{
"id": "beta",
@@ -48,7 +49,6 @@
},
"width": 136,
"height": 126,
- "level": 1,
"opacity": 1,
"strokeDash": 0,
"strokeWidth": 2,
@@ -75,7 +75,9 @@
"underline": false,
"labelWidth": 36,
"labelHeight": 26,
- "labelPosition": "INSIDE_MIDDLE_CENTER"
+ "labelPosition": "INSIDE_MIDDLE_CENTER",
+ "zIndex": 0,
+ "level": 1
}
],
"connections": [
@@ -115,7 +117,8 @@
],
"animated": false,
"tooltip": "",
- "icon": null
+ "icon": null,
+ "zIndex": 0
}
]
}
diff --git a/e2etests/testdata/stable/font_sizes/dagre/board.exp.json b/e2etests/testdata/stable/font_sizes/dagre/board.exp.json
new file mode 100644
index 000000000..8550c2c31
--- /dev/null
+++ b/e2etests/testdata/stable/font_sizes/dagre/board.exp.json
@@ -0,0 +1,619 @@
+{
+ "name": "",
+ "shapes": [
+ {
+ "id": "size XS",
+ "type": "",
+ "pos": {
+ "x": 1293,
+ "y": 278
+ },
+ "width": 145,
+ "height": 122,
+ "opacity": 1,
+ "strokeDash": 0,
+ "strokeWidth": 2,
+ "borderRadius": 0,
+ "fill": "#F7F8FE",
+ "stroke": "#0D32B2",
+ "shadow": false,
+ "3d": false,
+ "multiple": false,
+ "tooltip": "",
+ "link": "",
+ "icon": null,
+ "iconPosition": "",
+ "fields": null,
+ "methods": null,
+ "columns": null,
+ "label": "size XS",
+ "fontSize": 13,
+ "fontFamily": "DEFAULT",
+ "language": "",
+ "color": "#0A0F25",
+ "italic": false,
+ "bold": true,
+ "underline": false,
+ "labelWidth": 45,
+ "labelHeight": 22,
+ "labelPosition": "INSIDE_MIDDLE_CENTER",
+ "zIndex": 0,
+ "level": 1
+ },
+ {
+ "id": "size S",
+ "type": "",
+ "pos": {
+ "x": 4,
+ "y": 12
+ },
+ "width": 140,
+ "height": 123,
+ "opacity": 1,
+ "strokeDash": 0,
+ "strokeWidth": 2,
+ "borderRadius": 0,
+ "fill": "#F7F8FE",
+ "stroke": "#0D32B2",
+ "shadow": false,
+ "3d": false,
+ "multiple": false,
+ "tooltip": "",
+ "link": "",
+ "icon": null,
+ "iconPosition": "",
+ "fields": null,
+ "methods": null,
+ "columns": null,
+ "label": "size S",
+ "fontSize": 14,
+ "fontFamily": "DEFAULT",
+ "language": "",
+ "color": "#0A0F25",
+ "italic": false,
+ "bold": true,
+ "underline": false,
+ "labelWidth": 40,
+ "labelHeight": 23,
+ "labelPosition": "INSIDE_MIDDLE_CENTER",
+ "zIndex": 0,
+ "level": 1
+ },
+ {
+ "id": "size M",
+ "type": "",
+ "pos": {
+ "x": 0,
+ "y": 276
+ },
+ "width": 147,
+ "height": 126,
+ "opacity": 1,
+ "strokeDash": 0,
+ "strokeWidth": 2,
+ "borderRadius": 0,
+ "fill": "#F7F8FE",
+ "stroke": "#0D32B2",
+ "shadow": false,
+ "3d": false,
+ "multiple": false,
+ "tooltip": "",
+ "link": "",
+ "icon": null,
+ "iconPosition": "",
+ "fields": null,
+ "methods": null,
+ "columns": null,
+ "label": "size M",
+ "fontSize": 16,
+ "fontFamily": "DEFAULT",
+ "language": "",
+ "color": "#0A0F25",
+ "italic": false,
+ "bold": true,
+ "underline": false,
+ "labelWidth": 47,
+ "labelHeight": 26,
+ "labelPosition": "INSIDE_MIDDLE_CENTER",
+ "zIndex": 0,
+ "level": 1
+ },
+ {
+ "id": "size L",
+ "type": "",
+ "pos": {
+ "x": 204,
+ "y": 8
+ },
+ "width": 153,
+ "height": 131,
+ "opacity": 1,
+ "strokeDash": 0,
+ "strokeWidth": 2,
+ "borderRadius": 0,
+ "fill": "#F7F8FE",
+ "stroke": "#0D32B2",
+ "shadow": false,
+ "3d": false,
+ "multiple": false,
+ "tooltip": "",
+ "link": "",
+ "icon": null,
+ "iconPosition": "",
+ "fields": null,
+ "methods": null,
+ "columns": null,
+ "label": "size L",
+ "fontSize": 20,
+ "fontFamily": "DEFAULT",
+ "language": "",
+ "color": "#0A0F25",
+ "italic": false,
+ "bold": true,
+ "underline": false,
+ "labelWidth": 53,
+ "labelHeight": 31,
+ "labelPosition": "INSIDE_MIDDLE_CENTER",
+ "zIndex": 0,
+ "level": 1
+ },
+ {
+ "id": "size XL",
+ "type": "",
+ "pos": {
+ "x": 417,
+ "y": 5
+ },
+ "width": 177,
+ "height": 136,
+ "opacity": 1,
+ "strokeDash": 0,
+ "strokeWidth": 2,
+ "borderRadius": 0,
+ "fill": "#F7F8FE",
+ "stroke": "#0D32B2",
+ "shadow": false,
+ "3d": false,
+ "multiple": false,
+ "tooltip": "",
+ "link": "",
+ "icon": null,
+ "iconPosition": "",
+ "fields": null,
+ "methods": null,
+ "columns": null,
+ "label": "size XL",
+ "fontSize": 24,
+ "fontFamily": "DEFAULT",
+ "language": "",
+ "color": "#0A0F25",
+ "italic": false,
+ "bold": true,
+ "underline": false,
+ "labelWidth": 77,
+ "labelHeight": 36,
+ "labelPosition": "INSIDE_MIDDLE_CENTER",
+ "zIndex": 0,
+ "level": 1
+ },
+ {
+ "id": "size XXL",
+ "type": "",
+ "pos": {
+ "x": 654,
+ "y": 3
+ },
+ "width": 204,
+ "height": 141,
+ "opacity": 1,
+ "strokeDash": 0,
+ "strokeWidth": 2,
+ "borderRadius": 0,
+ "fill": "#F7F8FE",
+ "stroke": "#0D32B2",
+ "shadow": false,
+ "3d": false,
+ "multiple": false,
+ "tooltip": "",
+ "link": "",
+ "icon": null,
+ "iconPosition": "",
+ "fields": null,
+ "methods": null,
+ "columns": null,
+ "label": "size XXL",
+ "fontSize": 28,
+ "fontFamily": "DEFAULT",
+ "language": "",
+ "color": "#0A0F25",
+ "italic": false,
+ "bold": true,
+ "underline": false,
+ "labelWidth": 104,
+ "labelHeight": 41,
+ "labelPosition": "INSIDE_MIDDLE_CENTER",
+ "zIndex": 0,
+ "level": 1
+ },
+ {
+ "id": "size XXXL",
+ "type": "",
+ "pos": {
+ "x": 918,
+ "y": 0
+ },
+ "width": 237,
+ "height": 146,
+ "opacity": 1,
+ "strokeDash": 0,
+ "strokeWidth": 2,
+ "borderRadius": 0,
+ "fill": "#F7F8FE",
+ "stroke": "#0D32B2",
+ "shadow": false,
+ "3d": false,
+ "multiple": false,
+ "tooltip": "",
+ "link": "",
+ "icon": null,
+ "iconPosition": "",
+ "fields": null,
+ "methods": null,
+ "columns": null,
+ "label": "size XXXL",
+ "fontSize": 32,
+ "fontFamily": "DEFAULT",
+ "language": "",
+ "color": "#0A0F25",
+ "italic": false,
+ "bold": true,
+ "underline": false,
+ "labelWidth": 137,
+ "labelHeight": 46,
+ "labelPosition": "INSIDE_MIDDLE_CENTER",
+ "zIndex": 0,
+ "level": 1
+ },
+ {
+ "id": "custom 8",
+ "type": "",
+ "pos": {
+ "x": 1297,
+ "y": 15
+ },
+ "width": 137,
+ "height": 116,
+ "opacity": 1,
+ "strokeDash": 0,
+ "strokeWidth": 2,
+ "borderRadius": 0,
+ "fill": "#F7F8FE",
+ "stroke": "#0D32B2",
+ "shadow": false,
+ "3d": false,
+ "multiple": false,
+ "tooltip": "",
+ "link": "",
+ "icon": null,
+ "iconPosition": "",
+ "fields": null,
+ "methods": null,
+ "columns": null,
+ "label": "custom 8",
+ "fontSize": 8,
+ "fontFamily": "DEFAULT",
+ "language": "",
+ "color": "#0A0F25",
+ "italic": false,
+ "bold": true,
+ "underline": false,
+ "labelWidth": 37,
+ "labelHeight": 16,
+ "labelPosition": "INSIDE_MIDDLE_CENTER",
+ "zIndex": 0,
+ "level": 1
+ },
+ {
+ "id": "custom 12",
+ "type": "",
+ "pos": {
+ "x": 1494,
+ "y": 13
+ },
+ "width": 160,
+ "height": 121,
+ "opacity": 1,
+ "strokeDash": 0,
+ "strokeWidth": 2,
+ "borderRadius": 0,
+ "fill": "#F7F8FE",
+ "stroke": "#0D32B2",
+ "shadow": false,
+ "3d": false,
+ "multiple": false,
+ "tooltip": "",
+ "link": "",
+ "icon": null,
+ "iconPosition": "",
+ "fields": null,
+ "methods": null,
+ "columns": null,
+ "label": "custom 12",
+ "fontSize": 12,
+ "fontFamily": "DEFAULT",
+ "language": "",
+ "color": "#0A0F25",
+ "italic": false,
+ "bold": true,
+ "underline": false,
+ "labelWidth": 60,
+ "labelHeight": 21,
+ "labelPosition": "INSIDE_MIDDLE_CENTER",
+ "zIndex": 0,
+ "level": 1
+ },
+ {
+ "id": "custom 18",
+ "type": "",
+ "pos": {
+ "x": 1714,
+ "y": 9
+ },
+ "width": 186,
+ "height": 128,
+ "opacity": 1,
+ "strokeDash": 0,
+ "strokeWidth": 2,
+ "borderRadius": 0,
+ "fill": "#F7F8FE",
+ "stroke": "#0D32B2",
+ "shadow": false,
+ "3d": false,
+ "multiple": false,
+ "tooltip": "",
+ "link": "",
+ "icon": null,
+ "iconPosition": "",
+ "fields": null,
+ "methods": null,
+ "columns": null,
+ "label": "custom 18",
+ "fontSize": 18,
+ "fontFamily": "DEFAULT",
+ "language": "",
+ "color": "#0A0F25",
+ "italic": false,
+ "bold": true,
+ "underline": false,
+ "labelWidth": 86,
+ "labelHeight": 28,
+ "labelPosition": "INSIDE_MIDDLE_CENTER",
+ "zIndex": 0,
+ "level": 1
+ },
+ {
+ "id": "custom 21",
+ "type": "",
+ "pos": {
+ "x": 1960,
+ "y": 7
+ },
+ "width": 200,
+ "height": 132,
+ "opacity": 1,
+ "strokeDash": 0,
+ "strokeWidth": 2,
+ "borderRadius": 0,
+ "fill": "#F7F8FE",
+ "stroke": "#0D32B2",
+ "shadow": false,
+ "3d": false,
+ "multiple": false,
+ "tooltip": "",
+ "link": "",
+ "icon": null,
+ "iconPosition": "",
+ "fields": null,
+ "methods": null,
+ "columns": null,
+ "label": "custom 21",
+ "fontSize": 21,
+ "fontFamily": "DEFAULT",
+ "language": "",
+ "color": "#0A0F25",
+ "italic": false,
+ "bold": true,
+ "underline": false,
+ "labelWidth": 100,
+ "labelHeight": 32,
+ "labelPosition": "INSIDE_MIDDLE_CENTER",
+ "zIndex": 0,
+ "level": 1
+ },
+ {
+ "id": "custom 64",
+ "type": "",
+ "pos": {
+ "x": 840,
+ "y": 246
+ },
+ "width": 393,
+ "height": 186,
+ "opacity": 1,
+ "strokeDash": 0,
+ "strokeWidth": 2,
+ "borderRadius": 0,
+ "fill": "#F7F8FE",
+ "stroke": "#0D32B2",
+ "shadow": false,
+ "3d": false,
+ "multiple": false,
+ "tooltip": "",
+ "link": "",
+ "icon": null,
+ "iconPosition": "",
+ "fields": null,
+ "methods": null,
+ "columns": null,
+ "label": "custom 64",
+ "fontSize": 64,
+ "fontFamily": "DEFAULT",
+ "language": "",
+ "color": "#0A0F25",
+ "italic": false,
+ "bold": true,
+ "underline": false,
+ "labelWidth": 293,
+ "labelHeight": 86,
+ "labelPosition": "INSIDE_MIDDLE_CENTER",
+ "zIndex": 0,
+ "level": 1
+ }
+ ],
+ "connections": [
+ {
+ "id": "(custom 8 -> size XS)[0]",
+ "src": "custom 8",
+ "srcArrow": "none",
+ "srcLabel": "",
+ "dst": "size XS",
+ "dstArrow": "triangle",
+ "dstLabel": "",
+ "opacity": 1,
+ "strokeDash": 0,
+ "strokeWidth": 2,
+ "stroke": "#0D32B2",
+ "label": "custom 10",
+ "fontSize": 10,
+ "fontFamily": "DEFAULT",
+ "language": "",
+ "color": "#676C7E",
+ "italic": true,
+ "bold": false,
+ "underline": false,
+ "labelWidth": 42,
+ "labelHeight": 13,
+ "labelPosition": "INSIDE_MIDDLE_CENTER",
+ "labelPercentage": 0,
+ "route": [
+ {
+ "x": 1365,
+ "y": 131
+ },
+ {
+ "x": 1365,
+ "y": 183
+ },
+ {
+ "x": 1365,
+ "y": 212.4
+ },
+ {
+ "x": 1365,
+ "y": 278
+ }
+ ],
+ "isCurve": true,
+ "animated": false,
+ "tooltip": "",
+ "icon": null,
+ "zIndex": 0
+ },
+ {
+ "id": "(size S -> size M)[0]",
+ "src": "size S",
+ "srcArrow": "none",
+ "srcLabel": "",
+ "dst": "size M",
+ "dstArrow": "triangle",
+ "dstLabel": "",
+ "opacity": 1,
+ "strokeDash": 0,
+ "strokeWidth": 2,
+ "stroke": "#0D32B2",
+ "label": "custom 15",
+ "fontSize": 15,
+ "fontFamily": "DEFAULT",
+ "language": "",
+ "color": "#676C7E",
+ "italic": true,
+ "bold": false,
+ "underline": false,
+ "labelWidth": 64,
+ "labelHeight": 19,
+ "labelPosition": "INSIDE_MIDDLE_CENTER",
+ "labelPercentage": 0,
+ "route": [
+ {
+ "x": 73.5,
+ "y": 135.5
+ },
+ {
+ "x": 73.5,
+ "y": 183.9
+ },
+ {
+ "x": 73.5,
+ "y": 212
+ },
+ {
+ "x": 73.5,
+ "y": 276
+ }
+ ],
+ "isCurve": true,
+ "animated": false,
+ "tooltip": "",
+ "icon": null,
+ "zIndex": 0
+ },
+ {
+ "id": "(size XXXL -> custom 64)[0]",
+ "src": "size XXXL",
+ "srcArrow": "none",
+ "srcLabel": "",
+ "dst": "custom 64",
+ "dstArrow": "triangle",
+ "dstLabel": "",
+ "opacity": 1,
+ "strokeDash": 0,
+ "strokeWidth": 2,
+ "stroke": "#0D32B2",
+ "label": "custom 48",
+ "fontSize": 48,
+ "fontFamily": "DEFAULT",
+ "language": "",
+ "color": "#676C7E",
+ "italic": true,
+ "bold": false,
+ "underline": false,
+ "labelWidth": 199,
+ "labelHeight": 61,
+ "labelPosition": "INSIDE_MIDDLE_CENTER",
+ "labelPercentage": 0,
+ "route": [
+ {
+ "x": 1036,
+ "y": 146
+ },
+ {
+ "x": 1036,
+ "y": 186
+ },
+ {
+ "x": 1036,
+ "y": 206
+ },
+ {
+ "x": 1036,
+ "y": 246
+ }
+ ],
+ "isCurve": true,
+ "animated": false,
+ "tooltip": "",
+ "icon": null,
+ "zIndex": 0
+ }
+ ]
+}
diff --git a/e2etests/testdata/stable/font_sizes/dagre/sketch.exp.svg b/e2etests/testdata/stable/font_sizes/dagre/sketch.exp.svg
new file mode 100644
index 000000000..29d19e482
--- /dev/null
+++ b/e2etests/testdata/stable/font_sizes/dagre/sketch.exp.svg
@@ -0,0 +1,40 @@
+
+
\ No newline at end of file
diff --git a/e2etests/testdata/stable/font_sizes/elk/board.exp.json b/e2etests/testdata/stable/font_sizes/elk/board.exp.json
new file mode 100644
index 000000000..2fcb8f721
--- /dev/null
+++ b/e2etests/testdata/stable/font_sizes/elk/board.exp.json
@@ -0,0 +1,592 @@
+{
+ "name": "",
+ "shapes": [
+ {
+ "id": "size XS",
+ "type": "",
+ "pos": {
+ "x": 1465,
+ "y": 419
+ },
+ "width": 145,
+ "height": 122,
+ "opacity": 1,
+ "strokeDash": 0,
+ "strokeWidth": 2,
+ "borderRadius": 0,
+ "fill": "#F7F8FE",
+ "stroke": "#0D32B2",
+ "shadow": false,
+ "3d": false,
+ "multiple": false,
+ "tooltip": "",
+ "link": "",
+ "icon": null,
+ "iconPosition": "",
+ "fields": null,
+ "methods": null,
+ "columns": null,
+ "label": "size XS",
+ "fontSize": 13,
+ "fontFamily": "DEFAULT",
+ "language": "",
+ "color": "#0A0F25",
+ "italic": false,
+ "bold": true,
+ "underline": false,
+ "labelWidth": 45,
+ "labelHeight": 22,
+ "labelPosition": "INSIDE_MIDDLE_CENTER",
+ "zIndex": 0,
+ "level": 1
+ },
+ {
+ "id": "size S",
+ "type": "",
+ "pos": {
+ "x": 1634,
+ "y": 35
+ },
+ "width": 140,
+ "height": 123,
+ "opacity": 1,
+ "strokeDash": 0,
+ "strokeWidth": 2,
+ "borderRadius": 0,
+ "fill": "#F7F8FE",
+ "stroke": "#0D32B2",
+ "shadow": false,
+ "3d": false,
+ "multiple": false,
+ "tooltip": "",
+ "link": "",
+ "icon": null,
+ "iconPosition": "",
+ "fields": null,
+ "methods": null,
+ "columns": null,
+ "label": "size S",
+ "fontSize": 14,
+ "fontFamily": "DEFAULT",
+ "language": "",
+ "color": "#0A0F25",
+ "italic": false,
+ "bold": true,
+ "underline": false,
+ "labelWidth": 40,
+ "labelHeight": 23,
+ "labelPosition": "INSIDE_MIDDLE_CENTER",
+ "zIndex": 0,
+ "level": 1
+ },
+ {
+ "id": "size M",
+ "type": "",
+ "pos": {
+ "x": 1630,
+ "y": 419
+ },
+ "width": 147,
+ "height": 126,
+ "opacity": 1,
+ "strokeDash": 0,
+ "strokeWidth": 2,
+ "borderRadius": 0,
+ "fill": "#F7F8FE",
+ "stroke": "#0D32B2",
+ "shadow": false,
+ "3d": false,
+ "multiple": false,
+ "tooltip": "",
+ "link": "",
+ "icon": null,
+ "iconPosition": "",
+ "fields": null,
+ "methods": null,
+ "columns": null,
+ "label": "size M",
+ "fontSize": 16,
+ "fontFamily": "DEFAULT",
+ "language": "",
+ "color": "#0A0F25",
+ "italic": false,
+ "bold": true,
+ "underline": false,
+ "labelWidth": 47,
+ "labelHeight": 26,
+ "labelPosition": "INSIDE_MIDDLE_CENTER",
+ "zIndex": 0,
+ "level": 1
+ },
+ {
+ "id": "size L",
+ "type": "",
+ "pos": {
+ "x": 1116,
+ "y": 20
+ },
+ "width": 153,
+ "height": 131,
+ "opacity": 1,
+ "strokeDash": 0,
+ "strokeWidth": 2,
+ "borderRadius": 0,
+ "fill": "#F7F8FE",
+ "stroke": "#0D32B2",
+ "shadow": false,
+ "3d": false,
+ "multiple": false,
+ "tooltip": "",
+ "link": "",
+ "icon": null,
+ "iconPosition": "",
+ "fields": null,
+ "methods": null,
+ "columns": null,
+ "label": "size L",
+ "fontSize": 20,
+ "fontFamily": "DEFAULT",
+ "language": "",
+ "color": "#0A0F25",
+ "italic": false,
+ "bold": true,
+ "underline": false,
+ "labelWidth": 53,
+ "labelHeight": 31,
+ "labelPosition": "INSIDE_MIDDLE_CENTER",
+ "zIndex": 0,
+ "level": 1
+ },
+ {
+ "id": "size XL",
+ "type": "",
+ "pos": {
+ "x": 12,
+ "y": 17
+ },
+ "width": 177,
+ "height": 136,
+ "opacity": 1,
+ "strokeDash": 0,
+ "strokeWidth": 2,
+ "borderRadius": 0,
+ "fill": "#F7F8FE",
+ "stroke": "#0D32B2",
+ "shadow": false,
+ "3d": false,
+ "multiple": false,
+ "tooltip": "",
+ "link": "",
+ "icon": null,
+ "iconPosition": "",
+ "fields": null,
+ "methods": null,
+ "columns": null,
+ "label": "size XL",
+ "fontSize": 24,
+ "fontFamily": "DEFAULT",
+ "language": "",
+ "color": "#0A0F25",
+ "italic": false,
+ "bold": true,
+ "underline": false,
+ "labelWidth": 77,
+ "labelHeight": 36,
+ "labelPosition": "INSIDE_MIDDLE_CENTER",
+ "zIndex": 0,
+ "level": 1
+ },
+ {
+ "id": "size XXL",
+ "type": "",
+ "pos": {
+ "x": 429,
+ "y": 15
+ },
+ "width": 204,
+ "height": 141,
+ "opacity": 1,
+ "strokeDash": 0,
+ "strokeWidth": 2,
+ "borderRadius": 0,
+ "fill": "#F7F8FE",
+ "stroke": "#0D32B2",
+ "shadow": false,
+ "3d": false,
+ "multiple": false,
+ "tooltip": "",
+ "link": "",
+ "icon": null,
+ "iconPosition": "",
+ "fields": null,
+ "methods": null,
+ "columns": null,
+ "label": "size XXL",
+ "fontSize": 28,
+ "fontFamily": "DEFAULT",
+ "language": "",
+ "color": "#0A0F25",
+ "italic": false,
+ "bold": true,
+ "underline": false,
+ "labelWidth": 104,
+ "labelHeight": 41,
+ "labelPosition": "INSIDE_MIDDLE_CENTER",
+ "zIndex": 0,
+ "level": 1
+ },
+ {
+ "id": "size XXXL",
+ "type": "",
+ "pos": {
+ "x": 653,
+ "y": 12
+ },
+ "width": 237,
+ "height": 146,
+ "opacity": 1,
+ "strokeDash": 0,
+ "strokeWidth": 2,
+ "borderRadius": 0,
+ "fill": "#F7F8FE",
+ "stroke": "#0D32B2",
+ "shadow": false,
+ "3d": false,
+ "multiple": false,
+ "tooltip": "",
+ "link": "",
+ "icon": null,
+ "iconPosition": "",
+ "fields": null,
+ "methods": null,
+ "columns": null,
+ "label": "size XXXL",
+ "fontSize": 32,
+ "fontFamily": "DEFAULT",
+ "language": "",
+ "color": "#0A0F25",
+ "italic": false,
+ "bold": true,
+ "underline": false,
+ "labelWidth": 137,
+ "labelHeight": 46,
+ "labelPosition": "INSIDE_MIDDLE_CENTER",
+ "zIndex": 0,
+ "level": 1
+ },
+ {
+ "id": "custom 8",
+ "type": "",
+ "pos": {
+ "x": 1469,
+ "y": 42
+ },
+ "width": 137,
+ "height": 116,
+ "opacity": 1,
+ "strokeDash": 0,
+ "strokeWidth": 2,
+ "borderRadius": 0,
+ "fill": "#F7F8FE",
+ "stroke": "#0D32B2",
+ "shadow": false,
+ "3d": false,
+ "multiple": false,
+ "tooltip": "",
+ "link": "",
+ "icon": null,
+ "iconPosition": "",
+ "fields": null,
+ "methods": null,
+ "columns": null,
+ "label": "custom 8",
+ "fontSize": 8,
+ "fontFamily": "DEFAULT",
+ "language": "",
+ "color": "#0A0F25",
+ "italic": false,
+ "bold": true,
+ "underline": false,
+ "labelWidth": 37,
+ "labelHeight": 16,
+ "labelPosition": "INSIDE_MIDDLE_CENTER",
+ "zIndex": 0,
+ "level": 1
+ },
+ {
+ "id": "custom 12",
+ "type": "",
+ "pos": {
+ "x": 1289,
+ "y": 25
+ },
+ "width": 160,
+ "height": 121,
+ "opacity": 1,
+ "strokeDash": 0,
+ "strokeWidth": 2,
+ "borderRadius": 0,
+ "fill": "#F7F8FE",
+ "stroke": "#0D32B2",
+ "shadow": false,
+ "3d": false,
+ "multiple": false,
+ "tooltip": "",
+ "link": "",
+ "icon": null,
+ "iconPosition": "",
+ "fields": null,
+ "methods": null,
+ "columns": null,
+ "label": "custom 12",
+ "fontSize": 12,
+ "fontFamily": "DEFAULT",
+ "language": "",
+ "color": "#0A0F25",
+ "italic": false,
+ "bold": true,
+ "underline": false,
+ "labelWidth": 60,
+ "labelHeight": 21,
+ "labelPosition": "INSIDE_MIDDLE_CENTER",
+ "zIndex": 0,
+ "level": 1
+ },
+ {
+ "id": "custom 18",
+ "type": "",
+ "pos": {
+ "x": 910,
+ "y": 21
+ },
+ "width": 186,
+ "height": 128,
+ "opacity": 1,
+ "strokeDash": 0,
+ "strokeWidth": 2,
+ "borderRadius": 0,
+ "fill": "#F7F8FE",
+ "stroke": "#0D32B2",
+ "shadow": false,
+ "3d": false,
+ "multiple": false,
+ "tooltip": "",
+ "link": "",
+ "icon": null,
+ "iconPosition": "",
+ "fields": null,
+ "methods": null,
+ "columns": null,
+ "label": "custom 18",
+ "fontSize": 18,
+ "fontFamily": "DEFAULT",
+ "language": "",
+ "color": "#0A0F25",
+ "italic": false,
+ "bold": true,
+ "underline": false,
+ "labelWidth": 86,
+ "labelHeight": 28,
+ "labelPosition": "INSIDE_MIDDLE_CENTER",
+ "zIndex": 0,
+ "level": 1
+ },
+ {
+ "id": "custom 21",
+ "type": "",
+ "pos": {
+ "x": 209,
+ "y": 19
+ },
+ "width": 200,
+ "height": 132,
+ "opacity": 1,
+ "strokeDash": 0,
+ "strokeWidth": 2,
+ "borderRadius": 0,
+ "fill": "#F7F8FE",
+ "stroke": "#0D32B2",
+ "shadow": false,
+ "3d": false,
+ "multiple": false,
+ "tooltip": "",
+ "link": "",
+ "icon": null,
+ "iconPosition": "",
+ "fields": null,
+ "methods": null,
+ "columns": null,
+ "label": "custom 21",
+ "fontSize": 21,
+ "fontFamily": "DEFAULT",
+ "language": "",
+ "color": "#0A0F25",
+ "italic": false,
+ "bold": true,
+ "underline": false,
+ "labelWidth": 100,
+ "labelHeight": 32,
+ "labelPosition": "INSIDE_MIDDLE_CENTER",
+ "zIndex": 0,
+ "level": 1
+ },
+ {
+ "id": "custom 64",
+ "type": "",
+ "pos": {
+ "x": 575,
+ "y": 419
+ },
+ "width": 393,
+ "height": 186,
+ "opacity": 1,
+ "strokeDash": 0,
+ "strokeWidth": 2,
+ "borderRadius": 0,
+ "fill": "#F7F8FE",
+ "stroke": "#0D32B2",
+ "shadow": false,
+ "3d": false,
+ "multiple": false,
+ "tooltip": "",
+ "link": "",
+ "icon": null,
+ "iconPosition": "",
+ "fields": null,
+ "methods": null,
+ "columns": null,
+ "label": "custom 64",
+ "fontSize": 64,
+ "fontFamily": "DEFAULT",
+ "language": "",
+ "color": "#0A0F25",
+ "italic": false,
+ "bold": true,
+ "underline": false,
+ "labelWidth": 293,
+ "labelHeight": 86,
+ "labelPosition": "INSIDE_MIDDLE_CENTER",
+ "zIndex": 0,
+ "level": 1
+ }
+ ],
+ "connections": [
+ {
+ "id": "(custom 8 -> size XS)[0]",
+ "src": "custom 8",
+ "srcArrow": "none",
+ "srcLabel": "",
+ "dst": "size XS",
+ "dstArrow": "triangle",
+ "dstLabel": "",
+ "opacity": 1,
+ "strokeDash": 0,
+ "strokeWidth": 2,
+ "stroke": "#0D32B2",
+ "label": "custom 10",
+ "fontSize": 10,
+ "fontFamily": "DEFAULT",
+ "language": "",
+ "color": "#676C7E",
+ "italic": true,
+ "bold": false,
+ "underline": false,
+ "labelWidth": 42,
+ "labelHeight": 13,
+ "labelPosition": "INSIDE_MIDDLE_CENTER",
+ "labelPercentage": 0,
+ "route": [
+ {
+ "x": 1537.5,
+ "y": 158
+ },
+ {
+ "x": 1537.5,
+ "y": 419
+ }
+ ],
+ "animated": false,
+ "tooltip": "",
+ "icon": null,
+ "zIndex": 0
+ },
+ {
+ "id": "(size S -> size M)[0]",
+ "src": "size S",
+ "srcArrow": "none",
+ "srcLabel": "",
+ "dst": "size M",
+ "dstArrow": "triangle",
+ "dstLabel": "",
+ "opacity": 1,
+ "strokeDash": 0,
+ "strokeWidth": 2,
+ "stroke": "#0D32B2",
+ "label": "custom 15",
+ "fontSize": 15,
+ "fontFamily": "DEFAULT",
+ "language": "",
+ "color": "#676C7E",
+ "italic": true,
+ "bold": false,
+ "underline": false,
+ "labelWidth": 64,
+ "labelHeight": 19,
+ "labelPosition": "INSIDE_MIDDLE_CENTER",
+ "labelPercentage": 0,
+ "route": [
+ {
+ "x": 1703.5,
+ "y": 158
+ },
+ {
+ "x": 1703.5,
+ "y": 419
+ }
+ ],
+ "animated": false,
+ "tooltip": "",
+ "icon": null,
+ "zIndex": 0
+ },
+ {
+ "id": "(size XXXL -> custom 64)[0]",
+ "src": "size XXXL",
+ "srcArrow": "none",
+ "srcLabel": "",
+ "dst": "custom 64",
+ "dstArrow": "triangle",
+ "dstLabel": "",
+ "opacity": 1,
+ "strokeDash": 0,
+ "strokeWidth": 2,
+ "stroke": "#0D32B2",
+ "label": "custom 48",
+ "fontSize": 48,
+ "fontFamily": "DEFAULT",
+ "language": "",
+ "color": "#676C7E",
+ "italic": true,
+ "bold": false,
+ "underline": false,
+ "labelWidth": 199,
+ "labelHeight": 61,
+ "labelPosition": "INSIDE_MIDDLE_CENTER",
+ "labelPercentage": 0,
+ "route": [
+ {
+ "x": 771.5,
+ "y": 158
+ },
+ {
+ "x": 771.5,
+ "y": 419
+ }
+ ],
+ "animated": false,
+ "tooltip": "",
+ "icon": null,
+ "zIndex": 0
+ }
+ ]
+}
diff --git a/e2etests/testdata/stable/font_sizes/elk/sketch.exp.svg b/e2etests/testdata/stable/font_sizes/elk/sketch.exp.svg
new file mode 100644
index 000000000..4b03d1152
--- /dev/null
+++ b/e2etests/testdata/stable/font_sizes/elk/sketch.exp.svg
@@ -0,0 +1,40 @@
+
+
\ No newline at end of file
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 c304942de..4d1de50b6 100644
--- a/e2etests/testdata/stable/giant_markdown_test/dagre/board.exp.json
+++ b/e2etests/testdata/stable/giant_markdown_test/dagre/board.exp.json
@@ -10,7 +10,6 @@
},
"width": 3051,
"height": 4848,
- "level": 1,
"opacity": 1,
"strokeDash": 0,
"strokeWidth": 2,
@@ -36,7 +35,9 @@
"bold": true,
"underline": false,
"labelWidth": 3051,
- "labelHeight": 4848
+ "labelHeight": 4848,
+ "zIndex": 0,
+ "level": 1
},
{
"id": "a",
@@ -47,7 +48,6 @@
},
"width": 113,
"height": 126,
- "level": 1,
"opacity": 1,
"strokeDash": 0,
"strokeWidth": 2,
@@ -74,7 +74,9 @@
"underline": false,
"labelWidth": 13,
"labelHeight": 26,
- "labelPosition": "INSIDE_MIDDLE_CENTER"
+ "labelPosition": "INSIDE_MIDDLE_CENTER",
+ "zIndex": 0,
+ "level": 1
},
{
"id": "b",
@@ -85,7 +87,6 @@
},
"width": 113,
"height": 126,
- "level": 1,
"opacity": 1,
"strokeDash": 0,
"strokeWidth": 2,
@@ -112,7 +113,9 @@
"underline": false,
"labelWidth": 13,
"labelHeight": 26,
- "labelPosition": "INSIDE_MIDDLE_CENTER"
+ "labelPosition": "INSIDE_MIDDLE_CENTER",
+ "zIndex": 0,
+ "level": 1
}
],
"connections": [
@@ -161,7 +164,8 @@
"isCurve": true,
"animated": false,
"tooltip": "",
- "icon": null
+ "icon": null,
+ "zIndex": 0
},
{
"id": "(md -> b)[0]",
@@ -208,7 +212,8 @@
"isCurve": true,
"animated": false,
"tooltip": "",
- "icon": null
+ "icon": null,
+ "zIndex": 0
}
]
}
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 d9d6bd7ea..3fa5d6c9d 100644
--- a/e2etests/testdata/stable/giant_markdown_test/elk/board.exp.json
+++ b/e2etests/testdata/stable/giant_markdown_test/elk/board.exp.json
@@ -10,7 +10,6 @@
},
"width": 3051,
"height": 4848,
- "level": 1,
"opacity": 1,
"strokeDash": 0,
"strokeWidth": 2,
@@ -36,7 +35,9 @@
"bold": true,
"underline": false,
"labelWidth": 3051,
- "labelHeight": 4848
+ "labelHeight": 4848,
+ "zIndex": 0,
+ "level": 1
},
{
"id": "a",
@@ -47,7 +48,6 @@
},
"width": 113,
"height": 126,
- "level": 1,
"opacity": 1,
"strokeDash": 0,
"strokeWidth": 2,
@@ -74,7 +74,9 @@
"underline": false,
"labelWidth": 13,
"labelHeight": 26,
- "labelPosition": "INSIDE_MIDDLE_CENTER"
+ "labelPosition": "INSIDE_MIDDLE_CENTER",
+ "zIndex": 0,
+ "level": 1
},
{
"id": "b",
@@ -85,7 +87,6 @@
},
"width": 113,
"height": 126,
- "level": 1,
"opacity": 1,
"strokeDash": 0,
"strokeWidth": 2,
@@ -112,7 +113,9 @@
"underline": false,
"labelWidth": 13,
"labelHeight": 26,
- "labelPosition": "INSIDE_MIDDLE_CENTER"
+ "labelPosition": "INSIDE_MIDDLE_CENTER",
+ "zIndex": 0,
+ "level": 1
}
],
"connections": [
@@ -152,7 +155,8 @@
],
"animated": false,
"tooltip": "",
- "icon": null
+ "icon": null,
+ "zIndex": 0
},
{
"id": "(md -> b)[0]",
@@ -190,7 +194,8 @@
],
"animated": false,
"tooltip": "",
- "icon": null
+ "icon": null,
+ "zIndex": 0
}
]
}
diff --git a/e2etests/testdata/stable/hr/dagre/board.exp.json b/e2etests/testdata/stable/hr/dagre/board.exp.json
index 59e823a02..617660858 100644
--- a/e2etests/testdata/stable/hr/dagre/board.exp.json
+++ b/e2etests/testdata/stable/hr/dagre/board.exp.json
@@ -10,7 +10,6 @@
},
"width": 738,
"height": 134,
- "level": 1,
"opacity": 1,
"strokeDash": 0,
"strokeWidth": 2,
@@ -36,7 +35,9 @@
"bold": true,
"underline": false,
"labelWidth": 738,
- "labelHeight": 134
+ "labelHeight": 134,
+ "zIndex": 0,
+ "level": 1
},
{
"id": "a",
@@ -47,7 +48,6 @@
},
"width": 113,
"height": 126,
- "level": 1,
"opacity": 1,
"strokeDash": 0,
"strokeWidth": 2,
@@ -74,7 +74,9 @@
"underline": false,
"labelWidth": 13,
"labelHeight": 26,
- "labelPosition": "INSIDE_MIDDLE_CENTER"
+ "labelPosition": "INSIDE_MIDDLE_CENTER",
+ "zIndex": 0,
+ "level": 1
},
{
"id": "b",
@@ -85,7 +87,6 @@
},
"width": 113,
"height": 126,
- "level": 1,
"opacity": 1,
"strokeDash": 0,
"strokeWidth": 2,
@@ -112,7 +113,9 @@
"underline": false,
"labelWidth": 13,
"labelHeight": 26,
- "labelPosition": "INSIDE_MIDDLE_CENTER"
+ "labelPosition": "INSIDE_MIDDLE_CENTER",
+ "zIndex": 0,
+ "level": 1
}
],
"connections": [
@@ -161,7 +164,8 @@
"isCurve": true,
"animated": false,
"tooltip": "",
- "icon": null
+ "icon": null,
+ "zIndex": 0
},
{
"id": "(md -> b)[0]",
@@ -208,7 +212,8 @@
"isCurve": true,
"animated": false,
"tooltip": "",
- "icon": null
+ "icon": null,
+ "zIndex": 0
}
]
}
diff --git a/e2etests/testdata/stable/hr/elk/board.exp.json b/e2etests/testdata/stable/hr/elk/board.exp.json
index e87cc8d55..a677c56ac 100644
--- a/e2etests/testdata/stable/hr/elk/board.exp.json
+++ b/e2etests/testdata/stable/hr/elk/board.exp.json
@@ -10,7 +10,6 @@
},
"width": 738,
"height": 134,
- "level": 1,
"opacity": 1,
"strokeDash": 0,
"strokeWidth": 2,
@@ -36,7 +35,9 @@
"bold": true,
"underline": false,
"labelWidth": 738,
- "labelHeight": 134
+ "labelHeight": 134,
+ "zIndex": 0,
+ "level": 1
},
{
"id": "a",
@@ -47,7 +48,6 @@
},
"width": 113,
"height": 126,
- "level": 1,
"opacity": 1,
"strokeDash": 0,
"strokeWidth": 2,
@@ -74,7 +74,9 @@
"underline": false,
"labelWidth": 13,
"labelHeight": 26,
- "labelPosition": "INSIDE_MIDDLE_CENTER"
+ "labelPosition": "INSIDE_MIDDLE_CENTER",
+ "zIndex": 0,
+ "level": 1
},
{
"id": "b",
@@ -85,7 +87,6 @@
},
"width": 113,
"height": 126,
- "level": 1,
"opacity": 1,
"strokeDash": 0,
"strokeWidth": 2,
@@ -112,7 +113,9 @@
"underline": false,
"labelWidth": 13,
"labelHeight": 26,
- "labelPosition": "INSIDE_MIDDLE_CENTER"
+ "labelPosition": "INSIDE_MIDDLE_CENTER",
+ "zIndex": 0,
+ "level": 1
}
],
"connections": [
@@ -152,7 +155,8 @@
],
"animated": false,
"tooltip": "",
- "icon": null
+ "icon": null,
+ "zIndex": 0
},
{
"id": "(md -> b)[0]",
@@ -190,7 +194,8 @@
],
"animated": false,
"tooltip": "",
- "icon": null
+ "icon": null,
+ "zIndex": 0
}
]
}
diff --git a/e2etests/testdata/stable/images/dagre/board.exp.json b/e2etests/testdata/stable/images/dagre/board.exp.json
index e56ad310a..d7b9011d3 100644
--- a/e2etests/testdata/stable/images/dagre/board.exp.json
+++ b/e2etests/testdata/stable/images/dagre/board.exp.json
@@ -10,7 +10,6 @@
},
"width": 128,
"height": 128,
- "level": 1,
"opacity": 1,
"strokeDash": 0,
"strokeWidth": 2,
@@ -48,7 +47,9 @@
"underline": false,
"labelWidth": 13,
"labelHeight": 26,
- "labelPosition": "OUTSIDE_TOP_CENTER"
+ "labelPosition": "OUTSIDE_TOP_CENTER",
+ "zIndex": 0,
+ "level": 1
},
{
"id": "b",
@@ -59,7 +60,6 @@
},
"width": 128,
"height": 128,
- "level": 1,
"opacity": 1,
"strokeDash": 0,
"strokeWidth": 2,
@@ -97,7 +97,9 @@
"underline": false,
"labelWidth": 13,
"labelHeight": 26,
- "labelPosition": "OUTSIDE_TOP_CENTER"
+ "labelPosition": "OUTSIDE_TOP_CENTER",
+ "zIndex": 0,
+ "level": 1
}
],
"connections": [
@@ -146,7 +148,8 @@
"isCurve": true,
"animated": false,
"tooltip": "",
- "icon": null
+ "icon": null,
+ "zIndex": 0
}
]
}
diff --git a/e2etests/testdata/stable/images/elk/board.exp.json b/e2etests/testdata/stable/images/elk/board.exp.json
index ba0e242c0..898a6f5dd 100644
--- a/e2etests/testdata/stable/images/elk/board.exp.json
+++ b/e2etests/testdata/stable/images/elk/board.exp.json
@@ -10,7 +10,6 @@
},
"width": 128,
"height": 128,
- "level": 1,
"opacity": 1,
"strokeDash": 0,
"strokeWidth": 2,
@@ -48,7 +47,9 @@
"underline": false,
"labelWidth": 13,
"labelHeight": 26,
- "labelPosition": "OUTSIDE_TOP_CENTER"
+ "labelPosition": "OUTSIDE_TOP_CENTER",
+ "zIndex": 0,
+ "level": 1
},
{
"id": "b",
@@ -59,7 +60,6 @@
},
"width": 128,
"height": 128,
- "level": 1,
"opacity": 1,
"strokeDash": 0,
"strokeWidth": 2,
@@ -97,7 +97,9 @@
"underline": false,
"labelWidth": 13,
"labelHeight": 26,
- "labelPosition": "OUTSIDE_TOP_CENTER"
+ "labelPosition": "OUTSIDE_TOP_CENTER",
+ "zIndex": 0,
+ "level": 1
}
],
"connections": [
@@ -137,7 +139,8 @@
],
"animated": false,
"tooltip": "",
- "icon": null
+ "icon": null,
+ "zIndex": 0
}
]
}
diff --git a/e2etests/testdata/stable/investigate/dagre/board.exp.json b/e2etests/testdata/stable/investigate/dagre/board.exp.json
index 4c216559b..d175c156a 100644
--- a/e2etests/testdata/stable/investigate/dagre/board.exp.json
+++ b/e2etests/testdata/stable/investigate/dagre/board.exp.json
@@ -10,7 +10,6 @@
},
"width": 122,
"height": 126,
- "level": 1,
"opacity": 1,
"strokeDash": 0,
"strokeWidth": 2,
@@ -37,7 +36,9 @@
"underline": false,
"labelWidth": 22,
"labelHeight": 26,
- "labelPosition": "INSIDE_MIDDLE_CENTER"
+ "labelPosition": "INSIDE_MIDDLE_CENTER",
+ "zIndex": 0,
+ "level": 1
},
{
"id": "bb",
@@ -48,7 +49,6 @@
},
"width": 123,
"height": 126,
- "level": 1,
"opacity": 1,
"strokeDash": 0,
"strokeWidth": 2,
@@ -75,7 +75,9 @@
"underline": false,
"labelWidth": 23,
"labelHeight": 26,
- "labelPosition": "INSIDE_MIDDLE_CENTER"
+ "labelPosition": "INSIDE_MIDDLE_CENTER",
+ "zIndex": 0,
+ "level": 1
},
{
"id": "cc",
@@ -86,7 +88,6 @@
},
"width": 121,
"height": 126,
- "level": 1,
"opacity": 1,
"strokeDash": 0,
"strokeWidth": 2,
@@ -113,7 +114,9 @@
"underline": false,
"labelWidth": 21,
"labelHeight": 26,
- "labelPosition": "INSIDE_MIDDLE_CENTER"
+ "labelPosition": "INSIDE_MIDDLE_CENTER",
+ "zIndex": 0,
+ "level": 1
},
{
"id": "dd",
@@ -124,7 +127,6 @@
},
"width": 577,
"height": 226,
- "level": 1,
"opacity": 1,
"strokeDash": 0,
"strokeWidth": 2,
@@ -151,7 +153,9 @@
"underline": false,
"labelWidth": 34,
"labelHeight": 41,
- "labelPosition": "INSIDE_TOP_CENTER"
+ "labelPosition": "INSIDE_TOP_CENTER",
+ "zIndex": 0,
+ "level": 1
},
{
"id": "dd.ee",
@@ -162,7 +166,6 @@
},
"width": 122,
"height": 126,
- "level": 2,
"opacity": 1,
"strokeDash": 0,
"strokeWidth": 2,
@@ -189,7 +192,9 @@
"underline": false,
"labelWidth": 22,
"labelHeight": 26,
- "labelPosition": "INSIDE_MIDDLE_CENTER"
+ "labelPosition": "INSIDE_MIDDLE_CENTER",
+ "zIndex": 0,
+ "level": 2
},
{
"id": "ll",
@@ -200,7 +205,6 @@
},
"width": 545,
"height": 457,
- "level": 1,
"opacity": 1,
"strokeDash": 0,
"strokeWidth": 2,
@@ -227,7 +231,9 @@
"underline": false,
"labelWidth": 18,
"labelHeight": 41,
- "labelPosition": "INSIDE_TOP_CENTER"
+ "labelPosition": "INSIDE_TOP_CENTER",
+ "zIndex": 0,
+ "level": 1
},
{
"id": "ll.mm",
@@ -238,7 +244,6 @@
},
"width": 131,
"height": 131,
- "level": 2,
"opacity": 1,
"strokeDash": 0,
"strokeWidth": 2,
@@ -265,7 +270,9 @@
"underline": false,
"labelWidth": 31,
"labelHeight": 26,
- "labelPosition": "INSIDE_MIDDLE_CENTER"
+ "labelPosition": "INSIDE_MIDDLE_CENTER",
+ "zIndex": 0,
+ "level": 2
},
{
"id": "ff",
@@ -276,7 +283,6 @@
},
"width": 567,
"height": 457,
- "level": 1,
"opacity": 1,
"strokeDash": 0,
"strokeWidth": 2,
@@ -303,7 +309,9 @@
"underline": false,
"labelWidth": 23,
"labelHeight": 41,
- "labelPosition": "INSIDE_TOP_CENTER"
+ "labelPosition": "INSIDE_TOP_CENTER",
+ "zIndex": 0,
+ "level": 1
},
{
"id": "ff.mm",
@@ -314,7 +322,6 @@
},
"width": 131,
"height": 131,
- "level": 2,
"opacity": 1,
"strokeDash": 0,
"strokeWidth": 2,
@@ -341,7 +348,9 @@
"underline": false,
"labelWidth": 31,
"labelHeight": 26,
- "labelPosition": "INSIDE_MIDDLE_CENTER"
+ "labelPosition": "INSIDE_MIDDLE_CENTER",
+ "zIndex": 0,
+ "level": 2
},
{
"id": "ff.gg",
@@ -352,7 +361,6 @@
},
"width": 123,
"height": 126,
- "level": 2,
"opacity": 1,
"strokeDash": 0,
"strokeWidth": 2,
@@ -379,7 +387,9 @@
"underline": false,
"labelWidth": 23,
"labelHeight": 26,
- "labelPosition": "INSIDE_MIDDLE_CENTER"
+ "labelPosition": "INSIDE_MIDDLE_CENTER",
+ "zIndex": 0,
+ "level": 2
},
{
"id": "dd.hh",
@@ -390,7 +400,6 @@
},
"width": 123,
"height": 126,
- "level": 2,
"opacity": 1,
"strokeDash": 0,
"strokeWidth": 2,
@@ -417,7 +426,9 @@
"underline": false,
"labelWidth": 23,
"labelHeight": 26,
- "labelPosition": "INSIDE_MIDDLE_CENTER"
+ "labelPosition": "INSIDE_MIDDLE_CENTER",
+ "zIndex": 0,
+ "level": 2
},
{
"id": "ww",
@@ -428,7 +439,6 @@
},
"width": 131,
"height": 126,
- "level": 1,
"opacity": 1,
"strokeDash": 0,
"strokeWidth": 2,
@@ -466,7 +476,9 @@
"underline": false,
"labelWidth": 31,
"labelHeight": 26,
- "labelPosition": "INSIDE_MIDDLE_CENTER"
+ "labelPosition": "INSIDE_MIDDLE_CENTER",
+ "zIndex": 0,
+ "level": 1
},
{
"id": "yy",
@@ -477,7 +489,6 @@
},
"width": 323,
"height": 452,
- "level": 1,
"opacity": 1,
"strokeDash": 0,
"strokeWidth": 2,
@@ -504,7 +515,9 @@
"underline": false,
"labelWidth": 32,
"labelHeight": 41,
- "labelPosition": "INSIDE_TOP_CENTER"
+ "labelPosition": "INSIDE_TOP_CENTER",
+ "zIndex": 0,
+ "level": 1
},
{
"id": "yy.zz",
@@ -515,7 +528,6 @@
},
"width": 120,
"height": 126,
- "level": 2,
"opacity": 1,
"strokeDash": 0,
"strokeWidth": 2,
@@ -553,7 +565,9 @@
"underline": false,
"labelWidth": 20,
"labelHeight": 26,
- "labelPosition": "INSIDE_MIDDLE_CENTER"
+ "labelPosition": "INSIDE_MIDDLE_CENTER",
+ "zIndex": 0,
+ "level": 2
},
{
"id": "ad",
@@ -564,7 +578,6 @@
},
"width": 123,
"height": 126,
- "level": 1,
"opacity": 1,
"strokeDash": 0,
"strokeWidth": 2,
@@ -591,7 +604,9 @@
"underline": false,
"labelWidth": 23,
"labelHeight": 26,
- "labelPosition": "INSIDE_MIDDLE_CENTER"
+ "labelPosition": "INSIDE_MIDDLE_CENTER",
+ "zIndex": 0,
+ "level": 1
},
{
"id": "nn",
@@ -602,7 +617,6 @@
},
"width": 769,
"height": 226,
- "level": 1,
"opacity": 1,
"strokeDash": 0,
"strokeWidth": 2,
@@ -629,7 +643,9 @@
"underline": false,
"labelWidth": 33,
"labelHeight": 41,
- "labelPosition": "INSIDE_TOP_CENTER"
+ "labelPosition": "INSIDE_TOP_CENTER",
+ "zIndex": 0,
+ "level": 1
},
{
"id": "ii",
@@ -640,7 +656,6 @@
},
"width": 114,
"height": 126,
- "level": 1,
"opacity": 1,
"strokeDash": 0,
"strokeWidth": 2,
@@ -667,7 +682,9 @@
"underline": false,
"labelWidth": 14,
"labelHeight": 26,
- "labelPosition": "INSIDE_MIDDLE_CENTER"
+ "labelPosition": "INSIDE_MIDDLE_CENTER",
+ "zIndex": 0,
+ "level": 1
},
{
"id": "jj",
@@ -678,7 +695,6 @@
},
"width": 115,
"height": 126,
- "level": 1,
"opacity": 1,
"strokeDash": 0,
"strokeWidth": 2,
@@ -705,7 +721,9 @@
"underline": false,
"labelWidth": 15,
"labelHeight": 26,
- "labelPosition": "INSIDE_MIDDLE_CENTER"
+ "labelPosition": "INSIDE_MIDDLE_CENTER",
+ "zIndex": 0,
+ "level": 1
},
{
"id": "kk",
@@ -716,7 +734,6 @@
},
"width": 122,
"height": 126,
- "level": 1,
"opacity": 1,
"strokeDash": 0,
"strokeWidth": 2,
@@ -743,7 +760,9 @@
"underline": false,
"labelWidth": 22,
"labelHeight": 26,
- "labelPosition": "INSIDE_MIDDLE_CENTER"
+ "labelPosition": "INSIDE_MIDDLE_CENTER",
+ "zIndex": 0,
+ "level": 1
},
{
"id": "nn.oo",
@@ -754,7 +773,6 @@
},
"width": 123,
"height": 126,
- "level": 2,
"opacity": 1,
"strokeDash": 0,
"strokeWidth": 2,
@@ -781,7 +799,9 @@
"underline": false,
"labelWidth": 23,
"labelHeight": 26,
- "labelPosition": "INSIDE_MIDDLE_CENTER"
+ "labelPosition": "INSIDE_MIDDLE_CENTER",
+ "zIndex": 0,
+ "level": 2
},
{
"id": "ff.pp",
@@ -792,7 +812,6 @@
},
"width": 123,
"height": 126,
- "level": 2,
"opacity": 1,
"strokeDash": 0,
"strokeWidth": 2,
@@ -819,7 +838,9 @@
"underline": false,
"labelWidth": 23,
"labelHeight": 26,
- "labelPosition": "INSIDE_MIDDLE_CENTER"
+ "labelPosition": "INSIDE_MIDDLE_CENTER",
+ "zIndex": 0,
+ "level": 2
},
{
"id": "ll.qq",
@@ -830,7 +851,6 @@
},
"width": 124,
"height": 126,
- "level": 2,
"opacity": 1,
"strokeDash": 0,
"strokeWidth": 2,
@@ -857,7 +877,9 @@
"underline": false,
"labelWidth": 24,
"labelHeight": 26,
- "labelPosition": "INSIDE_MIDDLE_CENTER"
+ "labelPosition": "INSIDE_MIDDLE_CENTER",
+ "zIndex": 0,
+ "level": 2
},
{
"id": "ll.rr",
@@ -868,7 +890,6 @@
},
"width": 118,
"height": 126,
- "level": 2,
"opacity": 1,
"strokeDash": 0,
"strokeWidth": 2,
@@ -895,7 +916,9 @@
"underline": false,
"labelWidth": 18,
"labelHeight": 26,
- "labelPosition": "INSIDE_MIDDLE_CENTER"
+ "labelPosition": "INSIDE_MIDDLE_CENTER",
+ "zIndex": 0,
+ "level": 2
},
{
"id": "ss",
@@ -906,7 +929,6 @@
},
"width": 218,
"height": 226,
- "level": 1,
"opacity": 1,
"strokeDash": 0,
"strokeWidth": 2,
@@ -933,7 +955,9 @@
"underline": false,
"labelWidth": 28,
"labelHeight": 41,
- "labelPosition": "INSIDE_TOP_CENTER"
+ "labelPosition": "INSIDE_TOP_CENTER",
+ "zIndex": 0,
+ "level": 1
},
{
"id": "ss.tt",
@@ -944,7 +968,6 @@
},
"width": 118,
"height": 126,
- "level": 2,
"opacity": 1,
"strokeDash": 0,
"strokeWidth": 2,
@@ -971,7 +994,9 @@
"underline": false,
"labelWidth": 18,
"labelHeight": 26,
- "labelPosition": "INSIDE_MIDDLE_CENTER"
+ "labelPosition": "INSIDE_MIDDLE_CENTER",
+ "zIndex": 0,
+ "level": 2
},
{
"id": "uu",
@@ -982,7 +1007,6 @@
},
"width": 223,
"height": 226,
- "level": 1,
"opacity": 1,
"strokeDash": 0,
"strokeWidth": 2,
@@ -1009,7 +1033,9 @@
"underline": false,
"labelWidth": 32,
"labelHeight": 41,
- "labelPosition": "INSIDE_TOP_CENTER"
+ "labelPosition": "INSIDE_TOP_CENTER",
+ "zIndex": 0,
+ "level": 1
},
{
"id": "uu.vv",
@@ -1020,7 +1046,6 @@
},
"width": 123,
"height": 126,
- "level": 2,
"opacity": 1,
"strokeDash": 0,
"strokeWidth": 2,
@@ -1047,7 +1072,9 @@
"underline": false,
"labelWidth": 23,
"labelHeight": 26,
- "labelPosition": "INSIDE_MIDDLE_CENTER"
+ "labelPosition": "INSIDE_MIDDLE_CENTER",
+ "zIndex": 0,
+ "level": 2
},
{
"id": "rm",
@@ -1058,7 +1085,6 @@
},
"width": 124,
"height": 126,
- "level": 1,
"opacity": 1,
"strokeDash": 0,
"strokeWidth": 2,
@@ -1085,7 +1111,9 @@
"underline": false,
"labelWidth": 24,
"labelHeight": 26,
- "labelPosition": "INSIDE_MIDDLE_CENTER"
+ "labelPosition": "INSIDE_MIDDLE_CENTER",
+ "zIndex": 0,
+ "level": 1
},
{
"id": "nn.xx",
@@ -1096,7 +1124,6 @@
},
"width": 122,
"height": 126,
- "level": 2,
"opacity": 1,
"strokeDash": 0,
"strokeWidth": 2,
@@ -1123,7 +1150,9 @@
"underline": false,
"labelWidth": 22,
"labelHeight": 26,
- "labelPosition": "INSIDE_MIDDLE_CENTER"
+ "labelPosition": "INSIDE_MIDDLE_CENTER",
+ "zIndex": 0,
+ "level": 2
},
{
"id": "yy.ab",
@@ -1134,7 +1163,6 @@
},
"width": 123,
"height": 126,
- "level": 2,
"opacity": 1,
"strokeDash": 0,
"strokeWidth": 2,
@@ -1161,7 +1189,9 @@
"underline": false,
"labelWidth": 23,
"labelHeight": 26,
- "labelPosition": "INSIDE_MIDDLE_CENTER"
+ "labelPosition": "INSIDE_MIDDLE_CENTER",
+ "zIndex": 0,
+ "level": 2
},
{
"id": "nn.ac",
@@ -1172,7 +1202,6 @@
},
"width": 122,
"height": 126,
- "level": 2,
"opacity": 1,
"strokeDash": 0,
"strokeWidth": 2,
@@ -1199,7 +1228,9 @@
"underline": false,
"labelWidth": 22,
"labelHeight": 26,
- "labelPosition": "INSIDE_MIDDLE_CENTER"
+ "labelPosition": "INSIDE_MIDDLE_CENTER",
+ "zIndex": 0,
+ "level": 2
}
],
"connections": [
@@ -1248,7 +1279,8 @@
"isCurve": true,
"animated": false,
"tooltip": "",
- "icon": null
+ "icon": null,
+ "zIndex": 0
},
{
"id": "(bb -- cc)[0]",
@@ -1295,7 +1327,8 @@
"isCurve": true,
"animated": false,
"tooltip": "",
- "icon": null
+ "icon": null,
+ "zIndex": 0
},
{
"id": "(aa -> dd.ee)[0]",
@@ -1390,7 +1423,8 @@
"isCurve": true,
"animated": false,
"tooltip": "",
- "icon": null
+ "icon": null,
+ "zIndex": 0
},
{
"id": "(bb -> ff.gg)[0]",
@@ -1653,7 +1687,8 @@
"isCurve": true,
"animated": false,
"tooltip": "",
- "icon": null
+ "icon": null,
+ "zIndex": 0
},
{
"id": "(cc -> dd.hh)[0]",
@@ -1700,7 +1735,8 @@
"isCurve": true,
"animated": false,
"tooltip": "",
- "icon": null
+ "icon": null,
+ "zIndex": 0
},
{
"id": "(dd.ee -> ii)[0]",
@@ -1747,7 +1783,8 @@
"isCurve": true,
"animated": false,
"tooltip": "",
- "icon": null
+ "icon": null,
+ "zIndex": 0
},
{
"id": "(ii -- jj)[0]",
@@ -1794,7 +1831,8 @@
"isCurve": true,
"animated": false,
"tooltip": "",
- "icon": null
+ "icon": null,
+ "zIndex": 0
},
{
"id": "(jj -> kk)[0]",
@@ -1853,7 +1891,8 @@
"isCurve": true,
"animated": false,
"tooltip": "",
- "icon": null
+ "icon": null,
+ "zIndex": 0
},
{
"id": "(kk -> ff.mm)[0]",
@@ -1960,7 +1999,8 @@
"isCurve": true,
"animated": false,
"tooltip": "",
- "icon": null
+ "icon": null,
+ "zIndex": 0
},
{
"id": "(ff.mm -> ll.mm)[0]",
@@ -2043,7 +2083,8 @@
"isCurve": true,
"animated": false,
"tooltip": "",
- "icon": null
+ "icon": null,
+ "zIndex": 0
},
{
"id": "(ll.mm -> nn.oo)[0]",
@@ -2174,7 +2215,8 @@
"isCurve": true,
"animated": false,
"tooltip": "",
- "icon": null
+ "icon": null,
+ "zIndex": 0
},
{
"id": "ff.(gg -> pp)[0]",
@@ -2221,7 +2263,8 @@
"isCurve": true,
"animated": false,
"tooltip": "",
- "icon": null
+ "icon": null,
+ "zIndex": 0
},
{
"id": "(ff.pp -> ll.qq)[0]",
@@ -2280,7 +2323,8 @@
"isCurve": true,
"animated": false,
"tooltip": "",
- "icon": null
+ "icon": null,
+ "zIndex": 0
},
{
"id": "ll.(qq -> rr)[0]",
@@ -2327,7 +2371,8 @@
"isCurve": true,
"animated": false,
"tooltip": "",
- "icon": null
+ "icon": null,
+ "zIndex": 0
},
{
"id": "(dd.hh -> ss.tt)[0]",
@@ -2410,7 +2455,8 @@
"isCurve": true,
"animated": false,
"tooltip": "",
- "icon": null
+ "icon": null,
+ "zIndex": 0
},
{
"id": "(ss.tt -> uu.vv)[0]",
@@ -2469,7 +2515,8 @@
"isCurve": true,
"animated": false,
"tooltip": "",
- "icon": null
+ "icon": null,
+ "zIndex": 0
},
{
"id": "(kk -> ww)[0]",
@@ -2516,7 +2563,8 @@
"isCurve": true,
"animated": false,
"tooltip": "",
- "icon": null
+ "icon": null,
+ "zIndex": 0
},
{
"id": "(uu.vv -> ww)[0]",
@@ -2563,7 +2611,8 @@
"isCurve": true,
"animated": false,
"tooltip": "",
- "icon": null
+ "icon": null,
+ "zIndex": 0
},
{
"id": "(ww -> rm)[0]",
@@ -2706,7 +2755,8 @@
"isCurve": true,
"animated": false,
"tooltip": "",
- "icon": null
+ "icon": null,
+ "zIndex": 0
},
{
"id": "(rm -> nn.xx)[0]",
@@ -2837,7 +2887,8 @@
"isCurve": true,
"animated": false,
"tooltip": "",
- "icon": null
+ "icon": null,
+ "zIndex": 0
},
{
"id": "(ll.rr -> yy.zz)[0]",
@@ -2896,7 +2947,8 @@
"isCurve": true,
"animated": false,
"tooltip": "",
- "icon": null
+ "icon": null,
+ "zIndex": 0
},
{
"id": "(rm -> yy.zz)[0]",
@@ -2955,7 +3007,8 @@
"isCurve": true,
"animated": false,
"tooltip": "",
- "icon": null
+ "icon": null,
+ "zIndex": 0
},
{
"id": "yy.(zz -> ab)[0]",
@@ -3002,7 +3055,8 @@
"isCurve": true,
"animated": false,
"tooltip": "",
- "icon": null
+ "icon": null,
+ "zIndex": 0
},
{
"id": "(yy.ab -> nn.ac)[0]",
@@ -3061,7 +3115,8 @@
"isCurve": true,
"animated": false,
"tooltip": "",
- "icon": null
+ "icon": null,
+ "zIndex": 0
},
{
"id": "(nn.ac -> ad)[0]",
@@ -3108,7 +3163,8 @@
"isCurve": true,
"animated": false,
"tooltip": "",
- "icon": null
+ "icon": null,
+ "zIndex": 0
},
{
"id": "(ww -> ff.gg)[0]",
@@ -3155,7 +3211,8 @@
"isCurve": true,
"animated": false,
"tooltip": "",
- "icon": null
+ "icon": null,
+ "zIndex": 0
}
]
}
diff --git a/e2etests/testdata/stable/investigate/elk/board.exp.json b/e2etests/testdata/stable/investigate/elk/board.exp.json
index 71de56eb3..f01c5d9b1 100644
--- a/e2etests/testdata/stable/investigate/elk/board.exp.json
+++ b/e2etests/testdata/stable/investigate/elk/board.exp.json
@@ -10,7 +10,6 @@
},
"width": 122,
"height": 126,
- "level": 1,
"opacity": 1,
"strokeDash": 0,
"strokeWidth": 2,
@@ -37,7 +36,9 @@
"underline": false,
"labelWidth": 22,
"labelHeight": 26,
- "labelPosition": "INSIDE_MIDDLE_CENTER"
+ "labelPosition": "INSIDE_MIDDLE_CENTER",
+ "zIndex": 0,
+ "level": 1
},
{
"id": "bb",
@@ -48,7 +49,6 @@
},
"width": 123,
"height": 126,
- "level": 1,
"opacity": 1,
"strokeDash": 0,
"strokeWidth": 2,
@@ -75,7 +75,9 @@
"underline": false,
"labelWidth": 23,
"labelHeight": 26,
- "labelPosition": "INSIDE_MIDDLE_CENTER"
+ "labelPosition": "INSIDE_MIDDLE_CENTER",
+ "zIndex": 0,
+ "level": 1
},
{
"id": "cc",
@@ -86,7 +88,6 @@
},
"width": 121,
"height": 126,
- "level": 1,
"opacity": 1,
"strokeDash": 0,
"strokeWidth": 2,
@@ -113,7 +114,9 @@
"underline": false,
"labelWidth": 21,
"labelHeight": 26,
- "labelPosition": "INSIDE_MIDDLE_CENTER"
+ "labelPosition": "INSIDE_MIDDLE_CENTER",
+ "zIndex": 0,
+ "level": 1
},
{
"id": "dd",
@@ -124,7 +127,6 @@
},
"width": 415,
"height": 276,
- "level": 1,
"opacity": 1,
"strokeDash": 0,
"strokeWidth": 2,
@@ -151,7 +153,9 @@
"underline": false,
"labelWidth": 34,
"labelHeight": 41,
- "labelPosition": "INSIDE_TOP_CENTER"
+ "labelPosition": "INSIDE_TOP_CENTER",
+ "zIndex": 0,
+ "level": 1
},
{
"id": "dd.ee",
@@ -162,7 +166,6 @@
},
"width": 122,
"height": 126,
- "level": 2,
"opacity": 1,
"strokeDash": 0,
"strokeWidth": 2,
@@ -189,7 +192,9 @@
"underline": false,
"labelWidth": 22,
"labelHeight": 26,
- "labelPosition": "INSIDE_MIDDLE_CENTER"
+ "labelPosition": "INSIDE_MIDDLE_CENTER",
+ "zIndex": 0,
+ "level": 2
},
{
"id": "ll",
@@ -200,7 +205,6 @@
},
"width": 425,
"height": 427,
- "level": 1,
"opacity": 1,
"strokeDash": 0,
"strokeWidth": 2,
@@ -227,7 +231,9 @@
"underline": false,
"labelWidth": 18,
"labelHeight": 41,
- "labelPosition": "INSIDE_TOP_CENTER"
+ "labelPosition": "INSIDE_TOP_CENTER",
+ "zIndex": 0,
+ "level": 1
},
{
"id": "ll.mm",
@@ -238,7 +244,6 @@
},
"width": 131,
"height": 131,
- "level": 2,
"opacity": 1,
"strokeDash": 0,
"strokeWidth": 2,
@@ -265,7 +270,9 @@
"underline": false,
"labelWidth": 31,
"labelHeight": 26,
- "labelPosition": "INSIDE_MIDDLE_CENTER"
+ "labelPosition": "INSIDE_MIDDLE_CENTER",
+ "zIndex": 0,
+ "level": 2
},
{
"id": "ff",
@@ -276,7 +283,6 @@
},
"width": 424,
"height": 427,
- "level": 1,
"opacity": 1,
"strokeDash": 0,
"strokeWidth": 2,
@@ -303,7 +309,9 @@
"underline": false,
"labelWidth": 23,
"labelHeight": 41,
- "labelPosition": "INSIDE_TOP_CENTER"
+ "labelPosition": "INSIDE_TOP_CENTER",
+ "zIndex": 0,
+ "level": 1
},
{
"id": "ff.mm",
@@ -314,7 +322,6 @@
},
"width": 131,
"height": 131,
- "level": 2,
"opacity": 1,
"strokeDash": 0,
"strokeWidth": 2,
@@ -341,7 +348,9 @@
"underline": false,
"labelWidth": 31,
"labelHeight": 26,
- "labelPosition": "INSIDE_MIDDLE_CENTER"
+ "labelPosition": "INSIDE_MIDDLE_CENTER",
+ "zIndex": 0,
+ "level": 2
},
{
"id": "ff.gg",
@@ -352,7 +361,6 @@
},
"width": 123,
"height": 126,
- "level": 2,
"opacity": 1,
"strokeDash": 0,
"strokeWidth": 2,
@@ -379,7 +387,9 @@
"underline": false,
"labelWidth": 23,
"labelHeight": 26,
- "labelPosition": "INSIDE_MIDDLE_CENTER"
+ "labelPosition": "INSIDE_MIDDLE_CENTER",
+ "zIndex": 0,
+ "level": 2
},
{
"id": "dd.hh",
@@ -390,7 +400,6 @@
},
"width": 123,
"height": 126,
- "level": 2,
"opacity": 1,
"strokeDash": 0,
"strokeWidth": 2,
@@ -417,7 +426,9 @@
"underline": false,
"labelWidth": 23,
"labelHeight": 26,
- "labelPosition": "INSIDE_MIDDLE_CENTER"
+ "labelPosition": "INSIDE_MIDDLE_CENTER",
+ "zIndex": 0,
+ "level": 2
},
{
"id": "ww",
@@ -428,7 +439,6 @@
},
"width": 131,
"height": 126,
- "level": 1,
"opacity": 1,
"strokeDash": 0,
"strokeWidth": 2,
@@ -466,7 +476,9 @@
"underline": false,
"labelWidth": 31,
"labelHeight": 26,
- "labelPosition": "INSIDE_MIDDLE_CENTER"
+ "labelPosition": "INSIDE_MIDDLE_CENTER",
+ "zIndex": 0,
+ "level": 1
},
{
"id": "yy",
@@ -477,7 +489,6 @@
},
"width": 273,
"height": 422,
- "level": 1,
"opacity": 1,
"strokeDash": 0,
"strokeWidth": 2,
@@ -504,7 +515,9 @@
"underline": false,
"labelWidth": 32,
"labelHeight": 41,
- "labelPosition": "INSIDE_TOP_CENTER"
+ "labelPosition": "INSIDE_TOP_CENTER",
+ "zIndex": 0,
+ "level": 1
},
{
"id": "yy.zz",
@@ -515,7 +528,6 @@
},
"width": 120,
"height": 126,
- "level": 2,
"opacity": 1,
"strokeDash": 0,
"strokeWidth": 2,
@@ -553,7 +565,9 @@
"underline": false,
"labelWidth": 20,
"labelHeight": 26,
- "labelPosition": "INSIDE_MIDDLE_CENTER"
+ "labelPosition": "INSIDE_MIDDLE_CENTER",
+ "zIndex": 0,
+ "level": 2
},
{
"id": "ad",
@@ -564,7 +578,6 @@
},
"width": 123,
"height": 126,
- "level": 1,
"opacity": 1,
"strokeDash": 0,
"strokeWidth": 2,
@@ -591,7 +604,9 @@
"underline": false,
"labelWidth": 23,
"labelHeight": 26,
- "labelPosition": "INSIDE_MIDDLE_CENTER"
+ "labelPosition": "INSIDE_MIDDLE_CENTER",
+ "zIndex": 0,
+ "level": 1
},
{
"id": "nn",
@@ -602,7 +617,6 @@
},
"width": 557,
"height": 276,
- "level": 1,
"opacity": 1,
"strokeDash": 0,
"strokeWidth": 2,
@@ -629,7 +643,9 @@
"underline": false,
"labelWidth": 33,
"labelHeight": 41,
- "labelPosition": "INSIDE_TOP_CENTER"
+ "labelPosition": "INSIDE_TOP_CENTER",
+ "zIndex": 0,
+ "level": 1
},
{
"id": "ii",
@@ -640,7 +656,6 @@
},
"width": 114,
"height": 126,
- "level": 1,
"opacity": 1,
"strokeDash": 0,
"strokeWidth": 2,
@@ -667,7 +682,9 @@
"underline": false,
"labelWidth": 14,
"labelHeight": 26,
- "labelPosition": "INSIDE_MIDDLE_CENTER"
+ "labelPosition": "INSIDE_MIDDLE_CENTER",
+ "zIndex": 0,
+ "level": 1
},
{
"id": "jj",
@@ -678,7 +695,6 @@
},
"width": 115,
"height": 126,
- "level": 1,
"opacity": 1,
"strokeDash": 0,
"strokeWidth": 2,
@@ -705,7 +721,9 @@
"underline": false,
"labelWidth": 15,
"labelHeight": 26,
- "labelPosition": "INSIDE_MIDDLE_CENTER"
+ "labelPosition": "INSIDE_MIDDLE_CENTER",
+ "zIndex": 0,
+ "level": 1
},
{
"id": "kk",
@@ -716,7 +734,6 @@
},
"width": 122,
"height": 126,
- "level": 1,
"opacity": 1,
"strokeDash": 0,
"strokeWidth": 2,
@@ -743,7 +760,9 @@
"underline": false,
"labelWidth": 22,
"labelHeight": 26,
- "labelPosition": "INSIDE_MIDDLE_CENTER"
+ "labelPosition": "INSIDE_MIDDLE_CENTER",
+ "zIndex": 0,
+ "level": 1
},
{
"id": "nn.oo",
@@ -754,7 +773,6 @@
},
"width": 123,
"height": 126,
- "level": 2,
"opacity": 1,
"strokeDash": 0,
"strokeWidth": 2,
@@ -781,7 +799,9 @@
"underline": false,
"labelWidth": 23,
"labelHeight": 26,
- "labelPosition": "INSIDE_MIDDLE_CENTER"
+ "labelPosition": "INSIDE_MIDDLE_CENTER",
+ "zIndex": 0,
+ "level": 2
},
{
"id": "ff.pp",
@@ -792,7 +812,6 @@
},
"width": 123,
"height": 126,
- "level": 2,
"opacity": 1,
"strokeDash": 0,
"strokeWidth": 2,
@@ -819,7 +838,9 @@
"underline": false,
"labelWidth": 23,
"labelHeight": 26,
- "labelPosition": "INSIDE_MIDDLE_CENTER"
+ "labelPosition": "INSIDE_MIDDLE_CENTER",
+ "zIndex": 0,
+ "level": 2
},
{
"id": "ll.qq",
@@ -830,7 +851,6 @@
},
"width": 124,
"height": 126,
- "level": 2,
"opacity": 1,
"strokeDash": 0,
"strokeWidth": 2,
@@ -857,7 +877,9 @@
"underline": false,
"labelWidth": 24,
"labelHeight": 26,
- "labelPosition": "INSIDE_MIDDLE_CENTER"
+ "labelPosition": "INSIDE_MIDDLE_CENTER",
+ "zIndex": 0,
+ "level": 2
},
{
"id": "ll.rr",
@@ -868,7 +890,6 @@
},
"width": 118,
"height": 126,
- "level": 2,
"opacity": 1,
"strokeDash": 0,
"strokeWidth": 2,
@@ -895,7 +916,9 @@
"underline": false,
"labelWidth": 18,
"labelHeight": 26,
- "labelPosition": "INSIDE_MIDDLE_CENTER"
+ "labelPosition": "INSIDE_MIDDLE_CENTER",
+ "zIndex": 0,
+ "level": 2
},
{
"id": "ss",
@@ -906,7 +929,6 @@
},
"width": 268,
"height": 276,
- "level": 1,
"opacity": 1,
"strokeDash": 0,
"strokeWidth": 2,
@@ -933,7 +955,9 @@
"underline": false,
"labelWidth": 28,
"labelHeight": 41,
- "labelPosition": "INSIDE_TOP_CENTER"
+ "labelPosition": "INSIDE_TOP_CENTER",
+ "zIndex": 0,
+ "level": 1
},
{
"id": "ss.tt",
@@ -944,7 +968,6 @@
},
"width": 118,
"height": 126,
- "level": 2,
"opacity": 1,
"strokeDash": 0,
"strokeWidth": 2,
@@ -971,7 +994,9 @@
"underline": false,
"labelWidth": 18,
"labelHeight": 26,
- "labelPosition": "INSIDE_MIDDLE_CENTER"
+ "labelPosition": "INSIDE_MIDDLE_CENTER",
+ "zIndex": 0,
+ "level": 2
},
{
"id": "uu",
@@ -982,7 +1007,6 @@
},
"width": 273,
"height": 276,
- "level": 1,
"opacity": 1,
"strokeDash": 0,
"strokeWidth": 2,
@@ -1009,7 +1033,9 @@
"underline": false,
"labelWidth": 32,
"labelHeight": 41,
- "labelPosition": "INSIDE_TOP_CENTER"
+ "labelPosition": "INSIDE_TOP_CENTER",
+ "zIndex": 0,
+ "level": 1
},
{
"id": "uu.vv",
@@ -1020,7 +1046,6 @@
},
"width": 123,
"height": 126,
- "level": 2,
"opacity": 1,
"strokeDash": 0,
"strokeWidth": 2,
@@ -1047,7 +1072,9 @@
"underline": false,
"labelWidth": 23,
"labelHeight": 26,
- "labelPosition": "INSIDE_MIDDLE_CENTER"
+ "labelPosition": "INSIDE_MIDDLE_CENTER",
+ "zIndex": 0,
+ "level": 2
},
{
"id": "rm",
@@ -1058,7 +1085,6 @@
},
"width": 124,
"height": 126,
- "level": 1,
"opacity": 1,
"strokeDash": 0,
"strokeWidth": 2,
@@ -1085,7 +1111,9 @@
"underline": false,
"labelWidth": 24,
"labelHeight": 26,
- "labelPosition": "INSIDE_MIDDLE_CENTER"
+ "labelPosition": "INSIDE_MIDDLE_CENTER",
+ "zIndex": 0,
+ "level": 1
},
{
"id": "nn.xx",
@@ -1096,7 +1124,6 @@
},
"width": 122,
"height": 126,
- "level": 2,
"opacity": 1,
"strokeDash": 0,
"strokeWidth": 2,
@@ -1123,7 +1150,9 @@
"underline": false,
"labelWidth": 22,
"labelHeight": 26,
- "labelPosition": "INSIDE_MIDDLE_CENTER"
+ "labelPosition": "INSIDE_MIDDLE_CENTER",
+ "zIndex": 0,
+ "level": 2
},
{
"id": "yy.ab",
@@ -1134,7 +1163,6 @@
},
"width": 123,
"height": 126,
- "level": 2,
"opacity": 1,
"strokeDash": 0,
"strokeWidth": 2,
@@ -1161,7 +1189,9 @@
"underline": false,
"labelWidth": 23,
"labelHeight": 26,
- "labelPosition": "INSIDE_MIDDLE_CENTER"
+ "labelPosition": "INSIDE_MIDDLE_CENTER",
+ "zIndex": 0,
+ "level": 2
},
{
"id": "nn.ac",
@@ -1172,7 +1202,6 @@
},
"width": 122,
"height": 126,
- "level": 2,
"opacity": 1,
"strokeDash": 0,
"strokeWidth": 2,
@@ -1199,7 +1228,9 @@
"underline": false,
"labelWidth": 22,
"labelHeight": 26,
- "labelPosition": "INSIDE_MIDDLE_CENTER"
+ "labelPosition": "INSIDE_MIDDLE_CENTER",
+ "zIndex": 0,
+ "level": 2
}
],
"connections": [
@@ -1247,7 +1278,8 @@
],
"animated": false,
"tooltip": "",
- "icon": null
+ "icon": null,
+ "zIndex": 0
},
{
"id": "(bb -- cc)[0]",
@@ -1285,7 +1317,8 @@
],
"animated": false,
"tooltip": "",
- "icon": null
+ "icon": null,
+ "zIndex": 0
},
{
"id": "(aa -> dd.ee)[0]",
@@ -1323,7 +1356,8 @@
],
"animated": false,
"tooltip": "",
- "icon": null
+ "icon": null,
+ "zIndex": 0
},
{
"id": "(bb -> ff.gg)[0]",
@@ -1377,7 +1411,8 @@
],
"animated": false,
"tooltip": "",
- "icon": null
+ "icon": null,
+ "zIndex": 0
},
{
"id": "(cc -> dd.hh)[0]",
@@ -1415,7 +1450,8 @@
],
"animated": false,
"tooltip": "",
- "icon": null
+ "icon": null,
+ "zIndex": 0
},
{
"id": "(dd.ee -> ii)[0]",
@@ -1453,7 +1489,8 @@
],
"animated": false,
"tooltip": "",
- "icon": null
+ "icon": null,
+ "zIndex": 0
},
{
"id": "(ii -- jj)[0]",
@@ -1491,7 +1528,8 @@
],
"animated": false,
"tooltip": "",
- "icon": null
+ "icon": null,
+ "zIndex": 0
},
{
"id": "(jj -> kk)[0]",
@@ -1529,7 +1567,8 @@
],
"animated": false,
"tooltip": "",
- "icon": null
+ "icon": null,
+ "zIndex": 0
},
{
"id": "(kk -> ff.mm)[0]",
@@ -1567,7 +1606,8 @@
],
"animated": false,
"tooltip": "",
- "icon": null
+ "icon": null,
+ "zIndex": 0
},
{
"id": "(ff.mm -> ll.mm)[0]",
@@ -1605,7 +1645,8 @@
],
"animated": false,
"tooltip": "",
- "icon": null
+ "icon": null,
+ "zIndex": 0
},
{
"id": "(ll.mm -> nn.oo)[0]",
@@ -1643,7 +1684,8 @@
],
"animated": false,
"tooltip": "",
- "icon": null
+ "icon": null,
+ "zIndex": 0
},
{
"id": "ff.(gg -> pp)[0]",
@@ -1681,7 +1723,8 @@
],
"animated": false,
"tooltip": "",
- "icon": null
+ "icon": null,
+ "zIndex": 0
},
{
"id": "(ff.pp -> ll.qq)[0]",
@@ -1727,7 +1770,8 @@
],
"animated": false,
"tooltip": "",
- "icon": null
+ "icon": null,
+ "zIndex": 0
},
{
"id": "ll.(qq -> rr)[0]",
@@ -1765,7 +1809,8 @@
],
"animated": false,
"tooltip": "",
- "icon": null
+ "icon": null,
+ "zIndex": 0
},
{
"id": "(dd.hh -> ss.tt)[0]",
@@ -1811,7 +1856,8 @@
],
"animated": false,
"tooltip": "",
- "icon": null
+ "icon": null,
+ "zIndex": 0
},
{
"id": "(ss.tt -> uu.vv)[0]",
@@ -1849,7 +1895,8 @@
],
"animated": false,
"tooltip": "",
- "icon": null
+ "icon": null,
+ "zIndex": 0
},
{
"id": "(kk -> ww)[0]",
@@ -1895,7 +1942,8 @@
],
"animated": false,
"tooltip": "",
- "icon": null
+ "icon": null,
+ "zIndex": 0
},
{
"id": "(uu.vv -> ww)[0]",
@@ -1933,7 +1981,8 @@
],
"animated": false,
"tooltip": "",
- "icon": null
+ "icon": null,
+ "zIndex": 0
},
{
"id": "(ww -> rm)[0]",
@@ -1971,7 +2020,8 @@
],
"animated": false,
"tooltip": "",
- "icon": null
+ "icon": null,
+ "zIndex": 0
},
{
"id": "(rm -> nn.xx)[0]",
@@ -2025,7 +2075,8 @@
],
"animated": false,
"tooltip": "",
- "icon": null
+ "icon": null,
+ "zIndex": 0
},
{
"id": "(ll.rr -> yy.zz)[0]",
@@ -2071,7 +2122,8 @@
],
"animated": false,
"tooltip": "",
- "icon": null
+ "icon": null,
+ "zIndex": 0
},
{
"id": "(rm -> yy.zz)[0]",
@@ -2109,7 +2161,8 @@
],
"animated": false,
"tooltip": "",
- "icon": null
+ "icon": null,
+ "zIndex": 0
},
{
"id": "yy.(zz -> ab)[0]",
@@ -2147,7 +2200,8 @@
],
"animated": false,
"tooltip": "",
- "icon": null
+ "icon": null,
+ "zIndex": 0
},
{
"id": "(yy.ab -> nn.ac)[0]",
@@ -2193,7 +2247,8 @@
],
"animated": false,
"tooltip": "",
- "icon": null
+ "icon": null,
+ "zIndex": 0
},
{
"id": "(nn.ac -> ad)[0]",
@@ -2231,7 +2286,8 @@
],
"animated": false,
"tooltip": "",
- "icon": null
+ "icon": null,
+ "zIndex": 0
},
{
"id": "(ww -> ff.gg)[0]",
@@ -2277,7 +2333,8 @@
],
"animated": false,
"tooltip": "",
- "icon": null
+ "icon": null,
+ "zIndex": 0
}
]
}
diff --git a/e2etests/testdata/stable/large_arch/dagre/board.exp.json b/e2etests/testdata/stable/large_arch/dagre/board.exp.json
index 7e21e0bfb..363e988e9 100644
--- a/e2etests/testdata/stable/large_arch/dagre/board.exp.json
+++ b/e2etests/testdata/stable/large_arch/dagre/board.exp.json
@@ -10,7 +10,6 @@
},
"width": 113,
"height": 126,
- "level": 1,
"opacity": 1,
"strokeDash": 0,
"strokeWidth": 2,
@@ -37,7 +36,9 @@
"underline": false,
"labelWidth": 13,
"labelHeight": 26,
- "labelPosition": "INSIDE_MIDDLE_CENTER"
+ "labelPosition": "INSIDE_MIDDLE_CENTER",
+ "zIndex": 0,
+ "level": 1
},
{
"id": "b",
@@ -48,7 +49,6 @@
},
"width": 113,
"height": 126,
- "level": 1,
"opacity": 1,
"strokeDash": 0,
"strokeWidth": 2,
@@ -75,7 +75,9 @@
"underline": false,
"labelWidth": 13,
"labelHeight": 26,
- "labelPosition": "INSIDE_MIDDLE_CENTER"
+ "labelPosition": "INSIDE_MIDDLE_CENTER",
+ "zIndex": 0,
+ "level": 1
},
{
"id": "c",
@@ -86,7 +88,6 @@
},
"width": 113,
"height": 126,
- "level": 1,
"opacity": 1,
"strokeDash": 0,
"strokeWidth": 2,
@@ -113,7 +114,9 @@
"underline": false,
"labelWidth": 13,
"labelHeight": 26,
- "labelPosition": "INSIDE_MIDDLE_CENTER"
+ "labelPosition": "INSIDE_MIDDLE_CENTER",
+ "zIndex": 0,
+ "level": 1
},
{
"id": "d",
@@ -124,7 +127,6 @@
},
"width": 114,
"height": 126,
- "level": 1,
"opacity": 1,
"strokeDash": 0,
"strokeWidth": 2,
@@ -151,7 +153,9 @@
"underline": false,
"labelWidth": 14,
"labelHeight": 26,
- "labelPosition": "INSIDE_MIDDLE_CENTER"
+ "labelPosition": "INSIDE_MIDDLE_CENTER",
+ "zIndex": 0,
+ "level": 1
},
{
"id": "e",
@@ -162,7 +166,6 @@
},
"width": 113,
"height": 126,
- "level": 1,
"opacity": 1,
"strokeDash": 0,
"strokeWidth": 2,
@@ -189,7 +192,9 @@
"underline": false,
"labelWidth": 13,
"labelHeight": 26,
- "labelPosition": "INSIDE_MIDDLE_CENTER"
+ "labelPosition": "INSIDE_MIDDLE_CENTER",
+ "zIndex": 0,
+ "level": 1
},
{
"id": "f",
@@ -200,7 +205,6 @@
},
"width": 111,
"height": 126,
- "level": 1,
"opacity": 1,
"strokeDash": 0,
"strokeWidth": 2,
@@ -227,7 +231,9 @@
"underline": false,
"labelWidth": 11,
"labelHeight": 26,
- "labelPosition": "INSIDE_MIDDLE_CENTER"
+ "labelPosition": "INSIDE_MIDDLE_CENTER",
+ "zIndex": 0,
+ "level": 1
},
{
"id": "g",
@@ -238,7 +244,6 @@
},
"width": 114,
"height": 126,
- "level": 1,
"opacity": 1,
"strokeDash": 0,
"strokeWidth": 2,
@@ -265,7 +270,9 @@
"underline": false,
"labelWidth": 14,
"labelHeight": 26,
- "labelPosition": "INSIDE_MIDDLE_CENTER"
+ "labelPosition": "INSIDE_MIDDLE_CENTER",
+ "zIndex": 0,
+ "level": 1
},
{
"id": "h",
@@ -276,7 +283,6 @@
},
"width": 113,
"height": 126,
- "level": 1,
"opacity": 1,
"strokeDash": 0,
"strokeWidth": 2,
@@ -303,7 +309,9 @@
"underline": false,
"labelWidth": 13,
"labelHeight": 26,
- "labelPosition": "INSIDE_MIDDLE_CENTER"
+ "labelPosition": "INSIDE_MIDDLE_CENTER",
+ "zIndex": 0,
+ "level": 1
},
{
"id": "i",
@@ -314,7 +322,6 @@
},
"width": 781,
"height": 702,
- "level": 1,
"opacity": 1,
"strokeDash": 0,
"strokeWidth": 2,
@@ -341,7 +348,9 @@
"underline": false,
"labelWidth": 9,
"labelHeight": 41,
- "labelPosition": "INSIDE_TOP_CENTER"
+ "labelPosition": "INSIDE_TOP_CENTER",
+ "zIndex": 0,
+ "level": 1
},
{
"id": "i.j",
@@ -352,7 +361,6 @@
},
"width": 578,
"height": 226,
- "level": 2,
"opacity": 1,
"strokeDash": 0,
"strokeWidth": 2,
@@ -379,7 +387,9 @@
"underline": false,
"labelWidth": 11,
"labelHeight": 36,
- "labelPosition": "INSIDE_TOP_CENTER"
+ "labelPosition": "INSIDE_TOP_CENTER",
+ "zIndex": 0,
+ "level": 2
},
{
"id": "i.j.k",
@@ -390,7 +400,6 @@
},
"width": 113,
"height": 126,
- "level": 3,
"opacity": 1,
"strokeDash": 0,
"strokeWidth": 2,
@@ -417,7 +426,9 @@
"underline": false,
"labelWidth": 13,
"labelHeight": 26,
- "labelPosition": "INSIDE_MIDDLE_CENTER"
+ "labelPosition": "INSIDE_MIDDLE_CENTER",
+ "zIndex": 0,
+ "level": 3
},
{
"id": "i.j.l",
@@ -428,7 +439,6 @@
},
"width": 109,
"height": 126,
- "level": 3,
"opacity": 1,
"strokeDash": 0,
"strokeWidth": 2,
@@ -455,7 +465,9 @@
"underline": false,
"labelWidth": 9,
"labelHeight": 26,
- "labelPosition": "INSIDE_MIDDLE_CENTER"
+ "labelPosition": "INSIDE_MIDDLE_CENTER",
+ "zIndex": 0,
+ "level": 3
},
{
"id": "i.m",
@@ -466,7 +478,6 @@
},
"width": 117,
"height": 126,
- "level": 2,
"opacity": 1,
"strokeDash": 0,
"strokeWidth": 2,
@@ -493,7 +504,9 @@
"underline": false,
"labelWidth": 17,
"labelHeight": 26,
- "labelPosition": "INSIDE_MIDDLE_CENTER"
+ "labelPosition": "INSIDE_MIDDLE_CENTER",
+ "zIndex": 0,
+ "level": 2
},
{
"id": "i.n",
@@ -504,7 +517,6 @@
},
"width": 113,
"height": 126,
- "level": 2,
"opacity": 1,
"strokeDash": 0,
"strokeWidth": 2,
@@ -531,7 +543,9 @@
"underline": false,
"labelWidth": 13,
"labelHeight": 26,
- "labelPosition": "INSIDE_MIDDLE_CENTER"
+ "labelPosition": "INSIDE_MIDDLE_CENTER",
+ "zIndex": 0,
+ "level": 2
},
{
"id": "i.o",
@@ -542,7 +556,6 @@
},
"width": 213,
"height": 226,
- "level": 2,
"opacity": 1,
"strokeDash": 0,
"strokeWidth": 2,
@@ -569,7 +582,9 @@
"underline": false,
"labelWidth": 16,
"labelHeight": 36,
- "labelPosition": "INSIDE_TOP_CENTER"
+ "labelPosition": "INSIDE_TOP_CENTER",
+ "zIndex": 0,
+ "level": 2
},
{
"id": "i.o.p",
@@ -580,7 +595,6 @@
},
"width": 113,
"height": 126,
- "level": 3,
"opacity": 1,
"strokeDash": 0,
"strokeWidth": 2,
@@ -607,7 +621,9 @@
"underline": false,
"labelWidth": 13,
"labelHeight": 26,
- "labelPosition": "INSIDE_MIDDLE_CENTER"
+ "labelPosition": "INSIDE_MIDDLE_CENTER",
+ "zIndex": 0,
+ "level": 3
},
{
"id": "q",
@@ -618,7 +634,6 @@
},
"width": 114,
"height": 126,
- "level": 1,
"opacity": 1,
"strokeDash": 0,
"strokeWidth": 2,
@@ -645,7 +660,9 @@
"underline": false,
"labelWidth": 14,
"labelHeight": 26,
- "labelPosition": "INSIDE_MIDDLE_CENTER"
+ "labelPosition": "INSIDE_MIDDLE_CENTER",
+ "zIndex": 0,
+ "level": 1
},
{
"id": "r",
@@ -656,7 +673,6 @@
},
"width": 1886,
"height": 752,
- "level": 1,
"opacity": 1,
"strokeDash": 0,
"strokeWidth": 2,
@@ -683,7 +699,9 @@
"underline": false,
"labelWidth": 13,
"labelHeight": 41,
- "labelPosition": "INSIDE_TOP_CENTER"
+ "labelPosition": "INSIDE_TOP_CENTER",
+ "zIndex": 0,
+ "level": 1
},
{
"id": "r.s",
@@ -694,7 +712,6 @@
},
"width": 647,
"height": 652,
- "level": 2,
"opacity": 1,
"strokeDash": 0,
"strokeWidth": 2,
@@ -721,7 +738,9 @@
"underline": false,
"labelWidth": 15,
"labelHeight": 36,
- "labelPosition": "INSIDE_TOP_CENTER"
+ "labelPosition": "INSIDE_TOP_CENTER",
+ "zIndex": 0,
+ "level": 2
},
{
"id": "r.s.t",
@@ -732,7 +751,6 @@
},
"width": 111,
"height": 126,
- "level": 3,
"opacity": 1,
"strokeDash": 0,
"strokeWidth": 2,
@@ -759,7 +777,9 @@
"underline": false,
"labelWidth": 11,
"labelHeight": 26,
- "labelPosition": "INSIDE_MIDDLE_CENTER"
+ "labelPosition": "INSIDE_MIDDLE_CENTER",
+ "zIndex": 0,
+ "level": 3
},
{
"id": "r.s.u",
@@ -770,7 +790,6 @@
},
"width": 214,
"height": 226,
- "level": 3,
"opacity": 1,
"strokeDash": 0,
"strokeWidth": 2,
@@ -797,7 +816,9 @@
"underline": false,
"labelWidth": 14,
"labelHeight": 31,
- "labelPosition": "INSIDE_TOP_CENTER"
+ "labelPosition": "INSIDE_TOP_CENTER",
+ "zIndex": 0,
+ "level": 3
},
{
"id": "r.s.u.v",
@@ -808,7 +829,6 @@
},
"width": 114,
"height": 126,
- "level": 4,
"opacity": 1,
"strokeDash": 0,
"strokeWidth": 2,
@@ -835,7 +855,9 @@
"underline": false,
"labelWidth": 14,
"labelHeight": 26,
- "labelPosition": "INSIDE_MIDDLE_CENTER"
+ "labelPosition": "INSIDE_MIDDLE_CENTER",
+ "zIndex": 0,
+ "level": 4
},
{
"id": "r.s.w",
@@ -846,7 +868,6 @@
},
"width": 118,
"height": 126,
- "level": 3,
"opacity": 1,
"strokeDash": 0,
"strokeWidth": 2,
@@ -873,7 +894,9 @@
"underline": false,
"labelWidth": 18,
"labelHeight": 26,
- "labelPosition": "INSIDE_MIDDLE_CENTER"
+ "labelPosition": "INSIDE_MIDDLE_CENTER",
+ "zIndex": 0,
+ "level": 3
},
{
"id": "r.s.x",
@@ -884,7 +907,6 @@
},
"width": 113,
"height": 126,
- "level": 3,
"opacity": 1,
"strokeDash": 0,
"strokeWidth": 2,
@@ -911,7 +933,9 @@
"underline": false,
"labelWidth": 13,
"labelHeight": 26,
- "labelPosition": "INSIDE_MIDDLE_CENTER"
+ "labelPosition": "INSIDE_MIDDLE_CENTER",
+ "zIndex": 0,
+ "level": 3
},
{
"id": "r.s.y",
@@ -922,7 +946,6 @@
},
"width": 114,
"height": 126,
- "level": 3,
"opacity": 1,
"strokeDash": 0,
"strokeWidth": 2,
@@ -949,7 +972,9 @@
"underline": false,
"labelWidth": 14,
"labelHeight": 26,
- "labelPosition": "INSIDE_MIDDLE_CENTER"
+ "labelPosition": "INSIDE_MIDDLE_CENTER",
+ "zIndex": 0,
+ "level": 3
},
{
"id": "r.z",
@@ -960,7 +985,6 @@
},
"width": 112,
"height": 126,
- "level": 2,
"opacity": 1,
"strokeDash": 0,
"strokeWidth": 2,
@@ -987,7 +1011,9 @@
"underline": false,
"labelWidth": 12,
"labelHeight": 26,
- "labelPosition": "INSIDE_MIDDLE_CENTER"
+ "labelPosition": "INSIDE_MIDDLE_CENTER",
+ "zIndex": 0,
+ "level": 2
},
{
"id": "r.aa",
@@ -998,7 +1024,6 @@
},
"width": 122,
"height": 126,
- "level": 2,
"opacity": 1,
"strokeDash": 0,
"strokeWidth": 2,
@@ -1025,7 +1050,9 @@
"underline": false,
"labelWidth": 22,
"labelHeight": 26,
- "labelPosition": "INSIDE_MIDDLE_CENTER"
+ "labelPosition": "INSIDE_MIDDLE_CENTER",
+ "zIndex": 0,
+ "level": 2
},
{
"id": "r.bb",
@@ -1036,7 +1063,6 @@
},
"width": 405,
"height": 226,
- "level": 2,
"opacity": 1,
"strokeDash": 0,
"strokeWidth": 2,
@@ -1063,7 +1089,9 @@
"underline": false,
"labelWidth": 31,
"labelHeight": 36,
- "labelPosition": "INSIDE_TOP_CENTER"
+ "labelPosition": "INSIDE_TOP_CENTER",
+ "zIndex": 0,
+ "level": 2
},
{
"id": "r.bb.cc",
@@ -1074,7 +1102,6 @@
},
"width": 121,
"height": 126,
- "level": 3,
"opacity": 1,
"strokeDash": 0,
"strokeWidth": 2,
@@ -1101,7 +1128,9 @@
"underline": false,
"labelWidth": 21,
"labelHeight": 26,
- "labelPosition": "INSIDE_MIDDLE_CENTER"
+ "labelPosition": "INSIDE_MIDDLE_CENTER",
+ "zIndex": 0,
+ "level": 3
},
{
"id": "r.bb.dd",
@@ -1112,7 +1141,6 @@
},
"width": 124,
"height": 126,
- "level": 3,
"opacity": 1,
"strokeDash": 0,
"strokeWidth": 2,
@@ -1139,7 +1167,9 @@
"underline": false,
"labelWidth": 24,
"labelHeight": 26,
- "labelPosition": "INSIDE_MIDDLE_CENTER"
+ "labelPosition": "INSIDE_MIDDLE_CENTER",
+ "zIndex": 0,
+ "level": 3
},
{
"id": "r.ee",
@@ -1150,7 +1180,6 @@
},
"width": 122,
"height": 126,
- "level": 2,
"opacity": 1,
"strokeDash": 0,
"strokeWidth": 2,
@@ -1177,7 +1206,9 @@
"underline": false,
"labelWidth": 22,
"labelHeight": 26,
- "labelPosition": "INSIDE_MIDDLE_CENTER"
+ "labelPosition": "INSIDE_MIDDLE_CENTER",
+ "zIndex": 0,
+ "level": 2
},
{
"id": "r.ff",
@@ -1188,7 +1219,6 @@
},
"width": 117,
"height": 126,
- "level": 2,
"opacity": 1,
"strokeDash": 0,
"strokeWidth": 2,
@@ -1215,7 +1245,9 @@
"underline": false,
"labelWidth": 17,
"labelHeight": 26,
- "labelPosition": "INSIDE_MIDDLE_CENTER"
+ "labelPosition": "INSIDE_MIDDLE_CENTER",
+ "zIndex": 0,
+ "level": 2
},
{
"id": "r.gg",
@@ -1226,7 +1258,6 @@
},
"width": 123,
"height": 126,
- "level": 2,
"opacity": 1,
"strokeDash": 0,
"strokeWidth": 2,
@@ -1253,7 +1284,9 @@
"underline": false,
"labelWidth": 23,
"labelHeight": 26,
- "labelPosition": "INSIDE_MIDDLE_CENTER"
+ "labelPosition": "INSIDE_MIDDLE_CENTER",
+ "zIndex": 0,
+ "level": 2
}
],
"connections": [
@@ -1326,7 +1359,8 @@
"isCurve": true,
"animated": false,
"tooltip": "",
- "icon": null
+ "icon": null,
+ "zIndex": 0
},
{
"id": "i.(j.l -> o.p)[0]",
@@ -1397,7 +1431,8 @@
"isCurve": true,
"animated": false,
"tooltip": "",
- "icon": null
+ "icon": null,
+ "zIndex": 0
},
{
"id": "(q -> i.m)[0]",
@@ -1456,7 +1491,8 @@
"isCurve": true,
"animated": false,
"tooltip": "",
- "icon": null
+ "icon": null,
+ "zIndex": 0
},
{
"id": "(i.m -> q)[0]",
@@ -1515,7 +1551,8 @@
"isCurve": true,
"animated": false,
"tooltip": "",
- "icon": null
+ "icon": null,
+ "zIndex": 0
},
{
"id": "(i.n -> q)[0]",
@@ -1574,7 +1611,8 @@
"isCurve": true,
"animated": false,
"tooltip": "",
- "icon": null
+ "icon": null,
+ "zIndex": 0
},
{
"id": "(i.m -> c)[0]",
@@ -1633,7 +1671,8 @@
"isCurve": true,
"animated": false,
"tooltip": "",
- "icon": null
+ "icon": null,
+ "zIndex": 0
},
{
"id": "(i.m -> d)[0]",
@@ -1692,7 +1731,8 @@
"isCurve": true,
"animated": false,
"tooltip": "",
- "icon": null
+ "icon": null,
+ "zIndex": 0
},
{
"id": "(i.m -> g)[0]",
@@ -1751,7 +1791,8 @@
"isCurve": true,
"animated": false,
"tooltip": "",
- "icon": null
+ "icon": null,
+ "zIndex": 0
},
{
"id": "(i.m -> f)[0]",
@@ -1810,7 +1851,8 @@
"isCurve": true,
"animated": false,
"tooltip": "",
- "icon": null
+ "icon": null,
+ "zIndex": 0
},
{
"id": "(d -> e)[0]",
@@ -1857,7 +1899,8 @@
"isCurve": true,
"animated": false,
"tooltip": "",
- "icon": null
+ "icon": null,
+ "zIndex": 0
},
{
"id": "r.s.(x -> t)[0]",
@@ -1928,7 +1971,8 @@
"isCurve": true,
"animated": false,
"tooltip": "",
- "icon": null
+ "icon": null,
+ "zIndex": 0
},
{
"id": "r.s.(x -> w)[0]",
@@ -1999,7 +2043,8 @@
"isCurve": true,
"animated": false,
"tooltip": "",
- "icon": null
+ "icon": null,
+ "zIndex": 0
},
{
"id": "r.(gg -> s.t)[0]",
@@ -2070,7 +2115,8 @@
"isCurve": true,
"animated": false,
"tooltip": "",
- "icon": null
+ "icon": null,
+ "zIndex": 0
},
{
"id": "r.(s.u.v -> z)[0]",
@@ -2141,7 +2187,8 @@
"isCurve": true,
"animated": false,
"tooltip": "",
- "icon": null
+ "icon": null,
+ "zIndex": 0
},
{
"id": "r.(aa -> s.t)[0]",
@@ -2212,7 +2259,8 @@
"isCurve": true,
"animated": false,
"tooltip": "",
- "icon": null
+ "icon": null,
+ "zIndex": 0
},
{
"id": "(r.s.w -> i.m)[0]",
@@ -2283,7 +2331,8 @@
"isCurve": true,
"animated": false,
"tooltip": "",
- "icon": null
+ "icon": null,
+ "zIndex": 0
},
{
"id": "(r.s.t -> g)[0]",
@@ -2402,7 +2451,8 @@
"isCurve": true,
"animated": false,
"tooltip": "",
- "icon": null
+ "icon": null,
+ "zIndex": 0
},
{
"id": "(r.s.t -> h)[0]",
@@ -2473,7 +2523,8 @@
"isCurve": true,
"animated": false,
"tooltip": "",
- "icon": null
+ "icon": null,
+ "zIndex": 0
},
{
"id": "r.(ee -> ff)[0]",
@@ -2544,7 +2595,8 @@
"isCurve": true,
"animated": false,
"tooltip": "",
- "icon": null
+ "icon": null,
+ "zIndex": 0
}
]
}
diff --git a/e2etests/testdata/stable/large_arch/elk/board.exp.json b/e2etests/testdata/stable/large_arch/elk/board.exp.json
index bb0e4b09c..5d5feac5e 100644
--- a/e2etests/testdata/stable/large_arch/elk/board.exp.json
+++ b/e2etests/testdata/stable/large_arch/elk/board.exp.json
@@ -10,7 +10,6 @@
},
"width": 113,
"height": 126,
- "level": 1,
"opacity": 1,
"strokeDash": 0,
"strokeWidth": 2,
@@ -37,7 +36,9 @@
"underline": false,
"labelWidth": 13,
"labelHeight": 26,
- "labelPosition": "INSIDE_MIDDLE_CENTER"
+ "labelPosition": "INSIDE_MIDDLE_CENTER",
+ "zIndex": 0,
+ "level": 1
},
{
"id": "b",
@@ -48,7 +49,6 @@
},
"width": 113,
"height": 126,
- "level": 1,
"opacity": 1,
"strokeDash": 0,
"strokeWidth": 2,
@@ -75,7 +75,9 @@
"underline": false,
"labelWidth": 13,
"labelHeight": 26,
- "labelPosition": "INSIDE_MIDDLE_CENTER"
+ "labelPosition": "INSIDE_MIDDLE_CENTER",
+ "zIndex": 0,
+ "level": 1
},
{
"id": "c",
@@ -86,7 +88,6 @@
},
"width": 113,
"height": 126,
- "level": 1,
"opacity": 1,
"strokeDash": 0,
"strokeWidth": 2,
@@ -113,7 +114,9 @@
"underline": false,
"labelWidth": 13,
"labelHeight": 26,
- "labelPosition": "INSIDE_MIDDLE_CENTER"
+ "labelPosition": "INSIDE_MIDDLE_CENTER",
+ "zIndex": 0,
+ "level": 1
},
{
"id": "d",
@@ -124,7 +127,6 @@
},
"width": 114,
"height": 126,
- "level": 1,
"opacity": 1,
"strokeDash": 0,
"strokeWidth": 2,
@@ -151,7 +153,9 @@
"underline": false,
"labelWidth": 14,
"labelHeight": 26,
- "labelPosition": "INSIDE_MIDDLE_CENTER"
+ "labelPosition": "INSIDE_MIDDLE_CENTER",
+ "zIndex": 0,
+ "level": 1
},
{
"id": "e",
@@ -162,7 +166,6 @@
},
"width": 113,
"height": 126,
- "level": 1,
"opacity": 1,
"strokeDash": 0,
"strokeWidth": 2,
@@ -189,7 +192,9 @@
"underline": false,
"labelWidth": 13,
"labelHeight": 26,
- "labelPosition": "INSIDE_MIDDLE_CENTER"
+ "labelPosition": "INSIDE_MIDDLE_CENTER",
+ "zIndex": 0,
+ "level": 1
},
{
"id": "f",
@@ -200,7 +205,6 @@
},
"width": 111,
"height": 126,
- "level": 1,
"opacity": 1,
"strokeDash": 0,
"strokeWidth": 2,
@@ -227,7 +231,9 @@
"underline": false,
"labelWidth": 11,
"labelHeight": 26,
- "labelPosition": "INSIDE_MIDDLE_CENTER"
+ "labelPosition": "INSIDE_MIDDLE_CENTER",
+ "zIndex": 0,
+ "level": 1
},
{
"id": "g",
@@ -238,7 +244,6 @@
},
"width": 114,
"height": 126,
- "level": 1,
"opacity": 1,
"strokeDash": 0,
"strokeWidth": 2,
@@ -265,7 +270,9 @@
"underline": false,
"labelWidth": 14,
"labelHeight": 26,
- "labelPosition": "INSIDE_MIDDLE_CENTER"
+ "labelPosition": "INSIDE_MIDDLE_CENTER",
+ "zIndex": 0,
+ "level": 1
},
{
"id": "h",
@@ -276,7 +283,6 @@
},
"width": 113,
"height": 126,
- "level": 1,
"opacity": 1,
"strokeDash": 0,
"strokeWidth": 2,
@@ -303,7 +309,9 @@
"underline": false,
"labelWidth": 13,
"labelHeight": 26,
- "labelPosition": "INSIDE_MIDDLE_CENTER"
+ "labelPosition": "INSIDE_MIDDLE_CENTER",
+ "zIndex": 0,
+ "level": 1
},
{
"id": "i",
@@ -314,7 +322,6 @@
},
"width": 746,
"height": 732,
- "level": 1,
"opacity": 1,
"strokeDash": 0,
"strokeWidth": 2,
@@ -341,7 +348,9 @@
"underline": false,
"labelWidth": 9,
"labelHeight": 41,
- "labelPosition": "INSIDE_TOP_CENTER"
+ "labelPosition": "INSIDE_TOP_CENTER",
+ "zIndex": 0,
+ "level": 1
},
{
"id": "i.j",
@@ -352,7 +361,6 @@
},
"width": 392,
"height": 276,
- "level": 2,
"opacity": 1,
"strokeDash": 0,
"strokeWidth": 2,
@@ -379,7 +387,9 @@
"underline": false,
"labelWidth": 11,
"labelHeight": 36,
- "labelPosition": "INSIDE_TOP_CENTER"
+ "labelPosition": "INSIDE_TOP_CENTER",
+ "zIndex": 0,
+ "level": 2
},
{
"id": "i.j.k",
@@ -390,7 +400,6 @@
},
"width": 113,
"height": 126,
- "level": 3,
"opacity": 1,
"strokeDash": 0,
"strokeWidth": 2,
@@ -417,7 +426,9 @@
"underline": false,
"labelWidth": 13,
"labelHeight": 26,
- "labelPosition": "INSIDE_MIDDLE_CENTER"
+ "labelPosition": "INSIDE_MIDDLE_CENTER",
+ "zIndex": 0,
+ "level": 3
},
{
"id": "i.j.l",
@@ -428,7 +439,6 @@
},
"width": 109,
"height": 126,
- "level": 3,
"opacity": 1,
"strokeDash": 0,
"strokeWidth": 2,
@@ -455,7 +465,9 @@
"underline": false,
"labelWidth": 9,
"labelHeight": 26,
- "labelPosition": "INSIDE_MIDDLE_CENTER"
+ "labelPosition": "INSIDE_MIDDLE_CENTER",
+ "zIndex": 0,
+ "level": 3
},
{
"id": "i.m",
@@ -466,7 +478,6 @@
},
"width": 117,
"height": 126,
- "level": 2,
"opacity": 1,
"strokeDash": 0,
"strokeWidth": 2,
@@ -493,7 +504,9 @@
"underline": false,
"labelWidth": 17,
"labelHeight": 26,
- "labelPosition": "INSIDE_MIDDLE_CENTER"
+ "labelPosition": "INSIDE_MIDDLE_CENTER",
+ "zIndex": 0,
+ "level": 2
},
{
"id": "i.n",
@@ -504,7 +517,6 @@
},
"width": 113,
"height": 126,
- "level": 2,
"opacity": 1,
"strokeDash": 0,
"strokeWidth": 2,
@@ -531,7 +543,9 @@
"underline": false,
"labelWidth": 13,
"labelHeight": 26,
- "labelPosition": "INSIDE_MIDDLE_CENTER"
+ "labelPosition": "INSIDE_MIDDLE_CENTER",
+ "zIndex": 0,
+ "level": 2
},
{
"id": "i.o",
@@ -542,7 +556,6 @@
},
"width": 263,
"height": 276,
- "level": 2,
"opacity": 1,
"strokeDash": 0,
"strokeWidth": 2,
@@ -569,7 +582,9 @@
"underline": false,
"labelWidth": 16,
"labelHeight": 36,
- "labelPosition": "INSIDE_TOP_CENTER"
+ "labelPosition": "INSIDE_TOP_CENTER",
+ "zIndex": 0,
+ "level": 2
},
{
"id": "i.o.p",
@@ -580,7 +595,6 @@
},
"width": 113,
"height": 126,
- "level": 3,
"opacity": 1,
"strokeDash": 0,
"strokeWidth": 2,
@@ -607,7 +621,9 @@
"underline": false,
"labelWidth": 13,
"labelHeight": 26,
- "labelPosition": "INSIDE_MIDDLE_CENTER"
+ "labelPosition": "INSIDE_MIDDLE_CENTER",
+ "zIndex": 0,
+ "level": 3
},
{
"id": "q",
@@ -618,7 +634,6 @@
},
"width": 114,
"height": 126,
- "level": 1,
"opacity": 1,
"strokeDash": 0,
"strokeWidth": 2,
@@ -645,7 +660,9 @@
"underline": false,
"labelWidth": 14,
"labelHeight": 26,
- "labelPosition": "INSIDE_MIDDLE_CENTER"
+ "labelPosition": "INSIDE_MIDDLE_CENTER",
+ "zIndex": 0,
+ "level": 1
},
{
"id": "r",
@@ -656,7 +673,6 @@
},
"width": 1492,
"height": 1179,
- "level": 1,
"opacity": 1,
"strokeDash": 0,
"strokeWidth": 2,
@@ -683,7 +699,9 @@
"underline": false,
"labelWidth": 13,
"labelHeight": 41,
- "labelPosition": "INSIDE_TOP_CENTER"
+ "labelPosition": "INSIDE_TOP_CENTER",
+ "zIndex": 0,
+ "level": 1
},
{
"id": "r.s",
@@ -694,7 +712,6 @@
},
"width": 767,
"height": 577,
- "level": 2,
"opacity": 1,
"strokeDash": 0,
"strokeWidth": 2,
@@ -721,7 +738,9 @@
"underline": false,
"labelWidth": 15,
"labelHeight": 36,
- "labelPosition": "INSIDE_TOP_CENTER"
+ "labelPosition": "INSIDE_TOP_CENTER",
+ "zIndex": 0,
+ "level": 2
},
{
"id": "r.s.t",
@@ -732,7 +751,6 @@
},
"width": 111,
"height": 126,
- "level": 3,
"opacity": 1,
"strokeDash": 0,
"strokeWidth": 2,
@@ -759,7 +777,9 @@
"underline": false,
"labelWidth": 11,
"labelHeight": 26,
- "labelPosition": "INSIDE_MIDDLE_CENTER"
+ "labelPosition": "INSIDE_MIDDLE_CENTER",
+ "zIndex": 0,
+ "level": 3
},
{
"id": "r.s.u",
@@ -770,7 +790,6 @@
},
"width": 264,
"height": 276,
- "level": 3,
"opacity": 1,
"strokeDash": 0,
"strokeWidth": 2,
@@ -797,7 +816,9 @@
"underline": false,
"labelWidth": 14,
"labelHeight": 31,
- "labelPosition": "INSIDE_TOP_CENTER"
+ "labelPosition": "INSIDE_TOP_CENTER",
+ "zIndex": 0,
+ "level": 3
},
{
"id": "r.s.u.v",
@@ -808,7 +829,6 @@
},
"width": 114,
"height": 126,
- "level": 4,
"opacity": 1,
"strokeDash": 0,
"strokeWidth": 2,
@@ -835,7 +855,9 @@
"underline": false,
"labelWidth": 14,
"labelHeight": 26,
- "labelPosition": "INSIDE_MIDDLE_CENTER"
+ "labelPosition": "INSIDE_MIDDLE_CENTER",
+ "zIndex": 0,
+ "level": 4
},
{
"id": "r.s.w",
@@ -846,7 +868,6 @@
},
"width": 118,
"height": 126,
- "level": 3,
"opacity": 1,
"strokeDash": 0,
"strokeWidth": 2,
@@ -873,7 +894,9 @@
"underline": false,
"labelWidth": 18,
"labelHeight": 26,
- "labelPosition": "INSIDE_MIDDLE_CENTER"
+ "labelPosition": "INSIDE_MIDDLE_CENTER",
+ "zIndex": 0,
+ "level": 3
},
{
"id": "r.s.x",
@@ -884,7 +907,6 @@
},
"width": 113,
"height": 126,
- "level": 3,
"opacity": 1,
"strokeDash": 0,
"strokeWidth": 2,
@@ -911,7 +933,9 @@
"underline": false,
"labelWidth": 13,
"labelHeight": 26,
- "labelPosition": "INSIDE_MIDDLE_CENTER"
+ "labelPosition": "INSIDE_MIDDLE_CENTER",
+ "zIndex": 0,
+ "level": 3
},
{
"id": "r.s.y",
@@ -922,7 +946,6 @@
},
"width": 114,
"height": 126,
- "level": 3,
"opacity": 1,
"strokeDash": 0,
"strokeWidth": 2,
@@ -949,7 +972,9 @@
"underline": false,
"labelWidth": 14,
"labelHeight": 26,
- "labelPosition": "INSIDE_MIDDLE_CENTER"
+ "labelPosition": "INSIDE_MIDDLE_CENTER",
+ "zIndex": 0,
+ "level": 3
},
{
"id": "r.z",
@@ -960,7 +985,6 @@
},
"width": 112,
"height": 126,
- "level": 2,
"opacity": 1,
"strokeDash": 0,
"strokeWidth": 2,
@@ -987,7 +1011,9 @@
"underline": false,
"labelWidth": 12,
"labelHeight": 26,
- "labelPosition": "INSIDE_MIDDLE_CENTER"
+ "labelPosition": "INSIDE_MIDDLE_CENTER",
+ "zIndex": 0,
+ "level": 2
},
{
"id": "r.aa",
@@ -998,7 +1024,6 @@
},
"width": 122,
"height": 126,
- "level": 2,
"opacity": 1,
"strokeDash": 0,
"strokeWidth": 2,
@@ -1025,7 +1050,9 @@
"underline": false,
"labelWidth": 22,
"labelHeight": 26,
- "labelPosition": "INSIDE_MIDDLE_CENTER"
+ "labelPosition": "INSIDE_MIDDLE_CENTER",
+ "zIndex": 0,
+ "level": 2
},
{
"id": "r.bb",
@@ -1036,7 +1063,6 @@
},
"width": 415,
"height": 276,
- "level": 2,
"opacity": 1,
"strokeDash": 0,
"strokeWidth": 2,
@@ -1063,7 +1089,9 @@
"underline": false,
"labelWidth": 31,
"labelHeight": 36,
- "labelPosition": "INSIDE_TOP_CENTER"
+ "labelPosition": "INSIDE_TOP_CENTER",
+ "zIndex": 0,
+ "level": 2
},
{
"id": "r.bb.cc",
@@ -1074,7 +1102,6 @@
},
"width": 121,
"height": 126,
- "level": 3,
"opacity": 1,
"strokeDash": 0,
"strokeWidth": 2,
@@ -1101,7 +1128,9 @@
"underline": false,
"labelWidth": 21,
"labelHeight": 26,
- "labelPosition": "INSIDE_MIDDLE_CENTER"
+ "labelPosition": "INSIDE_MIDDLE_CENTER",
+ "zIndex": 0,
+ "level": 3
},
{
"id": "r.bb.dd",
@@ -1112,7 +1141,6 @@
},
"width": 124,
"height": 126,
- "level": 3,
"opacity": 1,
"strokeDash": 0,
"strokeWidth": 2,
@@ -1139,7 +1167,9 @@
"underline": false,
"labelWidth": 24,
"labelHeight": 26,
- "labelPosition": "INSIDE_MIDDLE_CENTER"
+ "labelPosition": "INSIDE_MIDDLE_CENTER",
+ "zIndex": 0,
+ "level": 3
},
{
"id": "r.ee",
@@ -1150,7 +1180,6 @@
},
"width": 122,
"height": 126,
- "level": 2,
"opacity": 1,
"strokeDash": 0,
"strokeWidth": 2,
@@ -1177,7 +1206,9 @@
"underline": false,
"labelWidth": 22,
"labelHeight": 26,
- "labelPosition": "INSIDE_MIDDLE_CENTER"
+ "labelPosition": "INSIDE_MIDDLE_CENTER",
+ "zIndex": 0,
+ "level": 2
},
{
"id": "r.ff",
@@ -1188,7 +1219,6 @@
},
"width": 117,
"height": 126,
- "level": 2,
"opacity": 1,
"strokeDash": 0,
"strokeWidth": 2,
@@ -1215,7 +1245,9 @@
"underline": false,
"labelWidth": 17,
"labelHeight": 26,
- "labelPosition": "INSIDE_MIDDLE_CENTER"
+ "labelPosition": "INSIDE_MIDDLE_CENTER",
+ "zIndex": 0,
+ "level": 2
},
{
"id": "r.gg",
@@ -1226,7 +1258,6 @@
},
"width": 123,
"height": 126,
- "level": 2,
"opacity": 1,
"strokeDash": 0,
"strokeWidth": 2,
@@ -1253,7 +1284,9 @@
"underline": false,
"labelWidth": 23,
"labelHeight": 26,
- "labelPosition": "INSIDE_MIDDLE_CENTER"
+ "labelPosition": "INSIDE_MIDDLE_CENTER",
+ "zIndex": 0,
+ "level": 2
}
],
"connections": [
@@ -1301,7 +1334,8 @@
],
"animated": false,
"tooltip": "",
- "icon": null
+ "icon": null,
+ "zIndex": 0
},
{
"id": "i.(j.l -> o.p)[0]",
@@ -1339,7 +1373,8 @@
],
"animated": false,
"tooltip": "",
- "icon": null
+ "icon": null,
+ "zIndex": 0
},
{
"id": "(q -> i.m)[0]",
@@ -1393,7 +1428,8 @@
],
"animated": false,
"tooltip": "",
- "icon": null
+ "icon": null,
+ "zIndex": 0
},
{
"id": "(i.m -> q)[0]",
@@ -1439,7 +1475,8 @@
],
"animated": false,
"tooltip": "",
- "icon": null
+ "icon": null,
+ "zIndex": 0
},
{
"id": "(i.n -> q)[0]",
@@ -1477,7 +1514,8 @@
],
"animated": false,
"tooltip": "",
- "icon": null
+ "icon": null,
+ "zIndex": 0
},
{
"id": "(i.m -> c)[0]",
@@ -1523,7 +1561,8 @@
],
"animated": false,
"tooltip": "",
- "icon": null
+ "icon": null,
+ "zIndex": 0
},
{
"id": "(i.m -> d)[0]",
@@ -1569,7 +1608,8 @@
],
"animated": false,
"tooltip": "",
- "icon": null
+ "icon": null,
+ "zIndex": 0
},
{
"id": "(i.m -> g)[0]",
@@ -1615,7 +1655,8 @@
],
"animated": false,
"tooltip": "",
- "icon": null
+ "icon": null,
+ "zIndex": 0
},
{
"id": "(i.m -> f)[0]",
@@ -1661,7 +1702,8 @@
],
"animated": false,
"tooltip": "",
- "icon": null
+ "icon": null,
+ "zIndex": 0
},
{
"id": "(d -> e)[0]",
@@ -1699,7 +1741,8 @@
],
"animated": false,
"tooltip": "",
- "icon": null
+ "icon": null,
+ "zIndex": 0
},
{
"id": "r.s.(x -> t)[0]",
@@ -1745,7 +1788,8 @@
],
"animated": false,
"tooltip": "",
- "icon": null
+ "icon": null,
+ "zIndex": 0
},
{
"id": "r.s.(x -> w)[0]",
@@ -1783,7 +1827,8 @@
],
"animated": false,
"tooltip": "",
- "icon": null
+ "icon": null,
+ "zIndex": 0
},
{
"id": "r.(gg -> s.t)[0]",
@@ -1821,7 +1866,8 @@
],
"animated": false,
"tooltip": "",
- "icon": null
+ "icon": null,
+ "zIndex": 0
},
{
"id": "r.(s.u.v -> z)[0]",
@@ -1859,7 +1905,8 @@
],
"animated": false,
"tooltip": "",
- "icon": null
+ "icon": null,
+ "zIndex": 0
},
{
"id": "r.(aa -> s.t)[0]",
@@ -1905,7 +1952,8 @@
],
"animated": false,
"tooltip": "",
- "icon": null
+ "icon": null,
+ "zIndex": 0
},
{
"id": "(r.s.w -> i.m)[0]",
@@ -1943,7 +1991,8 @@
],
"animated": false,
"tooltip": "",
- "icon": null
+ "icon": null,
+ "zIndex": 0
},
{
"id": "(r.s.t -> g)[0]",
@@ -1989,7 +2038,8 @@
],
"animated": false,
"tooltip": "",
- "icon": null
+ "icon": null,
+ "zIndex": 0
},
{
"id": "(r.s.t -> h)[0]",
@@ -2035,7 +2085,8 @@
],
"animated": false,
"tooltip": "",
- "icon": null
+ "icon": null,
+ "zIndex": 0
},
{
"id": "r.(ee -> ff)[0]",
@@ -2073,7 +2124,8 @@
],
"animated": false,
"tooltip": "",
- "icon": null
+ "icon": null,
+ "zIndex": 0
}
]
}
diff --git a/e2etests/testdata/stable/latex/dagre/board.exp.json b/e2etests/testdata/stable/latex/dagre/board.exp.json
index 50277d20d..7c67a066e 100644
--- a/e2etests/testdata/stable/latex/dagre/board.exp.json
+++ b/e2etests/testdata/stable/latex/dagre/board.exp.json
@@ -10,7 +10,6 @@
},
"width": 382,
"height": 101,
- "level": 1,
"opacity": 1,
"strokeDash": 0,
"strokeWidth": 2,
@@ -36,7 +35,9 @@
"bold": true,
"underline": false,
"labelWidth": 382,
- "labelHeight": 101
+ "labelHeight": 101,
+ "zIndex": 0,
+ "level": 1
},
{
"id": "b",
@@ -47,7 +48,6 @@
},
"width": 65,
"height": 18,
- "level": 1,
"opacity": 1,
"strokeDash": 0,
"strokeWidth": 2,
@@ -73,7 +73,9 @@
"bold": true,
"underline": false,
"labelWidth": 65,
- "labelHeight": 18
+ "labelHeight": 18,
+ "zIndex": 0,
+ "level": 1
},
{
"id": "z",
@@ -84,7 +86,6 @@
},
"width": 179,
"height": 51,
- "level": 1,
"opacity": 1,
"strokeDash": 0,
"strokeWidth": 2,
@@ -110,7 +111,9 @@
"bold": true,
"underline": false,
"labelWidth": 179,
- "labelHeight": 51
+ "labelHeight": 51,
+ "zIndex": 0,
+ "level": 1
},
{
"id": "c",
@@ -121,7 +124,6 @@
},
"width": 214,
"height": 126,
- "level": 1,
"opacity": 1,
"strokeDash": 0,
"strokeWidth": 2,
@@ -148,7 +150,9 @@
"underline": false,
"labelWidth": 114,
"labelHeight": 26,
- "labelPosition": "INSIDE_MIDDLE_CENTER"
+ "labelPosition": "INSIDE_MIDDLE_CENTER",
+ "zIndex": 0,
+ "level": 1
},
{
"id": "sugar",
@@ -159,7 +163,6 @@
},
"width": 146,
"height": 126,
- "level": 1,
"opacity": 1,
"strokeDash": 0,
"strokeWidth": 2,
@@ -186,7 +189,9 @@
"underline": false,
"labelWidth": 46,
"labelHeight": 26,
- "labelPosition": "INSIDE_MIDDLE_CENTER"
+ "labelPosition": "INSIDE_MIDDLE_CENTER",
+ "zIndex": 0,
+ "level": 1
},
{
"id": "solution",
@@ -197,7 +202,6 @@
},
"width": 164,
"height": 126,
- "level": 1,
"opacity": 1,
"strokeDash": 0,
"strokeWidth": 2,
@@ -224,7 +228,9 @@
"underline": false,
"labelWidth": 64,
"labelHeight": 26,
- "labelPosition": "INSIDE_MIDDLE_CENTER"
+ "labelPosition": "INSIDE_MIDDLE_CENTER",
+ "zIndex": 0,
+ "level": 1
}
],
"connections": [
@@ -273,7 +279,8 @@
"isCurve": true,
"animated": false,
"tooltip": "",
- "icon": null
+ "icon": null,
+ "zIndex": 0
},
{
"id": "(z -> b)[0]",
@@ -320,7 +327,8 @@
"isCurve": true,
"animated": false,
"tooltip": "",
- "icon": null
+ "icon": null,
+ "zIndex": 0
},
{
"id": "(a -> c)[0]",
@@ -367,7 +375,8 @@
"isCurve": true,
"animated": false,
"tooltip": "",
- "icon": null
+ "icon": null,
+ "zIndex": 0
},
{
"id": "(b -> c)[0]",
@@ -414,7 +423,8 @@
"isCurve": true,
"animated": false,
"tooltip": "",
- "icon": null
+ "icon": null,
+ "zIndex": 0
},
{
"id": "(sugar -> c)[0]",
@@ -461,7 +471,8 @@
"isCurve": true,
"animated": false,
"tooltip": "",
- "icon": null
+ "icon": null,
+ "zIndex": 0
},
{
"id": "(c -> solution)[0]",
@@ -508,7 +519,8 @@
"isCurve": true,
"animated": false,
"tooltip": "",
- "icon": null
+ "icon": null,
+ "zIndex": 0
}
]
}
diff --git a/e2etests/testdata/stable/latex/elk/board.exp.json b/e2etests/testdata/stable/latex/elk/board.exp.json
index 9e2d35a69..f5169ca81 100644
--- a/e2etests/testdata/stable/latex/elk/board.exp.json
+++ b/e2etests/testdata/stable/latex/elk/board.exp.json
@@ -10,7 +10,6 @@
},
"width": 382,
"height": 101,
- "level": 1,
"opacity": 1,
"strokeDash": 0,
"strokeWidth": 2,
@@ -36,7 +35,9 @@
"bold": true,
"underline": false,
"labelWidth": 382,
- "labelHeight": 101
+ "labelHeight": 101,
+ "zIndex": 0,
+ "level": 1
},
{
"id": "b",
@@ -47,7 +48,6 @@
},
"width": 65,
"height": 18,
- "level": 1,
"opacity": 1,
"strokeDash": 0,
"strokeWidth": 2,
@@ -73,7 +73,9 @@
"bold": true,
"underline": false,
"labelWidth": 65,
- "labelHeight": 18
+ "labelHeight": 18,
+ "zIndex": 0,
+ "level": 1
},
{
"id": "z",
@@ -84,7 +86,6 @@
},
"width": 179,
"height": 51,
- "level": 1,
"opacity": 1,
"strokeDash": 0,
"strokeWidth": 2,
@@ -110,7 +111,9 @@
"bold": true,
"underline": false,
"labelWidth": 179,
- "labelHeight": 51
+ "labelHeight": 51,
+ "zIndex": 0,
+ "level": 1
},
{
"id": "c",
@@ -121,7 +124,6 @@
},
"width": 214,
"height": 126,
- "level": 1,
"opacity": 1,
"strokeDash": 0,
"strokeWidth": 2,
@@ -148,7 +150,9 @@
"underline": false,
"labelWidth": 114,
"labelHeight": 26,
- "labelPosition": "INSIDE_MIDDLE_CENTER"
+ "labelPosition": "INSIDE_MIDDLE_CENTER",
+ "zIndex": 0,
+ "level": 1
},
{
"id": "sugar",
@@ -159,7 +163,6 @@
},
"width": 146,
"height": 126,
- "level": 1,
"opacity": 1,
"strokeDash": 0,
"strokeWidth": 2,
@@ -186,7 +189,9 @@
"underline": false,
"labelWidth": 46,
"labelHeight": 26,
- "labelPosition": "INSIDE_MIDDLE_CENTER"
+ "labelPosition": "INSIDE_MIDDLE_CENTER",
+ "zIndex": 0,
+ "level": 1
},
{
"id": "solution",
@@ -197,7 +202,6 @@
},
"width": 164,
"height": 126,
- "level": 1,
"opacity": 1,
"strokeDash": 0,
"strokeWidth": 2,
@@ -224,7 +228,9 @@
"underline": false,
"labelWidth": 64,
"labelHeight": 26,
- "labelPosition": "INSIDE_MIDDLE_CENTER"
+ "labelPosition": "INSIDE_MIDDLE_CENTER",
+ "zIndex": 0,
+ "level": 1
}
],
"connections": [
@@ -272,7 +278,8 @@
],
"animated": false,
"tooltip": "",
- "icon": null
+ "icon": null,
+ "zIndex": 0
},
{
"id": "(z -> b)[0]",
@@ -310,7 +317,8 @@
],
"animated": false,
"tooltip": "",
- "icon": null
+ "icon": null,
+ "zIndex": 0
},
{
"id": "(a -> c)[0]",
@@ -356,7 +364,8 @@
],
"animated": false,
"tooltip": "",
- "icon": null
+ "icon": null,
+ "zIndex": 0
},
{
"id": "(b -> c)[0]",
@@ -394,7 +403,8 @@
],
"animated": false,
"tooltip": "",
- "icon": null
+ "icon": null,
+ "zIndex": 0
},
{
"id": "(sugar -> c)[0]",
@@ -440,7 +450,8 @@
],
"animated": false,
"tooltip": "",
- "icon": null
+ "icon": null,
+ "zIndex": 0
},
{
"id": "(c -> solution)[0]",
@@ -478,7 +489,8 @@
],
"animated": false,
"tooltip": "",
- "icon": null
+ "icon": null,
+ "zIndex": 0
}
]
}
diff --git a/e2etests/testdata/stable/li1/dagre/board.exp.json b/e2etests/testdata/stable/li1/dagre/board.exp.json
index 021f2b3dd..ef0b21375 100644
--- a/e2etests/testdata/stable/li1/dagre/board.exp.json
+++ b/e2etests/testdata/stable/li1/dagre/board.exp.json
@@ -10,7 +10,6 @@
},
"width": 379,
"height": 100,
- "level": 1,
"opacity": 1,
"strokeDash": 0,
"strokeWidth": 2,
@@ -36,7 +35,9 @@
"bold": true,
"underline": false,
"labelWidth": 379,
- "labelHeight": 100
+ "labelHeight": 100,
+ "zIndex": 0,
+ "level": 1
},
{
"id": "a",
@@ -47,7 +48,6 @@
},
"width": 113,
"height": 126,
- "level": 1,
"opacity": 1,
"strokeDash": 0,
"strokeWidth": 2,
@@ -74,7 +74,9 @@
"underline": false,
"labelWidth": 13,
"labelHeight": 26,
- "labelPosition": "INSIDE_MIDDLE_CENTER"
+ "labelPosition": "INSIDE_MIDDLE_CENTER",
+ "zIndex": 0,
+ "level": 1
},
{
"id": "b",
@@ -85,7 +87,6 @@
},
"width": 113,
"height": 126,
- "level": 1,
"opacity": 1,
"strokeDash": 0,
"strokeWidth": 2,
@@ -112,7 +113,9 @@
"underline": false,
"labelWidth": 13,
"labelHeight": 26,
- "labelPosition": "INSIDE_MIDDLE_CENTER"
+ "labelPosition": "INSIDE_MIDDLE_CENTER",
+ "zIndex": 0,
+ "level": 1
}
],
"connections": [
@@ -161,7 +164,8 @@
"isCurve": true,
"animated": false,
"tooltip": "",
- "icon": null
+ "icon": null,
+ "zIndex": 0
},
{
"id": "(md -> b)[0]",
@@ -208,7 +212,8 @@
"isCurve": true,
"animated": false,
"tooltip": "",
- "icon": null
+ "icon": null,
+ "zIndex": 0
}
]
}
diff --git a/e2etests/testdata/stable/li1/elk/board.exp.json b/e2etests/testdata/stable/li1/elk/board.exp.json
index fb6f530b2..7a775116c 100644
--- a/e2etests/testdata/stable/li1/elk/board.exp.json
+++ b/e2etests/testdata/stable/li1/elk/board.exp.json
@@ -10,7 +10,6 @@
},
"width": 379,
"height": 100,
- "level": 1,
"opacity": 1,
"strokeDash": 0,
"strokeWidth": 2,
@@ -36,7 +35,9 @@
"bold": true,
"underline": false,
"labelWidth": 379,
- "labelHeight": 100
+ "labelHeight": 100,
+ "zIndex": 0,
+ "level": 1
},
{
"id": "a",
@@ -47,7 +48,6 @@
},
"width": 113,
"height": 126,
- "level": 1,
"opacity": 1,
"strokeDash": 0,
"strokeWidth": 2,
@@ -74,7 +74,9 @@
"underline": false,
"labelWidth": 13,
"labelHeight": 26,
- "labelPosition": "INSIDE_MIDDLE_CENTER"
+ "labelPosition": "INSIDE_MIDDLE_CENTER",
+ "zIndex": 0,
+ "level": 1
},
{
"id": "b",
@@ -85,7 +87,6 @@
},
"width": 113,
"height": 126,
- "level": 1,
"opacity": 1,
"strokeDash": 0,
"strokeWidth": 2,
@@ -112,7 +113,9 @@
"underline": false,
"labelWidth": 13,
"labelHeight": 26,
- "labelPosition": "INSIDE_MIDDLE_CENTER"
+ "labelPosition": "INSIDE_MIDDLE_CENTER",
+ "zIndex": 0,
+ "level": 1
}
],
"connections": [
@@ -152,7 +155,8 @@
],
"animated": false,
"tooltip": "",
- "icon": null
+ "icon": null,
+ "zIndex": 0
},
{
"id": "(md -> b)[0]",
@@ -190,7 +194,8 @@
],
"animated": false,
"tooltip": "",
- "icon": null
+ "icon": null,
+ "zIndex": 0
}
]
}
diff --git a/e2etests/testdata/stable/li2/dagre/board.exp.json b/e2etests/testdata/stable/li2/dagre/board.exp.json
index aad26509e..fb1e86fb3 100644
--- a/e2etests/testdata/stable/li2/dagre/board.exp.json
+++ b/e2etests/testdata/stable/li2/dagre/board.exp.json
@@ -10,7 +10,6 @@
},
"width": 245,
"height": 76,
- "level": 1,
"opacity": 1,
"strokeDash": 0,
"strokeWidth": 2,
@@ -36,7 +35,9 @@
"bold": true,
"underline": false,
"labelWidth": 245,
- "labelHeight": 76
+ "labelHeight": 76,
+ "zIndex": 0,
+ "level": 1
},
{
"id": "a",
@@ -47,7 +48,6 @@
},
"width": 113,
"height": 126,
- "level": 1,
"opacity": 1,
"strokeDash": 0,
"strokeWidth": 2,
@@ -74,7 +74,9 @@
"underline": false,
"labelWidth": 13,
"labelHeight": 26,
- "labelPosition": "INSIDE_MIDDLE_CENTER"
+ "labelPosition": "INSIDE_MIDDLE_CENTER",
+ "zIndex": 0,
+ "level": 1
},
{
"id": "b",
@@ -85,7 +87,6 @@
},
"width": 113,
"height": 126,
- "level": 1,
"opacity": 1,
"strokeDash": 0,
"strokeWidth": 2,
@@ -112,7 +113,9 @@
"underline": false,
"labelWidth": 13,
"labelHeight": 26,
- "labelPosition": "INSIDE_MIDDLE_CENTER"
+ "labelPosition": "INSIDE_MIDDLE_CENTER",
+ "zIndex": 0,
+ "level": 1
}
],
"connections": [
@@ -161,7 +164,8 @@
"isCurve": true,
"animated": false,
"tooltip": "",
- "icon": null
+ "icon": null,
+ "zIndex": 0
},
{
"id": "(md -> b)[0]",
@@ -208,7 +212,8 @@
"isCurve": true,
"animated": false,
"tooltip": "",
- "icon": null
+ "icon": null,
+ "zIndex": 0
}
]
}
diff --git a/e2etests/testdata/stable/li2/elk/board.exp.json b/e2etests/testdata/stable/li2/elk/board.exp.json
index 170a4afb1..07f33ae94 100644
--- a/e2etests/testdata/stable/li2/elk/board.exp.json
+++ b/e2etests/testdata/stable/li2/elk/board.exp.json
@@ -10,7 +10,6 @@
},
"width": 245,
"height": 76,
- "level": 1,
"opacity": 1,
"strokeDash": 0,
"strokeWidth": 2,
@@ -36,7 +35,9 @@
"bold": true,
"underline": false,
"labelWidth": 245,
- "labelHeight": 76
+ "labelHeight": 76,
+ "zIndex": 0,
+ "level": 1
},
{
"id": "a",
@@ -47,7 +48,6 @@
},
"width": 113,
"height": 126,
- "level": 1,
"opacity": 1,
"strokeDash": 0,
"strokeWidth": 2,
@@ -74,7 +74,9 @@
"underline": false,
"labelWidth": 13,
"labelHeight": 26,
- "labelPosition": "INSIDE_MIDDLE_CENTER"
+ "labelPosition": "INSIDE_MIDDLE_CENTER",
+ "zIndex": 0,
+ "level": 1
},
{
"id": "b",
@@ -85,7 +87,6 @@
},
"width": 113,
"height": 126,
- "level": 1,
"opacity": 1,
"strokeDash": 0,
"strokeWidth": 2,
@@ -112,7 +113,9 @@
"underline": false,
"labelWidth": 13,
"labelHeight": 26,
- "labelPosition": "INSIDE_MIDDLE_CENTER"
+ "labelPosition": "INSIDE_MIDDLE_CENTER",
+ "zIndex": 0,
+ "level": 1
}
],
"connections": [
@@ -152,7 +155,8 @@
],
"animated": false,
"tooltip": "",
- "icon": null
+ "icon": null,
+ "zIndex": 0
},
{
"id": "(md -> b)[0]",
@@ -190,7 +194,8 @@
],
"animated": false,
"tooltip": "",
- "icon": null
+ "icon": null,
+ "zIndex": 0
}
]
}
diff --git a/e2etests/testdata/stable/li3/dagre/board.exp.json b/e2etests/testdata/stable/li3/dagre/board.exp.json
index 9bad93fb3..73ccc4c49 100644
--- a/e2etests/testdata/stable/li3/dagre/board.exp.json
+++ b/e2etests/testdata/stable/li3/dagre/board.exp.json
@@ -10,7 +10,6 @@
},
"width": 347,
"height": 512,
- "level": 1,
"opacity": 1,
"strokeDash": 0,
"strokeWidth": 2,
@@ -36,7 +35,9 @@
"bold": true,
"underline": false,
"labelWidth": 347,
- "labelHeight": 512
+ "labelHeight": 512,
+ "zIndex": 0,
+ "level": 1
},
{
"id": "a",
@@ -47,7 +48,6 @@
},
"width": 113,
"height": 126,
- "level": 1,
"opacity": 1,
"strokeDash": 0,
"strokeWidth": 2,
@@ -74,7 +74,9 @@
"underline": false,
"labelWidth": 13,
"labelHeight": 26,
- "labelPosition": "INSIDE_MIDDLE_CENTER"
+ "labelPosition": "INSIDE_MIDDLE_CENTER",
+ "zIndex": 0,
+ "level": 1
},
{
"id": "b",
@@ -85,7 +87,6 @@
},
"width": 113,
"height": 126,
- "level": 1,
"opacity": 1,
"strokeDash": 0,
"strokeWidth": 2,
@@ -112,7 +113,9 @@
"underline": false,
"labelWidth": 13,
"labelHeight": 26,
- "labelPosition": "INSIDE_MIDDLE_CENTER"
+ "labelPosition": "INSIDE_MIDDLE_CENTER",
+ "zIndex": 0,
+ "level": 1
}
],
"connections": [
@@ -161,7 +164,8 @@
"isCurve": true,
"animated": false,
"tooltip": "",
- "icon": null
+ "icon": null,
+ "zIndex": 0
},
{
"id": "(md -> b)[0]",
@@ -208,7 +212,8 @@
"isCurve": true,
"animated": false,
"tooltip": "",
- "icon": null
+ "icon": null,
+ "zIndex": 0
}
]
}
diff --git a/e2etests/testdata/stable/li3/elk/board.exp.json b/e2etests/testdata/stable/li3/elk/board.exp.json
index 75acbe9f2..153b23cc7 100644
--- a/e2etests/testdata/stable/li3/elk/board.exp.json
+++ b/e2etests/testdata/stable/li3/elk/board.exp.json
@@ -10,7 +10,6 @@
},
"width": 347,
"height": 512,
- "level": 1,
"opacity": 1,
"strokeDash": 0,
"strokeWidth": 2,
@@ -36,7 +35,9 @@
"bold": true,
"underline": false,
"labelWidth": 347,
- "labelHeight": 512
+ "labelHeight": 512,
+ "zIndex": 0,
+ "level": 1
},
{
"id": "a",
@@ -47,7 +48,6 @@
},
"width": 113,
"height": 126,
- "level": 1,
"opacity": 1,
"strokeDash": 0,
"strokeWidth": 2,
@@ -74,7 +74,9 @@
"underline": false,
"labelWidth": 13,
"labelHeight": 26,
- "labelPosition": "INSIDE_MIDDLE_CENTER"
+ "labelPosition": "INSIDE_MIDDLE_CENTER",
+ "zIndex": 0,
+ "level": 1
},
{
"id": "b",
@@ -85,7 +87,6 @@
},
"width": 113,
"height": 126,
- "level": 1,
"opacity": 1,
"strokeDash": 0,
"strokeWidth": 2,
@@ -112,7 +113,9 @@
"underline": false,
"labelWidth": 13,
"labelHeight": 26,
- "labelPosition": "INSIDE_MIDDLE_CENTER"
+ "labelPosition": "INSIDE_MIDDLE_CENTER",
+ "zIndex": 0,
+ "level": 1
}
],
"connections": [
@@ -152,7 +155,8 @@
],
"animated": false,
"tooltip": "",
- "icon": null
+ "icon": null,
+ "zIndex": 0
},
{
"id": "(md -> b)[0]",
@@ -190,7 +194,8 @@
],
"animated": false,
"tooltip": "",
- "icon": null
+ "icon": null,
+ "zIndex": 0
}
]
}
diff --git a/e2etests/testdata/stable/li4/dagre/board.exp.json b/e2etests/testdata/stable/li4/dagre/board.exp.json
index 57a034b99..beb04851b 100644
--- a/e2etests/testdata/stable/li4/dagre/board.exp.json
+++ b/e2etests/testdata/stable/li4/dagre/board.exp.json
@@ -10,7 +10,6 @@
},
"width": 920,
"height": 376,
- "level": 1,
"opacity": 1,
"strokeDash": 0,
"strokeWidth": 2,
@@ -36,7 +35,9 @@
"bold": true,
"underline": false,
"labelWidth": 920,
- "labelHeight": 376
+ "labelHeight": 376,
+ "zIndex": 0,
+ "level": 1
},
{
"id": "a",
@@ -47,7 +48,6 @@
},
"width": 113,
"height": 126,
- "level": 1,
"opacity": 1,
"strokeDash": 0,
"strokeWidth": 2,
@@ -74,7 +74,9 @@
"underline": false,
"labelWidth": 13,
"labelHeight": 26,
- "labelPosition": "INSIDE_MIDDLE_CENTER"
+ "labelPosition": "INSIDE_MIDDLE_CENTER",
+ "zIndex": 0,
+ "level": 1
},
{
"id": "b",
@@ -85,7 +87,6 @@
},
"width": 113,
"height": 126,
- "level": 1,
"opacity": 1,
"strokeDash": 0,
"strokeWidth": 2,
@@ -112,7 +113,9 @@
"underline": false,
"labelWidth": 13,
"labelHeight": 26,
- "labelPosition": "INSIDE_MIDDLE_CENTER"
+ "labelPosition": "INSIDE_MIDDLE_CENTER",
+ "zIndex": 0,
+ "level": 1
}
],
"connections": [
@@ -161,7 +164,8 @@
"isCurve": true,
"animated": false,
"tooltip": "",
- "icon": null
+ "icon": null,
+ "zIndex": 0
},
{
"id": "(md -> b)[0]",
@@ -208,7 +212,8 @@
"isCurve": true,
"animated": false,
"tooltip": "",
- "icon": null
+ "icon": null,
+ "zIndex": 0
}
]
}
diff --git a/e2etests/testdata/stable/li4/elk/board.exp.json b/e2etests/testdata/stable/li4/elk/board.exp.json
index eae59ea12..e3c415af9 100644
--- a/e2etests/testdata/stable/li4/elk/board.exp.json
+++ b/e2etests/testdata/stable/li4/elk/board.exp.json
@@ -10,7 +10,6 @@
},
"width": 920,
"height": 376,
- "level": 1,
"opacity": 1,
"strokeDash": 0,
"strokeWidth": 2,
@@ -36,7 +35,9 @@
"bold": true,
"underline": false,
"labelWidth": 920,
- "labelHeight": 376
+ "labelHeight": 376,
+ "zIndex": 0,
+ "level": 1
},
{
"id": "a",
@@ -47,7 +48,6 @@
},
"width": 113,
"height": 126,
- "level": 1,
"opacity": 1,
"strokeDash": 0,
"strokeWidth": 2,
@@ -74,7 +74,9 @@
"underline": false,
"labelWidth": 13,
"labelHeight": 26,
- "labelPosition": "INSIDE_MIDDLE_CENTER"
+ "labelPosition": "INSIDE_MIDDLE_CENTER",
+ "zIndex": 0,
+ "level": 1
},
{
"id": "b",
@@ -85,7 +87,6 @@
},
"width": 113,
"height": 126,
- "level": 1,
"opacity": 1,
"strokeDash": 0,
"strokeWidth": 2,
@@ -112,7 +113,9 @@
"underline": false,
"labelWidth": 13,
"labelHeight": 26,
- "labelPosition": "INSIDE_MIDDLE_CENTER"
+ "labelPosition": "INSIDE_MIDDLE_CENTER",
+ "zIndex": 0,
+ "level": 1
}
],
"connections": [
@@ -152,7 +155,8 @@
],
"animated": false,
"tooltip": "",
- "icon": null
+ "icon": null,
+ "zIndex": 0
},
{
"id": "(md -> b)[0]",
@@ -190,7 +194,8 @@
],
"animated": false,
"tooltip": "",
- "icon": null
+ "icon": null,
+ "zIndex": 0
}
]
}
diff --git a/e2etests/testdata/stable/lone_h1/dagre/board.exp.json b/e2etests/testdata/stable/lone_h1/dagre/board.exp.json
index 7c99b7389..eff491567 100644
--- a/e2etests/testdata/stable/lone_h1/dagre/board.exp.json
+++ b/e2etests/testdata/stable/lone_h1/dagre/board.exp.json
@@ -10,7 +10,6 @@
},
"width": 266,
"height": 50,
- "level": 1,
"opacity": 1,
"strokeDash": 0,
"strokeWidth": 2,
@@ -36,7 +35,9 @@
"bold": true,
"underline": false,
"labelWidth": 266,
- "labelHeight": 50
+ "labelHeight": 50,
+ "zIndex": 0,
+ "level": 1
},
{
"id": "a",
@@ -47,7 +48,6 @@
},
"width": 113,
"height": 126,
- "level": 1,
"opacity": 1,
"strokeDash": 0,
"strokeWidth": 2,
@@ -74,7 +74,9 @@
"underline": false,
"labelWidth": 13,
"labelHeight": 26,
- "labelPosition": "INSIDE_MIDDLE_CENTER"
+ "labelPosition": "INSIDE_MIDDLE_CENTER",
+ "zIndex": 0,
+ "level": 1
},
{
"id": "b",
@@ -85,7 +87,6 @@
},
"width": 113,
"height": 126,
- "level": 1,
"opacity": 1,
"strokeDash": 0,
"strokeWidth": 2,
@@ -112,7 +113,9 @@
"underline": false,
"labelWidth": 13,
"labelHeight": 26,
- "labelPosition": "INSIDE_MIDDLE_CENTER"
+ "labelPosition": "INSIDE_MIDDLE_CENTER",
+ "zIndex": 0,
+ "level": 1
}
],
"connections": [
@@ -161,7 +164,8 @@
"isCurve": true,
"animated": false,
"tooltip": "",
- "icon": null
+ "icon": null,
+ "zIndex": 0
},
{
"id": "(md -> b)[0]",
@@ -208,7 +212,8 @@
"isCurve": true,
"animated": false,
"tooltip": "",
- "icon": null
+ "icon": null,
+ "zIndex": 0
}
]
}
diff --git a/e2etests/testdata/stable/lone_h1/elk/board.exp.json b/e2etests/testdata/stable/lone_h1/elk/board.exp.json
index db02754be..e2d4191d7 100644
--- a/e2etests/testdata/stable/lone_h1/elk/board.exp.json
+++ b/e2etests/testdata/stable/lone_h1/elk/board.exp.json
@@ -10,7 +10,6 @@
},
"width": 266,
"height": 50,
- "level": 1,
"opacity": 1,
"strokeDash": 0,
"strokeWidth": 2,
@@ -36,7 +35,9 @@
"bold": true,
"underline": false,
"labelWidth": 266,
- "labelHeight": 50
+ "labelHeight": 50,
+ "zIndex": 0,
+ "level": 1
},
{
"id": "a",
@@ -47,7 +48,6 @@
},
"width": 113,
"height": 126,
- "level": 1,
"opacity": 1,
"strokeDash": 0,
"strokeWidth": 2,
@@ -74,7 +74,9 @@
"underline": false,
"labelWidth": 13,
"labelHeight": 26,
- "labelPosition": "INSIDE_MIDDLE_CENTER"
+ "labelPosition": "INSIDE_MIDDLE_CENTER",
+ "zIndex": 0,
+ "level": 1
},
{
"id": "b",
@@ -85,7 +87,6 @@
},
"width": 113,
"height": 126,
- "level": 1,
"opacity": 1,
"strokeDash": 0,
"strokeWidth": 2,
@@ -112,7 +113,9 @@
"underline": false,
"labelWidth": 13,
"labelHeight": 26,
- "labelPosition": "INSIDE_MIDDLE_CENTER"
+ "labelPosition": "INSIDE_MIDDLE_CENTER",
+ "zIndex": 0,
+ "level": 1
}
],
"connections": [
@@ -152,7 +155,8 @@
],
"animated": false,
"tooltip": "",
- "icon": null
+ "icon": null,
+ "zIndex": 0
},
{
"id": "(md -> b)[0]",
@@ -190,7 +194,8 @@
],
"animated": false,
"tooltip": "",
- "icon": null
+ "icon": null,
+ "zIndex": 0
}
]
}
diff --git a/e2etests/testdata/stable/markdown/dagre/board.exp.json b/e2etests/testdata/stable/markdown/dagre/board.exp.json
index 921665d67..ddc1820d3 100644
--- a/e2etests/testdata/stable/markdown/dagre/board.exp.json
+++ b/e2etests/testdata/stable/markdown/dagre/board.exp.json
@@ -10,7 +10,6 @@
},
"width": 531,
"height": 186,
- "level": 1,
"opacity": 1,
"strokeDash": 0,
"strokeWidth": 2,
@@ -36,7 +35,9 @@
"bold": true,
"underline": false,
"labelWidth": 531,
- "labelHeight": 186
+ "labelHeight": 186,
+ "zIndex": 0,
+ "level": 1
},
{
"id": "x",
@@ -47,7 +48,6 @@
},
"width": 113,
"height": 126,
- "level": 1,
"opacity": 1,
"strokeDash": 0,
"strokeWidth": 2,
@@ -74,7 +74,9 @@
"underline": false,
"labelWidth": 13,
"labelHeight": 26,
- "labelPosition": "INSIDE_MIDDLE_CENTER"
+ "labelPosition": "INSIDE_MIDDLE_CENTER",
+ "zIndex": 0,
+ "level": 1
},
{
"id": "y",
@@ -85,7 +87,6 @@
},
"width": 114,
"height": 126,
- "level": 1,
"opacity": 1,
"strokeDash": 0,
"strokeWidth": 2,
@@ -112,7 +113,9 @@
"underline": false,
"labelWidth": 14,
"labelHeight": 26,
- "labelPosition": "INSIDE_MIDDLE_CENTER"
+ "labelPosition": "INSIDE_MIDDLE_CENTER",
+ "zIndex": 0,
+ "level": 1
}
],
"connections": [
@@ -161,7 +164,8 @@
"isCurve": true,
"animated": false,
"tooltip": "",
- "icon": null
+ "icon": null,
+ "zIndex": 0
},
{
"id": "(hey -> y)[0]",
@@ -208,7 +212,8 @@
"isCurve": true,
"animated": false,
"tooltip": "",
- "icon": null
+ "icon": null,
+ "zIndex": 0
}
]
}
diff --git a/e2etests/testdata/stable/markdown/elk/board.exp.json b/e2etests/testdata/stable/markdown/elk/board.exp.json
index 28d1dd88c..5a2dc1b7a 100644
--- a/e2etests/testdata/stable/markdown/elk/board.exp.json
+++ b/e2etests/testdata/stable/markdown/elk/board.exp.json
@@ -10,7 +10,6 @@
},
"width": 531,
"height": 186,
- "level": 1,
"opacity": 1,
"strokeDash": 0,
"strokeWidth": 2,
@@ -36,7 +35,9 @@
"bold": true,
"underline": false,
"labelWidth": 531,
- "labelHeight": 186
+ "labelHeight": 186,
+ "zIndex": 0,
+ "level": 1
},
{
"id": "x",
@@ -47,7 +48,6 @@
},
"width": 113,
"height": 126,
- "level": 1,
"opacity": 1,
"strokeDash": 0,
"strokeWidth": 2,
@@ -74,7 +74,9 @@
"underline": false,
"labelWidth": 13,
"labelHeight": 26,
- "labelPosition": "INSIDE_MIDDLE_CENTER"
+ "labelPosition": "INSIDE_MIDDLE_CENTER",
+ "zIndex": 0,
+ "level": 1
},
{
"id": "y",
@@ -85,7 +87,6 @@
},
"width": 114,
"height": 126,
- "level": 1,
"opacity": 1,
"strokeDash": 0,
"strokeWidth": 2,
@@ -112,7 +113,9 @@
"underline": false,
"labelWidth": 14,
"labelHeight": 26,
- "labelPosition": "INSIDE_MIDDLE_CENTER"
+ "labelPosition": "INSIDE_MIDDLE_CENTER",
+ "zIndex": 0,
+ "level": 1
}
],
"connections": [
@@ -152,7 +155,8 @@
],
"animated": false,
"tooltip": "",
- "icon": null
+ "icon": null,
+ "zIndex": 0
},
{
"id": "(hey -> y)[0]",
@@ -190,7 +194,8 @@
],
"animated": false,
"tooltip": "",
- "icon": null
+ "icon": null,
+ "zIndex": 0
}
]
}
diff --git a/e2etests/testdata/stable/md_2space_newline/dagre/board.exp.json b/e2etests/testdata/stable/md_2space_newline/dagre/board.exp.json
index f67223c23..9d0fbe26f 100644
--- a/e2etests/testdata/stable/md_2space_newline/dagre/board.exp.json
+++ b/e2etests/testdata/stable/md_2space_newline/dagre/board.exp.json
@@ -10,7 +10,6 @@
},
"width": 559,
"height": 148,
- "level": 1,
"opacity": 1,
"strokeDash": 0,
"strokeWidth": 2,
@@ -37,7 +36,9 @@
"underline": false,
"labelWidth": 129,
"labelHeight": 41,
- "labelPosition": "INSIDE_TOP_CENTER"
+ "labelPosition": "INSIDE_TOP_CENTER",
+ "zIndex": 0,
+ "level": 1
},
{
"id": "markdown.md",
@@ -48,7 +49,6 @@
},
"width": 459,
"height": 48,
- "level": 2,
"opacity": 1,
"strokeDash": 0,
"strokeWidth": 2,
@@ -74,7 +74,9 @@
"bold": true,
"underline": false,
"labelWidth": 459,
- "labelHeight": 48
+ "labelHeight": 48,
+ "zIndex": 0,
+ "level": 2
}
],
"connections": []
diff --git a/e2etests/testdata/stable/md_2space_newline/elk/board.exp.json b/e2etests/testdata/stable/md_2space_newline/elk/board.exp.json
index a856cf8a0..1d7641708 100644
--- a/e2etests/testdata/stable/md_2space_newline/elk/board.exp.json
+++ b/e2etests/testdata/stable/md_2space_newline/elk/board.exp.json
@@ -10,7 +10,6 @@
},
"width": 609,
"height": 198,
- "level": 1,
"opacity": 1,
"strokeDash": 0,
"strokeWidth": 2,
@@ -37,7 +36,9 @@
"underline": false,
"labelWidth": 129,
"labelHeight": 41,
- "labelPosition": "INSIDE_TOP_CENTER"
+ "labelPosition": "INSIDE_TOP_CENTER",
+ "zIndex": 0,
+ "level": 1
},
{
"id": "markdown.md",
@@ -48,7 +49,6 @@
},
"width": 459,
"height": 48,
- "level": 2,
"opacity": 1,
"strokeDash": 0,
"strokeWidth": 2,
@@ -74,7 +74,9 @@
"bold": true,
"underline": false,
"labelWidth": 459,
- "labelHeight": 48
+ "labelHeight": 48,
+ "zIndex": 0,
+ "level": 2
}
],
"connections": []
diff --git a/e2etests/testdata/stable/md_backslash_newline/dagre/board.exp.json b/e2etests/testdata/stable/md_backslash_newline/dagre/board.exp.json
index de8d2ef89..53c2c3f0b 100644
--- a/e2etests/testdata/stable/md_backslash_newline/dagre/board.exp.json
+++ b/e2etests/testdata/stable/md_backslash_newline/dagre/board.exp.json
@@ -10,7 +10,6 @@
},
"width": 559,
"height": 148,
- "level": 1,
"opacity": 1,
"strokeDash": 0,
"strokeWidth": 2,
@@ -37,7 +36,9 @@
"underline": false,
"labelWidth": 129,
"labelHeight": 41,
- "labelPosition": "INSIDE_TOP_CENTER"
+ "labelPosition": "INSIDE_TOP_CENTER",
+ "zIndex": 0,
+ "level": 1
},
{
"id": "markdown.md",
@@ -48,7 +49,6 @@
},
"width": 459,
"height": 48,
- "level": 2,
"opacity": 1,
"strokeDash": 0,
"strokeWidth": 2,
@@ -74,7 +74,9 @@
"bold": true,
"underline": false,
"labelWidth": 459,
- "labelHeight": 48
+ "labelHeight": 48,
+ "zIndex": 0,
+ "level": 2
}
],
"connections": []
diff --git a/e2etests/testdata/stable/md_backslash_newline/elk/board.exp.json b/e2etests/testdata/stable/md_backslash_newline/elk/board.exp.json
index 03cbdd66f..068744935 100644
--- a/e2etests/testdata/stable/md_backslash_newline/elk/board.exp.json
+++ b/e2etests/testdata/stable/md_backslash_newline/elk/board.exp.json
@@ -10,7 +10,6 @@
},
"width": 609,
"height": 198,
- "level": 1,
"opacity": 1,
"strokeDash": 0,
"strokeWidth": 2,
@@ -37,7 +36,9 @@
"underline": false,
"labelWidth": 129,
"labelHeight": 41,
- "labelPosition": "INSIDE_TOP_CENTER"
+ "labelPosition": "INSIDE_TOP_CENTER",
+ "zIndex": 0,
+ "level": 1
},
{
"id": "markdown.md",
@@ -48,7 +49,6 @@
},
"width": 459,
"height": 48,
- "level": 2,
"opacity": 1,
"strokeDash": 0,
"strokeWidth": 2,
@@ -74,7 +74,9 @@
"bold": true,
"underline": false,
"labelWidth": 459,
- "labelHeight": 48
+ "labelHeight": 48,
+ "zIndex": 0,
+ "level": 2
}
],
"connections": []
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 d4e76fdd2..85c063655 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
@@ -10,7 +10,6 @@
},
"width": 196,
"height": 111,
- "level": 1,
"opacity": 1,
"strokeDash": 0,
"strokeWidth": 2,
@@ -36,7 +35,9 @@
"bold": true,
"underline": false,
"labelWidth": 196,
- "labelHeight": 111
+ "labelHeight": 111,
+ "zIndex": 0,
+ "level": 1
},
{
"id": "a",
@@ -47,7 +48,6 @@
},
"width": 113,
"height": 126,
- "level": 1,
"opacity": 1,
"strokeDash": 0,
"strokeWidth": 2,
@@ -74,7 +74,9 @@
"underline": false,
"labelWidth": 13,
"labelHeight": 26,
- "labelPosition": "INSIDE_MIDDLE_CENTER"
+ "labelPosition": "INSIDE_MIDDLE_CENTER",
+ "zIndex": 0,
+ "level": 1
},
{
"id": "b",
@@ -85,7 +87,6 @@
},
"width": 113,
"height": 126,
- "level": 1,
"opacity": 1,
"strokeDash": 0,
"strokeWidth": 2,
@@ -112,7 +113,9 @@
"underline": false,
"labelWidth": 13,
"labelHeight": 26,
- "labelPosition": "INSIDE_MIDDLE_CENTER"
+ "labelPosition": "INSIDE_MIDDLE_CENTER",
+ "zIndex": 0,
+ "level": 1
}
],
"connections": [
@@ -161,7 +164,8 @@
"isCurve": true,
"animated": false,
"tooltip": "",
- "icon": null
+ "icon": null,
+ "zIndex": 0
},
{
"id": "(md -> b)[0]",
@@ -208,7 +212,8 @@
"isCurve": true,
"animated": false,
"tooltip": "",
- "icon": null
+ "icon": null,
+ "zIndex": 0
}
]
}
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 69acc4f0b..bc78c41c3 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
@@ -10,7 +10,6 @@
},
"width": 196,
"height": 111,
- "level": 1,
"opacity": 1,
"strokeDash": 0,
"strokeWidth": 2,
@@ -36,7 +35,9 @@
"bold": true,
"underline": false,
"labelWidth": 196,
- "labelHeight": 111
+ "labelHeight": 111,
+ "zIndex": 0,
+ "level": 1
},
{
"id": "a",
@@ -47,7 +48,6 @@
},
"width": 113,
"height": 126,
- "level": 1,
"opacity": 1,
"strokeDash": 0,
"strokeWidth": 2,
@@ -74,7 +74,9 @@
"underline": false,
"labelWidth": 13,
"labelHeight": 26,
- "labelPosition": "INSIDE_MIDDLE_CENTER"
+ "labelPosition": "INSIDE_MIDDLE_CENTER",
+ "zIndex": 0,
+ "level": 1
},
{
"id": "b",
@@ -85,7 +87,6 @@
},
"width": 113,
"height": 126,
- "level": 1,
"opacity": 1,
"strokeDash": 0,
"strokeWidth": 2,
@@ -112,7 +113,9 @@
"underline": false,
"labelWidth": 13,
"labelHeight": 26,
- "labelPosition": "INSIDE_MIDDLE_CENTER"
+ "labelPosition": "INSIDE_MIDDLE_CENTER",
+ "zIndex": 0,
+ "level": 1
}
],
"connections": [
@@ -152,7 +155,8 @@
],
"animated": false,
"tooltip": "",
- "icon": null
+ "icon": null,
+ "zIndex": 0
},
{
"id": "(md -> b)[0]",
@@ -190,7 +194,8 @@
],
"animated": false,
"tooltip": "",
- "icon": null
+ "icon": null,
+ "zIndex": 0
}
]
}
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 b3d0d09ea..f1f950621 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
@@ -10,7 +10,6 @@
},
"width": 212,
"height": 151,
- "level": 1,
"opacity": 1,
"strokeDash": 0,
"strokeWidth": 2,
@@ -36,7 +35,9 @@
"bold": true,
"underline": false,
"labelWidth": 212,
- "labelHeight": 151
+ "labelHeight": 151,
+ "zIndex": 0,
+ "level": 1
},
{
"id": "a",
@@ -47,7 +48,6 @@
},
"width": 113,
"height": 126,
- "level": 1,
"opacity": 1,
"strokeDash": 0,
"strokeWidth": 2,
@@ -74,7 +74,9 @@
"underline": false,
"labelWidth": 13,
"labelHeight": 26,
- "labelPosition": "INSIDE_MIDDLE_CENTER"
+ "labelPosition": "INSIDE_MIDDLE_CENTER",
+ "zIndex": 0,
+ "level": 1
},
{
"id": "b",
@@ -85,7 +87,6 @@
},
"width": 113,
"height": 126,
- "level": 1,
"opacity": 1,
"strokeDash": 0,
"strokeWidth": 2,
@@ -112,7 +113,9 @@
"underline": false,
"labelWidth": 13,
"labelHeight": 26,
- "labelPosition": "INSIDE_MIDDLE_CENTER"
+ "labelPosition": "INSIDE_MIDDLE_CENTER",
+ "zIndex": 0,
+ "level": 1
}
],
"connections": [
@@ -161,7 +164,8 @@
"isCurve": true,
"animated": false,
"tooltip": "",
- "icon": null
+ "icon": null,
+ "zIndex": 0
},
{
"id": "(md -> b)[0]",
@@ -208,7 +212,8 @@
"isCurve": true,
"animated": false,
"tooltip": "",
- "icon": null
+ "icon": null,
+ "zIndex": 0
}
]
}
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 a54a9f797..b6b5a8f7e 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
@@ -10,7 +10,6 @@
},
"width": 212,
"height": 151,
- "level": 1,
"opacity": 1,
"strokeDash": 0,
"strokeWidth": 2,
@@ -36,7 +35,9 @@
"bold": true,
"underline": false,
"labelWidth": 212,
- "labelHeight": 151
+ "labelHeight": 151,
+ "zIndex": 0,
+ "level": 1
},
{
"id": "a",
@@ -47,7 +48,6 @@
},
"width": 113,
"height": 126,
- "level": 1,
"opacity": 1,
"strokeDash": 0,
"strokeWidth": 2,
@@ -74,7 +74,9 @@
"underline": false,
"labelWidth": 13,
"labelHeight": 26,
- "labelPosition": "INSIDE_MIDDLE_CENTER"
+ "labelPosition": "INSIDE_MIDDLE_CENTER",
+ "zIndex": 0,
+ "level": 1
},
{
"id": "b",
@@ -85,7 +87,6 @@
},
"width": 113,
"height": 126,
- "level": 1,
"opacity": 1,
"strokeDash": 0,
"strokeWidth": 2,
@@ -112,7 +113,9 @@
"underline": false,
"labelWidth": 13,
"labelHeight": 26,
- "labelPosition": "INSIDE_MIDDLE_CENTER"
+ "labelPosition": "INSIDE_MIDDLE_CENTER",
+ "zIndex": 0,
+ "level": 1
}
],
"connections": [
@@ -152,7 +155,8 @@
],
"animated": false,
"tooltip": "",
- "icon": null
+ "icon": null,
+ "zIndex": 0
},
{
"id": "(md -> b)[0]",
@@ -190,7 +194,8 @@
],
"animated": false,
"tooltip": "",
- "icon": null
+ "icon": null,
+ "zIndex": 0
}
]
}
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 903f3b439..cc3a0ed5b 100644
--- a/e2etests/testdata/stable/md_code_inline/dagre/board.exp.json
+++ b/e2etests/testdata/stable/md_code_inline/dagre/board.exp.json
@@ -10,7 +10,6 @@
},
"width": 46,
"height": 24,
- "level": 1,
"opacity": 1,
"strokeDash": 0,
"strokeWidth": 2,
@@ -36,7 +35,9 @@
"bold": true,
"underline": false,
"labelWidth": 46,
- "labelHeight": 24
+ "labelHeight": 24,
+ "zIndex": 0,
+ "level": 1
},
{
"id": "a",
@@ -47,7 +48,6 @@
},
"width": 113,
"height": 126,
- "level": 1,
"opacity": 1,
"strokeDash": 0,
"strokeWidth": 2,
@@ -74,7 +74,9 @@
"underline": false,
"labelWidth": 13,
"labelHeight": 26,
- "labelPosition": "INSIDE_MIDDLE_CENTER"
+ "labelPosition": "INSIDE_MIDDLE_CENTER",
+ "zIndex": 0,
+ "level": 1
},
{
"id": "b",
@@ -85,7 +87,6 @@
},
"width": 113,
"height": 126,
- "level": 1,
"opacity": 1,
"strokeDash": 0,
"strokeWidth": 2,
@@ -112,7 +113,9 @@
"underline": false,
"labelWidth": 13,
"labelHeight": 26,
- "labelPosition": "INSIDE_MIDDLE_CENTER"
+ "labelPosition": "INSIDE_MIDDLE_CENTER",
+ "zIndex": 0,
+ "level": 1
}
],
"connections": [
@@ -161,7 +164,8 @@
"isCurve": true,
"animated": false,
"tooltip": "",
- "icon": null
+ "icon": null,
+ "zIndex": 0
},
{
"id": "(md -> b)[0]",
@@ -208,7 +212,8 @@
"isCurve": true,
"animated": false,
"tooltip": "",
- "icon": null
+ "icon": null,
+ "zIndex": 0
}
]
}
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 dfe12622f..d0323cd24 100644
--- a/e2etests/testdata/stable/md_code_inline/elk/board.exp.json
+++ b/e2etests/testdata/stable/md_code_inline/elk/board.exp.json
@@ -10,7 +10,6 @@
},
"width": 46,
"height": 24,
- "level": 1,
"opacity": 1,
"strokeDash": 0,
"strokeWidth": 2,
@@ -36,7 +35,9 @@
"bold": true,
"underline": false,
"labelWidth": 46,
- "labelHeight": 24
+ "labelHeight": 24,
+ "zIndex": 0,
+ "level": 1
},
{
"id": "a",
@@ -47,7 +48,6 @@
},
"width": 113,
"height": 126,
- "level": 1,
"opacity": 1,
"strokeDash": 0,
"strokeWidth": 2,
@@ -74,7 +74,9 @@
"underline": false,
"labelWidth": 13,
"labelHeight": 26,
- "labelPosition": "INSIDE_MIDDLE_CENTER"
+ "labelPosition": "INSIDE_MIDDLE_CENTER",
+ "zIndex": 0,
+ "level": 1
},
{
"id": "b",
@@ -85,7 +87,6 @@
},
"width": 113,
"height": 126,
- "level": 1,
"opacity": 1,
"strokeDash": 0,
"strokeWidth": 2,
@@ -112,7 +113,9 @@
"underline": false,
"labelWidth": 13,
"labelHeight": 26,
- "labelPosition": "INSIDE_MIDDLE_CENTER"
+ "labelPosition": "INSIDE_MIDDLE_CENTER",
+ "zIndex": 0,
+ "level": 1
}
],
"connections": [
@@ -152,7 +155,8 @@
],
"animated": false,
"tooltip": "",
- "icon": null
+ "icon": null,
+ "zIndex": 0
},
{
"id": "(md -> b)[0]",
@@ -190,7 +194,8 @@
],
"animated": false,
"tooltip": "",
- "icon": null
+ "icon": null,
+ "zIndex": 0
}
]
}
diff --git a/e2etests/testdata/stable/multiline_text/dagre/board.exp.json b/e2etests/testdata/stable/multiline_text/dagre/board.exp.json
index ccbb6734a..1df032cf5 100644
--- a/e2etests/testdata/stable/multiline_text/dagre/board.exp.json
+++ b/e2etests/testdata/stable/multiline_text/dagre/board.exp.json
@@ -10,7 +10,6 @@
},
"width": 202,
"height": 158,
- "level": 1,
"opacity": 1,
"strokeDash": 0,
"strokeWidth": 2,
@@ -37,7 +36,9 @@
"underline": false,
"labelWidth": 102,
"labelHeight": 58,
- "labelPosition": "INSIDE_MIDDLE_CENTER"
+ "labelPosition": "INSIDE_MIDDLE_CENTER",
+ "zIndex": 0,
+ "level": 1
}
],
"connections": []
diff --git a/e2etests/testdata/stable/multiline_text/elk/board.exp.json b/e2etests/testdata/stable/multiline_text/elk/board.exp.json
index bd4d35ae5..9766cb8d3 100644
--- a/e2etests/testdata/stable/multiline_text/elk/board.exp.json
+++ b/e2etests/testdata/stable/multiline_text/elk/board.exp.json
@@ -10,7 +10,6 @@
},
"width": 202,
"height": 158,
- "level": 1,
"opacity": 1,
"strokeDash": 0,
"strokeWidth": 2,
@@ -37,7 +36,9 @@
"underline": false,
"labelWidth": 102,
"labelHeight": 58,
- "labelPosition": "INSIDE_MIDDLE_CENTER"
+ "labelPosition": "INSIDE_MIDDLE_CENTER",
+ "zIndex": 0,
+ "level": 1
}
],
"connections": []
diff --git a/e2etests/testdata/stable/multiple_trees/dagre/board.exp.json b/e2etests/testdata/stable/multiple_trees/dagre/board.exp.json
index c50cbdd26..a1562b355 100644
--- a/e2etests/testdata/stable/multiple_trees/dagre/board.exp.json
+++ b/e2etests/testdata/stable/multiple_trees/dagre/board.exp.json
@@ -10,7 +10,6 @@
},
"width": 113,
"height": 126,
- "level": 1,
"opacity": 1,
"strokeDash": 0,
"strokeWidth": 2,
@@ -37,7 +36,9 @@
"underline": false,
"labelWidth": 13,
"labelHeight": 26,
- "labelPosition": "INSIDE_MIDDLE_CENTER"
+ "labelPosition": "INSIDE_MIDDLE_CENTER",
+ "zIndex": 0,
+ "level": 1
},
{
"id": "b",
@@ -48,7 +49,6 @@
},
"width": 113,
"height": 126,
- "level": 1,
"opacity": 1,
"strokeDash": 0,
"strokeWidth": 2,
@@ -75,7 +75,9 @@
"underline": false,
"labelWidth": 13,
"labelHeight": 26,
- "labelPosition": "INSIDE_MIDDLE_CENTER"
+ "labelPosition": "INSIDE_MIDDLE_CENTER",
+ "zIndex": 0,
+ "level": 1
},
{
"id": "c",
@@ -86,7 +88,6 @@
},
"width": 113,
"height": 126,
- "level": 1,
"opacity": 1,
"strokeDash": 0,
"strokeWidth": 2,
@@ -113,7 +114,9 @@
"underline": false,
"labelWidth": 13,
"labelHeight": 26,
- "labelPosition": "INSIDE_MIDDLE_CENTER"
+ "labelPosition": "INSIDE_MIDDLE_CENTER",
+ "zIndex": 0,
+ "level": 1
},
{
"id": "d",
@@ -124,7 +127,6 @@
},
"width": 114,
"height": 126,
- "level": 1,
"opacity": 1,
"strokeDash": 0,
"strokeWidth": 2,
@@ -151,7 +153,9 @@
"underline": false,
"labelWidth": 14,
"labelHeight": 26,
- "labelPosition": "INSIDE_MIDDLE_CENTER"
+ "labelPosition": "INSIDE_MIDDLE_CENTER",
+ "zIndex": 0,
+ "level": 1
},
{
"id": "e",
@@ -162,7 +166,6 @@
},
"width": 113,
"height": 126,
- "level": 1,
"opacity": 1,
"strokeDash": 0,
"strokeWidth": 2,
@@ -189,7 +192,9 @@
"underline": false,
"labelWidth": 13,
"labelHeight": 26,
- "labelPosition": "INSIDE_MIDDLE_CENTER"
+ "labelPosition": "INSIDE_MIDDLE_CENTER",
+ "zIndex": 0,
+ "level": 1
},
{
"id": "f",
@@ -200,7 +205,6 @@
},
"width": 111,
"height": 126,
- "level": 1,
"opacity": 1,
"strokeDash": 0,
"strokeWidth": 2,
@@ -227,7 +231,9 @@
"underline": false,
"labelWidth": 11,
"labelHeight": 26,
- "labelPosition": "INSIDE_MIDDLE_CENTER"
+ "labelPosition": "INSIDE_MIDDLE_CENTER",
+ "zIndex": 0,
+ "level": 1
},
{
"id": "g",
@@ -238,7 +244,6 @@
},
"width": 114,
"height": 126,
- "level": 1,
"opacity": 1,
"strokeDash": 0,
"strokeWidth": 2,
@@ -265,7 +270,9 @@
"underline": false,
"labelWidth": 14,
"labelHeight": 26,
- "labelPosition": "INSIDE_MIDDLE_CENTER"
+ "labelPosition": "INSIDE_MIDDLE_CENTER",
+ "zIndex": 0,
+ "level": 1
},
{
"id": "h",
@@ -276,7 +283,6 @@
},
"width": 113,
"height": 126,
- "level": 1,
"opacity": 1,
"strokeDash": 0,
"strokeWidth": 2,
@@ -303,7 +309,9 @@
"underline": false,
"labelWidth": 13,
"labelHeight": 26,
- "labelPosition": "INSIDE_MIDDLE_CENTER"
+ "labelPosition": "INSIDE_MIDDLE_CENTER",
+ "zIndex": 0,
+ "level": 1
},
{
"id": "i",
@@ -314,7 +322,6 @@
},
"width": 109,
"height": 126,
- "level": 1,
"opacity": 1,
"strokeDash": 0,
"strokeWidth": 2,
@@ -341,7 +348,9 @@
"underline": false,
"labelWidth": 9,
"labelHeight": 26,
- "labelPosition": "INSIDE_MIDDLE_CENTER"
+ "labelPosition": "INSIDE_MIDDLE_CENTER",
+ "zIndex": 0,
+ "level": 1
},
{
"id": "j",
@@ -352,7 +361,6 @@
},
"width": 110,
"height": 126,
- "level": 1,
"opacity": 1,
"strokeDash": 0,
"strokeWidth": 2,
@@ -379,7 +387,9 @@
"underline": false,
"labelWidth": 10,
"labelHeight": 26,
- "labelPosition": "INSIDE_MIDDLE_CENTER"
+ "labelPosition": "INSIDE_MIDDLE_CENTER",
+ "zIndex": 0,
+ "level": 1
},
{
"id": "k",
@@ -390,7 +400,6 @@
},
"width": 113,
"height": 126,
- "level": 1,
"opacity": 1,
"strokeDash": 0,
"strokeWidth": 2,
@@ -417,7 +426,9 @@
"underline": false,
"labelWidth": 13,
"labelHeight": 26,
- "labelPosition": "INSIDE_MIDDLE_CENTER"
+ "labelPosition": "INSIDE_MIDDLE_CENTER",
+ "zIndex": 0,
+ "level": 1
},
{
"id": "l",
@@ -428,7 +439,6 @@
},
"width": 109,
"height": 126,
- "level": 1,
"opacity": 1,
"strokeDash": 0,
"strokeWidth": 2,
@@ -455,7 +465,9 @@
"underline": false,
"labelWidth": 9,
"labelHeight": 26,
- "labelPosition": "INSIDE_MIDDLE_CENTER"
+ "labelPosition": "INSIDE_MIDDLE_CENTER",
+ "zIndex": 0,
+ "level": 1
},
{
"id": "m",
@@ -466,7 +478,6 @@
},
"width": 117,
"height": 126,
- "level": 1,
"opacity": 1,
"strokeDash": 0,
"strokeWidth": 2,
@@ -493,7 +504,9 @@
"underline": false,
"labelWidth": 17,
"labelHeight": 26,
- "labelPosition": "INSIDE_MIDDLE_CENTER"
+ "labelPosition": "INSIDE_MIDDLE_CENTER",
+ "zIndex": 0,
+ "level": 1
},
{
"id": "n",
@@ -504,7 +517,6 @@
},
"width": 113,
"height": 126,
- "level": 1,
"opacity": 1,
"strokeDash": 0,
"strokeWidth": 2,
@@ -531,7 +543,9 @@
"underline": false,
"labelWidth": 13,
"labelHeight": 26,
- "labelPosition": "INSIDE_MIDDLE_CENTER"
+ "labelPosition": "INSIDE_MIDDLE_CENTER",
+ "zIndex": 0,
+ "level": 1
},
{
"id": "o",
@@ -542,7 +556,6 @@
},
"width": 114,
"height": 126,
- "level": 1,
"opacity": 1,
"strokeDash": 0,
"strokeWidth": 2,
@@ -569,7 +582,9 @@
"underline": false,
"labelWidth": 14,
"labelHeight": 26,
- "labelPosition": "INSIDE_MIDDLE_CENTER"
+ "labelPosition": "INSIDE_MIDDLE_CENTER",
+ "zIndex": 0,
+ "level": 1
},
{
"id": "p",
@@ -580,7 +595,6 @@
},
"width": 113,
"height": 126,
- "level": 1,
"opacity": 1,
"strokeDash": 0,
"strokeWidth": 2,
@@ -607,7 +621,9 @@
"underline": false,
"labelWidth": 13,
"labelHeight": 26,
- "labelPosition": "INSIDE_MIDDLE_CENTER"
+ "labelPosition": "INSIDE_MIDDLE_CENTER",
+ "zIndex": 0,
+ "level": 1
},
{
"id": "q",
@@ -618,7 +634,6 @@
},
"width": 114,
"height": 126,
- "level": 1,
"opacity": 1,
"strokeDash": 0,
"strokeWidth": 2,
@@ -645,7 +660,9 @@
"underline": false,
"labelWidth": 14,
"labelHeight": 26,
- "labelPosition": "INSIDE_MIDDLE_CENTER"
+ "labelPosition": "INSIDE_MIDDLE_CENTER",
+ "zIndex": 0,
+ "level": 1
},
{
"id": "r",
@@ -656,7 +673,6 @@
},
"width": 111,
"height": 126,
- "level": 1,
"opacity": 1,
"strokeDash": 0,
"strokeWidth": 2,
@@ -683,7 +699,9 @@
"underline": false,
"labelWidth": 11,
"labelHeight": 26,
- "labelPosition": "INSIDE_MIDDLE_CENTER"
+ "labelPosition": "INSIDE_MIDDLE_CENTER",
+ "zIndex": 0,
+ "level": 1
},
{
"id": "s",
@@ -694,7 +712,6 @@
},
"width": 112,
"height": 126,
- "level": 1,
"opacity": 1,
"strokeDash": 0,
"strokeWidth": 2,
@@ -721,7 +738,9 @@
"underline": false,
"labelWidth": 12,
"labelHeight": 26,
- "labelPosition": "INSIDE_MIDDLE_CENTER"
+ "labelPosition": "INSIDE_MIDDLE_CENTER",
+ "zIndex": 0,
+ "level": 1
},
{
"id": "t",
@@ -732,7 +751,6 @@
},
"width": 111,
"height": 126,
- "level": 1,
"opacity": 1,
"strokeDash": 0,
"strokeWidth": 2,
@@ -759,7 +777,9 @@
"underline": false,
"labelWidth": 11,
"labelHeight": 26,
- "labelPosition": "INSIDE_MIDDLE_CENTER"
+ "labelPosition": "INSIDE_MIDDLE_CENTER",
+ "zIndex": 0,
+ "level": 1
},
{
"id": "u",
@@ -770,7 +790,6 @@
},
"width": 114,
"height": 126,
- "level": 1,
"opacity": 1,
"strokeDash": 0,
"strokeWidth": 2,
@@ -797,7 +816,9 @@
"underline": false,
"labelWidth": 14,
"labelHeight": 26,
- "labelPosition": "INSIDE_MIDDLE_CENTER"
+ "labelPosition": "INSIDE_MIDDLE_CENTER",
+ "zIndex": 0,
+ "level": 1
},
{
"id": "v",
@@ -808,7 +829,6 @@
},
"width": 114,
"height": 126,
- "level": 1,
"opacity": 1,
"strokeDash": 0,
"strokeWidth": 2,
@@ -835,7 +855,9 @@
"underline": false,
"labelWidth": 14,
"labelHeight": 26,
- "labelPosition": "INSIDE_MIDDLE_CENTER"
+ "labelPosition": "INSIDE_MIDDLE_CENTER",
+ "zIndex": 0,
+ "level": 1
},
{
"id": "w",
@@ -846,7 +868,6 @@
},
"width": 118,
"height": 126,
- "level": 1,
"opacity": 1,
"strokeDash": 0,
"strokeWidth": 2,
@@ -873,7 +894,9 @@
"underline": false,
"labelWidth": 18,
"labelHeight": 26,
- "labelPosition": "INSIDE_MIDDLE_CENTER"
+ "labelPosition": "INSIDE_MIDDLE_CENTER",
+ "zIndex": 0,
+ "level": 1
}
],
"connections": [
@@ -922,7 +945,8 @@
"isCurve": true,
"animated": false,
"tooltip": "",
- "icon": null
+ "icon": null,
+ "zIndex": 0
},
{
"id": "(a -> c)[0]",
@@ -969,7 +993,8 @@
"isCurve": true,
"animated": false,
"tooltip": "",
- "icon": null
+ "icon": null,
+ "zIndex": 0
},
{
"id": "(a -> d)[0]",
@@ -1016,7 +1041,8 @@
"isCurve": true,
"animated": false,
"tooltip": "",
- "icon": null
+ "icon": null,
+ "zIndex": 0
},
{
"id": "(a -> e)[0]",
@@ -1063,7 +1089,8 @@
"isCurve": true,
"animated": false,
"tooltip": "",
- "icon": null
+ "icon": null,
+ "zIndex": 0
},
{
"id": "(a -> f)[0]",
@@ -1110,7 +1137,8 @@
"isCurve": true,
"animated": false,
"tooltip": "",
- "icon": null
+ "icon": null,
+ "zIndex": 0
},
{
"id": "(g -> a)[0]",
@@ -1157,7 +1185,8 @@
"isCurve": true,
"animated": false,
"tooltip": "",
- "icon": null
+ "icon": null,
+ "zIndex": 0
},
{
"id": "(a -> h)[0]",
@@ -1204,7 +1233,8 @@
"isCurve": true,
"animated": false,
"tooltip": "",
- "icon": null
+ "icon": null,
+ "zIndex": 0
},
{
"id": "(i -> b)[0]",
@@ -1251,7 +1281,8 @@
"isCurve": true,
"animated": false,
"tooltip": "",
- "icon": null
+ "icon": null,
+ "zIndex": 0
},
{
"id": "(j -> b)[0]",
@@ -1298,7 +1329,8 @@
"isCurve": true,
"animated": false,
"tooltip": "",
- "icon": null
+ "icon": null,
+ "zIndex": 0
},
{
"id": "(k -> g)[0]",
@@ -1345,7 +1377,8 @@
"isCurve": true,
"animated": false,
"tooltip": "",
- "icon": null
+ "icon": null,
+ "zIndex": 0
},
{
"id": "(l -> g)[0]",
@@ -1392,7 +1425,8 @@
"isCurve": true,
"animated": false,
"tooltip": "",
- "icon": null
+ "icon": null,
+ "zIndex": 0
},
{
"id": "(c -> m)[0]",
@@ -1439,7 +1473,8 @@
"isCurve": true,
"animated": false,
"tooltip": "",
- "icon": null
+ "icon": null,
+ "zIndex": 0
},
{
"id": "(c -> n)[0]",
@@ -1486,7 +1521,8 @@
"isCurve": true,
"animated": false,
"tooltip": "",
- "icon": null
+ "icon": null,
+ "zIndex": 0
},
{
"id": "(d -> o)[0]",
@@ -1533,7 +1569,8 @@
"isCurve": true,
"animated": false,
"tooltip": "",
- "icon": null
+ "icon": null,
+ "zIndex": 0
},
{
"id": "(d -> p)[0]",
@@ -1580,7 +1617,8 @@
"isCurve": true,
"animated": false,
"tooltip": "",
- "icon": null
+ "icon": null,
+ "zIndex": 0
},
{
"id": "(e -> q)[0]",
@@ -1627,7 +1665,8 @@
"isCurve": true,
"animated": false,
"tooltip": "",
- "icon": null
+ "icon": null,
+ "zIndex": 0
},
{
"id": "(e -> r)[0]",
@@ -1674,7 +1713,8 @@
"isCurve": true,
"animated": false,
"tooltip": "",
- "icon": null
+ "icon": null,
+ "zIndex": 0
},
{
"id": "(p -> s)[0]",
@@ -1721,7 +1761,8 @@
"isCurve": true,
"animated": false,
"tooltip": "",
- "icon": null
+ "icon": null,
+ "zIndex": 0
},
{
"id": "(f -> t)[0]",
@@ -1768,7 +1809,8 @@
"isCurve": true,
"animated": false,
"tooltip": "",
- "icon": null
+ "icon": null,
+ "zIndex": 0
},
{
"id": "(f -> u)[0]",
@@ -1815,7 +1857,8 @@
"isCurve": true,
"animated": false,
"tooltip": "",
- "icon": null
+ "icon": null,
+ "zIndex": 0
},
{
"id": "(v -> h)[0]",
@@ -1862,7 +1905,8 @@
"isCurve": true,
"animated": false,
"tooltip": "",
- "icon": null
+ "icon": null,
+ "zIndex": 0
},
{
"id": "(w -> h)[0]",
@@ -1909,7 +1953,8 @@
"isCurve": true,
"animated": false,
"tooltip": "",
- "icon": null
+ "icon": null,
+ "zIndex": 0
}
]
}
diff --git a/e2etests/testdata/stable/multiple_trees/elk/board.exp.json b/e2etests/testdata/stable/multiple_trees/elk/board.exp.json
index 8b8520f1e..5c7272fd0 100644
--- a/e2etests/testdata/stable/multiple_trees/elk/board.exp.json
+++ b/e2etests/testdata/stable/multiple_trees/elk/board.exp.json
@@ -10,7 +10,6 @@
},
"width": 113,
"height": 126,
- "level": 1,
"opacity": 1,
"strokeDash": 0,
"strokeWidth": 2,
@@ -37,7 +36,9 @@
"underline": false,
"labelWidth": 13,
"labelHeight": 26,
- "labelPosition": "INSIDE_MIDDLE_CENTER"
+ "labelPosition": "INSIDE_MIDDLE_CENTER",
+ "zIndex": 0,
+ "level": 1
},
{
"id": "b",
@@ -48,7 +49,6 @@
},
"width": 113,
"height": 126,
- "level": 1,
"opacity": 1,
"strokeDash": 0,
"strokeWidth": 2,
@@ -75,7 +75,9 @@
"underline": false,
"labelWidth": 13,
"labelHeight": 26,
- "labelPosition": "INSIDE_MIDDLE_CENTER"
+ "labelPosition": "INSIDE_MIDDLE_CENTER",
+ "zIndex": 0,
+ "level": 1
},
{
"id": "c",
@@ -86,7 +88,6 @@
},
"width": 113,
"height": 126,
- "level": 1,
"opacity": 1,
"strokeDash": 0,
"strokeWidth": 2,
@@ -113,7 +114,9 @@
"underline": false,
"labelWidth": 13,
"labelHeight": 26,
- "labelPosition": "INSIDE_MIDDLE_CENTER"
+ "labelPosition": "INSIDE_MIDDLE_CENTER",
+ "zIndex": 0,
+ "level": 1
},
{
"id": "d",
@@ -124,7 +127,6 @@
},
"width": 114,
"height": 126,
- "level": 1,
"opacity": 1,
"strokeDash": 0,
"strokeWidth": 2,
@@ -151,7 +153,9 @@
"underline": false,
"labelWidth": 14,
"labelHeight": 26,
- "labelPosition": "INSIDE_MIDDLE_CENTER"
+ "labelPosition": "INSIDE_MIDDLE_CENTER",
+ "zIndex": 0,
+ "level": 1
},
{
"id": "e",
@@ -162,7 +166,6 @@
},
"width": 113,
"height": 126,
- "level": 1,
"opacity": 1,
"strokeDash": 0,
"strokeWidth": 2,
@@ -189,7 +192,9 @@
"underline": false,
"labelWidth": 13,
"labelHeight": 26,
- "labelPosition": "INSIDE_MIDDLE_CENTER"
+ "labelPosition": "INSIDE_MIDDLE_CENTER",
+ "zIndex": 0,
+ "level": 1
},
{
"id": "f",
@@ -200,7 +205,6 @@
},
"width": 111,
"height": 126,
- "level": 1,
"opacity": 1,
"strokeDash": 0,
"strokeWidth": 2,
@@ -227,7 +231,9 @@
"underline": false,
"labelWidth": 11,
"labelHeight": 26,
- "labelPosition": "INSIDE_MIDDLE_CENTER"
+ "labelPosition": "INSIDE_MIDDLE_CENTER",
+ "zIndex": 0,
+ "level": 1
},
{
"id": "g",
@@ -238,7 +244,6 @@
},
"width": 114,
"height": 126,
- "level": 1,
"opacity": 1,
"strokeDash": 0,
"strokeWidth": 2,
@@ -265,7 +270,9 @@
"underline": false,
"labelWidth": 14,
"labelHeight": 26,
- "labelPosition": "INSIDE_MIDDLE_CENTER"
+ "labelPosition": "INSIDE_MIDDLE_CENTER",
+ "zIndex": 0,
+ "level": 1
},
{
"id": "h",
@@ -276,7 +283,6 @@
},
"width": 113,
"height": 126,
- "level": 1,
"opacity": 1,
"strokeDash": 0,
"strokeWidth": 2,
@@ -303,7 +309,9 @@
"underline": false,
"labelWidth": 13,
"labelHeight": 26,
- "labelPosition": "INSIDE_MIDDLE_CENTER"
+ "labelPosition": "INSIDE_MIDDLE_CENTER",
+ "zIndex": 0,
+ "level": 1
},
{
"id": "i",
@@ -314,7 +322,6 @@
},
"width": 109,
"height": 126,
- "level": 1,
"opacity": 1,
"strokeDash": 0,
"strokeWidth": 2,
@@ -341,7 +348,9 @@
"underline": false,
"labelWidth": 9,
"labelHeight": 26,
- "labelPosition": "INSIDE_MIDDLE_CENTER"
+ "labelPosition": "INSIDE_MIDDLE_CENTER",
+ "zIndex": 0,
+ "level": 1
},
{
"id": "j",
@@ -352,7 +361,6 @@
},
"width": 110,
"height": 126,
- "level": 1,
"opacity": 1,
"strokeDash": 0,
"strokeWidth": 2,
@@ -379,7 +387,9 @@
"underline": false,
"labelWidth": 10,
"labelHeight": 26,
- "labelPosition": "INSIDE_MIDDLE_CENTER"
+ "labelPosition": "INSIDE_MIDDLE_CENTER",
+ "zIndex": 0,
+ "level": 1
},
{
"id": "k",
@@ -390,7 +400,6 @@
},
"width": 113,
"height": 126,
- "level": 1,
"opacity": 1,
"strokeDash": 0,
"strokeWidth": 2,
@@ -417,7 +426,9 @@
"underline": false,
"labelWidth": 13,
"labelHeight": 26,
- "labelPosition": "INSIDE_MIDDLE_CENTER"
+ "labelPosition": "INSIDE_MIDDLE_CENTER",
+ "zIndex": 0,
+ "level": 1
},
{
"id": "l",
@@ -428,7 +439,6 @@
},
"width": 109,
"height": 126,
- "level": 1,
"opacity": 1,
"strokeDash": 0,
"strokeWidth": 2,
@@ -455,7 +465,9 @@
"underline": false,
"labelWidth": 9,
"labelHeight": 26,
- "labelPosition": "INSIDE_MIDDLE_CENTER"
+ "labelPosition": "INSIDE_MIDDLE_CENTER",
+ "zIndex": 0,
+ "level": 1
},
{
"id": "m",
@@ -466,7 +478,6 @@
},
"width": 117,
"height": 126,
- "level": 1,
"opacity": 1,
"strokeDash": 0,
"strokeWidth": 2,
@@ -493,7 +504,9 @@
"underline": false,
"labelWidth": 17,
"labelHeight": 26,
- "labelPosition": "INSIDE_MIDDLE_CENTER"
+ "labelPosition": "INSIDE_MIDDLE_CENTER",
+ "zIndex": 0,
+ "level": 1
},
{
"id": "n",
@@ -504,7 +517,6 @@
},
"width": 113,
"height": 126,
- "level": 1,
"opacity": 1,
"strokeDash": 0,
"strokeWidth": 2,
@@ -531,7 +543,9 @@
"underline": false,
"labelWidth": 13,
"labelHeight": 26,
- "labelPosition": "INSIDE_MIDDLE_CENTER"
+ "labelPosition": "INSIDE_MIDDLE_CENTER",
+ "zIndex": 0,
+ "level": 1
},
{
"id": "o",
@@ -542,7 +556,6 @@
},
"width": 114,
"height": 126,
- "level": 1,
"opacity": 1,
"strokeDash": 0,
"strokeWidth": 2,
@@ -569,7 +582,9 @@
"underline": false,
"labelWidth": 14,
"labelHeight": 26,
- "labelPosition": "INSIDE_MIDDLE_CENTER"
+ "labelPosition": "INSIDE_MIDDLE_CENTER",
+ "zIndex": 0,
+ "level": 1
},
{
"id": "p",
@@ -580,7 +595,6 @@
},
"width": 113,
"height": 126,
- "level": 1,
"opacity": 1,
"strokeDash": 0,
"strokeWidth": 2,
@@ -607,7 +621,9 @@
"underline": false,
"labelWidth": 13,
"labelHeight": 26,
- "labelPosition": "INSIDE_MIDDLE_CENTER"
+ "labelPosition": "INSIDE_MIDDLE_CENTER",
+ "zIndex": 0,
+ "level": 1
},
{
"id": "q",
@@ -618,7 +634,6 @@
},
"width": 114,
"height": 126,
- "level": 1,
"opacity": 1,
"strokeDash": 0,
"strokeWidth": 2,
@@ -645,7 +660,9 @@
"underline": false,
"labelWidth": 14,
"labelHeight": 26,
- "labelPosition": "INSIDE_MIDDLE_CENTER"
+ "labelPosition": "INSIDE_MIDDLE_CENTER",
+ "zIndex": 0,
+ "level": 1
},
{
"id": "r",
@@ -656,7 +673,6 @@
},
"width": 111,
"height": 126,
- "level": 1,
"opacity": 1,
"strokeDash": 0,
"strokeWidth": 2,
@@ -683,7 +699,9 @@
"underline": false,
"labelWidth": 11,
"labelHeight": 26,
- "labelPosition": "INSIDE_MIDDLE_CENTER"
+ "labelPosition": "INSIDE_MIDDLE_CENTER",
+ "zIndex": 0,
+ "level": 1
},
{
"id": "s",
@@ -694,7 +712,6 @@
},
"width": 112,
"height": 126,
- "level": 1,
"opacity": 1,
"strokeDash": 0,
"strokeWidth": 2,
@@ -721,7 +738,9 @@
"underline": false,
"labelWidth": 12,
"labelHeight": 26,
- "labelPosition": "INSIDE_MIDDLE_CENTER"
+ "labelPosition": "INSIDE_MIDDLE_CENTER",
+ "zIndex": 0,
+ "level": 1
},
{
"id": "t",
@@ -732,7 +751,6 @@
},
"width": 111,
"height": 126,
- "level": 1,
"opacity": 1,
"strokeDash": 0,
"strokeWidth": 2,
@@ -759,7 +777,9 @@
"underline": false,
"labelWidth": 11,
"labelHeight": 26,
- "labelPosition": "INSIDE_MIDDLE_CENTER"
+ "labelPosition": "INSIDE_MIDDLE_CENTER",
+ "zIndex": 0,
+ "level": 1
},
{
"id": "u",
@@ -770,7 +790,6 @@
},
"width": 114,
"height": 126,
- "level": 1,
"opacity": 1,
"strokeDash": 0,
"strokeWidth": 2,
@@ -797,7 +816,9 @@
"underline": false,
"labelWidth": 14,
"labelHeight": 26,
- "labelPosition": "INSIDE_MIDDLE_CENTER"
+ "labelPosition": "INSIDE_MIDDLE_CENTER",
+ "zIndex": 0,
+ "level": 1
},
{
"id": "v",
@@ -808,7 +829,6 @@
},
"width": 114,
"height": 126,
- "level": 1,
"opacity": 1,
"strokeDash": 0,
"strokeWidth": 2,
@@ -835,7 +855,9 @@
"underline": false,
"labelWidth": 14,
"labelHeight": 26,
- "labelPosition": "INSIDE_MIDDLE_CENTER"
+ "labelPosition": "INSIDE_MIDDLE_CENTER",
+ "zIndex": 0,
+ "level": 1
},
{
"id": "w",
@@ -846,7 +868,6 @@
},
"width": 118,
"height": 126,
- "level": 1,
"opacity": 1,
"strokeDash": 0,
"strokeWidth": 2,
@@ -873,7 +894,9 @@
"underline": false,
"labelWidth": 18,
"labelHeight": 26,
- "labelPosition": "INSIDE_MIDDLE_CENTER"
+ "labelPosition": "INSIDE_MIDDLE_CENTER",
+ "zIndex": 0,
+ "level": 1
}
],
"connections": [
@@ -921,7 +944,8 @@
],
"animated": false,
"tooltip": "",
- "icon": null
+ "icon": null,
+ "zIndex": 0
},
{
"id": "(a -> c)[0]",
@@ -967,7 +991,8 @@
],
"animated": false,
"tooltip": "",
- "icon": null
+ "icon": null,
+ "zIndex": 0
},
{
"id": "(a -> d)[0]",
@@ -1013,7 +1038,8 @@
],
"animated": false,
"tooltip": "",
- "icon": null
+ "icon": null,
+ "zIndex": 0
},
{
"id": "(a -> e)[0]",
@@ -1051,7 +1077,8 @@
],
"animated": false,
"tooltip": "",
- "icon": null
+ "icon": null,
+ "zIndex": 0
},
{
"id": "(a -> f)[0]",
@@ -1097,7 +1124,8 @@
],
"animated": false,
"tooltip": "",
- "icon": null
+ "icon": null,
+ "zIndex": 0
},
{
"id": "(g -> a)[0]",
@@ -1135,7 +1163,8 @@
],
"animated": false,
"tooltip": "",
- "icon": null
+ "icon": null,
+ "zIndex": 0
},
{
"id": "(a -> h)[0]",
@@ -1181,7 +1210,8 @@
],
"animated": false,
"tooltip": "",
- "icon": null
+ "icon": null,
+ "zIndex": 0
},
{
"id": "(i -> b)[0]",
@@ -1219,7 +1249,8 @@
],
"animated": false,
"tooltip": "",
- "icon": null
+ "icon": null,
+ "zIndex": 0
},
{
"id": "(j -> b)[0]",
@@ -1265,7 +1296,8 @@
],
"animated": false,
"tooltip": "",
- "icon": null
+ "icon": null,
+ "zIndex": 0
},
{
"id": "(k -> g)[0]",
@@ -1311,7 +1343,8 @@
],
"animated": false,
"tooltip": "",
- "icon": null
+ "icon": null,
+ "zIndex": 0
},
{
"id": "(l -> g)[0]",
@@ -1349,7 +1382,8 @@
],
"animated": false,
"tooltip": "",
- "icon": null
+ "icon": null,
+ "zIndex": 0
},
{
"id": "(c -> m)[0]",
@@ -1395,7 +1429,8 @@
],
"animated": false,
"tooltip": "",
- "icon": null
+ "icon": null,
+ "zIndex": 0
},
{
"id": "(c -> n)[0]",
@@ -1433,7 +1468,8 @@
],
"animated": false,
"tooltip": "",
- "icon": null
+ "icon": null,
+ "zIndex": 0
},
{
"id": "(d -> o)[0]",
@@ -1479,7 +1515,8 @@
],
"animated": false,
"tooltip": "",
- "icon": null
+ "icon": null,
+ "zIndex": 0
},
{
"id": "(d -> p)[0]",
@@ -1517,7 +1554,8 @@
],
"animated": false,
"tooltip": "",
- "icon": null
+ "icon": null,
+ "zIndex": 0
},
{
"id": "(e -> q)[0]",
@@ -1555,7 +1593,8 @@
],
"animated": false,
"tooltip": "",
- "icon": null
+ "icon": null,
+ "zIndex": 0
},
{
"id": "(e -> r)[0]",
@@ -1601,7 +1640,8 @@
],
"animated": false,
"tooltip": "",
- "icon": null
+ "icon": null,
+ "zIndex": 0
},
{
"id": "(p -> s)[0]",
@@ -1639,7 +1679,8 @@
],
"animated": false,
"tooltip": "",
- "icon": null
+ "icon": null,
+ "zIndex": 0
},
{
"id": "(f -> t)[0]",
@@ -1677,7 +1718,8 @@
],
"animated": false,
"tooltip": "",
- "icon": null
+ "icon": null,
+ "zIndex": 0
},
{
"id": "(f -> u)[0]",
@@ -1723,7 +1765,8 @@
],
"animated": false,
"tooltip": "",
- "icon": null
+ "icon": null,
+ "zIndex": 0
},
{
"id": "(v -> h)[0]",
@@ -1769,7 +1812,8 @@
],
"animated": false,
"tooltip": "",
- "icon": null
+ "icon": null,
+ "zIndex": 0
},
{
"id": "(w -> h)[0]",
@@ -1807,7 +1851,8 @@
],
"animated": false,
"tooltip": "",
- "icon": null
+ "icon": null,
+ "zIndex": 0
}
]
}
diff --git a/e2etests/testdata/stable/n22_e32/dagre/board.exp.json b/e2etests/testdata/stable/n22_e32/dagre/board.exp.json
index 0a91698c3..4642fa42f 100644
--- a/e2etests/testdata/stable/n22_e32/dagre/board.exp.json
+++ b/e2etests/testdata/stable/n22_e32/dagre/board.exp.json
@@ -10,7 +10,6 @@
},
"width": 113,
"height": 126,
- "level": 1,
"opacity": 1,
"strokeDash": 0,
"strokeWidth": 2,
@@ -37,7 +36,9 @@
"underline": false,
"labelWidth": 13,
"labelHeight": 26,
- "labelPosition": "INSIDE_MIDDLE_CENTER"
+ "labelPosition": "INSIDE_MIDDLE_CENTER",
+ "zIndex": 0,
+ "level": 1
},
{
"id": "b",
@@ -48,7 +49,6 @@
},
"width": 113,
"height": 126,
- "level": 1,
"opacity": 1,
"strokeDash": 0,
"strokeWidth": 2,
@@ -75,7 +75,9 @@
"underline": false,
"labelWidth": 13,
"labelHeight": 26,
- "labelPosition": "INSIDE_MIDDLE_CENTER"
+ "labelPosition": "INSIDE_MIDDLE_CENTER",
+ "zIndex": 0,
+ "level": 1
},
{
"id": "c",
@@ -86,7 +88,6 @@
},
"width": 113,
"height": 126,
- "level": 1,
"opacity": 1,
"strokeDash": 0,
"strokeWidth": 2,
@@ -113,7 +114,9 @@
"underline": false,
"labelWidth": 13,
"labelHeight": 26,
- "labelPosition": "INSIDE_MIDDLE_CENTER"
+ "labelPosition": "INSIDE_MIDDLE_CENTER",
+ "zIndex": 0,
+ "level": 1
},
{
"id": "d",
@@ -124,7 +127,6 @@
},
"width": 114,
"height": 126,
- "level": 1,
"opacity": 1,
"strokeDash": 0,
"strokeWidth": 2,
@@ -151,7 +153,9 @@
"underline": false,
"labelWidth": 14,
"labelHeight": 26,
- "labelPosition": "INSIDE_MIDDLE_CENTER"
+ "labelPosition": "INSIDE_MIDDLE_CENTER",
+ "zIndex": 0,
+ "level": 1
},
{
"id": "e",
@@ -162,7 +166,6 @@
},
"width": 113,
"height": 126,
- "level": 1,
"opacity": 1,
"strokeDash": 0,
"strokeWidth": 2,
@@ -189,7 +192,9 @@
"underline": false,
"labelWidth": 13,
"labelHeight": 26,
- "labelPosition": "INSIDE_MIDDLE_CENTER"
+ "labelPosition": "INSIDE_MIDDLE_CENTER",
+ "zIndex": 0,
+ "level": 1
},
{
"id": "f",
@@ -200,7 +205,6 @@
},
"width": 111,
"height": 126,
- "level": 1,
"opacity": 1,
"strokeDash": 0,
"strokeWidth": 2,
@@ -227,7 +231,9 @@
"underline": false,
"labelWidth": 11,
"labelHeight": 26,
- "labelPosition": "INSIDE_MIDDLE_CENTER"
+ "labelPosition": "INSIDE_MIDDLE_CENTER",
+ "zIndex": 0,
+ "level": 1
},
{
"id": "g",
@@ -238,7 +244,6 @@
},
"width": 114,
"height": 126,
- "level": 1,
"opacity": 1,
"strokeDash": 0,
"strokeWidth": 2,
@@ -265,7 +270,9 @@
"underline": false,
"labelWidth": 14,
"labelHeight": 26,
- "labelPosition": "INSIDE_MIDDLE_CENTER"
+ "labelPosition": "INSIDE_MIDDLE_CENTER",
+ "zIndex": 0,
+ "level": 1
},
{
"id": "h",
@@ -276,7 +283,6 @@
},
"width": 113,
"height": 126,
- "level": 1,
"opacity": 1,
"strokeDash": 0,
"strokeWidth": 2,
@@ -303,7 +309,9 @@
"underline": false,
"labelWidth": 13,
"labelHeight": 26,
- "labelPosition": "INSIDE_MIDDLE_CENTER"
+ "labelPosition": "INSIDE_MIDDLE_CENTER",
+ "zIndex": 0,
+ "level": 1
},
{
"id": "i",
@@ -314,7 +322,6 @@
},
"width": 109,
"height": 126,
- "level": 1,
"opacity": 1,
"strokeDash": 0,
"strokeWidth": 2,
@@ -341,7 +348,9 @@
"underline": false,
"labelWidth": 9,
"labelHeight": 26,
- "labelPosition": "INSIDE_MIDDLE_CENTER"
+ "labelPosition": "INSIDE_MIDDLE_CENTER",
+ "zIndex": 0,
+ "level": 1
},
{
"id": "j",
@@ -352,7 +361,6 @@
},
"width": 110,
"height": 126,
- "level": 1,
"opacity": 1,
"strokeDash": 0,
"strokeWidth": 2,
@@ -379,7 +387,9 @@
"underline": false,
"labelWidth": 10,
"labelHeight": 26,
- "labelPosition": "INSIDE_MIDDLE_CENTER"
+ "labelPosition": "INSIDE_MIDDLE_CENTER",
+ "zIndex": 0,
+ "level": 1
},
{
"id": "k",
@@ -390,7 +400,6 @@
},
"width": 113,
"height": 126,
- "level": 1,
"opacity": 1,
"strokeDash": 0,
"strokeWidth": 2,
@@ -417,7 +426,9 @@
"underline": false,
"labelWidth": 13,
"labelHeight": 26,
- "labelPosition": "INSIDE_MIDDLE_CENTER"
+ "labelPosition": "INSIDE_MIDDLE_CENTER",
+ "zIndex": 0,
+ "level": 1
},
{
"id": "l",
@@ -428,7 +439,6 @@
},
"width": 109,
"height": 126,
- "level": 1,
"opacity": 1,
"strokeDash": 0,
"strokeWidth": 2,
@@ -455,7 +465,9 @@
"underline": false,
"labelWidth": 9,
"labelHeight": 26,
- "labelPosition": "INSIDE_MIDDLE_CENTER"
+ "labelPosition": "INSIDE_MIDDLE_CENTER",
+ "zIndex": 0,
+ "level": 1
},
{
"id": "m",
@@ -466,7 +478,6 @@
},
"width": 117,
"height": 126,
- "level": 1,
"opacity": 1,
"strokeDash": 0,
"strokeWidth": 2,
@@ -493,7 +504,9 @@
"underline": false,
"labelWidth": 17,
"labelHeight": 26,
- "labelPosition": "INSIDE_MIDDLE_CENTER"
+ "labelPosition": "INSIDE_MIDDLE_CENTER",
+ "zIndex": 0,
+ "level": 1
},
{
"id": "n",
@@ -504,7 +517,6 @@
},
"width": 113,
"height": 126,
- "level": 1,
"opacity": 1,
"strokeDash": 0,
"strokeWidth": 2,
@@ -531,7 +543,9 @@
"underline": false,
"labelWidth": 13,
"labelHeight": 26,
- "labelPosition": "INSIDE_MIDDLE_CENTER"
+ "labelPosition": "INSIDE_MIDDLE_CENTER",
+ "zIndex": 0,
+ "level": 1
},
{
"id": "o",
@@ -542,7 +556,6 @@
},
"width": 114,
"height": 126,
- "level": 1,
"opacity": 1,
"strokeDash": 0,
"strokeWidth": 2,
@@ -569,7 +582,9 @@
"underline": false,
"labelWidth": 14,
"labelHeight": 26,
- "labelPosition": "INSIDE_MIDDLE_CENTER"
+ "labelPosition": "INSIDE_MIDDLE_CENTER",
+ "zIndex": 0,
+ "level": 1
},
{
"id": "p",
@@ -580,7 +595,6 @@
},
"width": 113,
"height": 126,
- "level": 1,
"opacity": 1,
"strokeDash": 0,
"strokeWidth": 2,
@@ -607,7 +621,9 @@
"underline": false,
"labelWidth": 13,
"labelHeight": 26,
- "labelPosition": "INSIDE_MIDDLE_CENTER"
+ "labelPosition": "INSIDE_MIDDLE_CENTER",
+ "zIndex": 0,
+ "level": 1
},
{
"id": "q",
@@ -618,7 +634,6 @@
},
"width": 114,
"height": 126,
- "level": 1,
"opacity": 1,
"strokeDash": 0,
"strokeWidth": 2,
@@ -645,7 +660,9 @@
"underline": false,
"labelWidth": 14,
"labelHeight": 26,
- "labelPosition": "INSIDE_MIDDLE_CENTER"
+ "labelPosition": "INSIDE_MIDDLE_CENTER",
+ "zIndex": 0,
+ "level": 1
},
{
"id": "r",
@@ -656,7 +673,6 @@
},
"width": 111,
"height": 126,
- "level": 1,
"opacity": 1,
"strokeDash": 0,
"strokeWidth": 2,
@@ -683,7 +699,9 @@
"underline": false,
"labelWidth": 11,
"labelHeight": 26,
- "labelPosition": "INSIDE_MIDDLE_CENTER"
+ "labelPosition": "INSIDE_MIDDLE_CENTER",
+ "zIndex": 0,
+ "level": 1
},
{
"id": "s",
@@ -694,7 +712,6 @@
},
"width": 112,
"height": 126,
- "level": 1,
"opacity": 1,
"strokeDash": 0,
"strokeWidth": 2,
@@ -721,7 +738,9 @@
"underline": false,
"labelWidth": 12,
"labelHeight": 26,
- "labelPosition": "INSIDE_MIDDLE_CENTER"
+ "labelPosition": "INSIDE_MIDDLE_CENTER",
+ "zIndex": 0,
+ "level": 1
},
{
"id": "t",
@@ -732,7 +751,6 @@
},
"width": 111,
"height": 126,
- "level": 1,
"opacity": 1,
"strokeDash": 0,
"strokeWidth": 2,
@@ -759,7 +777,9 @@
"underline": false,
"labelWidth": 11,
"labelHeight": 26,
- "labelPosition": "INSIDE_MIDDLE_CENTER"
+ "labelPosition": "INSIDE_MIDDLE_CENTER",
+ "zIndex": 0,
+ "level": 1
},
{
"id": "u",
@@ -770,7 +790,6 @@
},
"width": 114,
"height": 126,
- "level": 1,
"opacity": 1,
"strokeDash": 0,
"strokeWidth": 2,
@@ -797,7 +816,9 @@
"underline": false,
"labelWidth": 14,
"labelHeight": 26,
- "labelPosition": "INSIDE_MIDDLE_CENTER"
+ "labelPosition": "INSIDE_MIDDLE_CENTER",
+ "zIndex": 0,
+ "level": 1
}
],
"connections": [
@@ -858,7 +879,8 @@
"isCurve": true,
"animated": false,
"tooltip": "",
- "icon": null
+ "icon": null,
+ "zIndex": 0
},
{
"id": "(c -> a)[0]",
@@ -941,7 +963,8 @@
"isCurve": true,
"animated": false,
"tooltip": "",
- "icon": null
+ "icon": null,
+ "zIndex": 0
},
{
"id": "(d -> a)[0]",
@@ -988,7 +1011,8 @@
"isCurve": true,
"animated": false,
"tooltip": "",
- "icon": null
+ "icon": null,
+ "zIndex": 0
},
{
"id": "(d -> b)[0]",
@@ -1071,7 +1095,8 @@
"isCurve": true,
"animated": false,
"tooltip": "",
- "icon": null
+ "icon": null,
+ "zIndex": 0
},
{
"id": "(d -> e)[0]",
@@ -1118,7 +1143,8 @@
"isCurve": true,
"animated": false,
"tooltip": "",
- "icon": null
+ "icon": null,
+ "zIndex": 0
},
{
"id": "(e -> f)[0]",
@@ -1165,7 +1191,8 @@
"isCurve": true,
"animated": false,
"tooltip": "",
- "icon": null
+ "icon": null,
+ "zIndex": 0
},
{
"id": "(f -> b)[0]",
@@ -1212,7 +1239,8 @@
"isCurve": true,
"animated": false,
"tooltip": "",
- "icon": null
+ "icon": null,
+ "zIndex": 0
},
{
"id": "(c -> f)[0]",
@@ -1319,7 +1347,8 @@
"isCurve": true,
"animated": false,
"tooltip": "",
- "icon": null
+ "icon": null,
+ "zIndex": 0
},
{
"id": "(g -> c)[0]",
@@ -1378,7 +1407,8 @@
"isCurve": true,
"animated": false,
"tooltip": "",
- "icon": null
+ "icon": null,
+ "zIndex": 0
},
{
"id": "(g -> h)[0]",
@@ -1425,7 +1455,8 @@
"isCurve": true,
"animated": false,
"tooltip": "",
- "icon": null
+ "icon": null,
+ "zIndex": 0
},
{
"id": "(h -> i)[0]",
@@ -1472,7 +1503,8 @@
"isCurve": true,
"animated": false,
"tooltip": "",
- "icon": null
+ "icon": null,
+ "zIndex": 0
},
{
"id": "(i -> j)[0]",
@@ -1519,7 +1551,8 @@
"isCurve": true,
"animated": false,
"tooltip": "",
- "icon": null
+ "icon": null,
+ "zIndex": 0
},
{
"id": "(j -> k)[0]",
@@ -1566,7 +1599,8 @@
"isCurve": true,
"animated": false,
"tooltip": "",
- "icon": null
+ "icon": null,
+ "zIndex": 0
},
{
"id": "(k -> e)[0]",
@@ -1613,7 +1647,8 @@
"isCurve": true,
"animated": false,
"tooltip": "",
- "icon": null
+ "icon": null,
+ "zIndex": 0
},
{
"id": "(j -> f)[0]",
@@ -1696,7 +1731,8 @@
"isCurve": true,
"animated": false,
"tooltip": "",
- "icon": null
+ "icon": null,
+ "zIndex": 0
},
{
"id": "(l -> m)[0]",
@@ -1755,7 +1791,8 @@
"isCurve": true,
"animated": false,
"tooltip": "",
- "icon": null
+ "icon": null,
+ "zIndex": 0
},
{
"id": "(n -> l)[0]",
@@ -1802,7 +1839,8 @@
"isCurve": true,
"animated": false,
"tooltip": "",
- "icon": null
+ "icon": null,
+ "zIndex": 0
},
{
"id": "(n -> l)[1]",
@@ -1849,7 +1887,8 @@
"isCurve": true,
"animated": false,
"tooltip": "",
- "icon": null
+ "icon": null,
+ "zIndex": 0
},
{
"id": "(n -> m)[0]",
@@ -1932,7 +1971,8 @@
"isCurve": true,
"animated": false,
"tooltip": "",
- "icon": null
+ "icon": null,
+ "zIndex": 0
},
{
"id": "(n -> o)[0]",
@@ -1979,7 +2019,8 @@
"isCurve": true,
"animated": false,
"tooltip": "",
- "icon": null
+ "icon": null,
+ "zIndex": 0
},
{
"id": "(o -> p)[0]",
@@ -2026,7 +2067,8 @@
"isCurve": true,
"animated": false,
"tooltip": "",
- "icon": null
+ "icon": null,
+ "zIndex": 0
},
{
"id": "(p -> m)[0]",
@@ -2073,7 +2115,8 @@
"isCurve": true,
"animated": false,
"tooltip": "",
- "icon": null
+ "icon": null,
+ "zIndex": 0
},
{
"id": "(n -> p)[0]",
@@ -2132,7 +2175,8 @@
"isCurve": true,
"animated": false,
"tooltip": "",
- "icon": null
+ "icon": null,
+ "zIndex": 0
},
{
"id": "(q -> n)[0]",
@@ -2239,7 +2283,8 @@
"isCurve": true,
"animated": false,
"tooltip": "",
- "icon": null
+ "icon": null,
+ "zIndex": 0
},
{
"id": "(q -> r)[0]",
@@ -2286,7 +2331,8 @@
"isCurve": true,
"animated": false,
"tooltip": "",
- "icon": null
+ "icon": null,
+ "zIndex": 0
},
{
"id": "(r -> s)[0]",
@@ -2333,7 +2379,8 @@
"isCurve": true,
"animated": false,
"tooltip": "",
- "icon": null
+ "icon": null,
+ "zIndex": 0
},
{
"id": "(s -> t)[0]",
@@ -2380,7 +2427,8 @@
"isCurve": true,
"animated": false,
"tooltip": "",
- "icon": null
+ "icon": null,
+ "zIndex": 0
},
{
"id": "(t -> u)[0]",
@@ -2427,7 +2475,8 @@
"isCurve": true,
"animated": false,
"tooltip": "",
- "icon": null
+ "icon": null,
+ "zIndex": 0
},
{
"id": "(u -> o)[0]",
@@ -2474,7 +2523,8 @@
"isCurve": true,
"animated": false,
"tooltip": "",
- "icon": null
+ "icon": null,
+ "zIndex": 0
},
{
"id": "(t -> p)[0]",
@@ -2557,7 +2607,8 @@
"isCurve": true,
"animated": false,
"tooltip": "",
- "icon": null
+ "icon": null,
+ "zIndex": 0
},
{
"id": "(c -> t)[0]",
@@ -2604,7 +2655,8 @@
"isCurve": true,
"animated": false,
"tooltip": "",
- "icon": null
+ "icon": null,
+ "zIndex": 0
},
{
"id": "(s -> a)[0]",
@@ -2687,7 +2739,8 @@
"isCurve": true,
"animated": false,
"tooltip": "",
- "icon": null
+ "icon": null,
+ "zIndex": 0
},
{
"id": "(u -> a)[0]",
@@ -2734,7 +2787,8 @@
"isCurve": true,
"animated": false,
"tooltip": "",
- "icon": null
+ "icon": null,
+ "zIndex": 0
}
]
}
diff --git a/e2etests/testdata/stable/n22_e32/elk/board.exp.json b/e2etests/testdata/stable/n22_e32/elk/board.exp.json
index aaf499efe..1b4eff007 100644
--- a/e2etests/testdata/stable/n22_e32/elk/board.exp.json
+++ b/e2etests/testdata/stable/n22_e32/elk/board.exp.json
@@ -10,7 +10,6 @@
},
"width": 113,
"height": 126,
- "level": 1,
"opacity": 1,
"strokeDash": 0,
"strokeWidth": 2,
@@ -37,7 +36,9 @@
"underline": false,
"labelWidth": 13,
"labelHeight": 26,
- "labelPosition": "INSIDE_MIDDLE_CENTER"
+ "labelPosition": "INSIDE_MIDDLE_CENTER",
+ "zIndex": 0,
+ "level": 1
},
{
"id": "b",
@@ -48,7 +49,6 @@
},
"width": 113,
"height": 126,
- "level": 1,
"opacity": 1,
"strokeDash": 0,
"strokeWidth": 2,
@@ -75,7 +75,9 @@
"underline": false,
"labelWidth": 13,
"labelHeight": 26,
- "labelPosition": "INSIDE_MIDDLE_CENTER"
+ "labelPosition": "INSIDE_MIDDLE_CENTER",
+ "zIndex": 0,
+ "level": 1
},
{
"id": "c",
@@ -86,7 +88,6 @@
},
"width": 113,
"height": 126,
- "level": 1,
"opacity": 1,
"strokeDash": 0,
"strokeWidth": 2,
@@ -113,7 +114,9 @@
"underline": false,
"labelWidth": 13,
"labelHeight": 26,
- "labelPosition": "INSIDE_MIDDLE_CENTER"
+ "labelPosition": "INSIDE_MIDDLE_CENTER",
+ "zIndex": 0,
+ "level": 1
},
{
"id": "d",
@@ -124,7 +127,6 @@
},
"width": 114,
"height": 126,
- "level": 1,
"opacity": 1,
"strokeDash": 0,
"strokeWidth": 2,
@@ -151,7 +153,9 @@
"underline": false,
"labelWidth": 14,
"labelHeight": 26,
- "labelPosition": "INSIDE_MIDDLE_CENTER"
+ "labelPosition": "INSIDE_MIDDLE_CENTER",
+ "zIndex": 0,
+ "level": 1
},
{
"id": "e",
@@ -162,7 +166,6 @@
},
"width": 113,
"height": 126,
- "level": 1,
"opacity": 1,
"strokeDash": 0,
"strokeWidth": 2,
@@ -189,7 +192,9 @@
"underline": false,
"labelWidth": 13,
"labelHeight": 26,
- "labelPosition": "INSIDE_MIDDLE_CENTER"
+ "labelPosition": "INSIDE_MIDDLE_CENTER",
+ "zIndex": 0,
+ "level": 1
},
{
"id": "f",
@@ -200,7 +205,6 @@
},
"width": 111,
"height": 126,
- "level": 1,
"opacity": 1,
"strokeDash": 0,
"strokeWidth": 2,
@@ -227,7 +231,9 @@
"underline": false,
"labelWidth": 11,
"labelHeight": 26,
- "labelPosition": "INSIDE_MIDDLE_CENTER"
+ "labelPosition": "INSIDE_MIDDLE_CENTER",
+ "zIndex": 0,
+ "level": 1
},
{
"id": "g",
@@ -238,7 +244,6 @@
},
"width": 114,
"height": 126,
- "level": 1,
"opacity": 1,
"strokeDash": 0,
"strokeWidth": 2,
@@ -265,7 +270,9 @@
"underline": false,
"labelWidth": 14,
"labelHeight": 26,
- "labelPosition": "INSIDE_MIDDLE_CENTER"
+ "labelPosition": "INSIDE_MIDDLE_CENTER",
+ "zIndex": 0,
+ "level": 1
},
{
"id": "h",
@@ -276,7 +283,6 @@
},
"width": 113,
"height": 126,
- "level": 1,
"opacity": 1,
"strokeDash": 0,
"strokeWidth": 2,
@@ -303,7 +309,9 @@
"underline": false,
"labelWidth": 13,
"labelHeight": 26,
- "labelPosition": "INSIDE_MIDDLE_CENTER"
+ "labelPosition": "INSIDE_MIDDLE_CENTER",
+ "zIndex": 0,
+ "level": 1
},
{
"id": "i",
@@ -314,7 +322,6 @@
},
"width": 109,
"height": 126,
- "level": 1,
"opacity": 1,
"strokeDash": 0,
"strokeWidth": 2,
@@ -341,7 +348,9 @@
"underline": false,
"labelWidth": 9,
"labelHeight": 26,
- "labelPosition": "INSIDE_MIDDLE_CENTER"
+ "labelPosition": "INSIDE_MIDDLE_CENTER",
+ "zIndex": 0,
+ "level": 1
},
{
"id": "j",
@@ -352,7 +361,6 @@
},
"width": 110,
"height": 126,
- "level": 1,
"opacity": 1,
"strokeDash": 0,
"strokeWidth": 2,
@@ -379,7 +387,9 @@
"underline": false,
"labelWidth": 10,
"labelHeight": 26,
- "labelPosition": "INSIDE_MIDDLE_CENTER"
+ "labelPosition": "INSIDE_MIDDLE_CENTER",
+ "zIndex": 0,
+ "level": 1
},
{
"id": "k",
@@ -390,7 +400,6 @@
},
"width": 113,
"height": 126,
- "level": 1,
"opacity": 1,
"strokeDash": 0,
"strokeWidth": 2,
@@ -417,7 +426,9 @@
"underline": false,
"labelWidth": 13,
"labelHeight": 26,
- "labelPosition": "INSIDE_MIDDLE_CENTER"
+ "labelPosition": "INSIDE_MIDDLE_CENTER",
+ "zIndex": 0,
+ "level": 1
},
{
"id": "l",
@@ -428,7 +439,6 @@
},
"width": 109,
"height": 126,
- "level": 1,
"opacity": 1,
"strokeDash": 0,
"strokeWidth": 2,
@@ -455,7 +465,9 @@
"underline": false,
"labelWidth": 9,
"labelHeight": 26,
- "labelPosition": "INSIDE_MIDDLE_CENTER"
+ "labelPosition": "INSIDE_MIDDLE_CENTER",
+ "zIndex": 0,
+ "level": 1
},
{
"id": "m",
@@ -466,7 +478,6 @@
},
"width": 117,
"height": 126,
- "level": 1,
"opacity": 1,
"strokeDash": 0,
"strokeWidth": 2,
@@ -493,7 +504,9 @@
"underline": false,
"labelWidth": 17,
"labelHeight": 26,
- "labelPosition": "INSIDE_MIDDLE_CENTER"
+ "labelPosition": "INSIDE_MIDDLE_CENTER",
+ "zIndex": 0,
+ "level": 1
},
{
"id": "n",
@@ -504,7 +517,6 @@
},
"width": 113,
"height": 126,
- "level": 1,
"opacity": 1,
"strokeDash": 0,
"strokeWidth": 2,
@@ -531,7 +543,9 @@
"underline": false,
"labelWidth": 13,
"labelHeight": 26,
- "labelPosition": "INSIDE_MIDDLE_CENTER"
+ "labelPosition": "INSIDE_MIDDLE_CENTER",
+ "zIndex": 0,
+ "level": 1
},
{
"id": "o",
@@ -542,7 +556,6 @@
},
"width": 114,
"height": 126,
- "level": 1,
"opacity": 1,
"strokeDash": 0,
"strokeWidth": 2,
@@ -569,7 +582,9 @@
"underline": false,
"labelWidth": 14,
"labelHeight": 26,
- "labelPosition": "INSIDE_MIDDLE_CENTER"
+ "labelPosition": "INSIDE_MIDDLE_CENTER",
+ "zIndex": 0,
+ "level": 1
},
{
"id": "p",
@@ -580,7 +595,6 @@
},
"width": 113,
"height": 126,
- "level": 1,
"opacity": 1,
"strokeDash": 0,
"strokeWidth": 2,
@@ -607,7 +621,9 @@
"underline": false,
"labelWidth": 13,
"labelHeight": 26,
- "labelPosition": "INSIDE_MIDDLE_CENTER"
+ "labelPosition": "INSIDE_MIDDLE_CENTER",
+ "zIndex": 0,
+ "level": 1
},
{
"id": "q",
@@ -618,7 +634,6 @@
},
"width": 114,
"height": 126,
- "level": 1,
"opacity": 1,
"strokeDash": 0,
"strokeWidth": 2,
@@ -645,7 +660,9 @@
"underline": false,
"labelWidth": 14,
"labelHeight": 26,
- "labelPosition": "INSIDE_MIDDLE_CENTER"
+ "labelPosition": "INSIDE_MIDDLE_CENTER",
+ "zIndex": 0,
+ "level": 1
},
{
"id": "r",
@@ -656,7 +673,6 @@
},
"width": 111,
"height": 126,
- "level": 1,
"opacity": 1,
"strokeDash": 0,
"strokeWidth": 2,
@@ -683,7 +699,9 @@
"underline": false,
"labelWidth": 11,
"labelHeight": 26,
- "labelPosition": "INSIDE_MIDDLE_CENTER"
+ "labelPosition": "INSIDE_MIDDLE_CENTER",
+ "zIndex": 0,
+ "level": 1
},
{
"id": "s",
@@ -694,7 +712,6 @@
},
"width": 112,
"height": 126,
- "level": 1,
"opacity": 1,
"strokeDash": 0,
"strokeWidth": 2,
@@ -721,7 +738,9 @@
"underline": false,
"labelWidth": 12,
"labelHeight": 26,
- "labelPosition": "INSIDE_MIDDLE_CENTER"
+ "labelPosition": "INSIDE_MIDDLE_CENTER",
+ "zIndex": 0,
+ "level": 1
},
{
"id": "t",
@@ -732,7 +751,6 @@
},
"width": 111,
"height": 126,
- "level": 1,
"opacity": 1,
"strokeDash": 0,
"strokeWidth": 2,
@@ -759,7 +777,9 @@
"underline": false,
"labelWidth": 11,
"labelHeight": 26,
- "labelPosition": "INSIDE_MIDDLE_CENTER"
+ "labelPosition": "INSIDE_MIDDLE_CENTER",
+ "zIndex": 0,
+ "level": 1
},
{
"id": "u",
@@ -770,7 +790,6 @@
},
"width": 114,
"height": 126,
- "level": 1,
"opacity": 1,
"strokeDash": 0,
"strokeWidth": 2,
@@ -797,7 +816,9 @@
"underline": false,
"labelWidth": 14,
"labelHeight": 26,
- "labelPosition": "INSIDE_MIDDLE_CENTER"
+ "labelPosition": "INSIDE_MIDDLE_CENTER",
+ "zIndex": 0,
+ "level": 1
}
],
"connections": [
@@ -845,7 +866,8 @@
],
"animated": false,
"tooltip": "",
- "icon": null
+ "icon": null,
+ "zIndex": 0
},
{
"id": "(c -> a)[0]",
@@ -891,7 +913,8 @@
],
"animated": false,
"tooltip": "",
- "icon": null
+ "icon": null,
+ "zIndex": 0
},
{
"id": "(d -> a)[0]",
@@ -937,7 +960,8 @@
],
"animated": false,
"tooltip": "",
- "icon": null
+ "icon": null,
+ "zIndex": 0
},
{
"id": "(d -> b)[0]",
@@ -975,7 +999,8 @@
],
"animated": false,
"tooltip": "",
- "icon": null
+ "icon": null,
+ "zIndex": 0
},
{
"id": "(d -> e)[0]",
@@ -1021,7 +1046,8 @@
],
"animated": false,
"tooltip": "",
- "icon": null
+ "icon": null,
+ "zIndex": 0
},
{
"id": "(e -> f)[0]",
@@ -1059,7 +1085,8 @@
],
"animated": false,
"tooltip": "",
- "icon": null
+ "icon": null,
+ "zIndex": 0
},
{
"id": "(f -> b)[0]",
@@ -1105,7 +1132,8 @@
],
"animated": false,
"tooltip": "",
- "icon": null
+ "icon": null,
+ "zIndex": 0
},
{
"id": "(c -> f)[0]",
@@ -1159,7 +1187,8 @@
],
"animated": false,
"tooltip": "",
- "icon": null
+ "icon": null,
+ "zIndex": 0
},
{
"id": "(g -> c)[0]",
@@ -1197,7 +1226,8 @@
],
"animated": false,
"tooltip": "",
- "icon": null
+ "icon": null,
+ "zIndex": 0
},
{
"id": "(g -> h)[0]",
@@ -1243,7 +1273,8 @@
],
"animated": false,
"tooltip": "",
- "icon": null
+ "icon": null,
+ "zIndex": 0
},
{
"id": "(h -> i)[0]",
@@ -1281,7 +1312,8 @@
],
"animated": false,
"tooltip": "",
- "icon": null
+ "icon": null,
+ "zIndex": 0
},
{
"id": "(i -> j)[0]",
@@ -1319,7 +1351,8 @@
],
"animated": false,
"tooltip": "",
- "icon": null
+ "icon": null,
+ "zIndex": 0
},
{
"id": "(j -> k)[0]",
@@ -1357,7 +1390,8 @@
],
"animated": false,
"tooltip": "",
- "icon": null
+ "icon": null,
+ "zIndex": 0
},
{
"id": "(k -> e)[0]",
@@ -1395,7 +1429,8 @@
],
"animated": false,
"tooltip": "",
- "icon": null
+ "icon": null,
+ "zIndex": 0
},
{
"id": "(j -> f)[0]",
@@ -1449,7 +1484,8 @@
],
"animated": false,
"tooltip": "",
- "icon": null
+ "icon": null,
+ "zIndex": 0
},
{
"id": "(l -> m)[0]",
@@ -1495,7 +1531,8 @@
],
"animated": false,
"tooltip": "",
- "icon": null
+ "icon": null,
+ "zIndex": 0
},
{
"id": "(n -> l)[0]",
@@ -1541,7 +1578,8 @@
],
"animated": false,
"tooltip": "",
- "icon": null
+ "icon": null,
+ "zIndex": 0
},
{
"id": "(n -> l)[1]",
@@ -1579,7 +1617,8 @@
],
"animated": false,
"tooltip": "",
- "icon": null
+ "icon": null,
+ "zIndex": 0
},
{
"id": "(n -> m)[0]",
@@ -1625,7 +1664,8 @@
],
"animated": false,
"tooltip": "",
- "icon": null
+ "icon": null,
+ "zIndex": 0
},
{
"id": "(n -> o)[0]",
@@ -1671,7 +1711,8 @@
],
"animated": false,
"tooltip": "",
- "icon": null
+ "icon": null,
+ "zIndex": 0
},
{
"id": "(o -> p)[0]",
@@ -1709,7 +1750,8 @@
],
"animated": false,
"tooltip": "",
- "icon": null
+ "icon": null,
+ "zIndex": 0
},
{
"id": "(p -> m)[0]",
@@ -1755,7 +1797,8 @@
],
"animated": false,
"tooltip": "",
- "icon": null
+ "icon": null,
+ "zIndex": 0
},
{
"id": "(n -> p)[0]",
@@ -1809,7 +1852,8 @@
],
"animated": false,
"tooltip": "",
- "icon": null
+ "icon": null,
+ "zIndex": 0
},
{
"id": "(q -> n)[0]",
@@ -1847,7 +1891,8 @@
],
"animated": false,
"tooltip": "",
- "icon": null
+ "icon": null,
+ "zIndex": 0
},
{
"id": "(q -> r)[0]",
@@ -1893,7 +1938,8 @@
],
"animated": false,
"tooltip": "",
- "icon": null
+ "icon": null,
+ "zIndex": 0
},
{
"id": "(r -> s)[0]",
@@ -1931,7 +1977,8 @@
],
"animated": false,
"tooltip": "",
- "icon": null
+ "icon": null,
+ "zIndex": 0
},
{
"id": "(s -> t)[0]",
@@ -1969,7 +2016,8 @@
],
"animated": false,
"tooltip": "",
- "icon": null
+ "icon": null,
+ "zIndex": 0
},
{
"id": "(t -> u)[0]",
@@ -2007,7 +2055,8 @@
],
"animated": false,
"tooltip": "",
- "icon": null
+ "icon": null,
+ "zIndex": 0
},
{
"id": "(u -> o)[0]",
@@ -2045,7 +2094,8 @@
],
"animated": false,
"tooltip": "",
- "icon": null
+ "icon": null,
+ "zIndex": 0
},
{
"id": "(t -> p)[0]",
@@ -2099,7 +2149,8 @@
],
"animated": false,
"tooltip": "",
- "icon": null
+ "icon": null,
+ "zIndex": 0
},
{
"id": "(c -> t)[0]",
@@ -2145,7 +2196,8 @@
],
"animated": false,
"tooltip": "",
- "icon": null
+ "icon": null,
+ "zIndex": 0
},
{
"id": "(s -> a)[0]",
@@ -2199,7 +2251,8 @@
],
"animated": false,
"tooltip": "",
- "icon": null
+ "icon": null,
+ "zIndex": 0
},
{
"id": "(u -> a)[0]",
@@ -2245,7 +2298,8 @@
],
"animated": false,
"tooltip": "",
- "icon": null
+ "icon": null,
+ "zIndex": 0
}
]
}
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 0b60af818..56939fe30 100644
--- a/e2etests/testdata/stable/one_container_loop/dagre/board.exp.json
+++ b/e2etests/testdata/stable/one_container_loop/dagre/board.exp.json
@@ -10,7 +10,6 @@
},
"width": 479,
"height": 226,
- "level": 1,
"opacity": 1,
"strokeDash": 0,
"strokeWidth": 2,
@@ -37,7 +36,9 @@
"underline": false,
"labelWidth": 17,
"labelHeight": 41,
- "labelPosition": "INSIDE_TOP_CENTER"
+ "labelPosition": "INSIDE_TOP_CENTER",
+ "zIndex": 0,
+ "level": 1
},
{
"id": "a.b",
@@ -48,7 +49,6 @@
},
"width": 113,
"height": 126,
- "level": 2,
"opacity": 1,
"strokeDash": 0,
"strokeWidth": 2,
@@ -75,7 +75,9 @@
"underline": false,
"labelWidth": 13,
"labelHeight": 26,
- "labelPosition": "INSIDE_MIDDLE_CENTER"
+ "labelPosition": "INSIDE_MIDDLE_CENTER",
+ "zIndex": 0,
+ "level": 2
},
{
"id": "c",
@@ -86,7 +88,6 @@
},
"width": 113,
"height": 126,
- "level": 1,
"opacity": 1,
"strokeDash": 0,
"strokeWidth": 2,
@@ -113,7 +114,9 @@
"underline": false,
"labelWidth": 13,
"labelHeight": 26,
- "labelPosition": "INSIDE_MIDDLE_CENTER"
+ "labelPosition": "INSIDE_MIDDLE_CENTER",
+ "zIndex": 0,
+ "level": 1
},
{
"id": "d",
@@ -124,7 +127,6 @@
},
"width": 114,
"height": 126,
- "level": 1,
"opacity": 1,
"strokeDash": 0,
"strokeWidth": 2,
@@ -151,7 +153,9 @@
"underline": false,
"labelWidth": 14,
"labelHeight": 26,
- "labelPosition": "INSIDE_MIDDLE_CENTER"
+ "labelPosition": "INSIDE_MIDDLE_CENTER",
+ "zIndex": 0,
+ "level": 1
},
{
"id": "e",
@@ -162,7 +166,6 @@
},
"width": 113,
"height": 126,
- "level": 1,
"opacity": 1,
"strokeDash": 0,
"strokeWidth": 2,
@@ -189,7 +192,9 @@
"underline": false,
"labelWidth": 13,
"labelHeight": 26,
- "labelPosition": "INSIDE_MIDDLE_CENTER"
+ "labelPosition": "INSIDE_MIDDLE_CENTER",
+ "zIndex": 0,
+ "level": 1
},
{
"id": "f",
@@ -200,7 +205,6 @@
},
"width": 111,
"height": 126,
- "level": 1,
"opacity": 1,
"strokeDash": 0,
"strokeWidth": 2,
@@ -227,7 +231,9 @@
"underline": false,
"labelWidth": 11,
"labelHeight": 26,
- "labelPosition": "INSIDE_MIDDLE_CENTER"
+ "labelPosition": "INSIDE_MIDDLE_CENTER",
+ "zIndex": 0,
+ "level": 1
},
{
"id": "g",
@@ -238,7 +244,6 @@
},
"width": 114,
"height": 126,
- "level": 1,
"opacity": 1,
"strokeDash": 0,
"strokeWidth": 2,
@@ -265,7 +270,9 @@
"underline": false,
"labelWidth": 14,
"labelHeight": 26,
- "labelPosition": "INSIDE_MIDDLE_CENTER"
+ "labelPosition": "INSIDE_MIDDLE_CENTER",
+ "zIndex": 0,
+ "level": 1
},
{
"id": "a.h",
@@ -276,7 +283,6 @@
},
"width": 113,
"height": 126,
- "level": 2,
"opacity": 1,
"strokeDash": 0,
"strokeWidth": 2,
@@ -303,7 +309,9 @@
"underline": false,
"labelWidth": 13,
"labelHeight": 26,
- "labelPosition": "INSIDE_MIDDLE_CENTER"
+ "labelPosition": "INSIDE_MIDDLE_CENTER",
+ "zIndex": 0,
+ "level": 2
}
],
"connections": [
@@ -424,7 +432,8 @@
"isCurve": true,
"animated": false,
"tooltip": "",
- "icon": null
+ "icon": null,
+ "zIndex": 0
},
{
"id": "(d -> c)[0]",
@@ -471,7 +480,8 @@
"isCurve": true,
"animated": false,
"tooltip": "",
- "icon": null
+ "icon": null,
+ "zIndex": 0
},
{
"id": "(e -> c)[0]",
@@ -518,7 +528,8 @@
"isCurve": true,
"animated": false,
"tooltip": "",
- "icon": null
+ "icon": null,
+ "zIndex": 0
},
{
"id": "(f -> d)[0]",
@@ -565,7 +576,8 @@
"isCurve": true,
"animated": false,
"tooltip": "",
- "icon": null
+ "icon": null,
+ "zIndex": 0
},
{
"id": "(a -> e)[0]",
@@ -648,7 +660,8 @@
"isCurve": true,
"animated": false,
"tooltip": "",
- "icon": null
+ "icon": null,
+ "zIndex": 0
},
{
"id": "(g -> f)[0]",
@@ -695,7 +708,8 @@
"isCurve": true,
"animated": false,
"tooltip": "",
- "icon": null
+ "icon": null,
+ "zIndex": 0
},
{
"id": "(a.h -> g)[0]",
@@ -742,7 +756,8 @@
"isCurve": true,
"animated": false,
"tooltip": "",
- "icon": null
+ "icon": null,
+ "zIndex": 0
}
]
}
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 d5560cc6d..0e02739ec 100644
--- a/e2etests/testdata/stable/one_container_loop/elk/board.exp.json
+++ b/e2etests/testdata/stable/one_container_loop/elk/board.exp.json
@@ -10,7 +10,6 @@
},
"width": 396,
"height": 276,
- "level": 1,
"opacity": 1,
"strokeDash": 0,
"strokeWidth": 2,
@@ -37,7 +36,9 @@
"underline": false,
"labelWidth": 17,
"labelHeight": 41,
- "labelPosition": "INSIDE_TOP_CENTER"
+ "labelPosition": "INSIDE_TOP_CENTER",
+ "zIndex": 0,
+ "level": 1
},
{
"id": "a.b",
@@ -48,7 +49,6 @@
},
"width": 113,
"height": 126,
- "level": 2,
"opacity": 1,
"strokeDash": 0,
"strokeWidth": 2,
@@ -75,7 +75,9 @@
"underline": false,
"labelWidth": 13,
"labelHeight": 26,
- "labelPosition": "INSIDE_MIDDLE_CENTER"
+ "labelPosition": "INSIDE_MIDDLE_CENTER",
+ "zIndex": 0,
+ "level": 2
},
{
"id": "c",
@@ -86,7 +88,6 @@
},
"width": 113,
"height": 126,
- "level": 1,
"opacity": 1,
"strokeDash": 0,
"strokeWidth": 2,
@@ -113,7 +114,9 @@
"underline": false,
"labelWidth": 13,
"labelHeight": 26,
- "labelPosition": "INSIDE_MIDDLE_CENTER"
+ "labelPosition": "INSIDE_MIDDLE_CENTER",
+ "zIndex": 0,
+ "level": 1
},
{
"id": "d",
@@ -124,7 +127,6 @@
},
"width": 114,
"height": 126,
- "level": 1,
"opacity": 1,
"strokeDash": 0,
"strokeWidth": 2,
@@ -151,7 +153,9 @@
"underline": false,
"labelWidth": 14,
"labelHeight": 26,
- "labelPosition": "INSIDE_MIDDLE_CENTER"
+ "labelPosition": "INSIDE_MIDDLE_CENTER",
+ "zIndex": 0,
+ "level": 1
},
{
"id": "e",
@@ -162,7 +166,6 @@
},
"width": 113,
"height": 126,
- "level": 1,
"opacity": 1,
"strokeDash": 0,
"strokeWidth": 2,
@@ -189,7 +192,9 @@
"underline": false,
"labelWidth": 13,
"labelHeight": 26,
- "labelPosition": "INSIDE_MIDDLE_CENTER"
+ "labelPosition": "INSIDE_MIDDLE_CENTER",
+ "zIndex": 0,
+ "level": 1
},
{
"id": "f",
@@ -200,7 +205,6 @@
},
"width": 111,
"height": 126,
- "level": 1,
"opacity": 1,
"strokeDash": 0,
"strokeWidth": 2,
@@ -227,7 +231,9 @@
"underline": false,
"labelWidth": 11,
"labelHeight": 26,
- "labelPosition": "INSIDE_MIDDLE_CENTER"
+ "labelPosition": "INSIDE_MIDDLE_CENTER",
+ "zIndex": 0,
+ "level": 1
},
{
"id": "g",
@@ -238,7 +244,6 @@
},
"width": 114,
"height": 126,
- "level": 1,
"opacity": 1,
"strokeDash": 0,
"strokeWidth": 2,
@@ -265,7 +270,9 @@
"underline": false,
"labelWidth": 14,
"labelHeight": 26,
- "labelPosition": "INSIDE_MIDDLE_CENTER"
+ "labelPosition": "INSIDE_MIDDLE_CENTER",
+ "zIndex": 0,
+ "level": 1
},
{
"id": "a.h",
@@ -276,7 +283,6 @@
},
"width": 113,
"height": 126,
- "level": 2,
"opacity": 1,
"strokeDash": 0,
"strokeWidth": 2,
@@ -303,7 +309,9 @@
"underline": false,
"labelWidth": 13,
"labelHeight": 26,
- "labelPosition": "INSIDE_MIDDLE_CENTER"
+ "labelPosition": "INSIDE_MIDDLE_CENTER",
+ "zIndex": 0,
+ "level": 2
}
],
"connections": [
@@ -359,7 +367,8 @@
],
"animated": false,
"tooltip": "",
- "icon": null
+ "icon": null,
+ "zIndex": 0
},
{
"id": "(d -> c)[0]",
@@ -397,7 +406,8 @@
],
"animated": false,
"tooltip": "",
- "icon": null
+ "icon": null,
+ "zIndex": 0
},
{
"id": "(e -> c)[0]",
@@ -443,7 +453,8 @@
],
"animated": false,
"tooltip": "",
- "icon": null
+ "icon": null,
+ "zIndex": 0
},
{
"id": "(f -> d)[0]",
@@ -481,7 +492,8 @@
],
"animated": false,
"tooltip": "",
- "icon": null
+ "icon": null,
+ "zIndex": 0
},
{
"id": "(a -> e)[0]",
@@ -519,7 +531,8 @@
],
"animated": false,
"tooltip": "",
- "icon": null
+ "icon": null,
+ "zIndex": 0
},
{
"id": "(g -> f)[0]",
@@ -557,7 +570,8 @@
],
"animated": false,
"tooltip": "",
- "icon": null
+ "icon": null,
+ "zIndex": 0
},
{
"id": "(a.h -> g)[0]",
@@ -603,7 +617,8 @@
],
"animated": false,
"tooltip": "",
- "icon": null
+ "icon": null,
+ "zIndex": 0
}
]
}
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 ffc66f955..2592a4550 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
@@ -10,7 +10,6 @@
},
"width": 506,
"height": 226,
- "level": 1,
"opacity": 1,
"strokeDash": 0,
"strokeWidth": 2,
@@ -37,7 +36,9 @@
"underline": false,
"labelWidth": 45,
"labelHeight": 41,
- "labelPosition": "INSIDE_TOP_CENTER"
+ "labelPosition": "INSIDE_TOP_CENTER",
+ "zIndex": 0,
+ "level": 1
},
{
"id": "top.start",
@@ -48,7 +49,6 @@
},
"width": 140,
"height": 126,
- "level": 2,
"opacity": 1,
"strokeDash": 0,
"strokeWidth": 2,
@@ -75,7 +75,9 @@
"underline": false,
"labelWidth": 40,
"labelHeight": 26,
- "labelPosition": "INSIDE_MIDDLE_CENTER"
+ "labelPosition": "INSIDE_MIDDLE_CENTER",
+ "zIndex": 0,
+ "level": 2
},
{
"id": "a",
@@ -86,7 +88,6 @@
},
"width": 113,
"height": 126,
- "level": 1,
"opacity": 1,
"strokeDash": 0,
"strokeWidth": 2,
@@ -113,7 +114,9 @@
"underline": false,
"labelWidth": 13,
"labelHeight": 26,
- "labelPosition": "INSIDE_MIDDLE_CENTER"
+ "labelPosition": "INSIDE_MIDDLE_CENTER",
+ "zIndex": 0,
+ "level": 1
},
{
"id": "b",
@@ -124,7 +127,6 @@
},
"width": 113,
"height": 126,
- "level": 1,
"opacity": 1,
"strokeDash": 0,
"strokeWidth": 2,
@@ -151,7 +153,9 @@
"underline": false,
"labelWidth": 13,
"labelHeight": 26,
- "labelPosition": "INSIDE_MIDDLE_CENTER"
+ "labelPosition": "INSIDE_MIDDLE_CENTER",
+ "zIndex": 0,
+ "level": 1
},
{
"id": "c",
@@ -162,7 +166,6 @@
},
"width": 113,
"height": 126,
- "level": 1,
"opacity": 1,
"strokeDash": 0,
"strokeWidth": 2,
@@ -189,7 +192,9 @@
"underline": false,
"labelWidth": 13,
"labelHeight": 26,
- "labelPosition": "INSIDE_MIDDLE_CENTER"
+ "labelPosition": "INSIDE_MIDDLE_CENTER",
+ "zIndex": 0,
+ "level": 1
},
{
"id": "bottom",
@@ -200,7 +205,6 @@
},
"width": 504,
"height": 226,
- "level": 1,
"opacity": 1,
"strokeDash": 0,
"strokeWidth": 2,
@@ -227,7 +231,9 @@
"underline": false,
"labelWidth": 90,
"labelHeight": 41,
- "labelPosition": "INSIDE_TOP_CENTER"
+ "labelPosition": "INSIDE_TOP_CENTER",
+ "zIndex": 0,
+ "level": 1
},
{
"id": "bottom.end",
@@ -238,7 +244,6 @@
},
"width": 132,
"height": 126,
- "level": 2,
"opacity": 1,
"strokeDash": 0,
"strokeWidth": 2,
@@ -265,7 +270,9 @@
"underline": false,
"labelWidth": 32,
"labelHeight": 26,
- "labelPosition": "INSIDE_MIDDLE_CENTER"
+ "labelPosition": "INSIDE_MIDDLE_CENTER",
+ "zIndex": 0,
+ "level": 2
}
],
"connections": [
@@ -314,7 +321,8 @@
"isCurve": true,
"animated": false,
"tooltip": "",
- "icon": null
+ "icon": null,
+ "zIndex": 0
},
{
"id": "(top.start -> b)[0]",
@@ -361,7 +369,8 @@
"isCurve": true,
"animated": false,
"tooltip": "",
- "icon": null
+ "icon": null,
+ "zIndex": 0
},
{
"id": "(top.start -> c)[0]",
@@ -408,7 +417,8 @@
"isCurve": true,
"animated": false,
"tooltip": "",
- "icon": null
+ "icon": null,
+ "zIndex": 0
},
{
"id": "(a -> bottom.end)[0]",
@@ -455,7 +465,8 @@
"isCurve": true,
"animated": false,
"tooltip": "",
- "icon": null
+ "icon": null,
+ "zIndex": 0
},
{
"id": "(b -> bottom.end)[0]",
@@ -502,7 +513,8 @@
"isCurve": true,
"animated": false,
"tooltip": "",
- "icon": null
+ "icon": null,
+ "zIndex": 0
},
{
"id": "(c -> bottom.end)[0]",
@@ -549,7 +561,8 @@
"isCurve": true,
"animated": false,
"tooltip": "",
- "icon": null
+ "icon": null,
+ "zIndex": 0
}
]
}
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 659cc9636..3548b3c91 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
@@ -10,7 +10,6 @@
},
"width": 290,
"height": 276,
- "level": 1,
"opacity": 1,
"strokeDash": 0,
"strokeWidth": 2,
@@ -37,7 +36,9 @@
"underline": false,
"labelWidth": 45,
"labelHeight": 41,
- "labelPosition": "INSIDE_TOP_CENTER"
+ "labelPosition": "INSIDE_TOP_CENTER",
+ "zIndex": 0,
+ "level": 1
},
{
"id": "top.start",
@@ -48,7 +49,6 @@
},
"width": 140,
"height": 126,
- "level": 2,
"opacity": 1,
"strokeDash": 0,
"strokeWidth": 2,
@@ -75,7 +75,9 @@
"underline": false,
"labelWidth": 40,
"labelHeight": 26,
- "labelPosition": "INSIDE_MIDDLE_CENTER"
+ "labelPosition": "INSIDE_MIDDLE_CENTER",
+ "zIndex": 0,
+ "level": 2
},
{
"id": "a",
@@ -86,7 +88,6 @@
},
"width": 113,
"height": 126,
- "level": 1,
"opacity": 1,
"strokeDash": 0,
"strokeWidth": 2,
@@ -113,7 +114,9 @@
"underline": false,
"labelWidth": 13,
"labelHeight": 26,
- "labelPosition": "INSIDE_MIDDLE_CENTER"
+ "labelPosition": "INSIDE_MIDDLE_CENTER",
+ "zIndex": 0,
+ "level": 1
},
{
"id": "b",
@@ -124,7 +127,6 @@
},
"width": 113,
"height": 126,
- "level": 1,
"opacity": 1,
"strokeDash": 0,
"strokeWidth": 2,
@@ -151,7 +153,9 @@
"underline": false,
"labelWidth": 13,
"labelHeight": 26,
- "labelPosition": "INSIDE_MIDDLE_CENTER"
+ "labelPosition": "INSIDE_MIDDLE_CENTER",
+ "zIndex": 0,
+ "level": 1
},
{
"id": "c",
@@ -162,7 +166,6 @@
},
"width": 113,
"height": 126,
- "level": 1,
"opacity": 1,
"strokeDash": 0,
"strokeWidth": 2,
@@ -189,7 +192,9 @@
"underline": false,
"labelWidth": 13,
"labelHeight": 26,
- "labelPosition": "INSIDE_MIDDLE_CENTER"
+ "labelPosition": "INSIDE_MIDDLE_CENTER",
+ "zIndex": 0,
+ "level": 1
},
{
"id": "bottom",
@@ -200,7 +205,6 @@
},
"width": 282,
"height": 276,
- "level": 1,
"opacity": 1,
"strokeDash": 0,
"strokeWidth": 2,
@@ -227,7 +231,9 @@
"underline": false,
"labelWidth": 90,
"labelHeight": 41,
- "labelPosition": "INSIDE_TOP_CENTER"
+ "labelPosition": "INSIDE_TOP_CENTER",
+ "zIndex": 0,
+ "level": 1
},
{
"id": "bottom.end",
@@ -238,7 +244,6 @@
},
"width": 132,
"height": 126,
- "level": 2,
"opacity": 1,
"strokeDash": 0,
"strokeWidth": 2,
@@ -265,7 +270,9 @@
"underline": false,
"labelWidth": 32,
"labelHeight": 26,
- "labelPosition": "INSIDE_MIDDLE_CENTER"
+ "labelPosition": "INSIDE_MIDDLE_CENTER",
+ "zIndex": 0,
+ "level": 2
}
],
"connections": [
@@ -313,7 +320,8 @@
],
"animated": false,
"tooltip": "",
- "icon": null
+ "icon": null,
+ "zIndex": 0
},
{
"id": "(top.start -> b)[0]",
@@ -351,7 +359,8 @@
],
"animated": false,
"tooltip": "",
- "icon": null
+ "icon": null,
+ "zIndex": 0
},
{
"id": "(top.start -> c)[0]",
@@ -397,7 +406,8 @@
],
"animated": false,
"tooltip": "",
- "icon": null
+ "icon": null,
+ "zIndex": 0
},
{
"id": "(a -> bottom.end)[0]",
@@ -443,7 +453,8 @@
],
"animated": false,
"tooltip": "",
- "icon": null
+ "icon": null,
+ "zIndex": 0
},
{
"id": "(b -> bottom.end)[0]",
@@ -489,7 +500,8 @@
],
"animated": false,
"tooltip": "",
- "icon": null
+ "icon": null,
+ "zIndex": 0
},
{
"id": "(c -> bottom.end)[0]",
@@ -527,7 +539,8 @@
],
"animated": false,
"tooltip": "",
- "icon": null
+ "icon": null,
+ "zIndex": 0
}
]
}
diff --git a/e2etests/testdata/stable/p/dagre/board.exp.json b/e2etests/testdata/stable/p/dagre/board.exp.json
index e7bf9c0a9..579fd45cf 100644
--- a/e2etests/testdata/stable/p/dagre/board.exp.json
+++ b/e2etests/testdata/stable/p/dagre/board.exp.json
@@ -10,7 +10,6 @@
},
"width": 1857,
"height": 24,
- "level": 1,
"opacity": 1,
"strokeDash": 0,
"strokeWidth": 2,
@@ -36,7 +35,9 @@
"bold": true,
"underline": false,
"labelWidth": 1857,
- "labelHeight": 24
+ "labelHeight": 24,
+ "zIndex": 0,
+ "level": 1
},
{
"id": "a",
@@ -47,7 +48,6 @@
},
"width": 113,
"height": 126,
- "level": 1,
"opacity": 1,
"strokeDash": 0,
"strokeWidth": 2,
@@ -74,7 +74,9 @@
"underline": false,
"labelWidth": 13,
"labelHeight": 26,
- "labelPosition": "INSIDE_MIDDLE_CENTER"
+ "labelPosition": "INSIDE_MIDDLE_CENTER",
+ "zIndex": 0,
+ "level": 1
},
{
"id": "b",
@@ -85,7 +87,6 @@
},
"width": 113,
"height": 126,
- "level": 1,
"opacity": 1,
"strokeDash": 0,
"strokeWidth": 2,
@@ -112,7 +113,9 @@
"underline": false,
"labelWidth": 13,
"labelHeight": 26,
- "labelPosition": "INSIDE_MIDDLE_CENTER"
+ "labelPosition": "INSIDE_MIDDLE_CENTER",
+ "zIndex": 0,
+ "level": 1
}
],
"connections": [
@@ -161,7 +164,8 @@
"isCurve": true,
"animated": false,
"tooltip": "",
- "icon": null
+ "icon": null,
+ "zIndex": 0
},
{
"id": "(md -> b)[0]",
@@ -208,7 +212,8 @@
"isCurve": true,
"animated": false,
"tooltip": "",
- "icon": null
+ "icon": null,
+ "zIndex": 0
}
]
}
diff --git a/e2etests/testdata/stable/p/elk/board.exp.json b/e2etests/testdata/stable/p/elk/board.exp.json
index ab7b5da9c..e6474660b 100644
--- a/e2etests/testdata/stable/p/elk/board.exp.json
+++ b/e2etests/testdata/stable/p/elk/board.exp.json
@@ -10,7 +10,6 @@
},
"width": 1857,
"height": 24,
- "level": 1,
"opacity": 1,
"strokeDash": 0,
"strokeWidth": 2,
@@ -36,7 +35,9 @@
"bold": true,
"underline": false,
"labelWidth": 1857,
- "labelHeight": 24
+ "labelHeight": 24,
+ "zIndex": 0,
+ "level": 1
},
{
"id": "a",
@@ -47,7 +48,6 @@
},
"width": 113,
"height": 126,
- "level": 1,
"opacity": 1,
"strokeDash": 0,
"strokeWidth": 2,
@@ -74,7 +74,9 @@
"underline": false,
"labelWidth": 13,
"labelHeight": 26,
- "labelPosition": "INSIDE_MIDDLE_CENTER"
+ "labelPosition": "INSIDE_MIDDLE_CENTER",
+ "zIndex": 0,
+ "level": 1
},
{
"id": "b",
@@ -85,7 +87,6 @@
},
"width": 113,
"height": 126,
- "level": 1,
"opacity": 1,
"strokeDash": 0,
"strokeWidth": 2,
@@ -112,7 +113,9 @@
"underline": false,
"labelWidth": 13,
"labelHeight": 26,
- "labelPosition": "INSIDE_MIDDLE_CENTER"
+ "labelPosition": "INSIDE_MIDDLE_CENTER",
+ "zIndex": 0,
+ "level": 1
}
],
"connections": [
@@ -152,7 +155,8 @@
],
"animated": false,
"tooltip": "",
- "icon": null
+ "icon": null,
+ "zIndex": 0
},
{
"id": "(md -> b)[0]",
@@ -190,7 +194,8 @@
],
"animated": false,
"tooltip": "",
- "icon": null
+ "icon": null,
+ "zIndex": 0
}
]
}
diff --git a/e2etests/testdata/stable/pre/dagre/board.exp.json b/e2etests/testdata/stable/pre/dagre/board.exp.json
index 69727a4bd..b4153c389 100644
--- a/e2etests/testdata/stable/pre/dagre/board.exp.json
+++ b/e2etests/testdata/stable/pre/dagre/board.exp.json
@@ -10,7 +10,6 @@
},
"width": 602,
"height": 170,
- "level": 1,
"opacity": 1,
"strokeDash": 0,
"strokeWidth": 2,
@@ -36,7 +35,9 @@
"bold": true,
"underline": false,
"labelWidth": 602,
- "labelHeight": 170
+ "labelHeight": 170,
+ "zIndex": 0,
+ "level": 1
},
{
"id": "a",
@@ -47,7 +48,6 @@
},
"width": 113,
"height": 126,
- "level": 1,
"opacity": 1,
"strokeDash": 0,
"strokeWidth": 2,
@@ -74,7 +74,9 @@
"underline": false,
"labelWidth": 13,
"labelHeight": 26,
- "labelPosition": "INSIDE_MIDDLE_CENTER"
+ "labelPosition": "INSIDE_MIDDLE_CENTER",
+ "zIndex": 0,
+ "level": 1
},
{
"id": "b",
@@ -85,7 +87,6 @@
},
"width": 113,
"height": 126,
- "level": 1,
"opacity": 1,
"strokeDash": 0,
"strokeWidth": 2,
@@ -112,7 +113,9 @@
"underline": false,
"labelWidth": 13,
"labelHeight": 26,
- "labelPosition": "INSIDE_MIDDLE_CENTER"
+ "labelPosition": "INSIDE_MIDDLE_CENTER",
+ "zIndex": 0,
+ "level": 1
}
],
"connections": [
@@ -161,7 +164,8 @@
"isCurve": true,
"animated": false,
"tooltip": "",
- "icon": null
+ "icon": null,
+ "zIndex": 0
},
{
"id": "(md -> b)[0]",
@@ -208,7 +212,8 @@
"isCurve": true,
"animated": false,
"tooltip": "",
- "icon": null
+ "icon": null,
+ "zIndex": 0
}
]
}
diff --git a/e2etests/testdata/stable/pre/elk/board.exp.json b/e2etests/testdata/stable/pre/elk/board.exp.json
index 5d8247547..050f2197b 100644
--- a/e2etests/testdata/stable/pre/elk/board.exp.json
+++ b/e2etests/testdata/stable/pre/elk/board.exp.json
@@ -10,7 +10,6 @@
},
"width": 602,
"height": 170,
- "level": 1,
"opacity": 1,
"strokeDash": 0,
"strokeWidth": 2,
@@ -36,7 +35,9 @@
"bold": true,
"underline": false,
"labelWidth": 602,
- "labelHeight": 170
+ "labelHeight": 170,
+ "zIndex": 0,
+ "level": 1
},
{
"id": "a",
@@ -47,7 +48,6 @@
},
"width": 113,
"height": 126,
- "level": 1,
"opacity": 1,
"strokeDash": 0,
"strokeWidth": 2,
@@ -74,7 +74,9 @@
"underline": false,
"labelWidth": 13,
"labelHeight": 26,
- "labelPosition": "INSIDE_MIDDLE_CENTER"
+ "labelPosition": "INSIDE_MIDDLE_CENTER",
+ "zIndex": 0,
+ "level": 1
},
{
"id": "b",
@@ -85,7 +87,6 @@
},
"width": 113,
"height": 126,
- "level": 1,
"opacity": 1,
"strokeDash": 0,
"strokeWidth": 2,
@@ -112,7 +113,9 @@
"underline": false,
"labelWidth": 13,
"labelHeight": 26,
- "labelPosition": "INSIDE_MIDDLE_CENTER"
+ "labelPosition": "INSIDE_MIDDLE_CENTER",
+ "zIndex": 0,
+ "level": 1
}
],
"connections": [
@@ -152,7 +155,8 @@
],
"animated": false,
"tooltip": "",
- "icon": null
+ "icon": null,
+ "zIndex": 0
},
{
"id": "(md -> b)[0]",
@@ -190,7 +194,8 @@
],
"animated": false,
"tooltip": "",
- "icon": null
+ "icon": null,
+ "zIndex": 0
}
]
}
diff --git a/e2etests/testdata/stable/sql_tables/dagre/board.exp.json b/e2etests/testdata/stable/sql_tables/dagre/board.exp.json
index da031d9b2..e4f5b8038 100644
--- a/e2etests/testdata/stable/sql_tables/dagre/board.exp.json
+++ b/e2etests/testdata/stable/sql_tables/dagre/board.exp.json
@@ -10,7 +10,6 @@
},
"width": 259,
"height": 216,
- "level": 1,
"opacity": 1,
"strokeDash": 0,
"strokeWidth": 2,
@@ -67,7 +66,9 @@
"bold": true,
"underline": false,
"labelWidth": 61,
- "labelHeight": 36
+ "labelHeight": 36,
+ "zIndex": 0,
+ "level": 1
},
{
"id": "products",
@@ -78,7 +79,6 @@
},
"width": 290,
"height": 180,
- "level": 1,
"opacity": 1,
"strokeDash": 0,
"strokeWidth": 2,
@@ -129,7 +129,9 @@
"bold": true,
"underline": false,
"labelWidth": 99,
- "labelHeight": 36
+ "labelHeight": 36,
+ "zIndex": 0,
+ "level": 1
},
{
"id": "orders",
@@ -140,7 +142,6 @@
},
"width": 215,
"height": 144,
- "level": 1,
"opacity": 1,
"strokeDash": 0,
"strokeWidth": 2,
@@ -185,7 +186,9 @@
"bold": true,
"underline": false,
"labelWidth": 74,
- "labelHeight": 36
+ "labelHeight": 36,
+ "zIndex": 0,
+ "level": 1
},
{
"id": "shipments",
@@ -196,7 +199,6 @@
},
"width": 293,
"height": 180,
- "level": 1,
"opacity": 1,
"strokeDash": 0,
"strokeWidth": 2,
@@ -247,7 +249,9 @@
"bold": true,
"underline": false,
"labelWidth": 116,
- "labelHeight": 36
+ "labelHeight": 36,
+ "zIndex": 0,
+ "level": 1
}
],
"connections": [
@@ -296,7 +300,8 @@
"isCurve": true,
"animated": false,
"tooltip": "",
- "icon": null
+ "icon": null,
+ "zIndex": 0
},
{
"id": "(products <-> orders)[0]",
@@ -343,7 +348,8 @@
"isCurve": true,
"animated": false,
"tooltip": "",
- "icon": null
+ "icon": null,
+ "zIndex": 0
},
{
"id": "(shipments <-> orders)[0]",
@@ -390,7 +396,8 @@
"isCurve": true,
"animated": false,
"tooltip": "",
- "icon": null
+ "icon": null,
+ "zIndex": 0
}
]
}
diff --git a/e2etests/testdata/stable/sql_tables/elk/board.exp.json b/e2etests/testdata/stable/sql_tables/elk/board.exp.json
index 15d050e46..4580c1251 100644
--- a/e2etests/testdata/stable/sql_tables/elk/board.exp.json
+++ b/e2etests/testdata/stable/sql_tables/elk/board.exp.json
@@ -10,7 +10,6 @@
},
"width": 259,
"height": 216,
- "level": 1,
"opacity": 1,
"strokeDash": 0,
"strokeWidth": 2,
@@ -67,7 +66,9 @@
"bold": true,
"underline": false,
"labelWidth": 61,
- "labelHeight": 36
+ "labelHeight": 36,
+ "zIndex": 0,
+ "level": 1
},
{
"id": "products",
@@ -78,7 +79,6 @@
},
"width": 290,
"height": 180,
- "level": 1,
"opacity": 1,
"strokeDash": 0,
"strokeWidth": 2,
@@ -129,7 +129,9 @@
"bold": true,
"underline": false,
"labelWidth": 99,
- "labelHeight": 36
+ "labelHeight": 36,
+ "zIndex": 0,
+ "level": 1
},
{
"id": "orders",
@@ -140,7 +142,6 @@
},
"width": 215,
"height": 144,
- "level": 1,
"opacity": 1,
"strokeDash": 0,
"strokeWidth": 2,
@@ -185,7 +186,9 @@
"bold": true,
"underline": false,
"labelWidth": 74,
- "labelHeight": 36
+ "labelHeight": 36,
+ "zIndex": 0,
+ "level": 1
},
{
"id": "shipments",
@@ -196,7 +199,6 @@
},
"width": 293,
"height": 180,
- "level": 1,
"opacity": 1,
"strokeDash": 0,
"strokeWidth": 2,
@@ -247,7 +249,9 @@
"bold": true,
"underline": false,
"labelWidth": 116,
- "labelHeight": 36
+ "labelHeight": 36,
+ "zIndex": 0,
+ "level": 1
}
],
"connections": [
@@ -295,7 +299,8 @@
],
"animated": false,
"tooltip": "",
- "icon": null
+ "icon": null,
+ "zIndex": 0
},
{
"id": "(products <-> orders)[0]",
@@ -333,7 +338,8 @@
],
"animated": false,
"tooltip": "",
- "icon": null
+ "icon": null,
+ "zIndex": 0
},
{
"id": "(shipments <-> orders)[0]",
@@ -379,7 +385,8 @@
],
"animated": false,
"tooltip": "",
- "icon": null
+ "icon": null,
+ "zIndex": 0
}
]
}
diff --git a/e2etests/testdata/stable/square_3d/dagre/board.exp.json b/e2etests/testdata/stable/square_3d/dagre/board.exp.json
index 4275335d4..1271b3d7c 100644
--- a/e2etests/testdata/stable/square_3d/dagre/board.exp.json
+++ b/e2etests/testdata/stable/square_3d/dagre/board.exp.json
@@ -10,7 +10,6 @@
},
"width": 171,
"height": 126,
- "level": 1,
"opacity": 1,
"strokeDash": 0,
"strokeWidth": 2,
@@ -37,7 +36,9 @@
"underline": false,
"labelWidth": 71,
"labelHeight": 26,
- "labelPosition": "INSIDE_MIDDLE_CENTER"
+ "labelPosition": "INSIDE_MIDDLE_CENTER",
+ "zIndex": 0,
+ "level": 1
},
{
"id": "square",
@@ -48,7 +49,6 @@
},
"width": 154,
"height": 154,
- "level": 1,
"opacity": 1,
"strokeDash": 0,
"strokeWidth": 2,
@@ -75,7 +75,9 @@
"underline": false,
"labelWidth": 54,
"labelHeight": 26,
- "labelPosition": "INSIDE_MIDDLE_CENTER"
+ "labelPosition": "INSIDE_MIDDLE_CENTER",
+ "zIndex": 0,
+ "level": 1
}
],
"connections": [
@@ -124,7 +126,8 @@
"isCurve": true,
"animated": false,
"tooltip": "",
- "icon": null
+ "icon": null,
+ "zIndex": 0
}
]
}
diff --git a/e2etests/testdata/stable/square_3d/elk/board.exp.json b/e2etests/testdata/stable/square_3d/elk/board.exp.json
index 00d8f6ab4..e2493608c 100644
--- a/e2etests/testdata/stable/square_3d/elk/board.exp.json
+++ b/e2etests/testdata/stable/square_3d/elk/board.exp.json
@@ -10,7 +10,6 @@
},
"width": 171,
"height": 126,
- "level": 1,
"opacity": 1,
"strokeDash": 0,
"strokeWidth": 2,
@@ -37,7 +36,9 @@
"underline": false,
"labelWidth": 71,
"labelHeight": 26,
- "labelPosition": "INSIDE_MIDDLE_CENTER"
+ "labelPosition": "INSIDE_MIDDLE_CENTER",
+ "zIndex": 0,
+ "level": 1
},
{
"id": "square",
@@ -48,7 +49,6 @@
},
"width": 154,
"height": 154,
- "level": 1,
"opacity": 1,
"strokeDash": 0,
"strokeWidth": 2,
@@ -75,7 +75,9 @@
"underline": false,
"labelWidth": 54,
"labelHeight": 26,
- "labelPosition": "INSIDE_MIDDLE_CENTER"
+ "labelPosition": "INSIDE_MIDDLE_CENTER",
+ "zIndex": 0,
+ "level": 1
}
],
"connections": [
@@ -115,7 +117,8 @@
],
"animated": false,
"tooltip": "",
- "icon": null
+ "icon": null,
+ "zIndex": 0
}
]
}
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 ca1f3c399..c7ac38f4a 100644
--- a/e2etests/testdata/stable/straight_hierarchy_container/dagre/board.exp.json
+++ b/e2etests/testdata/stable/straight_hierarchy_container/dagre/board.exp.json
@@ -10,7 +10,6 @@
},
"width": 113,
"height": 126,
- "level": 1,
"opacity": 1,
"strokeDash": 0,
"strokeWidth": 2,
@@ -37,7 +36,9 @@
"underline": false,
"labelWidth": 13,
"labelHeight": 26,
- "labelPosition": "INSIDE_MIDDLE_CENTER"
+ "labelPosition": "INSIDE_MIDDLE_CENTER",
+ "zIndex": 0,
+ "level": 1
},
{
"id": "c",
@@ -48,7 +49,6 @@
},
"width": 113,
"height": 126,
- "level": 1,
"opacity": 1,
"strokeDash": 0,
"strokeWidth": 2,
@@ -75,7 +75,9 @@
"underline": false,
"labelWidth": 13,
"labelHeight": 26,
- "labelPosition": "INSIDE_MIDDLE_CENTER"
+ "labelPosition": "INSIDE_MIDDLE_CENTER",
+ "zIndex": 0,
+ "level": 1
},
{
"id": "b",
@@ -86,7 +88,6 @@
},
"width": 113,
"height": 126,
- "level": 1,
"opacity": 1,
"strokeDash": 0,
"strokeWidth": 2,
@@ -113,7 +114,9 @@
"underline": false,
"labelWidth": 13,
"labelHeight": 26,
- "labelPosition": "INSIDE_MIDDLE_CENTER"
+ "labelPosition": "INSIDE_MIDDLE_CENTER",
+ "zIndex": 0,
+ "level": 1
},
{
"id": "l1",
@@ -124,7 +127,6 @@
},
"width": 719,
"height": 226,
- "level": 1,
"opacity": 1,
"strokeDash": 0,
"strokeWidth": 2,
@@ -151,7 +153,9 @@
"underline": false,
"labelWidth": 24,
"labelHeight": 41,
- "labelPosition": "INSIDE_TOP_CENTER"
+ "labelPosition": "INSIDE_TOP_CENTER",
+ "zIndex": 0,
+ "level": 1
},
{
"id": "l1.b",
@@ -162,7 +166,6 @@
},
"width": 113,
"height": 126,
- "level": 2,
"opacity": 1,
"strokeDash": 0,
"strokeWidth": 2,
@@ -189,7 +192,9 @@
"underline": false,
"labelWidth": 13,
"labelHeight": 26,
- "labelPosition": "INSIDE_MIDDLE_CENTER"
+ "labelPosition": "INSIDE_MIDDLE_CENTER",
+ "zIndex": 0,
+ "level": 2
},
{
"id": "l1.a",
@@ -200,7 +205,6 @@
},
"width": 113,
"height": 126,
- "level": 2,
"opacity": 1,
"strokeDash": 0,
"strokeWidth": 2,
@@ -227,7 +231,9 @@
"underline": false,
"labelWidth": 13,
"labelHeight": 26,
- "labelPosition": "INSIDE_MIDDLE_CENTER"
+ "labelPosition": "INSIDE_MIDDLE_CENTER",
+ "zIndex": 0,
+ "level": 2
},
{
"id": "l1.c",
@@ -238,7 +244,6 @@
},
"width": 113,
"height": 126,
- "level": 2,
"opacity": 1,
"strokeDash": 0,
"strokeWidth": 2,
@@ -265,7 +270,9 @@
"underline": false,
"labelWidth": 13,
"labelHeight": 26,
- "labelPosition": "INSIDE_MIDDLE_CENTER"
+ "labelPosition": "INSIDE_MIDDLE_CENTER",
+ "zIndex": 0,
+ "level": 2
},
{
"id": "l2c1",
@@ -276,7 +283,6 @@
},
"width": 213,
"height": 226,
- "level": 1,
"opacity": 1,
"strokeDash": 0,
"strokeWidth": 2,
@@ -303,7 +309,9 @@
"underline": false,
"labelWidth": 50,
"labelHeight": 41,
- "labelPosition": "INSIDE_TOP_CENTER"
+ "labelPosition": "INSIDE_TOP_CENTER",
+ "zIndex": 0,
+ "level": 1
},
{
"id": "l2c1.a",
@@ -314,7 +322,6 @@
},
"width": 113,
"height": 126,
- "level": 2,
"opacity": 1,
"strokeDash": 0,
"strokeWidth": 2,
@@ -341,7 +348,9 @@
"underline": false,
"labelWidth": 13,
"labelHeight": 26,
- "labelPosition": "INSIDE_MIDDLE_CENTER"
+ "labelPosition": "INSIDE_MIDDLE_CENTER",
+ "zIndex": 0,
+ "level": 2
},
{
"id": "l2c3",
@@ -352,7 +361,6 @@
},
"width": 213,
"height": 226,
- "level": 1,
"opacity": 1,
"strokeDash": 0,
"strokeWidth": 2,
@@ -379,7 +387,9 @@
"underline": false,
"labelWidth": 50,
"labelHeight": 41,
- "labelPosition": "INSIDE_TOP_CENTER"
+ "labelPosition": "INSIDE_TOP_CENTER",
+ "zIndex": 0,
+ "level": 1
},
{
"id": "l2c3.c",
@@ -390,7 +400,6 @@
},
"width": 113,
"height": 126,
- "level": 2,
"opacity": 1,
"strokeDash": 0,
"strokeWidth": 2,
@@ -417,7 +426,9 @@
"underline": false,
"labelWidth": 13,
"labelHeight": 26,
- "labelPosition": "INSIDE_MIDDLE_CENTER"
+ "labelPosition": "INSIDE_MIDDLE_CENTER",
+ "zIndex": 0,
+ "level": 2
},
{
"id": "l2c2",
@@ -428,7 +439,6 @@
},
"width": 213,
"height": 226,
- "level": 1,
"opacity": 1,
"strokeDash": 0,
"strokeWidth": 2,
@@ -455,7 +465,9 @@
"underline": false,
"labelWidth": 50,
"labelHeight": 41,
- "labelPosition": "INSIDE_TOP_CENTER"
+ "labelPosition": "INSIDE_TOP_CENTER",
+ "zIndex": 0,
+ "level": 1
},
{
"id": "l2c2.b",
@@ -466,7 +478,6 @@
},
"width": 113,
"height": 126,
- "level": 2,
"opacity": 1,
"strokeDash": 0,
"strokeWidth": 2,
@@ -493,7 +504,9 @@
"underline": false,
"labelWidth": 13,
"labelHeight": 26,
- "labelPosition": "INSIDE_MIDDLE_CENTER"
+ "labelPosition": "INSIDE_MIDDLE_CENTER",
+ "zIndex": 0,
+ "level": 2
},
{
"id": "l3c1",
@@ -504,7 +517,6 @@
},
"width": 466,
"height": 226,
- "level": 1,
"opacity": 1,
"strokeDash": 0,
"strokeWidth": 2,
@@ -531,7 +543,9 @@
"underline": false,
"labelWidth": 50,
"labelHeight": 41,
- "labelPosition": "INSIDE_TOP_CENTER"
+ "labelPosition": "INSIDE_TOP_CENTER",
+ "zIndex": 0,
+ "level": 1
},
{
"id": "l3c1.a",
@@ -542,7 +556,6 @@
},
"width": 113,
"height": 126,
- "level": 2,
"opacity": 1,
"strokeDash": 0,
"strokeWidth": 2,
@@ -569,7 +582,9 @@
"underline": false,
"labelWidth": 13,
"labelHeight": 26,
- "labelPosition": "INSIDE_MIDDLE_CENTER"
+ "labelPosition": "INSIDE_MIDDLE_CENTER",
+ "zIndex": 0,
+ "level": 2
},
{
"id": "l3c1.b",
@@ -580,7 +595,6 @@
},
"width": 113,
"height": 126,
- "level": 2,
"opacity": 1,
"strokeDash": 0,
"strokeWidth": 2,
@@ -607,7 +621,9 @@
"underline": false,
"labelWidth": 13,
"labelHeight": 26,
- "labelPosition": "INSIDE_MIDDLE_CENTER"
+ "labelPosition": "INSIDE_MIDDLE_CENTER",
+ "zIndex": 0,
+ "level": 2
},
{
"id": "l3c2",
@@ -618,7 +634,6 @@
},
"width": 213,
"height": 226,
- "level": 1,
"opacity": 1,
"strokeDash": 0,
"strokeWidth": 2,
@@ -645,7 +660,9 @@
"underline": false,
"labelWidth": 50,
"labelHeight": 41,
- "labelPosition": "INSIDE_TOP_CENTER"
+ "labelPosition": "INSIDE_TOP_CENTER",
+ "zIndex": 0,
+ "level": 1
},
{
"id": "l3c2.c",
@@ -656,7 +673,6 @@
},
"width": 113,
"height": 126,
- "level": 2,
"opacity": 1,
"strokeDash": 0,
"strokeWidth": 2,
@@ -683,7 +699,9 @@
"underline": false,
"labelWidth": 13,
"labelHeight": 26,
- "labelPosition": "INSIDE_MIDDLE_CENTER"
+ "labelPosition": "INSIDE_MIDDLE_CENTER",
+ "zIndex": 0,
+ "level": 2
},
{
"id": "l4",
@@ -694,7 +712,6 @@
},
"width": 799,
"height": 326,
- "level": 1,
"opacity": 1,
"strokeDash": 0,
"strokeWidth": 2,
@@ -721,7 +738,9 @@
"underline": false,
"labelWidth": 25,
"labelHeight": 41,
- "labelPosition": "INSIDE_TOP_CENTER"
+ "labelPosition": "INSIDE_TOP_CENTER",
+ "zIndex": 0,
+ "level": 1
},
{
"id": "l4.c1",
@@ -732,7 +751,6 @@
},
"width": 213,
"height": 226,
- "level": 2,
"opacity": 1,
"strokeDash": 0,
"strokeWidth": 2,
@@ -759,7 +777,9 @@
"underline": false,
"labelWidth": 26,
"labelHeight": 36,
- "labelPosition": "INSIDE_TOP_CENTER"
+ "labelPosition": "INSIDE_TOP_CENTER",
+ "zIndex": 0,
+ "level": 2
},
{
"id": "l4.c1.a",
@@ -770,7 +790,6 @@
},
"width": 113,
"height": 126,
- "level": 3,
"opacity": 1,
"strokeDash": 0,
"strokeWidth": 2,
@@ -797,7 +816,9 @@
"underline": false,
"labelWidth": 13,
"labelHeight": 26,
- "labelPosition": "INSIDE_MIDDLE_CENTER"
+ "labelPosition": "INSIDE_MIDDLE_CENTER",
+ "zIndex": 0,
+ "level": 3
},
{
"id": "l4.c2",
@@ -808,7 +829,6 @@
},
"width": 213,
"height": 226,
- "level": 2,
"opacity": 1,
"strokeDash": 0,
"strokeWidth": 2,
@@ -835,7 +855,9 @@
"underline": false,
"labelWidth": 26,
"labelHeight": 36,
- "labelPosition": "INSIDE_TOP_CENTER"
+ "labelPosition": "INSIDE_TOP_CENTER",
+ "zIndex": 0,
+ "level": 2
},
{
"id": "l4.c2.b",
@@ -846,7 +868,6 @@
},
"width": 113,
"height": 126,
- "level": 3,
"opacity": 1,
"strokeDash": 0,
"strokeWidth": 2,
@@ -873,7 +894,9 @@
"underline": false,
"labelWidth": 13,
"labelHeight": 26,
- "labelPosition": "INSIDE_MIDDLE_CENTER"
+ "labelPosition": "INSIDE_MIDDLE_CENTER",
+ "zIndex": 0,
+ "level": 3
},
{
"id": "l4.c3",
@@ -884,7 +907,6 @@
},
"width": 213,
"height": 226,
- "level": 2,
"opacity": 1,
"strokeDash": 0,
"strokeWidth": 2,
@@ -911,7 +933,9 @@
"underline": false,
"labelWidth": 26,
"labelHeight": 36,
- "labelPosition": "INSIDE_TOP_CENTER"
+ "labelPosition": "INSIDE_TOP_CENTER",
+ "zIndex": 0,
+ "level": 2
},
{
"id": "l4.c3.c",
@@ -922,7 +946,6 @@
},
"width": 113,
"height": 126,
- "level": 3,
"opacity": 1,
"strokeDash": 0,
"strokeWidth": 2,
@@ -949,7 +972,9 @@
"underline": false,
"labelWidth": 13,
"labelHeight": 26,
- "labelPosition": "INSIDE_MIDDLE_CENTER"
+ "labelPosition": "INSIDE_MIDDLE_CENTER",
+ "zIndex": 0,
+ "level": 3
}
],
"connections": [
@@ -998,7 +1023,8 @@
"isCurve": true,
"animated": false,
"tooltip": "",
- "icon": null
+ "icon": null,
+ "zIndex": 0
},
{
"id": "(a -> l1.a)[0]",
@@ -1045,7 +1071,8 @@
"isCurve": true,
"animated": false,
"tooltip": "",
- "icon": null
+ "icon": null,
+ "zIndex": 0
},
{
"id": "(c -> l1.c)[0]",
@@ -1092,7 +1119,8 @@
"isCurve": true,
"animated": false,
"tooltip": "",
- "icon": null
+ "icon": null,
+ "zIndex": 0
},
{
"id": "(l1.a -> l2c1.a)[0]",
@@ -1151,7 +1179,8 @@
"isCurve": true,
"animated": false,
"tooltip": "",
- "icon": null
+ "icon": null,
+ "zIndex": 0
},
{
"id": "(l1.c -> l2c3.c)[0]",
@@ -1210,7 +1239,8 @@
"isCurve": true,
"animated": false,
"tooltip": "",
- "icon": null
+ "icon": null,
+ "zIndex": 0
},
{
"id": "(l1.b -> l2c2.b)[0]",
@@ -1269,7 +1299,8 @@
"isCurve": true,
"animated": false,
"tooltip": "",
- "icon": null
+ "icon": null,
+ "zIndex": 0
},
{
"id": "(l2c1.a -> l3c1.a)[0]",
@@ -1328,7 +1359,8 @@
"isCurve": true,
"animated": false,
"tooltip": "",
- "icon": null
+ "icon": null,
+ "zIndex": 0
},
{
"id": "(l2c2.b -> l3c1.b)[0]",
@@ -1387,7 +1419,8 @@
"isCurve": true,
"animated": false,
"tooltip": "",
- "icon": null
+ "icon": null,
+ "zIndex": 0
},
{
"id": "(l2c3.c -> l3c2.c)[0]",
@@ -1446,7 +1479,8 @@
"isCurve": true,
"animated": false,
"tooltip": "",
- "icon": null
+ "icon": null,
+ "zIndex": 0
},
{
"id": "(l3c1.a -> l4.c1.a)[0]",
@@ -1517,7 +1551,8 @@
"isCurve": true,
"animated": false,
"tooltip": "",
- "icon": null
+ "icon": null,
+ "zIndex": 0
},
{
"id": "(l3c1.b -> l4.c2.b)[0]",
@@ -1588,7 +1623,8 @@
"isCurve": true,
"animated": false,
"tooltip": "",
- "icon": null
+ "icon": null,
+ "zIndex": 0
},
{
"id": "(l3c2.c -> l4.c3.c)[0]",
@@ -1659,7 +1695,8 @@
"isCurve": true,
"animated": false,
"tooltip": "",
- "icon": null
+ "icon": null,
+ "zIndex": 0
}
]
}
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 57da4889a..4cc4db44b 100644
--- a/e2etests/testdata/stable/straight_hierarchy_container/elk/board.exp.json
+++ b/e2etests/testdata/stable/straight_hierarchy_container/elk/board.exp.json
@@ -10,7 +10,6 @@
},
"width": 113,
"height": 126,
- "level": 1,
"opacity": 1,
"strokeDash": 0,
"strokeWidth": 2,
@@ -37,7 +36,9 @@
"underline": false,
"labelWidth": 13,
"labelHeight": 26,
- "labelPosition": "INSIDE_MIDDLE_CENTER"
+ "labelPosition": "INSIDE_MIDDLE_CENTER",
+ "zIndex": 0,
+ "level": 1
},
{
"id": "c",
@@ -48,7 +49,6 @@
},
"width": 113,
"height": 126,
- "level": 1,
"opacity": 1,
"strokeDash": 0,
"strokeWidth": 2,
@@ -75,7 +75,9 @@
"underline": false,
"labelWidth": 13,
"labelHeight": 26,
- "labelPosition": "INSIDE_MIDDLE_CENTER"
+ "labelPosition": "INSIDE_MIDDLE_CENTER",
+ "zIndex": 0,
+ "level": 1
},
{
"id": "b",
@@ -86,7 +88,6 @@
},
"width": 113,
"height": 126,
- "level": 1,
"opacity": 1,
"strokeDash": 0,
"strokeWidth": 2,
@@ -113,7 +114,9 @@
"underline": false,
"labelWidth": 13,
"labelHeight": 26,
- "labelPosition": "INSIDE_MIDDLE_CENTER"
+ "labelPosition": "INSIDE_MIDDLE_CENTER",
+ "zIndex": 0,
+ "level": 1
},
{
"id": "l1",
@@ -124,7 +127,6 @@
},
"width": 529,
"height": 276,
- "level": 1,
"opacity": 1,
"strokeDash": 0,
"strokeWidth": 2,
@@ -151,7 +153,9 @@
"underline": false,
"labelWidth": 24,
"labelHeight": 41,
- "labelPosition": "INSIDE_TOP_CENTER"
+ "labelPosition": "INSIDE_TOP_CENTER",
+ "zIndex": 0,
+ "level": 1
},
{
"id": "l1.b",
@@ -162,7 +166,6 @@
},
"width": 113,
"height": 126,
- "level": 2,
"opacity": 1,
"strokeDash": 0,
"strokeWidth": 2,
@@ -189,7 +192,9 @@
"underline": false,
"labelWidth": 13,
"labelHeight": 26,
- "labelPosition": "INSIDE_MIDDLE_CENTER"
+ "labelPosition": "INSIDE_MIDDLE_CENTER",
+ "zIndex": 0,
+ "level": 2
},
{
"id": "l1.a",
@@ -200,7 +205,6 @@
},
"width": 113,
"height": 126,
- "level": 2,
"opacity": 1,
"strokeDash": 0,
"strokeWidth": 2,
@@ -227,7 +231,9 @@
"underline": false,
"labelWidth": 13,
"labelHeight": 26,
- "labelPosition": "INSIDE_MIDDLE_CENTER"
+ "labelPosition": "INSIDE_MIDDLE_CENTER",
+ "zIndex": 0,
+ "level": 2
},
{
"id": "l1.c",
@@ -238,7 +244,6 @@
},
"width": 113,
"height": 126,
- "level": 2,
"opacity": 1,
"strokeDash": 0,
"strokeWidth": 2,
@@ -265,7 +270,9 @@
"underline": false,
"labelWidth": 13,
"labelHeight": 26,
- "labelPosition": "INSIDE_MIDDLE_CENTER"
+ "labelPosition": "INSIDE_MIDDLE_CENTER",
+ "zIndex": 0,
+ "level": 2
},
{
"id": "l2c1",
@@ -276,7 +283,6 @@
},
"width": 263,
"height": 276,
- "level": 1,
"opacity": 1,
"strokeDash": 0,
"strokeWidth": 2,
@@ -303,7 +309,9 @@
"underline": false,
"labelWidth": 50,
"labelHeight": 41,
- "labelPosition": "INSIDE_TOP_CENTER"
+ "labelPosition": "INSIDE_TOP_CENTER",
+ "zIndex": 0,
+ "level": 1
},
{
"id": "l2c1.a",
@@ -314,7 +322,6 @@
},
"width": 113,
"height": 126,
- "level": 2,
"opacity": 1,
"strokeDash": 0,
"strokeWidth": 2,
@@ -341,7 +348,9 @@
"underline": false,
"labelWidth": 13,
"labelHeight": 26,
- "labelPosition": "INSIDE_MIDDLE_CENTER"
+ "labelPosition": "INSIDE_MIDDLE_CENTER",
+ "zIndex": 0,
+ "level": 2
},
{
"id": "l2c3",
@@ -352,7 +361,6 @@
},
"width": 263,
"height": 276,
- "level": 1,
"opacity": 1,
"strokeDash": 0,
"strokeWidth": 2,
@@ -379,7 +387,9 @@
"underline": false,
"labelWidth": 50,
"labelHeight": 41,
- "labelPosition": "INSIDE_TOP_CENTER"
+ "labelPosition": "INSIDE_TOP_CENTER",
+ "zIndex": 0,
+ "level": 1
},
{
"id": "l2c3.c",
@@ -390,7 +400,6 @@
},
"width": 113,
"height": 126,
- "level": 2,
"opacity": 1,
"strokeDash": 0,
"strokeWidth": 2,
@@ -417,7 +426,9 @@
"underline": false,
"labelWidth": 13,
"labelHeight": 26,
- "labelPosition": "INSIDE_MIDDLE_CENTER"
+ "labelPosition": "INSIDE_MIDDLE_CENTER",
+ "zIndex": 0,
+ "level": 2
},
{
"id": "l2c2",
@@ -428,7 +439,6 @@
},
"width": 263,
"height": 276,
- "level": 1,
"opacity": 1,
"strokeDash": 0,
"strokeWidth": 2,
@@ -455,7 +465,9 @@
"underline": false,
"labelWidth": 50,
"labelHeight": 41,
- "labelPosition": "INSIDE_TOP_CENTER"
+ "labelPosition": "INSIDE_TOP_CENTER",
+ "zIndex": 0,
+ "level": 1
},
{
"id": "l2c2.b",
@@ -466,7 +478,6 @@
},
"width": 113,
"height": 126,
- "level": 2,
"opacity": 1,
"strokeDash": 0,
"strokeWidth": 2,
@@ -493,7 +504,9 @@
"underline": false,
"labelWidth": 13,
"labelHeight": 26,
- "labelPosition": "INSIDE_MIDDLE_CENTER"
+ "labelPosition": "INSIDE_MIDDLE_CENTER",
+ "zIndex": 0,
+ "level": 2
},
{
"id": "l3c1",
@@ -504,7 +517,6 @@
},
"width": 396,
"height": 276,
- "level": 1,
"opacity": 1,
"strokeDash": 0,
"strokeWidth": 2,
@@ -531,7 +543,9 @@
"underline": false,
"labelWidth": 50,
"labelHeight": 41,
- "labelPosition": "INSIDE_TOP_CENTER"
+ "labelPosition": "INSIDE_TOP_CENTER",
+ "zIndex": 0,
+ "level": 1
},
{
"id": "l3c1.a",
@@ -542,7 +556,6 @@
},
"width": 113,
"height": 126,
- "level": 2,
"opacity": 1,
"strokeDash": 0,
"strokeWidth": 2,
@@ -569,7 +582,9 @@
"underline": false,
"labelWidth": 13,
"labelHeight": 26,
- "labelPosition": "INSIDE_MIDDLE_CENTER"
+ "labelPosition": "INSIDE_MIDDLE_CENTER",
+ "zIndex": 0,
+ "level": 2
},
{
"id": "l3c1.b",
@@ -580,7 +595,6 @@
},
"width": 113,
"height": 126,
- "level": 2,
"opacity": 1,
"strokeDash": 0,
"strokeWidth": 2,
@@ -607,7 +621,9 @@
"underline": false,
"labelWidth": 13,
"labelHeight": 26,
- "labelPosition": "INSIDE_MIDDLE_CENTER"
+ "labelPosition": "INSIDE_MIDDLE_CENTER",
+ "zIndex": 0,
+ "level": 2
},
{
"id": "l3c2",
@@ -618,7 +634,6 @@
},
"width": 263,
"height": 276,
- "level": 1,
"opacity": 1,
"strokeDash": 0,
"strokeWidth": 2,
@@ -645,7 +660,9 @@
"underline": false,
"labelWidth": 50,
"labelHeight": 41,
- "labelPosition": "INSIDE_TOP_CENTER"
+ "labelPosition": "INSIDE_TOP_CENTER",
+ "zIndex": 0,
+ "level": 1
},
{
"id": "l3c2.c",
@@ -656,7 +673,6 @@
},
"width": 113,
"height": 126,
- "level": 2,
"opacity": 1,
"strokeDash": 0,
"strokeWidth": 2,
@@ -683,7 +699,9 @@
"underline": false,
"labelWidth": 13,
"labelHeight": 26,
- "labelPosition": "INSIDE_MIDDLE_CENTER"
+ "labelPosition": "INSIDE_MIDDLE_CENTER",
+ "zIndex": 0,
+ "level": 2
},
{
"id": "l4",
@@ -694,7 +712,6 @@
},
"width": 979,
"height": 431,
- "level": 1,
"opacity": 1,
"strokeDash": 0,
"strokeWidth": 2,
@@ -721,7 +738,9 @@
"underline": false,
"labelWidth": 25,
"labelHeight": 41,
- "labelPosition": "INSIDE_TOP_CENTER"
+ "labelPosition": "INSIDE_TOP_CENTER",
+ "zIndex": 0,
+ "level": 1
},
{
"id": "l4.c1",
@@ -732,7 +751,6 @@
},
"width": 263,
"height": 276,
- "level": 2,
"opacity": 1,
"strokeDash": 0,
"strokeWidth": 2,
@@ -759,7 +777,9 @@
"underline": false,
"labelWidth": 26,
"labelHeight": 36,
- "labelPosition": "INSIDE_TOP_CENTER"
+ "labelPosition": "INSIDE_TOP_CENTER",
+ "zIndex": 0,
+ "level": 2
},
{
"id": "l4.c1.a",
@@ -770,7 +790,6 @@
},
"width": 113,
"height": 126,
- "level": 3,
"opacity": 1,
"strokeDash": 0,
"strokeWidth": 2,
@@ -797,7 +816,9 @@
"underline": false,
"labelWidth": 13,
"labelHeight": 26,
- "labelPosition": "INSIDE_MIDDLE_CENTER"
+ "labelPosition": "INSIDE_MIDDLE_CENTER",
+ "zIndex": 0,
+ "level": 3
},
{
"id": "l4.c2",
@@ -808,7 +829,6 @@
},
"width": 263,
"height": 276,
- "level": 2,
"opacity": 1,
"strokeDash": 0,
"strokeWidth": 2,
@@ -835,7 +855,9 @@
"underline": false,
"labelWidth": 26,
"labelHeight": 36,
- "labelPosition": "INSIDE_TOP_CENTER"
+ "labelPosition": "INSIDE_TOP_CENTER",
+ "zIndex": 0,
+ "level": 2
},
{
"id": "l4.c2.b",
@@ -846,7 +868,6 @@
},
"width": 113,
"height": 126,
- "level": 3,
"opacity": 1,
"strokeDash": 0,
"strokeWidth": 2,
@@ -873,7 +894,9 @@
"underline": false,
"labelWidth": 13,
"labelHeight": 26,
- "labelPosition": "INSIDE_MIDDLE_CENTER"
+ "labelPosition": "INSIDE_MIDDLE_CENTER",
+ "zIndex": 0,
+ "level": 3
},
{
"id": "l4.c3",
@@ -884,7 +907,6 @@
},
"width": 263,
"height": 276,
- "level": 2,
"opacity": 1,
"strokeDash": 0,
"strokeWidth": 2,
@@ -911,7 +933,9 @@
"underline": false,
"labelWidth": 26,
"labelHeight": 36,
- "labelPosition": "INSIDE_TOP_CENTER"
+ "labelPosition": "INSIDE_TOP_CENTER",
+ "zIndex": 0,
+ "level": 2
},
{
"id": "l4.c3.c",
@@ -922,7 +946,6 @@
},
"width": 113,
"height": 126,
- "level": 3,
"opacity": 1,
"strokeDash": 0,
"strokeWidth": 2,
@@ -949,7 +972,9 @@
"underline": false,
"labelWidth": 13,
"labelHeight": 26,
- "labelPosition": "INSIDE_MIDDLE_CENTER"
+ "labelPosition": "INSIDE_MIDDLE_CENTER",
+ "zIndex": 0,
+ "level": 3
}
],
"connections": [
@@ -989,7 +1014,8 @@
],
"animated": false,
"tooltip": "",
- "icon": null
+ "icon": null,
+ "zIndex": 0
},
{
"id": "(a -> l1.a)[0]",
@@ -1027,7 +1053,8 @@
],
"animated": false,
"tooltip": "",
- "icon": null
+ "icon": null,
+ "zIndex": 0
},
{
"id": "(c -> l1.c)[0]",
@@ -1065,7 +1092,8 @@
],
"animated": false,
"tooltip": "",
- "icon": null
+ "icon": null,
+ "zIndex": 0
},
{
"id": "(l1.a -> l2c1.a)[0]",
@@ -1111,7 +1139,8 @@
],
"animated": false,
"tooltip": "",
- "icon": null
+ "icon": null,
+ "zIndex": 0
},
{
"id": "(l1.c -> l2c3.c)[0]",
@@ -1149,7 +1178,8 @@
],
"animated": false,
"tooltip": "",
- "icon": null
+ "icon": null,
+ "zIndex": 0
},
{
"id": "(l1.b -> l2c2.b)[0]",
@@ -1195,7 +1225,8 @@
],
"animated": false,
"tooltip": "",
- "icon": null
+ "icon": null,
+ "zIndex": 0
},
{
"id": "(l2c1.a -> l3c1.a)[0]",
@@ -1233,7 +1264,8 @@
],
"animated": false,
"tooltip": "",
- "icon": null
+ "icon": null,
+ "zIndex": 0
},
{
"id": "(l2c2.b -> l3c1.b)[0]",
@@ -1279,7 +1311,8 @@
],
"animated": false,
"tooltip": "",
- "icon": null
+ "icon": null,
+ "zIndex": 0
},
{
"id": "(l2c3.c -> l3c2.c)[0]",
@@ -1317,7 +1350,8 @@
],
"animated": false,
"tooltip": "",
- "icon": null
+ "icon": null,
+ "zIndex": 0
},
{
"id": "(l3c1.a -> l4.c1.a)[0]",
@@ -1355,7 +1389,8 @@
],
"animated": false,
"tooltip": "",
- "icon": null
+ "icon": null,
+ "zIndex": 0
},
{
"id": "(l3c1.b -> l4.c2.b)[0]",
@@ -1401,7 +1436,8 @@
],
"animated": false,
"tooltip": "",
- "icon": null
+ "icon": null,
+ "zIndex": 0
},
{
"id": "(l3c2.c -> l4.c3.c)[0]",
@@ -1439,7 +1475,8 @@
],
"animated": false,
"tooltip": "",
- "icon": null
+ "icon": null,
+ "zIndex": 0
}
]
}
diff --git a/e2etests/testdata/stable/stylish/dagre/board.exp.json b/e2etests/testdata/stable/stylish/dagre/board.exp.json
index 2fe57244a..eac9bf75f 100644
--- a/e2etests/testdata/stable/stylish/dagre/board.exp.json
+++ b/e2etests/testdata/stable/stylish/dagre/board.exp.json
@@ -10,7 +10,6 @@
},
"width": 113,
"height": 126,
- "level": 1,
"opacity": 0.6,
"strokeDash": 0,
"strokeWidth": 5,
@@ -37,7 +36,9 @@
"underline": false,
"labelWidth": 13,
"labelHeight": 26,
- "labelPosition": "INSIDE_MIDDLE_CENTER"
+ "labelPosition": "INSIDE_MIDDLE_CENTER",
+ "zIndex": 0,
+ "level": 1
},
{
"id": "y",
@@ -48,7 +49,6 @@
},
"width": 114,
"height": 126,
- "level": 1,
"opacity": 0.6,
"strokeDash": 5,
"strokeWidth": 2,
@@ -75,7 +75,9 @@
"underline": false,
"labelWidth": 14,
"labelHeight": 26,
- "labelPosition": "INSIDE_MIDDLE_CENTER"
+ "labelPosition": "INSIDE_MIDDLE_CENTER",
+ "zIndex": 0,
+ "level": 1
}
],
"connections": [
@@ -124,7 +126,8 @@
"isCurve": true,
"animated": false,
"tooltip": "",
- "icon": null
+ "icon": null,
+ "zIndex": 0
}
]
}
diff --git a/e2etests/testdata/stable/stylish/elk/board.exp.json b/e2etests/testdata/stable/stylish/elk/board.exp.json
index bdcd5b00c..7df611198 100644
--- a/e2etests/testdata/stable/stylish/elk/board.exp.json
+++ b/e2etests/testdata/stable/stylish/elk/board.exp.json
@@ -10,7 +10,6 @@
},
"width": 113,
"height": 126,
- "level": 1,
"opacity": 0.6,
"strokeDash": 0,
"strokeWidth": 5,
@@ -37,7 +36,9 @@
"underline": false,
"labelWidth": 13,
"labelHeight": 26,
- "labelPosition": "INSIDE_MIDDLE_CENTER"
+ "labelPosition": "INSIDE_MIDDLE_CENTER",
+ "zIndex": 0,
+ "level": 1
},
{
"id": "y",
@@ -48,7 +49,6 @@
},
"width": 114,
"height": 126,
- "level": 1,
"opacity": 0.6,
"strokeDash": 5,
"strokeWidth": 2,
@@ -75,7 +75,9 @@
"underline": false,
"labelWidth": 14,
"labelHeight": 26,
- "labelPosition": "INSIDE_MIDDLE_CENTER"
+ "labelPosition": "INSIDE_MIDDLE_CENTER",
+ "zIndex": 0,
+ "level": 1
}
],
"connections": [
@@ -115,7 +117,8 @@
],
"animated": false,
"tooltip": "",
- "icon": null
+ "icon": null,
+ "zIndex": 0
}
]
}
diff --git a/e2etests/testdata/stable/transparent_3d/dagre/board.exp.json b/e2etests/testdata/stable/transparent_3d/dagre/board.exp.json
index ce7e26c0c..f2de4f323 100644
--- a/e2etests/testdata/stable/transparent_3d/dagre/board.exp.json
+++ b/e2etests/testdata/stable/transparent_3d/dagre/board.exp.json
@@ -10,7 +10,6 @@
},
"width": 139,
"height": 126,
- "level": 1,
"opacity": 0.5,
"strokeDash": 0,
"strokeWidth": 7,
@@ -37,7 +36,9 @@
"underline": false,
"labelWidth": 39,
"labelHeight": 26,
- "labelPosition": "INSIDE_MIDDLE_CENTER"
+ "labelPosition": "INSIDE_MIDDLE_CENTER",
+ "zIndex": 0,
+ "level": 1
}
],
"connections": []
diff --git a/e2etests/testdata/stable/transparent_3d/elk/board.exp.json b/e2etests/testdata/stable/transparent_3d/elk/board.exp.json
index af5b43a50..41cb8cf6f 100644
--- a/e2etests/testdata/stable/transparent_3d/elk/board.exp.json
+++ b/e2etests/testdata/stable/transparent_3d/elk/board.exp.json
@@ -10,7 +10,6 @@
},
"width": 139,
"height": 126,
- "level": 1,
"opacity": 0.5,
"strokeDash": 0,
"strokeWidth": 7,
@@ -37,7 +36,9 @@
"underline": false,
"labelWidth": 39,
"labelHeight": 26,
- "labelPosition": "INSIDE_MIDDLE_CENTER"
+ "labelPosition": "INSIDE_MIDDLE_CENTER",
+ "zIndex": 0,
+ "level": 1
}
],
"connections": []
diff --git a/e2etests/testdata/stable/us_map/dagre/board.exp.json b/e2etests/testdata/stable/us_map/dagre/board.exp.json
index c8701a10e..b5ba0c1f4 100644
--- a/e2etests/testdata/stable/us_map/dagre/board.exp.json
+++ b/e2etests/testdata/stable/us_map/dagre/board.exp.json
@@ -10,7 +10,6 @@
},
"width": 126,
"height": 126,
- "level": 1,
"opacity": 1,
"strokeDash": 0,
"strokeWidth": 2,
@@ -37,7 +36,9 @@
"underline": false,
"labelWidth": 26,
"labelHeight": 26,
- "labelPosition": "INSIDE_MIDDLE_CENTER"
+ "labelPosition": "INSIDE_MIDDLE_CENTER",
+ "zIndex": 0,
+ "level": 1
},
{
"id": "HI",
@@ -48,7 +49,6 @@
},
"width": 119,
"height": 126,
- "level": 1,
"opacity": 1,
"strokeDash": 0,
"strokeWidth": 2,
@@ -75,7 +75,9 @@
"underline": false,
"labelWidth": 19,
"labelHeight": 26,
- "labelPosition": "INSIDE_MIDDLE_CENTER"
+ "labelPosition": "INSIDE_MIDDLE_CENTER",
+ "zIndex": 0,
+ "level": 1
},
{
"id": "AL",
@@ -86,7 +88,6 @@
},
"width": 124,
"height": 126,
- "level": 1,
"opacity": 1,
"strokeDash": 0,
"strokeWidth": 2,
@@ -113,7 +114,9 @@
"underline": false,
"labelWidth": 24,
"labelHeight": 26,
- "labelPosition": "INSIDE_MIDDLE_CENTER"
+ "labelPosition": "INSIDE_MIDDLE_CENTER",
+ "zIndex": 0,
+ "level": 1
},
{
"id": "FL",
@@ -124,7 +127,6 @@
},
"width": 121,
"height": 126,
- "level": 1,
"opacity": 1,
"strokeDash": 0,
"strokeWidth": 2,
@@ -151,7 +153,9 @@
"underline": false,
"labelWidth": 21,
"labelHeight": 26,
- "labelPosition": "INSIDE_MIDDLE_CENTER"
+ "labelPosition": "INSIDE_MIDDLE_CENTER",
+ "zIndex": 0,
+ "level": 1
},
{
"id": "GA",
@@ -162,7 +166,6 @@
},
"width": 126,
"height": 126,
- "level": 1,
"opacity": 1,
"strokeDash": 0,
"strokeWidth": 2,
@@ -189,7 +192,9 @@
"underline": false,
"labelWidth": 26,
"labelHeight": 26,
- "labelPosition": "INSIDE_MIDDLE_CENTER"
+ "labelPosition": "INSIDE_MIDDLE_CENTER",
+ "zIndex": 0,
+ "level": 1
},
{
"id": "MS",
@@ -200,7 +205,6 @@
},
"width": 126,
"height": 126,
- "level": 1,
"opacity": 1,
"strokeDash": 0,
"strokeWidth": 2,
@@ -227,7 +231,9 @@
"underline": false,
"labelWidth": 26,
"labelHeight": 26,
- "labelPosition": "INSIDE_MIDDLE_CENTER"
+ "labelPosition": "INSIDE_MIDDLE_CENTER",
+ "zIndex": 0,
+ "level": 1
},
{
"id": "TN",
@@ -238,7 +244,6 @@
},
"width": 124,
"height": 126,
- "level": 1,
"opacity": 1,
"strokeDash": 0,
"strokeWidth": 2,
@@ -265,7 +270,9 @@
"underline": false,
"labelWidth": 24,
"labelHeight": 26,
- "labelPosition": "INSIDE_MIDDLE_CENTER"
+ "labelPosition": "INSIDE_MIDDLE_CENTER",
+ "zIndex": 0,
+ "level": 1
},
{
"id": "AZ",
@@ -276,7 +283,6 @@
},
"width": 125,
"height": 126,
- "level": 1,
"opacity": 1,
"strokeDash": 0,
"strokeWidth": 2,
@@ -303,7 +309,9 @@
"underline": false,
"labelWidth": 25,
"labelHeight": 26,
- "labelPosition": "INSIDE_MIDDLE_CENTER"
+ "labelPosition": "INSIDE_MIDDLE_CENTER",
+ "zIndex": 0,
+ "level": 1
},
{
"id": "CA",
@@ -314,7 +322,6 @@
},
"width": 125,
"height": 126,
- "level": 1,
"opacity": 1,
"strokeDash": 0,
"strokeWidth": 2,
@@ -341,7 +348,9 @@
"underline": false,
"labelWidth": 25,
"labelHeight": 26,
- "labelPosition": "INSIDE_MIDDLE_CENTER"
+ "labelPosition": "INSIDE_MIDDLE_CENTER",
+ "zIndex": 0,
+ "level": 1
},
{
"id": "NV",
@@ -352,7 +361,6 @@
},
"width": 125,
"height": 126,
- "level": 1,
"opacity": 1,
"strokeDash": 0,
"strokeWidth": 2,
@@ -379,7 +387,9 @@
"underline": false,
"labelWidth": 25,
"labelHeight": 26,
- "labelPosition": "INSIDE_MIDDLE_CENTER"
+ "labelPosition": "INSIDE_MIDDLE_CENTER",
+ "zIndex": 0,
+ "level": 1
},
{
"id": "NM",
@@ -390,7 +400,6 @@
},
"width": 126,
"height": 126,
- "level": 1,
"opacity": 1,
"strokeDash": 0,
"strokeWidth": 2,
@@ -417,7 +426,9 @@
"underline": false,
"labelWidth": 26,
"labelHeight": 26,
- "labelPosition": "INSIDE_MIDDLE_CENTER"
+ "labelPosition": "INSIDE_MIDDLE_CENTER",
+ "zIndex": 0,
+ "level": 1
},
{
"id": "UT",
@@ -428,7 +439,6 @@
},
"width": 124,
"height": 126,
- "level": 1,
"opacity": 1,
"strokeDash": 0,
"strokeWidth": 2,
@@ -455,7 +465,9 @@
"underline": false,
"labelWidth": 24,
"labelHeight": 26,
- "labelPosition": "INSIDE_MIDDLE_CENTER"
+ "labelPosition": "INSIDE_MIDDLE_CENTER",
+ "zIndex": 0,
+ "level": 1
},
{
"id": "AR",
@@ -466,7 +478,6 @@
},
"width": 126,
"height": 126,
- "level": 1,
"opacity": 1,
"strokeDash": 0,
"strokeWidth": 2,
@@ -493,7 +504,9 @@
"underline": false,
"labelWidth": 26,
"labelHeight": 26,
- "labelPosition": "INSIDE_MIDDLE_CENTER"
+ "labelPosition": "INSIDE_MIDDLE_CENTER",
+ "zIndex": 0,
+ "level": 1
},
{
"id": "LA",
@@ -504,7 +517,6 @@
},
"width": 123,
"height": 126,
- "level": 1,
"opacity": 1,
"strokeDash": 0,
"strokeWidth": 2,
@@ -531,7 +543,9 @@
"underline": false,
"labelWidth": 23,
"labelHeight": 26,
- "labelPosition": "INSIDE_MIDDLE_CENTER"
+ "labelPosition": "INSIDE_MIDDLE_CENTER",
+ "zIndex": 0,
+ "level": 1
},
{
"id": "MO",
@@ -542,7 +556,6 @@
},
"width": 128,
"height": 126,
- "level": 1,
"opacity": 1,
"strokeDash": 0,
"strokeWidth": 2,
@@ -569,7 +582,9 @@
"underline": false,
"labelWidth": 28,
"labelHeight": 26,
- "labelPosition": "INSIDE_MIDDLE_CENTER"
+ "labelPosition": "INSIDE_MIDDLE_CENTER",
+ "zIndex": 0,
+ "level": 1
},
{
"id": "OK",
@@ -580,7 +595,6 @@
},
"width": 126,
"height": 126,
- "level": 1,
"opacity": 1,
"strokeDash": 0,
"strokeWidth": 2,
@@ -607,7 +621,9 @@
"underline": false,
"labelWidth": 26,
"labelHeight": 26,
- "labelPosition": "INSIDE_MIDDLE_CENTER"
+ "labelPosition": "INSIDE_MIDDLE_CENTER",
+ "zIndex": 0,
+ "level": 1
},
{
"id": "TX",
@@ -618,7 +634,6 @@
},
"width": 123,
"height": 126,
- "level": 1,
"opacity": 1,
"strokeDash": 0,
"strokeWidth": 2,
@@ -645,7 +660,9 @@
"underline": false,
"labelWidth": 23,
"labelHeight": 26,
- "labelPosition": "INSIDE_MIDDLE_CENTER"
+ "labelPosition": "INSIDE_MIDDLE_CENTER",
+ "zIndex": 0,
+ "level": 1
},
{
"id": "OR",
@@ -656,7 +673,6 @@
},
"width": 126,
"height": 126,
- "level": 1,
"opacity": 1,
"strokeDash": 0,
"strokeWidth": 2,
@@ -683,7 +699,9 @@
"underline": false,
"labelWidth": 26,
"labelHeight": 26,
- "labelPosition": "INSIDE_MIDDLE_CENTER"
+ "labelPosition": "INSIDE_MIDDLE_CENTER",
+ "zIndex": 0,
+ "level": 1
},
{
"id": "CO",
@@ -694,7 +712,6 @@
},
"width": 126,
"height": 126,
- "level": 1,
"opacity": 1,
"strokeDash": 0,
"strokeWidth": 2,
@@ -721,7 +738,9 @@
"underline": false,
"labelWidth": 26,
"labelHeight": 26,
- "labelPosition": "INSIDE_MIDDLE_CENTER"
+ "labelPosition": "INSIDE_MIDDLE_CENTER",
+ "zIndex": 0,
+ "level": 1
},
{
"id": "KS",
@@ -732,7 +751,6 @@
},
"width": 123,
"height": 126,
- "level": 1,
"opacity": 1,
"strokeDash": 0,
"strokeWidth": 2,
@@ -759,7 +777,9 @@
"underline": false,
"labelWidth": 23,
"labelHeight": 26,
- "labelPosition": "INSIDE_MIDDLE_CENTER"
+ "labelPosition": "INSIDE_MIDDLE_CENTER",
+ "zIndex": 0,
+ "level": 1
},
{
"id": "NE",
@@ -770,7 +790,6 @@
},
"width": 123,
"height": 126,
- "level": 1,
"opacity": 1,
"strokeDash": 0,
"strokeWidth": 2,
@@ -797,7 +816,9 @@
"underline": false,
"labelWidth": 23,
"labelHeight": 26,
- "labelPosition": "INSIDE_MIDDLE_CENTER"
+ "labelPosition": "INSIDE_MIDDLE_CENTER",
+ "zIndex": 0,
+ "level": 1
},
{
"id": "WY",
@@ -808,7 +829,6 @@
},
"width": 128,
"height": 126,
- "level": 1,
"opacity": 1,
"strokeDash": 0,
"strokeWidth": 2,
@@ -835,7 +855,9 @@
"underline": false,
"labelWidth": 28,
"labelHeight": 26,
- "labelPosition": "INSIDE_MIDDLE_CENTER"
+ "labelPosition": "INSIDE_MIDDLE_CENTER",
+ "zIndex": 0,
+ "level": 1
},
{
"id": "CT",
@@ -846,7 +868,6 @@
},
"width": 124,
"height": 126,
- "level": 1,
"opacity": 1,
"strokeDash": 0,
"strokeWidth": 2,
@@ -873,7 +894,9 @@
"underline": false,
"labelWidth": 24,
"labelHeight": 26,
- "labelPosition": "INSIDE_MIDDLE_CENTER"
+ "labelPosition": "INSIDE_MIDDLE_CENTER",
+ "zIndex": 0,
+ "level": 1
},
{
"id": "MA",
@@ -884,7 +907,6 @@
},
"width": 127,
"height": 126,
- "level": 1,
"opacity": 1,
"strokeDash": 0,
"strokeWidth": 2,
@@ -911,7 +933,9 @@
"underline": false,
"labelWidth": 27,
"labelHeight": 26,
- "labelPosition": "INSIDE_MIDDLE_CENTER"
+ "labelPosition": "INSIDE_MIDDLE_CENTER",
+ "zIndex": 0,
+ "level": 1
},
{
"id": "NY",
@@ -922,7 +946,6 @@
},
"width": 124,
"height": 126,
- "level": 1,
"opacity": 1,
"strokeDash": 0,
"strokeWidth": 2,
@@ -949,7 +972,9 @@
"underline": false,
"labelWidth": 24,
"labelHeight": 26,
- "labelPosition": "INSIDE_MIDDLE_CENTER"
+ "labelPosition": "INSIDE_MIDDLE_CENTER",
+ "zIndex": 0,
+ "level": 1
},
{
"id": "RI",
@@ -960,7 +985,6 @@
},
"width": 118,
"height": 126,
- "level": 1,
"opacity": 1,
"strokeDash": 0,
"strokeWidth": 2,
@@ -987,7 +1011,9 @@
"underline": false,
"labelWidth": 18,
"labelHeight": 26,
- "labelPosition": "INSIDE_MIDDLE_CENTER"
+ "labelPosition": "INSIDE_MIDDLE_CENTER",
+ "zIndex": 0,
+ "level": 1
},
{
"id": "DE",
@@ -998,7 +1024,6 @@
},
"width": 123,
"height": 126,
- "level": 1,
"opacity": 1,
"strokeDash": 0,
"strokeWidth": 2,
@@ -1025,7 +1050,9 @@
"underline": false,
"labelWidth": 23,
"labelHeight": 26,
- "labelPosition": "INSIDE_MIDDLE_CENTER"
+ "labelPosition": "INSIDE_MIDDLE_CENTER",
+ "zIndex": 0,
+ "level": 1
},
{
"id": "MD",
@@ -1036,7 +1063,6 @@
},
"width": 127,
"height": 126,
- "level": 1,
"opacity": 1,
"strokeDash": 0,
"strokeWidth": 2,
@@ -1063,7 +1089,9 @@
"underline": false,
"labelWidth": 27,
"labelHeight": 26,
- "labelPosition": "INSIDE_MIDDLE_CENTER"
+ "labelPosition": "INSIDE_MIDDLE_CENTER",
+ "zIndex": 0,
+ "level": 1
},
{
"id": "NJ",
@@ -1074,7 +1102,6 @@
},
"width": 122,
"height": 126,
- "level": 1,
"opacity": 1,
"strokeDash": 0,
"strokeWidth": 2,
@@ -1101,7 +1128,9 @@
"underline": false,
"labelWidth": 22,
"labelHeight": 26,
- "labelPosition": "INSIDE_MIDDLE_CENTER"
+ "labelPosition": "INSIDE_MIDDLE_CENTER",
+ "zIndex": 0,
+ "level": 1
},
{
"id": "PA",
@@ -1112,7 +1141,6 @@
},
"width": 124,
"height": 126,
- "level": 1,
"opacity": 1,
"strokeDash": 0,
"strokeWidth": 2,
@@ -1139,7 +1167,9 @@
"underline": false,
"labelWidth": 24,
"labelHeight": 26,
- "labelPosition": "INSIDE_MIDDLE_CENTER"
+ "labelPosition": "INSIDE_MIDDLE_CENTER",
+ "zIndex": 0,
+ "level": 1
},
{
"id": "NC",
@@ -1150,7 +1180,6 @@
},
"width": 124,
"height": 126,
- "level": 1,
"opacity": 1,
"strokeDash": 0,
"strokeWidth": 2,
@@ -1177,7 +1206,9 @@
"underline": false,
"labelWidth": 24,
"labelHeight": 26,
- "labelPosition": "INSIDE_MIDDLE_CENTER"
+ "labelPosition": "INSIDE_MIDDLE_CENTER",
+ "zIndex": 0,
+ "level": 1
},
{
"id": "SC",
@@ -1188,7 +1219,6 @@
},
"width": 123,
"height": 126,
- "level": 1,
"opacity": 1,
"strokeDash": 0,
"strokeWidth": 2,
@@ -1215,7 +1245,9 @@
"underline": false,
"labelWidth": 23,
"labelHeight": 26,
- "labelPosition": "INSIDE_MIDDLE_CENTER"
+ "labelPosition": "INSIDE_MIDDLE_CENTER",
+ "zIndex": 0,
+ "level": 1
},
{
"id": "ID",
@@ -1226,7 +1258,6 @@
},
"width": 119,
"height": 126,
- "level": 1,
"opacity": 1,
"strokeDash": 0,
"strokeWidth": 2,
@@ -1253,7 +1284,9 @@
"underline": false,
"labelWidth": 19,
"labelHeight": 26,
- "labelPosition": "INSIDE_MIDDLE_CENTER"
+ "labelPosition": "INSIDE_MIDDLE_CENTER",
+ "zIndex": 0,
+ "level": 1
},
{
"id": "MT",
@@ -1264,7 +1297,6 @@
},
"width": 126,
"height": 126,
- "level": 1,
"opacity": 1,
"strokeDash": 0,
"strokeWidth": 2,
@@ -1291,7 +1323,9 @@
"underline": false,
"labelWidth": 26,
"labelHeight": 26,
- "labelPosition": "INSIDE_MIDDLE_CENTER"
+ "labelPosition": "INSIDE_MIDDLE_CENTER",
+ "zIndex": 0,
+ "level": 1
},
{
"id": "WA",
@@ -1302,7 +1336,6 @@
},
"width": 129,
"height": 126,
- "level": 1,
"opacity": 1,
"strokeDash": 0,
"strokeWidth": 2,
@@ -1329,7 +1362,9 @@
"underline": false,
"labelWidth": 29,
"labelHeight": 26,
- "labelPosition": "INSIDE_MIDDLE_CENTER"
+ "labelPosition": "INSIDE_MIDDLE_CENTER",
+ "zIndex": 0,
+ "level": 1
},
{
"id": "IL",
@@ -1340,7 +1375,6 @@
},
"width": 117,
"height": 126,
- "level": 1,
"opacity": 1,
"strokeDash": 0,
"strokeWidth": 2,
@@ -1367,7 +1401,9 @@
"underline": false,
"labelWidth": 17,
"labelHeight": 26,
- "labelPosition": "INSIDE_MIDDLE_CENTER"
+ "labelPosition": "INSIDE_MIDDLE_CENTER",
+ "zIndex": 0,
+ "level": 1
},
{
"id": "IN",
@@ -1378,7 +1414,6 @@
},
"width": 119,
"height": 126,
- "level": 1,
"opacity": 1,
"strokeDash": 0,
"strokeWidth": 2,
@@ -1405,7 +1440,9 @@
"underline": false,
"labelWidth": 19,
"labelHeight": 26,
- "labelPosition": "INSIDE_MIDDLE_CENTER"
+ "labelPosition": "INSIDE_MIDDLE_CENTER",
+ "zIndex": 0,
+ "level": 1
},
{
"id": "IA",
@@ -1416,7 +1453,6 @@
},
"width": 119,
"height": 126,
- "level": 1,
"opacity": 1,
"strokeDash": 0,
"strokeWidth": 2,
@@ -1443,7 +1479,9 @@
"underline": false,
"labelWidth": 19,
"labelHeight": 26,
- "labelPosition": "INSIDE_MIDDLE_CENTER"
+ "labelPosition": "INSIDE_MIDDLE_CENTER",
+ "zIndex": 0,
+ "level": 1
},
{
"id": "MI",
@@ -1454,7 +1492,6 @@
},
"width": 121,
"height": 126,
- "level": 1,
"opacity": 1,
"strokeDash": 0,
"strokeWidth": 2,
@@ -1481,7 +1518,9 @@
"underline": false,
"labelWidth": 21,
"labelHeight": 26,
- "labelPosition": "INSIDE_MIDDLE_CENTER"
+ "labelPosition": "INSIDE_MIDDLE_CENTER",
+ "zIndex": 0,
+ "level": 1
},
{
"id": "KY",
@@ -1492,7 +1531,6 @@
},
"width": 123,
"height": 126,
- "level": 1,
"opacity": 1,
"strokeDash": 0,
"strokeWidth": 2,
@@ -1519,7 +1557,9 @@
"underline": false,
"labelWidth": 23,
"labelHeight": 26,
- "labelPosition": "INSIDE_MIDDLE_CENTER"
+ "labelPosition": "INSIDE_MIDDLE_CENTER",
+ "zIndex": 0,
+ "level": 1
},
{
"id": "WI",
@@ -1530,7 +1570,6 @@
},
"width": 123,
"height": 126,
- "level": 1,
"opacity": 1,
"strokeDash": 0,
"strokeWidth": 2,
@@ -1557,7 +1596,9 @@
"underline": false,
"labelWidth": 23,
"labelHeight": 26,
- "labelPosition": "INSIDE_MIDDLE_CENTER"
+ "labelPosition": "INSIDE_MIDDLE_CENTER",
+ "zIndex": 0,
+ "level": 1
},
{
"id": "OH",
@@ -1568,7 +1609,6 @@
},
"width": 126,
"height": 126,
- "level": 1,
"opacity": 1,
"strokeDash": 0,
"strokeWidth": 2,
@@ -1595,7 +1635,9 @@
"underline": false,
"labelWidth": 26,
"labelHeight": 26,
- "labelPosition": "INSIDE_MIDDLE_CENTER"
+ "labelPosition": "INSIDE_MIDDLE_CENTER",
+ "zIndex": 0,
+ "level": 1
},
{
"id": "MN",
@@ -1606,7 +1648,6 @@
},
"width": 127,
"height": 126,
- "level": 1,
"opacity": 1,
"strokeDash": 0,
"strokeWidth": 2,
@@ -1633,7 +1674,9 @@
"underline": false,
"labelWidth": 27,
"labelHeight": 26,
- "labelPosition": "INSIDE_MIDDLE_CENTER"
+ "labelPosition": "INSIDE_MIDDLE_CENTER",
+ "zIndex": 0,
+ "level": 1
},
{
"id": "SD",
@@ -1644,7 +1687,6 @@
},
"width": 124,
"height": 126,
- "level": 1,
"opacity": 1,
"strokeDash": 0,
"strokeWidth": 2,
@@ -1671,7 +1713,9 @@
"underline": false,
"labelWidth": 24,
"labelHeight": 26,
- "labelPosition": "INSIDE_MIDDLE_CENTER"
+ "labelPosition": "INSIDE_MIDDLE_CENTER",
+ "zIndex": 0,
+ "level": 1
},
{
"id": "VA",
@@ -1682,7 +1726,6 @@
},
"width": 125,
"height": 126,
- "level": 1,
"opacity": 1,
"strokeDash": 0,
"strokeWidth": 2,
@@ -1709,7 +1752,9 @@
"underline": false,
"labelWidth": 25,
"labelHeight": 26,
- "labelPosition": "INSIDE_MIDDLE_CENTER"
+ "labelPosition": "INSIDE_MIDDLE_CENTER",
+ "zIndex": 0,
+ "level": 1
},
{
"id": "WV",
@@ -1720,7 +1765,6 @@
},
"width": 129,
"height": 126,
- "level": 1,
"opacity": 1,
"strokeDash": 0,
"strokeWidth": 2,
@@ -1747,7 +1791,9 @@
"underline": false,
"labelWidth": 29,
"labelHeight": 26,
- "labelPosition": "INSIDE_MIDDLE_CENTER"
+ "labelPosition": "INSIDE_MIDDLE_CENTER",
+ "zIndex": 0,
+ "level": 1
},
{
"id": "ME",
@@ -1758,7 +1804,6 @@
},
"width": 125,
"height": 126,
- "level": 1,
"opacity": 1,
"strokeDash": 0,
"strokeWidth": 2,
@@ -1785,7 +1830,9 @@
"underline": false,
"labelWidth": 25,
"labelHeight": 26,
- "labelPosition": "INSIDE_MIDDLE_CENTER"
+ "labelPosition": "INSIDE_MIDDLE_CENTER",
+ "zIndex": 0,
+ "level": 1
},
{
"id": "NH",
@@ -1796,7 +1843,6 @@
},
"width": 125,
"height": 126,
- "level": 1,
"opacity": 1,
"strokeDash": 0,
"strokeWidth": 2,
@@ -1823,7 +1869,9 @@
"underline": false,
"labelWidth": 25,
"labelHeight": 26,
- "labelPosition": "INSIDE_MIDDLE_CENTER"
+ "labelPosition": "INSIDE_MIDDLE_CENTER",
+ "zIndex": 0,
+ "level": 1
},
{
"id": "VT",
@@ -1834,7 +1882,6 @@
},
"width": 124,
"height": 126,
- "level": 1,
"opacity": 1,
"strokeDash": 0,
"strokeWidth": 2,
@@ -1861,7 +1908,9 @@
"underline": false,
"labelWidth": 24,
"labelHeight": 26,
- "labelPosition": "INSIDE_MIDDLE_CENTER"
+ "labelPosition": "INSIDE_MIDDLE_CENTER",
+ "zIndex": 0,
+ "level": 1
},
{
"id": "ND",
@@ -1872,7 +1921,6 @@
},
"width": 125,
"height": 126,
- "level": 1,
"opacity": 1,
"strokeDash": 0,
"strokeWidth": 2,
@@ -1899,7 +1947,9 @@
"underline": false,
"labelWidth": 25,
"labelHeight": 26,
- "labelPosition": "INSIDE_MIDDLE_CENTER"
+ "labelPosition": "INSIDE_MIDDLE_CENTER",
+ "zIndex": 0,
+ "level": 1
}
],
"connections": [
@@ -1948,7 +1998,8 @@
"isCurve": true,
"animated": false,
"tooltip": "",
- "icon": null
+ "icon": null,
+ "zIndex": 0
},
{
"id": "(FL -- GA)[0]",
@@ -1995,7 +2046,8 @@
"isCurve": true,
"animated": false,
"tooltip": "",
- "icon": null
+ "icon": null,
+ "zIndex": 0
},
{
"id": "(GA -- MS)[0]",
@@ -2042,7 +2094,8 @@
"isCurve": true,
"animated": false,
"tooltip": "",
- "icon": null
+ "icon": null,
+ "zIndex": 0
},
{
"id": "(MS -- TN)[0]",
@@ -2173,7 +2226,8 @@
"isCurve": true,
"animated": false,
"tooltip": "",
- "icon": null
+ "icon": null,
+ "zIndex": 0
},
{
"id": "(AZ -- CA)[0]",
@@ -2220,7 +2274,8 @@
"isCurve": true,
"animated": false,
"tooltip": "",
- "icon": null
+ "icon": null,
+ "zIndex": 0
},
{
"id": "(CA -- NV)[0]",
@@ -2267,7 +2322,8 @@
"isCurve": true,
"animated": false,
"tooltip": "",
- "icon": null
+ "icon": null,
+ "zIndex": 0
},
{
"id": "(NV -- NM)[0]",
@@ -2314,7 +2370,8 @@
"isCurve": true,
"animated": false,
"tooltip": "",
- "icon": null
+ "icon": null,
+ "zIndex": 0
},
{
"id": "(NM -- UT)[0]",
@@ -2373,7 +2430,8 @@
"isCurve": true,
"animated": false,
"tooltip": "",
- "icon": null
+ "icon": null,
+ "zIndex": 0
},
{
"id": "(AR -- LA)[0]",
@@ -2420,7 +2478,8 @@
"isCurve": true,
"animated": false,
"tooltip": "",
- "icon": null
+ "icon": null,
+ "zIndex": 0
},
{
"id": "(LA -- MS)[0]",
@@ -2467,7 +2526,8 @@
"isCurve": true,
"animated": false,
"tooltip": "",
- "icon": null
+ "icon": null,
+ "zIndex": 0
},
{
"id": "(MS -- MO)[0]",
@@ -2514,7 +2574,8 @@
"isCurve": true,
"animated": false,
"tooltip": "",
- "icon": null
+ "icon": null,
+ "zIndex": 0
},
{
"id": "(MO -- OK)[0]",
@@ -2597,7 +2658,8 @@
"isCurve": true,
"animated": false,
"tooltip": "",
- "icon": null
+ "icon": null,
+ "zIndex": 0
},
{
"id": "(OK -- TN)[0]",
@@ -2644,7 +2706,8 @@
"isCurve": true,
"animated": false,
"tooltip": "",
- "icon": null
+ "icon": null,
+ "zIndex": 0
},
{
"id": "(TN -- TX)[0]",
@@ -2691,7 +2754,8 @@
"isCurve": true,
"animated": false,
"tooltip": "",
- "icon": null
+ "icon": null,
+ "zIndex": 0
},
{
"id": "(CA -- NV)[1]",
@@ -2738,7 +2802,8 @@
"isCurve": true,
"animated": false,
"tooltip": "",
- "icon": null
+ "icon": null,
+ "zIndex": 0
},
{
"id": "(NV -- OR)[0]",
@@ -2797,7 +2862,8 @@
"isCurve": true,
"animated": false,
"tooltip": "",
- "icon": null
+ "icon": null,
+ "zIndex": 0
},
{
"id": "(CO -- KS)[0]",
@@ -2844,7 +2910,8 @@
"isCurve": true,
"animated": false,
"tooltip": "",
- "icon": null
+ "icon": null,
+ "zIndex": 0
},
{
"id": "(KS -- NE)[0]",
@@ -2903,7 +2970,8 @@
"isCurve": true,
"animated": false,
"tooltip": "",
- "icon": null
+ "icon": null,
+ "zIndex": 0
},
{
"id": "(NE -- NM)[0]",
@@ -2950,7 +3018,8 @@
"isCurve": true,
"animated": false,
"tooltip": "",
- "icon": null
+ "icon": null,
+ "zIndex": 0
},
{
"id": "(NM -- OK)[0]",
@@ -2997,7 +3066,8 @@
"isCurve": true,
"animated": false,
"tooltip": "",
- "icon": null
+ "icon": null,
+ "zIndex": 0
},
{
"id": "(OK -- UT)[0]",
@@ -3044,7 +3114,8 @@
"isCurve": true,
"animated": false,
"tooltip": "",
- "icon": null
+ "icon": null,
+ "zIndex": 0
},
{
"id": "(UT -- WY)[0]",
@@ -3103,7 +3174,8 @@
"isCurve": true,
"animated": false,
"tooltip": "",
- "icon": null
+ "icon": null,
+ "zIndex": 0
},
{
"id": "(CT -- MA)[0]",
@@ -3150,7 +3222,8 @@
"isCurve": true,
"animated": false,
"tooltip": "",
- "icon": null
+ "icon": null,
+ "zIndex": 0
},
{
"id": "(MA -- NY)[0]",
@@ -3209,7 +3282,8 @@
"isCurve": true,
"animated": false,
"tooltip": "",
- "icon": null
+ "icon": null,
+ "zIndex": 0
},
{
"id": "(NY -- RI)[0]",
@@ -3268,7 +3342,8 @@
"isCurve": true,
"animated": false,
"tooltip": "",
- "icon": null
+ "icon": null,
+ "zIndex": 0
},
{
"id": "(DE -- MD)[0]",
@@ -3315,7 +3390,8 @@
"isCurve": true,
"animated": false,
"tooltip": "",
- "icon": null
+ "icon": null,
+ "zIndex": 0
},
{
"id": "(MD -- NJ)[0]",
@@ -3362,7 +3438,8 @@
"isCurve": true,
"animated": false,
"tooltip": "",
- "icon": null
+ "icon": null,
+ "zIndex": 0
},
{
"id": "(NJ -- PA)[0]",
@@ -3421,7 +3498,8 @@
"isCurve": true,
"animated": false,
"tooltip": "",
- "icon": null
+ "icon": null,
+ "zIndex": 0
},
{
"id": "(FL -- GA)[1]",
@@ -3468,7 +3546,8 @@
"isCurve": true,
"animated": false,
"tooltip": "",
- "icon": null
+ "icon": null,
+ "zIndex": 0
},
{
"id": "(GA -- NC)[0]",
@@ -3575,7 +3654,8 @@
"isCurve": true,
"animated": false,
"tooltip": "",
- "icon": null
+ "icon": null,
+ "zIndex": 0
},
{
"id": "(NC -- SC)[0]",
@@ -3622,7 +3702,8 @@
"isCurve": true,
"animated": false,
"tooltip": "",
- "icon": null
+ "icon": null,
+ "zIndex": 0
},
{
"id": "(SC -- TN)[0]",
@@ -3669,7 +3750,8 @@
"isCurve": true,
"animated": false,
"tooltip": "",
- "icon": null
+ "icon": null,
+ "zIndex": 0
},
{
"id": "(ID -- MT)[0]",
@@ -3716,7 +3798,8 @@
"isCurve": true,
"animated": false,
"tooltip": "",
- "icon": null
+ "icon": null,
+ "zIndex": 0
},
{
"id": "(MT -- NV)[0]",
@@ -3763,7 +3846,8 @@
"isCurve": true,
"animated": false,
"tooltip": "",
- "icon": null
+ "icon": null,
+ "zIndex": 0
},
{
"id": "(NV -- OR)[1]",
@@ -3822,7 +3906,8 @@
"isCurve": true,
"animated": false,
"tooltip": "",
- "icon": null
+ "icon": null,
+ "zIndex": 0
},
{
"id": "(OR -- UT)[0]",
@@ -3869,7 +3954,8 @@
"isCurve": true,
"animated": false,
"tooltip": "",
- "icon": null
+ "icon": null,
+ "zIndex": 0
},
{
"id": "(UT -- WA)[0]",
@@ -3916,7 +4002,8 @@
"isCurve": true,
"animated": false,
"tooltip": "",
- "icon": null
+ "icon": null,
+ "zIndex": 0
},
{
"id": "(WA -- WY)[0]",
@@ -3963,7 +4050,8 @@
"isCurve": true,
"animated": false,
"tooltip": "",
- "icon": null
+ "icon": null,
+ "zIndex": 0
},
{
"id": "(IL -- IN)[0]",
@@ -4010,7 +4098,8 @@
"isCurve": true,
"animated": false,
"tooltip": "",
- "icon": null
+ "icon": null,
+ "zIndex": 0
},
{
"id": "(IN -- IA)[0]",
@@ -4057,7 +4146,8 @@
"isCurve": true,
"animated": false,
"tooltip": "",
- "icon": null
+ "icon": null,
+ "zIndex": 0
},
{
"id": "(IA -- MI)[0]",
@@ -4104,7 +4194,8 @@
"isCurve": true,
"animated": false,
"tooltip": "",
- "icon": null
+ "icon": null,
+ "zIndex": 0
},
{
"id": "(MI -- KY)[0]",
@@ -4151,7 +4242,8 @@
"isCurve": true,
"animated": false,
"tooltip": "",
- "icon": null
+ "icon": null,
+ "zIndex": 0
},
{
"id": "(KY -- MO)[0]",
@@ -4198,7 +4290,8 @@
"isCurve": true,
"animated": false,
"tooltip": "",
- "icon": null
+ "icon": null,
+ "zIndex": 0
},
{
"id": "(MO -- WI)[0]",
@@ -4281,7 +4374,8 @@
"isCurve": true,
"animated": false,
"tooltip": "",
- "icon": null
+ "icon": null,
+ "zIndex": 0
},
{
"id": "(IN -- KY)[0]",
@@ -4364,7 +4458,8 @@
"isCurve": true,
"animated": false,
"tooltip": "",
- "icon": null
+ "icon": null,
+ "zIndex": 0
},
{
"id": "(KY -- MI)[0]",
@@ -4411,7 +4506,8 @@
"isCurve": true,
"animated": false,
"tooltip": "",
- "icon": null
+ "icon": null,
+ "zIndex": 0
},
{
"id": "(MI -- OH)[0]",
@@ -4518,7 +4614,8 @@
"isCurve": true,
"animated": false,
"tooltip": "",
- "icon": null
+ "icon": null,
+ "zIndex": 0
},
{
"id": "(IA -- MN)[0]",
@@ -4577,7 +4674,8 @@
"isCurve": true,
"animated": false,
"tooltip": "",
- "icon": null
+ "icon": null,
+ "zIndex": 0
},
{
"id": "(MN -- MO)[0]",
@@ -4624,7 +4722,8 @@
"isCurve": true,
"animated": false,
"tooltip": "",
- "icon": null
+ "icon": null,
+ "zIndex": 0
},
{
"id": "(MO -- NE)[0]",
@@ -4671,7 +4770,8 @@
"isCurve": true,
"animated": false,
"tooltip": "",
- "icon": null
+ "icon": null,
+ "zIndex": 0
},
{
"id": "(NE -- SD)[0]",
@@ -4718,7 +4818,8 @@
"isCurve": true,
"animated": false,
"tooltip": "",
- "icon": null
+ "icon": null,
+ "zIndex": 0
},
{
"id": "(SD -- WI)[0]",
@@ -4765,7 +4866,8 @@
"isCurve": true,
"animated": false,
"tooltip": "",
- "icon": null
+ "icon": null,
+ "zIndex": 0
},
{
"id": "(KS -- MO)[0]",
@@ -4812,7 +4914,8 @@
"isCurve": true,
"animated": false,
"tooltip": "",
- "icon": null
+ "icon": null,
+ "zIndex": 0
},
{
"id": "(MO -- NE)[1]",
@@ -4859,7 +4962,8 @@
"isCurve": true,
"animated": false,
"tooltip": "",
- "icon": null
+ "icon": null,
+ "zIndex": 0
},
{
"id": "(NE -- OK)[0]",
@@ -4918,7 +5022,8 @@
"isCurve": true,
"animated": false,
"tooltip": "",
- "icon": null
+ "icon": null,
+ "zIndex": 0
},
{
"id": "(KY -- MO)[1]",
@@ -4965,7 +5070,8 @@
"isCurve": true,
"animated": false,
"tooltip": "",
- "icon": null
+ "icon": null,
+ "zIndex": 0
},
{
"id": "(MO -- OH)[0]",
@@ -5024,7 +5130,8 @@
"isCurve": true,
"animated": false,
"tooltip": "",
- "icon": null
+ "icon": null,
+ "zIndex": 0
},
{
"id": "(OH -- TN)[0]",
@@ -5083,7 +5190,8 @@
"isCurve": true,
"animated": false,
"tooltip": "",
- "icon": null
+ "icon": null,
+ "zIndex": 0
},
{
"id": "(TN -- VA)[0]",
@@ -5130,7 +5238,8 @@
"isCurve": true,
"animated": false,
"tooltip": "",
- "icon": null
+ "icon": null,
+ "zIndex": 0
},
{
"id": "(VA -- WV)[0]",
@@ -5177,7 +5286,8 @@
"isCurve": true,
"animated": false,
"tooltip": "",
- "icon": null
+ "icon": null,
+ "zIndex": 0
},
{
"id": "(LA -- MS)[1]",
@@ -5224,7 +5334,8 @@
"isCurve": true,
"animated": false,
"tooltip": "",
- "icon": null
+ "icon": null,
+ "zIndex": 0
},
{
"id": "(MS -- TX)[0]",
@@ -5379,7 +5490,8 @@
"isCurve": true,
"animated": false,
"tooltip": "",
- "icon": null
+ "icon": null,
+ "zIndex": 0
},
{
"id": "(ME -- NH)[0]",
@@ -5426,7 +5538,8 @@
"isCurve": true,
"animated": false,
"tooltip": "",
- "icon": null
+ "icon": null,
+ "zIndex": 0
},
{
"id": "(MD -- PA)[0]",
@@ -5509,7 +5622,8 @@
"isCurve": true,
"animated": false,
"tooltip": "",
- "icon": null
+ "icon": null,
+ "zIndex": 0
},
{
"id": "(PA -- VA)[0]",
@@ -5556,7 +5670,8 @@
"isCurve": true,
"animated": false,
"tooltip": "",
- "icon": null
+ "icon": null,
+ "zIndex": 0
},
{
"id": "(VA -- WV)[1]",
@@ -5603,7 +5718,8 @@
"isCurve": true,
"animated": false,
"tooltip": "",
- "icon": null
+ "icon": null,
+ "zIndex": 0
},
{
"id": "(MA -- NH)[0]",
@@ -5650,7 +5766,8 @@
"isCurve": true,
"animated": false,
"tooltip": "",
- "icon": null
+ "icon": null,
+ "zIndex": 0
},
{
"id": "(NH -- NY)[0]",
@@ -5697,7 +5814,8 @@
"isCurve": true,
"animated": false,
"tooltip": "",
- "icon": null
+ "icon": null,
+ "zIndex": 0
},
{
"id": "(NY -- RI)[1]",
@@ -5756,7 +5874,8 @@
"isCurve": true,
"animated": false,
"tooltip": "",
- "icon": null
+ "icon": null,
+ "zIndex": 0
},
{
"id": "(RI -- VT)[0]",
@@ -5803,7 +5922,8 @@
"isCurve": true,
"animated": false,
"tooltip": "",
- "icon": null
+ "icon": null,
+ "zIndex": 0
},
{
"id": "(MI -- MN)[0]",
@@ -5850,7 +5970,8 @@
"isCurve": true,
"animated": false,
"tooltip": "",
- "icon": null
+ "icon": null,
+ "zIndex": 0
},
{
"id": "(MN -- OH)[0]",
@@ -5933,7 +6054,8 @@
"isCurve": true,
"animated": false,
"tooltip": "",
- "icon": null
+ "icon": null,
+ "zIndex": 0
},
{
"id": "(OH -- WI)[0]",
@@ -5980,7 +6102,8 @@
"isCurve": true,
"animated": false,
"tooltip": "",
- "icon": null
+ "icon": null,
+ "zIndex": 0
},
{
"id": "(MN -- ND)[0]",
@@ -6039,7 +6162,8 @@
"isCurve": true,
"animated": false,
"tooltip": "",
- "icon": null
+ "icon": null,
+ "zIndex": 0
},
{
"id": "(ND -- SD)[0]",
@@ -6086,7 +6210,8 @@
"isCurve": true,
"animated": false,
"tooltip": "",
- "icon": null
+ "icon": null,
+ "zIndex": 0
},
{
"id": "(SD -- WI)[1]",
@@ -6133,7 +6258,8 @@
"isCurve": true,
"animated": false,
"tooltip": "",
- "icon": null
+ "icon": null,
+ "zIndex": 0
},
{
"id": "(MS -- TN)[1]",
@@ -6264,7 +6390,8 @@
"isCurve": true,
"animated": false,
"tooltip": "",
- "icon": null
+ "icon": null,
+ "zIndex": 0
},
{
"id": "(MO -- NE)[2]",
@@ -6311,7 +6438,8 @@
"isCurve": true,
"animated": false,
"tooltip": "",
- "icon": null
+ "icon": null,
+ "zIndex": 0
},
{
"id": "(NE -- OK)[1]",
@@ -6370,7 +6498,8 @@
"isCurve": true,
"animated": false,
"tooltip": "",
- "icon": null
+ "icon": null,
+ "zIndex": 0
},
{
"id": "(OK -- TN)[1]",
@@ -6417,7 +6546,8 @@
"isCurve": true,
"animated": false,
"tooltip": "",
- "icon": null
+ "icon": null,
+ "zIndex": 0
},
{
"id": "(MT -- ND)[0]",
@@ -6464,7 +6594,8 @@
"isCurve": true,
"animated": false,
"tooltip": "",
- "icon": null
+ "icon": null,
+ "zIndex": 0
},
{
"id": "(ND -- SD)[1]",
@@ -6511,7 +6642,8 @@
"isCurve": true,
"animated": false,
"tooltip": "",
- "icon": null
+ "icon": null,
+ "zIndex": 0
},
{
"id": "(SD -- WY)[0]",
@@ -6618,7 +6750,8 @@
"isCurve": true,
"animated": false,
"tooltip": "",
- "icon": null
+ "icon": null,
+ "zIndex": 0
},
{
"id": "(NE -- SD)[1]",
@@ -6665,7 +6798,8 @@
"isCurve": true,
"animated": false,
"tooltip": "",
- "icon": null
+ "icon": null,
+ "zIndex": 0
},
{
"id": "(SD -- WY)[1]",
@@ -6772,7 +6906,8 @@
"isCurve": true,
"animated": false,
"tooltip": "",
- "icon": null
+ "icon": null,
+ "zIndex": 0
},
{
"id": "(NV -- OR)[2]",
@@ -6831,7 +6966,8 @@
"isCurve": true,
"animated": false,
"tooltip": "",
- "icon": null
+ "icon": null,
+ "zIndex": 0
},
{
"id": "(OR -- UT)[1]",
@@ -6878,7 +7014,8 @@
"isCurve": true,
"animated": false,
"tooltip": "",
- "icon": null
+ "icon": null,
+ "zIndex": 0
},
{
"id": "(NH -- VT)[0]",
@@ -6985,7 +7122,8 @@
"isCurve": true,
"animated": false,
"tooltip": "",
- "icon": null
+ "icon": null,
+ "zIndex": 0
},
{
"id": "(NJ -- NY)[0]",
@@ -7032,7 +7170,8 @@
"isCurve": true,
"animated": false,
"tooltip": "",
- "icon": null
+ "icon": null,
+ "zIndex": 0
},
{
"id": "(NY -- PA)[0]",
@@ -7079,7 +7218,8 @@
"isCurve": true,
"animated": false,
"tooltip": "",
- "icon": null
+ "icon": null,
+ "zIndex": 0
},
{
"id": "(NM -- OK)[1]",
@@ -7126,7 +7266,8 @@
"isCurve": true,
"animated": false,
"tooltip": "",
- "icon": null
+ "icon": null,
+ "zIndex": 0
},
{
"id": "(OK -- TX)[0]",
@@ -7185,7 +7326,8 @@
"isCurve": true,
"animated": false,
"tooltip": "",
- "icon": null
+ "icon": null,
+ "zIndex": 0
},
{
"id": "(NY -- PA)[1]",
@@ -7232,7 +7374,8 @@
"isCurve": true,
"animated": false,
"tooltip": "",
- "icon": null
+ "icon": null,
+ "zIndex": 0
},
{
"id": "(PA -- RI)[0]",
@@ -7279,7 +7422,8 @@
"isCurve": true,
"animated": false,
"tooltip": "",
- "icon": null
+ "icon": null,
+ "zIndex": 0
},
{
"id": "(RI -- VT)[1]",
@@ -7326,7 +7470,8 @@
"isCurve": true,
"animated": false,
"tooltip": "",
- "icon": null
+ "icon": null,
+ "zIndex": 0
},
{
"id": "(NC -- SC)[1]",
@@ -7373,7 +7518,8 @@
"isCurve": true,
"animated": false,
"tooltip": "",
- "icon": null
+ "icon": null,
+ "zIndex": 0
},
{
"id": "(SC -- TN)[1]",
@@ -7420,7 +7566,8 @@
"isCurve": true,
"animated": false,
"tooltip": "",
- "icon": null
+ "icon": null,
+ "zIndex": 0
},
{
"id": "(TN -- VA)[1]",
@@ -7467,7 +7614,8 @@
"isCurve": true,
"animated": false,
"tooltip": "",
- "icon": null
+ "icon": null,
+ "zIndex": 0
},
{
"id": "(ND -- SD)[2]",
@@ -7514,7 +7662,8 @@
"isCurve": true,
"animated": false,
"tooltip": "",
- "icon": null
+ "icon": null,
+ "zIndex": 0
},
{
"id": "(OH -- PA)[0]",
@@ -7573,7 +7722,8 @@
"isCurve": true,
"animated": false,
"tooltip": "",
- "icon": null
+ "icon": null,
+ "zIndex": 0
},
{
"id": "(PA -- WV)[0]",
@@ -7632,7 +7782,8 @@
"isCurve": true,
"animated": false,
"tooltip": "",
- "icon": null
+ "icon": null,
+ "zIndex": 0
},
{
"id": "(OK -- TX)[1]",
@@ -7691,7 +7842,8 @@
"isCurve": true,
"animated": false,
"tooltip": "",
- "icon": null
+ "icon": null,
+ "zIndex": 0
},
{
"id": "(OR -- WA)[0]",
@@ -7750,7 +7902,8 @@
"isCurve": true,
"animated": false,
"tooltip": "",
- "icon": null
+ "icon": null,
+ "zIndex": 0
},
{
"id": "(PA -- WV)[1]",
@@ -7809,7 +7962,8 @@
"isCurve": true,
"animated": false,
"tooltip": "",
- "icon": null
+ "icon": null,
+ "zIndex": 0
},
{
"id": "(SD -- WY)[2]",
@@ -7916,7 +8070,8 @@
"isCurve": true,
"animated": false,
"tooltip": "",
- "icon": null
+ "icon": null,
+ "zIndex": 0
},
{
"id": "(TN -- VA)[2]",
@@ -7963,7 +8118,8 @@
"isCurve": true,
"animated": false,
"tooltip": "",
- "icon": null
+ "icon": null,
+ "zIndex": 0
},
{
"id": "(UT -- WY)[1]",
@@ -8022,7 +8178,8 @@
"isCurve": true,
"animated": false,
"tooltip": "",
- "icon": null
+ "icon": null,
+ "zIndex": 0
},
{
"id": "(VA -- WV)[2]",
@@ -8069,7 +8226,8 @@
"isCurve": true,
"animated": false,
"tooltip": "",
- "icon": null
+ "icon": null,
+ "zIndex": 0
}
]
}
diff --git a/e2etests/testdata/stable/us_map/elk/board.exp.json b/e2etests/testdata/stable/us_map/elk/board.exp.json
index 43d1260f2..015e58844 100644
--- a/e2etests/testdata/stable/us_map/elk/board.exp.json
+++ b/e2etests/testdata/stable/us_map/elk/board.exp.json
@@ -10,7 +10,6 @@
},
"width": 126,
"height": 126,
- "level": 1,
"opacity": 1,
"strokeDash": 0,
"strokeWidth": 2,
@@ -37,7 +36,9 @@
"underline": false,
"labelWidth": 26,
"labelHeight": 26,
- "labelPosition": "INSIDE_MIDDLE_CENTER"
+ "labelPosition": "INSIDE_MIDDLE_CENTER",
+ "zIndex": 0,
+ "level": 1
},
{
"id": "HI",
@@ -48,7 +49,6 @@
},
"width": 119,
"height": 126,
- "level": 1,
"opacity": 1,
"strokeDash": 0,
"strokeWidth": 2,
@@ -75,7 +75,9 @@
"underline": false,
"labelWidth": 19,
"labelHeight": 26,
- "labelPosition": "INSIDE_MIDDLE_CENTER"
+ "labelPosition": "INSIDE_MIDDLE_CENTER",
+ "zIndex": 0,
+ "level": 1
},
{
"id": "AL",
@@ -86,7 +88,6 @@
},
"width": 124,
"height": 126,
- "level": 1,
"opacity": 1,
"strokeDash": 0,
"strokeWidth": 2,
@@ -113,7 +114,9 @@
"underline": false,
"labelWidth": 24,
"labelHeight": 26,
- "labelPosition": "INSIDE_MIDDLE_CENTER"
+ "labelPosition": "INSIDE_MIDDLE_CENTER",
+ "zIndex": 0,
+ "level": 1
},
{
"id": "FL",
@@ -124,7 +127,6 @@
},
"width": 121,
"height": 126,
- "level": 1,
"opacity": 1,
"strokeDash": 0,
"strokeWidth": 2,
@@ -151,7 +153,9 @@
"underline": false,
"labelWidth": 21,
"labelHeight": 26,
- "labelPosition": "INSIDE_MIDDLE_CENTER"
+ "labelPosition": "INSIDE_MIDDLE_CENTER",
+ "zIndex": 0,
+ "level": 1
},
{
"id": "GA",
@@ -162,7 +166,6 @@
},
"width": 126,
"height": 126,
- "level": 1,
"opacity": 1,
"strokeDash": 0,
"strokeWidth": 2,
@@ -189,7 +192,9 @@
"underline": false,
"labelWidth": 26,
"labelHeight": 26,
- "labelPosition": "INSIDE_MIDDLE_CENTER"
+ "labelPosition": "INSIDE_MIDDLE_CENTER",
+ "zIndex": 0,
+ "level": 1
},
{
"id": "MS",
@@ -200,7 +205,6 @@
},
"width": 126,
"height": 126,
- "level": 1,
"opacity": 1,
"strokeDash": 0,
"strokeWidth": 2,
@@ -227,7 +231,9 @@
"underline": false,
"labelWidth": 26,
"labelHeight": 26,
- "labelPosition": "INSIDE_MIDDLE_CENTER"
+ "labelPosition": "INSIDE_MIDDLE_CENTER",
+ "zIndex": 0,
+ "level": 1
},
{
"id": "TN",
@@ -238,7 +244,6 @@
},
"width": 124,
"height": 126,
- "level": 1,
"opacity": 1,
"strokeDash": 0,
"strokeWidth": 2,
@@ -265,7 +270,9 @@
"underline": false,
"labelWidth": 24,
"labelHeight": 26,
- "labelPosition": "INSIDE_MIDDLE_CENTER"
+ "labelPosition": "INSIDE_MIDDLE_CENTER",
+ "zIndex": 0,
+ "level": 1
},
{
"id": "AZ",
@@ -276,7 +283,6 @@
},
"width": 125,
"height": 126,
- "level": 1,
"opacity": 1,
"strokeDash": 0,
"strokeWidth": 2,
@@ -303,7 +309,9 @@
"underline": false,
"labelWidth": 25,
"labelHeight": 26,
- "labelPosition": "INSIDE_MIDDLE_CENTER"
+ "labelPosition": "INSIDE_MIDDLE_CENTER",
+ "zIndex": 0,
+ "level": 1
},
{
"id": "CA",
@@ -314,7 +322,6 @@
},
"width": 125,
"height": 126,
- "level": 1,
"opacity": 1,
"strokeDash": 0,
"strokeWidth": 2,
@@ -341,7 +348,9 @@
"underline": false,
"labelWidth": 25,
"labelHeight": 26,
- "labelPosition": "INSIDE_MIDDLE_CENTER"
+ "labelPosition": "INSIDE_MIDDLE_CENTER",
+ "zIndex": 0,
+ "level": 1
},
{
"id": "NV",
@@ -352,7 +361,6 @@
},
"width": 125,
"height": 126,
- "level": 1,
"opacity": 1,
"strokeDash": 0,
"strokeWidth": 2,
@@ -379,7 +387,9 @@
"underline": false,
"labelWidth": 25,
"labelHeight": 26,
- "labelPosition": "INSIDE_MIDDLE_CENTER"
+ "labelPosition": "INSIDE_MIDDLE_CENTER",
+ "zIndex": 0,
+ "level": 1
},
{
"id": "NM",
@@ -390,7 +400,6 @@
},
"width": 126,
"height": 126,
- "level": 1,
"opacity": 1,
"strokeDash": 0,
"strokeWidth": 2,
@@ -417,7 +426,9 @@
"underline": false,
"labelWidth": 26,
"labelHeight": 26,
- "labelPosition": "INSIDE_MIDDLE_CENTER"
+ "labelPosition": "INSIDE_MIDDLE_CENTER",
+ "zIndex": 0,
+ "level": 1
},
{
"id": "UT",
@@ -428,7 +439,6 @@
},
"width": 124,
"height": 126,
- "level": 1,
"opacity": 1,
"strokeDash": 0,
"strokeWidth": 2,
@@ -455,7 +465,9 @@
"underline": false,
"labelWidth": 24,
"labelHeight": 26,
- "labelPosition": "INSIDE_MIDDLE_CENTER"
+ "labelPosition": "INSIDE_MIDDLE_CENTER",
+ "zIndex": 0,
+ "level": 1
},
{
"id": "AR",
@@ -466,7 +478,6 @@
},
"width": 126,
"height": 126,
- "level": 1,
"opacity": 1,
"strokeDash": 0,
"strokeWidth": 2,
@@ -493,7 +504,9 @@
"underline": false,
"labelWidth": 26,
"labelHeight": 26,
- "labelPosition": "INSIDE_MIDDLE_CENTER"
+ "labelPosition": "INSIDE_MIDDLE_CENTER",
+ "zIndex": 0,
+ "level": 1
},
{
"id": "LA",
@@ -504,7 +517,6 @@
},
"width": 123,
"height": 126,
- "level": 1,
"opacity": 1,
"strokeDash": 0,
"strokeWidth": 2,
@@ -531,7 +543,9 @@
"underline": false,
"labelWidth": 23,
"labelHeight": 26,
- "labelPosition": "INSIDE_MIDDLE_CENTER"
+ "labelPosition": "INSIDE_MIDDLE_CENTER",
+ "zIndex": 0,
+ "level": 1
},
{
"id": "MO",
@@ -542,7 +556,6 @@
},
"width": 128,
"height": 126,
- "level": 1,
"opacity": 1,
"strokeDash": 0,
"strokeWidth": 2,
@@ -569,7 +582,9 @@
"underline": false,
"labelWidth": 28,
"labelHeight": 26,
- "labelPosition": "INSIDE_MIDDLE_CENTER"
+ "labelPosition": "INSIDE_MIDDLE_CENTER",
+ "zIndex": 0,
+ "level": 1
},
{
"id": "OK",
@@ -580,7 +595,6 @@
},
"width": 126,
"height": 126,
- "level": 1,
"opacity": 1,
"strokeDash": 0,
"strokeWidth": 2,
@@ -607,7 +621,9 @@
"underline": false,
"labelWidth": 26,
"labelHeight": 26,
- "labelPosition": "INSIDE_MIDDLE_CENTER"
+ "labelPosition": "INSIDE_MIDDLE_CENTER",
+ "zIndex": 0,
+ "level": 1
},
{
"id": "TX",
@@ -618,7 +634,6 @@
},
"width": 123,
"height": 126,
- "level": 1,
"opacity": 1,
"strokeDash": 0,
"strokeWidth": 2,
@@ -645,7 +660,9 @@
"underline": false,
"labelWidth": 23,
"labelHeight": 26,
- "labelPosition": "INSIDE_MIDDLE_CENTER"
+ "labelPosition": "INSIDE_MIDDLE_CENTER",
+ "zIndex": 0,
+ "level": 1
},
{
"id": "OR",
@@ -656,7 +673,6 @@
},
"width": 126,
"height": 126,
- "level": 1,
"opacity": 1,
"strokeDash": 0,
"strokeWidth": 2,
@@ -683,7 +699,9 @@
"underline": false,
"labelWidth": 26,
"labelHeight": 26,
- "labelPosition": "INSIDE_MIDDLE_CENTER"
+ "labelPosition": "INSIDE_MIDDLE_CENTER",
+ "zIndex": 0,
+ "level": 1
},
{
"id": "CO",
@@ -694,7 +712,6 @@
},
"width": 126,
"height": 126,
- "level": 1,
"opacity": 1,
"strokeDash": 0,
"strokeWidth": 2,
@@ -721,7 +738,9 @@
"underline": false,
"labelWidth": 26,
"labelHeight": 26,
- "labelPosition": "INSIDE_MIDDLE_CENTER"
+ "labelPosition": "INSIDE_MIDDLE_CENTER",
+ "zIndex": 0,
+ "level": 1
},
{
"id": "KS",
@@ -732,7 +751,6 @@
},
"width": 123,
"height": 126,
- "level": 1,
"opacity": 1,
"strokeDash": 0,
"strokeWidth": 2,
@@ -759,7 +777,9 @@
"underline": false,
"labelWidth": 23,
"labelHeight": 26,
- "labelPosition": "INSIDE_MIDDLE_CENTER"
+ "labelPosition": "INSIDE_MIDDLE_CENTER",
+ "zIndex": 0,
+ "level": 1
},
{
"id": "NE",
@@ -770,7 +790,6 @@
},
"width": 123,
"height": 126,
- "level": 1,
"opacity": 1,
"strokeDash": 0,
"strokeWidth": 2,
@@ -797,7 +816,9 @@
"underline": false,
"labelWidth": 23,
"labelHeight": 26,
- "labelPosition": "INSIDE_MIDDLE_CENTER"
+ "labelPosition": "INSIDE_MIDDLE_CENTER",
+ "zIndex": 0,
+ "level": 1
},
{
"id": "WY",
@@ -808,7 +829,6 @@
},
"width": 128,
"height": 126,
- "level": 1,
"opacity": 1,
"strokeDash": 0,
"strokeWidth": 2,
@@ -835,7 +855,9 @@
"underline": false,
"labelWidth": 28,
"labelHeight": 26,
- "labelPosition": "INSIDE_MIDDLE_CENTER"
+ "labelPosition": "INSIDE_MIDDLE_CENTER",
+ "zIndex": 0,
+ "level": 1
},
{
"id": "CT",
@@ -846,7 +868,6 @@
},
"width": 124,
"height": 126,
- "level": 1,
"opacity": 1,
"strokeDash": 0,
"strokeWidth": 2,
@@ -873,7 +894,9 @@
"underline": false,
"labelWidth": 24,
"labelHeight": 26,
- "labelPosition": "INSIDE_MIDDLE_CENTER"
+ "labelPosition": "INSIDE_MIDDLE_CENTER",
+ "zIndex": 0,
+ "level": 1
},
{
"id": "MA",
@@ -884,7 +907,6 @@
},
"width": 127,
"height": 126,
- "level": 1,
"opacity": 1,
"strokeDash": 0,
"strokeWidth": 2,
@@ -911,7 +933,9 @@
"underline": false,
"labelWidth": 27,
"labelHeight": 26,
- "labelPosition": "INSIDE_MIDDLE_CENTER"
+ "labelPosition": "INSIDE_MIDDLE_CENTER",
+ "zIndex": 0,
+ "level": 1
},
{
"id": "NY",
@@ -922,7 +946,6 @@
},
"width": 124,
"height": 126,
- "level": 1,
"opacity": 1,
"strokeDash": 0,
"strokeWidth": 2,
@@ -949,7 +972,9 @@
"underline": false,
"labelWidth": 24,
"labelHeight": 26,
- "labelPosition": "INSIDE_MIDDLE_CENTER"
+ "labelPosition": "INSIDE_MIDDLE_CENTER",
+ "zIndex": 0,
+ "level": 1
},
{
"id": "RI",
@@ -960,7 +985,6 @@
},
"width": 118,
"height": 126,
- "level": 1,
"opacity": 1,
"strokeDash": 0,
"strokeWidth": 2,
@@ -987,7 +1011,9 @@
"underline": false,
"labelWidth": 18,
"labelHeight": 26,
- "labelPosition": "INSIDE_MIDDLE_CENTER"
+ "labelPosition": "INSIDE_MIDDLE_CENTER",
+ "zIndex": 0,
+ "level": 1
},
{
"id": "DE",
@@ -998,7 +1024,6 @@
},
"width": 123,
"height": 126,
- "level": 1,
"opacity": 1,
"strokeDash": 0,
"strokeWidth": 2,
@@ -1025,7 +1050,9 @@
"underline": false,
"labelWidth": 23,
"labelHeight": 26,
- "labelPosition": "INSIDE_MIDDLE_CENTER"
+ "labelPosition": "INSIDE_MIDDLE_CENTER",
+ "zIndex": 0,
+ "level": 1
},
{
"id": "MD",
@@ -1036,7 +1063,6 @@
},
"width": 127,
"height": 126,
- "level": 1,
"opacity": 1,
"strokeDash": 0,
"strokeWidth": 2,
@@ -1063,7 +1089,9 @@
"underline": false,
"labelWidth": 27,
"labelHeight": 26,
- "labelPosition": "INSIDE_MIDDLE_CENTER"
+ "labelPosition": "INSIDE_MIDDLE_CENTER",
+ "zIndex": 0,
+ "level": 1
},
{
"id": "NJ",
@@ -1074,7 +1102,6 @@
},
"width": 122,
"height": 126,
- "level": 1,
"opacity": 1,
"strokeDash": 0,
"strokeWidth": 2,
@@ -1101,7 +1128,9 @@
"underline": false,
"labelWidth": 22,
"labelHeight": 26,
- "labelPosition": "INSIDE_MIDDLE_CENTER"
+ "labelPosition": "INSIDE_MIDDLE_CENTER",
+ "zIndex": 0,
+ "level": 1
},
{
"id": "PA",
@@ -1112,7 +1141,6 @@
},
"width": 124,
"height": 126,
- "level": 1,
"opacity": 1,
"strokeDash": 0,
"strokeWidth": 2,
@@ -1139,7 +1167,9 @@
"underline": false,
"labelWidth": 24,
"labelHeight": 26,
- "labelPosition": "INSIDE_MIDDLE_CENTER"
+ "labelPosition": "INSIDE_MIDDLE_CENTER",
+ "zIndex": 0,
+ "level": 1
},
{
"id": "NC",
@@ -1150,7 +1180,6 @@
},
"width": 124,
"height": 126,
- "level": 1,
"opacity": 1,
"strokeDash": 0,
"strokeWidth": 2,
@@ -1177,7 +1206,9 @@
"underline": false,
"labelWidth": 24,
"labelHeight": 26,
- "labelPosition": "INSIDE_MIDDLE_CENTER"
+ "labelPosition": "INSIDE_MIDDLE_CENTER",
+ "zIndex": 0,
+ "level": 1
},
{
"id": "SC",
@@ -1188,7 +1219,6 @@
},
"width": 123,
"height": 126,
- "level": 1,
"opacity": 1,
"strokeDash": 0,
"strokeWidth": 2,
@@ -1215,7 +1245,9 @@
"underline": false,
"labelWidth": 23,
"labelHeight": 26,
- "labelPosition": "INSIDE_MIDDLE_CENTER"
+ "labelPosition": "INSIDE_MIDDLE_CENTER",
+ "zIndex": 0,
+ "level": 1
},
{
"id": "ID",
@@ -1226,7 +1258,6 @@
},
"width": 119,
"height": 126,
- "level": 1,
"opacity": 1,
"strokeDash": 0,
"strokeWidth": 2,
@@ -1253,7 +1284,9 @@
"underline": false,
"labelWidth": 19,
"labelHeight": 26,
- "labelPosition": "INSIDE_MIDDLE_CENTER"
+ "labelPosition": "INSIDE_MIDDLE_CENTER",
+ "zIndex": 0,
+ "level": 1
},
{
"id": "MT",
@@ -1264,7 +1297,6 @@
},
"width": 126,
"height": 126,
- "level": 1,
"opacity": 1,
"strokeDash": 0,
"strokeWidth": 2,
@@ -1291,7 +1323,9 @@
"underline": false,
"labelWidth": 26,
"labelHeight": 26,
- "labelPosition": "INSIDE_MIDDLE_CENTER"
+ "labelPosition": "INSIDE_MIDDLE_CENTER",
+ "zIndex": 0,
+ "level": 1
},
{
"id": "WA",
@@ -1302,7 +1336,6 @@
},
"width": 129,
"height": 126,
- "level": 1,
"opacity": 1,
"strokeDash": 0,
"strokeWidth": 2,
@@ -1329,7 +1362,9 @@
"underline": false,
"labelWidth": 29,
"labelHeight": 26,
- "labelPosition": "INSIDE_MIDDLE_CENTER"
+ "labelPosition": "INSIDE_MIDDLE_CENTER",
+ "zIndex": 0,
+ "level": 1
},
{
"id": "IL",
@@ -1340,7 +1375,6 @@
},
"width": 117,
"height": 126,
- "level": 1,
"opacity": 1,
"strokeDash": 0,
"strokeWidth": 2,
@@ -1367,7 +1401,9 @@
"underline": false,
"labelWidth": 17,
"labelHeight": 26,
- "labelPosition": "INSIDE_MIDDLE_CENTER"
+ "labelPosition": "INSIDE_MIDDLE_CENTER",
+ "zIndex": 0,
+ "level": 1
},
{
"id": "IN",
@@ -1378,7 +1414,6 @@
},
"width": 119,
"height": 126,
- "level": 1,
"opacity": 1,
"strokeDash": 0,
"strokeWidth": 2,
@@ -1405,7 +1440,9 @@
"underline": false,
"labelWidth": 19,
"labelHeight": 26,
- "labelPosition": "INSIDE_MIDDLE_CENTER"
+ "labelPosition": "INSIDE_MIDDLE_CENTER",
+ "zIndex": 0,
+ "level": 1
},
{
"id": "IA",
@@ -1416,7 +1453,6 @@
},
"width": 119,
"height": 126,
- "level": 1,
"opacity": 1,
"strokeDash": 0,
"strokeWidth": 2,
@@ -1443,7 +1479,9 @@
"underline": false,
"labelWidth": 19,
"labelHeight": 26,
- "labelPosition": "INSIDE_MIDDLE_CENTER"
+ "labelPosition": "INSIDE_MIDDLE_CENTER",
+ "zIndex": 0,
+ "level": 1
},
{
"id": "MI",
@@ -1454,7 +1492,6 @@
},
"width": 121,
"height": 126,
- "level": 1,
"opacity": 1,
"strokeDash": 0,
"strokeWidth": 2,
@@ -1481,7 +1518,9 @@
"underline": false,
"labelWidth": 21,
"labelHeight": 26,
- "labelPosition": "INSIDE_MIDDLE_CENTER"
+ "labelPosition": "INSIDE_MIDDLE_CENTER",
+ "zIndex": 0,
+ "level": 1
},
{
"id": "KY",
@@ -1492,7 +1531,6 @@
},
"width": 123,
"height": 126,
- "level": 1,
"opacity": 1,
"strokeDash": 0,
"strokeWidth": 2,
@@ -1519,7 +1557,9 @@
"underline": false,
"labelWidth": 23,
"labelHeight": 26,
- "labelPosition": "INSIDE_MIDDLE_CENTER"
+ "labelPosition": "INSIDE_MIDDLE_CENTER",
+ "zIndex": 0,
+ "level": 1
},
{
"id": "WI",
@@ -1530,7 +1570,6 @@
},
"width": 123,
"height": 126,
- "level": 1,
"opacity": 1,
"strokeDash": 0,
"strokeWidth": 2,
@@ -1557,7 +1596,9 @@
"underline": false,
"labelWidth": 23,
"labelHeight": 26,
- "labelPosition": "INSIDE_MIDDLE_CENTER"
+ "labelPosition": "INSIDE_MIDDLE_CENTER",
+ "zIndex": 0,
+ "level": 1
},
{
"id": "OH",
@@ -1568,7 +1609,6 @@
},
"width": 126,
"height": 126,
- "level": 1,
"opacity": 1,
"strokeDash": 0,
"strokeWidth": 2,
@@ -1595,7 +1635,9 @@
"underline": false,
"labelWidth": 26,
"labelHeight": 26,
- "labelPosition": "INSIDE_MIDDLE_CENTER"
+ "labelPosition": "INSIDE_MIDDLE_CENTER",
+ "zIndex": 0,
+ "level": 1
},
{
"id": "MN",
@@ -1606,7 +1648,6 @@
},
"width": 127,
"height": 126,
- "level": 1,
"opacity": 1,
"strokeDash": 0,
"strokeWidth": 2,
@@ -1633,7 +1674,9 @@
"underline": false,
"labelWidth": 27,
"labelHeight": 26,
- "labelPosition": "INSIDE_MIDDLE_CENTER"
+ "labelPosition": "INSIDE_MIDDLE_CENTER",
+ "zIndex": 0,
+ "level": 1
},
{
"id": "SD",
@@ -1644,7 +1687,6 @@
},
"width": 124,
"height": 126,
- "level": 1,
"opacity": 1,
"strokeDash": 0,
"strokeWidth": 2,
@@ -1671,7 +1713,9 @@
"underline": false,
"labelWidth": 24,
"labelHeight": 26,
- "labelPosition": "INSIDE_MIDDLE_CENTER"
+ "labelPosition": "INSIDE_MIDDLE_CENTER",
+ "zIndex": 0,
+ "level": 1
},
{
"id": "VA",
@@ -1682,7 +1726,6 @@
},
"width": 125,
"height": 126,
- "level": 1,
"opacity": 1,
"strokeDash": 0,
"strokeWidth": 2,
@@ -1709,7 +1752,9 @@
"underline": false,
"labelWidth": 25,
"labelHeight": 26,
- "labelPosition": "INSIDE_MIDDLE_CENTER"
+ "labelPosition": "INSIDE_MIDDLE_CENTER",
+ "zIndex": 0,
+ "level": 1
},
{
"id": "WV",
@@ -1720,7 +1765,6 @@
},
"width": 129,
"height": 126,
- "level": 1,
"opacity": 1,
"strokeDash": 0,
"strokeWidth": 2,
@@ -1747,7 +1791,9 @@
"underline": false,
"labelWidth": 29,
"labelHeight": 26,
- "labelPosition": "INSIDE_MIDDLE_CENTER"
+ "labelPosition": "INSIDE_MIDDLE_CENTER",
+ "zIndex": 0,
+ "level": 1
},
{
"id": "ME",
@@ -1758,7 +1804,6 @@
},
"width": 125,
"height": 126,
- "level": 1,
"opacity": 1,
"strokeDash": 0,
"strokeWidth": 2,
@@ -1785,7 +1830,9 @@
"underline": false,
"labelWidth": 25,
"labelHeight": 26,
- "labelPosition": "INSIDE_MIDDLE_CENTER"
+ "labelPosition": "INSIDE_MIDDLE_CENTER",
+ "zIndex": 0,
+ "level": 1
},
{
"id": "NH",
@@ -1796,7 +1843,6 @@
},
"width": 125,
"height": 126,
- "level": 1,
"opacity": 1,
"strokeDash": 0,
"strokeWidth": 2,
@@ -1823,7 +1869,9 @@
"underline": false,
"labelWidth": 25,
"labelHeight": 26,
- "labelPosition": "INSIDE_MIDDLE_CENTER"
+ "labelPosition": "INSIDE_MIDDLE_CENTER",
+ "zIndex": 0,
+ "level": 1
},
{
"id": "VT",
@@ -1834,7 +1882,6 @@
},
"width": 124,
"height": 126,
- "level": 1,
"opacity": 1,
"strokeDash": 0,
"strokeWidth": 2,
@@ -1861,7 +1908,9 @@
"underline": false,
"labelWidth": 24,
"labelHeight": 26,
- "labelPosition": "INSIDE_MIDDLE_CENTER"
+ "labelPosition": "INSIDE_MIDDLE_CENTER",
+ "zIndex": 0,
+ "level": 1
},
{
"id": "ND",
@@ -1872,7 +1921,6 @@
},
"width": 125,
"height": 126,
- "level": 1,
"opacity": 1,
"strokeDash": 0,
"strokeWidth": 2,
@@ -1899,7 +1947,9 @@
"underline": false,
"labelWidth": 25,
"labelHeight": 26,
- "labelPosition": "INSIDE_MIDDLE_CENTER"
+ "labelPosition": "INSIDE_MIDDLE_CENTER",
+ "zIndex": 0,
+ "level": 1
}
],
"connections": [
@@ -1939,7 +1989,8 @@
],
"animated": false,
"tooltip": "",
- "icon": null
+ "icon": null,
+ "zIndex": 0
},
{
"id": "(FL -- GA)[0]",
@@ -1977,7 +2028,8 @@
],
"animated": false,
"tooltip": "",
- "icon": null
+ "icon": null,
+ "zIndex": 0
},
{
"id": "(GA -- MS)[0]",
@@ -2015,7 +2067,8 @@
],
"animated": false,
"tooltip": "",
- "icon": null
+ "icon": null,
+ "zIndex": 0
},
{
"id": "(MS -- TN)[0]",
@@ -2069,7 +2122,8 @@
],
"animated": false,
"tooltip": "",
- "icon": null
+ "icon": null,
+ "zIndex": 0
},
{
"id": "(AZ -- CA)[0]",
@@ -2107,7 +2161,8 @@
],
"animated": false,
"tooltip": "",
- "icon": null
+ "icon": null,
+ "zIndex": 0
},
{
"id": "(CA -- NV)[0]",
@@ -2145,7 +2200,8 @@
],
"animated": false,
"tooltip": "",
- "icon": null
+ "icon": null,
+ "zIndex": 0
},
{
"id": "(NV -- NM)[0]",
@@ -2191,7 +2247,8 @@
],
"animated": false,
"tooltip": "",
- "icon": null
+ "icon": null,
+ "zIndex": 0
},
{
"id": "(NM -- UT)[0]",
@@ -2237,7 +2294,8 @@
],
"animated": false,
"tooltip": "",
- "icon": null
+ "icon": null,
+ "zIndex": 0
},
{
"id": "(AR -- LA)[0]",
@@ -2275,7 +2333,8 @@
],
"animated": false,
"tooltip": "",
- "icon": null
+ "icon": null,
+ "zIndex": 0
},
{
"id": "(LA -- MS)[0]",
@@ -2321,7 +2380,8 @@
],
"animated": false,
"tooltip": "",
- "icon": null
+ "icon": null,
+ "zIndex": 0
},
{
"id": "(MS -- MO)[0]",
@@ -2367,7 +2427,8 @@
],
"animated": false,
"tooltip": "",
- "icon": null
+ "icon": null,
+ "zIndex": 0
},
{
"id": "(MO -- OK)[0]",
@@ -2421,7 +2482,8 @@
],
"animated": false,
"tooltip": "",
- "icon": null
+ "icon": null,
+ "zIndex": 0
},
{
"id": "(OK -- TN)[0]",
@@ -2467,7 +2529,8 @@
],
"animated": false,
"tooltip": "",
- "icon": null
+ "icon": null,
+ "zIndex": 0
},
{
"id": "(TN -- TX)[0]",
@@ -2513,7 +2576,8 @@
],
"animated": false,
"tooltip": "",
- "icon": null
+ "icon": null,
+ "zIndex": 0
},
{
"id": "(CA -- NV)[1]",
@@ -2559,7 +2623,8 @@
],
"animated": false,
"tooltip": "",
- "icon": null
+ "icon": null,
+ "zIndex": 0
},
{
"id": "(NV -- OR)[0]",
@@ -2597,7 +2662,8 @@
],
"animated": false,
"tooltip": "",
- "icon": null
+ "icon": null,
+ "zIndex": 0
},
{
"id": "(CO -- KS)[0]",
@@ -2635,7 +2701,8 @@
],
"animated": false,
"tooltip": "",
- "icon": null
+ "icon": null,
+ "zIndex": 0
},
{
"id": "(KS -- NE)[0]",
@@ -2673,7 +2740,8 @@
],
"animated": false,
"tooltip": "",
- "icon": null
+ "icon": null,
+ "zIndex": 0
},
{
"id": "(NE -- NM)[0]",
@@ -2711,7 +2779,8 @@
],
"animated": false,
"tooltip": "",
- "icon": null
+ "icon": null,
+ "zIndex": 0
},
{
"id": "(NM -- OK)[0]",
@@ -2749,7 +2818,8 @@
],
"animated": false,
"tooltip": "",
- "icon": null
+ "icon": null,
+ "zIndex": 0
},
{
"id": "(OK -- UT)[0]",
@@ -2795,7 +2865,8 @@
],
"animated": false,
"tooltip": "",
- "icon": null
+ "icon": null,
+ "zIndex": 0
},
{
"id": "(UT -- WY)[0]",
@@ -2849,7 +2920,8 @@
],
"animated": false,
"tooltip": "",
- "icon": null
+ "icon": null,
+ "zIndex": 0
},
{
"id": "(CT -- MA)[0]",
@@ -2887,7 +2959,8 @@
],
"animated": false,
"tooltip": "",
- "icon": null
+ "icon": null,
+ "zIndex": 0
},
{
"id": "(MA -- NY)[0]",
@@ -2925,7 +2998,8 @@
],
"animated": false,
"tooltip": "",
- "icon": null
+ "icon": null,
+ "zIndex": 0
},
{
"id": "(NY -- RI)[0]",
@@ -2971,7 +3045,8 @@
],
"animated": false,
"tooltip": "",
- "icon": null
+ "icon": null,
+ "zIndex": 0
},
{
"id": "(DE -- MD)[0]",
@@ -3009,7 +3084,8 @@
],
"animated": false,
"tooltip": "",
- "icon": null
+ "icon": null,
+ "zIndex": 0
},
{
"id": "(MD -- NJ)[0]",
@@ -3047,7 +3123,8 @@
],
"animated": false,
"tooltip": "",
- "icon": null
+ "icon": null,
+ "zIndex": 0
},
{
"id": "(NJ -- PA)[0]",
@@ -3093,7 +3170,8 @@
],
"animated": false,
"tooltip": "",
- "icon": null
+ "icon": null,
+ "zIndex": 0
},
{
"id": "(FL -- GA)[1]",
@@ -3139,7 +3217,8 @@
],
"animated": false,
"tooltip": "",
- "icon": null
+ "icon": null,
+ "zIndex": 0
},
{
"id": "(GA -- NC)[0]",
@@ -3193,7 +3272,8 @@
],
"animated": false,
"tooltip": "",
- "icon": null
+ "icon": null,
+ "zIndex": 0
},
{
"id": "(NC -- SC)[0]",
@@ -3231,7 +3311,8 @@
],
"animated": false,
"tooltip": "",
- "icon": null
+ "icon": null,
+ "zIndex": 0
},
{
"id": "(SC -- TN)[0]",
@@ -3269,7 +3350,8 @@
],
"animated": false,
"tooltip": "",
- "icon": null
+ "icon": null,
+ "zIndex": 0
},
{
"id": "(ID -- MT)[0]",
@@ -3307,7 +3389,8 @@
],
"animated": false,
"tooltip": "",
- "icon": null
+ "icon": null,
+ "zIndex": 0
},
{
"id": "(MT -- NV)[0]",
@@ -3353,7 +3436,8 @@
],
"animated": false,
"tooltip": "",
- "icon": null
+ "icon": null,
+ "zIndex": 0
},
{
"id": "(NV -- OR)[1]",
@@ -3399,7 +3483,8 @@
],
"animated": false,
"tooltip": "",
- "icon": null
+ "icon": null,
+ "zIndex": 0
},
{
"id": "(OR -- UT)[0]",
@@ -3445,7 +3530,8 @@
],
"animated": false,
"tooltip": "",
- "icon": null
+ "icon": null,
+ "zIndex": 0
},
{
"id": "(UT -- WA)[0]",
@@ -3491,7 +3577,8 @@
],
"animated": false,
"tooltip": "",
- "icon": null
+ "icon": null,
+ "zIndex": 0
},
{
"id": "(WA -- WY)[0]",
@@ -3529,7 +3616,8 @@
],
"animated": false,
"tooltip": "",
- "icon": null
+ "icon": null,
+ "zIndex": 0
},
{
"id": "(IL -- IN)[0]",
@@ -3567,7 +3655,8 @@
],
"animated": false,
"tooltip": "",
- "icon": null
+ "icon": null,
+ "zIndex": 0
},
{
"id": "(IN -- IA)[0]",
@@ -3613,7 +3702,8 @@
],
"animated": false,
"tooltip": "",
- "icon": null
+ "icon": null,
+ "zIndex": 0
},
{
"id": "(IA -- MI)[0]",
@@ -3651,7 +3741,8 @@
],
"animated": false,
"tooltip": "",
- "icon": null
+ "icon": null,
+ "zIndex": 0
},
{
"id": "(MI -- KY)[0]",
@@ -3697,7 +3788,8 @@
],
"animated": false,
"tooltip": "",
- "icon": null
+ "icon": null,
+ "zIndex": 0
},
{
"id": "(KY -- MO)[0]",
@@ -3735,7 +3827,8 @@
],
"animated": false,
"tooltip": "",
- "icon": null
+ "icon": null,
+ "zIndex": 0
},
{
"id": "(MO -- WI)[0]",
@@ -3781,7 +3874,8 @@
],
"animated": false,
"tooltip": "",
- "icon": null
+ "icon": null,
+ "zIndex": 0
},
{
"id": "(IN -- KY)[0]",
@@ -3819,7 +3913,8 @@
],
"animated": false,
"tooltip": "",
- "icon": null
+ "icon": null,
+ "zIndex": 0
},
{
"id": "(KY -- MI)[0]",
@@ -3865,7 +3960,8 @@
],
"animated": false,
"tooltip": "",
- "icon": null
+ "icon": null,
+ "zIndex": 0
},
{
"id": "(MI -- OH)[0]",
@@ -3911,7 +4007,8 @@
],
"animated": false,
"tooltip": "",
- "icon": null
+ "icon": null,
+ "zIndex": 0
},
{
"id": "(IA -- MN)[0]",
@@ -3965,7 +4062,8 @@
],
"animated": false,
"tooltip": "",
- "icon": null
+ "icon": null,
+ "zIndex": 0
},
{
"id": "(MN -- MO)[0]",
@@ -4011,7 +4109,8 @@
],
"animated": false,
"tooltip": "",
- "icon": null
+ "icon": null,
+ "zIndex": 0
},
{
"id": "(MO -- NE)[0]",
@@ -4057,7 +4156,8 @@
],
"animated": false,
"tooltip": "",
- "icon": null
+ "icon": null,
+ "zIndex": 0
},
{
"id": "(NE -- SD)[0]",
@@ -4103,7 +4203,8 @@
],
"animated": false,
"tooltip": "",
- "icon": null
+ "icon": null,
+ "zIndex": 0
},
{
"id": "(SD -- WI)[0]",
@@ -4149,7 +4250,8 @@
],
"animated": false,
"tooltip": "",
- "icon": null
+ "icon": null,
+ "zIndex": 0
},
{
"id": "(KS -- MO)[0]",
@@ -4195,7 +4297,8 @@
],
"animated": false,
"tooltip": "",
- "icon": null
+ "icon": null,
+ "zIndex": 0
},
{
"id": "(MO -- NE)[1]",
@@ -4241,7 +4344,8 @@
],
"animated": false,
"tooltip": "",
- "icon": null
+ "icon": null,
+ "zIndex": 0
},
{
"id": "(NE -- OK)[0]",
@@ -4295,7 +4399,8 @@
],
"animated": false,
"tooltip": "",
- "icon": null
+ "icon": null,
+ "zIndex": 0
},
{
"id": "(KY -- MO)[1]",
@@ -4341,7 +4446,8 @@
],
"animated": false,
"tooltip": "",
- "icon": null
+ "icon": null,
+ "zIndex": 0
},
{
"id": "(MO -- OH)[0]",
@@ -4387,7 +4493,8 @@
],
"animated": false,
"tooltip": "",
- "icon": null
+ "icon": null,
+ "zIndex": 0
},
{
"id": "(OH -- TN)[0]",
@@ -4433,7 +4540,8 @@
],
"animated": false,
"tooltip": "",
- "icon": null
+ "icon": null,
+ "zIndex": 0
},
{
"id": "(TN -- VA)[0]",
@@ -4479,7 +4587,8 @@
],
"animated": false,
"tooltip": "",
- "icon": null
+ "icon": null,
+ "zIndex": 0
},
{
"id": "(VA -- WV)[0]",
@@ -4525,7 +4634,8 @@
],
"animated": false,
"tooltip": "",
- "icon": null
+ "icon": null,
+ "zIndex": 0
},
{
"id": "(LA -- MS)[1]",
@@ -4571,7 +4681,8 @@
],
"animated": false,
"tooltip": "",
- "icon": null
+ "icon": null,
+ "zIndex": 0
},
{
"id": "(MS -- TX)[0]",
@@ -4625,7 +4736,8 @@
],
"animated": false,
"tooltip": "",
- "icon": null
+ "icon": null,
+ "zIndex": 0
},
{
"id": "(ME -- NH)[0]",
@@ -4663,7 +4775,8 @@
],
"animated": false,
"tooltip": "",
- "icon": null
+ "icon": null,
+ "zIndex": 0
},
{
"id": "(MD -- PA)[0]",
@@ -4717,7 +4830,8 @@
],
"animated": false,
"tooltip": "",
- "icon": null
+ "icon": null,
+ "zIndex": 0
},
{
"id": "(PA -- VA)[0]",
@@ -4763,7 +4877,8 @@
],
"animated": false,
"tooltip": "",
- "icon": null
+ "icon": null,
+ "zIndex": 0
},
{
"id": "(VA -- WV)[1]",
@@ -4801,7 +4916,8 @@
],
"animated": false,
"tooltip": "",
- "icon": null
+ "icon": null,
+ "zIndex": 0
},
{
"id": "(MA -- NH)[0]",
@@ -4847,7 +4963,8 @@
],
"animated": false,
"tooltip": "",
- "icon": null
+ "icon": null,
+ "zIndex": 0
},
{
"id": "(NH -- NY)[0]",
@@ -4893,7 +5010,8 @@
],
"animated": false,
"tooltip": "",
- "icon": null
+ "icon": null,
+ "zIndex": 0
},
{
"id": "(NY -- RI)[1]",
@@ -4939,7 +5057,8 @@
],
"animated": false,
"tooltip": "",
- "icon": null
+ "icon": null,
+ "zIndex": 0
},
{
"id": "(RI -- VT)[0]",
@@ -4985,7 +5104,8 @@
],
"animated": false,
"tooltip": "",
- "icon": null
+ "icon": null,
+ "zIndex": 0
},
{
"id": "(MI -- MN)[0]",
@@ -5023,7 +5143,8 @@
],
"animated": false,
"tooltip": "",
- "icon": null
+ "icon": null,
+ "zIndex": 0
},
{
"id": "(MN -- OH)[0]",
@@ -5069,7 +5190,8 @@
],
"animated": false,
"tooltip": "",
- "icon": null
+ "icon": null,
+ "zIndex": 0
},
{
"id": "(OH -- WI)[0]",
@@ -5123,7 +5245,8 @@
],
"animated": false,
"tooltip": "",
- "icon": null
+ "icon": null,
+ "zIndex": 0
},
{
"id": "(MN -- ND)[0]",
@@ -5177,7 +5300,8 @@
],
"animated": false,
"tooltip": "",
- "icon": null
+ "icon": null,
+ "zIndex": 0
},
{
"id": "(ND -- SD)[0]",
@@ -5223,7 +5347,8 @@
],
"animated": false,
"tooltip": "",
- "icon": null
+ "icon": null,
+ "zIndex": 0
},
{
"id": "(SD -- WI)[1]",
@@ -5269,7 +5394,8 @@
],
"animated": false,
"tooltip": "",
- "icon": null
+ "icon": null,
+ "zIndex": 0
},
{
"id": "(MS -- TN)[1]",
@@ -5323,7 +5449,8 @@
],
"animated": false,
"tooltip": "",
- "icon": null
+ "icon": null,
+ "zIndex": 0
},
{
"id": "(MO -- NE)[2]",
@@ -5369,7 +5496,8 @@
],
"animated": false,
"tooltip": "",
- "icon": null
+ "icon": null,
+ "zIndex": 0
},
{
"id": "(NE -- OK)[1]",
@@ -5423,7 +5551,8 @@
],
"animated": false,
"tooltip": "",
- "icon": null
+ "icon": null,
+ "zIndex": 0
},
{
"id": "(OK -- TN)[1]",
@@ -5469,7 +5598,8 @@
],
"animated": false,
"tooltip": "",
- "icon": null
+ "icon": null,
+ "zIndex": 0
},
{
"id": "(MT -- ND)[0]",
@@ -5507,7 +5637,8 @@
],
"animated": false,
"tooltip": "",
- "icon": null
+ "icon": null,
+ "zIndex": 0
},
{
"id": "(ND -- SD)[1]",
@@ -5545,7 +5676,8 @@
],
"animated": false,
"tooltip": "",
- "icon": null
+ "icon": null,
+ "zIndex": 0
},
{
"id": "(SD -- WY)[0]",
@@ -5599,7 +5731,8 @@
],
"animated": false,
"tooltip": "",
- "icon": null
+ "icon": null,
+ "zIndex": 0
},
{
"id": "(NE -- SD)[1]",
@@ -5645,7 +5778,8 @@
],
"animated": false,
"tooltip": "",
- "icon": null
+ "icon": null,
+ "zIndex": 0
},
{
"id": "(SD -- WY)[1]",
@@ -5699,7 +5833,8 @@
],
"animated": false,
"tooltip": "",
- "icon": null
+ "icon": null,
+ "zIndex": 0
},
{
"id": "(NV -- OR)[2]",
@@ -5745,7 +5880,8 @@
],
"animated": false,
"tooltip": "",
- "icon": null
+ "icon": null,
+ "zIndex": 0
},
{
"id": "(OR -- UT)[1]",
@@ -5783,7 +5919,8 @@
],
"animated": false,
"tooltip": "",
- "icon": null
+ "icon": null,
+ "zIndex": 0
},
{
"id": "(NH -- VT)[0]",
@@ -5829,7 +5966,8 @@
],
"animated": false,
"tooltip": "",
- "icon": null
+ "icon": null,
+ "zIndex": 0
},
{
"id": "(NJ -- NY)[0]",
@@ -5875,7 +6013,8 @@
],
"animated": false,
"tooltip": "",
- "icon": null
+ "icon": null,
+ "zIndex": 0
},
{
"id": "(NY -- PA)[0]",
@@ -5921,7 +6060,8 @@
],
"animated": false,
"tooltip": "",
- "icon": null
+ "icon": null,
+ "zIndex": 0
},
{
"id": "(NM -- OK)[1]",
@@ -5967,7 +6107,8 @@
],
"animated": false,
"tooltip": "",
- "icon": null
+ "icon": null,
+ "zIndex": 0
},
{
"id": "(OK -- TX)[0]",
@@ -6013,7 +6154,8 @@
],
"animated": false,
"tooltip": "",
- "icon": null
+ "icon": null,
+ "zIndex": 0
},
{
"id": "(NY -- PA)[1]",
@@ -6059,7 +6201,8 @@
],
"animated": false,
"tooltip": "",
- "icon": null
+ "icon": null,
+ "zIndex": 0
},
{
"id": "(PA -- RI)[0]",
@@ -6105,7 +6248,8 @@
],
"animated": false,
"tooltip": "",
- "icon": null
+ "icon": null,
+ "zIndex": 0
},
{
"id": "(RI -- VT)[1]",
@@ -6151,7 +6295,8 @@
],
"animated": false,
"tooltip": "",
- "icon": null
+ "icon": null,
+ "zIndex": 0
},
{
"id": "(NC -- SC)[1]",
@@ -6197,7 +6342,8 @@
],
"animated": false,
"tooltip": "",
- "icon": null
+ "icon": null,
+ "zIndex": 0
},
{
"id": "(SC -- TN)[1]",
@@ -6243,7 +6389,8 @@
],
"animated": false,
"tooltip": "",
- "icon": null
+ "icon": null,
+ "zIndex": 0
},
{
"id": "(TN -- VA)[1]",
@@ -6281,7 +6428,8 @@
],
"animated": false,
"tooltip": "",
- "icon": null
+ "icon": null,
+ "zIndex": 0
},
{
"id": "(ND -- SD)[2]",
@@ -6327,7 +6475,8 @@
],
"animated": false,
"tooltip": "",
- "icon": null
+ "icon": null,
+ "zIndex": 0
},
{
"id": "(OH -- PA)[0]",
@@ -6373,7 +6522,8 @@
],
"animated": false,
"tooltip": "",
- "icon": null
+ "icon": null,
+ "zIndex": 0
},
{
"id": "(PA -- WV)[0]",
@@ -6419,7 +6569,8 @@
],
"animated": false,
"tooltip": "",
- "icon": null
+ "icon": null,
+ "zIndex": 0
},
{
"id": "(OK -- TX)[1]",
@@ -6465,7 +6616,8 @@
],
"animated": false,
"tooltip": "",
- "icon": null
+ "icon": null,
+ "zIndex": 0
},
{
"id": "(OR -- WA)[0]",
@@ -6511,7 +6663,8 @@
],
"animated": false,
"tooltip": "",
- "icon": null
+ "icon": null,
+ "zIndex": 0
},
{
"id": "(PA -- WV)[1]",
@@ -6565,7 +6718,8 @@
],
"animated": false,
"tooltip": "",
- "icon": null
+ "icon": null,
+ "zIndex": 0
},
{
"id": "(SD -- WY)[2]",
@@ -6611,7 +6765,8 @@
],
"animated": false,
"tooltip": "",
- "icon": null
+ "icon": null,
+ "zIndex": 0
},
{
"id": "(TN -- VA)[2]",
@@ -6657,7 +6812,8 @@
],
"animated": false,
"tooltip": "",
- "icon": null
+ "icon": null,
+ "zIndex": 0
},
{
"id": "(UT -- WY)[1]",
@@ -6703,7 +6859,8 @@
],
"animated": false,
"tooltip": "",
- "icon": null
+ "icon": null,
+ "zIndex": 0
},
{
"id": "(VA -- WV)[2]",
@@ -6749,7 +6906,8 @@
],
"animated": false,
"tooltip": "",
- "icon": null
+ "icon": null,
+ "zIndex": 0
}
]
}
diff --git a/e2etests/testdata/todo/container_child_edge/dagre/board.exp.json b/e2etests/testdata/todo/container_child_edge/dagre/board.exp.json
index 7dc266f6c..7845aded3 100644
--- a/e2etests/testdata/todo/container_child_edge/dagre/board.exp.json
+++ b/e2etests/testdata/todo/container_child_edge/dagre/board.exp.json
@@ -10,7 +10,6 @@
},
"width": 255,
"height": 452,
- "level": 1,
"opacity": 1,
"strokeDash": 0,
"strokeWidth": 2,
@@ -37,7 +36,9 @@
"underline": false,
"labelWidth": 117,
"labelHeight": 41,
- "labelPosition": "INSIDE_TOP_CENTER"
+ "labelPosition": "INSIDE_TOP_CENTER",
+ "zIndex": 0,
+ "level": 1
},
{
"id": "container.first",
@@ -48,7 +49,6 @@
},
"width": 135,
"height": 126,
- "level": 2,
"opacity": 1,
"strokeDash": 0,
"strokeWidth": 2,
@@ -75,7 +75,9 @@
"underline": false,
"labelWidth": 35,
"labelHeight": 26,
- "labelPosition": "INSIDE_MIDDLE_CENTER"
+ "labelPosition": "INSIDE_MIDDLE_CENTER",
+ "zIndex": 0,
+ "level": 2
},
{
"id": "container.second",
@@ -86,7 +88,6 @@
},
"width": 155,
"height": 126,
- "level": 2,
"opacity": 1,
"strokeDash": 0,
"strokeWidth": 2,
@@ -113,7 +114,9 @@
"underline": false,
"labelWidth": 55,
"labelHeight": 26,
- "labelPosition": "INSIDE_MIDDLE_CENTER"
+ "labelPosition": "INSIDE_MIDDLE_CENTER",
+ "zIndex": 0,
+ "level": 2
}
],
"connections": [
@@ -162,7 +165,8 @@
"isCurve": true,
"animated": false,
"tooltip": "",
- "icon": null
+ "icon": null,
+ "zIndex": 0
},
{
"id": "(container -> container.second)[0]",
@@ -209,7 +213,8 @@
"isCurve": true,
"animated": false,
"tooltip": "",
- "icon": null
+ "icon": null,
+ "zIndex": 0
}
]
}
diff --git a/e2etests/testdata/todo/container_child_edge/elk/board.exp.json b/e2etests/testdata/todo/container_child_edge/elk/board.exp.json
index d87894482..ffec9fbe7 100644
--- a/e2etests/testdata/todo/container_child_edge/elk/board.exp.json
+++ b/e2etests/testdata/todo/container_child_edge/elk/board.exp.json
@@ -10,7 +10,6 @@
},
"width": 336,
"height": 463,
- "level": 1,
"opacity": 1,
"strokeDash": 0,
"strokeWidth": 2,
@@ -37,7 +36,9 @@
"underline": false,
"labelWidth": 117,
"labelHeight": 41,
- "labelPosition": "INSIDE_TOP_CENTER"
+ "labelPosition": "INSIDE_TOP_CENTER",
+ "zIndex": 0,
+ "level": 1
},
{
"id": "container.first",
@@ -48,7 +49,6 @@
},
"width": 135,
"height": 126,
- "level": 2,
"opacity": 1,
"strokeDash": 0,
"strokeWidth": 2,
@@ -75,7 +75,9 @@
"underline": false,
"labelWidth": 35,
"labelHeight": 26,
- "labelPosition": "INSIDE_MIDDLE_CENTER"
+ "labelPosition": "INSIDE_MIDDLE_CENTER",
+ "zIndex": 0,
+ "level": 2
},
{
"id": "container.second",
@@ -86,7 +88,6 @@
},
"width": 155,
"height": 126,
- "level": 2,
"opacity": 1,
"strokeDash": 0,
"strokeWidth": 2,
@@ -113,7 +114,9 @@
"underline": false,
"labelWidth": 55,
"labelHeight": 26,
- "labelPosition": "INSIDE_MIDDLE_CENTER"
+ "labelPosition": "INSIDE_MIDDLE_CENTER",
+ "zIndex": 0,
+ "level": 2
}
],
"connections": [
@@ -153,7 +156,8 @@
],
"animated": false,
"tooltip": "",
- "icon": null
+ "icon": null,
+ "zIndex": 0
},
{
"id": "(container -> container.second)[0]",
@@ -199,7 +203,8 @@
],
"animated": false,
"tooltip": "",
- "icon": null
+ "icon": null,
+ "zIndex": 0
}
]
}
diff --git a/e2etests/testdata/todo/font_sizes_containers_large/dagre/board.exp.json b/e2etests/testdata/todo/font_sizes_containers_large/dagre/board.exp.json
new file mode 100644
index 000000000..4f750e331
--- /dev/null
+++ b/e2etests/testdata/todo/font_sizes_containers_large/dagre/board.exp.json
@@ -0,0 +1,201 @@
+{
+ "name": "",
+ "shapes": [
+ {
+ "id": "ninety nine",
+ "type": "",
+ "pos": {
+ "x": 0,
+ "y": 0
+ },
+ "width": 464,
+ "height": 516,
+ "opacity": 1,
+ "strokeDash": 0,
+ "strokeWidth": 2,
+ "borderRadius": 0,
+ "fill": "#E3E9FD",
+ "stroke": "#0D32B2",
+ "shadow": false,
+ "3d": false,
+ "multiple": false,
+ "tooltip": "",
+ "link": "",
+ "icon": null,
+ "iconPosition": "",
+ "fields": null,
+ "methods": null,
+ "columns": null,
+ "label": "ninety nine",
+ "fontSize": 99,
+ "fontFamily": "DEFAULT",
+ "language": "",
+ "color": "#0A0F25",
+ "italic": false,
+ "bold": true,
+ "underline": false,
+ "labelWidth": 457,
+ "labelHeight": 130,
+ "labelPosition": "INSIDE_TOP_CENTER",
+ "zIndex": 0,
+ "level": 1
+ },
+ {
+ "id": "ninety nine.sixty four",
+ "type": "",
+ "pos": {
+ "x": 40,
+ "y": 50
+ },
+ "width": 384,
+ "height": 416,
+ "opacity": 1,
+ "strokeDash": 0,
+ "strokeWidth": 2,
+ "borderRadius": 0,
+ "fill": "#EDF0FD",
+ "stroke": "#0D32B2",
+ "shadow": false,
+ "3d": false,
+ "multiple": false,
+ "tooltip": "",
+ "link": "",
+ "icon": null,
+ "iconPosition": "",
+ "fields": null,
+ "methods": null,
+ "columns": null,
+ "label": "sixty four",
+ "fontSize": 64,
+ "fontFamily": "DEFAULT",
+ "language": "",
+ "color": "#0A0F25",
+ "italic": false,
+ "bold": true,
+ "underline": false,
+ "labelWidth": 251,
+ "labelHeight": 86,
+ "labelPosition": "INSIDE_TOP_CENTER",
+ "zIndex": 0,
+ "level": 2
+ },
+ {
+ "id": "ninety nine.sixty four.thirty two",
+ "type": "",
+ "pos": {
+ "x": 80,
+ "y": 100
+ },
+ "width": 304,
+ "height": 316,
+ "opacity": 1,
+ "strokeDash": 0,
+ "strokeWidth": 2,
+ "borderRadius": 0,
+ "fill": "#F7F8FE",
+ "stroke": "#0D32B2",
+ "shadow": false,
+ "3d": false,
+ "multiple": false,
+ "tooltip": "",
+ "link": "",
+ "icon": null,
+ "iconPosition": "",
+ "fields": null,
+ "methods": null,
+ "columns": null,
+ "label": "thirty two",
+ "fontSize": 32,
+ "fontFamily": "DEFAULT",
+ "language": "",
+ "color": "#0A0F25",
+ "italic": false,
+ "bold": true,
+ "underline": false,
+ "labelWidth": 135,
+ "labelHeight": 46,
+ "labelPosition": "INSIDE_TOP_CENTER",
+ "zIndex": 0,
+ "level": 3
+ },
+ {
+ "id": "ninety nine.sixty four.thirty two.sixteen",
+ "type": "",
+ "pos": {
+ "x": 120,
+ "y": 150
+ },
+ "width": 224,
+ "height": 216,
+ "opacity": 1,
+ "strokeDash": 0,
+ "strokeWidth": 2,
+ "borderRadius": 0,
+ "fill": "#FFFFFF",
+ "stroke": "#0D32B2",
+ "shadow": false,
+ "3d": false,
+ "multiple": false,
+ "tooltip": "",
+ "link": "",
+ "icon": null,
+ "iconPosition": "",
+ "fields": null,
+ "methods": null,
+ "columns": null,
+ "label": "sixteen",
+ "fontSize": 16,
+ "fontFamily": "DEFAULT",
+ "language": "",
+ "color": "#0A0F25",
+ "italic": false,
+ "bold": true,
+ "underline": false,
+ "labelWidth": 53,
+ "labelHeight": 26,
+ "labelPosition": "INSIDE_TOP_CENTER",
+ "zIndex": 0,
+ "level": 4
+ },
+ {
+ "id": "ninety nine.sixty four.thirty two.sixteen.eight",
+ "type": "",
+ "pos": {
+ "x": 170,
+ "y": 200
+ },
+ "width": 124,
+ "height": 116,
+ "opacity": 1,
+ "strokeDash": 0,
+ "strokeWidth": 2,
+ "borderRadius": 0,
+ "fill": "#FFFFFF",
+ "stroke": "#0D32B2",
+ "shadow": false,
+ "3d": false,
+ "multiple": false,
+ "tooltip": "",
+ "link": "",
+ "icon": null,
+ "iconPosition": "",
+ "fields": null,
+ "methods": null,
+ "columns": null,
+ "label": "eight",
+ "fontSize": 8,
+ "fontFamily": "DEFAULT",
+ "language": "",
+ "color": "#0A0F25",
+ "italic": false,
+ "bold": true,
+ "underline": false,
+ "labelWidth": 24,
+ "labelHeight": 16,
+ "labelPosition": "INSIDE_MIDDLE_CENTER",
+ "zIndex": 0,
+ "level": 5
+ }
+ ],
+ "connections": []
+}
diff --git a/e2etests/testdata/todo/font_sizes_containers_large/dagre/sketch.exp.svg b/e2etests/testdata/todo/font_sizes_containers_large/dagre/sketch.exp.svg
new file mode 100644
index 000000000..4b27ffa33
--- /dev/null
+++ b/e2etests/testdata/todo/font_sizes_containers_large/dagre/sketch.exp.svg
@@ -0,0 +1,24 @@
+
+
\ No newline at end of file
diff --git a/e2etests/testdata/todo/font_sizes_containers_large/elk/board.exp.json b/e2etests/testdata/todo/font_sizes_containers_large/elk/board.exp.json
new file mode 100644
index 000000000..8bccf5a41
--- /dev/null
+++ b/e2etests/testdata/todo/font_sizes_containers_large/elk/board.exp.json
@@ -0,0 +1,201 @@
+{
+ "name": "",
+ "shapes": [
+ {
+ "id": "ninety nine",
+ "type": "",
+ "pos": {
+ "x": 12,
+ "y": 12
+ },
+ "width": 724,
+ "height": 716,
+ "opacity": 1,
+ "strokeDash": 0,
+ "strokeWidth": 2,
+ "borderRadius": 0,
+ "fill": "#E3E9FD",
+ "stroke": "#0D32B2",
+ "shadow": false,
+ "3d": false,
+ "multiple": false,
+ "tooltip": "",
+ "link": "",
+ "icon": null,
+ "iconPosition": "",
+ "fields": null,
+ "methods": null,
+ "columns": null,
+ "label": "ninety nine",
+ "fontSize": 99,
+ "fontFamily": "DEFAULT",
+ "language": "",
+ "color": "#0A0F25",
+ "italic": false,
+ "bold": true,
+ "underline": false,
+ "labelWidth": 457,
+ "labelHeight": 130,
+ "labelPosition": "INSIDE_TOP_CENTER",
+ "zIndex": 0,
+ "level": 1
+ },
+ {
+ "id": "ninety nine.sixty four",
+ "type": "",
+ "pos": {
+ "x": 87,
+ "y": 87
+ },
+ "width": 574,
+ "height": 566,
+ "opacity": 1,
+ "strokeDash": 0,
+ "strokeWidth": 2,
+ "borderRadius": 0,
+ "fill": "#EDF0FD",
+ "stroke": "#0D32B2",
+ "shadow": false,
+ "3d": false,
+ "multiple": false,
+ "tooltip": "",
+ "link": "",
+ "icon": null,
+ "iconPosition": "",
+ "fields": null,
+ "methods": null,
+ "columns": null,
+ "label": "sixty four",
+ "fontSize": 64,
+ "fontFamily": "DEFAULT",
+ "language": "",
+ "color": "#0A0F25",
+ "italic": false,
+ "bold": true,
+ "underline": false,
+ "labelWidth": 251,
+ "labelHeight": 86,
+ "labelPosition": "INSIDE_TOP_CENTER",
+ "zIndex": 0,
+ "level": 2
+ },
+ {
+ "id": "ninety nine.sixty four.thirty two",
+ "type": "",
+ "pos": {
+ "x": 162,
+ "y": 162
+ },
+ "width": 424,
+ "height": 416,
+ "opacity": 1,
+ "strokeDash": 0,
+ "strokeWidth": 2,
+ "borderRadius": 0,
+ "fill": "#F7F8FE",
+ "stroke": "#0D32B2",
+ "shadow": false,
+ "3d": false,
+ "multiple": false,
+ "tooltip": "",
+ "link": "",
+ "icon": null,
+ "iconPosition": "",
+ "fields": null,
+ "methods": null,
+ "columns": null,
+ "label": "thirty two",
+ "fontSize": 32,
+ "fontFamily": "DEFAULT",
+ "language": "",
+ "color": "#0A0F25",
+ "italic": false,
+ "bold": true,
+ "underline": false,
+ "labelWidth": 135,
+ "labelHeight": 46,
+ "labelPosition": "INSIDE_TOP_CENTER",
+ "zIndex": 0,
+ "level": 3
+ },
+ {
+ "id": "ninety nine.sixty four.thirty two.sixteen",
+ "type": "",
+ "pos": {
+ "x": 237,
+ "y": 237
+ },
+ "width": 274,
+ "height": 266,
+ "opacity": 1,
+ "strokeDash": 0,
+ "strokeWidth": 2,
+ "borderRadius": 0,
+ "fill": "#FFFFFF",
+ "stroke": "#0D32B2",
+ "shadow": false,
+ "3d": false,
+ "multiple": false,
+ "tooltip": "",
+ "link": "",
+ "icon": null,
+ "iconPosition": "",
+ "fields": null,
+ "methods": null,
+ "columns": null,
+ "label": "sixteen",
+ "fontSize": 16,
+ "fontFamily": "DEFAULT",
+ "language": "",
+ "color": "#0A0F25",
+ "italic": false,
+ "bold": true,
+ "underline": false,
+ "labelWidth": 53,
+ "labelHeight": 26,
+ "labelPosition": "INSIDE_TOP_CENTER",
+ "zIndex": 0,
+ "level": 4
+ },
+ {
+ "id": "ninety nine.sixty four.thirty two.sixteen.eight",
+ "type": "",
+ "pos": {
+ "x": 312,
+ "y": 312
+ },
+ "width": 124,
+ "height": 116,
+ "opacity": 1,
+ "strokeDash": 0,
+ "strokeWidth": 2,
+ "borderRadius": 0,
+ "fill": "#FFFFFF",
+ "stroke": "#0D32B2",
+ "shadow": false,
+ "3d": false,
+ "multiple": false,
+ "tooltip": "",
+ "link": "",
+ "icon": null,
+ "iconPosition": "",
+ "fields": null,
+ "methods": null,
+ "columns": null,
+ "label": "eight",
+ "fontSize": 8,
+ "fontFamily": "DEFAULT",
+ "language": "",
+ "color": "#0A0F25",
+ "italic": false,
+ "bold": true,
+ "underline": false,
+ "labelWidth": 24,
+ "labelHeight": 16,
+ "labelPosition": "INSIDE_MIDDLE_CENTER",
+ "zIndex": 0,
+ "level": 5
+ }
+ ],
+ "connections": []
+}
diff --git a/e2etests/testdata/todo/font_sizes_containers_large/elk/sketch.exp.svg b/e2etests/testdata/todo/font_sizes_containers_large/elk/sketch.exp.svg
new file mode 100644
index 000000000..39dd19532
--- /dev/null
+++ b/e2etests/testdata/todo/font_sizes_containers_large/elk/sketch.exp.svg
@@ -0,0 +1,24 @@
+
+
\ No newline at end of file
diff --git a/e2etests/testdata/todo/font_sizes_large/dagre/board.exp.json b/e2etests/testdata/todo/font_sizes_large/dagre/board.exp.json
new file mode 100644
index 000000000..d324739bf
--- /dev/null
+++ b/e2etests/testdata/todo/font_sizes_large/dagre/board.exp.json
@@ -0,0 +1,394 @@
+{
+ "name": "",
+ "shapes": [
+ {
+ "id": "eight",
+ "type": "",
+ "pos": {
+ "x": 233,
+ "y": 0
+ },
+ "width": 124,
+ "height": 116,
+ "opacity": 1,
+ "strokeDash": 0,
+ "strokeWidth": 2,
+ "borderRadius": 0,
+ "fill": "#F7F8FE",
+ "stroke": "#0D32B2",
+ "shadow": false,
+ "3d": false,
+ "multiple": false,
+ "tooltip": "",
+ "link": "",
+ "icon": null,
+ "iconPosition": "",
+ "fields": null,
+ "methods": null,
+ "columns": null,
+ "label": "eight",
+ "fontSize": 8,
+ "fontFamily": "DEFAULT",
+ "language": "",
+ "color": "#0A0F25",
+ "italic": false,
+ "bold": true,
+ "underline": false,
+ "labelWidth": 24,
+ "labelHeight": 16,
+ "labelPosition": "INSIDE_MIDDLE_CENTER",
+ "zIndex": 0,
+ "level": 1
+ },
+ {
+ "id": "sixteen",
+ "type": "",
+ "pos": {
+ "x": 216,
+ "y": 216
+ },
+ "width": 157,
+ "height": 126,
+ "opacity": 1,
+ "strokeDash": 0,
+ "strokeWidth": 2,
+ "borderRadius": 0,
+ "fill": "#F7F8FE",
+ "stroke": "#0D32B2",
+ "shadow": false,
+ "3d": false,
+ "multiple": false,
+ "tooltip": "",
+ "link": "",
+ "icon": null,
+ "iconPosition": "",
+ "fields": null,
+ "methods": null,
+ "columns": null,
+ "label": "sixteen",
+ "fontSize": 16,
+ "fontFamily": "DEFAULT",
+ "language": "",
+ "color": "#0A0F25",
+ "italic": false,
+ "bold": true,
+ "underline": false,
+ "labelWidth": 57,
+ "labelHeight": 26,
+ "labelPosition": "INSIDE_MIDDLE_CENTER",
+ "zIndex": 0,
+ "level": 1
+ },
+ {
+ "id": "thirty two",
+ "type": "",
+ "pos": {
+ "x": 171,
+ "y": 442
+ },
+ "width": 247,
+ "height": 146,
+ "opacity": 1,
+ "strokeDash": 0,
+ "strokeWidth": 2,
+ "borderRadius": 0,
+ "fill": "#F7F8FE",
+ "stroke": "#0D32B2",
+ "shadow": false,
+ "3d": false,
+ "multiple": false,
+ "tooltip": "",
+ "link": "",
+ "icon": null,
+ "iconPosition": "",
+ "fields": null,
+ "methods": null,
+ "columns": null,
+ "label": "thirty two",
+ "fontSize": 32,
+ "fontFamily": "DEFAULT",
+ "language": "",
+ "color": "#0A0F25",
+ "italic": false,
+ "bold": true,
+ "underline": false,
+ "labelWidth": 147,
+ "labelHeight": 46,
+ "labelPosition": "INSIDE_MIDDLE_CENTER",
+ "zIndex": 0,
+ "level": 1
+ },
+ {
+ "id": "sixty four",
+ "type": "",
+ "pos": {
+ "x": 108,
+ "y": 688
+ },
+ "width": 374,
+ "height": 186,
+ "opacity": 1,
+ "strokeDash": 0,
+ "strokeWidth": 2,
+ "borderRadius": 0,
+ "fill": "#F7F8FE",
+ "stroke": "#0D32B2",
+ "shadow": false,
+ "3d": false,
+ "multiple": false,
+ "tooltip": "",
+ "link": "",
+ "icon": null,
+ "iconPosition": "",
+ "fields": null,
+ "methods": null,
+ "columns": null,
+ "label": "sixty four",
+ "fontSize": 64,
+ "fontFamily": "DEFAULT",
+ "language": "",
+ "color": "#0A0F25",
+ "italic": false,
+ "bold": true,
+ "underline": false,
+ "labelWidth": 274,
+ "labelHeight": 86,
+ "labelPosition": "INSIDE_MIDDLE_CENTER",
+ "zIndex": 0,
+ "level": 1
+ },
+ {
+ "id": "ninety nine",
+ "type": "",
+ "pos": {
+ "x": 0,
+ "y": 974
+ },
+ "width": 589,
+ "height": 230,
+ "opacity": 1,
+ "strokeDash": 0,
+ "strokeWidth": 2,
+ "borderRadius": 0,
+ "fill": "#F7F8FE",
+ "stroke": "#0D32B2",
+ "shadow": false,
+ "3d": false,
+ "multiple": false,
+ "tooltip": "",
+ "link": "",
+ "icon": null,
+ "iconPosition": "",
+ "fields": null,
+ "methods": null,
+ "columns": null,
+ "label": "ninety nine",
+ "fontSize": 99,
+ "fontFamily": "DEFAULT",
+ "language": "",
+ "color": "#0A0F25",
+ "italic": false,
+ "bold": true,
+ "underline": false,
+ "labelWidth": 489,
+ "labelHeight": 130,
+ "labelPosition": "INSIDE_MIDDLE_CENTER",
+ "zIndex": 0,
+ "level": 1
+ }
+ ],
+ "connections": [
+ {
+ "id": "(eight -> sixteen)[0]",
+ "src": "eight",
+ "srcArrow": "none",
+ "srcLabel": "",
+ "dst": "sixteen",
+ "dstArrow": "triangle",
+ "dstLabel": "",
+ "opacity": 1,
+ "strokeDash": 0,
+ "strokeWidth": 2,
+ "stroke": "#0D32B2",
+ "label": "twelve",
+ "fontSize": 12,
+ "fontFamily": "DEFAULT",
+ "language": "",
+ "color": "#676C7E",
+ "italic": true,
+ "bold": false,
+ "underline": false,
+ "labelWidth": 33,
+ "labelHeight": 16,
+ "labelPosition": "INSIDE_MIDDLE_CENTER",
+ "labelPercentage": 0,
+ "route": [
+ {
+ "x": 294.5,
+ "y": 116
+ },
+ {
+ "x": 294.5,
+ "y": 156
+ },
+ {
+ "x": 294.5,
+ "y": 176
+ },
+ {
+ "x": 294.5,
+ "y": 216
+ }
+ ],
+ "isCurve": true,
+ "animated": false,
+ "tooltip": "",
+ "icon": null,
+ "zIndex": 0
+ },
+ {
+ "id": "(sixteen -> thirty two)[0]",
+ "src": "sixteen",
+ "srcArrow": "none",
+ "srcLabel": "",
+ "dst": "thirty two",
+ "dstArrow": "triangle",
+ "dstLabel": "",
+ "opacity": 1,
+ "strokeDash": 0,
+ "strokeWidth": 2,
+ "stroke": "#0D32B2",
+ "label": "twenty four",
+ "fontSize": 24,
+ "fontFamily": "DEFAULT",
+ "language": "",
+ "color": "#676C7E",
+ "italic": true,
+ "bold": false,
+ "underline": false,
+ "labelWidth": 114,
+ "labelHeight": 31,
+ "labelPosition": "INSIDE_MIDDLE_CENTER",
+ "labelPercentage": 0,
+ "route": [
+ {
+ "x": 294.5,
+ "y": 342
+ },
+ {
+ "x": 294.5,
+ "y": 382
+ },
+ {
+ "x": 294.5,
+ "y": 402
+ },
+ {
+ "x": 294.5,
+ "y": 442
+ }
+ ],
+ "isCurve": true,
+ "animated": false,
+ "tooltip": "",
+ "icon": null,
+ "zIndex": 0
+ },
+ {
+ "id": "(thirty two -> sixty four)[0]",
+ "src": "thirty two",
+ "srcArrow": "none",
+ "srcLabel": "",
+ "dst": "sixty four",
+ "dstArrow": "triangle",
+ "dstLabel": "",
+ "opacity": 1,
+ "strokeDash": 0,
+ "strokeWidth": 2,
+ "stroke": "#0D32B2",
+ "label": "forty eight",
+ "fontSize": 48,
+ "fontFamily": "DEFAULT",
+ "language": "",
+ "color": "#676C7E",
+ "italic": true,
+ "bold": false,
+ "underline": false,
+ "labelWidth": 202,
+ "labelHeight": 61,
+ "labelPosition": "INSIDE_MIDDLE_CENTER",
+ "labelPercentage": 0,
+ "route": [
+ {
+ "x": 294.5,
+ "y": 588
+ },
+ {
+ "x": 294.5,
+ "y": 628
+ },
+ {
+ "x": 294.5,
+ "y": 648
+ },
+ {
+ "x": 294.5,
+ "y": 688
+ }
+ ],
+ "isCurve": true,
+ "animated": false,
+ "tooltip": "",
+ "icon": null,
+ "zIndex": 0
+ },
+ {
+ "id": "(sixty four -> ninety nine)[0]",
+ "src": "sixty four",
+ "srcArrow": "none",
+ "srcLabel": "",
+ "dst": "ninety nine",
+ "dstArrow": "triangle",
+ "dstLabel": "",
+ "opacity": 1,
+ "strokeDash": 0,
+ "strokeWidth": 2,
+ "stroke": "#0D32B2",
+ "label": "eighty one",
+ "fontSize": 81,
+ "fontFamily": "DEFAULT",
+ "language": "",
+ "color": "#676C7E",
+ "italic": true,
+ "bold": false,
+ "underline": false,
+ "labelWidth": 341,
+ "labelHeight": 102,
+ "labelPosition": "INSIDE_MIDDLE_CENTER",
+ "labelPercentage": 0,
+ "route": [
+ {
+ "x": 294.5,
+ "y": 874
+ },
+ {
+ "x": 294.5,
+ "y": 914
+ },
+ {
+ "x": 294.5,
+ "y": 934
+ },
+ {
+ "x": 294.5,
+ "y": 974
+ }
+ ],
+ "isCurve": true,
+ "animated": false,
+ "tooltip": "",
+ "icon": null,
+ "zIndex": 0
+ }
+ ]
+}
diff --git a/e2etests/testdata/todo/font_sizes_large/dagre/sketch.exp.svg b/e2etests/testdata/todo/font_sizes_large/dagre/sketch.exp.svg
new file mode 100644
index 000000000..34988351e
--- /dev/null
+++ b/e2etests/testdata/todo/font_sizes_large/dagre/sketch.exp.svg
@@ -0,0 +1,43 @@
+
+
\ No newline at end of file
diff --git a/e2etests/testdata/todo/font_sizes_large/elk/board.exp.json b/e2etests/testdata/todo/font_sizes_large/elk/board.exp.json
new file mode 100644
index 000000000..03661ef73
--- /dev/null
+++ b/e2etests/testdata/todo/font_sizes_large/elk/board.exp.json
@@ -0,0 +1,358 @@
+{
+ "name": "",
+ "shapes": [
+ {
+ "id": "eight",
+ "type": "",
+ "pos": {
+ "x": 293,
+ "y": 12
+ },
+ "width": 124,
+ "height": 116,
+ "opacity": 1,
+ "strokeDash": 0,
+ "strokeWidth": 2,
+ "borderRadius": 0,
+ "fill": "#F7F8FE",
+ "stroke": "#0D32B2",
+ "shadow": false,
+ "3d": false,
+ "multiple": false,
+ "tooltip": "",
+ "link": "",
+ "icon": null,
+ "iconPosition": "",
+ "fields": null,
+ "methods": null,
+ "columns": null,
+ "label": "eight",
+ "fontSize": 8,
+ "fontFamily": "DEFAULT",
+ "language": "",
+ "color": "#0A0F25",
+ "italic": false,
+ "bold": true,
+ "underline": false,
+ "labelWidth": 24,
+ "labelHeight": 16,
+ "labelPosition": "INSIDE_MIDDLE_CENTER",
+ "zIndex": 0,
+ "level": 1
+ },
+ {
+ "id": "sixteen",
+ "type": "",
+ "pos": {
+ "x": 277,
+ "y": 344
+ },
+ "width": 157,
+ "height": 126,
+ "opacity": 1,
+ "strokeDash": 0,
+ "strokeWidth": 2,
+ "borderRadius": 0,
+ "fill": "#F7F8FE",
+ "stroke": "#0D32B2",
+ "shadow": false,
+ "3d": false,
+ "multiple": false,
+ "tooltip": "",
+ "link": "",
+ "icon": null,
+ "iconPosition": "",
+ "fields": null,
+ "methods": null,
+ "columns": null,
+ "label": "sixteen",
+ "fontSize": 16,
+ "fontFamily": "DEFAULT",
+ "language": "",
+ "color": "#0A0F25",
+ "italic": false,
+ "bold": true,
+ "underline": false,
+ "labelWidth": 57,
+ "labelHeight": 26,
+ "labelPosition": "INSIDE_MIDDLE_CENTER",
+ "zIndex": 0,
+ "level": 1
+ },
+ {
+ "id": "thirty two",
+ "type": "",
+ "pos": {
+ "x": 232,
+ "y": 701
+ },
+ "width": 247,
+ "height": 146,
+ "opacity": 1,
+ "strokeDash": 0,
+ "strokeWidth": 2,
+ "borderRadius": 0,
+ "fill": "#F7F8FE",
+ "stroke": "#0D32B2",
+ "shadow": false,
+ "3d": false,
+ "multiple": false,
+ "tooltip": "",
+ "link": "",
+ "icon": null,
+ "iconPosition": "",
+ "fields": null,
+ "methods": null,
+ "columns": null,
+ "label": "thirty two",
+ "fontSize": 32,
+ "fontFamily": "DEFAULT",
+ "language": "",
+ "color": "#0A0F25",
+ "italic": false,
+ "bold": true,
+ "underline": false,
+ "labelWidth": 147,
+ "labelHeight": 46,
+ "labelPosition": "INSIDE_MIDDLE_CENTER",
+ "zIndex": 0,
+ "level": 1
+ },
+ {
+ "id": "sixty four",
+ "type": "",
+ "pos": {
+ "x": 168,
+ "y": 1108
+ },
+ "width": 374,
+ "height": 186,
+ "opacity": 1,
+ "strokeDash": 0,
+ "strokeWidth": 2,
+ "borderRadius": 0,
+ "fill": "#F7F8FE",
+ "stroke": "#0D32B2",
+ "shadow": false,
+ "3d": false,
+ "multiple": false,
+ "tooltip": "",
+ "link": "",
+ "icon": null,
+ "iconPosition": "",
+ "fields": null,
+ "methods": null,
+ "columns": null,
+ "label": "sixty four",
+ "fontSize": 64,
+ "fontFamily": "DEFAULT",
+ "language": "",
+ "color": "#0A0F25",
+ "italic": false,
+ "bold": true,
+ "underline": false,
+ "labelWidth": 274,
+ "labelHeight": 86,
+ "labelPosition": "INSIDE_MIDDLE_CENTER",
+ "zIndex": 0,
+ "level": 1
+ },
+ {
+ "id": "ninety nine",
+ "type": "",
+ "pos": {
+ "x": 61,
+ "y": 1596
+ },
+ "width": 589,
+ "height": 230,
+ "opacity": 1,
+ "strokeDash": 0,
+ "strokeWidth": 2,
+ "borderRadius": 0,
+ "fill": "#F7F8FE",
+ "stroke": "#0D32B2",
+ "shadow": false,
+ "3d": false,
+ "multiple": false,
+ "tooltip": "",
+ "link": "",
+ "icon": null,
+ "iconPosition": "",
+ "fields": null,
+ "methods": null,
+ "columns": null,
+ "label": "ninety nine",
+ "fontSize": 99,
+ "fontFamily": "DEFAULT",
+ "language": "",
+ "color": "#0A0F25",
+ "italic": false,
+ "bold": true,
+ "underline": false,
+ "labelWidth": 489,
+ "labelHeight": 130,
+ "labelPosition": "INSIDE_MIDDLE_CENTER",
+ "zIndex": 0,
+ "level": 1
+ }
+ ],
+ "connections": [
+ {
+ "id": "(eight -> sixteen)[0]",
+ "src": "eight",
+ "srcArrow": "none",
+ "srcLabel": "",
+ "dst": "sixteen",
+ "dstArrow": "triangle",
+ "dstLabel": "",
+ "opacity": 1,
+ "strokeDash": 0,
+ "strokeWidth": 2,
+ "stroke": "#0D32B2",
+ "label": "twelve",
+ "fontSize": 12,
+ "fontFamily": "DEFAULT",
+ "language": "",
+ "color": "#676C7E",
+ "italic": true,
+ "bold": false,
+ "underline": false,
+ "labelWidth": 33,
+ "labelHeight": 16,
+ "labelPosition": "INSIDE_MIDDLE_CENTER",
+ "labelPercentage": 0,
+ "route": [
+ {
+ "x": 355,
+ "y": 128
+ },
+ {
+ "x": 355,
+ "y": 344
+ }
+ ],
+ "animated": false,
+ "tooltip": "",
+ "icon": null,
+ "zIndex": 0
+ },
+ {
+ "id": "(sixteen -> thirty two)[0]",
+ "src": "sixteen",
+ "srcArrow": "none",
+ "srcLabel": "",
+ "dst": "thirty two",
+ "dstArrow": "triangle",
+ "dstLabel": "",
+ "opacity": 1,
+ "strokeDash": 0,
+ "strokeWidth": 2,
+ "stroke": "#0D32B2",
+ "label": "twenty four",
+ "fontSize": 24,
+ "fontFamily": "DEFAULT",
+ "language": "",
+ "color": "#676C7E",
+ "italic": true,
+ "bold": false,
+ "underline": false,
+ "labelWidth": 114,
+ "labelHeight": 31,
+ "labelPosition": "INSIDE_MIDDLE_CENTER",
+ "labelPercentage": 0,
+ "route": [
+ {
+ "x": 355,
+ "y": 470
+ },
+ {
+ "x": 355,
+ "y": 701
+ }
+ ],
+ "animated": false,
+ "tooltip": "",
+ "icon": null,
+ "zIndex": 0
+ },
+ {
+ "id": "(thirty two -> sixty four)[0]",
+ "src": "thirty two",
+ "srcArrow": "none",
+ "srcLabel": "",
+ "dst": "sixty four",
+ "dstArrow": "triangle",
+ "dstLabel": "",
+ "opacity": 1,
+ "strokeDash": 0,
+ "strokeWidth": 2,
+ "stroke": "#0D32B2",
+ "label": "forty eight",
+ "fontSize": 48,
+ "fontFamily": "DEFAULT",
+ "language": "",
+ "color": "#676C7E",
+ "italic": true,
+ "bold": false,
+ "underline": false,
+ "labelWidth": 202,
+ "labelHeight": 61,
+ "labelPosition": "INSIDE_MIDDLE_CENTER",
+ "labelPercentage": 0,
+ "route": [
+ {
+ "x": 355,
+ "y": 847
+ },
+ {
+ "x": 355,
+ "y": 1108
+ }
+ ],
+ "animated": false,
+ "tooltip": "",
+ "icon": null,
+ "zIndex": 0
+ },
+ {
+ "id": "(sixty four -> ninety nine)[0]",
+ "src": "sixty four",
+ "srcArrow": "none",
+ "srcLabel": "",
+ "dst": "ninety nine",
+ "dstArrow": "triangle",
+ "dstLabel": "",
+ "opacity": 1,
+ "strokeDash": 0,
+ "strokeWidth": 2,
+ "stroke": "#0D32B2",
+ "label": "eighty one",
+ "fontSize": 81,
+ "fontFamily": "DEFAULT",
+ "language": "",
+ "color": "#676C7E",
+ "italic": true,
+ "bold": false,
+ "underline": false,
+ "labelWidth": 341,
+ "labelHeight": 102,
+ "labelPosition": "INSIDE_MIDDLE_CENTER",
+ "labelPercentage": 0,
+ "route": [
+ {
+ "x": 355,
+ "y": 1294
+ },
+ {
+ "x": 355,
+ "y": 1596
+ }
+ ],
+ "animated": false,
+ "tooltip": "",
+ "icon": null,
+ "zIndex": 0
+ }
+ ]
+}
diff --git a/e2etests/testdata/todo/font_sizes_large/elk/sketch.exp.svg b/e2etests/testdata/todo/font_sizes_large/elk/sketch.exp.svg
new file mode 100644
index 000000000..7dcdaf0d5
--- /dev/null
+++ b/e2etests/testdata/todo/font_sizes_large/elk/sketch.exp.svg
@@ -0,0 +1,43 @@
+
+
\ No newline at end of file
diff --git a/e2etests/testdata/todo/tall_edge_label/dagre/board.exp.json b/e2etests/testdata/todo/tall_edge_label/dagre/board.exp.json
new file mode 100644
index 000000000..4f763c08b
--- /dev/null
+++ b/e2etests/testdata/todo/tall_edge_label/dagre/board.exp.json
@@ -0,0 +1,133 @@
+{
+ "name": "",
+ "shapes": [
+ {
+ "id": "a",
+ "type": "",
+ "pos": {
+ "x": 0,
+ "y": 0
+ },
+ "width": 113,
+ "height": 126,
+ "opacity": 1,
+ "strokeDash": 0,
+ "strokeWidth": 2,
+ "borderRadius": 0,
+ "fill": "#F7F8FE",
+ "stroke": "#0D32B2",
+ "shadow": false,
+ "3d": false,
+ "multiple": false,
+ "tooltip": "",
+ "link": "",
+ "icon": null,
+ "iconPosition": "",
+ "fields": null,
+ "methods": null,
+ "columns": null,
+ "label": "a",
+ "fontSize": 16,
+ "fontFamily": "DEFAULT",
+ "language": "",
+ "color": "#0A0F25",
+ "italic": false,
+ "bold": true,
+ "underline": false,
+ "labelWidth": 13,
+ "labelHeight": 26,
+ "labelPosition": "INSIDE_MIDDLE_CENTER",
+ "zIndex": 0,
+ "level": 1
+ },
+ {
+ "id": "b",
+ "type": "",
+ "pos": {
+ "x": 0,
+ "y": 226
+ },
+ "width": 113,
+ "height": 126,
+ "opacity": 1,
+ "strokeDash": 0,
+ "strokeWidth": 2,
+ "borderRadius": 0,
+ "fill": "#F7F8FE",
+ "stroke": "#0D32B2",
+ "shadow": false,
+ "3d": false,
+ "multiple": false,
+ "tooltip": "",
+ "link": "",
+ "icon": null,
+ "iconPosition": "",
+ "fields": null,
+ "methods": null,
+ "columns": null,
+ "label": "b",
+ "fontSize": 16,
+ "fontFamily": "DEFAULT",
+ "language": "",
+ "color": "#0A0F25",
+ "italic": false,
+ "bold": true,
+ "underline": false,
+ "labelWidth": 13,
+ "labelHeight": 26,
+ "labelPosition": "INSIDE_MIDDLE_CENTER",
+ "zIndex": 0,
+ "level": 1
+ }
+ ],
+ "connections": [
+ {
+ "id": "(a -> b)[0]",
+ "src": "a",
+ "srcArrow": "none",
+ "srcLabel": "",
+ "dst": "b",
+ "dstArrow": "triangle",
+ "dstLabel": "",
+ "opacity": 1,
+ "strokeDash": 0,
+ "strokeWidth": 2,
+ "stroke": "#0D32B2",
+ "label": "There\nonce\nwas\na\nvery\ntall\nedge\nlabel",
+ "fontSize": 16,
+ "fontFamily": "DEFAULT",
+ "language": "",
+ "color": "#676C7E",
+ "italic": true,
+ "bold": false,
+ "underline": false,
+ "labelWidth": 38,
+ "labelHeight": 133,
+ "labelPosition": "INSIDE_MIDDLE_CENTER",
+ "labelPercentage": 0,
+ "route": [
+ {
+ "x": 56.5,
+ "y": 126
+ },
+ {
+ "x": 56.5,
+ "y": 166
+ },
+ {
+ "x": 56.5,
+ "y": 186
+ },
+ {
+ "x": 56.5,
+ "y": 226
+ }
+ ],
+ "isCurve": true,
+ "animated": false,
+ "tooltip": "",
+ "icon": null,
+ "zIndex": 0
+ }
+ ]
+}
diff --git a/e2etests/testdata/todo/tall_edge_label/dagre/sketch.exp.svg b/e2etests/testdata/todo/tall_edge_label/dagre/sketch.exp.svg
new file mode 100644
index 000000000..986f6e3a5
--- /dev/null
+++ b/e2etests/testdata/todo/tall_edge_label/dagre/sketch.exp.svg
@@ -0,0 +1,34 @@
+
+
\ No newline at end of file
diff --git a/e2etests/testdata/todo/tall_edge_label/elk/board.exp.json b/e2etests/testdata/todo/tall_edge_label/elk/board.exp.json
new file mode 100644
index 000000000..1d7e56a74
--- /dev/null
+++ b/e2etests/testdata/todo/tall_edge_label/elk/board.exp.json
@@ -0,0 +1,124 @@
+{
+ "name": "",
+ "shapes": [
+ {
+ "id": "a",
+ "type": "",
+ "pos": {
+ "x": 12,
+ "y": 12
+ },
+ "width": 113,
+ "height": 126,
+ "opacity": 1,
+ "strokeDash": 0,
+ "strokeWidth": 2,
+ "borderRadius": 0,
+ "fill": "#F7F8FE",
+ "stroke": "#0D32B2",
+ "shadow": false,
+ "3d": false,
+ "multiple": false,
+ "tooltip": "",
+ "link": "",
+ "icon": null,
+ "iconPosition": "",
+ "fields": null,
+ "methods": null,
+ "columns": null,
+ "label": "a",
+ "fontSize": 16,
+ "fontFamily": "DEFAULT",
+ "language": "",
+ "color": "#0A0F25",
+ "italic": false,
+ "bold": true,
+ "underline": false,
+ "labelWidth": 13,
+ "labelHeight": 26,
+ "labelPosition": "INSIDE_MIDDLE_CENTER",
+ "zIndex": 0,
+ "level": 1
+ },
+ {
+ "id": "b",
+ "type": "",
+ "pos": {
+ "x": 12,
+ "y": 471
+ },
+ "width": 113,
+ "height": 126,
+ "opacity": 1,
+ "strokeDash": 0,
+ "strokeWidth": 2,
+ "borderRadius": 0,
+ "fill": "#F7F8FE",
+ "stroke": "#0D32B2",
+ "shadow": false,
+ "3d": false,
+ "multiple": false,
+ "tooltip": "",
+ "link": "",
+ "icon": null,
+ "iconPosition": "",
+ "fields": null,
+ "methods": null,
+ "columns": null,
+ "label": "b",
+ "fontSize": 16,
+ "fontFamily": "DEFAULT",
+ "language": "",
+ "color": "#0A0F25",
+ "italic": false,
+ "bold": true,
+ "underline": false,
+ "labelWidth": 13,
+ "labelHeight": 26,
+ "labelPosition": "INSIDE_MIDDLE_CENTER",
+ "zIndex": 0,
+ "level": 1
+ }
+ ],
+ "connections": [
+ {
+ "id": "(a -> b)[0]",
+ "src": "a",
+ "srcArrow": "none",
+ "srcLabel": "",
+ "dst": "b",
+ "dstArrow": "triangle",
+ "dstLabel": "",
+ "opacity": 1,
+ "strokeDash": 0,
+ "strokeWidth": 2,
+ "stroke": "#0D32B2",
+ "label": "There\nonce\nwas\na\nvery\ntall\nedge\nlabel",
+ "fontSize": 16,
+ "fontFamily": "DEFAULT",
+ "language": "",
+ "color": "#676C7E",
+ "italic": true,
+ "bold": false,
+ "underline": false,
+ "labelWidth": 38,
+ "labelHeight": 133,
+ "labelPosition": "INSIDE_MIDDLE_CENTER",
+ "labelPercentage": 0,
+ "route": [
+ {
+ "x": 68.5,
+ "y": 138
+ },
+ {
+ "x": 68.5,
+ "y": 471
+ }
+ ],
+ "animated": false,
+ "tooltip": "",
+ "icon": null,
+ "zIndex": 0
+ }
+ ]
+}
diff --git a/e2etests/testdata/todo/tall_edge_label/elk/sketch.exp.svg b/e2etests/testdata/todo/tall_edge_label/elk/sketch.exp.svg
new file mode 100644
index 000000000..fd896fed3
--- /dev/null
+++ b/e2etests/testdata/todo/tall_edge_label/elk/sketch.exp.svg
@@ -0,0 +1,34 @@
+
+
\ No newline at end of file
diff --git a/e2etests/todo_test.go b/e2etests/todo_test.go
index 4ec848e48..a0cecce13 100644
--- a/e2etests/todo_test.go
+++ b/e2etests/todo_test.go
@@ -13,6 +13,58 @@ func testTodo(t *testing.T) {
script: `
container.first -> container.second: 1->2
container -> container.second: c->2
+`,
+ },
+ {
+ // issue https://github.com/terrastruct/d2/issues/263
+ name: "tall_edge_label",
+ script: `
+a -> b: There\nonce\nwas\na\nvery\ntall\nedge\nlabel
+`,
+ },
+ {
+ // issue https://github.com/terrastruct/d2/issues/263
+ name: "font_sizes_large",
+ script: `
+eight.style.font-size: 8
+sixteen.style.font-size: 16
+thirty two.style.font-size: 32
+sixty four.style.font-size: 64
+ninety nine.style.font-size: 99
+
+eight -> sixteen : twelve {
+ style.font-size: 12
+}
+sixteen -> thirty two : twenty four {
+ style.font-size: 24
+}
+thirty two -> sixty four: forty eight {
+ style.font-size: 48
+}
+sixty four -> ninety nine: eighty one {
+ style.font-size: 81
+}
+`,
+ },
+ {
+ // issue https://github.com/terrastruct/d2/issues/19
+ name: "font_sizes_containers_large",
+ script: `
+ninety nine: {
+ style.font-size: 99
+ sixty four: {
+ style.font-size: 64
+ thirty two:{
+ style.font-size: 32
+ sixteen: {
+ style.font-size: 16
+ eight: {
+ style.font-size: 8
+ }
+ }
+ }
+ }
+}
`,
},
}
diff --git a/testdata/d2compiler/TestCompile/basic_icon.exp.json b/testdata/d2compiler/TestCompile/basic_icon.exp.json
index 25b5f7093..02ede7ad0 100644
--- a/testdata/d2compiler/TestCompile/basic_icon.exp.json
+++ b/testdata/d2compiler/TestCompile/basic_icon.exp.json
@@ -91,7 +91,8 @@
"direction": {
"value": ""
}
- }
+ },
+ "zIndex": 0
},
"edges": null,
"objects": [
@@ -148,7 +149,8 @@
"direction": {
"value": ""
}
- }
+ },
+ "zIndex": 0
}
]
},
diff --git a/testdata/d2compiler/TestCompile/basic_sequence.exp.json b/testdata/d2compiler/TestCompile/basic_sequence.exp.json
index 072abeff2..f8d4b1304 100644
--- a/testdata/d2compiler/TestCompile/basic_sequence.exp.json
+++ b/testdata/d2compiler/TestCompile/basic_sequence.exp.json
@@ -86,7 +86,8 @@
"direction": {
"value": ""
}
- }
+ },
+ "zIndex": 0
},
"edges": null,
"objects": [
@@ -131,7 +132,8 @@
"direction": {
"value": ""
}
- }
+ },
+ "zIndex": 0
}
]
},
diff --git a/testdata/d2compiler/TestCompile/basic_shape.exp.json b/testdata/d2compiler/TestCompile/basic_shape.exp.json
index 55a75ce1c..db0e9a0af 100644
--- a/testdata/d2compiler/TestCompile/basic_shape.exp.json
+++ b/testdata/d2compiler/TestCompile/basic_shape.exp.json
@@ -86,7 +86,8 @@
"direction": {
"value": ""
}
- }
+ },
+ "zIndex": 0
},
"edges": null,
"objects": [
@@ -131,7 +132,8 @@
"direction": {
"value": ""
}
- }
+ },
+ "zIndex": 0
}
]
},
diff --git a/testdata/d2compiler/TestCompile/basic_style.exp.json b/testdata/d2compiler/TestCompile/basic_style.exp.json
index 1e2df17f0..16abe3f00 100644
--- a/testdata/d2compiler/TestCompile/basic_style.exp.json
+++ b/testdata/d2compiler/TestCompile/basic_style.exp.json
@@ -93,7 +93,8 @@
"direction": {
"value": ""
}
- }
+ },
+ "zIndex": 0
},
"edges": [],
"objects": [
@@ -142,7 +143,8 @@
"direction": {
"value": ""
}
- }
+ },
+ "zIndex": 0
}
]
},
diff --git a/testdata/d2compiler/TestCompile/class_paren.exp.json b/testdata/d2compiler/TestCompile/class_paren.exp.json
index c86f7f020..2ab82327b 100644
--- a/testdata/d2compiler/TestCompile/class_paren.exp.json
+++ b/testdata/d2compiler/TestCompile/class_paren.exp.json
@@ -185,7 +185,8 @@
"direction": {
"value": ""
}
- }
+ },
+ "zIndex": 0
},
"edges": [],
"objects": [
@@ -251,7 +252,8 @@
"direction": {
"value": ""
}
- }
+ },
+ "zIndex": 0
}
]
},
diff --git a/testdata/d2compiler/TestCompile/class_style.exp.json b/testdata/d2compiler/TestCompile/class_style.exp.json
index 0b411d650..eb27f765d 100644
--- a/testdata/d2compiler/TestCompile/class_style.exp.json
+++ b/testdata/d2compiler/TestCompile/class_style.exp.json
@@ -159,7 +159,8 @@
"direction": {
"value": ""
}
- }
+ },
+ "zIndex": 0
},
"edges": [],
"objects": [
@@ -218,7 +219,8 @@
"direction": {
"value": ""
}
- }
+ },
+ "zIndex": 0
}
]
},
diff --git a/testdata/d2compiler/TestCompile/default_direction.exp.json b/testdata/d2compiler/TestCompile/default_direction.exp.json
index 22ac40c17..0b959a582 100644
--- a/testdata/d2compiler/TestCompile/default_direction.exp.json
+++ b/testdata/d2compiler/TestCompile/default_direction.exp.json
@@ -47,7 +47,8 @@
"direction": {
"value": ""
}
- }
+ },
+ "zIndex": 0
},
"edges": null,
"objects": [
@@ -92,7 +93,8 @@
"direction": {
"value": ""
}
- }
+ },
+ "zIndex": 0
}
]
},
diff --git a/testdata/d2compiler/TestCompile/edge.exp.json b/testdata/d2compiler/TestCompile/edge.exp.json
index 09e4428ef..995965be4 100644
--- a/testdata/d2compiler/TestCompile/edge.exp.json
+++ b/testdata/d2compiler/TestCompile/edge.exp.json
@@ -70,7 +70,8 @@
"direction": {
"value": ""
}
- }
+ },
+ "zIndex": 0
},
"edges": [
{
@@ -101,7 +102,8 @@
"direction": {
"value": ""
}
- }
+ },
+ "zIndex": 0
}
],
"objects": [
@@ -146,7 +148,8 @@
"direction": {
"value": ""
}
- }
+ },
+ "zIndex": 0
},
{
"id": "y",
@@ -189,7 +192,8 @@
"direction": {
"value": ""
}
- }
+ },
+ "zIndex": 0
}
]
},
diff --git a/testdata/d2compiler/TestCompile/edge_arrowhead_fields.exp.json b/testdata/d2compiler/TestCompile/edge_arrowhead_fields.exp.json
index bf32e2e02..5898433cc 100644
--- a/testdata/d2compiler/TestCompile/edge_arrowhead_fields.exp.json
+++ b/testdata/d2compiler/TestCompile/edge_arrowhead_fields.exp.json
@@ -249,7 +249,8 @@
"direction": {
"value": ""
}
- }
+ },
+ "zIndex": 0
},
"edges": [
{
@@ -310,7 +311,8 @@
"direction": {
"value": ""
}
- }
+ },
+ "zIndex": 0
}
],
"objects": [
@@ -355,7 +357,8 @@
"direction": {
"value": ""
}
- }
+ },
+ "zIndex": 0
},
{
"id": "y",
@@ -398,7 +401,8 @@
"direction": {
"value": ""
}
- }
+ },
+ "zIndex": 0
}
]
},
diff --git a/testdata/d2compiler/TestCompile/edge_chain.exp.json b/testdata/d2compiler/TestCompile/edge_chain.exp.json
index 4aa8282e0..572b37eef 100644
--- a/testdata/d2compiler/TestCompile/edge_chain.exp.json
+++ b/testdata/d2compiler/TestCompile/edge_chain.exp.json
@@ -117,7 +117,8 @@
"direction": {
"value": ""
}
- }
+ },
+ "zIndex": 0
},
"edges": [
{
@@ -148,7 +149,8 @@
"direction": {
"value": ""
}
- }
+ },
+ "zIndex": 0
},
{
"index": 0,
@@ -178,7 +180,8 @@
"direction": {
"value": ""
}
- }
+ },
+ "zIndex": 0
}
],
"objects": [
@@ -223,7 +226,8 @@
"direction": {
"value": ""
}
- }
+ },
+ "zIndex": 0
},
{
"id": "y",
@@ -286,7 +290,8 @@
"direction": {
"value": ""
}
- }
+ },
+ "zIndex": 0
},
{
"id": "z",
@@ -329,7 +334,8 @@
"direction": {
"value": ""
}
- }
+ },
+ "zIndex": 0
}
]
},
diff --git a/testdata/d2compiler/TestCompile/edge_chain_map.exp.json b/testdata/d2compiler/TestCompile/edge_chain_map.exp.json
index 6c49a5af8..620ab42c9 100644
--- a/testdata/d2compiler/TestCompile/edge_chain_map.exp.json
+++ b/testdata/d2compiler/TestCompile/edge_chain_map.exp.json
@@ -146,7 +146,8 @@
"direction": {
"value": ""
}
- }
+ },
+ "zIndex": 0
},
"edges": [
{
@@ -177,7 +178,8 @@
"direction": {
"value": ""
}
- }
+ },
+ "zIndex": 0
},
{
"index": 0,
@@ -207,7 +209,8 @@
"direction": {
"value": ""
}
- }
+ },
+ "zIndex": 0
}
],
"objects": [
@@ -252,7 +255,8 @@
"direction": {
"value": ""
}
- }
+ },
+ "zIndex": 0
},
{
"id": "y",
@@ -315,7 +319,8 @@
"direction": {
"value": ""
}
- }
+ },
+ "zIndex": 0
},
{
"id": "z",
@@ -358,7 +363,8 @@
"direction": {
"value": ""
}
- }
+ },
+ "zIndex": 0
}
]
},
diff --git a/testdata/d2compiler/TestCompile/edge_column_index.exp.json b/testdata/d2compiler/TestCompile/edge_column_index.exp.json
index c3cf797ee..94b0fcd6c 100644
--- a/testdata/d2compiler/TestCompile/edge_column_index.exp.json
+++ b/testdata/d2compiler/TestCompile/edge_column_index.exp.json
@@ -348,7 +348,8 @@
"direction": {
"value": ""
}
- }
+ },
+ "zIndex": 0
},
"edges": [
{
@@ -381,7 +382,8 @@
"direction": {
"value": ""
}
- }
+ },
+ "zIndex": 0
}
],
"objects": [
@@ -473,7 +475,8 @@
"direction": {
"value": ""
}
- }
+ },
+ "zIndex": 0
},
{
"id": "dst",
@@ -563,7 +566,8 @@
"direction": {
"value": ""
}
- }
+ },
+ "zIndex": 0
}
]
},
diff --git a/testdata/d2compiler/TestCompile/edge_exclusive_style.exp.json b/testdata/d2compiler/TestCompile/edge_exclusive_style.exp.json
index b6b3c1a0d..684bc3434 100644
--- a/testdata/d2compiler/TestCompile/edge_exclusive_style.exp.json
+++ b/testdata/d2compiler/TestCompile/edge_exclusive_style.exp.json
@@ -115,7 +115,8 @@
"direction": {
"value": ""
}
- }
+ },
+ "zIndex": 0
},
"edges": [
{
@@ -150,7 +151,8 @@
"direction": {
"value": ""
}
- }
+ },
+ "zIndex": 0
}
],
"objects": [
@@ -195,7 +197,8 @@
"direction": {
"value": ""
}
- }
+ },
+ "zIndex": 0
},
{
"id": "y",
@@ -238,7 +241,8 @@
"direction": {
"value": ""
}
- }
+ },
+ "zIndex": 0
}
]
},
diff --git a/testdata/d2compiler/TestCompile/edge_flat_arrowhead.exp.json b/testdata/d2compiler/TestCompile/edge_flat_arrowhead.exp.json
index d0220923f..dbb041507 100644
--- a/testdata/d2compiler/TestCompile/edge_flat_arrowhead.exp.json
+++ b/testdata/d2compiler/TestCompile/edge_flat_arrowhead.exp.json
@@ -158,7 +158,8 @@
"direction": {
"value": ""
}
- }
+ },
+ "zIndex": 0
},
"edges": [
{
@@ -205,7 +206,8 @@
"direction": {
"value": ""
}
- }
+ },
+ "zIndex": 0
}
],
"objects": [
@@ -270,7 +272,8 @@
"direction": {
"value": ""
}
- }
+ },
+ "zIndex": 0
},
{
"id": "y",
@@ -333,7 +336,8 @@
"direction": {
"value": ""
}
- }
+ },
+ "zIndex": 0
}
]
},
diff --git a/testdata/d2compiler/TestCompile/edge_flat_label_arrowhead.exp.json b/testdata/d2compiler/TestCompile/edge_flat_label_arrowhead.exp.json
index 4b56270c3..d37af8b7b 100644
--- a/testdata/d2compiler/TestCompile/edge_flat_label_arrowhead.exp.json
+++ b/testdata/d2compiler/TestCompile/edge_flat_label_arrowhead.exp.json
@@ -126,7 +126,8 @@
"direction": {
"value": ""
}
- }
+ },
+ "zIndex": 0
},
"edges": [
{
@@ -170,7 +171,8 @@
"direction": {
"value": ""
}
- }
+ },
+ "zIndex": 0
}
],
"objects": [
@@ -215,7 +217,8 @@
"direction": {
"value": ""
}
- }
+ },
+ "zIndex": 0
},
{
"id": "y",
@@ -258,7 +261,8 @@
"direction": {
"value": ""
}
- }
+ },
+ "zIndex": 0
}
]
},
diff --git a/testdata/d2compiler/TestCompile/edge_in_column.exp.json b/testdata/d2compiler/TestCompile/edge_in_column.exp.json
index 05c4e1e69..900e626a5 100644
--- a/testdata/d2compiler/TestCompile/edge_in_column.exp.json
+++ b/testdata/d2compiler/TestCompile/edge_in_column.exp.json
@@ -161,7 +161,8 @@
"direction": {
"value": ""
}
- }
+ },
+ "zIndex": 0
},
"edges": [],
"objects": [
@@ -216,7 +217,8 @@
"direction": {
"value": ""
}
- }
+ },
+ "zIndex": 0
}
]
},
diff --git a/testdata/d2compiler/TestCompile/edge_index.exp.json b/testdata/d2compiler/TestCompile/edge_index.exp.json
index 1dab7db6a..f5e9dde8e 100644
--- a/testdata/d2compiler/TestCompile/edge_index.exp.json
+++ b/testdata/d2compiler/TestCompile/edge_index.exp.json
@@ -141,7 +141,8 @@
"direction": {
"value": ""
}
- }
+ },
+ "zIndex": 0
},
"edges": [
{
@@ -175,7 +176,8 @@
"direction": {
"value": ""
}
- }
+ },
+ "zIndex": 0
}
],
"objects": [
@@ -240,7 +242,8 @@
"direction": {
"value": ""
}
- }
+ },
+ "zIndex": 0
},
{
"id": "y",
@@ -303,7 +306,8 @@
"direction": {
"value": ""
}
- }
+ },
+ "zIndex": 0
}
]
},
diff --git a/testdata/d2compiler/TestCompile/edge_index_map.exp.json b/testdata/d2compiler/TestCompile/edge_index_map.exp.json
index 1e1a5ff30..0d70359de 100644
--- a/testdata/d2compiler/TestCompile/edge_index_map.exp.json
+++ b/testdata/d2compiler/TestCompile/edge_index_map.exp.json
@@ -160,7 +160,8 @@
"direction": {
"value": ""
}
- }
+ },
+ "zIndex": 0
},
"edges": [
{
@@ -194,7 +195,8 @@
"direction": {
"value": ""
}
- }
+ },
+ "zIndex": 0
}
],
"objects": [
@@ -259,7 +261,8 @@
"direction": {
"value": ""
}
- }
+ },
+ "zIndex": 0
},
{
"id": "y",
@@ -322,7 +325,8 @@
"direction": {
"value": ""
}
- }
+ },
+ "zIndex": 0
}
]
},
diff --git a/testdata/d2compiler/TestCompile/edge_index_nested.exp.json b/testdata/d2compiler/TestCompile/edge_index_nested.exp.json
index 9f77b4f31..3e2f59378 100644
--- a/testdata/d2compiler/TestCompile/edge_index_nested.exp.json
+++ b/testdata/d2compiler/TestCompile/edge_index_nested.exp.json
@@ -170,7 +170,8 @@
"direction": {
"value": ""
}
- }
+ },
+ "zIndex": 0
},
"edges": [
{
@@ -204,7 +205,8 @@
"direction": {
"value": ""
}
- }
+ },
+ "zIndex": 0
}
],
"objects": [
@@ -249,7 +251,8 @@
"direction": {
"value": ""
}
- }
+ },
+ "zIndex": 0
},
{
"id": "x",
@@ -312,7 +315,8 @@
"direction": {
"value": ""
}
- }
+ },
+ "zIndex": 0
},
{
"id": "y",
@@ -375,7 +379,8 @@
"direction": {
"value": ""
}
- }
+ },
+ "zIndex": 0
}
]
},
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 2be418922..36d7fe8ca 100644
--- a/testdata/d2compiler/TestCompile/edge_index_nested_cross_scope.exp.json
+++ b/testdata/d2compiler/TestCompile/edge_index_nested_cross_scope.exp.json
@@ -186,7 +186,8 @@
"direction": {
"value": ""
}
- }
+ },
+ "zIndex": 0
},
"edges": [
{
@@ -220,7 +221,8 @@
"direction": {
"value": ""
}
- }
+ },
+ "zIndex": 0
}
],
"objects": [
@@ -285,7 +287,8 @@
"direction": {
"value": ""
}
- }
+ },
+ "zIndex": 0
},
{
"id": "x",
@@ -348,7 +351,8 @@
"direction": {
"value": ""
}
- }
+ },
+ "zIndex": 0
},
{
"id": "y",
@@ -411,7 +415,8 @@
"direction": {
"value": ""
}
- }
+ },
+ "zIndex": 0
}
]
},
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 3ace9b870..6384c4d51 100644
--- a/testdata/d2compiler/TestCompile/edge_key_group_flat_nested.exp.json
+++ b/testdata/d2compiler/TestCompile/edge_key_group_flat_nested.exp.json
@@ -199,7 +199,8 @@
"direction": {
"value": ""
}
- }
+ },
+ "zIndex": 0
},
"edges": [
{
@@ -237,7 +238,8 @@
"direction": {
"value": ""
}
- }
+ },
+ "zIndex": 0
}
],
"objects": [
@@ -302,7 +304,8 @@
"direction": {
"value": ""
}
- }
+ },
+ "zIndex": 0
},
{
"id": "a",
@@ -365,7 +368,8 @@
"direction": {
"value": ""
}
- }
+ },
+ "zIndex": 0
},
{
"id": "b",
@@ -428,7 +432,8 @@
"direction": {
"value": ""
}
- }
+ },
+ "zIndex": 0
}
]
},
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 34560630d..db1b4e846 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
@@ -205,7 +205,8 @@
"direction": {
"value": ""
}
- }
+ },
+ "zIndex": 0
},
"edges": [
{
@@ -243,7 +244,8 @@
"direction": {
"value": ""
}
- }
+ },
+ "zIndex": 0
}
],
"objects": [
@@ -288,7 +290,8 @@
"direction": {
"value": ""
}
- }
+ },
+ "zIndex": 0
},
{
"id": "a",
@@ -362,7 +365,8 @@
"direction": {
"value": ""
}
- }
+ },
+ "zIndex": 0
},
{
"id": "b",
@@ -436,7 +440,8 @@
"direction": {
"value": ""
}
- }
+ },
+ "zIndex": 0
}
]
},
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 d1be6a904..c9d8f1037 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
@@ -218,7 +218,8 @@
"direction": {
"value": ""
}
- }
+ },
+ "zIndex": 0
},
"edges": [
{
@@ -256,7 +257,8 @@
"direction": {
"value": ""
}
- }
+ },
+ "zIndex": 0
}
],
"objects": [
@@ -301,7 +303,8 @@
"direction": {
"value": ""
}
- }
+ },
+ "zIndex": 0
},
{
"id": "a",
@@ -375,7 +378,8 @@
"direction": {
"value": ""
}
- }
+ },
+ "zIndex": 0
},
{
"id": "b",
@@ -449,7 +453,8 @@
"direction": {
"value": ""
}
- }
+ },
+ "zIndex": 0
}
]
},
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 8373caa0b..e89f0a775 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
@@ -236,7 +236,8 @@
"direction": {
"value": ""
}
- }
+ },
+ "zIndex": 0
},
"edges": [
{
@@ -274,7 +275,8 @@
"direction": {
"value": ""
}
- }
+ },
+ "zIndex": 0
}
],
"objects": [
@@ -319,7 +321,8 @@
"direction": {
"value": ""
}
- }
+ },
+ "zIndex": 0
},
{
"id": "a",
@@ -393,7 +396,8 @@
"direction": {
"value": ""
}
- }
+ },
+ "zIndex": 0
},
{
"id": "b",
@@ -467,7 +471,8 @@
"direction": {
"value": ""
}
- }
+ },
+ "zIndex": 0
}
]
},
diff --git a/testdata/d2compiler/TestCompile/edge_label_map.exp.json b/testdata/d2compiler/TestCompile/edge_label_map.exp.json
index e728aeb38..2dcadbd48 100644
--- a/testdata/d2compiler/TestCompile/edge_label_map.exp.json
+++ b/testdata/d2compiler/TestCompile/edge_label_map.exp.json
@@ -126,7 +126,8 @@
"direction": {
"value": ""
}
- }
+ },
+ "zIndex": 0
},
"edges": [
{
@@ -161,7 +162,8 @@
"direction": {
"value": ""
}
- }
+ },
+ "zIndex": 0
}
],
"objects": [
@@ -206,7 +208,8 @@
"direction": {
"value": ""
}
- }
+ },
+ "zIndex": 0
},
{
"id": "qwer",
@@ -249,7 +252,8 @@
"direction": {
"value": ""
}
- }
+ },
+ "zIndex": 0
}
]
},
diff --git a/testdata/d2compiler/TestCompile/edge_map.exp.json b/testdata/d2compiler/TestCompile/edge_map.exp.json
index c314961d7..23bc94bc3 100644
--- a/testdata/d2compiler/TestCompile/edge_map.exp.json
+++ b/testdata/d2compiler/TestCompile/edge_map.exp.json
@@ -109,7 +109,8 @@
"direction": {
"value": ""
}
- }
+ },
+ "zIndex": 0
},
"edges": [
{
@@ -140,7 +141,8 @@
"direction": {
"value": ""
}
- }
+ },
+ "zIndex": 0
}
],
"objects": [
@@ -185,7 +187,8 @@
"direction": {
"value": ""
}
- }
+ },
+ "zIndex": 0
},
{
"id": "y",
@@ -228,7 +231,8 @@
"direction": {
"value": ""
}
- }
+ },
+ "zIndex": 0
}
]
},
diff --git a/testdata/d2compiler/TestCompile/edge_map_arrowhead.exp.json b/testdata/d2compiler/TestCompile/edge_map_arrowhead.exp.json
index 961ff5094..8238a32f1 100644
--- a/testdata/d2compiler/TestCompile/edge_map_arrowhead.exp.json
+++ b/testdata/d2compiler/TestCompile/edge_map_arrowhead.exp.json
@@ -138,7 +138,8 @@
"direction": {
"value": ""
}
- }
+ },
+ "zIndex": 0
},
"edges": [
{
@@ -182,7 +183,8 @@
"direction": {
"value": ""
}
- }
+ },
+ "zIndex": 0
}
],
"objects": [
@@ -227,7 +229,8 @@
"direction": {
"value": ""
}
- }
+ },
+ "zIndex": 0
},
{
"id": "y",
@@ -270,7 +273,8 @@
"direction": {
"value": ""
}
- }
+ },
+ "zIndex": 0
}
]
},
diff --git a/testdata/d2compiler/TestCompile/edge_map_group_flat.exp.json b/testdata/d2compiler/TestCompile/edge_map_group_flat.exp.json
index 25c0db906..11a27902c 100644
--- a/testdata/d2compiler/TestCompile/edge_map_group_flat.exp.json
+++ b/testdata/d2compiler/TestCompile/edge_map_group_flat.exp.json
@@ -154,7 +154,8 @@
"direction": {
"value": ""
}
- }
+ },
+ "zIndex": 0
},
"edges": [
{
@@ -192,7 +193,8 @@
"direction": {
"value": ""
}
- }
+ },
+ "zIndex": 0
}
],
"objects": [
@@ -257,7 +259,8 @@
"direction": {
"value": ""
}
- }
+ },
+ "zIndex": 0
},
{
"id": "y",
@@ -320,7 +323,8 @@
"direction": {
"value": ""
}
- }
+ },
+ "zIndex": 0
}
]
},
diff --git a/testdata/d2compiler/TestCompile/edge_map_group_semiflat.exp.json b/testdata/d2compiler/TestCompile/edge_map_group_semiflat.exp.json
index 46422a6fe..43ecb54ff 100644
--- a/testdata/d2compiler/TestCompile/edge_map_group_semiflat.exp.json
+++ b/testdata/d2compiler/TestCompile/edge_map_group_semiflat.exp.json
@@ -172,7 +172,8 @@
"direction": {
"value": ""
}
- }
+ },
+ "zIndex": 0
},
"edges": [
{
@@ -210,7 +211,8 @@
"direction": {
"value": ""
}
- }
+ },
+ "zIndex": 0
}
],
"objects": [
@@ -275,7 +277,8 @@
"direction": {
"value": ""
}
- }
+ },
+ "zIndex": 0
},
{
"id": "y",
@@ -338,7 +341,8 @@
"direction": {
"value": ""
}
- }
+ },
+ "zIndex": 0
}
]
},
diff --git a/testdata/d2compiler/TestCompile/edge_map_nested.exp.json b/testdata/d2compiler/TestCompile/edge_map_nested.exp.json
index 2097718a6..9947df343 100644
--- a/testdata/d2compiler/TestCompile/edge_map_nested.exp.json
+++ b/testdata/d2compiler/TestCompile/edge_map_nested.exp.json
@@ -134,7 +134,8 @@
"direction": {
"value": ""
}
- }
+ },
+ "zIndex": 0
},
"edges": [
{
@@ -169,7 +170,8 @@
"direction": {
"value": ""
}
- }
+ },
+ "zIndex": 0
}
],
"objects": [
@@ -214,7 +216,8 @@
"direction": {
"value": ""
}
- }
+ },
+ "zIndex": 0
},
{
"id": "y",
@@ -257,7 +260,8 @@
"direction": {
"value": ""
}
- }
+ },
+ "zIndex": 0
}
]
},
diff --git a/testdata/d2compiler/TestCompile/edge_map_nested_flat.exp.json b/testdata/d2compiler/TestCompile/edge_map_nested_flat.exp.json
index 017d5dfc8..aeb1bcbd5 100644
--- a/testdata/d2compiler/TestCompile/edge_map_nested_flat.exp.json
+++ b/testdata/d2compiler/TestCompile/edge_map_nested_flat.exp.json
@@ -116,7 +116,8 @@
"direction": {
"value": ""
}
- }
+ },
+ "zIndex": 0
},
"edges": [
{
@@ -151,7 +152,8 @@
"direction": {
"value": ""
}
- }
+ },
+ "zIndex": 0
}
],
"objects": [
@@ -196,7 +198,8 @@
"direction": {
"value": ""
}
- }
+ },
+ "zIndex": 0
},
{
"id": "y",
@@ -239,7 +242,8 @@
"direction": {
"value": ""
}
- }
+ },
+ "zIndex": 0
}
]
},
diff --git a/testdata/d2compiler/TestCompile/edge_mixed_arrowhead.exp.json b/testdata/d2compiler/TestCompile/edge_mixed_arrowhead.exp.json
index 9a50c75ff..0506cfe02 100644
--- a/testdata/d2compiler/TestCompile/edge_mixed_arrowhead.exp.json
+++ b/testdata/d2compiler/TestCompile/edge_mixed_arrowhead.exp.json
@@ -226,7 +226,8 @@
"direction": {
"value": ""
}
- }
+ },
+ "zIndex": 0
},
"edges": [
{
@@ -286,7 +287,8 @@
"direction": {
"value": ""
}
- }
+ },
+ "zIndex": 0
}
],
"objects": [
@@ -351,7 +353,8 @@
"direction": {
"value": ""
}
- }
+ },
+ "zIndex": 0
},
{
"id": "y",
@@ -414,7 +417,8 @@
"direction": {
"value": ""
}
- }
+ },
+ "zIndex": 0
}
]
},
diff --git a/testdata/d2compiler/TestCompile/edge_non_shape_arrowhead.exp.json b/testdata/d2compiler/TestCompile/edge_non_shape_arrowhead.exp.json
index 5142f8595..d46e06a17 100644
--- a/testdata/d2compiler/TestCompile/edge_non_shape_arrowhead.exp.json
+++ b/testdata/d2compiler/TestCompile/edge_non_shape_arrowhead.exp.json
@@ -120,7 +120,8 @@
"direction": {
"value": ""
}
- }
+ },
+ "zIndex": 0
},
"edges": [
{
@@ -164,7 +165,8 @@
"direction": {
"value": ""
}
- }
+ },
+ "zIndex": 0
}
],
"objects": [
@@ -209,7 +211,8 @@
"direction": {
"value": ""
}
- }
+ },
+ "zIndex": 0
},
{
"id": "y",
@@ -252,7 +255,8 @@
"direction": {
"value": ""
}
- }
+ },
+ "zIndex": 0
}
]
},
diff --git a/testdata/d2compiler/TestCompile/edge_semiflat_arrowhead.exp.json b/testdata/d2compiler/TestCompile/edge_semiflat_arrowhead.exp.json
index cd8446a1e..d7a333387 100644
--- a/testdata/d2compiler/TestCompile/edge_semiflat_arrowhead.exp.json
+++ b/testdata/d2compiler/TestCompile/edge_semiflat_arrowhead.exp.json
@@ -176,7 +176,8 @@
"direction": {
"value": ""
}
- }
+ },
+ "zIndex": 0
},
"edges": [
{
@@ -223,7 +224,8 @@
"direction": {
"value": ""
}
- }
+ },
+ "zIndex": 0
}
],
"objects": [
@@ -288,7 +290,8 @@
"direction": {
"value": ""
}
- }
+ },
+ "zIndex": 0
},
{
"id": "y",
@@ -351,7 +354,8 @@
"direction": {
"value": ""
}
- }
+ },
+ "zIndex": 0
}
]
},
diff --git a/testdata/d2compiler/TestCompile/escaped_id.exp.json b/testdata/d2compiler/TestCompile/escaped_id.exp.json
index af200618f..9abba2d3a 100644
--- a/testdata/d2compiler/TestCompile/escaped_id.exp.json
+++ b/testdata/d2compiler/TestCompile/escaped_id.exp.json
@@ -47,7 +47,8 @@
"direction": {
"value": ""
}
- }
+ },
+ "zIndex": 0
},
"edges": null,
"objects": [
@@ -92,7 +93,8 @@
"direction": {
"value": ""
}
- }
+ },
+ "zIndex": 0
}
]
},
diff --git a/testdata/d2compiler/TestCompile/image_style.exp.json b/testdata/d2compiler/TestCompile/image_style.exp.json
index 997030792..0e52a0d08 100644
--- a/testdata/d2compiler/TestCompile/image_style.exp.json
+++ b/testdata/d2compiler/TestCompile/image_style.exp.json
@@ -168,7 +168,8 @@
"direction": {
"value": ""
}
- }
+ },
+ "zIndex": 0
},
"edges": [],
"objects": [
@@ -229,7 +230,8 @@
"direction": {
"value": ""
}
- }
+ },
+ "zIndex": 0
}
]
},
diff --git a/testdata/d2compiler/TestCompile/nested_sql.exp.json b/testdata/d2compiler/TestCompile/nested_sql.exp.json
index 69e2f421c..21154c301 100644
--- a/testdata/d2compiler/TestCompile/nested_sql.exp.json
+++ b/testdata/d2compiler/TestCompile/nested_sql.exp.json
@@ -181,7 +181,8 @@
"direction": {
"value": ""
}
- }
+ },
+ "zIndex": 0
},
"edges": [],
"objects": [
@@ -226,7 +227,8 @@
"direction": {
"value": ""
}
- }
+ },
+ "zIndex": 0
},
{
"id": "table",
@@ -285,7 +287,8 @@
"direction": {
"value": ""
}
- }
+ },
+ "zIndex": 0
}
]
},
diff --git a/testdata/d2compiler/TestCompile/path_link.exp.json b/testdata/d2compiler/TestCompile/path_link.exp.json
index 300cfe06f..397b51dba 100644
--- a/testdata/d2compiler/TestCompile/path_link.exp.json
+++ b/testdata/d2compiler/TestCompile/path_link.exp.json
@@ -86,7 +86,8 @@
"direction": {
"value": ""
}
- }
+ },
+ "zIndex": 0
},
"edges": null,
"objects": [
@@ -132,7 +133,8 @@
"direction": {
"value": ""
}
- }
+ },
+ "zIndex": 0
}
]
},
diff --git a/testdata/d2compiler/TestCompile/reserved_icon_near_style.exp.json b/testdata/d2compiler/TestCompile/reserved_icon_near_style.exp.json
index 69651a4a9..536e221da 100644
--- a/testdata/d2compiler/TestCompile/reserved_icon_near_style.exp.json
+++ b/testdata/d2compiler/TestCompile/reserved_icon_near_style.exp.json
@@ -281,7 +281,8 @@
"direction": {
"value": ""
}
- }
+ },
+ "zIndex": 0
},
"edges": [],
"objects": [
@@ -394,7 +395,8 @@
"direction": {
"value": ""
}
- }
+ },
+ "zIndex": 0
},
{
"id": "y",
@@ -437,7 +439,8 @@
"direction": {
"value": ""
}
- }
+ },
+ "zIndex": 0
}
]
},
diff --git a/testdata/d2compiler/TestCompile/root_direction.exp.json b/testdata/d2compiler/TestCompile/root_direction.exp.json
index 0f9ea2488..514729c8b 100644
--- a/testdata/d2compiler/TestCompile/root_direction.exp.json
+++ b/testdata/d2compiler/TestCompile/root_direction.exp.json
@@ -57,7 +57,8 @@
"direction": {
"value": "right"
}
- }
+ },
+ "zIndex": 0
},
"edges": null,
"objects": null
diff --git a/testdata/d2compiler/TestCompile/root_sequence.exp.json b/testdata/d2compiler/TestCompile/root_sequence.exp.json
index 7ee72472d..aee7f378a 100644
--- a/testdata/d2compiler/TestCompile/root_sequence.exp.json
+++ b/testdata/d2compiler/TestCompile/root_sequence.exp.json
@@ -57,7 +57,8 @@
"direction": {
"value": ""
}
- }
+ },
+ "zIndex": 0
},
"edges": null,
"objects": null
diff --git a/testdata/d2compiler/TestCompile/set_direction.exp.json b/testdata/d2compiler/TestCompile/set_direction.exp.json
index 39c25c81d..cc544204b 100644
--- a/testdata/d2compiler/TestCompile/set_direction.exp.json
+++ b/testdata/d2compiler/TestCompile/set_direction.exp.json
@@ -86,7 +86,8 @@
"direction": {
"value": ""
}
- }
+ },
+ "zIndex": 0
},
"edges": null,
"objects": [
@@ -131,7 +132,8 @@
"direction": {
"value": "left"
}
- }
+ },
+ "zIndex": 0
}
]
},
diff --git a/testdata/d2compiler/TestCompile/sql_paren.exp.json b/testdata/d2compiler/TestCompile/sql_paren.exp.json
index 13eff1ae6..5c8c75ed9 100644
--- a/testdata/d2compiler/TestCompile/sql_paren.exp.json
+++ b/testdata/d2compiler/TestCompile/sql_paren.exp.json
@@ -162,7 +162,8 @@
"direction": {
"value": ""
}
- }
+ },
+ "zIndex": 0
},
"edges": [],
"objects": [
@@ -223,7 +224,8 @@
"direction": {
"value": ""
}
- }
+ },
+ "zIndex": 0
}
]
},
diff --git a/testdata/d2compiler/TestCompile/stroke-width.exp.json b/testdata/d2compiler/TestCompile/stroke-width.exp.json
index b947b14a2..1f05b7ca2 100644
--- a/testdata/d2compiler/TestCompile/stroke-width.exp.json
+++ b/testdata/d2compiler/TestCompile/stroke-width.exp.json
@@ -93,7 +93,8 @@
"direction": {
"value": ""
}
- }
+ },
+ "zIndex": 0
},
"edges": [],
"objects": [
@@ -142,7 +143,8 @@
"direction": {
"value": ""
}
- }
+ },
+ "zIndex": 0
}
]
},
diff --git a/testdata/d2compiler/TestCompile/table_style.exp.json b/testdata/d2compiler/TestCompile/table_style.exp.json
index f44f416b4..79e1ea440 100644
--- a/testdata/d2compiler/TestCompile/table_style.exp.json
+++ b/testdata/d2compiler/TestCompile/table_style.exp.json
@@ -159,7 +159,8 @@
"direction": {
"value": ""
}
- }
+ },
+ "zIndex": 0
},
"edges": [],
"objects": [
@@ -218,7 +219,8 @@
"direction": {
"value": ""
}
- }
+ },
+ "zIndex": 0
}
]
},
diff --git a/testdata/d2compiler/TestCompile/table_style_map.exp.json b/testdata/d2compiler/TestCompile/table_style_map.exp.json
index 4b150db68..2c8260d32 100644
--- a/testdata/d2compiler/TestCompile/table_style_map.exp.json
+++ b/testdata/d2compiler/TestCompile/table_style_map.exp.json
@@ -210,7 +210,8 @@
"direction": {
"value": ""
}
- }
+ },
+ "zIndex": 0
},
"edges": [],
"objects": [
@@ -269,7 +270,8 @@
"direction": {
"value": ""
}
- }
+ },
+ "zIndex": 0
}
]
},
diff --git a/testdata/d2compiler/TestCompile/underscore_edge.exp.json b/testdata/d2compiler/TestCompile/underscore_edge.exp.json
index 84d29cf9c..f0741e0a4 100644
--- a/testdata/d2compiler/TestCompile/underscore_edge.exp.json
+++ b/testdata/d2compiler/TestCompile/underscore_edge.exp.json
@@ -121,7 +121,8 @@
"direction": {
"value": ""
}
- }
+ },
+ "zIndex": 0
},
"edges": [
{
@@ -152,7 +153,8 @@
"direction": {
"value": ""
}
- }
+ },
+ "zIndex": 0
}
],
"objects": [
@@ -228,7 +230,8 @@
"direction": {
"value": ""
}
- }
+ },
+ "zIndex": 0
},
{
"id": "y",
@@ -282,7 +285,8 @@
"direction": {
"value": ""
}
- }
+ },
+ "zIndex": 0
}
]
},
diff --git a/testdata/d2compiler/TestCompile/underscore_edge_chain.exp.json b/testdata/d2compiler/TestCompile/underscore_edge_chain.exp.json
index c9eb30378..dd53dcad8 100644
--- a/testdata/d2compiler/TestCompile/underscore_edge_chain.exp.json
+++ b/testdata/d2compiler/TestCompile/underscore_edge_chain.exp.json
@@ -180,7 +180,8 @@
"direction": {
"value": ""
}
- }
+ },
+ "zIndex": 0
},
"edges": [
{
@@ -211,7 +212,8 @@
"direction": {
"value": ""
}
- }
+ },
+ "zIndex": 0
},
{
"index": 0,
@@ -241,7 +243,8 @@
"direction": {
"value": ""
}
- }
+ },
+ "zIndex": 0
}
],
"objects": [
@@ -348,7 +351,8 @@
"direction": {
"value": ""
}
- }
+ },
+ "zIndex": 0
},
{
"id": "y",
@@ -402,7 +406,8 @@
"direction": {
"value": ""
}
- }
+ },
+ "zIndex": 0
},
{
"id": "z",
@@ -456,7 +461,8 @@
"direction": {
"value": ""
}
- }
+ },
+ "zIndex": 0
}
]
},
diff --git a/testdata/d2compiler/TestCompile/underscore_edge_existing.exp.json b/testdata/d2compiler/TestCompile/underscore_edge_existing.exp.json
index 4a3d687fe..f10568194 100644
--- a/testdata/d2compiler/TestCompile/underscore_edge_existing.exp.json
+++ b/testdata/d2compiler/TestCompile/underscore_edge_existing.exp.json
@@ -187,7 +187,8 @@
"direction": {
"value": ""
}
- }
+ },
+ "zIndex": 0
},
"edges": [
{
@@ -218,7 +219,8 @@
"direction": {
"value": ""
}
- }
+ },
+ "zIndex": 0
},
{
"index": 1,
@@ -248,7 +250,8 @@
"direction": {
"value": ""
}
- }
+ },
+ "zIndex": 0
}
],
"objects": [
@@ -293,7 +296,8 @@
"direction": {
"value": ""
}
- }
+ },
+ "zIndex": 0
},
{
"id": "a",
@@ -367,7 +371,8 @@
"direction": {
"value": ""
}
- }
+ },
+ "zIndex": 0
},
{
"id": "b",
@@ -441,7 +446,8 @@
"direction": {
"value": ""
}
- }
+ },
+ "zIndex": 0
}
]
},
diff --git a/testdata/d2compiler/TestCompile/underscore_edge_index.exp.json b/testdata/d2compiler/TestCompile/underscore_edge_index.exp.json
index 705d516f8..86507ebaf 100644
--- a/testdata/d2compiler/TestCompile/underscore_edge_index.exp.json
+++ b/testdata/d2compiler/TestCompile/underscore_edge_index.exp.json
@@ -192,7 +192,8 @@
"direction": {
"value": ""
}
- }
+ },
+ "zIndex": 0
},
"edges": [
{
@@ -226,7 +227,8 @@
"direction": {
"value": ""
}
- }
+ },
+ "zIndex": 0
}
],
"objects": [
@@ -271,7 +273,8 @@
"direction": {
"value": ""
}
- }
+ },
+ "zIndex": 0
},
{
"id": "a",
@@ -345,7 +348,8 @@
"direction": {
"value": ""
}
- }
+ },
+ "zIndex": 0
},
{
"id": "b",
@@ -419,7 +423,8 @@
"direction": {
"value": ""
}
- }
+ },
+ "zIndex": 0
}
]
},
diff --git a/testdata/d2compiler/TestCompile/underscore_edge_nested.exp.json b/testdata/d2compiler/TestCompile/underscore_edge_nested.exp.json
index 7d1942adb..dbaaa7445 100644
--- a/testdata/d2compiler/TestCompile/underscore_edge_nested.exp.json
+++ b/testdata/d2compiler/TestCompile/underscore_edge_nested.exp.json
@@ -161,7 +161,8 @@
"direction": {
"value": ""
}
- }
+ },
+ "zIndex": 0
},
"edges": [
{
@@ -192,7 +193,8 @@
"direction": {
"value": ""
}
- }
+ },
+ "zIndex": 0
}
],
"objects": [
@@ -237,7 +239,8 @@
"direction": {
"value": ""
}
- }
+ },
+ "zIndex": 0
},
{
"id": "y",
@@ -311,7 +314,8 @@
"direction": {
"value": ""
}
- }
+ },
+ "zIndex": 0
},
{
"id": "z",
@@ -376,7 +380,8 @@
"direction": {
"value": ""
}
- }
+ },
+ "zIndex": 0
}
]
},
diff --git a/testdata/d2compiler/TestCompile/underscore_parent_create.exp.json b/testdata/d2compiler/TestCompile/underscore_parent_create.exp.json
index 830a09082..073d7f280 100644
--- a/testdata/d2compiler/TestCompile/underscore_parent_create.exp.json
+++ b/testdata/d2compiler/TestCompile/underscore_parent_create.exp.json
@@ -87,7 +87,8 @@
"direction": {
"value": ""
}
- }
+ },
+ "zIndex": 0
},
"edges": null,
"objects": [
@@ -132,7 +133,8 @@
"direction": {
"value": ""
}
- }
+ },
+ "zIndex": 0
},
{
"id": "y",
@@ -186,7 +188,8 @@
"direction": {
"value": ""
}
- }
+ },
+ "zIndex": 0
}
]
},
diff --git a/testdata/d2compiler/TestCompile/underscore_parent_not_root.exp.json b/testdata/d2compiler/TestCompile/underscore_parent_not_root.exp.json
index 7ca34f0e3..634a5280e 100644
--- a/testdata/d2compiler/TestCompile/underscore_parent_not_root.exp.json
+++ b/testdata/d2compiler/TestCompile/underscore_parent_not_root.exp.json
@@ -116,7 +116,8 @@
"direction": {
"value": ""
}
- }
+ },
+ "zIndex": 0
},
"edges": null,
"objects": [
@@ -161,7 +162,8 @@
"direction": {
"value": ""
}
- }
+ },
+ "zIndex": 0
},
{
"id": "y",
@@ -204,7 +206,8 @@
"direction": {
"value": ""
}
- }
+ },
+ "zIndex": 0
},
{
"id": "z",
@@ -258,7 +261,8 @@
"direction": {
"value": ""
}
- }
+ },
+ "zIndex": 0
}
]
},
diff --git a/testdata/d2compiler/TestCompile/underscore_parent_preference_1.exp.json b/testdata/d2compiler/TestCompile/underscore_parent_preference_1.exp.json
index 69b1b036e..d68ff4ba6 100644
--- a/testdata/d2compiler/TestCompile/underscore_parent_preference_1.exp.json
+++ b/testdata/d2compiler/TestCompile/underscore_parent_preference_1.exp.json
@@ -130,7 +130,8 @@
"direction": {
"value": ""
}
- }
+ },
+ "zIndex": 0
},
"edges": null,
"objects": [
@@ -175,7 +176,8 @@
"direction": {
"value": ""
}
- }
+ },
+ "zIndex": 0
},
{
"id": "y",
@@ -249,7 +251,8 @@
"direction": {
"value": ""
}
- }
+ },
+ "zIndex": 0
}
]
},
diff --git a/testdata/d2compiler/TestCompile/underscore_parent_preference_2.exp.json b/testdata/d2compiler/TestCompile/underscore_parent_preference_2.exp.json
index 00824907e..4e645d8fa 100644
--- a/testdata/d2compiler/TestCompile/underscore_parent_preference_2.exp.json
+++ b/testdata/d2compiler/TestCompile/underscore_parent_preference_2.exp.json
@@ -130,7 +130,8 @@
"direction": {
"value": ""
}
- }
+ },
+ "zIndex": 0
},
"edges": null,
"objects": [
@@ -206,7 +207,8 @@
"direction": {
"value": ""
}
- }
+ },
+ "zIndex": 0
},
{
"id": "x",
@@ -249,7 +251,8 @@
"direction": {
"value": ""
}
- }
+ },
+ "zIndex": 0
}
]
},
diff --git a/testdata/d2compiler/TestCompile/underscore_parent_squared.exp.json b/testdata/d2compiler/TestCompile/underscore_parent_squared.exp.json
index 1b9272a22..92cc9326b 100644
--- a/testdata/d2compiler/TestCompile/underscore_parent_squared.exp.json
+++ b/testdata/d2compiler/TestCompile/underscore_parent_squared.exp.json
@@ -127,7 +127,8 @@
"direction": {
"value": ""
}
- }
+ },
+ "zIndex": 0
},
"edges": null,
"objects": [
@@ -172,7 +173,8 @@
"direction": {
"value": ""
}
- }
+ },
+ "zIndex": 0
},
{
"id": "y",
@@ -215,7 +217,8 @@
"direction": {
"value": ""
}
- }
+ },
+ "zIndex": 0
},
{
"id": "z",
@@ -280,7 +283,8 @@
"direction": {
"value": ""
}
- }
+ },
+ "zIndex": 0
}
]
},
diff --git a/testdata/d2compiler/TestCompile/url_link.exp.json b/testdata/d2compiler/TestCompile/url_link.exp.json
index ee7b7a06e..f7cf70e38 100644
--- a/testdata/d2compiler/TestCompile/url_link.exp.json
+++ b/testdata/d2compiler/TestCompile/url_link.exp.json
@@ -86,7 +86,8 @@
"direction": {
"value": ""
}
- }
+ },
+ "zIndex": 0
},
"edges": null,
"objects": [
@@ -132,7 +133,8 @@
"direction": {
"value": ""
}
- }
+ },
+ "zIndex": 0
}
]
},
diff --git a/testdata/d2exporter/TestExport/connection/arrowhead.exp.json b/testdata/d2exporter/TestExport/connection/arrowhead.exp.json
index 665dfb37c..60ac88668 100644
--- a/testdata/d2exporter/TestExport/connection/arrowhead.exp.json
+++ b/testdata/d2exporter/TestExport/connection/arrowhead.exp.json
@@ -10,7 +10,6 @@
},
"width": 0,
"height": 0,
- "level": 1,
"opacity": 1,
"strokeDash": 0,
"strokeWidth": 2,
@@ -36,7 +35,9 @@
"bold": true,
"underline": false,
"labelWidth": 0,
- "labelHeight": 0
+ "labelHeight": 0,
+ "zIndex": 0,
+ "level": 1
},
{
"id": "y",
@@ -47,7 +48,6 @@
},
"width": 0,
"height": 0,
- "level": 1,
"opacity": 1,
"strokeDash": 0,
"strokeWidth": 2,
@@ -73,7 +73,9 @@
"bold": true,
"underline": false,
"labelWidth": 0,
- "labelHeight": 0
+ "labelHeight": 0,
+ "zIndex": 0,
+ "level": 1
}
],
"connections": [
@@ -105,7 +107,8 @@
"isCurve": true,
"animated": false,
"tooltip": "",
- "icon": null
+ "icon": null,
+ "zIndex": 0
}
]
}
diff --git a/testdata/d2exporter/TestExport/connection/basic.exp.json b/testdata/d2exporter/TestExport/connection/basic.exp.json
index 4459332b3..726218c9c 100644
--- a/testdata/d2exporter/TestExport/connection/basic.exp.json
+++ b/testdata/d2exporter/TestExport/connection/basic.exp.json
@@ -10,7 +10,6 @@
},
"width": 0,
"height": 0,
- "level": 1,
"opacity": 1,
"strokeDash": 0,
"strokeWidth": 2,
@@ -36,7 +35,9 @@
"bold": true,
"underline": false,
"labelWidth": 0,
- "labelHeight": 0
+ "labelHeight": 0,
+ "zIndex": 0,
+ "level": 1
},
{
"id": "y",
@@ -47,7 +48,6 @@
},
"width": 0,
"height": 0,
- "level": 1,
"opacity": 1,
"strokeDash": 0,
"strokeWidth": 2,
@@ -73,7 +73,9 @@
"bold": true,
"underline": false,
"labelWidth": 0,
- "labelHeight": 0
+ "labelHeight": 0,
+ "zIndex": 0,
+ "level": 1
}
],
"connections": [
@@ -105,7 +107,8 @@
"isCurve": true,
"animated": false,
"tooltip": "",
- "icon": null
+ "icon": null,
+ "zIndex": 0
}
]
}
diff --git a/testdata/d2exporter/TestExport/connection/stroke-dash.exp.json b/testdata/d2exporter/TestExport/connection/stroke-dash.exp.json
index 70c56b898..4d68e010d 100644
--- a/testdata/d2exporter/TestExport/connection/stroke-dash.exp.json
+++ b/testdata/d2exporter/TestExport/connection/stroke-dash.exp.json
@@ -10,7 +10,6 @@
},
"width": 0,
"height": 0,
- "level": 1,
"opacity": 1,
"strokeDash": 0,
"strokeWidth": 2,
@@ -36,7 +35,9 @@
"bold": true,
"underline": false,
"labelWidth": 0,
- "labelHeight": 0
+ "labelHeight": 0,
+ "zIndex": 0,
+ "level": 1
},
{
"id": "y",
@@ -47,7 +48,6 @@
},
"width": 0,
"height": 0,
- "level": 1,
"opacity": 1,
"strokeDash": 0,
"strokeWidth": 2,
@@ -73,7 +73,9 @@
"bold": true,
"underline": false,
"labelWidth": 0,
- "labelHeight": 0
+ "labelHeight": 0,
+ "zIndex": 0,
+ "level": 1
}
],
"connections": [
@@ -105,7 +107,8 @@
"isCurve": true,
"animated": false,
"tooltip": "",
- "icon": null
+ "icon": null,
+ "zIndex": 0
}
]
}
diff --git a/testdata/d2exporter/TestExport/connection/theme_stroke-dash.exp.json b/testdata/d2exporter/TestExport/connection/theme_stroke-dash.exp.json
index 8d71f6d80..e97b648ac 100644
--- a/testdata/d2exporter/TestExport/connection/theme_stroke-dash.exp.json
+++ b/testdata/d2exporter/TestExport/connection/theme_stroke-dash.exp.json
@@ -10,7 +10,6 @@
},
"width": 0,
"height": 0,
- "level": 1,
"opacity": 1,
"strokeDash": 0,
"strokeWidth": 2,
@@ -36,7 +35,9 @@
"bold": true,
"underline": false,
"labelWidth": 0,
- "labelHeight": 0
+ "labelHeight": 0,
+ "zIndex": 0,
+ "level": 1
},
{
"id": "y",
@@ -47,7 +48,6 @@
},
"width": 0,
"height": 0,
- "level": 1,
"opacity": 1,
"strokeDash": 0,
"strokeWidth": 2,
@@ -73,7 +73,9 @@
"bold": true,
"underline": false,
"labelWidth": 0,
- "labelHeight": 0
+ "labelHeight": 0,
+ "zIndex": 0,
+ "level": 1
}
],
"connections": [
@@ -105,7 +107,8 @@
"isCurve": true,
"animated": false,
"tooltip": "",
- "icon": null
+ "icon": null,
+ "zIndex": 0
},
{
"id": "(x -> y)[1]",
@@ -135,7 +138,8 @@
"isCurve": true,
"animated": false,
"tooltip": "",
- "icon": null
+ "icon": null,
+ "zIndex": 0
}
]
}
diff --git a/testdata/d2exporter/TestExport/label/basic_shape.exp.json b/testdata/d2exporter/TestExport/label/basic_shape.exp.json
index 3f802e743..931fe4753 100644
--- a/testdata/d2exporter/TestExport/label/basic_shape.exp.json
+++ b/testdata/d2exporter/TestExport/label/basic_shape.exp.json
@@ -10,7 +10,6 @@
},
"width": 0,
"height": 0,
- "level": 1,
"opacity": 1,
"strokeDash": 0,
"strokeWidth": 2,
@@ -36,7 +35,9 @@
"bold": true,
"underline": false,
"labelWidth": 0,
- "labelHeight": 0
+ "labelHeight": 0,
+ "zIndex": 0,
+ "level": 1
}
],
"connections": []
diff --git a/testdata/d2exporter/TestExport/label/connection_font_color.exp.json b/testdata/d2exporter/TestExport/label/connection_font_color.exp.json
index b7dbac9f3..748ca5390 100644
--- a/testdata/d2exporter/TestExport/label/connection_font_color.exp.json
+++ b/testdata/d2exporter/TestExport/label/connection_font_color.exp.json
@@ -10,7 +10,6 @@
},
"width": 0,
"height": 0,
- "level": 1,
"opacity": 1,
"strokeDash": 0,
"strokeWidth": 2,
@@ -36,7 +35,9 @@
"bold": true,
"underline": false,
"labelWidth": 0,
- "labelHeight": 0
+ "labelHeight": 0,
+ "zIndex": 0,
+ "level": 1
},
{
"id": "y",
@@ -47,7 +48,6 @@
},
"width": 0,
"height": 0,
- "level": 1,
"opacity": 1,
"strokeDash": 0,
"strokeWidth": 2,
@@ -73,7 +73,9 @@
"bold": true,
"underline": false,
"labelWidth": 0,
- "labelHeight": 0
+ "labelHeight": 0,
+ "zIndex": 0,
+ "level": 1
}
],
"connections": [
@@ -105,7 +107,8 @@
"isCurve": true,
"animated": false,
"tooltip": "",
- "icon": null
+ "icon": null,
+ "zIndex": 0
}
]
}
diff --git a/testdata/d2exporter/TestExport/label/shape_font_color.exp.json b/testdata/d2exporter/TestExport/label/shape_font_color.exp.json
index 4ad10e627..e0985129a 100644
--- a/testdata/d2exporter/TestExport/label/shape_font_color.exp.json
+++ b/testdata/d2exporter/TestExport/label/shape_font_color.exp.json
@@ -10,7 +10,6 @@
},
"width": 0,
"height": 0,
- "level": 1,
"opacity": 1,
"strokeDash": 0,
"strokeWidth": 2,
@@ -36,7 +35,9 @@
"bold": true,
"underline": false,
"labelWidth": 0,
- "labelHeight": 0
+ "labelHeight": 0,
+ "zIndex": 0,
+ "level": 1
}
],
"connections": []
diff --git a/testdata/d2exporter/TestExport/shape/basic.exp.json b/testdata/d2exporter/TestExport/shape/basic.exp.json
index 37448aad5..ec233aa08 100644
--- a/testdata/d2exporter/TestExport/shape/basic.exp.json
+++ b/testdata/d2exporter/TestExport/shape/basic.exp.json
@@ -10,7 +10,6 @@
},
"width": 0,
"height": 0,
- "level": 1,
"opacity": 1,
"strokeDash": 0,
"strokeWidth": 2,
@@ -36,7 +35,9 @@
"bold": true,
"underline": false,
"labelWidth": 0,
- "labelHeight": 0
+ "labelHeight": 0,
+ "zIndex": 0,
+ "level": 1
}
],
"connections": []
diff --git a/testdata/d2exporter/TestExport/shape/border-radius.exp.json b/testdata/d2exporter/TestExport/shape/border-radius.exp.json
index 53c93e150..6b9a69075 100644
--- a/testdata/d2exporter/TestExport/shape/border-radius.exp.json
+++ b/testdata/d2exporter/TestExport/shape/border-radius.exp.json
@@ -10,7 +10,6 @@
},
"width": 0,
"height": 0,
- "level": 1,
"opacity": 1,
"strokeDash": 0,
"strokeWidth": 2,
@@ -36,7 +35,9 @@
"bold": true,
"underline": false,
"labelWidth": 0,
- "labelHeight": 0
+ "labelHeight": 0,
+ "zIndex": 0,
+ "level": 1
}
],
"connections": []
diff --git a/testdata/d2exporter/TestExport/shape/image_dimensions.exp.json b/testdata/d2exporter/TestExport/shape/image_dimensions.exp.json
index cc127ddba..f33f6473d 100644
--- a/testdata/d2exporter/TestExport/shape/image_dimensions.exp.json
+++ b/testdata/d2exporter/TestExport/shape/image_dimensions.exp.json
@@ -10,7 +10,6 @@
},
"width": 0,
"height": 0,
- "level": 1,
"opacity": 1,
"strokeDash": 0,
"strokeWidth": 2,
@@ -47,7 +46,9 @@
"bold": true,
"underline": false,
"labelWidth": 0,
- "labelHeight": 0
+ "labelHeight": 0,
+ "zIndex": 0,
+ "level": 1
}
],
"connections": []
diff --git a/testdata/d2exporter/TestExport/shape/synonyms.exp.json b/testdata/d2exporter/TestExport/shape/synonyms.exp.json
index 6b1d8f27b..b67ca940a 100644
--- a/testdata/d2exporter/TestExport/shape/synonyms.exp.json
+++ b/testdata/d2exporter/TestExport/shape/synonyms.exp.json
@@ -10,7 +10,6 @@
},
"width": 0,
"height": 0,
- "level": 1,
"opacity": 1,
"strokeDash": 0,
"strokeWidth": 2,
@@ -36,7 +35,9 @@
"bold": true,
"underline": false,
"labelWidth": 0,
- "labelHeight": 0
+ "labelHeight": 0,
+ "zIndex": 0,
+ "level": 1
},
{
"id": "y",
@@ -47,7 +48,6 @@
},
"width": 0,
"height": 0,
- "level": 1,
"opacity": 1,
"strokeDash": 0,
"strokeWidth": 2,
@@ -73,7 +73,9 @@
"bold": true,
"underline": false,
"labelWidth": 0,
- "labelHeight": 0
+ "labelHeight": 0,
+ "zIndex": 0,
+ "level": 1
}
],
"connections": []
diff --git a/testdata/d2exporter/TestExport/shape/text_color.exp.json b/testdata/d2exporter/TestExport/shape/text_color.exp.json
index 39fc5164c..db7273d5a 100644
--- a/testdata/d2exporter/TestExport/shape/text_color.exp.json
+++ b/testdata/d2exporter/TestExport/shape/text_color.exp.json
@@ -10,7 +10,6 @@
},
"width": 0,
"height": 0,
- "level": 1,
"opacity": 1,
"strokeDash": 0,
"strokeWidth": 2,
@@ -36,7 +35,9 @@
"bold": true,
"underline": false,
"labelWidth": 0,
- "labelHeight": 0
+ "labelHeight": 0,
+ "zIndex": 0,
+ "level": 1
}
],
"connections": []
diff --git a/testdata/d2exporter/TestExport/theme/connection_with_bold.exp.json b/testdata/d2exporter/TestExport/theme/connection_with_bold.exp.json
index bb51aac7c..cf2e7cf34 100644
--- a/testdata/d2exporter/TestExport/theme/connection_with_bold.exp.json
+++ b/testdata/d2exporter/TestExport/theme/connection_with_bold.exp.json
@@ -10,7 +10,6 @@
},
"width": 0,
"height": 0,
- "level": 1,
"opacity": 1,
"strokeDash": 0,
"strokeWidth": 2,
@@ -36,7 +35,9 @@
"bold": true,
"underline": false,
"labelWidth": 0,
- "labelHeight": 0
+ "labelHeight": 0,
+ "zIndex": 0,
+ "level": 1
},
{
"id": "y",
@@ -47,7 +48,6 @@
},
"width": 0,
"height": 0,
- "level": 1,
"opacity": 1,
"strokeDash": 0,
"strokeWidth": 2,
@@ -73,7 +73,9 @@
"bold": true,
"underline": false,
"labelWidth": 0,
- "labelHeight": 0
+ "labelHeight": 0,
+ "zIndex": 0,
+ "level": 1
}
],
"connections": [
@@ -105,7 +107,8 @@
"isCurve": true,
"animated": false,
"tooltip": "",
- "icon": null
+ "icon": null,
+ "zIndex": 0
}
]
}
diff --git a/testdata/d2exporter/TestExport/theme/connection_with_italic.exp.json b/testdata/d2exporter/TestExport/theme/connection_with_italic.exp.json
index f0f5d8fe4..b3d780bb9 100644
--- a/testdata/d2exporter/TestExport/theme/connection_with_italic.exp.json
+++ b/testdata/d2exporter/TestExport/theme/connection_with_italic.exp.json
@@ -10,7 +10,6 @@
},
"width": 0,
"height": 0,
- "level": 1,
"opacity": 1,
"strokeDash": 0,
"strokeWidth": 2,
@@ -36,7 +35,9 @@
"bold": true,
"underline": false,
"labelWidth": 0,
- "labelHeight": 0
+ "labelHeight": 0,
+ "zIndex": 0,
+ "level": 1
},
{
"id": "y",
@@ -47,7 +48,6 @@
},
"width": 0,
"height": 0,
- "level": 1,
"opacity": 1,
"strokeDash": 0,
"strokeWidth": 2,
@@ -73,7 +73,9 @@
"bold": true,
"underline": false,
"labelWidth": 0,
- "labelHeight": 0
+ "labelHeight": 0,
+ "zIndex": 0,
+ "level": 1
}
],
"connections": [
@@ -105,7 +107,8 @@
"isCurve": true,
"animated": false,
"tooltip": "",
- "icon": null
+ "icon": null,
+ "zIndex": 0
}
]
}
diff --git a/testdata/d2exporter/TestExport/theme/connection_without_italic.exp.json b/testdata/d2exporter/TestExport/theme/connection_without_italic.exp.json
index 5dcbdc290..b1d30b075 100644
--- a/testdata/d2exporter/TestExport/theme/connection_without_italic.exp.json
+++ b/testdata/d2exporter/TestExport/theme/connection_without_italic.exp.json
@@ -10,7 +10,6 @@
},
"width": 0,
"height": 0,
- "level": 1,
"opacity": 1,
"strokeDash": 0,
"strokeWidth": 2,
@@ -36,7 +35,9 @@
"bold": true,
"underline": false,
"labelWidth": 0,
- "labelHeight": 0
+ "labelHeight": 0,
+ "zIndex": 0,
+ "level": 1
},
{
"id": "y",
@@ -47,7 +48,6 @@
},
"width": 0,
"height": 0,
- "level": 1,
"opacity": 1,
"strokeDash": 0,
"strokeWidth": 2,
@@ -73,7 +73,9 @@
"bold": true,
"underline": false,
"labelWidth": 0,
- "labelHeight": 0
+ "labelHeight": 0,
+ "zIndex": 0,
+ "level": 1
}
],
"connections": [
@@ -105,7 +107,8 @@
"isCurve": true,
"animated": false,
"tooltip": "",
- "icon": null
+ "icon": null,
+ "zIndex": 0
}
]
}
diff --git a/testdata/d2exporter/TestExport/theme/shape_with_italic.exp.json b/testdata/d2exporter/TestExport/theme/shape_with_italic.exp.json
index 3f8c3fc3c..73a0eab3c 100644
--- a/testdata/d2exporter/TestExport/theme/shape_with_italic.exp.json
+++ b/testdata/d2exporter/TestExport/theme/shape_with_italic.exp.json
@@ -10,7 +10,6 @@
},
"width": 0,
"height": 0,
- "level": 1,
"opacity": 1,
"strokeDash": 0,
"strokeWidth": 2,
@@ -36,7 +35,9 @@
"bold": true,
"underline": false,
"labelWidth": 0,
- "labelHeight": 0
+ "labelHeight": 0,
+ "zIndex": 0,
+ "level": 1
}
],
"connections": []
diff --git a/testdata/d2exporter/TestExport/theme/shape_without_bold.exp.json b/testdata/d2exporter/TestExport/theme/shape_without_bold.exp.json
index 3111dd17e..e136a4d38 100644
--- a/testdata/d2exporter/TestExport/theme/shape_without_bold.exp.json
+++ b/testdata/d2exporter/TestExport/theme/shape_without_bold.exp.json
@@ -10,7 +10,6 @@
},
"width": 0,
"height": 0,
- "level": 1,
"opacity": 1,
"strokeDash": 0,
"strokeWidth": 2,
@@ -36,7 +35,9 @@
"bold": false,
"underline": false,
"labelWidth": 0,
- "labelHeight": 0
+ "labelHeight": 0,
+ "zIndex": 0,
+ "level": 1
}
],
"connections": []
diff --git a/testdata/d2oracle/TestCreate/base.exp.json b/testdata/d2oracle/TestCreate/base.exp.json
index a7ac1c375..2378b30c1 100644
--- a/testdata/d2oracle/TestCreate/base.exp.json
+++ b/testdata/d2oracle/TestCreate/base.exp.json
@@ -47,7 +47,8 @@
"direction": {
"value": ""
}
- }
+ },
+ "zIndex": 0
},
"edges": null,
"objects": [
@@ -92,7 +93,8 @@
"direction": {
"value": ""
}
- }
+ },
+ "zIndex": 0
}
]
},
diff --git a/testdata/d2oracle/TestCreate/container.exp.json b/testdata/d2oracle/TestCreate/container.exp.json
index dc7bbf8f1..826ecb30b 100644
--- a/testdata/d2oracle/TestCreate/container.exp.json
+++ b/testdata/d2oracle/TestCreate/container.exp.json
@@ -76,7 +76,8 @@
"direction": {
"value": ""
}
- }
+ },
+ "zIndex": 0
},
"edges": null,
"objects": [
@@ -121,7 +122,8 @@
"direction": {
"value": ""
}
- }
+ },
+ "zIndex": 0
},
{
"id": "q",
@@ -164,7 +166,8 @@
"direction": {
"value": ""
}
- }
+ },
+ "zIndex": 0
}
]
},
diff --git a/testdata/d2oracle/TestCreate/container_edge.exp.json b/testdata/d2oracle/TestCreate/container_edge.exp.json
index 21565478e..86f090cc4 100644
--- a/testdata/d2oracle/TestCreate/container_edge.exp.json
+++ b/testdata/d2oracle/TestCreate/container_edge.exp.json
@@ -99,7 +99,8 @@
"direction": {
"value": ""
}
- }
+ },
+ "zIndex": 0
},
"edges": [
{
@@ -130,7 +131,8 @@
"direction": {
"value": ""
}
- }
+ },
+ "zIndex": 0
}
],
"objects": [
@@ -175,7 +177,8 @@
"direction": {
"value": ""
}
- }
+ },
+ "zIndex": 0
},
{
"id": "x",
@@ -218,7 +221,8 @@
"direction": {
"value": ""
}
- }
+ },
+ "zIndex": 0
},
{
"id": "y",
@@ -261,7 +265,8 @@
"direction": {
"value": ""
}
- }
+ },
+ "zIndex": 0
}
]
},
diff --git a/testdata/d2oracle/TestCreate/container_edge_label.exp.json b/testdata/d2oracle/TestCreate/container_edge_label.exp.json
index 77f7b9a48..df5fcb180 100644
--- a/testdata/d2oracle/TestCreate/container_edge_label.exp.json
+++ b/testdata/d2oracle/TestCreate/container_edge_label.exp.json
@@ -109,7 +109,8 @@
"direction": {
"value": ""
}
- }
+ },
+ "zIndex": 0
},
"edges": [
{
@@ -140,7 +141,8 @@
"direction": {
"value": ""
}
- }
+ },
+ "zIndex": 0
}
],
"objects": [
@@ -185,7 +187,8 @@
"direction": {
"value": ""
}
- }
+ },
+ "zIndex": 0
},
{
"id": "x",
@@ -228,7 +231,8 @@
"direction": {
"value": ""
}
- }
+ },
+ "zIndex": 0
},
{
"id": "y",
@@ -271,7 +275,8 @@
"direction": {
"value": ""
}
- }
+ },
+ "zIndex": 0
}
]
},
diff --git a/testdata/d2oracle/TestCreate/edge.exp.json b/testdata/d2oracle/TestCreate/edge.exp.json
index ec2ec4313..2469379f1 100644
--- a/testdata/d2oracle/TestCreate/edge.exp.json
+++ b/testdata/d2oracle/TestCreate/edge.exp.json
@@ -70,7 +70,8 @@
"direction": {
"value": ""
}
- }
+ },
+ "zIndex": 0
},
"edges": [
{
@@ -101,7 +102,8 @@
"direction": {
"value": ""
}
- }
+ },
+ "zIndex": 0
}
],
"objects": [
@@ -146,7 +148,8 @@
"direction": {
"value": ""
}
- }
+ },
+ "zIndex": 0
},
{
"id": "y",
@@ -189,7 +192,8 @@
"direction": {
"value": ""
}
- }
+ },
+ "zIndex": 0
}
]
},
diff --git a/testdata/d2oracle/TestCreate/edge_nested.exp.json b/testdata/d2oracle/TestCreate/edge_nested.exp.json
index 5d8ed4b19..521c7ee74 100644
--- a/testdata/d2oracle/TestCreate/edge_nested.exp.json
+++ b/testdata/d2oracle/TestCreate/edge_nested.exp.json
@@ -86,7 +86,8 @@
"direction": {
"value": ""
}
- }
+ },
+ "zIndex": 0
},
"edges": [
{
@@ -117,7 +118,8 @@
"direction": {
"value": ""
}
- }
+ },
+ "zIndex": 0
}
],
"objects": [
@@ -162,7 +164,8 @@
"direction": {
"value": ""
}
- }
+ },
+ "zIndex": 0
},
{
"id": "x",
@@ -205,7 +208,8 @@
"direction": {
"value": ""
}
- }
+ },
+ "zIndex": 0
},
{
"id": "y",
@@ -248,7 +252,8 @@
"direction": {
"value": ""
}
- }
+ },
+ "zIndex": 0
}
]
},
diff --git a/testdata/d2oracle/TestCreate/edge_scope.exp.json b/testdata/d2oracle/TestCreate/edge_scope.exp.json
index 2ff35f256..f9cf54cf0 100644
--- a/testdata/d2oracle/TestCreate/edge_scope.exp.json
+++ b/testdata/d2oracle/TestCreate/edge_scope.exp.json
@@ -99,7 +99,8 @@
"direction": {
"value": ""
}
- }
+ },
+ "zIndex": 0
},
"edges": [
{
@@ -130,7 +131,8 @@
"direction": {
"value": ""
}
- }
+ },
+ "zIndex": 0
}
],
"objects": [
@@ -175,7 +177,8 @@
"direction": {
"value": ""
}
- }
+ },
+ "zIndex": 0
},
{
"id": "x",
@@ -218,7 +221,8 @@
"direction": {
"value": ""
}
- }
+ },
+ "zIndex": 0
},
{
"id": "y",
@@ -261,7 +265,8 @@
"direction": {
"value": ""
}
- }
+ },
+ "zIndex": 0
}
]
},
diff --git a/testdata/d2oracle/TestCreate/edge_scope_flat.exp.json b/testdata/d2oracle/TestCreate/edge_scope_flat.exp.json
index fa3474290..c7516bc04 100644
--- a/testdata/d2oracle/TestCreate/edge_scope_flat.exp.json
+++ b/testdata/d2oracle/TestCreate/edge_scope_flat.exp.json
@@ -99,7 +99,8 @@
"direction": {
"value": ""
}
- }
+ },
+ "zIndex": 0
},
"edges": [
{
@@ -130,7 +131,8 @@
"direction": {
"value": ""
}
- }
+ },
+ "zIndex": 0
}
],
"objects": [
@@ -175,7 +177,8 @@
"direction": {
"value": ""
}
- }
+ },
+ "zIndex": 0
},
{
"id": "x",
@@ -218,7 +221,8 @@
"direction": {
"value": ""
}
- }
+ },
+ "zIndex": 0
},
{
"id": "y",
@@ -261,7 +265,8 @@
"direction": {
"value": ""
}
- }
+ },
+ "zIndex": 0
}
]
},
diff --git a/testdata/d2oracle/TestCreate/edge_scope_nested.exp.json b/testdata/d2oracle/TestCreate/edge_scope_nested.exp.json
index 32b0a3db0..32bd13e82 100644
--- a/testdata/d2oracle/TestCreate/edge_scope_nested.exp.json
+++ b/testdata/d2oracle/TestCreate/edge_scope_nested.exp.json
@@ -110,7 +110,8 @@
"direction": {
"value": ""
}
- }
+ },
+ "zIndex": 0
},
"edges": [
{
@@ -141,7 +142,8 @@
"direction": {
"value": ""
}
- }
+ },
+ "zIndex": 0
}
],
"objects": [
@@ -197,7 +199,8 @@
"direction": {
"value": ""
}
- }
+ },
+ "zIndex": 0
},
{
"id": "y",
@@ -251,7 +254,8 @@
"direction": {
"value": ""
}
- }
+ },
+ "zIndex": 0
},
{
"id": "z",
@@ -294,7 +298,8 @@
"direction": {
"value": ""
}
- }
+ },
+ "zIndex": 0
},
{
"id": "q",
@@ -337,7 +342,8 @@
"direction": {
"value": ""
}
- }
+ },
+ "zIndex": 0
}
]
},
diff --git a/testdata/d2oracle/TestCreate/edge_unique.exp.json b/testdata/d2oracle/TestCreate/edge_unique.exp.json
index 68eb01b49..dc8a4abce 100644
--- a/testdata/d2oracle/TestCreate/edge_unique.exp.json
+++ b/testdata/d2oracle/TestCreate/edge_unique.exp.json
@@ -256,7 +256,8 @@
"direction": {
"value": ""
}
- }
+ },
+ "zIndex": 0
},
"edges": [
{
@@ -287,7 +288,8 @@
"direction": {
"value": ""
}
- }
+ },
+ "zIndex": 0
},
{
"index": 0,
@@ -317,7 +319,8 @@
"direction": {
"value": ""
}
- }
+ },
+ "zIndex": 0
},
{
"index": 1,
@@ -347,7 +350,8 @@
"direction": {
"value": ""
}
- }
+ },
+ "zIndex": 0
},
{
"index": 2,
@@ -377,7 +381,8 @@
"direction": {
"value": ""
}
- }
+ },
+ "zIndex": 0
}
],
"objects": [
@@ -422,7 +427,8 @@
"direction": {
"value": ""
}
- }
+ },
+ "zIndex": 0
},
{
"id": "y",
@@ -465,7 +471,8 @@
"direction": {
"value": ""
}
- }
+ },
+ "zIndex": 0
},
{
"id": "hello",
@@ -548,7 +555,8 @@
"direction": {
"value": ""
}
- }
+ },
+ "zIndex": 0
},
{
"id": "x",
@@ -631,7 +639,8 @@
"direction": {
"value": ""
}
- }
+ },
+ "zIndex": 0
},
{
"id": "y",
@@ -714,7 +723,8 @@
"direction": {
"value": ""
}
- }
+ },
+ "zIndex": 0
}
]
},
diff --git a/testdata/d2oracle/TestCreate/gen_key.exp.json b/testdata/d2oracle/TestCreate/gen_key.exp.json
index ee6032e00..e80eea295 100644
--- a/testdata/d2oracle/TestCreate/gen_key.exp.json
+++ b/testdata/d2oracle/TestCreate/gen_key.exp.json
@@ -70,7 +70,8 @@
"direction": {
"value": ""
}
- }
+ },
+ "zIndex": 0
},
"edges": null,
"objects": [
@@ -115,7 +116,8 @@
"direction": {
"value": ""
}
- }
+ },
+ "zIndex": 0
},
{
"id": "square 2",
@@ -158,7 +160,8 @@
"direction": {
"value": ""
}
- }
+ },
+ "zIndex": 0
}
]
},
diff --git a/testdata/d2oracle/TestCreate/gen_key_n.exp.json b/testdata/d2oracle/TestCreate/gen_key_n.exp.json
index 66a55f903..37936f950 100644
--- a/testdata/d2oracle/TestCreate/gen_key_n.exp.json
+++ b/testdata/d2oracle/TestCreate/gen_key_n.exp.json
@@ -328,7 +328,8 @@
"direction": {
"value": ""
}
- }
+ },
+ "zIndex": 0
},
"edges": null,
"objects": [
@@ -395,7 +396,8 @@
"direction": {
"value": ""
}
- }
+ },
+ "zIndex": 0
},
{
"id": "y",
@@ -460,7 +462,8 @@
"direction": {
"value": ""
}
- }
+ },
+ "zIndex": 0
},
{
"id": "z",
@@ -525,7 +528,8 @@
"direction": {
"value": ""
}
- }
+ },
+ "zIndex": 0
},
{
"id": "square",
@@ -568,7 +572,8 @@
"direction": {
"value": ""
}
- }
+ },
+ "zIndex": 0
},
{
"id": "square 2",
@@ -611,7 +616,8 @@
"direction": {
"value": ""
}
- }
+ },
+ "zIndex": 0
},
{
"id": "square 3",
@@ -654,7 +660,8 @@
"direction": {
"value": ""
}
- }
+ },
+ "zIndex": 0
},
{
"id": "square 4",
@@ -697,7 +704,8 @@
"direction": {
"value": ""
}
- }
+ },
+ "zIndex": 0
},
{
"id": "square 5",
@@ -740,7 +748,8 @@
"direction": {
"value": ""
}
- }
+ },
+ "zIndex": 0
},
{
"id": "square 6",
@@ -783,7 +792,8 @@
"direction": {
"value": ""
}
- }
+ },
+ "zIndex": 0
},
{
"id": "square 7",
@@ -826,7 +836,8 @@
"direction": {
"value": ""
}
- }
+ },
+ "zIndex": 0
},
{
"id": "square 8",
@@ -869,7 +880,8 @@
"direction": {
"value": ""
}
- }
+ },
+ "zIndex": 0
},
{
"id": "square 9",
@@ -912,7 +924,8 @@
"direction": {
"value": ""
}
- }
+ },
+ "zIndex": 0
},
{
"id": "square 10",
@@ -955,7 +968,8 @@
"direction": {
"value": ""
}
- }
+ },
+ "zIndex": 0
},
{
"id": "square 11",
@@ -998,7 +1012,8 @@
"direction": {
"value": ""
}
- }
+ },
+ "zIndex": 0
}
]
},
diff --git a/testdata/d2oracle/TestCreate/gen_key_nested.exp.json b/testdata/d2oracle/TestCreate/gen_key_nested.exp.json
index ab99bdedd..87390319a 100644
--- a/testdata/d2oracle/TestCreate/gen_key_nested.exp.json
+++ b/testdata/d2oracle/TestCreate/gen_key_nested.exp.json
@@ -136,7 +136,8 @@
"direction": {
"value": ""
}
- }
+ },
+ "zIndex": 0
},
"edges": null,
"objects": [
@@ -267,7 +268,8 @@
"direction": {
"value": ""
}
- }
+ },
+ "zIndex": 0
},
{
"id": "y",
@@ -396,7 +398,8 @@
"direction": {
"value": ""
}
- }
+ },
+ "zIndex": 0
},
{
"id": "z",
@@ -525,7 +528,8 @@
"direction": {
"value": ""
}
- }
+ },
+ "zIndex": 0
},
{
"id": "square",
@@ -601,7 +605,8 @@
"direction": {
"value": ""
}
- }
+ },
+ "zIndex": 0
},
{
"id": "square 2",
@@ -677,7 +682,8 @@
"direction": {
"value": ""
}
- }
+ },
+ "zIndex": 0
}
]
},
diff --git a/testdata/d2oracle/TestCreate/gen_key_scope.exp.json b/testdata/d2oracle/TestCreate/gen_key_scope.exp.json
index e429b1605..13561d4d2 100644
--- a/testdata/d2oracle/TestCreate/gen_key_scope.exp.json
+++ b/testdata/d2oracle/TestCreate/gen_key_scope.exp.json
@@ -121,7 +121,8 @@
"direction": {
"value": ""
}
- }
+ },
+ "zIndex": 0
},
"edges": null,
"objects": [
@@ -188,7 +189,8 @@
"direction": {
"value": ""
}
- }
+ },
+ "zIndex": 0
},
{
"id": "y",
@@ -253,7 +255,8 @@
"direction": {
"value": ""
}
- }
+ },
+ "zIndex": 0
},
{
"id": "z",
@@ -318,7 +321,8 @@
"direction": {
"value": ""
}
- }
+ },
+ "zIndex": 0
},
{
"id": "square",
@@ -361,7 +365,8 @@
"direction": {
"value": ""
}
- }
+ },
+ "zIndex": 0
},
{
"id": "square 2",
@@ -404,7 +409,8 @@
"direction": {
"value": ""
}
- }
+ },
+ "zIndex": 0
}
]
},
diff --git a/testdata/d2oracle/TestCreate/gen_key_suffix.exp.json b/testdata/d2oracle/TestCreate/gen_key_suffix.exp.json
index 4e34daf68..1b1eb234f 100644
--- a/testdata/d2oracle/TestCreate/gen_key_suffix.exp.json
+++ b/testdata/d2oracle/TestCreate/gen_key_suffix.exp.json
@@ -70,7 +70,8 @@
"direction": {
"value": ""
}
- }
+ },
+ "zIndex": 0
},
"edges": null,
"objects": [
@@ -115,7 +116,8 @@
"direction": {
"value": ""
}
- }
+ },
+ "zIndex": 0
},
{
"id": "x 2",
@@ -158,7 +160,8 @@
"direction": {
"value": ""
}
- }
+ },
+ "zIndex": 0
}
]
},
diff --git a/testdata/d2oracle/TestCreate/make_scope_multiline.exp.json b/testdata/d2oracle/TestCreate/make_scope_multiline.exp.json
index c2d340411..2b4068cac 100644
--- a/testdata/d2oracle/TestCreate/make_scope_multiline.exp.json
+++ b/testdata/d2oracle/TestCreate/make_scope_multiline.exp.json
@@ -109,7 +109,8 @@
"direction": {
"value": ""
}
- }
+ },
+ "zIndex": 0
},
"edges": null,
"objects": [
@@ -154,7 +155,8 @@
"direction": {
"value": ""
}
- }
+ },
+ "zIndex": 0
},
{
"id": "orange",
@@ -197,7 +199,8 @@
"direction": {
"value": ""
}
- }
+ },
+ "zIndex": 0
}
]
},
diff --git a/testdata/d2oracle/TestCreate/make_scope_multiline_spacing_1.exp.json b/testdata/d2oracle/TestCreate/make_scope_multiline_spacing_1.exp.json
index 73f6f3626..d40ba110f 100644
--- a/testdata/d2oracle/TestCreate/make_scope_multiline_spacing_1.exp.json
+++ b/testdata/d2oracle/TestCreate/make_scope_multiline_spacing_1.exp.json
@@ -155,7 +155,8 @@
"direction": {
"value": ""
}
- }
+ },
+ "zIndex": 0
},
"edges": null,
"objects": [
@@ -200,7 +201,8 @@
"direction": {
"value": ""
}
- }
+ },
+ "zIndex": 0
},
{
"id": "rawr",
@@ -243,7 +245,8 @@
"direction": {
"value": ""
}
- }
+ },
+ "zIndex": 0
},
{
"id": "orange",
@@ -286,7 +289,8 @@
"direction": {
"value": ""
}
- }
+ },
+ "zIndex": 0
},
{
"id": "after",
@@ -329,7 +333,8 @@
"direction": {
"value": ""
}
- }
+ },
+ "zIndex": 0
}
]
},
diff --git a/testdata/d2oracle/TestCreate/make_scope_multiline_spacing_2.exp.json b/testdata/d2oracle/TestCreate/make_scope_multiline_spacing_2.exp.json
index edaeba937..c7acfe593 100644
--- a/testdata/d2oracle/TestCreate/make_scope_multiline_spacing_2.exp.json
+++ b/testdata/d2oracle/TestCreate/make_scope_multiline_spacing_2.exp.json
@@ -155,7 +155,8 @@
"direction": {
"value": ""
}
- }
+ },
+ "zIndex": 0
},
"edges": null,
"objects": [
@@ -200,7 +201,8 @@
"direction": {
"value": ""
}
- }
+ },
+ "zIndex": 0
},
{
"id": "rawr",
@@ -243,7 +245,8 @@
"direction": {
"value": ""
}
- }
+ },
+ "zIndex": 0
},
{
"id": "orange",
@@ -286,7 +289,8 @@
"direction": {
"value": ""
}
- }
+ },
+ "zIndex": 0
},
{
"id": "after",
@@ -329,7 +333,8 @@
"direction": {
"value": ""
}
- }
+ },
+ "zIndex": 0
}
]
},
diff --git a/testdata/d2oracle/TestCreate/nested.exp.json b/testdata/d2oracle/TestCreate/nested.exp.json
index 2ba4dcb6f..ade21862c 100644
--- a/testdata/d2oracle/TestCreate/nested.exp.json
+++ b/testdata/d2oracle/TestCreate/nested.exp.json
@@ -69,7 +69,8 @@
"direction": {
"value": ""
}
- }
+ },
+ "zIndex": 0
},
"edges": null,
"objects": [
@@ -136,7 +137,8 @@
"direction": {
"value": ""
}
- }
+ },
+ "zIndex": 0
},
{
"id": "c",
@@ -201,7 +203,8 @@
"direction": {
"value": ""
}
- }
+ },
+ "zIndex": 0
},
{
"id": "square",
@@ -266,7 +269,8 @@
"direction": {
"value": ""
}
- }
+ },
+ "zIndex": 0
}
]
},
diff --git a/testdata/d2oracle/TestCreate/scope.exp.json b/testdata/d2oracle/TestCreate/scope.exp.json
index 56bce7e52..791ce462d 100644
--- a/testdata/d2oracle/TestCreate/scope.exp.json
+++ b/testdata/d2oracle/TestCreate/scope.exp.json
@@ -98,7 +98,8 @@
"direction": {
"value": ""
}
- }
+ },
+ "zIndex": 0
},
"edges": null,
"objects": [
@@ -165,7 +166,8 @@
"direction": {
"value": ""
}
- }
+ },
+ "zIndex": 0
},
{
"id": "y",
@@ -230,7 +232,8 @@
"direction": {
"value": ""
}
- }
+ },
+ "zIndex": 0
},
{
"id": "z",
@@ -295,7 +298,8 @@
"direction": {
"value": ""
}
- }
+ },
+ "zIndex": 0
},
{
"id": "square",
@@ -338,7 +342,8 @@
"direction": {
"value": ""
}
- }
+ },
+ "zIndex": 0
}
]
},
diff --git a/testdata/d2oracle/TestDelete/breakup_arrowhead.exp.json b/testdata/d2oracle/TestDelete/breakup_arrowhead.exp.json
index 404e508c0..47b99bd80 100644
--- a/testdata/d2oracle/TestDelete/breakup_arrowhead.exp.json
+++ b/testdata/d2oracle/TestDelete/breakup_arrowhead.exp.json
@@ -47,7 +47,8 @@
"direction": {
"value": ""
}
- }
+ },
+ "zIndex": 0
},
"edges": null,
"objects": [
@@ -92,7 +93,8 @@
"direction": {
"value": ""
}
- }
+ },
+ "zIndex": 0
}
]
},
diff --git a/testdata/d2oracle/TestDelete/children.exp.json b/testdata/d2oracle/TestDelete/children.exp.json
index 4d7148816..b4d1e4fc0 100644
--- a/testdata/d2oracle/TestDelete/children.exp.json
+++ b/testdata/d2oracle/TestDelete/children.exp.json
@@ -93,7 +93,8 @@
"direction": {
"value": ""
}
- }
+ },
+ "zIndex": 0
},
"edges": [
{
@@ -124,7 +125,8 @@
"direction": {
"value": ""
}
- }
+ },
+ "zIndex": 0
}
],
"objects": [
@@ -169,7 +171,8 @@
"direction": {
"value": ""
}
- }
+ },
+ "zIndex": 0
},
{
"id": "x",
@@ -212,7 +215,8 @@
"direction": {
"value": ""
}
- }
+ },
+ "zIndex": 0
},
{
"id": "y",
@@ -255,7 +259,8 @@
"direction": {
"value": ""
}
- }
+ },
+ "zIndex": 0
}
]
},
diff --git a/testdata/d2oracle/TestDelete/children_conflicts.exp.json b/testdata/d2oracle/TestDelete/children_conflicts.exp.json
index 8c9d70638..349e74e09 100644
--- a/testdata/d2oracle/TestDelete/children_conflicts.exp.json
+++ b/testdata/d2oracle/TestDelete/children_conflicts.exp.json
@@ -70,7 +70,8 @@
"direction": {
"value": ""
}
- }
+ },
+ "zIndex": 0
},
"edges": null,
"objects": [
@@ -115,7 +116,8 @@
"direction": {
"value": ""
}
- }
+ },
+ "zIndex": 0
},
{
"id": "x",
@@ -158,7 +160,8 @@
"direction": {
"value": ""
}
- }
+ },
+ "zIndex": 0
}
]
},
diff --git a/testdata/d2oracle/TestDelete/children_edge_conflicts.exp.json b/testdata/d2oracle/TestDelete/children_edge_conflicts.exp.json
index 0f45cbe4c..d21f267ed 100644
--- a/testdata/d2oracle/TestDelete/children_edge_conflicts.exp.json
+++ b/testdata/d2oracle/TestDelete/children_edge_conflicts.exp.json
@@ -126,7 +126,8 @@
"direction": {
"value": ""
}
- }
+ },
+ "zIndex": 0
},
"edges": [
{
@@ -157,7 +158,8 @@
"direction": {
"value": ""
}
- }
+ },
+ "zIndex": 0
}
],
"objects": [
@@ -202,7 +204,8 @@
"direction": {
"value": ""
}
- }
+ },
+ "zIndex": 0
},
{
"id": "x 2",
@@ -265,7 +268,8 @@
"direction": {
"value": ""
}
- }
+ },
+ "zIndex": 0
},
{
"id": "y",
@@ -308,7 +312,8 @@
"direction": {
"value": ""
}
- }
+ },
+ "zIndex": 0
}
]
},
diff --git a/testdata/d2oracle/TestDelete/children_edges_flat_conflicts.exp.json b/testdata/d2oracle/TestDelete/children_edges_flat_conflicts.exp.json
index 368b8310d..396cdb848 100644
--- a/testdata/d2oracle/TestDelete/children_edges_flat_conflicts.exp.json
+++ b/testdata/d2oracle/TestDelete/children_edges_flat_conflicts.exp.json
@@ -219,7 +219,8 @@
"direction": {
"value": ""
}
- }
+ },
+ "zIndex": 0
},
"edges": [
{
@@ -250,7 +251,8 @@
"direction": {
"value": ""
}
- }
+ },
+ "zIndex": 0
},
{
"index": 0,
@@ -280,7 +282,8 @@
"direction": {
"value": ""
}
- }
+ },
+ "zIndex": 0
}
],
"objects": [
@@ -325,7 +328,8 @@
"direction": {
"value": ""
}
- }
+ },
+ "zIndex": 0
},
{
"id": "z",
@@ -368,7 +372,8 @@
"direction": {
"value": ""
}
- }
+ },
+ "zIndex": 0
},
{
"id": "x 2",
@@ -431,7 +436,8 @@
"direction": {
"value": ""
}
- }
+ },
+ "zIndex": 0
},
{
"id": "z 2",
@@ -494,7 +500,8 @@
"direction": {
"value": ""
}
- }
+ },
+ "zIndex": 0
},
{
"id": "y",
@@ -557,7 +564,8 @@
"direction": {
"value": ""
}
- }
+ },
+ "zIndex": 0
}
]
},
diff --git a/testdata/d2oracle/TestDelete/children_flat_conflicts.exp.json b/testdata/d2oracle/TestDelete/children_flat_conflicts.exp.json
index 74f50700a..474b72021 100644
--- a/testdata/d2oracle/TestDelete/children_flat_conflicts.exp.json
+++ b/testdata/d2oracle/TestDelete/children_flat_conflicts.exp.json
@@ -103,7 +103,8 @@
"direction": {
"value": ""
}
- }
+ },
+ "zIndex": 0
},
"edges": null,
"objects": [
@@ -168,7 +169,8 @@
"direction": {
"value": ""
}
- }
+ },
+ "zIndex": 0
},
{
"id": "x",
@@ -211,7 +213,8 @@
"direction": {
"value": ""
}
- }
+ },
+ "zIndex": 0
}
]
},
diff --git a/testdata/d2oracle/TestDelete/children_multiple_conflicts.exp.json b/testdata/d2oracle/TestDelete/children_multiple_conflicts.exp.json
index c49fc91ba..d6eef0f98 100644
--- a/testdata/d2oracle/TestDelete/children_multiple_conflicts.exp.json
+++ b/testdata/d2oracle/TestDelete/children_multiple_conflicts.exp.json
@@ -195,7 +195,8 @@
"direction": {
"value": ""
}
- }
+ },
+ "zIndex": 0
},
"edges": [
{
@@ -226,7 +227,8 @@
"direction": {
"value": ""
}
- }
+ },
+ "zIndex": 0
}
],
"objects": [
@@ -311,7 +313,8 @@
"direction": {
"value": ""
}
- }
+ },
+ "zIndex": 0
},
{
"id": "y 2",
@@ -374,7 +377,8 @@
"direction": {
"value": ""
}
- }
+ },
+ "zIndex": 0
},
{
"id": "x",
@@ -417,7 +421,8 @@
"direction": {
"value": ""
}
- }
+ },
+ "zIndex": 0
},
{
"id": "y",
@@ -460,7 +465,8 @@
"direction": {
"value": ""
}
- }
+ },
+ "zIndex": 0
}
]
},
diff --git a/testdata/d2oracle/TestDelete/children_nested_conflicts.exp.json b/testdata/d2oracle/TestDelete/children_nested_conflicts.exp.json
index 313097061..0f6a9945b 100644
--- a/testdata/d2oracle/TestDelete/children_nested_conflicts.exp.json
+++ b/testdata/d2oracle/TestDelete/children_nested_conflicts.exp.json
@@ -99,7 +99,8 @@
"direction": {
"value": ""
}
- }
+ },
+ "zIndex": 0
},
"edges": null,
"objects": [
@@ -144,7 +145,8 @@
"direction": {
"value": ""
}
- }
+ },
+ "zIndex": 0
},
{
"id": "y",
@@ -187,7 +189,8 @@
"direction": {
"value": ""
}
- }
+ },
+ "zIndex": 0
},
{
"id": "x",
@@ -230,7 +233,8 @@
"direction": {
"value": ""
}
- }
+ },
+ "zIndex": 0
}
]
},
diff --git a/testdata/d2oracle/TestDelete/children_nested_referenced_conflicts.exp.json b/testdata/d2oracle/TestDelete/children_nested_referenced_conflicts.exp.json
index 725a50f18..45ab6be77 100644
--- a/testdata/d2oracle/TestDelete/children_nested_referenced_conflicts.exp.json
+++ b/testdata/d2oracle/TestDelete/children_nested_referenced_conflicts.exp.json
@@ -158,7 +158,8 @@
"direction": {
"value": ""
}
- }
+ },
+ "zIndex": 0
},
"edges": null,
"objects": [
@@ -265,7 +266,8 @@
"direction": {
"value": ""
}
- }
+ },
+ "zIndex": 0
},
{
"id": "y",
@@ -350,7 +352,8 @@
"direction": {
"value": ""
}
- }
+ },
+ "zIndex": 0
},
{
"id": "x",
@@ -393,7 +396,8 @@
"direction": {
"value": ""
}
- }
+ },
+ "zIndex": 0
}
]
},
diff --git a/testdata/d2oracle/TestDelete/children_no_self_conflict.exp.json b/testdata/d2oracle/TestDelete/children_no_self_conflict.exp.json
index 91f74c667..00194d878 100644
--- a/testdata/d2oracle/TestDelete/children_no_self_conflict.exp.json
+++ b/testdata/d2oracle/TestDelete/children_no_self_conflict.exp.json
@@ -47,7 +47,8 @@
"direction": {
"value": ""
}
- }
+ },
+ "zIndex": 0
},
"edges": null,
"objects": [
@@ -92,7 +93,8 @@
"direction": {
"value": ""
}
- }
+ },
+ "zIndex": 0
}
]
},
diff --git a/testdata/d2oracle/TestDelete/children_order.exp.json b/testdata/d2oracle/TestDelete/children_order.exp.json
index ace7a8b31..8e16e64c9 100644
--- a/testdata/d2oracle/TestDelete/children_order.exp.json
+++ b/testdata/d2oracle/TestDelete/children_order.exp.json
@@ -122,7 +122,8 @@
"direction": {
"value": ""
}
- }
+ },
+ "zIndex": 0
},
"edges": null,
"objects": [
@@ -167,7 +168,8 @@
"direction": {
"value": ""
}
- }
+ },
+ "zIndex": 0
},
{
"id": "before",
@@ -210,7 +212,8 @@
"direction": {
"value": ""
}
- }
+ },
+ "zIndex": 0
},
{
"id": "congo",
@@ -253,7 +256,8 @@
"direction": {
"value": ""
}
- }
+ },
+ "zIndex": 0
},
{
"id": "after",
@@ -296,7 +300,8 @@
"direction": {
"value": ""
}
- }
+ },
+ "zIndex": 0
}
]
},
diff --git a/testdata/d2oracle/TestDelete/children_referenced_conflicts.exp.json b/testdata/d2oracle/TestDelete/children_referenced_conflicts.exp.json
index 668543222..672c80212 100644
--- a/testdata/d2oracle/TestDelete/children_referenced_conflicts.exp.json
+++ b/testdata/d2oracle/TestDelete/children_referenced_conflicts.exp.json
@@ -103,7 +103,8 @@
"direction": {
"value": ""
}
- }
+ },
+ "zIndex": 0
},
"edges": null,
"objects": [
@@ -168,7 +169,8 @@
"direction": {
"value": ""
}
- }
+ },
+ "zIndex": 0
},
{
"id": "x",
@@ -211,7 +213,8 @@
"direction": {
"value": ""
}
- }
+ },
+ "zIndex": 0
}
]
},
diff --git a/testdata/d2oracle/TestDelete/children_scope.exp.json b/testdata/d2oracle/TestDelete/children_scope.exp.json
index 7bd1b5112..2a9ab9d84 100644
--- a/testdata/d2oracle/TestDelete/children_scope.exp.json
+++ b/testdata/d2oracle/TestDelete/children_scope.exp.json
@@ -133,7 +133,8 @@
"direction": {
"value": ""
}
- }
+ },
+ "zIndex": 0
},
"edges": [
{
@@ -164,7 +165,8 @@
"direction": {
"value": ""
}
- }
+ },
+ "zIndex": 0
}
],
"objects": [
@@ -220,7 +222,8 @@
"direction": {
"value": ""
}
- }
+ },
+ "zIndex": 0
},
{
"id": "q",
@@ -274,7 +277,8 @@
"direction": {
"value": ""
}
- }
+ },
+ "zIndex": 0
},
{
"id": "\"what's up\"",
@@ -317,7 +321,8 @@
"direction": {
"value": ""
}
- }
+ },
+ "zIndex": 0
},
{
"id": "x",
@@ -360,7 +365,8 @@
"direction": {
"value": ""
}
- }
+ },
+ "zIndex": 0
},
{
"id": "y",
@@ -403,7 +409,8 @@
"direction": {
"value": ""
}
- }
+ },
+ "zIndex": 0
}
]
},
diff --git a/testdata/d2oracle/TestDelete/container_near.exp.json b/testdata/d2oracle/TestDelete/container_near.exp.json
index 704202b70..2904e02ec 100644
--- a/testdata/d2oracle/TestDelete/container_near.exp.json
+++ b/testdata/d2oracle/TestDelete/container_near.exp.json
@@ -171,7 +171,8 @@
"direction": {
"value": ""
}
- }
+ },
+ "zIndex": 0
},
"edges": null,
"objects": [
@@ -231,7 +232,8 @@
"direction": {
"value": ""
}
- }
+ },
+ "zIndex": 0
},
{
"id": "z",
@@ -274,7 +276,8 @@
"direction": {
"value": ""
}
- }
+ },
+ "zIndex": 0
},
{
"id": "a",
@@ -332,7 +335,8 @@
"direction": {
"value": ""
}
- }
+ },
+ "zIndex": 0
}
]
},
diff --git a/testdata/d2oracle/TestDelete/delete_icon.exp.json b/testdata/d2oracle/TestDelete/delete_icon.exp.json
index 9a370a688..f71814aea 100644
--- a/testdata/d2oracle/TestDelete/delete_icon.exp.json
+++ b/testdata/d2oracle/TestDelete/delete_icon.exp.json
@@ -97,7 +97,8 @@
"direction": {
"value": ""
}
- }
+ },
+ "zIndex": 0
},
"edges": null,
"objects": [
@@ -153,7 +154,8 @@
"direction": {
"value": ""
}
- }
+ },
+ "zIndex": 0
},
{
"id": "x",
@@ -208,7 +210,8 @@
"direction": {
"value": ""
}
- }
+ },
+ "zIndex": 0
}
]
},
diff --git a/testdata/d2oracle/TestDelete/delete_link.exp.json b/testdata/d2oracle/TestDelete/delete_link.exp.json
index bd4a60f19..fbb71aa46 100644
--- a/testdata/d2oracle/TestDelete/delete_link.exp.json
+++ b/testdata/d2oracle/TestDelete/delete_link.exp.json
@@ -47,7 +47,8 @@
"direction": {
"value": ""
}
- }
+ },
+ "zIndex": 0
},
"edges": null,
"objects": [
@@ -92,7 +93,8 @@
"direction": {
"value": ""
}
- }
+ },
+ "zIndex": 0
}
]
},
diff --git a/testdata/d2oracle/TestDelete/delete_near.exp.json b/testdata/d2oracle/TestDelete/delete_near.exp.json
index 5ec43d9a8..ba1fef220 100644
--- a/testdata/d2oracle/TestDelete/delete_near.exp.json
+++ b/testdata/d2oracle/TestDelete/delete_near.exp.json
@@ -70,7 +70,8 @@
"direction": {
"value": ""
}
- }
+ },
+ "zIndex": 0
},
"edges": null,
"objects": [
@@ -115,7 +116,8 @@
"direction": {
"value": ""
}
- }
+ },
+ "zIndex": 0
},
{
"id": "y",
@@ -158,7 +160,8 @@
"direction": {
"value": ""
}
- }
+ },
+ "zIndex": 0
}
]
},
diff --git a/testdata/d2oracle/TestDelete/delete_needed_flat_near.exp.json b/testdata/d2oracle/TestDelete/delete_needed_flat_near.exp.json
index 1fe0d5f5c..6212b032a 100644
--- a/testdata/d2oracle/TestDelete/delete_needed_flat_near.exp.json
+++ b/testdata/d2oracle/TestDelete/delete_needed_flat_near.exp.json
@@ -70,7 +70,8 @@
"direction": {
"value": ""
}
- }
+ },
+ "zIndex": 0
},
"edges": null,
"objects": [
@@ -115,7 +116,8 @@
"direction": {
"value": ""
}
- }
+ },
+ "zIndex": 0
},
{
"id": "y",
@@ -158,7 +160,8 @@
"direction": {
"value": ""
}
- }
+ },
+ "zIndex": 0
}
]
},
diff --git a/testdata/d2oracle/TestDelete/delete_redundant_flat_near.exp.json b/testdata/d2oracle/TestDelete/delete_redundant_flat_near.exp.json
index e7e41216f..3eefd73d8 100644
--- a/testdata/d2oracle/TestDelete/delete_redundant_flat_near.exp.json
+++ b/testdata/d2oracle/TestDelete/delete_redundant_flat_near.exp.json
@@ -70,7 +70,8 @@
"direction": {
"value": ""
}
- }
+ },
+ "zIndex": 0
},
"edges": null,
"objects": [
@@ -115,7 +116,8 @@
"direction": {
"value": ""
}
- }
+ },
+ "zIndex": 0
},
{
"id": "y",
@@ -158,7 +160,8 @@
"direction": {
"value": ""
}
- }
+ },
+ "zIndex": 0
}
]
},
diff --git a/testdata/d2oracle/TestDelete/delete_tooltip.exp.json b/testdata/d2oracle/TestDelete/delete_tooltip.exp.json
index cddd7377e..57a87fcdd 100644
--- a/testdata/d2oracle/TestDelete/delete_tooltip.exp.json
+++ b/testdata/d2oracle/TestDelete/delete_tooltip.exp.json
@@ -47,7 +47,8 @@
"direction": {
"value": ""
}
- }
+ },
+ "zIndex": 0
},
"edges": null,
"objects": [
@@ -92,7 +93,8 @@
"direction": {
"value": ""
}
- }
+ },
+ "zIndex": 0
}
]
},
diff --git a/testdata/d2oracle/TestDelete/edge_both_identical_childs.exp.json b/testdata/d2oracle/TestDelete/edge_both_identical_childs.exp.json
index c8c0b2a8f..c3ca2e052 100644
--- a/testdata/d2oracle/TestDelete/edge_both_identical_childs.exp.json
+++ b/testdata/d2oracle/TestDelete/edge_both_identical_childs.exp.json
@@ -103,7 +103,8 @@
"direction": {
"value": ""
}
- }
+ },
+ "zIndex": 0
},
"edges": [
{
@@ -134,7 +135,8 @@
"direction": {
"value": ""
}
- }
+ },
+ "zIndex": 0
}
],
"objects": [
@@ -232,7 +234,8 @@
"direction": {
"value": ""
}
- }
+ },
+ "zIndex": 0
},
{
"id": "y",
@@ -297,7 +300,8 @@
"direction": {
"value": ""
}
- }
+ },
+ "zIndex": 0
},
{
"id": "z",
@@ -362,7 +366,8 @@
"direction": {
"value": ""
}
- }
+ },
+ "zIndex": 0
},
{
"id": "b",
@@ -416,7 +421,8 @@
"direction": {
"value": ""
}
- }
+ },
+ "zIndex": 0
}
]
},
diff --git a/testdata/d2oracle/TestDelete/edge_common.exp.json b/testdata/d2oracle/TestDelete/edge_common.exp.json
index f268c4258..0b8c10a7c 100644
--- a/testdata/d2oracle/TestDelete/edge_common.exp.json
+++ b/testdata/d2oracle/TestDelete/edge_common.exp.json
@@ -70,7 +70,8 @@
"direction": {
"value": ""
}
- }
+ },
+ "zIndex": 0
},
"edges": [
{
@@ -101,7 +102,8 @@
"direction": {
"value": ""
}
- }
+ },
+ "zIndex": 0
}
],
"objects": [
@@ -146,7 +148,8 @@
"direction": {
"value": ""
}
- }
+ },
+ "zIndex": 0
},
{
"id": "y",
@@ -189,7 +192,8 @@
"direction": {
"value": ""
}
- }
+ },
+ "zIndex": 0
}
]
},
diff --git a/testdata/d2oracle/TestDelete/edge_common_2.exp.json b/testdata/d2oracle/TestDelete/edge_common_2.exp.json
index 81c153998..a0ff4695d 100644
--- a/testdata/d2oracle/TestDelete/edge_common_2.exp.json
+++ b/testdata/d2oracle/TestDelete/edge_common_2.exp.json
@@ -70,7 +70,8 @@
"direction": {
"value": ""
}
- }
+ },
+ "zIndex": 0
},
"edges": [
{
@@ -101,7 +102,8 @@
"direction": {
"value": ""
}
- }
+ },
+ "zIndex": 0
}
],
"objects": [
@@ -146,7 +148,8 @@
"direction": {
"value": ""
}
- }
+ },
+ "zIndex": 0
},
{
"id": "y",
@@ -189,7 +192,8 @@
"direction": {
"value": ""
}
- }
+ },
+ "zIndex": 0
}
]
},
diff --git a/testdata/d2oracle/TestDelete/edge_common_3.exp.json b/testdata/d2oracle/TestDelete/edge_common_3.exp.json
index 884567505..e27a63060 100644
--- a/testdata/d2oracle/TestDelete/edge_common_3.exp.json
+++ b/testdata/d2oracle/TestDelete/edge_common_3.exp.json
@@ -92,7 +92,8 @@
"direction": {
"value": ""
}
- }
+ },
+ "zIndex": 0
},
"edges": null,
"objects": [
@@ -179,7 +180,8 @@
"direction": {
"value": ""
}
- }
+ },
+ "zIndex": 0
},
{
"id": "a",
@@ -233,7 +235,8 @@
"direction": {
"value": ""
}
- }
+ },
+ "zIndex": 0
},
{
"id": "y",
@@ -287,7 +290,8 @@
"direction": {
"value": ""
}
- }
+ },
+ "zIndex": 0
}
]
},
diff --git a/testdata/d2oracle/TestDelete/edge_common_4.exp.json b/testdata/d2oracle/TestDelete/edge_common_4.exp.json
index b17687cc0..69946d8fd 100644
--- a/testdata/d2oracle/TestDelete/edge_common_4.exp.json
+++ b/testdata/d2oracle/TestDelete/edge_common_4.exp.json
@@ -92,7 +92,8 @@
"direction": {
"value": ""
}
- }
+ },
+ "zIndex": 0
},
"edges": null,
"objects": [
@@ -179,7 +180,8 @@
"direction": {
"value": ""
}
- }
+ },
+ "zIndex": 0
},
{
"id": "a",
@@ -233,7 +235,8 @@
"direction": {
"value": ""
}
- }
+ },
+ "zIndex": 0
},
{
"id": "y",
@@ -287,7 +290,8 @@
"direction": {
"value": ""
}
- }
+ },
+ "zIndex": 0
}
]
},
diff --git a/testdata/d2oracle/TestDelete/edge_conflict.exp.json b/testdata/d2oracle/TestDelete/edge_conflict.exp.json
index 151e6a69a..64b67be28 100644
--- a/testdata/d2oracle/TestDelete/edge_conflict.exp.json
+++ b/testdata/d2oracle/TestDelete/edge_conflict.exp.json
@@ -115,7 +115,8 @@
"direction": {
"value": ""
}
- }
+ },
+ "zIndex": 0
},
"edges": [
{
@@ -146,7 +147,8 @@
"direction": {
"value": ""
}
- }
+ },
+ "zIndex": 0
}
],
"objects": [
@@ -191,7 +193,8 @@
"direction": {
"value": ""
}
- }
+ },
+ "zIndex": 0
},
{
"id": "y 2",
@@ -276,7 +279,8 @@
"direction": {
"value": ""
}
- }
+ },
+ "zIndex": 0
},
{
"id": "a",
@@ -330,7 +334,8 @@
"direction": {
"value": ""
}
- }
+ },
+ "zIndex": 0
},
{
"id": "b",
@@ -384,7 +389,8 @@
"direction": {
"value": ""
}
- }
+ },
+ "zIndex": 0
}
]
},
diff --git a/testdata/d2oracle/TestDelete/edge_decrement.exp.json b/testdata/d2oracle/TestDelete/edge_decrement.exp.json
index 7e8cd36b0..93e75c548 100644
--- a/testdata/d2oracle/TestDelete/edge_decrement.exp.json
+++ b/testdata/d2oracle/TestDelete/edge_decrement.exp.json
@@ -452,7 +452,8 @@
"direction": {
"value": ""
}
- }
+ },
+ "zIndex": 0
},
"edges": [
{
@@ -486,7 +487,8 @@
"direction": {
"value": ""
}
- }
+ },
+ "zIndex": 0
},
{
"index": 1,
@@ -519,7 +521,8 @@
"direction": {
"value": ""
}
- }
+ },
+ "zIndex": 0
},
{
"index": 2,
@@ -552,7 +555,8 @@
"direction": {
"value": ""
}
- }
+ },
+ "zIndex": 0
},
{
"index": 3,
@@ -585,7 +589,8 @@
"direction": {
"value": ""
}
- }
+ },
+ "zIndex": 0
}
],
"objects": [
@@ -770,7 +775,8 @@
"direction": {
"value": ""
}
- }
+ },
+ "zIndex": 0
},
{
"id": "b",
@@ -953,7 +959,8 @@
"direction": {
"value": ""
}
- }
+ },
+ "zIndex": 0
}
]
},
diff --git a/testdata/d2oracle/TestDelete/edge_first.exp.json b/testdata/d2oracle/TestDelete/edge_first.exp.json
index ff36efa04..d333ea461 100644
--- a/testdata/d2oracle/TestDelete/edge_first.exp.json
+++ b/testdata/d2oracle/TestDelete/edge_first.exp.json
@@ -181,7 +181,8 @@
"direction": {
"value": ""
}
- }
+ },
+ "zIndex": 0
},
"edges": [
{
@@ -212,7 +213,8 @@
"direction": {
"value": ""
}
- }
+ },
+ "zIndex": 0
},
{
"index": 0,
@@ -242,7 +244,8 @@
"direction": {
"value": ""
}
- }
+ },
+ "zIndex": 0
}
],
"objects": [
@@ -309,7 +312,8 @@
"direction": {
"value": ""
}
- }
+ },
+ "zIndex": 0
},
{
"id": "p",
@@ -374,7 +378,8 @@
"direction": {
"value": ""
}
- }
+ },
+ "zIndex": 0
},
{
"id": "d",
@@ -439,7 +444,8 @@
"direction": {
"value": ""
}
- }
+ },
+ "zIndex": 0
},
{
"id": "x",
@@ -482,7 +488,8 @@
"direction": {
"value": ""
}
- }
+ },
+ "zIndex": 0
},
{
"id": "p",
@@ -525,7 +532,8 @@
"direction": {
"value": ""
}
- }
+ },
+ "zIndex": 0
},
{
"id": "y",
@@ -588,7 +596,8 @@
"direction": {
"value": ""
}
- }
+ },
+ "zIndex": 0
},
{
"id": "z",
@@ -631,7 +640,8 @@
"direction": {
"value": ""
}
- }
+ },
+ "zIndex": 0
}
]
},
diff --git a/testdata/d2oracle/TestDelete/edge_flat_style.exp.json b/testdata/d2oracle/TestDelete/edge_flat_style.exp.json
index 305e6a4aa..dfd442e7f 100644
--- a/testdata/d2oracle/TestDelete/edge_flat_style.exp.json
+++ b/testdata/d2oracle/TestDelete/edge_flat_style.exp.json
@@ -47,7 +47,8 @@
"direction": {
"value": ""
}
- }
+ },
+ "zIndex": 0
},
"edges": null,
"objects": [
@@ -92,7 +93,8 @@
"direction": {
"value": ""
}
- }
+ },
+ "zIndex": 0
}
]
},
diff --git a/testdata/d2oracle/TestDelete/edge_identical_child.exp.json b/testdata/d2oracle/TestDelete/edge_identical_child.exp.json
index eb781b86d..c4c0672a4 100644
--- a/testdata/d2oracle/TestDelete/edge_identical_child.exp.json
+++ b/testdata/d2oracle/TestDelete/edge_identical_child.exp.json
@@ -103,7 +103,8 @@
"direction": {
"value": ""
}
- }
+ },
+ "zIndex": 0
},
"edges": [
{
@@ -134,7 +135,8 @@
"direction": {
"value": ""
}
- }
+ },
+ "zIndex": 0
}
],
"objects": [
@@ -201,7 +203,8 @@
"direction": {
"value": ""
}
- }
+ },
+ "zIndex": 0
},
{
"id": "y",
@@ -266,7 +269,8 @@
"direction": {
"value": ""
}
- }
+ },
+ "zIndex": 0
},
{
"id": "z",
@@ -331,7 +335,8 @@
"direction": {
"value": ""
}
- }
+ },
+ "zIndex": 0
},
{
"id": "y",
@@ -385,7 +390,8 @@
"direction": {
"value": ""
}
- }
+ },
+ "zIndex": 0
},
{
"id": "b",
@@ -439,7 +445,8 @@
"direction": {
"value": ""
}
- }
+ },
+ "zIndex": 0
}
]
},
diff --git a/testdata/d2oracle/TestDelete/edge_key_style.exp.json b/testdata/d2oracle/TestDelete/edge_key_style.exp.json
index 7562e03e2..9cba6610a 100644
--- a/testdata/d2oracle/TestDelete/edge_key_style.exp.json
+++ b/testdata/d2oracle/TestDelete/edge_key_style.exp.json
@@ -70,7 +70,8 @@
"direction": {
"value": ""
}
- }
+ },
+ "zIndex": 0
},
"edges": [
{
@@ -101,7 +102,8 @@
"direction": {
"value": ""
}
- }
+ },
+ "zIndex": 0
}
],
"objects": [
@@ -146,7 +148,8 @@
"direction": {
"value": ""
}
- }
+ },
+ "zIndex": 0
},
{
"id": "y",
@@ -189,7 +192,8 @@
"direction": {
"value": ""
}
- }
+ },
+ "zIndex": 0
}
]
},
diff --git a/testdata/d2oracle/TestDelete/edge_last.exp.json b/testdata/d2oracle/TestDelete/edge_last.exp.json
index ba877e571..d150073a4 100644
--- a/testdata/d2oracle/TestDelete/edge_last.exp.json
+++ b/testdata/d2oracle/TestDelete/edge_last.exp.json
@@ -218,7 +218,8 @@
"direction": {
"value": ""
}
- }
+ },
+ "zIndex": 0
},
"edges": [
{
@@ -249,7 +250,8 @@
"direction": {
"value": ""
}
- }
+ },
+ "zIndex": 0
},
{
"index": 0,
@@ -279,7 +281,8 @@
"direction": {
"value": ""
}
- }
+ },
+ "zIndex": 0
},
{
"index": 0,
@@ -309,7 +312,8 @@
"direction": {
"value": ""
}
- }
+ },
+ "zIndex": 0
}
],
"objects": [
@@ -376,7 +380,8 @@
"direction": {
"value": ""
}
- }
+ },
+ "zIndex": 0
},
{
"id": "p",
@@ -441,7 +446,8 @@
"direction": {
"value": ""
}
- }
+ },
+ "zIndex": 0
},
{
"id": "d",
@@ -506,7 +512,8 @@
"direction": {
"value": ""
}
- }
+ },
+ "zIndex": 0
},
{
"id": "p",
@@ -549,7 +556,8 @@
"direction": {
"value": ""
}
- }
+ },
+ "zIndex": 0
},
{
"id": "x",
@@ -592,7 +600,8 @@
"direction": {
"value": ""
}
- }
+ },
+ "zIndex": 0
},
{
"id": "y",
@@ -655,7 +664,8 @@
"direction": {
"value": ""
}
- }
+ },
+ "zIndex": 0
},
{
"id": "z",
@@ -718,7 +728,8 @@
"direction": {
"value": ""
}
- }
+ },
+ "zIndex": 0
},
{
"id": "q",
@@ -761,7 +772,8 @@
"direction": {
"value": ""
}
- }
+ },
+ "zIndex": 0
}
]
},
diff --git a/testdata/d2oracle/TestDelete/edge_map_style.exp.json b/testdata/d2oracle/TestDelete/edge_map_style.exp.json
index 9ff8ae11c..63feb2319 100644
--- a/testdata/d2oracle/TestDelete/edge_map_style.exp.json
+++ b/testdata/d2oracle/TestDelete/edge_map_style.exp.json
@@ -70,7 +70,8 @@
"direction": {
"value": ""
}
- }
+ },
+ "zIndex": 0
},
"edges": [
{
@@ -101,7 +102,8 @@
"direction": {
"value": ""
}
- }
+ },
+ "zIndex": 0
}
],
"objects": [
@@ -146,7 +148,8 @@
"direction": {
"value": ""
}
- }
+ },
+ "zIndex": 0
},
{
"id": "y",
@@ -189,7 +192,8 @@
"direction": {
"value": ""
}
- }
+ },
+ "zIndex": 0
}
]
},
diff --git a/testdata/d2oracle/TestDelete/edge_middle.exp.json b/testdata/d2oracle/TestDelete/edge_middle.exp.json
index 91b14b60f..b768d81f8 100644
--- a/testdata/d2oracle/TestDelete/edge_middle.exp.json
+++ b/testdata/d2oracle/TestDelete/edge_middle.exp.json
@@ -204,7 +204,8 @@
"direction": {
"value": ""
}
- }
+ },
+ "zIndex": 0
},
"edges": [
{
@@ -235,7 +236,8 @@
"direction": {
"value": ""
}
- }
+ },
+ "zIndex": 0
},
{
"index": 0,
@@ -265,7 +267,8 @@
"direction": {
"value": ""
}
- }
+ },
+ "zIndex": 0
},
{
"index": 0,
@@ -295,7 +298,8 @@
"direction": {
"value": ""
}
- }
+ },
+ "zIndex": 0
}
],
"objects": [
@@ -362,7 +366,8 @@
"direction": {
"value": ""
}
- }
+ },
+ "zIndex": 0
},
{
"id": "p",
@@ -427,7 +432,8 @@
"direction": {
"value": ""
}
- }
+ },
+ "zIndex": 0
},
{
"id": "d",
@@ -492,7 +498,8 @@
"direction": {
"value": ""
}
- }
+ },
+ "zIndex": 0
},
{
"id": "x",
@@ -535,7 +542,8 @@
"direction": {
"value": ""
}
- }
+ },
+ "zIndex": 0
},
{
"id": "y",
@@ -598,7 +606,8 @@
"direction": {
"value": ""
}
- }
+ },
+ "zIndex": 0
},
{
"id": "z",
@@ -641,7 +650,8 @@
"direction": {
"value": ""
}
- }
+ },
+ "zIndex": 0
},
{
"id": "q",
@@ -684,7 +694,8 @@
"direction": {
"value": ""
}
- }
+ },
+ "zIndex": 0
},
{
"id": "p",
@@ -727,7 +738,8 @@
"direction": {
"value": ""
}
- }
+ },
+ "zIndex": 0
}
]
},
diff --git a/testdata/d2oracle/TestDelete/empty_map.exp.json b/testdata/d2oracle/TestDelete/empty_map.exp.json
index 2acea4509..bf2fc7c04 100644
--- a/testdata/d2oracle/TestDelete/empty_map.exp.json
+++ b/testdata/d2oracle/TestDelete/empty_map.exp.json
@@ -76,7 +76,8 @@
"direction": {
"value": ""
}
- }
+ },
+ "zIndex": 0
},
"edges": null,
"objects": [
@@ -121,7 +122,8 @@
"direction": {
"value": ""
}
- }
+ },
+ "zIndex": 0
},
{
"id": "y",
@@ -164,7 +166,8 @@
"direction": {
"value": ""
}
- }
+ },
+ "zIndex": 0
}
]
},
diff --git a/testdata/d2oracle/TestDelete/flat.exp.json b/testdata/d2oracle/TestDelete/flat.exp.json
index 3f6f4cf3f..8f692aee9 100644
--- a/testdata/d2oracle/TestDelete/flat.exp.json
+++ b/testdata/d2oracle/TestDelete/flat.exp.json
@@ -23,7 +23,8 @@
"direction": {
"value": ""
}
- }
+ },
+ "zIndex": 0
},
"edges": null,
"objects": null
diff --git a/testdata/d2oracle/TestDelete/flat_reserved.exp.json b/testdata/d2oracle/TestDelete/flat_reserved.exp.json
index 601cb3246..8fcf4f37e 100644
--- a/testdata/d2oracle/TestDelete/flat_reserved.exp.json
+++ b/testdata/d2oracle/TestDelete/flat_reserved.exp.json
@@ -70,7 +70,8 @@
"direction": {
"value": ""
}
- }
+ },
+ "zIndex": 0
},
"edges": [
{
@@ -101,7 +102,8 @@
"direction": {
"value": ""
}
- }
+ },
+ "zIndex": 0
}
],
"objects": [
@@ -146,7 +148,8 @@
"direction": {
"value": ""
}
- }
+ },
+ "zIndex": 0
},
{
"id": "B",
@@ -189,7 +192,8 @@
"direction": {
"value": ""
}
- }
+ },
+ "zIndex": 0
}
]
},
diff --git a/testdata/d2oracle/TestDelete/hoist_children.exp.json b/testdata/d2oracle/TestDelete/hoist_children.exp.json
index 6ef96aeff..8662f0020 100644
--- a/testdata/d2oracle/TestDelete/hoist_children.exp.json
+++ b/testdata/d2oracle/TestDelete/hoist_children.exp.json
@@ -76,7 +76,8 @@
"direction": {
"value": ""
}
- }
+ },
+ "zIndex": 0
},
"edges": null,
"objects": [
@@ -121,7 +122,8 @@
"direction": {
"value": ""
}
- }
+ },
+ "zIndex": 0
},
{
"id": "c",
@@ -164,7 +166,8 @@
"direction": {
"value": ""
}
- }
+ },
+ "zIndex": 0
}
]
},
diff --git a/testdata/d2oracle/TestDelete/hoist_edge_children.exp.json b/testdata/d2oracle/TestDelete/hoist_edge_children.exp.json
index 26f1c0df6..cfab5bba0 100644
--- a/testdata/d2oracle/TestDelete/hoist_edge_children.exp.json
+++ b/testdata/d2oracle/TestDelete/hoist_edge_children.exp.json
@@ -93,7 +93,8 @@
"direction": {
"value": ""
}
- }
+ },
+ "zIndex": 0
},
"edges": [
{
@@ -124,7 +125,8 @@
"direction": {
"value": ""
}
- }
+ },
+ "zIndex": 0
}
],
"objects": [
@@ -169,7 +171,8 @@
"direction": {
"value": ""
}
- }
+ },
+ "zIndex": 0
},
{
"id": "c",
@@ -212,7 +215,8 @@
"direction": {
"value": ""
}
- }
+ },
+ "zIndex": 0
},
{
"id": "d",
@@ -255,7 +259,8 @@
"direction": {
"value": ""
}
- }
+ },
+ "zIndex": 0
}
]
},
diff --git a/testdata/d2oracle/TestDelete/key_with_edges.exp.json b/testdata/d2oracle/TestDelete/key_with_edges.exp.json
index 92d07ef4d..b20618e92 100644
--- a/testdata/d2oracle/TestDelete/key_with_edges.exp.json
+++ b/testdata/d2oracle/TestDelete/key_with_edges.exp.json
@@ -92,7 +92,8 @@
"direction": {
"value": ""
}
- }
+ },
+ "zIndex": 0
},
"edges": null,
"objects": [
@@ -179,7 +180,8 @@
"direction": {
"value": ""
}
- }
+ },
+ "zIndex": 0
},
{
"id": "meow",
@@ -233,7 +235,8 @@
"direction": {
"value": ""
}
- }
+ },
+ "zIndex": 0
},
{
"id": "bark",
@@ -287,7 +290,8 @@
"direction": {
"value": ""
}
- }
+ },
+ "zIndex": 0
}
]
},
diff --git a/testdata/d2oracle/TestDelete/key_with_edges_2.exp.json b/testdata/d2oracle/TestDelete/key_with_edges_2.exp.json
index 1a050b474..2b818fc9e 100644
--- a/testdata/d2oracle/TestDelete/key_with_edges_2.exp.json
+++ b/testdata/d2oracle/TestDelete/key_with_edges_2.exp.json
@@ -58,7 +58,8 @@
"direction": {
"value": ""
}
- }
+ },
+ "zIndex": 0
},
"edges": null,
"objects": [
@@ -114,7 +115,8 @@
"direction": {
"value": ""
}
- }
+ },
+ "zIndex": 0
},
{
"id": "bark",
@@ -168,7 +170,8 @@
"direction": {
"value": ""
}
- }
+ },
+ "zIndex": 0
}
]
},
diff --git a/testdata/d2oracle/TestDelete/key_with_edges_3.exp.json b/testdata/d2oracle/TestDelete/key_with_edges_3.exp.json
index 972602ab8..b81d88ff4 100644
--- a/testdata/d2oracle/TestDelete/key_with_edges_3.exp.json
+++ b/testdata/d2oracle/TestDelete/key_with_edges_3.exp.json
@@ -58,7 +58,8 @@
"direction": {
"value": ""
}
- }
+ },
+ "zIndex": 0
},
"edges": null,
"objects": [
@@ -114,7 +115,8 @@
"direction": {
"value": ""
}
- }
+ },
+ "zIndex": 0
},
{
"id": "bark",
@@ -168,7 +170,8 @@
"direction": {
"value": ""
}
- }
+ },
+ "zIndex": 0
}
]
},
diff --git a/testdata/d2oracle/TestDelete/key_with_edges_4.exp.json b/testdata/d2oracle/TestDelete/key_with_edges_4.exp.json
index 54537c67c..f8730da6d 100644
--- a/testdata/d2oracle/TestDelete/key_with_edges_4.exp.json
+++ b/testdata/d2oracle/TestDelete/key_with_edges_4.exp.json
@@ -92,7 +92,8 @@
"direction": {
"value": ""
}
- }
+ },
+ "zIndex": 0
},
"edges": null,
"objects": [
@@ -179,7 +180,8 @@
"direction": {
"value": ""
}
- }
+ },
+ "zIndex": 0
},
{
"id": "meow",
@@ -233,7 +235,8 @@
"direction": {
"value": ""
}
- }
+ },
+ "zIndex": 0
},
{
"id": "bark",
@@ -287,7 +290,8 @@
"direction": {
"value": ""
}
- }
+ },
+ "zIndex": 0
}
]
},
diff --git a/testdata/d2oracle/TestDelete/multi_near.exp.json b/testdata/d2oracle/TestDelete/multi_near.exp.json
index 52e790bd6..a75c6b20c 100644
--- a/testdata/d2oracle/TestDelete/multi_near.exp.json
+++ b/testdata/d2oracle/TestDelete/multi_near.exp.json
@@ -194,7 +194,8 @@
"direction": {
"value": ""
}
- }
+ },
+ "zIndex": 0
},
"edges": null,
"objects": [
@@ -239,7 +240,8 @@
"direction": {
"value": ""
}
- }
+ },
+ "zIndex": 0
},
{
"id": "Bluefish",
@@ -297,7 +299,8 @@
"direction": {
"value": ""
}
- }
+ },
+ "zIndex": 0
},
{
"id": "Yo",
@@ -355,7 +358,8 @@
"direction": {
"value": ""
}
- }
+ },
+ "zIndex": 0
},
{
"id": "Blah",
@@ -398,7 +402,8 @@
"direction": {
"value": ""
}
- }
+ },
+ "zIndex": 0
}
]
},
diff --git a/testdata/d2oracle/TestDelete/multi_path_map_conflict.exp.json b/testdata/d2oracle/TestDelete/multi_path_map_conflict.exp.json
index 512dee2e2..e88563b08 100644
--- a/testdata/d2oracle/TestDelete/multi_path_map_conflict.exp.json
+++ b/testdata/d2oracle/TestDelete/multi_path_map_conflict.exp.json
@@ -128,7 +128,8 @@
"direction": {
"value": ""
}
- }
+ },
+ "zIndex": 0
},
"edges": null,
"objects": [
@@ -193,7 +194,8 @@
"direction": {
"value": ""
}
- }
+ },
+ "zIndex": 0
},
{
"id": "z 2",
@@ -236,7 +238,8 @@
"direction": {
"value": ""
}
- }
+ },
+ "zIndex": 0
},
{
"id": "z",
@@ -279,7 +282,8 @@
"direction": {
"value": ""
}
- }
+ },
+ "zIndex": 0
}
]
},
diff --git a/testdata/d2oracle/TestDelete/multi_path_map_no_conflict.exp.json b/testdata/d2oracle/TestDelete/multi_path_map_no_conflict.exp.json
index fe559c369..5e60e8140 100644
--- a/testdata/d2oracle/TestDelete/multi_path_map_no_conflict.exp.json
+++ b/testdata/d2oracle/TestDelete/multi_path_map_no_conflict.exp.json
@@ -99,7 +99,8 @@
"direction": {
"value": ""
}
- }
+ },
+ "zIndex": 0
},
"edges": null,
"objects": [
@@ -144,7 +145,8 @@
"direction": {
"value": ""
}
- }
+ },
+ "zIndex": 0
},
{
"id": "z",
@@ -187,7 +189,8 @@
"direction": {
"value": ""
}
- }
+ },
+ "zIndex": 0
},
{
"id": "z",
@@ -230,7 +233,8 @@
"direction": {
"value": ""
}
- }
+ },
+ "zIndex": 0
}
]
},
diff --git a/testdata/d2oracle/TestDelete/multiple_flat_middle_container.exp.json b/testdata/d2oracle/TestDelete/multiple_flat_middle_container.exp.json
index c649b5ac0..20dbd0b7f 100644
--- a/testdata/d2oracle/TestDelete/multiple_flat_middle_container.exp.json
+++ b/testdata/d2oracle/TestDelete/multiple_flat_middle_container.exp.json
@@ -92,7 +92,8 @@
"direction": {
"value": ""
}
- }
+ },
+ "zIndex": 0
},
"edges": null,
"objects": [
@@ -179,7 +180,8 @@
"direction": {
"value": ""
}
- }
+ },
+ "zIndex": 0
},
{
"id": "c",
@@ -233,7 +235,8 @@
"direction": {
"value": ""
}
- }
+ },
+ "zIndex": 0
},
{
"id": "d",
@@ -287,7 +290,8 @@
"direction": {
"value": ""
}
- }
+ },
+ "zIndex": 0
}
]
},
diff --git a/testdata/d2oracle/TestDelete/multiple_flat_style.exp.json b/testdata/d2oracle/TestDelete/multiple_flat_style.exp.json
index 247e72c2f..6b094245a 100644
--- a/testdata/d2oracle/TestDelete/multiple_flat_style.exp.json
+++ b/testdata/d2oracle/TestDelete/multiple_flat_style.exp.json
@@ -75,7 +75,8 @@
"direction": {
"value": ""
}
- }
+ },
+ "zIndex": 0
},
"edges": [],
"objects": [
@@ -146,7 +147,8 @@
"direction": {
"value": ""
}
- }
+ },
+ "zIndex": 0
}
]
},
diff --git a/testdata/d2oracle/TestDelete/multiple_map_styles.exp.json b/testdata/d2oracle/TestDelete/multiple_map_styles.exp.json
index cfa33cab0..826b0a62d 100644
--- a/testdata/d2oracle/TestDelete/multiple_map_styles.exp.json
+++ b/testdata/d2oracle/TestDelete/multiple_map_styles.exp.json
@@ -111,7 +111,8 @@
"direction": {
"value": ""
}
- }
+ },
+ "zIndex": 0
},
"edges": [],
"objects": [
@@ -160,7 +161,8 @@
"direction": {
"value": ""
}
- }
+ },
+ "zIndex": 0
}
]
},
diff --git a/testdata/d2oracle/TestDelete/near.exp.json b/testdata/d2oracle/TestDelete/near.exp.json
index 6991d9d32..b5247a5ae 100644
--- a/testdata/d2oracle/TestDelete/near.exp.json
+++ b/testdata/d2oracle/TestDelete/near.exp.json
@@ -47,7 +47,8 @@
"direction": {
"value": ""
}
- }
+ },
+ "zIndex": 0
},
"edges": null,
"objects": [
@@ -92,7 +93,8 @@
"direction": {
"value": ""
}
- }
+ },
+ "zIndex": 0
}
]
},
diff --git a/testdata/d2oracle/TestDelete/nested.exp.json b/testdata/d2oracle/TestDelete/nested.exp.json
index df80511e7..97a3c9092 100644
--- a/testdata/d2oracle/TestDelete/nested.exp.json
+++ b/testdata/d2oracle/TestDelete/nested.exp.json
@@ -69,7 +69,8 @@
"direction": {
"value": ""
}
- }
+ },
+ "zIndex": 0
},
"edges": null,
"objects": [
@@ -136,7 +137,8 @@
"direction": {
"value": ""
}
- }
+ },
+ "zIndex": 0
},
{
"id": "c",
@@ -201,7 +203,8 @@
"direction": {
"value": ""
}
- }
+ },
+ "zIndex": 0
},
{
"id": "d",
@@ -266,7 +269,8 @@
"direction": {
"value": ""
}
- }
+ },
+ "zIndex": 0
}
]
},
diff --git a/testdata/d2oracle/TestDelete/nested_2.exp.json b/testdata/d2oracle/TestDelete/nested_2.exp.json
index 8279fda83..3b1f44f87 100644
--- a/testdata/d2oracle/TestDelete/nested_2.exp.json
+++ b/testdata/d2oracle/TestDelete/nested_2.exp.json
@@ -69,7 +69,8 @@
"direction": {
"value": ""
}
- }
+ },
+ "zIndex": 0
},
"edges": null,
"objects": [
@@ -136,7 +137,8 @@
"direction": {
"value": ""
}
- }
+ },
+ "zIndex": 0
},
{
"id": "b",
@@ -201,7 +203,8 @@
"direction": {
"value": ""
}
- }
+ },
+ "zIndex": 0
},
{
"id": "c",
@@ -266,7 +269,8 @@
"direction": {
"value": ""
}
- }
+ },
+ "zIndex": 0
}
]
},
diff --git a/testdata/d2oracle/TestDelete/nested_edge_key_style.exp.json b/testdata/d2oracle/TestDelete/nested_edge_key_style.exp.json
index c37eda91d..954c33cd8 100644
--- a/testdata/d2oracle/TestDelete/nested_edge_key_style.exp.json
+++ b/testdata/d2oracle/TestDelete/nested_edge_key_style.exp.json
@@ -99,7 +99,8 @@
"direction": {
"value": ""
}
- }
+ },
+ "zIndex": 0
},
"edges": [
{
@@ -130,7 +131,8 @@
"direction": {
"value": ""
}
- }
+ },
+ "zIndex": 0
}
],
"objects": [
@@ -175,7 +177,8 @@
"direction": {
"value": ""
}
- }
+ },
+ "zIndex": 0
},
{
"id": "x",
@@ -218,7 +221,8 @@
"direction": {
"value": ""
}
- }
+ },
+ "zIndex": 0
},
{
"id": "y",
@@ -261,7 +265,8 @@
"direction": {
"value": ""
}
- }
+ },
+ "zIndex": 0
}
]
},
diff --git a/testdata/d2oracle/TestDelete/nested_flat_style.exp.json b/testdata/d2oracle/TestDelete/nested_flat_style.exp.json
index 168b2d4b9..7efbb59e0 100644
--- a/testdata/d2oracle/TestDelete/nested_flat_style.exp.json
+++ b/testdata/d2oracle/TestDelete/nested_flat_style.exp.json
@@ -47,7 +47,8 @@
"direction": {
"value": ""
}
- }
+ },
+ "zIndex": 0
},
"edges": null,
"objects": [
@@ -92,7 +93,8 @@
"direction": {
"value": ""
}
- }
+ },
+ "zIndex": 0
}
]
},
diff --git a/testdata/d2oracle/TestDelete/nested_reserved.exp.json b/testdata/d2oracle/TestDelete/nested_reserved.exp.json
index 3795fe11d..77ffecaf3 100644
--- a/testdata/d2oracle/TestDelete/nested_reserved.exp.json
+++ b/testdata/d2oracle/TestDelete/nested_reserved.exp.json
@@ -103,7 +103,8 @@
"direction": {
"value": ""
}
- }
+ },
+ "zIndex": 0
},
"edges": null,
"objects": [
@@ -201,7 +202,8 @@
"direction": {
"value": ""
}
- }
+ },
+ "zIndex": 0
},
{
"id": "y",
@@ -297,7 +299,8 @@
"direction": {
"value": ""
}
- }
+ },
+ "zIndex": 0
},
{
"id": "jingle",
@@ -362,7 +365,8 @@
"direction": {
"value": ""
}
- }
+ },
+ "zIndex": 0
}
]
},
diff --git a/testdata/d2oracle/TestDelete/nested_underscore_update.exp.json b/testdata/d2oracle/TestDelete/nested_underscore_update.exp.json
index 23921a096..11173539c 100644
--- a/testdata/d2oracle/TestDelete/nested_underscore_update.exp.json
+++ b/testdata/d2oracle/TestDelete/nested_underscore_update.exp.json
@@ -87,7 +87,8 @@
"direction": {
"value": ""
}
- }
+ },
+ "zIndex": 0
},
"edges": null,
"objects": [
@@ -132,7 +133,8 @@
"direction": {
"value": ""
}
- }
+ },
+ "zIndex": 0
},
{
"id": "pipe",
@@ -186,7 +188,8 @@
"direction": {
"value": ""
}
- }
+ },
+ "zIndex": 0
}
]
},
diff --git a/testdata/d2oracle/TestDelete/node_in_edge.exp.json b/testdata/d2oracle/TestDelete/node_in_edge.exp.json
index d56558fd8..80c1d7673 100644
--- a/testdata/d2oracle/TestDelete/node_in_edge.exp.json
+++ b/testdata/d2oracle/TestDelete/node_in_edge.exp.json
@@ -168,7 +168,8 @@
"direction": {
"value": ""
}
- }
+ },
+ "zIndex": 0
},
"edges": [
{
@@ -199,7 +200,8 @@
"direction": {
"value": ""
}
- }
+ },
+ "zIndex": 0
},
{
"index": 0,
@@ -229,7 +231,8 @@
"direction": {
"value": ""
}
- }
+ },
+ "zIndex": 0
}
],
"objects": [
@@ -274,7 +277,8 @@
"direction": {
"value": ""
}
- }
+ },
+ "zIndex": 0
},
{
"id": "\"what's up\"",
@@ -317,7 +321,8 @@
"direction": {
"value": ""
}
- }
+ },
+ "zIndex": 0
},
{
"id": "x",
@@ -360,7 +365,8 @@
"direction": {
"value": ""
}
- }
+ },
+ "zIndex": 0
},
{
"id": "y",
@@ -403,7 +409,8 @@
"direction": {
"value": ""
}
- }
+ },
+ "zIndex": 0
},
{
"id": "q",
@@ -446,7 +453,8 @@
"direction": {
"value": ""
}
- }
+ },
+ "zIndex": 0
},
{
"id": "p",
@@ -489,7 +497,8 @@
"direction": {
"value": ""
}
- }
+ },
+ "zIndex": 0
}
]
},
diff --git a/testdata/d2oracle/TestDelete/node_in_edge_last.exp.json b/testdata/d2oracle/TestDelete/node_in_edge_last.exp.json
index dd1456fcf..2718ecc06 100644
--- a/testdata/d2oracle/TestDelete/node_in_edge_last.exp.json
+++ b/testdata/d2oracle/TestDelete/node_in_edge_last.exp.json
@@ -207,7 +207,8 @@
"direction": {
"value": ""
}
- }
+ },
+ "zIndex": 0
},
"edges": [
{
@@ -238,7 +239,8 @@
"direction": {
"value": ""
}
- }
+ },
+ "zIndex": 0
},
{
"index": 0,
@@ -268,7 +270,8 @@
"direction": {
"value": ""
}
- }
+ },
+ "zIndex": 0
},
{
"index": 0,
@@ -298,7 +301,8 @@
"direction": {
"value": ""
}
- }
+ },
+ "zIndex": 0
}
],
"objects": [
@@ -354,7 +358,8 @@
"direction": {
"value": ""
}
- }
+ },
+ "zIndex": 0
},
{
"id": "b",
@@ -408,7 +413,8 @@
"direction": {
"value": ""
}
- }
+ },
+ "zIndex": 0
},
{
"id": "\"what's up\"",
@@ -451,7 +457,8 @@
"direction": {
"value": ""
}
- }
+ },
+ "zIndex": 0
},
{
"id": "x",
@@ -494,7 +501,8 @@
"direction": {
"value": ""
}
- }
+ },
+ "zIndex": 0
},
{
"id": "y",
@@ -557,7 +565,8 @@
"direction": {
"value": ""
}
- }
+ },
+ "zIndex": 0
},
{
"id": "z",
@@ -620,7 +629,8 @@
"direction": {
"value": ""
}
- }
+ },
+ "zIndex": 0
},
{
"id": "q",
@@ -663,7 +673,8 @@
"direction": {
"value": ""
}
- }
+ },
+ "zIndex": 0
}
]
},
diff --git a/testdata/d2oracle/TestDelete/only_delete_edge_reserved.exp.json b/testdata/d2oracle/TestDelete/only_delete_edge_reserved.exp.json
index 47a45ceaa..1fbff9a99 100644
--- a/testdata/d2oracle/TestDelete/only_delete_edge_reserved.exp.json
+++ b/testdata/d2oracle/TestDelete/only_delete_edge_reserved.exp.json
@@ -166,7 +166,8 @@
"direction": {
"value": ""
}
- }
+ },
+ "zIndex": 0
},
"edges": [
{
@@ -197,7 +198,8 @@
"direction": {
"value": ""
}
- }
+ },
+ "zIndex": 0
}
],
"objects": [
@@ -266,7 +268,8 @@
"direction": {
"value": ""
}
- }
+ },
+ "zIndex": 0
},
{
"id": "B",
@@ -329,7 +332,8 @@
"direction": {
"value": ""
}
- }
+ },
+ "zIndex": 0
}
]
},
diff --git a/testdata/d2oracle/TestDelete/only_delete_obj_reserved.exp.json b/testdata/d2oracle/TestDelete/only_delete_obj_reserved.exp.json
index 61f9dcdee..6fe3a518b 100644
--- a/testdata/d2oracle/TestDelete/only_delete_obj_reserved.exp.json
+++ b/testdata/d2oracle/TestDelete/only_delete_obj_reserved.exp.json
@@ -166,7 +166,8 @@
"direction": {
"value": ""
}
- }
+ },
+ "zIndex": 0
},
"edges": [
{
@@ -201,7 +202,8 @@
"direction": {
"value": ""
}
- }
+ },
+ "zIndex": 0
}
],
"objects": [
@@ -266,7 +268,8 @@
"direction": {
"value": ""
}
- }
+ },
+ "zIndex": 0
},
{
"id": "B",
@@ -329,7 +332,8 @@
"direction": {
"value": ""
}
- }
+ },
+ "zIndex": 0
}
]
},
diff --git a/testdata/d2oracle/TestDelete/order_1.exp.json b/testdata/d2oracle/TestDelete/order_1.exp.json
index c83f093cc..6157f1d58 100644
--- a/testdata/d2oracle/TestDelete/order_1.exp.json
+++ b/testdata/d2oracle/TestDelete/order_1.exp.json
@@ -93,7 +93,8 @@
"direction": {
"value": ""
}
- }
+ },
+ "zIndex": 0
},
"edges": [
{
@@ -124,7 +125,8 @@
"direction": {
"value": ""
}
- }
+ },
+ "zIndex": 0
}
],
"objects": [
@@ -169,7 +171,8 @@
"direction": {
"value": ""
}
- }
+ },
+ "zIndex": 0
},
{
"id": "y",
@@ -212,7 +215,8 @@
"direction": {
"value": ""
}
- }
+ },
+ "zIndex": 0
},
{
"id": "z",
@@ -255,7 +259,8 @@
"direction": {
"value": ""
}
- }
+ },
+ "zIndex": 0
}
]
},
diff --git a/testdata/d2oracle/TestDelete/order_2.exp.json b/testdata/d2oracle/TestDelete/order_2.exp.json
index 71042a674..271368317 100644
--- a/testdata/d2oracle/TestDelete/order_2.exp.json
+++ b/testdata/d2oracle/TestDelete/order_2.exp.json
@@ -70,7 +70,8 @@
"direction": {
"value": ""
}
- }
+ },
+ "zIndex": 0
},
"edges": null,
"objects": [
@@ -115,7 +116,8 @@
"direction": {
"value": ""
}
- }
+ },
+ "zIndex": 0
},
{
"id": "z",
@@ -158,7 +160,8 @@
"direction": {
"value": ""
}
- }
+ },
+ "zIndex": 0
}
]
},
diff --git a/testdata/d2oracle/TestDelete/order_3.exp.json b/testdata/d2oracle/TestDelete/order_3.exp.json
index 7c75321f9..ee20c088c 100644
--- a/testdata/d2oracle/TestDelete/order_3.exp.json
+++ b/testdata/d2oracle/TestDelete/order_3.exp.json
@@ -70,7 +70,8 @@
"direction": {
"value": ""
}
- }
+ },
+ "zIndex": 0
},
"edges": null,
"objects": [
@@ -115,7 +116,8 @@
"direction": {
"value": ""
}
- }
+ },
+ "zIndex": 0
},
{
"id": "z",
@@ -158,7 +160,8 @@
"direction": {
"value": ""
}
- }
+ },
+ "zIndex": 0
}
]
},
diff --git a/testdata/d2oracle/TestDelete/order_4.exp.json b/testdata/d2oracle/TestDelete/order_4.exp.json
index ab41da5d0..1bf7681e8 100644
--- a/testdata/d2oracle/TestDelete/order_4.exp.json
+++ b/testdata/d2oracle/TestDelete/order_4.exp.json
@@ -47,7 +47,8 @@
"direction": {
"value": ""
}
- }
+ },
+ "zIndex": 0
},
"edges": null,
"objects": [
@@ -92,7 +93,8 @@
"direction": {
"value": ""
}
- }
+ },
+ "zIndex": 0
}
]
},
diff --git a/testdata/d2oracle/TestDelete/order_5.exp.json b/testdata/d2oracle/TestDelete/order_5.exp.json
index c3336c5dd..f9591ccb1 100644
--- a/testdata/d2oracle/TestDelete/order_5.exp.json
+++ b/testdata/d2oracle/TestDelete/order_5.exp.json
@@ -145,7 +145,8 @@
"direction": {
"value": ""
}
- }
+ },
+ "zIndex": 0
},
"edges": [
{
@@ -176,7 +177,8 @@
"direction": {
"value": ""
}
- }
+ },
+ "zIndex": 0
},
{
"index": 0,
@@ -206,7 +208,8 @@
"direction": {
"value": ""
}
- }
+ },
+ "zIndex": 0
}
],
"objects": [
@@ -251,7 +254,8 @@
"direction": {
"value": ""
}
- }
+ },
+ "zIndex": 0
},
{
"id": "b",
@@ -294,7 +298,8 @@
"direction": {
"value": ""
}
- }
+ },
+ "zIndex": 0
},
{
"id": "c",
@@ -337,7 +342,8 @@
"direction": {
"value": ""
}
- }
+ },
+ "zIndex": 0
},
{
"id": "q",
@@ -380,7 +386,8 @@
"direction": {
"value": ""
}
- }
+ },
+ "zIndex": 0
},
{
"id": "p",
@@ -423,7 +430,8 @@
"direction": {
"value": ""
}
- }
+ },
+ "zIndex": 0
}
]
},
diff --git a/testdata/d2oracle/TestDelete/order_6.exp.json b/testdata/d2oracle/TestDelete/order_6.exp.json
index 3f2e88242..208189f03 100644
--- a/testdata/d2oracle/TestDelete/order_6.exp.json
+++ b/testdata/d2oracle/TestDelete/order_6.exp.json
@@ -121,7 +121,8 @@
"direction": {
"value": ""
}
- }
+ },
+ "zIndex": 0
},
"edges": null,
"objects": [
@@ -208,7 +209,8 @@
"direction": {
"value": ""
}
- }
+ },
+ "zIndex": 0
},
{
"id": "lol",
@@ -251,7 +253,8 @@
"direction": {
"value": ""
}
- }
+ },
+ "zIndex": 0
},
{
"id": "p",
@@ -316,7 +319,8 @@
"direction": {
"value": ""
}
- }
+ },
+ "zIndex": 0
},
{
"id": "q",
@@ -381,7 +385,8 @@
"direction": {
"value": ""
}
- }
+ },
+ "zIndex": 0
}
]
},
diff --git a/testdata/d2oracle/TestDelete/order_7.exp.json b/testdata/d2oracle/TestDelete/order_7.exp.json
index d6744ebb7..2a34733d3 100644
--- a/testdata/d2oracle/TestDelete/order_7.exp.json
+++ b/testdata/d2oracle/TestDelete/order_7.exp.json
@@ -132,7 +132,8 @@
"direction": {
"value": ""
}
- }
+ },
+ "zIndex": 0
},
"edges": null,
"objects": [
@@ -230,7 +231,8 @@
"direction": {
"value": ""
}
- }
+ },
+ "zIndex": 0
},
{
"id": "lol",
@@ -273,7 +275,8 @@
"direction": {
"value": ""
}
- }
+ },
+ "zIndex": 0
},
{
"id": "p",
@@ -349,7 +352,8 @@
"direction": {
"value": ""
}
- }
+ },
+ "zIndex": 0
},
{
"id": "q",
@@ -425,7 +429,8 @@
"direction": {
"value": ""
}
- }
+ },
+ "zIndex": 0
},
{
"id": "more",
@@ -501,7 +506,8 @@
"direction": {
"value": ""
}
- }
+ },
+ "zIndex": 0
}
]
},
diff --git a/testdata/d2oracle/TestDelete/order_8.exp.json b/testdata/d2oracle/TestDelete/order_8.exp.json
index 735aad526..be2c3b15e 100644
--- a/testdata/d2oracle/TestDelete/order_8.exp.json
+++ b/testdata/d2oracle/TestDelete/order_8.exp.json
@@ -139,7 +139,8 @@
"direction": {
"value": ""
}
- }
+ },
+ "zIndex": 0
},
"edges": null,
"objects": [
@@ -184,7 +185,8 @@
"direction": {
"value": ""
}
- }
+ },
+ "zIndex": 0
},
{
"id": "y",
@@ -227,7 +229,8 @@
"direction": {
"value": ""
}
- }
+ },
+ "zIndex": 0
},
{
"id": "zebra",
@@ -270,7 +273,8 @@
"direction": {
"value": ""
}
- }
+ },
+ "zIndex": 0
},
{
"id": "q",
@@ -313,7 +317,8 @@
"direction": {
"value": ""
}
- }
+ },
+ "zIndex": 0
},
{
"id": "kang",
@@ -356,7 +361,8 @@
"direction": {
"value": ""
}
- }
+ },
+ "zIndex": 0
}
]
},
diff --git a/testdata/d2oracle/TestDelete/shape_class.exp.json b/testdata/d2oracle/TestDelete/shape_class.exp.json
index ed1e50f18..a9ad37a5a 100644
--- a/testdata/d2oracle/TestDelete/shape_class.exp.json
+++ b/testdata/d2oracle/TestDelete/shape_class.exp.json
@@ -47,7 +47,8 @@
"direction": {
"value": ""
}
- }
+ },
+ "zIndex": 0
},
"edges": null,
"objects": [
@@ -92,7 +93,8 @@
"direction": {
"value": ""
}
- }
+ },
+ "zIndex": 0
}
]
},
diff --git a/testdata/d2oracle/TestDelete/shape_sql_table.exp.json b/testdata/d2oracle/TestDelete/shape_sql_table.exp.json
index 419ea072a..535b3a08e 100644
--- a/testdata/d2oracle/TestDelete/shape_sql_table.exp.json
+++ b/testdata/d2oracle/TestDelete/shape_sql_table.exp.json
@@ -267,7 +267,8 @@
"direction": {
"value": ""
}
- }
+ },
+ "zIndex": 0
},
"edges": [
{
@@ -298,7 +299,8 @@
"direction": {
"value": ""
}
- }
+ },
+ "zIndex": 0
}
],
"objects": [
@@ -343,7 +345,8 @@
"direction": {
"value": ""
}
- }
+ },
+ "zIndex": 0
},
{
"id": "disks",
@@ -447,7 +450,8 @@
"direction": {
"value": ""
}
- }
+ },
+ "zIndex": 0
},
{
"id": "AWS S3 Vancouver",
@@ -490,7 +494,8 @@
"direction": {
"value": ""
}
- }
+ },
+ "zIndex": 0
}
]
},
diff --git a/testdata/d2oracle/TestDelete/singular_flat_style.exp.json b/testdata/d2oracle/TestDelete/singular_flat_style.exp.json
index 442097e70..749cb24bd 100644
--- a/testdata/d2oracle/TestDelete/singular_flat_style.exp.json
+++ b/testdata/d2oracle/TestDelete/singular_flat_style.exp.json
@@ -47,7 +47,8 @@
"direction": {
"value": ""
}
- }
+ },
+ "zIndex": 0
},
"edges": null,
"objects": [
@@ -92,7 +93,8 @@
"direction": {
"value": ""
}
- }
+ },
+ "zIndex": 0
}
]
},
diff --git a/testdata/d2oracle/TestDelete/singular_map_style.exp.json b/testdata/d2oracle/TestDelete/singular_map_style.exp.json
index b75f55c35..a8ebf2492 100644
--- a/testdata/d2oracle/TestDelete/singular_map_style.exp.json
+++ b/testdata/d2oracle/TestDelete/singular_map_style.exp.json
@@ -47,7 +47,8 @@
"direction": {
"value": ""
}
- }
+ },
+ "zIndex": 0
},
"edges": null,
"objects": [
@@ -92,7 +93,8 @@
"direction": {
"value": ""
}
- }
+ },
+ "zIndex": 0
}
]
},
diff --git a/testdata/d2oracle/TestDelete/underscore_no_conflict.exp.json b/testdata/d2oracle/TestDelete/underscore_no_conflict.exp.json
index a19da74fe..aa746baba 100644
--- a/testdata/d2oracle/TestDelete/underscore_no_conflict.exp.json
+++ b/testdata/d2oracle/TestDelete/underscore_no_conflict.exp.json
@@ -110,7 +110,8 @@
"direction": {
"value": ""
}
- }
+ },
+ "zIndex": 0
},
"edges": null,
"objects": [
@@ -155,7 +156,8 @@
"direction": {
"value": ""
}
- }
+ },
+ "zIndex": 0
},
{
"id": "z",
@@ -209,7 +211,8 @@
"direction": {
"value": ""
}
- }
+ },
+ "zIndex": 0
},
{
"id": "z",
@@ -252,7 +255,8 @@
"direction": {
"value": ""
}
- }
+ },
+ "zIndex": 0
}
]
},
diff --git a/testdata/d2oracle/TestDelete/underscore_remove.exp.json b/testdata/d2oracle/TestDelete/underscore_remove.exp.json
index dd78e801c..c88f95af6 100644
--- a/testdata/d2oracle/TestDelete/underscore_remove.exp.json
+++ b/testdata/d2oracle/TestDelete/underscore_remove.exp.json
@@ -139,7 +139,8 @@
"direction": {
"value": ""
}
- }
+ },
+ "zIndex": 0
},
"edges": [
{
@@ -170,7 +171,8 @@
"direction": {
"value": ""
}
- }
+ },
+ "zIndex": 0
},
{
"index": 0,
@@ -200,7 +202,8 @@
"direction": {
"value": ""
}
- }
+ },
+ "zIndex": 0
}
],
"objects": [
@@ -245,7 +248,8 @@
"direction": {
"value": ""
}
- }
+ },
+ "zIndex": 0
},
{
"id": "a",
@@ -288,7 +292,8 @@
"direction": {
"value": ""
}
- }
+ },
+ "zIndex": 0
},
{
"id": "b",
@@ -331,7 +336,8 @@
"direction": {
"value": ""
}
- }
+ },
+ "zIndex": 0
},
{
"id": "c",
@@ -374,7 +380,8 @@
"direction": {
"value": ""
}
- }
+ },
+ "zIndex": 0
},
{
"id": "d",
@@ -417,7 +424,8 @@
"direction": {
"value": ""
}
- }
+ },
+ "zIndex": 0
}
]
},
diff --git a/testdata/d2oracle/TestMove/append_multiple_styles.exp.json b/testdata/d2oracle/TestMove/append_multiple_styles.exp.json
index 5693019db..83e350ba3 100644
--- a/testdata/d2oracle/TestMove/append_multiple_styles.exp.json
+++ b/testdata/d2oracle/TestMove/append_multiple_styles.exp.json
@@ -231,7 +231,8 @@
"direction": {
"value": ""
}
- }
+ },
+ "zIndex": 0
},
"edges": [],
"objects": [
@@ -276,7 +277,8 @@
"direction": {
"value": ""
}
- }
+ },
+ "zIndex": 0
},
{
"id": "a",
@@ -346,7 +348,8 @@
"direction": {
"value": ""
}
- }
+ },
+ "zIndex": 0
}
]
},
diff --git a/testdata/d2oracle/TestMove/basic.exp.json b/testdata/d2oracle/TestMove/basic.exp.json
index 9216171b9..c4dc094ca 100644
--- a/testdata/d2oracle/TestMove/basic.exp.json
+++ b/testdata/d2oracle/TestMove/basic.exp.json
@@ -47,7 +47,8 @@
"direction": {
"value": ""
}
- }
+ },
+ "zIndex": 0
},
"edges": null,
"objects": [
@@ -92,7 +93,8 @@
"direction": {
"value": ""
}
- }
+ },
+ "zIndex": 0
}
]
},
diff --git a/testdata/d2oracle/TestMove/basic_nested.exp.json b/testdata/d2oracle/TestMove/basic_nested.exp.json
index 5667c2d99..c4d957eda 100644
--- a/testdata/d2oracle/TestMove/basic_nested.exp.json
+++ b/testdata/d2oracle/TestMove/basic_nested.exp.json
@@ -76,7 +76,8 @@
"direction": {
"value": ""
}
- }
+ },
+ "zIndex": 0
},
"edges": null,
"objects": [
@@ -121,7 +122,8 @@
"direction": {
"value": ""
}
- }
+ },
+ "zIndex": 0
},
{
"id": "c",
@@ -164,7 +166,8 @@
"direction": {
"value": ""
}
- }
+ },
+ "zIndex": 0
}
]
},
diff --git a/testdata/d2oracle/TestMove/basic_out_of_container.exp.json b/testdata/d2oracle/TestMove/basic_out_of_container.exp.json
index e80df6540..63f2b2f1b 100644
--- a/testdata/d2oracle/TestMove/basic_out_of_container.exp.json
+++ b/testdata/d2oracle/TestMove/basic_out_of_container.exp.json
@@ -70,7 +70,8 @@
"direction": {
"value": ""
}
- }
+ },
+ "zIndex": 0
},
"edges": null,
"objects": [
@@ -115,7 +116,8 @@
"direction": {
"value": ""
}
- }
+ },
+ "zIndex": 0
},
{
"id": "b",
@@ -158,7 +160,8 @@
"direction": {
"value": ""
}
- }
+ },
+ "zIndex": 0
}
]
},
diff --git a/testdata/d2oracle/TestMove/between_containers.exp.json b/testdata/d2oracle/TestMove/between_containers.exp.json
index 5b35c6d5e..99e32d107 100644
--- a/testdata/d2oracle/TestMove/between_containers.exp.json
+++ b/testdata/d2oracle/TestMove/between_containers.exp.json
@@ -99,7 +99,8 @@
"direction": {
"value": ""
}
- }
+ },
+ "zIndex": 0
},
"edges": null,
"objects": [
@@ -144,7 +145,8 @@
"direction": {
"value": ""
}
- }
+ },
+ "zIndex": 0
},
{
"id": "c",
@@ -187,7 +189,8 @@
"direction": {
"value": ""
}
- }
+ },
+ "zIndex": 0
},
{
"id": "b",
@@ -230,7 +233,8 @@
"direction": {
"value": ""
}
- }
+ },
+ "zIndex": 0
}
]
},
diff --git a/testdata/d2oracle/TestMove/chain_connected_nested.exp.json b/testdata/d2oracle/TestMove/chain_connected_nested.exp.json
index 615332dbd..334fe24b2 100644
--- a/testdata/d2oracle/TestMove/chain_connected_nested.exp.json
+++ b/testdata/d2oracle/TestMove/chain_connected_nested.exp.json
@@ -130,7 +130,8 @@
"direction": {
"value": ""
}
- }
+ },
+ "zIndex": 0
},
"edges": [
{
@@ -161,7 +162,8 @@
"direction": {
"value": ""
}
- }
+ },
+ "zIndex": 0
},
{
"index": 0,
@@ -191,7 +193,8 @@
"direction": {
"value": ""
}
- }
+ },
+ "zIndex": 0
}
],
"objects": [
@@ -236,7 +239,8 @@
"direction": {
"value": ""
}
- }
+ },
+ "zIndex": 0
},
{
"id": "z",
@@ -299,7 +303,8 @@
"direction": {
"value": ""
}
- }
+ },
+ "zIndex": 0
},
{
"id": "x",
@@ -362,7 +367,8 @@
"direction": {
"value": ""
}
- }
+ },
+ "zIndex": 0
}
]
},
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 865e6210b..9f7d94237 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
@@ -118,7 +118,8 @@
"direction": {
"value": ""
}
- }
+ },
+ "zIndex": 0
},
"edges": [
{
@@ -149,7 +150,8 @@
"direction": {
"value": ""
}
- }
+ },
+ "zIndex": 0
},
{
"index": 0,
@@ -179,7 +181,8 @@
"direction": {
"value": ""
}
- }
+ },
+ "zIndex": 0
}
],
"objects": [
@@ -235,7 +238,8 @@
"direction": {
"value": ""
}
- }
+ },
+ "zIndex": 0
},
{
"id": "b",
@@ -289,7 +293,8 @@
"direction": {
"value": ""
}
- }
+ },
+ "zIndex": 0
},
{
"id": "x",
@@ -352,7 +357,8 @@
"direction": {
"value": ""
}
- }
+ },
+ "zIndex": 0
},
{
"id": "z",
@@ -395,7 +401,8 @@
"direction": {
"value": ""
}
- }
+ },
+ "zIndex": 0
}
]
},
diff --git a/testdata/d2oracle/TestMove/connected_nested.exp.json b/testdata/d2oracle/TestMove/connected_nested.exp.json
index a5792a9d1..da0d0aefd 100644
--- a/testdata/d2oracle/TestMove/connected_nested.exp.json
+++ b/testdata/d2oracle/TestMove/connected_nested.exp.json
@@ -93,7 +93,8 @@
"direction": {
"value": ""
}
- }
+ },
+ "zIndex": 0
},
"edges": [
{
@@ -124,7 +125,8 @@
"direction": {
"value": ""
}
- }
+ },
+ "zIndex": 0
}
],
"objects": [
@@ -169,7 +171,8 @@
"direction": {
"value": ""
}
- }
+ },
+ "zIndex": 0
},
{
"id": "x",
@@ -212,7 +215,8 @@
"direction": {
"value": ""
}
- }
+ },
+ "zIndex": 0
},
{
"id": "z",
@@ -255,7 +259,8 @@
"direction": {
"value": ""
}
- }
+ },
+ "zIndex": 0
}
]
},
diff --git a/testdata/d2oracle/TestMove/container_near.exp.json b/testdata/d2oracle/TestMove/container_near.exp.json
index 2f8b2384c..008b8acef 100644
--- a/testdata/d2oracle/TestMove/container_near.exp.json
+++ b/testdata/d2oracle/TestMove/container_near.exp.json
@@ -201,7 +201,8 @@
"direction": {
"value": ""
}
- }
+ },
+ "zIndex": 0
},
"edges": null,
"objects": [
@@ -246,7 +247,8 @@
"direction": {
"value": ""
}
- }
+ },
+ "zIndex": 0
},
{
"id": "y",
@@ -326,7 +328,8 @@
"direction": {
"value": ""
}
- }
+ },
+ "zIndex": 0
},
{
"id": "a",
@@ -380,7 +383,8 @@
"direction": {
"value": ""
}
- }
+ },
+ "zIndex": 0
},
{
"id": "z",
@@ -434,7 +438,8 @@
"direction": {
"value": ""
}
- }
+ },
+ "zIndex": 0
},
{
"id": "y",
@@ -477,7 +482,8 @@
"direction": {
"value": ""
}
- }
+ },
+ "zIndex": 0
},
{
"id": "a",
@@ -520,7 +526,8 @@
"direction": {
"value": ""
}
- }
+ },
+ "zIndex": 0
}
]
},
diff --git a/testdata/d2oracle/TestMove/edge_across_containers.exp.json b/testdata/d2oracle/TestMove/edge_across_containers.exp.json
index 6bb4de01d..8f9c5a436 100644
--- a/testdata/d2oracle/TestMove/edge_across_containers.exp.json
+++ b/testdata/d2oracle/TestMove/edge_across_containers.exp.json
@@ -144,7 +144,8 @@
"direction": {
"value": ""
}
- }
+ },
+ "zIndex": 0
},
"edges": [
{
@@ -175,7 +176,8 @@
"direction": {
"value": ""
}
- }
+ },
+ "zIndex": 0
}
],
"objects": [
@@ -220,7 +222,8 @@
"direction": {
"value": ""
}
- }
+ },
+ "zIndex": 0
},
{
"id": "d",
@@ -305,7 +308,8 @@
"direction": {
"value": ""
}
- }
+ },
+ "zIndex": 0
},
{
"id": "b",
@@ -370,7 +374,8 @@
"direction": {
"value": ""
}
- }
+ },
+ "zIndex": 0
},
{
"id": "c",
@@ -413,7 +418,8 @@
"direction": {
"value": ""
}
- }
+ },
+ "zIndex": 0
}
]
},
diff --git a/testdata/d2oracle/TestMove/edge_basic.exp.json b/testdata/d2oracle/TestMove/edge_basic.exp.json
index 353c67dc1..2d5107213 100644
--- a/testdata/d2oracle/TestMove/edge_basic.exp.json
+++ b/testdata/d2oracle/TestMove/edge_basic.exp.json
@@ -70,7 +70,8 @@
"direction": {
"value": ""
}
- }
+ },
+ "zIndex": 0
},
"edges": [
{
@@ -101,7 +102,8 @@
"direction": {
"value": ""
}
- }
+ },
+ "zIndex": 0
}
],
"objects": [
@@ -146,7 +148,8 @@
"direction": {
"value": ""
}
- }
+ },
+ "zIndex": 0
},
{
"id": "b",
@@ -189,7 +192,8 @@
"direction": {
"value": ""
}
- }
+ },
+ "zIndex": 0
}
]
},
diff --git a/testdata/d2oracle/TestMove/edge_chain_basic.exp.json b/testdata/d2oracle/TestMove/edge_chain_basic.exp.json
index 03d087ec1..778265580 100644
--- a/testdata/d2oracle/TestMove/edge_chain_basic.exp.json
+++ b/testdata/d2oracle/TestMove/edge_chain_basic.exp.json
@@ -107,7 +107,8 @@
"direction": {
"value": ""
}
- }
+ },
+ "zIndex": 0
},
"edges": [
{
@@ -138,7 +139,8 @@
"direction": {
"value": ""
}
- }
+ },
+ "zIndex": 0
},
{
"index": 0,
@@ -168,7 +170,8 @@
"direction": {
"value": ""
}
- }
+ },
+ "zIndex": 0
}
],
"objects": [
@@ -213,7 +216,8 @@
"direction": {
"value": ""
}
- }
+ },
+ "zIndex": 0
},
{
"id": "b",
@@ -276,7 +280,8 @@
"direction": {
"value": ""
}
- }
+ },
+ "zIndex": 0
},
{
"id": "c",
@@ -319,7 +324,8 @@
"direction": {
"value": ""
}
- }
+ },
+ "zIndex": 0
}
]
},
diff --git a/testdata/d2oracle/TestMove/edge_chain_circular.exp.json b/testdata/d2oracle/TestMove/edge_chain_circular.exp.json
index 5e0fd751c..e05f318c3 100644
--- a/testdata/d2oracle/TestMove/edge_chain_circular.exp.json
+++ b/testdata/d2oracle/TestMove/edge_chain_circular.exp.json
@@ -158,7 +158,8 @@
"direction": {
"value": ""
}
- }
+ },
+ "zIndex": 0
},
"edges": [
{
@@ -189,7 +190,8 @@
"direction": {
"value": ""
}
- }
+ },
+ "zIndex": 0
},
{
"index": 0,
@@ -219,7 +221,8 @@
"direction": {
"value": ""
}
- }
+ },
+ "zIndex": 0
}
],
"objects": [
@@ -264,7 +267,8 @@
"direction": {
"value": ""
}
- }
+ },
+ "zIndex": 0
},
{
"id": "b",
@@ -349,7 +353,8 @@
"direction": {
"value": ""
}
- }
+ },
+ "zIndex": 0
},
{
"id": "c",
@@ -412,7 +417,8 @@
"direction": {
"value": ""
}
- }
+ },
+ "zIndex": 0
}
]
},
diff --git a/testdata/d2oracle/TestMove/edge_chain_into_container.exp.json b/testdata/d2oracle/TestMove/edge_chain_into_container.exp.json
index e53bd0bec..dd1550d8e 100644
--- a/testdata/d2oracle/TestMove/edge_chain_into_container.exp.json
+++ b/testdata/d2oracle/TestMove/edge_chain_into_container.exp.json
@@ -141,7 +141,8 @@
"direction": {
"value": ""
}
- }
+ },
+ "zIndex": 0
},
"edges": [
{
@@ -172,7 +173,8 @@
"direction": {
"value": ""
}
- }
+ },
+ "zIndex": 0
},
{
"index": 0,
@@ -202,7 +204,8 @@
"direction": {
"value": ""
}
- }
+ },
+ "zIndex": 0
}
],
"objects": [
@@ -278,7 +281,8 @@
"direction": {
"value": ""
}
- }
+ },
+ "zIndex": 0
},
{
"id": "a",
@@ -332,7 +336,8 @@
"direction": {
"value": ""
}
- }
+ },
+ "zIndex": 0
},
{
"id": "b",
@@ -395,7 +400,8 @@
"direction": {
"value": ""
}
- }
+ },
+ "zIndex": 0
},
{
"id": "c",
@@ -438,7 +444,8 @@
"direction": {
"value": ""
}
- }
+ },
+ "zIndex": 0
}
]
},
diff --git a/testdata/d2oracle/TestMove/edge_chain_out_container.exp.json b/testdata/d2oracle/TestMove/edge_chain_out_container.exp.json
index 38c443c4a..7032806d9 100644
--- a/testdata/d2oracle/TestMove/edge_chain_out_container.exp.json
+++ b/testdata/d2oracle/TestMove/edge_chain_out_container.exp.json
@@ -158,7 +158,8 @@
"direction": {
"value": ""
}
- }
+ },
+ "zIndex": 0
},
"edges": [
{
@@ -189,7 +190,8 @@
"direction": {
"value": ""
}
- }
+ },
+ "zIndex": 0
},
{
"index": 0,
@@ -219,7 +221,8 @@
"direction": {
"value": ""
}
- }
+ },
+ "zIndex": 0
}
],
"objects": [
@@ -264,7 +267,8 @@
"direction": {
"value": ""
}
- }
+ },
+ "zIndex": 0
},
{
"id": "b",
@@ -307,7 +311,8 @@
"direction": {
"value": ""
}
- }
+ },
+ "zIndex": 0
},
{
"id": "c",
@@ -392,7 +397,8 @@
"direction": {
"value": ""
}
- }
+ },
+ "zIndex": 0
},
{
"id": "d",
@@ -435,7 +441,8 @@
"direction": {
"value": ""
}
- }
+ },
+ "zIndex": 0
}
]
},
diff --git a/testdata/d2oracle/TestMove/edge_conflict.exp.json b/testdata/d2oracle/TestMove/edge_conflict.exp.json
index 62c325c64..30a511067 100644
--- a/testdata/d2oracle/TestMove/edge_conflict.exp.json
+++ b/testdata/d2oracle/TestMove/edge_conflict.exp.json
@@ -144,7 +144,8 @@
"direction": {
"value": ""
}
- }
+ },
+ "zIndex": 0
},
"edges": [
{
@@ -175,7 +176,8 @@
"direction": {
"value": ""
}
- }
+ },
+ "zIndex": 0
}
],
"objects": [
@@ -220,7 +222,8 @@
"direction": {
"value": ""
}
- }
+ },
+ "zIndex": 0
},
{
"id": "x",
@@ -263,7 +266,8 @@
"direction": {
"value": ""
}
- }
+ },
+ "zIndex": 0
},
{
"id": "y 2",
@@ -348,7 +352,8 @@
"direction": {
"value": ""
}
- }
+ },
+ "zIndex": 0
},
{
"id": "a",
@@ -402,7 +407,8 @@
"direction": {
"value": ""
}
- }
+ },
+ "zIndex": 0
},
{
"id": "b",
@@ -456,7 +462,8 @@
"direction": {
"value": ""
}
- }
+ },
+ "zIndex": 0
}
]
},
diff --git a/testdata/d2oracle/TestMove/edge_into_container.exp.json b/testdata/d2oracle/TestMove/edge_into_container.exp.json
index 6218e4fd0..09fc6585b 100644
--- a/testdata/d2oracle/TestMove/edge_into_container.exp.json
+++ b/testdata/d2oracle/TestMove/edge_into_container.exp.json
@@ -133,7 +133,8 @@
"direction": {
"value": ""
}
- }
+ },
+ "zIndex": 0
},
"edges": [
{
@@ -164,7 +165,8 @@
"direction": {
"value": ""
}
- }
+ },
+ "zIndex": 0
}
],
"objects": [
@@ -240,7 +242,8 @@
"direction": {
"value": ""
}
- }
+ },
+ "zIndex": 0
},
{
"id": "d",
@@ -283,7 +286,8 @@
"direction": {
"value": ""
}
- }
+ },
+ "zIndex": 0
},
{
"id": "b",
@@ -337,7 +341,8 @@
"direction": {
"value": ""
}
- }
+ },
+ "zIndex": 0
},
{
"id": "c",
@@ -380,7 +385,8 @@
"direction": {
"value": ""
}
- }
+ },
+ "zIndex": 0
}
]
},
diff --git a/testdata/d2oracle/TestMove/edge_nested_basic.exp.json b/testdata/d2oracle/TestMove/edge_nested_basic.exp.json
index 902b1a123..b2c906839 100644
--- a/testdata/d2oracle/TestMove/edge_nested_basic.exp.json
+++ b/testdata/d2oracle/TestMove/edge_nested_basic.exp.json
@@ -99,7 +99,8 @@
"direction": {
"value": ""
}
- }
+ },
+ "zIndex": 0
},
"edges": [
{
@@ -130,7 +131,8 @@
"direction": {
"value": ""
}
- }
+ },
+ "zIndex": 0
}
],
"objects": [
@@ -175,7 +177,8 @@
"direction": {
"value": ""
}
- }
+ },
+ "zIndex": 0
},
{
"id": "d",
@@ -218,7 +221,8 @@
"direction": {
"value": ""
}
- }
+ },
+ "zIndex": 0
},
{
"id": "c",
@@ -261,7 +265,8 @@
"direction": {
"value": ""
}
- }
+ },
+ "zIndex": 0
}
]
},
diff --git a/testdata/d2oracle/TestMove/edge_out_of_container.exp.json b/testdata/d2oracle/TestMove/edge_out_of_container.exp.json
index 252f57ea1..464fd589a 100644
--- a/testdata/d2oracle/TestMove/edge_out_of_container.exp.json
+++ b/testdata/d2oracle/TestMove/edge_out_of_container.exp.json
@@ -110,7 +110,8 @@
"direction": {
"value": ""
}
- }
+ },
+ "zIndex": 0
},
"edges": [
{
@@ -141,7 +142,8 @@
"direction": {
"value": ""
}
- }
+ },
+ "zIndex": 0
}
],
"objects": [
@@ -186,7 +188,8 @@
"direction": {
"value": ""
}
- }
+ },
+ "zIndex": 0
},
{
"id": "b",
@@ -240,7 +243,8 @@
"direction": {
"value": ""
}
- }
+ },
+ "zIndex": 0
},
{
"id": "c",
@@ -283,7 +287,8 @@
"direction": {
"value": ""
}
- }
+ },
+ "zIndex": 0
}
]
},
diff --git a/testdata/d2oracle/TestMove/extend_map.exp.json b/testdata/d2oracle/TestMove/extend_map.exp.json
index e1335c7f0..1a2641d3f 100644
--- a/testdata/d2oracle/TestMove/extend_map.exp.json
+++ b/testdata/d2oracle/TestMove/extend_map.exp.json
@@ -157,7 +157,8 @@
"direction": {
"value": ""
}
- }
+ },
+ "zIndex": 0
},
"edges": null,
"objects": [
@@ -222,7 +223,8 @@
"direction": {
"value": ""
}
- }
+ },
+ "zIndex": 0
},
{
"id": "e",
@@ -265,7 +267,8 @@
"direction": {
"value": ""
}
- }
+ },
+ "zIndex": 0
},
{
"id": "c",
@@ -308,7 +311,8 @@
"direction": {
"value": ""
}
- }
+ },
+ "zIndex": 0
},
{
"id": "b",
@@ -351,7 +355,8 @@
"direction": {
"value": ""
}
- }
+ },
+ "zIndex": 0
}
]
},
diff --git a/testdata/d2oracle/TestMove/extend_stationary_path.exp.json b/testdata/d2oracle/TestMove/extend_stationary_path.exp.json
index 5ad3f58bd..5bb8cfca4 100644
--- a/testdata/d2oracle/TestMove/extend_stationary_path.exp.json
+++ b/testdata/d2oracle/TestMove/extend_stationary_path.exp.json
@@ -150,7 +150,8 @@
"direction": {
"value": ""
}
- }
+ },
+ "zIndex": 0
},
"edges": null,
"objects": [
@@ -237,7 +238,8 @@
"direction": {
"value": ""
}
- }
+ },
+ "zIndex": 0
},
{
"id": "c",
@@ -322,7 +324,8 @@
"direction": {
"value": ""
}
- }
+ },
+ "zIndex": 0
},
{
"id": "b",
@@ -407,7 +410,8 @@
"direction": {
"value": ""
}
- }
+ },
+ "zIndex": 0
}
]
},
diff --git a/testdata/d2oracle/TestMove/flat_between_containers.exp.json b/testdata/d2oracle/TestMove/flat_between_containers.exp.json
index b62a33065..e0230f680 100644
--- a/testdata/d2oracle/TestMove/flat_between_containers.exp.json
+++ b/testdata/d2oracle/TestMove/flat_between_containers.exp.json
@@ -99,7 +99,8 @@
"direction": {
"value": ""
}
- }
+ },
+ "zIndex": 0
},
"edges": null,
"objects": [
@@ -144,7 +145,8 @@
"direction": {
"value": ""
}
- }
+ },
+ "zIndex": 0
},
{
"id": "c",
@@ -187,7 +189,8 @@
"direction": {
"value": ""
}
- }
+ },
+ "zIndex": 0
},
{
"id": "b",
@@ -230,7 +233,8 @@
"direction": {
"value": ""
}
- }
+ },
+ "zIndex": 0
}
]
},
diff --git a/testdata/d2oracle/TestMove/flat_merge.exp.json b/testdata/d2oracle/TestMove/flat_merge.exp.json
index 483fdb5ce..ad6fb3a34 100644
--- a/testdata/d2oracle/TestMove/flat_merge.exp.json
+++ b/testdata/d2oracle/TestMove/flat_merge.exp.json
@@ -132,7 +132,8 @@
"direction": {
"value": ""
}
- }
+ },
+ "zIndex": 0
},
"edges": null,
"objects": [
@@ -177,7 +178,8 @@
"direction": {
"value": ""
}
- }
+ },
+ "zIndex": 0
},
{
"id": "c",
@@ -220,7 +222,8 @@
"direction": {
"value": ""
}
- }
+ },
+ "zIndex": 0
},
{
"id": "d",
@@ -263,7 +266,8 @@
"direction": {
"value": ""
}
- }
+ },
+ "zIndex": 0
},
{
"id": "b",
@@ -306,7 +310,8 @@
"direction": {
"value": ""
}
- }
+ },
+ "zIndex": 0
}
]
},
diff --git a/testdata/d2oracle/TestMove/flat_middle_container.exp.json b/testdata/d2oracle/TestMove/flat_middle_container.exp.json
index a45b71135..a5ca300e2 100644
--- a/testdata/d2oracle/TestMove/flat_middle_container.exp.json
+++ b/testdata/d2oracle/TestMove/flat_middle_container.exp.json
@@ -110,7 +110,8 @@
"direction": {
"value": ""
}
- }
+ },
+ "zIndex": 0
},
"edges": null,
"objects": [
@@ -166,7 +167,8 @@
"direction": {
"value": ""
}
- }
+ },
+ "zIndex": 0
},
{
"id": "c",
@@ -220,7 +222,8 @@
"direction": {
"value": ""
}
- }
+ },
+ "zIndex": 0
},
{
"id": "d",
@@ -263,7 +266,8 @@
"direction": {
"value": ""
}
- }
+ },
+ "zIndex": 0
},
{
"id": "b",
@@ -306,7 +310,8 @@
"direction": {
"value": ""
}
- }
+ },
+ "zIndex": 0
}
]
},
diff --git a/testdata/d2oracle/TestMove/flat_nested_merge.exp.json b/testdata/d2oracle/TestMove/flat_nested_merge.exp.json
index 737c1a629..872501201 100644
--- a/testdata/d2oracle/TestMove/flat_nested_merge.exp.json
+++ b/testdata/d2oracle/TestMove/flat_nested_merge.exp.json
@@ -188,7 +188,8 @@
"direction": {
"value": ""
}
- }
+ },
+ "zIndex": 0
},
"edges": null,
"objects": [
@@ -266,7 +267,8 @@
"direction": {
"value": ""
}
- }
+ },
+ "zIndex": 0
},
{
"id": "b",
@@ -342,7 +344,8 @@
"direction": {
"value": ""
}
- }
+ },
+ "zIndex": 0
},
{
"id": "d",
@@ -418,7 +421,8 @@
"direction": {
"value": ""
}
- }
+ },
+ "zIndex": 0
},
{
"id": "e",
@@ -494,7 +498,8 @@
"direction": {
"value": ""
}
- }
+ },
+ "zIndex": 0
},
{
"id": "p",
@@ -548,7 +553,8 @@
"direction": {
"value": ""
}
- }
+ },
+ "zIndex": 0
},
{
"id": "q",
@@ -602,7 +608,8 @@
"direction": {
"value": ""
}
- }
+ },
+ "zIndex": 0
},
{
"id": "b",
@@ -667,7 +674,8 @@
"direction": {
"value": ""
}
- }
+ },
+ "zIndex": 0
},
{
"id": "m",
@@ -732,7 +740,8 @@
"direction": {
"value": ""
}
- }
+ },
+ "zIndex": 0
},
{
"id": "o",
@@ -797,7 +806,8 @@
"direction": {
"value": ""
}
- }
+ },
+ "zIndex": 0
},
{
"id": "z",
@@ -840,7 +850,8 @@
"direction": {
"value": ""
}
- }
+ },
+ "zIndex": 0
}
]
},
diff --git a/testdata/d2oracle/TestMove/flat_nested_merge_multiple_refs.exp.json b/testdata/d2oracle/TestMove/flat_nested_merge_multiple_refs.exp.json
index 56cde491e..bd1184f40 100644
--- a/testdata/d2oracle/TestMove/flat_nested_merge_multiple_refs.exp.json
+++ b/testdata/d2oracle/TestMove/flat_nested_merge_multiple_refs.exp.json
@@ -286,7 +286,8 @@
"direction": {
"value": ""
}
- }
+ },
+ "zIndex": 0
},
"edges": null,
"objects": [
@@ -426,7 +427,8 @@
"direction": {
"value": ""
}
- }
+ },
+ "zIndex": 0
},
{
"id": "b",
@@ -575,7 +577,8 @@
"direction": {
"value": ""
}
- }
+ },
+ "zIndex": 0
},
{
"id": "c",
@@ -724,7 +727,8 @@
"direction": {
"value": ""
}
- }
+ },
+ "zIndex": 0
},
{
"id": "d",
@@ -767,7 +771,8 @@
"direction": {
"value": ""
}
- }
+ },
+ "zIndex": 0
},
{
"id": "e",
@@ -810,7 +815,8 @@
"direction": {
"value": ""
}
- }
+ },
+ "zIndex": 0
},
{
"id": "f",
@@ -853,7 +859,8 @@
"direction": {
"value": ""
}
- }
+ },
+ "zIndex": 0
},
{
"id": "g",
@@ -896,7 +903,8 @@
"direction": {
"value": ""
}
- }
+ },
+ "zIndex": 0
},
{
"id": "q",
@@ -972,7 +980,8 @@
"direction": {
"value": ""
}
- }
+ },
+ "zIndex": 0
}
]
},
diff --git a/testdata/d2oracle/TestMove/flat_reparent_with_map_value.exp.json b/testdata/d2oracle/TestMove/flat_reparent_with_map_value.exp.json
index b5a99a192..2c8081ef1 100644
--- a/testdata/d2oracle/TestMove/flat_reparent_with_map_value.exp.json
+++ b/testdata/d2oracle/TestMove/flat_reparent_with_map_value.exp.json
@@ -109,7 +109,8 @@
"direction": {
"value": ""
}
- }
+ },
+ "zIndex": 0
},
"edges": null,
"objects": [
@@ -154,7 +155,8 @@
"direction": {
"value": ""
}
- }
+ },
+ "zIndex": 0
},
{
"id": "b",
@@ -197,7 +199,8 @@
"direction": {
"value": ""
}
- }
+ },
+ "zIndex": 0
}
]
},
diff --git a/testdata/d2oracle/TestMove/flat_reparent_with_mixed_map_value.exp.json b/testdata/d2oracle/TestMove/flat_reparent_with_mixed_map_value.exp.json
index be6599d0a..457c51dc8 100644
--- a/testdata/d2oracle/TestMove/flat_reparent_with_mixed_map_value.exp.json
+++ b/testdata/d2oracle/TestMove/flat_reparent_with_mixed_map_value.exp.json
@@ -150,7 +150,8 @@
"direction": {
"value": ""
}
- }
+ },
+ "zIndex": 0
},
"edges": null,
"objects": [
@@ -195,7 +196,8 @@
"direction": {
"value": ""
}
- }
+ },
+ "zIndex": 0
},
{
"id": "c",
@@ -238,7 +240,8 @@
"direction": {
"value": ""
}
- }
+ },
+ "zIndex": 0
},
{
"id": "b",
@@ -281,7 +284,8 @@
"direction": {
"value": ""
}
- }
+ },
+ "zIndex": 0
}
]
},
diff --git a/testdata/d2oracle/TestMove/flat_reparent_with_value.exp.json b/testdata/d2oracle/TestMove/flat_reparent_with_value.exp.json
index f4586228d..50b0bb150 100644
--- a/testdata/d2oracle/TestMove/flat_reparent_with_value.exp.json
+++ b/testdata/d2oracle/TestMove/flat_reparent_with_value.exp.json
@@ -80,7 +80,8 @@
"direction": {
"value": ""
}
- }
+ },
+ "zIndex": 0
},
"edges": null,
"objects": [
@@ -125,7 +126,8 @@
"direction": {
"value": ""
}
- }
+ },
+ "zIndex": 0
},
{
"id": "b",
@@ -168,7 +170,8 @@
"direction": {
"value": ""
}
- }
+ },
+ "zIndex": 0
}
]
},
diff --git a/testdata/d2oracle/TestMove/flat_style.exp.json b/testdata/d2oracle/TestMove/flat_style.exp.json
index 8e0bcea62..5390eb45c 100644
--- a/testdata/d2oracle/TestMove/flat_style.exp.json
+++ b/testdata/d2oracle/TestMove/flat_style.exp.json
@@ -159,7 +159,8 @@
"direction": {
"value": ""
}
- }
+ },
+ "zIndex": 0
},
"edges": [],
"objects": [
@@ -204,7 +205,8 @@
"direction": {
"value": ""
}
- }
+ },
+ "zIndex": 0
},
{
"id": "a",
@@ -318,7 +320,8 @@
"direction": {
"value": ""
}
- }
+ },
+ "zIndex": 0
}
]
},
diff --git a/testdata/d2oracle/TestMove/full_edge_slice.exp.json b/testdata/d2oracle/TestMove/full_edge_slice.exp.json
index 238363e12..91f515286 100644
--- a/testdata/d2oracle/TestMove/full_edge_slice.exp.json
+++ b/testdata/d2oracle/TestMove/full_edge_slice.exp.json
@@ -213,7 +213,8 @@
"direction": {
"value": ""
}
- }
+ },
+ "zIndex": 0
},
"edges": [
{
@@ -244,7 +245,8 @@
"direction": {
"value": ""
}
- }
+ },
+ "zIndex": 0
},
{
"index": 1,
@@ -274,7 +276,8 @@
"direction": {
"value": ""
}
- }
+ },
+ "zIndex": 0
}
],
"objects": [
@@ -350,7 +353,8 @@
"direction": {
"value": ""
}
- }
+ },
+ "zIndex": 0
},
{
"id": "b",
@@ -393,7 +397,8 @@
"direction": {
"value": ""
}
- }
+ },
+ "zIndex": 0
},
{
"id": "c",
@@ -487,7 +492,8 @@
"direction": {
"value": ""
}
- }
+ },
+ "zIndex": 0
},
{
"id": "d",
@@ -561,7 +567,8 @@
"direction": {
"value": ""
}
- }
+ },
+ "zIndex": 0
}
]
},
diff --git a/testdata/d2oracle/TestMove/full_slice.exp.json b/testdata/d2oracle/TestMove/full_slice.exp.json
index b7ffc8ff5..a57483bc6 100644
--- a/testdata/d2oracle/TestMove/full_slice.exp.json
+++ b/testdata/d2oracle/TestMove/full_slice.exp.json
@@ -99,7 +99,8 @@
"direction": {
"value": ""
}
- }
+ },
+ "zIndex": 0
},
"edges": null,
"objects": [
@@ -144,7 +145,8 @@
"direction": {
"value": ""
}
- }
+ },
+ "zIndex": 0
},
{
"id": "b",
@@ -187,7 +189,8 @@
"direction": {
"value": ""
}
- }
+ },
+ "zIndex": 0
},
{
"id": "c",
@@ -230,7 +233,8 @@
"direction": {
"value": ""
}
- }
+ },
+ "zIndex": 0
}
]
},
diff --git a/testdata/d2oracle/TestMove/gnarly_1.exp.json b/testdata/d2oracle/TestMove/gnarly_1.exp.json
index 0c46d052f..753fd5159 100644
--- a/testdata/d2oracle/TestMove/gnarly_1.exp.json
+++ b/testdata/d2oracle/TestMove/gnarly_1.exp.json
@@ -357,7 +357,8 @@
"direction": {
"value": ""
}
- }
+ },
+ "zIndex": 0
},
"edges": [
{
@@ -388,7 +389,8 @@
"direction": {
"value": ""
}
- }
+ },
+ "zIndex": 0
},
{
"index": 0,
@@ -418,7 +420,8 @@
"direction": {
"value": ""
}
- }
+ },
+ "zIndex": 0
},
{
"index": 0,
@@ -448,7 +451,8 @@
"direction": {
"value": ""
}
- }
+ },
+ "zIndex": 0
}
],
"objects": [
@@ -555,7 +559,8 @@
"direction": {
"value": ""
}
- }
+ },
+ "zIndex": 0
},
{
"id": "b",
@@ -598,7 +603,8 @@
"direction": {
"value": ""
}
- }
+ },
+ "zIndex": 0
},
{
"id": "p",
@@ -703,7 +709,8 @@
"direction": {
"value": ""
}
- }
+ },
+ "zIndex": 0
},
{
"id": "q",
@@ -777,7 +784,8 @@
"direction": {
"value": ""
}
- }
+ },
+ "zIndex": 0
},
{
"id": "a",
@@ -842,7 +850,8 @@
"direction": {
"value": ""
}
- }
+ },
+ "zIndex": 0
},
{
"id": "b",
@@ -907,7 +916,8 @@
"direction": {
"value": ""
}
- }
+ },
+ "zIndex": 0
},
{
"id": "c",
@@ -972,7 +982,8 @@
"direction": {
"value": ""
}
- }
+ },
+ "zIndex": 0
},
{
"id": "e",
@@ -1037,7 +1048,8 @@
"direction": {
"value": ""
}
- }
+ },
+ "zIndex": 0
},
{
"id": "f",
@@ -1102,7 +1114,8 @@
"direction": {
"value": ""
}
- }
+ },
+ "zIndex": 0
},
{
"id": "p",
@@ -1156,7 +1169,8 @@
"direction": {
"value": ""
}
- }
+ },
+ "zIndex": 0
},
{
"id": "q",
@@ -1210,7 +1224,8 @@
"direction": {
"value": ""
}
- }
+ },
+ "zIndex": 0
},
{
"id": "x",
@@ -1264,7 +1279,8 @@
"direction": {
"value": ""
}
- }
+ },
+ "zIndex": 0
}
]
},
diff --git a/testdata/d2oracle/TestMove/hoist_container_children.exp.json b/testdata/d2oracle/TestMove/hoist_container_children.exp.json
index 729b716c4..86a27aee9 100644
--- a/testdata/d2oracle/TestMove/hoist_container_children.exp.json
+++ b/testdata/d2oracle/TestMove/hoist_container_children.exp.json
@@ -122,7 +122,8 @@
"direction": {
"value": ""
}
- }
+ },
+ "zIndex": 0
},
"edges": null,
"objects": [
@@ -167,7 +168,8 @@
"direction": {
"value": ""
}
- }
+ },
+ "zIndex": 0
},
{
"id": "c",
@@ -210,7 +212,8 @@
"direction": {
"value": ""
}
- }
+ },
+ "zIndex": 0
},
{
"id": "d",
@@ -253,7 +256,8 @@
"direction": {
"value": ""
}
- }
+ },
+ "zIndex": 0
},
{
"id": "a",
@@ -296,7 +300,8 @@
"direction": {
"value": ""
}
- }
+ },
+ "zIndex": 0
}
]
},
diff --git a/testdata/d2oracle/TestMove/into_container_existing_map.exp.json b/testdata/d2oracle/TestMove/into_container_existing_map.exp.json
index cef9f69ca..d43b1fd6b 100644
--- a/testdata/d2oracle/TestMove/into_container_existing_map.exp.json
+++ b/testdata/d2oracle/TestMove/into_container_existing_map.exp.json
@@ -99,7 +99,8 @@
"direction": {
"value": ""
}
- }
+ },
+ "zIndex": 0
},
"edges": null,
"objects": [
@@ -144,7 +145,8 @@
"direction": {
"value": ""
}
- }
+ },
+ "zIndex": 0
},
{
"id": "b",
@@ -187,7 +189,8 @@
"direction": {
"value": ""
}
- }
+ },
+ "zIndex": 0
},
{
"id": "c",
@@ -230,7 +233,8 @@
"direction": {
"value": ""
}
- }
+ },
+ "zIndex": 0
}
]
},
diff --git a/testdata/d2oracle/TestMove/into_container_nonexisting_map.exp.json b/testdata/d2oracle/TestMove/into_container_nonexisting_map.exp.json
index be51f69ce..a4f3878ae 100644
--- a/testdata/d2oracle/TestMove/into_container_nonexisting_map.exp.json
+++ b/testdata/d2oracle/TestMove/into_container_nonexisting_map.exp.json
@@ -76,7 +76,8 @@
"direction": {
"value": ""
}
- }
+ },
+ "zIndex": 0
},
"edges": null,
"objects": [
@@ -121,7 +122,8 @@
"direction": {
"value": ""
}
- }
+ },
+ "zIndex": 0
},
{
"id": "c",
@@ -164,7 +166,8 @@
"direction": {
"value": ""
}
- }
+ },
+ "zIndex": 0
}
]
},
diff --git a/testdata/d2oracle/TestMove/into_container_with_flat_keys.exp.json b/testdata/d2oracle/TestMove/into_container_with_flat_keys.exp.json
index 8fc2045a0..f6bfa2dbd 100644
--- a/testdata/d2oracle/TestMove/into_container_with_flat_keys.exp.json
+++ b/testdata/d2oracle/TestMove/into_container_with_flat_keys.exp.json
@@ -210,7 +210,8 @@
"direction": {
"value": ""
}
- }
+ },
+ "zIndex": 0
},
"edges": [],
"objects": [
@@ -255,7 +256,8 @@
"direction": {
"value": ""
}
- }
+ },
+ "zIndex": 0
},
{
"id": "c",
@@ -308,7 +310,8 @@
"direction": {
"value": ""
}
- }
+ },
+ "zIndex": 0
}
]
},
diff --git a/testdata/d2oracle/TestMove/into_container_with_flat_style.exp.json b/testdata/d2oracle/TestMove/into_container_with_flat_style.exp.json
index 493b4cff5..3c2db3561 100644
--- a/testdata/d2oracle/TestMove/into_container_with_flat_style.exp.json
+++ b/testdata/d2oracle/TestMove/into_container_with_flat_style.exp.json
@@ -116,7 +116,8 @@
"direction": {
"value": ""
}
- }
+ },
+ "zIndex": 0
},
"edges": [],
"objects": [
@@ -165,7 +166,8 @@
"direction": {
"value": ""
}
- }
+ },
+ "zIndex": 0
},
{
"id": "y",
@@ -208,7 +210,8 @@
"direction": {
"value": ""
}
- }
+ },
+ "zIndex": 0
}
]
},
diff --git a/testdata/d2oracle/TestMove/map_transplant.exp.json b/testdata/d2oracle/TestMove/map_transplant.exp.json
index 0bcc93844..f71c387c9 100644
--- a/testdata/d2oracle/TestMove/map_transplant.exp.json
+++ b/testdata/d2oracle/TestMove/map_transplant.exp.json
@@ -219,7 +219,8 @@
"direction": {
"value": ""
}
- }
+ },
+ "zIndex": 0
},
"edges": [],
"objects": [
@@ -264,7 +265,8 @@
"direction": {
"value": ""
}
- }
+ },
+ "zIndex": 0
},
{
"id": "c",
@@ -307,7 +309,8 @@
"direction": {
"value": ""
}
- }
+ },
+ "zIndex": 0
},
{
"id": "d",
@@ -350,7 +353,8 @@
"direction": {
"value": ""
}
- }
+ },
+ "zIndex": 0
},
{
"id": "a",
@@ -397,7 +401,8 @@
"direction": {
"value": ""
}
- }
+ },
+ "zIndex": 0
}
]
},
diff --git a/testdata/d2oracle/TestMove/map_with_label.exp.json b/testdata/d2oracle/TestMove/map_with_label.exp.json
index 0f55d724b..b86e23711 100644
--- a/testdata/d2oracle/TestMove/map_with_label.exp.json
+++ b/testdata/d2oracle/TestMove/map_with_label.exp.json
@@ -109,7 +109,8 @@
"direction": {
"value": ""
}
- }
+ },
+ "zIndex": 0
},
"edges": null,
"objects": [
@@ -154,7 +155,8 @@
"direction": {
"value": ""
}
- }
+ },
+ "zIndex": 0
},
{
"id": "d",
@@ -197,7 +199,8 @@
"direction": {
"value": ""
}
- }
+ },
+ "zIndex": 0
},
{
"id": "a",
@@ -240,7 +243,8 @@
"direction": {
"value": ""
}
- }
+ },
+ "zIndex": 0
}
]
},
diff --git a/testdata/d2oracle/TestMove/merge_nested_maps.exp.json b/testdata/d2oracle/TestMove/merge_nested_maps.exp.json
index 4d5eb8c56..ade7c5294 100644
--- a/testdata/d2oracle/TestMove/merge_nested_maps.exp.json
+++ b/testdata/d2oracle/TestMove/merge_nested_maps.exp.json
@@ -270,7 +270,8 @@
"direction": {
"value": ""
}
- }
+ },
+ "zIndex": 0
},
"edges": null,
"objects": [
@@ -315,7 +316,8 @@
"direction": {
"value": ""
}
- }
+ },
+ "zIndex": 0
},
{
"id": "b",
@@ -462,7 +464,8 @@
"direction": {
"value": ""
}
- }
+ },
+ "zIndex": 0
},
{
"id": "c",
@@ -516,7 +519,8 @@
"direction": {
"value": ""
}
- }
+ },
+ "zIndex": 0
},
{
"id": "d",
@@ -590,7 +594,8 @@
"direction": {
"value": ""
}
- }
+ },
+ "zIndex": 0
},
{
"id": "e",
@@ -655,7 +660,8 @@
"direction": {
"value": ""
}
- }
+ },
+ "zIndex": 0
},
{
"id": "g",
@@ -720,7 +726,8 @@
"direction": {
"value": ""
}
- }
+ },
+ "zIndex": 0
},
{
"id": "o",
@@ -763,7 +770,8 @@
"direction": {
"value": ""
}
- }
+ },
+ "zIndex": 0
},
{
"id": "k",
@@ -806,7 +814,8 @@
"direction": {
"value": ""
}
- }
+ },
+ "zIndex": 0
}
]
},
diff --git a/testdata/d2oracle/TestMove/merge_reserved.exp.json b/testdata/d2oracle/TestMove/merge_reserved.exp.json
index 439d97217..351c99c30 100644
--- a/testdata/d2oracle/TestMove/merge_reserved.exp.json
+++ b/testdata/d2oracle/TestMove/merge_reserved.exp.json
@@ -261,7 +261,8 @@
"direction": {
"value": ""
}
- }
+ },
+ "zIndex": 0
},
"edges": null,
"objects": [
@@ -306,7 +307,8 @@
"direction": {
"value": ""
}
- }
+ },
+ "zIndex": 0
},
{
"id": "b",
@@ -442,7 +444,8 @@
"direction": {
"value": ""
}
- }
+ },
+ "zIndex": 0
},
{
"id": "c",
@@ -496,7 +499,8 @@
"direction": {
"value": ""
}
- }
+ },
+ "zIndex": 0
},
{
"id": "e",
@@ -550,7 +554,8 @@
"direction": {
"value": ""
}
- }
+ },
+ "zIndex": 0
},
{
"id": "g",
@@ -604,7 +609,8 @@
"direction": {
"value": ""
}
- }
+ },
+ "zIndex": 0
},
{
"id": "k",
@@ -647,7 +653,8 @@
"direction": {
"value": ""
}
- }
+ },
+ "zIndex": 0
}
]
},
diff --git a/testdata/d2oracle/TestMove/middle_container.exp.json b/testdata/d2oracle/TestMove/middle_container.exp.json
index d0dd56f55..372b3e141 100644
--- a/testdata/d2oracle/TestMove/middle_container.exp.json
+++ b/testdata/d2oracle/TestMove/middle_container.exp.json
@@ -99,7 +99,8 @@
"direction": {
"value": ""
}
- }
+ },
+ "zIndex": 0
},
"edges": null,
"objects": [
@@ -144,7 +145,8 @@
"direction": {
"value": ""
}
- }
+ },
+ "zIndex": 0
},
{
"id": "z",
@@ -187,7 +189,8 @@
"direction": {
"value": ""
}
- }
+ },
+ "zIndex": 0
},
{
"id": "y",
@@ -230,7 +233,8 @@
"direction": {
"value": ""
}
- }
+ },
+ "zIndex": 0
}
]
},
diff --git a/testdata/d2oracle/TestMove/move_container_children.exp.json b/testdata/d2oracle/TestMove/move_container_children.exp.json
index f9c22268a..8e138bd9a 100644
--- a/testdata/d2oracle/TestMove/move_container_children.exp.json
+++ b/testdata/d2oracle/TestMove/move_container_children.exp.json
@@ -145,7 +145,8 @@
"direction": {
"value": ""
}
- }
+ },
+ "zIndex": 0
},
"edges": null,
"objects": [
@@ -190,7 +191,8 @@
"direction": {
"value": ""
}
- }
+ },
+ "zIndex": 0
},
{
"id": "q",
@@ -233,7 +235,8 @@
"direction": {
"value": ""
}
- }
+ },
+ "zIndex": 0
},
{
"id": "a",
@@ -276,7 +279,8 @@
"direction": {
"value": ""
}
- }
+ },
+ "zIndex": 0
},
{
"id": "d",
@@ -319,7 +323,8 @@
"direction": {
"value": ""
}
- }
+ },
+ "zIndex": 0
},
{
"id": "b",
@@ -362,7 +367,8 @@
"direction": {
"value": ""
}
- }
+ },
+ "zIndex": 0
}
]
},
diff --git a/testdata/d2oracle/TestMove/move_container_conflict_children.exp.json b/testdata/d2oracle/TestMove/move_container_conflict_children.exp.json
index b8bfb2e10..3334fa936 100644
--- a/testdata/d2oracle/TestMove/move_container_conflict_children.exp.json
+++ b/testdata/d2oracle/TestMove/move_container_conflict_children.exp.json
@@ -145,7 +145,8 @@
"direction": {
"value": ""
}
- }
+ },
+ "zIndex": 0
},
"edges": null,
"objects": [
@@ -190,7 +191,8 @@
"direction": {
"value": ""
}
- }
+ },
+ "zIndex": 0
},
{
"id": "b",
@@ -233,7 +235,8 @@
"direction": {
"value": ""
}
- }
+ },
+ "zIndex": 0
},
{
"id": "a",
@@ -276,7 +279,8 @@
"direction": {
"value": ""
}
- }
+ },
+ "zIndex": 0
},
{
"id": "d",
@@ -319,7 +323,8 @@
"direction": {
"value": ""
}
- }
+ },
+ "zIndex": 0
},
{
"id": "x",
@@ -362,7 +367,8 @@
"direction": {
"value": ""
}
- }
+ },
+ "zIndex": 0
}
]
},
diff --git a/testdata/d2oracle/TestMove/move_into_key_with_value.exp.json b/testdata/d2oracle/TestMove/move_into_key_with_value.exp.json
index 6002bd77e..007f466db 100644
--- a/testdata/d2oracle/TestMove/move_into_key_with_value.exp.json
+++ b/testdata/d2oracle/TestMove/move_into_key_with_value.exp.json
@@ -86,7 +86,8 @@
"direction": {
"value": ""
}
- }
+ },
+ "zIndex": 0
},
"edges": null,
"objects": [
@@ -131,7 +132,8 @@
"direction": {
"value": ""
}
- }
+ },
+ "zIndex": 0
},
{
"id": "b",
@@ -174,7 +176,8 @@
"direction": {
"value": ""
}
- }
+ },
+ "zIndex": 0
}
]
},
diff --git a/testdata/d2oracle/TestMove/move_out_of_edge.exp.json b/testdata/d2oracle/TestMove/move_out_of_edge.exp.json
index f16251f0c..35436c44f 100644
--- a/testdata/d2oracle/TestMove/move_out_of_edge.exp.json
+++ b/testdata/d2oracle/TestMove/move_out_of_edge.exp.json
@@ -126,7 +126,8 @@
"direction": {
"value": ""
}
- }
+ },
+ "zIndex": 0
},
"edges": [
{
@@ -157,7 +158,8 @@
"direction": {
"value": ""
}
- }
+ },
+ "zIndex": 0
}
],
"objects": [
@@ -202,7 +204,8 @@
"direction": {
"value": ""
}
- }
+ },
+ "zIndex": 0
},
{
"id": "a",
@@ -256,7 +259,8 @@
"direction": {
"value": ""
}
- }
+ },
+ "zIndex": 0
},
{
"id": "c",
@@ -310,7 +314,8 @@
"direction": {
"value": ""
}
- }
+ },
+ "zIndex": 0
},
{
"id": "d",
@@ -375,7 +380,8 @@
"direction": {
"value": ""
}
- }
+ },
+ "zIndex": 0
},
{
"id": "e",
@@ -440,7 +446,8 @@
"direction": {
"value": ""
}
- }
+ },
+ "zIndex": 0
},
{
"id": "f",
@@ -505,7 +512,8 @@
"direction": {
"value": ""
}
- }
+ },
+ "zIndex": 0
}
]
},
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 6d69c47a9..edcbe9838 100644
--- a/testdata/d2oracle/TestMove/move_out_of_nested_edge.exp.json
+++ b/testdata/d2oracle/TestMove/move_out_of_nested_edge.exp.json
@@ -166,7 +166,8 @@
"direction": {
"value": ""
}
- }
+ },
+ "zIndex": 0
},
"edges": [
{
@@ -197,7 +198,8 @@
"direction": {
"value": ""
}
- }
+ },
+ "zIndex": 0
}
],
"objects": [
@@ -295,7 +297,8 @@
"direction": {
"value": ""
}
- }
+ },
+ "zIndex": 0
},
{
"id": "e",
@@ -391,7 +394,8 @@
"direction": {
"value": ""
}
- }
+ },
+ "zIndex": 0
},
{
"id": "q",
@@ -434,7 +438,8 @@
"direction": {
"value": ""
}
- }
+ },
+ "zIndex": 0
},
{
"id": "a",
@@ -488,7 +493,8 @@
"direction": {
"value": ""
}
- }
+ },
+ "zIndex": 0
},
{
"id": "c",
@@ -542,7 +548,8 @@
"direction": {
"value": ""
}
- }
+ },
+ "zIndex": 0
},
{
"id": "f",
@@ -607,7 +614,8 @@
"direction": {
"value": ""
}
- }
+ },
+ "zIndex": 0
}
]
},
diff --git a/testdata/d2oracle/TestMove/multiple_nesting_levels.exp.json b/testdata/d2oracle/TestMove/multiple_nesting_levels.exp.json
index a75357554..7a00e38bb 100644
--- a/testdata/d2oracle/TestMove/multiple_nesting_levels.exp.json
+++ b/testdata/d2oracle/TestMove/multiple_nesting_levels.exp.json
@@ -281,7 +281,8 @@
"direction": {
"value": ""
}
- }
+ },
+ "zIndex": 0
},
"edges": null,
"objects": [
@@ -379,7 +380,8 @@
"direction": {
"value": ""
}
- }
+ },
+ "zIndex": 0
},
{
"id": "b",
@@ -517,7 +519,8 @@
"direction": {
"value": ""
}
- }
+ },
+ "zIndex": 0
},
{
"id": "c",
@@ -675,7 +678,8 @@
"direction": {
"value": ""
}
- }
+ },
+ "zIndex": 0
},
{
"id": "g",
@@ -718,7 +722,8 @@
"direction": {
"value": ""
}
- }
+ },
+ "zIndex": 0
},
{
"id": "x",
@@ -761,7 +766,8 @@
"direction": {
"value": ""
}
- }
+ },
+ "zIndex": 0
},
{
"id": "d",
@@ -826,7 +832,8 @@
"direction": {
"value": ""
}
- }
+ },
+ "zIndex": 0
},
{
"id": "f",
@@ -902,7 +909,8 @@
"direction": {
"value": ""
}
- }
+ },
+ "zIndex": 0
}
]
},
diff --git a/testdata/d2oracle/TestMove/near.exp.json b/testdata/d2oracle/TestMove/near.exp.json
index 9ee15fbae..cb7651a29 100644
--- a/testdata/d2oracle/TestMove/near.exp.json
+++ b/testdata/d2oracle/TestMove/near.exp.json
@@ -109,7 +109,8 @@
"direction": {
"value": ""
}
- }
+ },
+ "zIndex": 0
},
"edges": null,
"objects": [
@@ -180,7 +181,8 @@
"direction": {
"value": ""
}
- }
+ },
+ "zIndex": 0
},
{
"id": "y",
@@ -223,7 +225,8 @@
"direction": {
"value": ""
}
- }
+ },
+ "zIndex": 0
}
]
},
diff --git a/testdata/d2oracle/TestMove/nhooyr_one.exp.json b/testdata/d2oracle/TestMove/nhooyr_one.exp.json
index a6d7b80b2..97903a67a 100644
--- a/testdata/d2oracle/TestMove/nhooyr_one.exp.json
+++ b/testdata/d2oracle/TestMove/nhooyr_one.exp.json
@@ -128,7 +128,8 @@
"direction": {
"value": ""
}
- }
+ },
+ "zIndex": 0
},
"edges": null,
"objects": [
@@ -173,7 +174,8 @@
"direction": {
"value": ""
}
- }
+ },
+ "zIndex": 0
},
{
"id": "c",
@@ -216,7 +218,8 @@
"direction": {
"value": ""
}
- }
+ },
+ "zIndex": 0
},
{
"id": "d",
@@ -259,7 +262,8 @@
"direction": {
"value": ""
}
- }
+ },
+ "zIndex": 0
},
{
"id": "q",
@@ -302,7 +306,8 @@
"direction": {
"value": ""
}
- }
+ },
+ "zIndex": 0
}
]
},
diff --git a/testdata/d2oracle/TestMove/nhooyr_two.exp.json b/testdata/d2oracle/TestMove/nhooyr_two.exp.json
index e68f72400..ecb9b4520 100644
--- a/testdata/d2oracle/TestMove/nhooyr_two.exp.json
+++ b/testdata/d2oracle/TestMove/nhooyr_two.exp.json
@@ -174,7 +174,8 @@
"direction": {
"value": ""
}
- }
+ },
+ "zIndex": 0
},
"edges": [
{
@@ -205,7 +206,8 @@
"direction": {
"value": ""
}
- }
+ },
+ "zIndex": 0
}
],
"objects": [
@@ -250,7 +252,8 @@
"direction": {
"value": ""
}
- }
+ },
+ "zIndex": 0
},
{
"id": "d",
@@ -293,7 +296,8 @@
"direction": {
"value": ""
}
- }
+ },
+ "zIndex": 0
},
{
"id": "x",
@@ -336,7 +340,8 @@
"direction": {
"value": ""
}
- }
+ },
+ "zIndex": 0
},
{
"id": "b",
@@ -379,7 +384,8 @@
"direction": {
"value": ""
}
- }
+ },
+ "zIndex": 0
},
{
"id": "c",
@@ -422,7 +428,8 @@
"direction": {
"value": ""
}
- }
+ },
+ "zIndex": 0
},
{
"id": "meow",
@@ -465,7 +472,8 @@
"direction": {
"value": ""
}
- }
+ },
+ "zIndex": 0
}
]
},
diff --git a/testdata/d2oracle/TestMove/parentheses.exp.json b/testdata/d2oracle/TestMove/parentheses.exp.json
index f2b4b100e..4e6b621f3 100644
--- a/testdata/d2oracle/TestMove/parentheses.exp.json
+++ b/testdata/d2oracle/TestMove/parentheses.exp.json
@@ -109,7 +109,8 @@
"direction": {
"value": ""
}
- }
+ },
+ "zIndex": 0
},
"edges": [
{
@@ -140,7 +141,8 @@
"direction": {
"value": ""
}
- }
+ },
+ "zIndex": 0
}
],
"objects": [
@@ -216,7 +218,8 @@
"direction": {
"value": ""
}
- }
+ },
+ "zIndex": 0
},
{
"id": "x",
@@ -259,7 +262,8 @@
"direction": {
"value": ""
}
- }
+ },
+ "zIndex": 0
},
{
"id": "\"y (z)\"",
@@ -313,7 +317,8 @@
"direction": {
"value": ""
}
- }
+ },
+ "zIndex": 0
}
]
},
diff --git a/testdata/d2oracle/TestMove/partial_edge_slice.exp.json b/testdata/d2oracle/TestMove/partial_edge_slice.exp.json
index 6f1e7797f..c195ff637 100644
--- a/testdata/d2oracle/TestMove/partial_edge_slice.exp.json
+++ b/testdata/d2oracle/TestMove/partial_edge_slice.exp.json
@@ -116,7 +116,8 @@
"direction": {
"value": ""
}
- }
+ },
+ "zIndex": 0
},
"edges": [
{
@@ -147,7 +148,8 @@
"direction": {
"value": ""
}
- }
+ },
+ "zIndex": 0
}
],
"objects": [
@@ -192,7 +194,8 @@
"direction": {
"value": ""
}
- }
+ },
+ "zIndex": 0
},
{
"id": "b",
@@ -255,7 +258,8 @@
"direction": {
"value": ""
}
- }
+ },
+ "zIndex": 0
},
{
"id": "c",
@@ -298,7 +302,8 @@
"direction": {
"value": ""
}
- }
+ },
+ "zIndex": 0
}
]
},
diff --git a/testdata/d2oracle/TestMove/partial_slice.exp.json b/testdata/d2oracle/TestMove/partial_slice.exp.json
index f4978e04f..aabbe7acb 100644
--- a/testdata/d2oracle/TestMove/partial_slice.exp.json
+++ b/testdata/d2oracle/TestMove/partial_slice.exp.json
@@ -70,7 +70,8 @@
"direction": {
"value": ""
}
- }
+ },
+ "zIndex": 0
},
"edges": null,
"objects": [
@@ -115,7 +116,8 @@
"direction": {
"value": ""
}
- }
+ },
+ "zIndex": 0
},
{
"id": "b",
@@ -158,7 +160,8 @@
"direction": {
"value": ""
}
- }
+ },
+ "zIndex": 0
}
]
},
diff --git a/testdata/d2oracle/TestMove/rename_2.exp.json b/testdata/d2oracle/TestMove/rename_2.exp.json
index 37d25714b..937909663 100644
--- a/testdata/d2oracle/TestMove/rename_2.exp.json
+++ b/testdata/d2oracle/TestMove/rename_2.exp.json
@@ -145,7 +145,8 @@
"direction": {
"value": ""
}
- }
+ },
+ "zIndex": 0
},
"edges": null,
"objects": [
@@ -190,7 +191,8 @@
"direction": {
"value": ""
}
- }
+ },
+ "zIndex": 0
},
{
"id": "y 2",
@@ -233,7 +235,8 @@
"direction": {
"value": ""
}
- }
+ },
+ "zIndex": 0
},
{
"id": "b 2",
@@ -276,7 +279,8 @@
"direction": {
"value": ""
}
- }
+ },
+ "zIndex": 0
},
{
"id": "x",
@@ -319,7 +323,8 @@
"direction": {
"value": ""
}
- }
+ },
+ "zIndex": 0
},
{
"id": "a",
@@ -362,7 +367,8 @@
"direction": {
"value": ""
}
- }
+ },
+ "zIndex": 0
}
]
},
diff --git a/testdata/d2oracle/TestMove/reuse_map.exp.json b/testdata/d2oracle/TestMove/reuse_map.exp.json
index e5555dbce..652b13429 100644
--- a/testdata/d2oracle/TestMove/reuse_map.exp.json
+++ b/testdata/d2oracle/TestMove/reuse_map.exp.json
@@ -162,7 +162,8 @@
"direction": {
"value": ""
}
- }
+ },
+ "zIndex": 0
},
"edges": null,
"objects": [
@@ -207,7 +208,8 @@
"direction": {
"value": ""
}
- }
+ },
+ "zIndex": 0
},
{
"id": "b",
@@ -281,7 +283,8 @@
"direction": {
"value": ""
}
- }
+ },
+ "zIndex": 0
},
{
"id": "hey",
@@ -324,7 +327,8 @@
"direction": {
"value": ""
}
- }
+ },
+ "zIndex": 0
},
{
"id": "k",
@@ -367,7 +371,8 @@
"direction": {
"value": ""
}
- }
+ },
+ "zIndex": 0
},
{
"id": "yo",
@@ -421,7 +426,8 @@
"direction": {
"value": ""
}
- }
+ },
+ "zIndex": 0
}
]
},
diff --git a/testdata/d2oracle/TestMove/slice_style.exp.json b/testdata/d2oracle/TestMove/slice_style.exp.json
index 6680653ea..42a7dc91f 100644
--- a/testdata/d2oracle/TestMove/slice_style.exp.json
+++ b/testdata/d2oracle/TestMove/slice_style.exp.json
@@ -114,7 +114,8 @@
"direction": {
"value": ""
}
- }
+ },
+ "zIndex": 0
},
"edges": null,
"objects": [
@@ -159,7 +160,8 @@
"direction": {
"value": ""
}
- }
+ },
+ "zIndex": 0
},
{
"id": "b",
@@ -245,7 +247,8 @@
"direction": {
"value": ""
}
- }
+ },
+ "zIndex": 0
}
]
},
diff --git a/testdata/d2oracle/TestMove/underscore_children.exp.json b/testdata/d2oracle/TestMove/underscore_children.exp.json
index 5a43f84b3..e89132833 100644
--- a/testdata/d2oracle/TestMove/underscore_children.exp.json
+++ b/testdata/d2oracle/TestMove/underscore_children.exp.json
@@ -110,7 +110,8 @@
"direction": {
"value": ""
}
- }
+ },
+ "zIndex": 0
},
"edges": null,
"objects": [
@@ -155,7 +156,8 @@
"direction": {
"value": ""
}
- }
+ },
+ "zIndex": 0
},
{
"id": "c",
@@ -229,7 +231,8 @@
"direction": {
"value": ""
}
- }
+ },
+ "zIndex": 0
}
]
},
diff --git a/testdata/d2oracle/TestMove/underscore_edge_children.exp.json b/testdata/d2oracle/TestMove/underscore_edge_children.exp.json
index e1a1fb736..95f50abde 100644
--- a/testdata/d2oracle/TestMove/underscore_edge_children.exp.json
+++ b/testdata/d2oracle/TestMove/underscore_edge_children.exp.json
@@ -133,7 +133,8 @@
"direction": {
"value": ""
}
- }
+ },
+ "zIndex": 0
},
"edges": [
{
@@ -164,7 +165,8 @@
"direction": {
"value": ""
}
- }
+ },
+ "zIndex": 0
}
],
"objects": [
@@ -209,7 +211,8 @@
"direction": {
"value": ""
}
- }
+ },
+ "zIndex": 0
},
{
"id": "c",
@@ -283,7 +286,8 @@
"direction": {
"value": ""
}
- }
+ },
+ "zIndex": 0
},
{
"id": "c",
@@ -326,7 +330,8 @@
"direction": {
"value": ""
}
- }
+ },
+ "zIndex": 0
}
]
},
diff --git a/testdata/d2oracle/TestMove/underscore_edge_container_1.exp.json b/testdata/d2oracle/TestMove/underscore_edge_container_1.exp.json
index 8d7d7c159..97d969f6b 100644
--- a/testdata/d2oracle/TestMove/underscore_edge_container_1.exp.json
+++ b/testdata/d2oracle/TestMove/underscore_edge_container_1.exp.json
@@ -99,7 +99,8 @@
"direction": {
"value": ""
}
- }
+ },
+ "zIndex": 0
},
"edges": [
{
@@ -130,7 +131,8 @@
"direction": {
"value": ""
}
- }
+ },
+ "zIndex": 0
}
],
"objects": [
@@ -175,7 +177,8 @@
"direction": {
"value": ""
}
- }
+ },
+ "zIndex": 0
},
{
"id": "b",
@@ -218,7 +221,8 @@
"direction": {
"value": ""
}
- }
+ },
+ "zIndex": 0
},
{
"id": "c",
@@ -261,7 +265,8 @@
"direction": {
"value": ""
}
- }
+ },
+ "zIndex": 0
}
]
},
diff --git a/testdata/d2oracle/TestMove/underscore_edge_container_2.exp.json b/testdata/d2oracle/TestMove/underscore_edge_container_2.exp.json
index 0061f2f15..2e4d62e0c 100644
--- a/testdata/d2oracle/TestMove/underscore_edge_container_2.exp.json
+++ b/testdata/d2oracle/TestMove/underscore_edge_container_2.exp.json
@@ -110,7 +110,8 @@
"direction": {
"value": ""
}
- }
+ },
+ "zIndex": 0
},
"edges": [
{
@@ -141,7 +142,8 @@
"direction": {
"value": ""
}
- }
+ },
+ "zIndex": 0
}
],
"objects": [
@@ -186,7 +188,8 @@
"direction": {
"value": ""
}
- }
+ },
+ "zIndex": 0
},
{
"id": "c",
@@ -260,7 +263,8 @@
"direction": {
"value": ""
}
- }
+ },
+ "zIndex": 0
},
{
"id": "b",
@@ -314,7 +318,8 @@
"direction": {
"value": ""
}
- }
+ },
+ "zIndex": 0
}
]
},
diff --git a/testdata/d2oracle/TestMove/underscore_edge_container_3.exp.json b/testdata/d2oracle/TestMove/underscore_edge_container_3.exp.json
index 42c8f2e8a..7719e8988 100644
--- a/testdata/d2oracle/TestMove/underscore_edge_container_3.exp.json
+++ b/testdata/d2oracle/TestMove/underscore_edge_container_3.exp.json
@@ -110,7 +110,8 @@
"direction": {
"value": ""
}
- }
+ },
+ "zIndex": 0
},
"edges": [
{
@@ -141,7 +142,8 @@
"direction": {
"value": ""
}
- }
+ },
+ "zIndex": 0
}
],
"objects": [
@@ -186,7 +188,8 @@
"direction": {
"value": ""
}
- }
+ },
+ "zIndex": 0
},
{
"id": "d",
@@ -240,7 +243,8 @@
"direction": {
"value": ""
}
- }
+ },
+ "zIndex": 0
},
{
"id": "c",
@@ -283,7 +287,8 @@
"direction": {
"value": ""
}
- }
+ },
+ "zIndex": 0
}
]
},
diff --git a/testdata/d2oracle/TestMove/underscore_edge_container_4.exp.json b/testdata/d2oracle/TestMove/underscore_edge_container_4.exp.json
index 2581b5f76..d07cec755 100644
--- a/testdata/d2oracle/TestMove/underscore_edge_container_4.exp.json
+++ b/testdata/d2oracle/TestMove/underscore_edge_container_4.exp.json
@@ -99,7 +99,8 @@
"direction": {
"value": ""
}
- }
+ },
+ "zIndex": 0
},
"edges": [
{
@@ -130,7 +131,8 @@
"direction": {
"value": ""
}
- }
+ },
+ "zIndex": 0
}
],
"objects": [
@@ -175,7 +177,8 @@
"direction": {
"value": ""
}
- }
+ },
+ "zIndex": 0
},
{
"id": "f",
@@ -218,7 +221,8 @@
"direction": {
"value": ""
}
- }
+ },
+ "zIndex": 0
},
{
"id": "c",
@@ -261,7 +265,8 @@
"direction": {
"value": ""
}
- }
+ },
+ "zIndex": 0
}
]
},
diff --git a/testdata/d2oracle/TestMove/underscore_edge_container_5.exp.json b/testdata/d2oracle/TestMove/underscore_edge_container_5.exp.json
index 5dd71fb13..5cb63bcbc 100644
--- a/testdata/d2oracle/TestMove/underscore_edge_container_5.exp.json
+++ b/testdata/d2oracle/TestMove/underscore_edge_container_5.exp.json
@@ -132,7 +132,8 @@
"direction": {
"value": ""
}
- }
+ },
+ "zIndex": 0
},
"edges": [
{
@@ -163,7 +164,8 @@
"direction": {
"value": ""
}
- }
+ },
+ "zIndex": 0
}
],
"objects": [
@@ -208,7 +210,8 @@
"direction": {
"value": ""
}
- }
+ },
+ "zIndex": 0
},
{
"id": "c",
@@ -304,7 +307,8 @@
"direction": {
"value": ""
}
- }
+ },
+ "zIndex": 0
},
{
"id": "b",
@@ -369,7 +373,8 @@
"direction": {
"value": ""
}
- }
+ },
+ "zIndex": 0
}
]
},
diff --git a/testdata/d2oracle/TestMove/underscore_edge_split.exp.json b/testdata/d2oracle/TestMove/underscore_edge_split.exp.json
index 21d713554..2c5e07291 100644
--- a/testdata/d2oracle/TestMove/underscore_edge_split.exp.json
+++ b/testdata/d2oracle/TestMove/underscore_edge_split.exp.json
@@ -162,7 +162,8 @@
"direction": {
"value": ""
}
- }
+ },
+ "zIndex": 0
},
"edges": [
{
@@ -193,7 +194,8 @@
"direction": {
"value": ""
}
- }
+ },
+ "zIndex": 0
}
],
"objects": [
@@ -238,7 +240,8 @@
"direction": {
"value": ""
}
- }
+ },
+ "zIndex": 0
},
{
"id": "b",
@@ -281,7 +284,8 @@
"direction": {
"value": ""
}
- }
+ },
+ "zIndex": 0
},
{
"id": "c",
@@ -324,7 +328,8 @@
"direction": {
"value": ""
}
- }
+ },
+ "zIndex": 0
},
{
"id": "f",
@@ -378,7 +383,8 @@
"direction": {
"value": ""
}
- }
+ },
+ "zIndex": 0
},
{
"id": "yo",
@@ -421,7 +427,8 @@
"direction": {
"value": ""
}
- }
+ },
+ "zIndex": 0
}
]
},
diff --git a/testdata/d2oracle/TestMove/underscore_merge.exp.json b/testdata/d2oracle/TestMove/underscore_merge.exp.json
index c33d485f2..d08d9c2fa 100644
--- a/testdata/d2oracle/TestMove/underscore_merge.exp.json
+++ b/testdata/d2oracle/TestMove/underscore_merge.exp.json
@@ -142,7 +142,8 @@
"direction": {
"value": ""
}
- }
+ },
+ "zIndex": 0
},
"edges": null,
"objects": [
@@ -187,7 +188,8 @@
"direction": {
"value": ""
}
- }
+ },
+ "zIndex": 0
},
{
"id": "c",
@@ -230,7 +232,8 @@
"direction": {
"value": ""
}
- }
+ },
+ "zIndex": 0
},
{
"id": "b",
@@ -293,7 +296,8 @@
"direction": {
"value": ""
}
- }
+ },
+ "zIndex": 0
}
]
},
diff --git a/testdata/d2oracle/TestMove/underscore_split.exp.json b/testdata/d2oracle/TestMove/underscore_split.exp.json
index 743a706df..50f8552f7 100644
--- a/testdata/d2oracle/TestMove/underscore_split.exp.json
+++ b/testdata/d2oracle/TestMove/underscore_split.exp.json
@@ -139,7 +139,8 @@
"direction": {
"value": ""
}
- }
+ },
+ "zIndex": 0
},
"edges": null,
"objects": [
@@ -184,7 +185,8 @@
"direction": {
"value": ""
}
- }
+ },
+ "zIndex": 0
},
{
"id": "b",
@@ -227,7 +229,8 @@
"direction": {
"value": ""
}
- }
+ },
+ "zIndex": 0
},
{
"id": "f",
@@ -281,7 +284,8 @@
"direction": {
"value": ""
}
- }
+ },
+ "zIndex": 0
},
{
"id": "c",
@@ -324,7 +328,8 @@
"direction": {
"value": ""
}
- }
+ },
+ "zIndex": 0
}
]
},
diff --git a/testdata/d2oracle/TestMove/underscore_split_out.exp.json b/testdata/d2oracle/TestMove/underscore_split_out.exp.json
index 7545eb2fc..25c09fe7b 100644
--- a/testdata/d2oracle/TestMove/underscore_split_out.exp.json
+++ b/testdata/d2oracle/TestMove/underscore_split_out.exp.json
@@ -197,7 +197,8 @@
"direction": {
"value": ""
}
- }
+ },
+ "zIndex": 0
},
"edges": null,
"objects": [
@@ -242,7 +243,8 @@
"direction": {
"value": ""
}
- }
+ },
+ "zIndex": 0
},
{
"id": "b",
@@ -285,7 +287,8 @@
"direction": {
"value": ""
}
- }
+ },
+ "zIndex": 0
},
{
"id": "c",
@@ -359,7 +362,8 @@
"direction": {
"value": ""
}
- }
+ },
+ "zIndex": 0
},
{
"id": "e",
@@ -402,7 +406,8 @@
"direction": {
"value": ""
}
- }
+ },
+ "zIndex": 0
},
{
"id": "f",
@@ -445,7 +450,8 @@
"direction": {
"value": ""
}
- }
+ },
+ "zIndex": 0
}
]
},
diff --git a/testdata/d2oracle/TestMove/underscore_transplant.exp.json b/testdata/d2oracle/TestMove/underscore_transplant.exp.json
index 5528c035d..b3fd8b0ea 100644
--- a/testdata/d2oracle/TestMove/underscore_transplant.exp.json
+++ b/testdata/d2oracle/TestMove/underscore_transplant.exp.json
@@ -99,7 +99,8 @@
"direction": {
"value": ""
}
- }
+ },
+ "zIndex": 0
},
"edges": null,
"objects": [
@@ -144,7 +145,8 @@
"direction": {
"value": ""
}
- }
+ },
+ "zIndex": 0
},
{
"id": "b",
@@ -187,7 +189,8 @@
"direction": {
"value": ""
}
- }
+ },
+ "zIndex": 0
},
{
"id": "c",
@@ -230,7 +233,8 @@
"direction": {
"value": ""
}
- }
+ },
+ "zIndex": 0
}
]
},
diff --git a/testdata/d2oracle/TestMove/unique_name.exp.json b/testdata/d2oracle/TestMove/unique_name.exp.json
index 25ba5b6ab..3e3b1c459 100644
--- a/testdata/d2oracle/TestMove/unique_name.exp.json
+++ b/testdata/d2oracle/TestMove/unique_name.exp.json
@@ -156,7 +156,8 @@
"direction": {
"value": ""
}
- }
+ },
+ "zIndex": 0
},
"edges": null,
"objects": [
@@ -232,7 +233,8 @@
"direction": {
"value": ""
}
- }
+ },
+ "zIndex": 0
},
{
"id": "b",
@@ -306,7 +308,8 @@
"direction": {
"value": ""
}
- }
+ },
+ "zIndex": 0
},
{
"id": "b 2",
@@ -349,7 +352,8 @@
"direction": {
"value": ""
}
- }
+ },
+ "zIndex": 0
},
{
"id": "c",
@@ -392,7 +396,8 @@
"direction": {
"value": ""
}
- }
+ },
+ "zIndex": 0
}
]
},
diff --git a/testdata/d2oracle/TestMove/unique_name_with_references.exp.json b/testdata/d2oracle/TestMove/unique_name_with_references.exp.json
index f0cc05cc2..9389b8662 100644
--- a/testdata/d2oracle/TestMove/unique_name_with_references.exp.json
+++ b/testdata/d2oracle/TestMove/unique_name_with_references.exp.json
@@ -179,7 +179,8 @@
"direction": {
"value": ""
}
- }
+ },
+ "zIndex": 0
},
"edges": [
{
@@ -210,7 +211,8 @@
"direction": {
"value": ""
}
- }
+ },
+ "zIndex": 0
}
],
"objects": [
@@ -286,7 +288,8 @@
"direction": {
"value": ""
}
- }
+ },
+ "zIndex": 0
},
{
"id": "b",
@@ -329,7 +332,8 @@
"direction": {
"value": ""
}
- }
+ },
+ "zIndex": 0
},
{
"id": "b 2",
@@ -403,7 +407,8 @@
"direction": {
"value": ""
}
- }
+ },
+ "zIndex": 0
},
{
"id": "c",
@@ -446,7 +451,8 @@
"direction": {
"value": ""
}
- }
+ },
+ "zIndex": 0
},
{
"id": "d",
@@ -489,7 +495,8 @@
"direction": {
"value": ""
}
- }
+ },
+ "zIndex": 0
}
]
},
diff --git a/testdata/d2oracle/TestRename/arrows.exp.json b/testdata/d2oracle/TestRename/arrows.exp.json
index fadc22c55..e277317fb 100644
--- a/testdata/d2oracle/TestRename/arrows.exp.json
+++ b/testdata/d2oracle/TestRename/arrows.exp.json
@@ -70,7 +70,8 @@
"direction": {
"value": ""
}
- }
+ },
+ "zIndex": 0
},
"edges": [
{
@@ -101,7 +102,8 @@
"direction": {
"value": ""
}
- }
+ },
+ "zIndex": 0
}
],
"objects": [
@@ -146,7 +148,8 @@
"direction": {
"value": ""
}
- }
+ },
+ "zIndex": 0
},
{
"id": "y",
@@ -189,7 +192,8 @@
"direction": {
"value": ""
}
- }
+ },
+ "zIndex": 0
}
]
},
diff --git a/testdata/d2oracle/TestRename/arrows_chain.exp.json b/testdata/d2oracle/TestRename/arrows_chain.exp.json
index a8c899380..310e8d84a 100644
--- a/testdata/d2oracle/TestRename/arrows_chain.exp.json
+++ b/testdata/d2oracle/TestRename/arrows_chain.exp.json
@@ -144,7 +144,8 @@
"direction": {
"value": ""
}
- }
+ },
+ "zIndex": 0
},
"edges": [
{
@@ -175,7 +176,8 @@
"direction": {
"value": ""
}
- }
+ },
+ "zIndex": 0
},
{
"index": 0,
@@ -205,7 +207,8 @@
"direction": {
"value": ""
}
- }
+ },
+ "zIndex": 0
},
{
"index": 0,
@@ -235,7 +238,8 @@
"direction": {
"value": ""
}
- }
+ },
+ "zIndex": 0
}
],
"objects": [
@@ -280,7 +284,8 @@
"direction": {
"value": ""
}
- }
+ },
+ "zIndex": 0
},
{
"id": "y",
@@ -343,7 +348,8 @@
"direction": {
"value": ""
}
- }
+ },
+ "zIndex": 0
},
{
"id": "z",
@@ -406,7 +412,8 @@
"direction": {
"value": ""
}
- }
+ },
+ "zIndex": 0
},
{
"id": "q",
@@ -449,7 +456,8 @@
"direction": {
"value": ""
}
- }
+ },
+ "zIndex": 0
}
]
},
diff --git a/testdata/d2oracle/TestRename/arrows_complex.exp.json b/testdata/d2oracle/TestRename/arrows_complex.exp.json
index a395eed50..6df01f671 100644
--- a/testdata/d2oracle/TestRename/arrows_complex.exp.json
+++ b/testdata/d2oracle/TestRename/arrows_complex.exp.json
@@ -124,7 +124,8 @@
"direction": {
"value": ""
}
- }
+ },
+ "zIndex": 0
},
"edges": [
{
@@ -155,7 +156,8 @@
"direction": {
"value": ""
}
- }
+ },
+ "zIndex": 0
}
],
"objects": [
@@ -211,7 +213,8 @@
"direction": {
"value": ""
}
- }
+ },
+ "zIndex": 0
},
{
"id": "b",
@@ -265,7 +268,8 @@
"direction": {
"value": ""
}
- }
+ },
+ "zIndex": 0
},
{
"id": "x",
@@ -308,7 +312,8 @@
"direction": {
"value": ""
}
- }
+ },
+ "zIndex": 0
},
{
"id": "y",
@@ -351,7 +356,8 @@
"direction": {
"value": ""
}
- }
+ },
+ "zIndex": 0
}
]
},
diff --git a/testdata/d2oracle/TestRename/arrows_trim_common.exp.json b/testdata/d2oracle/TestRename/arrows_trim_common.exp.json
index d5ab00830..a7042fe18 100644
--- a/testdata/d2oracle/TestRename/arrows_trim_common.exp.json
+++ b/testdata/d2oracle/TestRename/arrows_trim_common.exp.json
@@ -160,7 +160,8 @@
"direction": {
"value": ""
}
- }
+ },
+ "zIndex": 0
},
"edges": [
{
@@ -191,7 +192,8 @@
"direction": {
"value": ""
}
- }
+ },
+ "zIndex": 0
},
{
"index": 0,
@@ -221,7 +223,8 @@
"direction": {
"value": ""
}
- }
+ },
+ "zIndex": 0
},
{
"index": 0,
@@ -251,7 +254,8 @@
"direction": {
"value": ""
}
- }
+ },
+ "zIndex": 0
}
],
"objects": [
@@ -296,7 +300,8 @@
"direction": {
"value": ""
}
- }
+ },
+ "zIndex": 0
},
{
"id": "x",
@@ -339,7 +344,8 @@
"direction": {
"value": ""
}
- }
+ },
+ "zIndex": 0
},
{
"id": "y",
@@ -402,7 +408,8 @@
"direction": {
"value": ""
}
- }
+ },
+ "zIndex": 0
},
{
"id": "z",
@@ -465,7 +472,8 @@
"direction": {
"value": ""
}
- }
+ },
+ "zIndex": 0
},
{
"id": "q",
@@ -508,7 +516,8 @@
"direction": {
"value": ""
}
- }
+ },
+ "zIndex": 0
}
]
},
diff --git a/testdata/d2oracle/TestRename/arrows_trim_common_2.exp.json b/testdata/d2oracle/TestRename/arrows_trim_common_2.exp.json
index e25cf3fd4..1e031352a 100644
--- a/testdata/d2oracle/TestRename/arrows_trim_common_2.exp.json
+++ b/testdata/d2oracle/TestRename/arrows_trim_common_2.exp.json
@@ -210,7 +210,8 @@
"direction": {
"value": ""
}
- }
+ },
+ "zIndex": 0
},
"edges": [
{
@@ -241,7 +242,8 @@
"direction": {
"value": ""
}
- }
+ },
+ "zIndex": 0
},
{
"index": 0,
@@ -271,7 +273,8 @@
"direction": {
"value": ""
}
- }
+ },
+ "zIndex": 0
},
{
"index": 0,
@@ -301,7 +304,8 @@
"direction": {
"value": ""
}
- }
+ },
+ "zIndex": 0
}
],
"objects": [
@@ -512,7 +516,8 @@
"direction": {
"value": ""
}
- }
+ },
+ "zIndex": 0
},
{
"id": "x",
@@ -566,7 +571,8 @@
"direction": {
"value": ""
}
- }
+ },
+ "zIndex": 0
},
{
"id": "y",
@@ -651,7 +657,8 @@
"direction": {
"value": ""
}
- }
+ },
+ "zIndex": 0
},
{
"id": "z",
@@ -736,7 +743,8 @@
"direction": {
"value": ""
}
- }
+ },
+ "zIndex": 0
},
{
"id": "\"q)\"",
@@ -790,7 +798,8 @@
"direction": {
"value": ""
}
- }
+ },
+ "zIndex": 0
}
]
},
diff --git a/testdata/d2oracle/TestRename/complex_edge_1.exp.json b/testdata/d2oracle/TestRename/complex_edge_1.exp.json
index ceedb2f94..3d8d47374 100644
--- a/testdata/d2oracle/TestRename/complex_edge_1.exp.json
+++ b/testdata/d2oracle/TestRename/complex_edge_1.exp.json
@@ -124,7 +124,8 @@
"direction": {
"value": ""
}
- }
+ },
+ "zIndex": 0
},
"edges": [
{
@@ -155,7 +156,8 @@
"direction": {
"value": ""
}
- }
+ },
+ "zIndex": 0
}
],
"objects": [
@@ -211,7 +213,8 @@
"direction": {
"value": ""
}
- }
+ },
+ "zIndex": 0
},
{
"id": "ooo",
@@ -265,7 +268,8 @@
"direction": {
"value": ""
}
- }
+ },
+ "zIndex": 0
},
{
"id": "x",
@@ -308,7 +312,8 @@
"direction": {
"value": ""
}
- }
+ },
+ "zIndex": 0
},
{
"id": "y",
@@ -351,7 +356,8 @@
"direction": {
"value": ""
}
- }
+ },
+ "zIndex": 0
}
]
},
diff --git a/testdata/d2oracle/TestRename/complex_edge_2.exp.json b/testdata/d2oracle/TestRename/complex_edge_2.exp.json
index 663d56cc2..729b345df 100644
--- a/testdata/d2oracle/TestRename/complex_edge_2.exp.json
+++ b/testdata/d2oracle/TestRename/complex_edge_2.exp.json
@@ -124,7 +124,8 @@
"direction": {
"value": ""
}
- }
+ },
+ "zIndex": 0
},
"edges": [
{
@@ -155,7 +156,8 @@
"direction": {
"value": ""
}
- }
+ },
+ "zIndex": 0
}
],
"objects": [
@@ -211,7 +213,8 @@
"direction": {
"value": ""
}
- }
+ },
+ "zIndex": 0
},
{
"id": "b",
@@ -265,7 +268,8 @@
"direction": {
"value": ""
}
- }
+ },
+ "zIndex": 0
},
{
"id": "papa",
@@ -308,7 +312,8 @@
"direction": {
"value": ""
}
- }
+ },
+ "zIndex": 0
},
{
"id": "y",
@@ -351,7 +356,8 @@
"direction": {
"value": ""
}
- }
+ },
+ "zIndex": 0
}
]
},
diff --git a/testdata/d2oracle/TestRename/conflict.exp.json b/testdata/d2oracle/TestRename/conflict.exp.json
index c8dc12220..5809dded2 100644
--- a/testdata/d2oracle/TestRename/conflict.exp.json
+++ b/testdata/d2oracle/TestRename/conflict.exp.json
@@ -70,7 +70,8 @@
"direction": {
"value": ""
}
- }
+ },
+ "zIndex": 0
},
"edges": null,
"objects": [
@@ -115,7 +116,8 @@
"direction": {
"value": ""
}
- }
+ },
+ "zIndex": 0
},
{
"id": "la",
@@ -158,7 +160,8 @@
"direction": {
"value": ""
}
- }
+ },
+ "zIndex": 0
}
]
},
diff --git a/testdata/d2oracle/TestRename/conflict_2.exp.json b/testdata/d2oracle/TestRename/conflict_2.exp.json
index 55f6a2df6..33b8028a6 100644
--- a/testdata/d2oracle/TestRename/conflict_2.exp.json
+++ b/testdata/d2oracle/TestRename/conflict_2.exp.json
@@ -121,7 +121,8 @@
"direction": {
"value": ""
}
- }
+ },
+ "zIndex": 0
},
"edges": null,
"objects": [
@@ -188,7 +189,8 @@
"direction": {
"value": ""
}
- }
+ },
+ "zIndex": 0
},
{
"id": "2",
@@ -253,7 +255,8 @@
"direction": {
"value": ""
}
- }
+ },
+ "zIndex": 0
},
{
"id": "3",
@@ -318,7 +321,8 @@
"direction": {
"value": ""
}
- }
+ },
+ "zIndex": 0
},
{
"id": "5 2",
@@ -361,7 +365,8 @@
"direction": {
"value": ""
}
- }
+ },
+ "zIndex": 0
},
{
"id": "5",
@@ -404,7 +409,8 @@
"direction": {
"value": ""
}
- }
+ },
+ "zIndex": 0
}
]
},
diff --git a/testdata/d2oracle/TestRename/conflict_with_dots.exp.json b/testdata/d2oracle/TestRename/conflict_with_dots.exp.json
index bbae9e6d0..27ad26210 100644
--- a/testdata/d2oracle/TestRename/conflict_with_dots.exp.json
+++ b/testdata/d2oracle/TestRename/conflict_with_dots.exp.json
@@ -70,7 +70,8 @@
"direction": {
"value": ""
}
- }
+ },
+ "zIndex": 0
},
"edges": null,
"objects": [
@@ -115,7 +116,8 @@
"direction": {
"value": ""
}
- }
+ },
+ "zIndex": 0
},
{
"id": "\"a.b 2\"",
@@ -158,7 +160,8 @@
"direction": {
"value": ""
}
- }
+ },
+ "zIndex": 0
}
]
},
diff --git a/testdata/d2oracle/TestRename/container.exp.json b/testdata/d2oracle/TestRename/container.exp.json
index 9c5aaa8ca..e5cae43c4 100644
--- a/testdata/d2oracle/TestRename/container.exp.json
+++ b/testdata/d2oracle/TestRename/container.exp.json
@@ -749,7 +749,8 @@
"direction": {
"value": ""
}
- }
+ },
+ "zIndex": 0
},
"edges": [
{
@@ -783,7 +784,8 @@
"direction": {
"value": ""
}
- }
+ },
+ "zIndex": 0
},
{
"index": 0,
@@ -813,7 +815,8 @@
"direction": {
"value": ""
}
- }
+ },
+ "zIndex": 0
},
{
"index": 0,
@@ -843,7 +846,8 @@
"direction": {
"value": ""
}
- }
+ },
+ "zIndex": 0
},
{
"index": 0,
@@ -873,7 +877,8 @@
"direction": {
"value": ""
}
- }
+ },
+ "zIndex": 0
},
{
"index": 0,
@@ -903,7 +908,8 @@
"direction": {
"value": ""
}
- }
+ },
+ "zIndex": 0
},
{
"index": 0,
@@ -933,7 +939,8 @@
"direction": {
"value": ""
}
- }
+ },
+ "zIndex": 0
},
{
"index": 0,
@@ -963,7 +970,8 @@
"direction": {
"value": ""
}
- }
+ },
+ "zIndex": 0
}
],
"objects": [
@@ -1249,7 +1257,8 @@
"direction": {
"value": ""
}
- }
+ },
+ "zIndex": 0
},
{
"id": "\"\"",
@@ -1533,7 +1542,8 @@
"direction": {
"value": ""
}
- }
+ },
+ "zIndex": 0
},
{
"id": "z",
@@ -1806,7 +1816,8 @@
"direction": {
"value": ""
}
- }
+ },
+ "zIndex": 0
},
{
"id": "i",
@@ -1849,7 +1860,8 @@
"direction": {
"value": ""
}
- }
+ },
+ "zIndex": 0
},
{
"id": "p",
@@ -1965,7 +1977,8 @@
"direction": {
"value": ""
}
- }
+ },
+ "zIndex": 0
},
{
"id": "k",
@@ -2081,7 +2094,8 @@
"direction": {
"value": ""
}
- }
+ },
+ "zIndex": 0
},
{
"id": "l",
@@ -2166,7 +2180,8 @@
"direction": {
"value": ""
}
- }
+ },
+ "zIndex": 0
},
{
"id": "a",
@@ -2251,7 +2266,8 @@
"direction": {
"value": ""
}
- }
+ },
+ "zIndex": 0
},
{
"id": "q",
@@ -2294,7 +2310,8 @@
"direction": {
"value": ""
}
- }
+ },
+ "zIndex": 0
},
{
"id": "+",
@@ -2357,7 +2374,8 @@
"direction": {
"value": ""
}
- }
+ },
+ "zIndex": 0
},
{
"id": "more",
@@ -2400,7 +2418,8 @@
"direction": {
"value": ""
}
- }
+ },
+ "zIndex": 0
},
{
"id": "ok",
@@ -2465,7 +2484,8 @@
"direction": {
"value": ""
}
- }
+ },
+ "zIndex": 0
},
{
"id": "q",
@@ -2530,7 +2550,8 @@
"direction": {
"value": ""
}
- }
+ },
+ "zIndex": 0
},
{
"id": "z",
@@ -2595,7 +2616,8 @@
"direction": {
"value": ""
}
- }
+ },
+ "zIndex": 0
},
{
"id": "p",
@@ -2649,7 +2671,8 @@
"direction": {
"value": ""
}
- }
+ },
+ "zIndex": 0
},
{
"id": "k",
@@ -2703,7 +2726,8 @@
"direction": {
"value": ""
}
- }
+ },
+ "zIndex": 0
}
]
},
diff --git a/testdata/d2oracle/TestRename/edges.exp.json b/testdata/d2oracle/TestRename/edges.exp.json
index 466d177cb..87f4a3f4c 100644
--- a/testdata/d2oracle/TestRename/edges.exp.json
+++ b/testdata/d2oracle/TestRename/edges.exp.json
@@ -414,7 +414,8 @@
"direction": {
"value": ""
}
- }
+ },
+ "zIndex": 0
},
"edges": [
{
@@ -445,7 +446,8 @@
"direction": {
"value": ""
}
- }
+ },
+ "zIndex": 0
},
{
"index": 0,
@@ -475,7 +477,8 @@
"direction": {
"value": ""
}
- }
+ },
+ "zIndex": 0
},
{
"index": 0,
@@ -505,7 +508,8 @@
"direction": {
"value": ""
}
- }
+ },
+ "zIndex": 0
},
{
"index": 0,
@@ -535,7 +539,8 @@
"direction": {
"value": ""
}
- }
+ },
+ "zIndex": 0
},
{
"index": 0,
@@ -565,7 +570,8 @@
"direction": {
"value": ""
}
- }
+ },
+ "zIndex": 0
},
{
"index": 0,
@@ -595,7 +601,8 @@
"direction": {
"value": ""
}
- }
+ },
+ "zIndex": 0
}
],
"objects": [
@@ -764,7 +771,8 @@
"direction": {
"value": ""
}
- }
+ },
+ "zIndex": 0
},
{
"id": "%%%",
@@ -951,7 +959,8 @@
"direction": {
"value": ""
}
- }
+ },
+ "zIndex": 0
},
{
"id": "p",
@@ -1036,7 +1045,8 @@
"direction": {
"value": ""
}
- }
+ },
+ "zIndex": 0
},
{
"id": "k",
@@ -1121,7 +1131,8 @@
"direction": {
"value": ""
}
- }
+ },
+ "zIndex": 0
},
{
"id": "l",
@@ -1206,7 +1217,8 @@
"direction": {
"value": ""
}
- }
+ },
+ "zIndex": 0
},
{
"id": "a",
@@ -1291,7 +1303,8 @@
"direction": {
"value": ""
}
- }
+ },
+ "zIndex": 0
},
{
"id": "q",
@@ -1334,7 +1347,8 @@
"direction": {
"value": ""
}
- }
+ },
+ "zIndex": 0
},
{
"id": "+",
@@ -1397,7 +1411,8 @@
"direction": {
"value": ""
}
- }
+ },
+ "zIndex": 0
}
]
},
diff --git a/testdata/d2oracle/TestRename/flat.exp.json b/testdata/d2oracle/TestRename/flat.exp.json
index 7f8875b49..c6136fc22 100644
--- a/testdata/d2oracle/TestRename/flat.exp.json
+++ b/testdata/d2oracle/TestRename/flat.exp.json
@@ -47,7 +47,8 @@
"direction": {
"value": ""
}
- }
+ },
+ "zIndex": 0
},
"edges": null,
"objects": [
@@ -92,7 +93,8 @@
"direction": {
"value": ""
}
- }
+ },
+ "zIndex": 0
}
]
},
diff --git a/testdata/d2oracle/TestRename/generated.exp.json b/testdata/d2oracle/TestRename/generated.exp.json
index e01f2dc0d..24af03ca8 100644
--- a/testdata/d2oracle/TestRename/generated.exp.json
+++ b/testdata/d2oracle/TestRename/generated.exp.json
@@ -47,7 +47,8 @@
"direction": {
"value": ""
}
- }
+ },
+ "zIndex": 0
},
"edges": null,
"objects": [
@@ -92,7 +93,8 @@
"direction": {
"value": ""
}
- }
+ },
+ "zIndex": 0
}
]
},
diff --git a/testdata/d2oracle/TestRename/near.exp.json b/testdata/d2oracle/TestRename/near.exp.json
index 4f1095f42..77f6a3aa7 100644
--- a/testdata/d2oracle/TestRename/near.exp.json
+++ b/testdata/d2oracle/TestRename/near.exp.json
@@ -109,7 +109,8 @@
"direction": {
"value": ""
}
- }
+ },
+ "zIndex": 0
},
"edges": null,
"objects": [
@@ -169,7 +170,8 @@
"direction": {
"value": ""
}
- }
+ },
+ "zIndex": 0
},
{
"id": "z",
@@ -212,7 +214,8 @@
"direction": {
"value": ""
}
- }
+ },
+ "zIndex": 0
}
]
},
diff --git a/testdata/d2oracle/TestRename/nested.exp.json b/testdata/d2oracle/TestRename/nested.exp.json
index 37125d75a..42104b6b9 100644
--- a/testdata/d2oracle/TestRename/nested.exp.json
+++ b/testdata/d2oracle/TestRename/nested.exp.json
@@ -176,7 +176,8 @@
"direction": {
"value": ""
}
- }
+ },
+ "zIndex": 0
},
"edges": null,
"objects": [
@@ -318,7 +319,8 @@
"direction": {
"value": ""
}
- }
+ },
+ "zIndex": 0
},
{
"id": "y",
@@ -458,7 +460,8 @@
"direction": {
"value": ""
}
- }
+ },
+ "zIndex": 0
},
{
"id": "z",
@@ -598,7 +601,8 @@
"direction": {
"value": ""
}
- }
+ },
+ "zIndex": 0
},
{
"id": "q",
@@ -738,7 +742,8 @@
"direction": {
"value": ""
}
- }
+ },
+ "zIndex": 0
},
{
"id": "nerve-gift-jingler",
@@ -845,7 +850,8 @@
"direction": {
"value": ""
}
- }
+ },
+ "zIndex": 0
}
]
},
diff --git a/testdata/d2oracle/TestSet/base.exp.json b/testdata/d2oracle/TestSet/base.exp.json
index 23a9eb9f4..475561aff 100644
--- a/testdata/d2oracle/TestSet/base.exp.json
+++ b/testdata/d2oracle/TestSet/base.exp.json
@@ -47,7 +47,8 @@
"direction": {
"value": ""
}
- }
+ },
+ "zIndex": 0
},
"edges": null,
"objects": [
@@ -92,7 +93,8 @@
"direction": {
"value": ""
}
- }
+ },
+ "zIndex": 0
}
]
},
diff --git a/testdata/d2oracle/TestSet/block_string_multiline.exp.json b/testdata/d2oracle/TestSet/block_string_multiline.exp.json
index dd4bcff09..3838792f8 100644
--- a/testdata/d2oracle/TestSet/block_string_multiline.exp.json
+++ b/testdata/d2oracle/TestSet/block_string_multiline.exp.json
@@ -54,7 +54,8 @@
"direction": {
"value": ""
}
- }
+ },
+ "zIndex": 0
},
"edges": null,
"objects": [
@@ -100,7 +101,8 @@
"direction": {
"value": ""
}
- }
+ },
+ "zIndex": 0
}
]
},
diff --git a/testdata/d2oracle/TestSet/block_string_oneline.exp.json b/testdata/d2oracle/TestSet/block_string_oneline.exp.json
index 3601a7f2c..728786f48 100644
--- a/testdata/d2oracle/TestSet/block_string_oneline.exp.json
+++ b/testdata/d2oracle/TestSet/block_string_oneline.exp.json
@@ -54,7 +54,8 @@
"direction": {
"value": ""
}
- }
+ },
+ "zIndex": 0
},
"edges": null,
"objects": [
@@ -100,7 +101,8 @@
"direction": {
"value": ""
}
- }
+ },
+ "zIndex": 0
}
]
},
diff --git a/testdata/d2oracle/TestSet/edge.exp.json b/testdata/d2oracle/TestSet/edge.exp.json
index bcbd533e2..4816a21d6 100644
--- a/testdata/d2oracle/TestSet/edge.exp.json
+++ b/testdata/d2oracle/TestSet/edge.exp.json
@@ -80,7 +80,8 @@
"direction": {
"value": ""
}
- }
+ },
+ "zIndex": 0
},
"edges": [
{
@@ -111,7 +112,8 @@
"direction": {
"value": ""
}
- }
+ },
+ "zIndex": 0
}
],
"objects": [
@@ -156,7 +158,8 @@
"direction": {
"value": ""
}
- }
+ },
+ "zIndex": 0
},
{
"id": "y",
@@ -199,7 +202,8 @@
"direction": {
"value": ""
}
- }
+ },
+ "zIndex": 0
}
]
},
diff --git a/testdata/d2oracle/TestSet/edge_append_style.exp.json b/testdata/d2oracle/TestSet/edge_append_style.exp.json
index bf9784284..172b7c5bb 100644
--- a/testdata/d2oracle/TestSet/edge_append_style.exp.json
+++ b/testdata/d2oracle/TestSet/edge_append_style.exp.json
@@ -115,7 +115,8 @@
"direction": {
"value": ""
}
- }
+ },
+ "zIndex": 0
},
"edges": [
{
@@ -150,7 +151,8 @@
"direction": {
"value": ""
}
- }
+ },
+ "zIndex": 0
}
],
"objects": [
@@ -195,7 +197,8 @@
"direction": {
"value": ""
}
- }
+ },
+ "zIndex": 0
},
{
"id": "y",
@@ -238,7 +241,8 @@
"direction": {
"value": ""
}
- }
+ },
+ "zIndex": 0
}
]
},
diff --git a/testdata/d2oracle/TestSet/edge_chain.exp.json b/testdata/d2oracle/TestSet/edge_chain.exp.json
index 44a7c7de3..39e757bce 100644
--- a/testdata/d2oracle/TestSet/edge_chain.exp.json
+++ b/testdata/d2oracle/TestSet/edge_chain.exp.json
@@ -207,7 +207,8 @@
"direction": {
"value": ""
}
- }
+ },
+ "zIndex": 0
},
"edges": [
{
@@ -241,7 +242,8 @@
"direction": {
"value": ""
}
- }
+ },
+ "zIndex": 0
},
{
"index": 0,
@@ -271,7 +273,8 @@
"direction": {
"value": ""
}
- }
+ },
+ "zIndex": 0
}
],
"objects": [
@@ -316,7 +319,8 @@
"direction": {
"value": ""
}
- }
+ },
+ "zIndex": 0
},
{
"id": "q",
@@ -379,7 +383,8 @@
"direction": {
"value": ""
}
- }
+ },
+ "zIndex": 0
},
{
"id": "z",
@@ -462,7 +467,8 @@
"direction": {
"value": ""
}
- }
+ },
+ "zIndex": 0
},
{
"id": "p",
@@ -505,7 +511,8 @@
"direction": {
"value": ""
}
- }
+ },
+ "zIndex": 0
}
]
},
diff --git a/testdata/d2oracle/TestSet/edge_chain_append_style.exp.json b/testdata/d2oracle/TestSet/edge_chain_append_style.exp.json
index 65b3feb0a..e555cedee 100644
--- a/testdata/d2oracle/TestSet/edge_chain_append_style.exp.json
+++ b/testdata/d2oracle/TestSet/edge_chain_append_style.exp.json
@@ -190,7 +190,8 @@
"direction": {
"value": ""
}
- }
+ },
+ "zIndex": 0
},
"edges": [
{
@@ -228,7 +229,8 @@
"direction": {
"value": ""
}
- }
+ },
+ "zIndex": 0
},
{
"index": 0,
@@ -258,7 +260,8 @@
"direction": {
"value": ""
}
- }
+ },
+ "zIndex": 0
}
],
"objects": [
@@ -323,7 +326,8 @@
"direction": {
"value": ""
}
- }
+ },
+ "zIndex": 0
},
{
"id": "y",
@@ -406,7 +410,8 @@
"direction": {
"value": ""
}
- }
+ },
+ "zIndex": 0
},
{
"id": "z",
@@ -449,7 +454,8 @@
"direction": {
"value": ""
}
- }
+ },
+ "zIndex": 0
}
]
},
diff --git a/testdata/d2oracle/TestSet/edge_chain_existing_style.exp.json b/testdata/d2oracle/TestSet/edge_chain_existing_style.exp.json
index a80e0b0d9..f38bb7b97 100644
--- a/testdata/d2oracle/TestSet/edge_chain_existing_style.exp.json
+++ b/testdata/d2oracle/TestSet/edge_chain_existing_style.exp.json
@@ -274,7 +274,8 @@
"direction": {
"value": ""
}
- }
+ },
+ "zIndex": 0
},
"edges": [
{
@@ -305,7 +306,8 @@
"direction": {
"value": ""
}
- }
+ },
+ "zIndex": 0
},
{
"index": 0,
@@ -348,7 +350,8 @@
"direction": {
"value": ""
}
- }
+ },
+ "zIndex": 0
}
],
"objects": [
@@ -393,7 +396,8 @@
"direction": {
"value": ""
}
- }
+ },
+ "zIndex": 0
},
{
"id": "y",
@@ -496,7 +500,8 @@
"direction": {
"value": ""
}
- }
+ },
+ "zIndex": 0
},
{
"id": "z",
@@ -579,7 +584,8 @@
"direction": {
"value": ""
}
- }
+ },
+ "zIndex": 0
}
]
},
diff --git a/testdata/d2oracle/TestSet/edge_chain_nested_set.exp.json b/testdata/d2oracle/TestSet/edge_chain_nested_set.exp.json
index aaeec05db..ca2f37f46 100644
--- a/testdata/d2oracle/TestSet/edge_chain_nested_set.exp.json
+++ b/testdata/d2oracle/TestSet/edge_chain_nested_set.exp.json
@@ -230,7 +230,8 @@
"direction": {
"value": ""
}
- }
+ },
+ "zIndex": 0
},
"edges": [
{
@@ -268,7 +269,8 @@
"direction": {
"value": ""
}
- }
+ },
+ "zIndex": 0
},
{
"index": 0,
@@ -298,7 +300,8 @@
"direction": {
"value": ""
}
- }
+ },
+ "zIndex": 0
}
],
"objects": [
@@ -343,7 +346,8 @@
"direction": {
"value": ""
}
- }
+ },
+ "zIndex": 0
},
{
"id": "q",
@@ -406,7 +410,8 @@
"direction": {
"value": ""
}
- }
+ },
+ "zIndex": 0
},
{
"id": "z",
@@ -489,7 +494,8 @@
"direction": {
"value": ""
}
- }
+ },
+ "zIndex": 0
},
{
"id": "p",
@@ -532,7 +538,8 @@
"direction": {
"value": ""
}
- }
+ },
+ "zIndex": 0
}
]
},
diff --git a/testdata/d2oracle/TestSet/edge_index_case.exp.json b/testdata/d2oracle/TestSet/edge_index_case.exp.json
index f3250cd29..4fb3fd9cb 100644
--- a/testdata/d2oracle/TestSet/edge_index_case.exp.json
+++ b/testdata/d2oracle/TestSet/edge_index_case.exp.json
@@ -184,7 +184,8 @@
"direction": {
"value": ""
}
- }
+ },
+ "zIndex": 0
},
"edges": [
{
@@ -215,7 +216,8 @@
"direction": {
"value": ""
}
- }
+ },
+ "zIndex": 0
},
{
"index": 0,
@@ -245,7 +247,8 @@
"direction": {
"value": ""
}
- }
+ },
+ "zIndex": 0
}
],
"objects": [
@@ -290,7 +293,8 @@
"direction": {
"value": ""
}
- }
+ },
+ "zIndex": 0
},
{
"id": "z",
@@ -333,7 +337,8 @@
"direction": {
"value": ""
}
- }
+ },
+ "zIndex": 0
},
{
"id": "Square",
@@ -376,7 +381,8 @@
"direction": {
"value": ""
}
- }
+ },
+ "zIndex": 0
},
{
"id": "Square 2",
@@ -419,7 +425,8 @@
"direction": {
"value": ""
}
- }
+ },
+ "zIndex": 0
},
{
"id": "x",
@@ -462,7 +469,8 @@
"direction": {
"value": ""
}
- }
+ },
+ "zIndex": 0
},
{
"id": "y",
@@ -505,7 +513,8 @@
"direction": {
"value": ""
}
- }
+ },
+ "zIndex": 0
}
]
},
diff --git a/testdata/d2oracle/TestSet/edge_index_nested.exp.json b/testdata/d2oracle/TestSet/edge_index_nested.exp.json
index b220c23c0..f049c45c5 100644
--- a/testdata/d2oracle/TestSet/edge_index_nested.exp.json
+++ b/testdata/d2oracle/TestSet/edge_index_nested.exp.json
@@ -109,7 +109,8 @@
"direction": {
"value": ""
}
- }
+ },
+ "zIndex": 0
},
"edges": [
{
@@ -140,7 +141,8 @@
"direction": {
"value": ""
}
- }
+ },
+ "zIndex": 0
}
],
"objects": [
@@ -185,7 +187,8 @@
"direction": {
"value": ""
}
- }
+ },
+ "zIndex": 0
},
{
"id": "q",
@@ -228,7 +231,8 @@
"direction": {
"value": ""
}
- }
+ },
+ "zIndex": 0
},
{
"id": "z",
@@ -271,7 +275,8 @@
"direction": {
"value": ""
}
- }
+ },
+ "zIndex": 0
}
]
},
diff --git a/testdata/d2oracle/TestSet/edge_key_and_key.exp.json b/testdata/d2oracle/TestSet/edge_key_and_key.exp.json
index 0fff2fd1f..e4d626aeb 100644
--- a/testdata/d2oracle/TestSet/edge_key_and_key.exp.json
+++ b/testdata/d2oracle/TestSet/edge_key_and_key.exp.json
@@ -160,7 +160,8 @@
"direction": {
"value": ""
}
- }
+ },
+ "zIndex": 0
},
"edges": [
{
@@ -195,7 +196,8 @@
"direction": {
"value": ""
}
- }
+ },
+ "zIndex": 0
}
],
"objects": [
@@ -302,7 +304,8 @@
"direction": {
"value": ""
}
- }
+ },
+ "zIndex": 0
},
{
"id": "b",
@@ -356,7 +359,8 @@
"direction": {
"value": ""
}
- }
+ },
+ "zIndex": 0
},
{
"id": "c",
@@ -410,7 +414,8 @@
"direction": {
"value": ""
}
- }
+ },
+ "zIndex": 0
}
]
},
diff --git a/testdata/d2oracle/TestSet/edge_label.exp.json b/testdata/d2oracle/TestSet/edge_label.exp.json
index 3b5f7c6d6..bd67df275 100644
--- a/testdata/d2oracle/TestSet/edge_label.exp.json
+++ b/testdata/d2oracle/TestSet/edge_label.exp.json
@@ -125,7 +125,8 @@
"direction": {
"value": ""
}
- }
+ },
+ "zIndex": 0
},
"edges": [
{
@@ -160,7 +161,8 @@
"direction": {
"value": ""
}
- }
+ },
+ "zIndex": 0
}
],
"objects": [
@@ -205,7 +207,8 @@
"direction": {
"value": ""
}
- }
+ },
+ "zIndex": 0
},
{
"id": "b",
@@ -248,7 +251,8 @@
"direction": {
"value": ""
}
- }
+ },
+ "zIndex": 0
}
]
},
diff --git a/testdata/d2oracle/TestSet/edge_merge_style.exp.json b/testdata/d2oracle/TestSet/edge_merge_style.exp.json
index 245894900..a9307f498 100644
--- a/testdata/d2oracle/TestSet/edge_merge_style.exp.json
+++ b/testdata/d2oracle/TestSet/edge_merge_style.exp.json
@@ -162,7 +162,8 @@
"direction": {
"value": ""
}
- }
+ },
+ "zIndex": 0
},
"edges": [
{
@@ -200,7 +201,8 @@
"direction": {
"value": ""
}
- }
+ },
+ "zIndex": 0
}
],
"objects": [
@@ -245,7 +247,8 @@
"direction": {
"value": ""
}
- }
+ },
+ "zIndex": 0
},
{
"id": "y",
@@ -288,7 +291,8 @@
"direction": {
"value": ""
}
- }
+ },
+ "zIndex": 0
}
]
},
diff --git a/testdata/d2oracle/TestSet/edge_nested_label_set.exp.json b/testdata/d2oracle/TestSet/edge_nested_label_set.exp.json
index 3ef412b1b..bbb5a1a58 100644
--- a/testdata/d2oracle/TestSet/edge_nested_label_set.exp.json
+++ b/testdata/d2oracle/TestSet/edge_nested_label_set.exp.json
@@ -109,7 +109,8 @@
"direction": {
"value": ""
}
- }
+ },
+ "zIndex": 0
},
"edges": [
{
@@ -140,7 +141,8 @@
"direction": {
"value": ""
}
- }
+ },
+ "zIndex": 0
}
],
"objects": [
@@ -185,7 +187,8 @@
"direction": {
"value": ""
}
- }
+ },
+ "zIndex": 0
},
{
"id": "q",
@@ -228,7 +231,8 @@
"direction": {
"value": ""
}
- }
+ },
+ "zIndex": 0
},
{
"id": "z",
@@ -271,7 +275,8 @@
"direction": {
"value": ""
}
- }
+ },
+ "zIndex": 0
}
]
},
diff --git a/testdata/d2oracle/TestSet/edge_nested_style_set.exp.json b/testdata/d2oracle/TestSet/edge_nested_style_set.exp.json
index 134cacd97..74cd74500 100644
--- a/testdata/d2oracle/TestSet/edge_nested_style_set.exp.json
+++ b/testdata/d2oracle/TestSet/edge_nested_style_set.exp.json
@@ -155,7 +155,8 @@
"direction": {
"value": ""
}
- }
+ },
+ "zIndex": 0
},
"edges": [
{
@@ -190,7 +191,8 @@
"direction": {
"value": ""
}
- }
+ },
+ "zIndex": 0
}
],
"objects": [
@@ -235,7 +237,8 @@
"direction": {
"value": ""
}
- }
+ },
+ "zIndex": 0
},
{
"id": "q",
@@ -278,7 +281,8 @@
"direction": {
"value": ""
}
- }
+ },
+ "zIndex": 0
},
{
"id": "z",
@@ -321,7 +325,8 @@
"direction": {
"value": ""
}
- }
+ },
+ "zIndex": 0
}
]
},
diff --git a/testdata/d2oracle/TestSet/expanded_map_style.exp.json b/testdata/d2oracle/TestSet/expanded_map_style.exp.json
index 3204495d1..e9973e0de 100644
--- a/testdata/d2oracle/TestSet/expanded_map_style.exp.json
+++ b/testdata/d2oracle/TestSet/expanded_map_style.exp.json
@@ -111,7 +111,8 @@
"direction": {
"value": ""
}
- }
+ },
+ "zIndex": 0
},
"edges": [],
"objects": [
@@ -160,7 +161,8 @@
"direction": {
"value": ""
}
- }
+ },
+ "zIndex": 0
}
]
},
diff --git a/testdata/d2oracle/TestSet/icon.exp.json b/testdata/d2oracle/TestSet/icon.exp.json
index e432724cd..e039759f1 100644
--- a/testdata/d2oracle/TestSet/icon.exp.json
+++ b/testdata/d2oracle/TestSet/icon.exp.json
@@ -86,7 +86,8 @@
"direction": {
"value": ""
}
- }
+ },
+ "zIndex": 0
},
"edges": null,
"objects": [
@@ -143,7 +144,8 @@
"direction": {
"value": ""
}
- }
+ },
+ "zIndex": 0
}
]
},
diff --git a/testdata/d2oracle/TestSet/inline_style.exp.json b/testdata/d2oracle/TestSet/inline_style.exp.json
index d5ffcea3d..c627397b0 100644
--- a/testdata/d2oracle/TestSet/inline_style.exp.json
+++ b/testdata/d2oracle/TestSet/inline_style.exp.json
@@ -137,7 +137,8 @@
"direction": {
"value": ""
}
- }
+ },
+ "zIndex": 0
},
"edges": [],
"objects": [
@@ -189,7 +190,8 @@
"direction": {
"value": ""
}
- }
+ },
+ "zIndex": 0
}
]
},
diff --git a/testdata/d2oracle/TestSet/label.exp.json b/testdata/d2oracle/TestSet/label.exp.json
index 55551022b..5b6b23ca6 100644
--- a/testdata/d2oracle/TestSet/label.exp.json
+++ b/testdata/d2oracle/TestSet/label.exp.json
@@ -57,7 +57,8 @@
"direction": {
"value": ""
}
- }
+ },
+ "zIndex": 0
},
"edges": null,
"objects": [
@@ -102,7 +103,8 @@
"direction": {
"value": ""
}
- }
+ },
+ "zIndex": 0
}
]
},
diff --git a/testdata/d2oracle/TestSet/label_primary.exp.json b/testdata/d2oracle/TestSet/label_primary.exp.json
index b14337fd8..bd40fc405 100644
--- a/testdata/d2oracle/TestSet/label_primary.exp.json
+++ b/testdata/d2oracle/TestSet/label_primary.exp.json
@@ -105,7 +105,8 @@
"direction": {
"value": ""
}
- }
+ },
+ "zIndex": 0
},
"edges": [
{
@@ -136,7 +137,8 @@
"direction": {
"value": ""
}
- }
+ },
+ "zIndex": 0
}
],
"objects": [
@@ -181,7 +183,8 @@
"direction": {
"value": ""
}
- }
+ },
+ "zIndex": 0
},
{
"id": "q",
@@ -224,7 +227,8 @@
"direction": {
"value": ""
}
- }
+ },
+ "zIndex": 0
},
{
"id": "z",
@@ -267,7 +271,8 @@
"direction": {
"value": ""
}
- }
+ },
+ "zIndex": 0
}
]
},
diff --git a/testdata/d2oracle/TestSet/label_replace.exp.json b/testdata/d2oracle/TestSet/label_replace.exp.json
index 469fc2b78..0dc6bfa73 100644
--- a/testdata/d2oracle/TestSet/label_replace.exp.json
+++ b/testdata/d2oracle/TestSet/label_replace.exp.json
@@ -57,7 +57,8 @@
"direction": {
"value": ""
}
- }
+ },
+ "zIndex": 0
},
"edges": null,
"objects": [
@@ -102,7 +103,8 @@
"direction": {
"value": ""
}
- }
+ },
+ "zIndex": 0
}
]
},
diff --git a/testdata/d2oracle/TestSet/label_unset.exp.json b/testdata/d2oracle/TestSet/label_unset.exp.json
index 9a2bb4bfb..587e5fb79 100644
--- a/testdata/d2oracle/TestSet/label_unset.exp.json
+++ b/testdata/d2oracle/TestSet/label_unset.exp.json
@@ -47,7 +47,8 @@
"direction": {
"value": ""
}
- }
+ },
+ "zIndex": 0
},
"edges": null,
"objects": [
@@ -92,7 +93,8 @@
"direction": {
"value": ""
}
- }
+ },
+ "zIndex": 0
}
]
},
diff --git a/testdata/d2oracle/TestSet/map_key_missing.exp.json b/testdata/d2oracle/TestSet/map_key_missing.exp.json
index 2b1b0bc02..87f3df0ba 100644
--- a/testdata/d2oracle/TestSet/map_key_missing.exp.json
+++ b/testdata/d2oracle/TestSet/map_key_missing.exp.json
@@ -103,7 +103,8 @@
"direction": {
"value": ""
}
- }
+ },
+ "zIndex": 0
},
"edges": [
{
@@ -134,7 +135,8 @@
"direction": {
"value": ""
}
- }
+ },
+ "zIndex": 0
}
],
"objects": [
@@ -199,7 +201,8 @@
"direction": {
"value": ""
}
- }
+ },
+ "zIndex": 0
},
{
"id": "b",
@@ -242,7 +245,8 @@
"direction": {
"value": ""
}
- }
+ },
+ "zIndex": 0
}
]
},
diff --git a/testdata/d2oracle/TestSet/nested_alex.exp.json b/testdata/d2oracle/TestSet/nested_alex.exp.json
index f9bd8b398..345b0dc0e 100644
--- a/testdata/d2oracle/TestSet/nested_alex.exp.json
+++ b/testdata/d2oracle/TestSet/nested_alex.exp.json
@@ -175,7 +175,8 @@
"direction": {
"value": ""
}
- }
+ },
+ "zIndex": 0
},
"edges": [
{
@@ -206,7 +207,8 @@
"direction": {
"value": ""
}
- }
+ },
+ "zIndex": 0
}
],
"objects": [
@@ -251,7 +253,8 @@
"direction": {
"value": ""
}
- }
+ },
+ "zIndex": 0
},
{
"id": "here",
@@ -314,7 +317,8 @@
"direction": {
"value": ""
}
- }
+ },
+ "zIndex": 0
},
{
"id": "test",
@@ -357,7 +361,8 @@
"direction": {
"value": ""
}
- }
+ },
+ "zIndex": 0
}
]
},
diff --git a/testdata/d2oracle/TestSet/new_style.exp.json b/testdata/d2oracle/TestSet/new_style.exp.json
index db5981740..ba281deaa 100644
--- a/testdata/d2oracle/TestSet/new_style.exp.json
+++ b/testdata/d2oracle/TestSet/new_style.exp.json
@@ -93,7 +93,8 @@
"direction": {
"value": ""
}
- }
+ },
+ "zIndex": 0
},
"edges": [],
"objects": [
@@ -142,7 +143,8 @@
"direction": {
"value": ""
}
- }
+ },
+ "zIndex": 0
}
]
},
diff --git a/testdata/d2oracle/TestSet/replace_shape.exp.json b/testdata/d2oracle/TestSet/replace_shape.exp.json
index 2480ec191..2cc0381bf 100644
--- a/testdata/d2oracle/TestSet/replace_shape.exp.json
+++ b/testdata/d2oracle/TestSet/replace_shape.exp.json
@@ -68,7 +68,8 @@
"direction": {
"value": ""
}
- }
+ },
+ "zIndex": 0
},
"edges": null,
"objects": [
@@ -124,7 +125,8 @@
"direction": {
"value": ""
}
- }
+ },
+ "zIndex": 0
}
]
},
diff --git a/testdata/d2oracle/TestSet/replace_style.exp.json b/testdata/d2oracle/TestSet/replace_style.exp.json
index 6b7003fbb..a976f3823 100644
--- a/testdata/d2oracle/TestSet/replace_style.exp.json
+++ b/testdata/d2oracle/TestSet/replace_style.exp.json
@@ -75,7 +75,8 @@
"direction": {
"value": ""
}
- }
+ },
+ "zIndex": 0
},
"edges": [],
"objects": [
@@ -146,7 +147,8 @@
"direction": {
"value": ""
}
- }
+ },
+ "zIndex": 0
}
]
},
diff --git a/testdata/d2oracle/TestSet/replace_style_edgecase.exp.json b/testdata/d2oracle/TestSet/replace_style_edgecase.exp.json
index 6971bee40..442e009e5 100644
--- a/testdata/d2oracle/TestSet/replace_style_edgecase.exp.json
+++ b/testdata/d2oracle/TestSet/replace_style_edgecase.exp.json
@@ -130,7 +130,8 @@
"direction": {
"value": ""
}
- }
+ },
+ "zIndex": 0
},
"edges": [],
"objects": [
@@ -246,7 +247,8 @@
"direction": {
"value": ""
}
- }
+ },
+ "zIndex": 0
}
]
},
diff --git a/testdata/d2oracle/TestSet/shape.exp.json b/testdata/d2oracle/TestSet/shape.exp.json
index 47cb8df98..40204b2b9 100644
--- a/testdata/d2oracle/TestSet/shape.exp.json
+++ b/testdata/d2oracle/TestSet/shape.exp.json
@@ -86,7 +86,8 @@
"direction": {
"value": ""
}
- }
+ },
+ "zIndex": 0
},
"edges": null,
"objects": [
@@ -131,7 +132,8 @@
"direction": {
"value": ""
}
- }
+ },
+ "zIndex": 0
}
]
},
diff --git a/testdata/d2oracle/TestSet/shape_nested_style_set.exp.json b/testdata/d2oracle/TestSet/shape_nested_style_set.exp.json
index ac8ebe385..e51c401d8 100644
--- a/testdata/d2oracle/TestSet/shape_nested_style_set.exp.json
+++ b/testdata/d2oracle/TestSet/shape_nested_style_set.exp.json
@@ -93,7 +93,8 @@
"direction": {
"value": ""
}
- }
+ },
+ "zIndex": 0
},
"edges": [],
"objects": [
@@ -142,7 +143,8 @@
"direction": {
"value": ""
}
- }
+ },
+ "zIndex": 0
}
]
},