diff --git a/d2exporter/export.go b/d2exporter/export.go index da15a0424..e93cf659a 100644 --- a/d2exporter/export.go +++ b/d2exporter/export.go @@ -20,13 +20,13 @@ func Export(ctx context.Context, g *d2graph.Graph, themeID int64) (*d2target.Dia highestObjectPriority := 0 for i := range g.Objects { diagram.Shapes[i] = toShape(g.Objects[i], &theme) - highestObjectPriority = go2.IntMax(highestObjectPriority, diagram.Shapes[i].RenderPriority) + highestObjectPriority = go2.IntMax(highestObjectPriority, diagram.Shapes[i].ZIndex) } - edgeDefaultRenderPriority := highestObjectPriority + 1 + edgeDefaultZIndex := highestObjectPriority + 1 diagram.Connections = make([]d2target.Connection, len(g.Edges)) for i := range g.Edges { - diagram.Connections[i] = toConnection(g.Edges[i], &theme, edgeDefaultRenderPriority) + diagram.Connections[i] = toConnection(g.Edges[i], &theme, edgeDefaultZIndex) } return diagram, nil @@ -92,10 +92,10 @@ func toShape(obj *d2graph.Object, theme *d2themes.Theme) d2target.Shape { shape := d2target.BaseShape() shape.SetType(obj.Attributes.Shape.Value) shape.ID = obj.AbsID() - if obj.RenderPriority == nil { - shape.RenderPriority = int(obj.Level()) + if obj.ZIndex == nil { + shape.ZIndex = int(obj.Level()) } else { - shape.RenderPriority = *obj.RenderPriority + shape.ZIndex = *obj.ZIndex } shape.Pos = d2target.NewPoint(int(obj.TopLeft.X), int(obj.TopLeft.Y)) shape.Width = int(obj.Width) @@ -138,13 +138,13 @@ func toShape(obj *d2graph.Object, theme *d2themes.Theme) d2target.Shape { return *shape } -func toConnection(edge *d2graph.Edge, theme *d2themes.Theme, defaultRenderPriotity int) d2target.Connection { +func toConnection(edge *d2graph.Edge, theme *d2themes.Theme, defaultZIndex int) d2target.Connection { connection := d2target.BaseConnection() connection.ID = edge.AbsID() - if edge.RenderPriority == nil { - connection.RenderPriority = defaultRenderPriotity + if edge.ZIndex == nil { + connection.ZIndex = defaultZIndex } else { - connection.RenderPriority = *edge.RenderPriority + 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 2397a6a78..5a00b2b75 100644 --- a/d2graph/d2graph.go +++ b/d2graph/d2graph.go @@ -79,7 +79,7 @@ type Object struct { Attributes Attributes `json:"attributes"` - RenderPriority *int `json:"renderPriority,omitempty"` + ZIndex *int `json:"zIndex,omitempty"` } type Attributes struct { @@ -633,7 +633,7 @@ type Edge struct { References []EdgeReference `json:"references,omitempty"` Attributes Attributes `json:"attributes"` - RenderPriority *int `json:"renderPriority,omitempty"` + ZIndex *int `json:"zIndex,omitempty"` } type EdgeReference struct { diff --git a/d2renderers/d2svg/d2svg.go b/d2renderers/d2svg/d2svg.go index 21f55a077..84bbd2f15 100644 --- a/d2renderers/d2svg/d2svg.go +++ b/d2renderers/d2svg/d2svg.go @@ -994,7 +994,7 @@ func Render(diagram *d2target.Diagram) ([]byte, error) { } sort.SliceStable(allObjects, func(i, j int) bool { - return allObjects[i].GetPriority() < allObjects[j].GetPriority() + return allObjects[i].GetZIndex() < allObjects[j].GetZIndex() }) markers := map[string]struct{}{} diff --git a/d2target/d2target.go b/d2target/d2target.go index 0b25b35fe..2a50a6aa4 100644 --- a/d2target/d2target.go +++ b/d2target/d2target.go @@ -18,7 +18,7 @@ const ( ) type DiagramObject interface { - GetPriority() int + GetZIndex() int } type Diagram struct { @@ -121,7 +121,7 @@ type Shape struct { LabelPosition string `json:"labelPosition,omitempty"` - RenderPriority int `json:"renderPriority"` + ZIndex int `json:"zIndex"` } func (s *Shape) SetType(t string) { @@ -135,8 +135,8 @@ func (s *Shape) SetType(t string) { s.Type = strings.ToLower(t) } -func (s Shape) GetPriority() int { - return s.RenderPriority +func (s Shape) GetZIndex() int { + return s.ZIndex } type Text struct { @@ -193,7 +193,7 @@ type Connection struct { Tooltip string `json:"tooltip"` Icon *url.URL `json:"icon"` - RenderPriority int `json:"renderPriority"` + ZIndex int `json:"zIndex"` } func BaseConnection() *Connection { @@ -221,8 +221,8 @@ func (c *Connection) GetLabelTopLeft() *geo.Point { ) } -func (c Connection) GetPriority() int { - return c.RenderPriority +func (c Connection) GetZIndex() int { + return c.ZIndex } type Arrowhead string 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 9d7bafb1e..6f149ad17 100644 --- a/e2etests/testdata/sanity/1_to_2/dagre/board.exp.json +++ b/e2etests/testdata/sanity/1_to_2/dagre/board.exp.json @@ -37,7 +37,7 @@ "labelWidth": 13, "labelHeight": 26, "labelPosition": "INSIDE_MIDDLE_CENTER", - "renderPriority": 1 + "zIndex": 1 }, { "id": "b", @@ -75,7 +75,7 @@ "labelWidth": 13, "labelHeight": 26, "labelPosition": "INSIDE_MIDDLE_CENTER", - "renderPriority": 1 + "zIndex": 1 }, { "id": "c", @@ -113,7 +113,7 @@ "labelWidth": 13, "labelHeight": 26, "labelPosition": "INSIDE_MIDDLE_CENTER", - "renderPriority": 1 + "zIndex": 1 } ], "connections": [ @@ -163,7 +163,7 @@ "animated": false, "tooltip": "", "icon": null, - "renderPriority": 2 + "zIndex": 2 }, { "id": "(a -> c)[0]", @@ -211,7 +211,7 @@ "animated": false, "tooltip": "", "icon": null, - "renderPriority": 2 + "zIndex": 2 } ] } 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 1ff2e7f96..783996f3a 100644 --- a/e2etests/testdata/sanity/1_to_2/elk/board.exp.json +++ b/e2etests/testdata/sanity/1_to_2/elk/board.exp.json @@ -37,7 +37,7 @@ "labelWidth": 13, "labelHeight": 26, "labelPosition": "INSIDE_MIDDLE_CENTER", - "renderPriority": 1 + "zIndex": 1 }, { "id": "b", @@ -75,7 +75,7 @@ "labelWidth": 13, "labelHeight": 26, "labelPosition": "INSIDE_MIDDLE_CENTER", - "renderPriority": 1 + "zIndex": 1 }, { "id": "c", @@ -113,7 +113,7 @@ "labelWidth": 13, "labelHeight": 26, "labelPosition": "INSIDE_MIDDLE_CENTER", - "renderPriority": 1 + "zIndex": 1 } ], "connections": [ @@ -154,7 +154,7 @@ "animated": false, "tooltip": "", "icon": null, - "renderPriority": 2 + "zIndex": 2 }, { "id": "(a -> c)[0]", @@ -201,7 +201,7 @@ "animated": false, "tooltip": "", "icon": null, - "renderPriority": 2 + "zIndex": 2 } ] } diff --git a/e2etests/testdata/sanity/basic/dagre/board.exp.json b/e2etests/testdata/sanity/basic/dagre/board.exp.json index 49f25e27a..f3732823d 100644 --- a/e2etests/testdata/sanity/basic/dagre/board.exp.json +++ b/e2etests/testdata/sanity/basic/dagre/board.exp.json @@ -37,7 +37,7 @@ "labelWidth": 13, "labelHeight": 26, "labelPosition": "INSIDE_MIDDLE_CENTER", - "renderPriority": 1 + "zIndex": 1 }, { "id": "b", @@ -75,7 +75,7 @@ "labelWidth": 13, "labelHeight": 26, "labelPosition": "INSIDE_MIDDLE_CENTER", - "renderPriority": 1 + "zIndex": 1 } ], "connections": [ @@ -125,7 +125,7 @@ "animated": false, "tooltip": "", "icon": null, - "renderPriority": 2 + "zIndex": 2 } ] } diff --git a/e2etests/testdata/sanity/basic/elk/board.exp.json b/e2etests/testdata/sanity/basic/elk/board.exp.json index caf6ed051..66977e1db 100644 --- a/e2etests/testdata/sanity/basic/elk/board.exp.json +++ b/e2etests/testdata/sanity/basic/elk/board.exp.json @@ -37,7 +37,7 @@ "labelWidth": 13, "labelHeight": 26, "labelPosition": "INSIDE_MIDDLE_CENTER", - "renderPriority": 1 + "zIndex": 1 }, { "id": "b", @@ -75,7 +75,7 @@ "labelWidth": 13, "labelHeight": 26, "labelPosition": "INSIDE_MIDDLE_CENTER", - "renderPriority": 1 + "zIndex": 1 } ], "connections": [ @@ -116,7 +116,7 @@ "animated": false, "tooltip": "", "icon": null, - "renderPriority": 2 + "zIndex": 2 } ] } 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 54e4d4f5f..e6d74cf50 100644 --- a/e2etests/testdata/sanity/child_to_child/dagre/board.exp.json +++ b/e2etests/testdata/sanity/child_to_child/dagre/board.exp.json @@ -37,7 +37,7 @@ "labelWidth": 17, "labelHeight": 41, "labelPosition": "INSIDE_TOP_CENTER", - "renderPriority": 1 + "zIndex": 1 }, { "id": "a.b", @@ -75,7 +75,7 @@ "labelWidth": 13, "labelHeight": 26, "labelPosition": "INSIDE_MIDDLE_CENTER", - "renderPriority": 2 + "zIndex": 2 }, { "id": "c", @@ -113,7 +113,7 @@ "labelWidth": 17, "labelHeight": 41, "labelPosition": "INSIDE_TOP_CENTER", - "renderPriority": 1 + "zIndex": 1 }, { "id": "c.d", @@ -151,7 +151,7 @@ "labelWidth": 14, "labelHeight": 26, "labelPosition": "INSIDE_MIDDLE_CENTER", - "renderPriority": 2 + "zIndex": 2 } ], "connections": [ @@ -213,7 +213,7 @@ "animated": false, "tooltip": "", "icon": null, - "renderPriority": 3 + "zIndex": 3 } ] } 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 8aeadea21..8ad45217d 100644 --- a/e2etests/testdata/sanity/child_to_child/elk/board.exp.json +++ b/e2etests/testdata/sanity/child_to_child/elk/board.exp.json @@ -37,7 +37,7 @@ "labelWidth": 17, "labelHeight": 41, "labelPosition": "INSIDE_TOP_CENTER", - "renderPriority": 1 + "zIndex": 1 }, { "id": "a.b", @@ -75,7 +75,7 @@ "labelWidth": 13, "labelHeight": 26, "labelPosition": "INSIDE_MIDDLE_CENTER", - "renderPriority": 2 + "zIndex": 2 }, { "id": "c", @@ -113,7 +113,7 @@ "labelWidth": 17, "labelHeight": 41, "labelPosition": "INSIDE_TOP_CENTER", - "renderPriority": 1 + "zIndex": 1 }, { "id": "c.d", @@ -151,7 +151,7 @@ "labelWidth": 14, "labelHeight": 26, "labelPosition": "INSIDE_MIDDLE_CENTER", - "renderPriority": 2 + "zIndex": 2 } ], "connections": [ @@ -192,7 +192,7 @@ "animated": false, "tooltip": "", "icon": null, - "renderPriority": 3 + "zIndex": 3 } ] } diff --git a/e2etests/testdata/sanity/connection_label/dagre/board.exp.json b/e2etests/testdata/sanity/connection_label/dagre/board.exp.json index 0692526cb..63096a54f 100644 --- a/e2etests/testdata/sanity/connection_label/dagre/board.exp.json +++ b/e2etests/testdata/sanity/connection_label/dagre/board.exp.json @@ -37,7 +37,7 @@ "labelWidth": 13, "labelHeight": 26, "labelPosition": "INSIDE_MIDDLE_CENTER", - "renderPriority": 1 + "zIndex": 1 }, { "id": "b", @@ -75,7 +75,7 @@ "labelWidth": 13, "labelHeight": 26, "labelPosition": "INSIDE_MIDDLE_CENTER", - "renderPriority": 1 + "zIndex": 1 } ], "connections": [ @@ -125,7 +125,7 @@ "animated": false, "tooltip": "", "icon": null, - "renderPriority": 2 + "zIndex": 2 } ] } diff --git a/e2etests/testdata/sanity/connection_label/elk/board.exp.json b/e2etests/testdata/sanity/connection_label/elk/board.exp.json index 9b5235b5a..96c8db885 100644 --- a/e2etests/testdata/sanity/connection_label/elk/board.exp.json +++ b/e2etests/testdata/sanity/connection_label/elk/board.exp.json @@ -37,7 +37,7 @@ "labelWidth": 13, "labelHeight": 26, "labelPosition": "INSIDE_MIDDLE_CENTER", - "renderPriority": 1 + "zIndex": 1 }, { "id": "b", @@ -75,7 +75,7 @@ "labelWidth": 13, "labelHeight": 26, "labelPosition": "INSIDE_MIDDLE_CENTER", - "renderPriority": 1 + "zIndex": 1 } ], "connections": [ @@ -116,7 +116,7 @@ "animated": false, "tooltip": "", "icon": null, - "renderPriority": 2 + "zIndex": 2 } ] } diff --git a/e2etests/testdata/stable/all_shapes/dagre/board.exp.json b/e2etests/testdata/stable/all_shapes/dagre/board.exp.json index 3474b9562..03a60b7e7 100644 --- a/e2etests/testdata/stable/all_shapes/dagre/board.exp.json +++ b/e2etests/testdata/stable/all_shapes/dagre/board.exp.json @@ -37,7 +37,7 @@ "labelWidth": 71, "labelHeight": 26, "labelPosition": "INSIDE_MIDDLE_CENTER", - "renderPriority": 1 + "zIndex": 1 }, { "id": "square", @@ -75,7 +75,7 @@ "labelWidth": 54, "labelHeight": 26, "labelPosition": "INSIDE_MIDDLE_CENTER", - "renderPriority": 1 + "zIndex": 1 }, { "id": "page", @@ -113,7 +113,7 @@ "labelWidth": 39, "labelHeight": 26, "labelPosition": "INSIDE_MIDDLE_CENTER", - "renderPriority": 1 + "zIndex": 1 }, { "id": "parallelogram", @@ -151,7 +151,7 @@ "labelWidth": 104, "labelHeight": 26, "labelPosition": "INSIDE_MIDDLE_CENTER", - "renderPriority": 1 + "zIndex": 1 }, { "id": "document", @@ -189,7 +189,7 @@ "labelWidth": 77, "labelHeight": 26, "labelPosition": "INSIDE_MIDDLE_CENTER", - "renderPriority": 1 + "zIndex": 1 }, { "id": "cylinder", @@ -227,7 +227,7 @@ "labelWidth": 64, "labelHeight": 26, "labelPosition": "INSIDE_MIDDLE_CENTER", - "renderPriority": 1 + "zIndex": 1 }, { "id": "queue", @@ -265,7 +265,7 @@ "labelWidth": 49, "labelHeight": 26, "labelPosition": "INSIDE_MIDDLE_CENTER", - "renderPriority": 1 + "zIndex": 1 }, { "id": "package", @@ -303,7 +303,7 @@ "labelWidth": 63, "labelHeight": 26, "labelPosition": "INSIDE_MIDDLE_CENTER", - "renderPriority": 1 + "zIndex": 1 }, { "id": "step", @@ -341,7 +341,7 @@ "labelWidth": 36, "labelHeight": 26, "labelPosition": "INSIDE_MIDDLE_CENTER", - "renderPriority": 1 + "zIndex": 1 }, { "id": "callout", @@ -379,7 +379,7 @@ "labelWidth": 55, "labelHeight": 26, "labelPosition": "INSIDE_MIDDLE_CENTER", - "renderPriority": 1 + "zIndex": 1 }, { "id": "stored_data", @@ -417,7 +417,7 @@ "labelWidth": 91, "labelHeight": 26, "labelPosition": "INSIDE_MIDDLE_CENTER", - "renderPriority": 1 + "zIndex": 1 }, { "id": "person", @@ -455,7 +455,7 @@ "labelWidth": 53, "labelHeight": 26, "labelPosition": "INSIDE_MIDDLE_CENTER", - "renderPriority": 1 + "zIndex": 1 }, { "id": "diamond", @@ -493,7 +493,7 @@ "labelWidth": 68, "labelHeight": 26, "labelPosition": "INSIDE_MIDDLE_CENTER", - "renderPriority": 1 + "zIndex": 1 }, { "id": "oval", @@ -531,7 +531,7 @@ "labelWidth": 36, "labelHeight": 26, "labelPosition": "INSIDE_MIDDLE_CENTER", - "renderPriority": 1 + "zIndex": 1 }, { "id": "circle", @@ -569,7 +569,7 @@ "labelWidth": 44, "labelHeight": 26, "labelPosition": "INSIDE_MIDDLE_CENTER", - "renderPriority": 1 + "zIndex": 1 }, { "id": "hexagon", @@ -607,7 +607,7 @@ "labelWidth": 65, "labelHeight": 26, "labelPosition": "INSIDE_MIDDLE_CENTER", - "renderPriority": 1 + "zIndex": 1 }, { "id": "cloud", @@ -645,7 +645,7 @@ "labelWidth": 45, "labelHeight": 26, "labelPosition": "INSIDE_MIDDLE_CENTER", - "renderPriority": 1 + "zIndex": 1 } ], "connections": [ @@ -695,7 +695,7 @@ "animated": false, "tooltip": "", "icon": null, - "renderPriority": 2 + "zIndex": 2 }, { "id": "(square -> page)[0]", @@ -743,7 +743,7 @@ "animated": false, "tooltip": "", "icon": null, - "renderPriority": 2 + "zIndex": 2 }, { "id": "(parallelogram -> document)[0]", @@ -791,7 +791,7 @@ "animated": false, "tooltip": "", "icon": null, - "renderPriority": 2 + "zIndex": 2 }, { "id": "(document -> cylinder)[0]", @@ -839,7 +839,7 @@ "animated": false, "tooltip": "", "icon": null, - "renderPriority": 2 + "zIndex": 2 }, { "id": "(queue -> package)[0]", @@ -887,7 +887,7 @@ "animated": false, "tooltip": "", "icon": null, - "renderPriority": 2 + "zIndex": 2 }, { "id": "(package -> step)[0]", @@ -935,7 +935,7 @@ "animated": false, "tooltip": "", "icon": null, - "renderPriority": 2 + "zIndex": 2 }, { "id": "(callout -> stored_data)[0]", @@ -983,7 +983,7 @@ "animated": false, "tooltip": "", "icon": null, - "renderPriority": 2 + "zIndex": 2 }, { "id": "(stored_data -> person)[0]", @@ -1031,7 +1031,7 @@ "animated": false, "tooltip": "", "icon": null, - "renderPriority": 2 + "zIndex": 2 }, { "id": "(diamond -> oval)[0]", @@ -1079,7 +1079,7 @@ "animated": false, "tooltip": "", "icon": null, - "renderPriority": 2 + "zIndex": 2 }, { "id": "(oval -> circle)[0]", @@ -1127,7 +1127,7 @@ "animated": false, "tooltip": "", "icon": null, - "renderPriority": 2 + "zIndex": 2 }, { "id": "(hexagon -> cloud)[0]", @@ -1175,7 +1175,7 @@ "animated": false, "tooltip": "", "icon": null, - "renderPriority": 2 + "zIndex": 2 } ] } diff --git a/e2etests/testdata/stable/all_shapes/elk/board.exp.json b/e2etests/testdata/stable/all_shapes/elk/board.exp.json index 450dd97c6..06e144576 100644 --- a/e2etests/testdata/stable/all_shapes/elk/board.exp.json +++ b/e2etests/testdata/stable/all_shapes/elk/board.exp.json @@ -37,7 +37,7 @@ "labelWidth": 71, "labelHeight": 26, "labelPosition": "INSIDE_MIDDLE_CENTER", - "renderPriority": 1 + "zIndex": 1 }, { "id": "square", @@ -75,7 +75,7 @@ "labelWidth": 54, "labelHeight": 26, "labelPosition": "INSIDE_MIDDLE_CENTER", - "renderPriority": 1 + "zIndex": 1 }, { "id": "page", @@ -113,7 +113,7 @@ "labelWidth": 39, "labelHeight": 26, "labelPosition": "INSIDE_MIDDLE_CENTER", - "renderPriority": 1 + "zIndex": 1 }, { "id": "parallelogram", @@ -151,7 +151,7 @@ "labelWidth": 104, "labelHeight": 26, "labelPosition": "INSIDE_MIDDLE_CENTER", - "renderPriority": 1 + "zIndex": 1 }, { "id": "document", @@ -189,7 +189,7 @@ "labelWidth": 77, "labelHeight": 26, "labelPosition": "INSIDE_MIDDLE_CENTER", - "renderPriority": 1 + "zIndex": 1 }, { "id": "cylinder", @@ -227,7 +227,7 @@ "labelWidth": 64, "labelHeight": 26, "labelPosition": "INSIDE_MIDDLE_CENTER", - "renderPriority": 1 + "zIndex": 1 }, { "id": "queue", @@ -265,7 +265,7 @@ "labelWidth": 49, "labelHeight": 26, "labelPosition": "INSIDE_MIDDLE_CENTER", - "renderPriority": 1 + "zIndex": 1 }, { "id": "package", @@ -303,7 +303,7 @@ "labelWidth": 63, "labelHeight": 26, "labelPosition": "INSIDE_MIDDLE_CENTER", - "renderPriority": 1 + "zIndex": 1 }, { "id": "step", @@ -341,7 +341,7 @@ "labelWidth": 36, "labelHeight": 26, "labelPosition": "INSIDE_MIDDLE_CENTER", - "renderPriority": 1 + "zIndex": 1 }, { "id": "callout", @@ -379,7 +379,7 @@ "labelWidth": 55, "labelHeight": 26, "labelPosition": "INSIDE_MIDDLE_CENTER", - "renderPriority": 1 + "zIndex": 1 }, { "id": "stored_data", @@ -417,7 +417,7 @@ "labelWidth": 91, "labelHeight": 26, "labelPosition": "INSIDE_MIDDLE_CENTER", - "renderPriority": 1 + "zIndex": 1 }, { "id": "person", @@ -455,7 +455,7 @@ "labelWidth": 53, "labelHeight": 26, "labelPosition": "INSIDE_MIDDLE_CENTER", - "renderPriority": 1 + "zIndex": 1 }, { "id": "diamond", @@ -493,7 +493,7 @@ "labelWidth": 68, "labelHeight": 26, "labelPosition": "INSIDE_MIDDLE_CENTER", - "renderPriority": 1 + "zIndex": 1 }, { "id": "oval", @@ -531,7 +531,7 @@ "labelWidth": 36, "labelHeight": 26, "labelPosition": "INSIDE_MIDDLE_CENTER", - "renderPriority": 1 + "zIndex": 1 }, { "id": "circle", @@ -569,7 +569,7 @@ "labelWidth": 44, "labelHeight": 26, "labelPosition": "INSIDE_MIDDLE_CENTER", - "renderPriority": 1 + "zIndex": 1 }, { "id": "hexagon", @@ -607,7 +607,7 @@ "labelWidth": 65, "labelHeight": 26, "labelPosition": "INSIDE_MIDDLE_CENTER", - "renderPriority": 1 + "zIndex": 1 }, { "id": "cloud", @@ -645,7 +645,7 @@ "labelWidth": 45, "labelHeight": 26, "labelPosition": "INSIDE_MIDDLE_CENTER", - "renderPriority": 1 + "zIndex": 1 } ], "connections": [ @@ -686,7 +686,7 @@ "animated": false, "tooltip": "", "icon": null, - "renderPriority": 2 + "zIndex": 2 }, { "id": "(square -> page)[0]", @@ -725,7 +725,7 @@ "animated": false, "tooltip": "", "icon": null, - "renderPriority": 2 + "zIndex": 2 }, { "id": "(parallelogram -> document)[0]", @@ -764,7 +764,7 @@ "animated": false, "tooltip": "", "icon": null, - "renderPriority": 2 + "zIndex": 2 }, { "id": "(document -> cylinder)[0]", @@ -803,7 +803,7 @@ "animated": false, "tooltip": "", "icon": null, - "renderPriority": 2 + "zIndex": 2 }, { "id": "(queue -> package)[0]", @@ -842,7 +842,7 @@ "animated": false, "tooltip": "", "icon": null, - "renderPriority": 2 + "zIndex": 2 }, { "id": "(package -> step)[0]", @@ -881,7 +881,7 @@ "animated": false, "tooltip": "", "icon": null, - "renderPriority": 2 + "zIndex": 2 }, { "id": "(callout -> stored_data)[0]", @@ -920,7 +920,7 @@ "animated": false, "tooltip": "", "icon": null, - "renderPriority": 2 + "zIndex": 2 }, { "id": "(stored_data -> person)[0]", @@ -959,7 +959,7 @@ "animated": false, "tooltip": "", "icon": null, - "renderPriority": 2 + "zIndex": 2 }, { "id": "(diamond -> oval)[0]", @@ -998,7 +998,7 @@ "animated": false, "tooltip": "", "icon": null, - "renderPriority": 2 + "zIndex": 2 }, { "id": "(oval -> circle)[0]", @@ -1037,7 +1037,7 @@ "animated": false, "tooltip": "", "icon": null, - "renderPriority": 2 + "zIndex": 2 }, { "id": "(hexagon -> cloud)[0]", @@ -1076,7 +1076,7 @@ "animated": false, "tooltip": "", "icon": null, - "renderPriority": 2 + "zIndex": 2 } ] } 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 a896471a6..252ade6eb 100644 --- a/e2etests/testdata/stable/all_shapes_multiple/dagre/board.exp.json +++ b/e2etests/testdata/stable/all_shapes_multiple/dagre/board.exp.json @@ -37,7 +37,7 @@ "labelWidth": 71, "labelHeight": 26, "labelPosition": "INSIDE_MIDDLE_CENTER", - "renderPriority": 1 + "zIndex": 1 }, { "id": "square", @@ -75,7 +75,7 @@ "labelWidth": 54, "labelHeight": 26, "labelPosition": "INSIDE_MIDDLE_CENTER", - "renderPriority": 1 + "zIndex": 1 }, { "id": "page", @@ -113,7 +113,7 @@ "labelWidth": 39, "labelHeight": 26, "labelPosition": "INSIDE_MIDDLE_CENTER", - "renderPriority": 1 + "zIndex": 1 }, { "id": "parallelogram", @@ -151,7 +151,7 @@ "labelWidth": 104, "labelHeight": 26, "labelPosition": "INSIDE_MIDDLE_CENTER", - "renderPriority": 1 + "zIndex": 1 }, { "id": "document", @@ -189,7 +189,7 @@ "labelWidth": 77, "labelHeight": 26, "labelPosition": "INSIDE_MIDDLE_CENTER", - "renderPriority": 1 + "zIndex": 1 }, { "id": "cylinder", @@ -227,7 +227,7 @@ "labelWidth": 64, "labelHeight": 26, "labelPosition": "INSIDE_MIDDLE_CENTER", - "renderPriority": 1 + "zIndex": 1 }, { "id": "queue", @@ -265,7 +265,7 @@ "labelWidth": 49, "labelHeight": 26, "labelPosition": "INSIDE_MIDDLE_CENTER", - "renderPriority": 1 + "zIndex": 1 }, { "id": "package", @@ -303,7 +303,7 @@ "labelWidth": 63, "labelHeight": 26, "labelPosition": "INSIDE_MIDDLE_CENTER", - "renderPriority": 1 + "zIndex": 1 }, { "id": "step", @@ -341,7 +341,7 @@ "labelWidth": 36, "labelHeight": 26, "labelPosition": "INSIDE_MIDDLE_CENTER", - "renderPriority": 1 + "zIndex": 1 }, { "id": "callout", @@ -379,7 +379,7 @@ "labelWidth": 55, "labelHeight": 26, "labelPosition": "INSIDE_MIDDLE_CENTER", - "renderPriority": 1 + "zIndex": 1 }, { "id": "stored_data", @@ -417,7 +417,7 @@ "labelWidth": 91, "labelHeight": 26, "labelPosition": "INSIDE_MIDDLE_CENTER", - "renderPriority": 1 + "zIndex": 1 }, { "id": "person", @@ -455,7 +455,7 @@ "labelWidth": 53, "labelHeight": 26, "labelPosition": "INSIDE_MIDDLE_CENTER", - "renderPriority": 1 + "zIndex": 1 }, { "id": "diamond", @@ -493,7 +493,7 @@ "labelWidth": 68, "labelHeight": 26, "labelPosition": "INSIDE_MIDDLE_CENTER", - "renderPriority": 1 + "zIndex": 1 }, { "id": "oval", @@ -531,7 +531,7 @@ "labelWidth": 36, "labelHeight": 26, "labelPosition": "INSIDE_MIDDLE_CENTER", - "renderPriority": 1 + "zIndex": 1 }, { "id": "circle", @@ -569,7 +569,7 @@ "labelWidth": 44, "labelHeight": 26, "labelPosition": "INSIDE_MIDDLE_CENTER", - "renderPriority": 1 + "zIndex": 1 }, { "id": "hexagon", @@ -607,7 +607,7 @@ "labelWidth": 65, "labelHeight": 26, "labelPosition": "INSIDE_MIDDLE_CENTER", - "renderPriority": 1 + "zIndex": 1 }, { "id": "cloud", @@ -645,7 +645,7 @@ "labelWidth": 45, "labelHeight": 26, "labelPosition": "INSIDE_MIDDLE_CENTER", - "renderPriority": 1 + "zIndex": 1 } ], "connections": [ @@ -695,7 +695,7 @@ "animated": false, "tooltip": "", "icon": null, - "renderPriority": 2 + "zIndex": 2 }, { "id": "(square -> page)[0]", @@ -743,7 +743,7 @@ "animated": false, "tooltip": "", "icon": null, - "renderPriority": 2 + "zIndex": 2 }, { "id": "(parallelogram -> document)[0]", @@ -791,7 +791,7 @@ "animated": false, "tooltip": "", "icon": null, - "renderPriority": 2 + "zIndex": 2 }, { "id": "(document -> cylinder)[0]", @@ -839,7 +839,7 @@ "animated": false, "tooltip": "", "icon": null, - "renderPriority": 2 + "zIndex": 2 }, { "id": "(queue -> package)[0]", @@ -887,7 +887,7 @@ "animated": false, "tooltip": "", "icon": null, - "renderPriority": 2 + "zIndex": 2 }, { "id": "(package -> step)[0]", @@ -935,7 +935,7 @@ "animated": false, "tooltip": "", "icon": null, - "renderPriority": 2 + "zIndex": 2 }, { "id": "(callout -> stored_data)[0]", @@ -983,7 +983,7 @@ "animated": false, "tooltip": "", "icon": null, - "renderPriority": 2 + "zIndex": 2 }, { "id": "(stored_data -> person)[0]", @@ -1031,7 +1031,7 @@ "animated": false, "tooltip": "", "icon": null, - "renderPriority": 2 + "zIndex": 2 }, { "id": "(diamond -> oval)[0]", @@ -1079,7 +1079,7 @@ "animated": false, "tooltip": "", "icon": null, - "renderPriority": 2 + "zIndex": 2 }, { "id": "(oval -> circle)[0]", @@ -1127,7 +1127,7 @@ "animated": false, "tooltip": "", "icon": null, - "renderPriority": 2 + "zIndex": 2 }, { "id": "(hexagon -> cloud)[0]", @@ -1175,7 +1175,7 @@ "animated": false, "tooltip": "", "icon": null, - "renderPriority": 2 + "zIndex": 2 } ] } 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 29a117de8..a2d34c1f2 100644 --- a/e2etests/testdata/stable/all_shapes_multiple/elk/board.exp.json +++ b/e2etests/testdata/stable/all_shapes_multiple/elk/board.exp.json @@ -37,7 +37,7 @@ "labelWidth": 71, "labelHeight": 26, "labelPosition": "INSIDE_MIDDLE_CENTER", - "renderPriority": 1 + "zIndex": 1 }, { "id": "square", @@ -75,7 +75,7 @@ "labelWidth": 54, "labelHeight": 26, "labelPosition": "INSIDE_MIDDLE_CENTER", - "renderPriority": 1 + "zIndex": 1 }, { "id": "page", @@ -113,7 +113,7 @@ "labelWidth": 39, "labelHeight": 26, "labelPosition": "INSIDE_MIDDLE_CENTER", - "renderPriority": 1 + "zIndex": 1 }, { "id": "parallelogram", @@ -151,7 +151,7 @@ "labelWidth": 104, "labelHeight": 26, "labelPosition": "INSIDE_MIDDLE_CENTER", - "renderPriority": 1 + "zIndex": 1 }, { "id": "document", @@ -189,7 +189,7 @@ "labelWidth": 77, "labelHeight": 26, "labelPosition": "INSIDE_MIDDLE_CENTER", - "renderPriority": 1 + "zIndex": 1 }, { "id": "cylinder", @@ -227,7 +227,7 @@ "labelWidth": 64, "labelHeight": 26, "labelPosition": "INSIDE_MIDDLE_CENTER", - "renderPriority": 1 + "zIndex": 1 }, { "id": "queue", @@ -265,7 +265,7 @@ "labelWidth": 49, "labelHeight": 26, "labelPosition": "INSIDE_MIDDLE_CENTER", - "renderPriority": 1 + "zIndex": 1 }, { "id": "package", @@ -303,7 +303,7 @@ "labelWidth": 63, "labelHeight": 26, "labelPosition": "INSIDE_MIDDLE_CENTER", - "renderPriority": 1 + "zIndex": 1 }, { "id": "step", @@ -341,7 +341,7 @@ "labelWidth": 36, "labelHeight": 26, "labelPosition": "INSIDE_MIDDLE_CENTER", - "renderPriority": 1 + "zIndex": 1 }, { "id": "callout", @@ -379,7 +379,7 @@ "labelWidth": 55, "labelHeight": 26, "labelPosition": "INSIDE_MIDDLE_CENTER", - "renderPriority": 1 + "zIndex": 1 }, { "id": "stored_data", @@ -417,7 +417,7 @@ "labelWidth": 91, "labelHeight": 26, "labelPosition": "INSIDE_MIDDLE_CENTER", - "renderPriority": 1 + "zIndex": 1 }, { "id": "person", @@ -455,7 +455,7 @@ "labelWidth": 53, "labelHeight": 26, "labelPosition": "INSIDE_MIDDLE_CENTER", - "renderPriority": 1 + "zIndex": 1 }, { "id": "diamond", @@ -493,7 +493,7 @@ "labelWidth": 68, "labelHeight": 26, "labelPosition": "INSIDE_MIDDLE_CENTER", - "renderPriority": 1 + "zIndex": 1 }, { "id": "oval", @@ -531,7 +531,7 @@ "labelWidth": 36, "labelHeight": 26, "labelPosition": "INSIDE_MIDDLE_CENTER", - "renderPriority": 1 + "zIndex": 1 }, { "id": "circle", @@ -569,7 +569,7 @@ "labelWidth": 44, "labelHeight": 26, "labelPosition": "INSIDE_MIDDLE_CENTER", - "renderPriority": 1 + "zIndex": 1 }, { "id": "hexagon", @@ -607,7 +607,7 @@ "labelWidth": 65, "labelHeight": 26, "labelPosition": "INSIDE_MIDDLE_CENTER", - "renderPriority": 1 + "zIndex": 1 }, { "id": "cloud", @@ -645,7 +645,7 @@ "labelWidth": 45, "labelHeight": 26, "labelPosition": "INSIDE_MIDDLE_CENTER", - "renderPriority": 1 + "zIndex": 1 } ], "connections": [ @@ -686,7 +686,7 @@ "animated": false, "tooltip": "", "icon": null, - "renderPriority": 2 + "zIndex": 2 }, { "id": "(square -> page)[0]", @@ -725,7 +725,7 @@ "animated": false, "tooltip": "", "icon": null, - "renderPriority": 2 + "zIndex": 2 }, { "id": "(parallelogram -> document)[0]", @@ -764,7 +764,7 @@ "animated": false, "tooltip": "", "icon": null, - "renderPriority": 2 + "zIndex": 2 }, { "id": "(document -> cylinder)[0]", @@ -803,7 +803,7 @@ "animated": false, "tooltip": "", "icon": null, - "renderPriority": 2 + "zIndex": 2 }, { "id": "(queue -> package)[0]", @@ -842,7 +842,7 @@ "animated": false, "tooltip": "", "icon": null, - "renderPriority": 2 + "zIndex": 2 }, { "id": "(package -> step)[0]", @@ -881,7 +881,7 @@ "animated": false, "tooltip": "", "icon": null, - "renderPriority": 2 + "zIndex": 2 }, { "id": "(callout -> stored_data)[0]", @@ -920,7 +920,7 @@ "animated": false, "tooltip": "", "icon": null, - "renderPriority": 2 + "zIndex": 2 }, { "id": "(stored_data -> person)[0]", @@ -959,7 +959,7 @@ "animated": false, "tooltip": "", "icon": null, - "renderPriority": 2 + "zIndex": 2 }, { "id": "(diamond -> oval)[0]", @@ -998,7 +998,7 @@ "animated": false, "tooltip": "", "icon": null, - "renderPriority": 2 + "zIndex": 2 }, { "id": "(oval -> circle)[0]", @@ -1037,7 +1037,7 @@ "animated": false, "tooltip": "", "icon": null, - "renderPriority": 2 + "zIndex": 2 }, { "id": "(hexagon -> cloud)[0]", @@ -1076,7 +1076,7 @@ "animated": false, "tooltip": "", "icon": null, - "renderPriority": 2 + "zIndex": 2 } ] } 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 751abdf1f..dff2bb210 100644 --- a/e2etests/testdata/stable/all_shapes_shadow/dagre/board.exp.json +++ b/e2etests/testdata/stable/all_shapes_shadow/dagre/board.exp.json @@ -37,7 +37,7 @@ "labelWidth": 71, "labelHeight": 26, "labelPosition": "INSIDE_MIDDLE_CENTER", - "renderPriority": 1 + "zIndex": 1 }, { "id": "square", @@ -75,7 +75,7 @@ "labelWidth": 54, "labelHeight": 26, "labelPosition": "INSIDE_MIDDLE_CENTER", - "renderPriority": 1 + "zIndex": 1 }, { "id": "page", @@ -113,7 +113,7 @@ "labelWidth": 39, "labelHeight": 26, "labelPosition": "INSIDE_MIDDLE_CENTER", - "renderPriority": 1 + "zIndex": 1 }, { "id": "parallelogram", @@ -151,7 +151,7 @@ "labelWidth": 104, "labelHeight": 26, "labelPosition": "INSIDE_MIDDLE_CENTER", - "renderPriority": 1 + "zIndex": 1 }, { "id": "document", @@ -189,7 +189,7 @@ "labelWidth": 77, "labelHeight": 26, "labelPosition": "INSIDE_MIDDLE_CENTER", - "renderPriority": 1 + "zIndex": 1 }, { "id": "cylinder", @@ -227,7 +227,7 @@ "labelWidth": 64, "labelHeight": 26, "labelPosition": "INSIDE_MIDDLE_CENTER", - "renderPriority": 1 + "zIndex": 1 }, { "id": "queue", @@ -265,7 +265,7 @@ "labelWidth": 49, "labelHeight": 26, "labelPosition": "INSIDE_MIDDLE_CENTER", - "renderPriority": 1 + "zIndex": 1 }, { "id": "package", @@ -303,7 +303,7 @@ "labelWidth": 63, "labelHeight": 26, "labelPosition": "INSIDE_MIDDLE_CENTER", - "renderPriority": 1 + "zIndex": 1 }, { "id": "step", @@ -341,7 +341,7 @@ "labelWidth": 36, "labelHeight": 26, "labelPosition": "INSIDE_MIDDLE_CENTER", - "renderPriority": 1 + "zIndex": 1 }, { "id": "callout", @@ -379,7 +379,7 @@ "labelWidth": 55, "labelHeight": 26, "labelPosition": "INSIDE_MIDDLE_CENTER", - "renderPriority": 1 + "zIndex": 1 }, { "id": "stored_data", @@ -417,7 +417,7 @@ "labelWidth": 91, "labelHeight": 26, "labelPosition": "INSIDE_MIDDLE_CENTER", - "renderPriority": 1 + "zIndex": 1 }, { "id": "person", @@ -455,7 +455,7 @@ "labelWidth": 53, "labelHeight": 26, "labelPosition": "INSIDE_MIDDLE_CENTER", - "renderPriority": 1 + "zIndex": 1 }, { "id": "diamond", @@ -493,7 +493,7 @@ "labelWidth": 68, "labelHeight": 26, "labelPosition": "INSIDE_MIDDLE_CENTER", - "renderPriority": 1 + "zIndex": 1 }, { "id": "oval", @@ -531,7 +531,7 @@ "labelWidth": 36, "labelHeight": 26, "labelPosition": "INSIDE_MIDDLE_CENTER", - "renderPriority": 1 + "zIndex": 1 }, { "id": "circle", @@ -569,7 +569,7 @@ "labelWidth": 44, "labelHeight": 26, "labelPosition": "INSIDE_MIDDLE_CENTER", - "renderPriority": 1 + "zIndex": 1 }, { "id": "hexagon", @@ -607,7 +607,7 @@ "labelWidth": 65, "labelHeight": 26, "labelPosition": "INSIDE_MIDDLE_CENTER", - "renderPriority": 1 + "zIndex": 1 }, { "id": "cloud", @@ -645,7 +645,7 @@ "labelWidth": 45, "labelHeight": 26, "labelPosition": "INSIDE_MIDDLE_CENTER", - "renderPriority": 1 + "zIndex": 1 } ], "connections": [ @@ -695,7 +695,7 @@ "animated": false, "tooltip": "", "icon": null, - "renderPriority": 2 + "zIndex": 2 }, { "id": "(square -> page)[0]", @@ -743,7 +743,7 @@ "animated": false, "tooltip": "", "icon": null, - "renderPriority": 2 + "zIndex": 2 }, { "id": "(parallelogram -> document)[0]", @@ -791,7 +791,7 @@ "animated": false, "tooltip": "", "icon": null, - "renderPriority": 2 + "zIndex": 2 }, { "id": "(document -> cylinder)[0]", @@ -839,7 +839,7 @@ "animated": false, "tooltip": "", "icon": null, - "renderPriority": 2 + "zIndex": 2 }, { "id": "(queue -> package)[0]", @@ -887,7 +887,7 @@ "animated": false, "tooltip": "", "icon": null, - "renderPriority": 2 + "zIndex": 2 }, { "id": "(package -> step)[0]", @@ -935,7 +935,7 @@ "animated": false, "tooltip": "", "icon": null, - "renderPriority": 2 + "zIndex": 2 }, { "id": "(callout -> stored_data)[0]", @@ -983,7 +983,7 @@ "animated": false, "tooltip": "", "icon": null, - "renderPriority": 2 + "zIndex": 2 }, { "id": "(stored_data -> person)[0]", @@ -1031,7 +1031,7 @@ "animated": false, "tooltip": "", "icon": null, - "renderPriority": 2 + "zIndex": 2 }, { "id": "(diamond -> oval)[0]", @@ -1079,7 +1079,7 @@ "animated": false, "tooltip": "", "icon": null, - "renderPriority": 2 + "zIndex": 2 }, { "id": "(oval -> circle)[0]", @@ -1127,7 +1127,7 @@ "animated": false, "tooltip": "", "icon": null, - "renderPriority": 2 + "zIndex": 2 }, { "id": "(hexagon -> cloud)[0]", @@ -1175,7 +1175,7 @@ "animated": false, "tooltip": "", "icon": null, - "renderPriority": 2 + "zIndex": 2 } ] } 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 4e0f04fa1..2ea1053e4 100644 --- a/e2etests/testdata/stable/all_shapes_shadow/elk/board.exp.json +++ b/e2etests/testdata/stable/all_shapes_shadow/elk/board.exp.json @@ -37,7 +37,7 @@ "labelWidth": 71, "labelHeight": 26, "labelPosition": "INSIDE_MIDDLE_CENTER", - "renderPriority": 1 + "zIndex": 1 }, { "id": "square", @@ -75,7 +75,7 @@ "labelWidth": 54, "labelHeight": 26, "labelPosition": "INSIDE_MIDDLE_CENTER", - "renderPriority": 1 + "zIndex": 1 }, { "id": "page", @@ -113,7 +113,7 @@ "labelWidth": 39, "labelHeight": 26, "labelPosition": "INSIDE_MIDDLE_CENTER", - "renderPriority": 1 + "zIndex": 1 }, { "id": "parallelogram", @@ -151,7 +151,7 @@ "labelWidth": 104, "labelHeight": 26, "labelPosition": "INSIDE_MIDDLE_CENTER", - "renderPriority": 1 + "zIndex": 1 }, { "id": "document", @@ -189,7 +189,7 @@ "labelWidth": 77, "labelHeight": 26, "labelPosition": "INSIDE_MIDDLE_CENTER", - "renderPriority": 1 + "zIndex": 1 }, { "id": "cylinder", @@ -227,7 +227,7 @@ "labelWidth": 64, "labelHeight": 26, "labelPosition": "INSIDE_MIDDLE_CENTER", - "renderPriority": 1 + "zIndex": 1 }, { "id": "queue", @@ -265,7 +265,7 @@ "labelWidth": 49, "labelHeight": 26, "labelPosition": "INSIDE_MIDDLE_CENTER", - "renderPriority": 1 + "zIndex": 1 }, { "id": "package", @@ -303,7 +303,7 @@ "labelWidth": 63, "labelHeight": 26, "labelPosition": "INSIDE_MIDDLE_CENTER", - "renderPriority": 1 + "zIndex": 1 }, { "id": "step", @@ -341,7 +341,7 @@ "labelWidth": 36, "labelHeight": 26, "labelPosition": "INSIDE_MIDDLE_CENTER", - "renderPriority": 1 + "zIndex": 1 }, { "id": "callout", @@ -379,7 +379,7 @@ "labelWidth": 55, "labelHeight": 26, "labelPosition": "INSIDE_MIDDLE_CENTER", - "renderPriority": 1 + "zIndex": 1 }, { "id": "stored_data", @@ -417,7 +417,7 @@ "labelWidth": 91, "labelHeight": 26, "labelPosition": "INSIDE_MIDDLE_CENTER", - "renderPriority": 1 + "zIndex": 1 }, { "id": "person", @@ -455,7 +455,7 @@ "labelWidth": 53, "labelHeight": 26, "labelPosition": "INSIDE_MIDDLE_CENTER", - "renderPriority": 1 + "zIndex": 1 }, { "id": "diamond", @@ -493,7 +493,7 @@ "labelWidth": 68, "labelHeight": 26, "labelPosition": "INSIDE_MIDDLE_CENTER", - "renderPriority": 1 + "zIndex": 1 }, { "id": "oval", @@ -531,7 +531,7 @@ "labelWidth": 36, "labelHeight": 26, "labelPosition": "INSIDE_MIDDLE_CENTER", - "renderPriority": 1 + "zIndex": 1 }, { "id": "circle", @@ -569,7 +569,7 @@ "labelWidth": 44, "labelHeight": 26, "labelPosition": "INSIDE_MIDDLE_CENTER", - "renderPriority": 1 + "zIndex": 1 }, { "id": "hexagon", @@ -607,7 +607,7 @@ "labelWidth": 65, "labelHeight": 26, "labelPosition": "INSIDE_MIDDLE_CENTER", - "renderPriority": 1 + "zIndex": 1 }, { "id": "cloud", @@ -645,7 +645,7 @@ "labelWidth": 45, "labelHeight": 26, "labelPosition": "INSIDE_MIDDLE_CENTER", - "renderPriority": 1 + "zIndex": 1 } ], "connections": [ @@ -686,7 +686,7 @@ "animated": false, "tooltip": "", "icon": null, - "renderPriority": 2 + "zIndex": 2 }, { "id": "(square -> page)[0]", @@ -725,7 +725,7 @@ "animated": false, "tooltip": "", "icon": null, - "renderPriority": 2 + "zIndex": 2 }, { "id": "(parallelogram -> document)[0]", @@ -764,7 +764,7 @@ "animated": false, "tooltip": "", "icon": null, - "renderPriority": 2 + "zIndex": 2 }, { "id": "(document -> cylinder)[0]", @@ -803,7 +803,7 @@ "animated": false, "tooltip": "", "icon": null, - "renderPriority": 2 + "zIndex": 2 }, { "id": "(queue -> package)[0]", @@ -842,7 +842,7 @@ "animated": false, "tooltip": "", "icon": null, - "renderPriority": 2 + "zIndex": 2 }, { "id": "(package -> step)[0]", @@ -881,7 +881,7 @@ "animated": false, "tooltip": "", "icon": null, - "renderPriority": 2 + "zIndex": 2 }, { "id": "(callout -> stored_data)[0]", @@ -920,7 +920,7 @@ "animated": false, "tooltip": "", "icon": null, - "renderPriority": 2 + "zIndex": 2 }, { "id": "(stored_data -> person)[0]", @@ -959,7 +959,7 @@ "animated": false, "tooltip": "", "icon": null, - "renderPriority": 2 + "zIndex": 2 }, { "id": "(diamond -> oval)[0]", @@ -998,7 +998,7 @@ "animated": false, "tooltip": "", "icon": null, - "renderPriority": 2 + "zIndex": 2 }, { "id": "(oval -> circle)[0]", @@ -1037,7 +1037,7 @@ "animated": false, "tooltip": "", "icon": null, - "renderPriority": 2 + "zIndex": 2 }, { "id": "(hexagon -> cloud)[0]", @@ -1076,7 +1076,7 @@ "animated": false, "tooltip": "", "icon": null, - "renderPriority": 2 + "zIndex": 2 } ] } diff --git a/e2etests/testdata/stable/arrowhead_adjustment/dagre/board.exp.json b/e2etests/testdata/stable/arrowhead_adjustment/dagre/board.exp.json index 4af38b29d..24bd87a2c 100644 --- a/e2etests/testdata/stable/arrowhead_adjustment/dagre/board.exp.json +++ b/e2etests/testdata/stable/arrowhead_adjustment/dagre/board.exp.json @@ -37,7 +37,7 @@ "labelWidth": 13, "labelHeight": 26, "labelPosition": "INSIDE_MIDDLE_CENTER", - "renderPriority": 1 + "zIndex": 1 }, { "id": "b", @@ -75,7 +75,7 @@ "labelWidth": 13, "labelHeight": 26, "labelPosition": "INSIDE_MIDDLE_CENTER", - "renderPriority": 1 + "zIndex": 1 }, { "id": "a", @@ -113,7 +113,7 @@ "labelWidth": 13, "labelHeight": 26, "labelPosition": "INSIDE_MIDDLE_CENTER", - "renderPriority": 1 + "zIndex": 1 }, { "id": "Oval", @@ -150,7 +150,7 @@ "underline": false, "labelWidth": 0, "labelHeight": 0, - "renderPriority": 1 + "zIndex": 1 } ], "connections": [ @@ -200,7 +200,7 @@ "animated": false, "tooltip": "", "icon": null, - "renderPriority": 2 + "zIndex": 2 }, { "id": "(c -> b)[0]", @@ -260,7 +260,7 @@ "animated": false, "tooltip": "", "icon": null, - "renderPriority": 2 + "zIndex": 2 }, { "id": "(a <-> Oval)[0]", @@ -308,7 +308,7 @@ "animated": false, "tooltip": "", "icon": null, - "renderPriority": 2 + "zIndex": 2 }, { "id": "(c -- a)[0]", @@ -356,7 +356,7 @@ "animated": false, "tooltip": "", "icon": null, - "renderPriority": 2 + "zIndex": 2 }, { "id": "(Oval <-> c)[0]", @@ -416,7 +416,7 @@ "animated": false, "tooltip": "", "icon": null, - "renderPriority": 2 + "zIndex": 2 } ] } diff --git a/e2etests/testdata/stable/arrowhead_adjustment/elk/board.exp.json b/e2etests/testdata/stable/arrowhead_adjustment/elk/board.exp.json index dce8c385a..cf578c843 100644 --- a/e2etests/testdata/stable/arrowhead_adjustment/elk/board.exp.json +++ b/e2etests/testdata/stable/arrowhead_adjustment/elk/board.exp.json @@ -37,7 +37,7 @@ "labelWidth": 13, "labelHeight": 26, "labelPosition": "INSIDE_MIDDLE_CENTER", - "renderPriority": 1 + "zIndex": 1 }, { "id": "b", @@ -75,7 +75,7 @@ "labelWidth": 13, "labelHeight": 26, "labelPosition": "INSIDE_MIDDLE_CENTER", - "renderPriority": 1 + "zIndex": 1 }, { "id": "a", @@ -113,7 +113,7 @@ "labelWidth": 13, "labelHeight": 26, "labelPosition": "INSIDE_MIDDLE_CENTER", - "renderPriority": 1 + "zIndex": 1 }, { "id": "Oval", @@ -150,7 +150,7 @@ "underline": false, "labelWidth": 0, "labelHeight": 0, - "renderPriority": 1 + "zIndex": 1 } ], "connections": [ @@ -199,7 +199,7 @@ "animated": false, "tooltip": "", "icon": null, - "renderPriority": 2 + "zIndex": 2 }, { "id": "(c -> b)[0]", @@ -238,7 +238,7 @@ "animated": false, "tooltip": "", "icon": null, - "renderPriority": 2 + "zIndex": 2 }, { "id": "(a <-> Oval)[0]", @@ -277,7 +277,7 @@ "animated": false, "tooltip": "", "icon": null, - "renderPriority": 2 + "zIndex": 2 }, { "id": "(c -- a)[0]", @@ -324,7 +324,7 @@ "animated": false, "tooltip": "", "icon": null, - "renderPriority": 2 + "zIndex": 2 }, { "id": "(Oval <-> c)[0]", @@ -379,7 +379,7 @@ "animated": false, "tooltip": "", "icon": null, - "renderPriority": 2 + "zIndex": 2 } ] } diff --git a/e2etests/testdata/stable/arrowhead_labels/dagre/board.exp.json b/e2etests/testdata/stable/arrowhead_labels/dagre/board.exp.json index d192fbe0a..5413c61ea 100644 --- a/e2etests/testdata/stable/arrowhead_labels/dagre/board.exp.json +++ b/e2etests/testdata/stable/arrowhead_labels/dagre/board.exp.json @@ -37,7 +37,7 @@ "labelWidth": 13, "labelHeight": 26, "labelPosition": "INSIDE_MIDDLE_CENTER", - "renderPriority": 1 + "zIndex": 1 }, { "id": "b", @@ -75,7 +75,7 @@ "labelWidth": 13, "labelHeight": 26, "labelPosition": "INSIDE_MIDDLE_CENTER", - "renderPriority": 1 + "zIndex": 1 } ], "connections": [ @@ -125,7 +125,7 @@ "animated": false, "tooltip": "", "icon": null, - "renderPriority": 2 + "zIndex": 2 } ] } diff --git a/e2etests/testdata/stable/arrowhead_labels/elk/board.exp.json b/e2etests/testdata/stable/arrowhead_labels/elk/board.exp.json index cb62ff8b9..9d7513d12 100644 --- a/e2etests/testdata/stable/arrowhead_labels/elk/board.exp.json +++ b/e2etests/testdata/stable/arrowhead_labels/elk/board.exp.json @@ -37,7 +37,7 @@ "labelWidth": 13, "labelHeight": 26, "labelPosition": "INSIDE_MIDDLE_CENTER", - "renderPriority": 1 + "zIndex": 1 }, { "id": "b", @@ -75,7 +75,7 @@ "labelWidth": 13, "labelHeight": 26, "labelPosition": "INSIDE_MIDDLE_CENTER", - "renderPriority": 1 + "zIndex": 1 } ], "connections": [ @@ -116,7 +116,7 @@ "animated": false, "tooltip": "", "icon": null, - "renderPriority": 2 + "zIndex": 2 } ] } diff --git a/e2etests/testdata/stable/binary_tree/dagre/board.exp.json b/e2etests/testdata/stable/binary_tree/dagre/board.exp.json index a382b8675..24eb61c49 100644 --- a/e2etests/testdata/stable/binary_tree/dagre/board.exp.json +++ b/e2etests/testdata/stable/binary_tree/dagre/board.exp.json @@ -37,7 +37,7 @@ "labelWidth": 13, "labelHeight": 26, "labelPosition": "INSIDE_MIDDLE_CENTER", - "renderPriority": 1 + "zIndex": 1 }, { "id": "b", @@ -75,7 +75,7 @@ "labelWidth": 13, "labelHeight": 26, "labelPosition": "INSIDE_MIDDLE_CENTER", - "renderPriority": 1 + "zIndex": 1 }, { "id": "c", @@ -113,7 +113,7 @@ "labelWidth": 13, "labelHeight": 26, "labelPosition": "INSIDE_MIDDLE_CENTER", - "renderPriority": 1 + "zIndex": 1 }, { "id": "d", @@ -151,7 +151,7 @@ "labelWidth": 14, "labelHeight": 26, "labelPosition": "INSIDE_MIDDLE_CENTER", - "renderPriority": 1 + "zIndex": 1 }, { "id": "e", @@ -189,7 +189,7 @@ "labelWidth": 13, "labelHeight": 26, "labelPosition": "INSIDE_MIDDLE_CENTER", - "renderPriority": 1 + "zIndex": 1 }, { "id": "f", @@ -227,7 +227,7 @@ "labelWidth": 11, "labelHeight": 26, "labelPosition": "INSIDE_MIDDLE_CENTER", - "renderPriority": 1 + "zIndex": 1 }, { "id": "g", @@ -265,7 +265,7 @@ "labelWidth": 14, "labelHeight": 26, "labelPosition": "INSIDE_MIDDLE_CENTER", - "renderPriority": 1 + "zIndex": 1 }, { "id": "h", @@ -303,7 +303,7 @@ "labelWidth": 13, "labelHeight": 26, "labelPosition": "INSIDE_MIDDLE_CENTER", - "renderPriority": 1 + "zIndex": 1 }, { "id": "i", @@ -341,7 +341,7 @@ "labelWidth": 9, "labelHeight": 26, "labelPosition": "INSIDE_MIDDLE_CENTER", - "renderPriority": 1 + "zIndex": 1 }, { "id": "j", @@ -379,7 +379,7 @@ "labelWidth": 10, "labelHeight": 26, "labelPosition": "INSIDE_MIDDLE_CENTER", - "renderPriority": 1 + "zIndex": 1 }, { "id": "k", @@ -417,7 +417,7 @@ "labelWidth": 13, "labelHeight": 26, "labelPosition": "INSIDE_MIDDLE_CENTER", - "renderPriority": 1 + "zIndex": 1 }, { "id": "l", @@ -455,7 +455,7 @@ "labelWidth": 9, "labelHeight": 26, "labelPosition": "INSIDE_MIDDLE_CENTER", - "renderPriority": 1 + "zIndex": 1 }, { "id": "m", @@ -493,7 +493,7 @@ "labelWidth": 17, "labelHeight": 26, "labelPosition": "INSIDE_MIDDLE_CENTER", - "renderPriority": 1 + "zIndex": 1 }, { "id": "n", @@ -531,7 +531,7 @@ "labelWidth": 13, "labelHeight": 26, "labelPosition": "INSIDE_MIDDLE_CENTER", - "renderPriority": 1 + "zIndex": 1 }, { "id": "o", @@ -569,7 +569,7 @@ "labelWidth": 14, "labelHeight": 26, "labelPosition": "INSIDE_MIDDLE_CENTER", - "renderPriority": 1 + "zIndex": 1 } ], "connections": [ @@ -619,7 +619,7 @@ "animated": false, "tooltip": "", "icon": null, - "renderPriority": 2 + "zIndex": 2 }, { "id": "(a -> c)[0]", @@ -667,7 +667,7 @@ "animated": false, "tooltip": "", "icon": null, - "renderPriority": 2 + "zIndex": 2 }, { "id": "(b -> d)[0]", @@ -715,7 +715,7 @@ "animated": false, "tooltip": "", "icon": null, - "renderPriority": 2 + "zIndex": 2 }, { "id": "(b -> e)[0]", @@ -763,7 +763,7 @@ "animated": false, "tooltip": "", "icon": null, - "renderPriority": 2 + "zIndex": 2 }, { "id": "(c -> f)[0]", @@ -811,7 +811,7 @@ "animated": false, "tooltip": "", "icon": null, - "renderPriority": 2 + "zIndex": 2 }, { "id": "(c -> g)[0]", @@ -859,7 +859,7 @@ "animated": false, "tooltip": "", "icon": null, - "renderPriority": 2 + "zIndex": 2 }, { "id": "(d -> h)[0]", @@ -907,7 +907,7 @@ "animated": false, "tooltip": "", "icon": null, - "renderPriority": 2 + "zIndex": 2 }, { "id": "(d -> i)[0]", @@ -955,7 +955,7 @@ "animated": false, "tooltip": "", "icon": null, - "renderPriority": 2 + "zIndex": 2 }, { "id": "(e -> j)[0]", @@ -1003,7 +1003,7 @@ "animated": false, "tooltip": "", "icon": null, - "renderPriority": 2 + "zIndex": 2 }, { "id": "(e -> k)[0]", @@ -1051,7 +1051,7 @@ "animated": false, "tooltip": "", "icon": null, - "renderPriority": 2 + "zIndex": 2 }, { "id": "(f -> l)[0]", @@ -1099,7 +1099,7 @@ "animated": false, "tooltip": "", "icon": null, - "renderPriority": 2 + "zIndex": 2 }, { "id": "(f -> m)[0]", @@ -1147,7 +1147,7 @@ "animated": false, "tooltip": "", "icon": null, - "renderPriority": 2 + "zIndex": 2 }, { "id": "(g -> n)[0]", @@ -1195,7 +1195,7 @@ "animated": false, "tooltip": "", "icon": null, - "renderPriority": 2 + "zIndex": 2 }, { "id": "(g -> o)[0]", @@ -1243,7 +1243,7 @@ "animated": false, "tooltip": "", "icon": null, - "renderPriority": 2 + "zIndex": 2 } ] } diff --git a/e2etests/testdata/stable/binary_tree/elk/board.exp.json b/e2etests/testdata/stable/binary_tree/elk/board.exp.json index e96bdd115..e182c2abc 100644 --- a/e2etests/testdata/stable/binary_tree/elk/board.exp.json +++ b/e2etests/testdata/stable/binary_tree/elk/board.exp.json @@ -37,7 +37,7 @@ "labelWidth": 13, "labelHeight": 26, "labelPosition": "INSIDE_MIDDLE_CENTER", - "renderPriority": 1 + "zIndex": 1 }, { "id": "b", @@ -75,7 +75,7 @@ "labelWidth": 13, "labelHeight": 26, "labelPosition": "INSIDE_MIDDLE_CENTER", - "renderPriority": 1 + "zIndex": 1 }, { "id": "c", @@ -113,7 +113,7 @@ "labelWidth": 13, "labelHeight": 26, "labelPosition": "INSIDE_MIDDLE_CENTER", - "renderPriority": 1 + "zIndex": 1 }, { "id": "d", @@ -151,7 +151,7 @@ "labelWidth": 14, "labelHeight": 26, "labelPosition": "INSIDE_MIDDLE_CENTER", - "renderPriority": 1 + "zIndex": 1 }, { "id": "e", @@ -189,7 +189,7 @@ "labelWidth": 13, "labelHeight": 26, "labelPosition": "INSIDE_MIDDLE_CENTER", - "renderPriority": 1 + "zIndex": 1 }, { "id": "f", @@ -227,7 +227,7 @@ "labelWidth": 11, "labelHeight": 26, "labelPosition": "INSIDE_MIDDLE_CENTER", - "renderPriority": 1 + "zIndex": 1 }, { "id": "g", @@ -265,7 +265,7 @@ "labelWidth": 14, "labelHeight": 26, "labelPosition": "INSIDE_MIDDLE_CENTER", - "renderPriority": 1 + "zIndex": 1 }, { "id": "h", @@ -303,7 +303,7 @@ "labelWidth": 13, "labelHeight": 26, "labelPosition": "INSIDE_MIDDLE_CENTER", - "renderPriority": 1 + "zIndex": 1 }, { "id": "i", @@ -341,7 +341,7 @@ "labelWidth": 9, "labelHeight": 26, "labelPosition": "INSIDE_MIDDLE_CENTER", - "renderPriority": 1 + "zIndex": 1 }, { "id": "j", @@ -379,7 +379,7 @@ "labelWidth": 10, "labelHeight": 26, "labelPosition": "INSIDE_MIDDLE_CENTER", - "renderPriority": 1 + "zIndex": 1 }, { "id": "k", @@ -417,7 +417,7 @@ "labelWidth": 13, "labelHeight": 26, "labelPosition": "INSIDE_MIDDLE_CENTER", - "renderPriority": 1 + "zIndex": 1 }, { "id": "l", @@ -455,7 +455,7 @@ "labelWidth": 9, "labelHeight": 26, "labelPosition": "INSIDE_MIDDLE_CENTER", - "renderPriority": 1 + "zIndex": 1 }, { "id": "m", @@ -493,7 +493,7 @@ "labelWidth": 17, "labelHeight": 26, "labelPosition": "INSIDE_MIDDLE_CENTER", - "renderPriority": 1 + "zIndex": 1 }, { "id": "n", @@ -531,7 +531,7 @@ "labelWidth": 13, "labelHeight": 26, "labelPosition": "INSIDE_MIDDLE_CENTER", - "renderPriority": 1 + "zIndex": 1 }, { "id": "o", @@ -569,7 +569,7 @@ "labelWidth": 14, "labelHeight": 26, "labelPosition": "INSIDE_MIDDLE_CENTER", - "renderPriority": 1 + "zIndex": 1 } ], "connections": [ @@ -610,7 +610,7 @@ "animated": false, "tooltip": "", "icon": null, - "renderPriority": 2 + "zIndex": 2 }, { "id": "(a -> c)[0]", @@ -657,7 +657,7 @@ "animated": false, "tooltip": "", "icon": null, - "renderPriority": 2 + "zIndex": 2 }, { "id": "(b -> d)[0]", @@ -704,7 +704,7 @@ "animated": false, "tooltip": "", "icon": null, - "renderPriority": 2 + "zIndex": 2 }, { "id": "(b -> e)[0]", @@ -743,7 +743,7 @@ "animated": false, "tooltip": "", "icon": null, - "renderPriority": 2 + "zIndex": 2 }, { "id": "(c -> f)[0]", @@ -790,7 +790,7 @@ "animated": false, "tooltip": "", "icon": null, - "renderPriority": 2 + "zIndex": 2 }, { "id": "(c -> g)[0]", @@ -829,7 +829,7 @@ "animated": false, "tooltip": "", "icon": null, - "renderPriority": 2 + "zIndex": 2 }, { "id": "(d -> h)[0]", @@ -868,7 +868,7 @@ "animated": false, "tooltip": "", "icon": null, - "renderPriority": 2 + "zIndex": 2 }, { "id": "(d -> i)[0]", @@ -915,7 +915,7 @@ "animated": false, "tooltip": "", "icon": null, - "renderPriority": 2 + "zIndex": 2 }, { "id": "(e -> j)[0]", @@ -954,7 +954,7 @@ "animated": false, "tooltip": "", "icon": null, - "renderPriority": 2 + "zIndex": 2 }, { "id": "(e -> k)[0]", @@ -1001,7 +1001,7 @@ "animated": false, "tooltip": "", "icon": null, - "renderPriority": 2 + "zIndex": 2 }, { "id": "(f -> l)[0]", @@ -1040,7 +1040,7 @@ "animated": false, "tooltip": "", "icon": null, - "renderPriority": 2 + "zIndex": 2 }, { "id": "(f -> m)[0]", @@ -1087,7 +1087,7 @@ "animated": false, "tooltip": "", "icon": null, - "renderPriority": 2 + "zIndex": 2 }, { "id": "(g -> n)[0]", @@ -1134,7 +1134,7 @@ "animated": false, "tooltip": "", "icon": null, - "renderPriority": 2 + "zIndex": 2 }, { "id": "(g -> o)[0]", @@ -1173,7 +1173,7 @@ "animated": false, "tooltip": "", "icon": null, - "renderPriority": 2 + "zIndex": 2 } ] } diff --git a/e2etests/testdata/stable/chaos1/dagre/board.exp.json b/e2etests/testdata/stable/chaos1/dagre/board.exp.json index 1e92ed1fa..28e624e90 100644 --- a/e2etests/testdata/stable/chaos1/dagre/board.exp.json +++ b/e2etests/testdata/stable/chaos1/dagre/board.exp.json @@ -37,7 +37,7 @@ "labelWidth": 46, "labelHeight": 41, "labelPosition": "INSIDE_TOP_CENTER", - "renderPriority": 1 + "zIndex": 1 }, { "id": "aaa.bbb", @@ -75,7 +75,7 @@ "labelWidth": 32, "labelHeight": 26, "labelPosition": "INSIDE_MIDDLE_CENTER", - "renderPriority": 2 + "zIndex": 2 }, { "id": "ddd", @@ -113,7 +113,7 @@ "labelWidth": 33, "labelHeight": 26, "labelPosition": "INSIDE_MIDDLE_CENTER", - "renderPriority": 1 + "zIndex": 1 }, { "id": "eee", @@ -151,7 +151,7 @@ "labelWidth": 30, "labelHeight": 26, "labelPosition": "INSIDE_MIDDLE_CENTER", - "renderPriority": 1 + "zIndex": 1 }, { "id": "aaa.ccc", @@ -189,7 +189,7 @@ "labelWidth": 28, "labelHeight": 26, "labelPosition": "INSIDE_MIDDLE_CENTER", - "renderPriority": 2 + "zIndex": 2 } ], "connections": [ @@ -239,7 +239,7 @@ "animated": false, "tooltip": "", "icon": null, - "renderPriority": 3 + "zIndex": 3 }, { "id": "(eee <- aaa.ccc)[0]", @@ -287,7 +287,7 @@ "animated": false, "tooltip": "", "icon": null, - "renderPriority": 3 + "zIndex": 3 } ] } diff --git a/e2etests/testdata/stable/chaos1/elk/board.exp.json b/e2etests/testdata/stable/chaos1/elk/board.exp.json index d4ed9e86a..195cfe680 100644 --- a/e2etests/testdata/stable/chaos1/elk/board.exp.json +++ b/e2etests/testdata/stable/chaos1/elk/board.exp.json @@ -37,7 +37,7 @@ "labelWidth": 46, "labelHeight": 41, "labelPosition": "INSIDE_TOP_CENTER", - "renderPriority": 1 + "zIndex": 1 }, { "id": "aaa.bbb", @@ -75,7 +75,7 @@ "labelWidth": 32, "labelHeight": 26, "labelPosition": "INSIDE_MIDDLE_CENTER", - "renderPriority": 2 + "zIndex": 2 }, { "id": "ddd", @@ -113,7 +113,7 @@ "labelWidth": 33, "labelHeight": 26, "labelPosition": "INSIDE_MIDDLE_CENTER", - "renderPriority": 1 + "zIndex": 1 }, { "id": "eee", @@ -151,7 +151,7 @@ "labelWidth": 30, "labelHeight": 26, "labelPosition": "INSIDE_MIDDLE_CENTER", - "renderPriority": 1 + "zIndex": 1 }, { "id": "aaa.ccc", @@ -189,7 +189,7 @@ "labelWidth": 28, "labelHeight": 26, "labelPosition": "INSIDE_MIDDLE_CENTER", - "renderPriority": 2 + "zIndex": 2 } ], "connections": [ @@ -230,7 +230,7 @@ "animated": false, "tooltip": "", "icon": null, - "renderPriority": 3 + "zIndex": 3 }, { "id": "(eee <- aaa.ccc)[0]", @@ -269,7 +269,7 @@ "animated": false, "tooltip": "", "icon": null, - "renderPriority": 3 + "zIndex": 3 } ] } diff --git a/e2etests/testdata/stable/chaos2/dagre/board.exp.json b/e2etests/testdata/stable/chaos2/dagre/board.exp.json index da047dac0..2a1cf9a86 100644 --- a/e2etests/testdata/stable/chaos2/dagre/board.exp.json +++ b/e2etests/testdata/stable/chaos2/dagre/board.exp.json @@ -37,7 +37,7 @@ "labelWidth": 32, "labelHeight": 41, "labelPosition": "INSIDE_TOP_CENTER", - "renderPriority": 1 + "zIndex": 1 }, { "id": "aa.bb", @@ -75,7 +75,7 @@ "labelWidth": 31, "labelHeight": 36, "labelPosition": "INSIDE_TOP_CENTER", - "renderPriority": 2 + "zIndex": 2 }, { "id": "aa.bb.cc", @@ -113,7 +113,7 @@ "labelWidth": 24, "labelHeight": 31, "labelPosition": "INSIDE_TOP_CENTER", - "renderPriority": 3 + "zIndex": 3 }, { "id": "aa.bb.cc.dd", @@ -151,7 +151,7 @@ "labelWidth": 22, "labelHeight": 26, "labelPosition": "INSIDE_TOP_CENTER", - "renderPriority": 4 + "zIndex": 4 }, { "id": "aa.bb.cc.dd.ee", @@ -188,7 +188,7 @@ "underline": false, "labelWidth": 16, "labelHeight": 24, - "renderPriority": 5 + "zIndex": 5 }, { "id": "aa.bb.cc.dd.ff", @@ -226,7 +226,7 @@ "labelWidth": 17, "labelHeight": 26, "labelPosition": "INSIDE_MIDDLE_CENTER", - "renderPriority": 5 + "zIndex": 5 }, { "id": "aa.bb.cc.gg", @@ -263,7 +263,7 @@ "underline": false, "labelWidth": 17, "labelHeight": 24, - "renderPriority": 4 + "zIndex": 4 }, { "id": "aa.bb.cc.hh", @@ -301,7 +301,7 @@ "labelWidth": 23, "labelHeight": 26, "labelPosition": "INSIDE_MIDDLE_CENTER", - "renderPriority": 4 + "zIndex": 4 }, { "id": "aa.bb.ii", @@ -339,7 +339,7 @@ "labelWidth": 14, "labelHeight": 31, "labelPosition": "INSIDE_TOP_CENTER", - "renderPriority": 3 + "zIndex": 3 }, { "id": "aa.bb.ii.jj", @@ -377,7 +377,7 @@ "labelWidth": 15, "labelHeight": 26, "labelPosition": "INSIDE_MIDDLE_CENTER", - "renderPriority": 4 + "zIndex": 4 }, { "id": "aa.bb.kk", @@ -415,7 +415,7 @@ "labelWidth": 22, "labelHeight": 26, "labelPosition": "INSIDE_MIDDLE_CENTER", - "renderPriority": 3 + "zIndex": 3 }, { "id": "aa.ll", @@ -453,7 +453,7 @@ "labelWidth": 14, "labelHeight": 26, "labelPosition": "INSIDE_MIDDLE_CENTER", - "renderPriority": 2 + "zIndex": 2 }, { "id": "aa.mm", @@ -491,7 +491,7 @@ "labelWidth": 31, "labelHeight": 26, "labelPosition": "INSIDE_MIDDLE_CENTER", - "renderPriority": 2 + "zIndex": 2 }, { "id": "aa.nn", @@ -528,7 +528,7 @@ "underline": false, "labelWidth": 18, "labelHeight": 24, - "renderPriority": 2 + "zIndex": 2 }, { "id": "aa.oo", @@ -566,7 +566,7 @@ "labelWidth": 23, "labelHeight": 26, "labelPosition": "INSIDE_MIDDLE_CENTER", - "renderPriority": 2 + "zIndex": 2 } ], "connections": [ @@ -616,7 +616,7 @@ "animated": false, "tooltip": "", "icon": null, - "renderPriority": 6 + "zIndex": 6 }, { "id": "aa.bb.cc.(gg -- hh)[0]", @@ -664,7 +664,7 @@ "animated": false, "tooltip": "", "icon": null, - "renderPriority": 6 + "zIndex": 6 }, { "id": "aa.bb.(ii -> cc.dd)[0]", @@ -760,7 +760,7 @@ "animated": false, "tooltip": "", "icon": null, - "renderPriority": 6 + "zIndex": 6 }, { "id": "aa.(ll <-> bb)[0]", @@ -808,7 +808,7 @@ "animated": false, "tooltip": "", "icon": null, - "renderPriority": 6 + "zIndex": 6 }, { "id": "aa.(mm -> bb.cc)[0]", @@ -868,7 +868,7 @@ "animated": false, "tooltip": "", "icon": null, - "renderPriority": 6 + "zIndex": 6 }, { "id": "aa.(mm -> ll)[0]", @@ -916,7 +916,7 @@ "animated": false, "tooltip": "", "icon": null, - "renderPriority": 6 + "zIndex": 6 }, { "id": "aa.(mm <-> bb)[0]", @@ -964,7 +964,7 @@ "animated": false, "tooltip": "", "icon": null, - "renderPriority": 6 + "zIndex": 6 }, { "id": "aa.(ll <-> bb.cc.gg)[0]", @@ -1060,7 +1060,7 @@ "animated": false, "tooltip": "", "icon": null, - "renderPriority": 6 + "zIndex": 6 }, { "id": "aa.(mm <- bb.ii)[0]", @@ -1108,7 +1108,7 @@ "animated": false, "tooltip": "", "icon": null, - "renderPriority": 6 + "zIndex": 6 }, { "id": "aa.(bb.cc <- ll)[0]", @@ -1156,7 +1156,7 @@ "animated": false, "tooltip": "", "icon": null, - "renderPriority": 6 + "zIndex": 6 }, { "id": "aa.(bb.ii <-> ll)[0]", @@ -1216,7 +1216,7 @@ "animated": false, "tooltip": "", "icon": null, - "renderPriority": 6 + "zIndex": 6 } ] } diff --git a/e2etests/testdata/stable/chaos2/elk/board.exp.json b/e2etests/testdata/stable/chaos2/elk/board.exp.json index 81bd699b6..a4c77f842 100644 --- a/e2etests/testdata/stable/chaos2/elk/board.exp.json +++ b/e2etests/testdata/stable/chaos2/elk/board.exp.json @@ -37,7 +37,7 @@ "labelWidth": 32, "labelHeight": 41, "labelPosition": "INSIDE_TOP_CENTER", - "renderPriority": 1 + "zIndex": 1 }, { "id": "aa.bb", @@ -75,7 +75,7 @@ "labelWidth": 31, "labelHeight": 36, "labelPosition": "INSIDE_TOP_CENTER", - "renderPriority": 2 + "zIndex": 2 }, { "id": "aa.bb.cc", @@ -113,7 +113,7 @@ "labelWidth": 24, "labelHeight": 31, "labelPosition": "INSIDE_TOP_CENTER", - "renderPriority": 3 + "zIndex": 3 }, { "id": "aa.bb.cc.dd", @@ -151,7 +151,7 @@ "labelWidth": 22, "labelHeight": 26, "labelPosition": "INSIDE_TOP_CENTER", - "renderPriority": 4 + "zIndex": 4 }, { "id": "aa.bb.cc.dd.ee", @@ -188,7 +188,7 @@ "underline": false, "labelWidth": 16, "labelHeight": 24, - "renderPriority": 5 + "zIndex": 5 }, { "id": "aa.bb.cc.dd.ff", @@ -226,7 +226,7 @@ "labelWidth": 17, "labelHeight": 26, "labelPosition": "INSIDE_MIDDLE_CENTER", - "renderPriority": 5 + "zIndex": 5 }, { "id": "aa.bb.cc.gg", @@ -263,7 +263,7 @@ "underline": false, "labelWidth": 17, "labelHeight": 24, - "renderPriority": 4 + "zIndex": 4 }, { "id": "aa.bb.cc.hh", @@ -301,7 +301,7 @@ "labelWidth": 23, "labelHeight": 26, "labelPosition": "INSIDE_MIDDLE_CENTER", - "renderPriority": 4 + "zIndex": 4 }, { "id": "aa.bb.ii", @@ -339,7 +339,7 @@ "labelWidth": 14, "labelHeight": 31, "labelPosition": "INSIDE_TOP_CENTER", - "renderPriority": 3 + "zIndex": 3 }, { "id": "aa.bb.ii.jj", @@ -377,7 +377,7 @@ "labelWidth": 15, "labelHeight": 26, "labelPosition": "INSIDE_MIDDLE_CENTER", - "renderPriority": 4 + "zIndex": 4 }, { "id": "aa.bb.kk", @@ -415,7 +415,7 @@ "labelWidth": 22, "labelHeight": 26, "labelPosition": "INSIDE_MIDDLE_CENTER", - "renderPriority": 3 + "zIndex": 3 }, { "id": "aa.ll", @@ -453,7 +453,7 @@ "labelWidth": 14, "labelHeight": 26, "labelPosition": "INSIDE_MIDDLE_CENTER", - "renderPriority": 2 + "zIndex": 2 }, { "id": "aa.mm", @@ -491,7 +491,7 @@ "labelWidth": 31, "labelHeight": 26, "labelPosition": "INSIDE_MIDDLE_CENTER", - "renderPriority": 2 + "zIndex": 2 }, { "id": "aa.nn", @@ -528,7 +528,7 @@ "underline": false, "labelWidth": 18, "labelHeight": 24, - "renderPriority": 2 + "zIndex": 2 }, { "id": "aa.oo", @@ -566,7 +566,7 @@ "labelWidth": 23, "labelHeight": 26, "labelPosition": "INSIDE_MIDDLE_CENTER", - "renderPriority": 2 + "zIndex": 2 } ], "connections": [ @@ -607,7 +607,7 @@ "animated": false, "tooltip": "", "icon": null, - "renderPriority": 6 + "zIndex": 6 }, { "id": "aa.bb.cc.(gg -- hh)[0]", @@ -646,7 +646,7 @@ "animated": false, "tooltip": "", "icon": null, - "renderPriority": 6 + "zIndex": 6 }, { "id": "aa.bb.(ii -> cc.dd)[0]", @@ -693,7 +693,7 @@ "animated": false, "tooltip": "", "icon": null, - "renderPriority": 6 + "zIndex": 6 }, { "id": "aa.(ll <-> bb)[0]", @@ -748,7 +748,7 @@ "animated": false, "tooltip": "", "icon": null, - "renderPriority": 6 + "zIndex": 6 }, { "id": "aa.(mm -> bb.cc)[0]", @@ -803,7 +803,7 @@ "animated": false, "tooltip": "", "icon": null, - "renderPriority": 6 + "zIndex": 6 }, { "id": "aa.(mm -> ll)[0]", @@ -850,7 +850,7 @@ "animated": false, "tooltip": "", "icon": null, - "renderPriority": 6 + "zIndex": 6 }, { "id": "aa.(mm <-> bb)[0]", @@ -905,7 +905,7 @@ "animated": false, "tooltip": "", "icon": null, - "renderPriority": 6 + "zIndex": 6 }, { "id": "aa.(ll <-> bb.cc.gg)[0]", @@ -960,7 +960,7 @@ "animated": false, "tooltip": "", "icon": null, - "renderPriority": 6 + "zIndex": 6 }, { "id": "aa.(mm <- bb.ii)[0]", @@ -1007,7 +1007,7 @@ "animated": false, "tooltip": "", "icon": null, - "renderPriority": 6 + "zIndex": 6 }, { "id": "aa.(bb.cc <- ll)[0]", @@ -1062,7 +1062,7 @@ "animated": false, "tooltip": "", "icon": null, - "renderPriority": 6 + "zIndex": 6 }, { "id": "aa.(bb.ii <-> ll)[0]", @@ -1125,7 +1125,7 @@ "animated": false, "tooltip": "", "icon": null, - "renderPriority": 6 + "zIndex": 6 } ] } 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 7fca43601..45890126b 100644 --- a/e2etests/testdata/stable/child_parent_edges/dagre/board.exp.json +++ b/e2etests/testdata/stable/child_parent_edges/dagre/board.exp.json @@ -37,7 +37,7 @@ "labelWidth": 17, "labelHeight": 41, "labelPosition": "INSIDE_TOP_CENTER", - "renderPriority": 1 + "zIndex": 1 }, { "id": "a.b", @@ -75,7 +75,7 @@ "labelWidth": 17, "labelHeight": 36, "labelPosition": "INSIDE_TOP_CENTER", - "renderPriority": 2 + "zIndex": 2 }, { "id": "a.b.c", @@ -113,7 +113,7 @@ "labelWidth": 14, "labelHeight": 31, "labelPosition": "INSIDE_TOP_CENTER", - "renderPriority": 3 + "zIndex": 3 }, { "id": "a.b.c.d", @@ -151,7 +151,7 @@ "labelWidth": 14, "labelHeight": 26, "labelPosition": "INSIDE_MIDDLE_CENTER", - "renderPriority": 4 + "zIndex": 4 } ], "connections": [ @@ -237,7 +237,7 @@ "animated": false, "tooltip": "", "icon": null, - "renderPriority": 5 + "zIndex": 5 }, { "id": "a.(b -> b.c)[0]", @@ -321,7 +321,7 @@ "animated": false, "tooltip": "", "icon": null, - "renderPriority": 5 + "zIndex": 5 }, { "id": "a.(b.c.d -> b)[0]", @@ -369,7 +369,7 @@ "animated": false, "tooltip": "", "icon": null, - "renderPriority": 5 + "zIndex": 5 } ] } 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 39671b77e..a85c30982 100644 --- a/e2etests/testdata/stable/child_parent_edges/elk/board.exp.json +++ b/e2etests/testdata/stable/child_parent_edges/elk/board.exp.json @@ -37,7 +37,7 @@ "labelWidth": 17, "labelHeight": 41, "labelPosition": "INSIDE_TOP_CENTER", - "renderPriority": 1 + "zIndex": 1 }, { "id": "a.b", @@ -75,7 +75,7 @@ "labelWidth": 17, "labelHeight": 36, "labelPosition": "INSIDE_TOP_CENTER", - "renderPriority": 2 + "zIndex": 2 }, { "id": "a.b.c", @@ -113,7 +113,7 @@ "labelWidth": 14, "labelHeight": 31, "labelPosition": "INSIDE_TOP_CENTER", - "renderPriority": 3 + "zIndex": 3 }, { "id": "a.b.c.d", @@ -151,7 +151,7 @@ "labelWidth": 14, "labelHeight": 26, "labelPosition": "INSIDE_MIDDLE_CENTER", - "renderPriority": 4 + "zIndex": 4 } ], "connections": [ @@ -192,7 +192,7 @@ "animated": false, "tooltip": "", "icon": null, - "renderPriority": 5 + "zIndex": 5 }, { "id": "a.(b -> b.c)[0]", @@ -231,7 +231,7 @@ "animated": false, "tooltip": "", "icon": null, - "renderPriority": 5 + "zIndex": 5 }, { "id": "a.(b.c.d -> b)[0]", @@ -278,7 +278,7 @@ "animated": false, "tooltip": "", "icon": null, - "renderPriority": 5 + "zIndex": 5 } ] } diff --git a/e2etests/testdata/stable/circular_dependency/dagre/board.exp.json b/e2etests/testdata/stable/circular_dependency/dagre/board.exp.json index 34f41340e..29ea208e6 100644 --- a/e2etests/testdata/stable/circular_dependency/dagre/board.exp.json +++ b/e2etests/testdata/stable/circular_dependency/dagre/board.exp.json @@ -37,7 +37,7 @@ "labelWidth": 13, "labelHeight": 26, "labelPosition": "INSIDE_MIDDLE_CENTER", - "renderPriority": 1 + "zIndex": 1 }, { "id": "b", @@ -75,7 +75,7 @@ "labelWidth": 13, "labelHeight": 26, "labelPosition": "INSIDE_MIDDLE_CENTER", - "renderPriority": 1 + "zIndex": 1 }, { "id": "c", @@ -113,7 +113,7 @@ "labelWidth": 13, "labelHeight": 26, "labelPosition": "INSIDE_MIDDLE_CENTER", - "renderPriority": 1 + "zIndex": 1 } ], "connections": [ @@ -163,7 +163,7 @@ "animated": false, "tooltip": "", "icon": null, - "renderPriority": 2 + "zIndex": 2 }, { "id": "(b -> c)[0]", @@ -211,7 +211,7 @@ "animated": false, "tooltip": "", "icon": null, - "renderPriority": 2 + "zIndex": 2 }, { "id": "(c -> b)[0]", @@ -259,7 +259,7 @@ "animated": false, "tooltip": "", "icon": null, - "renderPriority": 2 + "zIndex": 2 }, { "id": "(b -> a)[0]", @@ -307,7 +307,7 @@ "animated": false, "tooltip": "", "icon": null, - "renderPriority": 2 + "zIndex": 2 } ] } diff --git a/e2etests/testdata/stable/circular_dependency/elk/board.exp.json b/e2etests/testdata/stable/circular_dependency/elk/board.exp.json index 789996fdd..73a5d471f 100644 --- a/e2etests/testdata/stable/circular_dependency/elk/board.exp.json +++ b/e2etests/testdata/stable/circular_dependency/elk/board.exp.json @@ -37,7 +37,7 @@ "labelWidth": 13, "labelHeight": 26, "labelPosition": "INSIDE_MIDDLE_CENTER", - "renderPriority": 1 + "zIndex": 1 }, { "id": "b", @@ -75,7 +75,7 @@ "labelWidth": 13, "labelHeight": 26, "labelPosition": "INSIDE_MIDDLE_CENTER", - "renderPriority": 1 + "zIndex": 1 }, { "id": "c", @@ -113,7 +113,7 @@ "labelWidth": 13, "labelHeight": 26, "labelPosition": "INSIDE_MIDDLE_CENTER", - "renderPriority": 1 + "zIndex": 1 } ], "connections": [ @@ -154,7 +154,7 @@ "animated": false, "tooltip": "", "icon": null, - "renderPriority": 2 + "zIndex": 2 }, { "id": "(b -> c)[0]", @@ -193,7 +193,7 @@ "animated": false, "tooltip": "", "icon": null, - "renderPriority": 2 + "zIndex": 2 }, { "id": "(c -> b)[0]", @@ -232,7 +232,7 @@ "animated": false, "tooltip": "", "icon": null, - "renderPriority": 2 + "zIndex": 2 }, { "id": "(b -> a)[0]", @@ -271,7 +271,7 @@ "animated": false, "tooltip": "", "icon": null, - "renderPriority": 2 + "zIndex": 2 } ] } diff --git a/e2etests/testdata/stable/class/dagre/board.exp.json b/e2etests/testdata/stable/class/dagre/board.exp.json index bcd0af21a..c473b8cfc 100644 --- a/e2etests/testdata/stable/class/dagre/board.exp.json +++ b/e2etests/testdata/stable/class/dagre/board.exp.json @@ -68,7 +68,7 @@ "underline": false, "labelWidth": 150, "labelHeight": 36, - "renderPriority": 1 + "zIndex": 1 } ], "connections": [] diff --git a/e2etests/testdata/stable/class/elk/board.exp.json b/e2etests/testdata/stable/class/elk/board.exp.json index b1b21ae18..7e6c29ddc 100644 --- a/e2etests/testdata/stable/class/elk/board.exp.json +++ b/e2etests/testdata/stable/class/elk/board.exp.json @@ -68,7 +68,7 @@ "underline": false, "labelWidth": 150, "labelHeight": 36, - "renderPriority": 1 + "zIndex": 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 9e17997bb..cd182c555 100644 --- a/e2etests/testdata/stable/code_snippet/dagre/board.exp.json +++ b/e2etests/testdata/stable/code_snippet/dagre/board.exp.json @@ -36,7 +36,7 @@ "underline": false, "labelWidth": 755, "labelHeight": 166, - "renderPriority": 1 + "zIndex": 1 }, { "id": "x", @@ -74,7 +74,7 @@ "labelWidth": 13, "labelHeight": 26, "labelPosition": "INSIDE_MIDDLE_CENTER", - "renderPriority": 1 + "zIndex": 1 }, { "id": "y", @@ -112,7 +112,7 @@ "labelWidth": 14, "labelHeight": 26, "labelPosition": "INSIDE_MIDDLE_CENTER", - "renderPriority": 1 + "zIndex": 1 } ], "connections": [ @@ -162,7 +162,7 @@ "animated": false, "tooltip": "", "icon": null, - "renderPriority": 2 + "zIndex": 2 }, { "id": "(hey -> y)[0]", @@ -210,7 +210,7 @@ "animated": false, "tooltip": "", "icon": null, - "renderPriority": 2 + "zIndex": 2 } ] } diff --git a/e2etests/testdata/stable/code_snippet/elk/board.exp.json b/e2etests/testdata/stable/code_snippet/elk/board.exp.json index a3c075e00..4dacb85c4 100644 --- a/e2etests/testdata/stable/code_snippet/elk/board.exp.json +++ b/e2etests/testdata/stable/code_snippet/elk/board.exp.json @@ -36,7 +36,7 @@ "underline": false, "labelWidth": 755, "labelHeight": 166, - "renderPriority": 1 + "zIndex": 1 }, { "id": "x", @@ -74,7 +74,7 @@ "labelWidth": 13, "labelHeight": 26, "labelPosition": "INSIDE_MIDDLE_CENTER", - "renderPriority": 1 + "zIndex": 1 }, { "id": "y", @@ -112,7 +112,7 @@ "labelWidth": 14, "labelHeight": 26, "labelPosition": "INSIDE_MIDDLE_CENTER", - "renderPriority": 1 + "zIndex": 1 } ], "connections": [ @@ -153,7 +153,7 @@ "animated": false, "tooltip": "", "icon": null, - "renderPriority": 2 + "zIndex": 2 }, { "id": "(hey -> y)[0]", @@ -192,7 +192,7 @@ "animated": false, "tooltip": "", "icon": null, - "renderPriority": 2 + "zIndex": 2 } ] } diff --git a/e2etests/testdata/stable/connected_container/dagre/board.exp.json b/e2etests/testdata/stable/connected_container/dagre/board.exp.json index f1beb9a58..8f6a6dfac 100644 --- a/e2etests/testdata/stable/connected_container/dagre/board.exp.json +++ b/e2etests/testdata/stable/connected_container/dagre/board.exp.json @@ -37,7 +37,7 @@ "labelWidth": 17, "labelHeight": 41, "labelPosition": "INSIDE_TOP_CENTER", - "renderPriority": 1 + "zIndex": 1 }, { "id": "a.b", @@ -75,7 +75,7 @@ "labelWidth": 13, "labelHeight": 26, "labelPosition": "INSIDE_MIDDLE_CENTER", - "renderPriority": 2 + "zIndex": 2 }, { "id": "c", @@ -113,7 +113,7 @@ "labelWidth": 17, "labelHeight": 41, "labelPosition": "INSIDE_TOP_CENTER", - "renderPriority": 1 + "zIndex": 1 }, { "id": "c.d", @@ -151,7 +151,7 @@ "labelWidth": 14, "labelHeight": 26, "labelPosition": "INSIDE_MIDDLE_CENTER", - "renderPriority": 2 + "zIndex": 2 }, { "id": "f", @@ -189,7 +189,7 @@ "labelWidth": 14, "labelHeight": 41, "labelPosition": "INSIDE_TOP_CENTER", - "renderPriority": 1 + "zIndex": 1 }, { "id": "f.h", @@ -227,7 +227,7 @@ "labelWidth": 16, "labelHeight": 36, "labelPosition": "INSIDE_TOP_CENTER", - "renderPriority": 2 + "zIndex": 2 }, { "id": "f.h.g", @@ -265,7 +265,7 @@ "labelWidth": 14, "labelHeight": 26, "labelPosition": "INSIDE_MIDDLE_CENTER", - "renderPriority": 3 + "zIndex": 3 } ], "connections": [ @@ -327,7 +327,7 @@ "animated": false, "tooltip": "", "icon": null, - "renderPriority": 4 + "zIndex": 4 }, { "id": "(c.d -> f.h.g)[0]", @@ -399,7 +399,7 @@ "animated": false, "tooltip": "", "icon": null, - "renderPriority": 4 + "zIndex": 4 } ] } diff --git a/e2etests/testdata/stable/connected_container/elk/board.exp.json b/e2etests/testdata/stable/connected_container/elk/board.exp.json index 5538d2a86..a2270ad4a 100644 --- a/e2etests/testdata/stable/connected_container/elk/board.exp.json +++ b/e2etests/testdata/stable/connected_container/elk/board.exp.json @@ -37,7 +37,7 @@ "labelWidth": 17, "labelHeight": 41, "labelPosition": "INSIDE_TOP_CENTER", - "renderPriority": 1 + "zIndex": 1 }, { "id": "a.b", @@ -75,7 +75,7 @@ "labelWidth": 13, "labelHeight": 26, "labelPosition": "INSIDE_MIDDLE_CENTER", - "renderPriority": 2 + "zIndex": 2 }, { "id": "c", @@ -113,7 +113,7 @@ "labelWidth": 17, "labelHeight": 41, "labelPosition": "INSIDE_TOP_CENTER", - "renderPriority": 1 + "zIndex": 1 }, { "id": "c.d", @@ -151,7 +151,7 @@ "labelWidth": 14, "labelHeight": 26, "labelPosition": "INSIDE_MIDDLE_CENTER", - "renderPriority": 2 + "zIndex": 2 }, { "id": "f", @@ -189,7 +189,7 @@ "labelWidth": 14, "labelHeight": 41, "labelPosition": "INSIDE_TOP_CENTER", - "renderPriority": 1 + "zIndex": 1 }, { "id": "f.h", @@ -227,7 +227,7 @@ "labelWidth": 16, "labelHeight": 36, "labelPosition": "INSIDE_TOP_CENTER", - "renderPriority": 2 + "zIndex": 2 }, { "id": "f.h.g", @@ -265,7 +265,7 @@ "labelWidth": 14, "labelHeight": 26, "labelPosition": "INSIDE_MIDDLE_CENTER", - "renderPriority": 3 + "zIndex": 3 } ], "connections": [ @@ -306,7 +306,7 @@ "animated": false, "tooltip": "", "icon": null, - "renderPriority": 4 + "zIndex": 4 }, { "id": "(c.d -> f.h.g)[0]", @@ -345,7 +345,7 @@ "animated": false, "tooltip": "", "icon": null, - "renderPriority": 4 + "zIndex": 4 } ] } diff --git a/e2etests/testdata/stable/container_edges/dagre/board.exp.json b/e2etests/testdata/stable/container_edges/dagre/board.exp.json index 8a6a6faf4..9083f817c 100644 --- a/e2etests/testdata/stable/container_edges/dagre/board.exp.json +++ b/e2etests/testdata/stable/container_edges/dagre/board.exp.json @@ -37,7 +37,7 @@ "labelWidth": 13, "labelHeight": 26, "labelPosition": "INSIDE_MIDDLE_CENTER", - "renderPriority": 1 + "zIndex": 1 }, { "id": "g", @@ -75,7 +75,7 @@ "labelWidth": 18, "labelHeight": 41, "labelPosition": "INSIDE_TOP_CENTER", - "renderPriority": 1 + "zIndex": 1 }, { "id": "g.b", @@ -113,7 +113,7 @@ "labelWidth": 13, "labelHeight": 26, "labelPosition": "INSIDE_MIDDLE_CENTER", - "renderPriority": 2 + "zIndex": 2 }, { "id": "d", @@ -151,7 +151,7 @@ "labelWidth": 18, "labelHeight": 41, "labelPosition": "INSIDE_TOP_CENTER", - "renderPriority": 1 + "zIndex": 1 }, { "id": "d.h", @@ -189,7 +189,7 @@ "labelWidth": 16, "labelHeight": 36, "labelPosition": "INSIDE_TOP_CENTER", - "renderPriority": 2 + "zIndex": 2 }, { "id": "d.h.c", @@ -227,7 +227,7 @@ "labelWidth": 13, "labelHeight": 26, "labelPosition": "INSIDE_MIDDLE_CENTER", - "renderPriority": 3 + "zIndex": 3 }, { "id": "g.e", @@ -265,7 +265,7 @@ "labelWidth": 13, "labelHeight": 26, "labelPosition": "INSIDE_MIDDLE_CENTER", - "renderPriority": 2 + "zIndex": 2 }, { "id": "f", @@ -303,7 +303,7 @@ "labelWidth": 11, "labelHeight": 26, "labelPosition": "INSIDE_MIDDLE_CENTER", - "renderPriority": 1 + "zIndex": 1 } ], "connections": [ @@ -353,7 +353,7 @@ "animated": false, "tooltip": "", "icon": null, - "renderPriority": 4 + "zIndex": 4 }, { "id": "(g.b -> d.h.c)[0]", @@ -413,7 +413,7 @@ "animated": false, "tooltip": "", "icon": null, - "renderPriority": 4 + "zIndex": 4 }, { "id": "(d -> g.e)[0]", @@ -461,7 +461,7 @@ "animated": false, "tooltip": "", "icon": null, - "renderPriority": 4 + "zIndex": 4 }, { "id": "(g.e -> f)[0]", @@ -509,7 +509,7 @@ "animated": false, "tooltip": "", "icon": null, - "renderPriority": 4 + "zIndex": 4 }, { "id": "(f -> g)[0]", @@ -557,7 +557,7 @@ "animated": false, "tooltip": "", "icon": null, - "renderPriority": 4 + "zIndex": 4 }, { "id": "(g -> d.h)[0]", @@ -605,7 +605,7 @@ "animated": false, "tooltip": "", "icon": null, - "renderPriority": 4 + "zIndex": 4 } ] } diff --git a/e2etests/testdata/stable/container_edges/elk/board.exp.json b/e2etests/testdata/stable/container_edges/elk/board.exp.json index 8dd4c0f0b..396818f4d 100644 --- a/e2etests/testdata/stable/container_edges/elk/board.exp.json +++ b/e2etests/testdata/stable/container_edges/elk/board.exp.json @@ -37,7 +37,7 @@ "labelWidth": 13, "labelHeight": 26, "labelPosition": "INSIDE_MIDDLE_CENTER", - "renderPriority": 1 + "zIndex": 1 }, { "id": "g", @@ -75,7 +75,7 @@ "labelWidth": 18, "labelHeight": 41, "labelPosition": "INSIDE_TOP_CENTER", - "renderPriority": 1 + "zIndex": 1 }, { "id": "g.b", @@ -113,7 +113,7 @@ "labelWidth": 13, "labelHeight": 26, "labelPosition": "INSIDE_MIDDLE_CENTER", - "renderPriority": 2 + "zIndex": 2 }, { "id": "d", @@ -151,7 +151,7 @@ "labelWidth": 18, "labelHeight": 41, "labelPosition": "INSIDE_TOP_CENTER", - "renderPriority": 1 + "zIndex": 1 }, { "id": "d.h", @@ -189,7 +189,7 @@ "labelWidth": 16, "labelHeight": 36, "labelPosition": "INSIDE_TOP_CENTER", - "renderPriority": 2 + "zIndex": 2 }, { "id": "d.h.c", @@ -227,7 +227,7 @@ "labelWidth": 13, "labelHeight": 26, "labelPosition": "INSIDE_MIDDLE_CENTER", - "renderPriority": 3 + "zIndex": 3 }, { "id": "g.e", @@ -265,7 +265,7 @@ "labelWidth": 13, "labelHeight": 26, "labelPosition": "INSIDE_MIDDLE_CENTER", - "renderPriority": 2 + "zIndex": 2 }, { "id": "f", @@ -303,7 +303,7 @@ "labelWidth": 11, "labelHeight": 26, "labelPosition": "INSIDE_MIDDLE_CENTER", - "renderPriority": 1 + "zIndex": 1 } ], "connections": [ @@ -344,7 +344,7 @@ "animated": false, "tooltip": "", "icon": null, - "renderPriority": 4 + "zIndex": 4 }, { "id": "(g.b -> d.h.c)[0]", @@ -383,7 +383,7 @@ "animated": false, "tooltip": "", "icon": null, - "renderPriority": 4 + "zIndex": 4 }, { "id": "(d -> g.e)[0]", @@ -438,7 +438,7 @@ "animated": false, "tooltip": "", "icon": null, - "renderPriority": 4 + "zIndex": 4 }, { "id": "(g.e -> f)[0]", @@ -485,7 +485,7 @@ "animated": false, "tooltip": "", "icon": null, - "renderPriority": 4 + "zIndex": 4 }, { "id": "(f -> g)[0]", @@ -532,7 +532,7 @@ "animated": false, "tooltip": "", "icon": null, - "renderPriority": 4 + "zIndex": 4 }, { "id": "(g -> d.h)[0]", @@ -571,7 +571,7 @@ "animated": false, "tooltip": "", "icon": null, - "renderPriority": 4 + "zIndex": 4 } ] } diff --git a/e2etests/testdata/stable/dense/dagre/board.exp.json b/e2etests/testdata/stable/dense/dagre/board.exp.json index 95d37e599..1f047852d 100644 --- a/e2etests/testdata/stable/dense/dagre/board.exp.json +++ b/e2etests/testdata/stable/dense/dagre/board.exp.json @@ -37,7 +37,7 @@ "labelWidth": 13, "labelHeight": 26, "labelPosition": "INSIDE_MIDDLE_CENTER", - "renderPriority": 1 + "zIndex": 1 }, { "id": "b", @@ -75,7 +75,7 @@ "labelWidth": 13, "labelHeight": 26, "labelPosition": "INSIDE_MIDDLE_CENTER", - "renderPriority": 1 + "zIndex": 1 }, { "id": "c", @@ -113,7 +113,7 @@ "labelWidth": 13, "labelHeight": 26, "labelPosition": "INSIDE_MIDDLE_CENTER", - "renderPriority": 1 + "zIndex": 1 }, { "id": "d", @@ -151,7 +151,7 @@ "labelWidth": 14, "labelHeight": 26, "labelPosition": "INSIDE_MIDDLE_CENTER", - "renderPriority": 1 + "zIndex": 1 }, { "id": "e", @@ -189,7 +189,7 @@ "labelWidth": 13, "labelHeight": 26, "labelPosition": "INSIDE_MIDDLE_CENTER", - "renderPriority": 1 + "zIndex": 1 }, { "id": "f", @@ -227,7 +227,7 @@ "labelWidth": 11, "labelHeight": 26, "labelPosition": "INSIDE_MIDDLE_CENTER", - "renderPriority": 1 + "zIndex": 1 }, { "id": "g", @@ -265,7 +265,7 @@ "labelWidth": 14, "labelHeight": 26, "labelPosition": "INSIDE_MIDDLE_CENTER", - "renderPriority": 1 + "zIndex": 1 }, { "id": "h", @@ -303,7 +303,7 @@ "labelWidth": 13, "labelHeight": 26, "labelPosition": "INSIDE_MIDDLE_CENTER", - "renderPriority": 1 + "zIndex": 1 }, { "id": "i", @@ -341,7 +341,7 @@ "labelWidth": 9, "labelHeight": 26, "labelPosition": "INSIDE_MIDDLE_CENTER", - "renderPriority": 1 + "zIndex": 1 }, { "id": "j", @@ -379,7 +379,7 @@ "labelWidth": 10, "labelHeight": 26, "labelPosition": "INSIDE_MIDDLE_CENTER", - "renderPriority": 1 + "zIndex": 1 }, { "id": "k", @@ -417,7 +417,7 @@ "labelWidth": 13, "labelHeight": 26, "labelPosition": "INSIDE_MIDDLE_CENTER", - "renderPriority": 1 + "zIndex": 1 }, { "id": "l", @@ -455,7 +455,7 @@ "labelWidth": 9, "labelHeight": 26, "labelPosition": "INSIDE_MIDDLE_CENTER", - "renderPriority": 1 + "zIndex": 1 }, { "id": "m", @@ -493,7 +493,7 @@ "labelWidth": 17, "labelHeight": 26, "labelPosition": "INSIDE_MIDDLE_CENTER", - "renderPriority": 1 + "zIndex": 1 }, { "id": "n", @@ -531,7 +531,7 @@ "labelWidth": 13, "labelHeight": 26, "labelPosition": "INSIDE_MIDDLE_CENTER", - "renderPriority": 1 + "zIndex": 1 }, { "id": "o", @@ -569,7 +569,7 @@ "labelWidth": 14, "labelHeight": 26, "labelPosition": "INSIDE_MIDDLE_CENTER", - "renderPriority": 1 + "zIndex": 1 }, { "id": "p", @@ -607,7 +607,7 @@ "labelWidth": 13, "labelHeight": 26, "labelPosition": "INSIDE_MIDDLE_CENTER", - "renderPriority": 1 + "zIndex": 1 }, { "id": "q", @@ -645,7 +645,7 @@ "labelWidth": 14, "labelHeight": 26, "labelPosition": "INSIDE_MIDDLE_CENTER", - "renderPriority": 1 + "zIndex": 1 } ], "connections": [ @@ -695,7 +695,7 @@ "animated": false, "tooltip": "", "icon": null, - "renderPriority": 2 + "zIndex": 2 }, { "id": "(c -> b)[0]", @@ -755,7 +755,7 @@ "animated": false, "tooltip": "", "icon": null, - "renderPriority": 2 + "zIndex": 2 }, { "id": "(d -> e)[0]", @@ -815,7 +815,7 @@ "animated": false, "tooltip": "", "icon": null, - "renderPriority": 2 + "zIndex": 2 }, { "id": "(f -> e)[0]", @@ -875,7 +875,7 @@ "animated": false, "tooltip": "", "icon": null, - "renderPriority": 2 + "zIndex": 2 }, { "id": "(b -> f)[0]", @@ -935,7 +935,7 @@ "animated": false, "tooltip": "", "icon": null, - "renderPriority": 2 + "zIndex": 2 }, { "id": "(b -> g)[0]", @@ -983,7 +983,7 @@ "animated": false, "tooltip": "", "icon": null, - "renderPriority": 2 + "zIndex": 2 }, { "id": "(g -> f)[0]", @@ -1031,7 +1031,7 @@ "animated": false, "tooltip": "", "icon": null, - "renderPriority": 2 + "zIndex": 2 }, { "id": "(b -> h)[0]", @@ -1079,7 +1079,7 @@ "animated": false, "tooltip": "", "icon": null, - "renderPriority": 2 + "zIndex": 2 }, { "id": "(b -> i)[0]", @@ -1187,7 +1187,7 @@ "animated": false, "tooltip": "", "icon": null, - "renderPriority": 2 + "zIndex": 2 }, { "id": "(b -> d)[0]", @@ -1247,7 +1247,7 @@ "animated": false, "tooltip": "", "icon": null, - "renderPriority": 2 + "zIndex": 2 }, { "id": "(j -> c)[0]", @@ -1295,7 +1295,7 @@ "animated": false, "tooltip": "", "icon": null, - "renderPriority": 2 + "zIndex": 2 }, { "id": "(j -> a)[0]", @@ -1355,7 +1355,7 @@ "animated": false, "tooltip": "", "icon": null, - "renderPriority": 2 + "zIndex": 2 }, { "id": "(b -> j)[0]", @@ -1403,7 +1403,7 @@ "animated": false, "tooltip": "", "icon": null, - "renderPriority": 2 + "zIndex": 2 }, { "id": "(i -> k)[0]", @@ -1451,7 +1451,7 @@ "animated": false, "tooltip": "", "icon": null, - "renderPriority": 2 + "zIndex": 2 }, { "id": "(d -> l)[0]", @@ -1499,7 +1499,7 @@ "animated": false, "tooltip": "", "icon": null, - "renderPriority": 2 + "zIndex": 2 }, { "id": "(l -> e)[0]", @@ -1547,7 +1547,7 @@ "animated": false, "tooltip": "", "icon": null, - "renderPriority": 2 + "zIndex": 2 }, { "id": "(m -> l)[0]", @@ -1595,7 +1595,7 @@ "animated": false, "tooltip": "", "icon": null, - "renderPriority": 2 + "zIndex": 2 }, { "id": "(m -> n)[0]", @@ -1643,7 +1643,7 @@ "animated": false, "tooltip": "", "icon": null, - "renderPriority": 2 + "zIndex": 2 }, { "id": "(n -> i)[0]", @@ -1691,7 +1691,7 @@ "animated": false, "tooltip": "", "icon": null, - "renderPriority": 2 + "zIndex": 2 }, { "id": "(d -> n)[0]", @@ -1739,7 +1739,7 @@ "animated": false, "tooltip": "", "icon": null, - "renderPriority": 2 + "zIndex": 2 }, { "id": "(f -> n)[0]", @@ -1787,7 +1787,7 @@ "animated": false, "tooltip": "", "icon": null, - "renderPriority": 2 + "zIndex": 2 }, { "id": "(b -> o)[0]", @@ -1835,7 +1835,7 @@ "animated": false, "tooltip": "", "icon": null, - "renderPriority": 2 + "zIndex": 2 }, { "id": "(p -> l)[0]", @@ -1883,7 +1883,7 @@ "animated": false, "tooltip": "", "icon": null, - "renderPriority": 2 + "zIndex": 2 }, { "id": "(e -> q)[0]", @@ -1931,7 +1931,7 @@ "animated": false, "tooltip": "", "icon": null, - "renderPriority": 2 + "zIndex": 2 } ] } diff --git a/e2etests/testdata/stable/dense/elk/board.exp.json b/e2etests/testdata/stable/dense/elk/board.exp.json index 467b4fef7..45aaf4214 100644 --- a/e2etests/testdata/stable/dense/elk/board.exp.json +++ b/e2etests/testdata/stable/dense/elk/board.exp.json @@ -37,7 +37,7 @@ "labelWidth": 13, "labelHeight": 26, "labelPosition": "INSIDE_MIDDLE_CENTER", - "renderPriority": 1 + "zIndex": 1 }, { "id": "b", @@ -75,7 +75,7 @@ "labelWidth": 13, "labelHeight": 26, "labelPosition": "INSIDE_MIDDLE_CENTER", - "renderPriority": 1 + "zIndex": 1 }, { "id": "c", @@ -113,7 +113,7 @@ "labelWidth": 13, "labelHeight": 26, "labelPosition": "INSIDE_MIDDLE_CENTER", - "renderPriority": 1 + "zIndex": 1 }, { "id": "d", @@ -151,7 +151,7 @@ "labelWidth": 14, "labelHeight": 26, "labelPosition": "INSIDE_MIDDLE_CENTER", - "renderPriority": 1 + "zIndex": 1 }, { "id": "e", @@ -189,7 +189,7 @@ "labelWidth": 13, "labelHeight": 26, "labelPosition": "INSIDE_MIDDLE_CENTER", - "renderPriority": 1 + "zIndex": 1 }, { "id": "f", @@ -227,7 +227,7 @@ "labelWidth": 11, "labelHeight": 26, "labelPosition": "INSIDE_MIDDLE_CENTER", - "renderPriority": 1 + "zIndex": 1 }, { "id": "g", @@ -265,7 +265,7 @@ "labelWidth": 14, "labelHeight": 26, "labelPosition": "INSIDE_MIDDLE_CENTER", - "renderPriority": 1 + "zIndex": 1 }, { "id": "h", @@ -303,7 +303,7 @@ "labelWidth": 13, "labelHeight": 26, "labelPosition": "INSIDE_MIDDLE_CENTER", - "renderPriority": 1 + "zIndex": 1 }, { "id": "i", @@ -341,7 +341,7 @@ "labelWidth": 9, "labelHeight": 26, "labelPosition": "INSIDE_MIDDLE_CENTER", - "renderPriority": 1 + "zIndex": 1 }, { "id": "j", @@ -379,7 +379,7 @@ "labelWidth": 10, "labelHeight": 26, "labelPosition": "INSIDE_MIDDLE_CENTER", - "renderPriority": 1 + "zIndex": 1 }, { "id": "k", @@ -417,7 +417,7 @@ "labelWidth": 13, "labelHeight": 26, "labelPosition": "INSIDE_MIDDLE_CENTER", - "renderPriority": 1 + "zIndex": 1 }, { "id": "l", @@ -455,7 +455,7 @@ "labelWidth": 9, "labelHeight": 26, "labelPosition": "INSIDE_MIDDLE_CENTER", - "renderPriority": 1 + "zIndex": 1 }, { "id": "m", @@ -493,7 +493,7 @@ "labelWidth": 17, "labelHeight": 26, "labelPosition": "INSIDE_MIDDLE_CENTER", - "renderPriority": 1 + "zIndex": 1 }, { "id": "n", @@ -531,7 +531,7 @@ "labelWidth": 13, "labelHeight": 26, "labelPosition": "INSIDE_MIDDLE_CENTER", - "renderPriority": 1 + "zIndex": 1 }, { "id": "o", @@ -569,7 +569,7 @@ "labelWidth": 14, "labelHeight": 26, "labelPosition": "INSIDE_MIDDLE_CENTER", - "renderPriority": 1 + "zIndex": 1 }, { "id": "p", @@ -607,7 +607,7 @@ "labelWidth": 13, "labelHeight": 26, "labelPosition": "INSIDE_MIDDLE_CENTER", - "renderPriority": 1 + "zIndex": 1 }, { "id": "q", @@ -645,7 +645,7 @@ "labelWidth": 14, "labelHeight": 26, "labelPosition": "INSIDE_MIDDLE_CENTER", - "renderPriority": 1 + "zIndex": 1 } ], "connections": [ @@ -686,7 +686,7 @@ "animated": false, "tooltip": "", "icon": null, - "renderPriority": 2 + "zIndex": 2 }, { "id": "(c -> b)[0]", @@ -733,7 +733,7 @@ "animated": false, "tooltip": "", "icon": null, - "renderPriority": 2 + "zIndex": 2 }, { "id": "(d -> e)[0]", @@ -780,7 +780,7 @@ "animated": false, "tooltip": "", "icon": null, - "renderPriority": 2 + "zIndex": 2 }, { "id": "(f -> e)[0]", @@ -827,7 +827,7 @@ "animated": false, "tooltip": "", "icon": null, - "renderPriority": 2 + "zIndex": 2 }, { "id": "(b -> f)[0]", @@ -874,7 +874,7 @@ "animated": false, "tooltip": "", "icon": null, - "renderPriority": 2 + "zIndex": 2 }, { "id": "(b -> g)[0]", @@ -921,7 +921,7 @@ "animated": false, "tooltip": "", "icon": null, - "renderPriority": 2 + "zIndex": 2 }, { "id": "(g -> f)[0]", @@ -968,7 +968,7 @@ "animated": false, "tooltip": "", "icon": null, - "renderPriority": 2 + "zIndex": 2 }, { "id": "(b -> h)[0]", @@ -1015,7 +1015,7 @@ "animated": false, "tooltip": "", "icon": null, - "renderPriority": 2 + "zIndex": 2 }, { "id": "(b -> i)[0]", @@ -1070,7 +1070,7 @@ "animated": false, "tooltip": "", "icon": null, - "renderPriority": 2 + "zIndex": 2 }, { "id": "(b -> d)[0]", @@ -1109,7 +1109,7 @@ "animated": false, "tooltip": "", "icon": null, - "renderPriority": 2 + "zIndex": 2 }, { "id": "(j -> c)[0]", @@ -1148,7 +1148,7 @@ "animated": false, "tooltip": "", "icon": null, - "renderPriority": 2 + "zIndex": 2 }, { "id": "(j -> a)[0]", @@ -1195,7 +1195,7 @@ "animated": false, "tooltip": "", "icon": null, - "renderPriority": 2 + "zIndex": 2 }, { "id": "(b -> j)[0]", @@ -1250,7 +1250,7 @@ "animated": false, "tooltip": "", "icon": null, - "renderPriority": 2 + "zIndex": 2 }, { "id": "(i -> k)[0]", @@ -1289,7 +1289,7 @@ "animated": false, "tooltip": "", "icon": null, - "renderPriority": 2 + "zIndex": 2 }, { "id": "(d -> l)[0]", @@ -1336,7 +1336,7 @@ "animated": false, "tooltip": "", "icon": null, - "renderPriority": 2 + "zIndex": 2 }, { "id": "(l -> e)[0]", @@ -1383,7 +1383,7 @@ "animated": false, "tooltip": "", "icon": null, - "renderPriority": 2 + "zIndex": 2 }, { "id": "(m -> l)[0]", @@ -1430,7 +1430,7 @@ "animated": false, "tooltip": "", "icon": null, - "renderPriority": 2 + "zIndex": 2 }, { "id": "(m -> n)[0]", @@ -1477,7 +1477,7 @@ "animated": false, "tooltip": "", "icon": null, - "renderPriority": 2 + "zIndex": 2 }, { "id": "(n -> i)[0]", @@ -1516,7 +1516,7 @@ "animated": false, "tooltip": "", "icon": null, - "renderPriority": 2 + "zIndex": 2 }, { "id": "(d -> n)[0]", @@ -1555,7 +1555,7 @@ "animated": false, "tooltip": "", "icon": null, - "renderPriority": 2 + "zIndex": 2 }, { "id": "(f -> n)[0]", @@ -1602,7 +1602,7 @@ "animated": false, "tooltip": "", "icon": null, - "renderPriority": 2 + "zIndex": 2 }, { "id": "(b -> o)[0]", @@ -1649,7 +1649,7 @@ "animated": false, "tooltip": "", "icon": null, - "renderPriority": 2 + "zIndex": 2 }, { "id": "(p -> l)[0]", @@ -1688,7 +1688,7 @@ "animated": false, "tooltip": "", "icon": null, - "renderPriority": 2 + "zIndex": 2 }, { "id": "(e -> q)[0]", @@ -1727,7 +1727,7 @@ "animated": false, "tooltip": "", "icon": null, - "renderPriority": 2 + "zIndex": 2 } ] } diff --git a/e2etests/testdata/stable/different_subgraphs/dagre/board.exp.json b/e2etests/testdata/stable/different_subgraphs/dagre/board.exp.json index 532972a34..dca8ec276 100644 --- a/e2etests/testdata/stable/different_subgraphs/dagre/board.exp.json +++ b/e2etests/testdata/stable/different_subgraphs/dagre/board.exp.json @@ -37,7 +37,7 @@ "labelWidth": 77, "labelHeight": 41, "labelPosition": "INSIDE_TOP_CENTER", - "renderPriority": 1 + "zIndex": 1 }, { "id": "a", @@ -75,7 +75,7 @@ "labelWidth": 13, "labelHeight": 26, "labelPosition": "INSIDE_MIDDLE_CENTER", - "renderPriority": 1 + "zIndex": 1 }, { "id": "tree", @@ -113,7 +113,7 @@ "labelWidth": 34, "labelHeight": 26, "labelPosition": "INSIDE_MIDDLE_CENTER", - "renderPriority": 1 + "zIndex": 1 }, { "id": "and", @@ -151,7 +151,7 @@ "labelWidth": 32, "labelHeight": 26, "labelPosition": "INSIDE_MIDDLE_CENTER", - "renderPriority": 1 + "zIndex": 1 }, { "id": "nodes", @@ -189,7 +189,7 @@ "labelWidth": 47, "labelHeight": 26, "labelPosition": "INSIDE_MIDDLE_CENTER", - "renderPriority": 1 + "zIndex": 1 }, { "id": "some", @@ -227,7 +227,7 @@ "labelWidth": 43, "labelHeight": 26, "labelPosition": "INSIDE_MIDDLE_CENTER", - "renderPriority": 1 + "zIndex": 1 }, { "id": "more", @@ -265,7 +265,7 @@ "labelWidth": 41, "labelHeight": 26, "labelPosition": "INSIDE_MIDDLE_CENTER", - "renderPriority": 1 + "zIndex": 1 }, { "id": "many", @@ -303,7 +303,7 @@ "labelWidth": 45, "labelHeight": 26, "labelPosition": "INSIDE_MIDDLE_CENTER", - "renderPriority": 1 + "zIndex": 1 }, { "id": "then", @@ -341,7 +341,7 @@ "labelWidth": 38, "labelHeight": 26, "labelPosition": "INSIDE_MIDDLE_CENTER", - "renderPriority": 1 + "zIndex": 1 }, { "id": "here", @@ -379,7 +379,7 @@ "labelWidth": 36, "labelHeight": 26, "labelPosition": "INSIDE_MIDDLE_CENTER", - "renderPriority": 1 + "zIndex": 1 }, { "id": "you", @@ -417,7 +417,7 @@ "labelWidth": 32, "labelHeight": 26, "labelPosition": "INSIDE_MIDDLE_CENTER", - "renderPriority": 1 + "zIndex": 1 }, { "id": "have", @@ -455,7 +455,7 @@ "labelWidth": 38, "labelHeight": 26, "labelPosition": "INSIDE_MIDDLE_CENTER", - "renderPriority": 1 + "zIndex": 1 }, { "id": "hierarchy", @@ -493,7 +493,7 @@ "labelWidth": 73, "labelHeight": 26, "labelPosition": "INSIDE_MIDDLE_CENTER", - "renderPriority": 1 + "zIndex": 1 }, { "id": "another", @@ -531,7 +531,7 @@ "labelWidth": 63, "labelHeight": 26, "labelPosition": "INSIDE_MIDDLE_CENTER", - "renderPriority": 1 + "zIndex": 1 }, { "id": "of", @@ -569,7 +569,7 @@ "labelWidth": 20, "labelHeight": 26, "labelPosition": "INSIDE_MIDDLE_CENTER", - "renderPriority": 1 + "zIndex": 1 }, { "id": "nesting", @@ -607,7 +607,7 @@ "labelWidth": 58, "labelHeight": 26, "labelPosition": "INSIDE_MIDDLE_CENTER", - "renderPriority": 1 + "zIndex": 1 }, { "id": "trees", @@ -645,7 +645,7 @@ "labelWidth": 42, "labelHeight": 26, "labelPosition": "INSIDE_MIDDLE_CENTER", - "renderPriority": 1 + "zIndex": 1 }, { "id": "finally.a", @@ -683,7 +683,7 @@ "labelWidth": 13, "labelHeight": 26, "labelPosition": "INSIDE_MIDDLE_CENTER", - "renderPriority": 2 + "zIndex": 2 }, { "id": "finally.tree", @@ -721,7 +721,7 @@ "labelWidth": 34, "labelHeight": 26, "labelPosition": "INSIDE_MIDDLE_CENTER", - "renderPriority": 2 + "zIndex": 2 }, { "id": "finally.inside", @@ -759,7 +759,7 @@ "labelWidth": 48, "labelHeight": 26, "labelPosition": "INSIDE_MIDDLE_CENTER", - "renderPriority": 2 + "zIndex": 2 }, { "id": "finally.hierarchy", @@ -797,7 +797,7 @@ "labelWidth": 73, "labelHeight": 26, "labelPosition": "INSIDE_MIDDLE_CENTER", - "renderPriority": 2 + "zIndex": 2 }, { "id": "finally.root", @@ -835,7 +835,7 @@ "labelWidth": 35, "labelHeight": 26, "labelPosition": "INSIDE_MIDDLE_CENTER", - "renderPriority": 2 + "zIndex": 2 } ], "connections": [ @@ -885,7 +885,7 @@ "animated": false, "tooltip": "", "icon": null, - "renderPriority": 3 + "zIndex": 3 }, { "id": "(a -> and)[0]", @@ -933,7 +933,7 @@ "animated": false, "tooltip": "", "icon": null, - "renderPriority": 3 + "zIndex": 3 }, { "id": "(a -> nodes)[0]", @@ -981,7 +981,7 @@ "animated": false, "tooltip": "", "icon": null, - "renderPriority": 3 + "zIndex": 3 }, { "id": "(and -> some)[0]", @@ -1029,7 +1029,7 @@ "animated": false, "tooltip": "", "icon": null, - "renderPriority": 3 + "zIndex": 3 }, { "id": "(tree -> more)[0]", @@ -1077,7 +1077,7 @@ "animated": false, "tooltip": "", "icon": null, - "renderPriority": 3 + "zIndex": 3 }, { "id": "(tree -> many)[0]", @@ -1125,7 +1125,7 @@ "animated": false, "tooltip": "", "icon": null, - "renderPriority": 3 + "zIndex": 3 }, { "id": "(then -> here)[0]", @@ -1173,7 +1173,7 @@ "animated": false, "tooltip": "", "icon": null, - "renderPriority": 3 + "zIndex": 3 }, { "id": "(here -> you)[0]", @@ -1221,7 +1221,7 @@ "animated": false, "tooltip": "", "icon": null, - "renderPriority": 3 + "zIndex": 3 }, { "id": "(have -> hierarchy)[0]", @@ -1269,7 +1269,7 @@ "animated": false, "tooltip": "", "icon": null, - "renderPriority": 3 + "zIndex": 3 }, { "id": "(then -> hierarchy)[0]", @@ -1317,7 +1317,7 @@ "animated": false, "tooltip": "", "icon": null, - "renderPriority": 3 + "zIndex": 3 }, { "id": "(finally -> another)[0]", @@ -1365,7 +1365,7 @@ "animated": false, "tooltip": "", "icon": null, - "renderPriority": 3 + "zIndex": 3 }, { "id": "(another -> of)[0]", @@ -1413,7 +1413,7 @@ "animated": false, "tooltip": "", "icon": null, - "renderPriority": 3 + "zIndex": 3 }, { "id": "(nesting -> trees)[0]", @@ -1461,7 +1461,7 @@ "animated": false, "tooltip": "", "icon": null, - "renderPriority": 3 + "zIndex": 3 }, { "id": "(finally -> trees)[0]", @@ -1509,7 +1509,7 @@ "animated": false, "tooltip": "", "icon": null, - "renderPriority": 3 + "zIndex": 3 }, { "id": "finally.(a -> tree)[0]", @@ -1557,7 +1557,7 @@ "animated": false, "tooltip": "", "icon": null, - "renderPriority": 3 + "zIndex": 3 }, { "id": "finally.(inside -> a)[0]", @@ -1605,7 +1605,7 @@ "animated": false, "tooltip": "", "icon": null, - "renderPriority": 3 + "zIndex": 3 }, { "id": "finally.(tree -> hierarchy)[0]", @@ -1653,7 +1653,7 @@ "animated": false, "tooltip": "", "icon": null, - "renderPriority": 3 + "zIndex": 3 }, { "id": "finally.(a -> root)[0]", @@ -1701,7 +1701,7 @@ "animated": false, "tooltip": "", "icon": null, - "renderPriority": 3 + "zIndex": 3 } ] } diff --git a/e2etests/testdata/stable/different_subgraphs/elk/board.exp.json b/e2etests/testdata/stable/different_subgraphs/elk/board.exp.json index 98a4b2393..ea6501360 100644 --- a/e2etests/testdata/stable/different_subgraphs/elk/board.exp.json +++ b/e2etests/testdata/stable/different_subgraphs/elk/board.exp.json @@ -37,7 +37,7 @@ "labelWidth": 77, "labelHeight": 41, "labelPosition": "INSIDE_TOP_CENTER", - "renderPriority": 1 + "zIndex": 1 }, { "id": "a", @@ -75,7 +75,7 @@ "labelWidth": 13, "labelHeight": 26, "labelPosition": "INSIDE_MIDDLE_CENTER", - "renderPriority": 1 + "zIndex": 1 }, { "id": "tree", @@ -113,7 +113,7 @@ "labelWidth": 34, "labelHeight": 26, "labelPosition": "INSIDE_MIDDLE_CENTER", - "renderPriority": 1 + "zIndex": 1 }, { "id": "and", @@ -151,7 +151,7 @@ "labelWidth": 32, "labelHeight": 26, "labelPosition": "INSIDE_MIDDLE_CENTER", - "renderPriority": 1 + "zIndex": 1 }, { "id": "nodes", @@ -189,7 +189,7 @@ "labelWidth": 47, "labelHeight": 26, "labelPosition": "INSIDE_MIDDLE_CENTER", - "renderPriority": 1 + "zIndex": 1 }, { "id": "some", @@ -227,7 +227,7 @@ "labelWidth": 43, "labelHeight": 26, "labelPosition": "INSIDE_MIDDLE_CENTER", - "renderPriority": 1 + "zIndex": 1 }, { "id": "more", @@ -265,7 +265,7 @@ "labelWidth": 41, "labelHeight": 26, "labelPosition": "INSIDE_MIDDLE_CENTER", - "renderPriority": 1 + "zIndex": 1 }, { "id": "many", @@ -303,7 +303,7 @@ "labelWidth": 45, "labelHeight": 26, "labelPosition": "INSIDE_MIDDLE_CENTER", - "renderPriority": 1 + "zIndex": 1 }, { "id": "then", @@ -341,7 +341,7 @@ "labelWidth": 38, "labelHeight": 26, "labelPosition": "INSIDE_MIDDLE_CENTER", - "renderPriority": 1 + "zIndex": 1 }, { "id": "here", @@ -379,7 +379,7 @@ "labelWidth": 36, "labelHeight": 26, "labelPosition": "INSIDE_MIDDLE_CENTER", - "renderPriority": 1 + "zIndex": 1 }, { "id": "you", @@ -417,7 +417,7 @@ "labelWidth": 32, "labelHeight": 26, "labelPosition": "INSIDE_MIDDLE_CENTER", - "renderPriority": 1 + "zIndex": 1 }, { "id": "have", @@ -455,7 +455,7 @@ "labelWidth": 38, "labelHeight": 26, "labelPosition": "INSIDE_MIDDLE_CENTER", - "renderPriority": 1 + "zIndex": 1 }, { "id": "hierarchy", @@ -493,7 +493,7 @@ "labelWidth": 73, "labelHeight": 26, "labelPosition": "INSIDE_MIDDLE_CENTER", - "renderPriority": 1 + "zIndex": 1 }, { "id": "another", @@ -531,7 +531,7 @@ "labelWidth": 63, "labelHeight": 26, "labelPosition": "INSIDE_MIDDLE_CENTER", - "renderPriority": 1 + "zIndex": 1 }, { "id": "of", @@ -569,7 +569,7 @@ "labelWidth": 20, "labelHeight": 26, "labelPosition": "INSIDE_MIDDLE_CENTER", - "renderPriority": 1 + "zIndex": 1 }, { "id": "nesting", @@ -607,7 +607,7 @@ "labelWidth": 58, "labelHeight": 26, "labelPosition": "INSIDE_MIDDLE_CENTER", - "renderPriority": 1 + "zIndex": 1 }, { "id": "trees", @@ -645,7 +645,7 @@ "labelWidth": 42, "labelHeight": 26, "labelPosition": "INSIDE_MIDDLE_CENTER", - "renderPriority": 1 + "zIndex": 1 }, { "id": "finally.a", @@ -683,7 +683,7 @@ "labelWidth": 13, "labelHeight": 26, "labelPosition": "INSIDE_MIDDLE_CENTER", - "renderPriority": 2 + "zIndex": 2 }, { "id": "finally.tree", @@ -721,7 +721,7 @@ "labelWidth": 34, "labelHeight": 26, "labelPosition": "INSIDE_MIDDLE_CENTER", - "renderPriority": 2 + "zIndex": 2 }, { "id": "finally.inside", @@ -759,7 +759,7 @@ "labelWidth": 48, "labelHeight": 26, "labelPosition": "INSIDE_MIDDLE_CENTER", - "renderPriority": 2 + "zIndex": 2 }, { "id": "finally.hierarchy", @@ -797,7 +797,7 @@ "labelWidth": 73, "labelHeight": 26, "labelPosition": "INSIDE_MIDDLE_CENTER", - "renderPriority": 2 + "zIndex": 2 }, { "id": "finally.root", @@ -835,7 +835,7 @@ "labelWidth": 35, "labelHeight": 26, "labelPosition": "INSIDE_MIDDLE_CENTER", - "renderPriority": 2 + "zIndex": 2 } ], "connections": [ @@ -884,7 +884,7 @@ "animated": false, "tooltip": "", "icon": null, - "renderPriority": 3 + "zIndex": 3 }, { "id": "(a -> and)[0]", @@ -931,7 +931,7 @@ "animated": false, "tooltip": "", "icon": null, - "renderPriority": 3 + "zIndex": 3 }, { "id": "(a -> nodes)[0]", @@ -970,7 +970,7 @@ "animated": false, "tooltip": "", "icon": null, - "renderPriority": 3 + "zIndex": 3 }, { "id": "(and -> some)[0]", @@ -1009,7 +1009,7 @@ "animated": false, "tooltip": "", "icon": null, - "renderPriority": 3 + "zIndex": 3 }, { "id": "(tree -> more)[0]", @@ -1048,7 +1048,7 @@ "animated": false, "tooltip": "", "icon": null, - "renderPriority": 3 + "zIndex": 3 }, { "id": "(tree -> many)[0]", @@ -1095,7 +1095,7 @@ "animated": false, "tooltip": "", "icon": null, - "renderPriority": 3 + "zIndex": 3 }, { "id": "(then -> here)[0]", @@ -1134,7 +1134,7 @@ "animated": false, "tooltip": "", "icon": null, - "renderPriority": 3 + "zIndex": 3 }, { "id": "(here -> you)[0]", @@ -1173,7 +1173,7 @@ "animated": false, "tooltip": "", "icon": null, - "renderPriority": 3 + "zIndex": 3 }, { "id": "(have -> hierarchy)[0]", @@ -1212,7 +1212,7 @@ "animated": false, "tooltip": "", "icon": null, - "renderPriority": 3 + "zIndex": 3 }, { "id": "(then -> hierarchy)[0]", @@ -1259,7 +1259,7 @@ "animated": false, "tooltip": "", "icon": null, - "renderPriority": 3 + "zIndex": 3 }, { "id": "(finally -> another)[0]", @@ -1298,7 +1298,7 @@ "animated": false, "tooltip": "", "icon": null, - "renderPriority": 3 + "zIndex": 3 }, { "id": "(another -> of)[0]", @@ -1337,7 +1337,7 @@ "animated": false, "tooltip": "", "icon": null, - "renderPriority": 3 + "zIndex": 3 }, { "id": "(nesting -> trees)[0]", @@ -1376,7 +1376,7 @@ "animated": false, "tooltip": "", "icon": null, - "renderPriority": 3 + "zIndex": 3 }, { "id": "(finally -> trees)[0]", @@ -1423,7 +1423,7 @@ "animated": false, "tooltip": "", "icon": null, - "renderPriority": 3 + "zIndex": 3 }, { "id": "finally.(a -> tree)[0]", @@ -1470,7 +1470,7 @@ "animated": false, "tooltip": "", "icon": null, - "renderPriority": 3 + "zIndex": 3 }, { "id": "finally.(inside -> a)[0]", @@ -1509,7 +1509,7 @@ "animated": false, "tooltip": "", "icon": null, - "renderPriority": 3 + "zIndex": 3 }, { "id": "finally.(tree -> hierarchy)[0]", @@ -1548,7 +1548,7 @@ "animated": false, "tooltip": "", "icon": null, - "renderPriority": 3 + "zIndex": 3 }, { "id": "finally.(a -> root)[0]", @@ -1587,7 +1587,7 @@ "animated": false, "tooltip": "", "icon": null, - "renderPriority": 3 + "zIndex": 3 } ] } diff --git a/e2etests/testdata/stable/font_colors/dagre/board.exp.json b/e2etests/testdata/stable/font_colors/dagre/board.exp.json index d524acac7..e0499e3ac 100644 --- a/e2etests/testdata/stable/font_colors/dagre/board.exp.json +++ b/e2etests/testdata/stable/font_colors/dagre/board.exp.json @@ -37,7 +37,7 @@ "labelWidth": 45, "labelHeight": 26, "labelPosition": "INSIDE_MIDDLE_CENTER", - "renderPriority": 1 + "zIndex": 1 }, { "id": "beta", @@ -75,7 +75,7 @@ "labelWidth": 36, "labelHeight": 26, "labelPosition": "INSIDE_MIDDLE_CENTER", - "renderPriority": 1 + "zIndex": 1 } ], "connections": [ @@ -125,7 +125,7 @@ "animated": false, "tooltip": "", "icon": null, - "renderPriority": 2 + "zIndex": 2 } ] } diff --git a/e2etests/testdata/stable/font_colors/elk/board.exp.json b/e2etests/testdata/stable/font_colors/elk/board.exp.json index 97f5ef1e7..3f4ebe78e 100644 --- a/e2etests/testdata/stable/font_colors/elk/board.exp.json +++ b/e2etests/testdata/stable/font_colors/elk/board.exp.json @@ -37,7 +37,7 @@ "labelWidth": 45, "labelHeight": 26, "labelPosition": "INSIDE_MIDDLE_CENTER", - "renderPriority": 1 + "zIndex": 1 }, { "id": "beta", @@ -75,7 +75,7 @@ "labelWidth": 36, "labelHeight": 26, "labelPosition": "INSIDE_MIDDLE_CENTER", - "renderPriority": 1 + "zIndex": 1 } ], "connections": [ @@ -116,7 +116,7 @@ "animated": false, "tooltip": "", "icon": null, - "renderPriority": 2 + "zIndex": 2 } ] } 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 1a49d7bd3..15f17648d 100644 --- a/e2etests/testdata/stable/giant_markdown_test/dagre/board.exp.json +++ b/e2etests/testdata/stable/giant_markdown_test/dagre/board.exp.json @@ -36,7 +36,7 @@ "underline": false, "labelWidth": 3051, "labelHeight": 4848, - "renderPriority": 1 + "zIndex": 1 }, { "id": "a", @@ -74,7 +74,7 @@ "labelWidth": 13, "labelHeight": 26, "labelPosition": "INSIDE_MIDDLE_CENTER", - "renderPriority": 1 + "zIndex": 1 }, { "id": "b", @@ -112,7 +112,7 @@ "labelWidth": 13, "labelHeight": 26, "labelPosition": "INSIDE_MIDDLE_CENTER", - "renderPriority": 1 + "zIndex": 1 } ], "connections": [ @@ -162,7 +162,7 @@ "animated": false, "tooltip": "", "icon": null, - "renderPriority": 2 + "zIndex": 2 }, { "id": "(md -> b)[0]", @@ -210,7 +210,7 @@ "animated": false, "tooltip": "", "icon": null, - "renderPriority": 2 + "zIndex": 2 } ] } 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 2549b36c1..8be889b9d 100644 --- a/e2etests/testdata/stable/giant_markdown_test/elk/board.exp.json +++ b/e2etests/testdata/stable/giant_markdown_test/elk/board.exp.json @@ -36,7 +36,7 @@ "underline": false, "labelWidth": 3051, "labelHeight": 4848, - "renderPriority": 1 + "zIndex": 1 }, { "id": "a", @@ -74,7 +74,7 @@ "labelWidth": 13, "labelHeight": 26, "labelPosition": "INSIDE_MIDDLE_CENTER", - "renderPriority": 1 + "zIndex": 1 }, { "id": "b", @@ -112,7 +112,7 @@ "labelWidth": 13, "labelHeight": 26, "labelPosition": "INSIDE_MIDDLE_CENTER", - "renderPriority": 1 + "zIndex": 1 } ], "connections": [ @@ -153,7 +153,7 @@ "animated": false, "tooltip": "", "icon": null, - "renderPriority": 2 + "zIndex": 2 }, { "id": "(md -> b)[0]", @@ -192,7 +192,7 @@ "animated": false, "tooltip": "", "icon": null, - "renderPriority": 2 + "zIndex": 2 } ] } diff --git a/e2etests/testdata/stable/hr/dagre/board.exp.json b/e2etests/testdata/stable/hr/dagre/board.exp.json index 3b8e292c5..3b366c266 100644 --- a/e2etests/testdata/stable/hr/dagre/board.exp.json +++ b/e2etests/testdata/stable/hr/dagre/board.exp.json @@ -36,7 +36,7 @@ "underline": false, "labelWidth": 738, "labelHeight": 134, - "renderPriority": 1 + "zIndex": 1 }, { "id": "a", @@ -74,7 +74,7 @@ "labelWidth": 13, "labelHeight": 26, "labelPosition": "INSIDE_MIDDLE_CENTER", - "renderPriority": 1 + "zIndex": 1 }, { "id": "b", @@ -112,7 +112,7 @@ "labelWidth": 13, "labelHeight": 26, "labelPosition": "INSIDE_MIDDLE_CENTER", - "renderPriority": 1 + "zIndex": 1 } ], "connections": [ @@ -162,7 +162,7 @@ "animated": false, "tooltip": "", "icon": null, - "renderPriority": 2 + "zIndex": 2 }, { "id": "(md -> b)[0]", @@ -210,7 +210,7 @@ "animated": false, "tooltip": "", "icon": null, - "renderPriority": 2 + "zIndex": 2 } ] } diff --git a/e2etests/testdata/stable/hr/elk/board.exp.json b/e2etests/testdata/stable/hr/elk/board.exp.json index 1b72165b7..4ce193770 100644 --- a/e2etests/testdata/stable/hr/elk/board.exp.json +++ b/e2etests/testdata/stable/hr/elk/board.exp.json @@ -36,7 +36,7 @@ "underline": false, "labelWidth": 738, "labelHeight": 134, - "renderPriority": 1 + "zIndex": 1 }, { "id": "a", @@ -74,7 +74,7 @@ "labelWidth": 13, "labelHeight": 26, "labelPosition": "INSIDE_MIDDLE_CENTER", - "renderPriority": 1 + "zIndex": 1 }, { "id": "b", @@ -112,7 +112,7 @@ "labelWidth": 13, "labelHeight": 26, "labelPosition": "INSIDE_MIDDLE_CENTER", - "renderPriority": 1 + "zIndex": 1 } ], "connections": [ @@ -153,7 +153,7 @@ "animated": false, "tooltip": "", "icon": null, - "renderPriority": 2 + "zIndex": 2 }, { "id": "(md -> b)[0]", @@ -192,7 +192,7 @@ "animated": false, "tooltip": "", "icon": null, - "renderPriority": 2 + "zIndex": 2 } ] } diff --git a/e2etests/testdata/stable/images/dagre/board.exp.json b/e2etests/testdata/stable/images/dagre/board.exp.json index 533f47dc4..29ef1200c 100644 --- a/e2etests/testdata/stable/images/dagre/board.exp.json +++ b/e2etests/testdata/stable/images/dagre/board.exp.json @@ -48,7 +48,7 @@ "labelWidth": 13, "labelHeight": 26, "labelPosition": "OUTSIDE_TOP_CENTER", - "renderPriority": 1 + "zIndex": 1 }, { "id": "b", @@ -97,7 +97,7 @@ "labelWidth": 13, "labelHeight": 26, "labelPosition": "OUTSIDE_TOP_CENTER", - "renderPriority": 1 + "zIndex": 1 } ], "connections": [ @@ -147,7 +147,7 @@ "animated": false, "tooltip": "", "icon": null, - "renderPriority": 2 + "zIndex": 2 } ] } diff --git a/e2etests/testdata/stable/images/elk/board.exp.json b/e2etests/testdata/stable/images/elk/board.exp.json index 4fe15a290..5ac0e2902 100644 --- a/e2etests/testdata/stable/images/elk/board.exp.json +++ b/e2etests/testdata/stable/images/elk/board.exp.json @@ -48,7 +48,7 @@ "labelWidth": 13, "labelHeight": 26, "labelPosition": "OUTSIDE_TOP_CENTER", - "renderPriority": 1 + "zIndex": 1 }, { "id": "b", @@ -97,7 +97,7 @@ "labelWidth": 13, "labelHeight": 26, "labelPosition": "OUTSIDE_TOP_CENTER", - "renderPriority": 1 + "zIndex": 1 } ], "connections": [ @@ -138,7 +138,7 @@ "animated": false, "tooltip": "", "icon": null, - "renderPriority": 2 + "zIndex": 2 } ] } diff --git a/e2etests/testdata/stable/investigate/dagre/board.exp.json b/e2etests/testdata/stable/investigate/dagre/board.exp.json index 3bd1b06ea..8a5fa0f5f 100644 --- a/e2etests/testdata/stable/investigate/dagre/board.exp.json +++ b/e2etests/testdata/stable/investigate/dagre/board.exp.json @@ -37,7 +37,7 @@ "labelWidth": 22, "labelHeight": 26, "labelPosition": "INSIDE_MIDDLE_CENTER", - "renderPriority": 1 + "zIndex": 1 }, { "id": "bb", @@ -75,7 +75,7 @@ "labelWidth": 23, "labelHeight": 26, "labelPosition": "INSIDE_MIDDLE_CENTER", - "renderPriority": 1 + "zIndex": 1 }, { "id": "cc", @@ -113,7 +113,7 @@ "labelWidth": 21, "labelHeight": 26, "labelPosition": "INSIDE_MIDDLE_CENTER", - "renderPriority": 1 + "zIndex": 1 }, { "id": "dd", @@ -151,7 +151,7 @@ "labelWidth": 34, "labelHeight": 41, "labelPosition": "INSIDE_TOP_CENTER", - "renderPriority": 1 + "zIndex": 1 }, { "id": "dd.ee", @@ -189,7 +189,7 @@ "labelWidth": 22, "labelHeight": 26, "labelPosition": "INSIDE_MIDDLE_CENTER", - "renderPriority": 2 + "zIndex": 2 }, { "id": "ll", @@ -227,7 +227,7 @@ "labelWidth": 18, "labelHeight": 41, "labelPosition": "INSIDE_TOP_CENTER", - "renderPriority": 1 + "zIndex": 1 }, { "id": "ll.mm", @@ -265,7 +265,7 @@ "labelWidth": 31, "labelHeight": 26, "labelPosition": "INSIDE_MIDDLE_CENTER", - "renderPriority": 2 + "zIndex": 2 }, { "id": "ff", @@ -303,7 +303,7 @@ "labelWidth": 23, "labelHeight": 41, "labelPosition": "INSIDE_TOP_CENTER", - "renderPriority": 1 + "zIndex": 1 }, { "id": "ff.mm", @@ -341,7 +341,7 @@ "labelWidth": 31, "labelHeight": 26, "labelPosition": "INSIDE_MIDDLE_CENTER", - "renderPriority": 2 + "zIndex": 2 }, { "id": "ff.gg", @@ -379,7 +379,7 @@ "labelWidth": 23, "labelHeight": 26, "labelPosition": "INSIDE_MIDDLE_CENTER", - "renderPriority": 2 + "zIndex": 2 }, { "id": "dd.hh", @@ -417,7 +417,7 @@ "labelWidth": 23, "labelHeight": 26, "labelPosition": "INSIDE_MIDDLE_CENTER", - "renderPriority": 2 + "zIndex": 2 }, { "id": "ww", @@ -466,7 +466,7 @@ "labelWidth": 31, "labelHeight": 26, "labelPosition": "INSIDE_MIDDLE_CENTER", - "renderPriority": 1 + "zIndex": 1 }, { "id": "yy", @@ -504,7 +504,7 @@ "labelWidth": 32, "labelHeight": 41, "labelPosition": "INSIDE_TOP_CENTER", - "renderPriority": 1 + "zIndex": 1 }, { "id": "yy.zz", @@ -553,7 +553,7 @@ "labelWidth": 20, "labelHeight": 26, "labelPosition": "INSIDE_MIDDLE_CENTER", - "renderPriority": 2 + "zIndex": 2 }, { "id": "ad", @@ -591,7 +591,7 @@ "labelWidth": 23, "labelHeight": 26, "labelPosition": "INSIDE_MIDDLE_CENTER", - "renderPriority": 1 + "zIndex": 1 }, { "id": "nn", @@ -629,7 +629,7 @@ "labelWidth": 33, "labelHeight": 41, "labelPosition": "INSIDE_TOP_CENTER", - "renderPriority": 1 + "zIndex": 1 }, { "id": "ii", @@ -667,7 +667,7 @@ "labelWidth": 14, "labelHeight": 26, "labelPosition": "INSIDE_MIDDLE_CENTER", - "renderPriority": 1 + "zIndex": 1 }, { "id": "jj", @@ -705,7 +705,7 @@ "labelWidth": 15, "labelHeight": 26, "labelPosition": "INSIDE_MIDDLE_CENTER", - "renderPriority": 1 + "zIndex": 1 }, { "id": "kk", @@ -743,7 +743,7 @@ "labelWidth": 22, "labelHeight": 26, "labelPosition": "INSIDE_MIDDLE_CENTER", - "renderPriority": 1 + "zIndex": 1 }, { "id": "nn.oo", @@ -781,7 +781,7 @@ "labelWidth": 23, "labelHeight": 26, "labelPosition": "INSIDE_MIDDLE_CENTER", - "renderPriority": 2 + "zIndex": 2 }, { "id": "ff.pp", @@ -819,7 +819,7 @@ "labelWidth": 23, "labelHeight": 26, "labelPosition": "INSIDE_MIDDLE_CENTER", - "renderPriority": 2 + "zIndex": 2 }, { "id": "ll.qq", @@ -857,7 +857,7 @@ "labelWidth": 24, "labelHeight": 26, "labelPosition": "INSIDE_MIDDLE_CENTER", - "renderPriority": 2 + "zIndex": 2 }, { "id": "ll.rr", @@ -895,7 +895,7 @@ "labelWidth": 18, "labelHeight": 26, "labelPosition": "INSIDE_MIDDLE_CENTER", - "renderPriority": 2 + "zIndex": 2 }, { "id": "ss", @@ -933,7 +933,7 @@ "labelWidth": 28, "labelHeight": 41, "labelPosition": "INSIDE_TOP_CENTER", - "renderPriority": 1 + "zIndex": 1 }, { "id": "ss.tt", @@ -971,7 +971,7 @@ "labelWidth": 18, "labelHeight": 26, "labelPosition": "INSIDE_MIDDLE_CENTER", - "renderPriority": 2 + "zIndex": 2 }, { "id": "uu", @@ -1009,7 +1009,7 @@ "labelWidth": 32, "labelHeight": 41, "labelPosition": "INSIDE_TOP_CENTER", - "renderPriority": 1 + "zIndex": 1 }, { "id": "uu.vv", @@ -1047,7 +1047,7 @@ "labelWidth": 23, "labelHeight": 26, "labelPosition": "INSIDE_MIDDLE_CENTER", - "renderPriority": 2 + "zIndex": 2 }, { "id": "rm", @@ -1085,7 +1085,7 @@ "labelWidth": 24, "labelHeight": 26, "labelPosition": "INSIDE_MIDDLE_CENTER", - "renderPriority": 1 + "zIndex": 1 }, { "id": "nn.xx", @@ -1123,7 +1123,7 @@ "labelWidth": 22, "labelHeight": 26, "labelPosition": "INSIDE_MIDDLE_CENTER", - "renderPriority": 2 + "zIndex": 2 }, { "id": "yy.ab", @@ -1161,7 +1161,7 @@ "labelWidth": 23, "labelHeight": 26, "labelPosition": "INSIDE_MIDDLE_CENTER", - "renderPriority": 2 + "zIndex": 2 }, { "id": "nn.ac", @@ -1199,7 +1199,7 @@ "labelWidth": 22, "labelHeight": 26, "labelPosition": "INSIDE_MIDDLE_CENTER", - "renderPriority": 2 + "zIndex": 2 } ], "connections": [ @@ -1249,7 +1249,7 @@ "animated": false, "tooltip": "", "icon": null, - "renderPriority": 3 + "zIndex": 3 }, { "id": "(bb -- cc)[0]", @@ -1297,7 +1297,7 @@ "animated": false, "tooltip": "", "icon": null, - "renderPriority": 3 + "zIndex": 3 }, { "id": "(aa -> dd.ee)[0]", @@ -1393,7 +1393,7 @@ "animated": false, "tooltip": "", "icon": null, - "renderPriority": 3 + "zIndex": 3 }, { "id": "(bb -> ff.gg)[0]", @@ -1657,7 +1657,7 @@ "animated": false, "tooltip": "", "icon": null, - "renderPriority": 3 + "zIndex": 3 }, { "id": "(cc -> dd.hh)[0]", @@ -1705,7 +1705,7 @@ "animated": false, "tooltip": "", "icon": null, - "renderPriority": 3 + "zIndex": 3 }, { "id": "(dd.ee -> ii)[0]", @@ -1753,7 +1753,7 @@ "animated": false, "tooltip": "", "icon": null, - "renderPriority": 3 + "zIndex": 3 }, { "id": "(ii -- jj)[0]", @@ -1801,7 +1801,7 @@ "animated": false, "tooltip": "", "icon": null, - "renderPriority": 3 + "zIndex": 3 }, { "id": "(jj -> kk)[0]", @@ -1861,7 +1861,7 @@ "animated": false, "tooltip": "", "icon": null, - "renderPriority": 3 + "zIndex": 3 }, { "id": "(kk -> ff.mm)[0]", @@ -1969,7 +1969,7 @@ "animated": false, "tooltip": "", "icon": null, - "renderPriority": 3 + "zIndex": 3 }, { "id": "(ff.mm -> ll.mm)[0]", @@ -2053,7 +2053,7 @@ "animated": false, "tooltip": "", "icon": null, - "renderPriority": 3 + "zIndex": 3 }, { "id": "(ll.mm -> nn.oo)[0]", @@ -2185,7 +2185,7 @@ "animated": false, "tooltip": "", "icon": null, - "renderPriority": 3 + "zIndex": 3 }, { "id": "ff.(gg -> pp)[0]", @@ -2233,7 +2233,7 @@ "animated": false, "tooltip": "", "icon": null, - "renderPriority": 3 + "zIndex": 3 }, { "id": "(ff.pp -> ll.qq)[0]", @@ -2293,7 +2293,7 @@ "animated": false, "tooltip": "", "icon": null, - "renderPriority": 3 + "zIndex": 3 }, { "id": "ll.(qq -> rr)[0]", @@ -2341,7 +2341,7 @@ "animated": false, "tooltip": "", "icon": null, - "renderPriority": 3 + "zIndex": 3 }, { "id": "(dd.hh -> ss.tt)[0]", @@ -2425,7 +2425,7 @@ "animated": false, "tooltip": "", "icon": null, - "renderPriority": 3 + "zIndex": 3 }, { "id": "(ss.tt -> uu.vv)[0]", @@ -2485,7 +2485,7 @@ "animated": false, "tooltip": "", "icon": null, - "renderPriority": 3 + "zIndex": 3 }, { "id": "(kk -> ww)[0]", @@ -2533,7 +2533,7 @@ "animated": false, "tooltip": "", "icon": null, - "renderPriority": 3 + "zIndex": 3 }, { "id": "(uu.vv -> ww)[0]", @@ -2581,7 +2581,7 @@ "animated": false, "tooltip": "", "icon": null, - "renderPriority": 3 + "zIndex": 3 }, { "id": "(ww -> rm)[0]", @@ -2725,7 +2725,7 @@ "animated": false, "tooltip": "", "icon": null, - "renderPriority": 3 + "zIndex": 3 }, { "id": "(rm -> nn.xx)[0]", @@ -2857,7 +2857,7 @@ "animated": false, "tooltip": "", "icon": null, - "renderPriority": 3 + "zIndex": 3 }, { "id": "(ll.rr -> yy.zz)[0]", @@ -2917,7 +2917,7 @@ "animated": false, "tooltip": "", "icon": null, - "renderPriority": 3 + "zIndex": 3 }, { "id": "(rm -> yy.zz)[0]", @@ -2977,7 +2977,7 @@ "animated": false, "tooltip": "", "icon": null, - "renderPriority": 3 + "zIndex": 3 }, { "id": "yy.(zz -> ab)[0]", @@ -3025,7 +3025,7 @@ "animated": false, "tooltip": "", "icon": null, - "renderPriority": 3 + "zIndex": 3 }, { "id": "(yy.ab -> nn.ac)[0]", @@ -3085,7 +3085,7 @@ "animated": false, "tooltip": "", "icon": null, - "renderPriority": 3 + "zIndex": 3 }, { "id": "(nn.ac -> ad)[0]", @@ -3133,7 +3133,7 @@ "animated": false, "tooltip": "", "icon": null, - "renderPriority": 3 + "zIndex": 3 }, { "id": "(ww -> ff.gg)[0]", @@ -3181,7 +3181,7 @@ "animated": false, "tooltip": "", "icon": null, - "renderPriority": 3 + "zIndex": 3 } ] } diff --git a/e2etests/testdata/stable/investigate/elk/board.exp.json b/e2etests/testdata/stable/investigate/elk/board.exp.json index a06755349..45f42987e 100644 --- a/e2etests/testdata/stable/investigate/elk/board.exp.json +++ b/e2etests/testdata/stable/investigate/elk/board.exp.json @@ -37,7 +37,7 @@ "labelWidth": 22, "labelHeight": 26, "labelPosition": "INSIDE_MIDDLE_CENTER", - "renderPriority": 1 + "zIndex": 1 }, { "id": "bb", @@ -75,7 +75,7 @@ "labelWidth": 23, "labelHeight": 26, "labelPosition": "INSIDE_MIDDLE_CENTER", - "renderPriority": 1 + "zIndex": 1 }, { "id": "cc", @@ -113,7 +113,7 @@ "labelWidth": 21, "labelHeight": 26, "labelPosition": "INSIDE_MIDDLE_CENTER", - "renderPriority": 1 + "zIndex": 1 }, { "id": "dd", @@ -151,7 +151,7 @@ "labelWidth": 34, "labelHeight": 41, "labelPosition": "INSIDE_TOP_CENTER", - "renderPriority": 1 + "zIndex": 1 }, { "id": "dd.ee", @@ -189,7 +189,7 @@ "labelWidth": 22, "labelHeight": 26, "labelPosition": "INSIDE_MIDDLE_CENTER", - "renderPriority": 2 + "zIndex": 2 }, { "id": "ll", @@ -227,7 +227,7 @@ "labelWidth": 18, "labelHeight": 41, "labelPosition": "INSIDE_TOP_CENTER", - "renderPriority": 1 + "zIndex": 1 }, { "id": "ll.mm", @@ -265,7 +265,7 @@ "labelWidth": 31, "labelHeight": 26, "labelPosition": "INSIDE_MIDDLE_CENTER", - "renderPriority": 2 + "zIndex": 2 }, { "id": "ff", @@ -303,7 +303,7 @@ "labelWidth": 23, "labelHeight": 41, "labelPosition": "INSIDE_TOP_CENTER", - "renderPriority": 1 + "zIndex": 1 }, { "id": "ff.mm", @@ -341,7 +341,7 @@ "labelWidth": 31, "labelHeight": 26, "labelPosition": "INSIDE_MIDDLE_CENTER", - "renderPriority": 2 + "zIndex": 2 }, { "id": "ff.gg", @@ -379,7 +379,7 @@ "labelWidth": 23, "labelHeight": 26, "labelPosition": "INSIDE_MIDDLE_CENTER", - "renderPriority": 2 + "zIndex": 2 }, { "id": "dd.hh", @@ -417,7 +417,7 @@ "labelWidth": 23, "labelHeight": 26, "labelPosition": "INSIDE_MIDDLE_CENTER", - "renderPriority": 2 + "zIndex": 2 }, { "id": "ww", @@ -466,7 +466,7 @@ "labelWidth": 31, "labelHeight": 26, "labelPosition": "INSIDE_MIDDLE_CENTER", - "renderPriority": 1 + "zIndex": 1 }, { "id": "yy", @@ -504,7 +504,7 @@ "labelWidth": 32, "labelHeight": 41, "labelPosition": "INSIDE_TOP_CENTER", - "renderPriority": 1 + "zIndex": 1 }, { "id": "yy.zz", @@ -553,7 +553,7 @@ "labelWidth": 20, "labelHeight": 26, "labelPosition": "INSIDE_MIDDLE_CENTER", - "renderPriority": 2 + "zIndex": 2 }, { "id": "ad", @@ -591,7 +591,7 @@ "labelWidth": 23, "labelHeight": 26, "labelPosition": "INSIDE_MIDDLE_CENTER", - "renderPriority": 1 + "zIndex": 1 }, { "id": "nn", @@ -629,7 +629,7 @@ "labelWidth": 33, "labelHeight": 41, "labelPosition": "INSIDE_TOP_CENTER", - "renderPriority": 1 + "zIndex": 1 }, { "id": "ii", @@ -667,7 +667,7 @@ "labelWidth": 14, "labelHeight": 26, "labelPosition": "INSIDE_MIDDLE_CENTER", - "renderPriority": 1 + "zIndex": 1 }, { "id": "jj", @@ -705,7 +705,7 @@ "labelWidth": 15, "labelHeight": 26, "labelPosition": "INSIDE_MIDDLE_CENTER", - "renderPriority": 1 + "zIndex": 1 }, { "id": "kk", @@ -743,7 +743,7 @@ "labelWidth": 22, "labelHeight": 26, "labelPosition": "INSIDE_MIDDLE_CENTER", - "renderPriority": 1 + "zIndex": 1 }, { "id": "nn.oo", @@ -781,7 +781,7 @@ "labelWidth": 23, "labelHeight": 26, "labelPosition": "INSIDE_MIDDLE_CENTER", - "renderPriority": 2 + "zIndex": 2 }, { "id": "ff.pp", @@ -819,7 +819,7 @@ "labelWidth": 23, "labelHeight": 26, "labelPosition": "INSIDE_MIDDLE_CENTER", - "renderPriority": 2 + "zIndex": 2 }, { "id": "ll.qq", @@ -857,7 +857,7 @@ "labelWidth": 24, "labelHeight": 26, "labelPosition": "INSIDE_MIDDLE_CENTER", - "renderPriority": 2 + "zIndex": 2 }, { "id": "ll.rr", @@ -895,7 +895,7 @@ "labelWidth": 18, "labelHeight": 26, "labelPosition": "INSIDE_MIDDLE_CENTER", - "renderPriority": 2 + "zIndex": 2 }, { "id": "ss", @@ -933,7 +933,7 @@ "labelWidth": 28, "labelHeight": 41, "labelPosition": "INSIDE_TOP_CENTER", - "renderPriority": 1 + "zIndex": 1 }, { "id": "ss.tt", @@ -971,7 +971,7 @@ "labelWidth": 18, "labelHeight": 26, "labelPosition": "INSIDE_MIDDLE_CENTER", - "renderPriority": 2 + "zIndex": 2 }, { "id": "uu", @@ -1009,7 +1009,7 @@ "labelWidth": 32, "labelHeight": 41, "labelPosition": "INSIDE_TOP_CENTER", - "renderPriority": 1 + "zIndex": 1 }, { "id": "uu.vv", @@ -1047,7 +1047,7 @@ "labelWidth": 23, "labelHeight": 26, "labelPosition": "INSIDE_MIDDLE_CENTER", - "renderPriority": 2 + "zIndex": 2 }, { "id": "rm", @@ -1085,7 +1085,7 @@ "labelWidth": 24, "labelHeight": 26, "labelPosition": "INSIDE_MIDDLE_CENTER", - "renderPriority": 1 + "zIndex": 1 }, { "id": "nn.xx", @@ -1123,7 +1123,7 @@ "labelWidth": 22, "labelHeight": 26, "labelPosition": "INSIDE_MIDDLE_CENTER", - "renderPriority": 2 + "zIndex": 2 }, { "id": "yy.ab", @@ -1161,7 +1161,7 @@ "labelWidth": 23, "labelHeight": 26, "labelPosition": "INSIDE_MIDDLE_CENTER", - "renderPriority": 2 + "zIndex": 2 }, { "id": "nn.ac", @@ -1199,7 +1199,7 @@ "labelWidth": 22, "labelHeight": 26, "labelPosition": "INSIDE_MIDDLE_CENTER", - "renderPriority": 2 + "zIndex": 2 } ], "connections": [ @@ -1248,7 +1248,7 @@ "animated": false, "tooltip": "", "icon": null, - "renderPriority": 3 + "zIndex": 3 }, { "id": "(bb -- cc)[0]", @@ -1287,7 +1287,7 @@ "animated": false, "tooltip": "", "icon": null, - "renderPriority": 3 + "zIndex": 3 }, { "id": "(aa -> dd.ee)[0]", @@ -1326,7 +1326,7 @@ "animated": false, "tooltip": "", "icon": null, - "renderPriority": 3 + "zIndex": 3 }, { "id": "(bb -> ff.gg)[0]", @@ -1381,7 +1381,7 @@ "animated": false, "tooltip": "", "icon": null, - "renderPriority": 3 + "zIndex": 3 }, { "id": "(cc -> dd.hh)[0]", @@ -1420,7 +1420,7 @@ "animated": false, "tooltip": "", "icon": null, - "renderPriority": 3 + "zIndex": 3 }, { "id": "(dd.ee -> ii)[0]", @@ -1459,7 +1459,7 @@ "animated": false, "tooltip": "", "icon": null, - "renderPriority": 3 + "zIndex": 3 }, { "id": "(ii -- jj)[0]", @@ -1498,7 +1498,7 @@ "animated": false, "tooltip": "", "icon": null, - "renderPriority": 3 + "zIndex": 3 }, { "id": "(jj -> kk)[0]", @@ -1537,7 +1537,7 @@ "animated": false, "tooltip": "", "icon": null, - "renderPriority": 3 + "zIndex": 3 }, { "id": "(kk -> ff.mm)[0]", @@ -1576,7 +1576,7 @@ "animated": false, "tooltip": "", "icon": null, - "renderPriority": 3 + "zIndex": 3 }, { "id": "(ff.mm -> ll.mm)[0]", @@ -1615,7 +1615,7 @@ "animated": false, "tooltip": "", "icon": null, - "renderPriority": 3 + "zIndex": 3 }, { "id": "(ll.mm -> nn.oo)[0]", @@ -1654,7 +1654,7 @@ "animated": false, "tooltip": "", "icon": null, - "renderPriority": 3 + "zIndex": 3 }, { "id": "ff.(gg -> pp)[0]", @@ -1693,7 +1693,7 @@ "animated": false, "tooltip": "", "icon": null, - "renderPriority": 3 + "zIndex": 3 }, { "id": "(ff.pp -> ll.qq)[0]", @@ -1732,7 +1732,7 @@ "animated": false, "tooltip": "", "icon": null, - "renderPriority": 3 + "zIndex": 3 }, { "id": "ll.(qq -> rr)[0]", @@ -1771,7 +1771,7 @@ "animated": false, "tooltip": "", "icon": null, - "renderPriority": 3 + "zIndex": 3 }, { "id": "(dd.hh -> ss.tt)[0]", @@ -1818,7 +1818,7 @@ "animated": false, "tooltip": "", "icon": null, - "renderPriority": 3 + "zIndex": 3 }, { "id": "(ss.tt -> uu.vv)[0]", @@ -1857,7 +1857,7 @@ "animated": false, "tooltip": "", "icon": null, - "renderPriority": 3 + "zIndex": 3 }, { "id": "(kk -> ww)[0]", @@ -1904,7 +1904,7 @@ "animated": false, "tooltip": "", "icon": null, - "renderPriority": 3 + "zIndex": 3 }, { "id": "(uu.vv -> ww)[0]", @@ -1943,7 +1943,7 @@ "animated": false, "tooltip": "", "icon": null, - "renderPriority": 3 + "zIndex": 3 }, { "id": "(ww -> rm)[0]", @@ -1982,7 +1982,7 @@ "animated": false, "tooltip": "", "icon": null, - "renderPriority": 3 + "zIndex": 3 }, { "id": "(rm -> nn.xx)[0]", @@ -2037,7 +2037,7 @@ "animated": false, "tooltip": "", "icon": null, - "renderPriority": 3 + "zIndex": 3 }, { "id": "(ll.rr -> yy.zz)[0]", @@ -2084,7 +2084,7 @@ "animated": false, "tooltip": "", "icon": null, - "renderPriority": 3 + "zIndex": 3 }, { "id": "(rm -> yy.zz)[0]", @@ -2123,7 +2123,7 @@ "animated": false, "tooltip": "", "icon": null, - "renderPriority": 3 + "zIndex": 3 }, { "id": "yy.(zz -> ab)[0]", @@ -2162,7 +2162,7 @@ "animated": false, "tooltip": "", "icon": null, - "renderPriority": 3 + "zIndex": 3 }, { "id": "(yy.ab -> nn.ac)[0]", @@ -2209,7 +2209,7 @@ "animated": false, "tooltip": "", "icon": null, - "renderPriority": 3 + "zIndex": 3 }, { "id": "(nn.ac -> ad)[0]", @@ -2248,7 +2248,7 @@ "animated": false, "tooltip": "", "icon": null, - "renderPriority": 3 + "zIndex": 3 }, { "id": "(ww -> ff.gg)[0]", @@ -2295,7 +2295,7 @@ "animated": false, "tooltip": "", "icon": null, - "renderPriority": 3 + "zIndex": 3 } ] } diff --git a/e2etests/testdata/stable/large_arch/dagre/board.exp.json b/e2etests/testdata/stable/large_arch/dagre/board.exp.json index 6c3ff8667..f755f3713 100644 --- a/e2etests/testdata/stable/large_arch/dagre/board.exp.json +++ b/e2etests/testdata/stable/large_arch/dagre/board.exp.json @@ -37,7 +37,7 @@ "labelWidth": 13, "labelHeight": 26, "labelPosition": "INSIDE_MIDDLE_CENTER", - "renderPriority": 1 + "zIndex": 1 }, { "id": "b", @@ -75,7 +75,7 @@ "labelWidth": 13, "labelHeight": 26, "labelPosition": "INSIDE_MIDDLE_CENTER", - "renderPriority": 1 + "zIndex": 1 }, { "id": "c", @@ -113,7 +113,7 @@ "labelWidth": 13, "labelHeight": 26, "labelPosition": "INSIDE_MIDDLE_CENTER", - "renderPriority": 1 + "zIndex": 1 }, { "id": "d", @@ -151,7 +151,7 @@ "labelWidth": 14, "labelHeight": 26, "labelPosition": "INSIDE_MIDDLE_CENTER", - "renderPriority": 1 + "zIndex": 1 }, { "id": "e", @@ -189,7 +189,7 @@ "labelWidth": 13, "labelHeight": 26, "labelPosition": "INSIDE_MIDDLE_CENTER", - "renderPriority": 1 + "zIndex": 1 }, { "id": "f", @@ -227,7 +227,7 @@ "labelWidth": 11, "labelHeight": 26, "labelPosition": "INSIDE_MIDDLE_CENTER", - "renderPriority": 1 + "zIndex": 1 }, { "id": "g", @@ -265,7 +265,7 @@ "labelWidth": 14, "labelHeight": 26, "labelPosition": "INSIDE_MIDDLE_CENTER", - "renderPriority": 1 + "zIndex": 1 }, { "id": "h", @@ -303,7 +303,7 @@ "labelWidth": 13, "labelHeight": 26, "labelPosition": "INSIDE_MIDDLE_CENTER", - "renderPriority": 1 + "zIndex": 1 }, { "id": "i", @@ -341,7 +341,7 @@ "labelWidth": 9, "labelHeight": 41, "labelPosition": "INSIDE_TOP_CENTER", - "renderPriority": 1 + "zIndex": 1 }, { "id": "i.j", @@ -379,7 +379,7 @@ "labelWidth": 11, "labelHeight": 36, "labelPosition": "INSIDE_TOP_CENTER", - "renderPriority": 2 + "zIndex": 2 }, { "id": "i.j.k", @@ -417,7 +417,7 @@ "labelWidth": 13, "labelHeight": 26, "labelPosition": "INSIDE_MIDDLE_CENTER", - "renderPriority": 3 + "zIndex": 3 }, { "id": "i.j.l", @@ -455,7 +455,7 @@ "labelWidth": 9, "labelHeight": 26, "labelPosition": "INSIDE_MIDDLE_CENTER", - "renderPriority": 3 + "zIndex": 3 }, { "id": "i.m", @@ -493,7 +493,7 @@ "labelWidth": 17, "labelHeight": 26, "labelPosition": "INSIDE_MIDDLE_CENTER", - "renderPriority": 2 + "zIndex": 2 }, { "id": "i.n", @@ -531,7 +531,7 @@ "labelWidth": 13, "labelHeight": 26, "labelPosition": "INSIDE_MIDDLE_CENTER", - "renderPriority": 2 + "zIndex": 2 }, { "id": "i.o", @@ -569,7 +569,7 @@ "labelWidth": 16, "labelHeight": 36, "labelPosition": "INSIDE_TOP_CENTER", - "renderPriority": 2 + "zIndex": 2 }, { "id": "i.o.p", @@ -607,7 +607,7 @@ "labelWidth": 13, "labelHeight": 26, "labelPosition": "INSIDE_MIDDLE_CENTER", - "renderPriority": 3 + "zIndex": 3 }, { "id": "q", @@ -645,7 +645,7 @@ "labelWidth": 14, "labelHeight": 26, "labelPosition": "INSIDE_MIDDLE_CENTER", - "renderPriority": 1 + "zIndex": 1 }, { "id": "r", @@ -683,7 +683,7 @@ "labelWidth": 13, "labelHeight": 41, "labelPosition": "INSIDE_TOP_CENTER", - "renderPriority": 1 + "zIndex": 1 }, { "id": "r.s", @@ -721,7 +721,7 @@ "labelWidth": 15, "labelHeight": 36, "labelPosition": "INSIDE_TOP_CENTER", - "renderPriority": 2 + "zIndex": 2 }, { "id": "r.s.t", @@ -759,7 +759,7 @@ "labelWidth": 11, "labelHeight": 26, "labelPosition": "INSIDE_MIDDLE_CENTER", - "renderPriority": 3 + "zIndex": 3 }, { "id": "r.s.u", @@ -797,7 +797,7 @@ "labelWidth": 14, "labelHeight": 31, "labelPosition": "INSIDE_TOP_CENTER", - "renderPriority": 3 + "zIndex": 3 }, { "id": "r.s.u.v", @@ -835,7 +835,7 @@ "labelWidth": 14, "labelHeight": 26, "labelPosition": "INSIDE_MIDDLE_CENTER", - "renderPriority": 4 + "zIndex": 4 }, { "id": "r.s.w", @@ -873,7 +873,7 @@ "labelWidth": 18, "labelHeight": 26, "labelPosition": "INSIDE_MIDDLE_CENTER", - "renderPriority": 3 + "zIndex": 3 }, { "id": "r.s.x", @@ -911,7 +911,7 @@ "labelWidth": 13, "labelHeight": 26, "labelPosition": "INSIDE_MIDDLE_CENTER", - "renderPriority": 3 + "zIndex": 3 }, { "id": "r.s.y", @@ -949,7 +949,7 @@ "labelWidth": 14, "labelHeight": 26, "labelPosition": "INSIDE_MIDDLE_CENTER", - "renderPriority": 3 + "zIndex": 3 }, { "id": "r.z", @@ -987,7 +987,7 @@ "labelWidth": 12, "labelHeight": 26, "labelPosition": "INSIDE_MIDDLE_CENTER", - "renderPriority": 2 + "zIndex": 2 }, { "id": "r.aa", @@ -1025,7 +1025,7 @@ "labelWidth": 22, "labelHeight": 26, "labelPosition": "INSIDE_MIDDLE_CENTER", - "renderPriority": 2 + "zIndex": 2 }, { "id": "r.bb", @@ -1063,7 +1063,7 @@ "labelWidth": 31, "labelHeight": 36, "labelPosition": "INSIDE_TOP_CENTER", - "renderPriority": 2 + "zIndex": 2 }, { "id": "r.bb.cc", @@ -1101,7 +1101,7 @@ "labelWidth": 21, "labelHeight": 26, "labelPosition": "INSIDE_MIDDLE_CENTER", - "renderPriority": 3 + "zIndex": 3 }, { "id": "r.bb.dd", @@ -1139,7 +1139,7 @@ "labelWidth": 24, "labelHeight": 26, "labelPosition": "INSIDE_MIDDLE_CENTER", - "renderPriority": 3 + "zIndex": 3 }, { "id": "r.ee", @@ -1177,7 +1177,7 @@ "labelWidth": 22, "labelHeight": 26, "labelPosition": "INSIDE_MIDDLE_CENTER", - "renderPriority": 2 + "zIndex": 2 }, { "id": "r.ff", @@ -1215,7 +1215,7 @@ "labelWidth": 17, "labelHeight": 26, "labelPosition": "INSIDE_MIDDLE_CENTER", - "renderPriority": 2 + "zIndex": 2 }, { "id": "r.gg", @@ -1253,7 +1253,7 @@ "labelWidth": 23, "labelHeight": 26, "labelPosition": "INSIDE_MIDDLE_CENTER", - "renderPriority": 2 + "zIndex": 2 } ], "connections": [ @@ -1327,7 +1327,7 @@ "animated": false, "tooltip": "", "icon": null, - "renderPriority": 5 + "zIndex": 5 }, { "id": "i.(j.l -> o.p)[0]", @@ -1399,7 +1399,7 @@ "animated": false, "tooltip": "", "icon": null, - "renderPriority": 5 + "zIndex": 5 }, { "id": "(q -> i.m)[0]", @@ -1459,7 +1459,7 @@ "animated": false, "tooltip": "", "icon": null, - "renderPriority": 5 + "zIndex": 5 }, { "id": "(i.m -> q)[0]", @@ -1519,7 +1519,7 @@ "animated": false, "tooltip": "", "icon": null, - "renderPriority": 5 + "zIndex": 5 }, { "id": "(i.n -> q)[0]", @@ -1579,7 +1579,7 @@ "animated": false, "tooltip": "", "icon": null, - "renderPriority": 5 + "zIndex": 5 }, { "id": "(i.m -> c)[0]", @@ -1639,7 +1639,7 @@ "animated": false, "tooltip": "", "icon": null, - "renderPriority": 5 + "zIndex": 5 }, { "id": "(i.m -> d)[0]", @@ -1699,7 +1699,7 @@ "animated": false, "tooltip": "", "icon": null, - "renderPriority": 5 + "zIndex": 5 }, { "id": "(i.m -> g)[0]", @@ -1759,7 +1759,7 @@ "animated": false, "tooltip": "", "icon": null, - "renderPriority": 5 + "zIndex": 5 }, { "id": "(i.m -> f)[0]", @@ -1819,7 +1819,7 @@ "animated": false, "tooltip": "", "icon": null, - "renderPriority": 5 + "zIndex": 5 }, { "id": "(d -> e)[0]", @@ -1867,7 +1867,7 @@ "animated": false, "tooltip": "", "icon": null, - "renderPriority": 5 + "zIndex": 5 }, { "id": "r.s.(x -> t)[0]", @@ -1939,7 +1939,7 @@ "animated": false, "tooltip": "", "icon": null, - "renderPriority": 5 + "zIndex": 5 }, { "id": "r.s.(x -> w)[0]", @@ -2011,7 +2011,7 @@ "animated": false, "tooltip": "", "icon": null, - "renderPriority": 5 + "zIndex": 5 }, { "id": "r.(gg -> s.t)[0]", @@ -2083,7 +2083,7 @@ "animated": false, "tooltip": "", "icon": null, - "renderPriority": 5 + "zIndex": 5 }, { "id": "r.(s.u.v -> z)[0]", @@ -2155,7 +2155,7 @@ "animated": false, "tooltip": "", "icon": null, - "renderPriority": 5 + "zIndex": 5 }, { "id": "r.(aa -> s.t)[0]", @@ -2227,7 +2227,7 @@ "animated": false, "tooltip": "", "icon": null, - "renderPriority": 5 + "zIndex": 5 }, { "id": "(r.s.w -> i.m)[0]", @@ -2299,7 +2299,7 @@ "animated": false, "tooltip": "", "icon": null, - "renderPriority": 5 + "zIndex": 5 }, { "id": "(r.s.t -> g)[0]", @@ -2419,7 +2419,7 @@ "animated": false, "tooltip": "", "icon": null, - "renderPriority": 5 + "zIndex": 5 }, { "id": "(r.s.t -> h)[0]", @@ -2491,7 +2491,7 @@ "animated": false, "tooltip": "", "icon": null, - "renderPriority": 5 + "zIndex": 5 }, { "id": "r.(ee -> ff)[0]", @@ -2563,7 +2563,7 @@ "animated": false, "tooltip": "", "icon": null, - "renderPriority": 5 + "zIndex": 5 } ] } diff --git a/e2etests/testdata/stable/large_arch/elk/board.exp.json b/e2etests/testdata/stable/large_arch/elk/board.exp.json index c5890113d..de1cf8958 100644 --- a/e2etests/testdata/stable/large_arch/elk/board.exp.json +++ b/e2etests/testdata/stable/large_arch/elk/board.exp.json @@ -37,7 +37,7 @@ "labelWidth": 13, "labelHeight": 26, "labelPosition": "INSIDE_MIDDLE_CENTER", - "renderPriority": 1 + "zIndex": 1 }, { "id": "b", @@ -75,7 +75,7 @@ "labelWidth": 13, "labelHeight": 26, "labelPosition": "INSIDE_MIDDLE_CENTER", - "renderPriority": 1 + "zIndex": 1 }, { "id": "c", @@ -113,7 +113,7 @@ "labelWidth": 13, "labelHeight": 26, "labelPosition": "INSIDE_MIDDLE_CENTER", - "renderPriority": 1 + "zIndex": 1 }, { "id": "d", @@ -151,7 +151,7 @@ "labelWidth": 14, "labelHeight": 26, "labelPosition": "INSIDE_MIDDLE_CENTER", - "renderPriority": 1 + "zIndex": 1 }, { "id": "e", @@ -189,7 +189,7 @@ "labelWidth": 13, "labelHeight": 26, "labelPosition": "INSIDE_MIDDLE_CENTER", - "renderPriority": 1 + "zIndex": 1 }, { "id": "f", @@ -227,7 +227,7 @@ "labelWidth": 11, "labelHeight": 26, "labelPosition": "INSIDE_MIDDLE_CENTER", - "renderPriority": 1 + "zIndex": 1 }, { "id": "g", @@ -265,7 +265,7 @@ "labelWidth": 14, "labelHeight": 26, "labelPosition": "INSIDE_MIDDLE_CENTER", - "renderPriority": 1 + "zIndex": 1 }, { "id": "h", @@ -303,7 +303,7 @@ "labelWidth": 13, "labelHeight": 26, "labelPosition": "INSIDE_MIDDLE_CENTER", - "renderPriority": 1 + "zIndex": 1 }, { "id": "i", @@ -341,7 +341,7 @@ "labelWidth": 9, "labelHeight": 41, "labelPosition": "INSIDE_TOP_CENTER", - "renderPriority": 1 + "zIndex": 1 }, { "id": "i.j", @@ -379,7 +379,7 @@ "labelWidth": 11, "labelHeight": 36, "labelPosition": "INSIDE_TOP_CENTER", - "renderPriority": 2 + "zIndex": 2 }, { "id": "i.j.k", @@ -417,7 +417,7 @@ "labelWidth": 13, "labelHeight": 26, "labelPosition": "INSIDE_MIDDLE_CENTER", - "renderPriority": 3 + "zIndex": 3 }, { "id": "i.j.l", @@ -455,7 +455,7 @@ "labelWidth": 9, "labelHeight": 26, "labelPosition": "INSIDE_MIDDLE_CENTER", - "renderPriority": 3 + "zIndex": 3 }, { "id": "i.m", @@ -493,7 +493,7 @@ "labelWidth": 17, "labelHeight": 26, "labelPosition": "INSIDE_MIDDLE_CENTER", - "renderPriority": 2 + "zIndex": 2 }, { "id": "i.n", @@ -531,7 +531,7 @@ "labelWidth": 13, "labelHeight": 26, "labelPosition": "INSIDE_MIDDLE_CENTER", - "renderPriority": 2 + "zIndex": 2 }, { "id": "i.o", @@ -569,7 +569,7 @@ "labelWidth": 16, "labelHeight": 36, "labelPosition": "INSIDE_TOP_CENTER", - "renderPriority": 2 + "zIndex": 2 }, { "id": "i.o.p", @@ -607,7 +607,7 @@ "labelWidth": 13, "labelHeight": 26, "labelPosition": "INSIDE_MIDDLE_CENTER", - "renderPriority": 3 + "zIndex": 3 }, { "id": "q", @@ -645,7 +645,7 @@ "labelWidth": 14, "labelHeight": 26, "labelPosition": "INSIDE_MIDDLE_CENTER", - "renderPriority": 1 + "zIndex": 1 }, { "id": "r", @@ -683,7 +683,7 @@ "labelWidth": 13, "labelHeight": 41, "labelPosition": "INSIDE_TOP_CENTER", - "renderPriority": 1 + "zIndex": 1 }, { "id": "r.s", @@ -721,7 +721,7 @@ "labelWidth": 15, "labelHeight": 36, "labelPosition": "INSIDE_TOP_CENTER", - "renderPriority": 2 + "zIndex": 2 }, { "id": "r.s.t", @@ -759,7 +759,7 @@ "labelWidth": 11, "labelHeight": 26, "labelPosition": "INSIDE_MIDDLE_CENTER", - "renderPriority": 3 + "zIndex": 3 }, { "id": "r.s.u", @@ -797,7 +797,7 @@ "labelWidth": 14, "labelHeight": 31, "labelPosition": "INSIDE_TOP_CENTER", - "renderPriority": 3 + "zIndex": 3 }, { "id": "r.s.u.v", @@ -835,7 +835,7 @@ "labelWidth": 14, "labelHeight": 26, "labelPosition": "INSIDE_MIDDLE_CENTER", - "renderPriority": 4 + "zIndex": 4 }, { "id": "r.s.w", @@ -873,7 +873,7 @@ "labelWidth": 18, "labelHeight": 26, "labelPosition": "INSIDE_MIDDLE_CENTER", - "renderPriority": 3 + "zIndex": 3 }, { "id": "r.s.x", @@ -911,7 +911,7 @@ "labelWidth": 13, "labelHeight": 26, "labelPosition": "INSIDE_MIDDLE_CENTER", - "renderPriority": 3 + "zIndex": 3 }, { "id": "r.s.y", @@ -949,7 +949,7 @@ "labelWidth": 14, "labelHeight": 26, "labelPosition": "INSIDE_MIDDLE_CENTER", - "renderPriority": 3 + "zIndex": 3 }, { "id": "r.z", @@ -987,7 +987,7 @@ "labelWidth": 12, "labelHeight": 26, "labelPosition": "INSIDE_MIDDLE_CENTER", - "renderPriority": 2 + "zIndex": 2 }, { "id": "r.aa", @@ -1025,7 +1025,7 @@ "labelWidth": 22, "labelHeight": 26, "labelPosition": "INSIDE_MIDDLE_CENTER", - "renderPriority": 2 + "zIndex": 2 }, { "id": "r.bb", @@ -1063,7 +1063,7 @@ "labelWidth": 31, "labelHeight": 36, "labelPosition": "INSIDE_TOP_CENTER", - "renderPriority": 2 + "zIndex": 2 }, { "id": "r.bb.cc", @@ -1101,7 +1101,7 @@ "labelWidth": 21, "labelHeight": 26, "labelPosition": "INSIDE_MIDDLE_CENTER", - "renderPriority": 3 + "zIndex": 3 }, { "id": "r.bb.dd", @@ -1139,7 +1139,7 @@ "labelWidth": 24, "labelHeight": 26, "labelPosition": "INSIDE_MIDDLE_CENTER", - "renderPriority": 3 + "zIndex": 3 }, { "id": "r.ee", @@ -1177,7 +1177,7 @@ "labelWidth": 22, "labelHeight": 26, "labelPosition": "INSIDE_MIDDLE_CENTER", - "renderPriority": 2 + "zIndex": 2 }, { "id": "r.ff", @@ -1215,7 +1215,7 @@ "labelWidth": 17, "labelHeight": 26, "labelPosition": "INSIDE_MIDDLE_CENTER", - "renderPriority": 2 + "zIndex": 2 }, { "id": "r.gg", @@ -1253,7 +1253,7 @@ "labelWidth": 23, "labelHeight": 26, "labelPosition": "INSIDE_MIDDLE_CENTER", - "renderPriority": 2 + "zIndex": 2 } ], "connections": [ @@ -1302,7 +1302,7 @@ "animated": false, "tooltip": "", "icon": null, - "renderPriority": 5 + "zIndex": 5 }, { "id": "i.(j.l -> o.p)[0]", @@ -1341,7 +1341,7 @@ "animated": false, "tooltip": "", "icon": null, - "renderPriority": 5 + "zIndex": 5 }, { "id": "(q -> i.m)[0]", @@ -1396,7 +1396,7 @@ "animated": false, "tooltip": "", "icon": null, - "renderPriority": 5 + "zIndex": 5 }, { "id": "(i.m -> q)[0]", @@ -1443,7 +1443,7 @@ "animated": false, "tooltip": "", "icon": null, - "renderPriority": 5 + "zIndex": 5 }, { "id": "(i.n -> q)[0]", @@ -1482,7 +1482,7 @@ "animated": false, "tooltip": "", "icon": null, - "renderPriority": 5 + "zIndex": 5 }, { "id": "(i.m -> c)[0]", @@ -1529,7 +1529,7 @@ "animated": false, "tooltip": "", "icon": null, - "renderPriority": 5 + "zIndex": 5 }, { "id": "(i.m -> d)[0]", @@ -1576,7 +1576,7 @@ "animated": false, "tooltip": "", "icon": null, - "renderPriority": 5 + "zIndex": 5 }, { "id": "(i.m -> g)[0]", @@ -1623,7 +1623,7 @@ "animated": false, "tooltip": "", "icon": null, - "renderPriority": 5 + "zIndex": 5 }, { "id": "(i.m -> f)[0]", @@ -1670,7 +1670,7 @@ "animated": false, "tooltip": "", "icon": null, - "renderPriority": 5 + "zIndex": 5 }, { "id": "(d -> e)[0]", @@ -1709,7 +1709,7 @@ "animated": false, "tooltip": "", "icon": null, - "renderPriority": 5 + "zIndex": 5 }, { "id": "r.s.(x -> t)[0]", @@ -1756,7 +1756,7 @@ "animated": false, "tooltip": "", "icon": null, - "renderPriority": 5 + "zIndex": 5 }, { "id": "r.s.(x -> w)[0]", @@ -1795,7 +1795,7 @@ "animated": false, "tooltip": "", "icon": null, - "renderPriority": 5 + "zIndex": 5 }, { "id": "r.(gg -> s.t)[0]", @@ -1834,7 +1834,7 @@ "animated": false, "tooltip": "", "icon": null, - "renderPriority": 5 + "zIndex": 5 }, { "id": "r.(s.u.v -> z)[0]", @@ -1873,7 +1873,7 @@ "animated": false, "tooltip": "", "icon": null, - "renderPriority": 5 + "zIndex": 5 }, { "id": "r.(aa -> s.t)[0]", @@ -1920,7 +1920,7 @@ "animated": false, "tooltip": "", "icon": null, - "renderPriority": 5 + "zIndex": 5 }, { "id": "(r.s.w -> i.m)[0]", @@ -1959,7 +1959,7 @@ "animated": false, "tooltip": "", "icon": null, - "renderPriority": 5 + "zIndex": 5 }, { "id": "(r.s.t -> g)[0]", @@ -2006,7 +2006,7 @@ "animated": false, "tooltip": "", "icon": null, - "renderPriority": 5 + "zIndex": 5 }, { "id": "(r.s.t -> h)[0]", @@ -2053,7 +2053,7 @@ "animated": false, "tooltip": "", "icon": null, - "renderPriority": 5 + "zIndex": 5 }, { "id": "r.(ee -> ff)[0]", @@ -2092,7 +2092,7 @@ "animated": false, "tooltip": "", "icon": null, - "renderPriority": 5 + "zIndex": 5 } ] } diff --git a/e2etests/testdata/stable/latex/dagre/board.exp.json b/e2etests/testdata/stable/latex/dagre/board.exp.json index 625bc1dae..91ede30f7 100644 --- a/e2etests/testdata/stable/latex/dagre/board.exp.json +++ b/e2etests/testdata/stable/latex/dagre/board.exp.json @@ -36,7 +36,7 @@ "underline": false, "labelWidth": 382, "labelHeight": 101, - "renderPriority": 1 + "zIndex": 1 }, { "id": "b", @@ -73,7 +73,7 @@ "underline": false, "labelWidth": 65, "labelHeight": 18, - "renderPriority": 1 + "zIndex": 1 }, { "id": "z", @@ -110,7 +110,7 @@ "underline": false, "labelWidth": 179, "labelHeight": 51, - "renderPriority": 1 + "zIndex": 1 }, { "id": "c", @@ -148,7 +148,7 @@ "labelWidth": 114, "labelHeight": 26, "labelPosition": "INSIDE_MIDDLE_CENTER", - "renderPriority": 1 + "zIndex": 1 }, { "id": "sugar", @@ -186,7 +186,7 @@ "labelWidth": 46, "labelHeight": 26, "labelPosition": "INSIDE_MIDDLE_CENTER", - "renderPriority": 1 + "zIndex": 1 }, { "id": "solution", @@ -224,7 +224,7 @@ "labelWidth": 64, "labelHeight": 26, "labelPosition": "INSIDE_MIDDLE_CENTER", - "renderPriority": 1 + "zIndex": 1 } ], "connections": [ @@ -274,7 +274,7 @@ "animated": false, "tooltip": "", "icon": null, - "renderPriority": 2 + "zIndex": 2 }, { "id": "(z -> b)[0]", @@ -322,7 +322,7 @@ "animated": false, "tooltip": "", "icon": null, - "renderPriority": 2 + "zIndex": 2 }, { "id": "(a -> c)[0]", @@ -370,7 +370,7 @@ "animated": false, "tooltip": "", "icon": null, - "renderPriority": 2 + "zIndex": 2 }, { "id": "(b -> c)[0]", @@ -418,7 +418,7 @@ "animated": false, "tooltip": "", "icon": null, - "renderPriority": 2 + "zIndex": 2 }, { "id": "(sugar -> c)[0]", @@ -466,7 +466,7 @@ "animated": false, "tooltip": "", "icon": null, - "renderPriority": 2 + "zIndex": 2 }, { "id": "(c -> solution)[0]", @@ -514,7 +514,7 @@ "animated": false, "tooltip": "", "icon": null, - "renderPriority": 2 + "zIndex": 2 } ] } diff --git a/e2etests/testdata/stable/latex/elk/board.exp.json b/e2etests/testdata/stable/latex/elk/board.exp.json index 9aeaa4a30..fcb80157f 100644 --- a/e2etests/testdata/stable/latex/elk/board.exp.json +++ b/e2etests/testdata/stable/latex/elk/board.exp.json @@ -36,7 +36,7 @@ "underline": false, "labelWidth": 382, "labelHeight": 101, - "renderPriority": 1 + "zIndex": 1 }, { "id": "b", @@ -73,7 +73,7 @@ "underline": false, "labelWidth": 65, "labelHeight": 18, - "renderPriority": 1 + "zIndex": 1 }, { "id": "z", @@ -110,7 +110,7 @@ "underline": false, "labelWidth": 179, "labelHeight": 51, - "renderPriority": 1 + "zIndex": 1 }, { "id": "c", @@ -148,7 +148,7 @@ "labelWidth": 114, "labelHeight": 26, "labelPosition": "INSIDE_MIDDLE_CENTER", - "renderPriority": 1 + "zIndex": 1 }, { "id": "sugar", @@ -186,7 +186,7 @@ "labelWidth": 46, "labelHeight": 26, "labelPosition": "INSIDE_MIDDLE_CENTER", - "renderPriority": 1 + "zIndex": 1 }, { "id": "solution", @@ -224,7 +224,7 @@ "labelWidth": 64, "labelHeight": 26, "labelPosition": "INSIDE_MIDDLE_CENTER", - "renderPriority": 1 + "zIndex": 1 } ], "connections": [ @@ -273,7 +273,7 @@ "animated": false, "tooltip": "", "icon": null, - "renderPriority": 2 + "zIndex": 2 }, { "id": "(z -> b)[0]", @@ -312,7 +312,7 @@ "animated": false, "tooltip": "", "icon": null, - "renderPriority": 2 + "zIndex": 2 }, { "id": "(a -> c)[0]", @@ -359,7 +359,7 @@ "animated": false, "tooltip": "", "icon": null, - "renderPriority": 2 + "zIndex": 2 }, { "id": "(b -> c)[0]", @@ -398,7 +398,7 @@ "animated": false, "tooltip": "", "icon": null, - "renderPriority": 2 + "zIndex": 2 }, { "id": "(sugar -> c)[0]", @@ -445,7 +445,7 @@ "animated": false, "tooltip": "", "icon": null, - "renderPriority": 2 + "zIndex": 2 }, { "id": "(c -> solution)[0]", @@ -484,7 +484,7 @@ "animated": false, "tooltip": "", "icon": null, - "renderPriority": 2 + "zIndex": 2 } ] } diff --git a/e2etests/testdata/stable/li1/dagre/board.exp.json b/e2etests/testdata/stable/li1/dagre/board.exp.json index 5f039fe94..68fbffe76 100644 --- a/e2etests/testdata/stable/li1/dagre/board.exp.json +++ b/e2etests/testdata/stable/li1/dagre/board.exp.json @@ -36,7 +36,7 @@ "underline": false, "labelWidth": 379, "labelHeight": 100, - "renderPriority": 1 + "zIndex": 1 }, { "id": "a", @@ -74,7 +74,7 @@ "labelWidth": 13, "labelHeight": 26, "labelPosition": "INSIDE_MIDDLE_CENTER", - "renderPriority": 1 + "zIndex": 1 }, { "id": "b", @@ -112,7 +112,7 @@ "labelWidth": 13, "labelHeight": 26, "labelPosition": "INSIDE_MIDDLE_CENTER", - "renderPriority": 1 + "zIndex": 1 } ], "connections": [ @@ -162,7 +162,7 @@ "animated": false, "tooltip": "", "icon": null, - "renderPriority": 2 + "zIndex": 2 }, { "id": "(md -> b)[0]", @@ -210,7 +210,7 @@ "animated": false, "tooltip": "", "icon": null, - "renderPriority": 2 + "zIndex": 2 } ] } diff --git a/e2etests/testdata/stable/li1/elk/board.exp.json b/e2etests/testdata/stable/li1/elk/board.exp.json index c0139e612..28d8511a8 100644 --- a/e2etests/testdata/stable/li1/elk/board.exp.json +++ b/e2etests/testdata/stable/li1/elk/board.exp.json @@ -36,7 +36,7 @@ "underline": false, "labelWidth": 379, "labelHeight": 100, - "renderPriority": 1 + "zIndex": 1 }, { "id": "a", @@ -74,7 +74,7 @@ "labelWidth": 13, "labelHeight": 26, "labelPosition": "INSIDE_MIDDLE_CENTER", - "renderPriority": 1 + "zIndex": 1 }, { "id": "b", @@ -112,7 +112,7 @@ "labelWidth": 13, "labelHeight": 26, "labelPosition": "INSIDE_MIDDLE_CENTER", - "renderPriority": 1 + "zIndex": 1 } ], "connections": [ @@ -153,7 +153,7 @@ "animated": false, "tooltip": "", "icon": null, - "renderPriority": 2 + "zIndex": 2 }, { "id": "(md -> b)[0]", @@ -192,7 +192,7 @@ "animated": false, "tooltip": "", "icon": null, - "renderPriority": 2 + "zIndex": 2 } ] } diff --git a/e2etests/testdata/stable/li2/dagre/board.exp.json b/e2etests/testdata/stable/li2/dagre/board.exp.json index 879be0a21..d304fb466 100644 --- a/e2etests/testdata/stable/li2/dagre/board.exp.json +++ b/e2etests/testdata/stable/li2/dagre/board.exp.json @@ -36,7 +36,7 @@ "underline": false, "labelWidth": 245, "labelHeight": 76, - "renderPriority": 1 + "zIndex": 1 }, { "id": "a", @@ -74,7 +74,7 @@ "labelWidth": 13, "labelHeight": 26, "labelPosition": "INSIDE_MIDDLE_CENTER", - "renderPriority": 1 + "zIndex": 1 }, { "id": "b", @@ -112,7 +112,7 @@ "labelWidth": 13, "labelHeight": 26, "labelPosition": "INSIDE_MIDDLE_CENTER", - "renderPriority": 1 + "zIndex": 1 } ], "connections": [ @@ -162,7 +162,7 @@ "animated": false, "tooltip": "", "icon": null, - "renderPriority": 2 + "zIndex": 2 }, { "id": "(md -> b)[0]", @@ -210,7 +210,7 @@ "animated": false, "tooltip": "", "icon": null, - "renderPriority": 2 + "zIndex": 2 } ] } diff --git a/e2etests/testdata/stable/li2/elk/board.exp.json b/e2etests/testdata/stable/li2/elk/board.exp.json index b34fee101..8fd876876 100644 --- a/e2etests/testdata/stable/li2/elk/board.exp.json +++ b/e2etests/testdata/stable/li2/elk/board.exp.json @@ -36,7 +36,7 @@ "underline": false, "labelWidth": 245, "labelHeight": 76, - "renderPriority": 1 + "zIndex": 1 }, { "id": "a", @@ -74,7 +74,7 @@ "labelWidth": 13, "labelHeight": 26, "labelPosition": "INSIDE_MIDDLE_CENTER", - "renderPriority": 1 + "zIndex": 1 }, { "id": "b", @@ -112,7 +112,7 @@ "labelWidth": 13, "labelHeight": 26, "labelPosition": "INSIDE_MIDDLE_CENTER", - "renderPriority": 1 + "zIndex": 1 } ], "connections": [ @@ -153,7 +153,7 @@ "animated": false, "tooltip": "", "icon": null, - "renderPriority": 2 + "zIndex": 2 }, { "id": "(md -> b)[0]", @@ -192,7 +192,7 @@ "animated": false, "tooltip": "", "icon": null, - "renderPriority": 2 + "zIndex": 2 } ] } diff --git a/e2etests/testdata/stable/li3/dagre/board.exp.json b/e2etests/testdata/stable/li3/dagre/board.exp.json index 49a3d4e95..4febddb15 100644 --- a/e2etests/testdata/stable/li3/dagre/board.exp.json +++ b/e2etests/testdata/stable/li3/dagre/board.exp.json @@ -36,7 +36,7 @@ "underline": false, "labelWidth": 347, "labelHeight": 512, - "renderPriority": 1 + "zIndex": 1 }, { "id": "a", @@ -74,7 +74,7 @@ "labelWidth": 13, "labelHeight": 26, "labelPosition": "INSIDE_MIDDLE_CENTER", - "renderPriority": 1 + "zIndex": 1 }, { "id": "b", @@ -112,7 +112,7 @@ "labelWidth": 13, "labelHeight": 26, "labelPosition": "INSIDE_MIDDLE_CENTER", - "renderPriority": 1 + "zIndex": 1 } ], "connections": [ @@ -162,7 +162,7 @@ "animated": false, "tooltip": "", "icon": null, - "renderPriority": 2 + "zIndex": 2 }, { "id": "(md -> b)[0]", @@ -210,7 +210,7 @@ "animated": false, "tooltip": "", "icon": null, - "renderPriority": 2 + "zIndex": 2 } ] } diff --git a/e2etests/testdata/stable/li3/elk/board.exp.json b/e2etests/testdata/stable/li3/elk/board.exp.json index 77b744fe7..40385ff75 100644 --- a/e2etests/testdata/stable/li3/elk/board.exp.json +++ b/e2etests/testdata/stable/li3/elk/board.exp.json @@ -36,7 +36,7 @@ "underline": false, "labelWidth": 347, "labelHeight": 512, - "renderPriority": 1 + "zIndex": 1 }, { "id": "a", @@ -74,7 +74,7 @@ "labelWidth": 13, "labelHeight": 26, "labelPosition": "INSIDE_MIDDLE_CENTER", - "renderPriority": 1 + "zIndex": 1 }, { "id": "b", @@ -112,7 +112,7 @@ "labelWidth": 13, "labelHeight": 26, "labelPosition": "INSIDE_MIDDLE_CENTER", - "renderPriority": 1 + "zIndex": 1 } ], "connections": [ @@ -153,7 +153,7 @@ "animated": false, "tooltip": "", "icon": null, - "renderPriority": 2 + "zIndex": 2 }, { "id": "(md -> b)[0]", @@ -192,7 +192,7 @@ "animated": false, "tooltip": "", "icon": null, - "renderPriority": 2 + "zIndex": 2 } ] } diff --git a/e2etests/testdata/stable/li4/dagre/board.exp.json b/e2etests/testdata/stable/li4/dagre/board.exp.json index c5251df40..28c706f51 100644 --- a/e2etests/testdata/stable/li4/dagre/board.exp.json +++ b/e2etests/testdata/stable/li4/dagre/board.exp.json @@ -36,7 +36,7 @@ "underline": false, "labelWidth": 920, "labelHeight": 376, - "renderPriority": 1 + "zIndex": 1 }, { "id": "a", @@ -74,7 +74,7 @@ "labelWidth": 13, "labelHeight": 26, "labelPosition": "INSIDE_MIDDLE_CENTER", - "renderPriority": 1 + "zIndex": 1 }, { "id": "b", @@ -112,7 +112,7 @@ "labelWidth": 13, "labelHeight": 26, "labelPosition": "INSIDE_MIDDLE_CENTER", - "renderPriority": 1 + "zIndex": 1 } ], "connections": [ @@ -162,7 +162,7 @@ "animated": false, "tooltip": "", "icon": null, - "renderPriority": 2 + "zIndex": 2 }, { "id": "(md -> b)[0]", @@ -210,7 +210,7 @@ "animated": false, "tooltip": "", "icon": null, - "renderPriority": 2 + "zIndex": 2 } ] } diff --git a/e2etests/testdata/stable/li4/elk/board.exp.json b/e2etests/testdata/stable/li4/elk/board.exp.json index a7b64e572..081393ce3 100644 --- a/e2etests/testdata/stable/li4/elk/board.exp.json +++ b/e2etests/testdata/stable/li4/elk/board.exp.json @@ -36,7 +36,7 @@ "underline": false, "labelWidth": 920, "labelHeight": 376, - "renderPriority": 1 + "zIndex": 1 }, { "id": "a", @@ -74,7 +74,7 @@ "labelWidth": 13, "labelHeight": 26, "labelPosition": "INSIDE_MIDDLE_CENTER", - "renderPriority": 1 + "zIndex": 1 }, { "id": "b", @@ -112,7 +112,7 @@ "labelWidth": 13, "labelHeight": 26, "labelPosition": "INSIDE_MIDDLE_CENTER", - "renderPriority": 1 + "zIndex": 1 } ], "connections": [ @@ -153,7 +153,7 @@ "animated": false, "tooltip": "", "icon": null, - "renderPriority": 2 + "zIndex": 2 }, { "id": "(md -> b)[0]", @@ -192,7 +192,7 @@ "animated": false, "tooltip": "", "icon": null, - "renderPriority": 2 + "zIndex": 2 } ] } diff --git a/e2etests/testdata/stable/lone_h1/dagre/board.exp.json b/e2etests/testdata/stable/lone_h1/dagre/board.exp.json index cf9e8beac..e8f394122 100644 --- a/e2etests/testdata/stable/lone_h1/dagre/board.exp.json +++ b/e2etests/testdata/stable/lone_h1/dagre/board.exp.json @@ -36,7 +36,7 @@ "underline": false, "labelWidth": 266, "labelHeight": 50, - "renderPriority": 1 + "zIndex": 1 }, { "id": "a", @@ -74,7 +74,7 @@ "labelWidth": 13, "labelHeight": 26, "labelPosition": "INSIDE_MIDDLE_CENTER", - "renderPriority": 1 + "zIndex": 1 }, { "id": "b", @@ -112,7 +112,7 @@ "labelWidth": 13, "labelHeight": 26, "labelPosition": "INSIDE_MIDDLE_CENTER", - "renderPriority": 1 + "zIndex": 1 } ], "connections": [ @@ -162,7 +162,7 @@ "animated": false, "tooltip": "", "icon": null, - "renderPriority": 2 + "zIndex": 2 }, { "id": "(md -> b)[0]", @@ -210,7 +210,7 @@ "animated": false, "tooltip": "", "icon": null, - "renderPriority": 2 + "zIndex": 2 } ] } diff --git a/e2etests/testdata/stable/lone_h1/elk/board.exp.json b/e2etests/testdata/stable/lone_h1/elk/board.exp.json index fbe7c467c..e72ff8f7a 100644 --- a/e2etests/testdata/stable/lone_h1/elk/board.exp.json +++ b/e2etests/testdata/stable/lone_h1/elk/board.exp.json @@ -36,7 +36,7 @@ "underline": false, "labelWidth": 266, "labelHeight": 50, - "renderPriority": 1 + "zIndex": 1 }, { "id": "a", @@ -74,7 +74,7 @@ "labelWidth": 13, "labelHeight": 26, "labelPosition": "INSIDE_MIDDLE_CENTER", - "renderPriority": 1 + "zIndex": 1 }, { "id": "b", @@ -112,7 +112,7 @@ "labelWidth": 13, "labelHeight": 26, "labelPosition": "INSIDE_MIDDLE_CENTER", - "renderPriority": 1 + "zIndex": 1 } ], "connections": [ @@ -153,7 +153,7 @@ "animated": false, "tooltip": "", "icon": null, - "renderPriority": 2 + "zIndex": 2 }, { "id": "(md -> b)[0]", @@ -192,7 +192,7 @@ "animated": false, "tooltip": "", "icon": null, - "renderPriority": 2 + "zIndex": 2 } ] } diff --git a/e2etests/testdata/stable/markdown/dagre/board.exp.json b/e2etests/testdata/stable/markdown/dagre/board.exp.json index 77bd71cba..849709fa5 100644 --- a/e2etests/testdata/stable/markdown/dagre/board.exp.json +++ b/e2etests/testdata/stable/markdown/dagre/board.exp.json @@ -36,7 +36,7 @@ "underline": false, "labelWidth": 531, "labelHeight": 186, - "renderPriority": 1 + "zIndex": 1 }, { "id": "x", @@ -74,7 +74,7 @@ "labelWidth": 13, "labelHeight": 26, "labelPosition": "INSIDE_MIDDLE_CENTER", - "renderPriority": 1 + "zIndex": 1 }, { "id": "y", @@ -112,7 +112,7 @@ "labelWidth": 14, "labelHeight": 26, "labelPosition": "INSIDE_MIDDLE_CENTER", - "renderPriority": 1 + "zIndex": 1 } ], "connections": [ @@ -162,7 +162,7 @@ "animated": false, "tooltip": "", "icon": null, - "renderPriority": 2 + "zIndex": 2 }, { "id": "(hey -> y)[0]", @@ -210,7 +210,7 @@ "animated": false, "tooltip": "", "icon": null, - "renderPriority": 2 + "zIndex": 2 } ] } diff --git a/e2etests/testdata/stable/markdown/elk/board.exp.json b/e2etests/testdata/stable/markdown/elk/board.exp.json index dd83d3f25..53b5c2b45 100644 --- a/e2etests/testdata/stable/markdown/elk/board.exp.json +++ b/e2etests/testdata/stable/markdown/elk/board.exp.json @@ -36,7 +36,7 @@ "underline": false, "labelWidth": 531, "labelHeight": 186, - "renderPriority": 1 + "zIndex": 1 }, { "id": "x", @@ -74,7 +74,7 @@ "labelWidth": 13, "labelHeight": 26, "labelPosition": "INSIDE_MIDDLE_CENTER", - "renderPriority": 1 + "zIndex": 1 }, { "id": "y", @@ -112,7 +112,7 @@ "labelWidth": 14, "labelHeight": 26, "labelPosition": "INSIDE_MIDDLE_CENTER", - "renderPriority": 1 + "zIndex": 1 } ], "connections": [ @@ -153,7 +153,7 @@ "animated": false, "tooltip": "", "icon": null, - "renderPriority": 2 + "zIndex": 2 }, { "id": "(hey -> y)[0]", @@ -192,7 +192,7 @@ "animated": false, "tooltip": "", "icon": null, - "renderPriority": 2 + "zIndex": 2 } ] } 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 5c21ada1b..ce04b922f 100644 --- a/e2etests/testdata/stable/md_2space_newline/dagre/board.exp.json +++ b/e2etests/testdata/stable/md_2space_newline/dagre/board.exp.json @@ -37,7 +37,7 @@ "labelWidth": 129, "labelHeight": 41, "labelPosition": "INSIDE_TOP_CENTER", - "renderPriority": 1 + "zIndex": 1 }, { "id": "markdown.md", @@ -74,7 +74,7 @@ "underline": false, "labelWidth": 459, "labelHeight": 48, - "renderPriority": 2 + "zIndex": 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 790ab2c6a..8c587a003 100644 --- a/e2etests/testdata/stable/md_2space_newline/elk/board.exp.json +++ b/e2etests/testdata/stable/md_2space_newline/elk/board.exp.json @@ -37,7 +37,7 @@ "labelWidth": 129, "labelHeight": 41, "labelPosition": "INSIDE_TOP_CENTER", - "renderPriority": 1 + "zIndex": 1 }, { "id": "markdown.md", @@ -74,7 +74,7 @@ "underline": false, "labelWidth": 459, "labelHeight": 48, - "renderPriority": 2 + "zIndex": 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 614d6a4b6..f4879d7fc 100644 --- a/e2etests/testdata/stable/md_backslash_newline/dagre/board.exp.json +++ b/e2etests/testdata/stable/md_backslash_newline/dagre/board.exp.json @@ -37,7 +37,7 @@ "labelWidth": 129, "labelHeight": 41, "labelPosition": "INSIDE_TOP_CENTER", - "renderPriority": 1 + "zIndex": 1 }, { "id": "markdown.md", @@ -74,7 +74,7 @@ "underline": false, "labelWidth": 459, "labelHeight": 48, - "renderPriority": 2 + "zIndex": 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 91387c558..e4a3da091 100644 --- a/e2etests/testdata/stable/md_backslash_newline/elk/board.exp.json +++ b/e2etests/testdata/stable/md_backslash_newline/elk/board.exp.json @@ -37,7 +37,7 @@ "labelWidth": 129, "labelHeight": 41, "labelPosition": "INSIDE_TOP_CENTER", - "renderPriority": 1 + "zIndex": 1 }, { "id": "markdown.md", @@ -74,7 +74,7 @@ "underline": false, "labelWidth": 459, "labelHeight": 48, - "renderPriority": 2 + "zIndex": 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 173395e1d..832e07a2c 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 @@ -36,7 +36,7 @@ "underline": false, "labelWidth": 196, "labelHeight": 111, - "renderPriority": 1 + "zIndex": 1 }, { "id": "a", @@ -74,7 +74,7 @@ "labelWidth": 13, "labelHeight": 26, "labelPosition": "INSIDE_MIDDLE_CENTER", - "renderPriority": 1 + "zIndex": 1 }, { "id": "b", @@ -112,7 +112,7 @@ "labelWidth": 13, "labelHeight": 26, "labelPosition": "INSIDE_MIDDLE_CENTER", - "renderPriority": 1 + "zIndex": 1 } ], "connections": [ @@ -162,7 +162,7 @@ "animated": false, "tooltip": "", "icon": null, - "renderPriority": 2 + "zIndex": 2 }, { "id": "(md -> b)[0]", @@ -210,7 +210,7 @@ "animated": false, "tooltip": "", "icon": null, - "renderPriority": 2 + "zIndex": 2 } ] } 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 d2537dce7..e0b6a925f 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 @@ -36,7 +36,7 @@ "underline": false, "labelWidth": 196, "labelHeight": 111, - "renderPriority": 1 + "zIndex": 1 }, { "id": "a", @@ -74,7 +74,7 @@ "labelWidth": 13, "labelHeight": 26, "labelPosition": "INSIDE_MIDDLE_CENTER", - "renderPriority": 1 + "zIndex": 1 }, { "id": "b", @@ -112,7 +112,7 @@ "labelWidth": 13, "labelHeight": 26, "labelPosition": "INSIDE_MIDDLE_CENTER", - "renderPriority": 1 + "zIndex": 1 } ], "connections": [ @@ -153,7 +153,7 @@ "animated": false, "tooltip": "", "icon": null, - "renderPriority": 2 + "zIndex": 2 }, { "id": "(md -> b)[0]", @@ -192,7 +192,7 @@ "animated": false, "tooltip": "", "icon": null, - "renderPriority": 2 + "zIndex": 2 } ] } 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 589f65a09..c47059420 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 @@ -36,7 +36,7 @@ "underline": false, "labelWidth": 212, "labelHeight": 151, - "renderPriority": 1 + "zIndex": 1 }, { "id": "a", @@ -74,7 +74,7 @@ "labelWidth": 13, "labelHeight": 26, "labelPosition": "INSIDE_MIDDLE_CENTER", - "renderPriority": 1 + "zIndex": 1 }, { "id": "b", @@ -112,7 +112,7 @@ "labelWidth": 13, "labelHeight": 26, "labelPosition": "INSIDE_MIDDLE_CENTER", - "renderPriority": 1 + "zIndex": 1 } ], "connections": [ @@ -162,7 +162,7 @@ "animated": false, "tooltip": "", "icon": null, - "renderPriority": 2 + "zIndex": 2 }, { "id": "(md -> b)[0]", @@ -210,7 +210,7 @@ "animated": false, "tooltip": "", "icon": null, - "renderPriority": 2 + "zIndex": 2 } ] } 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 19de1d4ab..5bfe119bf 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 @@ -36,7 +36,7 @@ "underline": false, "labelWidth": 212, "labelHeight": 151, - "renderPriority": 1 + "zIndex": 1 }, { "id": "a", @@ -74,7 +74,7 @@ "labelWidth": 13, "labelHeight": 26, "labelPosition": "INSIDE_MIDDLE_CENTER", - "renderPriority": 1 + "zIndex": 1 }, { "id": "b", @@ -112,7 +112,7 @@ "labelWidth": 13, "labelHeight": 26, "labelPosition": "INSIDE_MIDDLE_CENTER", - "renderPriority": 1 + "zIndex": 1 } ], "connections": [ @@ -153,7 +153,7 @@ "animated": false, "tooltip": "", "icon": null, - "renderPriority": 2 + "zIndex": 2 }, { "id": "(md -> b)[0]", @@ -192,7 +192,7 @@ "animated": false, "tooltip": "", "icon": null, - "renderPriority": 2 + "zIndex": 2 } ] } 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 580a3965d..2215f7b2b 100644 --- a/e2etests/testdata/stable/md_code_inline/dagre/board.exp.json +++ b/e2etests/testdata/stable/md_code_inline/dagre/board.exp.json @@ -36,7 +36,7 @@ "underline": false, "labelWidth": 46, "labelHeight": 24, - "renderPriority": 1 + "zIndex": 1 }, { "id": "a", @@ -74,7 +74,7 @@ "labelWidth": 13, "labelHeight": 26, "labelPosition": "INSIDE_MIDDLE_CENTER", - "renderPriority": 1 + "zIndex": 1 }, { "id": "b", @@ -112,7 +112,7 @@ "labelWidth": 13, "labelHeight": 26, "labelPosition": "INSIDE_MIDDLE_CENTER", - "renderPriority": 1 + "zIndex": 1 } ], "connections": [ @@ -162,7 +162,7 @@ "animated": false, "tooltip": "", "icon": null, - "renderPriority": 2 + "zIndex": 2 }, { "id": "(md -> b)[0]", @@ -210,7 +210,7 @@ "animated": false, "tooltip": "", "icon": null, - "renderPriority": 2 + "zIndex": 2 } ] } 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 80f2ae836..1badd2e9d 100644 --- a/e2etests/testdata/stable/md_code_inline/elk/board.exp.json +++ b/e2etests/testdata/stable/md_code_inline/elk/board.exp.json @@ -36,7 +36,7 @@ "underline": false, "labelWidth": 46, "labelHeight": 24, - "renderPriority": 1 + "zIndex": 1 }, { "id": "a", @@ -74,7 +74,7 @@ "labelWidth": 13, "labelHeight": 26, "labelPosition": "INSIDE_MIDDLE_CENTER", - "renderPriority": 1 + "zIndex": 1 }, { "id": "b", @@ -112,7 +112,7 @@ "labelWidth": 13, "labelHeight": 26, "labelPosition": "INSIDE_MIDDLE_CENTER", - "renderPriority": 1 + "zIndex": 1 } ], "connections": [ @@ -153,7 +153,7 @@ "animated": false, "tooltip": "", "icon": null, - "renderPriority": 2 + "zIndex": 2 }, { "id": "(md -> b)[0]", @@ -192,7 +192,7 @@ "animated": false, "tooltip": "", "icon": null, - "renderPriority": 2 + "zIndex": 2 } ] } diff --git a/e2etests/testdata/stable/multiline_text/dagre/board.exp.json b/e2etests/testdata/stable/multiline_text/dagre/board.exp.json index 8588cf436..304cc1cef 100644 --- a/e2etests/testdata/stable/multiline_text/dagre/board.exp.json +++ b/e2etests/testdata/stable/multiline_text/dagre/board.exp.json @@ -37,7 +37,7 @@ "labelWidth": 102, "labelHeight": 58, "labelPosition": "INSIDE_MIDDLE_CENTER", - "renderPriority": 1 + "zIndex": 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 71715e15e..4fa066c12 100644 --- a/e2etests/testdata/stable/multiline_text/elk/board.exp.json +++ b/e2etests/testdata/stable/multiline_text/elk/board.exp.json @@ -37,7 +37,7 @@ "labelWidth": 102, "labelHeight": 58, "labelPosition": "INSIDE_MIDDLE_CENTER", - "renderPriority": 1 + "zIndex": 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 731a2f2d9..7b1d39457 100644 --- a/e2etests/testdata/stable/multiple_trees/dagre/board.exp.json +++ b/e2etests/testdata/stable/multiple_trees/dagre/board.exp.json @@ -37,7 +37,7 @@ "labelWidth": 13, "labelHeight": 26, "labelPosition": "INSIDE_MIDDLE_CENTER", - "renderPriority": 1 + "zIndex": 1 }, { "id": "b", @@ -75,7 +75,7 @@ "labelWidth": 13, "labelHeight": 26, "labelPosition": "INSIDE_MIDDLE_CENTER", - "renderPriority": 1 + "zIndex": 1 }, { "id": "c", @@ -113,7 +113,7 @@ "labelWidth": 13, "labelHeight": 26, "labelPosition": "INSIDE_MIDDLE_CENTER", - "renderPriority": 1 + "zIndex": 1 }, { "id": "d", @@ -151,7 +151,7 @@ "labelWidth": 14, "labelHeight": 26, "labelPosition": "INSIDE_MIDDLE_CENTER", - "renderPriority": 1 + "zIndex": 1 }, { "id": "e", @@ -189,7 +189,7 @@ "labelWidth": 13, "labelHeight": 26, "labelPosition": "INSIDE_MIDDLE_CENTER", - "renderPriority": 1 + "zIndex": 1 }, { "id": "f", @@ -227,7 +227,7 @@ "labelWidth": 11, "labelHeight": 26, "labelPosition": "INSIDE_MIDDLE_CENTER", - "renderPriority": 1 + "zIndex": 1 }, { "id": "g", @@ -265,7 +265,7 @@ "labelWidth": 14, "labelHeight": 26, "labelPosition": "INSIDE_MIDDLE_CENTER", - "renderPriority": 1 + "zIndex": 1 }, { "id": "h", @@ -303,7 +303,7 @@ "labelWidth": 13, "labelHeight": 26, "labelPosition": "INSIDE_MIDDLE_CENTER", - "renderPriority": 1 + "zIndex": 1 }, { "id": "i", @@ -341,7 +341,7 @@ "labelWidth": 9, "labelHeight": 26, "labelPosition": "INSIDE_MIDDLE_CENTER", - "renderPriority": 1 + "zIndex": 1 }, { "id": "j", @@ -379,7 +379,7 @@ "labelWidth": 10, "labelHeight": 26, "labelPosition": "INSIDE_MIDDLE_CENTER", - "renderPriority": 1 + "zIndex": 1 }, { "id": "k", @@ -417,7 +417,7 @@ "labelWidth": 13, "labelHeight": 26, "labelPosition": "INSIDE_MIDDLE_CENTER", - "renderPriority": 1 + "zIndex": 1 }, { "id": "l", @@ -455,7 +455,7 @@ "labelWidth": 9, "labelHeight": 26, "labelPosition": "INSIDE_MIDDLE_CENTER", - "renderPriority": 1 + "zIndex": 1 }, { "id": "m", @@ -493,7 +493,7 @@ "labelWidth": 17, "labelHeight": 26, "labelPosition": "INSIDE_MIDDLE_CENTER", - "renderPriority": 1 + "zIndex": 1 }, { "id": "n", @@ -531,7 +531,7 @@ "labelWidth": 13, "labelHeight": 26, "labelPosition": "INSIDE_MIDDLE_CENTER", - "renderPriority": 1 + "zIndex": 1 }, { "id": "o", @@ -569,7 +569,7 @@ "labelWidth": 14, "labelHeight": 26, "labelPosition": "INSIDE_MIDDLE_CENTER", - "renderPriority": 1 + "zIndex": 1 }, { "id": "p", @@ -607,7 +607,7 @@ "labelWidth": 13, "labelHeight": 26, "labelPosition": "INSIDE_MIDDLE_CENTER", - "renderPriority": 1 + "zIndex": 1 }, { "id": "q", @@ -645,7 +645,7 @@ "labelWidth": 14, "labelHeight": 26, "labelPosition": "INSIDE_MIDDLE_CENTER", - "renderPriority": 1 + "zIndex": 1 }, { "id": "r", @@ -683,7 +683,7 @@ "labelWidth": 11, "labelHeight": 26, "labelPosition": "INSIDE_MIDDLE_CENTER", - "renderPriority": 1 + "zIndex": 1 }, { "id": "s", @@ -721,7 +721,7 @@ "labelWidth": 12, "labelHeight": 26, "labelPosition": "INSIDE_MIDDLE_CENTER", - "renderPriority": 1 + "zIndex": 1 }, { "id": "t", @@ -759,7 +759,7 @@ "labelWidth": 11, "labelHeight": 26, "labelPosition": "INSIDE_MIDDLE_CENTER", - "renderPriority": 1 + "zIndex": 1 }, { "id": "u", @@ -797,7 +797,7 @@ "labelWidth": 14, "labelHeight": 26, "labelPosition": "INSIDE_MIDDLE_CENTER", - "renderPriority": 1 + "zIndex": 1 }, { "id": "v", @@ -835,7 +835,7 @@ "labelWidth": 14, "labelHeight": 26, "labelPosition": "INSIDE_MIDDLE_CENTER", - "renderPriority": 1 + "zIndex": 1 }, { "id": "w", @@ -873,7 +873,7 @@ "labelWidth": 18, "labelHeight": 26, "labelPosition": "INSIDE_MIDDLE_CENTER", - "renderPriority": 1 + "zIndex": 1 } ], "connections": [ @@ -923,7 +923,7 @@ "animated": false, "tooltip": "", "icon": null, - "renderPriority": 2 + "zIndex": 2 }, { "id": "(a -> c)[0]", @@ -971,7 +971,7 @@ "animated": false, "tooltip": "", "icon": null, - "renderPriority": 2 + "zIndex": 2 }, { "id": "(a -> d)[0]", @@ -1019,7 +1019,7 @@ "animated": false, "tooltip": "", "icon": null, - "renderPriority": 2 + "zIndex": 2 }, { "id": "(a -> e)[0]", @@ -1067,7 +1067,7 @@ "animated": false, "tooltip": "", "icon": null, - "renderPriority": 2 + "zIndex": 2 }, { "id": "(a -> f)[0]", @@ -1115,7 +1115,7 @@ "animated": false, "tooltip": "", "icon": null, - "renderPriority": 2 + "zIndex": 2 }, { "id": "(g -> a)[0]", @@ -1163,7 +1163,7 @@ "animated": false, "tooltip": "", "icon": null, - "renderPriority": 2 + "zIndex": 2 }, { "id": "(a -> h)[0]", @@ -1211,7 +1211,7 @@ "animated": false, "tooltip": "", "icon": null, - "renderPriority": 2 + "zIndex": 2 }, { "id": "(i -> b)[0]", @@ -1259,7 +1259,7 @@ "animated": false, "tooltip": "", "icon": null, - "renderPriority": 2 + "zIndex": 2 }, { "id": "(j -> b)[0]", @@ -1307,7 +1307,7 @@ "animated": false, "tooltip": "", "icon": null, - "renderPriority": 2 + "zIndex": 2 }, { "id": "(k -> g)[0]", @@ -1355,7 +1355,7 @@ "animated": false, "tooltip": "", "icon": null, - "renderPriority": 2 + "zIndex": 2 }, { "id": "(l -> g)[0]", @@ -1403,7 +1403,7 @@ "animated": false, "tooltip": "", "icon": null, - "renderPriority": 2 + "zIndex": 2 }, { "id": "(c -> m)[0]", @@ -1451,7 +1451,7 @@ "animated": false, "tooltip": "", "icon": null, - "renderPriority": 2 + "zIndex": 2 }, { "id": "(c -> n)[0]", @@ -1499,7 +1499,7 @@ "animated": false, "tooltip": "", "icon": null, - "renderPriority": 2 + "zIndex": 2 }, { "id": "(d -> o)[0]", @@ -1547,7 +1547,7 @@ "animated": false, "tooltip": "", "icon": null, - "renderPriority": 2 + "zIndex": 2 }, { "id": "(d -> p)[0]", @@ -1595,7 +1595,7 @@ "animated": false, "tooltip": "", "icon": null, - "renderPriority": 2 + "zIndex": 2 }, { "id": "(e -> q)[0]", @@ -1643,7 +1643,7 @@ "animated": false, "tooltip": "", "icon": null, - "renderPriority": 2 + "zIndex": 2 }, { "id": "(e -> r)[0]", @@ -1691,7 +1691,7 @@ "animated": false, "tooltip": "", "icon": null, - "renderPriority": 2 + "zIndex": 2 }, { "id": "(p -> s)[0]", @@ -1739,7 +1739,7 @@ "animated": false, "tooltip": "", "icon": null, - "renderPriority": 2 + "zIndex": 2 }, { "id": "(f -> t)[0]", @@ -1787,7 +1787,7 @@ "animated": false, "tooltip": "", "icon": null, - "renderPriority": 2 + "zIndex": 2 }, { "id": "(f -> u)[0]", @@ -1835,7 +1835,7 @@ "animated": false, "tooltip": "", "icon": null, - "renderPriority": 2 + "zIndex": 2 }, { "id": "(v -> h)[0]", @@ -1883,7 +1883,7 @@ "animated": false, "tooltip": "", "icon": null, - "renderPriority": 2 + "zIndex": 2 }, { "id": "(w -> h)[0]", @@ -1931,7 +1931,7 @@ "animated": false, "tooltip": "", "icon": null, - "renderPriority": 2 + "zIndex": 2 } ] } diff --git a/e2etests/testdata/stable/multiple_trees/elk/board.exp.json b/e2etests/testdata/stable/multiple_trees/elk/board.exp.json index 63102b849..deadaab75 100644 --- a/e2etests/testdata/stable/multiple_trees/elk/board.exp.json +++ b/e2etests/testdata/stable/multiple_trees/elk/board.exp.json @@ -37,7 +37,7 @@ "labelWidth": 13, "labelHeight": 26, "labelPosition": "INSIDE_MIDDLE_CENTER", - "renderPriority": 1 + "zIndex": 1 }, { "id": "b", @@ -75,7 +75,7 @@ "labelWidth": 13, "labelHeight": 26, "labelPosition": "INSIDE_MIDDLE_CENTER", - "renderPriority": 1 + "zIndex": 1 }, { "id": "c", @@ -113,7 +113,7 @@ "labelWidth": 13, "labelHeight": 26, "labelPosition": "INSIDE_MIDDLE_CENTER", - "renderPriority": 1 + "zIndex": 1 }, { "id": "d", @@ -151,7 +151,7 @@ "labelWidth": 14, "labelHeight": 26, "labelPosition": "INSIDE_MIDDLE_CENTER", - "renderPriority": 1 + "zIndex": 1 }, { "id": "e", @@ -189,7 +189,7 @@ "labelWidth": 13, "labelHeight": 26, "labelPosition": "INSIDE_MIDDLE_CENTER", - "renderPriority": 1 + "zIndex": 1 }, { "id": "f", @@ -227,7 +227,7 @@ "labelWidth": 11, "labelHeight": 26, "labelPosition": "INSIDE_MIDDLE_CENTER", - "renderPriority": 1 + "zIndex": 1 }, { "id": "g", @@ -265,7 +265,7 @@ "labelWidth": 14, "labelHeight": 26, "labelPosition": "INSIDE_MIDDLE_CENTER", - "renderPriority": 1 + "zIndex": 1 }, { "id": "h", @@ -303,7 +303,7 @@ "labelWidth": 13, "labelHeight": 26, "labelPosition": "INSIDE_MIDDLE_CENTER", - "renderPriority": 1 + "zIndex": 1 }, { "id": "i", @@ -341,7 +341,7 @@ "labelWidth": 9, "labelHeight": 26, "labelPosition": "INSIDE_MIDDLE_CENTER", - "renderPriority": 1 + "zIndex": 1 }, { "id": "j", @@ -379,7 +379,7 @@ "labelWidth": 10, "labelHeight": 26, "labelPosition": "INSIDE_MIDDLE_CENTER", - "renderPriority": 1 + "zIndex": 1 }, { "id": "k", @@ -417,7 +417,7 @@ "labelWidth": 13, "labelHeight": 26, "labelPosition": "INSIDE_MIDDLE_CENTER", - "renderPriority": 1 + "zIndex": 1 }, { "id": "l", @@ -455,7 +455,7 @@ "labelWidth": 9, "labelHeight": 26, "labelPosition": "INSIDE_MIDDLE_CENTER", - "renderPriority": 1 + "zIndex": 1 }, { "id": "m", @@ -493,7 +493,7 @@ "labelWidth": 17, "labelHeight": 26, "labelPosition": "INSIDE_MIDDLE_CENTER", - "renderPriority": 1 + "zIndex": 1 }, { "id": "n", @@ -531,7 +531,7 @@ "labelWidth": 13, "labelHeight": 26, "labelPosition": "INSIDE_MIDDLE_CENTER", - "renderPriority": 1 + "zIndex": 1 }, { "id": "o", @@ -569,7 +569,7 @@ "labelWidth": 14, "labelHeight": 26, "labelPosition": "INSIDE_MIDDLE_CENTER", - "renderPriority": 1 + "zIndex": 1 }, { "id": "p", @@ -607,7 +607,7 @@ "labelWidth": 13, "labelHeight": 26, "labelPosition": "INSIDE_MIDDLE_CENTER", - "renderPriority": 1 + "zIndex": 1 }, { "id": "q", @@ -645,7 +645,7 @@ "labelWidth": 14, "labelHeight": 26, "labelPosition": "INSIDE_MIDDLE_CENTER", - "renderPriority": 1 + "zIndex": 1 }, { "id": "r", @@ -683,7 +683,7 @@ "labelWidth": 11, "labelHeight": 26, "labelPosition": "INSIDE_MIDDLE_CENTER", - "renderPriority": 1 + "zIndex": 1 }, { "id": "s", @@ -721,7 +721,7 @@ "labelWidth": 12, "labelHeight": 26, "labelPosition": "INSIDE_MIDDLE_CENTER", - "renderPriority": 1 + "zIndex": 1 }, { "id": "t", @@ -759,7 +759,7 @@ "labelWidth": 11, "labelHeight": 26, "labelPosition": "INSIDE_MIDDLE_CENTER", - "renderPriority": 1 + "zIndex": 1 }, { "id": "u", @@ -797,7 +797,7 @@ "labelWidth": 14, "labelHeight": 26, "labelPosition": "INSIDE_MIDDLE_CENTER", - "renderPriority": 1 + "zIndex": 1 }, { "id": "v", @@ -835,7 +835,7 @@ "labelWidth": 14, "labelHeight": 26, "labelPosition": "INSIDE_MIDDLE_CENTER", - "renderPriority": 1 + "zIndex": 1 }, { "id": "w", @@ -873,7 +873,7 @@ "labelWidth": 18, "labelHeight": 26, "labelPosition": "INSIDE_MIDDLE_CENTER", - "renderPriority": 1 + "zIndex": 1 } ], "connections": [ @@ -922,7 +922,7 @@ "animated": false, "tooltip": "", "icon": null, - "renderPriority": 2 + "zIndex": 2 }, { "id": "(a -> c)[0]", @@ -969,7 +969,7 @@ "animated": false, "tooltip": "", "icon": null, - "renderPriority": 2 + "zIndex": 2 }, { "id": "(a -> d)[0]", @@ -1016,7 +1016,7 @@ "animated": false, "tooltip": "", "icon": null, - "renderPriority": 2 + "zIndex": 2 }, { "id": "(a -> e)[0]", @@ -1055,7 +1055,7 @@ "animated": false, "tooltip": "", "icon": null, - "renderPriority": 2 + "zIndex": 2 }, { "id": "(a -> f)[0]", @@ -1102,7 +1102,7 @@ "animated": false, "tooltip": "", "icon": null, - "renderPriority": 2 + "zIndex": 2 }, { "id": "(g -> a)[0]", @@ -1141,7 +1141,7 @@ "animated": false, "tooltip": "", "icon": null, - "renderPriority": 2 + "zIndex": 2 }, { "id": "(a -> h)[0]", @@ -1188,7 +1188,7 @@ "animated": false, "tooltip": "", "icon": null, - "renderPriority": 2 + "zIndex": 2 }, { "id": "(i -> b)[0]", @@ -1227,7 +1227,7 @@ "animated": false, "tooltip": "", "icon": null, - "renderPriority": 2 + "zIndex": 2 }, { "id": "(j -> b)[0]", @@ -1274,7 +1274,7 @@ "animated": false, "tooltip": "", "icon": null, - "renderPriority": 2 + "zIndex": 2 }, { "id": "(k -> g)[0]", @@ -1321,7 +1321,7 @@ "animated": false, "tooltip": "", "icon": null, - "renderPriority": 2 + "zIndex": 2 }, { "id": "(l -> g)[0]", @@ -1360,7 +1360,7 @@ "animated": false, "tooltip": "", "icon": null, - "renderPriority": 2 + "zIndex": 2 }, { "id": "(c -> m)[0]", @@ -1407,7 +1407,7 @@ "animated": false, "tooltip": "", "icon": null, - "renderPriority": 2 + "zIndex": 2 }, { "id": "(c -> n)[0]", @@ -1446,7 +1446,7 @@ "animated": false, "tooltip": "", "icon": null, - "renderPriority": 2 + "zIndex": 2 }, { "id": "(d -> o)[0]", @@ -1493,7 +1493,7 @@ "animated": false, "tooltip": "", "icon": null, - "renderPriority": 2 + "zIndex": 2 }, { "id": "(d -> p)[0]", @@ -1532,7 +1532,7 @@ "animated": false, "tooltip": "", "icon": null, - "renderPriority": 2 + "zIndex": 2 }, { "id": "(e -> q)[0]", @@ -1571,7 +1571,7 @@ "animated": false, "tooltip": "", "icon": null, - "renderPriority": 2 + "zIndex": 2 }, { "id": "(e -> r)[0]", @@ -1618,7 +1618,7 @@ "animated": false, "tooltip": "", "icon": null, - "renderPriority": 2 + "zIndex": 2 }, { "id": "(p -> s)[0]", @@ -1657,7 +1657,7 @@ "animated": false, "tooltip": "", "icon": null, - "renderPriority": 2 + "zIndex": 2 }, { "id": "(f -> t)[0]", @@ -1696,7 +1696,7 @@ "animated": false, "tooltip": "", "icon": null, - "renderPriority": 2 + "zIndex": 2 }, { "id": "(f -> u)[0]", @@ -1743,7 +1743,7 @@ "animated": false, "tooltip": "", "icon": null, - "renderPriority": 2 + "zIndex": 2 }, { "id": "(v -> h)[0]", @@ -1790,7 +1790,7 @@ "animated": false, "tooltip": "", "icon": null, - "renderPriority": 2 + "zIndex": 2 }, { "id": "(w -> h)[0]", @@ -1829,7 +1829,7 @@ "animated": false, "tooltip": "", "icon": null, - "renderPriority": 2 + "zIndex": 2 } ] } diff --git a/e2etests/testdata/stable/n22_e32/dagre/board.exp.json b/e2etests/testdata/stable/n22_e32/dagre/board.exp.json index 2a566b70c..1fd58842a 100644 --- a/e2etests/testdata/stable/n22_e32/dagre/board.exp.json +++ b/e2etests/testdata/stable/n22_e32/dagre/board.exp.json @@ -37,7 +37,7 @@ "labelWidth": 13, "labelHeight": 26, "labelPosition": "INSIDE_MIDDLE_CENTER", - "renderPriority": 1 + "zIndex": 1 }, { "id": "b", @@ -75,7 +75,7 @@ "labelWidth": 13, "labelHeight": 26, "labelPosition": "INSIDE_MIDDLE_CENTER", - "renderPriority": 1 + "zIndex": 1 }, { "id": "c", @@ -113,7 +113,7 @@ "labelWidth": 13, "labelHeight": 26, "labelPosition": "INSIDE_MIDDLE_CENTER", - "renderPriority": 1 + "zIndex": 1 }, { "id": "d", @@ -151,7 +151,7 @@ "labelWidth": 14, "labelHeight": 26, "labelPosition": "INSIDE_MIDDLE_CENTER", - "renderPriority": 1 + "zIndex": 1 }, { "id": "e", @@ -189,7 +189,7 @@ "labelWidth": 13, "labelHeight": 26, "labelPosition": "INSIDE_MIDDLE_CENTER", - "renderPriority": 1 + "zIndex": 1 }, { "id": "f", @@ -227,7 +227,7 @@ "labelWidth": 11, "labelHeight": 26, "labelPosition": "INSIDE_MIDDLE_CENTER", - "renderPriority": 1 + "zIndex": 1 }, { "id": "g", @@ -265,7 +265,7 @@ "labelWidth": 14, "labelHeight": 26, "labelPosition": "INSIDE_MIDDLE_CENTER", - "renderPriority": 1 + "zIndex": 1 }, { "id": "h", @@ -303,7 +303,7 @@ "labelWidth": 13, "labelHeight": 26, "labelPosition": "INSIDE_MIDDLE_CENTER", - "renderPriority": 1 + "zIndex": 1 }, { "id": "i", @@ -341,7 +341,7 @@ "labelWidth": 9, "labelHeight": 26, "labelPosition": "INSIDE_MIDDLE_CENTER", - "renderPriority": 1 + "zIndex": 1 }, { "id": "j", @@ -379,7 +379,7 @@ "labelWidth": 10, "labelHeight": 26, "labelPosition": "INSIDE_MIDDLE_CENTER", - "renderPriority": 1 + "zIndex": 1 }, { "id": "k", @@ -417,7 +417,7 @@ "labelWidth": 13, "labelHeight": 26, "labelPosition": "INSIDE_MIDDLE_CENTER", - "renderPriority": 1 + "zIndex": 1 }, { "id": "l", @@ -455,7 +455,7 @@ "labelWidth": 9, "labelHeight": 26, "labelPosition": "INSIDE_MIDDLE_CENTER", - "renderPriority": 1 + "zIndex": 1 }, { "id": "m", @@ -493,7 +493,7 @@ "labelWidth": 17, "labelHeight": 26, "labelPosition": "INSIDE_MIDDLE_CENTER", - "renderPriority": 1 + "zIndex": 1 }, { "id": "n", @@ -531,7 +531,7 @@ "labelWidth": 13, "labelHeight": 26, "labelPosition": "INSIDE_MIDDLE_CENTER", - "renderPriority": 1 + "zIndex": 1 }, { "id": "o", @@ -569,7 +569,7 @@ "labelWidth": 14, "labelHeight": 26, "labelPosition": "INSIDE_MIDDLE_CENTER", - "renderPriority": 1 + "zIndex": 1 }, { "id": "p", @@ -607,7 +607,7 @@ "labelWidth": 13, "labelHeight": 26, "labelPosition": "INSIDE_MIDDLE_CENTER", - "renderPriority": 1 + "zIndex": 1 }, { "id": "q", @@ -645,7 +645,7 @@ "labelWidth": 14, "labelHeight": 26, "labelPosition": "INSIDE_MIDDLE_CENTER", - "renderPriority": 1 + "zIndex": 1 }, { "id": "r", @@ -683,7 +683,7 @@ "labelWidth": 11, "labelHeight": 26, "labelPosition": "INSIDE_MIDDLE_CENTER", - "renderPriority": 1 + "zIndex": 1 }, { "id": "s", @@ -721,7 +721,7 @@ "labelWidth": 12, "labelHeight": 26, "labelPosition": "INSIDE_MIDDLE_CENTER", - "renderPriority": 1 + "zIndex": 1 }, { "id": "t", @@ -759,7 +759,7 @@ "labelWidth": 11, "labelHeight": 26, "labelPosition": "INSIDE_MIDDLE_CENTER", - "renderPriority": 1 + "zIndex": 1 }, { "id": "u", @@ -797,7 +797,7 @@ "labelWidth": 14, "labelHeight": 26, "labelPosition": "INSIDE_MIDDLE_CENTER", - "renderPriority": 1 + "zIndex": 1 } ], "connections": [ @@ -859,7 +859,7 @@ "animated": false, "tooltip": "", "icon": null, - "renderPriority": 2 + "zIndex": 2 }, { "id": "(c -> a)[0]", @@ -943,7 +943,7 @@ "animated": false, "tooltip": "", "icon": null, - "renderPriority": 2 + "zIndex": 2 }, { "id": "(d -> a)[0]", @@ -991,7 +991,7 @@ "animated": false, "tooltip": "", "icon": null, - "renderPriority": 2 + "zIndex": 2 }, { "id": "(d -> b)[0]", @@ -1075,7 +1075,7 @@ "animated": false, "tooltip": "", "icon": null, - "renderPriority": 2 + "zIndex": 2 }, { "id": "(d -> e)[0]", @@ -1123,7 +1123,7 @@ "animated": false, "tooltip": "", "icon": null, - "renderPriority": 2 + "zIndex": 2 }, { "id": "(e -> f)[0]", @@ -1171,7 +1171,7 @@ "animated": false, "tooltip": "", "icon": null, - "renderPriority": 2 + "zIndex": 2 }, { "id": "(f -> b)[0]", @@ -1219,7 +1219,7 @@ "animated": false, "tooltip": "", "icon": null, - "renderPriority": 2 + "zIndex": 2 }, { "id": "(c -> f)[0]", @@ -1327,7 +1327,7 @@ "animated": false, "tooltip": "", "icon": null, - "renderPriority": 2 + "zIndex": 2 }, { "id": "(g -> c)[0]", @@ -1387,7 +1387,7 @@ "animated": false, "tooltip": "", "icon": null, - "renderPriority": 2 + "zIndex": 2 }, { "id": "(g -> h)[0]", @@ -1435,7 +1435,7 @@ "animated": false, "tooltip": "", "icon": null, - "renderPriority": 2 + "zIndex": 2 }, { "id": "(h -> i)[0]", @@ -1483,7 +1483,7 @@ "animated": false, "tooltip": "", "icon": null, - "renderPriority": 2 + "zIndex": 2 }, { "id": "(i -> j)[0]", @@ -1531,7 +1531,7 @@ "animated": false, "tooltip": "", "icon": null, - "renderPriority": 2 + "zIndex": 2 }, { "id": "(j -> k)[0]", @@ -1579,7 +1579,7 @@ "animated": false, "tooltip": "", "icon": null, - "renderPriority": 2 + "zIndex": 2 }, { "id": "(k -> e)[0]", @@ -1627,7 +1627,7 @@ "animated": false, "tooltip": "", "icon": null, - "renderPriority": 2 + "zIndex": 2 }, { "id": "(j -> f)[0]", @@ -1711,7 +1711,7 @@ "animated": false, "tooltip": "", "icon": null, - "renderPriority": 2 + "zIndex": 2 }, { "id": "(l -> m)[0]", @@ -1771,7 +1771,7 @@ "animated": false, "tooltip": "", "icon": null, - "renderPriority": 2 + "zIndex": 2 }, { "id": "(n -> l)[0]", @@ -1819,7 +1819,7 @@ "animated": false, "tooltip": "", "icon": null, - "renderPriority": 2 + "zIndex": 2 }, { "id": "(n -> l)[1]", @@ -1867,7 +1867,7 @@ "animated": false, "tooltip": "", "icon": null, - "renderPriority": 2 + "zIndex": 2 }, { "id": "(n -> m)[0]", @@ -1951,7 +1951,7 @@ "animated": false, "tooltip": "", "icon": null, - "renderPriority": 2 + "zIndex": 2 }, { "id": "(n -> o)[0]", @@ -1999,7 +1999,7 @@ "animated": false, "tooltip": "", "icon": null, - "renderPriority": 2 + "zIndex": 2 }, { "id": "(o -> p)[0]", @@ -2047,7 +2047,7 @@ "animated": false, "tooltip": "", "icon": null, - "renderPriority": 2 + "zIndex": 2 }, { "id": "(p -> m)[0]", @@ -2095,7 +2095,7 @@ "animated": false, "tooltip": "", "icon": null, - "renderPriority": 2 + "zIndex": 2 }, { "id": "(n -> p)[0]", @@ -2155,7 +2155,7 @@ "animated": false, "tooltip": "", "icon": null, - "renderPriority": 2 + "zIndex": 2 }, { "id": "(q -> n)[0]", @@ -2263,7 +2263,7 @@ "animated": false, "tooltip": "", "icon": null, - "renderPriority": 2 + "zIndex": 2 }, { "id": "(q -> r)[0]", @@ -2311,7 +2311,7 @@ "animated": false, "tooltip": "", "icon": null, - "renderPriority": 2 + "zIndex": 2 }, { "id": "(r -> s)[0]", @@ -2359,7 +2359,7 @@ "animated": false, "tooltip": "", "icon": null, - "renderPriority": 2 + "zIndex": 2 }, { "id": "(s -> t)[0]", @@ -2407,7 +2407,7 @@ "animated": false, "tooltip": "", "icon": null, - "renderPriority": 2 + "zIndex": 2 }, { "id": "(t -> u)[0]", @@ -2455,7 +2455,7 @@ "animated": false, "tooltip": "", "icon": null, - "renderPriority": 2 + "zIndex": 2 }, { "id": "(u -> o)[0]", @@ -2503,7 +2503,7 @@ "animated": false, "tooltip": "", "icon": null, - "renderPriority": 2 + "zIndex": 2 }, { "id": "(t -> p)[0]", @@ -2587,7 +2587,7 @@ "animated": false, "tooltip": "", "icon": null, - "renderPriority": 2 + "zIndex": 2 }, { "id": "(c -> t)[0]", @@ -2635,7 +2635,7 @@ "animated": false, "tooltip": "", "icon": null, - "renderPriority": 2 + "zIndex": 2 }, { "id": "(s -> a)[0]", @@ -2719,7 +2719,7 @@ "animated": false, "tooltip": "", "icon": null, - "renderPriority": 2 + "zIndex": 2 }, { "id": "(u -> a)[0]", @@ -2767,7 +2767,7 @@ "animated": false, "tooltip": "", "icon": null, - "renderPriority": 2 + "zIndex": 2 } ] } diff --git a/e2etests/testdata/stable/n22_e32/elk/board.exp.json b/e2etests/testdata/stable/n22_e32/elk/board.exp.json index d64ba8f50..3c92ca593 100644 --- a/e2etests/testdata/stable/n22_e32/elk/board.exp.json +++ b/e2etests/testdata/stable/n22_e32/elk/board.exp.json @@ -37,7 +37,7 @@ "labelWidth": 13, "labelHeight": 26, "labelPosition": "INSIDE_MIDDLE_CENTER", - "renderPriority": 1 + "zIndex": 1 }, { "id": "b", @@ -75,7 +75,7 @@ "labelWidth": 13, "labelHeight": 26, "labelPosition": "INSIDE_MIDDLE_CENTER", - "renderPriority": 1 + "zIndex": 1 }, { "id": "c", @@ -113,7 +113,7 @@ "labelWidth": 13, "labelHeight": 26, "labelPosition": "INSIDE_MIDDLE_CENTER", - "renderPriority": 1 + "zIndex": 1 }, { "id": "d", @@ -151,7 +151,7 @@ "labelWidth": 14, "labelHeight": 26, "labelPosition": "INSIDE_MIDDLE_CENTER", - "renderPriority": 1 + "zIndex": 1 }, { "id": "e", @@ -189,7 +189,7 @@ "labelWidth": 13, "labelHeight": 26, "labelPosition": "INSIDE_MIDDLE_CENTER", - "renderPriority": 1 + "zIndex": 1 }, { "id": "f", @@ -227,7 +227,7 @@ "labelWidth": 11, "labelHeight": 26, "labelPosition": "INSIDE_MIDDLE_CENTER", - "renderPriority": 1 + "zIndex": 1 }, { "id": "g", @@ -265,7 +265,7 @@ "labelWidth": 14, "labelHeight": 26, "labelPosition": "INSIDE_MIDDLE_CENTER", - "renderPriority": 1 + "zIndex": 1 }, { "id": "h", @@ -303,7 +303,7 @@ "labelWidth": 13, "labelHeight": 26, "labelPosition": "INSIDE_MIDDLE_CENTER", - "renderPriority": 1 + "zIndex": 1 }, { "id": "i", @@ -341,7 +341,7 @@ "labelWidth": 9, "labelHeight": 26, "labelPosition": "INSIDE_MIDDLE_CENTER", - "renderPriority": 1 + "zIndex": 1 }, { "id": "j", @@ -379,7 +379,7 @@ "labelWidth": 10, "labelHeight": 26, "labelPosition": "INSIDE_MIDDLE_CENTER", - "renderPriority": 1 + "zIndex": 1 }, { "id": "k", @@ -417,7 +417,7 @@ "labelWidth": 13, "labelHeight": 26, "labelPosition": "INSIDE_MIDDLE_CENTER", - "renderPriority": 1 + "zIndex": 1 }, { "id": "l", @@ -455,7 +455,7 @@ "labelWidth": 9, "labelHeight": 26, "labelPosition": "INSIDE_MIDDLE_CENTER", - "renderPriority": 1 + "zIndex": 1 }, { "id": "m", @@ -493,7 +493,7 @@ "labelWidth": 17, "labelHeight": 26, "labelPosition": "INSIDE_MIDDLE_CENTER", - "renderPriority": 1 + "zIndex": 1 }, { "id": "n", @@ -531,7 +531,7 @@ "labelWidth": 13, "labelHeight": 26, "labelPosition": "INSIDE_MIDDLE_CENTER", - "renderPriority": 1 + "zIndex": 1 }, { "id": "o", @@ -569,7 +569,7 @@ "labelWidth": 14, "labelHeight": 26, "labelPosition": "INSIDE_MIDDLE_CENTER", - "renderPriority": 1 + "zIndex": 1 }, { "id": "p", @@ -607,7 +607,7 @@ "labelWidth": 13, "labelHeight": 26, "labelPosition": "INSIDE_MIDDLE_CENTER", - "renderPriority": 1 + "zIndex": 1 }, { "id": "q", @@ -645,7 +645,7 @@ "labelWidth": 14, "labelHeight": 26, "labelPosition": "INSIDE_MIDDLE_CENTER", - "renderPriority": 1 + "zIndex": 1 }, { "id": "r", @@ -683,7 +683,7 @@ "labelWidth": 11, "labelHeight": 26, "labelPosition": "INSIDE_MIDDLE_CENTER", - "renderPriority": 1 + "zIndex": 1 }, { "id": "s", @@ -721,7 +721,7 @@ "labelWidth": 12, "labelHeight": 26, "labelPosition": "INSIDE_MIDDLE_CENTER", - "renderPriority": 1 + "zIndex": 1 }, { "id": "t", @@ -759,7 +759,7 @@ "labelWidth": 11, "labelHeight": 26, "labelPosition": "INSIDE_MIDDLE_CENTER", - "renderPriority": 1 + "zIndex": 1 }, { "id": "u", @@ -797,7 +797,7 @@ "labelWidth": 14, "labelHeight": 26, "labelPosition": "INSIDE_MIDDLE_CENTER", - "renderPriority": 1 + "zIndex": 1 } ], "connections": [ @@ -846,7 +846,7 @@ "animated": false, "tooltip": "", "icon": null, - "renderPriority": 2 + "zIndex": 2 }, { "id": "(c -> a)[0]", @@ -893,7 +893,7 @@ "animated": false, "tooltip": "", "icon": null, - "renderPriority": 2 + "zIndex": 2 }, { "id": "(d -> a)[0]", @@ -940,7 +940,7 @@ "animated": false, "tooltip": "", "icon": null, - "renderPriority": 2 + "zIndex": 2 }, { "id": "(d -> b)[0]", @@ -979,7 +979,7 @@ "animated": false, "tooltip": "", "icon": null, - "renderPriority": 2 + "zIndex": 2 }, { "id": "(d -> e)[0]", @@ -1026,7 +1026,7 @@ "animated": false, "tooltip": "", "icon": null, - "renderPriority": 2 + "zIndex": 2 }, { "id": "(e -> f)[0]", @@ -1065,7 +1065,7 @@ "animated": false, "tooltip": "", "icon": null, - "renderPriority": 2 + "zIndex": 2 }, { "id": "(f -> b)[0]", @@ -1112,7 +1112,7 @@ "animated": false, "tooltip": "", "icon": null, - "renderPriority": 2 + "zIndex": 2 }, { "id": "(c -> f)[0]", @@ -1167,7 +1167,7 @@ "animated": false, "tooltip": "", "icon": null, - "renderPriority": 2 + "zIndex": 2 }, { "id": "(g -> c)[0]", @@ -1206,7 +1206,7 @@ "animated": false, "tooltip": "", "icon": null, - "renderPriority": 2 + "zIndex": 2 }, { "id": "(g -> h)[0]", @@ -1253,7 +1253,7 @@ "animated": false, "tooltip": "", "icon": null, - "renderPriority": 2 + "zIndex": 2 }, { "id": "(h -> i)[0]", @@ -1292,7 +1292,7 @@ "animated": false, "tooltip": "", "icon": null, - "renderPriority": 2 + "zIndex": 2 }, { "id": "(i -> j)[0]", @@ -1331,7 +1331,7 @@ "animated": false, "tooltip": "", "icon": null, - "renderPriority": 2 + "zIndex": 2 }, { "id": "(j -> k)[0]", @@ -1370,7 +1370,7 @@ "animated": false, "tooltip": "", "icon": null, - "renderPriority": 2 + "zIndex": 2 }, { "id": "(k -> e)[0]", @@ -1409,7 +1409,7 @@ "animated": false, "tooltip": "", "icon": null, - "renderPriority": 2 + "zIndex": 2 }, { "id": "(j -> f)[0]", @@ -1464,7 +1464,7 @@ "animated": false, "tooltip": "", "icon": null, - "renderPriority": 2 + "zIndex": 2 }, { "id": "(l -> m)[0]", @@ -1511,7 +1511,7 @@ "animated": false, "tooltip": "", "icon": null, - "renderPriority": 2 + "zIndex": 2 }, { "id": "(n -> l)[0]", @@ -1558,7 +1558,7 @@ "animated": false, "tooltip": "", "icon": null, - "renderPriority": 2 + "zIndex": 2 }, { "id": "(n -> l)[1]", @@ -1597,7 +1597,7 @@ "animated": false, "tooltip": "", "icon": null, - "renderPriority": 2 + "zIndex": 2 }, { "id": "(n -> m)[0]", @@ -1644,7 +1644,7 @@ "animated": false, "tooltip": "", "icon": null, - "renderPriority": 2 + "zIndex": 2 }, { "id": "(n -> o)[0]", @@ -1691,7 +1691,7 @@ "animated": false, "tooltip": "", "icon": null, - "renderPriority": 2 + "zIndex": 2 }, { "id": "(o -> p)[0]", @@ -1730,7 +1730,7 @@ "animated": false, "tooltip": "", "icon": null, - "renderPriority": 2 + "zIndex": 2 }, { "id": "(p -> m)[0]", @@ -1777,7 +1777,7 @@ "animated": false, "tooltip": "", "icon": null, - "renderPriority": 2 + "zIndex": 2 }, { "id": "(n -> p)[0]", @@ -1832,7 +1832,7 @@ "animated": false, "tooltip": "", "icon": null, - "renderPriority": 2 + "zIndex": 2 }, { "id": "(q -> n)[0]", @@ -1871,7 +1871,7 @@ "animated": false, "tooltip": "", "icon": null, - "renderPriority": 2 + "zIndex": 2 }, { "id": "(q -> r)[0]", @@ -1918,7 +1918,7 @@ "animated": false, "tooltip": "", "icon": null, - "renderPriority": 2 + "zIndex": 2 }, { "id": "(r -> s)[0]", @@ -1957,7 +1957,7 @@ "animated": false, "tooltip": "", "icon": null, - "renderPriority": 2 + "zIndex": 2 }, { "id": "(s -> t)[0]", @@ -1996,7 +1996,7 @@ "animated": false, "tooltip": "", "icon": null, - "renderPriority": 2 + "zIndex": 2 }, { "id": "(t -> u)[0]", @@ -2035,7 +2035,7 @@ "animated": false, "tooltip": "", "icon": null, - "renderPriority": 2 + "zIndex": 2 }, { "id": "(u -> o)[0]", @@ -2074,7 +2074,7 @@ "animated": false, "tooltip": "", "icon": null, - "renderPriority": 2 + "zIndex": 2 }, { "id": "(t -> p)[0]", @@ -2129,7 +2129,7 @@ "animated": false, "tooltip": "", "icon": null, - "renderPriority": 2 + "zIndex": 2 }, { "id": "(c -> t)[0]", @@ -2176,7 +2176,7 @@ "animated": false, "tooltip": "", "icon": null, - "renderPriority": 2 + "zIndex": 2 }, { "id": "(s -> a)[0]", @@ -2231,7 +2231,7 @@ "animated": false, "tooltip": "", "icon": null, - "renderPriority": 2 + "zIndex": 2 }, { "id": "(u -> a)[0]", @@ -2278,7 +2278,7 @@ "animated": false, "tooltip": "", "icon": null, - "renderPriority": 2 + "zIndex": 2 } ] } 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 c4db831dc..13b9125b1 100644 --- a/e2etests/testdata/stable/one_container_loop/dagre/board.exp.json +++ b/e2etests/testdata/stable/one_container_loop/dagre/board.exp.json @@ -37,7 +37,7 @@ "labelWidth": 17, "labelHeight": 41, "labelPosition": "INSIDE_TOP_CENTER", - "renderPriority": 1 + "zIndex": 1 }, { "id": "a.b", @@ -75,7 +75,7 @@ "labelWidth": 13, "labelHeight": 26, "labelPosition": "INSIDE_MIDDLE_CENTER", - "renderPriority": 2 + "zIndex": 2 }, { "id": "c", @@ -113,7 +113,7 @@ "labelWidth": 13, "labelHeight": 26, "labelPosition": "INSIDE_MIDDLE_CENTER", - "renderPriority": 1 + "zIndex": 1 }, { "id": "d", @@ -151,7 +151,7 @@ "labelWidth": 14, "labelHeight": 26, "labelPosition": "INSIDE_MIDDLE_CENTER", - "renderPriority": 1 + "zIndex": 1 }, { "id": "e", @@ -189,7 +189,7 @@ "labelWidth": 13, "labelHeight": 26, "labelPosition": "INSIDE_MIDDLE_CENTER", - "renderPriority": 1 + "zIndex": 1 }, { "id": "f", @@ -227,7 +227,7 @@ "labelWidth": 11, "labelHeight": 26, "labelPosition": "INSIDE_MIDDLE_CENTER", - "renderPriority": 1 + "zIndex": 1 }, { "id": "g", @@ -265,7 +265,7 @@ "labelWidth": 14, "labelHeight": 26, "labelPosition": "INSIDE_MIDDLE_CENTER", - "renderPriority": 1 + "zIndex": 1 }, { "id": "a.h", @@ -303,7 +303,7 @@ "labelWidth": 13, "labelHeight": 26, "labelPosition": "INSIDE_MIDDLE_CENTER", - "renderPriority": 2 + "zIndex": 2 } ], "connections": [ @@ -425,7 +425,7 @@ "animated": false, "tooltip": "", "icon": null, - "renderPriority": 3 + "zIndex": 3 }, { "id": "(d -> c)[0]", @@ -473,7 +473,7 @@ "animated": false, "tooltip": "", "icon": null, - "renderPriority": 3 + "zIndex": 3 }, { "id": "(e -> c)[0]", @@ -521,7 +521,7 @@ "animated": false, "tooltip": "", "icon": null, - "renderPriority": 3 + "zIndex": 3 }, { "id": "(f -> d)[0]", @@ -569,7 +569,7 @@ "animated": false, "tooltip": "", "icon": null, - "renderPriority": 3 + "zIndex": 3 }, { "id": "(a -> e)[0]", @@ -653,7 +653,7 @@ "animated": false, "tooltip": "", "icon": null, - "renderPriority": 3 + "zIndex": 3 }, { "id": "(g -> f)[0]", @@ -701,7 +701,7 @@ "animated": false, "tooltip": "", "icon": null, - "renderPriority": 3 + "zIndex": 3 }, { "id": "(a.h -> g)[0]", @@ -749,7 +749,7 @@ "animated": false, "tooltip": "", "icon": null, - "renderPriority": 3 + "zIndex": 3 } ] } 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 e964e8aa3..727b05b40 100644 --- a/e2etests/testdata/stable/one_container_loop/elk/board.exp.json +++ b/e2etests/testdata/stable/one_container_loop/elk/board.exp.json @@ -37,7 +37,7 @@ "labelWidth": 17, "labelHeight": 41, "labelPosition": "INSIDE_TOP_CENTER", - "renderPriority": 1 + "zIndex": 1 }, { "id": "a.b", @@ -75,7 +75,7 @@ "labelWidth": 13, "labelHeight": 26, "labelPosition": "INSIDE_MIDDLE_CENTER", - "renderPriority": 2 + "zIndex": 2 }, { "id": "c", @@ -113,7 +113,7 @@ "labelWidth": 13, "labelHeight": 26, "labelPosition": "INSIDE_MIDDLE_CENTER", - "renderPriority": 1 + "zIndex": 1 }, { "id": "d", @@ -151,7 +151,7 @@ "labelWidth": 14, "labelHeight": 26, "labelPosition": "INSIDE_MIDDLE_CENTER", - "renderPriority": 1 + "zIndex": 1 }, { "id": "e", @@ -189,7 +189,7 @@ "labelWidth": 13, "labelHeight": 26, "labelPosition": "INSIDE_MIDDLE_CENTER", - "renderPriority": 1 + "zIndex": 1 }, { "id": "f", @@ -227,7 +227,7 @@ "labelWidth": 11, "labelHeight": 26, "labelPosition": "INSIDE_MIDDLE_CENTER", - "renderPriority": 1 + "zIndex": 1 }, { "id": "g", @@ -265,7 +265,7 @@ "labelWidth": 14, "labelHeight": 26, "labelPosition": "INSIDE_MIDDLE_CENTER", - "renderPriority": 1 + "zIndex": 1 }, { "id": "a.h", @@ -303,7 +303,7 @@ "labelWidth": 13, "labelHeight": 26, "labelPosition": "INSIDE_MIDDLE_CENTER", - "renderPriority": 2 + "zIndex": 2 } ], "connections": [ @@ -360,7 +360,7 @@ "animated": false, "tooltip": "", "icon": null, - "renderPriority": 3 + "zIndex": 3 }, { "id": "(d -> c)[0]", @@ -399,7 +399,7 @@ "animated": false, "tooltip": "", "icon": null, - "renderPriority": 3 + "zIndex": 3 }, { "id": "(e -> c)[0]", @@ -446,7 +446,7 @@ "animated": false, "tooltip": "", "icon": null, - "renderPriority": 3 + "zIndex": 3 }, { "id": "(f -> d)[0]", @@ -485,7 +485,7 @@ "animated": false, "tooltip": "", "icon": null, - "renderPriority": 3 + "zIndex": 3 }, { "id": "(a -> e)[0]", @@ -524,7 +524,7 @@ "animated": false, "tooltip": "", "icon": null, - "renderPriority": 3 + "zIndex": 3 }, { "id": "(g -> f)[0]", @@ -563,7 +563,7 @@ "animated": false, "tooltip": "", "icon": null, - "renderPriority": 3 + "zIndex": 3 }, { "id": "(a.h -> g)[0]", @@ -610,7 +610,7 @@ "animated": false, "tooltip": "", "icon": null, - "renderPriority": 3 + "zIndex": 3 } ] } 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 71bee9e25..099dbd554 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 @@ -37,7 +37,7 @@ "labelWidth": 45, "labelHeight": 41, "labelPosition": "INSIDE_TOP_CENTER", - "renderPriority": 1 + "zIndex": 1 }, { "id": "top.start", @@ -75,7 +75,7 @@ "labelWidth": 40, "labelHeight": 26, "labelPosition": "INSIDE_MIDDLE_CENTER", - "renderPriority": 2 + "zIndex": 2 }, { "id": "a", @@ -113,7 +113,7 @@ "labelWidth": 13, "labelHeight": 26, "labelPosition": "INSIDE_MIDDLE_CENTER", - "renderPriority": 1 + "zIndex": 1 }, { "id": "b", @@ -151,7 +151,7 @@ "labelWidth": 13, "labelHeight": 26, "labelPosition": "INSIDE_MIDDLE_CENTER", - "renderPriority": 1 + "zIndex": 1 }, { "id": "c", @@ -189,7 +189,7 @@ "labelWidth": 13, "labelHeight": 26, "labelPosition": "INSIDE_MIDDLE_CENTER", - "renderPriority": 1 + "zIndex": 1 }, { "id": "bottom", @@ -227,7 +227,7 @@ "labelWidth": 90, "labelHeight": 41, "labelPosition": "INSIDE_TOP_CENTER", - "renderPriority": 1 + "zIndex": 1 }, { "id": "bottom.end", @@ -265,7 +265,7 @@ "labelWidth": 32, "labelHeight": 26, "labelPosition": "INSIDE_MIDDLE_CENTER", - "renderPriority": 2 + "zIndex": 2 } ], "connections": [ @@ -315,7 +315,7 @@ "animated": false, "tooltip": "", "icon": null, - "renderPriority": 3 + "zIndex": 3 }, { "id": "(top.start -> b)[0]", @@ -363,7 +363,7 @@ "animated": false, "tooltip": "", "icon": null, - "renderPriority": 3 + "zIndex": 3 }, { "id": "(top.start -> c)[0]", @@ -411,7 +411,7 @@ "animated": false, "tooltip": "", "icon": null, - "renderPriority": 3 + "zIndex": 3 }, { "id": "(a -> bottom.end)[0]", @@ -459,7 +459,7 @@ "animated": false, "tooltip": "", "icon": null, - "renderPriority": 3 + "zIndex": 3 }, { "id": "(b -> bottom.end)[0]", @@ -507,7 +507,7 @@ "animated": false, "tooltip": "", "icon": null, - "renderPriority": 3 + "zIndex": 3 }, { "id": "(c -> bottom.end)[0]", @@ -555,7 +555,7 @@ "animated": false, "tooltip": "", "icon": null, - "renderPriority": 3 + "zIndex": 3 } ] } 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 241f89289..d75375de7 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 @@ -37,7 +37,7 @@ "labelWidth": 45, "labelHeight": 41, "labelPosition": "INSIDE_TOP_CENTER", - "renderPriority": 1 + "zIndex": 1 }, { "id": "top.start", @@ -75,7 +75,7 @@ "labelWidth": 40, "labelHeight": 26, "labelPosition": "INSIDE_MIDDLE_CENTER", - "renderPriority": 2 + "zIndex": 2 }, { "id": "a", @@ -113,7 +113,7 @@ "labelWidth": 13, "labelHeight": 26, "labelPosition": "INSIDE_MIDDLE_CENTER", - "renderPriority": 1 + "zIndex": 1 }, { "id": "b", @@ -151,7 +151,7 @@ "labelWidth": 13, "labelHeight": 26, "labelPosition": "INSIDE_MIDDLE_CENTER", - "renderPriority": 1 + "zIndex": 1 }, { "id": "c", @@ -189,7 +189,7 @@ "labelWidth": 13, "labelHeight": 26, "labelPosition": "INSIDE_MIDDLE_CENTER", - "renderPriority": 1 + "zIndex": 1 }, { "id": "bottom", @@ -227,7 +227,7 @@ "labelWidth": 90, "labelHeight": 41, "labelPosition": "INSIDE_TOP_CENTER", - "renderPriority": 1 + "zIndex": 1 }, { "id": "bottom.end", @@ -265,7 +265,7 @@ "labelWidth": 32, "labelHeight": 26, "labelPosition": "INSIDE_MIDDLE_CENTER", - "renderPriority": 2 + "zIndex": 2 } ], "connections": [ @@ -314,7 +314,7 @@ "animated": false, "tooltip": "", "icon": null, - "renderPriority": 3 + "zIndex": 3 }, { "id": "(top.start -> b)[0]", @@ -353,7 +353,7 @@ "animated": false, "tooltip": "", "icon": null, - "renderPriority": 3 + "zIndex": 3 }, { "id": "(top.start -> c)[0]", @@ -400,7 +400,7 @@ "animated": false, "tooltip": "", "icon": null, - "renderPriority": 3 + "zIndex": 3 }, { "id": "(a -> bottom.end)[0]", @@ -447,7 +447,7 @@ "animated": false, "tooltip": "", "icon": null, - "renderPriority": 3 + "zIndex": 3 }, { "id": "(b -> bottom.end)[0]", @@ -494,7 +494,7 @@ "animated": false, "tooltip": "", "icon": null, - "renderPriority": 3 + "zIndex": 3 }, { "id": "(c -> bottom.end)[0]", @@ -533,7 +533,7 @@ "animated": false, "tooltip": "", "icon": null, - "renderPriority": 3 + "zIndex": 3 } ] } diff --git a/e2etests/testdata/stable/p/dagre/board.exp.json b/e2etests/testdata/stable/p/dagre/board.exp.json index aeddaf2aa..d9a4c76d1 100644 --- a/e2etests/testdata/stable/p/dagre/board.exp.json +++ b/e2etests/testdata/stable/p/dagre/board.exp.json @@ -36,7 +36,7 @@ "underline": false, "labelWidth": 1857, "labelHeight": 24, - "renderPriority": 1 + "zIndex": 1 }, { "id": "a", @@ -74,7 +74,7 @@ "labelWidth": 13, "labelHeight": 26, "labelPosition": "INSIDE_MIDDLE_CENTER", - "renderPriority": 1 + "zIndex": 1 }, { "id": "b", @@ -112,7 +112,7 @@ "labelWidth": 13, "labelHeight": 26, "labelPosition": "INSIDE_MIDDLE_CENTER", - "renderPriority": 1 + "zIndex": 1 } ], "connections": [ @@ -162,7 +162,7 @@ "animated": false, "tooltip": "", "icon": null, - "renderPriority": 2 + "zIndex": 2 }, { "id": "(md -> b)[0]", @@ -210,7 +210,7 @@ "animated": false, "tooltip": "", "icon": null, - "renderPriority": 2 + "zIndex": 2 } ] } diff --git a/e2etests/testdata/stable/p/elk/board.exp.json b/e2etests/testdata/stable/p/elk/board.exp.json index 903c02077..8ee3cb510 100644 --- a/e2etests/testdata/stable/p/elk/board.exp.json +++ b/e2etests/testdata/stable/p/elk/board.exp.json @@ -36,7 +36,7 @@ "underline": false, "labelWidth": 1857, "labelHeight": 24, - "renderPriority": 1 + "zIndex": 1 }, { "id": "a", @@ -74,7 +74,7 @@ "labelWidth": 13, "labelHeight": 26, "labelPosition": "INSIDE_MIDDLE_CENTER", - "renderPriority": 1 + "zIndex": 1 }, { "id": "b", @@ -112,7 +112,7 @@ "labelWidth": 13, "labelHeight": 26, "labelPosition": "INSIDE_MIDDLE_CENTER", - "renderPriority": 1 + "zIndex": 1 } ], "connections": [ @@ -153,7 +153,7 @@ "animated": false, "tooltip": "", "icon": null, - "renderPriority": 2 + "zIndex": 2 }, { "id": "(md -> b)[0]", @@ -192,7 +192,7 @@ "animated": false, "tooltip": "", "icon": null, - "renderPriority": 2 + "zIndex": 2 } ] } diff --git a/e2etests/testdata/stable/pre/dagre/board.exp.json b/e2etests/testdata/stable/pre/dagre/board.exp.json index 39191a775..b3fcb1221 100644 --- a/e2etests/testdata/stable/pre/dagre/board.exp.json +++ b/e2etests/testdata/stable/pre/dagre/board.exp.json @@ -36,7 +36,7 @@ "underline": false, "labelWidth": 602, "labelHeight": 170, - "renderPriority": 1 + "zIndex": 1 }, { "id": "a", @@ -74,7 +74,7 @@ "labelWidth": 13, "labelHeight": 26, "labelPosition": "INSIDE_MIDDLE_CENTER", - "renderPriority": 1 + "zIndex": 1 }, { "id": "b", @@ -112,7 +112,7 @@ "labelWidth": 13, "labelHeight": 26, "labelPosition": "INSIDE_MIDDLE_CENTER", - "renderPriority": 1 + "zIndex": 1 } ], "connections": [ @@ -162,7 +162,7 @@ "animated": false, "tooltip": "", "icon": null, - "renderPriority": 2 + "zIndex": 2 }, { "id": "(md -> b)[0]", @@ -210,7 +210,7 @@ "animated": false, "tooltip": "", "icon": null, - "renderPriority": 2 + "zIndex": 2 } ] } diff --git a/e2etests/testdata/stable/pre/elk/board.exp.json b/e2etests/testdata/stable/pre/elk/board.exp.json index d6e712cae..b78f94e70 100644 --- a/e2etests/testdata/stable/pre/elk/board.exp.json +++ b/e2etests/testdata/stable/pre/elk/board.exp.json @@ -36,7 +36,7 @@ "underline": false, "labelWidth": 602, "labelHeight": 170, - "renderPriority": 1 + "zIndex": 1 }, { "id": "a", @@ -74,7 +74,7 @@ "labelWidth": 13, "labelHeight": 26, "labelPosition": "INSIDE_MIDDLE_CENTER", - "renderPriority": 1 + "zIndex": 1 }, { "id": "b", @@ -112,7 +112,7 @@ "labelWidth": 13, "labelHeight": 26, "labelPosition": "INSIDE_MIDDLE_CENTER", - "renderPriority": 1 + "zIndex": 1 } ], "connections": [ @@ -153,7 +153,7 @@ "animated": false, "tooltip": "", "icon": null, - "renderPriority": 2 + "zIndex": 2 }, { "id": "(md -> b)[0]", @@ -192,7 +192,7 @@ "animated": false, "tooltip": "", "icon": null, - "renderPriority": 2 + "zIndex": 2 } ] } diff --git a/e2etests/testdata/stable/sql_tables/dagre/board.exp.json b/e2etests/testdata/stable/sql_tables/dagre/board.exp.json index fb2a64d31..57c3ee056 100644 --- a/e2etests/testdata/stable/sql_tables/dagre/board.exp.json +++ b/e2etests/testdata/stable/sql_tables/dagre/board.exp.json @@ -67,7 +67,7 @@ "underline": false, "labelWidth": 61, "labelHeight": 36, - "renderPriority": 1 + "zIndex": 1 }, { "id": "products", @@ -129,7 +129,7 @@ "underline": false, "labelWidth": 99, "labelHeight": 36, - "renderPriority": 1 + "zIndex": 1 }, { "id": "orders", @@ -185,7 +185,7 @@ "underline": false, "labelWidth": 74, "labelHeight": 36, - "renderPriority": 1 + "zIndex": 1 }, { "id": "shipments", @@ -247,7 +247,7 @@ "underline": false, "labelWidth": 116, "labelHeight": 36, - "renderPriority": 1 + "zIndex": 1 } ], "connections": [ @@ -297,7 +297,7 @@ "animated": false, "tooltip": "", "icon": null, - "renderPriority": 2 + "zIndex": 2 }, { "id": "(products <-> orders)[0]", @@ -345,7 +345,7 @@ "animated": false, "tooltip": "", "icon": null, - "renderPriority": 2 + "zIndex": 2 }, { "id": "(shipments <-> orders)[0]", @@ -393,7 +393,7 @@ "animated": false, "tooltip": "", "icon": null, - "renderPriority": 2 + "zIndex": 2 } ] } diff --git a/e2etests/testdata/stable/sql_tables/elk/board.exp.json b/e2etests/testdata/stable/sql_tables/elk/board.exp.json index a6545e00d..1ee6d326d 100644 --- a/e2etests/testdata/stable/sql_tables/elk/board.exp.json +++ b/e2etests/testdata/stable/sql_tables/elk/board.exp.json @@ -67,7 +67,7 @@ "underline": false, "labelWidth": 61, "labelHeight": 36, - "renderPriority": 1 + "zIndex": 1 }, { "id": "products", @@ -129,7 +129,7 @@ "underline": false, "labelWidth": 99, "labelHeight": 36, - "renderPriority": 1 + "zIndex": 1 }, { "id": "orders", @@ -185,7 +185,7 @@ "underline": false, "labelWidth": 74, "labelHeight": 36, - "renderPriority": 1 + "zIndex": 1 }, { "id": "shipments", @@ -247,7 +247,7 @@ "underline": false, "labelWidth": 116, "labelHeight": 36, - "renderPriority": 1 + "zIndex": 1 } ], "connections": [ @@ -296,7 +296,7 @@ "animated": false, "tooltip": "", "icon": null, - "renderPriority": 2 + "zIndex": 2 }, { "id": "(products <-> orders)[0]", @@ -335,7 +335,7 @@ "animated": false, "tooltip": "", "icon": null, - "renderPriority": 2 + "zIndex": 2 }, { "id": "(shipments <-> orders)[0]", @@ -382,7 +382,7 @@ "animated": false, "tooltip": "", "icon": null, - "renderPriority": 2 + "zIndex": 2 } ] } diff --git a/e2etests/testdata/stable/square_3d/dagre/board.exp.json b/e2etests/testdata/stable/square_3d/dagre/board.exp.json index 6f5e0886f..d0fe54576 100644 --- a/e2etests/testdata/stable/square_3d/dagre/board.exp.json +++ b/e2etests/testdata/stable/square_3d/dagre/board.exp.json @@ -37,7 +37,7 @@ "labelWidth": 71, "labelHeight": 26, "labelPosition": "INSIDE_MIDDLE_CENTER", - "renderPriority": 1 + "zIndex": 1 }, { "id": "square", @@ -75,7 +75,7 @@ "labelWidth": 54, "labelHeight": 26, "labelPosition": "INSIDE_MIDDLE_CENTER", - "renderPriority": 1 + "zIndex": 1 } ], "connections": [ @@ -125,7 +125,7 @@ "animated": false, "tooltip": "", "icon": null, - "renderPriority": 2 + "zIndex": 2 } ] } diff --git a/e2etests/testdata/stable/square_3d/elk/board.exp.json b/e2etests/testdata/stable/square_3d/elk/board.exp.json index 8ec99672a..c72c9bcdd 100644 --- a/e2etests/testdata/stable/square_3d/elk/board.exp.json +++ b/e2etests/testdata/stable/square_3d/elk/board.exp.json @@ -37,7 +37,7 @@ "labelWidth": 71, "labelHeight": 26, "labelPosition": "INSIDE_MIDDLE_CENTER", - "renderPriority": 1 + "zIndex": 1 }, { "id": "square", @@ -75,7 +75,7 @@ "labelWidth": 54, "labelHeight": 26, "labelPosition": "INSIDE_MIDDLE_CENTER", - "renderPriority": 1 + "zIndex": 1 } ], "connections": [ @@ -116,7 +116,7 @@ "animated": false, "tooltip": "", "icon": null, - "renderPriority": 2 + "zIndex": 2 } ] } 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 c433558a2..284bf2e27 100644 --- a/e2etests/testdata/stable/straight_hierarchy_container/dagre/board.exp.json +++ b/e2etests/testdata/stable/straight_hierarchy_container/dagre/board.exp.json @@ -37,7 +37,7 @@ "labelWidth": 13, "labelHeight": 26, "labelPosition": "INSIDE_MIDDLE_CENTER", - "renderPriority": 1 + "zIndex": 1 }, { "id": "c", @@ -75,7 +75,7 @@ "labelWidth": 13, "labelHeight": 26, "labelPosition": "INSIDE_MIDDLE_CENTER", - "renderPriority": 1 + "zIndex": 1 }, { "id": "b", @@ -113,7 +113,7 @@ "labelWidth": 13, "labelHeight": 26, "labelPosition": "INSIDE_MIDDLE_CENTER", - "renderPriority": 1 + "zIndex": 1 }, { "id": "l1", @@ -151,7 +151,7 @@ "labelWidth": 24, "labelHeight": 41, "labelPosition": "INSIDE_TOP_CENTER", - "renderPriority": 1 + "zIndex": 1 }, { "id": "l1.b", @@ -189,7 +189,7 @@ "labelWidth": 13, "labelHeight": 26, "labelPosition": "INSIDE_MIDDLE_CENTER", - "renderPriority": 2 + "zIndex": 2 }, { "id": "l1.a", @@ -227,7 +227,7 @@ "labelWidth": 13, "labelHeight": 26, "labelPosition": "INSIDE_MIDDLE_CENTER", - "renderPriority": 2 + "zIndex": 2 }, { "id": "l1.c", @@ -265,7 +265,7 @@ "labelWidth": 13, "labelHeight": 26, "labelPosition": "INSIDE_MIDDLE_CENTER", - "renderPriority": 2 + "zIndex": 2 }, { "id": "l2c1", @@ -303,7 +303,7 @@ "labelWidth": 50, "labelHeight": 41, "labelPosition": "INSIDE_TOP_CENTER", - "renderPriority": 1 + "zIndex": 1 }, { "id": "l2c1.a", @@ -341,7 +341,7 @@ "labelWidth": 13, "labelHeight": 26, "labelPosition": "INSIDE_MIDDLE_CENTER", - "renderPriority": 2 + "zIndex": 2 }, { "id": "l2c3", @@ -379,7 +379,7 @@ "labelWidth": 50, "labelHeight": 41, "labelPosition": "INSIDE_TOP_CENTER", - "renderPriority": 1 + "zIndex": 1 }, { "id": "l2c3.c", @@ -417,7 +417,7 @@ "labelWidth": 13, "labelHeight": 26, "labelPosition": "INSIDE_MIDDLE_CENTER", - "renderPriority": 2 + "zIndex": 2 }, { "id": "l2c2", @@ -455,7 +455,7 @@ "labelWidth": 50, "labelHeight": 41, "labelPosition": "INSIDE_TOP_CENTER", - "renderPriority": 1 + "zIndex": 1 }, { "id": "l2c2.b", @@ -493,7 +493,7 @@ "labelWidth": 13, "labelHeight": 26, "labelPosition": "INSIDE_MIDDLE_CENTER", - "renderPriority": 2 + "zIndex": 2 }, { "id": "l3c1", @@ -531,7 +531,7 @@ "labelWidth": 50, "labelHeight": 41, "labelPosition": "INSIDE_TOP_CENTER", - "renderPriority": 1 + "zIndex": 1 }, { "id": "l3c1.a", @@ -569,7 +569,7 @@ "labelWidth": 13, "labelHeight": 26, "labelPosition": "INSIDE_MIDDLE_CENTER", - "renderPriority": 2 + "zIndex": 2 }, { "id": "l3c1.b", @@ -607,7 +607,7 @@ "labelWidth": 13, "labelHeight": 26, "labelPosition": "INSIDE_MIDDLE_CENTER", - "renderPriority": 2 + "zIndex": 2 }, { "id": "l3c2", @@ -645,7 +645,7 @@ "labelWidth": 50, "labelHeight": 41, "labelPosition": "INSIDE_TOP_CENTER", - "renderPriority": 1 + "zIndex": 1 }, { "id": "l3c2.c", @@ -683,7 +683,7 @@ "labelWidth": 13, "labelHeight": 26, "labelPosition": "INSIDE_MIDDLE_CENTER", - "renderPriority": 2 + "zIndex": 2 }, { "id": "l4", @@ -721,7 +721,7 @@ "labelWidth": 25, "labelHeight": 41, "labelPosition": "INSIDE_TOP_CENTER", - "renderPriority": 1 + "zIndex": 1 }, { "id": "l4.c1", @@ -759,7 +759,7 @@ "labelWidth": 26, "labelHeight": 36, "labelPosition": "INSIDE_TOP_CENTER", - "renderPriority": 2 + "zIndex": 2 }, { "id": "l4.c1.a", @@ -797,7 +797,7 @@ "labelWidth": 13, "labelHeight": 26, "labelPosition": "INSIDE_MIDDLE_CENTER", - "renderPriority": 3 + "zIndex": 3 }, { "id": "l4.c2", @@ -835,7 +835,7 @@ "labelWidth": 26, "labelHeight": 36, "labelPosition": "INSIDE_TOP_CENTER", - "renderPriority": 2 + "zIndex": 2 }, { "id": "l4.c2.b", @@ -873,7 +873,7 @@ "labelWidth": 13, "labelHeight": 26, "labelPosition": "INSIDE_MIDDLE_CENTER", - "renderPriority": 3 + "zIndex": 3 }, { "id": "l4.c3", @@ -911,7 +911,7 @@ "labelWidth": 26, "labelHeight": 36, "labelPosition": "INSIDE_TOP_CENTER", - "renderPriority": 2 + "zIndex": 2 }, { "id": "l4.c3.c", @@ -949,7 +949,7 @@ "labelWidth": 13, "labelHeight": 26, "labelPosition": "INSIDE_MIDDLE_CENTER", - "renderPriority": 3 + "zIndex": 3 } ], "connections": [ @@ -999,7 +999,7 @@ "animated": false, "tooltip": "", "icon": null, - "renderPriority": 4 + "zIndex": 4 }, { "id": "(a -> l1.a)[0]", @@ -1047,7 +1047,7 @@ "animated": false, "tooltip": "", "icon": null, - "renderPriority": 4 + "zIndex": 4 }, { "id": "(c -> l1.c)[0]", @@ -1095,7 +1095,7 @@ "animated": false, "tooltip": "", "icon": null, - "renderPriority": 4 + "zIndex": 4 }, { "id": "(l1.a -> l2c1.a)[0]", @@ -1155,7 +1155,7 @@ "animated": false, "tooltip": "", "icon": null, - "renderPriority": 4 + "zIndex": 4 }, { "id": "(l1.c -> l2c3.c)[0]", @@ -1215,7 +1215,7 @@ "animated": false, "tooltip": "", "icon": null, - "renderPriority": 4 + "zIndex": 4 }, { "id": "(l1.b -> l2c2.b)[0]", @@ -1275,7 +1275,7 @@ "animated": false, "tooltip": "", "icon": null, - "renderPriority": 4 + "zIndex": 4 }, { "id": "(l2c1.a -> l3c1.a)[0]", @@ -1335,7 +1335,7 @@ "animated": false, "tooltip": "", "icon": null, - "renderPriority": 4 + "zIndex": 4 }, { "id": "(l2c2.b -> l3c1.b)[0]", @@ -1395,7 +1395,7 @@ "animated": false, "tooltip": "", "icon": null, - "renderPriority": 4 + "zIndex": 4 }, { "id": "(l2c3.c -> l3c2.c)[0]", @@ -1455,7 +1455,7 @@ "animated": false, "tooltip": "", "icon": null, - "renderPriority": 4 + "zIndex": 4 }, { "id": "(l3c1.a -> l4.c1.a)[0]", @@ -1527,7 +1527,7 @@ "animated": false, "tooltip": "", "icon": null, - "renderPriority": 4 + "zIndex": 4 }, { "id": "(l3c1.b -> l4.c2.b)[0]", @@ -1599,7 +1599,7 @@ "animated": false, "tooltip": "", "icon": null, - "renderPriority": 4 + "zIndex": 4 }, { "id": "(l3c2.c -> l4.c3.c)[0]", @@ -1671,7 +1671,7 @@ "animated": false, "tooltip": "", "icon": null, - "renderPriority": 4 + "zIndex": 4 } ] } 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 523f6a77c..aae43f08d 100644 --- a/e2etests/testdata/stable/straight_hierarchy_container/elk/board.exp.json +++ b/e2etests/testdata/stable/straight_hierarchy_container/elk/board.exp.json @@ -37,7 +37,7 @@ "labelWidth": 13, "labelHeight": 26, "labelPosition": "INSIDE_MIDDLE_CENTER", - "renderPriority": 1 + "zIndex": 1 }, { "id": "c", @@ -75,7 +75,7 @@ "labelWidth": 13, "labelHeight": 26, "labelPosition": "INSIDE_MIDDLE_CENTER", - "renderPriority": 1 + "zIndex": 1 }, { "id": "b", @@ -113,7 +113,7 @@ "labelWidth": 13, "labelHeight": 26, "labelPosition": "INSIDE_MIDDLE_CENTER", - "renderPriority": 1 + "zIndex": 1 }, { "id": "l1", @@ -151,7 +151,7 @@ "labelWidth": 24, "labelHeight": 41, "labelPosition": "INSIDE_TOP_CENTER", - "renderPriority": 1 + "zIndex": 1 }, { "id": "l1.b", @@ -189,7 +189,7 @@ "labelWidth": 13, "labelHeight": 26, "labelPosition": "INSIDE_MIDDLE_CENTER", - "renderPriority": 2 + "zIndex": 2 }, { "id": "l1.a", @@ -227,7 +227,7 @@ "labelWidth": 13, "labelHeight": 26, "labelPosition": "INSIDE_MIDDLE_CENTER", - "renderPriority": 2 + "zIndex": 2 }, { "id": "l1.c", @@ -265,7 +265,7 @@ "labelWidth": 13, "labelHeight": 26, "labelPosition": "INSIDE_MIDDLE_CENTER", - "renderPriority": 2 + "zIndex": 2 }, { "id": "l2c1", @@ -303,7 +303,7 @@ "labelWidth": 50, "labelHeight": 41, "labelPosition": "INSIDE_TOP_CENTER", - "renderPriority": 1 + "zIndex": 1 }, { "id": "l2c1.a", @@ -341,7 +341,7 @@ "labelWidth": 13, "labelHeight": 26, "labelPosition": "INSIDE_MIDDLE_CENTER", - "renderPriority": 2 + "zIndex": 2 }, { "id": "l2c3", @@ -379,7 +379,7 @@ "labelWidth": 50, "labelHeight": 41, "labelPosition": "INSIDE_TOP_CENTER", - "renderPriority": 1 + "zIndex": 1 }, { "id": "l2c3.c", @@ -417,7 +417,7 @@ "labelWidth": 13, "labelHeight": 26, "labelPosition": "INSIDE_MIDDLE_CENTER", - "renderPriority": 2 + "zIndex": 2 }, { "id": "l2c2", @@ -455,7 +455,7 @@ "labelWidth": 50, "labelHeight": 41, "labelPosition": "INSIDE_TOP_CENTER", - "renderPriority": 1 + "zIndex": 1 }, { "id": "l2c2.b", @@ -493,7 +493,7 @@ "labelWidth": 13, "labelHeight": 26, "labelPosition": "INSIDE_MIDDLE_CENTER", - "renderPriority": 2 + "zIndex": 2 }, { "id": "l3c1", @@ -531,7 +531,7 @@ "labelWidth": 50, "labelHeight": 41, "labelPosition": "INSIDE_TOP_CENTER", - "renderPriority": 1 + "zIndex": 1 }, { "id": "l3c1.a", @@ -569,7 +569,7 @@ "labelWidth": 13, "labelHeight": 26, "labelPosition": "INSIDE_MIDDLE_CENTER", - "renderPriority": 2 + "zIndex": 2 }, { "id": "l3c1.b", @@ -607,7 +607,7 @@ "labelWidth": 13, "labelHeight": 26, "labelPosition": "INSIDE_MIDDLE_CENTER", - "renderPriority": 2 + "zIndex": 2 }, { "id": "l3c2", @@ -645,7 +645,7 @@ "labelWidth": 50, "labelHeight": 41, "labelPosition": "INSIDE_TOP_CENTER", - "renderPriority": 1 + "zIndex": 1 }, { "id": "l3c2.c", @@ -683,7 +683,7 @@ "labelWidth": 13, "labelHeight": 26, "labelPosition": "INSIDE_MIDDLE_CENTER", - "renderPriority": 2 + "zIndex": 2 }, { "id": "l4", @@ -721,7 +721,7 @@ "labelWidth": 25, "labelHeight": 41, "labelPosition": "INSIDE_TOP_CENTER", - "renderPriority": 1 + "zIndex": 1 }, { "id": "l4.c1", @@ -759,7 +759,7 @@ "labelWidth": 26, "labelHeight": 36, "labelPosition": "INSIDE_TOP_CENTER", - "renderPriority": 2 + "zIndex": 2 }, { "id": "l4.c1.a", @@ -797,7 +797,7 @@ "labelWidth": 13, "labelHeight": 26, "labelPosition": "INSIDE_MIDDLE_CENTER", - "renderPriority": 3 + "zIndex": 3 }, { "id": "l4.c2", @@ -835,7 +835,7 @@ "labelWidth": 26, "labelHeight": 36, "labelPosition": "INSIDE_TOP_CENTER", - "renderPriority": 2 + "zIndex": 2 }, { "id": "l4.c2.b", @@ -873,7 +873,7 @@ "labelWidth": 13, "labelHeight": 26, "labelPosition": "INSIDE_MIDDLE_CENTER", - "renderPriority": 3 + "zIndex": 3 }, { "id": "l4.c3", @@ -911,7 +911,7 @@ "labelWidth": 26, "labelHeight": 36, "labelPosition": "INSIDE_TOP_CENTER", - "renderPriority": 2 + "zIndex": 2 }, { "id": "l4.c3.c", @@ -949,7 +949,7 @@ "labelWidth": 13, "labelHeight": 26, "labelPosition": "INSIDE_MIDDLE_CENTER", - "renderPriority": 3 + "zIndex": 3 } ], "connections": [ @@ -990,7 +990,7 @@ "animated": false, "tooltip": "", "icon": null, - "renderPriority": 4 + "zIndex": 4 }, { "id": "(a -> l1.a)[0]", @@ -1029,7 +1029,7 @@ "animated": false, "tooltip": "", "icon": null, - "renderPriority": 4 + "zIndex": 4 }, { "id": "(c -> l1.c)[0]", @@ -1068,7 +1068,7 @@ "animated": false, "tooltip": "", "icon": null, - "renderPriority": 4 + "zIndex": 4 }, { "id": "(l1.a -> l2c1.a)[0]", @@ -1115,7 +1115,7 @@ "animated": false, "tooltip": "", "icon": null, - "renderPriority": 4 + "zIndex": 4 }, { "id": "(l1.c -> l2c3.c)[0]", @@ -1154,7 +1154,7 @@ "animated": false, "tooltip": "", "icon": null, - "renderPriority": 4 + "zIndex": 4 }, { "id": "(l1.b -> l2c2.b)[0]", @@ -1201,7 +1201,7 @@ "animated": false, "tooltip": "", "icon": null, - "renderPriority": 4 + "zIndex": 4 }, { "id": "(l2c1.a -> l3c1.a)[0]", @@ -1240,7 +1240,7 @@ "animated": false, "tooltip": "", "icon": null, - "renderPriority": 4 + "zIndex": 4 }, { "id": "(l2c2.b -> l3c1.b)[0]", @@ -1287,7 +1287,7 @@ "animated": false, "tooltip": "", "icon": null, - "renderPriority": 4 + "zIndex": 4 }, { "id": "(l2c3.c -> l3c2.c)[0]", @@ -1326,7 +1326,7 @@ "animated": false, "tooltip": "", "icon": null, - "renderPriority": 4 + "zIndex": 4 }, { "id": "(l3c1.a -> l4.c1.a)[0]", @@ -1365,7 +1365,7 @@ "animated": false, "tooltip": "", "icon": null, - "renderPriority": 4 + "zIndex": 4 }, { "id": "(l3c1.b -> l4.c2.b)[0]", @@ -1412,7 +1412,7 @@ "animated": false, "tooltip": "", "icon": null, - "renderPriority": 4 + "zIndex": 4 }, { "id": "(l3c2.c -> l4.c3.c)[0]", @@ -1451,7 +1451,7 @@ "animated": false, "tooltip": "", "icon": null, - "renderPriority": 4 + "zIndex": 4 } ] } diff --git a/e2etests/testdata/stable/stylish/dagre/board.exp.json b/e2etests/testdata/stable/stylish/dagre/board.exp.json index f06110cd6..36430db19 100644 --- a/e2etests/testdata/stable/stylish/dagre/board.exp.json +++ b/e2etests/testdata/stable/stylish/dagre/board.exp.json @@ -37,7 +37,7 @@ "labelWidth": 13, "labelHeight": 26, "labelPosition": "INSIDE_MIDDLE_CENTER", - "renderPriority": 1 + "zIndex": 1 }, { "id": "y", @@ -75,7 +75,7 @@ "labelWidth": 14, "labelHeight": 26, "labelPosition": "INSIDE_MIDDLE_CENTER", - "renderPriority": 1 + "zIndex": 1 } ], "connections": [ @@ -125,7 +125,7 @@ "animated": false, "tooltip": "", "icon": null, - "renderPriority": 2 + "zIndex": 2 } ] } diff --git a/e2etests/testdata/stable/stylish/elk/board.exp.json b/e2etests/testdata/stable/stylish/elk/board.exp.json index 242692c39..de71f7b79 100644 --- a/e2etests/testdata/stable/stylish/elk/board.exp.json +++ b/e2etests/testdata/stable/stylish/elk/board.exp.json @@ -37,7 +37,7 @@ "labelWidth": 13, "labelHeight": 26, "labelPosition": "INSIDE_MIDDLE_CENTER", - "renderPriority": 1 + "zIndex": 1 }, { "id": "y", @@ -75,7 +75,7 @@ "labelWidth": 14, "labelHeight": 26, "labelPosition": "INSIDE_MIDDLE_CENTER", - "renderPriority": 1 + "zIndex": 1 } ], "connections": [ @@ -116,7 +116,7 @@ "animated": false, "tooltip": "", "icon": null, - "renderPriority": 2 + "zIndex": 2 } ] } diff --git a/e2etests/testdata/stable/us_map/dagre/board.exp.json b/e2etests/testdata/stable/us_map/dagre/board.exp.json index 183821b87..145cbac91 100644 --- a/e2etests/testdata/stable/us_map/dagre/board.exp.json +++ b/e2etests/testdata/stable/us_map/dagre/board.exp.json @@ -37,7 +37,7 @@ "labelWidth": 26, "labelHeight": 26, "labelPosition": "INSIDE_MIDDLE_CENTER", - "renderPriority": 1 + "zIndex": 1 }, { "id": "HI", @@ -75,7 +75,7 @@ "labelWidth": 19, "labelHeight": 26, "labelPosition": "INSIDE_MIDDLE_CENTER", - "renderPriority": 1 + "zIndex": 1 }, { "id": "AL", @@ -113,7 +113,7 @@ "labelWidth": 24, "labelHeight": 26, "labelPosition": "INSIDE_MIDDLE_CENTER", - "renderPriority": 1 + "zIndex": 1 }, { "id": "FL", @@ -151,7 +151,7 @@ "labelWidth": 21, "labelHeight": 26, "labelPosition": "INSIDE_MIDDLE_CENTER", - "renderPriority": 1 + "zIndex": 1 }, { "id": "GA", @@ -189,7 +189,7 @@ "labelWidth": 26, "labelHeight": 26, "labelPosition": "INSIDE_MIDDLE_CENTER", - "renderPriority": 1 + "zIndex": 1 }, { "id": "MS", @@ -227,7 +227,7 @@ "labelWidth": 26, "labelHeight": 26, "labelPosition": "INSIDE_MIDDLE_CENTER", - "renderPriority": 1 + "zIndex": 1 }, { "id": "TN", @@ -265,7 +265,7 @@ "labelWidth": 24, "labelHeight": 26, "labelPosition": "INSIDE_MIDDLE_CENTER", - "renderPriority": 1 + "zIndex": 1 }, { "id": "AZ", @@ -303,7 +303,7 @@ "labelWidth": 25, "labelHeight": 26, "labelPosition": "INSIDE_MIDDLE_CENTER", - "renderPriority": 1 + "zIndex": 1 }, { "id": "CA", @@ -341,7 +341,7 @@ "labelWidth": 25, "labelHeight": 26, "labelPosition": "INSIDE_MIDDLE_CENTER", - "renderPriority": 1 + "zIndex": 1 }, { "id": "NV", @@ -379,7 +379,7 @@ "labelWidth": 25, "labelHeight": 26, "labelPosition": "INSIDE_MIDDLE_CENTER", - "renderPriority": 1 + "zIndex": 1 }, { "id": "NM", @@ -417,7 +417,7 @@ "labelWidth": 26, "labelHeight": 26, "labelPosition": "INSIDE_MIDDLE_CENTER", - "renderPriority": 1 + "zIndex": 1 }, { "id": "UT", @@ -455,7 +455,7 @@ "labelWidth": 24, "labelHeight": 26, "labelPosition": "INSIDE_MIDDLE_CENTER", - "renderPriority": 1 + "zIndex": 1 }, { "id": "AR", @@ -493,7 +493,7 @@ "labelWidth": 26, "labelHeight": 26, "labelPosition": "INSIDE_MIDDLE_CENTER", - "renderPriority": 1 + "zIndex": 1 }, { "id": "LA", @@ -531,7 +531,7 @@ "labelWidth": 23, "labelHeight": 26, "labelPosition": "INSIDE_MIDDLE_CENTER", - "renderPriority": 1 + "zIndex": 1 }, { "id": "MO", @@ -569,7 +569,7 @@ "labelWidth": 28, "labelHeight": 26, "labelPosition": "INSIDE_MIDDLE_CENTER", - "renderPriority": 1 + "zIndex": 1 }, { "id": "OK", @@ -607,7 +607,7 @@ "labelWidth": 26, "labelHeight": 26, "labelPosition": "INSIDE_MIDDLE_CENTER", - "renderPriority": 1 + "zIndex": 1 }, { "id": "TX", @@ -645,7 +645,7 @@ "labelWidth": 23, "labelHeight": 26, "labelPosition": "INSIDE_MIDDLE_CENTER", - "renderPriority": 1 + "zIndex": 1 }, { "id": "OR", @@ -683,7 +683,7 @@ "labelWidth": 26, "labelHeight": 26, "labelPosition": "INSIDE_MIDDLE_CENTER", - "renderPriority": 1 + "zIndex": 1 }, { "id": "CO", @@ -721,7 +721,7 @@ "labelWidth": 26, "labelHeight": 26, "labelPosition": "INSIDE_MIDDLE_CENTER", - "renderPriority": 1 + "zIndex": 1 }, { "id": "KS", @@ -759,7 +759,7 @@ "labelWidth": 23, "labelHeight": 26, "labelPosition": "INSIDE_MIDDLE_CENTER", - "renderPriority": 1 + "zIndex": 1 }, { "id": "NE", @@ -797,7 +797,7 @@ "labelWidth": 23, "labelHeight": 26, "labelPosition": "INSIDE_MIDDLE_CENTER", - "renderPriority": 1 + "zIndex": 1 }, { "id": "WY", @@ -835,7 +835,7 @@ "labelWidth": 28, "labelHeight": 26, "labelPosition": "INSIDE_MIDDLE_CENTER", - "renderPriority": 1 + "zIndex": 1 }, { "id": "CT", @@ -873,7 +873,7 @@ "labelWidth": 24, "labelHeight": 26, "labelPosition": "INSIDE_MIDDLE_CENTER", - "renderPriority": 1 + "zIndex": 1 }, { "id": "MA", @@ -911,7 +911,7 @@ "labelWidth": 27, "labelHeight": 26, "labelPosition": "INSIDE_MIDDLE_CENTER", - "renderPriority": 1 + "zIndex": 1 }, { "id": "NY", @@ -949,7 +949,7 @@ "labelWidth": 24, "labelHeight": 26, "labelPosition": "INSIDE_MIDDLE_CENTER", - "renderPriority": 1 + "zIndex": 1 }, { "id": "RI", @@ -987,7 +987,7 @@ "labelWidth": 18, "labelHeight": 26, "labelPosition": "INSIDE_MIDDLE_CENTER", - "renderPriority": 1 + "zIndex": 1 }, { "id": "DE", @@ -1025,7 +1025,7 @@ "labelWidth": 23, "labelHeight": 26, "labelPosition": "INSIDE_MIDDLE_CENTER", - "renderPriority": 1 + "zIndex": 1 }, { "id": "MD", @@ -1063,7 +1063,7 @@ "labelWidth": 27, "labelHeight": 26, "labelPosition": "INSIDE_MIDDLE_CENTER", - "renderPriority": 1 + "zIndex": 1 }, { "id": "NJ", @@ -1101,7 +1101,7 @@ "labelWidth": 22, "labelHeight": 26, "labelPosition": "INSIDE_MIDDLE_CENTER", - "renderPriority": 1 + "zIndex": 1 }, { "id": "PA", @@ -1139,7 +1139,7 @@ "labelWidth": 24, "labelHeight": 26, "labelPosition": "INSIDE_MIDDLE_CENTER", - "renderPriority": 1 + "zIndex": 1 }, { "id": "NC", @@ -1177,7 +1177,7 @@ "labelWidth": 24, "labelHeight": 26, "labelPosition": "INSIDE_MIDDLE_CENTER", - "renderPriority": 1 + "zIndex": 1 }, { "id": "SC", @@ -1215,7 +1215,7 @@ "labelWidth": 23, "labelHeight": 26, "labelPosition": "INSIDE_MIDDLE_CENTER", - "renderPriority": 1 + "zIndex": 1 }, { "id": "ID", @@ -1253,7 +1253,7 @@ "labelWidth": 19, "labelHeight": 26, "labelPosition": "INSIDE_MIDDLE_CENTER", - "renderPriority": 1 + "zIndex": 1 }, { "id": "MT", @@ -1291,7 +1291,7 @@ "labelWidth": 26, "labelHeight": 26, "labelPosition": "INSIDE_MIDDLE_CENTER", - "renderPriority": 1 + "zIndex": 1 }, { "id": "WA", @@ -1329,7 +1329,7 @@ "labelWidth": 29, "labelHeight": 26, "labelPosition": "INSIDE_MIDDLE_CENTER", - "renderPriority": 1 + "zIndex": 1 }, { "id": "IL", @@ -1367,7 +1367,7 @@ "labelWidth": 17, "labelHeight": 26, "labelPosition": "INSIDE_MIDDLE_CENTER", - "renderPriority": 1 + "zIndex": 1 }, { "id": "IN", @@ -1405,7 +1405,7 @@ "labelWidth": 19, "labelHeight": 26, "labelPosition": "INSIDE_MIDDLE_CENTER", - "renderPriority": 1 + "zIndex": 1 }, { "id": "IA", @@ -1443,7 +1443,7 @@ "labelWidth": 19, "labelHeight": 26, "labelPosition": "INSIDE_MIDDLE_CENTER", - "renderPriority": 1 + "zIndex": 1 }, { "id": "MI", @@ -1481,7 +1481,7 @@ "labelWidth": 21, "labelHeight": 26, "labelPosition": "INSIDE_MIDDLE_CENTER", - "renderPriority": 1 + "zIndex": 1 }, { "id": "KY", @@ -1519,7 +1519,7 @@ "labelWidth": 23, "labelHeight": 26, "labelPosition": "INSIDE_MIDDLE_CENTER", - "renderPriority": 1 + "zIndex": 1 }, { "id": "WI", @@ -1557,7 +1557,7 @@ "labelWidth": 23, "labelHeight": 26, "labelPosition": "INSIDE_MIDDLE_CENTER", - "renderPriority": 1 + "zIndex": 1 }, { "id": "OH", @@ -1595,7 +1595,7 @@ "labelWidth": 26, "labelHeight": 26, "labelPosition": "INSIDE_MIDDLE_CENTER", - "renderPriority": 1 + "zIndex": 1 }, { "id": "MN", @@ -1633,7 +1633,7 @@ "labelWidth": 27, "labelHeight": 26, "labelPosition": "INSIDE_MIDDLE_CENTER", - "renderPriority": 1 + "zIndex": 1 }, { "id": "SD", @@ -1671,7 +1671,7 @@ "labelWidth": 24, "labelHeight": 26, "labelPosition": "INSIDE_MIDDLE_CENTER", - "renderPriority": 1 + "zIndex": 1 }, { "id": "VA", @@ -1709,7 +1709,7 @@ "labelWidth": 25, "labelHeight": 26, "labelPosition": "INSIDE_MIDDLE_CENTER", - "renderPriority": 1 + "zIndex": 1 }, { "id": "WV", @@ -1747,7 +1747,7 @@ "labelWidth": 29, "labelHeight": 26, "labelPosition": "INSIDE_MIDDLE_CENTER", - "renderPriority": 1 + "zIndex": 1 }, { "id": "ME", @@ -1785,7 +1785,7 @@ "labelWidth": 25, "labelHeight": 26, "labelPosition": "INSIDE_MIDDLE_CENTER", - "renderPriority": 1 + "zIndex": 1 }, { "id": "NH", @@ -1823,7 +1823,7 @@ "labelWidth": 25, "labelHeight": 26, "labelPosition": "INSIDE_MIDDLE_CENTER", - "renderPriority": 1 + "zIndex": 1 }, { "id": "VT", @@ -1861,7 +1861,7 @@ "labelWidth": 24, "labelHeight": 26, "labelPosition": "INSIDE_MIDDLE_CENTER", - "renderPriority": 1 + "zIndex": 1 }, { "id": "ND", @@ -1899,7 +1899,7 @@ "labelWidth": 25, "labelHeight": 26, "labelPosition": "INSIDE_MIDDLE_CENTER", - "renderPriority": 1 + "zIndex": 1 } ], "connections": [ @@ -1949,7 +1949,7 @@ "animated": false, "tooltip": "", "icon": null, - "renderPriority": 2 + "zIndex": 2 }, { "id": "(FL -- GA)[0]", @@ -1997,7 +1997,7 @@ "animated": false, "tooltip": "", "icon": null, - "renderPriority": 2 + "zIndex": 2 }, { "id": "(GA -- MS)[0]", @@ -2045,7 +2045,7 @@ "animated": false, "tooltip": "", "icon": null, - "renderPriority": 2 + "zIndex": 2 }, { "id": "(MS -- TN)[0]", @@ -2177,7 +2177,7 @@ "animated": false, "tooltip": "", "icon": null, - "renderPriority": 2 + "zIndex": 2 }, { "id": "(AZ -- CA)[0]", @@ -2225,7 +2225,7 @@ "animated": false, "tooltip": "", "icon": null, - "renderPriority": 2 + "zIndex": 2 }, { "id": "(CA -- NV)[0]", @@ -2273,7 +2273,7 @@ "animated": false, "tooltip": "", "icon": null, - "renderPriority": 2 + "zIndex": 2 }, { "id": "(NV -- NM)[0]", @@ -2321,7 +2321,7 @@ "animated": false, "tooltip": "", "icon": null, - "renderPriority": 2 + "zIndex": 2 }, { "id": "(NM -- UT)[0]", @@ -2381,7 +2381,7 @@ "animated": false, "tooltip": "", "icon": null, - "renderPriority": 2 + "zIndex": 2 }, { "id": "(AR -- LA)[0]", @@ -2429,7 +2429,7 @@ "animated": false, "tooltip": "", "icon": null, - "renderPriority": 2 + "zIndex": 2 }, { "id": "(LA -- MS)[0]", @@ -2477,7 +2477,7 @@ "animated": false, "tooltip": "", "icon": null, - "renderPriority": 2 + "zIndex": 2 }, { "id": "(MS -- MO)[0]", @@ -2525,7 +2525,7 @@ "animated": false, "tooltip": "", "icon": null, - "renderPriority": 2 + "zIndex": 2 }, { "id": "(MO -- OK)[0]", @@ -2609,7 +2609,7 @@ "animated": false, "tooltip": "", "icon": null, - "renderPriority": 2 + "zIndex": 2 }, { "id": "(OK -- TN)[0]", @@ -2657,7 +2657,7 @@ "animated": false, "tooltip": "", "icon": null, - "renderPriority": 2 + "zIndex": 2 }, { "id": "(TN -- TX)[0]", @@ -2705,7 +2705,7 @@ "animated": false, "tooltip": "", "icon": null, - "renderPriority": 2 + "zIndex": 2 }, { "id": "(CA -- NV)[1]", @@ -2753,7 +2753,7 @@ "animated": false, "tooltip": "", "icon": null, - "renderPriority": 2 + "zIndex": 2 }, { "id": "(NV -- OR)[0]", @@ -2813,7 +2813,7 @@ "animated": false, "tooltip": "", "icon": null, - "renderPriority": 2 + "zIndex": 2 }, { "id": "(CO -- KS)[0]", @@ -2861,7 +2861,7 @@ "animated": false, "tooltip": "", "icon": null, - "renderPriority": 2 + "zIndex": 2 }, { "id": "(KS -- NE)[0]", @@ -2921,7 +2921,7 @@ "animated": false, "tooltip": "", "icon": null, - "renderPriority": 2 + "zIndex": 2 }, { "id": "(NE -- NM)[0]", @@ -2969,7 +2969,7 @@ "animated": false, "tooltip": "", "icon": null, - "renderPriority": 2 + "zIndex": 2 }, { "id": "(NM -- OK)[0]", @@ -3017,7 +3017,7 @@ "animated": false, "tooltip": "", "icon": null, - "renderPriority": 2 + "zIndex": 2 }, { "id": "(OK -- UT)[0]", @@ -3065,7 +3065,7 @@ "animated": false, "tooltip": "", "icon": null, - "renderPriority": 2 + "zIndex": 2 }, { "id": "(UT -- WY)[0]", @@ -3125,7 +3125,7 @@ "animated": false, "tooltip": "", "icon": null, - "renderPriority": 2 + "zIndex": 2 }, { "id": "(CT -- MA)[0]", @@ -3173,7 +3173,7 @@ "animated": false, "tooltip": "", "icon": null, - "renderPriority": 2 + "zIndex": 2 }, { "id": "(MA -- NY)[0]", @@ -3233,7 +3233,7 @@ "animated": false, "tooltip": "", "icon": null, - "renderPriority": 2 + "zIndex": 2 }, { "id": "(NY -- RI)[0]", @@ -3293,7 +3293,7 @@ "animated": false, "tooltip": "", "icon": null, - "renderPriority": 2 + "zIndex": 2 }, { "id": "(DE -- MD)[0]", @@ -3341,7 +3341,7 @@ "animated": false, "tooltip": "", "icon": null, - "renderPriority": 2 + "zIndex": 2 }, { "id": "(MD -- NJ)[0]", @@ -3389,7 +3389,7 @@ "animated": false, "tooltip": "", "icon": null, - "renderPriority": 2 + "zIndex": 2 }, { "id": "(NJ -- PA)[0]", @@ -3449,7 +3449,7 @@ "animated": false, "tooltip": "", "icon": null, - "renderPriority": 2 + "zIndex": 2 }, { "id": "(FL -- GA)[1]", @@ -3497,7 +3497,7 @@ "animated": false, "tooltip": "", "icon": null, - "renderPriority": 2 + "zIndex": 2 }, { "id": "(GA -- NC)[0]", @@ -3605,7 +3605,7 @@ "animated": false, "tooltip": "", "icon": null, - "renderPriority": 2 + "zIndex": 2 }, { "id": "(NC -- SC)[0]", @@ -3653,7 +3653,7 @@ "animated": false, "tooltip": "", "icon": null, - "renderPriority": 2 + "zIndex": 2 }, { "id": "(SC -- TN)[0]", @@ -3701,7 +3701,7 @@ "animated": false, "tooltip": "", "icon": null, - "renderPriority": 2 + "zIndex": 2 }, { "id": "(ID -- MT)[0]", @@ -3749,7 +3749,7 @@ "animated": false, "tooltip": "", "icon": null, - "renderPriority": 2 + "zIndex": 2 }, { "id": "(MT -- NV)[0]", @@ -3797,7 +3797,7 @@ "animated": false, "tooltip": "", "icon": null, - "renderPriority": 2 + "zIndex": 2 }, { "id": "(NV -- OR)[1]", @@ -3857,7 +3857,7 @@ "animated": false, "tooltip": "", "icon": null, - "renderPriority": 2 + "zIndex": 2 }, { "id": "(OR -- UT)[0]", @@ -3905,7 +3905,7 @@ "animated": false, "tooltip": "", "icon": null, - "renderPriority": 2 + "zIndex": 2 }, { "id": "(UT -- WA)[0]", @@ -3953,7 +3953,7 @@ "animated": false, "tooltip": "", "icon": null, - "renderPriority": 2 + "zIndex": 2 }, { "id": "(WA -- WY)[0]", @@ -4001,7 +4001,7 @@ "animated": false, "tooltip": "", "icon": null, - "renderPriority": 2 + "zIndex": 2 }, { "id": "(IL -- IN)[0]", @@ -4049,7 +4049,7 @@ "animated": false, "tooltip": "", "icon": null, - "renderPriority": 2 + "zIndex": 2 }, { "id": "(IN -- IA)[0]", @@ -4097,7 +4097,7 @@ "animated": false, "tooltip": "", "icon": null, - "renderPriority": 2 + "zIndex": 2 }, { "id": "(IA -- MI)[0]", @@ -4145,7 +4145,7 @@ "animated": false, "tooltip": "", "icon": null, - "renderPriority": 2 + "zIndex": 2 }, { "id": "(MI -- KY)[0]", @@ -4193,7 +4193,7 @@ "animated": false, "tooltip": "", "icon": null, - "renderPriority": 2 + "zIndex": 2 }, { "id": "(KY -- MO)[0]", @@ -4241,7 +4241,7 @@ "animated": false, "tooltip": "", "icon": null, - "renderPriority": 2 + "zIndex": 2 }, { "id": "(MO -- WI)[0]", @@ -4325,7 +4325,7 @@ "animated": false, "tooltip": "", "icon": null, - "renderPriority": 2 + "zIndex": 2 }, { "id": "(IN -- KY)[0]", @@ -4409,7 +4409,7 @@ "animated": false, "tooltip": "", "icon": null, - "renderPriority": 2 + "zIndex": 2 }, { "id": "(KY -- MI)[0]", @@ -4457,7 +4457,7 @@ "animated": false, "tooltip": "", "icon": null, - "renderPriority": 2 + "zIndex": 2 }, { "id": "(MI -- OH)[0]", @@ -4565,7 +4565,7 @@ "animated": false, "tooltip": "", "icon": null, - "renderPriority": 2 + "zIndex": 2 }, { "id": "(IA -- MN)[0]", @@ -4625,7 +4625,7 @@ "animated": false, "tooltip": "", "icon": null, - "renderPriority": 2 + "zIndex": 2 }, { "id": "(MN -- MO)[0]", @@ -4673,7 +4673,7 @@ "animated": false, "tooltip": "", "icon": null, - "renderPriority": 2 + "zIndex": 2 }, { "id": "(MO -- NE)[0]", @@ -4721,7 +4721,7 @@ "animated": false, "tooltip": "", "icon": null, - "renderPriority": 2 + "zIndex": 2 }, { "id": "(NE -- SD)[0]", @@ -4769,7 +4769,7 @@ "animated": false, "tooltip": "", "icon": null, - "renderPriority": 2 + "zIndex": 2 }, { "id": "(SD -- WI)[0]", @@ -4817,7 +4817,7 @@ "animated": false, "tooltip": "", "icon": null, - "renderPriority": 2 + "zIndex": 2 }, { "id": "(KS -- MO)[0]", @@ -4865,7 +4865,7 @@ "animated": false, "tooltip": "", "icon": null, - "renderPriority": 2 + "zIndex": 2 }, { "id": "(MO -- NE)[1]", @@ -4913,7 +4913,7 @@ "animated": false, "tooltip": "", "icon": null, - "renderPriority": 2 + "zIndex": 2 }, { "id": "(NE -- OK)[0]", @@ -4973,7 +4973,7 @@ "animated": false, "tooltip": "", "icon": null, - "renderPriority": 2 + "zIndex": 2 }, { "id": "(KY -- MO)[1]", @@ -5021,7 +5021,7 @@ "animated": false, "tooltip": "", "icon": null, - "renderPriority": 2 + "zIndex": 2 }, { "id": "(MO -- OH)[0]", @@ -5081,7 +5081,7 @@ "animated": false, "tooltip": "", "icon": null, - "renderPriority": 2 + "zIndex": 2 }, { "id": "(OH -- TN)[0]", @@ -5141,7 +5141,7 @@ "animated": false, "tooltip": "", "icon": null, - "renderPriority": 2 + "zIndex": 2 }, { "id": "(TN -- VA)[0]", @@ -5189,7 +5189,7 @@ "animated": false, "tooltip": "", "icon": null, - "renderPriority": 2 + "zIndex": 2 }, { "id": "(VA -- WV)[0]", @@ -5237,7 +5237,7 @@ "animated": false, "tooltip": "", "icon": null, - "renderPriority": 2 + "zIndex": 2 }, { "id": "(LA -- MS)[1]", @@ -5285,7 +5285,7 @@ "animated": false, "tooltip": "", "icon": null, - "renderPriority": 2 + "zIndex": 2 }, { "id": "(MS -- TX)[0]", @@ -5441,7 +5441,7 @@ "animated": false, "tooltip": "", "icon": null, - "renderPriority": 2 + "zIndex": 2 }, { "id": "(ME -- NH)[0]", @@ -5489,7 +5489,7 @@ "animated": false, "tooltip": "", "icon": null, - "renderPriority": 2 + "zIndex": 2 }, { "id": "(MD -- PA)[0]", @@ -5573,7 +5573,7 @@ "animated": false, "tooltip": "", "icon": null, - "renderPriority": 2 + "zIndex": 2 }, { "id": "(PA -- VA)[0]", @@ -5621,7 +5621,7 @@ "animated": false, "tooltip": "", "icon": null, - "renderPriority": 2 + "zIndex": 2 }, { "id": "(VA -- WV)[1]", @@ -5669,7 +5669,7 @@ "animated": false, "tooltip": "", "icon": null, - "renderPriority": 2 + "zIndex": 2 }, { "id": "(MA -- NH)[0]", @@ -5717,7 +5717,7 @@ "animated": false, "tooltip": "", "icon": null, - "renderPriority": 2 + "zIndex": 2 }, { "id": "(NH -- NY)[0]", @@ -5765,7 +5765,7 @@ "animated": false, "tooltip": "", "icon": null, - "renderPriority": 2 + "zIndex": 2 }, { "id": "(NY -- RI)[1]", @@ -5825,7 +5825,7 @@ "animated": false, "tooltip": "", "icon": null, - "renderPriority": 2 + "zIndex": 2 }, { "id": "(RI -- VT)[0]", @@ -5873,7 +5873,7 @@ "animated": false, "tooltip": "", "icon": null, - "renderPriority": 2 + "zIndex": 2 }, { "id": "(MI -- MN)[0]", @@ -5921,7 +5921,7 @@ "animated": false, "tooltip": "", "icon": null, - "renderPriority": 2 + "zIndex": 2 }, { "id": "(MN -- OH)[0]", @@ -6005,7 +6005,7 @@ "animated": false, "tooltip": "", "icon": null, - "renderPriority": 2 + "zIndex": 2 }, { "id": "(OH -- WI)[0]", @@ -6053,7 +6053,7 @@ "animated": false, "tooltip": "", "icon": null, - "renderPriority": 2 + "zIndex": 2 }, { "id": "(MN -- ND)[0]", @@ -6113,7 +6113,7 @@ "animated": false, "tooltip": "", "icon": null, - "renderPriority": 2 + "zIndex": 2 }, { "id": "(ND -- SD)[0]", @@ -6161,7 +6161,7 @@ "animated": false, "tooltip": "", "icon": null, - "renderPriority": 2 + "zIndex": 2 }, { "id": "(SD -- WI)[1]", @@ -6209,7 +6209,7 @@ "animated": false, "tooltip": "", "icon": null, - "renderPriority": 2 + "zIndex": 2 }, { "id": "(MS -- TN)[1]", @@ -6341,7 +6341,7 @@ "animated": false, "tooltip": "", "icon": null, - "renderPriority": 2 + "zIndex": 2 }, { "id": "(MO -- NE)[2]", @@ -6389,7 +6389,7 @@ "animated": false, "tooltip": "", "icon": null, - "renderPriority": 2 + "zIndex": 2 }, { "id": "(NE -- OK)[1]", @@ -6449,7 +6449,7 @@ "animated": false, "tooltip": "", "icon": null, - "renderPriority": 2 + "zIndex": 2 }, { "id": "(OK -- TN)[1]", @@ -6497,7 +6497,7 @@ "animated": false, "tooltip": "", "icon": null, - "renderPriority": 2 + "zIndex": 2 }, { "id": "(MT -- ND)[0]", @@ -6545,7 +6545,7 @@ "animated": false, "tooltip": "", "icon": null, - "renderPriority": 2 + "zIndex": 2 }, { "id": "(ND -- SD)[1]", @@ -6593,7 +6593,7 @@ "animated": false, "tooltip": "", "icon": null, - "renderPriority": 2 + "zIndex": 2 }, { "id": "(SD -- WY)[0]", @@ -6701,7 +6701,7 @@ "animated": false, "tooltip": "", "icon": null, - "renderPriority": 2 + "zIndex": 2 }, { "id": "(NE -- SD)[1]", @@ -6749,7 +6749,7 @@ "animated": false, "tooltip": "", "icon": null, - "renderPriority": 2 + "zIndex": 2 }, { "id": "(SD -- WY)[1]", @@ -6857,7 +6857,7 @@ "animated": false, "tooltip": "", "icon": null, - "renderPriority": 2 + "zIndex": 2 }, { "id": "(NV -- OR)[2]", @@ -6917,7 +6917,7 @@ "animated": false, "tooltip": "", "icon": null, - "renderPriority": 2 + "zIndex": 2 }, { "id": "(OR -- UT)[1]", @@ -6965,7 +6965,7 @@ "animated": false, "tooltip": "", "icon": null, - "renderPriority": 2 + "zIndex": 2 }, { "id": "(NH -- VT)[0]", @@ -7073,7 +7073,7 @@ "animated": false, "tooltip": "", "icon": null, - "renderPriority": 2 + "zIndex": 2 }, { "id": "(NJ -- NY)[0]", @@ -7121,7 +7121,7 @@ "animated": false, "tooltip": "", "icon": null, - "renderPriority": 2 + "zIndex": 2 }, { "id": "(NY -- PA)[0]", @@ -7169,7 +7169,7 @@ "animated": false, "tooltip": "", "icon": null, - "renderPriority": 2 + "zIndex": 2 }, { "id": "(NM -- OK)[1]", @@ -7217,7 +7217,7 @@ "animated": false, "tooltip": "", "icon": null, - "renderPriority": 2 + "zIndex": 2 }, { "id": "(OK -- TX)[0]", @@ -7277,7 +7277,7 @@ "animated": false, "tooltip": "", "icon": null, - "renderPriority": 2 + "zIndex": 2 }, { "id": "(NY -- PA)[1]", @@ -7325,7 +7325,7 @@ "animated": false, "tooltip": "", "icon": null, - "renderPriority": 2 + "zIndex": 2 }, { "id": "(PA -- RI)[0]", @@ -7373,7 +7373,7 @@ "animated": false, "tooltip": "", "icon": null, - "renderPriority": 2 + "zIndex": 2 }, { "id": "(RI -- VT)[1]", @@ -7421,7 +7421,7 @@ "animated": false, "tooltip": "", "icon": null, - "renderPriority": 2 + "zIndex": 2 }, { "id": "(NC -- SC)[1]", @@ -7469,7 +7469,7 @@ "animated": false, "tooltip": "", "icon": null, - "renderPriority": 2 + "zIndex": 2 }, { "id": "(SC -- TN)[1]", @@ -7517,7 +7517,7 @@ "animated": false, "tooltip": "", "icon": null, - "renderPriority": 2 + "zIndex": 2 }, { "id": "(TN -- VA)[1]", @@ -7565,7 +7565,7 @@ "animated": false, "tooltip": "", "icon": null, - "renderPriority": 2 + "zIndex": 2 }, { "id": "(ND -- SD)[2]", @@ -7613,7 +7613,7 @@ "animated": false, "tooltip": "", "icon": null, - "renderPriority": 2 + "zIndex": 2 }, { "id": "(OH -- PA)[0]", @@ -7673,7 +7673,7 @@ "animated": false, "tooltip": "", "icon": null, - "renderPriority": 2 + "zIndex": 2 }, { "id": "(PA -- WV)[0]", @@ -7733,7 +7733,7 @@ "animated": false, "tooltip": "", "icon": null, - "renderPriority": 2 + "zIndex": 2 }, { "id": "(OK -- TX)[1]", @@ -7793,7 +7793,7 @@ "animated": false, "tooltip": "", "icon": null, - "renderPriority": 2 + "zIndex": 2 }, { "id": "(OR -- WA)[0]", @@ -7853,7 +7853,7 @@ "animated": false, "tooltip": "", "icon": null, - "renderPriority": 2 + "zIndex": 2 }, { "id": "(PA -- WV)[1]", @@ -7913,7 +7913,7 @@ "animated": false, "tooltip": "", "icon": null, - "renderPriority": 2 + "zIndex": 2 }, { "id": "(SD -- WY)[2]", @@ -8021,7 +8021,7 @@ "animated": false, "tooltip": "", "icon": null, - "renderPriority": 2 + "zIndex": 2 }, { "id": "(TN -- VA)[2]", @@ -8069,7 +8069,7 @@ "animated": false, "tooltip": "", "icon": null, - "renderPriority": 2 + "zIndex": 2 }, { "id": "(UT -- WY)[1]", @@ -8129,7 +8129,7 @@ "animated": false, "tooltip": "", "icon": null, - "renderPriority": 2 + "zIndex": 2 }, { "id": "(VA -- WV)[2]", @@ -8177,7 +8177,7 @@ "animated": false, "tooltip": "", "icon": null, - "renderPriority": 2 + "zIndex": 2 } ] } diff --git a/e2etests/testdata/stable/us_map/elk/board.exp.json b/e2etests/testdata/stable/us_map/elk/board.exp.json index dfd4d1b13..08b090faf 100644 --- a/e2etests/testdata/stable/us_map/elk/board.exp.json +++ b/e2etests/testdata/stable/us_map/elk/board.exp.json @@ -37,7 +37,7 @@ "labelWidth": 26, "labelHeight": 26, "labelPosition": "INSIDE_MIDDLE_CENTER", - "renderPriority": 1 + "zIndex": 1 }, { "id": "HI", @@ -75,7 +75,7 @@ "labelWidth": 19, "labelHeight": 26, "labelPosition": "INSIDE_MIDDLE_CENTER", - "renderPriority": 1 + "zIndex": 1 }, { "id": "AL", @@ -113,7 +113,7 @@ "labelWidth": 24, "labelHeight": 26, "labelPosition": "INSIDE_MIDDLE_CENTER", - "renderPriority": 1 + "zIndex": 1 }, { "id": "FL", @@ -151,7 +151,7 @@ "labelWidth": 21, "labelHeight": 26, "labelPosition": "INSIDE_MIDDLE_CENTER", - "renderPriority": 1 + "zIndex": 1 }, { "id": "GA", @@ -189,7 +189,7 @@ "labelWidth": 26, "labelHeight": 26, "labelPosition": "INSIDE_MIDDLE_CENTER", - "renderPriority": 1 + "zIndex": 1 }, { "id": "MS", @@ -227,7 +227,7 @@ "labelWidth": 26, "labelHeight": 26, "labelPosition": "INSIDE_MIDDLE_CENTER", - "renderPriority": 1 + "zIndex": 1 }, { "id": "TN", @@ -265,7 +265,7 @@ "labelWidth": 24, "labelHeight": 26, "labelPosition": "INSIDE_MIDDLE_CENTER", - "renderPriority": 1 + "zIndex": 1 }, { "id": "AZ", @@ -303,7 +303,7 @@ "labelWidth": 25, "labelHeight": 26, "labelPosition": "INSIDE_MIDDLE_CENTER", - "renderPriority": 1 + "zIndex": 1 }, { "id": "CA", @@ -341,7 +341,7 @@ "labelWidth": 25, "labelHeight": 26, "labelPosition": "INSIDE_MIDDLE_CENTER", - "renderPriority": 1 + "zIndex": 1 }, { "id": "NV", @@ -379,7 +379,7 @@ "labelWidth": 25, "labelHeight": 26, "labelPosition": "INSIDE_MIDDLE_CENTER", - "renderPriority": 1 + "zIndex": 1 }, { "id": "NM", @@ -417,7 +417,7 @@ "labelWidth": 26, "labelHeight": 26, "labelPosition": "INSIDE_MIDDLE_CENTER", - "renderPriority": 1 + "zIndex": 1 }, { "id": "UT", @@ -455,7 +455,7 @@ "labelWidth": 24, "labelHeight": 26, "labelPosition": "INSIDE_MIDDLE_CENTER", - "renderPriority": 1 + "zIndex": 1 }, { "id": "AR", @@ -493,7 +493,7 @@ "labelWidth": 26, "labelHeight": 26, "labelPosition": "INSIDE_MIDDLE_CENTER", - "renderPriority": 1 + "zIndex": 1 }, { "id": "LA", @@ -531,7 +531,7 @@ "labelWidth": 23, "labelHeight": 26, "labelPosition": "INSIDE_MIDDLE_CENTER", - "renderPriority": 1 + "zIndex": 1 }, { "id": "MO", @@ -569,7 +569,7 @@ "labelWidth": 28, "labelHeight": 26, "labelPosition": "INSIDE_MIDDLE_CENTER", - "renderPriority": 1 + "zIndex": 1 }, { "id": "OK", @@ -607,7 +607,7 @@ "labelWidth": 26, "labelHeight": 26, "labelPosition": "INSIDE_MIDDLE_CENTER", - "renderPriority": 1 + "zIndex": 1 }, { "id": "TX", @@ -645,7 +645,7 @@ "labelWidth": 23, "labelHeight": 26, "labelPosition": "INSIDE_MIDDLE_CENTER", - "renderPriority": 1 + "zIndex": 1 }, { "id": "OR", @@ -683,7 +683,7 @@ "labelWidth": 26, "labelHeight": 26, "labelPosition": "INSIDE_MIDDLE_CENTER", - "renderPriority": 1 + "zIndex": 1 }, { "id": "CO", @@ -721,7 +721,7 @@ "labelWidth": 26, "labelHeight": 26, "labelPosition": "INSIDE_MIDDLE_CENTER", - "renderPriority": 1 + "zIndex": 1 }, { "id": "KS", @@ -759,7 +759,7 @@ "labelWidth": 23, "labelHeight": 26, "labelPosition": "INSIDE_MIDDLE_CENTER", - "renderPriority": 1 + "zIndex": 1 }, { "id": "NE", @@ -797,7 +797,7 @@ "labelWidth": 23, "labelHeight": 26, "labelPosition": "INSIDE_MIDDLE_CENTER", - "renderPriority": 1 + "zIndex": 1 }, { "id": "WY", @@ -835,7 +835,7 @@ "labelWidth": 28, "labelHeight": 26, "labelPosition": "INSIDE_MIDDLE_CENTER", - "renderPriority": 1 + "zIndex": 1 }, { "id": "CT", @@ -873,7 +873,7 @@ "labelWidth": 24, "labelHeight": 26, "labelPosition": "INSIDE_MIDDLE_CENTER", - "renderPriority": 1 + "zIndex": 1 }, { "id": "MA", @@ -911,7 +911,7 @@ "labelWidth": 27, "labelHeight": 26, "labelPosition": "INSIDE_MIDDLE_CENTER", - "renderPriority": 1 + "zIndex": 1 }, { "id": "NY", @@ -949,7 +949,7 @@ "labelWidth": 24, "labelHeight": 26, "labelPosition": "INSIDE_MIDDLE_CENTER", - "renderPriority": 1 + "zIndex": 1 }, { "id": "RI", @@ -987,7 +987,7 @@ "labelWidth": 18, "labelHeight": 26, "labelPosition": "INSIDE_MIDDLE_CENTER", - "renderPriority": 1 + "zIndex": 1 }, { "id": "DE", @@ -1025,7 +1025,7 @@ "labelWidth": 23, "labelHeight": 26, "labelPosition": "INSIDE_MIDDLE_CENTER", - "renderPriority": 1 + "zIndex": 1 }, { "id": "MD", @@ -1063,7 +1063,7 @@ "labelWidth": 27, "labelHeight": 26, "labelPosition": "INSIDE_MIDDLE_CENTER", - "renderPriority": 1 + "zIndex": 1 }, { "id": "NJ", @@ -1101,7 +1101,7 @@ "labelWidth": 22, "labelHeight": 26, "labelPosition": "INSIDE_MIDDLE_CENTER", - "renderPriority": 1 + "zIndex": 1 }, { "id": "PA", @@ -1139,7 +1139,7 @@ "labelWidth": 24, "labelHeight": 26, "labelPosition": "INSIDE_MIDDLE_CENTER", - "renderPriority": 1 + "zIndex": 1 }, { "id": "NC", @@ -1177,7 +1177,7 @@ "labelWidth": 24, "labelHeight": 26, "labelPosition": "INSIDE_MIDDLE_CENTER", - "renderPriority": 1 + "zIndex": 1 }, { "id": "SC", @@ -1215,7 +1215,7 @@ "labelWidth": 23, "labelHeight": 26, "labelPosition": "INSIDE_MIDDLE_CENTER", - "renderPriority": 1 + "zIndex": 1 }, { "id": "ID", @@ -1253,7 +1253,7 @@ "labelWidth": 19, "labelHeight": 26, "labelPosition": "INSIDE_MIDDLE_CENTER", - "renderPriority": 1 + "zIndex": 1 }, { "id": "MT", @@ -1291,7 +1291,7 @@ "labelWidth": 26, "labelHeight": 26, "labelPosition": "INSIDE_MIDDLE_CENTER", - "renderPriority": 1 + "zIndex": 1 }, { "id": "WA", @@ -1329,7 +1329,7 @@ "labelWidth": 29, "labelHeight": 26, "labelPosition": "INSIDE_MIDDLE_CENTER", - "renderPriority": 1 + "zIndex": 1 }, { "id": "IL", @@ -1367,7 +1367,7 @@ "labelWidth": 17, "labelHeight": 26, "labelPosition": "INSIDE_MIDDLE_CENTER", - "renderPriority": 1 + "zIndex": 1 }, { "id": "IN", @@ -1405,7 +1405,7 @@ "labelWidth": 19, "labelHeight": 26, "labelPosition": "INSIDE_MIDDLE_CENTER", - "renderPriority": 1 + "zIndex": 1 }, { "id": "IA", @@ -1443,7 +1443,7 @@ "labelWidth": 19, "labelHeight": 26, "labelPosition": "INSIDE_MIDDLE_CENTER", - "renderPriority": 1 + "zIndex": 1 }, { "id": "MI", @@ -1481,7 +1481,7 @@ "labelWidth": 21, "labelHeight": 26, "labelPosition": "INSIDE_MIDDLE_CENTER", - "renderPriority": 1 + "zIndex": 1 }, { "id": "KY", @@ -1519,7 +1519,7 @@ "labelWidth": 23, "labelHeight": 26, "labelPosition": "INSIDE_MIDDLE_CENTER", - "renderPriority": 1 + "zIndex": 1 }, { "id": "WI", @@ -1557,7 +1557,7 @@ "labelWidth": 23, "labelHeight": 26, "labelPosition": "INSIDE_MIDDLE_CENTER", - "renderPriority": 1 + "zIndex": 1 }, { "id": "OH", @@ -1595,7 +1595,7 @@ "labelWidth": 26, "labelHeight": 26, "labelPosition": "INSIDE_MIDDLE_CENTER", - "renderPriority": 1 + "zIndex": 1 }, { "id": "MN", @@ -1633,7 +1633,7 @@ "labelWidth": 27, "labelHeight": 26, "labelPosition": "INSIDE_MIDDLE_CENTER", - "renderPriority": 1 + "zIndex": 1 }, { "id": "SD", @@ -1671,7 +1671,7 @@ "labelWidth": 24, "labelHeight": 26, "labelPosition": "INSIDE_MIDDLE_CENTER", - "renderPriority": 1 + "zIndex": 1 }, { "id": "VA", @@ -1709,7 +1709,7 @@ "labelWidth": 25, "labelHeight": 26, "labelPosition": "INSIDE_MIDDLE_CENTER", - "renderPriority": 1 + "zIndex": 1 }, { "id": "WV", @@ -1747,7 +1747,7 @@ "labelWidth": 29, "labelHeight": 26, "labelPosition": "INSIDE_MIDDLE_CENTER", - "renderPriority": 1 + "zIndex": 1 }, { "id": "ME", @@ -1785,7 +1785,7 @@ "labelWidth": 25, "labelHeight": 26, "labelPosition": "INSIDE_MIDDLE_CENTER", - "renderPriority": 1 + "zIndex": 1 }, { "id": "NH", @@ -1823,7 +1823,7 @@ "labelWidth": 25, "labelHeight": 26, "labelPosition": "INSIDE_MIDDLE_CENTER", - "renderPriority": 1 + "zIndex": 1 }, { "id": "VT", @@ -1861,7 +1861,7 @@ "labelWidth": 24, "labelHeight": 26, "labelPosition": "INSIDE_MIDDLE_CENTER", - "renderPriority": 1 + "zIndex": 1 }, { "id": "ND", @@ -1899,7 +1899,7 @@ "labelWidth": 25, "labelHeight": 26, "labelPosition": "INSIDE_MIDDLE_CENTER", - "renderPriority": 1 + "zIndex": 1 } ], "connections": [ @@ -1940,7 +1940,7 @@ "animated": false, "tooltip": "", "icon": null, - "renderPriority": 2 + "zIndex": 2 }, { "id": "(FL -- GA)[0]", @@ -1979,7 +1979,7 @@ "animated": false, "tooltip": "", "icon": null, - "renderPriority": 2 + "zIndex": 2 }, { "id": "(GA -- MS)[0]", @@ -2018,7 +2018,7 @@ "animated": false, "tooltip": "", "icon": null, - "renderPriority": 2 + "zIndex": 2 }, { "id": "(MS -- TN)[0]", @@ -2073,7 +2073,7 @@ "animated": false, "tooltip": "", "icon": null, - "renderPriority": 2 + "zIndex": 2 }, { "id": "(AZ -- CA)[0]", @@ -2112,7 +2112,7 @@ "animated": false, "tooltip": "", "icon": null, - "renderPriority": 2 + "zIndex": 2 }, { "id": "(CA -- NV)[0]", @@ -2151,7 +2151,7 @@ "animated": false, "tooltip": "", "icon": null, - "renderPriority": 2 + "zIndex": 2 }, { "id": "(NV -- NM)[0]", @@ -2198,7 +2198,7 @@ "animated": false, "tooltip": "", "icon": null, - "renderPriority": 2 + "zIndex": 2 }, { "id": "(NM -- UT)[0]", @@ -2245,7 +2245,7 @@ "animated": false, "tooltip": "", "icon": null, - "renderPriority": 2 + "zIndex": 2 }, { "id": "(AR -- LA)[0]", @@ -2284,7 +2284,7 @@ "animated": false, "tooltip": "", "icon": null, - "renderPriority": 2 + "zIndex": 2 }, { "id": "(LA -- MS)[0]", @@ -2331,7 +2331,7 @@ "animated": false, "tooltip": "", "icon": null, - "renderPriority": 2 + "zIndex": 2 }, { "id": "(MS -- MO)[0]", @@ -2378,7 +2378,7 @@ "animated": false, "tooltip": "", "icon": null, - "renderPriority": 2 + "zIndex": 2 }, { "id": "(MO -- OK)[0]", @@ -2433,7 +2433,7 @@ "animated": false, "tooltip": "", "icon": null, - "renderPriority": 2 + "zIndex": 2 }, { "id": "(OK -- TN)[0]", @@ -2480,7 +2480,7 @@ "animated": false, "tooltip": "", "icon": null, - "renderPriority": 2 + "zIndex": 2 }, { "id": "(TN -- TX)[0]", @@ -2527,7 +2527,7 @@ "animated": false, "tooltip": "", "icon": null, - "renderPriority": 2 + "zIndex": 2 }, { "id": "(CA -- NV)[1]", @@ -2574,7 +2574,7 @@ "animated": false, "tooltip": "", "icon": null, - "renderPriority": 2 + "zIndex": 2 }, { "id": "(NV -- OR)[0]", @@ -2613,7 +2613,7 @@ "animated": false, "tooltip": "", "icon": null, - "renderPriority": 2 + "zIndex": 2 }, { "id": "(CO -- KS)[0]", @@ -2652,7 +2652,7 @@ "animated": false, "tooltip": "", "icon": null, - "renderPriority": 2 + "zIndex": 2 }, { "id": "(KS -- NE)[0]", @@ -2691,7 +2691,7 @@ "animated": false, "tooltip": "", "icon": null, - "renderPriority": 2 + "zIndex": 2 }, { "id": "(NE -- NM)[0]", @@ -2730,7 +2730,7 @@ "animated": false, "tooltip": "", "icon": null, - "renderPriority": 2 + "zIndex": 2 }, { "id": "(NM -- OK)[0]", @@ -2769,7 +2769,7 @@ "animated": false, "tooltip": "", "icon": null, - "renderPriority": 2 + "zIndex": 2 }, { "id": "(OK -- UT)[0]", @@ -2816,7 +2816,7 @@ "animated": false, "tooltip": "", "icon": null, - "renderPriority": 2 + "zIndex": 2 }, { "id": "(UT -- WY)[0]", @@ -2871,7 +2871,7 @@ "animated": false, "tooltip": "", "icon": null, - "renderPriority": 2 + "zIndex": 2 }, { "id": "(CT -- MA)[0]", @@ -2910,7 +2910,7 @@ "animated": false, "tooltip": "", "icon": null, - "renderPriority": 2 + "zIndex": 2 }, { "id": "(MA -- NY)[0]", @@ -2949,7 +2949,7 @@ "animated": false, "tooltip": "", "icon": null, - "renderPriority": 2 + "zIndex": 2 }, { "id": "(NY -- RI)[0]", @@ -2996,7 +2996,7 @@ "animated": false, "tooltip": "", "icon": null, - "renderPriority": 2 + "zIndex": 2 }, { "id": "(DE -- MD)[0]", @@ -3035,7 +3035,7 @@ "animated": false, "tooltip": "", "icon": null, - "renderPriority": 2 + "zIndex": 2 }, { "id": "(MD -- NJ)[0]", @@ -3074,7 +3074,7 @@ "animated": false, "tooltip": "", "icon": null, - "renderPriority": 2 + "zIndex": 2 }, { "id": "(NJ -- PA)[0]", @@ -3121,7 +3121,7 @@ "animated": false, "tooltip": "", "icon": null, - "renderPriority": 2 + "zIndex": 2 }, { "id": "(FL -- GA)[1]", @@ -3168,7 +3168,7 @@ "animated": false, "tooltip": "", "icon": null, - "renderPriority": 2 + "zIndex": 2 }, { "id": "(GA -- NC)[0]", @@ -3223,7 +3223,7 @@ "animated": false, "tooltip": "", "icon": null, - "renderPriority": 2 + "zIndex": 2 }, { "id": "(NC -- SC)[0]", @@ -3262,7 +3262,7 @@ "animated": false, "tooltip": "", "icon": null, - "renderPriority": 2 + "zIndex": 2 }, { "id": "(SC -- TN)[0]", @@ -3301,7 +3301,7 @@ "animated": false, "tooltip": "", "icon": null, - "renderPriority": 2 + "zIndex": 2 }, { "id": "(ID -- MT)[0]", @@ -3340,7 +3340,7 @@ "animated": false, "tooltip": "", "icon": null, - "renderPriority": 2 + "zIndex": 2 }, { "id": "(MT -- NV)[0]", @@ -3387,7 +3387,7 @@ "animated": false, "tooltip": "", "icon": null, - "renderPriority": 2 + "zIndex": 2 }, { "id": "(NV -- OR)[1]", @@ -3434,7 +3434,7 @@ "animated": false, "tooltip": "", "icon": null, - "renderPriority": 2 + "zIndex": 2 }, { "id": "(OR -- UT)[0]", @@ -3481,7 +3481,7 @@ "animated": false, "tooltip": "", "icon": null, - "renderPriority": 2 + "zIndex": 2 }, { "id": "(UT -- WA)[0]", @@ -3528,7 +3528,7 @@ "animated": false, "tooltip": "", "icon": null, - "renderPriority": 2 + "zIndex": 2 }, { "id": "(WA -- WY)[0]", @@ -3567,7 +3567,7 @@ "animated": false, "tooltip": "", "icon": null, - "renderPriority": 2 + "zIndex": 2 }, { "id": "(IL -- IN)[0]", @@ -3606,7 +3606,7 @@ "animated": false, "tooltip": "", "icon": null, - "renderPriority": 2 + "zIndex": 2 }, { "id": "(IN -- IA)[0]", @@ -3653,7 +3653,7 @@ "animated": false, "tooltip": "", "icon": null, - "renderPriority": 2 + "zIndex": 2 }, { "id": "(IA -- MI)[0]", @@ -3692,7 +3692,7 @@ "animated": false, "tooltip": "", "icon": null, - "renderPriority": 2 + "zIndex": 2 }, { "id": "(MI -- KY)[0]", @@ -3739,7 +3739,7 @@ "animated": false, "tooltip": "", "icon": null, - "renderPriority": 2 + "zIndex": 2 }, { "id": "(KY -- MO)[0]", @@ -3778,7 +3778,7 @@ "animated": false, "tooltip": "", "icon": null, - "renderPriority": 2 + "zIndex": 2 }, { "id": "(MO -- WI)[0]", @@ -3825,7 +3825,7 @@ "animated": false, "tooltip": "", "icon": null, - "renderPriority": 2 + "zIndex": 2 }, { "id": "(IN -- KY)[0]", @@ -3864,7 +3864,7 @@ "animated": false, "tooltip": "", "icon": null, - "renderPriority": 2 + "zIndex": 2 }, { "id": "(KY -- MI)[0]", @@ -3911,7 +3911,7 @@ "animated": false, "tooltip": "", "icon": null, - "renderPriority": 2 + "zIndex": 2 }, { "id": "(MI -- OH)[0]", @@ -3958,7 +3958,7 @@ "animated": false, "tooltip": "", "icon": null, - "renderPriority": 2 + "zIndex": 2 }, { "id": "(IA -- MN)[0]", @@ -4013,7 +4013,7 @@ "animated": false, "tooltip": "", "icon": null, - "renderPriority": 2 + "zIndex": 2 }, { "id": "(MN -- MO)[0]", @@ -4060,7 +4060,7 @@ "animated": false, "tooltip": "", "icon": null, - "renderPriority": 2 + "zIndex": 2 }, { "id": "(MO -- NE)[0]", @@ -4107,7 +4107,7 @@ "animated": false, "tooltip": "", "icon": null, - "renderPriority": 2 + "zIndex": 2 }, { "id": "(NE -- SD)[0]", @@ -4154,7 +4154,7 @@ "animated": false, "tooltip": "", "icon": null, - "renderPriority": 2 + "zIndex": 2 }, { "id": "(SD -- WI)[0]", @@ -4201,7 +4201,7 @@ "animated": false, "tooltip": "", "icon": null, - "renderPriority": 2 + "zIndex": 2 }, { "id": "(KS -- MO)[0]", @@ -4248,7 +4248,7 @@ "animated": false, "tooltip": "", "icon": null, - "renderPriority": 2 + "zIndex": 2 }, { "id": "(MO -- NE)[1]", @@ -4295,7 +4295,7 @@ "animated": false, "tooltip": "", "icon": null, - "renderPriority": 2 + "zIndex": 2 }, { "id": "(NE -- OK)[0]", @@ -4350,7 +4350,7 @@ "animated": false, "tooltip": "", "icon": null, - "renderPriority": 2 + "zIndex": 2 }, { "id": "(KY -- MO)[1]", @@ -4397,7 +4397,7 @@ "animated": false, "tooltip": "", "icon": null, - "renderPriority": 2 + "zIndex": 2 }, { "id": "(MO -- OH)[0]", @@ -4444,7 +4444,7 @@ "animated": false, "tooltip": "", "icon": null, - "renderPriority": 2 + "zIndex": 2 }, { "id": "(OH -- TN)[0]", @@ -4491,7 +4491,7 @@ "animated": false, "tooltip": "", "icon": null, - "renderPriority": 2 + "zIndex": 2 }, { "id": "(TN -- VA)[0]", @@ -4538,7 +4538,7 @@ "animated": false, "tooltip": "", "icon": null, - "renderPriority": 2 + "zIndex": 2 }, { "id": "(VA -- WV)[0]", @@ -4585,7 +4585,7 @@ "animated": false, "tooltip": "", "icon": null, - "renderPriority": 2 + "zIndex": 2 }, { "id": "(LA -- MS)[1]", @@ -4632,7 +4632,7 @@ "animated": false, "tooltip": "", "icon": null, - "renderPriority": 2 + "zIndex": 2 }, { "id": "(MS -- TX)[0]", @@ -4687,7 +4687,7 @@ "animated": false, "tooltip": "", "icon": null, - "renderPriority": 2 + "zIndex": 2 }, { "id": "(ME -- NH)[0]", @@ -4726,7 +4726,7 @@ "animated": false, "tooltip": "", "icon": null, - "renderPriority": 2 + "zIndex": 2 }, { "id": "(MD -- PA)[0]", @@ -4781,7 +4781,7 @@ "animated": false, "tooltip": "", "icon": null, - "renderPriority": 2 + "zIndex": 2 }, { "id": "(PA -- VA)[0]", @@ -4828,7 +4828,7 @@ "animated": false, "tooltip": "", "icon": null, - "renderPriority": 2 + "zIndex": 2 }, { "id": "(VA -- WV)[1]", @@ -4867,7 +4867,7 @@ "animated": false, "tooltip": "", "icon": null, - "renderPriority": 2 + "zIndex": 2 }, { "id": "(MA -- NH)[0]", @@ -4914,7 +4914,7 @@ "animated": false, "tooltip": "", "icon": null, - "renderPriority": 2 + "zIndex": 2 }, { "id": "(NH -- NY)[0]", @@ -4961,7 +4961,7 @@ "animated": false, "tooltip": "", "icon": null, - "renderPriority": 2 + "zIndex": 2 }, { "id": "(NY -- RI)[1]", @@ -5008,7 +5008,7 @@ "animated": false, "tooltip": "", "icon": null, - "renderPriority": 2 + "zIndex": 2 }, { "id": "(RI -- VT)[0]", @@ -5055,7 +5055,7 @@ "animated": false, "tooltip": "", "icon": null, - "renderPriority": 2 + "zIndex": 2 }, { "id": "(MI -- MN)[0]", @@ -5094,7 +5094,7 @@ "animated": false, "tooltip": "", "icon": null, - "renderPriority": 2 + "zIndex": 2 }, { "id": "(MN -- OH)[0]", @@ -5141,7 +5141,7 @@ "animated": false, "tooltip": "", "icon": null, - "renderPriority": 2 + "zIndex": 2 }, { "id": "(OH -- WI)[0]", @@ -5196,7 +5196,7 @@ "animated": false, "tooltip": "", "icon": null, - "renderPriority": 2 + "zIndex": 2 }, { "id": "(MN -- ND)[0]", @@ -5251,7 +5251,7 @@ "animated": false, "tooltip": "", "icon": null, - "renderPriority": 2 + "zIndex": 2 }, { "id": "(ND -- SD)[0]", @@ -5298,7 +5298,7 @@ "animated": false, "tooltip": "", "icon": null, - "renderPriority": 2 + "zIndex": 2 }, { "id": "(SD -- WI)[1]", @@ -5345,7 +5345,7 @@ "animated": false, "tooltip": "", "icon": null, - "renderPriority": 2 + "zIndex": 2 }, { "id": "(MS -- TN)[1]", @@ -5400,7 +5400,7 @@ "animated": false, "tooltip": "", "icon": null, - "renderPriority": 2 + "zIndex": 2 }, { "id": "(MO -- NE)[2]", @@ -5447,7 +5447,7 @@ "animated": false, "tooltip": "", "icon": null, - "renderPriority": 2 + "zIndex": 2 }, { "id": "(NE -- OK)[1]", @@ -5502,7 +5502,7 @@ "animated": false, "tooltip": "", "icon": null, - "renderPriority": 2 + "zIndex": 2 }, { "id": "(OK -- TN)[1]", @@ -5549,7 +5549,7 @@ "animated": false, "tooltip": "", "icon": null, - "renderPriority": 2 + "zIndex": 2 }, { "id": "(MT -- ND)[0]", @@ -5588,7 +5588,7 @@ "animated": false, "tooltip": "", "icon": null, - "renderPriority": 2 + "zIndex": 2 }, { "id": "(ND -- SD)[1]", @@ -5627,7 +5627,7 @@ "animated": false, "tooltip": "", "icon": null, - "renderPriority": 2 + "zIndex": 2 }, { "id": "(SD -- WY)[0]", @@ -5682,7 +5682,7 @@ "animated": false, "tooltip": "", "icon": null, - "renderPriority": 2 + "zIndex": 2 }, { "id": "(NE -- SD)[1]", @@ -5729,7 +5729,7 @@ "animated": false, "tooltip": "", "icon": null, - "renderPriority": 2 + "zIndex": 2 }, { "id": "(SD -- WY)[1]", @@ -5784,7 +5784,7 @@ "animated": false, "tooltip": "", "icon": null, - "renderPriority": 2 + "zIndex": 2 }, { "id": "(NV -- OR)[2]", @@ -5831,7 +5831,7 @@ "animated": false, "tooltip": "", "icon": null, - "renderPriority": 2 + "zIndex": 2 }, { "id": "(OR -- UT)[1]", @@ -5870,7 +5870,7 @@ "animated": false, "tooltip": "", "icon": null, - "renderPriority": 2 + "zIndex": 2 }, { "id": "(NH -- VT)[0]", @@ -5917,7 +5917,7 @@ "animated": false, "tooltip": "", "icon": null, - "renderPriority": 2 + "zIndex": 2 }, { "id": "(NJ -- NY)[0]", @@ -5964,7 +5964,7 @@ "animated": false, "tooltip": "", "icon": null, - "renderPriority": 2 + "zIndex": 2 }, { "id": "(NY -- PA)[0]", @@ -6011,7 +6011,7 @@ "animated": false, "tooltip": "", "icon": null, - "renderPriority": 2 + "zIndex": 2 }, { "id": "(NM -- OK)[1]", @@ -6058,7 +6058,7 @@ "animated": false, "tooltip": "", "icon": null, - "renderPriority": 2 + "zIndex": 2 }, { "id": "(OK -- TX)[0]", @@ -6105,7 +6105,7 @@ "animated": false, "tooltip": "", "icon": null, - "renderPriority": 2 + "zIndex": 2 }, { "id": "(NY -- PA)[1]", @@ -6152,7 +6152,7 @@ "animated": false, "tooltip": "", "icon": null, - "renderPriority": 2 + "zIndex": 2 }, { "id": "(PA -- RI)[0]", @@ -6199,7 +6199,7 @@ "animated": false, "tooltip": "", "icon": null, - "renderPriority": 2 + "zIndex": 2 }, { "id": "(RI -- VT)[1]", @@ -6246,7 +6246,7 @@ "animated": false, "tooltip": "", "icon": null, - "renderPriority": 2 + "zIndex": 2 }, { "id": "(NC -- SC)[1]", @@ -6293,7 +6293,7 @@ "animated": false, "tooltip": "", "icon": null, - "renderPriority": 2 + "zIndex": 2 }, { "id": "(SC -- TN)[1]", @@ -6340,7 +6340,7 @@ "animated": false, "tooltip": "", "icon": null, - "renderPriority": 2 + "zIndex": 2 }, { "id": "(TN -- VA)[1]", @@ -6379,7 +6379,7 @@ "animated": false, "tooltip": "", "icon": null, - "renderPriority": 2 + "zIndex": 2 }, { "id": "(ND -- SD)[2]", @@ -6426,7 +6426,7 @@ "animated": false, "tooltip": "", "icon": null, - "renderPriority": 2 + "zIndex": 2 }, { "id": "(OH -- PA)[0]", @@ -6473,7 +6473,7 @@ "animated": false, "tooltip": "", "icon": null, - "renderPriority": 2 + "zIndex": 2 }, { "id": "(PA -- WV)[0]", @@ -6520,7 +6520,7 @@ "animated": false, "tooltip": "", "icon": null, - "renderPriority": 2 + "zIndex": 2 }, { "id": "(OK -- TX)[1]", @@ -6567,7 +6567,7 @@ "animated": false, "tooltip": "", "icon": null, - "renderPriority": 2 + "zIndex": 2 }, { "id": "(OR -- WA)[0]", @@ -6614,7 +6614,7 @@ "animated": false, "tooltip": "", "icon": null, - "renderPriority": 2 + "zIndex": 2 }, { "id": "(PA -- WV)[1]", @@ -6669,7 +6669,7 @@ "animated": false, "tooltip": "", "icon": null, - "renderPriority": 2 + "zIndex": 2 }, { "id": "(SD -- WY)[2]", @@ -6716,7 +6716,7 @@ "animated": false, "tooltip": "", "icon": null, - "renderPriority": 2 + "zIndex": 2 }, { "id": "(TN -- VA)[2]", @@ -6763,7 +6763,7 @@ "animated": false, "tooltip": "", "icon": null, - "renderPriority": 2 + "zIndex": 2 }, { "id": "(UT -- WY)[1]", @@ -6810,7 +6810,7 @@ "animated": false, "tooltip": "", "icon": null, - "renderPriority": 2 + "zIndex": 2 }, { "id": "(VA -- WV)[2]", @@ -6857,7 +6857,7 @@ "animated": false, "tooltip": "", "icon": null, - "renderPriority": 2 + "zIndex": 2 } ] } 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 57d723e04..2b91f71c9 100644 --- a/e2etests/testdata/todo/container_child_edge/dagre/board.exp.json +++ b/e2etests/testdata/todo/container_child_edge/dagre/board.exp.json @@ -37,7 +37,7 @@ "labelWidth": 117, "labelHeight": 41, "labelPosition": "INSIDE_TOP_CENTER", - "renderPriority": 1 + "zIndex": 1 }, { "id": "container.first", @@ -75,7 +75,7 @@ "labelWidth": 35, "labelHeight": 26, "labelPosition": "INSIDE_MIDDLE_CENTER", - "renderPriority": 2 + "zIndex": 2 }, { "id": "container.second", @@ -113,7 +113,7 @@ "labelWidth": 55, "labelHeight": 26, "labelPosition": "INSIDE_MIDDLE_CENTER", - "renderPriority": 2 + "zIndex": 2 } ], "connections": [ @@ -163,7 +163,7 @@ "animated": false, "tooltip": "", "icon": null, - "renderPriority": 3 + "zIndex": 3 }, { "id": "(container -> container.second)[0]", @@ -211,7 +211,7 @@ "animated": false, "tooltip": "", "icon": null, - "renderPriority": 3 + "zIndex": 3 } ] } 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 76499a1f5..be1f60856 100644 --- a/e2etests/testdata/todo/container_child_edge/elk/board.exp.json +++ b/e2etests/testdata/todo/container_child_edge/elk/board.exp.json @@ -37,7 +37,7 @@ "labelWidth": 117, "labelHeight": 41, "labelPosition": "INSIDE_TOP_CENTER", - "renderPriority": 1 + "zIndex": 1 }, { "id": "container.first", @@ -75,7 +75,7 @@ "labelWidth": 35, "labelHeight": 26, "labelPosition": "INSIDE_MIDDLE_CENTER", - "renderPriority": 2 + "zIndex": 2 }, { "id": "container.second", @@ -113,7 +113,7 @@ "labelWidth": 55, "labelHeight": 26, "labelPosition": "INSIDE_MIDDLE_CENTER", - "renderPriority": 2 + "zIndex": 2 } ], "connections": [ @@ -154,7 +154,7 @@ "animated": false, "tooltip": "", "icon": null, - "renderPriority": 3 + "zIndex": 3 }, { "id": "(container -> container.second)[0]", @@ -201,7 +201,7 @@ "animated": false, "tooltip": "", "icon": null, - "renderPriority": 3 + "zIndex": 3 } ] } diff --git a/testdata/d2compiler/TestCompile/basic_icon.exp.json b/testdata/d2compiler/TestCompile/basic_icon.exp.json index 7c4c944bc..25b5f7093 100644 --- a/testdata/d2compiler/TestCompile/basic_icon.exp.json +++ b/testdata/d2compiler/TestCompile/basic_icon.exp.json @@ -91,8 +91,7 @@ "direction": { "value": "" } - }, - "renderPriority": null + } }, "edges": null, "objects": [ @@ -149,8 +148,7 @@ "direction": { "value": "" } - }, - "renderPriority": null + } } ] }, diff --git a/testdata/d2compiler/TestCompile/basic_sequence.exp.json b/testdata/d2compiler/TestCompile/basic_sequence.exp.json index 7baa4d61e..072abeff2 100644 --- a/testdata/d2compiler/TestCompile/basic_sequence.exp.json +++ b/testdata/d2compiler/TestCompile/basic_sequence.exp.json @@ -86,8 +86,7 @@ "direction": { "value": "" } - }, - "renderPriority": null + } }, "edges": null, "objects": [ @@ -132,8 +131,7 @@ "direction": { "value": "" } - }, - "renderPriority": null + } } ] }, diff --git a/testdata/d2compiler/TestCompile/basic_shape.exp.json b/testdata/d2compiler/TestCompile/basic_shape.exp.json index 0f0be1707..55a75ce1c 100644 --- a/testdata/d2compiler/TestCompile/basic_shape.exp.json +++ b/testdata/d2compiler/TestCompile/basic_shape.exp.json @@ -86,8 +86,7 @@ "direction": { "value": "" } - }, - "renderPriority": null + } }, "edges": null, "objects": [ @@ -132,8 +131,7 @@ "direction": { "value": "" } - }, - "renderPriority": null + } } ] }, diff --git a/testdata/d2compiler/TestCompile/basic_style.exp.json b/testdata/d2compiler/TestCompile/basic_style.exp.json index 4fbb48ecd..1e2df17f0 100644 --- a/testdata/d2compiler/TestCompile/basic_style.exp.json +++ b/testdata/d2compiler/TestCompile/basic_style.exp.json @@ -93,8 +93,7 @@ "direction": { "value": "" } - }, - "renderPriority": null + } }, "edges": [], "objects": [ @@ -143,8 +142,7 @@ "direction": { "value": "" } - }, - "renderPriority": null + } } ] }, diff --git a/testdata/d2compiler/TestCompile/class_paren.exp.json b/testdata/d2compiler/TestCompile/class_paren.exp.json index b173f1700..c86f7f020 100644 --- a/testdata/d2compiler/TestCompile/class_paren.exp.json +++ b/testdata/d2compiler/TestCompile/class_paren.exp.json @@ -185,8 +185,7 @@ "direction": { "value": "" } - }, - "renderPriority": null + } }, "edges": [], "objects": [ @@ -252,8 +251,7 @@ "direction": { "value": "" } - }, - "renderPriority": null + } } ] }, diff --git a/testdata/d2compiler/TestCompile/class_style.exp.json b/testdata/d2compiler/TestCompile/class_style.exp.json index 3f722271d..0b411d650 100644 --- a/testdata/d2compiler/TestCompile/class_style.exp.json +++ b/testdata/d2compiler/TestCompile/class_style.exp.json @@ -159,8 +159,7 @@ "direction": { "value": "" } - }, - "renderPriority": null + } }, "edges": [], "objects": [ @@ -219,8 +218,7 @@ "direction": { "value": "" } - }, - "renderPriority": null + } } ] }, diff --git a/testdata/d2compiler/TestCompile/edge.exp.json b/testdata/d2compiler/TestCompile/edge.exp.json index 2dcea2883..09e4428ef 100644 --- a/testdata/d2compiler/TestCompile/edge.exp.json +++ b/testdata/d2compiler/TestCompile/edge.exp.json @@ -70,8 +70,7 @@ "direction": { "value": "" } - }, - "renderPriority": null + } }, "edges": [ { @@ -147,8 +146,7 @@ "direction": { "value": "" } - }, - "renderPriority": null + } }, { "id": "y", @@ -191,8 +189,7 @@ "direction": { "value": "" } - }, - "renderPriority": null + } } ] }, diff --git a/testdata/d2compiler/TestCompile/edge_arrowhead_fields.exp.json b/testdata/d2compiler/TestCompile/edge_arrowhead_fields.exp.json index 8fdadb831..bf32e2e02 100644 --- a/testdata/d2compiler/TestCompile/edge_arrowhead_fields.exp.json +++ b/testdata/d2compiler/TestCompile/edge_arrowhead_fields.exp.json @@ -249,8 +249,7 @@ "direction": { "value": "" } - }, - "renderPriority": null + } }, "edges": [ { @@ -356,8 +355,7 @@ "direction": { "value": "" } - }, - "renderPriority": null + } }, { "id": "y", @@ -400,8 +398,7 @@ "direction": { "value": "" } - }, - "renderPriority": null + } } ] }, diff --git a/testdata/d2compiler/TestCompile/edge_chain.exp.json b/testdata/d2compiler/TestCompile/edge_chain.exp.json index 9462e68a6..4aa8282e0 100644 --- a/testdata/d2compiler/TestCompile/edge_chain.exp.json +++ b/testdata/d2compiler/TestCompile/edge_chain.exp.json @@ -117,8 +117,7 @@ "direction": { "value": "" } - }, - "renderPriority": null + } }, "edges": [ { @@ -224,8 +223,7 @@ "direction": { "value": "" } - }, - "renderPriority": null + } }, { "id": "y", @@ -288,8 +286,7 @@ "direction": { "value": "" } - }, - "renderPriority": null + } }, { "id": "z", @@ -332,8 +329,7 @@ "direction": { "value": "" } - }, - "renderPriority": null + } } ] }, diff --git a/testdata/d2compiler/TestCompile/edge_chain_map.exp.json b/testdata/d2compiler/TestCompile/edge_chain_map.exp.json index 234bb27b2..6c49a5af8 100644 --- a/testdata/d2compiler/TestCompile/edge_chain_map.exp.json +++ b/testdata/d2compiler/TestCompile/edge_chain_map.exp.json @@ -146,8 +146,7 @@ "direction": { "value": "" } - }, - "renderPriority": null + } }, "edges": [ { @@ -253,8 +252,7 @@ "direction": { "value": "" } - }, - "renderPriority": null + } }, { "id": "y", @@ -317,8 +315,7 @@ "direction": { "value": "" } - }, - "renderPriority": null + } }, { "id": "z", @@ -361,8 +358,7 @@ "direction": { "value": "" } - }, - "renderPriority": null + } } ] }, diff --git a/testdata/d2compiler/TestCompile/edge_column_index.exp.json b/testdata/d2compiler/TestCompile/edge_column_index.exp.json index 307bbf42a..c3cf797ee 100644 --- a/testdata/d2compiler/TestCompile/edge_column_index.exp.json +++ b/testdata/d2compiler/TestCompile/edge_column_index.exp.json @@ -348,8 +348,7 @@ "direction": { "value": "" } - }, - "renderPriority": null + } }, "edges": [ { @@ -474,8 +473,7 @@ "direction": { "value": "" } - }, - "renderPriority": null + } }, { "id": "dst", @@ -565,8 +563,7 @@ "direction": { "value": "" } - }, - "renderPriority": null + } } ] }, diff --git a/testdata/d2compiler/TestCompile/edge_exclusive_style.exp.json b/testdata/d2compiler/TestCompile/edge_exclusive_style.exp.json index 2ef0fe280..b6b3c1a0d 100644 --- a/testdata/d2compiler/TestCompile/edge_exclusive_style.exp.json +++ b/testdata/d2compiler/TestCompile/edge_exclusive_style.exp.json @@ -115,8 +115,7 @@ "direction": { "value": "" } - }, - "renderPriority": null + } }, "edges": [ { @@ -196,8 +195,7 @@ "direction": { "value": "" } - }, - "renderPriority": null + } }, { "id": "y", @@ -240,8 +238,7 @@ "direction": { "value": "" } - }, - "renderPriority": null + } } ] }, diff --git a/testdata/d2compiler/TestCompile/edge_flat_arrowhead.exp.json b/testdata/d2compiler/TestCompile/edge_flat_arrowhead.exp.json index 1ef459b9d..d0220923f 100644 --- a/testdata/d2compiler/TestCompile/edge_flat_arrowhead.exp.json +++ b/testdata/d2compiler/TestCompile/edge_flat_arrowhead.exp.json @@ -158,8 +158,7 @@ "direction": { "value": "" } - }, - "renderPriority": null + } }, "edges": [ { @@ -271,8 +270,7 @@ "direction": { "value": "" } - }, - "renderPriority": null + } }, { "id": "y", @@ -335,8 +333,7 @@ "direction": { "value": "" } - }, - "renderPriority": null + } } ] }, diff --git a/testdata/d2compiler/TestCompile/edge_flat_label_arrowhead.exp.json b/testdata/d2compiler/TestCompile/edge_flat_label_arrowhead.exp.json index 5b8dcfc16..4b56270c3 100644 --- a/testdata/d2compiler/TestCompile/edge_flat_label_arrowhead.exp.json +++ b/testdata/d2compiler/TestCompile/edge_flat_label_arrowhead.exp.json @@ -126,8 +126,7 @@ "direction": { "value": "" } - }, - "renderPriority": null + } }, "edges": [ { @@ -216,8 +215,7 @@ "direction": { "value": "" } - }, - "renderPriority": null + } }, { "id": "y", @@ -260,8 +258,7 @@ "direction": { "value": "" } - }, - "renderPriority": null + } } ] }, diff --git a/testdata/d2compiler/TestCompile/edge_in_column.exp.json b/testdata/d2compiler/TestCompile/edge_in_column.exp.json index 11e7303ff..05c4e1e69 100644 --- a/testdata/d2compiler/TestCompile/edge_in_column.exp.json +++ b/testdata/d2compiler/TestCompile/edge_in_column.exp.json @@ -161,8 +161,7 @@ "direction": { "value": "" } - }, - "renderPriority": null + } }, "edges": [], "objects": [ @@ -217,8 +216,7 @@ "direction": { "value": "" } - }, - "renderPriority": null + } } ] }, diff --git a/testdata/d2compiler/TestCompile/edge_index.exp.json b/testdata/d2compiler/TestCompile/edge_index.exp.json index 298a710de..1dab7db6a 100644 --- a/testdata/d2compiler/TestCompile/edge_index.exp.json +++ b/testdata/d2compiler/TestCompile/edge_index.exp.json @@ -141,8 +141,7 @@ "direction": { "value": "" } - }, - "renderPriority": null + } }, "edges": [ { @@ -241,8 +240,7 @@ "direction": { "value": "" } - }, - "renderPriority": null + } }, { "id": "y", @@ -305,8 +303,7 @@ "direction": { "value": "" } - }, - "renderPriority": null + } } ] }, diff --git a/testdata/d2compiler/TestCompile/edge_index_map.exp.json b/testdata/d2compiler/TestCompile/edge_index_map.exp.json index f98889700..1e1a5ff30 100644 --- a/testdata/d2compiler/TestCompile/edge_index_map.exp.json +++ b/testdata/d2compiler/TestCompile/edge_index_map.exp.json @@ -160,8 +160,7 @@ "direction": { "value": "" } - }, - "renderPriority": null + } }, "edges": [ { @@ -260,8 +259,7 @@ "direction": { "value": "" } - }, - "renderPriority": null + } }, { "id": "y", @@ -324,8 +322,7 @@ "direction": { "value": "" } - }, - "renderPriority": null + } } ] }, diff --git a/testdata/d2compiler/TestCompile/edge_index_nested.exp.json b/testdata/d2compiler/TestCompile/edge_index_nested.exp.json index 13e1a0b9c..9f77b4f31 100644 --- a/testdata/d2compiler/TestCompile/edge_index_nested.exp.json +++ b/testdata/d2compiler/TestCompile/edge_index_nested.exp.json @@ -170,8 +170,7 @@ "direction": { "value": "" } - }, - "renderPriority": null + } }, "edges": [ { @@ -250,8 +249,7 @@ "direction": { "value": "" } - }, - "renderPriority": null + } }, { "id": "x", @@ -314,8 +312,7 @@ "direction": { "value": "" } - }, - "renderPriority": null + } }, { "id": "y", @@ -378,8 +375,7 @@ "direction": { "value": "" } - }, - "renderPriority": null + } } ] }, 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 6f6d027e9..2be418922 100644 --- a/testdata/d2compiler/TestCompile/edge_index_nested_cross_scope.exp.json +++ b/testdata/d2compiler/TestCompile/edge_index_nested_cross_scope.exp.json @@ -186,8 +186,7 @@ "direction": { "value": "" } - }, - "renderPriority": null + } }, "edges": [ { @@ -286,8 +285,7 @@ "direction": { "value": "" } - }, - "renderPriority": null + } }, { "id": "x", @@ -350,8 +348,7 @@ "direction": { "value": "" } - }, - "renderPriority": null + } }, { "id": "y", @@ -414,8 +411,7 @@ "direction": { "value": "" } - }, - "renderPriority": null + } } ] }, 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 d086a4ec2..3ace9b870 100644 --- a/testdata/d2compiler/TestCompile/edge_key_group_flat_nested.exp.json +++ b/testdata/d2compiler/TestCompile/edge_key_group_flat_nested.exp.json @@ -199,8 +199,7 @@ "direction": { "value": "" } - }, - "renderPriority": null + } }, "edges": [ { @@ -303,8 +302,7 @@ "direction": { "value": "" } - }, - "renderPriority": null + } }, { "id": "a", @@ -367,8 +365,7 @@ "direction": { "value": "" } - }, - "renderPriority": null + } }, { "id": "b", @@ -431,8 +428,7 @@ "direction": { "value": "" } - }, - "renderPriority": null + } } ] }, 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 d53713bb3..34560630d 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,8 +205,7 @@ "direction": { "value": "" } - }, - "renderPriority": null + } }, "edges": [ { @@ -289,8 +288,7 @@ "direction": { "value": "" } - }, - "renderPriority": null + } }, { "id": "a", @@ -364,8 +362,7 @@ "direction": { "value": "" } - }, - "renderPriority": null + } }, { "id": "b", @@ -439,8 +436,7 @@ "direction": { "value": "" } - }, - "renderPriority": null + } } ] }, 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 92f716025..d1be6a904 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,8 +218,7 @@ "direction": { "value": "" } - }, - "renderPriority": null + } }, "edges": [ { @@ -302,8 +301,7 @@ "direction": { "value": "" } - }, - "renderPriority": null + } }, { "id": "a", @@ -377,8 +375,7 @@ "direction": { "value": "" } - }, - "renderPriority": null + } }, { "id": "b", @@ -452,8 +449,7 @@ "direction": { "value": "" } - }, - "renderPriority": null + } } ] }, 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 40da04b16..8373caa0b 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,8 +236,7 @@ "direction": { "value": "" } - }, - "renderPriority": null + } }, "edges": [ { @@ -320,8 +319,7 @@ "direction": { "value": "" } - }, - "renderPriority": null + } }, { "id": "a", @@ -395,8 +393,7 @@ "direction": { "value": "" } - }, - "renderPriority": null + } }, { "id": "b", @@ -470,8 +467,7 @@ "direction": { "value": "" } - }, - "renderPriority": null + } } ] }, diff --git a/testdata/d2compiler/TestCompile/edge_label_map.exp.json b/testdata/d2compiler/TestCompile/edge_label_map.exp.json index 0ae1360ba..e728aeb38 100644 --- a/testdata/d2compiler/TestCompile/edge_label_map.exp.json +++ b/testdata/d2compiler/TestCompile/edge_label_map.exp.json @@ -126,8 +126,7 @@ "direction": { "value": "" } - }, - "renderPriority": null + } }, "edges": [ { @@ -207,8 +206,7 @@ "direction": { "value": "" } - }, - "renderPriority": null + } }, { "id": "qwer", @@ -251,8 +249,7 @@ "direction": { "value": "" } - }, - "renderPriority": null + } } ] }, diff --git a/testdata/d2compiler/TestCompile/edge_map.exp.json b/testdata/d2compiler/TestCompile/edge_map.exp.json index 466ad9742..c314961d7 100644 --- a/testdata/d2compiler/TestCompile/edge_map.exp.json +++ b/testdata/d2compiler/TestCompile/edge_map.exp.json @@ -109,8 +109,7 @@ "direction": { "value": "" } - }, - "renderPriority": null + } }, "edges": [ { @@ -186,8 +185,7 @@ "direction": { "value": "" } - }, - "renderPriority": null + } }, { "id": "y", @@ -230,8 +228,7 @@ "direction": { "value": "" } - }, - "renderPriority": null + } } ] }, diff --git a/testdata/d2compiler/TestCompile/edge_map_arrowhead.exp.json b/testdata/d2compiler/TestCompile/edge_map_arrowhead.exp.json index f2a3b1b67..961ff5094 100644 --- a/testdata/d2compiler/TestCompile/edge_map_arrowhead.exp.json +++ b/testdata/d2compiler/TestCompile/edge_map_arrowhead.exp.json @@ -138,8 +138,7 @@ "direction": { "value": "" } - }, - "renderPriority": null + } }, "edges": [ { @@ -228,8 +227,7 @@ "direction": { "value": "" } - }, - "renderPriority": null + } }, { "id": "y", @@ -272,8 +270,7 @@ "direction": { "value": "" } - }, - "renderPriority": null + } } ] }, diff --git a/testdata/d2compiler/TestCompile/edge_map_group_flat.exp.json b/testdata/d2compiler/TestCompile/edge_map_group_flat.exp.json index acf1b4c10..25c0db906 100644 --- a/testdata/d2compiler/TestCompile/edge_map_group_flat.exp.json +++ b/testdata/d2compiler/TestCompile/edge_map_group_flat.exp.json @@ -154,8 +154,7 @@ "direction": { "value": "" } - }, - "renderPriority": null + } }, "edges": [ { @@ -258,8 +257,7 @@ "direction": { "value": "" } - }, - "renderPriority": null + } }, { "id": "y", @@ -322,8 +320,7 @@ "direction": { "value": "" } - }, - "renderPriority": null + } } ] }, diff --git a/testdata/d2compiler/TestCompile/edge_map_group_semiflat.exp.json b/testdata/d2compiler/TestCompile/edge_map_group_semiflat.exp.json index bd4b388f4..46422a6fe 100644 --- a/testdata/d2compiler/TestCompile/edge_map_group_semiflat.exp.json +++ b/testdata/d2compiler/TestCompile/edge_map_group_semiflat.exp.json @@ -172,8 +172,7 @@ "direction": { "value": "" } - }, - "renderPriority": null + } }, "edges": [ { @@ -276,8 +275,7 @@ "direction": { "value": "" } - }, - "renderPriority": null + } }, { "id": "y", @@ -340,8 +338,7 @@ "direction": { "value": "" } - }, - "renderPriority": null + } } ] }, diff --git a/testdata/d2compiler/TestCompile/edge_map_nested.exp.json b/testdata/d2compiler/TestCompile/edge_map_nested.exp.json index 770fbb54b..2097718a6 100644 --- a/testdata/d2compiler/TestCompile/edge_map_nested.exp.json +++ b/testdata/d2compiler/TestCompile/edge_map_nested.exp.json @@ -134,8 +134,7 @@ "direction": { "value": "" } - }, - "renderPriority": null + } }, "edges": [ { @@ -215,8 +214,7 @@ "direction": { "value": "" } - }, - "renderPriority": null + } }, { "id": "y", @@ -259,8 +257,7 @@ "direction": { "value": "" } - }, - "renderPriority": null + } } ] }, diff --git a/testdata/d2compiler/TestCompile/edge_map_nested_flat.exp.json b/testdata/d2compiler/TestCompile/edge_map_nested_flat.exp.json index adc3e1726..017d5dfc8 100644 --- a/testdata/d2compiler/TestCompile/edge_map_nested_flat.exp.json +++ b/testdata/d2compiler/TestCompile/edge_map_nested_flat.exp.json @@ -116,8 +116,7 @@ "direction": { "value": "" } - }, - "renderPriority": null + } }, "edges": [ { @@ -197,8 +196,7 @@ "direction": { "value": "" } - }, - "renderPriority": null + } }, { "id": "y", @@ -241,8 +239,7 @@ "direction": { "value": "" } - }, - "renderPriority": null + } } ] }, diff --git a/testdata/d2compiler/TestCompile/edge_mixed_arrowhead.exp.json b/testdata/d2compiler/TestCompile/edge_mixed_arrowhead.exp.json index 0f5ce7b39..9a50c75ff 100644 --- a/testdata/d2compiler/TestCompile/edge_mixed_arrowhead.exp.json +++ b/testdata/d2compiler/TestCompile/edge_mixed_arrowhead.exp.json @@ -226,8 +226,7 @@ "direction": { "value": "" } - }, - "renderPriority": null + } }, "edges": [ { @@ -352,8 +351,7 @@ "direction": { "value": "" } - }, - "renderPriority": null + } }, { "id": "y", @@ -416,8 +414,7 @@ "direction": { "value": "" } - }, - "renderPriority": null + } } ] }, diff --git a/testdata/d2compiler/TestCompile/edge_non_shape_arrowhead.exp.json b/testdata/d2compiler/TestCompile/edge_non_shape_arrowhead.exp.json index 501d0e20d..5142f8595 100644 --- a/testdata/d2compiler/TestCompile/edge_non_shape_arrowhead.exp.json +++ b/testdata/d2compiler/TestCompile/edge_non_shape_arrowhead.exp.json @@ -120,8 +120,7 @@ "direction": { "value": "" } - }, - "renderPriority": null + } }, "edges": [ { @@ -210,8 +209,7 @@ "direction": { "value": "" } - }, - "renderPriority": null + } }, { "id": "y", @@ -254,8 +252,7 @@ "direction": { "value": "" } - }, - "renderPriority": null + } } ] }, diff --git a/testdata/d2compiler/TestCompile/edge_semiflat_arrowhead.exp.json b/testdata/d2compiler/TestCompile/edge_semiflat_arrowhead.exp.json index e6c04e50c..cd8446a1e 100644 --- a/testdata/d2compiler/TestCompile/edge_semiflat_arrowhead.exp.json +++ b/testdata/d2compiler/TestCompile/edge_semiflat_arrowhead.exp.json @@ -176,8 +176,7 @@ "direction": { "value": "" } - }, - "renderPriority": null + } }, "edges": [ { @@ -289,8 +288,7 @@ "direction": { "value": "" } - }, - "renderPriority": null + } }, { "id": "y", @@ -353,8 +351,7 @@ "direction": { "value": "" } - }, - "renderPriority": null + } } ] }, diff --git a/testdata/d2compiler/TestCompile/escaped_id.exp.json b/testdata/d2compiler/TestCompile/escaped_id.exp.json index dfcbc3297..af200618f 100644 --- a/testdata/d2compiler/TestCompile/escaped_id.exp.json +++ b/testdata/d2compiler/TestCompile/escaped_id.exp.json @@ -47,8 +47,7 @@ "direction": { "value": "" } - }, - "renderPriority": null + } }, "edges": null, "objects": [ @@ -93,8 +92,7 @@ "direction": { "value": "" } - }, - "renderPriority": null + } } ] }, diff --git a/testdata/d2compiler/TestCompile/image_style.exp.json b/testdata/d2compiler/TestCompile/image_style.exp.json index 19ef7af05..997030792 100644 --- a/testdata/d2compiler/TestCompile/image_style.exp.json +++ b/testdata/d2compiler/TestCompile/image_style.exp.json @@ -168,8 +168,7 @@ "direction": { "value": "" } - }, - "renderPriority": null + } }, "edges": [], "objects": [ @@ -230,8 +229,7 @@ "direction": { "value": "" } - }, - "renderPriority": null + } } ] }, diff --git a/testdata/d2compiler/TestCompile/nested_sql.exp.json b/testdata/d2compiler/TestCompile/nested_sql.exp.json index bbbc784dd..69e2f421c 100644 --- a/testdata/d2compiler/TestCompile/nested_sql.exp.json +++ b/testdata/d2compiler/TestCompile/nested_sql.exp.json @@ -181,8 +181,7 @@ "direction": { "value": "" } - }, - "renderPriority": null + } }, "edges": [], "objects": [ @@ -227,8 +226,7 @@ "direction": { "value": "" } - }, - "renderPriority": null + } }, { "id": "table", @@ -287,8 +285,7 @@ "direction": { "value": "" } - }, - "renderPriority": null + } } ] }, diff --git a/testdata/d2compiler/TestCompile/path_link.exp.json b/testdata/d2compiler/TestCompile/path_link.exp.json index b81b11e4f..300cfe06f 100644 --- a/testdata/d2compiler/TestCompile/path_link.exp.json +++ b/testdata/d2compiler/TestCompile/path_link.exp.json @@ -86,8 +86,7 @@ "direction": { "value": "" } - }, - "renderPriority": null + } }, "edges": null, "objects": [ @@ -133,8 +132,7 @@ "direction": { "value": "" } - }, - "renderPriority": null + } } ] }, diff --git a/testdata/d2compiler/TestCompile/reserved_icon_near_style.exp.json b/testdata/d2compiler/TestCompile/reserved_icon_near_style.exp.json index 97e668c4f..69651a4a9 100644 --- a/testdata/d2compiler/TestCompile/reserved_icon_near_style.exp.json +++ b/testdata/d2compiler/TestCompile/reserved_icon_near_style.exp.json @@ -281,8 +281,7 @@ "direction": { "value": "" } - }, - "renderPriority": null + } }, "edges": [], "objects": [ @@ -395,8 +394,7 @@ "direction": { "value": "" } - }, - "renderPriority": null + } }, { "id": "y", @@ -439,8 +437,7 @@ "direction": { "value": "" } - }, - "renderPriority": null + } } ] }, diff --git a/testdata/d2compiler/TestCompile/root_sequence.exp.json b/testdata/d2compiler/TestCompile/root_sequence.exp.json index 0e5e10565..7ee72472d 100644 --- a/testdata/d2compiler/TestCompile/root_sequence.exp.json +++ b/testdata/d2compiler/TestCompile/root_sequence.exp.json @@ -57,8 +57,7 @@ "direction": { "value": "" } - }, - "renderPriority": null + } }, "edges": null, "objects": null diff --git a/testdata/d2compiler/TestCompile/sql_paren.exp.json b/testdata/d2compiler/TestCompile/sql_paren.exp.json index c19f71a7a..13eff1ae6 100644 --- a/testdata/d2compiler/TestCompile/sql_paren.exp.json +++ b/testdata/d2compiler/TestCompile/sql_paren.exp.json @@ -162,8 +162,7 @@ "direction": { "value": "" } - }, - "renderPriority": null + } }, "edges": [], "objects": [ @@ -224,8 +223,7 @@ "direction": { "value": "" } - }, - "renderPriority": null + } } ] }, diff --git a/testdata/d2compiler/TestCompile/stroke-width.exp.json b/testdata/d2compiler/TestCompile/stroke-width.exp.json index cda5fddaa..b947b14a2 100644 --- a/testdata/d2compiler/TestCompile/stroke-width.exp.json +++ b/testdata/d2compiler/TestCompile/stroke-width.exp.json @@ -93,8 +93,7 @@ "direction": { "value": "" } - }, - "renderPriority": null + } }, "edges": [], "objects": [ @@ -143,8 +142,7 @@ "direction": { "value": "" } - }, - "renderPriority": null + } } ] }, diff --git a/testdata/d2compiler/TestCompile/table_style.exp.json b/testdata/d2compiler/TestCompile/table_style.exp.json index 58b9dddbf..f44f416b4 100644 --- a/testdata/d2compiler/TestCompile/table_style.exp.json +++ b/testdata/d2compiler/TestCompile/table_style.exp.json @@ -159,8 +159,7 @@ "direction": { "value": "" } - }, - "renderPriority": null + } }, "edges": [], "objects": [ @@ -219,8 +218,7 @@ "direction": { "value": "" } - }, - "renderPriority": null + } } ] }, diff --git a/testdata/d2compiler/TestCompile/table_style_map.exp.json b/testdata/d2compiler/TestCompile/table_style_map.exp.json index 866f01926..4b150db68 100644 --- a/testdata/d2compiler/TestCompile/table_style_map.exp.json +++ b/testdata/d2compiler/TestCompile/table_style_map.exp.json @@ -210,8 +210,7 @@ "direction": { "value": "" } - }, - "renderPriority": null + } }, "edges": [], "objects": [ @@ -270,8 +269,7 @@ "direction": { "value": "" } - }, - "renderPriority": null + } } ] }, diff --git a/testdata/d2compiler/TestCompile/underscore_edge.exp.json b/testdata/d2compiler/TestCompile/underscore_edge.exp.json index fefb12e87..84d29cf9c 100644 --- a/testdata/d2compiler/TestCompile/underscore_edge.exp.json +++ b/testdata/d2compiler/TestCompile/underscore_edge.exp.json @@ -121,8 +121,7 @@ "direction": { "value": "" } - }, - "renderPriority": null + } }, "edges": [ { @@ -229,8 +228,7 @@ "direction": { "value": "" } - }, - "renderPriority": null + } }, { "id": "y", @@ -284,8 +282,7 @@ "direction": { "value": "" } - }, - "renderPriority": null + } } ] }, diff --git a/testdata/d2compiler/TestCompile/underscore_edge_chain.exp.json b/testdata/d2compiler/TestCompile/underscore_edge_chain.exp.json index e5ee50012..c9eb30378 100644 --- a/testdata/d2compiler/TestCompile/underscore_edge_chain.exp.json +++ b/testdata/d2compiler/TestCompile/underscore_edge_chain.exp.json @@ -180,8 +180,7 @@ "direction": { "value": "" } - }, - "renderPriority": null + } }, "edges": [ { @@ -349,8 +348,7 @@ "direction": { "value": "" } - }, - "renderPriority": null + } }, { "id": "y", @@ -404,8 +402,7 @@ "direction": { "value": "" } - }, - "renderPriority": null + } }, { "id": "z", @@ -459,8 +456,7 @@ "direction": { "value": "" } - }, - "renderPriority": null + } } ] }, diff --git a/testdata/d2compiler/TestCompile/underscore_edge_existing.exp.json b/testdata/d2compiler/TestCompile/underscore_edge_existing.exp.json index 5aec2ef74..4a3d687fe 100644 --- a/testdata/d2compiler/TestCompile/underscore_edge_existing.exp.json +++ b/testdata/d2compiler/TestCompile/underscore_edge_existing.exp.json @@ -187,8 +187,7 @@ "direction": { "value": "" } - }, - "renderPriority": null + } }, "edges": [ { @@ -294,8 +293,7 @@ "direction": { "value": "" } - }, - "renderPriority": null + } }, { "id": "a", @@ -369,8 +367,7 @@ "direction": { "value": "" } - }, - "renderPriority": null + } }, { "id": "b", @@ -444,8 +441,7 @@ "direction": { "value": "" } - }, - "renderPriority": null + } } ] }, diff --git a/testdata/d2compiler/TestCompile/underscore_edge_index.exp.json b/testdata/d2compiler/TestCompile/underscore_edge_index.exp.json index eda805cd6..705d516f8 100644 --- a/testdata/d2compiler/TestCompile/underscore_edge_index.exp.json +++ b/testdata/d2compiler/TestCompile/underscore_edge_index.exp.json @@ -192,8 +192,7 @@ "direction": { "value": "" } - }, - "renderPriority": null + } }, "edges": [ { @@ -272,8 +271,7 @@ "direction": { "value": "" } - }, - "renderPriority": null + } }, { "id": "a", @@ -347,8 +345,7 @@ "direction": { "value": "" } - }, - "renderPriority": null + } }, { "id": "b", @@ -422,8 +419,7 @@ "direction": { "value": "" } - }, - "renderPriority": null + } } ] }, diff --git a/testdata/d2compiler/TestCompile/underscore_edge_nested.exp.json b/testdata/d2compiler/TestCompile/underscore_edge_nested.exp.json index decb6d5ea..7d1942adb 100644 --- a/testdata/d2compiler/TestCompile/underscore_edge_nested.exp.json +++ b/testdata/d2compiler/TestCompile/underscore_edge_nested.exp.json @@ -161,8 +161,7 @@ "direction": { "value": "" } - }, - "renderPriority": null + } }, "edges": [ { @@ -238,8 +237,7 @@ "direction": { "value": "" } - }, - "renderPriority": null + } }, { "id": "y", @@ -313,8 +311,7 @@ "direction": { "value": "" } - }, - "renderPriority": null + } }, { "id": "z", @@ -379,8 +376,7 @@ "direction": { "value": "" } - }, - "renderPriority": null + } } ] }, diff --git a/testdata/d2compiler/TestCompile/underscore_parent_create.exp.json b/testdata/d2compiler/TestCompile/underscore_parent_create.exp.json index 7551e9485..830a09082 100644 --- a/testdata/d2compiler/TestCompile/underscore_parent_create.exp.json +++ b/testdata/d2compiler/TestCompile/underscore_parent_create.exp.json @@ -87,8 +87,7 @@ "direction": { "value": "" } - }, - "renderPriority": null + } }, "edges": null, "objects": [ @@ -133,8 +132,7 @@ "direction": { "value": "" } - }, - "renderPriority": null + } }, { "id": "y", @@ -188,8 +186,7 @@ "direction": { "value": "" } - }, - "renderPriority": null + } } ] }, diff --git a/testdata/d2compiler/TestCompile/underscore_parent_not_root.exp.json b/testdata/d2compiler/TestCompile/underscore_parent_not_root.exp.json index 02226e45e..7ca34f0e3 100644 --- a/testdata/d2compiler/TestCompile/underscore_parent_not_root.exp.json +++ b/testdata/d2compiler/TestCompile/underscore_parent_not_root.exp.json @@ -116,8 +116,7 @@ "direction": { "value": "" } - }, - "renderPriority": null + } }, "edges": null, "objects": [ @@ -162,8 +161,7 @@ "direction": { "value": "" } - }, - "renderPriority": null + } }, { "id": "y", @@ -206,8 +204,7 @@ "direction": { "value": "" } - }, - "renderPriority": null + } }, { "id": "z", @@ -261,8 +258,7 @@ "direction": { "value": "" } - }, - "renderPriority": null + } } ] }, diff --git a/testdata/d2compiler/TestCompile/underscore_parent_preference_1.exp.json b/testdata/d2compiler/TestCompile/underscore_parent_preference_1.exp.json index 19dbddc92..69b1b036e 100644 --- a/testdata/d2compiler/TestCompile/underscore_parent_preference_1.exp.json +++ b/testdata/d2compiler/TestCompile/underscore_parent_preference_1.exp.json @@ -130,8 +130,7 @@ "direction": { "value": "" } - }, - "renderPriority": null + } }, "edges": null, "objects": [ @@ -176,8 +175,7 @@ "direction": { "value": "" } - }, - "renderPriority": null + } }, { "id": "y", @@ -251,8 +249,7 @@ "direction": { "value": "" } - }, - "renderPriority": null + } } ] }, diff --git a/testdata/d2compiler/TestCompile/underscore_parent_preference_2.exp.json b/testdata/d2compiler/TestCompile/underscore_parent_preference_2.exp.json index 8aae38057..00824907e 100644 --- a/testdata/d2compiler/TestCompile/underscore_parent_preference_2.exp.json +++ b/testdata/d2compiler/TestCompile/underscore_parent_preference_2.exp.json @@ -130,8 +130,7 @@ "direction": { "value": "" } - }, - "renderPriority": null + } }, "edges": null, "objects": [ @@ -207,8 +206,7 @@ "direction": { "value": "" } - }, - "renderPriority": null + } }, { "id": "x", @@ -251,8 +249,7 @@ "direction": { "value": "" } - }, - "renderPriority": null + } } ] }, diff --git a/testdata/d2compiler/TestCompile/underscore_parent_squared.exp.json b/testdata/d2compiler/TestCompile/underscore_parent_squared.exp.json index d99856cb7..1b9272a22 100644 --- a/testdata/d2compiler/TestCompile/underscore_parent_squared.exp.json +++ b/testdata/d2compiler/TestCompile/underscore_parent_squared.exp.json @@ -127,8 +127,7 @@ "direction": { "value": "" } - }, - "renderPriority": null + } }, "edges": null, "objects": [ @@ -173,8 +172,7 @@ "direction": { "value": "" } - }, - "renderPriority": null + } }, { "id": "y", @@ -217,8 +215,7 @@ "direction": { "value": "" } - }, - "renderPriority": null + } }, { "id": "z", @@ -283,8 +280,7 @@ "direction": { "value": "" } - }, - "renderPriority": null + } } ] }, diff --git a/testdata/d2compiler/TestCompile/url_link.exp.json b/testdata/d2compiler/TestCompile/url_link.exp.json index 084a87867..ee7b7a06e 100644 --- a/testdata/d2compiler/TestCompile/url_link.exp.json +++ b/testdata/d2compiler/TestCompile/url_link.exp.json @@ -86,8 +86,7 @@ "direction": { "value": "" } - }, - "renderPriority": null + } }, "edges": null, "objects": [ @@ -133,8 +132,7 @@ "direction": { "value": "" } - }, - "renderPriority": null + } } ] }, diff --git a/testdata/d2exporter/TestExport/connection/arrowhead.exp.json b/testdata/d2exporter/TestExport/connection/arrowhead.exp.json index 329c0e39c..50853c66c 100644 --- a/testdata/d2exporter/TestExport/connection/arrowhead.exp.json +++ b/testdata/d2exporter/TestExport/connection/arrowhead.exp.json @@ -36,7 +36,7 @@ "underline": false, "labelWidth": 0, "labelHeight": 0, - "renderPriority": 1 + "zIndex": 1 }, { "id": "y", @@ -73,7 +73,7 @@ "underline": false, "labelWidth": 0, "labelHeight": 0, - "renderPriority": 1 + "zIndex": 1 } ], "connections": [ @@ -106,7 +106,7 @@ "animated": false, "tooltip": "", "icon": null, - "renderPriority": 2 + "zIndex": 2 } ] } diff --git a/testdata/d2exporter/TestExport/connection/basic.exp.json b/testdata/d2exporter/TestExport/connection/basic.exp.json index 81577fbf7..08955be89 100644 --- a/testdata/d2exporter/TestExport/connection/basic.exp.json +++ b/testdata/d2exporter/TestExport/connection/basic.exp.json @@ -36,7 +36,7 @@ "underline": false, "labelWidth": 0, "labelHeight": 0, - "renderPriority": 1 + "zIndex": 1 }, { "id": "y", @@ -73,7 +73,7 @@ "underline": false, "labelWidth": 0, "labelHeight": 0, - "renderPriority": 1 + "zIndex": 1 } ], "connections": [ @@ -106,7 +106,7 @@ "animated": false, "tooltip": "", "icon": null, - "renderPriority": 2 + "zIndex": 2 } ] } diff --git a/testdata/d2exporter/TestExport/connection/stroke-dash.exp.json b/testdata/d2exporter/TestExport/connection/stroke-dash.exp.json index 8baa06de4..a0dc6acb0 100644 --- a/testdata/d2exporter/TestExport/connection/stroke-dash.exp.json +++ b/testdata/d2exporter/TestExport/connection/stroke-dash.exp.json @@ -36,7 +36,7 @@ "underline": false, "labelWidth": 0, "labelHeight": 0, - "renderPriority": 1 + "zIndex": 1 }, { "id": "y", @@ -73,7 +73,7 @@ "underline": false, "labelWidth": 0, "labelHeight": 0, - "renderPriority": 1 + "zIndex": 1 } ], "connections": [ @@ -106,7 +106,7 @@ "animated": false, "tooltip": "", "icon": null, - "renderPriority": 2 + "zIndex": 2 } ] } diff --git a/testdata/d2exporter/TestExport/connection/theme_stroke-dash.exp.json b/testdata/d2exporter/TestExport/connection/theme_stroke-dash.exp.json index 6219c0366..524a496d8 100644 --- a/testdata/d2exporter/TestExport/connection/theme_stroke-dash.exp.json +++ b/testdata/d2exporter/TestExport/connection/theme_stroke-dash.exp.json @@ -36,7 +36,7 @@ "underline": false, "labelWidth": 0, "labelHeight": 0, - "renderPriority": 1 + "zIndex": 1 }, { "id": "y", @@ -73,7 +73,7 @@ "underline": false, "labelWidth": 0, "labelHeight": 0, - "renderPriority": 1 + "zIndex": 1 } ], "connections": [ @@ -106,7 +106,7 @@ "animated": false, "tooltip": "", "icon": null, - "renderPriority": 2 + "zIndex": 2 }, { "id": "(x -> y)[1]", @@ -137,7 +137,7 @@ "animated": false, "tooltip": "", "icon": null, - "renderPriority": 2 + "zIndex": 2 } ] } diff --git a/testdata/d2exporter/TestExport/label/basic_shape.exp.json b/testdata/d2exporter/TestExport/label/basic_shape.exp.json index ace44bfb5..6593e9910 100644 --- a/testdata/d2exporter/TestExport/label/basic_shape.exp.json +++ b/testdata/d2exporter/TestExport/label/basic_shape.exp.json @@ -36,7 +36,7 @@ "underline": false, "labelWidth": 0, "labelHeight": 0, - "renderPriority": 1 + "zIndex": 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 743214d12..93a48c163 100644 --- a/testdata/d2exporter/TestExport/label/connection_font_color.exp.json +++ b/testdata/d2exporter/TestExport/label/connection_font_color.exp.json @@ -36,7 +36,7 @@ "underline": false, "labelWidth": 0, "labelHeight": 0, - "renderPriority": 1 + "zIndex": 1 }, { "id": "y", @@ -73,7 +73,7 @@ "underline": false, "labelWidth": 0, "labelHeight": 0, - "renderPriority": 1 + "zIndex": 1 } ], "connections": [ @@ -106,7 +106,7 @@ "animated": false, "tooltip": "", "icon": null, - "renderPriority": 2 + "zIndex": 2 } ] } diff --git a/testdata/d2exporter/TestExport/label/shape_font_color.exp.json b/testdata/d2exporter/TestExport/label/shape_font_color.exp.json index 053b98420..81ff5951f 100644 --- a/testdata/d2exporter/TestExport/label/shape_font_color.exp.json +++ b/testdata/d2exporter/TestExport/label/shape_font_color.exp.json @@ -36,7 +36,7 @@ "underline": false, "labelWidth": 0, "labelHeight": 0, - "renderPriority": 1 + "zIndex": 1 } ], "connections": [] diff --git a/testdata/d2exporter/TestExport/shape/basic.exp.json b/testdata/d2exporter/TestExport/shape/basic.exp.json index 38166cb0f..188372eb7 100644 --- a/testdata/d2exporter/TestExport/shape/basic.exp.json +++ b/testdata/d2exporter/TestExport/shape/basic.exp.json @@ -36,7 +36,7 @@ "underline": false, "labelWidth": 0, "labelHeight": 0, - "renderPriority": 1 + "zIndex": 1 } ], "connections": [] diff --git a/testdata/d2exporter/TestExport/shape/border-radius.exp.json b/testdata/d2exporter/TestExport/shape/border-radius.exp.json index c11fae3cf..fedf87d54 100644 --- a/testdata/d2exporter/TestExport/shape/border-radius.exp.json +++ b/testdata/d2exporter/TestExport/shape/border-radius.exp.json @@ -36,7 +36,7 @@ "underline": false, "labelWidth": 0, "labelHeight": 0, - "renderPriority": 1 + "zIndex": 1 } ], "connections": [] diff --git a/testdata/d2exporter/TestExport/shape/image_dimensions.exp.json b/testdata/d2exporter/TestExport/shape/image_dimensions.exp.json index 4bdf44aa4..63b7d95cc 100644 --- a/testdata/d2exporter/TestExport/shape/image_dimensions.exp.json +++ b/testdata/d2exporter/TestExport/shape/image_dimensions.exp.json @@ -47,7 +47,7 @@ "underline": false, "labelWidth": 0, "labelHeight": 0, - "renderPriority": 1 + "zIndex": 1 } ], "connections": [] diff --git a/testdata/d2exporter/TestExport/shape/synonyms.exp.json b/testdata/d2exporter/TestExport/shape/synonyms.exp.json index 8643832f1..075174b0c 100644 --- a/testdata/d2exporter/TestExport/shape/synonyms.exp.json +++ b/testdata/d2exporter/TestExport/shape/synonyms.exp.json @@ -36,7 +36,7 @@ "underline": false, "labelWidth": 0, "labelHeight": 0, - "renderPriority": 1 + "zIndex": 1 }, { "id": "y", @@ -73,7 +73,7 @@ "underline": false, "labelWidth": 0, "labelHeight": 0, - "renderPriority": 1 + "zIndex": 1 } ], "connections": [] diff --git a/testdata/d2exporter/TestExport/shape/text_color.exp.json b/testdata/d2exporter/TestExport/shape/text_color.exp.json index 16b5218ed..e30872ec3 100644 --- a/testdata/d2exporter/TestExport/shape/text_color.exp.json +++ b/testdata/d2exporter/TestExport/shape/text_color.exp.json @@ -36,7 +36,7 @@ "underline": false, "labelWidth": 0, "labelHeight": 0, - "renderPriority": 1 + "zIndex": 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 050dc5912..a8765da4e 100644 --- a/testdata/d2exporter/TestExport/theme/connection_with_bold.exp.json +++ b/testdata/d2exporter/TestExport/theme/connection_with_bold.exp.json @@ -36,7 +36,7 @@ "underline": false, "labelWidth": 0, "labelHeight": 0, - "renderPriority": 1 + "zIndex": 1 }, { "id": "y", @@ -73,7 +73,7 @@ "underline": false, "labelWidth": 0, "labelHeight": 0, - "renderPriority": 1 + "zIndex": 1 } ], "connections": [ @@ -106,7 +106,7 @@ "animated": false, "tooltip": "", "icon": null, - "renderPriority": 2 + "zIndex": 2 } ] } diff --git a/testdata/d2exporter/TestExport/theme/connection_with_italic.exp.json b/testdata/d2exporter/TestExport/theme/connection_with_italic.exp.json index dbc729f84..8fd82f679 100644 --- a/testdata/d2exporter/TestExport/theme/connection_with_italic.exp.json +++ b/testdata/d2exporter/TestExport/theme/connection_with_italic.exp.json @@ -36,7 +36,7 @@ "underline": false, "labelWidth": 0, "labelHeight": 0, - "renderPriority": 1 + "zIndex": 1 }, { "id": "y", @@ -73,7 +73,7 @@ "underline": false, "labelWidth": 0, "labelHeight": 0, - "renderPriority": 1 + "zIndex": 1 } ], "connections": [ @@ -106,7 +106,7 @@ "animated": false, "tooltip": "", "icon": null, - "renderPriority": 2 + "zIndex": 2 } ] } diff --git a/testdata/d2exporter/TestExport/theme/connection_without_italic.exp.json b/testdata/d2exporter/TestExport/theme/connection_without_italic.exp.json index 453384688..8b0690825 100644 --- a/testdata/d2exporter/TestExport/theme/connection_without_italic.exp.json +++ b/testdata/d2exporter/TestExport/theme/connection_without_italic.exp.json @@ -36,7 +36,7 @@ "underline": false, "labelWidth": 0, "labelHeight": 0, - "renderPriority": 1 + "zIndex": 1 }, { "id": "y", @@ -73,7 +73,7 @@ "underline": false, "labelWidth": 0, "labelHeight": 0, - "renderPriority": 1 + "zIndex": 1 } ], "connections": [ @@ -106,7 +106,7 @@ "animated": false, "tooltip": "", "icon": null, - "renderPriority": 2 + "zIndex": 2 } ] } diff --git a/testdata/d2exporter/TestExport/theme/shape_with_italic.exp.json b/testdata/d2exporter/TestExport/theme/shape_with_italic.exp.json index 9d244d492..5d647a1f6 100644 --- a/testdata/d2exporter/TestExport/theme/shape_with_italic.exp.json +++ b/testdata/d2exporter/TestExport/theme/shape_with_italic.exp.json @@ -36,7 +36,7 @@ "underline": false, "labelWidth": 0, "labelHeight": 0, - "renderPriority": 1 + "zIndex": 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 2f704f889..855735fdb 100644 --- a/testdata/d2exporter/TestExport/theme/shape_without_bold.exp.json +++ b/testdata/d2exporter/TestExport/theme/shape_without_bold.exp.json @@ -36,7 +36,7 @@ "underline": false, "labelWidth": 0, "labelHeight": 0, - "renderPriority": 1 + "zIndex": 1 } ], "connections": [] diff --git a/testdata/d2oracle/TestCreate/base.exp.json b/testdata/d2oracle/TestCreate/base.exp.json index 2be3eab89..a7ac1c375 100644 --- a/testdata/d2oracle/TestCreate/base.exp.json +++ b/testdata/d2oracle/TestCreate/base.exp.json @@ -47,8 +47,7 @@ "direction": { "value": "" } - }, - "renderPriority": null + } }, "edges": null, "objects": [ @@ -93,8 +92,7 @@ "direction": { "value": "" } - }, - "renderPriority": null + } } ] }, diff --git a/testdata/d2oracle/TestCreate/container.exp.json b/testdata/d2oracle/TestCreate/container.exp.json index 1038bff6b..dc7bbf8f1 100644 --- a/testdata/d2oracle/TestCreate/container.exp.json +++ b/testdata/d2oracle/TestCreate/container.exp.json @@ -76,8 +76,7 @@ "direction": { "value": "" } - }, - "renderPriority": null + } }, "edges": null, "objects": [ @@ -122,8 +121,7 @@ "direction": { "value": "" } - }, - "renderPriority": null + } }, { "id": "q", @@ -166,8 +164,7 @@ "direction": { "value": "" } - }, - "renderPriority": null + } } ] }, diff --git a/testdata/d2oracle/TestCreate/container_edge.exp.json b/testdata/d2oracle/TestCreate/container_edge.exp.json index 775fe0d8e..21565478e 100644 --- a/testdata/d2oracle/TestCreate/container_edge.exp.json +++ b/testdata/d2oracle/TestCreate/container_edge.exp.json @@ -99,8 +99,7 @@ "direction": { "value": "" } - }, - "renderPriority": null + } }, "edges": [ { @@ -176,8 +175,7 @@ "direction": { "value": "" } - }, - "renderPriority": null + } }, { "id": "x", @@ -220,8 +218,7 @@ "direction": { "value": "" } - }, - "renderPriority": null + } }, { "id": "y", @@ -264,8 +261,7 @@ "direction": { "value": "" } - }, - "renderPriority": null + } } ] }, diff --git a/testdata/d2oracle/TestCreate/container_edge_label.exp.json b/testdata/d2oracle/TestCreate/container_edge_label.exp.json index 4180265ec..77f7b9a48 100644 --- a/testdata/d2oracle/TestCreate/container_edge_label.exp.json +++ b/testdata/d2oracle/TestCreate/container_edge_label.exp.json @@ -109,8 +109,7 @@ "direction": { "value": "" } - }, - "renderPriority": null + } }, "edges": [ { @@ -186,8 +185,7 @@ "direction": { "value": "" } - }, - "renderPriority": null + } }, { "id": "x", @@ -230,8 +228,7 @@ "direction": { "value": "" } - }, - "renderPriority": null + } }, { "id": "y", @@ -274,8 +271,7 @@ "direction": { "value": "" } - }, - "renderPriority": null + } } ] }, diff --git a/testdata/d2oracle/TestCreate/edge.exp.json b/testdata/d2oracle/TestCreate/edge.exp.json index 2137f8d1e..ec2ec4313 100644 --- a/testdata/d2oracle/TestCreate/edge.exp.json +++ b/testdata/d2oracle/TestCreate/edge.exp.json @@ -70,8 +70,7 @@ "direction": { "value": "" } - }, - "renderPriority": null + } }, "edges": [ { @@ -147,8 +146,7 @@ "direction": { "value": "" } - }, - "renderPriority": null + } }, { "id": "y", @@ -191,8 +189,7 @@ "direction": { "value": "" } - }, - "renderPriority": null + } } ] }, diff --git a/testdata/d2oracle/TestCreate/edge_nested.exp.json b/testdata/d2oracle/TestCreate/edge_nested.exp.json index 623835012..5d8ed4b19 100644 --- a/testdata/d2oracle/TestCreate/edge_nested.exp.json +++ b/testdata/d2oracle/TestCreate/edge_nested.exp.json @@ -86,8 +86,7 @@ "direction": { "value": "" } - }, - "renderPriority": null + } }, "edges": [ { @@ -163,8 +162,7 @@ "direction": { "value": "" } - }, - "renderPriority": null + } }, { "id": "x", @@ -207,8 +205,7 @@ "direction": { "value": "" } - }, - "renderPriority": null + } }, { "id": "y", @@ -251,8 +248,7 @@ "direction": { "value": "" } - }, - "renderPriority": null + } } ] }, diff --git a/testdata/d2oracle/TestCreate/edge_scope.exp.json b/testdata/d2oracle/TestCreate/edge_scope.exp.json index f0a310e6e..2ff35f256 100644 --- a/testdata/d2oracle/TestCreate/edge_scope.exp.json +++ b/testdata/d2oracle/TestCreate/edge_scope.exp.json @@ -99,8 +99,7 @@ "direction": { "value": "" } - }, - "renderPriority": null + } }, "edges": [ { @@ -176,8 +175,7 @@ "direction": { "value": "" } - }, - "renderPriority": null + } }, { "id": "x", @@ -220,8 +218,7 @@ "direction": { "value": "" } - }, - "renderPriority": null + } }, { "id": "y", @@ -264,8 +261,7 @@ "direction": { "value": "" } - }, - "renderPriority": null + } } ] }, diff --git a/testdata/d2oracle/TestCreate/edge_scope_flat.exp.json b/testdata/d2oracle/TestCreate/edge_scope_flat.exp.json index d69769e7d..fa3474290 100644 --- a/testdata/d2oracle/TestCreate/edge_scope_flat.exp.json +++ b/testdata/d2oracle/TestCreate/edge_scope_flat.exp.json @@ -99,8 +99,7 @@ "direction": { "value": "" } - }, - "renderPriority": null + } }, "edges": [ { @@ -176,8 +175,7 @@ "direction": { "value": "" } - }, - "renderPriority": null + } }, { "id": "x", @@ -220,8 +218,7 @@ "direction": { "value": "" } - }, - "renderPriority": null + } }, { "id": "y", @@ -264,8 +261,7 @@ "direction": { "value": "" } - }, - "renderPriority": null + } } ] }, diff --git a/testdata/d2oracle/TestCreate/edge_scope_nested.exp.json b/testdata/d2oracle/TestCreate/edge_scope_nested.exp.json index 928ec1363..32b0a3db0 100644 --- a/testdata/d2oracle/TestCreate/edge_scope_nested.exp.json +++ b/testdata/d2oracle/TestCreate/edge_scope_nested.exp.json @@ -110,8 +110,7 @@ "direction": { "value": "" } - }, - "renderPriority": null + } }, "edges": [ { @@ -198,8 +197,7 @@ "direction": { "value": "" } - }, - "renderPriority": null + } }, { "id": "y", @@ -253,8 +251,7 @@ "direction": { "value": "" } - }, - "renderPriority": null + } }, { "id": "z", @@ -297,8 +294,7 @@ "direction": { "value": "" } - }, - "renderPriority": null + } }, { "id": "q", @@ -341,8 +337,7 @@ "direction": { "value": "" } - }, - "renderPriority": null + } } ] }, diff --git a/testdata/d2oracle/TestCreate/edge_unique.exp.json b/testdata/d2oracle/TestCreate/edge_unique.exp.json index 7fd29e1f7..68eb01b49 100644 --- a/testdata/d2oracle/TestCreate/edge_unique.exp.json +++ b/testdata/d2oracle/TestCreate/edge_unique.exp.json @@ -256,8 +256,7 @@ "direction": { "value": "" } - }, - "renderPriority": null + } }, "edges": [ { @@ -423,8 +422,7 @@ "direction": { "value": "" } - }, - "renderPriority": null + } }, { "id": "y", @@ -467,8 +465,7 @@ "direction": { "value": "" } - }, - "renderPriority": null + } }, { "id": "hello", @@ -551,8 +548,7 @@ "direction": { "value": "" } - }, - "renderPriority": null + } }, { "id": "x", @@ -635,8 +631,7 @@ "direction": { "value": "" } - }, - "renderPriority": null + } }, { "id": "y", @@ -719,8 +714,7 @@ "direction": { "value": "" } - }, - "renderPriority": null + } } ] }, diff --git a/testdata/d2oracle/TestCreate/gen_key.exp.json b/testdata/d2oracle/TestCreate/gen_key.exp.json index 8ce54edf9..ee6032e00 100644 --- a/testdata/d2oracle/TestCreate/gen_key.exp.json +++ b/testdata/d2oracle/TestCreate/gen_key.exp.json @@ -70,8 +70,7 @@ "direction": { "value": "" } - }, - "renderPriority": null + } }, "edges": null, "objects": [ @@ -116,8 +115,7 @@ "direction": { "value": "" } - }, - "renderPriority": null + } }, { "id": "square 2", @@ -160,8 +158,7 @@ "direction": { "value": "" } - }, - "renderPriority": null + } } ] }, diff --git a/testdata/d2oracle/TestCreate/gen_key_n.exp.json b/testdata/d2oracle/TestCreate/gen_key_n.exp.json index d4f66c90c..66a55f903 100644 --- a/testdata/d2oracle/TestCreate/gen_key_n.exp.json +++ b/testdata/d2oracle/TestCreate/gen_key_n.exp.json @@ -328,8 +328,7 @@ "direction": { "value": "" } - }, - "renderPriority": null + } }, "edges": null, "objects": [ @@ -396,8 +395,7 @@ "direction": { "value": "" } - }, - "renderPriority": null + } }, { "id": "y", @@ -462,8 +460,7 @@ "direction": { "value": "" } - }, - "renderPriority": null + } }, { "id": "z", @@ -528,8 +525,7 @@ "direction": { "value": "" } - }, - "renderPriority": null + } }, { "id": "square", @@ -572,8 +568,7 @@ "direction": { "value": "" } - }, - "renderPriority": null + } }, { "id": "square 2", @@ -616,8 +611,7 @@ "direction": { "value": "" } - }, - "renderPriority": null + } }, { "id": "square 3", @@ -660,8 +654,7 @@ "direction": { "value": "" } - }, - "renderPriority": null + } }, { "id": "square 4", @@ -704,8 +697,7 @@ "direction": { "value": "" } - }, - "renderPriority": null + } }, { "id": "square 5", @@ -748,8 +740,7 @@ "direction": { "value": "" } - }, - "renderPriority": null + } }, { "id": "square 6", @@ -792,8 +783,7 @@ "direction": { "value": "" } - }, - "renderPriority": null + } }, { "id": "square 7", @@ -836,8 +826,7 @@ "direction": { "value": "" } - }, - "renderPriority": null + } }, { "id": "square 8", @@ -880,8 +869,7 @@ "direction": { "value": "" } - }, - "renderPriority": null + } }, { "id": "square 9", @@ -924,8 +912,7 @@ "direction": { "value": "" } - }, - "renderPriority": null + } }, { "id": "square 10", @@ -968,8 +955,7 @@ "direction": { "value": "" } - }, - "renderPriority": null + } }, { "id": "square 11", @@ -1012,8 +998,7 @@ "direction": { "value": "" } - }, - "renderPriority": null + } } ] }, diff --git a/testdata/d2oracle/TestCreate/gen_key_nested.exp.json b/testdata/d2oracle/TestCreate/gen_key_nested.exp.json index 0cce893e3..ab99bdedd 100644 --- a/testdata/d2oracle/TestCreate/gen_key_nested.exp.json +++ b/testdata/d2oracle/TestCreate/gen_key_nested.exp.json @@ -136,8 +136,7 @@ "direction": { "value": "" } - }, - "renderPriority": null + } }, "edges": null, "objects": [ @@ -268,8 +267,7 @@ "direction": { "value": "" } - }, - "renderPriority": null + } }, { "id": "y", @@ -398,8 +396,7 @@ "direction": { "value": "" } - }, - "renderPriority": null + } }, { "id": "z", @@ -528,8 +525,7 @@ "direction": { "value": "" } - }, - "renderPriority": null + } }, { "id": "square", @@ -605,8 +601,7 @@ "direction": { "value": "" } - }, - "renderPriority": null + } }, { "id": "square 2", @@ -682,8 +677,7 @@ "direction": { "value": "" } - }, - "renderPriority": null + } } ] }, diff --git a/testdata/d2oracle/TestCreate/gen_key_scope.exp.json b/testdata/d2oracle/TestCreate/gen_key_scope.exp.json index f62a11fc7..e429b1605 100644 --- a/testdata/d2oracle/TestCreate/gen_key_scope.exp.json +++ b/testdata/d2oracle/TestCreate/gen_key_scope.exp.json @@ -121,8 +121,7 @@ "direction": { "value": "" } - }, - "renderPriority": null + } }, "edges": null, "objects": [ @@ -189,8 +188,7 @@ "direction": { "value": "" } - }, - "renderPriority": null + } }, { "id": "y", @@ -255,8 +253,7 @@ "direction": { "value": "" } - }, - "renderPriority": null + } }, { "id": "z", @@ -321,8 +318,7 @@ "direction": { "value": "" } - }, - "renderPriority": null + } }, { "id": "square", @@ -365,8 +361,7 @@ "direction": { "value": "" } - }, - "renderPriority": null + } }, { "id": "square 2", @@ -409,8 +404,7 @@ "direction": { "value": "" } - }, - "renderPriority": null + } } ] }, diff --git a/testdata/d2oracle/TestCreate/gen_key_suffix.exp.json b/testdata/d2oracle/TestCreate/gen_key_suffix.exp.json index 02aef8fa2..4e34daf68 100644 --- a/testdata/d2oracle/TestCreate/gen_key_suffix.exp.json +++ b/testdata/d2oracle/TestCreate/gen_key_suffix.exp.json @@ -70,8 +70,7 @@ "direction": { "value": "" } - }, - "renderPriority": null + } }, "edges": null, "objects": [ @@ -116,8 +115,7 @@ "direction": { "value": "" } - }, - "renderPriority": null + } }, { "id": "x 2", @@ -160,8 +158,7 @@ "direction": { "value": "" } - }, - "renderPriority": null + } } ] }, diff --git a/testdata/d2oracle/TestCreate/make_scope_multiline.exp.json b/testdata/d2oracle/TestCreate/make_scope_multiline.exp.json index 9aeb2d0e3..c2d340411 100644 --- a/testdata/d2oracle/TestCreate/make_scope_multiline.exp.json +++ b/testdata/d2oracle/TestCreate/make_scope_multiline.exp.json @@ -109,8 +109,7 @@ "direction": { "value": "" } - }, - "renderPriority": null + } }, "edges": null, "objects": [ @@ -155,8 +154,7 @@ "direction": { "value": "" } - }, - "renderPriority": null + } }, { "id": "orange", @@ -199,8 +197,7 @@ "direction": { "value": "" } - }, - "renderPriority": null + } } ] }, 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 b456104f9..73f6f3626 100644 --- a/testdata/d2oracle/TestCreate/make_scope_multiline_spacing_1.exp.json +++ b/testdata/d2oracle/TestCreate/make_scope_multiline_spacing_1.exp.json @@ -155,8 +155,7 @@ "direction": { "value": "" } - }, - "renderPriority": null + } }, "edges": null, "objects": [ @@ -201,8 +200,7 @@ "direction": { "value": "" } - }, - "renderPriority": null + } }, { "id": "rawr", @@ -245,8 +243,7 @@ "direction": { "value": "" } - }, - "renderPriority": null + } }, { "id": "orange", @@ -289,8 +286,7 @@ "direction": { "value": "" } - }, - "renderPriority": null + } }, { "id": "after", @@ -333,8 +329,7 @@ "direction": { "value": "" } - }, - "renderPriority": null + } } ] }, 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 bf9f264f4..edaeba937 100644 --- a/testdata/d2oracle/TestCreate/make_scope_multiline_spacing_2.exp.json +++ b/testdata/d2oracle/TestCreate/make_scope_multiline_spacing_2.exp.json @@ -155,8 +155,7 @@ "direction": { "value": "" } - }, - "renderPriority": null + } }, "edges": null, "objects": [ @@ -201,8 +200,7 @@ "direction": { "value": "" } - }, - "renderPriority": null + } }, { "id": "rawr", @@ -245,8 +243,7 @@ "direction": { "value": "" } - }, - "renderPriority": null + } }, { "id": "orange", @@ -289,8 +286,7 @@ "direction": { "value": "" } - }, - "renderPriority": null + } }, { "id": "after", @@ -333,8 +329,7 @@ "direction": { "value": "" } - }, - "renderPriority": null + } } ] }, diff --git a/testdata/d2oracle/TestCreate/nested.exp.json b/testdata/d2oracle/TestCreate/nested.exp.json index 2abb6239e..2ba4dcb6f 100644 --- a/testdata/d2oracle/TestCreate/nested.exp.json +++ b/testdata/d2oracle/TestCreate/nested.exp.json @@ -69,8 +69,7 @@ "direction": { "value": "" } - }, - "renderPriority": null + } }, "edges": null, "objects": [ @@ -137,8 +136,7 @@ "direction": { "value": "" } - }, - "renderPriority": null + } }, { "id": "c", @@ -203,8 +201,7 @@ "direction": { "value": "" } - }, - "renderPriority": null + } }, { "id": "square", @@ -269,8 +266,7 @@ "direction": { "value": "" } - }, - "renderPriority": null + } } ] }, diff --git a/testdata/d2oracle/TestCreate/scope.exp.json b/testdata/d2oracle/TestCreate/scope.exp.json index 7ccc83418..56bce7e52 100644 --- a/testdata/d2oracle/TestCreate/scope.exp.json +++ b/testdata/d2oracle/TestCreate/scope.exp.json @@ -98,8 +98,7 @@ "direction": { "value": "" } - }, - "renderPriority": null + } }, "edges": null, "objects": [ @@ -166,8 +165,7 @@ "direction": { "value": "" } - }, - "renderPriority": null + } }, { "id": "y", @@ -232,8 +230,7 @@ "direction": { "value": "" } - }, - "renderPriority": null + } }, { "id": "z", @@ -298,8 +295,7 @@ "direction": { "value": "" } - }, - "renderPriority": null + } }, { "id": "square", @@ -342,8 +338,7 @@ "direction": { "value": "" } - }, - "renderPriority": null + } } ] }, diff --git a/testdata/d2oracle/TestDelete/breakup_arrowhead.exp.json b/testdata/d2oracle/TestDelete/breakup_arrowhead.exp.json index 2c346a43a..404e508c0 100644 --- a/testdata/d2oracle/TestDelete/breakup_arrowhead.exp.json +++ b/testdata/d2oracle/TestDelete/breakup_arrowhead.exp.json @@ -47,8 +47,7 @@ "direction": { "value": "" } - }, - "renderPriority": null + } }, "edges": null, "objects": [ @@ -93,8 +92,7 @@ "direction": { "value": "" } - }, - "renderPriority": null + } } ] }, diff --git a/testdata/d2oracle/TestDelete/children.exp.json b/testdata/d2oracle/TestDelete/children.exp.json index 4417b0b6f..4d7148816 100644 --- a/testdata/d2oracle/TestDelete/children.exp.json +++ b/testdata/d2oracle/TestDelete/children.exp.json @@ -93,8 +93,7 @@ "direction": { "value": "" } - }, - "renderPriority": null + } }, "edges": [ { @@ -170,8 +169,7 @@ "direction": { "value": "" } - }, - "renderPriority": null + } }, { "id": "x", @@ -214,8 +212,7 @@ "direction": { "value": "" } - }, - "renderPriority": null + } }, { "id": "y", @@ -258,8 +255,7 @@ "direction": { "value": "" } - }, - "renderPriority": null + } } ] }, diff --git a/testdata/d2oracle/TestDelete/children_conflicts.exp.json b/testdata/d2oracle/TestDelete/children_conflicts.exp.json index b92b264a6..8c9d70638 100644 --- a/testdata/d2oracle/TestDelete/children_conflicts.exp.json +++ b/testdata/d2oracle/TestDelete/children_conflicts.exp.json @@ -70,8 +70,7 @@ "direction": { "value": "" } - }, - "renderPriority": null + } }, "edges": null, "objects": [ @@ -116,8 +115,7 @@ "direction": { "value": "" } - }, - "renderPriority": null + } }, { "id": "x", @@ -160,8 +158,7 @@ "direction": { "value": "" } - }, - "renderPriority": null + } } ] }, diff --git a/testdata/d2oracle/TestDelete/children_edge_conflicts.exp.json b/testdata/d2oracle/TestDelete/children_edge_conflicts.exp.json index aaf510380..0f45cbe4c 100644 --- a/testdata/d2oracle/TestDelete/children_edge_conflicts.exp.json +++ b/testdata/d2oracle/TestDelete/children_edge_conflicts.exp.json @@ -126,8 +126,7 @@ "direction": { "value": "" } - }, - "renderPriority": null + } }, "edges": [ { @@ -203,8 +202,7 @@ "direction": { "value": "" } - }, - "renderPriority": null + } }, { "id": "x 2", @@ -267,8 +265,7 @@ "direction": { "value": "" } - }, - "renderPriority": null + } }, { "id": "y", @@ -311,8 +308,7 @@ "direction": { "value": "" } - }, - "renderPriority": null + } } ] }, diff --git a/testdata/d2oracle/TestDelete/children_edges_flat_conflicts.exp.json b/testdata/d2oracle/TestDelete/children_edges_flat_conflicts.exp.json index cd777527e..368b8310d 100644 --- a/testdata/d2oracle/TestDelete/children_edges_flat_conflicts.exp.json +++ b/testdata/d2oracle/TestDelete/children_edges_flat_conflicts.exp.json @@ -219,8 +219,7 @@ "direction": { "value": "" } - }, - "renderPriority": null + } }, "edges": [ { @@ -326,8 +325,7 @@ "direction": { "value": "" } - }, - "renderPriority": null + } }, { "id": "z", @@ -370,8 +368,7 @@ "direction": { "value": "" } - }, - "renderPriority": null + } }, { "id": "x 2", @@ -434,8 +431,7 @@ "direction": { "value": "" } - }, - "renderPriority": null + } }, { "id": "z 2", @@ -498,8 +494,7 @@ "direction": { "value": "" } - }, - "renderPriority": null + } }, { "id": "y", @@ -562,8 +557,7 @@ "direction": { "value": "" } - }, - "renderPriority": null + } } ] }, diff --git a/testdata/d2oracle/TestDelete/children_flat_conflicts.exp.json b/testdata/d2oracle/TestDelete/children_flat_conflicts.exp.json index 4d13d98e0..74f50700a 100644 --- a/testdata/d2oracle/TestDelete/children_flat_conflicts.exp.json +++ b/testdata/d2oracle/TestDelete/children_flat_conflicts.exp.json @@ -103,8 +103,7 @@ "direction": { "value": "" } - }, - "renderPriority": null + } }, "edges": null, "objects": [ @@ -169,8 +168,7 @@ "direction": { "value": "" } - }, - "renderPriority": null + } }, { "id": "x", @@ -213,8 +211,7 @@ "direction": { "value": "" } - }, - "renderPriority": null + } } ] }, diff --git a/testdata/d2oracle/TestDelete/children_multiple_conflicts.exp.json b/testdata/d2oracle/TestDelete/children_multiple_conflicts.exp.json index 70b5de565..c49fc91ba 100644 --- a/testdata/d2oracle/TestDelete/children_multiple_conflicts.exp.json +++ b/testdata/d2oracle/TestDelete/children_multiple_conflicts.exp.json @@ -195,8 +195,7 @@ "direction": { "value": "" } - }, - "renderPriority": null + } }, "edges": [ { @@ -312,8 +311,7 @@ "direction": { "value": "" } - }, - "renderPriority": null + } }, { "id": "y 2", @@ -376,8 +374,7 @@ "direction": { "value": "" } - }, - "renderPriority": null + } }, { "id": "x", @@ -420,8 +417,7 @@ "direction": { "value": "" } - }, - "renderPriority": null + } }, { "id": "y", @@ -464,8 +460,7 @@ "direction": { "value": "" } - }, - "renderPriority": null + } } ] }, diff --git a/testdata/d2oracle/TestDelete/children_nested_conflicts.exp.json b/testdata/d2oracle/TestDelete/children_nested_conflicts.exp.json index cb5f1f72f..313097061 100644 --- a/testdata/d2oracle/TestDelete/children_nested_conflicts.exp.json +++ b/testdata/d2oracle/TestDelete/children_nested_conflicts.exp.json @@ -99,8 +99,7 @@ "direction": { "value": "" } - }, - "renderPriority": null + } }, "edges": null, "objects": [ @@ -145,8 +144,7 @@ "direction": { "value": "" } - }, - "renderPriority": null + } }, { "id": "y", @@ -189,8 +187,7 @@ "direction": { "value": "" } - }, - "renderPriority": null + } }, { "id": "x", @@ -233,8 +230,7 @@ "direction": { "value": "" } - }, - "renderPriority": null + } } ] }, diff --git a/testdata/d2oracle/TestDelete/children_nested_referenced_conflicts.exp.json b/testdata/d2oracle/TestDelete/children_nested_referenced_conflicts.exp.json index cf46e105e..725a50f18 100644 --- a/testdata/d2oracle/TestDelete/children_nested_referenced_conflicts.exp.json +++ b/testdata/d2oracle/TestDelete/children_nested_referenced_conflicts.exp.json @@ -158,8 +158,7 @@ "direction": { "value": "" } - }, - "renderPriority": null + } }, "edges": null, "objects": [ @@ -266,8 +265,7 @@ "direction": { "value": "" } - }, - "renderPriority": null + } }, { "id": "y", @@ -352,8 +350,7 @@ "direction": { "value": "" } - }, - "renderPriority": null + } }, { "id": "x", @@ -396,8 +393,7 @@ "direction": { "value": "" } - }, - "renderPriority": null + } } ] }, diff --git a/testdata/d2oracle/TestDelete/children_no_self_conflict.exp.json b/testdata/d2oracle/TestDelete/children_no_self_conflict.exp.json index bb05a94f4..91f74c667 100644 --- a/testdata/d2oracle/TestDelete/children_no_self_conflict.exp.json +++ b/testdata/d2oracle/TestDelete/children_no_self_conflict.exp.json @@ -47,8 +47,7 @@ "direction": { "value": "" } - }, - "renderPriority": null + } }, "edges": null, "objects": [ @@ -93,8 +92,7 @@ "direction": { "value": "" } - }, - "renderPriority": null + } } ] }, diff --git a/testdata/d2oracle/TestDelete/children_order.exp.json b/testdata/d2oracle/TestDelete/children_order.exp.json index f70786ab5..ace7a8b31 100644 --- a/testdata/d2oracle/TestDelete/children_order.exp.json +++ b/testdata/d2oracle/TestDelete/children_order.exp.json @@ -122,8 +122,7 @@ "direction": { "value": "" } - }, - "renderPriority": null + } }, "edges": null, "objects": [ @@ -168,8 +167,7 @@ "direction": { "value": "" } - }, - "renderPriority": null + } }, { "id": "before", @@ -212,8 +210,7 @@ "direction": { "value": "" } - }, - "renderPriority": null + } }, { "id": "congo", @@ -256,8 +253,7 @@ "direction": { "value": "" } - }, - "renderPriority": null + } }, { "id": "after", @@ -300,8 +296,7 @@ "direction": { "value": "" } - }, - "renderPriority": null + } } ] }, diff --git a/testdata/d2oracle/TestDelete/children_referenced_conflicts.exp.json b/testdata/d2oracle/TestDelete/children_referenced_conflicts.exp.json index a6ae7aa51..668543222 100644 --- a/testdata/d2oracle/TestDelete/children_referenced_conflicts.exp.json +++ b/testdata/d2oracle/TestDelete/children_referenced_conflicts.exp.json @@ -103,8 +103,7 @@ "direction": { "value": "" } - }, - "renderPriority": null + } }, "edges": null, "objects": [ @@ -169,8 +168,7 @@ "direction": { "value": "" } - }, - "renderPriority": null + } }, { "id": "x", @@ -213,8 +211,7 @@ "direction": { "value": "" } - }, - "renderPriority": null + } } ] }, diff --git a/testdata/d2oracle/TestDelete/children_scope.exp.json b/testdata/d2oracle/TestDelete/children_scope.exp.json index 14f17521a..7bd1b5112 100644 --- a/testdata/d2oracle/TestDelete/children_scope.exp.json +++ b/testdata/d2oracle/TestDelete/children_scope.exp.json @@ -133,8 +133,7 @@ "direction": { "value": "" } - }, - "renderPriority": null + } }, "edges": [ { @@ -221,8 +220,7 @@ "direction": { "value": "" } - }, - "renderPriority": null + } }, { "id": "q", @@ -276,8 +274,7 @@ "direction": { "value": "" } - }, - "renderPriority": null + } }, { "id": "\"what's up\"", @@ -320,8 +317,7 @@ "direction": { "value": "" } - }, - "renderPriority": null + } }, { "id": "x", @@ -364,8 +360,7 @@ "direction": { "value": "" } - }, - "renderPriority": null + } }, { "id": "y", @@ -408,8 +403,7 @@ "direction": { "value": "" } - }, - "renderPriority": null + } } ] }, diff --git a/testdata/d2oracle/TestDelete/container_near.exp.json b/testdata/d2oracle/TestDelete/container_near.exp.json index 2c10a5b4f..704202b70 100644 --- a/testdata/d2oracle/TestDelete/container_near.exp.json +++ b/testdata/d2oracle/TestDelete/container_near.exp.json @@ -171,8 +171,7 @@ "direction": { "value": "" } - }, - "renderPriority": null + } }, "edges": null, "objects": [ @@ -232,8 +231,7 @@ "direction": { "value": "" } - }, - "renderPriority": null + } }, { "id": "z", @@ -276,8 +274,7 @@ "direction": { "value": "" } - }, - "renderPriority": null + } }, { "id": "a", @@ -335,8 +332,7 @@ "direction": { "value": "" } - }, - "renderPriority": null + } } ] }, diff --git a/testdata/d2oracle/TestDelete/delete_icon.exp.json b/testdata/d2oracle/TestDelete/delete_icon.exp.json index ee9834538..9a370a688 100644 --- a/testdata/d2oracle/TestDelete/delete_icon.exp.json +++ b/testdata/d2oracle/TestDelete/delete_icon.exp.json @@ -97,8 +97,7 @@ "direction": { "value": "" } - }, - "renderPriority": null + } }, "edges": null, "objects": [ @@ -154,8 +153,7 @@ "direction": { "value": "" } - }, - "renderPriority": null + } }, { "id": "x", @@ -210,8 +208,7 @@ "direction": { "value": "" } - }, - "renderPriority": null + } } ] }, diff --git a/testdata/d2oracle/TestDelete/delete_link.exp.json b/testdata/d2oracle/TestDelete/delete_link.exp.json index d4de685b7..bd4a60f19 100644 --- a/testdata/d2oracle/TestDelete/delete_link.exp.json +++ b/testdata/d2oracle/TestDelete/delete_link.exp.json @@ -47,8 +47,7 @@ "direction": { "value": "" } - }, - "renderPriority": null + } }, "edges": null, "objects": [ @@ -93,8 +92,7 @@ "direction": { "value": "" } - }, - "renderPriority": null + } } ] }, diff --git a/testdata/d2oracle/TestDelete/delete_near.exp.json b/testdata/d2oracle/TestDelete/delete_near.exp.json index 3bd28fc81..5ec43d9a8 100644 --- a/testdata/d2oracle/TestDelete/delete_near.exp.json +++ b/testdata/d2oracle/TestDelete/delete_near.exp.json @@ -70,8 +70,7 @@ "direction": { "value": "" } - }, - "renderPriority": null + } }, "edges": null, "objects": [ @@ -116,8 +115,7 @@ "direction": { "value": "" } - }, - "renderPriority": null + } }, { "id": "y", @@ -160,8 +158,7 @@ "direction": { "value": "" } - }, - "renderPriority": null + } } ] }, diff --git a/testdata/d2oracle/TestDelete/delete_needed_flat_near.exp.json b/testdata/d2oracle/TestDelete/delete_needed_flat_near.exp.json index 1b62b5b0e..1fe0d5f5c 100644 --- a/testdata/d2oracle/TestDelete/delete_needed_flat_near.exp.json +++ b/testdata/d2oracle/TestDelete/delete_needed_flat_near.exp.json @@ -70,8 +70,7 @@ "direction": { "value": "" } - }, - "renderPriority": null + } }, "edges": null, "objects": [ @@ -116,8 +115,7 @@ "direction": { "value": "" } - }, - "renderPriority": null + } }, { "id": "y", @@ -160,8 +158,7 @@ "direction": { "value": "" } - }, - "renderPriority": null + } } ] }, diff --git a/testdata/d2oracle/TestDelete/delete_redundant_flat_near.exp.json b/testdata/d2oracle/TestDelete/delete_redundant_flat_near.exp.json index 9790fed2a..e7e41216f 100644 --- a/testdata/d2oracle/TestDelete/delete_redundant_flat_near.exp.json +++ b/testdata/d2oracle/TestDelete/delete_redundant_flat_near.exp.json @@ -70,8 +70,7 @@ "direction": { "value": "" } - }, - "renderPriority": null + } }, "edges": null, "objects": [ @@ -116,8 +115,7 @@ "direction": { "value": "" } - }, - "renderPriority": null + } }, { "id": "y", @@ -160,8 +158,7 @@ "direction": { "value": "" } - }, - "renderPriority": null + } } ] }, diff --git a/testdata/d2oracle/TestDelete/delete_tooltip.exp.json b/testdata/d2oracle/TestDelete/delete_tooltip.exp.json index 2048cb372..cddd7377e 100644 --- a/testdata/d2oracle/TestDelete/delete_tooltip.exp.json +++ b/testdata/d2oracle/TestDelete/delete_tooltip.exp.json @@ -47,8 +47,7 @@ "direction": { "value": "" } - }, - "renderPriority": null + } }, "edges": null, "objects": [ @@ -93,8 +92,7 @@ "direction": { "value": "" } - }, - "renderPriority": null + } } ] }, diff --git a/testdata/d2oracle/TestDelete/edge_both_identical_childs.exp.json b/testdata/d2oracle/TestDelete/edge_both_identical_childs.exp.json index e3c978fe3..c8c0b2a8f 100644 --- a/testdata/d2oracle/TestDelete/edge_both_identical_childs.exp.json +++ b/testdata/d2oracle/TestDelete/edge_both_identical_childs.exp.json @@ -103,8 +103,7 @@ "direction": { "value": "" } - }, - "renderPriority": null + } }, "edges": [ { @@ -233,8 +232,7 @@ "direction": { "value": "" } - }, - "renderPriority": null + } }, { "id": "y", @@ -299,8 +297,7 @@ "direction": { "value": "" } - }, - "renderPriority": null + } }, { "id": "z", @@ -365,8 +362,7 @@ "direction": { "value": "" } - }, - "renderPriority": null + } }, { "id": "b", @@ -420,8 +416,7 @@ "direction": { "value": "" } - }, - "renderPriority": null + } } ] }, diff --git a/testdata/d2oracle/TestDelete/edge_common.exp.json b/testdata/d2oracle/TestDelete/edge_common.exp.json index 4df49dc12..f268c4258 100644 --- a/testdata/d2oracle/TestDelete/edge_common.exp.json +++ b/testdata/d2oracle/TestDelete/edge_common.exp.json @@ -70,8 +70,7 @@ "direction": { "value": "" } - }, - "renderPriority": null + } }, "edges": [ { @@ -147,8 +146,7 @@ "direction": { "value": "" } - }, - "renderPriority": null + } }, { "id": "y", @@ -191,8 +189,7 @@ "direction": { "value": "" } - }, - "renderPriority": null + } } ] }, diff --git a/testdata/d2oracle/TestDelete/edge_common_2.exp.json b/testdata/d2oracle/TestDelete/edge_common_2.exp.json index 1b5745d9e..81c153998 100644 --- a/testdata/d2oracle/TestDelete/edge_common_2.exp.json +++ b/testdata/d2oracle/TestDelete/edge_common_2.exp.json @@ -70,8 +70,7 @@ "direction": { "value": "" } - }, - "renderPriority": null + } }, "edges": [ { @@ -147,8 +146,7 @@ "direction": { "value": "" } - }, - "renderPriority": null + } }, { "id": "y", @@ -191,8 +189,7 @@ "direction": { "value": "" } - }, - "renderPriority": null + } } ] }, diff --git a/testdata/d2oracle/TestDelete/edge_common_3.exp.json b/testdata/d2oracle/TestDelete/edge_common_3.exp.json index 3acfeba89..884567505 100644 --- a/testdata/d2oracle/TestDelete/edge_common_3.exp.json +++ b/testdata/d2oracle/TestDelete/edge_common_3.exp.json @@ -92,8 +92,7 @@ "direction": { "value": "" } - }, - "renderPriority": null + } }, "edges": null, "objects": [ @@ -180,8 +179,7 @@ "direction": { "value": "" } - }, - "renderPriority": null + } }, { "id": "a", @@ -235,8 +233,7 @@ "direction": { "value": "" } - }, - "renderPriority": null + } }, { "id": "y", @@ -290,8 +287,7 @@ "direction": { "value": "" } - }, - "renderPriority": null + } } ] }, diff --git a/testdata/d2oracle/TestDelete/edge_common_4.exp.json b/testdata/d2oracle/TestDelete/edge_common_4.exp.json index c14e7c239..b17687cc0 100644 --- a/testdata/d2oracle/TestDelete/edge_common_4.exp.json +++ b/testdata/d2oracle/TestDelete/edge_common_4.exp.json @@ -92,8 +92,7 @@ "direction": { "value": "" } - }, - "renderPriority": null + } }, "edges": null, "objects": [ @@ -180,8 +179,7 @@ "direction": { "value": "" } - }, - "renderPriority": null + } }, { "id": "a", @@ -235,8 +233,7 @@ "direction": { "value": "" } - }, - "renderPriority": null + } }, { "id": "y", @@ -290,8 +287,7 @@ "direction": { "value": "" } - }, - "renderPriority": null + } } ] }, diff --git a/testdata/d2oracle/TestDelete/edge_conflict.exp.json b/testdata/d2oracle/TestDelete/edge_conflict.exp.json index 14e15eb5a..151e6a69a 100644 --- a/testdata/d2oracle/TestDelete/edge_conflict.exp.json +++ b/testdata/d2oracle/TestDelete/edge_conflict.exp.json @@ -115,8 +115,7 @@ "direction": { "value": "" } - }, - "renderPriority": null + } }, "edges": [ { @@ -192,8 +191,7 @@ "direction": { "value": "" } - }, - "renderPriority": null + } }, { "id": "y 2", @@ -278,8 +276,7 @@ "direction": { "value": "" } - }, - "renderPriority": null + } }, { "id": "a", @@ -333,8 +330,7 @@ "direction": { "value": "" } - }, - "renderPriority": null + } }, { "id": "b", @@ -388,8 +384,7 @@ "direction": { "value": "" } - }, - "renderPriority": null + } } ] }, diff --git a/testdata/d2oracle/TestDelete/edge_decrement.exp.json b/testdata/d2oracle/TestDelete/edge_decrement.exp.json index 32b8cac47..7e8cd36b0 100644 --- a/testdata/d2oracle/TestDelete/edge_decrement.exp.json +++ b/testdata/d2oracle/TestDelete/edge_decrement.exp.json @@ -452,8 +452,7 @@ "direction": { "value": "" } - }, - "renderPriority": null + } }, "edges": [ { @@ -771,8 +770,7 @@ "direction": { "value": "" } - }, - "renderPriority": null + } }, { "id": "b", @@ -955,8 +953,7 @@ "direction": { "value": "" } - }, - "renderPriority": null + } } ] }, diff --git a/testdata/d2oracle/TestDelete/edge_first.exp.json b/testdata/d2oracle/TestDelete/edge_first.exp.json index 7f3ac442d..ff36efa04 100644 --- a/testdata/d2oracle/TestDelete/edge_first.exp.json +++ b/testdata/d2oracle/TestDelete/edge_first.exp.json @@ -181,8 +181,7 @@ "direction": { "value": "" } - }, - "renderPriority": null + } }, "edges": [ { @@ -310,8 +309,7 @@ "direction": { "value": "" } - }, - "renderPriority": null + } }, { "id": "p", @@ -376,8 +374,7 @@ "direction": { "value": "" } - }, - "renderPriority": null + } }, { "id": "d", @@ -442,8 +439,7 @@ "direction": { "value": "" } - }, - "renderPriority": null + } }, { "id": "x", @@ -486,8 +482,7 @@ "direction": { "value": "" } - }, - "renderPriority": null + } }, { "id": "p", @@ -530,8 +525,7 @@ "direction": { "value": "" } - }, - "renderPriority": null + } }, { "id": "y", @@ -594,8 +588,7 @@ "direction": { "value": "" } - }, - "renderPriority": null + } }, { "id": "z", @@ -638,8 +631,7 @@ "direction": { "value": "" } - }, - "renderPriority": null + } } ] }, diff --git a/testdata/d2oracle/TestDelete/edge_flat_style.exp.json b/testdata/d2oracle/TestDelete/edge_flat_style.exp.json index 89f8fffc9..305e6a4aa 100644 --- a/testdata/d2oracle/TestDelete/edge_flat_style.exp.json +++ b/testdata/d2oracle/TestDelete/edge_flat_style.exp.json @@ -47,8 +47,7 @@ "direction": { "value": "" } - }, - "renderPriority": null + } }, "edges": null, "objects": [ @@ -93,8 +92,7 @@ "direction": { "value": "" } - }, - "renderPriority": null + } } ] }, diff --git a/testdata/d2oracle/TestDelete/edge_identical_child.exp.json b/testdata/d2oracle/TestDelete/edge_identical_child.exp.json index 6740b6e25..eb781b86d 100644 --- a/testdata/d2oracle/TestDelete/edge_identical_child.exp.json +++ b/testdata/d2oracle/TestDelete/edge_identical_child.exp.json @@ -103,8 +103,7 @@ "direction": { "value": "" } - }, - "renderPriority": null + } }, "edges": [ { @@ -202,8 +201,7 @@ "direction": { "value": "" } - }, - "renderPriority": null + } }, { "id": "y", @@ -268,8 +266,7 @@ "direction": { "value": "" } - }, - "renderPriority": null + } }, { "id": "z", @@ -334,8 +331,7 @@ "direction": { "value": "" } - }, - "renderPriority": null + } }, { "id": "y", @@ -389,8 +385,7 @@ "direction": { "value": "" } - }, - "renderPriority": null + } }, { "id": "b", @@ -444,8 +439,7 @@ "direction": { "value": "" } - }, - "renderPriority": null + } } ] }, diff --git a/testdata/d2oracle/TestDelete/edge_key_style.exp.json b/testdata/d2oracle/TestDelete/edge_key_style.exp.json index 1d37dbb6b..7562e03e2 100644 --- a/testdata/d2oracle/TestDelete/edge_key_style.exp.json +++ b/testdata/d2oracle/TestDelete/edge_key_style.exp.json @@ -70,8 +70,7 @@ "direction": { "value": "" } - }, - "renderPriority": null + } }, "edges": [ { @@ -147,8 +146,7 @@ "direction": { "value": "" } - }, - "renderPriority": null + } }, { "id": "y", @@ -191,8 +189,7 @@ "direction": { "value": "" } - }, - "renderPriority": null + } } ] }, diff --git a/testdata/d2oracle/TestDelete/edge_last.exp.json b/testdata/d2oracle/TestDelete/edge_last.exp.json index 8134f3cfa..ba877e571 100644 --- a/testdata/d2oracle/TestDelete/edge_last.exp.json +++ b/testdata/d2oracle/TestDelete/edge_last.exp.json @@ -218,8 +218,7 @@ "direction": { "value": "" } - }, - "renderPriority": null + } }, "edges": [ { @@ -377,8 +376,7 @@ "direction": { "value": "" } - }, - "renderPriority": null + } }, { "id": "p", @@ -443,8 +441,7 @@ "direction": { "value": "" } - }, - "renderPriority": null + } }, { "id": "d", @@ -509,8 +506,7 @@ "direction": { "value": "" } - }, - "renderPriority": null + } }, { "id": "p", @@ -553,8 +549,7 @@ "direction": { "value": "" } - }, - "renderPriority": null + } }, { "id": "x", @@ -597,8 +592,7 @@ "direction": { "value": "" } - }, - "renderPriority": null + } }, { "id": "y", @@ -661,8 +655,7 @@ "direction": { "value": "" } - }, - "renderPriority": null + } }, { "id": "z", @@ -725,8 +718,7 @@ "direction": { "value": "" } - }, - "renderPriority": null + } }, { "id": "q", @@ -769,8 +761,7 @@ "direction": { "value": "" } - }, - "renderPriority": null + } } ] }, diff --git a/testdata/d2oracle/TestDelete/edge_map_style.exp.json b/testdata/d2oracle/TestDelete/edge_map_style.exp.json index 10775542d..9ff8ae11c 100644 --- a/testdata/d2oracle/TestDelete/edge_map_style.exp.json +++ b/testdata/d2oracle/TestDelete/edge_map_style.exp.json @@ -70,8 +70,7 @@ "direction": { "value": "" } - }, - "renderPriority": null + } }, "edges": [ { @@ -147,8 +146,7 @@ "direction": { "value": "" } - }, - "renderPriority": null + } }, { "id": "y", @@ -191,8 +189,7 @@ "direction": { "value": "" } - }, - "renderPriority": null + } } ] }, diff --git a/testdata/d2oracle/TestDelete/edge_middle.exp.json b/testdata/d2oracle/TestDelete/edge_middle.exp.json index 76697ba6b..91b14b60f 100644 --- a/testdata/d2oracle/TestDelete/edge_middle.exp.json +++ b/testdata/d2oracle/TestDelete/edge_middle.exp.json @@ -204,8 +204,7 @@ "direction": { "value": "" } - }, - "renderPriority": null + } }, "edges": [ { @@ -363,8 +362,7 @@ "direction": { "value": "" } - }, - "renderPriority": null + } }, { "id": "p", @@ -429,8 +427,7 @@ "direction": { "value": "" } - }, - "renderPriority": null + } }, { "id": "d", @@ -495,8 +492,7 @@ "direction": { "value": "" } - }, - "renderPriority": null + } }, { "id": "x", @@ -539,8 +535,7 @@ "direction": { "value": "" } - }, - "renderPriority": null + } }, { "id": "y", @@ -603,8 +598,7 @@ "direction": { "value": "" } - }, - "renderPriority": null + } }, { "id": "z", @@ -647,8 +641,7 @@ "direction": { "value": "" } - }, - "renderPriority": null + } }, { "id": "q", @@ -691,8 +684,7 @@ "direction": { "value": "" } - }, - "renderPriority": null + } }, { "id": "p", @@ -735,8 +727,7 @@ "direction": { "value": "" } - }, - "renderPriority": null + } } ] }, diff --git a/testdata/d2oracle/TestDelete/empty_map.exp.json b/testdata/d2oracle/TestDelete/empty_map.exp.json index 67daa1dbf..2acea4509 100644 --- a/testdata/d2oracle/TestDelete/empty_map.exp.json +++ b/testdata/d2oracle/TestDelete/empty_map.exp.json @@ -76,8 +76,7 @@ "direction": { "value": "" } - }, - "renderPriority": null + } }, "edges": null, "objects": [ @@ -122,8 +121,7 @@ "direction": { "value": "" } - }, - "renderPriority": null + } }, { "id": "y", @@ -166,8 +164,7 @@ "direction": { "value": "" } - }, - "renderPriority": null + } } ] }, diff --git a/testdata/d2oracle/TestDelete/flat.exp.json b/testdata/d2oracle/TestDelete/flat.exp.json index 6989c6fe4..3f6f4cf3f 100644 --- a/testdata/d2oracle/TestDelete/flat.exp.json +++ b/testdata/d2oracle/TestDelete/flat.exp.json @@ -23,8 +23,7 @@ "direction": { "value": "" } - }, - "renderPriority": null + } }, "edges": null, "objects": null diff --git a/testdata/d2oracle/TestDelete/flat_reserved.exp.json b/testdata/d2oracle/TestDelete/flat_reserved.exp.json index d45648d53..601cb3246 100644 --- a/testdata/d2oracle/TestDelete/flat_reserved.exp.json +++ b/testdata/d2oracle/TestDelete/flat_reserved.exp.json @@ -70,8 +70,7 @@ "direction": { "value": "" } - }, - "renderPriority": null + } }, "edges": [ { @@ -147,8 +146,7 @@ "direction": { "value": "" } - }, - "renderPriority": null + } }, { "id": "B", @@ -191,8 +189,7 @@ "direction": { "value": "" } - }, - "renderPriority": null + } } ] }, diff --git a/testdata/d2oracle/TestDelete/hoist_children.exp.json b/testdata/d2oracle/TestDelete/hoist_children.exp.json index 730278ef3..6ef96aeff 100644 --- a/testdata/d2oracle/TestDelete/hoist_children.exp.json +++ b/testdata/d2oracle/TestDelete/hoist_children.exp.json @@ -76,8 +76,7 @@ "direction": { "value": "" } - }, - "renderPriority": null + } }, "edges": null, "objects": [ @@ -122,8 +121,7 @@ "direction": { "value": "" } - }, - "renderPriority": null + } }, { "id": "c", @@ -166,8 +164,7 @@ "direction": { "value": "" } - }, - "renderPriority": null + } } ] }, diff --git a/testdata/d2oracle/TestDelete/hoist_edge_children.exp.json b/testdata/d2oracle/TestDelete/hoist_edge_children.exp.json index c162b8356..26f1c0df6 100644 --- a/testdata/d2oracle/TestDelete/hoist_edge_children.exp.json +++ b/testdata/d2oracle/TestDelete/hoist_edge_children.exp.json @@ -93,8 +93,7 @@ "direction": { "value": "" } - }, - "renderPriority": null + } }, "edges": [ { @@ -170,8 +169,7 @@ "direction": { "value": "" } - }, - "renderPriority": null + } }, { "id": "c", @@ -214,8 +212,7 @@ "direction": { "value": "" } - }, - "renderPriority": null + } }, { "id": "d", @@ -258,8 +255,7 @@ "direction": { "value": "" } - }, - "renderPriority": null + } } ] }, diff --git a/testdata/d2oracle/TestDelete/key_with_edges.exp.json b/testdata/d2oracle/TestDelete/key_with_edges.exp.json index 3e3b4a2da..92d07ef4d 100644 --- a/testdata/d2oracle/TestDelete/key_with_edges.exp.json +++ b/testdata/d2oracle/TestDelete/key_with_edges.exp.json @@ -92,8 +92,7 @@ "direction": { "value": "" } - }, - "renderPriority": null + } }, "edges": null, "objects": [ @@ -180,8 +179,7 @@ "direction": { "value": "" } - }, - "renderPriority": null + } }, { "id": "meow", @@ -235,8 +233,7 @@ "direction": { "value": "" } - }, - "renderPriority": null + } }, { "id": "bark", @@ -290,8 +287,7 @@ "direction": { "value": "" } - }, - "renderPriority": null + } } ] }, diff --git a/testdata/d2oracle/TestDelete/key_with_edges_2.exp.json b/testdata/d2oracle/TestDelete/key_with_edges_2.exp.json index 561da5ef5..1a050b474 100644 --- a/testdata/d2oracle/TestDelete/key_with_edges_2.exp.json +++ b/testdata/d2oracle/TestDelete/key_with_edges_2.exp.json @@ -58,8 +58,7 @@ "direction": { "value": "" } - }, - "renderPriority": null + } }, "edges": null, "objects": [ @@ -115,8 +114,7 @@ "direction": { "value": "" } - }, - "renderPriority": null + } }, { "id": "bark", @@ -170,8 +168,7 @@ "direction": { "value": "" } - }, - "renderPriority": null + } } ] }, diff --git a/testdata/d2oracle/TestDelete/key_with_edges_3.exp.json b/testdata/d2oracle/TestDelete/key_with_edges_3.exp.json index 09f9f5f45..972602ab8 100644 --- a/testdata/d2oracle/TestDelete/key_with_edges_3.exp.json +++ b/testdata/d2oracle/TestDelete/key_with_edges_3.exp.json @@ -58,8 +58,7 @@ "direction": { "value": "" } - }, - "renderPriority": null + } }, "edges": null, "objects": [ @@ -115,8 +114,7 @@ "direction": { "value": "" } - }, - "renderPriority": null + } }, { "id": "bark", @@ -170,8 +168,7 @@ "direction": { "value": "" } - }, - "renderPriority": null + } } ] }, diff --git a/testdata/d2oracle/TestDelete/key_with_edges_4.exp.json b/testdata/d2oracle/TestDelete/key_with_edges_4.exp.json index 891ac2070..54537c67c 100644 --- a/testdata/d2oracle/TestDelete/key_with_edges_4.exp.json +++ b/testdata/d2oracle/TestDelete/key_with_edges_4.exp.json @@ -92,8 +92,7 @@ "direction": { "value": "" } - }, - "renderPriority": null + } }, "edges": null, "objects": [ @@ -180,8 +179,7 @@ "direction": { "value": "" } - }, - "renderPriority": null + } }, { "id": "meow", @@ -235,8 +233,7 @@ "direction": { "value": "" } - }, - "renderPriority": null + } }, { "id": "bark", @@ -290,8 +287,7 @@ "direction": { "value": "" } - }, - "renderPriority": null + } } ] }, diff --git a/testdata/d2oracle/TestDelete/multi_near.exp.json b/testdata/d2oracle/TestDelete/multi_near.exp.json index cba5f597e..52e790bd6 100644 --- a/testdata/d2oracle/TestDelete/multi_near.exp.json +++ b/testdata/d2oracle/TestDelete/multi_near.exp.json @@ -194,8 +194,7 @@ "direction": { "value": "" } - }, - "renderPriority": null + } }, "edges": null, "objects": [ @@ -240,8 +239,7 @@ "direction": { "value": "" } - }, - "renderPriority": null + } }, { "id": "Bluefish", @@ -299,8 +297,7 @@ "direction": { "value": "" } - }, - "renderPriority": null + } }, { "id": "Yo", @@ -358,8 +355,7 @@ "direction": { "value": "" } - }, - "renderPriority": null + } }, { "id": "Blah", @@ -402,8 +398,7 @@ "direction": { "value": "" } - }, - "renderPriority": null + } } ] }, diff --git a/testdata/d2oracle/TestDelete/multi_path_map_conflict.exp.json b/testdata/d2oracle/TestDelete/multi_path_map_conflict.exp.json index d80e57ef8..512dee2e2 100644 --- a/testdata/d2oracle/TestDelete/multi_path_map_conflict.exp.json +++ b/testdata/d2oracle/TestDelete/multi_path_map_conflict.exp.json @@ -128,8 +128,7 @@ "direction": { "value": "" } - }, - "renderPriority": null + } }, "edges": null, "objects": [ @@ -194,8 +193,7 @@ "direction": { "value": "" } - }, - "renderPriority": null + } }, { "id": "z 2", @@ -238,8 +236,7 @@ "direction": { "value": "" } - }, - "renderPriority": null + } }, { "id": "z", @@ -282,8 +279,7 @@ "direction": { "value": "" } - }, - "renderPriority": null + } } ] }, 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 f4757cca1..fe559c369 100644 --- a/testdata/d2oracle/TestDelete/multi_path_map_no_conflict.exp.json +++ b/testdata/d2oracle/TestDelete/multi_path_map_no_conflict.exp.json @@ -99,8 +99,7 @@ "direction": { "value": "" } - }, - "renderPriority": null + } }, "edges": null, "objects": [ @@ -145,8 +144,7 @@ "direction": { "value": "" } - }, - "renderPriority": null + } }, { "id": "z", @@ -189,8 +187,7 @@ "direction": { "value": "" } - }, - "renderPriority": null + } }, { "id": "z", @@ -233,8 +230,7 @@ "direction": { "value": "" } - }, - "renderPriority": null + } } ] }, diff --git a/testdata/d2oracle/TestDelete/multiple_flat_middle_container.exp.json b/testdata/d2oracle/TestDelete/multiple_flat_middle_container.exp.json index eeeff7108..c649b5ac0 100644 --- a/testdata/d2oracle/TestDelete/multiple_flat_middle_container.exp.json +++ b/testdata/d2oracle/TestDelete/multiple_flat_middle_container.exp.json @@ -92,8 +92,7 @@ "direction": { "value": "" } - }, - "renderPriority": null + } }, "edges": null, "objects": [ @@ -180,8 +179,7 @@ "direction": { "value": "" } - }, - "renderPriority": null + } }, { "id": "c", @@ -235,8 +233,7 @@ "direction": { "value": "" } - }, - "renderPriority": null + } }, { "id": "d", @@ -290,8 +287,7 @@ "direction": { "value": "" } - }, - "renderPriority": null + } } ] }, diff --git a/testdata/d2oracle/TestDelete/multiple_flat_style.exp.json b/testdata/d2oracle/TestDelete/multiple_flat_style.exp.json index 8d3f7ab18..247e72c2f 100644 --- a/testdata/d2oracle/TestDelete/multiple_flat_style.exp.json +++ b/testdata/d2oracle/TestDelete/multiple_flat_style.exp.json @@ -75,8 +75,7 @@ "direction": { "value": "" } - }, - "renderPriority": null + } }, "edges": [], "objects": [ @@ -147,8 +146,7 @@ "direction": { "value": "" } - }, - "renderPriority": null + } } ] }, diff --git a/testdata/d2oracle/TestDelete/multiple_map_styles.exp.json b/testdata/d2oracle/TestDelete/multiple_map_styles.exp.json index cdaf8faa6..cfa33cab0 100644 --- a/testdata/d2oracle/TestDelete/multiple_map_styles.exp.json +++ b/testdata/d2oracle/TestDelete/multiple_map_styles.exp.json @@ -111,8 +111,7 @@ "direction": { "value": "" } - }, - "renderPriority": null + } }, "edges": [], "objects": [ @@ -161,8 +160,7 @@ "direction": { "value": "" } - }, - "renderPriority": null + } } ] }, diff --git a/testdata/d2oracle/TestDelete/near.exp.json b/testdata/d2oracle/TestDelete/near.exp.json index c310382ac..6991d9d32 100644 --- a/testdata/d2oracle/TestDelete/near.exp.json +++ b/testdata/d2oracle/TestDelete/near.exp.json @@ -47,8 +47,7 @@ "direction": { "value": "" } - }, - "renderPriority": null + } }, "edges": null, "objects": [ @@ -93,8 +92,7 @@ "direction": { "value": "" } - }, - "renderPriority": null + } } ] }, diff --git a/testdata/d2oracle/TestDelete/nested.exp.json b/testdata/d2oracle/TestDelete/nested.exp.json index 622f2272b..df80511e7 100644 --- a/testdata/d2oracle/TestDelete/nested.exp.json +++ b/testdata/d2oracle/TestDelete/nested.exp.json @@ -69,8 +69,7 @@ "direction": { "value": "" } - }, - "renderPriority": null + } }, "edges": null, "objects": [ @@ -137,8 +136,7 @@ "direction": { "value": "" } - }, - "renderPriority": null + } }, { "id": "c", @@ -203,8 +201,7 @@ "direction": { "value": "" } - }, - "renderPriority": null + } }, { "id": "d", @@ -269,8 +266,7 @@ "direction": { "value": "" } - }, - "renderPriority": null + } } ] }, diff --git a/testdata/d2oracle/TestDelete/nested_2.exp.json b/testdata/d2oracle/TestDelete/nested_2.exp.json index 7fda03e84..8279fda83 100644 --- a/testdata/d2oracle/TestDelete/nested_2.exp.json +++ b/testdata/d2oracle/TestDelete/nested_2.exp.json @@ -69,8 +69,7 @@ "direction": { "value": "" } - }, - "renderPriority": null + } }, "edges": null, "objects": [ @@ -137,8 +136,7 @@ "direction": { "value": "" } - }, - "renderPriority": null + } }, { "id": "b", @@ -203,8 +201,7 @@ "direction": { "value": "" } - }, - "renderPriority": null + } }, { "id": "c", @@ -269,8 +266,7 @@ "direction": { "value": "" } - }, - "renderPriority": null + } } ] }, diff --git a/testdata/d2oracle/TestDelete/nested_edge_key_style.exp.json b/testdata/d2oracle/TestDelete/nested_edge_key_style.exp.json index b7d2a38cf..c37eda91d 100644 --- a/testdata/d2oracle/TestDelete/nested_edge_key_style.exp.json +++ b/testdata/d2oracle/TestDelete/nested_edge_key_style.exp.json @@ -99,8 +99,7 @@ "direction": { "value": "" } - }, - "renderPriority": null + } }, "edges": [ { @@ -176,8 +175,7 @@ "direction": { "value": "" } - }, - "renderPriority": null + } }, { "id": "x", @@ -220,8 +218,7 @@ "direction": { "value": "" } - }, - "renderPriority": null + } }, { "id": "y", @@ -264,8 +261,7 @@ "direction": { "value": "" } - }, - "renderPriority": null + } } ] }, diff --git a/testdata/d2oracle/TestDelete/nested_flat_style.exp.json b/testdata/d2oracle/TestDelete/nested_flat_style.exp.json index d8ccfe995..168b2d4b9 100644 --- a/testdata/d2oracle/TestDelete/nested_flat_style.exp.json +++ b/testdata/d2oracle/TestDelete/nested_flat_style.exp.json @@ -47,8 +47,7 @@ "direction": { "value": "" } - }, - "renderPriority": null + } }, "edges": null, "objects": [ @@ -93,8 +92,7 @@ "direction": { "value": "" } - }, - "renderPriority": null + } } ] }, diff --git a/testdata/d2oracle/TestDelete/nested_reserved.exp.json b/testdata/d2oracle/TestDelete/nested_reserved.exp.json index be279b8c0..3795fe11d 100644 --- a/testdata/d2oracle/TestDelete/nested_reserved.exp.json +++ b/testdata/d2oracle/TestDelete/nested_reserved.exp.json @@ -103,8 +103,7 @@ "direction": { "value": "" } - }, - "renderPriority": null + } }, "edges": null, "objects": [ @@ -202,8 +201,7 @@ "direction": { "value": "" } - }, - "renderPriority": null + } }, { "id": "y", @@ -299,8 +297,7 @@ "direction": { "value": "" } - }, - "renderPriority": null + } }, { "id": "jingle", @@ -365,8 +362,7 @@ "direction": { "value": "" } - }, - "renderPriority": null + } } ] }, diff --git a/testdata/d2oracle/TestDelete/nested_underscore_update.exp.json b/testdata/d2oracle/TestDelete/nested_underscore_update.exp.json index 4e84d247e..23921a096 100644 --- a/testdata/d2oracle/TestDelete/nested_underscore_update.exp.json +++ b/testdata/d2oracle/TestDelete/nested_underscore_update.exp.json @@ -87,8 +87,7 @@ "direction": { "value": "" } - }, - "renderPriority": null + } }, "edges": null, "objects": [ @@ -133,8 +132,7 @@ "direction": { "value": "" } - }, - "renderPriority": null + } }, { "id": "pipe", @@ -188,8 +186,7 @@ "direction": { "value": "" } - }, - "renderPriority": null + } } ] }, diff --git a/testdata/d2oracle/TestDelete/node_in_edge.exp.json b/testdata/d2oracle/TestDelete/node_in_edge.exp.json index a877e9765..d56558fd8 100644 --- a/testdata/d2oracle/TestDelete/node_in_edge.exp.json +++ b/testdata/d2oracle/TestDelete/node_in_edge.exp.json @@ -168,8 +168,7 @@ "direction": { "value": "" } - }, - "renderPriority": null + } }, "edges": [ { @@ -275,8 +274,7 @@ "direction": { "value": "" } - }, - "renderPriority": null + } }, { "id": "\"what's up\"", @@ -319,8 +317,7 @@ "direction": { "value": "" } - }, - "renderPriority": null + } }, { "id": "x", @@ -363,8 +360,7 @@ "direction": { "value": "" } - }, - "renderPriority": null + } }, { "id": "y", @@ -407,8 +403,7 @@ "direction": { "value": "" } - }, - "renderPriority": null + } }, { "id": "q", @@ -451,8 +446,7 @@ "direction": { "value": "" } - }, - "renderPriority": null + } }, { "id": "p", @@ -495,8 +489,7 @@ "direction": { "value": "" } - }, - "renderPriority": null + } } ] }, diff --git a/testdata/d2oracle/TestDelete/node_in_edge_last.exp.json b/testdata/d2oracle/TestDelete/node_in_edge_last.exp.json index 114905028..dd1456fcf 100644 --- a/testdata/d2oracle/TestDelete/node_in_edge_last.exp.json +++ b/testdata/d2oracle/TestDelete/node_in_edge_last.exp.json @@ -207,8 +207,7 @@ "direction": { "value": "" } - }, - "renderPriority": null + } }, "edges": [ { @@ -355,8 +354,7 @@ "direction": { "value": "" } - }, - "renderPriority": null + } }, { "id": "b", @@ -410,8 +408,7 @@ "direction": { "value": "" } - }, - "renderPriority": null + } }, { "id": "\"what's up\"", @@ -454,8 +451,7 @@ "direction": { "value": "" } - }, - "renderPriority": null + } }, { "id": "x", @@ -498,8 +494,7 @@ "direction": { "value": "" } - }, - "renderPriority": null + } }, { "id": "y", @@ -562,8 +557,7 @@ "direction": { "value": "" } - }, - "renderPriority": null + } }, { "id": "z", @@ -626,8 +620,7 @@ "direction": { "value": "" } - }, - "renderPriority": null + } }, { "id": "q", @@ -670,8 +663,7 @@ "direction": { "value": "" } - }, - "renderPriority": null + } } ] }, diff --git a/testdata/d2oracle/TestDelete/only_delete_edge_reserved.exp.json b/testdata/d2oracle/TestDelete/only_delete_edge_reserved.exp.json index 76a90a937..47a45ceaa 100644 --- a/testdata/d2oracle/TestDelete/only_delete_edge_reserved.exp.json +++ b/testdata/d2oracle/TestDelete/only_delete_edge_reserved.exp.json @@ -166,8 +166,7 @@ "direction": { "value": "" } - }, - "renderPriority": null + } }, "edges": [ { @@ -267,8 +266,7 @@ "direction": { "value": "" } - }, - "renderPriority": null + } }, { "id": "B", @@ -331,8 +329,7 @@ "direction": { "value": "" } - }, - "renderPriority": null + } } ] }, diff --git a/testdata/d2oracle/TestDelete/only_delete_obj_reserved.exp.json b/testdata/d2oracle/TestDelete/only_delete_obj_reserved.exp.json index e272bd4c7..61f9dcdee 100644 --- a/testdata/d2oracle/TestDelete/only_delete_obj_reserved.exp.json +++ b/testdata/d2oracle/TestDelete/only_delete_obj_reserved.exp.json @@ -166,8 +166,7 @@ "direction": { "value": "" } - }, - "renderPriority": null + } }, "edges": [ { @@ -267,8 +266,7 @@ "direction": { "value": "" } - }, - "renderPriority": null + } }, { "id": "B", @@ -331,8 +329,7 @@ "direction": { "value": "" } - }, - "renderPriority": null + } } ] }, diff --git a/testdata/d2oracle/TestDelete/order_1.exp.json b/testdata/d2oracle/TestDelete/order_1.exp.json index 2ffe70df9..c83f093cc 100644 --- a/testdata/d2oracle/TestDelete/order_1.exp.json +++ b/testdata/d2oracle/TestDelete/order_1.exp.json @@ -93,8 +93,7 @@ "direction": { "value": "" } - }, - "renderPriority": null + } }, "edges": [ { @@ -170,8 +169,7 @@ "direction": { "value": "" } - }, - "renderPriority": null + } }, { "id": "y", @@ -214,8 +212,7 @@ "direction": { "value": "" } - }, - "renderPriority": null + } }, { "id": "z", @@ -258,8 +255,7 @@ "direction": { "value": "" } - }, - "renderPriority": null + } } ] }, diff --git a/testdata/d2oracle/TestDelete/order_2.exp.json b/testdata/d2oracle/TestDelete/order_2.exp.json index f3159d273..71042a674 100644 --- a/testdata/d2oracle/TestDelete/order_2.exp.json +++ b/testdata/d2oracle/TestDelete/order_2.exp.json @@ -70,8 +70,7 @@ "direction": { "value": "" } - }, - "renderPriority": null + } }, "edges": null, "objects": [ @@ -116,8 +115,7 @@ "direction": { "value": "" } - }, - "renderPriority": null + } }, { "id": "z", @@ -160,8 +158,7 @@ "direction": { "value": "" } - }, - "renderPriority": null + } } ] }, diff --git a/testdata/d2oracle/TestDelete/order_3.exp.json b/testdata/d2oracle/TestDelete/order_3.exp.json index 15efbb349..7c75321f9 100644 --- a/testdata/d2oracle/TestDelete/order_3.exp.json +++ b/testdata/d2oracle/TestDelete/order_3.exp.json @@ -70,8 +70,7 @@ "direction": { "value": "" } - }, - "renderPriority": null + } }, "edges": null, "objects": [ @@ -116,8 +115,7 @@ "direction": { "value": "" } - }, - "renderPriority": null + } }, { "id": "z", @@ -160,8 +158,7 @@ "direction": { "value": "" } - }, - "renderPriority": null + } } ] }, diff --git a/testdata/d2oracle/TestDelete/order_4.exp.json b/testdata/d2oracle/TestDelete/order_4.exp.json index 7bbf3ecea..ab41da5d0 100644 --- a/testdata/d2oracle/TestDelete/order_4.exp.json +++ b/testdata/d2oracle/TestDelete/order_4.exp.json @@ -47,8 +47,7 @@ "direction": { "value": "" } - }, - "renderPriority": null + } }, "edges": null, "objects": [ @@ -93,8 +92,7 @@ "direction": { "value": "" } - }, - "renderPriority": null + } } ] }, diff --git a/testdata/d2oracle/TestDelete/order_5.exp.json b/testdata/d2oracle/TestDelete/order_5.exp.json index 208e77fbe..c3336c5dd 100644 --- a/testdata/d2oracle/TestDelete/order_5.exp.json +++ b/testdata/d2oracle/TestDelete/order_5.exp.json @@ -145,8 +145,7 @@ "direction": { "value": "" } - }, - "renderPriority": null + } }, "edges": [ { @@ -252,8 +251,7 @@ "direction": { "value": "" } - }, - "renderPriority": null + } }, { "id": "b", @@ -296,8 +294,7 @@ "direction": { "value": "" } - }, - "renderPriority": null + } }, { "id": "c", @@ -340,8 +337,7 @@ "direction": { "value": "" } - }, - "renderPriority": null + } }, { "id": "q", @@ -384,8 +380,7 @@ "direction": { "value": "" } - }, - "renderPriority": null + } }, { "id": "p", @@ -428,8 +423,7 @@ "direction": { "value": "" } - }, - "renderPriority": null + } } ] }, diff --git a/testdata/d2oracle/TestDelete/order_6.exp.json b/testdata/d2oracle/TestDelete/order_6.exp.json index 959addd8e..3f2e88242 100644 --- a/testdata/d2oracle/TestDelete/order_6.exp.json +++ b/testdata/d2oracle/TestDelete/order_6.exp.json @@ -121,8 +121,7 @@ "direction": { "value": "" } - }, - "renderPriority": null + } }, "edges": null, "objects": [ @@ -209,8 +208,7 @@ "direction": { "value": "" } - }, - "renderPriority": null + } }, { "id": "lol", @@ -253,8 +251,7 @@ "direction": { "value": "" } - }, - "renderPriority": null + } }, { "id": "p", @@ -319,8 +316,7 @@ "direction": { "value": "" } - }, - "renderPriority": null + } }, { "id": "q", @@ -385,8 +381,7 @@ "direction": { "value": "" } - }, - "renderPriority": null + } } ] }, diff --git a/testdata/d2oracle/TestDelete/order_7.exp.json b/testdata/d2oracle/TestDelete/order_7.exp.json index ae5aa7222..d6744ebb7 100644 --- a/testdata/d2oracle/TestDelete/order_7.exp.json +++ b/testdata/d2oracle/TestDelete/order_7.exp.json @@ -132,8 +132,7 @@ "direction": { "value": "" } - }, - "renderPriority": null + } }, "edges": null, "objects": [ @@ -231,8 +230,7 @@ "direction": { "value": "" } - }, - "renderPriority": null + } }, { "id": "lol", @@ -275,8 +273,7 @@ "direction": { "value": "" } - }, - "renderPriority": null + } }, { "id": "p", @@ -352,8 +349,7 @@ "direction": { "value": "" } - }, - "renderPriority": null + } }, { "id": "q", @@ -429,8 +425,7 @@ "direction": { "value": "" } - }, - "renderPriority": null + } }, { "id": "more", @@ -506,8 +501,7 @@ "direction": { "value": "" } - }, - "renderPriority": null + } } ] }, diff --git a/testdata/d2oracle/TestDelete/order_8.exp.json b/testdata/d2oracle/TestDelete/order_8.exp.json index f18ba1800..735aad526 100644 --- a/testdata/d2oracle/TestDelete/order_8.exp.json +++ b/testdata/d2oracle/TestDelete/order_8.exp.json @@ -139,8 +139,7 @@ "direction": { "value": "" } - }, - "renderPriority": null + } }, "edges": null, "objects": [ @@ -185,8 +184,7 @@ "direction": { "value": "" } - }, - "renderPriority": null + } }, { "id": "y", @@ -229,8 +227,7 @@ "direction": { "value": "" } - }, - "renderPriority": null + } }, { "id": "zebra", @@ -273,8 +270,7 @@ "direction": { "value": "" } - }, - "renderPriority": null + } }, { "id": "q", @@ -317,8 +313,7 @@ "direction": { "value": "" } - }, - "renderPriority": null + } }, { "id": "kang", @@ -361,8 +356,7 @@ "direction": { "value": "" } - }, - "renderPriority": null + } } ] }, diff --git a/testdata/d2oracle/TestDelete/shape_class.exp.json b/testdata/d2oracle/TestDelete/shape_class.exp.json index 4005b3a52..ed1e50f18 100644 --- a/testdata/d2oracle/TestDelete/shape_class.exp.json +++ b/testdata/d2oracle/TestDelete/shape_class.exp.json @@ -47,8 +47,7 @@ "direction": { "value": "" } - }, - "renderPriority": null + } }, "edges": null, "objects": [ @@ -93,8 +92,7 @@ "direction": { "value": "" } - }, - "renderPriority": null + } } ] }, diff --git a/testdata/d2oracle/TestDelete/shape_sql_table.exp.json b/testdata/d2oracle/TestDelete/shape_sql_table.exp.json index 95693c309..419ea072a 100644 --- a/testdata/d2oracle/TestDelete/shape_sql_table.exp.json +++ b/testdata/d2oracle/TestDelete/shape_sql_table.exp.json @@ -267,8 +267,7 @@ "direction": { "value": "" } - }, - "renderPriority": null + } }, "edges": [ { @@ -344,8 +343,7 @@ "direction": { "value": "" } - }, - "renderPriority": null + } }, { "id": "disks", @@ -449,8 +447,7 @@ "direction": { "value": "" } - }, - "renderPriority": null + } }, { "id": "AWS S3 Vancouver", @@ -493,8 +490,7 @@ "direction": { "value": "" } - }, - "renderPriority": null + } } ] }, diff --git a/testdata/d2oracle/TestDelete/singular_flat_style.exp.json b/testdata/d2oracle/TestDelete/singular_flat_style.exp.json index 0b2225cc4..442097e70 100644 --- a/testdata/d2oracle/TestDelete/singular_flat_style.exp.json +++ b/testdata/d2oracle/TestDelete/singular_flat_style.exp.json @@ -47,8 +47,7 @@ "direction": { "value": "" } - }, - "renderPriority": null + } }, "edges": null, "objects": [ @@ -93,8 +92,7 @@ "direction": { "value": "" } - }, - "renderPriority": null + } } ] }, diff --git a/testdata/d2oracle/TestDelete/singular_map_style.exp.json b/testdata/d2oracle/TestDelete/singular_map_style.exp.json index 2ff0d70fc..b75f55c35 100644 --- a/testdata/d2oracle/TestDelete/singular_map_style.exp.json +++ b/testdata/d2oracle/TestDelete/singular_map_style.exp.json @@ -47,8 +47,7 @@ "direction": { "value": "" } - }, - "renderPriority": null + } }, "edges": null, "objects": [ @@ -93,8 +92,7 @@ "direction": { "value": "" } - }, - "renderPriority": null + } } ] }, diff --git a/testdata/d2oracle/TestDelete/underscore_no_conflict.exp.json b/testdata/d2oracle/TestDelete/underscore_no_conflict.exp.json index 38f31be51..a19da74fe 100644 --- a/testdata/d2oracle/TestDelete/underscore_no_conflict.exp.json +++ b/testdata/d2oracle/TestDelete/underscore_no_conflict.exp.json @@ -110,8 +110,7 @@ "direction": { "value": "" } - }, - "renderPriority": null + } }, "edges": null, "objects": [ @@ -156,8 +155,7 @@ "direction": { "value": "" } - }, - "renderPriority": null + } }, { "id": "z", @@ -211,8 +209,7 @@ "direction": { "value": "" } - }, - "renderPriority": null + } }, { "id": "z", @@ -255,8 +252,7 @@ "direction": { "value": "" } - }, - "renderPriority": null + } } ] }, diff --git a/testdata/d2oracle/TestDelete/underscore_remove.exp.json b/testdata/d2oracle/TestDelete/underscore_remove.exp.json index ed625965a..dd78e801c 100644 --- a/testdata/d2oracle/TestDelete/underscore_remove.exp.json +++ b/testdata/d2oracle/TestDelete/underscore_remove.exp.json @@ -139,8 +139,7 @@ "direction": { "value": "" } - }, - "renderPriority": null + } }, "edges": [ { @@ -246,8 +245,7 @@ "direction": { "value": "" } - }, - "renderPriority": null + } }, { "id": "a", @@ -290,8 +288,7 @@ "direction": { "value": "" } - }, - "renderPriority": null + } }, { "id": "b", @@ -334,8 +331,7 @@ "direction": { "value": "" } - }, - "renderPriority": null + } }, { "id": "c", @@ -378,8 +374,7 @@ "direction": { "value": "" } - }, - "renderPriority": null + } }, { "id": "d", @@ -422,8 +417,7 @@ "direction": { "value": "" } - }, - "renderPriority": null + } } ] }, diff --git a/testdata/d2oracle/TestMove/append_multiple_styles.exp.json b/testdata/d2oracle/TestMove/append_multiple_styles.exp.json index ab5015156..5693019db 100644 --- a/testdata/d2oracle/TestMove/append_multiple_styles.exp.json +++ b/testdata/d2oracle/TestMove/append_multiple_styles.exp.json @@ -231,8 +231,7 @@ "direction": { "value": "" } - }, - "renderPriority": null + } }, "edges": [], "objects": [ @@ -277,8 +276,7 @@ "direction": { "value": "" } - }, - "renderPriority": null + } }, { "id": "a", @@ -348,8 +346,7 @@ "direction": { "value": "" } - }, - "renderPriority": null + } } ] }, diff --git a/testdata/d2oracle/TestMove/basic.exp.json b/testdata/d2oracle/TestMove/basic.exp.json index d7e10b17b..9216171b9 100644 --- a/testdata/d2oracle/TestMove/basic.exp.json +++ b/testdata/d2oracle/TestMove/basic.exp.json @@ -47,8 +47,7 @@ "direction": { "value": "" } - }, - "renderPriority": null + } }, "edges": null, "objects": [ @@ -93,8 +92,7 @@ "direction": { "value": "" } - }, - "renderPriority": null + } } ] }, diff --git a/testdata/d2oracle/TestMove/basic_nested.exp.json b/testdata/d2oracle/TestMove/basic_nested.exp.json index f3f13c6d9..5667c2d99 100644 --- a/testdata/d2oracle/TestMove/basic_nested.exp.json +++ b/testdata/d2oracle/TestMove/basic_nested.exp.json @@ -76,8 +76,7 @@ "direction": { "value": "" } - }, - "renderPriority": null + } }, "edges": null, "objects": [ @@ -122,8 +121,7 @@ "direction": { "value": "" } - }, - "renderPriority": null + } }, { "id": "c", @@ -166,8 +164,7 @@ "direction": { "value": "" } - }, - "renderPriority": null + } } ] }, diff --git a/testdata/d2oracle/TestMove/basic_out_of_container.exp.json b/testdata/d2oracle/TestMove/basic_out_of_container.exp.json index 98de41076..e80df6540 100644 --- a/testdata/d2oracle/TestMove/basic_out_of_container.exp.json +++ b/testdata/d2oracle/TestMove/basic_out_of_container.exp.json @@ -70,8 +70,7 @@ "direction": { "value": "" } - }, - "renderPriority": null + } }, "edges": null, "objects": [ @@ -116,8 +115,7 @@ "direction": { "value": "" } - }, - "renderPriority": null + } }, { "id": "b", @@ -160,8 +158,7 @@ "direction": { "value": "" } - }, - "renderPriority": null + } } ] }, diff --git a/testdata/d2oracle/TestMove/between_containers.exp.json b/testdata/d2oracle/TestMove/between_containers.exp.json index 73ea7b504..5b35c6d5e 100644 --- a/testdata/d2oracle/TestMove/between_containers.exp.json +++ b/testdata/d2oracle/TestMove/between_containers.exp.json @@ -99,8 +99,7 @@ "direction": { "value": "" } - }, - "renderPriority": null + } }, "edges": null, "objects": [ @@ -145,8 +144,7 @@ "direction": { "value": "" } - }, - "renderPriority": null + } }, { "id": "c", @@ -189,8 +187,7 @@ "direction": { "value": "" } - }, - "renderPriority": null + } }, { "id": "b", @@ -233,8 +230,7 @@ "direction": { "value": "" } - }, - "renderPriority": null + } } ] }, diff --git a/testdata/d2oracle/TestMove/chain_connected_nested.exp.json b/testdata/d2oracle/TestMove/chain_connected_nested.exp.json index 8e8efaba6..615332dbd 100644 --- a/testdata/d2oracle/TestMove/chain_connected_nested.exp.json +++ b/testdata/d2oracle/TestMove/chain_connected_nested.exp.json @@ -130,8 +130,7 @@ "direction": { "value": "" } - }, - "renderPriority": null + } }, "edges": [ { @@ -237,8 +236,7 @@ "direction": { "value": "" } - }, - "renderPriority": null + } }, { "id": "z", @@ -301,8 +299,7 @@ "direction": { "value": "" } - }, - "renderPriority": null + } }, { "id": "x", @@ -365,8 +362,7 @@ "direction": { "value": "" } - }, - "renderPriority": null + } } ] }, 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 9544fe4ad..865e6210b 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,8 +118,7 @@ "direction": { "value": "" } - }, - "renderPriority": null + } }, "edges": [ { @@ -236,8 +235,7 @@ "direction": { "value": "" } - }, - "renderPriority": null + } }, { "id": "b", @@ -291,8 +289,7 @@ "direction": { "value": "" } - }, - "renderPriority": null + } }, { "id": "x", @@ -355,8 +352,7 @@ "direction": { "value": "" } - }, - "renderPriority": null + } }, { "id": "z", @@ -399,8 +395,7 @@ "direction": { "value": "" } - }, - "renderPriority": null + } } ] }, diff --git a/testdata/d2oracle/TestMove/connected_nested.exp.json b/testdata/d2oracle/TestMove/connected_nested.exp.json index a5f227e2b..a5792a9d1 100644 --- a/testdata/d2oracle/TestMove/connected_nested.exp.json +++ b/testdata/d2oracle/TestMove/connected_nested.exp.json @@ -93,8 +93,7 @@ "direction": { "value": "" } - }, - "renderPriority": null + } }, "edges": [ { @@ -170,8 +169,7 @@ "direction": { "value": "" } - }, - "renderPriority": null + } }, { "id": "x", @@ -214,8 +212,7 @@ "direction": { "value": "" } - }, - "renderPriority": null + } }, { "id": "z", @@ -258,8 +255,7 @@ "direction": { "value": "" } - }, - "renderPriority": null + } } ] }, diff --git a/testdata/d2oracle/TestMove/container_near.exp.json b/testdata/d2oracle/TestMove/container_near.exp.json index 5dfb9a53b..2f8b2384c 100644 --- a/testdata/d2oracle/TestMove/container_near.exp.json +++ b/testdata/d2oracle/TestMove/container_near.exp.json @@ -201,8 +201,7 @@ "direction": { "value": "" } - }, - "renderPriority": null + } }, "edges": null, "objects": [ @@ -247,8 +246,7 @@ "direction": { "value": "" } - }, - "renderPriority": null + } }, { "id": "y", @@ -328,8 +326,7 @@ "direction": { "value": "" } - }, - "renderPriority": null + } }, { "id": "a", @@ -383,8 +380,7 @@ "direction": { "value": "" } - }, - "renderPriority": null + } }, { "id": "z", @@ -438,8 +434,7 @@ "direction": { "value": "" } - }, - "renderPriority": null + } }, { "id": "y", @@ -482,8 +477,7 @@ "direction": { "value": "" } - }, - "renderPriority": null + } }, { "id": "a", @@ -526,8 +520,7 @@ "direction": { "value": "" } - }, - "renderPriority": null + } } ] }, diff --git a/testdata/d2oracle/TestMove/edge_across_containers.exp.json b/testdata/d2oracle/TestMove/edge_across_containers.exp.json index c4358d20e..6bb4de01d 100644 --- a/testdata/d2oracle/TestMove/edge_across_containers.exp.json +++ b/testdata/d2oracle/TestMove/edge_across_containers.exp.json @@ -144,8 +144,7 @@ "direction": { "value": "" } - }, - "renderPriority": null + } }, "edges": [ { @@ -221,8 +220,7 @@ "direction": { "value": "" } - }, - "renderPriority": null + } }, { "id": "d", @@ -307,8 +305,7 @@ "direction": { "value": "" } - }, - "renderPriority": null + } }, { "id": "b", @@ -373,8 +370,7 @@ "direction": { "value": "" } - }, - "renderPriority": null + } }, { "id": "c", @@ -417,8 +413,7 @@ "direction": { "value": "" } - }, - "renderPriority": null + } } ] }, diff --git a/testdata/d2oracle/TestMove/edge_basic.exp.json b/testdata/d2oracle/TestMove/edge_basic.exp.json index b4655c65e..353c67dc1 100644 --- a/testdata/d2oracle/TestMove/edge_basic.exp.json +++ b/testdata/d2oracle/TestMove/edge_basic.exp.json @@ -70,8 +70,7 @@ "direction": { "value": "" } - }, - "renderPriority": null + } }, "edges": [ { @@ -147,8 +146,7 @@ "direction": { "value": "" } - }, - "renderPriority": null + } }, { "id": "b", @@ -191,8 +189,7 @@ "direction": { "value": "" } - }, - "renderPriority": null + } } ] }, diff --git a/testdata/d2oracle/TestMove/edge_chain_basic.exp.json b/testdata/d2oracle/TestMove/edge_chain_basic.exp.json index a5dd1ea29..03d087ec1 100644 --- a/testdata/d2oracle/TestMove/edge_chain_basic.exp.json +++ b/testdata/d2oracle/TestMove/edge_chain_basic.exp.json @@ -107,8 +107,7 @@ "direction": { "value": "" } - }, - "renderPriority": null + } }, "edges": [ { @@ -214,8 +213,7 @@ "direction": { "value": "" } - }, - "renderPriority": null + } }, { "id": "b", @@ -278,8 +276,7 @@ "direction": { "value": "" } - }, - "renderPriority": null + } }, { "id": "c", @@ -322,8 +319,7 @@ "direction": { "value": "" } - }, - "renderPriority": null + } } ] }, diff --git a/testdata/d2oracle/TestMove/edge_chain_circular.exp.json b/testdata/d2oracle/TestMove/edge_chain_circular.exp.json index c02c9febd..5e0fd751c 100644 --- a/testdata/d2oracle/TestMove/edge_chain_circular.exp.json +++ b/testdata/d2oracle/TestMove/edge_chain_circular.exp.json @@ -158,8 +158,7 @@ "direction": { "value": "" } - }, - "renderPriority": null + } }, "edges": [ { @@ -265,8 +264,7 @@ "direction": { "value": "" } - }, - "renderPriority": null + } }, { "id": "b", @@ -351,8 +349,7 @@ "direction": { "value": "" } - }, - "renderPriority": null + } }, { "id": "c", @@ -415,8 +412,7 @@ "direction": { "value": "" } - }, - "renderPriority": null + } } ] }, diff --git a/testdata/d2oracle/TestMove/edge_chain_into_container.exp.json b/testdata/d2oracle/TestMove/edge_chain_into_container.exp.json index 848b413e4..e53bd0bec 100644 --- a/testdata/d2oracle/TestMove/edge_chain_into_container.exp.json +++ b/testdata/d2oracle/TestMove/edge_chain_into_container.exp.json @@ -141,8 +141,7 @@ "direction": { "value": "" } - }, - "renderPriority": null + } }, "edges": [ { @@ -279,8 +278,7 @@ "direction": { "value": "" } - }, - "renderPriority": null + } }, { "id": "a", @@ -334,8 +332,7 @@ "direction": { "value": "" } - }, - "renderPriority": null + } }, { "id": "b", @@ -398,8 +395,7 @@ "direction": { "value": "" } - }, - "renderPriority": null + } }, { "id": "c", @@ -442,8 +438,7 @@ "direction": { "value": "" } - }, - "renderPriority": null + } } ] }, diff --git a/testdata/d2oracle/TestMove/edge_chain_out_container.exp.json b/testdata/d2oracle/TestMove/edge_chain_out_container.exp.json index c05a06c77..38c443c4a 100644 --- a/testdata/d2oracle/TestMove/edge_chain_out_container.exp.json +++ b/testdata/d2oracle/TestMove/edge_chain_out_container.exp.json @@ -158,8 +158,7 @@ "direction": { "value": "" } - }, - "renderPriority": null + } }, "edges": [ { @@ -265,8 +264,7 @@ "direction": { "value": "" } - }, - "renderPriority": null + } }, { "id": "b", @@ -309,8 +307,7 @@ "direction": { "value": "" } - }, - "renderPriority": null + } }, { "id": "c", @@ -395,8 +392,7 @@ "direction": { "value": "" } - }, - "renderPriority": null + } }, { "id": "d", @@ -439,8 +435,7 @@ "direction": { "value": "" } - }, - "renderPriority": null + } } ] }, diff --git a/testdata/d2oracle/TestMove/edge_conflict.exp.json b/testdata/d2oracle/TestMove/edge_conflict.exp.json index e69f7ca5a..62c325c64 100644 --- a/testdata/d2oracle/TestMove/edge_conflict.exp.json +++ b/testdata/d2oracle/TestMove/edge_conflict.exp.json @@ -144,8 +144,7 @@ "direction": { "value": "" } - }, - "renderPriority": null + } }, "edges": [ { @@ -221,8 +220,7 @@ "direction": { "value": "" } - }, - "renderPriority": null + } }, { "id": "x", @@ -265,8 +263,7 @@ "direction": { "value": "" } - }, - "renderPriority": null + } }, { "id": "y 2", @@ -351,8 +348,7 @@ "direction": { "value": "" } - }, - "renderPriority": null + } }, { "id": "a", @@ -406,8 +402,7 @@ "direction": { "value": "" } - }, - "renderPriority": null + } }, { "id": "b", @@ -461,8 +456,7 @@ "direction": { "value": "" } - }, - "renderPriority": null + } } ] }, diff --git a/testdata/d2oracle/TestMove/edge_into_container.exp.json b/testdata/d2oracle/TestMove/edge_into_container.exp.json index 05e6c63b9..6218e4fd0 100644 --- a/testdata/d2oracle/TestMove/edge_into_container.exp.json +++ b/testdata/d2oracle/TestMove/edge_into_container.exp.json @@ -133,8 +133,7 @@ "direction": { "value": "" } - }, - "renderPriority": null + } }, "edges": [ { @@ -241,8 +240,7 @@ "direction": { "value": "" } - }, - "renderPriority": null + } }, { "id": "d", @@ -285,8 +283,7 @@ "direction": { "value": "" } - }, - "renderPriority": null + } }, { "id": "b", @@ -340,8 +337,7 @@ "direction": { "value": "" } - }, - "renderPriority": null + } }, { "id": "c", @@ -384,8 +380,7 @@ "direction": { "value": "" } - }, - "renderPriority": null + } } ] }, diff --git a/testdata/d2oracle/TestMove/edge_nested_basic.exp.json b/testdata/d2oracle/TestMove/edge_nested_basic.exp.json index 198776c77..902b1a123 100644 --- a/testdata/d2oracle/TestMove/edge_nested_basic.exp.json +++ b/testdata/d2oracle/TestMove/edge_nested_basic.exp.json @@ -99,8 +99,7 @@ "direction": { "value": "" } - }, - "renderPriority": null + } }, "edges": [ { @@ -176,8 +175,7 @@ "direction": { "value": "" } - }, - "renderPriority": null + } }, { "id": "d", @@ -220,8 +218,7 @@ "direction": { "value": "" } - }, - "renderPriority": null + } }, { "id": "c", @@ -264,8 +261,7 @@ "direction": { "value": "" } - }, - "renderPriority": null + } } ] }, diff --git a/testdata/d2oracle/TestMove/edge_out_of_container.exp.json b/testdata/d2oracle/TestMove/edge_out_of_container.exp.json index a1056410f..252f57ea1 100644 --- a/testdata/d2oracle/TestMove/edge_out_of_container.exp.json +++ b/testdata/d2oracle/TestMove/edge_out_of_container.exp.json @@ -110,8 +110,7 @@ "direction": { "value": "" } - }, - "renderPriority": null + } }, "edges": [ { @@ -187,8 +186,7 @@ "direction": { "value": "" } - }, - "renderPriority": null + } }, { "id": "b", @@ -242,8 +240,7 @@ "direction": { "value": "" } - }, - "renderPriority": null + } }, { "id": "c", @@ -286,8 +283,7 @@ "direction": { "value": "" } - }, - "renderPriority": null + } } ] }, diff --git a/testdata/d2oracle/TestMove/extend_map.exp.json b/testdata/d2oracle/TestMove/extend_map.exp.json index 42dd4613c..e1335c7f0 100644 --- a/testdata/d2oracle/TestMove/extend_map.exp.json +++ b/testdata/d2oracle/TestMove/extend_map.exp.json @@ -157,8 +157,7 @@ "direction": { "value": "" } - }, - "renderPriority": null + } }, "edges": null, "objects": [ @@ -223,8 +222,7 @@ "direction": { "value": "" } - }, - "renderPriority": null + } }, { "id": "e", @@ -267,8 +265,7 @@ "direction": { "value": "" } - }, - "renderPriority": null + } }, { "id": "c", @@ -311,8 +308,7 @@ "direction": { "value": "" } - }, - "renderPriority": null + } }, { "id": "b", @@ -355,8 +351,7 @@ "direction": { "value": "" } - }, - "renderPriority": null + } } ] }, diff --git a/testdata/d2oracle/TestMove/extend_stationary_path.exp.json b/testdata/d2oracle/TestMove/extend_stationary_path.exp.json index 8b6c579c7..5ad3f58bd 100644 --- a/testdata/d2oracle/TestMove/extend_stationary_path.exp.json +++ b/testdata/d2oracle/TestMove/extend_stationary_path.exp.json @@ -150,8 +150,7 @@ "direction": { "value": "" } - }, - "renderPriority": null + } }, "edges": null, "objects": [ @@ -238,8 +237,7 @@ "direction": { "value": "" } - }, - "renderPriority": null + } }, { "id": "c", @@ -324,8 +322,7 @@ "direction": { "value": "" } - }, - "renderPriority": null + } }, { "id": "b", @@ -410,8 +407,7 @@ "direction": { "value": "" } - }, - "renderPriority": null + } } ] }, diff --git a/testdata/d2oracle/TestMove/flat_between_containers.exp.json b/testdata/d2oracle/TestMove/flat_between_containers.exp.json index dbf89a969..b62a33065 100644 --- a/testdata/d2oracle/TestMove/flat_between_containers.exp.json +++ b/testdata/d2oracle/TestMove/flat_between_containers.exp.json @@ -99,8 +99,7 @@ "direction": { "value": "" } - }, - "renderPriority": null + } }, "edges": null, "objects": [ @@ -145,8 +144,7 @@ "direction": { "value": "" } - }, - "renderPriority": null + } }, { "id": "c", @@ -189,8 +187,7 @@ "direction": { "value": "" } - }, - "renderPriority": null + } }, { "id": "b", @@ -233,8 +230,7 @@ "direction": { "value": "" } - }, - "renderPriority": null + } } ] }, diff --git a/testdata/d2oracle/TestMove/flat_merge.exp.json b/testdata/d2oracle/TestMove/flat_merge.exp.json index 77025f91d..483fdb5ce 100644 --- a/testdata/d2oracle/TestMove/flat_merge.exp.json +++ b/testdata/d2oracle/TestMove/flat_merge.exp.json @@ -132,8 +132,7 @@ "direction": { "value": "" } - }, - "renderPriority": null + } }, "edges": null, "objects": [ @@ -178,8 +177,7 @@ "direction": { "value": "" } - }, - "renderPriority": null + } }, { "id": "c", @@ -222,8 +220,7 @@ "direction": { "value": "" } - }, - "renderPriority": null + } }, { "id": "d", @@ -266,8 +263,7 @@ "direction": { "value": "" } - }, - "renderPriority": null + } }, { "id": "b", @@ -310,8 +306,7 @@ "direction": { "value": "" } - }, - "renderPriority": null + } } ] }, diff --git a/testdata/d2oracle/TestMove/flat_middle_container.exp.json b/testdata/d2oracle/TestMove/flat_middle_container.exp.json index f471bbd8f..a45b71135 100644 --- a/testdata/d2oracle/TestMove/flat_middle_container.exp.json +++ b/testdata/d2oracle/TestMove/flat_middle_container.exp.json @@ -110,8 +110,7 @@ "direction": { "value": "" } - }, - "renderPriority": null + } }, "edges": null, "objects": [ @@ -167,8 +166,7 @@ "direction": { "value": "" } - }, - "renderPriority": null + } }, { "id": "c", @@ -222,8 +220,7 @@ "direction": { "value": "" } - }, - "renderPriority": null + } }, { "id": "d", @@ -266,8 +263,7 @@ "direction": { "value": "" } - }, - "renderPriority": null + } }, { "id": "b", @@ -310,8 +306,7 @@ "direction": { "value": "" } - }, - "renderPriority": null + } } ] }, diff --git a/testdata/d2oracle/TestMove/flat_nested_merge.exp.json b/testdata/d2oracle/TestMove/flat_nested_merge.exp.json index 3493ce75e..737c1a629 100644 --- a/testdata/d2oracle/TestMove/flat_nested_merge.exp.json +++ b/testdata/d2oracle/TestMove/flat_nested_merge.exp.json @@ -188,8 +188,7 @@ "direction": { "value": "" } - }, - "renderPriority": null + } }, "edges": null, "objects": [ @@ -267,8 +266,7 @@ "direction": { "value": "" } - }, - "renderPriority": null + } }, { "id": "b", @@ -344,8 +342,7 @@ "direction": { "value": "" } - }, - "renderPriority": null + } }, { "id": "d", @@ -421,8 +418,7 @@ "direction": { "value": "" } - }, - "renderPriority": null + } }, { "id": "e", @@ -498,8 +494,7 @@ "direction": { "value": "" } - }, - "renderPriority": null + } }, { "id": "p", @@ -553,8 +548,7 @@ "direction": { "value": "" } - }, - "renderPriority": null + } }, { "id": "q", @@ -608,8 +602,7 @@ "direction": { "value": "" } - }, - "renderPriority": null + } }, { "id": "b", @@ -674,8 +667,7 @@ "direction": { "value": "" } - }, - "renderPriority": null + } }, { "id": "m", @@ -740,8 +732,7 @@ "direction": { "value": "" } - }, - "renderPriority": null + } }, { "id": "o", @@ -806,8 +797,7 @@ "direction": { "value": "" } - }, - "renderPriority": null + } }, { "id": "z", @@ -850,8 +840,7 @@ "direction": { "value": "" } - }, - "renderPriority": null + } } ] }, 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 5733538ff..56cde491e 100644 --- a/testdata/d2oracle/TestMove/flat_nested_merge_multiple_refs.exp.json +++ b/testdata/d2oracle/TestMove/flat_nested_merge_multiple_refs.exp.json @@ -286,8 +286,7 @@ "direction": { "value": "" } - }, - "renderPriority": null + } }, "edges": null, "objects": [ @@ -427,8 +426,7 @@ "direction": { "value": "" } - }, - "renderPriority": null + } }, { "id": "b", @@ -577,8 +575,7 @@ "direction": { "value": "" } - }, - "renderPriority": null + } }, { "id": "c", @@ -727,8 +724,7 @@ "direction": { "value": "" } - }, - "renderPriority": null + } }, { "id": "d", @@ -771,8 +767,7 @@ "direction": { "value": "" } - }, - "renderPriority": null + } }, { "id": "e", @@ -815,8 +810,7 @@ "direction": { "value": "" } - }, - "renderPriority": null + } }, { "id": "f", @@ -859,8 +853,7 @@ "direction": { "value": "" } - }, - "renderPriority": null + } }, { "id": "g", @@ -903,8 +896,7 @@ "direction": { "value": "" } - }, - "renderPriority": null + } }, { "id": "q", @@ -980,8 +972,7 @@ "direction": { "value": "" } - }, - "renderPriority": null + } } ] }, 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 52982b85d..b5a99a192 100644 --- a/testdata/d2oracle/TestMove/flat_reparent_with_map_value.exp.json +++ b/testdata/d2oracle/TestMove/flat_reparent_with_map_value.exp.json @@ -109,8 +109,7 @@ "direction": { "value": "" } - }, - "renderPriority": null + } }, "edges": null, "objects": [ @@ -155,8 +154,7 @@ "direction": { "value": "" } - }, - "renderPriority": null + } }, { "id": "b", @@ -199,8 +197,7 @@ "direction": { "value": "" } - }, - "renderPriority": null + } } ] }, 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 8a5a8239e..be6599d0a 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,8 +150,7 @@ "direction": { "value": "" } - }, - "renderPriority": null + } }, "edges": null, "objects": [ @@ -196,8 +195,7 @@ "direction": { "value": "" } - }, - "renderPriority": null + } }, { "id": "c", @@ -240,8 +238,7 @@ "direction": { "value": "" } - }, - "renderPriority": null + } }, { "id": "b", @@ -284,8 +281,7 @@ "direction": { "value": "" } - }, - "renderPriority": null + } } ] }, diff --git a/testdata/d2oracle/TestMove/flat_reparent_with_value.exp.json b/testdata/d2oracle/TestMove/flat_reparent_with_value.exp.json index 27e8fdfe2..f4586228d 100644 --- a/testdata/d2oracle/TestMove/flat_reparent_with_value.exp.json +++ b/testdata/d2oracle/TestMove/flat_reparent_with_value.exp.json @@ -80,8 +80,7 @@ "direction": { "value": "" } - }, - "renderPriority": null + } }, "edges": null, "objects": [ @@ -126,8 +125,7 @@ "direction": { "value": "" } - }, - "renderPriority": null + } }, { "id": "b", @@ -170,8 +168,7 @@ "direction": { "value": "" } - }, - "renderPriority": null + } } ] }, diff --git a/testdata/d2oracle/TestMove/flat_style.exp.json b/testdata/d2oracle/TestMove/flat_style.exp.json index fdeea2244..8e0bcea62 100644 --- a/testdata/d2oracle/TestMove/flat_style.exp.json +++ b/testdata/d2oracle/TestMove/flat_style.exp.json @@ -159,8 +159,7 @@ "direction": { "value": "" } - }, - "renderPriority": null + } }, "edges": [], "objects": [ @@ -205,8 +204,7 @@ "direction": { "value": "" } - }, - "renderPriority": null + } }, { "id": "a", @@ -320,8 +318,7 @@ "direction": { "value": "" } - }, - "renderPriority": null + } } ] }, diff --git a/testdata/d2oracle/TestMove/full_edge_slice.exp.json b/testdata/d2oracle/TestMove/full_edge_slice.exp.json index e175ba309..238363e12 100644 --- a/testdata/d2oracle/TestMove/full_edge_slice.exp.json +++ b/testdata/d2oracle/TestMove/full_edge_slice.exp.json @@ -213,8 +213,7 @@ "direction": { "value": "" } - }, - "renderPriority": null + } }, "edges": [ { @@ -351,8 +350,7 @@ "direction": { "value": "" } - }, - "renderPriority": null + } }, { "id": "b", @@ -395,8 +393,7 @@ "direction": { "value": "" } - }, - "renderPriority": null + } }, { "id": "c", @@ -490,8 +487,7 @@ "direction": { "value": "" } - }, - "renderPriority": null + } }, { "id": "d", @@ -565,8 +561,7 @@ "direction": { "value": "" } - }, - "renderPriority": null + } } ] }, diff --git a/testdata/d2oracle/TestMove/full_slice.exp.json b/testdata/d2oracle/TestMove/full_slice.exp.json index 4d5af2a83..b7ffc8ff5 100644 --- a/testdata/d2oracle/TestMove/full_slice.exp.json +++ b/testdata/d2oracle/TestMove/full_slice.exp.json @@ -99,8 +99,7 @@ "direction": { "value": "" } - }, - "renderPriority": null + } }, "edges": null, "objects": [ @@ -145,8 +144,7 @@ "direction": { "value": "" } - }, - "renderPriority": null + } }, { "id": "b", @@ -189,8 +187,7 @@ "direction": { "value": "" } - }, - "renderPriority": null + } }, { "id": "c", @@ -233,8 +230,7 @@ "direction": { "value": "" } - }, - "renderPriority": null + } } ] }, diff --git a/testdata/d2oracle/TestMove/gnarly_1.exp.json b/testdata/d2oracle/TestMove/gnarly_1.exp.json index c973f3cc5..0c46d052f 100644 --- a/testdata/d2oracle/TestMove/gnarly_1.exp.json +++ b/testdata/d2oracle/TestMove/gnarly_1.exp.json @@ -357,8 +357,7 @@ "direction": { "value": "" } - }, - "renderPriority": null + } }, "edges": [ { @@ -556,8 +555,7 @@ "direction": { "value": "" } - }, - "renderPriority": null + } }, { "id": "b", @@ -600,8 +598,7 @@ "direction": { "value": "" } - }, - "renderPriority": null + } }, { "id": "p", @@ -706,8 +703,7 @@ "direction": { "value": "" } - }, - "renderPriority": null + } }, { "id": "q", @@ -781,8 +777,7 @@ "direction": { "value": "" } - }, - "renderPriority": null + } }, { "id": "a", @@ -847,8 +842,7 @@ "direction": { "value": "" } - }, - "renderPriority": null + } }, { "id": "b", @@ -913,8 +907,7 @@ "direction": { "value": "" } - }, - "renderPriority": null + } }, { "id": "c", @@ -979,8 +972,7 @@ "direction": { "value": "" } - }, - "renderPriority": null + } }, { "id": "e", @@ -1045,8 +1037,7 @@ "direction": { "value": "" } - }, - "renderPriority": null + } }, { "id": "f", @@ -1111,8 +1102,7 @@ "direction": { "value": "" } - }, - "renderPriority": null + } }, { "id": "p", @@ -1166,8 +1156,7 @@ "direction": { "value": "" } - }, - "renderPriority": null + } }, { "id": "q", @@ -1221,8 +1210,7 @@ "direction": { "value": "" } - }, - "renderPriority": null + } }, { "id": "x", @@ -1276,8 +1264,7 @@ "direction": { "value": "" } - }, - "renderPriority": null + } } ] }, diff --git a/testdata/d2oracle/TestMove/hoist_container_children.exp.json b/testdata/d2oracle/TestMove/hoist_container_children.exp.json index 4b16b7db1..729b716c4 100644 --- a/testdata/d2oracle/TestMove/hoist_container_children.exp.json +++ b/testdata/d2oracle/TestMove/hoist_container_children.exp.json @@ -122,8 +122,7 @@ "direction": { "value": "" } - }, - "renderPriority": null + } }, "edges": null, "objects": [ @@ -168,8 +167,7 @@ "direction": { "value": "" } - }, - "renderPriority": null + } }, { "id": "c", @@ -212,8 +210,7 @@ "direction": { "value": "" } - }, - "renderPriority": null + } }, { "id": "d", @@ -256,8 +253,7 @@ "direction": { "value": "" } - }, - "renderPriority": null + } }, { "id": "a", @@ -300,8 +296,7 @@ "direction": { "value": "" } - }, - "renderPriority": null + } } ] }, diff --git a/testdata/d2oracle/TestMove/into_container_existing_map.exp.json b/testdata/d2oracle/TestMove/into_container_existing_map.exp.json index d1aaa092d..cef9f69ca 100644 --- a/testdata/d2oracle/TestMove/into_container_existing_map.exp.json +++ b/testdata/d2oracle/TestMove/into_container_existing_map.exp.json @@ -99,8 +99,7 @@ "direction": { "value": "" } - }, - "renderPriority": null + } }, "edges": null, "objects": [ @@ -145,8 +144,7 @@ "direction": { "value": "" } - }, - "renderPriority": null + } }, { "id": "b", @@ -189,8 +187,7 @@ "direction": { "value": "" } - }, - "renderPriority": null + } }, { "id": "c", @@ -233,8 +230,7 @@ "direction": { "value": "" } - }, - "renderPriority": null + } } ] }, diff --git a/testdata/d2oracle/TestMove/into_container_nonexisting_map.exp.json b/testdata/d2oracle/TestMove/into_container_nonexisting_map.exp.json index 3d6432c7f..be51f69ce 100644 --- a/testdata/d2oracle/TestMove/into_container_nonexisting_map.exp.json +++ b/testdata/d2oracle/TestMove/into_container_nonexisting_map.exp.json @@ -76,8 +76,7 @@ "direction": { "value": "" } - }, - "renderPriority": null + } }, "edges": null, "objects": [ @@ -122,8 +121,7 @@ "direction": { "value": "" } - }, - "renderPriority": null + } }, { "id": "c", @@ -166,8 +164,7 @@ "direction": { "value": "" } - }, - "renderPriority": null + } } ] }, 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 95f3d377f..8fc2045a0 100644 --- a/testdata/d2oracle/TestMove/into_container_with_flat_keys.exp.json +++ b/testdata/d2oracle/TestMove/into_container_with_flat_keys.exp.json @@ -210,8 +210,7 @@ "direction": { "value": "" } - }, - "renderPriority": null + } }, "edges": [], "objects": [ @@ -256,8 +255,7 @@ "direction": { "value": "" } - }, - "renderPriority": null + } }, { "id": "c", @@ -310,8 +308,7 @@ "direction": { "value": "" } - }, - "renderPriority": null + } } ] }, 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 9a7f77427..493b4cff5 100644 --- a/testdata/d2oracle/TestMove/into_container_with_flat_style.exp.json +++ b/testdata/d2oracle/TestMove/into_container_with_flat_style.exp.json @@ -116,8 +116,7 @@ "direction": { "value": "" } - }, - "renderPriority": null + } }, "edges": [], "objects": [ @@ -166,8 +165,7 @@ "direction": { "value": "" } - }, - "renderPriority": null + } }, { "id": "y", @@ -210,8 +208,7 @@ "direction": { "value": "" } - }, - "renderPriority": null + } } ] }, diff --git a/testdata/d2oracle/TestMove/map_transplant.exp.json b/testdata/d2oracle/TestMove/map_transplant.exp.json index 7a89b479d..0bcc93844 100644 --- a/testdata/d2oracle/TestMove/map_transplant.exp.json +++ b/testdata/d2oracle/TestMove/map_transplant.exp.json @@ -219,8 +219,7 @@ "direction": { "value": "" } - }, - "renderPriority": null + } }, "edges": [], "objects": [ @@ -265,8 +264,7 @@ "direction": { "value": "" } - }, - "renderPriority": null + } }, { "id": "c", @@ -309,8 +307,7 @@ "direction": { "value": "" } - }, - "renderPriority": null + } }, { "id": "d", @@ -353,8 +350,7 @@ "direction": { "value": "" } - }, - "renderPriority": null + } }, { "id": "a", @@ -401,8 +397,7 @@ "direction": { "value": "" } - }, - "renderPriority": null + } } ] }, diff --git a/testdata/d2oracle/TestMove/map_with_label.exp.json b/testdata/d2oracle/TestMove/map_with_label.exp.json index d8c94db98..0f55d724b 100644 --- a/testdata/d2oracle/TestMove/map_with_label.exp.json +++ b/testdata/d2oracle/TestMove/map_with_label.exp.json @@ -109,8 +109,7 @@ "direction": { "value": "" } - }, - "renderPriority": null + } }, "edges": null, "objects": [ @@ -155,8 +154,7 @@ "direction": { "value": "" } - }, - "renderPriority": null + } }, { "id": "d", @@ -199,8 +197,7 @@ "direction": { "value": "" } - }, - "renderPriority": null + } }, { "id": "a", @@ -243,8 +240,7 @@ "direction": { "value": "" } - }, - "renderPriority": null + } } ] }, diff --git a/testdata/d2oracle/TestMove/merge_nested_maps.exp.json b/testdata/d2oracle/TestMove/merge_nested_maps.exp.json index 9c5cb055f..4d5eb8c56 100644 --- a/testdata/d2oracle/TestMove/merge_nested_maps.exp.json +++ b/testdata/d2oracle/TestMove/merge_nested_maps.exp.json @@ -270,8 +270,7 @@ "direction": { "value": "" } - }, - "renderPriority": null + } }, "edges": null, "objects": [ @@ -316,8 +315,7 @@ "direction": { "value": "" } - }, - "renderPriority": null + } }, { "id": "b", @@ -464,8 +462,7 @@ "direction": { "value": "" } - }, - "renderPriority": null + } }, { "id": "c", @@ -519,8 +516,7 @@ "direction": { "value": "" } - }, - "renderPriority": null + } }, { "id": "d", @@ -594,8 +590,7 @@ "direction": { "value": "" } - }, - "renderPriority": null + } }, { "id": "e", @@ -660,8 +655,7 @@ "direction": { "value": "" } - }, - "renderPriority": null + } }, { "id": "g", @@ -726,8 +720,7 @@ "direction": { "value": "" } - }, - "renderPriority": null + } }, { "id": "o", @@ -770,8 +763,7 @@ "direction": { "value": "" } - }, - "renderPriority": null + } }, { "id": "k", @@ -814,8 +806,7 @@ "direction": { "value": "" } - }, - "renderPriority": null + } } ] }, diff --git a/testdata/d2oracle/TestMove/merge_reserved.exp.json b/testdata/d2oracle/TestMove/merge_reserved.exp.json index 0c1698a6b..439d97217 100644 --- a/testdata/d2oracle/TestMove/merge_reserved.exp.json +++ b/testdata/d2oracle/TestMove/merge_reserved.exp.json @@ -261,8 +261,7 @@ "direction": { "value": "" } - }, - "renderPriority": null + } }, "edges": null, "objects": [ @@ -307,8 +306,7 @@ "direction": { "value": "" } - }, - "renderPriority": null + } }, { "id": "b", @@ -444,8 +442,7 @@ "direction": { "value": "" } - }, - "renderPriority": null + } }, { "id": "c", @@ -499,8 +496,7 @@ "direction": { "value": "" } - }, - "renderPriority": null + } }, { "id": "e", @@ -554,8 +550,7 @@ "direction": { "value": "" } - }, - "renderPriority": null + } }, { "id": "g", @@ -609,8 +604,7 @@ "direction": { "value": "" } - }, - "renderPriority": null + } }, { "id": "k", @@ -653,8 +647,7 @@ "direction": { "value": "" } - }, - "renderPriority": null + } } ] }, diff --git a/testdata/d2oracle/TestMove/middle_container.exp.json b/testdata/d2oracle/TestMove/middle_container.exp.json index 7690290ab..d0dd56f55 100644 --- a/testdata/d2oracle/TestMove/middle_container.exp.json +++ b/testdata/d2oracle/TestMove/middle_container.exp.json @@ -99,8 +99,7 @@ "direction": { "value": "" } - }, - "renderPriority": null + } }, "edges": null, "objects": [ @@ -145,8 +144,7 @@ "direction": { "value": "" } - }, - "renderPriority": null + } }, { "id": "z", @@ -189,8 +187,7 @@ "direction": { "value": "" } - }, - "renderPriority": null + } }, { "id": "y", @@ -233,8 +230,7 @@ "direction": { "value": "" } - }, - "renderPriority": null + } } ] }, diff --git a/testdata/d2oracle/TestMove/move_container_children.exp.json b/testdata/d2oracle/TestMove/move_container_children.exp.json index 6e0d51a10..f9c22268a 100644 --- a/testdata/d2oracle/TestMove/move_container_children.exp.json +++ b/testdata/d2oracle/TestMove/move_container_children.exp.json @@ -145,8 +145,7 @@ "direction": { "value": "" } - }, - "renderPriority": null + } }, "edges": null, "objects": [ @@ -191,8 +190,7 @@ "direction": { "value": "" } - }, - "renderPriority": null + } }, { "id": "q", @@ -235,8 +233,7 @@ "direction": { "value": "" } - }, - "renderPriority": null + } }, { "id": "a", @@ -279,8 +276,7 @@ "direction": { "value": "" } - }, - "renderPriority": null + } }, { "id": "d", @@ -323,8 +319,7 @@ "direction": { "value": "" } - }, - "renderPriority": null + } }, { "id": "b", @@ -367,8 +362,7 @@ "direction": { "value": "" } - }, - "renderPriority": null + } } ] }, diff --git a/testdata/d2oracle/TestMove/move_container_conflict_children.exp.json b/testdata/d2oracle/TestMove/move_container_conflict_children.exp.json index c962e4e00..b8bfb2e10 100644 --- a/testdata/d2oracle/TestMove/move_container_conflict_children.exp.json +++ b/testdata/d2oracle/TestMove/move_container_conflict_children.exp.json @@ -145,8 +145,7 @@ "direction": { "value": "" } - }, - "renderPriority": null + } }, "edges": null, "objects": [ @@ -191,8 +190,7 @@ "direction": { "value": "" } - }, - "renderPriority": null + } }, { "id": "b", @@ -235,8 +233,7 @@ "direction": { "value": "" } - }, - "renderPriority": null + } }, { "id": "a", @@ -279,8 +276,7 @@ "direction": { "value": "" } - }, - "renderPriority": null + } }, { "id": "d", @@ -323,8 +319,7 @@ "direction": { "value": "" } - }, - "renderPriority": null + } }, { "id": "x", @@ -367,8 +362,7 @@ "direction": { "value": "" } - }, - "renderPriority": null + } } ] }, 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 bdd4ddc23..6002bd77e 100644 --- a/testdata/d2oracle/TestMove/move_into_key_with_value.exp.json +++ b/testdata/d2oracle/TestMove/move_into_key_with_value.exp.json @@ -86,8 +86,7 @@ "direction": { "value": "" } - }, - "renderPriority": null + } }, "edges": null, "objects": [ @@ -132,8 +131,7 @@ "direction": { "value": "" } - }, - "renderPriority": null + } }, { "id": "b", @@ -176,8 +174,7 @@ "direction": { "value": "" } - }, - "renderPriority": null + } } ] }, diff --git a/testdata/d2oracle/TestMove/move_out_of_edge.exp.json b/testdata/d2oracle/TestMove/move_out_of_edge.exp.json index af0c6e06c..f16251f0c 100644 --- a/testdata/d2oracle/TestMove/move_out_of_edge.exp.json +++ b/testdata/d2oracle/TestMove/move_out_of_edge.exp.json @@ -126,8 +126,7 @@ "direction": { "value": "" } - }, - "renderPriority": null + } }, "edges": [ { @@ -203,8 +202,7 @@ "direction": { "value": "" } - }, - "renderPriority": null + } }, { "id": "a", @@ -258,8 +256,7 @@ "direction": { "value": "" } - }, - "renderPriority": null + } }, { "id": "c", @@ -313,8 +310,7 @@ "direction": { "value": "" } - }, - "renderPriority": null + } }, { "id": "d", @@ -379,8 +375,7 @@ "direction": { "value": "" } - }, - "renderPriority": null + } }, { "id": "e", @@ -445,8 +440,7 @@ "direction": { "value": "" } - }, - "renderPriority": null + } }, { "id": "f", @@ -511,8 +505,7 @@ "direction": { "value": "" } - }, - "renderPriority": null + } } ] }, 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 a8750a50f..6d69c47a9 100644 --- a/testdata/d2oracle/TestMove/move_out_of_nested_edge.exp.json +++ b/testdata/d2oracle/TestMove/move_out_of_nested_edge.exp.json @@ -166,8 +166,7 @@ "direction": { "value": "" } - }, - "renderPriority": null + } }, "edges": [ { @@ -296,8 +295,7 @@ "direction": { "value": "" } - }, - "renderPriority": null + } }, { "id": "e", @@ -393,8 +391,7 @@ "direction": { "value": "" } - }, - "renderPriority": null + } }, { "id": "q", @@ -437,8 +434,7 @@ "direction": { "value": "" } - }, - "renderPriority": null + } }, { "id": "a", @@ -492,8 +488,7 @@ "direction": { "value": "" } - }, - "renderPriority": null + } }, { "id": "c", @@ -547,8 +542,7 @@ "direction": { "value": "" } - }, - "renderPriority": null + } }, { "id": "f", @@ -613,8 +607,7 @@ "direction": { "value": "" } - }, - "renderPriority": null + } } ] }, diff --git a/testdata/d2oracle/TestMove/multiple_nesting_levels.exp.json b/testdata/d2oracle/TestMove/multiple_nesting_levels.exp.json index 4f3fec310..a75357554 100644 --- a/testdata/d2oracle/TestMove/multiple_nesting_levels.exp.json +++ b/testdata/d2oracle/TestMove/multiple_nesting_levels.exp.json @@ -281,8 +281,7 @@ "direction": { "value": "" } - }, - "renderPriority": null + } }, "edges": null, "objects": [ @@ -380,8 +379,7 @@ "direction": { "value": "" } - }, - "renderPriority": null + } }, { "id": "b", @@ -519,8 +517,7 @@ "direction": { "value": "" } - }, - "renderPriority": null + } }, { "id": "c", @@ -678,8 +675,7 @@ "direction": { "value": "" } - }, - "renderPriority": null + } }, { "id": "g", @@ -722,8 +718,7 @@ "direction": { "value": "" } - }, - "renderPriority": null + } }, { "id": "x", @@ -766,8 +761,7 @@ "direction": { "value": "" } - }, - "renderPriority": null + } }, { "id": "d", @@ -832,8 +826,7 @@ "direction": { "value": "" } - }, - "renderPriority": null + } }, { "id": "f", @@ -909,8 +902,7 @@ "direction": { "value": "" } - }, - "renderPriority": null + } } ] }, diff --git a/testdata/d2oracle/TestMove/near.exp.json b/testdata/d2oracle/TestMove/near.exp.json index 9d49eee57..9ee15fbae 100644 --- a/testdata/d2oracle/TestMove/near.exp.json +++ b/testdata/d2oracle/TestMove/near.exp.json @@ -109,8 +109,7 @@ "direction": { "value": "" } - }, - "renderPriority": null + } }, "edges": null, "objects": [ @@ -181,8 +180,7 @@ "direction": { "value": "" } - }, - "renderPriority": null + } }, { "id": "y", @@ -225,8 +223,7 @@ "direction": { "value": "" } - }, - "renderPriority": null + } } ] }, diff --git a/testdata/d2oracle/TestMove/nhooyr_one.exp.json b/testdata/d2oracle/TestMove/nhooyr_one.exp.json index 28750791f..a6d7b80b2 100644 --- a/testdata/d2oracle/TestMove/nhooyr_one.exp.json +++ b/testdata/d2oracle/TestMove/nhooyr_one.exp.json @@ -128,8 +128,7 @@ "direction": { "value": "" } - }, - "renderPriority": null + } }, "edges": null, "objects": [ @@ -174,8 +173,7 @@ "direction": { "value": "" } - }, - "renderPriority": null + } }, { "id": "c", @@ -218,8 +216,7 @@ "direction": { "value": "" } - }, - "renderPriority": null + } }, { "id": "d", @@ -262,8 +259,7 @@ "direction": { "value": "" } - }, - "renderPriority": null + } }, { "id": "q", @@ -306,8 +302,7 @@ "direction": { "value": "" } - }, - "renderPriority": null + } } ] }, diff --git a/testdata/d2oracle/TestMove/nhooyr_two.exp.json b/testdata/d2oracle/TestMove/nhooyr_two.exp.json index f2217588f..e68f72400 100644 --- a/testdata/d2oracle/TestMove/nhooyr_two.exp.json +++ b/testdata/d2oracle/TestMove/nhooyr_two.exp.json @@ -174,8 +174,7 @@ "direction": { "value": "" } - }, - "renderPriority": null + } }, "edges": [ { @@ -251,8 +250,7 @@ "direction": { "value": "" } - }, - "renderPriority": null + } }, { "id": "d", @@ -295,8 +293,7 @@ "direction": { "value": "" } - }, - "renderPriority": null + } }, { "id": "x", @@ -339,8 +336,7 @@ "direction": { "value": "" } - }, - "renderPriority": null + } }, { "id": "b", @@ -383,8 +379,7 @@ "direction": { "value": "" } - }, - "renderPriority": null + } }, { "id": "c", @@ -427,8 +422,7 @@ "direction": { "value": "" } - }, - "renderPriority": null + } }, { "id": "meow", @@ -471,8 +465,7 @@ "direction": { "value": "" } - }, - "renderPriority": null + } } ] }, diff --git a/testdata/d2oracle/TestMove/parentheses.exp.json b/testdata/d2oracle/TestMove/parentheses.exp.json index 6710249e1..f2b4b100e 100644 --- a/testdata/d2oracle/TestMove/parentheses.exp.json +++ b/testdata/d2oracle/TestMove/parentheses.exp.json @@ -109,8 +109,7 @@ "direction": { "value": "" } - }, - "renderPriority": null + } }, "edges": [ { @@ -217,8 +216,7 @@ "direction": { "value": "" } - }, - "renderPriority": null + } }, { "id": "x", @@ -261,8 +259,7 @@ "direction": { "value": "" } - }, - "renderPriority": null + } }, { "id": "\"y (z)\"", @@ -316,8 +313,7 @@ "direction": { "value": "" } - }, - "renderPriority": null + } } ] }, diff --git a/testdata/d2oracle/TestMove/partial_edge_slice.exp.json b/testdata/d2oracle/TestMove/partial_edge_slice.exp.json index d88c2e4dd..6f1e7797f 100644 --- a/testdata/d2oracle/TestMove/partial_edge_slice.exp.json +++ b/testdata/d2oracle/TestMove/partial_edge_slice.exp.json @@ -116,8 +116,7 @@ "direction": { "value": "" } - }, - "renderPriority": null + } }, "edges": [ { @@ -193,8 +192,7 @@ "direction": { "value": "" } - }, - "renderPriority": null + } }, { "id": "b", @@ -257,8 +255,7 @@ "direction": { "value": "" } - }, - "renderPriority": null + } }, { "id": "c", @@ -301,8 +298,7 @@ "direction": { "value": "" } - }, - "renderPriority": null + } } ] }, diff --git a/testdata/d2oracle/TestMove/partial_slice.exp.json b/testdata/d2oracle/TestMove/partial_slice.exp.json index abaf2b56a..f4978e04f 100644 --- a/testdata/d2oracle/TestMove/partial_slice.exp.json +++ b/testdata/d2oracle/TestMove/partial_slice.exp.json @@ -70,8 +70,7 @@ "direction": { "value": "" } - }, - "renderPriority": null + } }, "edges": null, "objects": [ @@ -116,8 +115,7 @@ "direction": { "value": "" } - }, - "renderPriority": null + } }, { "id": "b", @@ -160,8 +158,7 @@ "direction": { "value": "" } - }, - "renderPriority": null + } } ] }, diff --git a/testdata/d2oracle/TestMove/rename_2.exp.json b/testdata/d2oracle/TestMove/rename_2.exp.json index cc0555ea0..37d25714b 100644 --- a/testdata/d2oracle/TestMove/rename_2.exp.json +++ b/testdata/d2oracle/TestMove/rename_2.exp.json @@ -145,8 +145,7 @@ "direction": { "value": "" } - }, - "renderPriority": null + } }, "edges": null, "objects": [ @@ -191,8 +190,7 @@ "direction": { "value": "" } - }, - "renderPriority": null + } }, { "id": "y 2", @@ -235,8 +233,7 @@ "direction": { "value": "" } - }, - "renderPriority": null + } }, { "id": "b 2", @@ -279,8 +276,7 @@ "direction": { "value": "" } - }, - "renderPriority": null + } }, { "id": "x", @@ -323,8 +319,7 @@ "direction": { "value": "" } - }, - "renderPriority": null + } }, { "id": "a", @@ -367,8 +362,7 @@ "direction": { "value": "" } - }, - "renderPriority": null + } } ] }, diff --git a/testdata/d2oracle/TestMove/reuse_map.exp.json b/testdata/d2oracle/TestMove/reuse_map.exp.json index b4cbdcb21..e5555dbce 100644 --- a/testdata/d2oracle/TestMove/reuse_map.exp.json +++ b/testdata/d2oracle/TestMove/reuse_map.exp.json @@ -162,8 +162,7 @@ "direction": { "value": "" } - }, - "renderPriority": null + } }, "edges": null, "objects": [ @@ -208,8 +207,7 @@ "direction": { "value": "" } - }, - "renderPriority": null + } }, { "id": "b", @@ -283,8 +281,7 @@ "direction": { "value": "" } - }, - "renderPriority": null + } }, { "id": "hey", @@ -327,8 +324,7 @@ "direction": { "value": "" } - }, - "renderPriority": null + } }, { "id": "k", @@ -371,8 +367,7 @@ "direction": { "value": "" } - }, - "renderPriority": null + } }, { "id": "yo", @@ -426,8 +421,7 @@ "direction": { "value": "" } - }, - "renderPriority": null + } } ] }, diff --git a/testdata/d2oracle/TestMove/slice_style.exp.json b/testdata/d2oracle/TestMove/slice_style.exp.json index f031cadfa..6680653ea 100644 --- a/testdata/d2oracle/TestMove/slice_style.exp.json +++ b/testdata/d2oracle/TestMove/slice_style.exp.json @@ -114,8 +114,7 @@ "direction": { "value": "" } - }, - "renderPriority": null + } }, "edges": null, "objects": [ @@ -160,8 +159,7 @@ "direction": { "value": "" } - }, - "renderPriority": null + } }, { "id": "b", @@ -247,8 +245,7 @@ "direction": { "value": "" } - }, - "renderPriority": null + } } ] }, diff --git a/testdata/d2oracle/TestMove/underscore_children.exp.json b/testdata/d2oracle/TestMove/underscore_children.exp.json index 0b28ee345..5a43f84b3 100644 --- a/testdata/d2oracle/TestMove/underscore_children.exp.json +++ b/testdata/d2oracle/TestMove/underscore_children.exp.json @@ -110,8 +110,7 @@ "direction": { "value": "" } - }, - "renderPriority": null + } }, "edges": null, "objects": [ @@ -156,8 +155,7 @@ "direction": { "value": "" } - }, - "renderPriority": null + } }, { "id": "c", @@ -231,8 +229,7 @@ "direction": { "value": "" } - }, - "renderPriority": null + } } ] }, diff --git a/testdata/d2oracle/TestMove/underscore_edge_children.exp.json b/testdata/d2oracle/TestMove/underscore_edge_children.exp.json index c7d48d56e..e1a1fb736 100644 --- a/testdata/d2oracle/TestMove/underscore_edge_children.exp.json +++ b/testdata/d2oracle/TestMove/underscore_edge_children.exp.json @@ -133,8 +133,7 @@ "direction": { "value": "" } - }, - "renderPriority": null + } }, "edges": [ { @@ -210,8 +209,7 @@ "direction": { "value": "" } - }, - "renderPriority": null + } }, { "id": "c", @@ -285,8 +283,7 @@ "direction": { "value": "" } - }, - "renderPriority": null + } }, { "id": "c", @@ -329,8 +326,7 @@ "direction": { "value": "" } - }, - "renderPriority": null + } } ] }, diff --git a/testdata/d2oracle/TestMove/underscore_edge_container_1.exp.json b/testdata/d2oracle/TestMove/underscore_edge_container_1.exp.json index 1b2a293dd..8d7d7c159 100644 --- a/testdata/d2oracle/TestMove/underscore_edge_container_1.exp.json +++ b/testdata/d2oracle/TestMove/underscore_edge_container_1.exp.json @@ -99,8 +99,7 @@ "direction": { "value": "" } - }, - "renderPriority": null + } }, "edges": [ { @@ -176,8 +175,7 @@ "direction": { "value": "" } - }, - "renderPriority": null + } }, { "id": "b", @@ -220,8 +218,7 @@ "direction": { "value": "" } - }, - "renderPriority": null + } }, { "id": "c", @@ -264,8 +261,7 @@ "direction": { "value": "" } - }, - "renderPriority": null + } } ] }, diff --git a/testdata/d2oracle/TestMove/underscore_edge_container_2.exp.json b/testdata/d2oracle/TestMove/underscore_edge_container_2.exp.json index 94481d66b..0061f2f15 100644 --- a/testdata/d2oracle/TestMove/underscore_edge_container_2.exp.json +++ b/testdata/d2oracle/TestMove/underscore_edge_container_2.exp.json @@ -110,8 +110,7 @@ "direction": { "value": "" } - }, - "renderPriority": null + } }, "edges": [ { @@ -187,8 +186,7 @@ "direction": { "value": "" } - }, - "renderPriority": null + } }, { "id": "c", @@ -262,8 +260,7 @@ "direction": { "value": "" } - }, - "renderPriority": null + } }, { "id": "b", @@ -317,8 +314,7 @@ "direction": { "value": "" } - }, - "renderPriority": null + } } ] }, diff --git a/testdata/d2oracle/TestMove/underscore_edge_container_3.exp.json b/testdata/d2oracle/TestMove/underscore_edge_container_3.exp.json index 6309a8fa6..42c8f2e8a 100644 --- a/testdata/d2oracle/TestMove/underscore_edge_container_3.exp.json +++ b/testdata/d2oracle/TestMove/underscore_edge_container_3.exp.json @@ -110,8 +110,7 @@ "direction": { "value": "" } - }, - "renderPriority": null + } }, "edges": [ { @@ -187,8 +186,7 @@ "direction": { "value": "" } - }, - "renderPriority": null + } }, { "id": "d", @@ -242,8 +240,7 @@ "direction": { "value": "" } - }, - "renderPriority": null + } }, { "id": "c", @@ -286,8 +283,7 @@ "direction": { "value": "" } - }, - "renderPriority": null + } } ] }, diff --git a/testdata/d2oracle/TestMove/underscore_edge_container_4.exp.json b/testdata/d2oracle/TestMove/underscore_edge_container_4.exp.json index 135f290ef..2581b5f76 100644 --- a/testdata/d2oracle/TestMove/underscore_edge_container_4.exp.json +++ b/testdata/d2oracle/TestMove/underscore_edge_container_4.exp.json @@ -99,8 +99,7 @@ "direction": { "value": "" } - }, - "renderPriority": null + } }, "edges": [ { @@ -176,8 +175,7 @@ "direction": { "value": "" } - }, - "renderPriority": null + } }, { "id": "f", @@ -220,8 +218,7 @@ "direction": { "value": "" } - }, - "renderPriority": null + } }, { "id": "c", @@ -264,8 +261,7 @@ "direction": { "value": "" } - }, - "renderPriority": null + } } ] }, diff --git a/testdata/d2oracle/TestMove/underscore_edge_container_5.exp.json b/testdata/d2oracle/TestMove/underscore_edge_container_5.exp.json index 85462c11f..5dd71fb13 100644 --- a/testdata/d2oracle/TestMove/underscore_edge_container_5.exp.json +++ b/testdata/d2oracle/TestMove/underscore_edge_container_5.exp.json @@ -132,8 +132,7 @@ "direction": { "value": "" } - }, - "renderPriority": null + } }, "edges": [ { @@ -209,8 +208,7 @@ "direction": { "value": "" } - }, - "renderPriority": null + } }, { "id": "c", @@ -306,8 +304,7 @@ "direction": { "value": "" } - }, - "renderPriority": null + } }, { "id": "b", @@ -372,8 +369,7 @@ "direction": { "value": "" } - }, - "renderPriority": null + } } ] }, diff --git a/testdata/d2oracle/TestMove/underscore_edge_split.exp.json b/testdata/d2oracle/TestMove/underscore_edge_split.exp.json index 0d901d1cf..21d713554 100644 --- a/testdata/d2oracle/TestMove/underscore_edge_split.exp.json +++ b/testdata/d2oracle/TestMove/underscore_edge_split.exp.json @@ -162,8 +162,7 @@ "direction": { "value": "" } - }, - "renderPriority": null + } }, "edges": [ { @@ -239,8 +238,7 @@ "direction": { "value": "" } - }, - "renderPriority": null + } }, { "id": "b", @@ -283,8 +281,7 @@ "direction": { "value": "" } - }, - "renderPriority": null + } }, { "id": "c", @@ -327,8 +324,7 @@ "direction": { "value": "" } - }, - "renderPriority": null + } }, { "id": "f", @@ -382,8 +378,7 @@ "direction": { "value": "" } - }, - "renderPriority": null + } }, { "id": "yo", @@ -426,8 +421,7 @@ "direction": { "value": "" } - }, - "renderPriority": null + } } ] }, diff --git a/testdata/d2oracle/TestMove/underscore_merge.exp.json b/testdata/d2oracle/TestMove/underscore_merge.exp.json index c2aceec23..c33d485f2 100644 --- a/testdata/d2oracle/TestMove/underscore_merge.exp.json +++ b/testdata/d2oracle/TestMove/underscore_merge.exp.json @@ -142,8 +142,7 @@ "direction": { "value": "" } - }, - "renderPriority": null + } }, "edges": null, "objects": [ @@ -188,8 +187,7 @@ "direction": { "value": "" } - }, - "renderPriority": null + } }, { "id": "c", @@ -232,8 +230,7 @@ "direction": { "value": "" } - }, - "renderPriority": null + } }, { "id": "b", @@ -296,8 +293,7 @@ "direction": { "value": "" } - }, - "renderPriority": null + } } ] }, diff --git a/testdata/d2oracle/TestMove/underscore_split.exp.json b/testdata/d2oracle/TestMove/underscore_split.exp.json index 05dd95b78..743a706df 100644 --- a/testdata/d2oracle/TestMove/underscore_split.exp.json +++ b/testdata/d2oracle/TestMove/underscore_split.exp.json @@ -139,8 +139,7 @@ "direction": { "value": "" } - }, - "renderPriority": null + } }, "edges": null, "objects": [ @@ -185,8 +184,7 @@ "direction": { "value": "" } - }, - "renderPriority": null + } }, { "id": "b", @@ -229,8 +227,7 @@ "direction": { "value": "" } - }, - "renderPriority": null + } }, { "id": "f", @@ -284,8 +281,7 @@ "direction": { "value": "" } - }, - "renderPriority": null + } }, { "id": "c", @@ -328,8 +324,7 @@ "direction": { "value": "" } - }, - "renderPriority": null + } } ] }, diff --git a/testdata/d2oracle/TestMove/underscore_split_out.exp.json b/testdata/d2oracle/TestMove/underscore_split_out.exp.json index a25ae8db8..7545eb2fc 100644 --- a/testdata/d2oracle/TestMove/underscore_split_out.exp.json +++ b/testdata/d2oracle/TestMove/underscore_split_out.exp.json @@ -197,8 +197,7 @@ "direction": { "value": "" } - }, - "renderPriority": null + } }, "edges": null, "objects": [ @@ -243,8 +242,7 @@ "direction": { "value": "" } - }, - "renderPriority": null + } }, { "id": "b", @@ -287,8 +285,7 @@ "direction": { "value": "" } - }, - "renderPriority": null + } }, { "id": "c", @@ -362,8 +359,7 @@ "direction": { "value": "" } - }, - "renderPriority": null + } }, { "id": "e", @@ -406,8 +402,7 @@ "direction": { "value": "" } - }, - "renderPriority": null + } }, { "id": "f", @@ -450,8 +445,7 @@ "direction": { "value": "" } - }, - "renderPriority": null + } } ] }, diff --git a/testdata/d2oracle/TestMove/underscore_transplant.exp.json b/testdata/d2oracle/TestMove/underscore_transplant.exp.json index 0782ff2b7..5528c035d 100644 --- a/testdata/d2oracle/TestMove/underscore_transplant.exp.json +++ b/testdata/d2oracle/TestMove/underscore_transplant.exp.json @@ -99,8 +99,7 @@ "direction": { "value": "" } - }, - "renderPriority": null + } }, "edges": null, "objects": [ @@ -145,8 +144,7 @@ "direction": { "value": "" } - }, - "renderPriority": null + } }, { "id": "b", @@ -189,8 +187,7 @@ "direction": { "value": "" } - }, - "renderPriority": null + } }, { "id": "c", @@ -233,8 +230,7 @@ "direction": { "value": "" } - }, - "renderPriority": null + } } ] }, diff --git a/testdata/d2oracle/TestMove/unique_name.exp.json b/testdata/d2oracle/TestMove/unique_name.exp.json index fc2d2f54b..25ba5b6ab 100644 --- a/testdata/d2oracle/TestMove/unique_name.exp.json +++ b/testdata/d2oracle/TestMove/unique_name.exp.json @@ -156,8 +156,7 @@ "direction": { "value": "" } - }, - "renderPriority": null + } }, "edges": null, "objects": [ @@ -233,8 +232,7 @@ "direction": { "value": "" } - }, - "renderPriority": null + } }, { "id": "b", @@ -308,8 +306,7 @@ "direction": { "value": "" } - }, - "renderPriority": null + } }, { "id": "b 2", @@ -352,8 +349,7 @@ "direction": { "value": "" } - }, - "renderPriority": null + } }, { "id": "c", @@ -396,8 +392,7 @@ "direction": { "value": "" } - }, - "renderPriority": null + } } ] }, diff --git a/testdata/d2oracle/TestMove/unique_name_with_references.exp.json b/testdata/d2oracle/TestMove/unique_name_with_references.exp.json index a030e194b..f0cc05cc2 100644 --- a/testdata/d2oracle/TestMove/unique_name_with_references.exp.json +++ b/testdata/d2oracle/TestMove/unique_name_with_references.exp.json @@ -179,8 +179,7 @@ "direction": { "value": "" } - }, - "renderPriority": null + } }, "edges": [ { @@ -287,8 +286,7 @@ "direction": { "value": "" } - }, - "renderPriority": null + } }, { "id": "b", @@ -331,8 +329,7 @@ "direction": { "value": "" } - }, - "renderPriority": null + } }, { "id": "b 2", @@ -406,8 +403,7 @@ "direction": { "value": "" } - }, - "renderPriority": null + } }, { "id": "c", @@ -450,8 +446,7 @@ "direction": { "value": "" } - }, - "renderPriority": null + } }, { "id": "d", @@ -494,8 +489,7 @@ "direction": { "value": "" } - }, - "renderPriority": null + } } ] }, diff --git a/testdata/d2oracle/TestRename/arrows.exp.json b/testdata/d2oracle/TestRename/arrows.exp.json index c14ada92a..fadc22c55 100644 --- a/testdata/d2oracle/TestRename/arrows.exp.json +++ b/testdata/d2oracle/TestRename/arrows.exp.json @@ -70,8 +70,7 @@ "direction": { "value": "" } - }, - "renderPriority": null + } }, "edges": [ { @@ -147,8 +146,7 @@ "direction": { "value": "" } - }, - "renderPriority": null + } }, { "id": "y", @@ -191,8 +189,7 @@ "direction": { "value": "" } - }, - "renderPriority": null + } } ] }, diff --git a/testdata/d2oracle/TestRename/arrows_chain.exp.json b/testdata/d2oracle/TestRename/arrows_chain.exp.json index 47061c9a0..a8c899380 100644 --- a/testdata/d2oracle/TestRename/arrows_chain.exp.json +++ b/testdata/d2oracle/TestRename/arrows_chain.exp.json @@ -144,8 +144,7 @@ "direction": { "value": "" } - }, - "renderPriority": null + } }, "edges": [ { @@ -281,8 +280,7 @@ "direction": { "value": "" } - }, - "renderPriority": null + } }, { "id": "y", @@ -345,8 +343,7 @@ "direction": { "value": "" } - }, - "renderPriority": null + } }, { "id": "z", @@ -409,8 +406,7 @@ "direction": { "value": "" } - }, - "renderPriority": null + } }, { "id": "q", @@ -453,8 +449,7 @@ "direction": { "value": "" } - }, - "renderPriority": null + } } ] }, diff --git a/testdata/d2oracle/TestRename/arrows_complex.exp.json b/testdata/d2oracle/TestRename/arrows_complex.exp.json index 4d113592b..a395eed50 100644 --- a/testdata/d2oracle/TestRename/arrows_complex.exp.json +++ b/testdata/d2oracle/TestRename/arrows_complex.exp.json @@ -124,8 +124,7 @@ "direction": { "value": "" } - }, - "renderPriority": null + } }, "edges": [ { @@ -212,8 +211,7 @@ "direction": { "value": "" } - }, - "renderPriority": null + } }, { "id": "b", @@ -267,8 +265,7 @@ "direction": { "value": "" } - }, - "renderPriority": null + } }, { "id": "x", @@ -311,8 +308,7 @@ "direction": { "value": "" } - }, - "renderPriority": null + } }, { "id": "y", @@ -355,8 +351,7 @@ "direction": { "value": "" } - }, - "renderPriority": null + } } ] }, diff --git a/testdata/d2oracle/TestRename/arrows_trim_common.exp.json b/testdata/d2oracle/TestRename/arrows_trim_common.exp.json index 08c281377..d5ab00830 100644 --- a/testdata/d2oracle/TestRename/arrows_trim_common.exp.json +++ b/testdata/d2oracle/TestRename/arrows_trim_common.exp.json @@ -160,8 +160,7 @@ "direction": { "value": "" } - }, - "renderPriority": null + } }, "edges": [ { @@ -297,8 +296,7 @@ "direction": { "value": "" } - }, - "renderPriority": null + } }, { "id": "x", @@ -341,8 +339,7 @@ "direction": { "value": "" } - }, - "renderPriority": null + } }, { "id": "y", @@ -405,8 +402,7 @@ "direction": { "value": "" } - }, - "renderPriority": null + } }, { "id": "z", @@ -469,8 +465,7 @@ "direction": { "value": "" } - }, - "renderPriority": null + } }, { "id": "q", @@ -513,8 +508,7 @@ "direction": { "value": "" } - }, - "renderPriority": null + } } ] }, diff --git a/testdata/d2oracle/TestRename/arrows_trim_common_2.exp.json b/testdata/d2oracle/TestRename/arrows_trim_common_2.exp.json index 53858420d..e25cf3fd4 100644 --- a/testdata/d2oracle/TestRename/arrows_trim_common_2.exp.json +++ b/testdata/d2oracle/TestRename/arrows_trim_common_2.exp.json @@ -210,8 +210,7 @@ "direction": { "value": "" } - }, - "renderPriority": null + } }, "edges": [ { @@ -513,8 +512,7 @@ "direction": { "value": "" } - }, - "renderPriority": null + } }, { "id": "x", @@ -568,8 +566,7 @@ "direction": { "value": "" } - }, - "renderPriority": null + } }, { "id": "y", @@ -654,8 +651,7 @@ "direction": { "value": "" } - }, - "renderPriority": null + } }, { "id": "z", @@ -740,8 +736,7 @@ "direction": { "value": "" } - }, - "renderPriority": null + } }, { "id": "\"q)\"", @@ -795,8 +790,7 @@ "direction": { "value": "" } - }, - "renderPriority": null + } } ] }, diff --git a/testdata/d2oracle/TestRename/complex_edge_1.exp.json b/testdata/d2oracle/TestRename/complex_edge_1.exp.json index 1fd5f794a..ceedb2f94 100644 --- a/testdata/d2oracle/TestRename/complex_edge_1.exp.json +++ b/testdata/d2oracle/TestRename/complex_edge_1.exp.json @@ -124,8 +124,7 @@ "direction": { "value": "" } - }, - "renderPriority": null + } }, "edges": [ { @@ -212,8 +211,7 @@ "direction": { "value": "" } - }, - "renderPriority": null + } }, { "id": "ooo", @@ -267,8 +265,7 @@ "direction": { "value": "" } - }, - "renderPriority": null + } }, { "id": "x", @@ -311,8 +308,7 @@ "direction": { "value": "" } - }, - "renderPriority": null + } }, { "id": "y", @@ -355,8 +351,7 @@ "direction": { "value": "" } - }, - "renderPriority": null + } } ] }, diff --git a/testdata/d2oracle/TestRename/complex_edge_2.exp.json b/testdata/d2oracle/TestRename/complex_edge_2.exp.json index 81b016d76..663d56cc2 100644 --- a/testdata/d2oracle/TestRename/complex_edge_2.exp.json +++ b/testdata/d2oracle/TestRename/complex_edge_2.exp.json @@ -124,8 +124,7 @@ "direction": { "value": "" } - }, - "renderPriority": null + } }, "edges": [ { @@ -212,8 +211,7 @@ "direction": { "value": "" } - }, - "renderPriority": null + } }, { "id": "b", @@ -267,8 +265,7 @@ "direction": { "value": "" } - }, - "renderPriority": null + } }, { "id": "papa", @@ -311,8 +308,7 @@ "direction": { "value": "" } - }, - "renderPriority": null + } }, { "id": "y", @@ -355,8 +351,7 @@ "direction": { "value": "" } - }, - "renderPriority": null + } } ] }, diff --git a/testdata/d2oracle/TestRename/conflict.exp.json b/testdata/d2oracle/TestRename/conflict.exp.json index ebb1d67b7..c8dc12220 100644 --- a/testdata/d2oracle/TestRename/conflict.exp.json +++ b/testdata/d2oracle/TestRename/conflict.exp.json @@ -70,8 +70,7 @@ "direction": { "value": "" } - }, - "renderPriority": null + } }, "edges": null, "objects": [ @@ -116,8 +115,7 @@ "direction": { "value": "" } - }, - "renderPriority": null + } }, { "id": "la", @@ -160,8 +158,7 @@ "direction": { "value": "" } - }, - "renderPriority": null + } } ] }, diff --git a/testdata/d2oracle/TestRename/conflict_2.exp.json b/testdata/d2oracle/TestRename/conflict_2.exp.json index 04417ce10..55f6a2df6 100644 --- a/testdata/d2oracle/TestRename/conflict_2.exp.json +++ b/testdata/d2oracle/TestRename/conflict_2.exp.json @@ -121,8 +121,7 @@ "direction": { "value": "" } - }, - "renderPriority": null + } }, "edges": null, "objects": [ @@ -189,8 +188,7 @@ "direction": { "value": "" } - }, - "renderPriority": null + } }, { "id": "2", @@ -255,8 +253,7 @@ "direction": { "value": "" } - }, - "renderPriority": null + } }, { "id": "3", @@ -321,8 +318,7 @@ "direction": { "value": "" } - }, - "renderPriority": null + } }, { "id": "5 2", @@ -365,8 +361,7 @@ "direction": { "value": "" } - }, - "renderPriority": null + } }, { "id": "5", @@ -409,8 +404,7 @@ "direction": { "value": "" } - }, - "renderPriority": null + } } ] }, diff --git a/testdata/d2oracle/TestRename/conflict_with_dots.exp.json b/testdata/d2oracle/TestRename/conflict_with_dots.exp.json index 283b1800a..bbae9e6d0 100644 --- a/testdata/d2oracle/TestRename/conflict_with_dots.exp.json +++ b/testdata/d2oracle/TestRename/conflict_with_dots.exp.json @@ -70,8 +70,7 @@ "direction": { "value": "" } - }, - "renderPriority": null + } }, "edges": null, "objects": [ @@ -116,8 +115,7 @@ "direction": { "value": "" } - }, - "renderPriority": null + } }, { "id": "\"a.b 2\"", @@ -160,8 +158,7 @@ "direction": { "value": "" } - }, - "renderPriority": null + } } ] }, diff --git a/testdata/d2oracle/TestRename/container.exp.json b/testdata/d2oracle/TestRename/container.exp.json index 67b0de0dc..9c5aaa8ca 100644 --- a/testdata/d2oracle/TestRename/container.exp.json +++ b/testdata/d2oracle/TestRename/container.exp.json @@ -749,8 +749,7 @@ "direction": { "value": "" } - }, - "renderPriority": null + } }, "edges": [ { @@ -1250,8 +1249,7 @@ "direction": { "value": "" } - }, - "renderPriority": null + } }, { "id": "\"\"", @@ -1535,8 +1533,7 @@ "direction": { "value": "" } - }, - "renderPriority": null + } }, { "id": "z", @@ -1809,8 +1806,7 @@ "direction": { "value": "" } - }, - "renderPriority": null + } }, { "id": "i", @@ -1853,8 +1849,7 @@ "direction": { "value": "" } - }, - "renderPriority": null + } }, { "id": "p", @@ -1970,8 +1965,7 @@ "direction": { "value": "" } - }, - "renderPriority": null + } }, { "id": "k", @@ -2087,8 +2081,7 @@ "direction": { "value": "" } - }, - "renderPriority": null + } }, { "id": "l", @@ -2173,8 +2166,7 @@ "direction": { "value": "" } - }, - "renderPriority": null + } }, { "id": "a", @@ -2259,8 +2251,7 @@ "direction": { "value": "" } - }, - "renderPriority": null + } }, { "id": "q", @@ -2303,8 +2294,7 @@ "direction": { "value": "" } - }, - "renderPriority": null + } }, { "id": "+", @@ -2367,8 +2357,7 @@ "direction": { "value": "" } - }, - "renderPriority": null + } }, { "id": "more", @@ -2411,8 +2400,7 @@ "direction": { "value": "" } - }, - "renderPriority": null + } }, { "id": "ok", @@ -2477,8 +2465,7 @@ "direction": { "value": "" } - }, - "renderPriority": null + } }, { "id": "q", @@ -2543,8 +2530,7 @@ "direction": { "value": "" } - }, - "renderPriority": null + } }, { "id": "z", @@ -2609,8 +2595,7 @@ "direction": { "value": "" } - }, - "renderPriority": null + } }, { "id": "p", @@ -2664,8 +2649,7 @@ "direction": { "value": "" } - }, - "renderPriority": null + } }, { "id": "k", @@ -2719,8 +2703,7 @@ "direction": { "value": "" } - }, - "renderPriority": null + } } ] }, diff --git a/testdata/d2oracle/TestRename/edges.exp.json b/testdata/d2oracle/TestRename/edges.exp.json index f24668918..466d177cb 100644 --- a/testdata/d2oracle/TestRename/edges.exp.json +++ b/testdata/d2oracle/TestRename/edges.exp.json @@ -414,8 +414,7 @@ "direction": { "value": "" } - }, - "renderPriority": null + } }, "edges": [ { @@ -765,8 +764,7 @@ "direction": { "value": "" } - }, - "renderPriority": null + } }, { "id": "%%%", @@ -953,8 +951,7 @@ "direction": { "value": "" } - }, - "renderPriority": null + } }, { "id": "p", @@ -1039,8 +1036,7 @@ "direction": { "value": "" } - }, - "renderPriority": null + } }, { "id": "k", @@ -1125,8 +1121,7 @@ "direction": { "value": "" } - }, - "renderPriority": null + } }, { "id": "l", @@ -1211,8 +1206,7 @@ "direction": { "value": "" } - }, - "renderPriority": null + } }, { "id": "a", @@ -1297,8 +1291,7 @@ "direction": { "value": "" } - }, - "renderPriority": null + } }, { "id": "q", @@ -1341,8 +1334,7 @@ "direction": { "value": "" } - }, - "renderPriority": null + } }, { "id": "+", @@ -1405,8 +1397,7 @@ "direction": { "value": "" } - }, - "renderPriority": null + } } ] }, diff --git a/testdata/d2oracle/TestRename/flat.exp.json b/testdata/d2oracle/TestRename/flat.exp.json index db2d922b5..7f8875b49 100644 --- a/testdata/d2oracle/TestRename/flat.exp.json +++ b/testdata/d2oracle/TestRename/flat.exp.json @@ -47,8 +47,7 @@ "direction": { "value": "" } - }, - "renderPriority": null + } }, "edges": null, "objects": [ @@ -93,8 +92,7 @@ "direction": { "value": "" } - }, - "renderPriority": null + } } ] }, diff --git a/testdata/d2oracle/TestRename/generated.exp.json b/testdata/d2oracle/TestRename/generated.exp.json index 917aa0420..e01f2dc0d 100644 --- a/testdata/d2oracle/TestRename/generated.exp.json +++ b/testdata/d2oracle/TestRename/generated.exp.json @@ -47,8 +47,7 @@ "direction": { "value": "" } - }, - "renderPriority": null + } }, "edges": null, "objects": [ @@ -93,8 +92,7 @@ "direction": { "value": "" } - }, - "renderPriority": null + } } ] }, diff --git a/testdata/d2oracle/TestRename/near.exp.json b/testdata/d2oracle/TestRename/near.exp.json index 22053b802..4f1095f42 100644 --- a/testdata/d2oracle/TestRename/near.exp.json +++ b/testdata/d2oracle/TestRename/near.exp.json @@ -109,8 +109,7 @@ "direction": { "value": "" } - }, - "renderPriority": null + } }, "edges": null, "objects": [ @@ -170,8 +169,7 @@ "direction": { "value": "" } - }, - "renderPriority": null + } }, { "id": "z", @@ -214,8 +212,7 @@ "direction": { "value": "" } - }, - "renderPriority": null + } } ] }, diff --git a/testdata/d2oracle/TestRename/nested.exp.json b/testdata/d2oracle/TestRename/nested.exp.json index 635c2dc14..37125d75a 100644 --- a/testdata/d2oracle/TestRename/nested.exp.json +++ b/testdata/d2oracle/TestRename/nested.exp.json @@ -176,8 +176,7 @@ "direction": { "value": "" } - }, - "renderPriority": null + } }, "edges": null, "objects": [ @@ -319,8 +318,7 @@ "direction": { "value": "" } - }, - "renderPriority": null + } }, { "id": "y", @@ -460,8 +458,7 @@ "direction": { "value": "" } - }, - "renderPriority": null + } }, { "id": "z", @@ -601,8 +598,7 @@ "direction": { "value": "" } - }, - "renderPriority": null + } }, { "id": "q", @@ -742,8 +738,7 @@ "direction": { "value": "" } - }, - "renderPriority": null + } }, { "id": "nerve-gift-jingler", @@ -850,8 +845,7 @@ "direction": { "value": "" } - }, - "renderPriority": null + } } ] }, diff --git a/testdata/d2oracle/TestSet/base.exp.json b/testdata/d2oracle/TestSet/base.exp.json index 3a10c1026..23a9eb9f4 100644 --- a/testdata/d2oracle/TestSet/base.exp.json +++ b/testdata/d2oracle/TestSet/base.exp.json @@ -47,8 +47,7 @@ "direction": { "value": "" } - }, - "renderPriority": null + } }, "edges": null, "objects": [ @@ -93,8 +92,7 @@ "direction": { "value": "" } - }, - "renderPriority": null + } } ] }, diff --git a/testdata/d2oracle/TestSet/block_string_multiline.exp.json b/testdata/d2oracle/TestSet/block_string_multiline.exp.json index a8a6aec03..dd4bcff09 100644 --- a/testdata/d2oracle/TestSet/block_string_multiline.exp.json +++ b/testdata/d2oracle/TestSet/block_string_multiline.exp.json @@ -54,8 +54,7 @@ "direction": { "value": "" } - }, - "renderPriority": null + } }, "edges": null, "objects": [ @@ -101,8 +100,7 @@ "direction": { "value": "" } - }, - "renderPriority": null + } } ] }, diff --git a/testdata/d2oracle/TestSet/block_string_oneline.exp.json b/testdata/d2oracle/TestSet/block_string_oneline.exp.json index 0529a2450..3601a7f2c 100644 --- a/testdata/d2oracle/TestSet/block_string_oneline.exp.json +++ b/testdata/d2oracle/TestSet/block_string_oneline.exp.json @@ -54,8 +54,7 @@ "direction": { "value": "" } - }, - "renderPriority": null + } }, "edges": null, "objects": [ @@ -101,8 +100,7 @@ "direction": { "value": "" } - }, - "renderPriority": null + } } ] }, diff --git a/testdata/d2oracle/TestSet/edge.exp.json b/testdata/d2oracle/TestSet/edge.exp.json index 1d6f8fdef..bcbd533e2 100644 --- a/testdata/d2oracle/TestSet/edge.exp.json +++ b/testdata/d2oracle/TestSet/edge.exp.json @@ -80,8 +80,7 @@ "direction": { "value": "" } - }, - "renderPriority": null + } }, "edges": [ { @@ -157,8 +156,7 @@ "direction": { "value": "" } - }, - "renderPriority": null + } }, { "id": "y", @@ -201,8 +199,7 @@ "direction": { "value": "" } - }, - "renderPriority": null + } } ] }, diff --git a/testdata/d2oracle/TestSet/edge_append_style.exp.json b/testdata/d2oracle/TestSet/edge_append_style.exp.json index f6bd993ac..bf9784284 100644 --- a/testdata/d2oracle/TestSet/edge_append_style.exp.json +++ b/testdata/d2oracle/TestSet/edge_append_style.exp.json @@ -115,8 +115,7 @@ "direction": { "value": "" } - }, - "renderPriority": null + } }, "edges": [ { @@ -196,8 +195,7 @@ "direction": { "value": "" } - }, - "renderPriority": null + } }, { "id": "y", @@ -240,8 +238,7 @@ "direction": { "value": "" } - }, - "renderPriority": null + } } ] }, diff --git a/testdata/d2oracle/TestSet/edge_chain.exp.json b/testdata/d2oracle/TestSet/edge_chain.exp.json index 4e5bbff23..44a7c7de3 100644 --- a/testdata/d2oracle/TestSet/edge_chain.exp.json +++ b/testdata/d2oracle/TestSet/edge_chain.exp.json @@ -207,8 +207,7 @@ "direction": { "value": "" } - }, - "renderPriority": null + } }, "edges": [ { @@ -317,8 +316,7 @@ "direction": { "value": "" } - }, - "renderPriority": null + } }, { "id": "q", @@ -381,8 +379,7 @@ "direction": { "value": "" } - }, - "renderPriority": null + } }, { "id": "z", @@ -465,8 +462,7 @@ "direction": { "value": "" } - }, - "renderPriority": null + } }, { "id": "p", @@ -509,8 +505,7 @@ "direction": { "value": "" } - }, - "renderPriority": null + } } ] }, diff --git a/testdata/d2oracle/TestSet/edge_chain_append_style.exp.json b/testdata/d2oracle/TestSet/edge_chain_append_style.exp.json index 3cb032220..65b3feb0a 100644 --- a/testdata/d2oracle/TestSet/edge_chain_append_style.exp.json +++ b/testdata/d2oracle/TestSet/edge_chain_append_style.exp.json @@ -190,8 +190,7 @@ "direction": { "value": "" } - }, - "renderPriority": null + } }, "edges": [ { @@ -324,8 +323,7 @@ "direction": { "value": "" } - }, - "renderPriority": null + } }, { "id": "y", @@ -408,8 +406,7 @@ "direction": { "value": "" } - }, - "renderPriority": null + } }, { "id": "z", @@ -452,8 +449,7 @@ "direction": { "value": "" } - }, - "renderPriority": null + } } ] }, diff --git a/testdata/d2oracle/TestSet/edge_chain_existing_style.exp.json b/testdata/d2oracle/TestSet/edge_chain_existing_style.exp.json index 29fdcde50..a80e0b0d9 100644 --- a/testdata/d2oracle/TestSet/edge_chain_existing_style.exp.json +++ b/testdata/d2oracle/TestSet/edge_chain_existing_style.exp.json @@ -274,8 +274,7 @@ "direction": { "value": "" } - }, - "renderPriority": null + } }, "edges": [ { @@ -394,8 +393,7 @@ "direction": { "value": "" } - }, - "renderPriority": null + } }, { "id": "y", @@ -498,8 +496,7 @@ "direction": { "value": "" } - }, - "renderPriority": null + } }, { "id": "z", @@ -582,8 +579,7 @@ "direction": { "value": "" } - }, - "renderPriority": null + } } ] }, diff --git a/testdata/d2oracle/TestSet/edge_chain_nested_set.exp.json b/testdata/d2oracle/TestSet/edge_chain_nested_set.exp.json index cf1588add..aaeec05db 100644 --- a/testdata/d2oracle/TestSet/edge_chain_nested_set.exp.json +++ b/testdata/d2oracle/TestSet/edge_chain_nested_set.exp.json @@ -230,8 +230,7 @@ "direction": { "value": "" } - }, - "renderPriority": null + } }, "edges": [ { @@ -344,8 +343,7 @@ "direction": { "value": "" } - }, - "renderPriority": null + } }, { "id": "q", @@ -408,8 +406,7 @@ "direction": { "value": "" } - }, - "renderPriority": null + } }, { "id": "z", @@ -492,8 +489,7 @@ "direction": { "value": "" } - }, - "renderPriority": null + } }, { "id": "p", @@ -536,8 +532,7 @@ "direction": { "value": "" } - }, - "renderPriority": null + } } ] }, diff --git a/testdata/d2oracle/TestSet/edge_index_case.exp.json b/testdata/d2oracle/TestSet/edge_index_case.exp.json index e4a0a56cd..f3250cd29 100644 --- a/testdata/d2oracle/TestSet/edge_index_case.exp.json +++ b/testdata/d2oracle/TestSet/edge_index_case.exp.json @@ -184,8 +184,7 @@ "direction": { "value": "" } - }, - "renderPriority": null + } }, "edges": [ { @@ -291,8 +290,7 @@ "direction": { "value": "" } - }, - "renderPriority": null + } }, { "id": "z", @@ -335,8 +333,7 @@ "direction": { "value": "" } - }, - "renderPriority": null + } }, { "id": "Square", @@ -379,8 +376,7 @@ "direction": { "value": "" } - }, - "renderPriority": null + } }, { "id": "Square 2", @@ -423,8 +419,7 @@ "direction": { "value": "" } - }, - "renderPriority": null + } }, { "id": "x", @@ -467,8 +462,7 @@ "direction": { "value": "" } - }, - "renderPriority": null + } }, { "id": "y", @@ -511,8 +505,7 @@ "direction": { "value": "" } - }, - "renderPriority": null + } } ] }, diff --git a/testdata/d2oracle/TestSet/edge_index_nested.exp.json b/testdata/d2oracle/TestSet/edge_index_nested.exp.json index 687a27afc..b220c23c0 100644 --- a/testdata/d2oracle/TestSet/edge_index_nested.exp.json +++ b/testdata/d2oracle/TestSet/edge_index_nested.exp.json @@ -109,8 +109,7 @@ "direction": { "value": "" } - }, - "renderPriority": null + } }, "edges": [ { @@ -186,8 +185,7 @@ "direction": { "value": "" } - }, - "renderPriority": null + } }, { "id": "q", @@ -230,8 +228,7 @@ "direction": { "value": "" } - }, - "renderPriority": null + } }, { "id": "z", @@ -274,8 +271,7 @@ "direction": { "value": "" } - }, - "renderPriority": null + } } ] }, diff --git a/testdata/d2oracle/TestSet/edge_key_and_key.exp.json b/testdata/d2oracle/TestSet/edge_key_and_key.exp.json index 39c003fda..0fff2fd1f 100644 --- a/testdata/d2oracle/TestSet/edge_key_and_key.exp.json +++ b/testdata/d2oracle/TestSet/edge_key_and_key.exp.json @@ -160,8 +160,7 @@ "direction": { "value": "" } - }, - "renderPriority": null + } }, "edges": [ { @@ -303,8 +302,7 @@ "direction": { "value": "" } - }, - "renderPriority": null + } }, { "id": "b", @@ -358,8 +356,7 @@ "direction": { "value": "" } - }, - "renderPriority": null + } }, { "id": "c", @@ -413,8 +410,7 @@ "direction": { "value": "" } - }, - "renderPriority": null + } } ] }, diff --git a/testdata/d2oracle/TestSet/edge_label.exp.json b/testdata/d2oracle/TestSet/edge_label.exp.json index d65005fc5..3b5f7c6d6 100644 --- a/testdata/d2oracle/TestSet/edge_label.exp.json +++ b/testdata/d2oracle/TestSet/edge_label.exp.json @@ -125,8 +125,7 @@ "direction": { "value": "" } - }, - "renderPriority": null + } }, "edges": [ { @@ -206,8 +205,7 @@ "direction": { "value": "" } - }, - "renderPriority": null + } }, { "id": "b", @@ -250,8 +248,7 @@ "direction": { "value": "" } - }, - "renderPriority": null + } } ] }, diff --git a/testdata/d2oracle/TestSet/edge_merge_style.exp.json b/testdata/d2oracle/TestSet/edge_merge_style.exp.json index deaee9b9b..245894900 100644 --- a/testdata/d2oracle/TestSet/edge_merge_style.exp.json +++ b/testdata/d2oracle/TestSet/edge_merge_style.exp.json @@ -162,8 +162,7 @@ "direction": { "value": "" } - }, - "renderPriority": null + } }, "edges": [ { @@ -246,8 +245,7 @@ "direction": { "value": "" } - }, - "renderPriority": null + } }, { "id": "y", @@ -290,8 +288,7 @@ "direction": { "value": "" } - }, - "renderPriority": null + } } ] }, diff --git a/testdata/d2oracle/TestSet/edge_nested_label_set.exp.json b/testdata/d2oracle/TestSet/edge_nested_label_set.exp.json index cf741bc63..3ef412b1b 100644 --- a/testdata/d2oracle/TestSet/edge_nested_label_set.exp.json +++ b/testdata/d2oracle/TestSet/edge_nested_label_set.exp.json @@ -109,8 +109,7 @@ "direction": { "value": "" } - }, - "renderPriority": null + } }, "edges": [ { @@ -186,8 +185,7 @@ "direction": { "value": "" } - }, - "renderPriority": null + } }, { "id": "q", @@ -230,8 +228,7 @@ "direction": { "value": "" } - }, - "renderPriority": null + } }, { "id": "z", @@ -274,8 +271,7 @@ "direction": { "value": "" } - }, - "renderPriority": null + } } ] }, diff --git a/testdata/d2oracle/TestSet/edge_nested_style_set.exp.json b/testdata/d2oracle/TestSet/edge_nested_style_set.exp.json index 27a7c16bd..134cacd97 100644 --- a/testdata/d2oracle/TestSet/edge_nested_style_set.exp.json +++ b/testdata/d2oracle/TestSet/edge_nested_style_set.exp.json @@ -155,8 +155,7 @@ "direction": { "value": "" } - }, - "renderPriority": null + } }, "edges": [ { @@ -236,8 +235,7 @@ "direction": { "value": "" } - }, - "renderPriority": null + } }, { "id": "q", @@ -280,8 +278,7 @@ "direction": { "value": "" } - }, - "renderPriority": null + } }, { "id": "z", @@ -324,8 +321,7 @@ "direction": { "value": "" } - }, - "renderPriority": null + } } ] }, diff --git a/testdata/d2oracle/TestSet/expanded_map_style.exp.json b/testdata/d2oracle/TestSet/expanded_map_style.exp.json index 214855b05..3204495d1 100644 --- a/testdata/d2oracle/TestSet/expanded_map_style.exp.json +++ b/testdata/d2oracle/TestSet/expanded_map_style.exp.json @@ -111,8 +111,7 @@ "direction": { "value": "" } - }, - "renderPriority": null + } }, "edges": [], "objects": [ @@ -161,8 +160,7 @@ "direction": { "value": "" } - }, - "renderPriority": null + } } ] }, diff --git a/testdata/d2oracle/TestSet/icon.exp.json b/testdata/d2oracle/TestSet/icon.exp.json index 3e2deb876..e432724cd 100644 --- a/testdata/d2oracle/TestSet/icon.exp.json +++ b/testdata/d2oracle/TestSet/icon.exp.json @@ -86,8 +86,7 @@ "direction": { "value": "" } - }, - "renderPriority": null + } }, "edges": null, "objects": [ @@ -144,8 +143,7 @@ "direction": { "value": "" } - }, - "renderPriority": null + } } ] }, diff --git a/testdata/d2oracle/TestSet/inline_style.exp.json b/testdata/d2oracle/TestSet/inline_style.exp.json index 07cfb2b0a..d5ffcea3d 100644 --- a/testdata/d2oracle/TestSet/inline_style.exp.json +++ b/testdata/d2oracle/TestSet/inline_style.exp.json @@ -137,8 +137,7 @@ "direction": { "value": "" } - }, - "renderPriority": null + } }, "edges": [], "objects": [ @@ -190,8 +189,7 @@ "direction": { "value": "" } - }, - "renderPriority": null + } } ] }, diff --git a/testdata/d2oracle/TestSet/label.exp.json b/testdata/d2oracle/TestSet/label.exp.json index 4bb414d81..55551022b 100644 --- a/testdata/d2oracle/TestSet/label.exp.json +++ b/testdata/d2oracle/TestSet/label.exp.json @@ -57,8 +57,7 @@ "direction": { "value": "" } - }, - "renderPriority": null + } }, "edges": null, "objects": [ @@ -103,8 +102,7 @@ "direction": { "value": "" } - }, - "renderPriority": null + } } ] }, diff --git a/testdata/d2oracle/TestSet/label_primary.exp.json b/testdata/d2oracle/TestSet/label_primary.exp.json index 0727fd008..b14337fd8 100644 --- a/testdata/d2oracle/TestSet/label_primary.exp.json +++ b/testdata/d2oracle/TestSet/label_primary.exp.json @@ -105,8 +105,7 @@ "direction": { "value": "" } - }, - "renderPriority": null + } }, "edges": [ { @@ -182,8 +181,7 @@ "direction": { "value": "" } - }, - "renderPriority": null + } }, { "id": "q", @@ -226,8 +224,7 @@ "direction": { "value": "" } - }, - "renderPriority": null + } }, { "id": "z", @@ -270,8 +267,7 @@ "direction": { "value": "" } - }, - "renderPriority": null + } } ] }, diff --git a/testdata/d2oracle/TestSet/label_replace.exp.json b/testdata/d2oracle/TestSet/label_replace.exp.json index 84dc9ff85..469fc2b78 100644 --- a/testdata/d2oracle/TestSet/label_replace.exp.json +++ b/testdata/d2oracle/TestSet/label_replace.exp.json @@ -57,8 +57,7 @@ "direction": { "value": "" } - }, - "renderPriority": null + } }, "edges": null, "objects": [ @@ -103,8 +102,7 @@ "direction": { "value": "" } - }, - "renderPriority": null + } } ] }, diff --git a/testdata/d2oracle/TestSet/label_unset.exp.json b/testdata/d2oracle/TestSet/label_unset.exp.json index c33458a70..9a2bb4bfb 100644 --- a/testdata/d2oracle/TestSet/label_unset.exp.json +++ b/testdata/d2oracle/TestSet/label_unset.exp.json @@ -47,8 +47,7 @@ "direction": { "value": "" } - }, - "renderPriority": null + } }, "edges": null, "objects": [ @@ -93,8 +92,7 @@ "direction": { "value": "" } - }, - "renderPriority": null + } } ] }, diff --git a/testdata/d2oracle/TestSet/map_key_missing.exp.json b/testdata/d2oracle/TestSet/map_key_missing.exp.json index 0fbca9801..2b1b0bc02 100644 --- a/testdata/d2oracle/TestSet/map_key_missing.exp.json +++ b/testdata/d2oracle/TestSet/map_key_missing.exp.json @@ -103,8 +103,7 @@ "direction": { "value": "" } - }, - "renderPriority": null + } }, "edges": [ { @@ -200,8 +199,7 @@ "direction": { "value": "" } - }, - "renderPriority": null + } }, { "id": "b", @@ -244,8 +242,7 @@ "direction": { "value": "" } - }, - "renderPriority": null + } } ] }, diff --git a/testdata/d2oracle/TestSet/nested_alex.exp.json b/testdata/d2oracle/TestSet/nested_alex.exp.json index bf7036ff8..f9bd8b398 100644 --- a/testdata/d2oracle/TestSet/nested_alex.exp.json +++ b/testdata/d2oracle/TestSet/nested_alex.exp.json @@ -175,8 +175,7 @@ "direction": { "value": "" } - }, - "renderPriority": null + } }, "edges": [ { @@ -252,8 +251,7 @@ "direction": { "value": "" } - }, - "renderPriority": null + } }, { "id": "here", @@ -316,8 +314,7 @@ "direction": { "value": "" } - }, - "renderPriority": null + } }, { "id": "test", @@ -360,8 +357,7 @@ "direction": { "value": "" } - }, - "renderPriority": null + } } ] }, diff --git a/testdata/d2oracle/TestSet/new_style.exp.json b/testdata/d2oracle/TestSet/new_style.exp.json index 68bb979d7..db5981740 100644 --- a/testdata/d2oracle/TestSet/new_style.exp.json +++ b/testdata/d2oracle/TestSet/new_style.exp.json @@ -93,8 +93,7 @@ "direction": { "value": "" } - }, - "renderPriority": null + } }, "edges": [], "objects": [ @@ -143,8 +142,7 @@ "direction": { "value": "" } - }, - "renderPriority": null + } } ] }, diff --git a/testdata/d2oracle/TestSet/replace_shape.exp.json b/testdata/d2oracle/TestSet/replace_shape.exp.json index d9d8e4fbd..2480ec191 100644 --- a/testdata/d2oracle/TestSet/replace_shape.exp.json +++ b/testdata/d2oracle/TestSet/replace_shape.exp.json @@ -68,8 +68,7 @@ "direction": { "value": "" } - }, - "renderPriority": null + } }, "edges": null, "objects": [ @@ -125,8 +124,7 @@ "direction": { "value": "" } - }, - "renderPriority": null + } } ] }, diff --git a/testdata/d2oracle/TestSet/replace_style.exp.json b/testdata/d2oracle/TestSet/replace_style.exp.json index 13b0f99ab..6b7003fbb 100644 --- a/testdata/d2oracle/TestSet/replace_style.exp.json +++ b/testdata/d2oracle/TestSet/replace_style.exp.json @@ -75,8 +75,7 @@ "direction": { "value": "" } - }, - "renderPriority": null + } }, "edges": [], "objects": [ @@ -147,8 +146,7 @@ "direction": { "value": "" } - }, - "renderPriority": null + } } ] }, diff --git a/testdata/d2oracle/TestSet/replace_style_edgecase.exp.json b/testdata/d2oracle/TestSet/replace_style_edgecase.exp.json index 3bd10ba4d..6971bee40 100644 --- a/testdata/d2oracle/TestSet/replace_style_edgecase.exp.json +++ b/testdata/d2oracle/TestSet/replace_style_edgecase.exp.json @@ -130,8 +130,7 @@ "direction": { "value": "" } - }, - "renderPriority": null + } }, "edges": [], "objects": [ @@ -247,8 +246,7 @@ "direction": { "value": "" } - }, - "renderPriority": null + } } ] }, diff --git a/testdata/d2oracle/TestSet/shape.exp.json b/testdata/d2oracle/TestSet/shape.exp.json index efe74bad7..47cb8df98 100644 --- a/testdata/d2oracle/TestSet/shape.exp.json +++ b/testdata/d2oracle/TestSet/shape.exp.json @@ -86,8 +86,7 @@ "direction": { "value": "" } - }, - "renderPriority": null + } }, "edges": null, "objects": [ @@ -132,8 +131,7 @@ "direction": { "value": "" } - }, - "renderPriority": null + } } ] }, diff --git a/testdata/d2oracle/TestSet/shape_nested_style_set.exp.json b/testdata/d2oracle/TestSet/shape_nested_style_set.exp.json index ba2fc8ceb..ac8ebe385 100644 --- a/testdata/d2oracle/TestSet/shape_nested_style_set.exp.json +++ b/testdata/d2oracle/TestSet/shape_nested_style_set.exp.json @@ -93,8 +93,7 @@ "direction": { "value": "" } - }, - "renderPriority": null + } }, "edges": [], "objects": [ @@ -143,8 +142,7 @@ "direction": { "value": "" } - }, - "renderPriority": null + } } ] },