@figtreejs/core 0.0.1-alpha.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (111) hide show
  1. package/CHANGELOG.md +9 -0
  2. package/eslint.config.js +9 -0
  3. package/package.json +76 -0
  4. package/src/@custom-types/normalize-svg-path.d.ts +13 -0
  5. package/src/@custom-types/parse-svg-path.d.ts +8 -0
  6. package/src/@custom-types/svg-path-types.d.ts +37 -0
  7. package/src/bauble-makers/makers.ts +112 -0
  8. package/src/bauble-makers/set-up-baubles.ts +197 -0
  9. package/src/bauble-makers/utils.ts +61 -0
  10. package/src/components/baubles/bauble.tsx +61 -0
  11. package/src/components/baubles/branches.tsx +13 -0
  12. package/src/components/baubles/clades/cartoon.tsx +68 -0
  13. package/src/components/baubles/clades/highlight.tsx +96 -0
  14. package/src/components/baubles/clades/index.ts +1 -0
  15. package/src/components/baubles/clades.tsx +45 -0
  16. package/src/components/baubles/helpers.tsx +62 -0
  17. package/src/components/baubles/index.ts +16 -0
  18. package/src/components/baubles/labels.tsx +38 -0
  19. package/src/components/baubles/nodes.tsx +51 -0
  20. package/src/components/baubles/shapes/branch.tsx +53 -0
  21. package/src/components/baubles/shapes/circle.tsx +64 -0
  22. package/src/components/baubles/shapes/index.ts +9 -0
  23. package/src/components/baubles/shapes/label.tsx +104 -0
  24. package/src/components/baubles/shapes/rectangle.tsx +83 -0
  25. package/src/components/baubles/types.ts +99 -0
  26. package/src/components/decorations/axis/axis-types.ts +123 -0
  27. package/src/components/decorations/axis/axis.tsx +21 -0
  28. package/src/components/decorations/axis/index.ts +2 -0
  29. package/src/components/decorations/axis/polar-axis-bars.tsx +102 -0
  30. package/src/components/decorations/axis/polar-axis.tsx +175 -0
  31. package/src/components/decorations/axis/rectangular-axis-bars.tsx +53 -0
  32. package/src/components/decorations/axis/rectangular-axis.tsx +151 -0
  33. package/src/components/decorations/index.ts +2 -0
  34. package/src/components/decorations/legend/discrete-legend.tsx +93 -0
  35. package/src/components/decorations/legend/index.ts +1 -0
  36. package/src/components/decorations/legend/legend.tsx +1 -0
  37. package/src/components/figtree/figtree-types.ts +69 -0
  38. package/src/components/figtree/figtree.tsx +136 -0
  39. package/src/components/figtree/index.ts +3 -0
  40. package/src/components/hoc/index.ts +7 -0
  41. package/src/components/hoc/with-branch.tsx +148 -0
  42. package/src/components/hoc/with-branches.tsx +54 -0
  43. package/src/components/hoc/with-clades.tsx +47 -0
  44. package/src/components/hoc/with-node.tsx +183 -0
  45. package/src/components/hoc/with-nodes.tsx +45 -0
  46. package/src/components/index.ts +4 -0
  47. package/src/context/aminated-context.ts +3 -0
  48. package/src/context/dimension-context.ts +22 -0
  49. package/src/context/layout-context.ts +20 -0
  50. package/src/context/scale-context.ts +12 -0
  51. package/src/evo/index.ts +1 -0
  52. package/src/evo/tree/index.ts +5 -0
  53. package/src/evo/tree/mcc-tree.ts +0 -0
  54. package/src/evo/tree/normalized-tree/immutable-tree-helpers.ts +136 -0
  55. package/src/evo/tree/normalized-tree/immutable-tree.test.ts +158 -0
  56. package/src/evo/tree/normalized-tree/immutable-tree.ts +1365 -0
  57. package/src/evo/tree/normalized-tree/index.ts +3 -0
  58. package/src/evo/tree/parsers/annotation-parser.ts +276 -0
  59. package/src/evo/tree/parsers/index.ts +3 -0
  60. package/src/evo/tree/parsers/newick-character-parser.ts +246 -0
  61. package/src/evo/tree/parsers/newick-parsing.ts +22 -0
  62. package/src/evo/tree/parsers/nexus-parser.ts +12 -0
  63. package/src/evo/tree/parsers/nexus-parsing.ts +68 -0
  64. package/src/evo/tree/parsers/parsing.test.ts +289 -0
  65. package/src/evo/tree/parsers/stream-reader/index.ts +1 -0
  66. package/src/evo/tree/parsers/stream-reader/newick-importer.txt +395 -0
  67. package/src/evo/tree/parsers/stream-reader/nexus-importer.test.ts +99 -0
  68. package/src/evo/tree/parsers/stream-reader/nexus-importer.ts +293 -0
  69. package/src/evo/tree/parsers/stream-reader/nexus-tokenizer.ts +77 -0
  70. package/src/evo/tree/parsers/stream-reader/nexus-transform-stream.txt +109 -0
  71. package/src/evo/tree/taxa/helper-functions.ts +46 -0
  72. package/src/evo/tree/taxa/index.ts +1 -0
  73. package/src/evo/tree/taxa/taxon.ts +116 -0
  74. package/src/evo/tree/traversals/index.ts +1 -0
  75. package/src/evo/tree/traversals/preorder-traversal.ts +89 -0
  76. package/src/evo/tree/traversals/traversal-types.ts +6 -0
  77. package/src/evo/tree/tree-types.ts +197 -0
  78. package/src/evo/tree/utilities.ts +44 -0
  79. package/src/index.ts +6 -0
  80. package/src/layouts/functional/index.ts +2 -0
  81. package/src/layouts/functional/radial-layout.ts +150 -0
  82. package/src/layouts/functional/rectangular-layout.ts +71 -0
  83. package/src/layouts/index.ts +3 -0
  84. package/src/layouts/layout-interface.ts +90 -0
  85. package/src/layouts/types.ts +32 -0
  86. package/src/path.helpers.ts +81 -0
  87. package/src/store/polar-scale.ts +145 -0
  88. package/src/store/store.ts +144 -0
  89. package/src/tests/baubles/__snapshots__/branch-labels.test.tsx.snap +901 -0
  90. package/src/tests/baubles/__snapshots__/node-labels.test.tsx.snap +1516 -0
  91. package/src/tests/baubles/branch-labels.test.tsx +103 -0
  92. package/src/tests/baubles/label.svg +131 -0
  93. package/src/tests/baubles/node-labels.test.tsx +126 -0
  94. package/src/tests/clades/__snapshots__/cartoon.test.tsx.snap +327 -0
  95. package/src/tests/clades/__snapshots__/highlight.test.tsx.snap +337 -0
  96. package/src/tests/clades/cartoon.test.tsx +65 -0
  97. package/src/tests/clades/highlight.test.tsx +66 -0
  98. package/src/tests/figtree/__snapshots__/figtree.test.tsx.snap +761 -0
  99. package/src/tests/figtree/figtree.test.tsx +123 -0
  100. package/src/tests/figtree/simple.svg +47 -0
  101. package/src/tests/layouts/radiallayout.test.ts +23 -0
  102. package/src/tests/layouts/rectangularlayout.test.ts +65 -0
  103. package/src/tests/shapes/branch.test.tsx +40 -0
  104. package/src/tests/shapes/circle.test.tsx +47 -0
  105. package/src/tests/shapes/label.test.tsx +101 -0
  106. package/src/tests/shapes/rectangle.test.tsx +67 -0
  107. package/src/tests/shapes/types.ts +1 -0
  108. package/src/utils.ts +57 -0
  109. package/tsconfig.json +12 -0
  110. package/vite.config.ts +34 -0
  111. package/vitetest.config.ts +11 -0
