diff --git a/e2etests/e2e_test.go b/e2etests/e2e_test.go
index 649bf3e14..c3339063c 100644
--- a/e2etests/e2e_test.go
+++ b/e2etests/e2e_test.go
@@ -76,7 +76,9 @@ a -> c
}
type testCase struct {
- name string
+ name string
+ // if the test is just testing a render/style thing, no need to exercise both engines
+ justDagre bool
script string
mtexts []*d2target.MText
assertions func(t *testing.T, diagram *d2target.Diagram)
@@ -137,7 +139,10 @@ func run(t *testing.T, tc testCase) {
serde(t, tc, ruler)
}
- layoutsTested := []string{"dagre", "elk"}
+ layoutsTested := []string{"dagre"}
+ if !tc.justDagre {
+ layoutsTested = append(layoutsTested, "elk")
+ }
for _, layoutName := range layoutsTested {
var layout func(context.Context, *d2graph.Graph) error
diff --git a/e2etests/patterns_test.go b/e2etests/patterns_test.go
index c209e1d5c..946cf5e2f 100644
--- a/e2etests/patterns_test.go
+++ b/e2etests/patterns_test.go
@@ -3,6 +3,8 @@ package e2etests
import (
_ "embed"
"testing"
+
+ "github.com/davecgh/go-spew/spew"
)
func testPatterns(t *testing.T) {
@@ -154,5 +156,10 @@ NETWORK: {
},
}
+ for i := range tcs {
+ tcs[i].justDagre = true
+ spew.Dump(tcs[i].justDagre)
+ }
+
runa(t, tcs)
}
diff --git a/e2etests/testdata/patterns/3d/elk/board.exp.json b/e2etests/testdata/patterns/3d/elk/board.exp.json
deleted file mode 100644
index d8590dec5..000000000
--- a/e2etests/testdata/patterns/3d/elk/board.exp.json
+++ /dev/null
@@ -1,132 +0,0 @@
-{
- "name": "",
- "isFolderOnly": false,
- "fontFamily": "SourceSansPro",
- "shapes": [
- {
- "id": "x",
- "type": "rectangle",
- "pos": {
- "x": 12,
- "y": 13
- },
- "width": 53,
- "height": 66,
- "opacity": 1,
- "strokeDash": 0,
- "strokeWidth": 2,
- "borderRadius": 0,
- "fill": "B6",
- "fillPattern": "dots",
- "stroke": "B1",
- "shadow": false,
- "3d": true,
- "multiple": false,
- "double-border": false,
- "tooltip": "",
- "link": "",
- "icon": null,
- "iconPosition": "",
- "blend": false,
- "fields": null,
- "methods": null,
- "columns": null,
- "label": "x",
- "fontSize": 16,
- "fontFamily": "DEFAULT",
- "language": "",
- "color": "N1",
- "italic": false,
- "bold": true,
- "underline": false,
- "labelWidth": 8,
- "labelHeight": 21,
- "labelPosition": "INSIDE_MIDDLE_CENTER",
- "zIndex": 0,
- "level": 1
- },
- {
- "id": "y",
- "type": "hexagon",
- "pos": {
- "x": 85,
- "y": 12
- },
- "width": 51,
- "height": 69,
- "opacity": 1,
- "strokeDash": 0,
- "strokeWidth": 2,
- "borderRadius": 0,
- "fill": "N5",
- "fillPattern": "dots",
- "stroke": "B1",
- "shadow": false,
- "3d": true,
- "multiple": false,
- "double-border": false,
- "tooltip": "",
- "link": "",
- "icon": null,
- "iconPosition": "",
- "blend": false,
- "fields": null,
- "methods": null,
- "columns": null,
- "label": "y",
- "fontSize": 16,
- "fontFamily": "DEFAULT",
- "language": "",
- "color": "N1",
- "italic": false,
- "bold": true,
- "underline": false,
- "labelWidth": 9,
- "labelHeight": 21,
- "labelPosition": "INSIDE_MIDDLE_CENTER",
- "zIndex": 0,
- "level": 1
- }
- ],
- "connections": [],
- "root": {
- "id": "",
- "type": "",
- "pos": {
- "x": 0,
- "y": 0
- },
- "width": 0,
- "height": 0,
- "opacity": 0,
- "strokeDash": 0,
- "strokeWidth": 0,
- "borderRadius": 0,
- "fill": "N7",
- "stroke": "",
- "shadow": false,
- "3d": false,
- "multiple": false,
- "double-border": false,
- "tooltip": "",
- "link": "",
- "icon": null,
- "iconPosition": "",
- "blend": false,
- "fields": null,
- "methods": null,
- "columns": null,
- "label": "",
- "fontSize": 0,
- "fontFamily": "",
- "language": "",
- "color": "",
- "italic": false,
- "bold": false,
- "underline": false,
- "labelWidth": 0,
- "labelHeight": 0,
- "zIndex": 0,
- "level": 0
- }
-}
diff --git a/e2etests/testdata/patterns/3d/elk/sketch.exp.svg b/e2etests/testdata/patterns/3d/elk/sketch.exp.svg
deleted file mode 100644
index 1240791eb..000000000
--- a/e2etests/testdata/patterns/3d/elk/sketch.exp.svg
+++ /dev/null
@@ -1,132 +0,0 @@
-
\ No newline at end of file
diff --git a/e2etests/testdata/patterns/all_shape/dagre/board.exp.json b/e2etests/testdata/patterns/all_shape/dagre/board.exp.json
deleted file mode 100644
index 2cdeb798f..000000000
--- a/e2etests/testdata/patterns/all_shape/dagre/board.exp.json
+++ /dev/null
@@ -1,1302 +0,0 @@
-{
- "name": "",
- "isFolderOnly": false,
- "fontFamily": "SourceSansPro",
- "shapes": [
- {
- "id": "rectangle",
- "type": "rectangle",
- "pos": {
- "x": 0,
- "y": 13
- },
- "width": 111,
- "height": 66,
- "opacity": 1,
- "strokeDash": 0,
- "strokeWidth": 2,
- "borderRadius": 0,
- "fill": "B6",
- "fillPattern": "dots",
- "stroke": "B1",
- "shadow": false,
- "3d": false,
- "multiple": false,
- "double-border": false,
- "tooltip": "",
- "link": "",
- "icon": null,
- "iconPosition": "",
- "blend": false,
- "fields": null,
- "methods": null,
- "columns": null,
- "label": "rectangle",
- "fontSize": 16,
- "fontFamily": "DEFAULT",
- "language": "",
- "color": "N1",
- "italic": false,
- "bold": true,
- "underline": false,
- "labelWidth": 66,
- "labelHeight": 21,
- "labelPosition": "INSIDE_MIDDLE_CENTER",
- "zIndex": 0,
- "level": 1
- },
- {
- "id": "square",
- "type": "rectangle",
- "pos": {
- "x": 9,
- "y": 192
- },
- "width": 94,
- "height": 94,
- "opacity": 1,
- "strokeDash": 0,
- "strokeWidth": 2,
- "borderRadius": 0,
- "fill": "B6",
- "fillPattern": "dots",
- "stroke": "B1",
- "shadow": false,
- "3d": false,
- "multiple": false,
- "double-border": false,
- "tooltip": "",
- "link": "",
- "icon": null,
- "iconPosition": "",
- "blend": false,
- "fields": null,
- "methods": null,
- "columns": null,
- "label": "square",
- "fontSize": 16,
- "fontFamily": "DEFAULT",
- "language": "",
- "color": "N1",
- "italic": false,
- "bold": true,
- "underline": false,
- "labelWidth": 49,
- "labelHeight": 21,
- "labelPosition": "INSIDE_MIDDLE_CENTER",
- "zIndex": 0,
- "level": 1
- },
- {
- "id": "page",
- "type": "page",
- "pos": {
- "x": 16,
- "y": 402
- },
- "width": 79,
- "height": 87,
- "opacity": 1,
- "strokeDash": 0,
- "strokeWidth": 2,
- "borderRadius": 0,
- "fill": "AB4",
- "fillPattern": "dots",
- "stroke": "B1",
- "shadow": false,
- "3d": false,
- "multiple": false,
- "double-border": false,
- "tooltip": "",
- "link": "",
- "icon": null,
- "iconPosition": "",
- "blend": false,
- "fields": null,
- "methods": null,
- "columns": null,
- "label": "page",
- "fontSize": 16,
- "fontFamily": "DEFAULT",
- "language": "",
- "color": "N1",
- "italic": false,
- "bold": true,
- "underline": false,
- "labelWidth": 34,
- "labelHeight": 21,
- "labelPosition": "INSIDE_MIDDLE_CENTER",
- "zIndex": 0,
- "level": 1
- },
- {
- "id": "parallelogram",
- "type": "parallelogram",
- "pos": {
- "x": 171,
- "y": 13
- },
- "width": 196,
- "height": 66,
- "opacity": 1,
- "strokeDash": 0,
- "strokeWidth": 2,
- "borderRadius": 0,
- "fill": "N5",
- "fillPattern": "dots",
- "stroke": "B1",
- "shadow": false,
- "3d": false,
- "multiple": false,
- "double-border": false,
- "tooltip": "",
- "link": "",
- "icon": null,
- "iconPosition": "",
- "blend": false,
- "fields": null,
- "methods": null,
- "columns": null,
- "label": "parallelogram",
- "fontSize": 16,
- "fontFamily": "DEFAULT",
- "language": "",
- "color": "N1",
- "italic": false,
- "bold": true,
- "underline": false,
- "labelWidth": 99,
- "labelHeight": 21,
- "labelPosition": "INSIDE_MIDDLE_CENTER",
- "zIndex": 0,
- "level": 1
- },
- {
- "id": "document",
- "type": "document",
- "pos": {
- "x": 211,
- "y": 201
- },
- "width": 117,
- "height": 76,
- "opacity": 1,
- "strokeDash": 0,
- "strokeWidth": 2,
- "borderRadius": 0,
- "fill": "AB4",
- "fillPattern": "dots",
- "stroke": "B1",
- "shadow": false,
- "3d": false,
- "multiple": false,
- "double-border": false,
- "tooltip": "",
- "link": "",
- "icon": null,
- "iconPosition": "",
- "blend": false,
- "fields": null,
- "methods": null,
- "columns": null,
- "label": "document",
- "fontSize": 16,
- "fontFamily": "DEFAULT",
- "language": "",
- "color": "N1",
- "italic": false,
- "bold": true,
- "underline": false,
- "labelWidth": 72,
- "labelHeight": 21,
- "labelPosition": "INSIDE_MIDDLE_CENTER",
- "zIndex": 0,
- "level": 1
- },
- {
- "id": "cylinder",
- "type": "cylinder",
- "pos": {
- "x": 217,
- "y": 386
- },
- "width": 104,
- "height": 118,
- "opacity": 1,
- "strokeDash": 0,
- "strokeWidth": 2,
- "borderRadius": 0,
- "fill": "AA4",
- "fillPattern": "dots",
- "stroke": "B1",
- "shadow": false,
- "3d": false,
- "multiple": false,
- "double-border": false,
- "tooltip": "",
- "link": "",
- "icon": null,
- "iconPosition": "",
- "blend": false,
- "fields": null,
- "methods": null,
- "columns": null,
- "label": "cylinder",
- "fontSize": 16,
- "fontFamily": "DEFAULT",
- "language": "",
- "color": "N1",
- "italic": false,
- "bold": true,
- "underline": false,
- "labelWidth": 59,
- "labelHeight": 21,
- "labelPosition": "INSIDE_MIDDLE_CENTER",
- "zIndex": 0,
- "level": 1
- },
- {
- "id": "queue",
- "type": "queue",
- "pos": {
- "x": 427,
- "y": 13
- },
- "width": 141,
- "height": 66,
- "opacity": 1,
- "strokeDash": 0,
- "strokeWidth": 2,
- "borderRadius": 0,
- "fill": "N5",
- "fillPattern": "dots",
- "stroke": "B1",
- "shadow": false,
- "3d": false,
- "multiple": false,
- "double-border": false,
- "tooltip": "",
- "link": "",
- "icon": null,
- "iconPosition": "",
- "blend": false,
- "fields": null,
- "methods": null,
- "columns": null,
- "label": "queue",
- "fontSize": 16,
- "fontFamily": "DEFAULT",
- "language": "",
- "color": "N1",
- "italic": false,
- "bold": true,
- "underline": false,
- "labelWidth": 44,
- "labelHeight": 21,
- "labelPosition": "INSIDE_MIDDLE_CENTER",
- "zIndex": 0,
- "level": 1
- },
- {
- "id": "package",
- "type": "package",
- "pos": {
- "x": 446,
- "y": 203
- },
- "width": 103,
- "height": 73,
- "opacity": 1,
- "strokeDash": 0,
- "strokeWidth": 2,
- "borderRadius": 0,
- "fill": "AA4",
- "fillPattern": "dots",
- "stroke": "B1",
- "shadow": false,
- "3d": false,
- "multiple": false,
- "double-border": false,
- "tooltip": "",
- "link": "",
- "icon": null,
- "iconPosition": "",
- "blend": false,
- "fields": null,
- "methods": null,
- "columns": null,
- "label": "package",
- "fontSize": 16,
- "fontFamily": "DEFAULT",
- "language": "",
- "color": "N1",
- "italic": false,
- "bold": true,
- "underline": false,
- "labelWidth": 58,
- "labelHeight": 21,
- "labelPosition": "INSIDE_MIDDLE_CENTER",
- "zIndex": 0,
- "level": 1
- },
- {
- "id": "step",
- "type": "step",
- "pos": {
- "x": 440,
- "y": 395
- },
- "width": 116,
- "height": 101,
- "opacity": 1,
- "strokeDash": 0,
- "strokeWidth": 2,
- "borderRadius": 0,
- "fill": "AB4",
- "fillPattern": "dots",
- "stroke": "B1",
- "shadow": false,
- "3d": false,
- "multiple": false,
- "double-border": false,
- "tooltip": "",
- "link": "",
- "icon": null,
- "iconPosition": "",
- "blend": false,
- "fields": null,
- "methods": null,
- "columns": null,
- "label": "step",
- "fontSize": 16,
- "fontFamily": "DEFAULT",
- "language": "",
- "color": "N1",
- "italic": false,
- "bold": true,
- "underline": false,
- "labelWidth": 31,
- "labelHeight": 21,
- "labelPosition": "INSIDE_MIDDLE_CENTER",
- "zIndex": 0,
- "level": 1
- },
- {
- "id": "callout",
- "type": "callout",
- "pos": {
- "x": 637,
- "y": 1
- },
- "width": 95,
- "height": 91,
- "opacity": 1,
- "strokeDash": 0,
- "strokeWidth": 2,
- "borderRadius": 0,
- "fill": "N7",
- "fillPattern": "dots",
- "stroke": "B1",
- "shadow": false,
- "3d": false,
- "multiple": false,
- "double-border": false,
- "tooltip": "",
- "link": "",
- "icon": null,
- "iconPosition": "",
- "blend": false,
- "fields": null,
- "methods": null,
- "columns": null,
- "label": "callout",
- "fontSize": 16,
- "fontFamily": "DEFAULT",
- "language": "",
- "color": "N1",
- "italic": false,
- "bold": true,
- "underline": false,
- "labelWidth": 50,
- "labelHeight": 21,
- "labelPosition": "INSIDE_MIDDLE_CENTER",
- "zIndex": 0,
- "level": 1
- },
- {
- "id": "stored_data",
- "type": "stored_data",
- "pos": {
- "x": 609,
- "y": 206
- },
- "width": 151,
- "height": 66,
- "opacity": 1,
- "strokeDash": 0,
- "strokeWidth": 2,
- "borderRadius": 0,
- "fill": "AA4",
- "fillPattern": "dots",
- "stroke": "B1",
- "shadow": false,
- "3d": false,
- "multiple": false,
- "double-border": false,
- "tooltip": "",
- "link": "",
- "icon": null,
- "iconPosition": "",
- "blend": false,
- "fields": null,
- "methods": null,
- "columns": null,
- "label": "stored_data",
- "fontSize": 16,
- "fontFamily": "DEFAULT",
- "language": "",
- "color": "N1",
- "italic": false,
- "bold": true,
- "underline": false,
- "labelWidth": 86,
- "labelHeight": 21,
- "labelPosition": "INSIDE_MIDDLE_CENTER",
- "zIndex": 0,
- "level": 1
- },
- {
- "id": "person",
- "type": "person",
- "pos": {
- "x": 653,
- "y": 399
- },
- "width": 63,
- "height": 66,
- "opacity": 1,
- "strokeDash": 0,
- "strokeWidth": 2,
- "borderRadius": 0,
- "fill": "B3",
- "fillPattern": "dots",
- "stroke": "B1",
- "shadow": false,
- "3d": false,
- "multiple": false,
- "double-border": false,
- "tooltip": "",
- "link": "",
- "icon": null,
- "iconPosition": "",
- "blend": false,
- "fields": null,
- "methods": null,
- "columns": null,
- "label": "person",
- "fontSize": 16,
- "fontFamily": "DEFAULT",
- "language": "",
- "color": "N1",
- "italic": false,
- "bold": true,
- "underline": false,
- "labelWidth": 48,
- "labelHeight": 21,
- "labelPosition": "OUTSIDE_BOTTOM_CENTER",
- "zIndex": 0,
- "level": 1
- },
- {
- "id": "diamond",
- "type": "diamond",
- "pos": {
- "x": 792,
- "y": 0
- },
- "width": 156,
- "height": 92,
- "opacity": 1,
- "strokeDash": 0,
- "strokeWidth": 2,
- "borderRadius": 0,
- "fill": "N4",
- "fillPattern": "dots",
- "stroke": "B1",
- "shadow": false,
- "3d": false,
- "multiple": false,
- "double-border": false,
- "tooltip": "",
- "link": "",
- "icon": null,
- "iconPosition": "",
- "blend": false,
- "fields": null,
- "methods": null,
- "columns": null,
- "label": "diamond",
- "fontSize": 16,
- "fontFamily": "DEFAULT",
- "language": "",
- "color": "N1",
- "italic": false,
- "bold": true,
- "underline": false,
- "labelWidth": 63,
- "labelHeight": 21,
- "labelPosition": "INSIDE_MIDDLE_CENTER",
- "zIndex": 0,
- "level": 1
- },
- {
- "id": "oval",
- "type": "oval",
- "pos": {
- "x": 822,
- "y": 204
- },
- "width": 97,
- "height": 70,
- "opacity": 1,
- "strokeDash": 0,
- "strokeWidth": 2,
- "borderRadius": 0,
- "fill": "B6",
- "fillPattern": "dots",
- "stroke": "B1",
- "shadow": false,
- "3d": false,
- "multiple": false,
- "double-border": false,
- "tooltip": "",
- "link": "",
- "icon": null,
- "iconPosition": "",
- "blend": false,
- "fields": null,
- "methods": null,
- "columns": null,
- "label": "oval",
- "fontSize": 16,
- "fontFamily": "DEFAULT",
- "language": "",
- "color": "N1",
- "italic": false,
- "bold": true,
- "underline": false,
- "labelWidth": 31,
- "labelHeight": 21,
- "labelPosition": "INSIDE_MIDDLE_CENTER",
- "zIndex": 0,
- "level": 1
- },
- {
- "id": "circle",
- "type": "oval",
- "pos": {
- "x": 825,
- "y": 400
- },
- "width": 91,
- "height": 91,
- "opacity": 1,
- "strokeDash": 0,
- "strokeWidth": 2,
- "borderRadius": 0,
- "fill": "B6",
- "fillPattern": "dots",
- "stroke": "B1",
- "shadow": false,
- "3d": false,
- "multiple": false,
- "double-border": false,
- "tooltip": "",
- "link": "",
- "icon": null,
- "iconPosition": "",
- "blend": false,
- "fields": null,
- "methods": null,
- "columns": null,
- "label": "circle",
- "fontSize": 16,
- "fontFamily": "DEFAULT",
- "language": "",
- "color": "N1",
- "italic": false,
- "bold": true,
- "underline": false,
- "labelWidth": 39,
- "labelHeight": 21,
- "labelPosition": "INSIDE_MIDDLE_CENTER",
- "zIndex": 0,
- "level": 1
- },
- {
- "id": "hexagon",
- "type": "hexagon",
- "pos": {
- "x": 1008,
- "y": 12
- },
- "width": 128,
- "height": 69,
- "opacity": 1,
- "strokeDash": 0,
- "strokeWidth": 2,
- "borderRadius": 0,
- "fill": "N5",
- "fillPattern": "dots",
- "stroke": "B1",
- "shadow": false,
- "3d": false,
- "multiple": false,
- "double-border": false,
- "tooltip": "",
- "link": "",
- "icon": null,
- "iconPosition": "",
- "blend": false,
- "fields": null,
- "methods": null,
- "columns": null,
- "label": "hexagon",
- "fontSize": 16,
- "fontFamily": "DEFAULT",
- "language": "",
- "color": "N1",
- "italic": false,
- "bold": true,
- "underline": false,
- "labelWidth": 60,
- "labelHeight": 21,
- "labelPosition": "INSIDE_MIDDLE_CENTER",
- "zIndex": 0,
- "level": 1
- },
- {
- "id": "cloud",
- "type": "cloud",
- "pos": {
- "x": 1020,
- "y": 197
- },
- "width": 104,
- "height": 84,
- "opacity": 1,
- "strokeDash": 0,
- "strokeWidth": 2,
- "borderRadius": 0,
- "fill": "N7",
- "fillPattern": "dots",
- "stroke": "B1",
- "shadow": false,
- "3d": false,
- "multiple": false,
- "double-border": false,
- "tooltip": "",
- "link": "",
- "icon": null,
- "iconPosition": "",
- "blend": false,
- "fields": null,
- "methods": null,
- "columns": null,
- "label": "cloud",
- "fontSize": 16,
- "fontFamily": "DEFAULT",
- "language": "",
- "color": "N1",
- "italic": false,
- "bold": true,
- "underline": false,
- "labelWidth": 40,
- "labelHeight": 21,
- "labelPosition": "INSIDE_MIDDLE_CENTER",
- "zIndex": 0,
- "level": 1
- }
- ],
- "connections": [
- {
- "id": "(rectangle -> square)[0]",
- "src": "rectangle",
- "srcArrow": "none",
- "srcLabel": "",
- "dst": "square",
- "dstArrow": "triangle",
- "dstLabel": "",
- "opacity": 1,
- "strokeDash": 0,
- "strokeWidth": 2,
- "stroke": "B1",
- "borderRadius": 10,
- "label": "",
- "fontSize": 16,
- "fontFamily": "DEFAULT",
- "language": "",
- "color": "N2",
- "italic": true,
- "bold": false,
- "underline": false,
- "labelWidth": 0,
- "labelHeight": 0,
- "labelPosition": "",
- "labelPercentage": 0,
- "route": [
- {
- "x": 55.5,
- "y": 79
- },
- {
- "x": 55.5,
- "y": 129.4
- },
- {
- "x": 55.5,
- "y": 152
- },
- {
- "x": 55.5,
- "y": 192
- }
- ],
- "isCurve": true,
- "animated": false,
- "tooltip": "",
- "icon": null,
- "zIndex": 0
- },
- {
- "id": "(square -> page)[0]",
- "src": "square",
- "srcArrow": "none",
- "srcLabel": "",
- "dst": "page",
- "dstArrow": "triangle",
- "dstLabel": "",
- "opacity": 1,
- "strokeDash": 0,
- "strokeWidth": 2,
- "stroke": "B1",
- "borderRadius": 10,
- "label": "",
- "fontSize": 16,
- "fontFamily": "DEFAULT",
- "language": "",
- "color": "N2",
- "italic": true,
- "bold": false,
- "underline": false,
- "labelWidth": 0,
- "labelHeight": 0,
- "labelPosition": "",
- "labelPercentage": 0,
- "route": [
- {
- "x": 55.5,
- "y": 286
- },
- {
- "x": 55.5,
- "y": 326
- },
- {
- "x": 55.6,
- "y": 349.2
- },
- {
- "x": 56,
- "y": 402
- }
- ],
- "isCurve": true,
- "animated": false,
- "tooltip": "",
- "icon": null,
- "zIndex": 0
- },
- {
- "id": "(parallelogram -> document)[0]",
- "src": "parallelogram",
- "srcArrow": "none",
- "srcLabel": "",
- "dst": "document",
- "dstArrow": "triangle",
- "dstLabel": "",
- "opacity": 1,
- "strokeDash": 0,
- "strokeWidth": 2,
- "stroke": "B1",
- "borderRadius": 10,
- "label": "",
- "fontSize": 16,
- "fontFamily": "DEFAULT",
- "language": "",
- "color": "N2",
- "italic": true,
- "bold": false,
- "underline": false,
- "labelWidth": 0,
- "labelHeight": 0,
- "labelPosition": "",
- "labelPercentage": 0,
- "route": [
- {
- "x": 269,
- "y": 79
- },
- {
- "x": 269,
- "y": 129.4
- },
- {
- "x": 269,
- "y": 153.8
- },
- {
- "x": 269,
- "y": 201
- }
- ],
- "isCurve": true,
- "animated": false,
- "tooltip": "",
- "icon": null,
- "zIndex": 0
- },
- {
- "id": "(document -> cylinder)[0]",
- "src": "document",
- "srcArrow": "none",
- "srcLabel": "",
- "dst": "cylinder",
- "dstArrow": "triangle",
- "dstLabel": "",
- "opacity": 1,
- "strokeDash": 0,
- "strokeWidth": 2,
- "stroke": "B1",
- "borderRadius": 10,
- "label": "",
- "fontSize": 16,
- "fontFamily": "DEFAULT",
- "language": "",
- "color": "N2",
- "italic": true,
- "bold": false,
- "underline": false,
- "labelWidth": 0,
- "labelHeight": 0,
- "labelPosition": "",
- "labelPercentage": 0,
- "route": [
- {
- "x": 269,
- "y": 267
- },
- {
- "x": 269,
- "y": 322.2
- },
- {
- "x": 269,
- "y": 346
- },
- {
- "x": 269,
- "y": 386
- }
- ],
- "isCurve": true,
- "animated": false,
- "tooltip": "",
- "icon": null,
- "zIndex": 0
- },
- {
- "id": "(queue -> package)[0]",
- "src": "queue",
- "srcArrow": "none",
- "srcLabel": "",
- "dst": "package",
- "dstArrow": "triangle",
- "dstLabel": "",
- "opacity": 1,
- "strokeDash": 0,
- "strokeWidth": 2,
- "stroke": "B1",
- "borderRadius": 10,
- "label": "",
- "fontSize": 16,
- "fontFamily": "DEFAULT",
- "language": "",
- "color": "N2",
- "italic": true,
- "bold": false,
- "underline": false,
- "labelWidth": 0,
- "labelHeight": 0,
- "labelPosition": "",
- "labelPercentage": 0,
- "route": [
- {
- "x": 497,
- "y": 79
- },
- {
- "x": 497.4,
- "y": 129.4
- },
- {
- "x": 497.6,
- "y": 154.2
- },
- {
- "x": 498,
- "y": 203
- }
- ],
- "isCurve": true,
- "animated": false,
- "tooltip": "",
- "icon": null,
- "zIndex": 0
- },
- {
- "id": "(package -> step)[0]",
- "src": "package",
- "srcArrow": "none",
- "srcLabel": "",
- "dst": "step",
- "dstArrow": "triangle",
- "dstLabel": "",
- "opacity": 1,
- "strokeDash": 0,
- "strokeWidth": 2,
- "stroke": "B1",
- "borderRadius": 10,
- "label": "",
- "fontSize": 16,
- "fontFamily": "DEFAULT",
- "language": "",
- "color": "N2",
- "italic": true,
- "bold": false,
- "underline": false,
- "labelWidth": 0,
- "labelHeight": 0,
- "labelPosition": "",
- "labelPercentage": 0,
- "route": [
- {
- "x": 497,
- "y": 276
- },
- {
- "x": 497.4,
- "y": 324
- },
- {
- "x": 497.6,
- "y": 347.8
- },
- {
- "x": 498,
- "y": 395
- }
- ],
- "isCurve": true,
- "animated": false,
- "tooltip": "",
- "icon": null,
- "zIndex": 0
- },
- {
- "id": "(callout -> stored_data)[0]",
- "src": "callout",
- "srcArrow": "none",
- "srcLabel": "",
- "dst": "stored_data",
- "dstArrow": "triangle",
- "dstLabel": "",
- "opacity": 1,
- "strokeDash": 0,
- "strokeWidth": 2,
- "stroke": "B1",
- "borderRadius": 10,
- "label": "",
- "fontSize": 16,
- "fontFamily": "DEFAULT",
- "language": "",
- "color": "N2",
- "italic": true,
- "bold": false,
- "underline": false,
- "labelWidth": 0,
- "labelHeight": 0,
- "labelPosition": "",
- "labelPercentage": 0,
- "route": [
- {
- "x": 685,
- "y": 47
- },
- {
- "x": 684.6,
- "y": 123
- },
- {
- "x": 684.6,
- "y": 154.8
- },
- {
- "x": 685,
- "y": 206
- }
- ],
- "isCurve": true,
- "animated": false,
- "tooltip": "",
- "icon": null,
- "zIndex": 0
- },
- {
- "id": "(stored_data -> person)[0]",
- "src": "stored_data",
- "srcArrow": "none",
- "srcLabel": "",
- "dst": "person",
- "dstArrow": "triangle",
- "dstLabel": "",
- "opacity": 1,
- "strokeDash": 0,
- "strokeWidth": 2,
- "stroke": "B1",
- "borderRadius": 10,
- "label": "",
- "fontSize": 16,
- "fontFamily": "DEFAULT",
- "language": "",
- "color": "N2",
- "italic": true,
- "bold": false,
- "underline": false,
- "labelWidth": 0,
- "labelHeight": 0,
- "labelPosition": "",
- "labelPercentage": 0,
- "route": [
- {
- "x": 684,
- "y": 272
- },
- {
- "x": 684.4,
- "y": 323.2
- },
- {
- "x": 684.6,
- "y": 348.6
- },
- {
- "x": 685,
- "y": 399
- }
- ],
- "isCurve": true,
- "animated": false,
- "tooltip": "",
- "icon": null,
- "zIndex": 0
- },
- {
- "id": "(diamond -> oval)[0]",
- "src": "diamond",
- "srcArrow": "none",
- "srcLabel": "",
- "dst": "oval",
- "dstArrow": "triangle",
- "dstLabel": "",
- "opacity": 1,
- "strokeDash": 0,
- "strokeWidth": 2,
- "stroke": "B1",
- "borderRadius": 10,
- "label": "",
- "fontSize": 16,
- "fontFamily": "DEFAULT",
- "language": "",
- "color": "N2",
- "italic": true,
- "bold": false,
- "underline": false,
- "labelWidth": 0,
- "labelHeight": 0,
- "labelPosition": "",
- "labelPercentage": 0,
- "route": [
- {
- "x": 870,
- "y": 92
- },
- {
- "x": 870,
- "y": 132
- },
- {
- "x": 870,
- "y": 154.4
- },
- {
- "x": 870,
- "y": 204
- }
- ],
- "isCurve": true,
- "animated": false,
- "tooltip": "",
- "icon": null,
- "zIndex": 0
- },
- {
- "id": "(oval -> circle)[0]",
- "src": "oval",
- "srcArrow": "none",
- "srcLabel": "",
- "dst": "circle",
- "dstArrow": "triangle",
- "dstLabel": "",
- "opacity": 1,
- "strokeDash": 0,
- "strokeWidth": 2,
- "stroke": "B1",
- "borderRadius": 10,
- "label": "",
- "fontSize": 16,
- "fontFamily": "DEFAULT",
- "language": "",
- "color": "N2",
- "italic": true,
- "bold": false,
- "underline": false,
- "labelWidth": 0,
- "labelHeight": 0,
- "labelPosition": "",
- "labelPercentage": 0,
- "route": [
- {
- "x": 870,
- "y": 274
- },
- {
- "x": 870,
- "y": 323.6
- },
- {
- "x": 870,
- "y": 348.8
- },
- {
- "x": 870,
- "y": 400
- }
- ],
- "isCurve": true,
- "animated": false,
- "tooltip": "",
- "icon": null,
- "zIndex": 0
- },
- {
- "id": "(hexagon -> cloud)[0]",
- "src": "hexagon",
- "srcArrow": "none",
- "srcLabel": "",
- "dst": "cloud",
- "dstArrow": "triangle",
- "dstLabel": "",
- "opacity": 1,
- "strokeDash": 0,
- "strokeWidth": 2,
- "stroke": "B1",
- "borderRadius": 10,
- "label": "",
- "fontSize": 16,
- "fontFamily": "DEFAULT",
- "language": "",
- "color": "N2",
- "italic": true,
- "bold": false,
- "underline": false,
- "labelWidth": 0,
- "labelHeight": 0,
- "labelPosition": "",
- "labelPercentage": 0,
- "route": [
- {
- "x": 1072,
- "y": 81
- },
- {
- "x": 1072,
- "y": 129.8
- },
- {
- "x": 1072,
- "y": 153.2
- },
- {
- "x": 1072,
- "y": 198
- }
- ],
- "isCurve": true,
- "animated": false,
- "tooltip": "",
- "icon": null,
- "zIndex": 0
- }
- ],
- "root": {
- "id": "",
- "type": "",
- "pos": {
- "x": 0,
- "y": 0
- },
- "width": 0,
- "height": 0,
- "opacity": 0,
- "strokeDash": 0,
- "strokeWidth": 0,
- "borderRadius": 0,
- "fill": "N7",
- "stroke": "",
- "shadow": false,
- "3d": false,
- "multiple": false,
- "double-border": false,
- "tooltip": "",
- "link": "",
- "icon": null,
- "iconPosition": "",
- "blend": false,
- "fields": null,
- "methods": null,
- "columns": null,
- "label": "",
- "fontSize": 0,
- "fontFamily": "",
- "language": "",
- "color": "",
- "italic": false,
- "bold": false,
- "underline": false,
- "labelWidth": 0,
- "labelHeight": 0,
- "zIndex": 0,
- "level": 0
- }
-}
diff --git a/e2etests/testdata/patterns/all_shape/dagre/sketch.exp.svg b/e2etests/testdata/patterns/all_shape/dagre/sketch.exp.svg
deleted file mode 100644
index 30b7d515d..000000000
--- a/e2etests/testdata/patterns/all_shape/dagre/sketch.exp.svg
+++ /dev/null
@@ -1,128 +0,0 @@
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-rectanglesquarepageparallelogramdocumentcylinderqueuepackagestepcalloutstored_datapersondiamondovalcirclehexagoncloud
-
-
-
\ No newline at end of file
diff --git a/e2etests/testdata/patterns/all_shape/elk/board.exp.json b/e2etests/testdata/patterns/all_shape/elk/board.exp.json
deleted file mode 100644
index a3455e29a..000000000
--- a/e2etests/testdata/patterns/all_shape/elk/board.exp.json
+++ /dev/null
@@ -1,1203 +0,0 @@
-{
- "name": "",
- "isFolderOnly": false,
- "fontFamily": "SourceSansPro",
- "shapes": [
- {
- "id": "rectangle",
- "type": "rectangle",
- "pos": {
- "x": 12,
- "y": 38
- },
- "width": 111,
- "height": 66,
- "opacity": 1,
- "strokeDash": 0,
- "strokeWidth": 2,
- "borderRadius": 0,
- "fill": "B6",
- "fillPattern": "dots",
- "stroke": "B1",
- "shadow": false,
- "3d": false,
- "multiple": false,
- "double-border": false,
- "tooltip": "",
- "link": "",
- "icon": null,
- "iconPosition": "",
- "blend": false,
- "fields": null,
- "methods": null,
- "columns": null,
- "label": "rectangle",
- "fontSize": 16,
- "fontFamily": "DEFAULT",
- "language": "",
- "color": "N1",
- "italic": false,
- "bold": true,
- "underline": false,
- "labelWidth": 66,
- "labelHeight": 21,
- "labelPosition": "INSIDE_MIDDLE_CENTER",
- "zIndex": 0,
- "level": 1
- },
- {
- "id": "square",
- "type": "rectangle",
- "pos": {
- "x": 20,
- "y": 174
- },
- "width": 94,
- "height": 94,
- "opacity": 1,
- "strokeDash": 0,
- "strokeWidth": 2,
- "borderRadius": 0,
- "fill": "B6",
- "fillPattern": "dots",
- "stroke": "B1",
- "shadow": false,
- "3d": false,
- "multiple": false,
- "double-border": false,
- "tooltip": "",
- "link": "",
- "icon": null,
- "iconPosition": "",
- "blend": false,
- "fields": null,
- "methods": null,
- "columns": null,
- "label": "square",
- "fontSize": 16,
- "fontFamily": "DEFAULT",
- "language": "",
- "color": "N1",
- "italic": false,
- "bold": true,
- "underline": false,
- "labelWidth": 49,
- "labelHeight": 21,
- "labelPosition": "INSIDE_MIDDLE_CENTER",
- "zIndex": 0,
- "level": 1
- },
- {
- "id": "page",
- "type": "page",
- "pos": {
- "x": 28,
- "y": 338
- },
- "width": 79,
- "height": 87,
- "opacity": 1,
- "strokeDash": 0,
- "strokeWidth": 2,
- "borderRadius": 0,
- "fill": "AB4",
- "fillPattern": "dots",
- "stroke": "B1",
- "shadow": false,
- "3d": false,
- "multiple": false,
- "double-border": false,
- "tooltip": "",
- "link": "",
- "icon": null,
- "iconPosition": "",
- "blend": false,
- "fields": null,
- "methods": null,
- "columns": null,
- "label": "page",
- "fontSize": 16,
- "fontFamily": "DEFAULT",
- "language": "",
- "color": "N1",
- "italic": false,
- "bold": true,
- "underline": false,
- "labelWidth": 34,
- "labelHeight": 21,
- "labelPosition": "INSIDE_MIDDLE_CENTER",
- "zIndex": 0,
- "level": 1
- },
- {
- "id": "parallelogram",
- "type": "parallelogram",
- "pos": {
- "x": 143,
- "y": 38
- },
- "width": 196,
- "height": 66,
- "opacity": 1,
- "strokeDash": 0,
- "strokeWidth": 2,
- "borderRadius": 0,
- "fill": "N5",
- "fillPattern": "dots",
- "stroke": "B1",
- "shadow": false,
- "3d": false,
- "multiple": false,
- "double-border": false,
- "tooltip": "",
- "link": "",
- "icon": null,
- "iconPosition": "",
- "blend": false,
- "fields": null,
- "methods": null,
- "columns": null,
- "label": "parallelogram",
- "fontSize": 16,
- "fontFamily": "DEFAULT",
- "language": "",
- "color": "N1",
- "italic": false,
- "bold": true,
- "underline": false,
- "labelWidth": 99,
- "labelHeight": 21,
- "labelPosition": "INSIDE_MIDDLE_CENTER",
- "zIndex": 0,
- "level": 1
- },
- {
- "id": "document",
- "type": "document",
- "pos": {
- "x": 182,
- "y": 183
- },
- "width": 117,
- "height": 76,
- "opacity": 1,
- "strokeDash": 0,
- "strokeWidth": 2,
- "borderRadius": 0,
- "fill": "AB4",
- "fillPattern": "dots",
- "stroke": "B1",
- "shadow": false,
- "3d": false,
- "multiple": false,
- "double-border": false,
- "tooltip": "",
- "link": "",
- "icon": null,
- "iconPosition": "",
- "blend": false,
- "fields": null,
- "methods": null,
- "columns": null,
- "label": "document",
- "fontSize": 16,
- "fontFamily": "DEFAULT",
- "language": "",
- "color": "N1",
- "italic": false,
- "bold": true,
- "underline": false,
- "labelWidth": 72,
- "labelHeight": 21,
- "labelPosition": "INSIDE_MIDDLE_CENTER",
- "zIndex": 0,
- "level": 1
- },
- {
- "id": "cylinder",
- "type": "cylinder",
- "pos": {
- "x": 189,
- "y": 338
- },
- "width": 104,
- "height": 118,
- "opacity": 1,
- "strokeDash": 0,
- "strokeWidth": 2,
- "borderRadius": 0,
- "fill": "AA4",
- "fillPattern": "dots",
- "stroke": "B1",
- "shadow": false,
- "3d": false,
- "multiple": false,
- "double-border": false,
- "tooltip": "",
- "link": "",
- "icon": null,
- "iconPosition": "",
- "blend": false,
- "fields": null,
- "methods": null,
- "columns": null,
- "label": "cylinder",
- "fontSize": 16,
- "fontFamily": "DEFAULT",
- "language": "",
- "color": "N1",
- "italic": false,
- "bold": true,
- "underline": false,
- "labelWidth": 59,
- "labelHeight": 21,
- "labelPosition": "INSIDE_MIDDLE_CENTER",
- "zIndex": 0,
- "level": 1
- },
- {
- "id": "queue",
- "type": "queue",
- "pos": {
- "x": 359,
- "y": 38
- },
- "width": 141,
- "height": 66,
- "opacity": 1,
- "strokeDash": 0,
- "strokeWidth": 2,
- "borderRadius": 0,
- "fill": "N5",
- "fillPattern": "dots",
- "stroke": "B1",
- "shadow": false,
- "3d": false,
- "multiple": false,
- "double-border": false,
- "tooltip": "",
- "link": "",
- "icon": null,
- "iconPosition": "",
- "blend": false,
- "fields": null,
- "methods": null,
- "columns": null,
- "label": "queue",
- "fontSize": 16,
- "fontFamily": "DEFAULT",
- "language": "",
- "color": "N1",
- "italic": false,
- "bold": true,
- "underline": false,
- "labelWidth": 44,
- "labelHeight": 21,
- "labelPosition": "INSIDE_MIDDLE_CENTER",
- "zIndex": 0,
- "level": 1
- },
- {
- "id": "package",
- "type": "package",
- "pos": {
- "x": 378,
- "y": 184
- },
- "width": 103,
- "height": 73,
- "opacity": 1,
- "strokeDash": 0,
- "strokeWidth": 2,
- "borderRadius": 0,
- "fill": "AA4",
- "fillPattern": "dots",
- "stroke": "B1",
- "shadow": false,
- "3d": false,
- "multiple": false,
- "double-border": false,
- "tooltip": "",
- "link": "",
- "icon": null,
- "iconPosition": "",
- "blend": false,
- "fields": null,
- "methods": null,
- "columns": null,
- "label": "package",
- "fontSize": 16,
- "fontFamily": "DEFAULT",
- "language": "",
- "color": "N1",
- "italic": false,
- "bold": true,
- "underline": false,
- "labelWidth": 58,
- "labelHeight": 21,
- "labelPosition": "INSIDE_MIDDLE_CENTER",
- "zIndex": 0,
- "level": 1
- },
- {
- "id": "step",
- "type": "step",
- "pos": {
- "x": 371,
- "y": 338
- },
- "width": 116,
- "height": 101,
- "opacity": 1,
- "strokeDash": 0,
- "strokeWidth": 2,
- "borderRadius": 0,
- "fill": "AB4",
- "fillPattern": "dots",
- "stroke": "B1",
- "shadow": false,
- "3d": false,
- "multiple": false,
- "double-border": false,
- "tooltip": "",
- "link": "",
- "icon": null,
- "iconPosition": "",
- "blend": false,
- "fields": null,
- "methods": null,
- "columns": null,
- "label": "step",
- "fontSize": 16,
- "fontFamily": "DEFAULT",
- "language": "",
- "color": "N1",
- "italic": false,
- "bold": true,
- "underline": false,
- "labelWidth": 31,
- "labelHeight": 21,
- "labelPosition": "INSIDE_MIDDLE_CENTER",
- "zIndex": 0,
- "level": 1
- },
- {
- "id": "callout",
- "type": "callout",
- "pos": {
- "x": 529,
- "y": 13
- },
- "width": 95,
- "height": 91,
- "opacity": 1,
- "strokeDash": 0,
- "strokeWidth": 2,
- "borderRadius": 0,
- "fill": "N7",
- "fillPattern": "dots",
- "stroke": "B1",
- "shadow": false,
- "3d": false,
- "multiple": false,
- "double-border": false,
- "tooltip": "",
- "link": "",
- "icon": null,
- "iconPosition": "",
- "blend": false,
- "fields": null,
- "methods": null,
- "columns": null,
- "label": "callout",
- "fontSize": 16,
- "fontFamily": "DEFAULT",
- "language": "",
- "color": "N1",
- "italic": false,
- "bold": true,
- "underline": false,
- "labelWidth": 50,
- "labelHeight": 21,
- "labelPosition": "INSIDE_MIDDLE_CENTER",
- "zIndex": 0,
- "level": 1
- },
- {
- "id": "stored_data",
- "type": "stored_data",
- "pos": {
- "x": 501,
- "y": 188
- },
- "width": 151,
- "height": 66,
- "opacity": 1,
- "strokeDash": 0,
- "strokeWidth": 2,
- "borderRadius": 0,
- "fill": "AA4",
- "fillPattern": "dots",
- "stroke": "B1",
- "shadow": false,
- "3d": false,
- "multiple": false,
- "double-border": false,
- "tooltip": "",
- "link": "",
- "icon": null,
- "iconPosition": "",
- "blend": false,
- "fields": null,
- "methods": null,
- "columns": null,
- "label": "stored_data",
- "fontSize": 16,
- "fontFamily": "DEFAULT",
- "language": "",
- "color": "N1",
- "italic": false,
- "bold": true,
- "underline": false,
- "labelWidth": 86,
- "labelHeight": 21,
- "labelPosition": "INSIDE_MIDDLE_CENTER",
- "zIndex": 0,
- "level": 1
- },
- {
- "id": "person",
- "type": "person",
- "pos": {
- "x": 545,
- "y": 338
- },
- "width": 63,
- "height": 66,
- "opacity": 1,
- "strokeDash": 0,
- "strokeWidth": 2,
- "borderRadius": 0,
- "fill": "B3",
- "fillPattern": "dots",
- "stroke": "B1",
- "shadow": false,
- "3d": false,
- "multiple": false,
- "double-border": false,
- "tooltip": "",
- "link": "",
- "icon": null,
- "iconPosition": "",
- "blend": false,
- "fields": null,
- "methods": null,
- "columns": null,
- "label": "person",
- "fontSize": 16,
- "fontFamily": "DEFAULT",
- "language": "",
- "color": "N1",
- "italic": false,
- "bold": true,
- "underline": false,
- "labelWidth": 48,
- "labelHeight": 21,
- "labelPosition": "OUTSIDE_BOTTOM_CENTER",
- "zIndex": 0,
- "level": 1
- },
- {
- "id": "diamond",
- "type": "diamond",
- "pos": {
- "x": 644,
- "y": 12
- },
- "width": 156,
- "height": 92,
- "opacity": 1,
- "strokeDash": 0,
- "strokeWidth": 2,
- "borderRadius": 0,
- "fill": "N4",
- "fillPattern": "dots",
- "stroke": "B1",
- "shadow": false,
- "3d": false,
- "multiple": false,
- "double-border": false,
- "tooltip": "",
- "link": "",
- "icon": null,
- "iconPosition": "",
- "blend": false,
- "fields": null,
- "methods": null,
- "columns": null,
- "label": "diamond",
- "fontSize": 16,
- "fontFamily": "DEFAULT",
- "language": "",
- "color": "N1",
- "italic": false,
- "bold": true,
- "underline": false,
- "labelWidth": 63,
- "labelHeight": 21,
- "labelPosition": "INSIDE_MIDDLE_CENTER",
- "zIndex": 0,
- "level": 1
- },
- {
- "id": "oval",
- "type": "oval",
- "pos": {
- "x": 673,
- "y": 186
- },
- "width": 97,
- "height": 70,
- "opacity": 1,
- "strokeDash": 0,
- "strokeWidth": 2,
- "borderRadius": 0,
- "fill": "B6",
- "fillPattern": "dots",
- "stroke": "B1",
- "shadow": false,
- "3d": false,
- "multiple": false,
- "double-border": false,
- "tooltip": "",
- "link": "",
- "icon": null,
- "iconPosition": "",
- "blend": false,
- "fields": null,
- "methods": null,
- "columns": null,
- "label": "oval",
- "fontSize": 16,
- "fontFamily": "DEFAULT",
- "language": "",
- "color": "N1",
- "italic": false,
- "bold": true,
- "underline": false,
- "labelWidth": 31,
- "labelHeight": 21,
- "labelPosition": "INSIDE_MIDDLE_CENTER",
- "zIndex": 0,
- "level": 1
- },
- {
- "id": "circle",
- "type": "oval",
- "pos": {
- "x": 676,
- "y": 338
- },
- "width": 91,
- "height": 91,
- "opacity": 1,
- "strokeDash": 0,
- "strokeWidth": 2,
- "borderRadius": 0,
- "fill": "B6",
- "fillPattern": "dots",
- "stroke": "B1",
- "shadow": false,
- "3d": false,
- "multiple": false,
- "double-border": false,
- "tooltip": "",
- "link": "",
- "icon": null,
- "iconPosition": "",
- "blend": false,
- "fields": null,
- "methods": null,
- "columns": null,
- "label": "circle",
- "fontSize": 16,
- "fontFamily": "DEFAULT",
- "language": "",
- "color": "N1",
- "italic": false,
- "bold": true,
- "underline": false,
- "labelWidth": 39,
- "labelHeight": 21,
- "labelPosition": "INSIDE_MIDDLE_CENTER",
- "zIndex": 0,
- "level": 1
- },
- {
- "id": "hexagon",
- "type": "hexagon",
- "pos": {
- "x": 820,
- "y": 35
- },
- "width": 128,
- "height": 69,
- "opacity": 1,
- "strokeDash": 0,
- "strokeWidth": 2,
- "borderRadius": 0,
- "fill": "N5",
- "fillPattern": "dots",
- "stroke": "B1",
- "shadow": false,
- "3d": false,
- "multiple": false,
- "double-border": false,
- "tooltip": "",
- "link": "",
- "icon": null,
- "iconPosition": "",
- "blend": false,
- "fields": null,
- "methods": null,
- "columns": null,
- "label": "hexagon",
- "fontSize": 16,
- "fontFamily": "DEFAULT",
- "language": "",
- "color": "N1",
- "italic": false,
- "bold": true,
- "underline": false,
- "labelWidth": 60,
- "labelHeight": 21,
- "labelPosition": "INSIDE_MIDDLE_CENTER",
- "zIndex": 0,
- "level": 1
- },
- {
- "id": "cloud",
- "type": "cloud",
- "pos": {
- "x": 832,
- "y": 174
- },
- "width": 104,
- "height": 84,
- "opacity": 1,
- "strokeDash": 0,
- "strokeWidth": 2,
- "borderRadius": 0,
- "fill": "N7",
- "fillPattern": "dots",
- "stroke": "B1",
- "shadow": false,
- "3d": false,
- "multiple": false,
- "double-border": false,
- "tooltip": "",
- "link": "",
- "icon": null,
- "iconPosition": "",
- "blend": false,
- "fields": null,
- "methods": null,
- "columns": null,
- "label": "cloud",
- "fontSize": 16,
- "fontFamily": "DEFAULT",
- "language": "",
- "color": "N1",
- "italic": false,
- "bold": true,
- "underline": false,
- "labelWidth": 40,
- "labelHeight": 21,
- "labelPosition": "INSIDE_MIDDLE_CENTER",
- "zIndex": 0,
- "level": 1
- }
- ],
- "connections": [
- {
- "id": "(rectangle -> square)[0]",
- "src": "rectangle",
- "srcArrow": "none",
- "srcLabel": "",
- "dst": "square",
- "dstArrow": "triangle",
- "dstLabel": "",
- "opacity": 1,
- "strokeDash": 0,
- "strokeWidth": 2,
- "stroke": "B1",
- "borderRadius": 10,
- "label": "",
- "fontSize": 16,
- "fontFamily": "DEFAULT",
- "language": "",
- "color": "N2",
- "italic": true,
- "bold": false,
- "underline": false,
- "labelWidth": 0,
- "labelHeight": 0,
- "labelPosition": "",
- "labelPercentage": 0,
- "route": [
- {
- "x": 67.5,
- "y": 104
- },
- {
- "x": 67.5,
- "y": 174
- }
- ],
- "animated": false,
- "tooltip": "",
- "icon": null,
- "zIndex": 0
- },
- {
- "id": "(square -> page)[0]",
- "src": "square",
- "srcArrow": "none",
- "srcLabel": "",
- "dst": "page",
- "dstArrow": "triangle",
- "dstLabel": "",
- "opacity": 1,
- "strokeDash": 0,
- "strokeWidth": 2,
- "stroke": "B1",
- "borderRadius": 10,
- "label": "",
- "fontSize": 16,
- "fontFamily": "DEFAULT",
- "language": "",
- "color": "N2",
- "italic": true,
- "bold": false,
- "underline": false,
- "labelWidth": 0,
- "labelHeight": 0,
- "labelPosition": "",
- "labelPercentage": 0,
- "route": [
- {
- "x": 67.5,
- "y": 268
- },
- {
- "x": 68,
- "y": 338
- }
- ],
- "animated": false,
- "tooltip": "",
- "icon": null,
- "zIndex": 0
- },
- {
- "id": "(parallelogram -> document)[0]",
- "src": "parallelogram",
- "srcArrow": "none",
- "srcLabel": "",
- "dst": "document",
- "dstArrow": "triangle",
- "dstLabel": "",
- "opacity": 1,
- "strokeDash": 0,
- "strokeWidth": 2,
- "stroke": "B1",
- "borderRadius": 10,
- "label": "",
- "fontSize": 16,
- "fontFamily": "DEFAULT",
- "language": "",
- "color": "N2",
- "italic": true,
- "bold": false,
- "underline": false,
- "labelWidth": 0,
- "labelHeight": 0,
- "labelPosition": "",
- "labelPercentage": 0,
- "route": [
- {
- "x": 241,
- "y": 104
- },
- {
- "x": 241,
- "y": 183
- }
- ],
- "animated": false,
- "tooltip": "",
- "icon": null,
- "zIndex": 0
- },
- {
- "id": "(document -> cylinder)[0]",
- "src": "document",
- "srcArrow": "none",
- "srcLabel": "",
- "dst": "cylinder",
- "dstArrow": "triangle",
- "dstLabel": "",
- "opacity": 1,
- "strokeDash": 0,
- "strokeWidth": 2,
- "stroke": "B1",
- "borderRadius": 10,
- "label": "",
- "fontSize": 16,
- "fontFamily": "DEFAULT",
- "language": "",
- "color": "N2",
- "italic": true,
- "bold": false,
- "underline": false,
- "labelWidth": 0,
- "labelHeight": 0,
- "labelPosition": "",
- "labelPercentage": 0,
- "route": [
- {
- "x": 241,
- "y": 248
- },
- {
- "x": 241,
- "y": 338
- }
- ],
- "animated": false,
- "tooltip": "",
- "icon": null,
- "zIndex": 0
- },
- {
- "id": "(queue -> package)[0]",
- "src": "queue",
- "srcArrow": "none",
- "srcLabel": "",
- "dst": "package",
- "dstArrow": "triangle",
- "dstLabel": "",
- "opacity": 1,
- "strokeDash": 0,
- "strokeWidth": 2,
- "stroke": "B1",
- "borderRadius": 10,
- "label": "",
- "fontSize": 16,
- "fontFamily": "DEFAULT",
- "language": "",
- "color": "N2",
- "italic": true,
- "bold": false,
- "underline": false,
- "labelWidth": 0,
- "labelHeight": 0,
- "labelPosition": "",
- "labelPercentage": 0,
- "route": [
- {
- "x": 429,
- "y": 104
- },
- {
- "x": 430,
- "y": 185
- }
- ],
- "animated": false,
- "tooltip": "",
- "icon": null,
- "zIndex": 0
- },
- {
- "id": "(package -> step)[0]",
- "src": "package",
- "srcArrow": "none",
- "srcLabel": "",
- "dst": "step",
- "dstArrow": "triangle",
- "dstLabel": "",
- "opacity": 1,
- "strokeDash": 0,
- "strokeWidth": 2,
- "stroke": "B1",
- "borderRadius": 10,
- "label": "",
- "fontSize": 16,
- "fontFamily": "DEFAULT",
- "language": "",
- "color": "N2",
- "italic": true,
- "bold": false,
- "underline": false,
- "labelWidth": 0,
- "labelHeight": 0,
- "labelPosition": "",
- "labelPercentage": 0,
- "route": [
- {
- "x": 429,
- "y": 258
- },
- {
- "x": 429,
- "y": 338
- }
- ],
- "animated": false,
- "tooltip": "",
- "icon": null,
- "zIndex": 0
- },
- {
- "id": "(callout -> stored_data)[0]",
- "src": "callout",
- "srcArrow": "none",
- "srcLabel": "",
- "dst": "stored_data",
- "dstArrow": "triangle",
- "dstLabel": "",
- "opacity": 1,
- "strokeDash": 0,
- "strokeWidth": 2,
- "stroke": "B1",
- "borderRadius": 10,
- "label": "",
- "fontSize": 16,
- "fontFamily": "DEFAULT",
- "language": "",
- "color": "N2",
- "italic": true,
- "bold": false,
- "underline": false,
- "labelWidth": 0,
- "labelHeight": 0,
- "labelPosition": "",
- "labelPercentage": 0,
- "route": [
- {
- "x": 577,
- "y": 59
- },
- {
- "x": 577,
- "y": 188
- }
- ],
- "animated": false,
- "tooltip": "",
- "icon": null,
- "zIndex": 0
- },
- {
- "id": "(stored_data -> person)[0]",
- "src": "stored_data",
- "srcArrow": "none",
- "srcLabel": "",
- "dst": "person",
- "dstArrow": "triangle",
- "dstLabel": "",
- "opacity": 1,
- "strokeDash": 0,
- "strokeWidth": 2,
- "stroke": "B1",
- "borderRadius": 10,
- "label": "",
- "fontSize": 16,
- "fontFamily": "DEFAULT",
- "language": "",
- "color": "N2",
- "italic": true,
- "bold": false,
- "underline": false,
- "labelWidth": 0,
- "labelHeight": 0,
- "labelPosition": "",
- "labelPercentage": 0,
- "route": [
- {
- "x": 576,
- "y": 254
- },
- {
- "x": 577,
- "y": 338
- }
- ],
- "animated": false,
- "tooltip": "",
- "icon": null,
- "zIndex": 0
- },
- {
- "id": "(diamond -> oval)[0]",
- "src": "diamond",
- "srcArrow": "none",
- "srcLabel": "",
- "dst": "oval",
- "dstArrow": "triangle",
- "dstLabel": "",
- "opacity": 1,
- "strokeDash": 0,
- "strokeWidth": 2,
- "stroke": "B1",
- "borderRadius": 10,
- "label": "",
- "fontSize": 16,
- "fontFamily": "DEFAULT",
- "language": "",
- "color": "N2",
- "italic": true,
- "bold": false,
- "underline": false,
- "labelWidth": 0,
- "labelHeight": 0,
- "labelPosition": "",
- "labelPercentage": 0,
- "route": [
- {
- "x": 722,
- "y": 104
- },
- {
- "x": 722,
- "y": 186
- }
- ],
- "animated": false,
- "tooltip": "",
- "icon": null,
- "zIndex": 0
- },
- {
- "id": "(oval -> circle)[0]",
- "src": "oval",
- "srcArrow": "none",
- "srcLabel": "",
- "dst": "circle",
- "dstArrow": "triangle",
- "dstLabel": "",
- "opacity": 1,
- "strokeDash": 0,
- "strokeWidth": 2,
- "stroke": "B1",
- "borderRadius": 10,
- "label": "",
- "fontSize": 16,
- "fontFamily": "DEFAULT",
- "language": "",
- "color": "N2",
- "italic": true,
- "bold": false,
- "underline": false,
- "labelWidth": 0,
- "labelHeight": 0,
- "labelPosition": "",
- "labelPercentage": 0,
- "route": [
- {
- "x": 722,
- "y": 256
- },
- {
- "x": 722,
- "y": 338
- }
- ],
- "animated": false,
- "tooltip": "",
- "icon": null,
- "zIndex": 0
- },
- {
- "id": "(hexagon -> cloud)[0]",
- "src": "hexagon",
- "srcArrow": "none",
- "srcLabel": "",
- "dst": "cloud",
- "dstArrow": "triangle",
- "dstLabel": "",
- "opacity": 1,
- "strokeDash": 0,
- "strokeWidth": 2,
- "stroke": "B1",
- "borderRadius": 10,
- "label": "",
- "fontSize": 16,
- "fontFamily": "DEFAULT",
- "language": "",
- "color": "N2",
- "italic": true,
- "bold": false,
- "underline": false,
- "labelWidth": 0,
- "labelHeight": 0,
- "labelPosition": "",
- "labelPercentage": 0,
- "route": [
- {
- "x": 884,
- "y": 104
- },
- {
- "x": 884,
- "y": 175
- }
- ],
- "animated": false,
- "tooltip": "",
- "icon": null,
- "zIndex": 0
- }
- ],
- "root": {
- "id": "",
- "type": "",
- "pos": {
- "x": 0,
- "y": 0
- },
- "width": 0,
- "height": 0,
- "opacity": 0,
- "strokeDash": 0,
- "strokeWidth": 0,
- "borderRadius": 0,
- "fill": "N7",
- "stroke": "",
- "shadow": false,
- "3d": false,
- "multiple": false,
- "double-border": false,
- "tooltip": "",
- "link": "",
- "icon": null,
- "iconPosition": "",
- "blend": false,
- "fields": null,
- "methods": null,
- "columns": null,
- "label": "",
- "fontSize": 0,
- "fontFamily": "",
- "language": "",
- "color": "",
- "italic": false,
- "bold": false,
- "underline": false,
- "labelWidth": 0,
- "labelHeight": 0,
- "zIndex": 0,
- "level": 0
- }
-}
diff --git a/e2etests/testdata/patterns/all_shape/elk/sketch.exp.svg b/e2etests/testdata/patterns/all_shape/elk/sketch.exp.svg
deleted file mode 100644
index d67951ebc..000000000
--- a/e2etests/testdata/patterns/all_shape/elk/sketch.exp.svg
+++ /dev/null
@@ -1,128 +0,0 @@
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-rectanglesquarepageparallelogramdocumentcylinderqueuepackagestepcalloutstored_datapersondiamondovalcirclehexagoncloud
-
-
-
\ No newline at end of file
diff --git a/e2etests/testdata/patterns/all_shapes/elk/board.exp.json b/e2etests/testdata/patterns/all_shapes/elk/board.exp.json
deleted file mode 100644
index a3455e29a..000000000
--- a/e2etests/testdata/patterns/all_shapes/elk/board.exp.json
+++ /dev/null
@@ -1,1203 +0,0 @@
-{
- "name": "",
- "isFolderOnly": false,
- "fontFamily": "SourceSansPro",
- "shapes": [
- {
- "id": "rectangle",
- "type": "rectangle",
- "pos": {
- "x": 12,
- "y": 38
- },
- "width": 111,
- "height": 66,
- "opacity": 1,
- "strokeDash": 0,
- "strokeWidth": 2,
- "borderRadius": 0,
- "fill": "B6",
- "fillPattern": "dots",
- "stroke": "B1",
- "shadow": false,
- "3d": false,
- "multiple": false,
- "double-border": false,
- "tooltip": "",
- "link": "",
- "icon": null,
- "iconPosition": "",
- "blend": false,
- "fields": null,
- "methods": null,
- "columns": null,
- "label": "rectangle",
- "fontSize": 16,
- "fontFamily": "DEFAULT",
- "language": "",
- "color": "N1",
- "italic": false,
- "bold": true,
- "underline": false,
- "labelWidth": 66,
- "labelHeight": 21,
- "labelPosition": "INSIDE_MIDDLE_CENTER",
- "zIndex": 0,
- "level": 1
- },
- {
- "id": "square",
- "type": "rectangle",
- "pos": {
- "x": 20,
- "y": 174
- },
- "width": 94,
- "height": 94,
- "opacity": 1,
- "strokeDash": 0,
- "strokeWidth": 2,
- "borderRadius": 0,
- "fill": "B6",
- "fillPattern": "dots",
- "stroke": "B1",
- "shadow": false,
- "3d": false,
- "multiple": false,
- "double-border": false,
- "tooltip": "",
- "link": "",
- "icon": null,
- "iconPosition": "",
- "blend": false,
- "fields": null,
- "methods": null,
- "columns": null,
- "label": "square",
- "fontSize": 16,
- "fontFamily": "DEFAULT",
- "language": "",
- "color": "N1",
- "italic": false,
- "bold": true,
- "underline": false,
- "labelWidth": 49,
- "labelHeight": 21,
- "labelPosition": "INSIDE_MIDDLE_CENTER",
- "zIndex": 0,
- "level": 1
- },
- {
- "id": "page",
- "type": "page",
- "pos": {
- "x": 28,
- "y": 338
- },
- "width": 79,
- "height": 87,
- "opacity": 1,
- "strokeDash": 0,
- "strokeWidth": 2,
- "borderRadius": 0,
- "fill": "AB4",
- "fillPattern": "dots",
- "stroke": "B1",
- "shadow": false,
- "3d": false,
- "multiple": false,
- "double-border": false,
- "tooltip": "",
- "link": "",
- "icon": null,
- "iconPosition": "",
- "blend": false,
- "fields": null,
- "methods": null,
- "columns": null,
- "label": "page",
- "fontSize": 16,
- "fontFamily": "DEFAULT",
- "language": "",
- "color": "N1",
- "italic": false,
- "bold": true,
- "underline": false,
- "labelWidth": 34,
- "labelHeight": 21,
- "labelPosition": "INSIDE_MIDDLE_CENTER",
- "zIndex": 0,
- "level": 1
- },
- {
- "id": "parallelogram",
- "type": "parallelogram",
- "pos": {
- "x": 143,
- "y": 38
- },
- "width": 196,
- "height": 66,
- "opacity": 1,
- "strokeDash": 0,
- "strokeWidth": 2,
- "borderRadius": 0,
- "fill": "N5",
- "fillPattern": "dots",
- "stroke": "B1",
- "shadow": false,
- "3d": false,
- "multiple": false,
- "double-border": false,
- "tooltip": "",
- "link": "",
- "icon": null,
- "iconPosition": "",
- "blend": false,
- "fields": null,
- "methods": null,
- "columns": null,
- "label": "parallelogram",
- "fontSize": 16,
- "fontFamily": "DEFAULT",
- "language": "",
- "color": "N1",
- "italic": false,
- "bold": true,
- "underline": false,
- "labelWidth": 99,
- "labelHeight": 21,
- "labelPosition": "INSIDE_MIDDLE_CENTER",
- "zIndex": 0,
- "level": 1
- },
- {
- "id": "document",
- "type": "document",
- "pos": {
- "x": 182,
- "y": 183
- },
- "width": 117,
- "height": 76,
- "opacity": 1,
- "strokeDash": 0,
- "strokeWidth": 2,
- "borderRadius": 0,
- "fill": "AB4",
- "fillPattern": "dots",
- "stroke": "B1",
- "shadow": false,
- "3d": false,
- "multiple": false,
- "double-border": false,
- "tooltip": "",
- "link": "",
- "icon": null,
- "iconPosition": "",
- "blend": false,
- "fields": null,
- "methods": null,
- "columns": null,
- "label": "document",
- "fontSize": 16,
- "fontFamily": "DEFAULT",
- "language": "",
- "color": "N1",
- "italic": false,
- "bold": true,
- "underline": false,
- "labelWidth": 72,
- "labelHeight": 21,
- "labelPosition": "INSIDE_MIDDLE_CENTER",
- "zIndex": 0,
- "level": 1
- },
- {
- "id": "cylinder",
- "type": "cylinder",
- "pos": {
- "x": 189,
- "y": 338
- },
- "width": 104,
- "height": 118,
- "opacity": 1,
- "strokeDash": 0,
- "strokeWidth": 2,
- "borderRadius": 0,
- "fill": "AA4",
- "fillPattern": "dots",
- "stroke": "B1",
- "shadow": false,
- "3d": false,
- "multiple": false,
- "double-border": false,
- "tooltip": "",
- "link": "",
- "icon": null,
- "iconPosition": "",
- "blend": false,
- "fields": null,
- "methods": null,
- "columns": null,
- "label": "cylinder",
- "fontSize": 16,
- "fontFamily": "DEFAULT",
- "language": "",
- "color": "N1",
- "italic": false,
- "bold": true,
- "underline": false,
- "labelWidth": 59,
- "labelHeight": 21,
- "labelPosition": "INSIDE_MIDDLE_CENTER",
- "zIndex": 0,
- "level": 1
- },
- {
- "id": "queue",
- "type": "queue",
- "pos": {
- "x": 359,
- "y": 38
- },
- "width": 141,
- "height": 66,
- "opacity": 1,
- "strokeDash": 0,
- "strokeWidth": 2,
- "borderRadius": 0,
- "fill": "N5",
- "fillPattern": "dots",
- "stroke": "B1",
- "shadow": false,
- "3d": false,
- "multiple": false,
- "double-border": false,
- "tooltip": "",
- "link": "",
- "icon": null,
- "iconPosition": "",
- "blend": false,
- "fields": null,
- "methods": null,
- "columns": null,
- "label": "queue",
- "fontSize": 16,
- "fontFamily": "DEFAULT",
- "language": "",
- "color": "N1",
- "italic": false,
- "bold": true,
- "underline": false,
- "labelWidth": 44,
- "labelHeight": 21,
- "labelPosition": "INSIDE_MIDDLE_CENTER",
- "zIndex": 0,
- "level": 1
- },
- {
- "id": "package",
- "type": "package",
- "pos": {
- "x": 378,
- "y": 184
- },
- "width": 103,
- "height": 73,
- "opacity": 1,
- "strokeDash": 0,
- "strokeWidth": 2,
- "borderRadius": 0,
- "fill": "AA4",
- "fillPattern": "dots",
- "stroke": "B1",
- "shadow": false,
- "3d": false,
- "multiple": false,
- "double-border": false,
- "tooltip": "",
- "link": "",
- "icon": null,
- "iconPosition": "",
- "blend": false,
- "fields": null,
- "methods": null,
- "columns": null,
- "label": "package",
- "fontSize": 16,
- "fontFamily": "DEFAULT",
- "language": "",
- "color": "N1",
- "italic": false,
- "bold": true,
- "underline": false,
- "labelWidth": 58,
- "labelHeight": 21,
- "labelPosition": "INSIDE_MIDDLE_CENTER",
- "zIndex": 0,
- "level": 1
- },
- {
- "id": "step",
- "type": "step",
- "pos": {
- "x": 371,
- "y": 338
- },
- "width": 116,
- "height": 101,
- "opacity": 1,
- "strokeDash": 0,
- "strokeWidth": 2,
- "borderRadius": 0,
- "fill": "AB4",
- "fillPattern": "dots",
- "stroke": "B1",
- "shadow": false,
- "3d": false,
- "multiple": false,
- "double-border": false,
- "tooltip": "",
- "link": "",
- "icon": null,
- "iconPosition": "",
- "blend": false,
- "fields": null,
- "methods": null,
- "columns": null,
- "label": "step",
- "fontSize": 16,
- "fontFamily": "DEFAULT",
- "language": "",
- "color": "N1",
- "italic": false,
- "bold": true,
- "underline": false,
- "labelWidth": 31,
- "labelHeight": 21,
- "labelPosition": "INSIDE_MIDDLE_CENTER",
- "zIndex": 0,
- "level": 1
- },
- {
- "id": "callout",
- "type": "callout",
- "pos": {
- "x": 529,
- "y": 13
- },
- "width": 95,
- "height": 91,
- "opacity": 1,
- "strokeDash": 0,
- "strokeWidth": 2,
- "borderRadius": 0,
- "fill": "N7",
- "fillPattern": "dots",
- "stroke": "B1",
- "shadow": false,
- "3d": false,
- "multiple": false,
- "double-border": false,
- "tooltip": "",
- "link": "",
- "icon": null,
- "iconPosition": "",
- "blend": false,
- "fields": null,
- "methods": null,
- "columns": null,
- "label": "callout",
- "fontSize": 16,
- "fontFamily": "DEFAULT",
- "language": "",
- "color": "N1",
- "italic": false,
- "bold": true,
- "underline": false,
- "labelWidth": 50,
- "labelHeight": 21,
- "labelPosition": "INSIDE_MIDDLE_CENTER",
- "zIndex": 0,
- "level": 1
- },
- {
- "id": "stored_data",
- "type": "stored_data",
- "pos": {
- "x": 501,
- "y": 188
- },
- "width": 151,
- "height": 66,
- "opacity": 1,
- "strokeDash": 0,
- "strokeWidth": 2,
- "borderRadius": 0,
- "fill": "AA4",
- "fillPattern": "dots",
- "stroke": "B1",
- "shadow": false,
- "3d": false,
- "multiple": false,
- "double-border": false,
- "tooltip": "",
- "link": "",
- "icon": null,
- "iconPosition": "",
- "blend": false,
- "fields": null,
- "methods": null,
- "columns": null,
- "label": "stored_data",
- "fontSize": 16,
- "fontFamily": "DEFAULT",
- "language": "",
- "color": "N1",
- "italic": false,
- "bold": true,
- "underline": false,
- "labelWidth": 86,
- "labelHeight": 21,
- "labelPosition": "INSIDE_MIDDLE_CENTER",
- "zIndex": 0,
- "level": 1
- },
- {
- "id": "person",
- "type": "person",
- "pos": {
- "x": 545,
- "y": 338
- },
- "width": 63,
- "height": 66,
- "opacity": 1,
- "strokeDash": 0,
- "strokeWidth": 2,
- "borderRadius": 0,
- "fill": "B3",
- "fillPattern": "dots",
- "stroke": "B1",
- "shadow": false,
- "3d": false,
- "multiple": false,
- "double-border": false,
- "tooltip": "",
- "link": "",
- "icon": null,
- "iconPosition": "",
- "blend": false,
- "fields": null,
- "methods": null,
- "columns": null,
- "label": "person",
- "fontSize": 16,
- "fontFamily": "DEFAULT",
- "language": "",
- "color": "N1",
- "italic": false,
- "bold": true,
- "underline": false,
- "labelWidth": 48,
- "labelHeight": 21,
- "labelPosition": "OUTSIDE_BOTTOM_CENTER",
- "zIndex": 0,
- "level": 1
- },
- {
- "id": "diamond",
- "type": "diamond",
- "pos": {
- "x": 644,
- "y": 12
- },
- "width": 156,
- "height": 92,
- "opacity": 1,
- "strokeDash": 0,
- "strokeWidth": 2,
- "borderRadius": 0,
- "fill": "N4",
- "fillPattern": "dots",
- "stroke": "B1",
- "shadow": false,
- "3d": false,
- "multiple": false,
- "double-border": false,
- "tooltip": "",
- "link": "",
- "icon": null,
- "iconPosition": "",
- "blend": false,
- "fields": null,
- "methods": null,
- "columns": null,
- "label": "diamond",
- "fontSize": 16,
- "fontFamily": "DEFAULT",
- "language": "",
- "color": "N1",
- "italic": false,
- "bold": true,
- "underline": false,
- "labelWidth": 63,
- "labelHeight": 21,
- "labelPosition": "INSIDE_MIDDLE_CENTER",
- "zIndex": 0,
- "level": 1
- },
- {
- "id": "oval",
- "type": "oval",
- "pos": {
- "x": 673,
- "y": 186
- },
- "width": 97,
- "height": 70,
- "opacity": 1,
- "strokeDash": 0,
- "strokeWidth": 2,
- "borderRadius": 0,
- "fill": "B6",
- "fillPattern": "dots",
- "stroke": "B1",
- "shadow": false,
- "3d": false,
- "multiple": false,
- "double-border": false,
- "tooltip": "",
- "link": "",
- "icon": null,
- "iconPosition": "",
- "blend": false,
- "fields": null,
- "methods": null,
- "columns": null,
- "label": "oval",
- "fontSize": 16,
- "fontFamily": "DEFAULT",
- "language": "",
- "color": "N1",
- "italic": false,
- "bold": true,
- "underline": false,
- "labelWidth": 31,
- "labelHeight": 21,
- "labelPosition": "INSIDE_MIDDLE_CENTER",
- "zIndex": 0,
- "level": 1
- },
- {
- "id": "circle",
- "type": "oval",
- "pos": {
- "x": 676,
- "y": 338
- },
- "width": 91,
- "height": 91,
- "opacity": 1,
- "strokeDash": 0,
- "strokeWidth": 2,
- "borderRadius": 0,
- "fill": "B6",
- "fillPattern": "dots",
- "stroke": "B1",
- "shadow": false,
- "3d": false,
- "multiple": false,
- "double-border": false,
- "tooltip": "",
- "link": "",
- "icon": null,
- "iconPosition": "",
- "blend": false,
- "fields": null,
- "methods": null,
- "columns": null,
- "label": "circle",
- "fontSize": 16,
- "fontFamily": "DEFAULT",
- "language": "",
- "color": "N1",
- "italic": false,
- "bold": true,
- "underline": false,
- "labelWidth": 39,
- "labelHeight": 21,
- "labelPosition": "INSIDE_MIDDLE_CENTER",
- "zIndex": 0,
- "level": 1
- },
- {
- "id": "hexagon",
- "type": "hexagon",
- "pos": {
- "x": 820,
- "y": 35
- },
- "width": 128,
- "height": 69,
- "opacity": 1,
- "strokeDash": 0,
- "strokeWidth": 2,
- "borderRadius": 0,
- "fill": "N5",
- "fillPattern": "dots",
- "stroke": "B1",
- "shadow": false,
- "3d": false,
- "multiple": false,
- "double-border": false,
- "tooltip": "",
- "link": "",
- "icon": null,
- "iconPosition": "",
- "blend": false,
- "fields": null,
- "methods": null,
- "columns": null,
- "label": "hexagon",
- "fontSize": 16,
- "fontFamily": "DEFAULT",
- "language": "",
- "color": "N1",
- "italic": false,
- "bold": true,
- "underline": false,
- "labelWidth": 60,
- "labelHeight": 21,
- "labelPosition": "INSIDE_MIDDLE_CENTER",
- "zIndex": 0,
- "level": 1
- },
- {
- "id": "cloud",
- "type": "cloud",
- "pos": {
- "x": 832,
- "y": 174
- },
- "width": 104,
- "height": 84,
- "opacity": 1,
- "strokeDash": 0,
- "strokeWidth": 2,
- "borderRadius": 0,
- "fill": "N7",
- "fillPattern": "dots",
- "stroke": "B1",
- "shadow": false,
- "3d": false,
- "multiple": false,
- "double-border": false,
- "tooltip": "",
- "link": "",
- "icon": null,
- "iconPosition": "",
- "blend": false,
- "fields": null,
- "methods": null,
- "columns": null,
- "label": "cloud",
- "fontSize": 16,
- "fontFamily": "DEFAULT",
- "language": "",
- "color": "N1",
- "italic": false,
- "bold": true,
- "underline": false,
- "labelWidth": 40,
- "labelHeight": 21,
- "labelPosition": "INSIDE_MIDDLE_CENTER",
- "zIndex": 0,
- "level": 1
- }
- ],
- "connections": [
- {
- "id": "(rectangle -> square)[0]",
- "src": "rectangle",
- "srcArrow": "none",
- "srcLabel": "",
- "dst": "square",
- "dstArrow": "triangle",
- "dstLabel": "",
- "opacity": 1,
- "strokeDash": 0,
- "strokeWidth": 2,
- "stroke": "B1",
- "borderRadius": 10,
- "label": "",
- "fontSize": 16,
- "fontFamily": "DEFAULT",
- "language": "",
- "color": "N2",
- "italic": true,
- "bold": false,
- "underline": false,
- "labelWidth": 0,
- "labelHeight": 0,
- "labelPosition": "",
- "labelPercentage": 0,
- "route": [
- {
- "x": 67.5,
- "y": 104
- },
- {
- "x": 67.5,
- "y": 174
- }
- ],
- "animated": false,
- "tooltip": "",
- "icon": null,
- "zIndex": 0
- },
- {
- "id": "(square -> page)[0]",
- "src": "square",
- "srcArrow": "none",
- "srcLabel": "",
- "dst": "page",
- "dstArrow": "triangle",
- "dstLabel": "",
- "opacity": 1,
- "strokeDash": 0,
- "strokeWidth": 2,
- "stroke": "B1",
- "borderRadius": 10,
- "label": "",
- "fontSize": 16,
- "fontFamily": "DEFAULT",
- "language": "",
- "color": "N2",
- "italic": true,
- "bold": false,
- "underline": false,
- "labelWidth": 0,
- "labelHeight": 0,
- "labelPosition": "",
- "labelPercentage": 0,
- "route": [
- {
- "x": 67.5,
- "y": 268
- },
- {
- "x": 68,
- "y": 338
- }
- ],
- "animated": false,
- "tooltip": "",
- "icon": null,
- "zIndex": 0
- },
- {
- "id": "(parallelogram -> document)[0]",
- "src": "parallelogram",
- "srcArrow": "none",
- "srcLabel": "",
- "dst": "document",
- "dstArrow": "triangle",
- "dstLabel": "",
- "opacity": 1,
- "strokeDash": 0,
- "strokeWidth": 2,
- "stroke": "B1",
- "borderRadius": 10,
- "label": "",
- "fontSize": 16,
- "fontFamily": "DEFAULT",
- "language": "",
- "color": "N2",
- "italic": true,
- "bold": false,
- "underline": false,
- "labelWidth": 0,
- "labelHeight": 0,
- "labelPosition": "",
- "labelPercentage": 0,
- "route": [
- {
- "x": 241,
- "y": 104
- },
- {
- "x": 241,
- "y": 183
- }
- ],
- "animated": false,
- "tooltip": "",
- "icon": null,
- "zIndex": 0
- },
- {
- "id": "(document -> cylinder)[0]",
- "src": "document",
- "srcArrow": "none",
- "srcLabel": "",
- "dst": "cylinder",
- "dstArrow": "triangle",
- "dstLabel": "",
- "opacity": 1,
- "strokeDash": 0,
- "strokeWidth": 2,
- "stroke": "B1",
- "borderRadius": 10,
- "label": "",
- "fontSize": 16,
- "fontFamily": "DEFAULT",
- "language": "",
- "color": "N2",
- "italic": true,
- "bold": false,
- "underline": false,
- "labelWidth": 0,
- "labelHeight": 0,
- "labelPosition": "",
- "labelPercentage": 0,
- "route": [
- {
- "x": 241,
- "y": 248
- },
- {
- "x": 241,
- "y": 338
- }
- ],
- "animated": false,
- "tooltip": "",
- "icon": null,
- "zIndex": 0
- },
- {
- "id": "(queue -> package)[0]",
- "src": "queue",
- "srcArrow": "none",
- "srcLabel": "",
- "dst": "package",
- "dstArrow": "triangle",
- "dstLabel": "",
- "opacity": 1,
- "strokeDash": 0,
- "strokeWidth": 2,
- "stroke": "B1",
- "borderRadius": 10,
- "label": "",
- "fontSize": 16,
- "fontFamily": "DEFAULT",
- "language": "",
- "color": "N2",
- "italic": true,
- "bold": false,
- "underline": false,
- "labelWidth": 0,
- "labelHeight": 0,
- "labelPosition": "",
- "labelPercentage": 0,
- "route": [
- {
- "x": 429,
- "y": 104
- },
- {
- "x": 430,
- "y": 185
- }
- ],
- "animated": false,
- "tooltip": "",
- "icon": null,
- "zIndex": 0
- },
- {
- "id": "(package -> step)[0]",
- "src": "package",
- "srcArrow": "none",
- "srcLabel": "",
- "dst": "step",
- "dstArrow": "triangle",
- "dstLabel": "",
- "opacity": 1,
- "strokeDash": 0,
- "strokeWidth": 2,
- "stroke": "B1",
- "borderRadius": 10,
- "label": "",
- "fontSize": 16,
- "fontFamily": "DEFAULT",
- "language": "",
- "color": "N2",
- "italic": true,
- "bold": false,
- "underline": false,
- "labelWidth": 0,
- "labelHeight": 0,
- "labelPosition": "",
- "labelPercentage": 0,
- "route": [
- {
- "x": 429,
- "y": 258
- },
- {
- "x": 429,
- "y": 338
- }
- ],
- "animated": false,
- "tooltip": "",
- "icon": null,
- "zIndex": 0
- },
- {
- "id": "(callout -> stored_data)[0]",
- "src": "callout",
- "srcArrow": "none",
- "srcLabel": "",
- "dst": "stored_data",
- "dstArrow": "triangle",
- "dstLabel": "",
- "opacity": 1,
- "strokeDash": 0,
- "strokeWidth": 2,
- "stroke": "B1",
- "borderRadius": 10,
- "label": "",
- "fontSize": 16,
- "fontFamily": "DEFAULT",
- "language": "",
- "color": "N2",
- "italic": true,
- "bold": false,
- "underline": false,
- "labelWidth": 0,
- "labelHeight": 0,
- "labelPosition": "",
- "labelPercentage": 0,
- "route": [
- {
- "x": 577,
- "y": 59
- },
- {
- "x": 577,
- "y": 188
- }
- ],
- "animated": false,
- "tooltip": "",
- "icon": null,
- "zIndex": 0
- },
- {
- "id": "(stored_data -> person)[0]",
- "src": "stored_data",
- "srcArrow": "none",
- "srcLabel": "",
- "dst": "person",
- "dstArrow": "triangle",
- "dstLabel": "",
- "opacity": 1,
- "strokeDash": 0,
- "strokeWidth": 2,
- "stroke": "B1",
- "borderRadius": 10,
- "label": "",
- "fontSize": 16,
- "fontFamily": "DEFAULT",
- "language": "",
- "color": "N2",
- "italic": true,
- "bold": false,
- "underline": false,
- "labelWidth": 0,
- "labelHeight": 0,
- "labelPosition": "",
- "labelPercentage": 0,
- "route": [
- {
- "x": 576,
- "y": 254
- },
- {
- "x": 577,
- "y": 338
- }
- ],
- "animated": false,
- "tooltip": "",
- "icon": null,
- "zIndex": 0
- },
- {
- "id": "(diamond -> oval)[0]",
- "src": "diamond",
- "srcArrow": "none",
- "srcLabel": "",
- "dst": "oval",
- "dstArrow": "triangle",
- "dstLabel": "",
- "opacity": 1,
- "strokeDash": 0,
- "strokeWidth": 2,
- "stroke": "B1",
- "borderRadius": 10,
- "label": "",
- "fontSize": 16,
- "fontFamily": "DEFAULT",
- "language": "",
- "color": "N2",
- "italic": true,
- "bold": false,
- "underline": false,
- "labelWidth": 0,
- "labelHeight": 0,
- "labelPosition": "",
- "labelPercentage": 0,
- "route": [
- {
- "x": 722,
- "y": 104
- },
- {
- "x": 722,
- "y": 186
- }
- ],
- "animated": false,
- "tooltip": "",
- "icon": null,
- "zIndex": 0
- },
- {
- "id": "(oval -> circle)[0]",
- "src": "oval",
- "srcArrow": "none",
- "srcLabel": "",
- "dst": "circle",
- "dstArrow": "triangle",
- "dstLabel": "",
- "opacity": 1,
- "strokeDash": 0,
- "strokeWidth": 2,
- "stroke": "B1",
- "borderRadius": 10,
- "label": "",
- "fontSize": 16,
- "fontFamily": "DEFAULT",
- "language": "",
- "color": "N2",
- "italic": true,
- "bold": false,
- "underline": false,
- "labelWidth": 0,
- "labelHeight": 0,
- "labelPosition": "",
- "labelPercentage": 0,
- "route": [
- {
- "x": 722,
- "y": 256
- },
- {
- "x": 722,
- "y": 338
- }
- ],
- "animated": false,
- "tooltip": "",
- "icon": null,
- "zIndex": 0
- },
- {
- "id": "(hexagon -> cloud)[0]",
- "src": "hexagon",
- "srcArrow": "none",
- "srcLabel": "",
- "dst": "cloud",
- "dstArrow": "triangle",
- "dstLabel": "",
- "opacity": 1,
- "strokeDash": 0,
- "strokeWidth": 2,
- "stroke": "B1",
- "borderRadius": 10,
- "label": "",
- "fontSize": 16,
- "fontFamily": "DEFAULT",
- "language": "",
- "color": "N2",
- "italic": true,
- "bold": false,
- "underline": false,
- "labelWidth": 0,
- "labelHeight": 0,
- "labelPosition": "",
- "labelPercentage": 0,
- "route": [
- {
- "x": 884,
- "y": 104
- },
- {
- "x": 884,
- "y": 175
- }
- ],
- "animated": false,
- "tooltip": "",
- "icon": null,
- "zIndex": 0
- }
- ],
- "root": {
- "id": "",
- "type": "",
- "pos": {
- "x": 0,
- "y": 0
- },
- "width": 0,
- "height": 0,
- "opacity": 0,
- "strokeDash": 0,
- "strokeWidth": 0,
- "borderRadius": 0,
- "fill": "N7",
- "stroke": "",
- "shadow": false,
- "3d": false,
- "multiple": false,
- "double-border": false,
- "tooltip": "",
- "link": "",
- "icon": null,
- "iconPosition": "",
- "blend": false,
- "fields": null,
- "methods": null,
- "columns": null,
- "label": "",
- "fontSize": 0,
- "fontFamily": "",
- "language": "",
- "color": "",
- "italic": false,
- "bold": false,
- "underline": false,
- "labelWidth": 0,
- "labelHeight": 0,
- "zIndex": 0,
- "level": 0
- }
-}
diff --git a/e2etests/testdata/patterns/all_shapes/elk/sketch.exp.svg b/e2etests/testdata/patterns/all_shapes/elk/sketch.exp.svg
deleted file mode 100644
index 9b8876b3c..000000000
--- a/e2etests/testdata/patterns/all_shapes/elk/sketch.exp.svg
+++ /dev/null
@@ -1,128 +0,0 @@
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-rectanglesquarepageparallelogramdocumentcylinderqueuepackagestepcalloutstored_datapersondiamondovalcirclehexagoncloud
-
-
-
\ No newline at end of file
diff --git a/e2etests/testdata/patterns/dots/dagre/board.exp.json b/e2etests/testdata/patterns/dots/dagre/board.exp.json
deleted file mode 100644
index a6432ed22..000000000
--- a/e2etests/testdata/patterns/dots/dagre/board.exp.json
+++ /dev/null
@@ -1,512 +0,0 @@
-{
- "name": "",
- "isFolderOnly": false,
- "fontFamily": "SourceSansPro",
- "shapes": [
- {
- "id": "x",
- "type": "rectangle",
- "pos": {
- "x": 191,
- "y": 0
- },
- "width": 53,
- "height": 66,
- "opacity": 1,
- "strokeDash": 0,
- "strokeWidth": 2,
- "borderRadius": 0,
- "fill": "B6",
- "stroke": "B1",
- "shadow": false,
- "3d": false,
- "multiple": false,
- "double-border": false,
- "tooltip": "",
- "link": "",
- "icon": null,
- "iconPosition": "",
- "blend": false,
- "fields": null,
- "methods": null,
- "columns": null,
- "label": "x",
- "fontSize": 16,
- "fontFamily": "DEFAULT",
- "language": "",
- "color": "N1",
- "italic": false,
- "bold": true,
- "underline": false,
- "labelWidth": 8,
- "labelHeight": 21,
- "labelPosition": "INSIDE_MIDDLE_CENTER",
- "zIndex": 0,
- "level": 1
- },
- {
- "id": "y",
- "type": "rectangle",
- "pos": {
- "x": 0,
- "y": 166
- },
- "width": 54,
- "height": 66,
- "opacity": 1,
- "strokeDash": 0,
- "strokeWidth": 2,
- "borderRadius": 0,
- "fill": "B6",
- "stroke": "B1",
- "shadow": false,
- "3d": false,
- "multiple": false,
- "double-border": false,
- "tooltip": "",
- "link": "",
- "icon": null,
- "iconPosition": "",
- "blend": false,
- "fields": null,
- "methods": null,
- "columns": null,
- "label": "y",
- "fontSize": 16,
- "fontFamily": "DEFAULT",
- "language": "",
- "color": "N1",
- "italic": false,
- "bold": true,
- "underline": false,
- "labelWidth": 9,
- "labelHeight": 21,
- "labelPosition": "INSIDE_MIDDLE_CENTER",
- "zIndex": 0,
- "level": 1
- },
- {
- "id": "z",
- "type": "rectangle",
- "pos": {
- "x": 162,
- "y": 332
- },
- "width": 52,
- "height": 66,
- "opacity": 1,
- "strokeDash": 0,
- "strokeWidth": 2,
- "borderRadius": 0,
- "fill": "B6",
- "stroke": "B1",
- "shadow": false,
- "3d": false,
- "multiple": false,
- "double-border": false,
- "tooltip": "",
- "link": "",
- "icon": null,
- "iconPosition": "",
- "blend": false,
- "fields": null,
- "methods": null,
- "columns": null,
- "label": "z",
- "fontSize": 16,
- "fontFamily": "DEFAULT",
- "language": "",
- "color": "N1",
- "italic": false,
- "bold": true,
- "underline": false,
- "labelWidth": 7,
- "labelHeight": 21,
- "labelPosition": "INSIDE_MIDDLE_CENTER",
- "zIndex": 0,
- "level": 1
- },
- {
- "id": "abcd",
- "type": "rectangle",
- "pos": {
- "x": 114,
- "y": 166
- },
- "width": 80,
- "height": 66,
- "opacity": 1,
- "strokeDash": 0,
- "strokeWidth": 2,
- "borderRadius": 0,
- "fill": "B6",
- "stroke": "B1",
- "shadow": false,
- "3d": false,
- "multiple": false,
- "double-border": false,
- "tooltip": "",
- "link": "",
- "icon": null,
- "iconPosition": "",
- "blend": false,
- "fields": null,
- "methods": null,
- "columns": null,
- "label": "abcd",
- "fontSize": 16,
- "fontFamily": "DEFAULT",
- "language": "",
- "color": "N1",
- "italic": false,
- "bold": true,
- "underline": false,
- "labelWidth": 35,
- "labelHeight": 21,
- "labelPosition": "INSIDE_MIDDLE_CENTER",
- "zIndex": 0,
- "level": 1
- },
- {
- "id": "g",
- "type": "rectangle",
- "pos": {
- "x": 254,
- "y": 166
- },
- "width": 54,
- "height": 66,
- "opacity": 1,
- "strokeDash": 0,
- "strokeWidth": 2,
- "borderRadius": 0,
- "fill": "B6",
- "stroke": "B1",
- "shadow": false,
- "3d": false,
- "multiple": false,
- "double-border": false,
- "tooltip": "",
- "link": "",
- "icon": null,
- "iconPosition": "",
- "blend": false,
- "fields": null,
- "methods": null,
- "columns": null,
- "label": "g",
- "fontSize": 16,
- "fontFamily": "DEFAULT",
- "language": "",
- "color": "N1",
- "italic": false,
- "bold": true,
- "underline": false,
- "labelWidth": 9,
- "labelHeight": 21,
- "labelPosition": "INSIDE_MIDDLE_CENTER",
- "zIndex": 0,
- "level": 1
- }
- ],
- "connections": [
- {
- "id": "(x -> y)[0]",
- "src": "x",
- "srcArrow": "none",
- "srcLabel": "",
- "dst": "y",
- "dstArrow": "triangle",
- "dstLabel": "",
- "opacity": 1,
- "strokeDash": 0,
- "strokeWidth": 2,
- "stroke": "B1",
- "borderRadius": 10,
- "label": "",
- "fontSize": 16,
- "fontFamily": "DEFAULT",
- "language": "",
- "color": "N2",
- "italic": true,
- "bold": false,
- "underline": false,
- "labelWidth": 0,
- "labelHeight": 0,
- "labelPosition": "",
- "labelPercentage": 0,
- "route": [
- {
- "x": 191,
- "y": 44.54593175853019
- },
- {
- "x": 59.79999999999998,
- "y": 101.70918635170604
- },
- {
- "x": 27,
- "y": 126
- },
- {
- "x": 27,
- "y": 166
- }
- ],
- "isCurve": true,
- "animated": false,
- "tooltip": "",
- "icon": null,
- "zIndex": 0
- },
- {
- "id": "(y -> z)[0]",
- "src": "y",
- "srcArrow": "none",
- "srcLabel": "",
- "dst": "z",
- "dstArrow": "triangle",
- "dstLabel": "",
- "opacity": 1,
- "strokeDash": 0,
- "strokeWidth": 2,
- "stroke": "B1",
- "borderRadius": 10,
- "label": "",
- "fontSize": 16,
- "fontFamily": "DEFAULT",
- "language": "",
- "color": "N2",
- "italic": true,
- "bold": false,
- "underline": false,
- "labelWidth": 0,
- "labelHeight": 0,
- "labelPosition": "",
- "labelPercentage": 0,
- "route": [
- {
- "x": 27,
- "y": 232
- },
- {
- "x": 27,
- "y": 272
- },
- {
- "x": 53.900000000000006,
- "y": 295.91090342679126
- },
- {
- "x": 161.5,
- "y": 351.5545171339564
- }
- ],
- "isCurve": true,
- "animated": false,
- "tooltip": "",
- "icon": null,
- "zIndex": 0
- },
- {
- "id": "(x -> abcd)[0]",
- "src": "x",
- "srcArrow": "none",
- "srcLabel": "",
- "dst": "abcd",
- "dstArrow": "triangle",
- "dstLabel": "",
- "opacity": 1,
- "strokeDash": 0,
- "strokeWidth": 2,
- "stroke": "B1",
- "borderRadius": 10,
- "label": "",
- "fontSize": 16,
- "fontFamily": "DEFAULT",
- "language": "",
- "color": "N2",
- "italic": true,
- "bold": false,
- "underline": false,
- "labelWidth": 0,
- "labelHeight": 0,
- "labelPosition": "",
- "labelPercentage": 0,
- "route": [
- {
- "x": 192.25301204819277,
- "y": 66
- },
- {
- "x": 161.65060240963857,
- "y": 106
- },
- {
- "x": 154,
- "y": 126
- },
- {
- "x": 154,
- "y": 166
- }
- ],
- "isCurve": true,
- "animated": false,
- "tooltip": "",
- "icon": null,
- "zIndex": 0
- },
- {
- "id": "(x -> g)[0]",
- "src": "x",
- "srcArrow": "none",
- "srcLabel": "",
- "dst": "g",
- "dstArrow": "triangle",
- "dstLabel": "",
- "opacity": 1,
- "strokeDash": 0,
- "strokeWidth": 2,
- "stroke": "B1",
- "borderRadius": 10,
- "label": "",
- "fontSize": 16,
- "fontFamily": "DEFAULT",
- "language": "",
- "color": "N2",
- "italic": true,
- "bold": false,
- "underline": false,
- "labelWidth": 0,
- "labelHeight": 0,
- "labelPosition": "",
- "labelPercentage": 0,
- "route": [
- {
- "x": 242.74698795180723,
- "y": 66
- },
- {
- "x": 273.34939759036143,
- "y": 106
- },
- {
- "x": 281,
- "y": 126
- },
- {
- "x": 281,
- "y": 166
- }
- ],
- "isCurve": true,
- "animated": false,
- "tooltip": "",
- "icon": null,
- "zIndex": 0
- },
- {
- "id": "(x -> z)[0]",
- "src": "x",
- "srcArrow": "none",
- "srcLabel": "",
- "dst": "z",
- "dstArrow": "triangle",
- "dstLabel": "",
- "opacity": 1,
- "strokeDash": 0,
- "strokeWidth": 2,
- "stroke": "B1",
- "borderRadius": 10,
- "label": "",
- "fontSize": 16,
- "fontFamily": "DEFAULT",
- "language": "",
- "color": "N2",
- "italic": true,
- "bold": false,
- "underline": false,
- "labelWidth": 0,
- "labelHeight": 0,
- "labelPosition": "",
- "labelPercentage": 0,
- "route": [
- {
- "x": 244,
- "y": 49.8544061302682
- },
- {
- "x": 327.2,
- "y": 102.77088122605365
- },
- {
- "x": 348,
- "y": 132.6
- },
- {
- "x": 348,
- "y": 157.5
- },
- {
- "x": 348,
- "y": 182.4
- },
- {
- "x": 321.2,
- "y": 295.8
- },
- {
- "x": 214,
- "y": 351
- }
- ],
- "isCurve": true,
- "animated": false,
- "tooltip": "",
- "icon": null,
- "zIndex": 0
- }
- ],
- "root": {
- "id": "",
- "type": "",
- "pos": {
- "x": 0,
- "y": 0
- },
- "width": 0,
- "height": 0,
- "opacity": 0,
- "strokeDash": 0,
- "strokeWidth": 0,
- "borderRadius": 0,
- "fill": "N7",
- "fillPattern": "dots",
- "stroke": "",
- "shadow": false,
- "3d": false,
- "multiple": false,
- "double-border": false,
- "tooltip": "",
- "link": "",
- "icon": null,
- "iconPosition": "",
- "blend": false,
- "fields": null,
- "methods": null,
- "columns": null,
- "label": "",
- "fontSize": 0,
- "fontFamily": "",
- "language": "",
- "color": "",
- "italic": false,
- "bold": false,
- "underline": false,
- "labelWidth": 0,
- "labelHeight": 0,
- "zIndex": 0,
- "level": 0
- }
-}
diff --git a/e2etests/testdata/patterns/dots/dagre/sketch.exp.svg b/e2etests/testdata/patterns/dots/dagre/sketch.exp.svg
deleted file mode 100644
index f66e48502..000000000
--- a/e2etests/testdata/patterns/dots/dagre/sketch.exp.svg
+++ /dev/null
@@ -1,128 +0,0 @@
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-xyzabcdg
-
-
-
\ No newline at end of file
diff --git a/e2etests/testdata/patterns/dots/elk/board.exp.json b/e2etests/testdata/patterns/dots/elk/board.exp.json
deleted file mode 100644
index fbac24e80..000000000
--- a/e2etests/testdata/patterns/dots/elk/board.exp.json
+++ /dev/null
@@ -1,487 +0,0 @@
-{
- "name": "",
- "isFolderOnly": false,
- "fontFamily": "SourceSansPro",
- "shapes": [
- {
- "id": "x",
- "type": "rectangle",
- "pos": {
- "x": 62,
- "y": 12
- },
- "width": 160,
- "height": 66,
- "opacity": 1,
- "strokeDash": 0,
- "strokeWidth": 2,
- "borderRadius": 0,
- "fill": "B6",
- "stroke": "B1",
- "shadow": false,
- "3d": false,
- "multiple": false,
- "double-border": false,
- "tooltip": "",
- "link": "",
- "icon": null,
- "iconPosition": "",
- "blend": false,
- "fields": null,
- "methods": null,
- "columns": null,
- "label": "x",
- "fontSize": 16,
- "fontFamily": "DEFAULT",
- "language": "",
- "color": "N1",
- "italic": false,
- "bold": true,
- "underline": false,
- "labelWidth": 8,
- "labelHeight": 21,
- "labelPosition": "INSIDE_MIDDLE_CENTER",
- "zIndex": 0,
- "level": 1
- },
- {
- "id": "y",
- "type": "rectangle",
- "pos": {
- "x": 12,
- "y": 208
- },
- "width": 54,
- "height": 66,
- "opacity": 1,
- "strokeDash": 0,
- "strokeWidth": 2,
- "borderRadius": 0,
- "fill": "B6",
- "stroke": "B1",
- "shadow": false,
- "3d": false,
- "multiple": false,
- "double-border": false,
- "tooltip": "",
- "link": "",
- "icon": null,
- "iconPosition": "",
- "blend": false,
- "fields": null,
- "methods": null,
- "columns": null,
- "label": "y",
- "fontSize": 16,
- "fontFamily": "DEFAULT",
- "language": "",
- "color": "N1",
- "italic": false,
- "bold": true,
- "underline": false,
- "labelWidth": 9,
- "labelHeight": 21,
- "labelPosition": "INSIDE_MIDDLE_CENTER",
- "zIndex": 0,
- "level": 1
- },
- {
- "id": "z",
- "type": "rectangle",
- "pos": {
- "x": 12,
- "y": 354
- },
- "width": 80,
- "height": 66,
- "opacity": 1,
- "strokeDash": 0,
- "strokeWidth": 2,
- "borderRadius": 0,
- "fill": "B6",
- "stroke": "B1",
- "shadow": false,
- "3d": false,
- "multiple": false,
- "double-border": false,
- "tooltip": "",
- "link": "",
- "icon": null,
- "iconPosition": "",
- "blend": false,
- "fields": null,
- "methods": null,
- "columns": null,
- "label": "z",
- "fontSize": 16,
- "fontFamily": "DEFAULT",
- "language": "",
- "color": "N1",
- "italic": false,
- "bold": true,
- "underline": false,
- "labelWidth": 7,
- "labelHeight": 21,
- "labelPosition": "INSIDE_MIDDLE_CENTER",
- "zIndex": 0,
- "level": 1
- },
- {
- "id": "abcd",
- "type": "rectangle",
- "pos": {
- "x": 86,
- "y": 208
- },
- "width": 80,
- "height": 66,
- "opacity": 1,
- "strokeDash": 0,
- "strokeWidth": 2,
- "borderRadius": 0,
- "fill": "B6",
- "stroke": "B1",
- "shadow": false,
- "3d": false,
- "multiple": false,
- "double-border": false,
- "tooltip": "",
- "link": "",
- "icon": null,
- "iconPosition": "",
- "blend": false,
- "fields": null,
- "methods": null,
- "columns": null,
- "label": "abcd",
- "fontSize": 16,
- "fontFamily": "DEFAULT",
- "language": "",
- "color": "N1",
- "italic": false,
- "bold": true,
- "underline": false,
- "labelWidth": 35,
- "labelHeight": 21,
- "labelPosition": "INSIDE_MIDDLE_CENTER",
- "zIndex": 0,
- "level": 1
- },
- {
- "id": "g",
- "type": "rectangle",
- "pos": {
- "x": 186,
- "y": 208
- },
- "width": 54,
- "height": 66,
- "opacity": 1,
- "strokeDash": 0,
- "strokeWidth": 2,
- "borderRadius": 0,
- "fill": "B6",
- "stroke": "B1",
- "shadow": false,
- "3d": false,
- "multiple": false,
- "double-border": false,
- "tooltip": "",
- "link": "",
- "icon": null,
- "iconPosition": "",
- "blend": false,
- "fields": null,
- "methods": null,
- "columns": null,
- "label": "g",
- "fontSize": 16,
- "fontFamily": "DEFAULT",
- "language": "",
- "color": "N1",
- "italic": false,
- "bold": true,
- "underline": false,
- "labelWidth": 9,
- "labelHeight": 21,
- "labelPosition": "INSIDE_MIDDLE_CENTER",
- "zIndex": 0,
- "level": 1
- }
- ],
- "connections": [
- {
- "id": "(x -> y)[0]",
- "src": "x",
- "srcArrow": "none",
- "srcLabel": "",
- "dst": "y",
- "dstArrow": "triangle",
- "dstLabel": "",
- "opacity": 1,
- "strokeDash": 0,
- "strokeWidth": 2,
- "stroke": "B1",
- "borderRadius": 10,
- "label": "",
- "fontSize": 16,
- "fontFamily": "DEFAULT",
- "language": "",
- "color": "N2",
- "italic": true,
- "bold": false,
- "underline": false,
- "labelWidth": 0,
- "labelHeight": 0,
- "labelPosition": "",
- "labelPercentage": 0,
- "route": [
- {
- "x": 94,
- "y": 78
- },
- {
- "x": 94,
- "y": 118
- },
- {
- "x": 39,
- "y": 118
- },
- {
- "x": 39,
- "y": 208
- }
- ],
- "animated": false,
- "tooltip": "",
- "icon": null,
- "zIndex": 0
- },
- {
- "id": "(y -> z)[0]",
- "src": "y",
- "srcArrow": "none",
- "srcLabel": "",
- "dst": "z",
- "dstArrow": "triangle",
- "dstLabel": "",
- "opacity": 1,
- "strokeDash": 0,
- "strokeWidth": 2,
- "stroke": "B1",
- "borderRadius": 10,
- "label": "",
- "fontSize": 16,
- "fontFamily": "DEFAULT",
- "language": "",
- "color": "N2",
- "italic": true,
- "bold": false,
- "underline": false,
- "labelWidth": 0,
- "labelHeight": 0,
- "labelPosition": "",
- "labelPercentage": 0,
- "route": [
- {
- "x": 39,
- "y": 274
- },
- {
- "x": 39,
- "y": 354
- }
- ],
- "animated": false,
- "tooltip": "",
- "icon": null,
- "zIndex": 0
- },
- {
- "id": "(x -> abcd)[0]",
- "src": "x",
- "srcArrow": "none",
- "srcLabel": "",
- "dst": "abcd",
- "dstArrow": "triangle",
- "dstLabel": "",
- "opacity": 1,
- "strokeDash": 0,
- "strokeWidth": 2,
- "stroke": "B1",
- "borderRadius": 10,
- "label": "",
- "fontSize": 16,
- "fontFamily": "DEFAULT",
- "language": "",
- "color": "N2",
- "italic": true,
- "bold": false,
- "underline": false,
- "labelWidth": 0,
- "labelHeight": 0,
- "labelPosition": "",
- "labelPercentage": 0,
- "route": [
- {
- "x": 126,
- "y": 78
- },
- {
- "x": 126,
- "y": 208
- }
- ],
- "animated": false,
- "tooltip": "",
- "icon": null,
- "zIndex": 0
- },
- {
- "id": "(x -> g)[0]",
- "src": "x",
- "srcArrow": "none",
- "srcLabel": "",
- "dst": "g",
- "dstArrow": "triangle",
- "dstLabel": "",
- "opacity": 1,
- "strokeDash": 0,
- "strokeWidth": 2,
- "stroke": "B1",
- "borderRadius": 10,
- "label": "",
- "fontSize": 16,
- "fontFamily": "DEFAULT",
- "language": "",
- "color": "N2",
- "italic": true,
- "bold": false,
- "underline": false,
- "labelWidth": 0,
- "labelHeight": 0,
- "labelPosition": "",
- "labelPercentage": 0,
- "route": [
- {
- "x": 158,
- "y": 78
- },
- {
- "x": 158,
- "y": 168
- },
- {
- "x": 213,
- "y": 168
- },
- {
- "x": 213,
- "y": 208
- }
- ],
- "animated": false,
- "tooltip": "",
- "icon": null,
- "zIndex": 0
- },
- {
- "id": "(x -> z)[0]",
- "src": "x",
- "srcArrow": "none",
- "srcLabel": "",
- "dst": "z",
- "dstArrow": "triangle",
- "dstLabel": "",
- "opacity": 1,
- "strokeDash": 0,
- "strokeWidth": 2,
- "stroke": "B1",
- "borderRadius": 10,
- "label": "",
- "fontSize": 16,
- "fontFamily": "DEFAULT",
- "language": "",
- "color": "N2",
- "italic": true,
- "bold": false,
- "underline": false,
- "labelWidth": 0,
- "labelHeight": 0,
- "labelPosition": "",
- "labelPercentage": 0,
- "route": [
- {
- "x": 190,
- "y": 78
- },
- {
- "x": 190,
- "y": 118
- },
- {
- "x": 250,
- "y": 118
- },
- {
- "x": 250,
- "y": 314
- },
- {
- "x": 65.66666666666667,
- "y": 314
- },
- {
- "x": 65.66666666666667,
- "y": 354
- }
- ],
- "animated": false,
- "tooltip": "",
- "icon": null,
- "zIndex": 0
- }
- ],
- "root": {
- "id": "",
- "type": "",
- "pos": {
- "x": 0,
- "y": 0
- },
- "width": 0,
- "height": 0,
- "opacity": 0,
- "strokeDash": 0,
- "strokeWidth": 0,
- "borderRadius": 0,
- "fill": "N7",
- "fillPattern": "dots",
- "stroke": "",
- "shadow": false,
- "3d": false,
- "multiple": false,
- "double-border": false,
- "tooltip": "",
- "link": "",
- "icon": null,
- "iconPosition": "",
- "blend": false,
- "fields": null,
- "methods": null,
- "columns": null,
- "label": "",
- "fontSize": 0,
- "fontFamily": "",
- "language": "",
- "color": "",
- "italic": false,
- "bold": false,
- "underline": false,
- "labelWidth": 0,
- "labelHeight": 0,
- "zIndex": 0,
- "level": 0
- }
-}
diff --git a/e2etests/testdata/patterns/dots/elk/sketch.exp.svg b/e2etests/testdata/patterns/dots/elk/sketch.exp.svg
deleted file mode 100644
index 99b1d2951..000000000
--- a/e2etests/testdata/patterns/dots/elk/sketch.exp.svg
+++ /dev/null
@@ -1,128 +0,0 @@
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-xyzabcdg
-
-
-
\ No newline at end of file
diff --git a/e2etests/testdata/patterns/multiple/elk/board.exp.json b/e2etests/testdata/patterns/multiple/elk/board.exp.json
deleted file mode 100644
index a7cc9d486..000000000
--- a/e2etests/testdata/patterns/multiple/elk/board.exp.json
+++ /dev/null
@@ -1,1203 +0,0 @@
-{
- "name": "",
- "isFolderOnly": false,
- "fontFamily": "SourceSansPro",
- "shapes": [
- {
- "id": "rectangle",
- "type": "rectangle",
- "pos": {
- "x": 12,
- "y": 38
- },
- "width": 111,
- "height": 66,
- "opacity": 1,
- "strokeDash": 0,
- "strokeWidth": 2,
- "borderRadius": 0,
- "fill": "B6",
- "fillPattern": "dots",
- "stroke": "B1",
- "shadow": false,
- "3d": false,
- "multiple": true,
- "double-border": false,
- "tooltip": "",
- "link": "",
- "icon": null,
- "iconPosition": "",
- "blend": false,
- "fields": null,
- "methods": null,
- "columns": null,
- "label": "rectangle",
- "fontSize": 16,
- "fontFamily": "DEFAULT",
- "language": "",
- "color": "N1",
- "italic": false,
- "bold": true,
- "underline": false,
- "labelWidth": 66,
- "labelHeight": 21,
- "labelPosition": "INSIDE_MIDDLE_CENTER",
- "zIndex": 0,
- "level": 1
- },
- {
- "id": "square",
- "type": "rectangle",
- "pos": {
- "x": 20,
- "y": 174
- },
- "width": 94,
- "height": 94,
- "opacity": 1,
- "strokeDash": 0,
- "strokeWidth": 2,
- "borderRadius": 0,
- "fill": "B6",
- "fillPattern": "dots",
- "stroke": "B1",
- "shadow": false,
- "3d": false,
- "multiple": true,
- "double-border": false,
- "tooltip": "",
- "link": "",
- "icon": null,
- "iconPosition": "",
- "blend": false,
- "fields": null,
- "methods": null,
- "columns": null,
- "label": "square",
- "fontSize": 16,
- "fontFamily": "DEFAULT",
- "language": "",
- "color": "N1",
- "italic": false,
- "bold": true,
- "underline": false,
- "labelWidth": 49,
- "labelHeight": 21,
- "labelPosition": "INSIDE_MIDDLE_CENTER",
- "zIndex": 0,
- "level": 1
- },
- {
- "id": "page",
- "type": "page",
- "pos": {
- "x": 28,
- "y": 338
- },
- "width": 79,
- "height": 87,
- "opacity": 1,
- "strokeDash": 0,
- "strokeWidth": 2,
- "borderRadius": 0,
- "fill": "AB4",
- "fillPattern": "dots",
- "stroke": "B1",
- "shadow": false,
- "3d": false,
- "multiple": true,
- "double-border": false,
- "tooltip": "",
- "link": "",
- "icon": null,
- "iconPosition": "",
- "blend": false,
- "fields": null,
- "methods": null,
- "columns": null,
- "label": "page",
- "fontSize": 16,
- "fontFamily": "DEFAULT",
- "language": "",
- "color": "N1",
- "italic": false,
- "bold": true,
- "underline": false,
- "labelWidth": 34,
- "labelHeight": 21,
- "labelPosition": "INSIDE_MIDDLE_CENTER",
- "zIndex": 0,
- "level": 1
- },
- {
- "id": "parallelogram",
- "type": "parallelogram",
- "pos": {
- "x": 143,
- "y": 38
- },
- "width": 196,
- "height": 66,
- "opacity": 1,
- "strokeDash": 0,
- "strokeWidth": 2,
- "borderRadius": 0,
- "fill": "N5",
- "fillPattern": "dots",
- "stroke": "B1",
- "shadow": false,
- "3d": false,
- "multiple": true,
- "double-border": false,
- "tooltip": "",
- "link": "",
- "icon": null,
- "iconPosition": "",
- "blend": false,
- "fields": null,
- "methods": null,
- "columns": null,
- "label": "parallelogram",
- "fontSize": 16,
- "fontFamily": "DEFAULT",
- "language": "",
- "color": "N1",
- "italic": false,
- "bold": true,
- "underline": false,
- "labelWidth": 99,
- "labelHeight": 21,
- "labelPosition": "INSIDE_MIDDLE_CENTER",
- "zIndex": 0,
- "level": 1
- },
- {
- "id": "document",
- "type": "document",
- "pos": {
- "x": 182,
- "y": 183
- },
- "width": 117,
- "height": 76,
- "opacity": 1,
- "strokeDash": 0,
- "strokeWidth": 2,
- "borderRadius": 0,
- "fill": "AB4",
- "fillPattern": "dots",
- "stroke": "B1",
- "shadow": false,
- "3d": false,
- "multiple": true,
- "double-border": false,
- "tooltip": "",
- "link": "",
- "icon": null,
- "iconPosition": "",
- "blend": false,
- "fields": null,
- "methods": null,
- "columns": null,
- "label": "document",
- "fontSize": 16,
- "fontFamily": "DEFAULT",
- "language": "",
- "color": "N1",
- "italic": false,
- "bold": true,
- "underline": false,
- "labelWidth": 72,
- "labelHeight": 21,
- "labelPosition": "INSIDE_MIDDLE_CENTER",
- "zIndex": 0,
- "level": 1
- },
- {
- "id": "cylinder",
- "type": "cylinder",
- "pos": {
- "x": 189,
- "y": 338
- },
- "width": 104,
- "height": 118,
- "opacity": 1,
- "strokeDash": 0,
- "strokeWidth": 2,
- "borderRadius": 0,
- "fill": "AA4",
- "fillPattern": "dots",
- "stroke": "B1",
- "shadow": false,
- "3d": false,
- "multiple": true,
- "double-border": false,
- "tooltip": "",
- "link": "",
- "icon": null,
- "iconPosition": "",
- "blend": false,
- "fields": null,
- "methods": null,
- "columns": null,
- "label": "cylinder",
- "fontSize": 16,
- "fontFamily": "DEFAULT",
- "language": "",
- "color": "N1",
- "italic": false,
- "bold": true,
- "underline": false,
- "labelWidth": 59,
- "labelHeight": 21,
- "labelPosition": "INSIDE_MIDDLE_CENTER",
- "zIndex": 0,
- "level": 1
- },
- {
- "id": "queue",
- "type": "queue",
- "pos": {
- "x": 359,
- "y": 38
- },
- "width": 141,
- "height": 66,
- "opacity": 1,
- "strokeDash": 0,
- "strokeWidth": 2,
- "borderRadius": 0,
- "fill": "N5",
- "fillPattern": "dots",
- "stroke": "B1",
- "shadow": false,
- "3d": false,
- "multiple": true,
- "double-border": false,
- "tooltip": "",
- "link": "",
- "icon": null,
- "iconPosition": "",
- "blend": false,
- "fields": null,
- "methods": null,
- "columns": null,
- "label": "queue",
- "fontSize": 16,
- "fontFamily": "DEFAULT",
- "language": "",
- "color": "N1",
- "italic": false,
- "bold": true,
- "underline": false,
- "labelWidth": 44,
- "labelHeight": 21,
- "labelPosition": "INSIDE_MIDDLE_CENTER",
- "zIndex": 0,
- "level": 1
- },
- {
- "id": "package",
- "type": "package",
- "pos": {
- "x": 378,
- "y": 184
- },
- "width": 103,
- "height": 73,
- "opacity": 1,
- "strokeDash": 0,
- "strokeWidth": 2,
- "borderRadius": 0,
- "fill": "AA4",
- "fillPattern": "dots",
- "stroke": "B1",
- "shadow": false,
- "3d": false,
- "multiple": true,
- "double-border": false,
- "tooltip": "",
- "link": "",
- "icon": null,
- "iconPosition": "",
- "blend": false,
- "fields": null,
- "methods": null,
- "columns": null,
- "label": "package",
- "fontSize": 16,
- "fontFamily": "DEFAULT",
- "language": "",
- "color": "N1",
- "italic": false,
- "bold": true,
- "underline": false,
- "labelWidth": 58,
- "labelHeight": 21,
- "labelPosition": "INSIDE_MIDDLE_CENTER",
- "zIndex": 0,
- "level": 1
- },
- {
- "id": "step",
- "type": "step",
- "pos": {
- "x": 371,
- "y": 338
- },
- "width": 116,
- "height": 101,
- "opacity": 1,
- "strokeDash": 0,
- "strokeWidth": 2,
- "borderRadius": 0,
- "fill": "AB4",
- "fillPattern": "dots",
- "stroke": "B1",
- "shadow": false,
- "3d": false,
- "multiple": true,
- "double-border": false,
- "tooltip": "",
- "link": "",
- "icon": null,
- "iconPosition": "",
- "blend": false,
- "fields": null,
- "methods": null,
- "columns": null,
- "label": "step",
- "fontSize": 16,
- "fontFamily": "DEFAULT",
- "language": "",
- "color": "N1",
- "italic": false,
- "bold": true,
- "underline": false,
- "labelWidth": 31,
- "labelHeight": 21,
- "labelPosition": "INSIDE_MIDDLE_CENTER",
- "zIndex": 0,
- "level": 1
- },
- {
- "id": "callout",
- "type": "callout",
- "pos": {
- "x": 529,
- "y": 13
- },
- "width": 95,
- "height": 91,
- "opacity": 1,
- "strokeDash": 0,
- "strokeWidth": 2,
- "borderRadius": 0,
- "fill": "N7",
- "fillPattern": "dots",
- "stroke": "B1",
- "shadow": false,
- "3d": false,
- "multiple": true,
- "double-border": false,
- "tooltip": "",
- "link": "",
- "icon": null,
- "iconPosition": "",
- "blend": false,
- "fields": null,
- "methods": null,
- "columns": null,
- "label": "callout",
- "fontSize": 16,
- "fontFamily": "DEFAULT",
- "language": "",
- "color": "N1",
- "italic": false,
- "bold": true,
- "underline": false,
- "labelWidth": 50,
- "labelHeight": 21,
- "labelPosition": "INSIDE_MIDDLE_CENTER",
- "zIndex": 0,
- "level": 1
- },
- {
- "id": "stored_data",
- "type": "stored_data",
- "pos": {
- "x": 501,
- "y": 188
- },
- "width": 151,
- "height": 66,
- "opacity": 1,
- "strokeDash": 0,
- "strokeWidth": 2,
- "borderRadius": 0,
- "fill": "AA4",
- "fillPattern": "dots",
- "stroke": "B1",
- "shadow": false,
- "3d": false,
- "multiple": true,
- "double-border": false,
- "tooltip": "",
- "link": "",
- "icon": null,
- "iconPosition": "",
- "blend": false,
- "fields": null,
- "methods": null,
- "columns": null,
- "label": "stored_data",
- "fontSize": 16,
- "fontFamily": "DEFAULT",
- "language": "",
- "color": "N1",
- "italic": false,
- "bold": true,
- "underline": false,
- "labelWidth": 86,
- "labelHeight": 21,
- "labelPosition": "INSIDE_MIDDLE_CENTER",
- "zIndex": 0,
- "level": 1
- },
- {
- "id": "person",
- "type": "person",
- "pos": {
- "x": 545,
- "y": 338
- },
- "width": 63,
- "height": 66,
- "opacity": 1,
- "strokeDash": 0,
- "strokeWidth": 2,
- "borderRadius": 0,
- "fill": "B3",
- "fillPattern": "dots",
- "stroke": "B1",
- "shadow": false,
- "3d": false,
- "multiple": true,
- "double-border": false,
- "tooltip": "",
- "link": "",
- "icon": null,
- "iconPosition": "",
- "blend": false,
- "fields": null,
- "methods": null,
- "columns": null,
- "label": "person",
- "fontSize": 16,
- "fontFamily": "DEFAULT",
- "language": "",
- "color": "N1",
- "italic": false,
- "bold": true,
- "underline": false,
- "labelWidth": 48,
- "labelHeight": 21,
- "labelPosition": "OUTSIDE_BOTTOM_CENTER",
- "zIndex": 0,
- "level": 1
- },
- {
- "id": "diamond",
- "type": "diamond",
- "pos": {
- "x": 644,
- "y": 12
- },
- "width": 156,
- "height": 92,
- "opacity": 1,
- "strokeDash": 0,
- "strokeWidth": 2,
- "borderRadius": 0,
- "fill": "N4",
- "fillPattern": "dots",
- "stroke": "B1",
- "shadow": false,
- "3d": false,
- "multiple": true,
- "double-border": false,
- "tooltip": "",
- "link": "",
- "icon": null,
- "iconPosition": "",
- "blend": false,
- "fields": null,
- "methods": null,
- "columns": null,
- "label": "diamond",
- "fontSize": 16,
- "fontFamily": "DEFAULT",
- "language": "",
- "color": "N1",
- "italic": false,
- "bold": true,
- "underline": false,
- "labelWidth": 63,
- "labelHeight": 21,
- "labelPosition": "INSIDE_MIDDLE_CENTER",
- "zIndex": 0,
- "level": 1
- },
- {
- "id": "oval",
- "type": "oval",
- "pos": {
- "x": 673,
- "y": 186
- },
- "width": 97,
- "height": 70,
- "opacity": 1,
- "strokeDash": 0,
- "strokeWidth": 2,
- "borderRadius": 0,
- "fill": "B6",
- "fillPattern": "dots",
- "stroke": "B1",
- "shadow": false,
- "3d": false,
- "multiple": true,
- "double-border": false,
- "tooltip": "",
- "link": "",
- "icon": null,
- "iconPosition": "",
- "blend": false,
- "fields": null,
- "methods": null,
- "columns": null,
- "label": "oval",
- "fontSize": 16,
- "fontFamily": "DEFAULT",
- "language": "",
- "color": "N1",
- "italic": false,
- "bold": true,
- "underline": false,
- "labelWidth": 31,
- "labelHeight": 21,
- "labelPosition": "INSIDE_MIDDLE_CENTER",
- "zIndex": 0,
- "level": 1
- },
- {
- "id": "circle",
- "type": "oval",
- "pos": {
- "x": 676,
- "y": 338
- },
- "width": 91,
- "height": 91,
- "opacity": 1,
- "strokeDash": 0,
- "strokeWidth": 2,
- "borderRadius": 0,
- "fill": "B6",
- "fillPattern": "dots",
- "stroke": "B1",
- "shadow": false,
- "3d": false,
- "multiple": true,
- "double-border": false,
- "tooltip": "",
- "link": "",
- "icon": null,
- "iconPosition": "",
- "blend": false,
- "fields": null,
- "methods": null,
- "columns": null,
- "label": "circle",
- "fontSize": 16,
- "fontFamily": "DEFAULT",
- "language": "",
- "color": "N1",
- "italic": false,
- "bold": true,
- "underline": false,
- "labelWidth": 39,
- "labelHeight": 21,
- "labelPosition": "INSIDE_MIDDLE_CENTER",
- "zIndex": 0,
- "level": 1
- },
- {
- "id": "hexagon",
- "type": "hexagon",
- "pos": {
- "x": 820,
- "y": 35
- },
- "width": 128,
- "height": 69,
- "opacity": 1,
- "strokeDash": 0,
- "strokeWidth": 2,
- "borderRadius": 0,
- "fill": "N5",
- "fillPattern": "dots",
- "stroke": "B1",
- "shadow": false,
- "3d": false,
- "multiple": true,
- "double-border": false,
- "tooltip": "",
- "link": "",
- "icon": null,
- "iconPosition": "",
- "blend": false,
- "fields": null,
- "methods": null,
- "columns": null,
- "label": "hexagon",
- "fontSize": 16,
- "fontFamily": "DEFAULT",
- "language": "",
- "color": "N1",
- "italic": false,
- "bold": true,
- "underline": false,
- "labelWidth": 60,
- "labelHeight": 21,
- "labelPosition": "INSIDE_MIDDLE_CENTER",
- "zIndex": 0,
- "level": 1
- },
- {
- "id": "cloud",
- "type": "cloud",
- "pos": {
- "x": 832,
- "y": 174
- },
- "width": 104,
- "height": 84,
- "opacity": 1,
- "strokeDash": 0,
- "strokeWidth": 2,
- "borderRadius": 0,
- "fill": "N7",
- "fillPattern": "dots",
- "stroke": "B1",
- "shadow": false,
- "3d": false,
- "multiple": true,
- "double-border": false,
- "tooltip": "",
- "link": "",
- "icon": null,
- "iconPosition": "",
- "blend": false,
- "fields": null,
- "methods": null,
- "columns": null,
- "label": "cloud",
- "fontSize": 16,
- "fontFamily": "DEFAULT",
- "language": "",
- "color": "N1",
- "italic": false,
- "bold": true,
- "underline": false,
- "labelWidth": 40,
- "labelHeight": 21,
- "labelPosition": "INSIDE_MIDDLE_CENTER",
- "zIndex": 0,
- "level": 1
- }
- ],
- "connections": [
- {
- "id": "(rectangle -> square)[0]",
- "src": "rectangle",
- "srcArrow": "none",
- "srcLabel": "",
- "dst": "square",
- "dstArrow": "triangle",
- "dstLabel": "",
- "opacity": 1,
- "strokeDash": 0,
- "strokeWidth": 2,
- "stroke": "B1",
- "borderRadius": 10,
- "label": "",
- "fontSize": 16,
- "fontFamily": "DEFAULT",
- "language": "",
- "color": "N2",
- "italic": true,
- "bold": false,
- "underline": false,
- "labelWidth": 0,
- "labelHeight": 0,
- "labelPosition": "",
- "labelPercentage": 0,
- "route": [
- {
- "x": 67.5,
- "y": 104
- },
- {
- "x": 67.5,
- "y": 174
- }
- ],
- "animated": false,
- "tooltip": "",
- "icon": null,
- "zIndex": 0
- },
- {
- "id": "(square -> page)[0]",
- "src": "square",
- "srcArrow": "none",
- "srcLabel": "",
- "dst": "page",
- "dstArrow": "triangle",
- "dstLabel": "",
- "opacity": 1,
- "strokeDash": 0,
- "strokeWidth": 2,
- "stroke": "B1",
- "borderRadius": 10,
- "label": "",
- "fontSize": 16,
- "fontFamily": "DEFAULT",
- "language": "",
- "color": "N2",
- "italic": true,
- "bold": false,
- "underline": false,
- "labelWidth": 0,
- "labelHeight": 0,
- "labelPosition": "",
- "labelPercentage": 0,
- "route": [
- {
- "x": 67.5,
- "y": 268
- },
- {
- "x": 68,
- "y": 338
- }
- ],
- "animated": false,
- "tooltip": "",
- "icon": null,
- "zIndex": 0
- },
- {
- "id": "(parallelogram -> document)[0]",
- "src": "parallelogram",
- "srcArrow": "none",
- "srcLabel": "",
- "dst": "document",
- "dstArrow": "triangle",
- "dstLabel": "",
- "opacity": 1,
- "strokeDash": 0,
- "strokeWidth": 2,
- "stroke": "B1",
- "borderRadius": 10,
- "label": "",
- "fontSize": 16,
- "fontFamily": "DEFAULT",
- "language": "",
- "color": "N2",
- "italic": true,
- "bold": false,
- "underline": false,
- "labelWidth": 0,
- "labelHeight": 0,
- "labelPosition": "",
- "labelPercentage": 0,
- "route": [
- {
- "x": 241,
- "y": 104
- },
- {
- "x": 241,
- "y": 183
- }
- ],
- "animated": false,
- "tooltip": "",
- "icon": null,
- "zIndex": 0
- },
- {
- "id": "(document -> cylinder)[0]",
- "src": "document",
- "srcArrow": "none",
- "srcLabel": "",
- "dst": "cylinder",
- "dstArrow": "triangle",
- "dstLabel": "",
- "opacity": 1,
- "strokeDash": 0,
- "strokeWidth": 2,
- "stroke": "B1",
- "borderRadius": 10,
- "label": "",
- "fontSize": 16,
- "fontFamily": "DEFAULT",
- "language": "",
- "color": "N2",
- "italic": true,
- "bold": false,
- "underline": false,
- "labelWidth": 0,
- "labelHeight": 0,
- "labelPosition": "",
- "labelPercentage": 0,
- "route": [
- {
- "x": 241,
- "y": 248
- },
- {
- "x": 241,
- "y": 338
- }
- ],
- "animated": false,
- "tooltip": "",
- "icon": null,
- "zIndex": 0
- },
- {
- "id": "(queue -> package)[0]",
- "src": "queue",
- "srcArrow": "none",
- "srcLabel": "",
- "dst": "package",
- "dstArrow": "triangle",
- "dstLabel": "",
- "opacity": 1,
- "strokeDash": 0,
- "strokeWidth": 2,
- "stroke": "B1",
- "borderRadius": 10,
- "label": "",
- "fontSize": 16,
- "fontFamily": "DEFAULT",
- "language": "",
- "color": "N2",
- "italic": true,
- "bold": false,
- "underline": false,
- "labelWidth": 0,
- "labelHeight": 0,
- "labelPosition": "",
- "labelPercentage": 0,
- "route": [
- {
- "x": 429,
- "y": 104
- },
- {
- "x": 430,
- "y": 185
- }
- ],
- "animated": false,
- "tooltip": "",
- "icon": null,
- "zIndex": 0
- },
- {
- "id": "(package -> step)[0]",
- "src": "package",
- "srcArrow": "none",
- "srcLabel": "",
- "dst": "step",
- "dstArrow": "triangle",
- "dstLabel": "",
- "opacity": 1,
- "strokeDash": 0,
- "strokeWidth": 2,
- "stroke": "B1",
- "borderRadius": 10,
- "label": "",
- "fontSize": 16,
- "fontFamily": "DEFAULT",
- "language": "",
- "color": "N2",
- "italic": true,
- "bold": false,
- "underline": false,
- "labelWidth": 0,
- "labelHeight": 0,
- "labelPosition": "",
- "labelPercentage": 0,
- "route": [
- {
- "x": 429,
- "y": 258
- },
- {
- "x": 429,
- "y": 338
- }
- ],
- "animated": false,
- "tooltip": "",
- "icon": null,
- "zIndex": 0
- },
- {
- "id": "(callout -> stored_data)[0]",
- "src": "callout",
- "srcArrow": "none",
- "srcLabel": "",
- "dst": "stored_data",
- "dstArrow": "triangle",
- "dstLabel": "",
- "opacity": 1,
- "strokeDash": 0,
- "strokeWidth": 2,
- "stroke": "B1",
- "borderRadius": 10,
- "label": "",
- "fontSize": 16,
- "fontFamily": "DEFAULT",
- "language": "",
- "color": "N2",
- "italic": true,
- "bold": false,
- "underline": false,
- "labelWidth": 0,
- "labelHeight": 0,
- "labelPosition": "",
- "labelPercentage": 0,
- "route": [
- {
- "x": 577,
- "y": 59
- },
- {
- "x": 577,
- "y": 188
- }
- ],
- "animated": false,
- "tooltip": "",
- "icon": null,
- "zIndex": 0
- },
- {
- "id": "(stored_data -> person)[0]",
- "src": "stored_data",
- "srcArrow": "none",
- "srcLabel": "",
- "dst": "person",
- "dstArrow": "triangle",
- "dstLabel": "",
- "opacity": 1,
- "strokeDash": 0,
- "strokeWidth": 2,
- "stroke": "B1",
- "borderRadius": 10,
- "label": "",
- "fontSize": 16,
- "fontFamily": "DEFAULT",
- "language": "",
- "color": "N2",
- "italic": true,
- "bold": false,
- "underline": false,
- "labelWidth": 0,
- "labelHeight": 0,
- "labelPosition": "",
- "labelPercentage": 0,
- "route": [
- {
- "x": 576,
- "y": 254
- },
- {
- "x": 577,
- "y": 338
- }
- ],
- "animated": false,
- "tooltip": "",
- "icon": null,
- "zIndex": 0
- },
- {
- "id": "(diamond -> oval)[0]",
- "src": "diamond",
- "srcArrow": "none",
- "srcLabel": "",
- "dst": "oval",
- "dstArrow": "triangle",
- "dstLabel": "",
- "opacity": 1,
- "strokeDash": 0,
- "strokeWidth": 2,
- "stroke": "B1",
- "borderRadius": 10,
- "label": "",
- "fontSize": 16,
- "fontFamily": "DEFAULT",
- "language": "",
- "color": "N2",
- "italic": true,
- "bold": false,
- "underline": false,
- "labelWidth": 0,
- "labelHeight": 0,
- "labelPosition": "",
- "labelPercentage": 0,
- "route": [
- {
- "x": 722,
- "y": 104
- },
- {
- "x": 722,
- "y": 186
- }
- ],
- "animated": false,
- "tooltip": "",
- "icon": null,
- "zIndex": 0
- },
- {
- "id": "(oval -> circle)[0]",
- "src": "oval",
- "srcArrow": "none",
- "srcLabel": "",
- "dst": "circle",
- "dstArrow": "triangle",
- "dstLabel": "",
- "opacity": 1,
- "strokeDash": 0,
- "strokeWidth": 2,
- "stroke": "B1",
- "borderRadius": 10,
- "label": "",
- "fontSize": 16,
- "fontFamily": "DEFAULT",
- "language": "",
- "color": "N2",
- "italic": true,
- "bold": false,
- "underline": false,
- "labelWidth": 0,
- "labelHeight": 0,
- "labelPosition": "",
- "labelPercentage": 0,
- "route": [
- {
- "x": 722,
- "y": 256
- },
- {
- "x": 722,
- "y": 338
- }
- ],
- "animated": false,
- "tooltip": "",
- "icon": null,
- "zIndex": 0
- },
- {
- "id": "(hexagon -> cloud)[0]",
- "src": "hexagon",
- "srcArrow": "none",
- "srcLabel": "",
- "dst": "cloud",
- "dstArrow": "triangle",
- "dstLabel": "",
- "opacity": 1,
- "strokeDash": 0,
- "strokeWidth": 2,
- "stroke": "B1",
- "borderRadius": 10,
- "label": "",
- "fontSize": 16,
- "fontFamily": "DEFAULT",
- "language": "",
- "color": "N2",
- "italic": true,
- "bold": false,
- "underline": false,
- "labelWidth": 0,
- "labelHeight": 0,
- "labelPosition": "",
- "labelPercentage": 0,
- "route": [
- {
- "x": 884,
- "y": 104
- },
- {
- "x": 884,
- "y": 175
- }
- ],
- "animated": false,
- "tooltip": "",
- "icon": null,
- "zIndex": 0
- }
- ],
- "root": {
- "id": "",
- "type": "",
- "pos": {
- "x": 0,
- "y": 0
- },
- "width": 0,
- "height": 0,
- "opacity": 0,
- "strokeDash": 0,
- "strokeWidth": 0,
- "borderRadius": 0,
- "fill": "N7",
- "stroke": "",
- "shadow": false,
- "3d": false,
- "multiple": false,
- "double-border": false,
- "tooltip": "",
- "link": "",
- "icon": null,
- "iconPosition": "",
- "blend": false,
- "fields": null,
- "methods": null,
- "columns": null,
- "label": "",
- "fontSize": 0,
- "fontFamily": "",
- "language": "",
- "color": "",
- "italic": false,
- "bold": false,
- "underline": false,
- "labelWidth": 0,
- "labelHeight": 0,
- "zIndex": 0,
- "level": 0
- }
-}
diff --git a/e2etests/testdata/patterns/multiple/elk/sketch.exp.svg b/e2etests/testdata/patterns/multiple/elk/sketch.exp.svg
deleted file mode 100644
index 5d53e1f32..000000000
--- a/e2etests/testdata/patterns/multiple/elk/sketch.exp.svg
+++ /dev/null
@@ -1,128 +0,0 @@
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-rectanglesquarepageparallelogramdocumentcylinderqueuepackagestepcalloutstored_datapersondiamondovalcirclehexagoncloud
-
-
-
\ No newline at end of file
diff --git a/e2etests/testdata/patterns/real/elk/board.exp.json b/e2etests/testdata/patterns/real/elk/board.exp.json
deleted file mode 100644
index 6e50a1b9e..000000000
--- a/e2etests/testdata/patterns/real/elk/board.exp.json
+++ /dev/null
@@ -1,367 +0,0 @@
-{
- "name": "",
- "isFolderOnly": false,
- "fontFamily": "SourceSansPro",
- "shapes": [
- {
- "id": "NETWORK",
- "type": "rectangle",
- "pos": {
- "x": 12,
- "y": 12
- },
- "width": 363,
- "height": 513,
- "opacity": 1,
- "strokeDash": 0,
- "strokeWidth": 2,
- "borderRadius": 0,
- "fill": "#E7E9EE",
- "fillPattern": "dots",
- "stroke": "black",
- "shadow": false,
- "3d": false,
- "multiple": false,
- "double-border": true,
- "tooltip": "",
- "link": "",
- "icon": null,
- "iconPosition": "",
- "blend": false,
- "fields": null,
- "methods": null,
- "columns": null,
- "label": "NETWORK",
- "fontSize": 28,
- "fontFamily": "mono",
- "language": "",
- "color": "N1",
- "italic": false,
- "bold": false,
- "underline": false,
- "labelWidth": 116,
- "labelHeight": 36,
- "labelPosition": "INSIDE_TOP_CENTER",
- "zIndex": 0,
- "level": 1
- },
- {
- "id": "NETWORK.CELL TOWER",
- "type": "rectangle",
- "pos": {
- "x": 62,
- "y": 62
- },
- "width": 263,
- "height": 413,
- "opacity": 1,
- "strokeDash": 0,
- "strokeWidth": 2,
- "borderRadius": 0,
- "fill": "#F5F6F9",
- "fillPattern": "dots",
- "stroke": "black",
- "shadow": false,
- "3d": false,
- "multiple": false,
- "double-border": false,
- "tooltip": "",
- "link": "",
- "icon": null,
- "iconPosition": "",
- "blend": false,
- "fields": null,
- "methods": null,
- "columns": null,
- "label": "CELL TOWER",
- "fontSize": 24,
- "fontFamily": "mono",
- "language": "",
- "color": "N1",
- "italic": false,
- "bold": false,
- "underline": false,
- "labelWidth": 143,
- "labelHeight": 31,
- "labelPosition": "INSIDE_TOP_CENTER",
- "zIndex": 0,
- "level": 2
- },
- {
- "id": "NETWORK.CELL TOWER.satellites",
- "type": "stored_data",
- "pos": {
- "x": 112,
- "y": 112
- },
- "width": 161,
- "height": 66,
- "opacity": 1,
- "strokeDash": 0,
- "strokeWidth": 2,
- "borderRadius": 0,
- "fill": "white",
- "stroke": "black",
- "shadow": false,
- "3d": false,
- "multiple": true,
- "double-border": false,
- "tooltip": "",
- "link": "",
- "icon": null,
- "iconPosition": "",
- "blend": false,
- "fields": null,
- "methods": null,
- "columns": null,
- "label": "SATELLITES",
- "fontSize": 16,
- "fontFamily": "mono",
- "language": "",
- "color": "N1",
- "italic": false,
- "bold": true,
- "underline": false,
- "labelWidth": 96,
- "labelHeight": 21,
- "labelPosition": "INSIDE_MIDDLE_CENTER",
- "zIndex": 0,
- "level": 3
- },
- {
- "id": "NETWORK.CELL TOWER.transmitter",
- "type": "rectangle",
- "pos": {
- "x": 124,
- "y": 359
- },
- "width": 151,
- "height": 66,
- "opacity": 1,
- "strokeDash": 0,
- "strokeWidth": 2,
- "borderRadius": 0,
- "fill": "white",
- "stroke": "black",
- "shadow": false,
- "3d": false,
- "multiple": false,
- "double-border": false,
- "tooltip": "",
- "link": "",
- "icon": null,
- "iconPosition": "",
- "blend": false,
- "fields": null,
- "methods": null,
- "columns": null,
- "label": "TRANSMITTER",
- "fontSize": 16,
- "fontFamily": "mono",
- "language": "",
- "color": "N1",
- "italic": false,
- "bold": true,
- "underline": false,
- "labelWidth": 106,
- "labelHeight": 21,
- "labelPosition": "INSIDE_MIDDLE_CENTER",
- "zIndex": 0,
- "level": 3
- }
- ],
- "connections": [
- {
- "id": "NETWORK.CELL TOWER.(satellites -> transmitter)[0]",
- "src": "NETWORK.CELL TOWER.satellites",
- "srcArrow": "none",
- "srcLabel": "",
- "dst": "NETWORK.CELL TOWER.transmitter",
- "dstArrow": "triangle",
- "dstLabel": "",
- "opacity": 1,
- "strokeDash": 0,
- "strokeWidth": 2,
- "stroke": "black",
- "borderRadius": 10,
- "label": "SEND",
- "fontSize": 16,
- "fontFamily": "mono",
- "language": "",
- "color": "N2",
- "italic": true,
- "bold": false,
- "underline": false,
- "labelWidth": 37,
- "labelHeight": 21,
- "labelPosition": "INSIDE_MIDDLE_CENTER",
- "labelPercentage": 0,
- "route": [
- {
- "x": 152,
- "y": 178
- },
- {
- "x": 152.25,
- "y": 319
- },
- {
- "x": 162.5,
- "y": 319
- },
- {
- "x": 162.5,
- "y": 359
- }
- ],
- "animated": false,
- "tooltip": "",
- "icon": null,
- "zIndex": 0
- },
- {
- "id": "NETWORK.CELL TOWER.(satellites -> transmitter)[1]",
- "src": "NETWORK.CELL TOWER.satellites",
- "srcArrow": "none",
- "srcLabel": "",
- "dst": "NETWORK.CELL TOWER.transmitter",
- "dstArrow": "triangle",
- "dstLabel": "",
- "opacity": 1,
- "strokeDash": 0,
- "strokeWidth": 2,
- "stroke": "black",
- "borderRadius": 10,
- "label": "SEND",
- "fontSize": 16,
- "fontFamily": "mono",
- "language": "",
- "color": "N2",
- "italic": true,
- "bold": false,
- "underline": false,
- "labelWidth": 37,
- "labelHeight": 21,
- "labelPosition": "INSIDE_MIDDLE_CENTER",
- "labelPercentage": 0,
- "route": [
- {
- "x": 192,
- "y": 178
- },
- {
- "x": 192.5,
- "y": 218
- },
- {
- "x": 200.25,
- "y": 218
- },
- {
- "x": 200.25,
- "y": 359
- }
- ],
- "animated": false,
- "tooltip": "",
- "icon": null,
- "zIndex": 0
- },
- {
- "id": "NETWORK.CELL TOWER.(satellites -> transmitter)[2]",
- "src": "NETWORK.CELL TOWER.satellites",
- "srcArrow": "none",
- "srcLabel": "",
- "dst": "NETWORK.CELL TOWER.transmitter",
- "dstArrow": "triangle",
- "dstLabel": "",
- "opacity": 1,
- "strokeDash": 0,
- "strokeWidth": 2,
- "stroke": "black",
- "borderRadius": 10,
- "label": "SEND",
- "fontSize": 16,
- "fontFamily": "mono",
- "language": "",
- "color": "N2",
- "italic": true,
- "bold": false,
- "underline": false,
- "labelWidth": 37,
- "labelHeight": 21,
- "labelPosition": "INSIDE_MIDDLE_CENTER",
- "labelPercentage": 0,
- "route": [
- {
- "x": 233,
- "y": 178
- },
- {
- "x": 232.75,
- "y": 218
- },
- {
- "x": 248.25,
- "y": 218
- },
- {
- "x": 248.25,
- "y": 319
- },
- {
- "x": 238,
- "y": 319
- },
- {
- "x": 238,
- "y": 359
- }
- ],
- "animated": false,
- "tooltip": "",
- "icon": null,
- "zIndex": 0
- }
- ],
- "root": {
- "id": "",
- "type": "",
- "pos": {
- "x": 0,
- "y": 0
- },
- "width": 0,
- "height": 0,
- "opacity": 0,
- "strokeDash": 0,
- "strokeWidth": 0,
- "borderRadius": 0,
- "fill": "N7",
- "stroke": "",
- "shadow": false,
- "3d": false,
- "multiple": false,
- "double-border": false,
- "tooltip": "",
- "link": "",
- "icon": null,
- "iconPosition": "",
- "blend": false,
- "fields": null,
- "methods": null,
- "columns": null,
- "label": "",
- "fontSize": 0,
- "fontFamily": "",
- "language": "",
- "color": "",
- "italic": false,
- "bold": false,
- "underline": false,
- "labelWidth": 0,
- "labelHeight": 0,
- "zIndex": 0,
- "level": 0
- }
-}
diff --git a/e2etests/testdata/patterns/real/elk/sketch.exp.svg b/e2etests/testdata/patterns/real/elk/sketch.exp.svg
deleted file mode 100644
index 0aae66622..000000000
--- a/e2etests/testdata/patterns/real/elk/sketch.exp.svg
+++ /dev/null
@@ -1,137 +0,0 @@
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-NETWORKCELL TOWERSATELLITESTRANSMITTER SENDSENDSEND
-
-
-
-
-
\ No newline at end of file
diff --git a/e2etests/testdata/patterns/root-dots-with-fill/elk/board.exp.json b/e2etests/testdata/patterns/root-dots-with-fill/elk/board.exp.json
deleted file mode 100644
index b1b0d4a30..000000000
--- a/e2etests/testdata/patterns/root-dots-with-fill/elk/board.exp.json
+++ /dev/null
@@ -1,487 +0,0 @@
-{
- "name": "",
- "isFolderOnly": false,
- "fontFamily": "SourceSansPro",
- "shapes": [
- {
- "id": "x",
- "type": "rectangle",
- "pos": {
- "x": 62,
- "y": 12
- },
- "width": 160,
- "height": 66,
- "opacity": 1,
- "strokeDash": 0,
- "strokeWidth": 2,
- "borderRadius": 0,
- "fill": "B6",
- "stroke": "B1",
- "shadow": false,
- "3d": false,
- "multiple": false,
- "double-border": false,
- "tooltip": "",
- "link": "",
- "icon": null,
- "iconPosition": "",
- "blend": false,
- "fields": null,
- "methods": null,
- "columns": null,
- "label": "x",
- "fontSize": 16,
- "fontFamily": "DEFAULT",
- "language": "",
- "color": "N1",
- "italic": false,
- "bold": true,
- "underline": false,
- "labelWidth": 8,
- "labelHeight": 21,
- "labelPosition": "INSIDE_MIDDLE_CENTER",
- "zIndex": 0,
- "level": 1
- },
- {
- "id": "y",
- "type": "rectangle",
- "pos": {
- "x": 12,
- "y": 208
- },
- "width": 54,
- "height": 66,
- "opacity": 1,
- "strokeDash": 0,
- "strokeWidth": 2,
- "borderRadius": 0,
- "fill": "B6",
- "stroke": "B1",
- "shadow": false,
- "3d": false,
- "multiple": false,
- "double-border": false,
- "tooltip": "",
- "link": "",
- "icon": null,
- "iconPosition": "",
- "blend": false,
- "fields": null,
- "methods": null,
- "columns": null,
- "label": "y",
- "fontSize": 16,
- "fontFamily": "DEFAULT",
- "language": "",
- "color": "N1",
- "italic": false,
- "bold": true,
- "underline": false,
- "labelWidth": 9,
- "labelHeight": 21,
- "labelPosition": "INSIDE_MIDDLE_CENTER",
- "zIndex": 0,
- "level": 1
- },
- {
- "id": "z",
- "type": "rectangle",
- "pos": {
- "x": 12,
- "y": 354
- },
- "width": 80,
- "height": 66,
- "opacity": 1,
- "strokeDash": 0,
- "strokeWidth": 2,
- "borderRadius": 0,
- "fill": "B6",
- "stroke": "B1",
- "shadow": false,
- "3d": false,
- "multiple": false,
- "double-border": false,
- "tooltip": "",
- "link": "",
- "icon": null,
- "iconPosition": "",
- "blend": false,
- "fields": null,
- "methods": null,
- "columns": null,
- "label": "z",
- "fontSize": 16,
- "fontFamily": "DEFAULT",
- "language": "",
- "color": "N1",
- "italic": false,
- "bold": true,
- "underline": false,
- "labelWidth": 7,
- "labelHeight": 21,
- "labelPosition": "INSIDE_MIDDLE_CENTER",
- "zIndex": 0,
- "level": 1
- },
- {
- "id": "abcd",
- "type": "rectangle",
- "pos": {
- "x": 86,
- "y": 208
- },
- "width": 80,
- "height": 66,
- "opacity": 1,
- "strokeDash": 0,
- "strokeWidth": 2,
- "borderRadius": 0,
- "fill": "B6",
- "stroke": "B1",
- "shadow": false,
- "3d": false,
- "multiple": false,
- "double-border": false,
- "tooltip": "",
- "link": "",
- "icon": null,
- "iconPosition": "",
- "blend": false,
- "fields": null,
- "methods": null,
- "columns": null,
- "label": "abcd",
- "fontSize": 16,
- "fontFamily": "DEFAULT",
- "language": "",
- "color": "N1",
- "italic": false,
- "bold": true,
- "underline": false,
- "labelWidth": 35,
- "labelHeight": 21,
- "labelPosition": "INSIDE_MIDDLE_CENTER",
- "zIndex": 0,
- "level": 1
- },
- {
- "id": "g",
- "type": "rectangle",
- "pos": {
- "x": 186,
- "y": 208
- },
- "width": 54,
- "height": 66,
- "opacity": 1,
- "strokeDash": 0,
- "strokeWidth": 2,
- "borderRadius": 0,
- "fill": "B6",
- "stroke": "B1",
- "shadow": false,
- "3d": false,
- "multiple": false,
- "double-border": false,
- "tooltip": "",
- "link": "",
- "icon": null,
- "iconPosition": "",
- "blend": false,
- "fields": null,
- "methods": null,
- "columns": null,
- "label": "g",
- "fontSize": 16,
- "fontFamily": "DEFAULT",
- "language": "",
- "color": "N1",
- "italic": false,
- "bold": true,
- "underline": false,
- "labelWidth": 9,
- "labelHeight": 21,
- "labelPosition": "INSIDE_MIDDLE_CENTER",
- "zIndex": 0,
- "level": 1
- }
- ],
- "connections": [
- {
- "id": "(x -> y)[0]",
- "src": "x",
- "srcArrow": "none",
- "srcLabel": "",
- "dst": "y",
- "dstArrow": "triangle",
- "dstLabel": "",
- "opacity": 1,
- "strokeDash": 0,
- "strokeWidth": 2,
- "stroke": "B1",
- "borderRadius": 10,
- "label": "",
- "fontSize": 16,
- "fontFamily": "DEFAULT",
- "language": "",
- "color": "N2",
- "italic": true,
- "bold": false,
- "underline": false,
- "labelWidth": 0,
- "labelHeight": 0,
- "labelPosition": "",
- "labelPercentage": 0,
- "route": [
- {
- "x": 94,
- "y": 78
- },
- {
- "x": 94,
- "y": 118
- },
- {
- "x": 39,
- "y": 118
- },
- {
- "x": 39,
- "y": 208
- }
- ],
- "animated": false,
- "tooltip": "",
- "icon": null,
- "zIndex": 0
- },
- {
- "id": "(y -> z)[0]",
- "src": "y",
- "srcArrow": "none",
- "srcLabel": "",
- "dst": "z",
- "dstArrow": "triangle",
- "dstLabel": "",
- "opacity": 1,
- "strokeDash": 0,
- "strokeWidth": 2,
- "stroke": "B1",
- "borderRadius": 10,
- "label": "",
- "fontSize": 16,
- "fontFamily": "DEFAULT",
- "language": "",
- "color": "N2",
- "italic": true,
- "bold": false,
- "underline": false,
- "labelWidth": 0,
- "labelHeight": 0,
- "labelPosition": "",
- "labelPercentage": 0,
- "route": [
- {
- "x": 39,
- "y": 274
- },
- {
- "x": 39,
- "y": 354
- }
- ],
- "animated": false,
- "tooltip": "",
- "icon": null,
- "zIndex": 0
- },
- {
- "id": "(x -> abcd)[0]",
- "src": "x",
- "srcArrow": "none",
- "srcLabel": "",
- "dst": "abcd",
- "dstArrow": "triangle",
- "dstLabel": "",
- "opacity": 1,
- "strokeDash": 0,
- "strokeWidth": 2,
- "stroke": "B1",
- "borderRadius": 10,
- "label": "",
- "fontSize": 16,
- "fontFamily": "DEFAULT",
- "language": "",
- "color": "N2",
- "italic": true,
- "bold": false,
- "underline": false,
- "labelWidth": 0,
- "labelHeight": 0,
- "labelPosition": "",
- "labelPercentage": 0,
- "route": [
- {
- "x": 126,
- "y": 78
- },
- {
- "x": 126,
- "y": 208
- }
- ],
- "animated": false,
- "tooltip": "",
- "icon": null,
- "zIndex": 0
- },
- {
- "id": "(x -> g)[0]",
- "src": "x",
- "srcArrow": "none",
- "srcLabel": "",
- "dst": "g",
- "dstArrow": "triangle",
- "dstLabel": "",
- "opacity": 1,
- "strokeDash": 0,
- "strokeWidth": 2,
- "stroke": "B1",
- "borderRadius": 10,
- "label": "",
- "fontSize": 16,
- "fontFamily": "DEFAULT",
- "language": "",
- "color": "N2",
- "italic": true,
- "bold": false,
- "underline": false,
- "labelWidth": 0,
- "labelHeight": 0,
- "labelPosition": "",
- "labelPercentage": 0,
- "route": [
- {
- "x": 158,
- "y": 78
- },
- {
- "x": 158,
- "y": 168
- },
- {
- "x": 213,
- "y": 168
- },
- {
- "x": 213,
- "y": 208
- }
- ],
- "animated": false,
- "tooltip": "",
- "icon": null,
- "zIndex": 0
- },
- {
- "id": "(x -> z)[0]",
- "src": "x",
- "srcArrow": "none",
- "srcLabel": "",
- "dst": "z",
- "dstArrow": "triangle",
- "dstLabel": "",
- "opacity": 1,
- "strokeDash": 0,
- "strokeWidth": 2,
- "stroke": "B1",
- "borderRadius": 10,
- "label": "",
- "fontSize": 16,
- "fontFamily": "DEFAULT",
- "language": "",
- "color": "N2",
- "italic": true,
- "bold": false,
- "underline": false,
- "labelWidth": 0,
- "labelHeight": 0,
- "labelPosition": "",
- "labelPercentage": 0,
- "route": [
- {
- "x": 190,
- "y": 78
- },
- {
- "x": 190,
- "y": 118
- },
- {
- "x": 250,
- "y": 118
- },
- {
- "x": 250,
- "y": 314
- },
- {
- "x": 65.66666666666667,
- "y": 314
- },
- {
- "x": 65.66666666666667,
- "y": 354
- }
- ],
- "animated": false,
- "tooltip": "",
- "icon": null,
- "zIndex": 0
- }
- ],
- "root": {
- "id": "",
- "type": "",
- "pos": {
- "x": 0,
- "y": 0
- },
- "width": 0,
- "height": 0,
- "opacity": 0,
- "strokeDash": 0,
- "strokeWidth": 0,
- "borderRadius": 0,
- "fill": "honeydew",
- "fillPattern": "dots",
- "stroke": "",
- "shadow": false,
- "3d": false,
- "multiple": false,
- "double-border": false,
- "tooltip": "",
- "link": "",
- "icon": null,
- "iconPosition": "",
- "blend": false,
- "fields": null,
- "methods": null,
- "columns": null,
- "label": "",
- "fontSize": 0,
- "fontFamily": "",
- "language": "",
- "color": "",
- "italic": false,
- "bold": false,
- "underline": false,
- "labelWidth": 0,
- "labelHeight": 0,
- "zIndex": 0,
- "level": 0
- }
-}
diff --git a/e2etests/testdata/patterns/root-dots-with-fill/elk/sketch.exp.svg b/e2etests/testdata/patterns/root-dots-with-fill/elk/sketch.exp.svg
deleted file mode 100644
index 79315b6ba..000000000
--- a/e2etests/testdata/patterns/root-dots-with-fill/elk/sketch.exp.svg
+++ /dev/null
@@ -1,128 +0,0 @@
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-xyzabcdg
-
-
-
\ No newline at end of file
diff --git a/e2etests/testdata/patterns/root-dots/elk/board.exp.json b/e2etests/testdata/patterns/root-dots/elk/board.exp.json
deleted file mode 100644
index fbac24e80..000000000
--- a/e2etests/testdata/patterns/root-dots/elk/board.exp.json
+++ /dev/null
@@ -1,487 +0,0 @@
-{
- "name": "",
- "isFolderOnly": false,
- "fontFamily": "SourceSansPro",
- "shapes": [
- {
- "id": "x",
- "type": "rectangle",
- "pos": {
- "x": 62,
- "y": 12
- },
- "width": 160,
- "height": 66,
- "opacity": 1,
- "strokeDash": 0,
- "strokeWidth": 2,
- "borderRadius": 0,
- "fill": "B6",
- "stroke": "B1",
- "shadow": false,
- "3d": false,
- "multiple": false,
- "double-border": false,
- "tooltip": "",
- "link": "",
- "icon": null,
- "iconPosition": "",
- "blend": false,
- "fields": null,
- "methods": null,
- "columns": null,
- "label": "x",
- "fontSize": 16,
- "fontFamily": "DEFAULT",
- "language": "",
- "color": "N1",
- "italic": false,
- "bold": true,
- "underline": false,
- "labelWidth": 8,
- "labelHeight": 21,
- "labelPosition": "INSIDE_MIDDLE_CENTER",
- "zIndex": 0,
- "level": 1
- },
- {
- "id": "y",
- "type": "rectangle",
- "pos": {
- "x": 12,
- "y": 208
- },
- "width": 54,
- "height": 66,
- "opacity": 1,
- "strokeDash": 0,
- "strokeWidth": 2,
- "borderRadius": 0,
- "fill": "B6",
- "stroke": "B1",
- "shadow": false,
- "3d": false,
- "multiple": false,
- "double-border": false,
- "tooltip": "",
- "link": "",
- "icon": null,
- "iconPosition": "",
- "blend": false,
- "fields": null,
- "methods": null,
- "columns": null,
- "label": "y",
- "fontSize": 16,
- "fontFamily": "DEFAULT",
- "language": "",
- "color": "N1",
- "italic": false,
- "bold": true,
- "underline": false,
- "labelWidth": 9,
- "labelHeight": 21,
- "labelPosition": "INSIDE_MIDDLE_CENTER",
- "zIndex": 0,
- "level": 1
- },
- {
- "id": "z",
- "type": "rectangle",
- "pos": {
- "x": 12,
- "y": 354
- },
- "width": 80,
- "height": 66,
- "opacity": 1,
- "strokeDash": 0,
- "strokeWidth": 2,
- "borderRadius": 0,
- "fill": "B6",
- "stroke": "B1",
- "shadow": false,
- "3d": false,
- "multiple": false,
- "double-border": false,
- "tooltip": "",
- "link": "",
- "icon": null,
- "iconPosition": "",
- "blend": false,
- "fields": null,
- "methods": null,
- "columns": null,
- "label": "z",
- "fontSize": 16,
- "fontFamily": "DEFAULT",
- "language": "",
- "color": "N1",
- "italic": false,
- "bold": true,
- "underline": false,
- "labelWidth": 7,
- "labelHeight": 21,
- "labelPosition": "INSIDE_MIDDLE_CENTER",
- "zIndex": 0,
- "level": 1
- },
- {
- "id": "abcd",
- "type": "rectangle",
- "pos": {
- "x": 86,
- "y": 208
- },
- "width": 80,
- "height": 66,
- "opacity": 1,
- "strokeDash": 0,
- "strokeWidth": 2,
- "borderRadius": 0,
- "fill": "B6",
- "stroke": "B1",
- "shadow": false,
- "3d": false,
- "multiple": false,
- "double-border": false,
- "tooltip": "",
- "link": "",
- "icon": null,
- "iconPosition": "",
- "blend": false,
- "fields": null,
- "methods": null,
- "columns": null,
- "label": "abcd",
- "fontSize": 16,
- "fontFamily": "DEFAULT",
- "language": "",
- "color": "N1",
- "italic": false,
- "bold": true,
- "underline": false,
- "labelWidth": 35,
- "labelHeight": 21,
- "labelPosition": "INSIDE_MIDDLE_CENTER",
- "zIndex": 0,
- "level": 1
- },
- {
- "id": "g",
- "type": "rectangle",
- "pos": {
- "x": 186,
- "y": 208
- },
- "width": 54,
- "height": 66,
- "opacity": 1,
- "strokeDash": 0,
- "strokeWidth": 2,
- "borderRadius": 0,
- "fill": "B6",
- "stroke": "B1",
- "shadow": false,
- "3d": false,
- "multiple": false,
- "double-border": false,
- "tooltip": "",
- "link": "",
- "icon": null,
- "iconPosition": "",
- "blend": false,
- "fields": null,
- "methods": null,
- "columns": null,
- "label": "g",
- "fontSize": 16,
- "fontFamily": "DEFAULT",
- "language": "",
- "color": "N1",
- "italic": false,
- "bold": true,
- "underline": false,
- "labelWidth": 9,
- "labelHeight": 21,
- "labelPosition": "INSIDE_MIDDLE_CENTER",
- "zIndex": 0,
- "level": 1
- }
- ],
- "connections": [
- {
- "id": "(x -> y)[0]",
- "src": "x",
- "srcArrow": "none",
- "srcLabel": "",
- "dst": "y",
- "dstArrow": "triangle",
- "dstLabel": "",
- "opacity": 1,
- "strokeDash": 0,
- "strokeWidth": 2,
- "stroke": "B1",
- "borderRadius": 10,
- "label": "",
- "fontSize": 16,
- "fontFamily": "DEFAULT",
- "language": "",
- "color": "N2",
- "italic": true,
- "bold": false,
- "underline": false,
- "labelWidth": 0,
- "labelHeight": 0,
- "labelPosition": "",
- "labelPercentage": 0,
- "route": [
- {
- "x": 94,
- "y": 78
- },
- {
- "x": 94,
- "y": 118
- },
- {
- "x": 39,
- "y": 118
- },
- {
- "x": 39,
- "y": 208
- }
- ],
- "animated": false,
- "tooltip": "",
- "icon": null,
- "zIndex": 0
- },
- {
- "id": "(y -> z)[0]",
- "src": "y",
- "srcArrow": "none",
- "srcLabel": "",
- "dst": "z",
- "dstArrow": "triangle",
- "dstLabel": "",
- "opacity": 1,
- "strokeDash": 0,
- "strokeWidth": 2,
- "stroke": "B1",
- "borderRadius": 10,
- "label": "",
- "fontSize": 16,
- "fontFamily": "DEFAULT",
- "language": "",
- "color": "N2",
- "italic": true,
- "bold": false,
- "underline": false,
- "labelWidth": 0,
- "labelHeight": 0,
- "labelPosition": "",
- "labelPercentage": 0,
- "route": [
- {
- "x": 39,
- "y": 274
- },
- {
- "x": 39,
- "y": 354
- }
- ],
- "animated": false,
- "tooltip": "",
- "icon": null,
- "zIndex": 0
- },
- {
- "id": "(x -> abcd)[0]",
- "src": "x",
- "srcArrow": "none",
- "srcLabel": "",
- "dst": "abcd",
- "dstArrow": "triangle",
- "dstLabel": "",
- "opacity": 1,
- "strokeDash": 0,
- "strokeWidth": 2,
- "stroke": "B1",
- "borderRadius": 10,
- "label": "",
- "fontSize": 16,
- "fontFamily": "DEFAULT",
- "language": "",
- "color": "N2",
- "italic": true,
- "bold": false,
- "underline": false,
- "labelWidth": 0,
- "labelHeight": 0,
- "labelPosition": "",
- "labelPercentage": 0,
- "route": [
- {
- "x": 126,
- "y": 78
- },
- {
- "x": 126,
- "y": 208
- }
- ],
- "animated": false,
- "tooltip": "",
- "icon": null,
- "zIndex": 0
- },
- {
- "id": "(x -> g)[0]",
- "src": "x",
- "srcArrow": "none",
- "srcLabel": "",
- "dst": "g",
- "dstArrow": "triangle",
- "dstLabel": "",
- "opacity": 1,
- "strokeDash": 0,
- "strokeWidth": 2,
- "stroke": "B1",
- "borderRadius": 10,
- "label": "",
- "fontSize": 16,
- "fontFamily": "DEFAULT",
- "language": "",
- "color": "N2",
- "italic": true,
- "bold": false,
- "underline": false,
- "labelWidth": 0,
- "labelHeight": 0,
- "labelPosition": "",
- "labelPercentage": 0,
- "route": [
- {
- "x": 158,
- "y": 78
- },
- {
- "x": 158,
- "y": 168
- },
- {
- "x": 213,
- "y": 168
- },
- {
- "x": 213,
- "y": 208
- }
- ],
- "animated": false,
- "tooltip": "",
- "icon": null,
- "zIndex": 0
- },
- {
- "id": "(x -> z)[0]",
- "src": "x",
- "srcArrow": "none",
- "srcLabel": "",
- "dst": "z",
- "dstArrow": "triangle",
- "dstLabel": "",
- "opacity": 1,
- "strokeDash": 0,
- "strokeWidth": 2,
- "stroke": "B1",
- "borderRadius": 10,
- "label": "",
- "fontSize": 16,
- "fontFamily": "DEFAULT",
- "language": "",
- "color": "N2",
- "italic": true,
- "bold": false,
- "underline": false,
- "labelWidth": 0,
- "labelHeight": 0,
- "labelPosition": "",
- "labelPercentage": 0,
- "route": [
- {
- "x": 190,
- "y": 78
- },
- {
- "x": 190,
- "y": 118
- },
- {
- "x": 250,
- "y": 118
- },
- {
- "x": 250,
- "y": 314
- },
- {
- "x": 65.66666666666667,
- "y": 314
- },
- {
- "x": 65.66666666666667,
- "y": 354
- }
- ],
- "animated": false,
- "tooltip": "",
- "icon": null,
- "zIndex": 0
- }
- ],
- "root": {
- "id": "",
- "type": "",
- "pos": {
- "x": 0,
- "y": 0
- },
- "width": 0,
- "height": 0,
- "opacity": 0,
- "strokeDash": 0,
- "strokeWidth": 0,
- "borderRadius": 0,
- "fill": "N7",
- "fillPattern": "dots",
- "stroke": "",
- "shadow": false,
- "3d": false,
- "multiple": false,
- "double-border": false,
- "tooltip": "",
- "link": "",
- "icon": null,
- "iconPosition": "",
- "blend": false,
- "fields": null,
- "methods": null,
- "columns": null,
- "label": "",
- "fontSize": 0,
- "fontFamily": "",
- "language": "",
- "color": "",
- "italic": false,
- "bold": false,
- "underline": false,
- "labelWidth": 0,
- "labelHeight": 0,
- "zIndex": 0,
- "level": 0
- }
-}
diff --git a/e2etests/testdata/patterns/root-dots/elk/sketch.exp.svg b/e2etests/testdata/patterns/root-dots/elk/sketch.exp.svg
deleted file mode 100644
index 99b1d2951..000000000
--- a/e2etests/testdata/patterns/root-dots/elk/sketch.exp.svg
+++ /dev/null
@@ -1,128 +0,0 @@
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-xyzabcdg
-
-
-
\ No newline at end of file
diff --git a/e2etests/testdata/patterns/shape/elk/board.exp.json b/e2etests/testdata/patterns/shape/elk/board.exp.json
deleted file mode 100644
index 56590b910..000000000
--- a/e2etests/testdata/patterns/shape/elk/board.exp.json
+++ /dev/null
@@ -1,488 +0,0 @@
-{
- "name": "",
- "isFolderOnly": false,
- "fontFamily": "SourceSansPro",
- "shapes": [
- {
- "id": "x",
- "type": "rectangle",
- "pos": {
- "x": 62,
- "y": 12
- },
- "width": 160,
- "height": 66,
- "opacity": 1,
- "strokeDash": 0,
- "strokeWidth": 2,
- "borderRadius": 0,
- "fill": "B6",
- "fillPattern": "dots",
- "stroke": "B1",
- "shadow": false,
- "3d": false,
- "multiple": false,
- "double-border": false,
- "tooltip": "",
- "link": "",
- "icon": null,
- "iconPosition": "",
- "blend": false,
- "fields": null,
- "methods": null,
- "columns": null,
- "label": "x",
- "fontSize": 16,
- "fontFamily": "DEFAULT",
- "language": "",
- "color": "N1",
- "italic": false,
- "bold": true,
- "underline": false,
- "labelWidth": 8,
- "labelHeight": 21,
- "labelPosition": "INSIDE_MIDDLE_CENTER",
- "zIndex": 0,
- "level": 1
- },
- {
- "id": "y",
- "type": "rectangle",
- "pos": {
- "x": 12,
- "y": 208
- },
- "width": 54,
- "height": 66,
- "opacity": 1,
- "strokeDash": 0,
- "strokeWidth": 2,
- "borderRadius": 0,
- "fill": "B6",
- "stroke": "B1",
- "shadow": false,
- "3d": false,
- "multiple": false,
- "double-border": false,
- "tooltip": "",
- "link": "",
- "icon": null,
- "iconPosition": "",
- "blend": false,
- "fields": null,
- "methods": null,
- "columns": null,
- "label": "y",
- "fontSize": 16,
- "fontFamily": "DEFAULT",
- "language": "",
- "color": "N1",
- "italic": false,
- "bold": true,
- "underline": false,
- "labelWidth": 9,
- "labelHeight": 21,
- "labelPosition": "INSIDE_MIDDLE_CENTER",
- "zIndex": 0,
- "level": 1
- },
- {
- "id": "z",
- "type": "rectangle",
- "pos": {
- "x": 12,
- "y": 354
- },
- "width": 80,
- "height": 66,
- "opacity": 1,
- "strokeDash": 0,
- "strokeWidth": 2,
- "borderRadius": 0,
- "fill": "B6",
- "stroke": "B1",
- "shadow": false,
- "3d": false,
- "multiple": false,
- "double-border": false,
- "tooltip": "",
- "link": "",
- "icon": null,
- "iconPosition": "",
- "blend": false,
- "fields": null,
- "methods": null,
- "columns": null,
- "label": "z",
- "fontSize": 16,
- "fontFamily": "DEFAULT",
- "language": "",
- "color": "N1",
- "italic": false,
- "bold": true,
- "underline": false,
- "labelWidth": 7,
- "labelHeight": 21,
- "labelPosition": "INSIDE_MIDDLE_CENTER",
- "zIndex": 0,
- "level": 1
- },
- {
- "id": "abcd",
- "type": "rectangle",
- "pos": {
- "x": 86,
- "y": 208
- },
- "width": 80,
- "height": 66,
- "opacity": 1,
- "strokeDash": 0,
- "strokeWidth": 2,
- "borderRadius": 0,
- "fill": "B6",
- "fillPattern": "dots",
- "stroke": "B1",
- "shadow": false,
- "3d": false,
- "multiple": false,
- "double-border": false,
- "tooltip": "",
- "link": "",
- "icon": null,
- "iconPosition": "",
- "blend": false,
- "fields": null,
- "methods": null,
- "columns": null,
- "label": "abcd",
- "fontSize": 16,
- "fontFamily": "DEFAULT",
- "language": "",
- "color": "N1",
- "italic": false,
- "bold": true,
- "underline": false,
- "labelWidth": 35,
- "labelHeight": 21,
- "labelPosition": "INSIDE_MIDDLE_CENTER",
- "zIndex": 0,
- "level": 1
- },
- {
- "id": "g",
- "type": "rectangle",
- "pos": {
- "x": 186,
- "y": 208
- },
- "width": 54,
- "height": 66,
- "opacity": 1,
- "strokeDash": 0,
- "strokeWidth": 2,
- "borderRadius": 0,
- "fill": "B6",
- "stroke": "B1",
- "shadow": false,
- "3d": false,
- "multiple": false,
- "double-border": false,
- "tooltip": "",
- "link": "",
- "icon": null,
- "iconPosition": "",
- "blend": false,
- "fields": null,
- "methods": null,
- "columns": null,
- "label": "g",
- "fontSize": 16,
- "fontFamily": "DEFAULT",
- "language": "",
- "color": "N1",
- "italic": false,
- "bold": true,
- "underline": false,
- "labelWidth": 9,
- "labelHeight": 21,
- "labelPosition": "INSIDE_MIDDLE_CENTER",
- "zIndex": 0,
- "level": 1
- }
- ],
- "connections": [
- {
- "id": "(x -> y)[0]",
- "src": "x",
- "srcArrow": "none",
- "srcLabel": "",
- "dst": "y",
- "dstArrow": "triangle",
- "dstLabel": "",
- "opacity": 1,
- "strokeDash": 0,
- "strokeWidth": 2,
- "stroke": "B1",
- "borderRadius": 10,
- "label": "",
- "fontSize": 16,
- "fontFamily": "DEFAULT",
- "language": "",
- "color": "N2",
- "italic": true,
- "bold": false,
- "underline": false,
- "labelWidth": 0,
- "labelHeight": 0,
- "labelPosition": "",
- "labelPercentage": 0,
- "route": [
- {
- "x": 94,
- "y": 78
- },
- {
- "x": 94,
- "y": 118
- },
- {
- "x": 39,
- "y": 118
- },
- {
- "x": 39,
- "y": 208
- }
- ],
- "animated": false,
- "tooltip": "",
- "icon": null,
- "zIndex": 0
- },
- {
- "id": "(y -> z)[0]",
- "src": "y",
- "srcArrow": "none",
- "srcLabel": "",
- "dst": "z",
- "dstArrow": "triangle",
- "dstLabel": "",
- "opacity": 1,
- "strokeDash": 0,
- "strokeWidth": 2,
- "stroke": "B1",
- "borderRadius": 10,
- "label": "",
- "fontSize": 16,
- "fontFamily": "DEFAULT",
- "language": "",
- "color": "N2",
- "italic": true,
- "bold": false,
- "underline": false,
- "labelWidth": 0,
- "labelHeight": 0,
- "labelPosition": "",
- "labelPercentage": 0,
- "route": [
- {
- "x": 39,
- "y": 274
- },
- {
- "x": 39,
- "y": 354
- }
- ],
- "animated": false,
- "tooltip": "",
- "icon": null,
- "zIndex": 0
- },
- {
- "id": "(x -> abcd)[0]",
- "src": "x",
- "srcArrow": "none",
- "srcLabel": "",
- "dst": "abcd",
- "dstArrow": "triangle",
- "dstLabel": "",
- "opacity": 1,
- "strokeDash": 0,
- "strokeWidth": 2,
- "stroke": "B1",
- "borderRadius": 10,
- "label": "",
- "fontSize": 16,
- "fontFamily": "DEFAULT",
- "language": "",
- "color": "N2",
- "italic": true,
- "bold": false,
- "underline": false,
- "labelWidth": 0,
- "labelHeight": 0,
- "labelPosition": "",
- "labelPercentage": 0,
- "route": [
- {
- "x": 126,
- "y": 78
- },
- {
- "x": 126,
- "y": 208
- }
- ],
- "animated": false,
- "tooltip": "",
- "icon": null,
- "zIndex": 0
- },
- {
- "id": "(x -> g)[0]",
- "src": "x",
- "srcArrow": "none",
- "srcLabel": "",
- "dst": "g",
- "dstArrow": "triangle",
- "dstLabel": "",
- "opacity": 1,
- "strokeDash": 0,
- "strokeWidth": 2,
- "stroke": "B1",
- "borderRadius": 10,
- "label": "",
- "fontSize": 16,
- "fontFamily": "DEFAULT",
- "language": "",
- "color": "N2",
- "italic": true,
- "bold": false,
- "underline": false,
- "labelWidth": 0,
- "labelHeight": 0,
- "labelPosition": "",
- "labelPercentage": 0,
- "route": [
- {
- "x": 158,
- "y": 78
- },
- {
- "x": 158,
- "y": 168
- },
- {
- "x": 213,
- "y": 168
- },
- {
- "x": 213,
- "y": 208
- }
- ],
- "animated": false,
- "tooltip": "",
- "icon": null,
- "zIndex": 0
- },
- {
- "id": "(x -> z)[0]",
- "src": "x",
- "srcArrow": "none",
- "srcLabel": "",
- "dst": "z",
- "dstArrow": "triangle",
- "dstLabel": "",
- "opacity": 1,
- "strokeDash": 0,
- "strokeWidth": 2,
- "stroke": "B1",
- "borderRadius": 10,
- "label": "",
- "fontSize": 16,
- "fontFamily": "DEFAULT",
- "language": "",
- "color": "N2",
- "italic": true,
- "bold": false,
- "underline": false,
- "labelWidth": 0,
- "labelHeight": 0,
- "labelPosition": "",
- "labelPercentage": 0,
- "route": [
- {
- "x": 190,
- "y": 78
- },
- {
- "x": 190,
- "y": 118
- },
- {
- "x": 250,
- "y": 118
- },
- {
- "x": 250,
- "y": 314
- },
- {
- "x": 65.66666666666667,
- "y": 314
- },
- {
- "x": 65.66666666666667,
- "y": 354
- }
- ],
- "animated": false,
- "tooltip": "",
- "icon": null,
- "zIndex": 0
- }
- ],
- "root": {
- "id": "",
- "type": "",
- "pos": {
- "x": 0,
- "y": 0
- },
- "width": 0,
- "height": 0,
- "opacity": 0,
- "strokeDash": 0,
- "strokeWidth": 0,
- "borderRadius": 0,
- "fill": "N7",
- "stroke": "",
- "shadow": false,
- "3d": false,
- "multiple": false,
- "double-border": false,
- "tooltip": "",
- "link": "",
- "icon": null,
- "iconPosition": "",
- "blend": false,
- "fields": null,
- "methods": null,
- "columns": null,
- "label": "",
- "fontSize": 0,
- "fontFamily": "",
- "language": "",
- "color": "",
- "italic": false,
- "bold": false,
- "underline": false,
- "labelWidth": 0,
- "labelHeight": 0,
- "zIndex": 0,
- "level": 0
- }
-}
diff --git a/e2etests/testdata/patterns/shape/elk/sketch.exp.svg b/e2etests/testdata/patterns/shape/elk/sketch.exp.svg
deleted file mode 100644
index 0373e6e05..000000000
--- a/e2etests/testdata/patterns/shape/elk/sketch.exp.svg
+++ /dev/null
@@ -1,128 +0,0 @@
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-xyzabcdg
-
-
-
\ No newline at end of file