@@ -0,0 +1,1516 @@
1
+ // Vitest Snapshot v1, https://vitest.dev/guide/snapshot.html
2
+
3
+ exports[`Node labels > renders a tree node labels - polar 1`] = `
4
+ {
5
+ "asFragment": [Function],
6
+ "baseElement": <body>
7
+ <div>
8
+ <svg
9
+ data-testid="figure"
10
+ height="400px"
11
+ width="400px"
12
+ xmlns="http://www.w3.org/2000/svg"
13
+ >
14
+ <g>
15
+ <g
16
+ transform="translate(10,10)"
17
+ >
18
+ <g
19
+ class="branch-layer"
20
+ >
21
+ <path
22
+ d="M 191.0442564366689 190 C191.0442564366689,190 186.399298787742,253.16276972672102 184.07681996327852,284.7441545900815 C184.07681996327852,284.7441545900815 182.9155805510468,300.5348470217618 182.33496084493095,308.4301932376019 C182.33496084493095,308.4301932376019 182.04465099187303,312.37786634552197 181.89949606534407,314.351702899482 C181.89949606534407,314.351702899482 181.82691860207956,315.338621176462 181.79062987044733,315.832080314952 C181.79062987044733,315.832080314952 181.77248550463122,316.078809884197 181.76341332172314,316.20217466881957 C181.76341332172314,316.20217466881957 181.75434113881508,316.32553945344205 181.75434113881508,316.32553945344205 "
23
+ fill="none"
24
+ stroke="black"
25
+ stroke-width="2"
26
+ />
27
+ <path
28
+ d="M 181.75434113881508 316.32553945344205 C247.8501082366655,321.1861882228226 306.51906010557065,274.27508823362695 316.31858118777706,208.729335348547 C316.31858118777706,208.729335348547 347.6371623755541,213.41166918568376 363.2964529694426,215.75283610425214 C363.2964529694426,215.75283610425214 371.12609826638686,216.92341956353633 375.040920914859,217.5087112931784 C375.040920914859,217.5087112931784 376.998332239095,217.80135715799946 377.97703790121307,217.94768009041 C377.97703790121307,217.94768009041 378.4663907322721,218.02084155661527 378.7110671478016,218.0574222897179 C378.7110671478016,218.0574222897179 378.9557435633311,218.09400302282052 378.9557435633311,218.09400302282052 "
29
+ fill="none"
30
+ stroke="black"
31
+ stroke-width="2"
32
+ />
33
+ <path
34
+ d="M 181.75434113881508 316.32553945344205 C115.65857404096461,311.4648906840615 64.4833022968594,256.4759029000588 64.37775041784722,190.20173603608833 C64.37775041784722,190.20173603608833 32.7111239131418,190.2521700451104 16.877810660789084,190.27738704962144 C16.877810660789084,190.27738704962144 8.961154034612727,190.28999555187698 5.002825721524549,190.29629980300473 C5.002825721524549,190.29629980300473 3.02366156498046,190.2994519285686 2.034079486708415,190.30102799135057 C2.034079486708415,190.30102799135057 1.539288447572393,190.30181602274155 1.2918929280043818,190.302210038437 C1.2918929280043818,190.302210038437 1.0444974084363707,190.3026040541325 1.0444974084363707,190.3026040541325 "
35
+ fill="none"
36
+ stroke="black"
37
+ stroke-width="2"
38
+ />
39
+ <path
40
+ d="M 191.0442564366689 190 C191.0442564366689,190 222.3477640962031,185.21793078393245 237.9995179259702,182.82689617589867 C237.9995179259702,182.82689617589867 245.82539484085373,181.6313788718818 249.73833329829552,181.03362021987334 C249.73833329829552,181.03362021987334 251.6948025270164,180.73474089386912 252.67303714137685,180.585301230867 C252.67303714137685,180.585301230867 253.1621544485571,180.51058139936595 253.4067131021472,180.47322148361542 C253.4067131021472,180.47322148361542 253.52899242894225,180.45454152574015 253.5901320923398,180.44520154680254 C253.5901320923398,180.44520154680254 253.6512717557373,180.4358615678649 253.6512717557373,180.4358615678649 "
41
+ fill="none"
42
+ stroke="black"
43
+ stroke-width="2"
44
+ />
45
+ </g>
46
+ <g
47
+ class="node-layer"
48
+ >
49
+ <g>
50
+ <text
51
+ alignment-baseline="middle"
52
+ text-anchor="end"
53
+ transform="translate(186.63904337251307,185.9264146186202) rotate(42.76015593933792)"
54
+ >
55
+ Label!
56
+ </text>
57
+ <path
58
+ d="M191.0442564366689 190L191.0442564366689 190"
59
+ stroke="grey"
60
+ stroke-dasharray="2"
61
+ stroke-width="1"
62
+ />
63
+ </g>
64
+ <g>
65
+ <text
66
+ alignment-baseline="middle"
67
+ text-anchor="end"
68
+ transform="translate(181.31429251944306,322.30938079597354) rotate(-85.79406886544032)"
69
+ >
70
+ Label!
71
+ </text>
72
+ <path
73
+ d="M181.75434113881508 316.32553945344205L181.75434113881508 316.32553945344205"
74
+ stroke="grey"
75
+ stroke-dasharray="2"
76
+ stroke-width="1"
77
+ />
78
+ </g>
79
+ <g>
80
+ <text
81
+ alignment-baseline="middle"
82
+ text-anchor=" start"
83
+ transform="translate(384.8897905252257,218.98118206564644) rotate(8.503114598040845)"
84
+ >
85
+ Label!
86
+ </text>
87
+ <path
88
+ d="M378.9557435633311 218.09400302282052L378.9557435633311 218.09400302282052"
89
+ stroke="grey"
90
+ stroke-dasharray="2"
91
+ stroke-width="1"
92
+ />
93
+ </g>
94
+ <g>
95
+ <text
96
+ alignment-baseline="middle"
97
+ text-anchor="end"
98
+ transform="translate(-4.955494981928866,190.31215997163142) rotate(-0.0912523289214846)"
99
+ >
100
+ Label!
101
+ </text>
102
+ <path
103
+ d="M1.0444974084363707 190.3026040541325L1.0444974084363707 190.3026040541325"
104
+ stroke="grey"
105
+ stroke-dasharray="2"
106
+ stroke-width="1"
107
+ />
108
+ </g>
109
+ <g>
110
+ <text
111
+ alignment-baseline="middle"
112
+ text-anchor=" start"
113
+ transform="translate(259.58246268070167,179.5297852953468) rotate(351.31438074411614)"
114
+ >
115
+ Label!
116
+ </text>
117
+ <path
118
+ d="M253.6512717557373 180.4358615678649L253.6512717557373 180.4358615678649"
119
+ stroke="grey"
120
+ stroke-dasharray="2"
121
+ stroke-width="1"
122
+ />
123
+ </g>
124
+ </g>
125
+ </g>
126
+ </g>
127
+ </svg>
128
+ </div>
129
+ </body>,
130
+ "container": <div>
131
+ <svg
132
+ data-testid="figure"
133
+ height="400px"
134
+ width="400px"
135
+ xmlns="http://www.w3.org/2000/svg"
136
+ >
137
+ <g>
138
+ <g
139
+ transform="translate(10,10)"
140
+ >
141
+ <g
142
+ class="branch-layer"
143
+ >
144
+ <path
145
+ d="M 191.0442564366689 190 C191.0442564366689,190 186.399298787742,253.16276972672102 184.07681996327852,284.7441545900815 C184.07681996327852,284.7441545900815 182.9155805510468,300.5348470217618 182.33496084493095,308.4301932376019 C182.33496084493095,308.4301932376019 182.04465099187303,312.37786634552197 181.89949606534407,314.351702899482 C181.89949606534407,314.351702899482 181.82691860207956,315.338621176462 181.79062987044733,315.832080314952 C181.79062987044733,315.832080314952 181.77248550463122,316.078809884197 181.76341332172314,316.20217466881957 C181.76341332172314,316.20217466881957 181.75434113881508,316.32553945344205 181.75434113881508,316.32553945344205 "
146
+ fill="none"
147
+ stroke="black"
148
+ stroke-width="2"
149
+ />
150
+ <path
151
+ d="M 181.75434113881508 316.32553945344205 C247.8501082366655,321.1861882228226 306.51906010557065,274.27508823362695 316.31858118777706,208.729335348547 C316.31858118777706,208.729335348547 347.6371623755541,213.41166918568376 363.2964529694426,215.75283610425214 C363.2964529694426,215.75283610425214 371.12609826638686,216.92341956353633 375.040920914859,217.5087112931784 C375.040920914859,217.5087112931784 376.998332239095,217.80135715799946 377.97703790121307,217.94768009041 C377.97703790121307,217.94768009041 378.4663907322721,218.02084155661527 378.7110671478016,218.0574222897179 C378.7110671478016,218.0574222897179 378.9557435633311,218.09400302282052 378.9557435633311,218.09400302282052 "
152
+ fill="none"
153
+ stroke="black"
154
+ stroke-width="2"
155
+ />
156
+ <path
157
+ d="M 181.75434113881508 316.32553945344205 C115.65857404096461,311.4648906840615 64.4833022968594,256.4759029000588 64.37775041784722,190.20173603608833 C64.37775041784722,190.20173603608833 32.7111239131418,190.2521700451104 16.877810660789084,190.27738704962144 C16.877810660789084,190.27738704962144 8.961154034612727,190.28999555187698 5.002825721524549,190.29629980300473 C5.002825721524549,190.29629980300473 3.02366156498046,190.2994519285686 2.034079486708415,190.30102799135057 C2.034079486708415,190.30102799135057 1.539288447572393,190.30181602274155 1.2918929280043818,190.302210038437 C1.2918929280043818,190.302210038437 1.0444974084363707,190.3026040541325 1.0444974084363707,190.3026040541325 "
158
+ fill="none"
159
+ stroke="black"
160
+ stroke-width="2"
161
+ />
162
+ <path
163
+ d="M 191.0442564366689 190 C191.0442564366689,190 222.3477640962031,185.21793078393245 237.9995179259702,182.82689617589867 C237.9995179259702,182.82689617589867 245.82539484085373,181.6313788718818 249.73833329829552,181.03362021987334 C249.73833329829552,181.03362021987334 251.6948025270164,180.73474089386912 252.67303714137685,180.585301230867 C252.67303714137685,180.585301230867 253.1621544485571,180.51058139936595 253.4067131021472,180.47322148361542 C253.4067131021472,180.47322148361542 253.52899242894225,180.45454152574015 253.5901320923398,180.44520154680254 C253.5901320923398,180.44520154680254 253.6512717557373,180.4358615678649 253.6512717557373,180.4358615678649 "
164
+ fill="none"
165
+ stroke="black"
166
+ stroke-width="2"
167
+ />
168
+ </g>
169
+ <g
170
+ class="node-layer"
171
+ >
172
+ <g>
173
+ <text
174
+ alignment-baseline="middle"
175
+ text-anchor="end"
176
+ transform="translate(186.63904337251307,185.9264146186202) rotate(42.76015593933792)"
177
+ >
178
+ Label!
179
+ </text>
180
+ <path
181
+ d="M191.0442564366689 190L191.0442564366689 190"
182
+ stroke="grey"
183
+ stroke-dasharray="2"
184
+ stroke-width="1"
185
+ />
186
+ </g>
187
+ <g>
188
+ <text
189
+ alignment-baseline="middle"
190
+ text-anchor="end"
191
+ transform="translate(181.31429251944306,322.30938079597354) rotate(-85.79406886544032)"
192
+ >
193
+ Label!
194
+ </text>
195
+ <path
196
+ d="M181.75434113881508 316.32553945344205L181.75434113881508 316.32553945344205"
197
+ stroke="grey"
198
+ stroke-dasharray="2"
199
+ stroke-width="1"
200
+ />
201
+ </g>
202
+ <g>
203
+ <text
204
+ alignment-baseline="middle"
205
+ text-anchor=" start"
206
+ transform="translate(384.8897905252257,218.98118206564644) rotate(8.503114598040845)"
207
+ >
208
+ Label!
209
+ </text>
210
+ <path
211
+ d="M378.9557435633311 218.09400302282052L378.9557435633311 218.09400302282052"
212
+ stroke="grey"
213
+ stroke-dasharray="2"
214
+ stroke-width="1"
215
+ />
216
+ </g>
217
+ <g>
218
+ <text
219
+ alignment-baseline="middle"
220
+ text-anchor="end"
221
+ transform="translate(-4.955494981928866,190.31215997163142) rotate(-0.0912523289214846)"
222
+ >
223
+ Label!
224
+ </text>
225
+ <path
226
+ d="M1.0444974084363707 190.3026040541325L1.0444974084363707 190.3026040541325"
227
+ stroke="grey"
228
+ stroke-dasharray="2"
229
+ stroke-width="1"
230
+ />
231
+ </g>
232
+ <g>
233
+ <text
234
+ alignment-baseline="middle"
235
+ text-anchor=" start"
236
+ transform="translate(259.58246268070167,179.5297852953468) rotate(351.31438074411614)"
237
+ >
238
+ Label!
239
+ </text>
240
+ <path
241
+ d="M253.6512717557373 180.4358615678649L253.6512717557373 180.4358615678649"
242
+ stroke="grey"
243
+ stroke-dasharray="2"
244
+ stroke-width="1"
245
+ />
246
+ </g>
247
+ </g>
248
+ </g>
249
+ </g>
250
+ </svg>
251
+ </div>,
252
+ "debug": [Function],
253
+ "findAllByAltText": [Function],
254
+ "findAllByDisplayValue": [Function],
255
+ "findAllByLabelText": [Function],
256
+ "findAllByPlaceholderText": [Function],
257
+ "findAllByRole": [Function],
258
+ "findAllByTestId": [Function],
259
+ "findAllByText": [Function],
260
+ "findAllByTitle": [Function],
261
+ "findByAltText": [Function],
262
+ "findByDisplayValue": [Function],
263
+ "findByLabelText": [Function],
264
+ "findByPlaceholderText": [Function],
265
+ "findByRole": [Function],
266
+ "findByTestId": [Function],
267
+ "findByText": [Function],
268
+ "findByTitle": [Function],
269
+ "getAllByAltText": [Function],
270
+ "getAllByDisplayValue": [Function],
271
+ "getAllByLabelText": [Function],
272
+ "getAllByPlaceholderText": [Function],
273
+ "getAllByRole": [Function],
274
+ "getAllByTestId": [Function],
275
+ "getAllByText": [Function],
276
+ "getAllByTitle": [Function],
277
+ "getByAltText": [Function],
278
+ "getByDisplayValue": [Function],
279
+ "getByLabelText": [Function],
280
+ "getByPlaceholderText": [Function],
281
+ "getByRole": [Function],
282
+ "getByTestId": [Function],
283
+ "getByText": [Function],
284
+ "getByTitle": [Function],
285
+ "queryAllByAltText": [Function],
286
+ "queryAllByDisplayValue": [Function],
287
+ "queryAllByLabelText": [Function],
288
+ "queryAllByPlaceholderText": [Function],
289
+ "queryAllByRole": [Function],
290
+ "queryAllByTestId": [Function],
291
+ "queryAllByText": [Function],
292
+ "queryAllByTitle": [Function],
293
+ "queryByAltText": [Function],
294
+ "queryByDisplayValue": [Function],
295
+ "queryByLabelText": [Function],
296
+ "queryByPlaceholderText": [Function],
297
+ "queryByRole": [Function],
298
+ "queryByTestId": [Function],
299
+ "queryByText": [Function],
300
+ "queryByTitle": [Function],
301
+ "rerender": [Function],
302
+ "unmount": [Function],
303
+ }
304
+ `;
305
+
306
+ exports[`Node labels > renders a tree node labels 1`] = `
307
+ {
308
+ "asFragment": [Function],
309
+ "baseElement": <body>
310
+ <div>
311
+ <svg
312
+ data-testid="figure"
313
+ height="400px"
314
+ width="400px"
315
+ xmlns="http://www.w3.org/2000/svg"
316
+ >
317
+ <g>
318
+ <g
319
+ transform="translate(10,10)"
320
+ >
321
+ <g
322
+ class="branch-layer"
323
+ >
324
+ <path
325
+ d="M 0.001 237.5 C0.001,237.5 0,95 0,95 C0,95 126.66666666666666,95.0005 190,95.00075000000001 C190,95.00075000000001 221.66666666666666,95.00087500000001 237.5,95.0009375 C237.5,95.0009375 245.41666666666666,95.00096875 249.375,95.000984375 C249.375,95.000984375 251.35416666666666,95.0009921875 252.34375,95.00099609375 C252.34375,95.00099609375 253.33333333333331,95.001 253.33333333333331,95.001 "
326
+ fill="none"
327
+ stroke="black"
328
+ stroke-width="2"
329
+ />
330
+ <path
331
+ d="M 253.33433333333332 95 C253.33433333333332,95 253.33333333333331,0 253.33333333333331,0 C253.33333333333331,0 316.66666666666663,0.0005 348.3333333333333,0.00075 C348.3333333333333,0.00075 364.16666666666663,0.000875 372.0833333333333,0.0009375 C372.0833333333333,0.0009375 376.04166666666663,0.00096875 378.0208333333333,0.000984375 C378.0208333333333,0.000984375 379.01041666666663,0.0009921875 379.5052083333333,0.00099609375 C379.5052083333333,0.00099609375 380,0.001 380,0.001 "
332
+ fill="none"
333
+ stroke="black"
334
+ stroke-width="2"
335
+ />
336
+ <path
337
+ d="M 253.33433333333332 95 C253.33433333333332,95 253.33333333333331,190 253.33333333333331,190 C253.33333333333331,190 316.66666666666663,190.0005 348.3333333333333,190.00074999999998 C348.3333333333333,190.00074999999998 364.16666666666663,190.000875 372.0833333333333,190.00093750000002 C372.0833333333333,190.00093750000002 376.04166666666663,190.00096875000003 378.0208333333333,190.00098437500003 C378.0208333333333,190.00098437500003 379.01041666666663,190.0009921875 379.5052083333333,190.00099609375002 C379.5052083333333,190.00099609375002 380,190.001 380,190.001 "
338
+ fill="none"
339
+ stroke="black"
340
+ stroke-width="2"
341
+ />
342
+ <path
343
+ d="M 0.001 237.5 C0.001,237.5 0,380 0,380 C0,380 63.33333333333333,380.0005 95,380.00075 C95,380.00075 110.83333333333333,380.00087499999995 118.75,380.00093749999996 C118.75,380.00093749999996 122.70833333333333,380.00096874999997 124.6875,380.000984375 C124.6875,380.000984375 125.67708333333333,380.00099218749995 126.171875,380.00099609374996 C126.171875,380.00099609374996 126.66666666666666,380.001 126.66666666666666,380.001 "
344
+ fill="none"
345
+ stroke="black"
346
+ stroke-width="2"
347
+ />
348
+ </g>
349
+ <g
350
+ class="node-layer"
351
+ >
352
+ <g>
353
+ <text
354
+ alignment-baseline="bottom"
355
+ text-anchor="end"
356
+ transform="translate(-6,231.5) rotate(0)"
357
+ >
358
+ Label!
359
+ </text>
360
+ <path
361
+ d="M0 237.5L0 237.5"
362
+ stroke="grey"
363
+ stroke-dasharray="2"
364
+ stroke-width="1"
365
+ />
366
+ </g>
367
+ <g>
368
+ <text
369
+ alignment-baseline="hanging"
370
+ text-anchor="end"
371
+ transform="translate(247.33333333333331,101) rotate(0)"
372
+ >
373
+ Label!
374
+ </text>
375
+ <path
376
+ d="M253.33333333333331 95L253.33333333333331 95"
377
+ stroke="grey"
378
+ stroke-dasharray="2"
379
+ stroke-width="1"
380
+ />
381
+ </g>
382
+ <g>
383
+ <text
384
+ alignment-baseline="middle"
385
+ text-anchor="start"
386
+ transform="translate(386,0) rotate(0)"
387
+ >
388
+ Label!
389
+ </text>
390
+ <path
391
+ d="M380 0L380 0"
392
+ stroke="grey"
393
+ stroke-dasharray="2"
394
+ stroke-width="1"
395
+ />
396
+ </g>
397
+ <g>
398
+ <text
399
+ alignment-baseline="middle"
400
+ text-anchor="start"
401
+ transform="translate(386,190) rotate(0)"
402
+ >
403
+ Label!
404
+ </text>
405
+ <path
406
+ d="M380 190L380 190"
407
+ stroke="grey"
408
+ stroke-dasharray="2"
409
+ stroke-width="1"
410
+ />
411
+ </g>
412
+ <g>
413
+ <text
414
+ alignment-baseline="middle"
415
+ text-anchor="start"
416
+ transform="translate(132.66666666666666,380) rotate(0)"
417
+ >
418
+ Label!
419
+ </text>
420
+ <path
421
+ d="M126.66666666666666 380L126.66666666666666 380"
422
+ stroke="grey"
423
+ stroke-dasharray="2"
424
+ stroke-width="1"
425
+ />
426
+ </g>
427
+ </g>
428
+ </g>
429
+ </g>
430
+ </svg>
431
+ </div>
432
+ </body>,
433
+ "container": <div>
434
+ <svg
435
+ data-testid="figure"
436
+ height="400px"
437
+ width="400px"
438
+ xmlns="http://www.w3.org/2000/svg"
439
+ >
440
+ <g>
441
+ <g
442
+ transform="translate(10,10)"
443
+ >
444
+ <g
445
+ class="branch-layer"
446
+ >
447
+ <path
448
+ d="M 0.001 237.5 C0.001,237.5 0,95 0,95 C0,95 126.66666666666666,95.0005 190,95.00075000000001 C190,95.00075000000001 221.66666666666666,95.00087500000001 237.5,95.0009375 C237.5,95.0009375 245.41666666666666,95.00096875 249.375,95.000984375 C249.375,95.000984375 251.35416666666666,95.0009921875 252.34375,95.00099609375 C252.34375,95.00099609375 253.33333333333331,95.001 253.33333333333331,95.001 "
449
+ fill="none"
450
+ stroke="black"
451
+ stroke-width="2"
452
+ />
453
+ <path
454
+ d="M 253.33433333333332 95 C253.33433333333332,95 253.33333333333331,0 253.33333333333331,0 C253.33333333333331,0 316.66666666666663,0.0005 348.3333333333333,0.00075 C348.3333333333333,0.00075 364.16666666666663,0.000875 372.0833333333333,0.0009375 C372.0833333333333,0.0009375 376.04166666666663,0.00096875 378.0208333333333,0.000984375 C378.0208333333333,0.000984375 379.01041666666663,0.0009921875 379.5052083333333,0.00099609375 C379.5052083333333,0.00099609375 380,0.001 380,0.001 "
455
+ fill="none"
456
+ stroke="black"
457
+ stroke-width="2"
458
+ />
459
+ <path
460
+ d="M 253.33433333333332 95 C253.33433333333332,95 253.33333333333331,190 253.33333333333331,190 C253.33333333333331,190 316.66666666666663,190.0005 348.3333333333333,190.00074999999998 C348.3333333333333,190.00074999999998 364.16666666666663,190.000875 372.0833333333333,190.00093750000002 C372.0833333333333,190.00093750000002 376.04166666666663,190.00096875000003 378.0208333333333,190.00098437500003 C378.0208333333333,190.00098437500003 379.01041666666663,190.0009921875 379.5052083333333,190.00099609375002 C379.5052083333333,190.00099609375002 380,190.001 380,190.001 "
461
+ fill="none"
462
+ stroke="black"
463
+ stroke-width="2"
464
+ />
465
+ <path
466
+ d="M 0.001 237.5 C0.001,237.5 0,380 0,380 C0,380 63.33333333333333,380.0005 95,380.00075 C95,380.00075 110.83333333333333,380.00087499999995 118.75,380.00093749999996 C118.75,380.00093749999996 122.70833333333333,380.00096874999997 124.6875,380.000984375 C124.6875,380.000984375 125.67708333333333,380.00099218749995 126.171875,380.00099609374996 C126.171875,380.00099609374996 126.66666666666666,380.001 126.66666666666666,380.001 "
467
+ fill="none"
468
+ stroke="black"
469
+ stroke-width="2"
470
+ />
471
+ </g>
472
+ <g
473
+ class="node-layer"
474
+ >
475
+ <g>
476
+ <text
477
+ alignment-baseline="bottom"
478
+ text-anchor="end"
479
+ transform="translate(-6,231.5) rotate(0)"
480
+ >
481
+ Label!
482
+ </text>
483
+ <path
484
+ d="M0 237.5L0 237.5"
485
+ stroke="grey"
486
+ stroke-dasharray="2"
487
+ stroke-width="1"
488
+ />
489
+ </g>
490
+ <g>
491
+ <text
492
+ alignment-baseline="hanging"
493
+ text-anchor="end"
494
+ transform="translate(247.33333333333331,101) rotate(0)"
495
+ >
496
+ Label!
497
+ </text>
498
+ <path
499
+ d="M253.33333333333331 95L253.33333333333331 95"
500
+ stroke="grey"
501
+ stroke-dasharray="2"
502
+ stroke-width="1"
503
+ />
504
+ </g>
505
+ <g>
506
+ <text
507
+ alignment-baseline="middle"
508
+ text-anchor="start"
509
+ transform="translate(386,0) rotate(0)"
510
+ >
511
+ Label!
512
+ </text>
513
+ <path
514
+ d="M380 0L380 0"
515
+ stroke="grey"
516
+ stroke-dasharray="2"
517
+ stroke-width="1"
518
+ />
519
+ </g>
520
+ <g>
521
+ <text
522
+ alignment-baseline="middle"
523
+ text-anchor="start"
524
+ transform="translate(386,190) rotate(0)"
525
+ >
526
+ Label!
527
+ </text>
528
+ <path
529
+ d="M380 190L380 190"
530
+ stroke="grey"
531
+ stroke-dasharray="2"
532
+ stroke-width="1"
533
+ />
534
+ </g>
535
+ <g>
536
+ <text
537
+ alignment-baseline="middle"
538
+ text-anchor="start"
539
+ transform="translate(132.66666666666666,380) rotate(0)"
540
+ >
541
+ Label!
542
+ </text>
543
+ <path
544
+ d="M126.66666666666666 380L126.66666666666666 380"
545
+ stroke="grey"
546
+ stroke-dasharray="2"
547
+ stroke-width="1"
548
+ />
549
+ </g>
550
+ </g>
551
+ </g>
552
+ </g>
553
+ </svg>
554
+ </div>,
555
+ "debug": [Function],
556
+ "findAllByAltText": [Function],
557
+ "findAllByDisplayValue": [Function],
558
+ "findAllByLabelText": [Function],
559
+ "findAllByPlaceholderText": [Function],
560
+ "findAllByRole": [Function],
561
+ "findAllByTestId": [Function],
562
+ "findAllByText": [Function],
563
+ "findAllByTitle": [Function],
564
+ "findByAltText": [Function],
565
+ "findByDisplayValue": [Function],
566
+ "findByLabelText": [Function],
567
+ "findByPlaceholderText": [Function],
568
+ "findByRole": [Function],
569
+ "findByTestId": [Function],
570
+ "findByText": [Function],
571
+ "findByTitle": [Function],
572
+ "getAllByAltText": [Function],
573
+ "getAllByDisplayValue": [Function],
574
+ "getAllByLabelText": [Function],
575
+ "getAllByPlaceholderText": [Function],
576
+ "getAllByRole": [Function],
577
+ "getAllByTestId": [Function],
578
+ "getAllByText": [Function],
579
+ "getAllByTitle": [Function],
580
+ "getByAltText": [Function],
581
+ "getByDisplayValue": [Function],
582
+ "getByLabelText": [Function],
583
+ "getByPlaceholderText": [Function],
584
+ "getByRole": [Function],
585
+ "getByTestId": [Function],
586
+ "getByText": [Function],
587
+ "getByTitle": [Function],
588
+ "queryAllByAltText": [Function],
589
+ "queryAllByDisplayValue": [Function],
590
+ "queryAllByLabelText": [Function],
591
+ "queryAllByPlaceholderText": [Function],
592
+ "queryAllByRole": [Function],
593
+ "queryAllByTestId": [Function],
594
+ "queryAllByText": [Function],
595
+ "queryAllByTitle": [Function],
596
+ "queryByAltText": [Function],
597
+ "queryByDisplayValue": [Function],
598
+ "queryByLabelText": [Function],
599
+ "queryByPlaceholderText": [Function],
600
+ "queryByRole": [Function],
601
+ "queryByTestId": [Function],
602
+ "queryByText": [Function],
603
+ "queryByTitle": [Function],
604
+ "rerender": [Function],
605
+ "unmount": [Function],
606
+ }
607
+ `;
608
+
609
+ exports[`Node labels > renders a tree node labels in radial layout 1`] = `
610
+ {
611
+ "asFragment": [Function],
612
+ "baseElement": <body>
613
+ <div>
614
+ <svg
615
+ data-testid="figure"
616
+ height="400px"
617
+ width="400px"
618
+ xmlns="http://www.w3.org/2000/svg"
619
+ >
620
+ <g>
621
+ <g
622
+ transform="translate(10,10)"
623
+ >
624
+ <g
625
+ class="branch-layer"
626
+ >
627
+ <path
628
+ d="M 303.9999492243224 284.97489210109876 C303.9999492243224,284.97489210109876 227.99989844864467,189.9497842021975 227.99989844864467,189.9497842021975 C227.99989844864467,189.9497842021975 189.9998730608058,142.43723025274684 170.99986036688637,118.68095327802152 C170.99986036688637,118.68095327802152 161.49985401992666,106.80281479065886 156.7498508464468,100.86374554697753 C156.7498508464468,100.86374554697753 154.37484925970688,97.89421092513686 153.1873484663369,96.40944361421654 C153.1873484663369,96.40944361421654 152.59359806965193,95.66705995875637 152.29672287130944,95.29586813102628 C152.29672287130944,95.29586813102628 151.99984767296695,94.92467630329621 151.99984767296695,94.92467630329621 "
629
+ fill="none"
630
+ stroke="black"
631
+ stroke-width="2"
632
+ />
633
+ <path
634
+ d="M 151.99984767296695 94.92467630329621 C151.99984767296695,94.92467630329621 190.12010533393422,47.462338151648105 190.12010533393422,47.462338151648105 C190.12010533393422,47.462338151648105 209.18023416441787,23.731169075824052 218.71029857965968,11.865584537912026 C218.71029857965968,11.865584537912026 223.4753307872806,5.932792268956013 225.85784689109104,2.9663961344780065 C225.85784689109104,2.9663961344780065 227.04910494299628,1.4831980672390033 227.64473396894888,0.7415990336195016 C227.64473396894888,0.7415990336195016 227.9425484819252,0.3707995168097508 228.09145573841334,0.1853997584048754 C228.09145573841334,0.1853997584048754 228.2403629949015,0 228.2403629949015,0 "
635
+ fill="none"
636
+ stroke="black"
637
+ stroke-width="2"
638
+ />
639
+ <path
640
+ d="M 151.99984767296695 94.92467630329621 C151.99984767296695,94.92467630329621 75.99992383648348,95.0249491830781 75.99992383648348,95.0249491830781 C75.99992383648348,95.0249491830781 37.99996191824174,95.07508562296906 18.99998095912087,95.10015384291452 C18.99998095912087,95.10015384291452 9.499990479560434,95.11268795288726 4.749995239780217,95.11895500787364 C4.749995239780217,95.11895500787364 2.3749976198901086,95.12208853536683 1.1874988099450543,95.12365529911341 C1.1874988099450543,95.12365529911341 0.5937494049725272,95.12443868098671 0.2968747024862636,95.12483037192337 C0.2968747024862636,95.12483037192337 0,95.12522206286 0,95.12522206286 "
641
+ fill="none"
642
+ stroke="black"
643
+ stroke-width="2"
644
+ />
645
+ <path
646
+ d="M 303.9999492243224 284.97489210109876 C303.9999492243224,284.97489210109876 341.99997461216117,332.48744605054935 341.99997461216117,332.48744605054935 C341.99997461216117,332.48744605054935 360.9999873060806,356.2437230252747 370.4999936530403,368.12186151263734 C370.4999936530403,368.12186151263734 375.24999682652015,374.06093075631867 377.6249984132601,377.0304653781593 C377.6249984132601,377.0304653781593 378.81249920663004,378.51523268907965 379.406249603315,379.2576163445398 C379.406249603315,379.2576163445398 379.7031248016575,379.62880817226994 379.85156240082875,379.81440408613497 C379.85156240082875,379.81440408613497 380,380 380,380 "
647
+ fill="none"
648
+ stroke="black"
649
+ stroke-width="2"
650
+ />
651
+ </g>
652
+ <g
653
+ class="node-layer"
654
+ >
655
+ <g>
656
+ <text
657
+ alignment-baseline="middle"
658
+ text-anchor="end"
659
+ transform="translate(297.9999492243224,284.97489210109876) rotate(0)"
660
+ >
661
+ Label!
662
+ </text>
663
+ <path
664
+ d="M303.9999492243224 284.97489210109876L303.9999492243224 284.97489210109876"
665
+ stroke="grey"
666
+ stroke-dasharray="2"
667
+ stroke-width="1"
668
+ />
669
+ </g>
670
+ <g>
671
+ <text
672
+ alignment-baseline="middle"
673
+ text-anchor="end"
674
+ transform="translate(148.99984767296695,89.72852388058958) rotate(0)"
675
+ >
676
+ Label!
677
+ </text>
678
+ <path
679
+ d="M151.99984767296695 94.92467630329621L151.99984767296695 94.92467630329621"
680
+ stroke="grey"
681
+ stroke-dasharray="2"
682
+ stroke-width="1"
683
+ />
684
+ </g>
685
+ <g>
686
+ <text
687
+ alignment-baseline="middle"
688
+ text-anchor="start"
689
+ transform="translate(231.24985501012264,-5.190660633322136) rotate(0)"
690
+ >
691
+ Label!
692
+ </text>
693
+ <path
694
+ d="M228.2403629949015 0L228.2403629949015 0"
695
+ stroke="grey"
696
+ stroke-dasharray="2"
697
+ stroke-width="1"
698
+ />
699
+ </g>
700
+ <g>
701
+ <text
702
+ alignment-baseline="middle"
703
+ text-anchor="end"
704
+ transform="translate(-5.999989978491366,95.13618828386687) rotate(0)"
705
+ >
706
+ Label!
707
+ </text>
708
+ <path
709
+ d="M0 95.12522206286L0 95.12522206286"
710
+ stroke="grey"
711
+ stroke-dasharray="2"
712
+ stroke-width="1"
713
+ />
714
+ </g>
715
+ <g>
716
+ <text
717
+ alignment-baseline="middle"
718
+ text-anchor="start"
719
+ transform="translate(383,385.19615242270663) rotate(0)"
720
+ >
721
+ Label!
722
+ </text>
723
+ <path
724
+ d="M380 380L380 380"
725
+ stroke="grey"
726
+ stroke-dasharray="2"
727
+ stroke-width="1"
728
+ />
729
+ </g>
730
+ </g>
731
+ </g>
732
+ </g>
733
+ </svg>
734
+ </div>
735
+ </body>,
736
+ "container": <div>
737
+ <svg
738
+ data-testid="figure"
739
+ height="400px"
740
+ width="400px"
741
+ xmlns="http://www.w3.org/2000/svg"
742
+ >
743
+ <g>
744
+ <g
745
+ transform="translate(10,10)"
746
+ >
747
+ <g
748
+ class="branch-layer"
749
+ >
750
+ <path
751
+ d="M 303.9999492243224 284.97489210109876 C303.9999492243224,284.97489210109876 227.99989844864467,189.9497842021975 227.99989844864467,189.9497842021975 C227.99989844864467,189.9497842021975 189.9998730608058,142.43723025274684 170.99986036688637,118.68095327802152 C170.99986036688637,118.68095327802152 161.49985401992666,106.80281479065886 156.7498508464468,100.86374554697753 C156.7498508464468,100.86374554697753 154.37484925970688,97.89421092513686 153.1873484663369,96.40944361421654 C153.1873484663369,96.40944361421654 152.59359806965193,95.66705995875637 152.29672287130944,95.29586813102628 C152.29672287130944,95.29586813102628 151.99984767296695,94.92467630329621 151.99984767296695,94.92467630329621 "
752
+ fill="none"
753
+ stroke="black"
754
+ stroke-width="2"
755
+ />
756
+ <path
757
+ d="M 151.99984767296695 94.92467630329621 C151.99984767296695,94.92467630329621 190.12010533393422,47.462338151648105 190.12010533393422,47.462338151648105 C190.12010533393422,47.462338151648105 209.18023416441787,23.731169075824052 218.71029857965968,11.865584537912026 C218.71029857965968,11.865584537912026 223.4753307872806,5.932792268956013 225.85784689109104,2.9663961344780065 C225.85784689109104,2.9663961344780065 227.04910494299628,1.4831980672390033 227.64473396894888,0.7415990336195016 C227.64473396894888,0.7415990336195016 227.9425484819252,0.3707995168097508 228.09145573841334,0.1853997584048754 C228.09145573841334,0.1853997584048754 228.2403629949015,0 228.2403629949015,0 "
758
+ fill="none"
759
+ stroke="black"
760
+ stroke-width="2"
761
+ />
762
+ <path
763
+ d="M 151.99984767296695 94.92467630329621 C151.99984767296695,94.92467630329621 75.99992383648348,95.0249491830781 75.99992383648348,95.0249491830781 C75.99992383648348,95.0249491830781 37.99996191824174,95.07508562296906 18.99998095912087,95.10015384291452 C18.99998095912087,95.10015384291452 9.499990479560434,95.11268795288726 4.749995239780217,95.11895500787364 C4.749995239780217,95.11895500787364 2.3749976198901086,95.12208853536683 1.1874988099450543,95.12365529911341 C1.1874988099450543,95.12365529911341 0.5937494049725272,95.12443868098671 0.2968747024862636,95.12483037192337 C0.2968747024862636,95.12483037192337 0,95.12522206286 0,95.12522206286 "
764
+ fill="none"
765
+ stroke="black"
766
+ stroke-width="2"
767
+ />
768
+ <path
769
+ d="M 303.9999492243224 284.97489210109876 C303.9999492243224,284.97489210109876 341.99997461216117,332.48744605054935 341.99997461216117,332.48744605054935 C341.99997461216117,332.48744605054935 360.9999873060806,356.2437230252747 370.4999936530403,368.12186151263734 C370.4999936530403,368.12186151263734 375.24999682652015,374.06093075631867 377.6249984132601,377.0304653781593 C377.6249984132601,377.0304653781593 378.81249920663004,378.51523268907965 379.406249603315,379.2576163445398 C379.406249603315,379.2576163445398 379.7031248016575,379.62880817226994 379.85156240082875,379.81440408613497 C379.85156240082875,379.81440408613497 380,380 380,380 "
770
+ fill="none"
771
+ stroke="black"
772
+ stroke-width="2"
773
+ />
774
+ </g>
775
+ <g
776
+ class="node-layer"
777
+ >
778
+ <g>
779
+ <text
780
+ alignment-baseline="middle"
781
+ text-anchor="end"
782
+ transform="translate(297.9999492243224,284.97489210109876) rotate(0)"
783
+ >
784
+ Label!
785
+ </text>
786
+ <path
787
+ d="M303.9999492243224 284.97489210109876L303.9999492243224 284.97489210109876"
788
+ stroke="grey"
789
+ stroke-dasharray="2"
790
+ stroke-width="1"
791
+ />
792
+ </g>
793
+ <g>
794
+ <text
795
+ alignment-baseline="middle"
796
+ text-anchor="end"
797
+ transform="translate(148.99984767296695,89.72852388058958) rotate(0)"
798
+ >
799
+ Label!
800
+ </text>
801
+ <path
802
+ d="M151.99984767296695 94.92467630329621L151.99984767296695 94.92467630329621"
803
+ stroke="grey"
804
+ stroke-dasharray="2"
805
+ stroke-width="1"
806
+ />
807
+ </g>
808
+ <g>
809
+ <text
810
+ alignment-baseline="middle"
811
+ text-anchor="start"
812
+ transform="translate(231.24985501012264,-5.190660633322136) rotate(0)"
813
+ >
814
+ Label!
815
+ </text>
816
+ <path
817
+ d="M228.2403629949015 0L228.2403629949015 0"
818
+ stroke="grey"
819
+ stroke-dasharray="2"
820
+ stroke-width="1"
821
+ />
822
+ </g>
823
+ <g>
824
+ <text
825
+ alignment-baseline="middle"
826
+ text-anchor="end"
827
+ transform="translate(-5.999989978491366,95.13618828386687) rotate(0)"
828
+ >
829
+ Label!
830
+ </text>
831
+ <path
832
+ d="M0 95.12522206286L0 95.12522206286"
833
+ stroke="grey"
834
+ stroke-dasharray="2"
835
+ stroke-width="1"
836
+ />
837
+ </g>
838
+ <g>
839
+ <text
840
+ alignment-baseline="middle"
841
+ text-anchor="start"
842
+ transform="translate(383,385.19615242270663) rotate(0)"
843
+ >
844
+ Label!
845
+ </text>
846
+ <path
847
+ d="M380 380L380 380"
848
+ stroke="grey"
849
+ stroke-dasharray="2"
850
+ stroke-width="1"
851
+ />
852
+ </g>
853
+ </g>
854
+ </g>
855
+ </g>
856
+ </svg>
857
+ </div>,
858
+ "debug": [Function],
859
+ "findAllByAltText": [Function],
860
+ "findAllByDisplayValue": [Function],
861
+ "findAllByLabelText": [Function],
862
+ "findAllByPlaceholderText": [Function],
863
+ "findAllByRole": [Function],
864
+ "findAllByTestId": [Function],
865
+ "findAllByText": [Function],
866
+ "findAllByTitle": [Function],
867
+ "findByAltText": [Function],
868
+ "findByDisplayValue": [Function],
869
+ "findByLabelText": [Function],
870
+ "findByPlaceholderText": [Function],
871
+ "findByRole": [Function],
872
+ "findByTestId": [Function],
873
+ "findByText": [Function],
874
+ "findByTitle": [Function],
875
+ "getAllByAltText": [Function],
876
+ "getAllByDisplayValue": [Function],
877
+ "getAllByLabelText": [Function],
878
+ "getAllByPlaceholderText": [Function],
879
+ "getAllByRole": [Function],
880
+ "getAllByTestId": [Function],
881
+ "getAllByText": [Function],
882
+ "getAllByTitle": [Function],
883
+ "getByAltText": [Function],
884
+ "getByDisplayValue": [Function],
885
+ "getByLabelText": [Function],
886
+ "getByPlaceholderText": [Function],
887
+ "getByRole": [Function],
888
+ "getByTestId": [Function],
889
+ "getByText": [Function],
890
+ "getByTitle": [Function],
891
+ "queryAllByAltText": [Function],
892
+ "queryAllByDisplayValue": [Function],
893
+ "queryAllByLabelText": [Function],
894
+ "queryAllByPlaceholderText": [Function],
895
+ "queryAllByRole": [Function],
896
+ "queryAllByTestId": [Function],
897
+ "queryAllByText": [Function],
898
+ "queryAllByTitle": [Function],
899
+ "queryByAltText": [Function],
900
+ "queryByDisplayValue": [Function],
901
+ "queryByLabelText": [Function],
902
+ "queryByPlaceholderText": [Function],
903
+ "queryByRole": [Function],
904
+ "queryByTestId": [Function],
905
+ "queryByText": [Function],
906
+ "queryByTitle": [Function],
907
+ "rerender": [Function],
908
+ "unmount": [Function],
909
+ }
910
+ `;
911
+
912
+ exports[`Node labels > renders a tree with aligned Node labels and a function for text - polar 1`] = `
913
+ {
914
+ "asFragment": [Function],
915
+ "baseElement": <body>
916
+ <div>
917
+ <svg
918
+ data-testid="figure"
919
+ height="400px"
920
+ width="400px"
921
+ xmlns="http://www.w3.org/2000/svg"
922
+ >
923
+ <g>
924
+ <g
925
+ transform="translate(10,10)"
926
+ >
927
+ <g
928
+ class="branch-layer"
929
+ >
930
+ <path
931
+ d="M 191.0442564366689 190 C191.0442564366689,190 186.399298787742,253.16276972672102 184.07681996327852,284.7441545900815 C184.07681996327852,284.7441545900815 182.9155805510468,300.5348470217618 182.33496084493095,308.4301932376019 C182.33496084493095,308.4301932376019 182.04465099187303,312.37786634552197 181.89949606534407,314.351702899482 C181.89949606534407,314.351702899482 181.82691860207956,315.338621176462 181.79062987044733,315.832080314952 C181.79062987044733,315.832080314952 181.77248550463122,316.078809884197 181.76341332172314,316.20217466881957 C181.76341332172314,316.20217466881957 181.75434113881508,316.32553945344205 181.75434113881508,316.32553945344205 "
932
+ fill="none"
933
+ stroke="black"
934
+ stroke-width="2"
935
+ />
936
+ <path
937
+ d="M 181.75434113881508 316.32553945344205 C247.8501082366655,321.1861882228226 306.51906010557065,274.27508823362695 316.31858118777706,208.729335348547 C316.31858118777706,208.729335348547 347.6371623755541,213.41166918568376 363.2964529694426,215.75283610425214 C363.2964529694426,215.75283610425214 371.12609826638686,216.92341956353633 375.040920914859,217.5087112931784 C375.040920914859,217.5087112931784 376.998332239095,217.80135715799946 377.97703790121307,217.94768009041 C377.97703790121307,217.94768009041 378.4663907322721,218.02084155661527 378.7110671478016,218.0574222897179 C378.7110671478016,218.0574222897179 378.9557435633311,218.09400302282052 378.9557435633311,218.09400302282052 "
938
+ fill="none"
939
+ stroke="black"
940
+ stroke-width="2"
941
+ />
942
+ <path
943
+ d="M 181.75434113881508 316.32553945344205 C115.65857404096461,311.4648906840615 64.4833022968594,256.4759029000588 64.37775041784722,190.20173603608833 C64.37775041784722,190.20173603608833 32.7111239131418,190.2521700451104 16.877810660789084,190.27738704962144 C16.877810660789084,190.27738704962144 8.961154034612727,190.28999555187698 5.002825721524549,190.29629980300473 C5.002825721524549,190.29629980300473 3.02366156498046,190.2994519285686 2.034079486708415,190.30102799135057 C2.034079486708415,190.30102799135057 1.539288447572393,190.30181602274155 1.2918929280043818,190.302210038437 C1.2918929280043818,190.302210038437 1.0444974084363707,190.3026040541325 1.0444974084363707,190.3026040541325 "
944
+ fill="none"
945
+ stroke="black"
946
+ stroke-width="2"
947
+ />
948
+ <path
949
+ d="M 191.0442564366689 190 C191.0442564366689,190 222.3477640962031,185.21793078393245 237.9995179259702,182.82689617589867 C237.9995179259702,182.82689617589867 245.82539484085373,181.6313788718818 249.73833329829552,181.03362021987334 C249.73833329829552,181.03362021987334 251.6948025270164,180.73474089386912 252.67303714137685,180.585301230867 C252.67303714137685,180.585301230867 253.1621544485571,180.51058139936595 253.4067131021472,180.47322148361542 C253.4067131021472,180.47322148361542 253.52899242894225,180.45454152574015 253.5901320923398,180.44520154680254 C253.5901320923398,180.44520154680254 253.6512717557373,180.4358615678649 253.6512717557373,180.4358615678649 "
950
+ fill="none"
951
+ stroke="black"
952
+ stroke-width="2"
953
+ />
954
+ </g>
955
+ <g
956
+ class="node-layer"
957
+ >
958
+ <g>
959
+ <text
960
+ alignment-baseline="middle"
961
+ text-anchor="end"
962
+ transform="translate(47.140629674245915,56.929544208260616) rotate(42.76015593933792)"
963
+ >
964
+ 0
965
+ </text>
966
+ <path
967
+ d="M191.0442564366689 190L47.140629674245915 56.929544208260616"
968
+ stroke="grey"
969
+ stroke-dasharray="2"
970
+ stroke-width="1"
971
+ />
972
+ </g>
973
+ <g>
974
+ <text
975
+ alignment-baseline="middle"
976
+ text-anchor="end"
977
+ transform="translate(176.66933487051617,385.4721505226946) rotate(-85.79406886544032)"
978
+ >
979
+ 1
980
+ </text>
981
+ <path
982
+ d="M181.75434113881508 316.32553945344205L176.66933487051617 385.4721505226946"
983
+ stroke="grey"
984
+ stroke-dasharray="2"
985
+ stroke-width="1"
986
+ />
987
+ </g>
988
+ <g>
989
+ <text
990
+ alignment-baseline="middle"
991
+ text-anchor=" start"
992
+ transform="translate(384.8897905252257,218.98118206564644) rotate(8.503114598040845)"
993
+ >
994
+ 2
995
+ </text>
996
+ <path
997
+ d="M378.9557435633311 218.09400302282052L384.8897905252257 218.98118206564644"
998
+ stroke="grey"
999
+ stroke-dasharray="2"
1000
+ stroke-width="1"
1001
+ />
1002
+ </g>
1003
+ <g>
1004
+ <text
1005
+ alignment-baseline="middle"
1006
+ text-anchor="end"
1007
+ transform="translate(-4.955494981928866,190.31215997163142) rotate(-0.0912523289214846)"
1008
+ >
1009
+ 3
1010
+ </text>
1011
+ <path
1012
+ d="M1.0444974084363707 190.3026040541325L-4.955494981928866 190.31215997163142"
1013
+ stroke="grey"
1014
+ stroke-dasharray="2"
1015
+ stroke-width="1"
1016
+ />
1017
+ </g>
1018
+ <g>
1019
+ <text
1020
+ alignment-baseline="middle"
1021
+ text-anchor=" start"
1022
+ transform="translate(384.7964933188385,160.4015084310766) rotate(351.31438074411614)"
1023
+ >
1024
+ 4
1025
+ </text>
1026
+ <path
1027
+ d="M253.6512717557373 180.4358615678649L384.7964933188385 160.4015084310766"
1028
+ stroke="grey"
1029
+ stroke-dasharray="2"
1030
+ stroke-width="1"
1031
+ />
1032
+ </g>
1033
+ </g>
1034
+ </g>
1035
+ </g>
1036
+ </svg>
1037
+ </div>
1038
+ </body>,
1039
+ "container": <div>
1040
+ <svg
1041
+ data-testid="figure"
1042
+ height="400px"
1043
+ width="400px"
1044
+ xmlns="http://www.w3.org/2000/svg"
1045
+ >
1046
+ <g>
1047
+ <g
1048
+ transform="translate(10,10)"
1049
+ >
1050
+ <g
1051
+ class="branch-layer"
1052
+ >
1053
+ <path
1054
+ d="M 191.0442564366689 190 C191.0442564366689,190 186.399298787742,253.16276972672102 184.07681996327852,284.7441545900815 C184.07681996327852,284.7441545900815 182.9155805510468,300.5348470217618 182.33496084493095,308.4301932376019 C182.33496084493095,308.4301932376019 182.04465099187303,312.37786634552197 181.89949606534407,314.351702899482 C181.89949606534407,314.351702899482 181.82691860207956,315.338621176462 181.79062987044733,315.832080314952 C181.79062987044733,315.832080314952 181.77248550463122,316.078809884197 181.76341332172314,316.20217466881957 C181.76341332172314,316.20217466881957 181.75434113881508,316.32553945344205 181.75434113881508,316.32553945344205 "
1055
+ fill="none"
1056
+ stroke="black"
1057
+ stroke-width="2"
1058
+ />
1059
+ <path
1060
+ d="M 181.75434113881508 316.32553945344205 C247.8501082366655,321.1861882228226 306.51906010557065,274.27508823362695 316.31858118777706,208.729335348547 C316.31858118777706,208.729335348547 347.6371623755541,213.41166918568376 363.2964529694426,215.75283610425214 C363.2964529694426,215.75283610425214 371.12609826638686,216.92341956353633 375.040920914859,217.5087112931784 C375.040920914859,217.5087112931784 376.998332239095,217.80135715799946 377.97703790121307,217.94768009041 C377.97703790121307,217.94768009041 378.4663907322721,218.02084155661527 378.7110671478016,218.0574222897179 C378.7110671478016,218.0574222897179 378.9557435633311,218.09400302282052 378.9557435633311,218.09400302282052 "
1061
+ fill="none"
1062
+ stroke="black"
1063
+ stroke-width="2"
1064
+ />
1065
+ <path
1066
+ d="M 181.75434113881508 316.32553945344205 C115.65857404096461,311.4648906840615 64.4833022968594,256.4759029000588 64.37775041784722,190.20173603608833 C64.37775041784722,190.20173603608833 32.7111239131418,190.2521700451104 16.877810660789084,190.27738704962144 C16.877810660789084,190.27738704962144 8.961154034612727,190.28999555187698 5.002825721524549,190.29629980300473 C5.002825721524549,190.29629980300473 3.02366156498046,190.2994519285686 2.034079486708415,190.30102799135057 C2.034079486708415,190.30102799135057 1.539288447572393,190.30181602274155 1.2918929280043818,190.302210038437 C1.2918929280043818,190.302210038437 1.0444974084363707,190.3026040541325 1.0444974084363707,190.3026040541325 "
1067
+ fill="none"
1068
+ stroke="black"
1069
+ stroke-width="2"
1070
+ />
1071
+ <path
1072
+ d="M 191.0442564366689 190 C191.0442564366689,190 222.3477640962031,185.21793078393245 237.9995179259702,182.82689617589867 C237.9995179259702,182.82689617589867 245.82539484085373,181.6313788718818 249.73833329829552,181.03362021987334 C249.73833329829552,181.03362021987334 251.6948025270164,180.73474089386912 252.67303714137685,180.585301230867 C252.67303714137685,180.585301230867 253.1621544485571,180.51058139936595 253.4067131021472,180.47322148361542 C253.4067131021472,180.47322148361542 253.52899242894225,180.45454152574015 253.5901320923398,180.44520154680254 C253.5901320923398,180.44520154680254 253.6512717557373,180.4358615678649 253.6512717557373,180.4358615678649 "
1073
+ fill="none"
1074
+ stroke="black"
1075
+ stroke-width="2"
1076
+ />
1077
+ </g>
1078
+ <g
1079
+ class="node-layer"
1080
+ >
1081
+ <g>
1082
+ <text
1083
+ alignment-baseline="middle"
1084
+ text-anchor="end"
1085
+ transform="translate(47.140629674245915,56.929544208260616) rotate(42.76015593933792)"
1086
+ >
1087
+ 0
1088
+ </text>
1089
+ <path
1090
+ d="M191.0442564366689 190L47.140629674245915 56.929544208260616"
1091
+ stroke="grey"
1092
+ stroke-dasharray="2"
1093
+ stroke-width="1"
1094
+ />
1095
+ </g>
1096
+ <g>
1097
+ <text
1098
+ alignment-baseline="middle"
1099
+ text-anchor="end"
1100
+ transform="translate(176.66933487051617,385.4721505226946) rotate(-85.79406886544032)"
1101
+ >
1102
+ 1
1103
+ </text>
1104
+ <path
1105
+ d="M181.75434113881508 316.32553945344205L176.66933487051617 385.4721505226946"
1106
+ stroke="grey"
1107
+ stroke-dasharray="2"
1108
+ stroke-width="1"
1109
+ />
1110
+ </g>
1111
+ <g>
1112
+ <text
1113
+ alignment-baseline="middle"
1114
+ text-anchor=" start"
1115
+ transform="translate(384.8897905252257,218.98118206564644) rotate(8.503114598040845)"
1116
+ >
1117
+ 2
1118
+ </text>
1119
+ <path
1120
+ d="M378.9557435633311 218.09400302282052L384.8897905252257 218.98118206564644"
1121
+ stroke="grey"
1122
+ stroke-dasharray="2"
1123
+ stroke-width="1"
1124
+ />
1125
+ </g>
1126
+ <g>
1127
+ <text
1128
+ alignment-baseline="middle"
1129
+ text-anchor="end"
1130
+ transform="translate(-4.955494981928866,190.31215997163142) rotate(-0.0912523289214846)"
1131
+ >
1132
+ 3
1133
+ </text>
1134
+ <path
1135
+ d="M1.0444974084363707 190.3026040541325L-4.955494981928866 190.31215997163142"
1136
+ stroke="grey"
1137
+ stroke-dasharray="2"
1138
+ stroke-width="1"
1139
+ />
1140
+ </g>
1141
+ <g>
1142
+ <text
1143
+ alignment-baseline="middle"
1144
+ text-anchor=" start"
1145
+ transform="translate(384.7964933188385,160.4015084310766) rotate(351.31438074411614)"
1146
+ >
1147
+ 4
1148
+ </text>
1149
+ <path
1150
+ d="M253.6512717557373 180.4358615678649L384.7964933188385 160.4015084310766"
1151
+ stroke="grey"
1152
+ stroke-dasharray="2"
1153
+ stroke-width="1"
1154
+ />
1155
+ </g>
1156
+ </g>
1157
+ </g>
1158
+ </g>
1159
+ </svg>
1160
+ </div>,
1161
+ "debug": [Function],
1162
+ "findAllByAltText": [Function],
1163
+ "findAllByDisplayValue": [Function],
1164
+ "findAllByLabelText": [Function],
1165
+ "findAllByPlaceholderText": [Function],
1166
+ "findAllByRole": [Function],
1167
+ "findAllByTestId": [Function],
1168
+ "findAllByText": [Function],
1169
+ "findAllByTitle": [Function],
1170
+ "findByAltText": [Function],
1171
+ "findByDisplayValue": [Function],
1172
+ "findByLabelText": [Function],
1173
+ "findByPlaceholderText": [Function],
1174
+ "findByRole": [Function],
1175
+ "findByTestId": [Function],
1176
+ "findByText": [Function],
1177
+ "findByTitle": [Function],
1178
+ "getAllByAltText": [Function],
1179
+ "getAllByDisplayValue": [Function],
1180
+ "getAllByLabelText": [Function],
1181
+ "getAllByPlaceholderText": [Function],
1182
+ "getAllByRole": [Function],
1183
+ "getAllByTestId": [Function],
1184
+ "getAllByText": [Function],
1185
+ "getAllByTitle": [Function],
1186
+ "getByAltText": [Function],
1187
+ "getByDisplayValue": [Function],
1188
+ "getByLabelText": [Function],
1189
+ "getByPlaceholderText": [Function],
1190
+ "getByRole": [Function],
1191
+ "getByTestId": [Function],
1192
+ "getByText": [Function],
1193
+ "getByTitle": [Function],
1194
+ "queryAllByAltText": [Function],
1195
+ "queryAllByDisplayValue": [Function],
1196
+ "queryAllByLabelText": [Function],
1197
+ "queryAllByPlaceholderText": [Function],
1198
+ "queryAllByRole": [Function],
1199
+ "queryAllByTestId": [Function],
1200
+ "queryAllByText": [Function],
1201
+ "queryAllByTitle": [Function],
1202
+ "queryByAltText": [Function],
1203
+ "queryByDisplayValue": [Function],
1204
+ "queryByLabelText": [Function],
1205
+ "queryByPlaceholderText": [Function],
1206
+ "queryByRole": [Function],
1207
+ "queryByTestId": [Function],
1208
+ "queryByText": [Function],
1209
+ "queryByTitle": [Function],
1210
+ "rerender": [Function],
1211
+ "unmount": [Function],
1212
+ }
1213
+ `;
1214
+
1215
+ exports[`Node labels > renders a tree with aligned Node labels and a function for text 1`] = `
1216
+ {
1217
+ "asFragment": [Function],
1218
+ "baseElement": <body>
1219
+ <div>
1220
+ <svg
1221
+ data-testid="figure"
1222
+ height="400px"
1223
+ width="400px"
1224
+ xmlns="http://www.w3.org/2000/svg"
1225
+ >
1226
+ <g>
1227
+ <g
1228
+ transform="translate(10,10)"
1229
+ >
1230
+ <g
1231
+ class="branch-layer"
1232
+ >
1233
+ <path
1234
+ d="M 0.001 237.5 C0.001,237.5 0,95 0,95 C0,95 126.66666666666666,95.0005 190,95.00075000000001 C190,95.00075000000001 221.66666666666666,95.00087500000001 237.5,95.0009375 C237.5,95.0009375 245.41666666666666,95.00096875 249.375,95.000984375 C249.375,95.000984375 251.35416666666666,95.0009921875 252.34375,95.00099609375 C252.34375,95.00099609375 253.33333333333331,95.001 253.33333333333331,95.001 "
1235
+ fill="none"
1236
+ stroke="black"
1237
+ stroke-width="2"
1238
+ />
1239
+ <path
1240
+ d="M 253.33433333333332 95 C253.33433333333332,95 253.33333333333331,0 253.33333333333331,0 C253.33333333333331,0 316.66666666666663,0.0005 348.3333333333333,0.00075 C348.3333333333333,0.00075 364.16666666666663,0.000875 372.0833333333333,0.0009375 C372.0833333333333,0.0009375 376.04166666666663,0.00096875 378.0208333333333,0.000984375 C378.0208333333333,0.000984375 379.01041666666663,0.0009921875 379.5052083333333,0.00099609375 C379.5052083333333,0.00099609375 380,0.001 380,0.001 "
1241
+ fill="none"
1242
+ stroke="black"
1243
+ stroke-width="2"
1244
+ />
1245
+ <path
1246
+ d="M 253.33433333333332 95 C253.33433333333332,95 253.33333333333331,190 253.33333333333331,190 C253.33333333333331,190 316.66666666666663,190.0005 348.3333333333333,190.00074999999998 C348.3333333333333,190.00074999999998 364.16666666666663,190.000875 372.0833333333333,190.00093750000002 C372.0833333333333,190.00093750000002 376.04166666666663,190.00096875000003 378.0208333333333,190.00098437500003 C378.0208333333333,190.00098437500003 379.01041666666663,190.0009921875 379.5052083333333,190.00099609375002 C379.5052083333333,190.00099609375002 380,190.001 380,190.001 "
1247
+ fill="none"
1248
+ stroke="black"
1249
+ stroke-width="2"
1250
+ />
1251
+ <path
1252
+ d="M 0.001 237.5 C0.001,237.5 0,380 0,380 C0,380 63.33333333333333,380.0005 95,380.00075 C95,380.00075 110.83333333333333,380.00087499999995 118.75,380.00093749999996 C118.75,380.00093749999996 122.70833333333333,380.00096874999997 124.6875,380.000984375 C124.6875,380.000984375 125.67708333333333,380.00099218749995 126.171875,380.00099609374996 C126.171875,380.00099609374996 126.66666666666666,380.001 126.66666666666666,380.001 "
1253
+ fill="none"
1254
+ stroke="black"
1255
+ stroke-width="2"
1256
+ />
1257
+ </g>
1258
+ <g
1259
+ class="node-layer"
1260
+ >
1261
+ <g>
1262
+ <text
1263
+ alignment-baseline="bottom"
1264
+ text-anchor="end"
1265
+ transform="translate(374,231.5) rotate(0)"
1266
+ >
1267
+ 0
1268
+ </text>
1269
+ <path
1270
+ d="M0 237.5L374 231.5"
1271
+ stroke="grey"
1272
+ stroke-dasharray="2"
1273
+ stroke-width="1"
1274
+ />
1275
+ </g>
1276
+ <g>
1277
+ <text
1278
+ alignment-baseline="hanging"
1279
+ text-anchor="end"
1280
+ transform="translate(374,101) rotate(0)"
1281
+ >
1282
+ 1
1283
+ </text>
1284
+ <path
1285
+ d="M253.33333333333331 95L374 101"
1286
+ stroke="grey"
1287
+ stroke-dasharray="2"
1288
+ stroke-width="1"
1289
+ />
1290
+ </g>
1291
+ <g>
1292
+ <text
1293
+ alignment-baseline="middle"
1294
+ text-anchor="start"
1295
+ transform="translate(386,0) rotate(0)"
1296
+ >
1297
+ 2
1298
+ </text>
1299
+ <path
1300
+ d="M380 0L386 0"
1301
+ stroke="grey"
1302
+ stroke-dasharray="2"
1303
+ stroke-width="1"
1304
+ />
1305
+ </g>
1306
+ <g>
1307
+ <text
1308
+ alignment-baseline="middle"
1309
+ text-anchor="start"
1310
+ transform="translate(386,190) rotate(0)"
1311
+ >
1312
+ 3
1313
+ </text>
1314
+ <path
1315
+ d="M380 190L386 190"
1316
+ stroke="grey"
1317
+ stroke-dasharray="2"
1318
+ stroke-width="1"
1319
+ />
1320
+ </g>
1321
+ <g>
1322
+ <text
1323
+ alignment-baseline="middle"
1324
+ text-anchor="start"
1325
+ transform="translate(386,380) rotate(0)"
1326
+ >
1327
+ 4
1328
+ </text>
1329
+ <path
1330
+ d="M126.66666666666666 380L386 380"
1331
+ stroke="grey"
1332
+ stroke-dasharray="2"
1333
+ stroke-width="1"
1334
+ />
1335
+ </g>
1336
+ </g>
1337
+ </g>
1338
+ </g>
1339
+ </svg>
1340
+ </div>
1341
+ </body>,
1342
+ "container": <div>
1343
+ <svg
1344
+ data-testid="figure"
1345
+ height="400px"
1346
+ width="400px"
1347
+ xmlns="http://www.w3.org/2000/svg"
1348
+ >
1349
+ <g>
1350
+ <g
1351
+ transform="translate(10,10)"
1352
+ >
1353
+ <g
1354
+ class="branch-layer"
1355
+ >
1356
+ <path
1357
+ d="M 0.001 237.5 C0.001,237.5 0,95 0,95 C0,95 126.66666666666666,95.0005 190,95.00075000000001 C190,95.00075000000001 221.66666666666666,95.00087500000001 237.5,95.0009375 C237.5,95.0009375 245.41666666666666,95.00096875 249.375,95.000984375 C249.375,95.000984375 251.35416666666666,95.0009921875 252.34375,95.00099609375 C252.34375,95.00099609375 253.33333333333331,95.001 253.33333333333331,95.001 "
1358
+ fill="none"
1359
+ stroke="black"
1360
+ stroke-width="2"
1361
+ />
1362
+ <path
1363
+ d="M 253.33433333333332 95 C253.33433333333332,95 253.33333333333331,0 253.33333333333331,0 C253.33333333333331,0 316.66666666666663,0.0005 348.3333333333333,0.00075 C348.3333333333333,0.00075 364.16666666666663,0.000875 372.0833333333333,0.0009375 C372.0833333333333,0.0009375 376.04166666666663,0.00096875 378.0208333333333,0.000984375 C378.0208333333333,0.000984375 379.01041666666663,0.0009921875 379.5052083333333,0.00099609375 C379.5052083333333,0.00099609375 380,0.001 380,0.001 "
1364
+ fill="none"
1365
+ stroke="black"
1366
+ stroke-width="2"
1367
+ />
1368
+ <path
1369
+ d="M 253.33433333333332 95 C253.33433333333332,95 253.33333333333331,190 253.33333333333331,190 C253.33333333333331,190 316.66666666666663,190.0005 348.3333333333333,190.00074999999998 C348.3333333333333,190.00074999999998 364.16666666666663,190.000875 372.0833333333333,190.00093750000002 C372.0833333333333,190.00093750000002 376.04166666666663,190.00096875000003 378.0208333333333,190.00098437500003 C378.0208333333333,190.00098437500003 379.01041666666663,190.0009921875 379.5052083333333,190.00099609375002 C379.5052083333333,190.00099609375002 380,190.001 380,190.001 "
1370
+ fill="none"
1371
+ stroke="black"
1372
+ stroke-width="2"
1373
+ />
1374
+ <path
1375
+ d="M 0.001 237.5 C0.001,237.5 0,380 0,380 C0,380 63.33333333333333,380.0005 95,380.00075 C95,380.00075 110.83333333333333,380.00087499999995 118.75,380.00093749999996 C118.75,380.00093749999996 122.70833333333333,380.00096874999997 124.6875,380.000984375 C124.6875,380.000984375 125.67708333333333,380.00099218749995 126.171875,380.00099609374996 C126.171875,380.00099609374996 126.66666666666666,380.001 126.66666666666666,380.001 "
1376
+ fill="none"
1377
+ stroke="black"
1378
+ stroke-width="2"
1379
+ />
1380
+ </g>
1381
+ <g
1382
+ class="node-layer"
1383
+ >
1384
+ <g>
1385
+ <text
1386
+ alignment-baseline="bottom"
1387
+ text-anchor="end"
1388
+ transform="translate(374,231.5) rotate(0)"
1389
+ >
1390
+ 0
1391
+ </text>
1392
+ <path
1393
+ d="M0 237.5L374 231.5"
1394
+ stroke="grey"
1395
+ stroke-dasharray="2"
1396
+ stroke-width="1"
1397
+ />
1398
+ </g>
1399
+ <g>
1400
+ <text
1401
+ alignment-baseline="hanging"
1402
+ text-anchor="end"
1403
+ transform="translate(374,101) rotate(0)"
1404
+ >
1405
+ 1
1406
+ </text>
1407
+ <path
1408
+ d="M253.33333333333331 95L374 101"
1409
+ stroke="grey"
1410
+ stroke-dasharray="2"
1411
+ stroke-width="1"
1412
+ />
1413
+ </g>
1414
+ <g>
1415
+ <text
1416
+ alignment-baseline="middle"
1417
+ text-anchor="start"
1418
+ transform="translate(386,0) rotate(0)"
1419
+ >
1420
+ 2
1421
+ </text>
1422
+ <path
1423
+ d="M380 0L386 0"
1424
+ stroke="grey"
1425
+ stroke-dasharray="2"
1426
+ stroke-width="1"
1427
+ />
1428
+ </g>
1429
+ <g>
1430
+ <text
1431
+ alignment-baseline="middle"
1432
+ text-anchor="start"
1433
+ transform="translate(386,190) rotate(0)"
1434
+ >
1435
+ 3
1436
+ </text>
1437
+ <path
1438
+ d="M380 190L386 190"
1439
+ stroke="grey"
1440
+ stroke-dasharray="2"
1441
+ stroke-width="1"
1442
+ />
1443
+ </g>
1444
+ <g>
1445
+ <text
1446
+ alignment-baseline="middle"
1447
+ text-anchor="start"
1448
+ transform="translate(386,380) rotate(0)"
1449
+ >
1450
+ 4
1451
+ </text>
1452
+ <path
1453
+ d="M126.66666666666666 380L386 380"
1454
+ stroke="grey"
1455
+ stroke-dasharray="2"
1456
+ stroke-width="1"
1457
+ />
1458
+ </g>
1459
+ </g>
1460
+ </g>
1461
+ </g>
1462
+ </svg>
1463
+ </div>,
1464
+ "debug": [Function],
1465
+ "findAllByAltText": [Function],
1466
+ "findAllByDisplayValue": [Function],
1467
+ "findAllByLabelText": [Function],
1468
+ "findAllByPlaceholderText": [Function],
1469
+ "findAllByRole": [Function],
1470
+ "findAllByTestId": [Function],
1471
+ "findAllByText": [Function],
1472
+ "findAllByTitle": [Function],
1473
+ "findByAltText": [Function],
1474
+ "findByDisplayValue": [Function],
1475
+ "findByLabelText": [Function],
1476
+ "findByPlaceholderText": [Function],
1477
+ "findByRole": [Function],
1478
+ "findByTestId": [Function],
1479
+ "findByText": [Function],
1480
+ "findByTitle": [Function],
1481
+ "getAllByAltText": [Function],
1482
+ "getAllByDisplayValue": [Function],
1483
+ "getAllByLabelText": [Function],
1484
+ "getAllByPlaceholderText": [Function],
1485
+ "getAllByRole": [Function],
1486
+ "getAllByTestId": [Function],
1487
+ "getAllByText": [Function],
1488
+ "getAllByTitle": [Function],
1489
+ "getByAltText": [Function],
1490
+ "getByDisplayValue": [Function],
1491
+ "getByLabelText": [Function],
1492
+ "getByPlaceholderText": [Function],
1493
+ "getByRole": [Function],
1494
+ "getByTestId": [Function],
1495
+ "getByText": [Function],
1496
+ "getByTitle": [Function],
1497
+ "queryAllByAltText": [Function],
1498
+ "queryAllByDisplayValue": [Function],
1499
+ "queryAllByLabelText": [Function],
1500
+ "queryAllByPlaceholderText": [Function],
1501
+ "queryAllByRole": [Function],
1502
+ "queryAllByTestId": [Function],
1503
+ "queryAllByText": [Function],
1504
+ "queryAllByTitle": [Function],
1505
+ "queryByAltText": [Function],
1506
+ "queryByDisplayValue": [Function],
1507
+ "queryByLabelText": [Function],
1508
+ "queryByPlaceholderText": [Function],
1509
+ "queryByRole": [Function],
1510
+ "queryByTestId": [Function],
1511
+ "queryByText": [Function],
1512
+ "queryByTitle": [Function],
1513
+ "rerender": [Function],
1514
+ "unmount": [Function],
1515
+ }
1516
+ `;