@jbrowse/plugin-linear-genome-view 2.3.4 → 2.4.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 (193) hide show
  1. package/dist/BaseLinearDisplay/components/Block.js +1 -1
  2. package/dist/BaseLinearDisplay/components/Block.js.map +1 -1
  3. package/dist/BaseLinearDisplay/components/ServerSideRenderedBlockContent.js +11 -11
  4. package/dist/BaseLinearDisplay/components/ServerSideRenderedBlockContent.js.map +1 -1
  5. package/dist/BaseLinearDisplay/models/BaseLinearDisplayModel.d.ts +74 -4
  6. package/dist/BaseLinearDisplay/models/BaseLinearDisplayModel.js +41 -22
  7. package/dist/BaseLinearDisplay/models/BaseLinearDisplayModel.js.map +1 -1
  8. package/dist/BaseLinearDisplay/models/configSchema.js +8 -0
  9. package/dist/BaseLinearDisplay/models/configSchema.js.map +1 -1
  10. package/dist/BaseLinearDisplay/models/serverSideRenderedBlock.d.ts +1 -1
  11. package/dist/BaseLinearDisplay/models/serverSideRenderedBlock.js +5 -0
  12. package/dist/BaseLinearDisplay/models/serverSideRenderedBlock.js.map +1 -1
  13. package/dist/LinearBareDisplay/model.d.ts +62 -4
  14. package/dist/LinearBasicDisplay/model.d.ts +72 -14
  15. package/dist/LinearGenomeView/components/CenterLine.js +2 -2
  16. package/dist/LinearGenomeView/components/CenterLine.js.map +1 -1
  17. package/dist/LinearGenomeView/components/Cytobands.d.ts +118 -0
  18. package/dist/LinearGenomeView/components/Cytobands.js +92 -0
  19. package/dist/LinearGenomeView/components/Cytobands.js.map +1 -0
  20. package/dist/LinearGenomeView/components/ExportSvgDialog.d.ts +1 -1
  21. package/dist/LinearGenomeView/components/ExportSvgDialog.js +24 -3
  22. package/dist/LinearGenomeView/components/ExportSvgDialog.js.map +1 -1
  23. package/dist/LinearGenomeView/components/Gridlines.js +1 -1
  24. package/dist/LinearGenomeView/components/Gridlines.js.map +1 -1
  25. package/dist/LinearGenomeView/components/Header.js +3 -4
  26. package/dist/LinearGenomeView/components/Header.js.map +1 -1
  27. package/dist/LinearGenomeView/components/LinearGenomeView.js +1 -1
  28. package/dist/LinearGenomeView/components/MiniControls.js +5 -4
  29. package/dist/LinearGenomeView/components/MiniControls.js.map +1 -1
  30. package/dist/LinearGenomeView/components/OverviewScalebar.d.ts +1 -115
  31. package/dist/LinearGenomeView/components/OverviewScalebar.js +15 -99
  32. package/dist/LinearGenomeView/components/OverviewScalebar.js.map +1 -1
  33. package/dist/LinearGenomeView/components/RubberbandSpan.js +2 -2
  34. package/dist/LinearGenomeView/components/RubberbandSpan.js.map +1 -1
  35. package/dist/LinearGenomeView/components/TrackLabel.js +4 -5
  36. package/dist/LinearGenomeView/components/TrackLabel.js.map +1 -1
  37. package/dist/LinearGenomeView/components/ZoomControls.js +5 -4
  38. package/dist/LinearGenomeView/components/ZoomControls.js.map +1 -1
  39. package/dist/LinearGenomeView/components/util.d.ts +6 -0
  40. package/dist/LinearGenomeView/components/util.js +11 -1
  41. package/dist/LinearGenomeView/components/util.js.map +1 -1
  42. package/dist/LinearGenomeView/model.d.ts +10 -2
  43. package/dist/LinearGenomeView/model.js +4 -4
  44. package/dist/LinearGenomeView/model.js.map +1 -1
  45. package/dist/LinearGenomeView/svgcomponents/SVGBackground.d.ts +6 -0
  46. package/dist/LinearGenomeView/svgcomponents/SVGBackground.js +13 -0
  47. package/dist/LinearGenomeView/svgcomponents/SVGBackground.js.map +1 -0
  48. package/dist/LinearGenomeView/svgcomponents/SVGHeader.d.ts +10 -0
  49. package/dist/LinearGenomeView/svgcomponents/SVGHeader.js +55 -0
  50. package/dist/LinearGenomeView/svgcomponents/SVGHeader.js.map +1 -0
  51. package/dist/LinearGenomeView/svgcomponents/SVGLinearGenomeView.d.ts +13 -0
  52. package/dist/LinearGenomeView/svgcomponents/SVGLinearGenomeView.js +56 -0
  53. package/dist/LinearGenomeView/svgcomponents/SVGLinearGenomeView.js.map +1 -0
  54. package/dist/LinearGenomeView/svgcomponents/SVGRegionSeparators.d.ts +8 -0
  55. package/dist/LinearGenomeView/svgcomponents/SVGRegionSeparators.js +13 -0
  56. package/dist/LinearGenomeView/svgcomponents/SVGRegionSeparators.js.map +1 -0
  57. package/dist/LinearGenomeView/svgcomponents/SVGRuler.d.ts +8 -0
  58. package/dist/LinearGenomeView/svgcomponents/SVGRuler.js +51 -0
  59. package/dist/LinearGenomeView/svgcomponents/SVGRuler.js.map +1 -0
  60. package/dist/LinearGenomeView/svgcomponents/SVGScalebar.d.ts +8 -0
  61. package/dist/LinearGenomeView/svgcomponents/SVGScalebar.js +22 -0
  62. package/dist/LinearGenomeView/svgcomponents/SVGScalebar.js.map +1 -0
  63. package/dist/LinearGenomeView/svgcomponents/SVGTrackLabel.d.ts +8 -0
  64. package/dist/LinearGenomeView/svgcomponents/SVGTrackLabel.js +15 -0
  65. package/dist/LinearGenomeView/svgcomponents/SVGTrackLabel.js.map +1 -0
  66. package/dist/LinearGenomeView/svgcomponents/SVGTracks.d.ts +23 -0
  67. package/dist/LinearGenomeView/svgcomponents/SVGTracks.js +30 -0
  68. package/dist/LinearGenomeView/svgcomponents/SVGTracks.js.map +1 -0
  69. package/dist/LinearGenomeView/util.js +1 -1
  70. package/dist/LinearGenomeView/util.js.map +1 -1
  71. package/dist/index.d.ts +133 -18
  72. package/dist/index.js +6 -2
  73. package/dist/index.js.map +1 -1
  74. package/esm/BaseLinearDisplay/components/Block.js +1 -1
  75. package/esm/BaseLinearDisplay/components/Block.js.map +1 -1
  76. package/esm/BaseLinearDisplay/components/ServerSideRenderedBlockContent.js +11 -11
  77. package/esm/BaseLinearDisplay/components/ServerSideRenderedBlockContent.js.map +1 -1
  78. package/esm/BaseLinearDisplay/models/BaseLinearDisplayModel.d.ts +74 -4
  79. package/esm/BaseLinearDisplay/models/BaseLinearDisplayModel.js +42 -23
  80. package/esm/BaseLinearDisplay/models/BaseLinearDisplayModel.js.map +1 -1
  81. package/esm/BaseLinearDisplay/models/configSchema.js +8 -0
  82. package/esm/BaseLinearDisplay/models/configSchema.js.map +1 -1
  83. package/esm/BaseLinearDisplay/models/serverSideRenderedBlock.d.ts +1 -1
  84. package/esm/BaseLinearDisplay/models/serverSideRenderedBlock.js +5 -0
  85. package/esm/BaseLinearDisplay/models/serverSideRenderedBlock.js.map +1 -1
  86. package/esm/LinearBareDisplay/model.d.ts +62 -4
  87. package/esm/LinearBasicDisplay/model.d.ts +72 -14
  88. package/esm/LinearGenomeView/components/CenterLine.js +2 -2
  89. package/esm/LinearGenomeView/components/CenterLine.js.map +1 -1
  90. package/esm/LinearGenomeView/components/Cytobands.d.ts +118 -0
  91. package/esm/LinearGenomeView/components/Cytobands.js +87 -0
  92. package/esm/LinearGenomeView/components/Cytobands.js.map +1 -0
  93. package/esm/LinearGenomeView/components/ExportSvgDialog.d.ts +1 -1
  94. package/esm/LinearGenomeView/components/ExportSvgDialog.js +25 -4
  95. package/esm/LinearGenomeView/components/ExportSvgDialog.js.map +1 -1
  96. package/esm/LinearGenomeView/components/Gridlines.js +1 -1
  97. package/esm/LinearGenomeView/components/Gridlines.js.map +1 -1
  98. package/esm/LinearGenomeView/components/Header.js +5 -6
  99. package/esm/LinearGenomeView/components/Header.js.map +1 -1
  100. package/esm/LinearGenomeView/components/LinearGenomeView.js +1 -1
  101. package/esm/LinearGenomeView/components/MiniControls.js +5 -4
  102. package/esm/LinearGenomeView/components/MiniControls.js.map +1 -1
  103. package/esm/LinearGenomeView/components/OverviewScalebar.d.ts +1 -115
  104. package/esm/LinearGenomeView/components/OverviewScalebar.js +12 -96
  105. package/esm/LinearGenomeView/components/OverviewScalebar.js.map +1 -1
  106. package/esm/LinearGenomeView/components/RubberbandSpan.js +2 -2
  107. package/esm/LinearGenomeView/components/RubberbandSpan.js.map +1 -1
  108. package/esm/LinearGenomeView/components/TrackLabel.js +4 -5
  109. package/esm/LinearGenomeView/components/TrackLabel.js.map +1 -1
  110. package/esm/LinearGenomeView/components/ZoomControls.js +5 -4
  111. package/esm/LinearGenomeView/components/ZoomControls.js.map +1 -1
  112. package/esm/LinearGenomeView/components/util.d.ts +6 -0
  113. package/esm/LinearGenomeView/components/util.js +9 -0
  114. package/esm/LinearGenomeView/components/util.js.map +1 -1
  115. package/esm/LinearGenomeView/model.d.ts +10 -2
  116. package/esm/LinearGenomeView/model.js +2 -2
  117. package/esm/LinearGenomeView/model.js.map +1 -1
  118. package/esm/LinearGenomeView/svgcomponents/SVGBackground.d.ts +6 -0
  119. package/esm/LinearGenomeView/svgcomponents/SVGBackground.js +7 -0
  120. package/esm/LinearGenomeView/svgcomponents/SVGBackground.js.map +1 -0
  121. package/esm/LinearGenomeView/svgcomponents/SVGHeader.d.ts +10 -0
  122. package/esm/LinearGenomeView/svgcomponents/SVGHeader.js +49 -0
  123. package/esm/LinearGenomeView/svgcomponents/SVGHeader.js.map +1 -0
  124. package/esm/LinearGenomeView/svgcomponents/SVGLinearGenomeView.d.ts +13 -0
  125. package/esm/LinearGenomeView/svgcomponents/SVGLinearGenomeView.js +47 -0
  126. package/esm/LinearGenomeView/svgcomponents/SVGLinearGenomeView.js.map +1 -0
  127. package/esm/LinearGenomeView/svgcomponents/SVGRegionSeparators.d.ts +8 -0
  128. package/esm/LinearGenomeView/svgcomponents/SVGRegionSeparators.js +7 -0
  129. package/esm/LinearGenomeView/svgcomponents/SVGRegionSeparators.js.map +1 -0
  130. package/esm/LinearGenomeView/svgcomponents/SVGRuler.d.ts +8 -0
  131. package/esm/LinearGenomeView/svgcomponents/SVGRuler.js +45 -0
  132. package/esm/LinearGenomeView/svgcomponents/SVGRuler.js.map +1 -0
  133. package/esm/LinearGenomeView/svgcomponents/SVGScalebar.d.ts +8 -0
  134. package/esm/LinearGenomeView/svgcomponents/SVGScalebar.js +16 -0
  135. package/esm/LinearGenomeView/svgcomponents/SVGScalebar.js.map +1 -0
  136. package/esm/LinearGenomeView/svgcomponents/SVGTrackLabel.d.ts +8 -0
  137. package/esm/LinearGenomeView/svgcomponents/SVGTrackLabel.js +9 -0
  138. package/esm/LinearGenomeView/svgcomponents/SVGTrackLabel.js.map +1 -0
  139. package/esm/LinearGenomeView/svgcomponents/SVGTracks.d.ts +23 -0
  140. package/esm/LinearGenomeView/svgcomponents/SVGTracks.js +24 -0
  141. package/esm/LinearGenomeView/svgcomponents/SVGTracks.js.map +1 -0
  142. package/esm/LinearGenomeView/util.js +1 -1
  143. package/esm/LinearGenomeView/util.js.map +1 -1
  144. package/esm/index.d.ts +133 -18
  145. package/esm/index.js +3 -2
  146. package/esm/index.js.map +1 -1
  147. package/package.json +3 -3
  148. package/src/BaseLinearDisplay/components/Block.tsx +1 -1
  149. package/src/BaseLinearDisplay/components/ServerSideRenderedBlockContent.tsx +11 -12
  150. package/src/BaseLinearDisplay/models/BaseLinearDisplayModel.tsx +53 -35
  151. package/src/BaseLinearDisplay/models/configSchema.ts +8 -0
  152. package/src/BaseLinearDisplay/models/serverSideRenderedBlock.ts +9 -17
  153. package/src/LinearGenomeView/components/CenterLine.tsx +2 -2
  154. package/src/LinearGenomeView/components/Cytobands.tsx +154 -0
  155. package/src/LinearGenomeView/components/ExportSvgDialog.tsx +56 -4
  156. package/src/LinearGenomeView/components/Gridlines.tsx +1 -1
  157. package/src/LinearGenomeView/components/Header.tsx +6 -13
  158. package/src/LinearGenomeView/components/LinearGenomeView.test.tsx +8 -11
  159. package/src/LinearGenomeView/components/LinearGenomeView.tsx +1 -1
  160. package/src/LinearGenomeView/components/MiniControls.tsx +6 -7
  161. package/src/LinearGenomeView/components/OverviewScalebar.tsx +218 -381
  162. package/src/LinearGenomeView/components/RubberbandSpan.tsx +2 -2
  163. package/src/LinearGenomeView/components/TrackLabel.tsx +2 -5
  164. package/src/LinearGenomeView/components/ZoomControls.tsx +3 -4
  165. package/src/LinearGenomeView/components/__snapshots__/LinearGenomeView.test.tsx.snap +1234 -1200
  166. package/src/LinearGenomeView/components/util.ts +13 -0
  167. package/src/LinearGenomeView/index.test.ts +9 -5
  168. package/src/LinearGenomeView/model.ts +10 -3
  169. package/src/LinearGenomeView/svgcomponents/SVGBackground.tsx +21 -0
  170. package/src/LinearGenomeView/svgcomponents/SVGHeader.tsx +93 -0
  171. package/src/LinearGenomeView/svgcomponents/SVGLinearGenomeView.tsx +114 -0
  172. package/src/LinearGenomeView/svgcomponents/SVGRegionSeparators.tsx +31 -0
  173. package/src/LinearGenomeView/svgcomponents/SVGRuler.tsx +125 -0
  174. package/src/LinearGenomeView/svgcomponents/SVGScalebar.tsx +57 -0
  175. package/src/LinearGenomeView/svgcomponents/SVGTrackLabel.tsx +45 -0
  176. package/src/LinearGenomeView/svgcomponents/SVGTracks.tsx +67 -0
  177. package/src/LinearGenomeView/util.test.ts +7 -4
  178. package/src/LinearGenomeView/util.ts +2 -2
  179. package/src/index.ts +10 -1
  180. package/dist/LinearGenomeView/components/LinearGenomeViewSvg.d.ts +0 -4
  181. package/dist/LinearGenomeView/components/LinearGenomeViewSvg.js +0 -141
  182. package/dist/LinearGenomeView/components/LinearGenomeViewSvg.js.map +0 -1
  183. package/dist/LinearGenomeView/components/Ruler.d.ts +0 -11
  184. package/dist/LinearGenomeView/components/Ruler.js +0 -39
  185. package/dist/LinearGenomeView/components/Ruler.js.map +0 -1
  186. package/esm/LinearGenomeView/components/LinearGenomeViewSvg.d.ts +0 -4
  187. package/esm/LinearGenomeView/components/LinearGenomeViewSvg.js +0 -134
  188. package/esm/LinearGenomeView/components/LinearGenomeViewSvg.js.map +0 -1
  189. package/esm/LinearGenomeView/components/Ruler.d.ts +0 -11
  190. package/esm/LinearGenomeView/components/Ruler.js +0 -34
  191. package/esm/LinearGenomeView/components/Ruler.js.map +0 -1
  192. package/src/LinearGenomeView/components/LinearGenomeViewSvg.tsx +0 -307
  193. package/src/LinearGenomeView/components/Ruler.tsx +0 -78
@@ -1,519 +1,409 @@
1
1
  // Jest Snapshot v1, https://goo.gl/fbAQLP
2
2
 
3
3
  exports[`renders one track, one region 1`] = `
4
- <div
5
- style="position: relative;"
6
- >
7
- <div>
8
- <div
9
- style="position: relative;"
10
- >
4
+ <div>
5
+ <div
6
+ style="position: relative;"
7
+ >
8
+ <div>
11
9
  <div
12
- class="css-dznme2-rubberbandControl"
13
- role="presentation"
10
+ style="position: relative;"
14
11
  >
15
12
  <div
16
- class="css-16vhz0m-scalebar"
13
+ class="css-dznme2-rubberbandControl"
14
+ role="presentation"
17
15
  >
18
16
  <div
19
- class="css-den3n5-scalebarVisibleRegion"
20
- style="width: 800px; left: 0px; background: rgba(66, 165, 245, 0.3); border-color: #42a5f5;"
21
- />
22
- <div
23
- class="css-osn2dd-scalebarContig"
24
- style="width: 0px; left: 0px; background-color: rgb(153, 153, 153);"
25
- />
26
- <div>
27
- <p
28
- class="MuiTypography-root MuiTypography-body1 css-1hokke9-MuiTypography-root-scalebarRefName"
29
- style="left: 3px; color: rgb(153, 102, 0);"
30
- >
31
- ctgA
32
- </p>
17
+ class="css-16vhz0m-scalebar"
18
+ >
33
19
  <div
34
- class="css-c4j89u-scalebarContig-scalebarContigForward-scalebarBorder"
35
- style="left: 0px; width: 800px; border-color: rgb(153, 102, 0);"
36
- >
37
- <p
38
- class="MuiTypography-root MuiTypography-body2 css-7mggk8-MuiTypography-root-scalebarLabel"
39
- style="left: 160px; pointer-events: none; color: rgb(153, 102, 0);"
40
- >
41
- 20
42
- </p>
43
- <p
44
- class="MuiTypography-root MuiTypography-body2 css-7mggk8-MuiTypography-root-scalebarLabel"
45
- style="left: 320px; pointer-events: none; color: rgb(153, 102, 0);"
46
- >
47
- 40
48
- </p>
49
- <p
50
- class="MuiTypography-root MuiTypography-body2 css-7mggk8-MuiTypography-root-scalebarLabel"
51
- style="left: 480px; pointer-events: none; color: rgb(153, 102, 0);"
52
- >
53
- 60
54
- </p>
20
+ class="css-den3n5-scalebarVisibleRegion"
21
+ style="width: 800px; left: 0px; background: rgba(66, 165, 245, 0.3); border-color: #42a5f5;"
22
+ />
23
+ <div
24
+ class="css-2jeg0a-scalebarContig"
25
+ style="width: 0px; left: 0px; background-color: rgb(153, 153, 153);"
26
+ />
27
+ <div>
55
28
  <p
56
- class="MuiTypography-root MuiTypography-body2 css-7mggk8-MuiTypography-root-scalebarLabel"
57
- style="left: 640px; pointer-events: none; color: rgb(153, 102, 0);"
29
+ class="MuiTypography-root MuiTypography-body1 css-1hokke9-MuiTypography-root-scalebarRefName"
30
+ style="left: 3px; color: rgb(153, 102, 0);"
58
31
  >
59
- 80
32
+ ctgA
60
33
  </p>
61
- <p
62
- class="MuiTypography-root MuiTypography-body2 css-7mggk8-MuiTypography-root-scalebarLabel"
63
- style="left: 800px; pointer-events: none; color: rgb(153, 102, 0);"
34
+ <div
35
+ class="css-rtx9ov-scalebarContig-scalebarContigForward-scalebarBorder"
36
+ style="left: 0px; width: 800px; border-color: rgb(153, 102, 0);"
64
37
  >
65
- 100
66
- </p>
38
+ <p
39
+ class="MuiTypography-root MuiTypography-body2 css-7mggk8-MuiTypography-root-scalebarLabel"
40
+ style="left: 160px; pointer-events: none; color: rgb(153, 102, 0);"
41
+ >
42
+ 20
43
+ </p>
44
+ <p
45
+ class="MuiTypography-root MuiTypography-body2 css-7mggk8-MuiTypography-root-scalebarLabel"
46
+ style="left: 320px; pointer-events: none; color: rgb(153, 102, 0);"
47
+ >
48
+ 40
49
+ </p>
50
+ <p
51
+ class="MuiTypography-root MuiTypography-body2 css-7mggk8-MuiTypography-root-scalebarLabel"
52
+ style="left: 480px; pointer-events: none; color: rgb(153, 102, 0);"
53
+ >
54
+ 60
55
+ </p>
56
+ <p
57
+ class="MuiTypography-root MuiTypography-body2 css-7mggk8-MuiTypography-root-scalebarLabel"
58
+ style="left: 640px; pointer-events: none; color: rgb(153, 102, 0);"
59
+ >
60
+ 80
61
+ </p>
62
+ <p
63
+ class="MuiTypography-root MuiTypography-body2 css-7mggk8-MuiTypography-root-scalebarLabel"
64
+ style="left: 800px; pointer-events: none; color: rgb(153, 102, 0);"
65
+ >
66
+ 100
67
+ </p>
68
+ </div>
67
69
  </div>
70
+ <div
71
+ class="css-2jeg0a-scalebarContig"
72
+ style="width: 0px; left: 800px; background-color: rgb(153, 153, 153);"
73
+ />
68
74
  </div>
69
- <div
70
- class="css-osn2dd-scalebarContig"
71
- style="width: 0px; left: 800px; background-color: rgb(153, 153, 153);"
72
- />
73
75
  </div>
74
76
  </div>
75
- </div>
76
- <div
77
- class="css-1fs11k8-overview"
78
- >
79
- <svg
80
- class="css-1fsr3xw-overviewSvg"
81
- height="48"
82
- >
83
- <polygon
84
- fill="rgba(66, 165, 245, 0.3)"
85
- points="0,48,101,48,800,0,0,0"
86
- stroke="rgba(66, 165, 245, 0.8)"
87
- />
88
- </svg>
89
77
  <div
90
- class="css-ig8oez-headerBar"
78
+ class="css-1fs11k8-overview"
91
79
  >
92
- <button
93
- class="MuiButtonBase-root MuiButton-root MuiButton-text MuiButton-textSecondary MuiButton-sizeMedium MuiButton-textSizeMedium MuiButton-root MuiButton-text MuiButton-textSecondary MuiButton-sizeMedium MuiButton-textSizeMedium css-10u97y-MuiButtonBase-root-MuiButton-root-toggleButton"
94
- tabindex="0"
95
- title="Open track selector"
96
- type="button"
97
- value="track_select"
80
+ <svg
81
+ class="css-1fsr3xw-overviewSvg"
82
+ height="48"
98
83
  >
99
- <svg
100
- aria-hidden="true"
101
- class="MuiSvgIcon-root MuiSvgIcon-fontSizeMedium css-1mgxsmk-MuiSvgIcon-root-buttonSpacer"
102
- focusable="false"
103
- viewBox="0 0 24 24"
104
- >
105
- <path
106
- d="M21 19v-2H8v2h13m0-6v-2H8v2h13M8 7h13V5H8v2M4 5v2h2V5H4M3 5a1 1 0 011-1h2a1 1 0 011 1v2a1 1 0 01-1 1H4a1 1 0 01-1-1V5m1 6v2h2v-2H4m-1 0a1 1 0 011-1h2a1 1 0 011 1v2a1 1 0 01-1 1H4a1 1 0 01-1-1v-2m1 6v2h2v-2H4m-1 0a1 1 0 011-1h2a1 1 0 011 1v2a1 1 0 01-1 1H4a1 1 0 01-1-1v-2z"
107
- />
108
- </svg>
109
- <span
110
- class="MuiTouchRipple-root css-8je8zh-MuiTouchRipple-root"
84
+ <polygon
85
+ fill="rgba(66, 165, 245, 0.3)"
86
+ points="0,48,101,48,800,0,0,0"
87
+ stroke="rgba(66, 165, 245, 0.8)"
111
88
  />
112
- </button>
113
- <div
114
- class="css-1n1xfjh-spacer"
115
- />
89
+ </svg>
116
90
  <div
117
- class="MuiFormGroup-root MuiFormGroup-row css-1gwpy8f-MuiFormGroup-root-headerForm"
91
+ class="css-cwpsam-headerBar"
118
92
  >
119
93
  <button
120
- class="MuiButtonBase-root MuiButton-root MuiButton-outlined MuiButton-outlinedPrimary MuiButton-sizeMedium MuiButton-outlinedSizeMedium MuiButton-root MuiButton-outlined MuiButton-outlinedPrimary MuiButton-sizeMedium MuiButton-outlinedSizeMedium css-1dgnv6i-MuiButtonBase-root-MuiButton-root-panButton"
94
+ class="MuiButtonBase-root MuiIconButton-root MuiIconButton-sizeMedium css-7xx2bb-MuiButtonBase-root-MuiIconButton-root-toggleButton"
121
95
  tabindex="0"
96
+ title="Open track selector"
122
97
  type="button"
98
+ value="track_select"
123
99
  >
124
100
  <svg
125
101
  aria-hidden="true"
126
- class="MuiSvgIcon-root MuiSvgIcon-fontSizeMedium css-i4bv87-MuiSvgIcon-root"
127
- data-testid="ArrowBackIcon"
102
+ class="MuiSvgIcon-root MuiSvgIcon-fontSizeMedium css-1mgxsmk-MuiSvgIcon-root-buttonSpacer"
128
103
  focusable="false"
129
104
  viewBox="0 0 24 24"
130
105
  >
131
106
  <path
132
- d="M20 11H7.83l5.59-5.59L12 4l-8 8 8 8 1.41-1.41L7.83 13H20v-2z"
107
+ d="M21 19v-2H8v2h13m0-6v-2H8v2h13M8 7h13V5H8v2M4 5v2h2V5H4M3 5a1 1 0 011-1h2a1 1 0 011 1v2a1 1 0 01-1 1H4a1 1 0 01-1-1V5m1 6v2h2v-2H4m-1 0a1 1 0 011-1h2a1 1 0 011 1v2a1 1 0 01-1 1H4a1 1 0 01-1-1v-2m1 6v2h2v-2H4m-1 0a1 1 0 011-1h2a1 1 0 011 1v2a1 1 0 01-1 1H4a1 1 0 01-1-1v-2z"
133
108
  />
134
109
  </svg>
135
110
  <span
136
111
  class="MuiTouchRipple-root css-8je8zh-MuiTouchRipple-root"
137
112
  />
138
113
  </button>
139
- <button
140
- class="MuiButtonBase-root MuiButton-root MuiButton-outlined MuiButton-outlinedPrimary MuiButton-sizeMedium MuiButton-outlinedSizeMedium MuiButton-root MuiButton-outlined MuiButton-outlinedPrimary MuiButton-sizeMedium MuiButton-outlinedSizeMedium css-1dgnv6i-MuiButtonBase-root-MuiButton-root-panButton"
141
- tabindex="0"
142
- type="button"
114
+ <div
115
+ class="css-1n1xfjh-spacer"
116
+ />
117
+ <div
118
+ class="MuiFormGroup-root MuiFormGroup-row css-1gwpy8f-MuiFormGroup-root-headerForm"
143
119
  >
144
- <svg
145
- aria-hidden="true"
146
- class="MuiSvgIcon-root MuiSvgIcon-fontSizeMedium css-i4bv87-MuiSvgIcon-root"
147
- data-testid="ArrowForwardIcon"
148
- focusable="false"
149
- viewBox="0 0 24 24"
120
+ <button
121
+ class="MuiButtonBase-root MuiButton-root MuiButton-outlined MuiButton-outlinedPrimary MuiButton-sizeMedium MuiButton-outlinedSizeMedium MuiButton-root MuiButton-outlined MuiButton-outlinedPrimary MuiButton-sizeMedium MuiButton-outlinedSizeMedium css-1bqryi1-MuiButtonBase-root-MuiButton-root-panButton"
122
+ tabindex="0"
123
+ type="button"
150
124
  >
151
- <path
152
- d="m12 4-1.41 1.41L16.17 11H4v2h12.17l-5.58 5.59L12 20l8-8z"
125
+ <svg
126
+ aria-hidden="true"
127
+ class="MuiSvgIcon-root MuiSvgIcon-fontSizeMedium css-i4bv87-MuiSvgIcon-root"
128
+ data-testid="ArrowBackIcon"
129
+ focusable="false"
130
+ viewBox="0 0 24 24"
131
+ >
132
+ <path
133
+ d="M20 11H7.83l5.59-5.59L12 4l-8 8 8 8 1.41-1.41L7.83 13H20v-2z"
134
+ />
135
+ </svg>
136
+ <span
137
+ class="MuiTouchRipple-root css-8je8zh-MuiTouchRipple-root"
153
138
  />
154
- </svg>
155
- <span
156
- class="MuiTouchRipple-root css-8je8zh-MuiTouchRipple-root"
157
- />
158
- </button>
159
- <div
160
- class="MuiAutocomplete-root css-1qqsdnr-MuiAutocomplete-root"
161
- data-testid="autocomplete"
162
- style="width: 200px;"
163
- >
139
+ </button>
140
+ <button
141
+ class="MuiButtonBase-root MuiButton-root MuiButton-outlined MuiButton-outlinedPrimary MuiButton-sizeMedium MuiButton-outlinedSizeMedium MuiButton-root MuiButton-outlined MuiButton-outlinedPrimary MuiButton-sizeMedium MuiButton-outlinedSizeMedium css-1bqryi1-MuiButtonBase-root-MuiButton-root-panButton"
142
+ tabindex="0"
143
+ type="button"
144
+ >
145
+ <svg
146
+ aria-hidden="true"
147
+ class="MuiSvgIcon-root MuiSvgIcon-fontSizeMedium css-i4bv87-MuiSvgIcon-root"
148
+ data-testid="ArrowForwardIcon"
149
+ focusable="false"
150
+ viewBox="0 0 24 24"
151
+ >
152
+ <path
153
+ d="m12 4-1.41 1.41L16.17 11H4v2h12.17l-5.58 5.59L12 20l8-8z"
154
+ />
155
+ </svg>
156
+ <span
157
+ class="MuiTouchRipple-root css-8je8zh-MuiTouchRipple-root"
158
+ />
159
+ </button>
164
160
  <div
165
- class="MuiFormControl-root MuiFormControl-fullWidth MuiTextField-root css-1efd6m0-MuiFormControl-root-MuiTextField-root-headerRefName"
166
- style="margin: 7px; min-width: 175px;"
161
+ class="MuiAutocomplete-root css-l3ln04-MuiAutocomplete-root"
162
+ data-testid="autocomplete"
163
+ style="width: 200px;"
167
164
  >
168
165
  <div
169
- class="MuiInputBase-root MuiOutlinedInput-root MuiInputBase-colorPrimary MuiInputBase-fullWidth MuiInputBase-formControl MuiInputBase-adornedEnd MuiAutocomplete-inputRoot css-154xyx0-MuiInputBase-root-MuiOutlinedInput-root"
170
- style="padding: 0px; height: 32px; background: rgba(255, 255, 255, 0.8);"
166
+ class="MuiFormControl-root MuiFormControl-fullWidth MuiTextField-root css-1efd6m0-MuiFormControl-root-MuiTextField-root-headerRefName"
167
+ style="margin: 7px; min-width: 175px;"
171
168
  >
172
- <input
173
- aria-autocomplete="list"
174
- aria-expanded="false"
175
- aria-invalid="false"
176
- autocapitalize="none"
177
- autocomplete="off"
178
- class="MuiInputBase-input MuiOutlinedInput-input MuiInputBase-inputAdornedEnd MuiAutocomplete-input MuiAutocomplete-inputFocused css-nxo287-MuiInputBase-input-MuiOutlinedInput-input"
179
- id="refNameAutocomplete-lgv"
180
- placeholder="Search for location"
181
- role="combobox"
182
- spellcheck="false"
183
- type="text"
184
- value="ctgA:1..100"
185
- />
186
169
  <div
187
- class="MuiInputAdornment-root MuiInputAdornment-positionEnd MuiInputAdornment-outlined MuiInputAdornment-sizeMedium css-1laqsz7-MuiInputAdornment-root"
188
- style="margin-right: 7px;"
170
+ class="MuiInputBase-root MuiOutlinedInput-root MuiInputBase-colorPrimary MuiInputBase-fullWidth MuiInputBase-formControl MuiInputBase-adornedEnd MuiAutocomplete-inputRoot css-154xyx0-MuiInputBase-root-MuiOutlinedInput-root"
171
+ style="padding: 0px; height: 32px; background: rgba(255, 255, 255, 0.8);"
189
172
  >
190
- <svg
191
- aria-hidden="true"
192
- class="MuiSvgIcon-root MuiSvgIcon-fontSizeSmall css-ptiqhd-MuiSvgIcon-root"
193
- data-testid="SearchIcon"
194
- focusable="false"
195
- viewBox="0 0 24 24"
196
- >
197
- <path
198
- d="M15.5 14h-.79l-.28-.27C15.41 12.59 16 11.11 16 9.5 16 5.91 13.09 3 9.5 3S3 5.91 3 9.5 5.91 16 9.5 16c1.61 0 3.09-.59 4.23-1.57l.27.28v.79l5 4.99L20.49 19l-4.99-5zm-6 0C7.01 14 5 11.99 5 9.5S7.01 5 9.5 5 14 7.01 14 9.5 11.99 14 9.5 14z"
199
- />
200
- </svg>
201
- <button
202
- class="MuiButtonBase-root MuiIconButton-root MuiIconButton-sizeSmall css-1pe4mpk-MuiButtonBase-root-MuiIconButton-root"
203
- tabindex="0"
204
- type="button"
173
+ <input
174
+ aria-autocomplete="list"
175
+ aria-expanded="false"
176
+ aria-invalid="false"
177
+ autocapitalize="none"
178
+ autocomplete="off"
179
+ class="MuiInputBase-input MuiOutlinedInput-input MuiInputBase-inputAdornedEnd MuiAutocomplete-input MuiAutocomplete-inputFocused css-nxo287-MuiInputBase-input-MuiOutlinedInput-input"
180
+ id="refNameAutocomplete-lgv"
181
+ placeholder="Search for location"
182
+ role="combobox"
183
+ spellcheck="false"
184
+ type="text"
185
+ value="ctgA:1..100"
186
+ />
187
+ <div
188
+ class="MuiInputAdornment-root MuiInputAdornment-positionEnd MuiInputAdornment-outlined MuiInputAdornment-sizeMedium css-1laqsz7-MuiInputAdornment-root"
189
+ style="margin-right: 7px;"
205
190
  >
206
191
  <svg
207
192
  aria-hidden="true"
208
193
  class="MuiSvgIcon-root MuiSvgIcon-fontSizeSmall css-ptiqhd-MuiSvgIcon-root"
209
- data-testid="HelpIcon"
194
+ data-testid="SearchIcon"
210
195
  focusable="false"
211
196
  viewBox="0 0 24 24"
212
197
  >
213
198
  <path
214
- d="M12 2C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zm1 17h-2v-2h2v2zm2.07-7.75-.9.92C13.45 12.9 13 13.5 13 15h-2v-.5c0-1.1.45-2.1 1.17-2.83l1.24-1.26c.37-.36.59-.86.59-1.41 0-1.1-.9-2-2-2s-2 .9-2 2H8c0-2.21 1.79-4 4-4s4 1.79 4 4c0 .88-.36 1.68-.93 2.25z"
199
+ d="M15.5 14h-.79l-.28-.27C15.41 12.59 16 11.11 16 9.5 16 5.91 13.09 3 9.5 3S3 5.91 3 9.5 5.91 16 9.5 16c1.61 0 3.09-.59 4.23-1.57l.27.28v.79l5 4.99L20.49 19l-4.99-5zm-6 0C7.01 14 5 11.99 5 9.5S7.01 5 9.5 5 14 7.01 14 9.5 11.99 14 9.5 14z"
215
200
  />
216
201
  </svg>
217
- <span
218
- class="MuiTouchRipple-root css-8je8zh-MuiTouchRipple-root"
219
- />
220
- </button>
221
- </div>
222
- <fieldset
223
- aria-hidden="true"
224
- class="MuiOutlinedInput-notchedOutline css-1d3z3hw-MuiOutlinedInput-notchedOutline"
225
- >
226
- <legend
227
- class="css-ihdtdm"
202
+ <button
203
+ class="MuiButtonBase-root MuiIconButton-root MuiIconButton-sizeSmall css-1pe4mpk-MuiButtonBase-root-MuiIconButton-root"
204
+ tabindex="0"
205
+ type="button"
206
+ >
207
+ <svg
208
+ aria-hidden="true"
209
+ class="MuiSvgIcon-root MuiSvgIcon-fontSizeSmall css-ptiqhd-MuiSvgIcon-root"
210
+ data-testid="HelpIcon"
211
+ focusable="false"
212
+ viewBox="0 0 24 24"
213
+ >
214
+ <path
215
+ d="M12 2C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zm1 17h-2v-2h2v2zm2.07-7.75-.9.92C13.45 12.9 13 13.5 13 15h-2v-.5c0-1.1.45-2.1 1.17-2.83l1.24-1.26c.37-.36.59-.86.59-1.41 0-1.1-.9-2-2-2s-2 .9-2 2H8c0-2.21 1.79-4 4-4s4 1.79 4 4c0 .88-.36 1.68-.93 2.25z"
216
+ />
217
+ </svg>
218
+ <span
219
+ class="MuiTouchRipple-root css-8je8zh-MuiTouchRipple-root"
220
+ />
221
+ </button>
222
+ </div>
223
+ <fieldset
224
+ aria-hidden="true"
225
+ class="MuiOutlinedInput-notchedOutline css-1d3z3hw-MuiOutlinedInput-notchedOutline"
228
226
  >
229
- <span
230
- class="notranslate"
227
+ <legend
228
+ class="css-ihdtdm"
231
229
  >
232
-
233
- </span>
234
- </legend>
235
- </fieldset>
230
+ <span
231
+ class="notranslate"
232
+ >
233
+
234
+ </span>
235
+ </legend>
236
+ </fieldset>
237
+ </div>
236
238
  </div>
237
239
  </div>
238
240
  </div>
239
- </div>
240
- <p
241
- class="MuiTypography-root MuiTypography-body2 css-1lztmv5-MuiTypography-root-bp"
242
- >
243
- 100bp
244
- </p>
245
- <div
246
- class="css-z84q6m-container"
247
- >
248
- <button
249
- class="MuiButtonBase-root Mui-disabled MuiIconButton-root Mui-disabled MuiIconButton-colorSecondary MuiIconButton-sizeLarge css-1f88mc5-MuiButtonBase-root-MuiIconButton-root"
250
- data-testid="zoom_out"
251
- disabled=""
252
- tabindex="-1"
253
- type="button"
241
+ <p
242
+ class="MuiTypography-root MuiTypography-body2 css-1lztmv5-MuiTypography-root-bp"
254
243
  >
255
- <svg
256
- aria-hidden="true"
257
- class="MuiSvgIcon-root MuiSvgIcon-fontSizeMedium css-i4bv87-MuiSvgIcon-root"
258
- data-testid="ZoomOutIcon"
259
- focusable="false"
260
- viewBox="0 0 24 24"
261
- >
262
- <path
263
- d="M15.5 14h-.79l-.28-.27C15.41 12.59 16 11.11 16 9.5 16 5.91 13.09 3 9.5 3S3 5.91 3 9.5 5.91 16 9.5 16c1.61 0 3.09-.59 4.23-1.57l.27.28v.79l5 4.99L20.49 19l-4.99-5zm-6 0C7.01 14 5 11.99 5 9.5S7.01 5 9.5 5 14 7.01 14 9.5 11.99 14 9.5 14zM7 9h5v1H7z"
264
- />
265
- </svg>
266
- </button>
267
- <span
268
- class="MuiSlider-root MuiSlider-colorPrimary MuiSlider-sizeSmall css-s3dms4-MuiSlider-root-slider"
244
+ 100bp
245
+ </p>
246
+ <div
247
+ class="css-z84q6m-container"
269
248
  >
249
+ <button
250
+ class="MuiButtonBase-root Mui-disabled MuiIconButton-root Mui-disabled MuiIconButton-sizeLarge css-mf1cb5-MuiButtonBase-root-MuiIconButton-root"
251
+ data-testid="zoom_out"
252
+ disabled=""
253
+ tabindex="-1"
254
+ type="button"
255
+ >
256
+ <svg
257
+ aria-hidden="true"
258
+ class="MuiSvgIcon-root MuiSvgIcon-fontSizeMedium css-i4bv87-MuiSvgIcon-root"
259
+ data-testid="ZoomOutIcon"
260
+ focusable="false"
261
+ viewBox="0 0 24 24"
262
+ >
263
+ <path
264
+ d="M15.5 14h-.79l-.28-.27C15.41 12.59 16 11.11 16 9.5 16 5.91 13.09 3 9.5 3S3 5.91 3 9.5 5.91 16 9.5 16c1.61 0 3.09-.59 4.23-1.57l.27.28v.79l5 4.99L20.49 19l-4.99-5zm-6 0C7.01 14 5 11.99 5 9.5S7.01 5 9.5 5 14 7.01 14 9.5 11.99 14 9.5 14zM7 9h5v1H7z"
265
+ />
266
+ </svg>
267
+ </button>
270
268
  <span
271
- class="MuiSlider-rail css-14pt78w-MuiSlider-rail"
272
- />
273
- <span
274
- class="MuiSlider-track css-1n40zqk-MuiSlider-track"
275
- style="left: 0%; width: 0%;"
276
- />
277
- <span
278
- class="MuiSlider-thumb MuiSlider-thumbSizeSmall MuiSlider-thumbColorPrimary css-14gf62f-MuiSlider-thumb"
279
- data-focusvisible="false"
280
- data-index="0"
281
- style="left: 0%;"
269
+ class="MuiSlider-root MuiSlider-colorPrimary MuiSlider-sizeSmall css-1ub3usb-MuiSlider-root-slider"
282
270
  >
283
- <input
284
- aria-orientation="horizontal"
285
- aria-valuemax="564.3856189774724"
286
- aria-valuemin="284.799690655495"
287
- aria-valuenow="284.799690655495"
288
- data-index="0"
289
- max="564.3856189774724"
290
- min="284.799690655495"
291
- step="1"
292
- style="border: 0px; height: 100%; margin: -1px; overflow: hidden; padding: 0px; position: absolute; white-space: nowrap; width: 100%; direction: ltr;"
293
- type="range"
294
- value="284.799690655495"
271
+ <span
272
+ class="MuiSlider-rail css-14pt78w-MuiSlider-rail"
295
273
  />
274
+ <span
275
+ class="MuiSlider-track css-1n40zqk-MuiSlider-track"
276
+ style="left: 0%; width: 0%;"
277
+ />
278
+ <span
279
+ class="MuiSlider-thumb MuiSlider-thumbSizeSmall MuiSlider-thumbColorPrimary css-14gf62f-MuiSlider-thumb"
280
+ data-focusvisible="false"
281
+ data-index="0"
282
+ style="left: 0%;"
283
+ >
284
+ <input
285
+ aria-orientation="horizontal"
286
+ aria-valuemax="564.3856189774724"
287
+ aria-valuemin="284.799690655495"
288
+ aria-valuenow="284.799690655495"
289
+ data-index="0"
290
+ max="564.3856189774724"
291
+ min="284.799690655495"
292
+ step="1"
293
+ style="border: 0px; height: 100%; margin: -1px; overflow: hidden; padding: 0px; position: absolute; white-space: nowrap; width: 100%; direction: ltr;"
294
+ type="range"
295
+ value="284.799690655495"
296
+ />
297
+ </span>
296
298
  </span>
297
- </span>
298
- <button
299
- class="MuiButtonBase-root MuiIconButton-root MuiIconButton-colorSecondary MuiIconButton-sizeLarge css-1f88mc5-MuiButtonBase-root-MuiIconButton-root"
300
- data-testid="zoom_in"
301
- tabindex="0"
302
- type="button"
303
- >
304
- <svg
305
- aria-hidden="true"
306
- class="MuiSvgIcon-root MuiSvgIcon-fontSizeMedium css-i4bv87-MuiSvgIcon-root"
307
- data-testid="ZoomInIcon"
308
- focusable="false"
309
- viewBox="0 0 24 24"
299
+ <button
300
+ class="MuiButtonBase-root MuiIconButton-root MuiIconButton-sizeLarge css-mf1cb5-MuiButtonBase-root-MuiIconButton-root"
301
+ data-testid="zoom_in"
302
+ tabindex="0"
303
+ type="button"
310
304
  >
311
- <path
312
- d="M15.5 14h-.79l-.28-.27C15.41 12.59 16 11.11 16 9.5 16 5.91 13.09 3 9.5 3S3 5.91 3 9.5 5.91 16 9.5 16c1.61 0 3.09-.59 4.23-1.57l.27.28v.79l5 4.99L20.49 19l-4.99-5zm-6 0C7.01 14 5 11.99 5 9.5S7.01 5 9.5 5 14 7.01 14 9.5 11.99 14 9.5 14z"
313
- />
314
- <path
315
- d="M12 10h-2v2H9v-2H7V9h2V7h1v2h2v1z"
305
+ <svg
306
+ aria-hidden="true"
307
+ class="MuiSvgIcon-root MuiSvgIcon-fontSizeMedium css-i4bv87-MuiSvgIcon-root"
308
+ data-testid="ZoomInIcon"
309
+ focusable="false"
310
+ viewBox="0 0 24 24"
311
+ >
312
+ <path
313
+ d="M15.5 14h-.79l-.28-.27C15.41 12.59 16 11.11 16 9.5 16 5.91 13.09 3 9.5 3S3 5.91 3 9.5 5.91 16 9.5 16c1.61 0 3.09-.59 4.23-1.57l.27.28v.79l5 4.99L20.49 19l-4.99-5zm-6 0C7.01 14 5 11.99 5 9.5S7.01 5 9.5 5 14 7.01 14 9.5 11.99 14 9.5 14z"
314
+ />
315
+ <path
316
+ d="M12 10h-2v2H9v-2H7V9h2V7h1v2h2v1z"
317
+ />
318
+ </svg>
319
+ <span
320
+ class="MuiTouchRipple-root css-8je8zh-MuiTouchRipple-root"
316
321
  />
317
- </svg>
318
- <span
319
- class="MuiTouchRipple-root css-8je8zh-MuiTouchRipple-root"
320
- />
321
- </button>
322
- </div>
323
- <div
324
- class="css-1n1xfjh-spacer"
325
- />
326
- </div>
327
- </div>
328
- </div>
329
- <div
330
- class="css-75rarj-tracksContainer"
331
- data-testid="trackContainer"
332
- >
333
- <div
334
- class="css-1rfvwmf-verticalGuidesZoomContainer"
335
- >
336
- <div
337
- class="css-17gfnt3-verticalGuidesContainer"
338
- style="left: -800px; width: 1700px;"
339
- >
340
- <div
341
- class="css-a9ifge-boundaryPaddingBlock"
342
- style="width: 800px;"
343
- />
344
- <div
345
- class="css-1dmfa10-contentBlock"
346
- style="width: 100px;"
347
- >
348
- <div
349
- class="css-1nnah7t-tick-majorTick"
350
- style="left: -1px;"
351
- />
352
- <div
353
- class="css-i794sq-tick-minorTick"
354
- style="left: 19px;"
355
- />
356
- <div
357
- class="css-i794sq-tick-minorTick"
358
- style="left: 39px;"
359
- />
360
- <div
361
- class="css-i794sq-tick-minorTick"
362
- style="left: 59px;"
363
- />
364
- <div
365
- class="css-i794sq-tick-minorTick"
366
- style="left: 79px;"
367
- />
368
- <div
369
- class="css-i794sq-tick-minorTick"
370
- style="left: 99px;"
371
- />
322
+ </button>
323
+ </div>
372
324
  <div
373
- class="css-i794sq-tick-minorTick"
374
- style="left: 119px;"
325
+ class="css-1n1xfjh-spacer"
375
326
  />
376
327
  </div>
377
- <div
378
- class="css-a9ifge-boundaryPaddingBlock"
379
- style="width: 800px;"
380
- />
381
328
  </div>
382
329
  </div>
383
330
  <div
384
- class="css-dznme2-rubberbandControl"
385
- data-testid="rubberband_controls"
331
+ class="css-75rarj-tracksContainer"
332
+ data-testid="trackContainer"
386
333
  >
387
334
  <div
388
- class="MuiPaper-root MuiPaper-outlined MuiPaper-rounded css-1coqp07-MuiPaper-root-scalebarContainer"
389
- data-resizer="true"
390
- style="height: 17px; box-sizing: border-box;"
335
+ class="css-1rfvwmf-verticalGuidesZoomContainer"
391
336
  >
392
337
  <div
393
- class="css-khofof-scalebarZoomContainer"
338
+ class="css-17gfnt3-verticalGuidesContainer"
339
+ style="left: -800px; width: 1700px;"
394
340
  >
395
341
  <div
396
- class="css-y3821b-scalebar"
397
- style="left: -801px; width: 1700px; height: 17px; box-sizing: border-box;"
342
+ class="css-a9ifge-boundaryPaddingBlock"
343
+ style="width: 800px;"
344
+ />
345
+ <div
346
+ class="css-1dmfa10-contentBlock"
347
+ style="width: 100px;"
398
348
  >
399
349
  <div
400
- class="css-a9ifge-boundaryPaddingBlock"
401
- style="background: none; width: 800px;"
350
+ class="css-i794sq-tick-minorTick"
351
+ style="left: -21px;"
402
352
  />
403
353
  <div
404
- class="css-1dmfa10-contentBlock"
405
- style="width: 100px;"
406
- >
407
- <div
408
- class="css-1f3h2yl-tick"
409
- style="left: -1px;"
410
- />
411
- </div>
354
+ class="css-1qcgmte-tick-majorTick"
355
+ style="left: -1px;"
356
+ />
412
357
  <div
413
- class="css-a9ifge-boundaryPaddingBlock"
414
- style="background: none; width: 800px;"
358
+ class="css-i794sq-tick-minorTick"
359
+ style="left: 19px;"
415
360
  />
416
- </div>
417
- </div>
418
- <p
419
- class="MuiTypography-root MuiTypography-body1 css-1vlu65o-MuiTypography-root-refLabel"
420
- data-testid="refLabel-ctgA"
421
- style="left: -1px; padding-left: 1px;"
422
- >
423
- ctgA
424
- </p>
425
- </div>
426
- </div>
427
- <div
428
- class="MuiPaper-root MuiPaper-outlined MuiPaper-rounded css-dewezf-MuiPaper-root-root"
429
- >
430
- <div
431
- class="MuiPaper-root MuiPaper-elevation MuiPaper-rounded MuiPaper-elevation1 css-lv7b0o-MuiPaper-root-trackLabel-trackLabelOverlap-root"
432
- >
433
- <span
434
- class="css-10js96-dragHandle"
435
- data-testid="dragHandle-lgv-testConfig"
436
- draggable="true"
437
- >
438
- <svg
439
- aria-hidden="true"
440
- class="MuiSvgIcon-root MuiSvgIcon-fontSizeSmall css-1cz9l96-MuiSvgIcon-root-dragHandleIcon"
441
- data-testid="DragIndicatorIcon"
442
- focusable="false"
443
- viewBox="0 0 24 24"
444
- >
445
- <path
446
- d="M11 18c0 1.1-.9 2-2 2s-2-.9-2-2 .9-2 2-2 2 .9 2 2zm-2-8c-1.1 0-2 .9-2 2s.9 2 2 2 2-.9 2-2-.9-2-2-2zm0-6c-1.1 0-2 .9-2 2s.9 2 2 2 2-.9 2-2-.9-2-2-2zm6 4c1.1 0 2-.9 2-2s-.9-2-2-2-2 .9-2 2 .9 2 2 2zm0 2c-1.1 0-2 .9-2 2s.9 2 2 2 2-.9 2-2-.9-2-2-2zm0 6c-1.1 0-2 .9-2 2s.9 2 2 2 2-.9 2-2-.9-2-2-2z"
447
- />
448
- </svg>
449
- </span>
450
- <button
451
- class="MuiButtonBase-root MuiIconButton-root MuiIconButton-colorSecondary MuiIconButton-sizeMedium css-9e64ep-MuiButtonBase-root-MuiIconButton-root-iconButton"
452
- tabindex="0"
453
- title="close this track"
454
- type="button"
455
- >
456
- <svg
457
- aria-hidden="true"
458
- class="MuiSvgIcon-root MuiSvgIcon-fontSizeSmall css-ptiqhd-MuiSvgIcon-root"
459
- data-testid="CloseIcon"
460
- focusable="false"
461
- viewBox="0 0 24 24"
462
- >
463
- <path
464
- d="M19 6.41 17.59 5 12 10.59 6.41 5 5 6.41 10.59 12 5 17.59 6.41 19 12 13.41 17.59 19 19 17.59 13.41 12z"
361
+ <div
362
+ class="css-i794sq-tick-minorTick"
363
+ style="left: 39px;"
465
364
  />
466
- </svg>
467
- <span
468
- class="MuiTouchRipple-root css-8je8zh-MuiTouchRipple-root"
469
- />
470
- </button>
471
- <span
472
- class="MuiTypography-root MuiTypography-body1 css-877agm-MuiTypography-root-trackName"
473
- >
474
- <span>
475
- Foo Track
476
- </span>
477
- </span>
478
- <button
479
- aria-haspopup="true"
480
- class="MuiButtonBase-root MuiIconButton-root MuiIconButton-colorSecondary MuiIconButton-sizeMedium css-9e64ep-MuiButtonBase-root-MuiIconButton-root-iconButton"
481
- data-testid="track_menu_icon"
482
- tabindex="0"
483
- type="button"
484
- >
485
- <svg
486
- aria-hidden="true"
487
- class="MuiSvgIcon-root MuiSvgIcon-fontSizeSmall css-ptiqhd-MuiSvgIcon-root"
488
- data-testid="MoreVertIcon"
489
- focusable="false"
490
- viewBox="0 0 24 24"
491
- >
492
- <path
493
- d="M12 8c1.1 0 2-.9 2-2s-.9-2-2-2-2 .9-2 2 .9 2 2 2zm0 2c-1.1 0-2 .9-2 2s.9 2 2 2 2-.9 2-2-.9-2-2-2zm0 6c-1.1 0-2 .9-2 2s.9 2 2 2 2-.9 2-2-.9-2-2-2z"
365
+ <div
366
+ class="css-i794sq-tick-minorTick"
367
+ style="left: 59px;"
494
368
  />
495
- </svg>
496
- <span
497
- class="MuiTouchRipple-root css-8je8zh-MuiTouchRipple-root"
369
+ <div
370
+ class="css-i794sq-tick-minorTick"
371
+ style="left: 79px;"
372
+ />
373
+ <div
374
+ class="css-i794sq-tick-minorTick"
375
+ style="left: 99px;"
376
+ />
377
+ <div
378
+ class="css-i794sq-tick-minorTick"
379
+ style="left: 119px;"
380
+ />
381
+ <div
382
+ class="css-i794sq-tick-minorTick"
383
+ style="left: 139px;"
384
+ />
385
+ </div>
386
+ <div
387
+ class="css-a9ifge-boundaryPaddingBlock"
388
+ style="width: 800px;"
498
389
  />
499
- </button>
390
+ </div>
500
391
  </div>
501
392
  <div
502
- class="css-1ql7uaq-trackRenderingContainer"
503
- data-testid="trackRenderingContainer-lgv-testConfig"
504
- style="height: 100px;"
393
+ class="css-dznme2-rubberbandControl"
394
+ data-testid="rubberband_controls"
505
395
  >
506
396
  <div
507
- class="css-v11ioz-renderingComponentContainer"
508
- style="transform: scaleX(1);"
397
+ class="MuiPaper-root MuiPaper-outlined MuiPaper-rounded css-1coqp07-MuiPaper-root-scalebarContainer"
398
+ data-resizer="true"
399
+ style="height: 17px; box-sizing: border-box;"
509
400
  >
510
401
  <div
511
- class="css-1y9lrrz-display"
512
- data-testid="display-testConfig-LinearBareDisplay"
402
+ class="css-khofof-scalebarZoomContainer"
513
403
  >
514
404
  <div
515
- class="css-d6gpow-linearBlocks"
516
- style="left: -800px;"
405
+ class="css-y3821b-scalebar"
406
+ style="left: -801px; width: 1700px; height: 17px; box-sizing: border-box;"
517
407
  >
518
408
  <div
519
409
  class="css-a9ifge-boundaryPaddingBlock"
@@ -522,795 +412,757 @@ exports[`renders one track, one region 1`] = `
522
412
  <div
523
413
  class="css-1dmfa10-contentBlock"
524
414
  style="width: 100px;"
525
- />
415
+ >
416
+ <div
417
+ class="css-1f3h2yl-tick"
418
+ style="left: -1px;"
419
+ />
420
+ </div>
526
421
  <div
527
422
  class="css-a9ifge-boundaryPaddingBlock"
528
423
  style="background: none; width: 800px;"
529
424
  />
530
425
  </div>
531
426
  </div>
427
+ <p
428
+ class="MuiTypography-root MuiTypography-body1 css-1vlu65o-MuiTypography-root-refLabel"
429
+ data-testid="refLabel-ctgA"
430
+ style="left: -1px; padding-left: 1px;"
431
+ >
432
+ ctgA
433
+ </p>
532
434
  </div>
533
435
  </div>
534
436
  <div
535
- class="css-1hk9st0-overlay"
536
- style="height: 100px;"
537
- />
538
- <div
539
- class="css-14zcv15-horizontalHandle-resizeHandle"
540
- data-resizer="true"
541
- />
542
- </div>
543
- </div>
544
- </div>
545
- `;
546
-
547
- exports[`renders two tracks, two regions 1`] = `
548
- <div
549
- style="position: relative;"
550
- >
551
- <div>
552
- <div
553
- style="position: relative;"
554
- >
555
- <div
556
- class="css-dznme2-rubberbandControl"
557
- role="presentation"
437
+ class="MuiPaper-root MuiPaper-outlined MuiPaper-rounded css-dewezf-MuiPaper-root-root"
558
438
  >
559
439
  <div
560
- class="css-16vhz0m-scalebar"
440
+ class="MuiPaper-root MuiPaper-elevation MuiPaper-rounded MuiPaper-elevation1 css-lv7b0o-MuiPaper-root-trackLabel-trackLabelOverlap-root"
561
441
  >
562
- <div
563
- class="css-den3n5-scalebarVisibleRegion"
564
- style="width: 580px; left: 0px; background: rgba(66, 165, 245, 0.3); border-color: #42a5f5;"
565
- />
566
- <div
567
- class="css-osn2dd-scalebarContig"
568
- style="width: 0px; left: 0px; background-color: rgb(153, 153, 153);"
569
- />
570
- <div>
571
- <p
572
- class="MuiTypography-root MuiTypography-body1 css-1hokke9-MuiTypography-root-scalebarRefName"
573
- style="left: 3px; color: rgb(153, 102, 0);"
574
- >
575
- ctgA
576
- </p>
577
- <div
578
- class="css-c4j89u-scalebarContig-scalebarContigForward-scalebarBorder"
579
- style="left: 0px; width: 72.72727272727273px; border-color: rgb(153, 102, 0);"
580
- />
581
- </div>
582
- <div
583
- class="css-osn2dd-scalebarContig"
584
- style="width: 0px; left: 72.72727272727273px; background-color: rgb(153, 153, 153);"
585
- />
586
- <div>
587
- <p
588
- class="MuiTypography-root MuiTypography-body1 css-1hokke9-MuiTypography-root-scalebarRefName"
589
- style="left: 75.72727272727273px;"
590
- >
591
- ctgB
592
- </p>
593
- <div
594
- class="css-c4j89u-scalebarContig-scalebarContigForward-scalebarBorder"
595
- style="left: 72.72727272727273px; width: 727.2727272727273px;"
442
+ <span
443
+ class="css-k4omgw-dragHandle"
444
+ data-testid="dragHandle-lgv-testConfig"
445
+ draggable="true"
446
+ >
447
+ <svg
448
+ aria-hidden="true"
449
+ class="MuiSvgIcon-root MuiSvgIcon-fontSizeSmall css-1cz9l96-MuiSvgIcon-root-dragHandleIcon"
450
+ data-testid="DragIndicatorIcon"
451
+ focusable="false"
452
+ viewBox="0 0 24 24"
596
453
  >
597
- <p
598
- class="MuiTypography-root MuiTypography-body2 css-7mggk8-MuiTypography-root-scalebarLabel"
599
- style="left: 145.0909090909091px; pointer-events: none;"
600
- >
601
- 1,200
602
- </p>
603
- <p
604
- class="MuiTypography-root MuiTypography-body2 css-7mggk8-MuiTypography-root-scalebarLabel"
605
- style="left: 290.1818181818182px; pointer-events: none;"
606
- >
607
- 1,400
608
- </p>
609
- <p
610
- class="MuiTypography-root MuiTypography-body2 css-7mggk8-MuiTypography-root-scalebarLabel"
611
- style="left: 435.27272727272725px; pointer-events: none;"
612
- >
613
- 1,600
614
- </p>
615
- <p
616
- class="MuiTypography-root MuiTypography-body2 css-7mggk8-MuiTypography-root-scalebarLabel"
617
- style="left: 580.3636363636364px; pointer-events: none;"
618
- >
619
- 1,800
620
- </p>
621
- <p
622
- class="MuiTypography-root MuiTypography-body2 css-7mggk8-MuiTypography-root-scalebarLabel"
623
- style="left: 725.4545454545454px; pointer-events: none;"
624
- >
625
- 2,000
626
- </p>
627
- </div>
628
- </div>
629
- <div
630
- class="css-osn2dd-scalebarContig"
631
- style="width: 0px; left: 800px; background-color: rgb(153, 153, 153);"
632
- />
633
- </div>
634
- </div>
635
- </div>
636
- <div
637
- class="css-1fs11k8-overview"
638
- >
639
- <svg
640
- class="css-1fsr3xw-overviewSvg"
641
- height="48"
642
- >
643
- <polygon
644
- fill="rgba(66, 165, 245, 0.3)"
645
- points="0,48,802,48,580,0,0,0"
646
- stroke="rgba(66, 165, 245, 0.8)"
647
- />
648
- </svg>
649
- <div
650
- class="css-ig8oez-headerBar"
651
- >
652
- <button
653
- class="MuiButtonBase-root MuiButton-root MuiButton-text MuiButton-textSecondary MuiButton-sizeMedium MuiButton-textSizeMedium MuiButton-root MuiButton-text MuiButton-textSecondary MuiButton-sizeMedium MuiButton-textSizeMedium css-10u97y-MuiButtonBase-root-MuiButton-root-toggleButton"
654
- tabindex="0"
655
- title="Open track selector"
656
- type="button"
657
- value="track_select"
658
- >
659
- <svg
660
- aria-hidden="true"
661
- class="MuiSvgIcon-root MuiSvgIcon-fontSizeMedium css-1mgxsmk-MuiSvgIcon-root-buttonSpacer"
662
- focusable="false"
663
- viewBox="0 0 24 24"
664
- >
665
- <path
666
- d="M21 19v-2H8v2h13m0-6v-2H8v2h13M8 7h13V5H8v2M4 5v2h2V5H4M3 5a1 1 0 011-1h2a1 1 0 011 1v2a1 1 0 01-1 1H4a1 1 0 01-1-1V5m1 6v2h2v-2H4m-1 0a1 1 0 011-1h2a1 1 0 011 1v2a1 1 0 01-1 1H4a1 1 0 01-1-1v-2m1 6v2h2v-2H4m-1 0a1 1 0 011-1h2a1 1 0 011 1v2a1 1 0 01-1 1H4a1 1 0 01-1-1v-2z"
667
- />
668
- </svg>
669
- <span
670
- class="MuiTouchRipple-root css-8je8zh-MuiTouchRipple-root"
671
- />
672
- </button>
673
- <div
674
- class="css-1n1xfjh-spacer"
675
- />
676
- <div
677
- class="MuiFormGroup-root MuiFormGroup-row css-1gwpy8f-MuiFormGroup-root-headerForm"
678
- >
454
+ <path
455
+ d="M11 18c0 1.1-.9 2-2 2s-2-.9-2-2 .9-2 2-2 2 .9 2 2zm-2-8c-1.1 0-2 .9-2 2s.9 2 2 2 2-.9 2-2-.9-2-2-2zm0-6c-1.1 0-2 .9-2 2s.9 2 2 2 2-.9 2-2-.9-2-2-2zm6 4c1.1 0 2-.9 2-2s-.9-2-2-2-2 .9-2 2 .9 2 2 2zm0 2c-1.1 0-2 .9-2 2s.9 2 2 2 2-.9 2-2-.9-2-2-2zm0 6c-1.1 0-2 .9-2 2s.9 2 2 2 2-.9 2-2-.9-2-2-2z"
456
+ />
457
+ </svg>
458
+ </span>
679
459
  <button
680
- class="MuiButtonBase-root MuiButton-root MuiButton-outlined MuiButton-outlinedPrimary MuiButton-sizeMedium MuiButton-outlinedSizeMedium MuiButton-root MuiButton-outlined MuiButton-outlinedPrimary MuiButton-sizeMedium MuiButton-outlinedSizeMedium css-1dgnv6i-MuiButtonBase-root-MuiButton-root-panButton"
460
+ class="MuiButtonBase-root MuiIconButton-root MuiIconButton-sizeMedium css-15mrns3-MuiButtonBase-root-MuiIconButton-root-iconButton"
681
461
  tabindex="0"
462
+ title="close this track"
682
463
  type="button"
683
464
  >
684
465
  <svg
685
466
  aria-hidden="true"
686
- class="MuiSvgIcon-root MuiSvgIcon-fontSizeMedium css-i4bv87-MuiSvgIcon-root"
687
- data-testid="ArrowBackIcon"
467
+ class="MuiSvgIcon-root MuiSvgIcon-fontSizeSmall css-ptiqhd-MuiSvgIcon-root"
468
+ data-testid="CloseIcon"
688
469
  focusable="false"
689
470
  viewBox="0 0 24 24"
690
471
  >
691
472
  <path
692
- d="M20 11H7.83l5.59-5.59L12 4l-8 8 8 8 1.41-1.41L7.83 13H20v-2z"
473
+ d="M19 6.41 17.59 5 12 10.59 6.41 5 5 6.41 10.59 12 5 17.59 6.41 19 12 13.41 17.59 19 19 17.59 13.41 12z"
693
474
  />
694
475
  </svg>
695
476
  <span
696
477
  class="MuiTouchRipple-root css-8je8zh-MuiTouchRipple-root"
697
478
  />
698
479
  </button>
480
+ <span
481
+ class="MuiTypography-root MuiTypography-body1 css-877agm-MuiTypography-root-trackName"
482
+ >
483
+ <span>
484
+ Foo Track
485
+ </span>
486
+ </span>
699
487
  <button
700
- class="MuiButtonBase-root MuiButton-root MuiButton-outlined MuiButton-outlinedPrimary MuiButton-sizeMedium MuiButton-outlinedSizeMedium MuiButton-root MuiButton-outlined MuiButton-outlinedPrimary MuiButton-sizeMedium MuiButton-outlinedSizeMedium css-1dgnv6i-MuiButtonBase-root-MuiButton-root-panButton"
488
+ aria-haspopup="true"
489
+ class="MuiButtonBase-root MuiIconButton-root MuiIconButton-sizeMedium css-15mrns3-MuiButtonBase-root-MuiIconButton-root-iconButton"
490
+ data-testid="track_menu_icon"
701
491
  tabindex="0"
702
492
  type="button"
703
493
  >
704
494
  <svg
705
495
  aria-hidden="true"
706
- class="MuiSvgIcon-root MuiSvgIcon-fontSizeMedium css-i4bv87-MuiSvgIcon-root"
707
- data-testid="ArrowForwardIcon"
496
+ class="MuiSvgIcon-root MuiSvgIcon-fontSizeSmall css-ptiqhd-MuiSvgIcon-root"
497
+ data-testid="MoreVertIcon"
708
498
  focusable="false"
709
499
  viewBox="0 0 24 24"
710
500
  >
711
501
  <path
712
- d="m12 4-1.41 1.41L16.17 11H4v2h12.17l-5.58 5.59L12 20l8-8z"
502
+ d="M12 8c1.1 0 2-.9 2-2s-.9-2-2-2-2 .9-2 2 .9 2 2 2zm0 2c-1.1 0-2 .9-2 2s.9 2 2 2 2-.9 2-2-.9-2-2-2zm0 6c-1.1 0-2 .9-2 2s.9 2 2 2 2-.9 2-2-.9-2-2-2z"
713
503
  />
714
504
  </svg>
715
505
  <span
716
506
  class="MuiTouchRipple-root css-8je8zh-MuiTouchRipple-root"
717
507
  />
718
508
  </button>
509
+ </div>
510
+ <div
511
+ class="css-1ql7uaq-trackRenderingContainer"
512
+ data-testid="trackRenderingContainer-lgv-testConfig"
513
+ style="height: 100px;"
514
+ >
719
515
  <div
720
- class="MuiAutocomplete-root css-1qqsdnr-MuiAutocomplete-root"
721
- data-testid="autocomplete"
722
- style="width: 260.27500000000003px;"
516
+ class="css-v11ioz-renderingComponentContainer"
517
+ style="transform: scaleX(1);"
723
518
  >
724
519
  <div
725
- class="MuiFormControl-root MuiFormControl-fullWidth MuiTextField-root css-1efd6m0-MuiFormControl-root-MuiTextField-root-headerRefName"
726
- style="margin: 7px; min-width: 175px;"
520
+ class="css-1y9lrrz-display"
521
+ data-testid="display-testConfig-LinearBareDisplay"
727
522
  >
728
523
  <div
729
- class="MuiInputBase-root MuiOutlinedInput-root MuiInputBase-colorPrimary MuiInputBase-fullWidth MuiInputBase-formControl MuiInputBase-adornedEnd MuiAutocomplete-inputRoot css-154xyx0-MuiInputBase-root-MuiOutlinedInput-root"
730
- style="padding: 0px; height: 32px; background: rgba(255, 255, 255, 0.8);"
524
+ class="css-d6gpow-linearBlocks"
525
+ style="left: -800px;"
731
526
  >
732
- <input
733
- aria-autocomplete="list"
734
- aria-expanded="false"
735
- aria-invalid="false"
736
- autocapitalize="none"
737
- autocomplete="off"
738
- class="MuiInputBase-input MuiOutlinedInput-input MuiInputBase-inputAdornedEnd MuiAutocomplete-input MuiAutocomplete-inputFocused css-nxo287-MuiInputBase-input-MuiOutlinedInput-input"
739
- id="refNameAutocomplete-lgv"
740
- placeholder="Search for location"
741
- role="combobox"
742
- spellcheck="false"
743
- type="text"
744
- value="ctgA:1..100 ctgB:1,001..1,698"
527
+ <div
528
+ class="css-a9ifge-boundaryPaddingBlock"
529
+ style="background: none; width: 800px;"
745
530
  />
746
531
  <div
747
- class="MuiInputAdornment-root MuiInputAdornment-positionEnd MuiInputAdornment-outlined MuiInputAdornment-sizeMedium css-1laqsz7-MuiInputAdornment-root"
748
- style="margin-right: 7px;"
532
+ class="css-1dmfa10-contentBlock"
533
+ style="width: 100px;"
749
534
  >
750
535
  <svg
751
- aria-hidden="true"
752
- class="MuiSvgIcon-root MuiSvgIcon-fontSizeSmall css-ptiqhd-MuiSvgIcon-root"
753
- data-testid="SearchIcon"
754
- focusable="false"
755
- viewBox="0 0 24 24"
756
- >
757
- <path
758
- d="M15.5 14h-.79l-.28-.27C15.41 12.59 16 11.11 16 9.5 16 5.91 13.09 3 9.5 3S3 5.91 3 9.5 5.91 16 9.5 16c1.61 0 3.09-.59 4.23-1.57l.27.28v.79l5 4.99L20.49 19l-4.99-5zm-6 0C7.01 14 5 11.99 5 9.5S7.01 5 9.5 5 14 7.01 14 9.5 11.99 14 9.5 14z"
759
- />
760
- </svg>
761
- <button
762
- class="MuiButtonBase-root MuiIconButton-root MuiIconButton-sizeSmall css-1pe4mpk-MuiButtonBase-root-MuiIconButton-root"
763
- tabindex="0"
764
- type="button"
765
- >
766
- <svg
767
- aria-hidden="true"
768
- class="MuiSvgIcon-root MuiSvgIcon-fontSizeSmall css-ptiqhd-MuiSvgIcon-root"
769
- data-testid="HelpIcon"
770
- focusable="false"
771
- viewBox="0 0 24 24"
772
- >
773
- <path
774
- d="M12 2C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zm1 17h-2v-2h2v2zm2.07-7.75-.9.92C13.45 12.9 13 13.5 13 15h-2v-.5c0-1.1.45-2.1 1.17-2.83l1.24-1.26c.37-.36.59-.86.59-1.41 0-1.1-.9-2-2-2s-2 .9-2 2H8c0-2.21 1.79-4 4-4s4 1.79 4 4c0 .88-.36 1.68-.93 2.25z"
775
- />
776
- </svg>
777
- <span
778
- class="MuiTouchRipple-root css-8je8zh-MuiTouchRipple-root"
779
- />
780
- </button>
536
+ data-testid="svgfeatures"
537
+ height="100"
538
+ width="100"
539
+ />
781
540
  </div>
782
- <fieldset
783
- aria-hidden="true"
784
- class="MuiOutlinedInput-notchedOutline css-1d3z3hw-MuiOutlinedInput-notchedOutline"
785
- >
786
- <legend
787
- class="css-ihdtdm"
788
- >
789
- <span
790
- class="notranslate"
791
- >
792
-
793
- </span>
794
- </legend>
795
- </fieldset>
541
+ <div
542
+ class="css-a9ifge-boundaryPaddingBlock"
543
+ style="background: none; width: 800px;"
544
+ />
796
545
  </div>
797
546
  </div>
798
547
  </div>
799
548
  </div>
800
- <p
801
- class="MuiTypography-root MuiTypography-body2 css-1lztmv5-MuiTypography-root-bp"
802
- >
803
- 798bp
804
- </p>
805
549
  <div
806
- class="css-z84q6m-container"
807
- >
808
- <button
809
- class="MuiButtonBase-root MuiIconButton-root MuiIconButton-colorSecondary MuiIconButton-sizeLarge css-1f88mc5-MuiButtonBase-root-MuiIconButton-root"
810
- data-testid="zoom_out"
811
- tabindex="0"
812
- type="button"
813
- >
814
- <svg
815
- aria-hidden="true"
816
- class="MuiSvgIcon-root MuiSvgIcon-fontSizeMedium css-i4bv87-MuiSvgIcon-root"
817
- data-testid="ZoomOutIcon"
818
- focusable="false"
819
- viewBox="0 0 24 24"
820
- >
821
- <path
822
- d="M15.5 14h-.79l-.28-.27C15.41 12.59 16 11.11 16 9.5 16 5.91 13.09 3 9.5 3S3 5.91 3 9.5 5.91 16 9.5 16c1.61 0 3.09-.59 4.23-1.57l.27.28v.79l5 4.99L20.49 19l-4.99-5zm-6 0C7.01 14 5 11.99 5 9.5S7.01 5 9.5 5 14 7.01 14 9.5 11.99 14 9.5 14zM7 9h5v1H7z"
823
- />
824
- </svg>
825
- <span
826
- class="MuiTouchRipple-root css-8je8zh-MuiTouchRipple-root"
827
- />
828
- </button>
829
- <span
830
- class="MuiSlider-root MuiSlider-colorPrimary MuiSlider-sizeSmall css-s3dms4-MuiSlider-root-slider"
831
- >
832
- <span
833
- class="MuiSlider-rail css-14pt78w-MuiSlider-rail"
834
- />
835
- <span
836
- class="MuiSlider-track css-1n40zqk-MuiSlider-track"
837
- style="left: 0%; width: 9.774680693120512%;"
838
- />
839
- <span
840
- class="MuiSlider-thumb MuiSlider-thumbSizeSmall MuiSlider-thumbColorPrimary css-14gf62f-MuiSlider-thumb"
841
- data-focusvisible="false"
842
- data-index="0"
843
- style="left: 9.774680693120512%;"
844
- >
845
- <input
846
- aria-orientation="horizontal"
847
- aria-valuemax="564.3856189774724"
848
- aria-valuemin="-61.143471208234715"
849
- aria-valuenow="0"
850
- data-index="0"
851
- max="564.3856189774724"
852
- min="-61.143471208234715"
853
- step="1"
854
- style="border: 0px; height: 100%; margin: -1px; overflow: hidden; padding: 0px; position: absolute; white-space: nowrap; width: 100%; direction: ltr;"
855
- type="range"
856
- value="0"
857
- />
858
- </span>
859
- </span>
860
- <button
861
- class="MuiButtonBase-root MuiIconButton-root MuiIconButton-colorSecondary MuiIconButton-sizeLarge css-1f88mc5-MuiButtonBase-root-MuiIconButton-root"
862
- data-testid="zoom_in"
863
- tabindex="0"
864
- type="button"
865
- >
866
- <svg
867
- aria-hidden="true"
868
- class="MuiSvgIcon-root MuiSvgIcon-fontSizeMedium css-i4bv87-MuiSvgIcon-root"
869
- data-testid="ZoomInIcon"
870
- focusable="false"
871
- viewBox="0 0 24 24"
872
- >
873
- <path
874
- d="M15.5 14h-.79l-.28-.27C15.41 12.59 16 11.11 16 9.5 16 5.91 13.09 3 9.5 3S3 5.91 3 9.5 5.91 16 9.5 16c1.61 0 3.09-.59 4.23-1.57l.27.28v.79l5 4.99L20.49 19l-4.99-5zm-6 0C7.01 14 5 11.99 5 9.5S7.01 5 9.5 5 14 7.01 14 9.5 11.99 14 9.5 14z"
875
- />
876
- <path
877
- d="M12 10h-2v2H9v-2H7V9h2V7h1v2h2v1z"
878
- />
879
- </svg>
880
- <span
881
- class="MuiTouchRipple-root css-8je8zh-MuiTouchRipple-root"
882
- />
883
- </button>
884
- </div>
550
+ class="css-1hk9st0-overlay"
551
+ style="height: 100px;"
552
+ />
885
553
  <div
886
- class="css-1n1xfjh-spacer"
554
+ class="css-14zcv15-horizontalHandle-resizeHandle"
555
+ data-resizer="true"
887
556
  />
888
557
  </div>
889
558
  </div>
890
559
  </div>
560
+ </div>
561
+ `;
562
+
563
+ exports[`renders two tracks, two regions 1`] = `
564
+ <div>
891
565
  <div
892
- class="css-75rarj-tracksContainer"
893
- data-testid="trackContainer"
566
+ style="position: relative;"
894
567
  >
895
- <div
896
- class="css-1rfvwmf-verticalGuidesZoomContainer"
897
- >
898
- <div
899
- class="css-17gfnt3-verticalGuidesContainer"
900
- style="left: -800px; width: 1702px;"
901
- >
902
- <div
903
- class="css-a9ifge-boundaryPaddingBlock"
904
- style="width: 800px;"
905
- />
906
- <div
907
- class="css-1dmfa10-contentBlock"
908
- style="width: 100px;"
909
- >
910
- <div
911
- class="css-1nnah7t-tick-majorTick"
912
- style="left: -1px;"
913
- />
914
- <div
915
- class="css-i794sq-tick-minorTick"
916
- style="left: 19px;"
917
- />
918
- <div
919
- class="css-i794sq-tick-minorTick"
920
- style="left: 39px;"
921
- />
922
- <div
923
- class="css-i794sq-tick-minorTick"
924
- style="left: 59px;"
925
- />
926
- <div
927
- class="css-i794sq-tick-minorTick"
928
- style="left: 79px;"
929
- />
930
- <div
931
- class="css-i794sq-tick-minorTick"
932
- style="left: 99px;"
933
- />
934
- <div
935
- class="css-i794sq-tick-minorTick"
936
- style="left: 119px;"
937
- />
938
- </div>
939
- <div
940
- class="css-1x3apsi-interRegionPaddingBlock"
941
- style="width: 2px;"
942
- />
943
- <div
944
- class="css-1dmfa10-contentBlock"
945
- style="width: 800px;"
946
- >
947
- <div
948
- class="css-1nnah7t-tick-majorTick"
949
- style="left: -1px;"
950
- />
951
- <div
952
- class="css-i794sq-tick-minorTick"
953
- style="left: 19px;"
954
- />
955
- <div
956
- class="css-i794sq-tick-minorTick"
957
- style="left: 39px;"
958
- />
959
- <div
960
- class="css-i794sq-tick-minorTick"
961
- style="left: 59px;"
962
- />
963
- <div
964
- class="css-i794sq-tick-minorTick"
965
- style="left: 79px;"
966
- />
967
- <div
968
- class="css-i794sq-tick-minorTick"
969
- style="left: 99px;"
970
- />
971
- <div
972
- class="css-i794sq-tick-minorTick"
973
- style="left: 119px;"
974
- />
975
- <div
976
- class="css-i794sq-tick-minorTick"
977
- style="left: 139px;"
978
- />
979
- <div
980
- class="css-i794sq-tick-minorTick"
981
- style="left: 159px;"
982
- />
983
- <div
984
- class="css-i794sq-tick-minorTick"
985
- style="left: 179px;"
986
- />
987
- <div
988
- class="css-1nnah7t-tick-majorTick"
989
- style="left: 199px;"
990
- />
991
- <div
992
- class="css-i794sq-tick-minorTick"
993
- style="left: 219px;"
994
- />
995
- <div
996
- class="css-i794sq-tick-minorTick"
997
- style="left: 239px;"
998
- />
999
- <div
1000
- class="css-i794sq-tick-minorTick"
1001
- style="left: 259px;"
1002
- />
1003
- <div
1004
- class="css-i794sq-tick-minorTick"
1005
- style="left: 279px;"
1006
- />
1007
- <div
1008
- class="css-i794sq-tick-minorTick"
1009
- style="left: 299px;"
1010
- />
1011
- <div
1012
- class="css-i794sq-tick-minorTick"
1013
- style="left: 319px;"
1014
- />
1015
- <div
1016
- class="css-i794sq-tick-minorTick"
1017
- style="left: 339px;"
1018
- />
1019
- <div
1020
- class="css-i794sq-tick-minorTick"
1021
- style="left: 359px;"
1022
- />
1023
- <div
1024
- class="css-i794sq-tick-minorTick"
1025
- style="left: 379px;"
1026
- />
1027
- <div
1028
- class="css-1nnah7t-tick-majorTick"
1029
- style="left: 399px;"
1030
- />
1031
- <div
1032
- class="css-i794sq-tick-minorTick"
1033
- style="left: 419px;"
1034
- />
1035
- <div
1036
- class="css-i794sq-tick-minorTick"
1037
- style="left: 439px;"
1038
- />
1039
- <div
1040
- class="css-i794sq-tick-minorTick"
1041
- style="left: 459px;"
1042
- />
1043
- <div
1044
- class="css-i794sq-tick-minorTick"
1045
- style="left: 479px;"
1046
- />
1047
- <div
1048
- class="css-i794sq-tick-minorTick"
1049
- style="left: 499px;"
1050
- />
1051
- <div
1052
- class="css-i794sq-tick-minorTick"
1053
- style="left: 519px;"
1054
- />
1055
- <div
1056
- class="css-i794sq-tick-minorTick"
1057
- style="left: 539px;"
1058
- />
1059
- <div
1060
- class="css-i794sq-tick-minorTick"
1061
- style="left: 559px;"
1062
- />
1063
- <div
1064
- class="css-i794sq-tick-minorTick"
1065
- style="left: 579px;"
1066
- />
1067
- <div
1068
- class="css-1nnah7t-tick-majorTick"
1069
- style="left: 599px;"
1070
- />
1071
- <div
1072
- class="css-i794sq-tick-minorTick"
1073
- style="left: 619px;"
1074
- />
1075
- <div
1076
- class="css-i794sq-tick-minorTick"
1077
- style="left: 639px;"
1078
- />
1079
- <div
1080
- class="css-i794sq-tick-minorTick"
1081
- style="left: 659px;"
1082
- />
1083
- <div
1084
- class="css-i794sq-tick-minorTick"
1085
- style="left: 679px;"
1086
- />
1087
- <div
1088
- class="css-i794sq-tick-minorTick"
1089
- style="left: 699px;"
1090
- />
1091
- <div
1092
- class="css-i794sq-tick-minorTick"
1093
- style="left: 719px;"
1094
- />
1095
- <div
1096
- class="css-i794sq-tick-minorTick"
1097
- style="left: 739px;"
1098
- />
1099
- <div
1100
- class="css-i794sq-tick-minorTick"
1101
- style="left: 759px;"
1102
- />
1103
- <div
1104
- class="css-i794sq-tick-minorTick"
1105
- style="left: 779px;"
1106
- />
1107
- <div
1108
- class="css-1nnah7t-tick-majorTick"
1109
- style="left: 799px;"
1110
- />
1111
- <div
1112
- class="css-i794sq-tick-minorTick"
1113
- style="left: 819px;"
1114
- />
1115
- </div>
1116
- </div>
1117
- </div>
1118
- <div
1119
- class="css-dznme2-rubberbandControl"
1120
- data-testid="rubberband_controls"
1121
- >
568
+ <div>
1122
569
  <div
1123
- class="MuiPaper-root MuiPaper-outlined MuiPaper-rounded css-1coqp07-MuiPaper-root-scalebarContainer"
1124
- data-resizer="true"
1125
- style="height: 17px; box-sizing: border-box;"
570
+ style="position: relative;"
1126
571
  >
1127
572
  <div
1128
- class="css-khofof-scalebarZoomContainer"
573
+ class="css-dznme2-rubberbandControl"
574
+ role="presentation"
1129
575
  >
1130
576
  <div
1131
- class="css-y3821b-scalebar"
1132
- style="left: -801px; width: 1702px; height: 17px; box-sizing: border-box;"
577
+ class="css-16vhz0m-scalebar"
1133
578
  >
1134
579
  <div
1135
- class="css-a9ifge-boundaryPaddingBlock"
1136
- style="background: none; width: 800px;"
580
+ class="css-den3n5-scalebarVisibleRegion"
581
+ style="width: 580px; left: 0px; background: rgba(66, 165, 245, 0.3); border-color: #42a5f5;"
1137
582
  />
1138
583
  <div
1139
- class="css-1dmfa10-contentBlock"
1140
- style="width: 100px;"
1141
- >
584
+ class="css-2jeg0a-scalebarContig"
585
+ style="width: 0px; left: 0px; background-color: rgb(153, 153, 153);"
586
+ />
587
+ <div>
588
+ <p
589
+ class="MuiTypography-root MuiTypography-body1 css-1hokke9-MuiTypography-root-scalebarRefName"
590
+ style="left: 3px; color: rgb(153, 102, 0);"
591
+ >
592
+ ctgA
593
+ </p>
1142
594
  <div
1143
- class="css-1f3h2yl-tick"
1144
- style="left: -1px;"
595
+ class="css-rtx9ov-scalebarContig-scalebarContigForward-scalebarBorder"
596
+ style="left: 0px; width: 72.72727272727273px; border-color: rgb(153, 102, 0);"
1145
597
  />
1146
598
  </div>
1147
599
  <div
1148
- class="css-1x3apsi-interRegionPaddingBlock"
1149
- style="background: none; width: 2px;"
600
+ class="css-2jeg0a-scalebarContig"
601
+ style="width: 0px; left: 72.72727272727273px; background-color: rgb(153, 153, 153);"
1150
602
  />
1151
- <div
1152
- class="css-1dmfa10-contentBlock"
1153
- style="width: 800px;"
1154
- >
1155
- <div
1156
- class="css-1f3h2yl-tick"
1157
- style="left: -1px;"
603
+ <div>
604
+ <p
605
+ class="MuiTypography-root MuiTypography-body1 css-1hokke9-MuiTypography-root-scalebarRefName"
606
+ style="left: 75.72727272727273px;"
1158
607
  >
1159
- <p
1160
- class="MuiTypography-root MuiTypography-body1 css-p92emw-MuiTypography-root-majorTickLabel"
1161
- >
1162
- 1,000
1163
- </p>
1164
- </div>
608
+ ctgB
609
+ </p>
1165
610
  <div
1166
- class="css-1f3h2yl-tick"
1167
- style="left: 199px;"
611
+ class="css-rtx9ov-scalebarContig-scalebarContigForward-scalebarBorder"
612
+ style="left: 72.72727272727273px; width: 727.2727272727273px;"
1168
613
  >
1169
614
  <p
1170
- class="MuiTypography-root MuiTypography-body1 css-p92emw-MuiTypography-root-majorTickLabel"
615
+ class="MuiTypography-root MuiTypography-body2 css-7mggk8-MuiTypography-root-scalebarLabel"
616
+ style="left: 145.0909090909091px; pointer-events: none;"
1171
617
  >
1172
618
  1,200
1173
619
  </p>
1174
- </div>
1175
- <div
1176
- class="css-1f3h2yl-tick"
1177
- style="left: 399px;"
1178
- >
1179
620
  <p
1180
- class="MuiTypography-root MuiTypography-body1 css-p92emw-MuiTypography-root-majorTickLabel"
621
+ class="MuiTypography-root MuiTypography-body2 css-7mggk8-MuiTypography-root-scalebarLabel"
622
+ style="left: 290.1818181818182px; pointer-events: none;"
1181
623
  >
1182
624
  1,400
1183
625
  </p>
1184
- </div>
1185
- <div
1186
- class="css-1f3h2yl-tick"
1187
- style="left: 599px;"
1188
- >
1189
626
  <p
1190
- class="MuiTypography-root MuiTypography-body1 css-p92emw-MuiTypography-root-majorTickLabel"
627
+ class="MuiTypography-root MuiTypography-body2 css-7mggk8-MuiTypography-root-scalebarLabel"
628
+ style="left: 435.27272727272725px; pointer-events: none;"
1191
629
  >
1192
630
  1,600
1193
631
  </p>
1194
- </div>
1195
- <div
1196
- class="css-1f3h2yl-tick"
1197
- style="left: 799px;"
1198
- >
1199
632
  <p
1200
- class="MuiTypography-root MuiTypography-body1 css-p92emw-MuiTypography-root-majorTickLabel"
633
+ class="MuiTypography-root MuiTypography-body2 css-7mggk8-MuiTypography-root-scalebarLabel"
634
+ style="left: 580.3636363636364px; pointer-events: none;"
1201
635
  >
1202
636
  1,800
1203
637
  </p>
638
+ <p
639
+ class="MuiTypography-root MuiTypography-body2 css-7mggk8-MuiTypography-root-scalebarLabel"
640
+ style="left: 725.4545454545454px; pointer-events: none;"
641
+ >
642
+ 2,000
643
+ </p>
1204
644
  </div>
1205
645
  </div>
1206
- </div>
646
+ <div
647
+ class="css-2jeg0a-scalebarContig"
648
+ style="width: 0px; left: 800px; background-color: rgb(153, 153, 153);"
649
+ />
650
+ </div>
1207
651
  </div>
1208
- <p
1209
- class="MuiTypography-root MuiTypography-body1 css-1vlu65o-MuiTypography-root-refLabel"
1210
- data-testid="refLabel-ctgA"
1211
- style="left: -1px; padding-left: 1px;"
652
+ </div>
653
+ <div
654
+ class="css-1fs11k8-overview"
655
+ >
656
+ <svg
657
+ class="css-1fsr3xw-overviewSvg"
658
+ height="48"
1212
659
  >
1213
- ctgA
1214
- </p>
1215
- <p
1216
- class="MuiTypography-root MuiTypography-body1 css-1vlu65o-MuiTypography-root-refLabel"
1217
- data-testid="refLabel-ctgB"
1218
- style="left: 101px; padding-left: 1px;"
660
+ <polygon
661
+ fill="rgba(66, 165, 245, 0.3)"
662
+ points="0,48,802,48,580,0,0,0"
663
+ stroke="rgba(66, 165, 245, 0.8)"
664
+ />
665
+ </svg>
666
+ <div
667
+ class="css-cwpsam-headerBar"
1219
668
  >
1220
- ctgB
1221
- </p>
669
+ <button
670
+ class="MuiButtonBase-root MuiIconButton-root MuiIconButton-sizeMedium css-7xx2bb-MuiButtonBase-root-MuiIconButton-root-toggleButton"
671
+ tabindex="0"
672
+ title="Open track selector"
673
+ type="button"
674
+ value="track_select"
675
+ >
676
+ <svg
677
+ aria-hidden="true"
678
+ class="MuiSvgIcon-root MuiSvgIcon-fontSizeMedium css-1mgxsmk-MuiSvgIcon-root-buttonSpacer"
679
+ focusable="false"
680
+ viewBox="0 0 24 24"
681
+ >
682
+ <path
683
+ d="M21 19v-2H8v2h13m0-6v-2H8v2h13M8 7h13V5H8v2M4 5v2h2V5H4M3 5a1 1 0 011-1h2a1 1 0 011 1v2a1 1 0 01-1 1H4a1 1 0 01-1-1V5m1 6v2h2v-2H4m-1 0a1 1 0 011-1h2a1 1 0 011 1v2a1 1 0 01-1 1H4a1 1 0 01-1-1v-2m1 6v2h2v-2H4m-1 0a1 1 0 011-1h2a1 1 0 011 1v2a1 1 0 01-1 1H4a1 1 0 01-1-1v-2z"
684
+ />
685
+ </svg>
686
+ <span
687
+ class="MuiTouchRipple-root css-8je8zh-MuiTouchRipple-root"
688
+ />
689
+ </button>
690
+ <div
691
+ class="css-1n1xfjh-spacer"
692
+ />
693
+ <div
694
+ class="MuiFormGroup-root MuiFormGroup-row css-1gwpy8f-MuiFormGroup-root-headerForm"
695
+ >
696
+ <button
697
+ class="MuiButtonBase-root MuiButton-root MuiButton-outlined MuiButton-outlinedPrimary MuiButton-sizeMedium MuiButton-outlinedSizeMedium MuiButton-root MuiButton-outlined MuiButton-outlinedPrimary MuiButton-sizeMedium MuiButton-outlinedSizeMedium css-1bqryi1-MuiButtonBase-root-MuiButton-root-panButton"
698
+ tabindex="0"
699
+ type="button"
700
+ >
701
+ <svg
702
+ aria-hidden="true"
703
+ class="MuiSvgIcon-root MuiSvgIcon-fontSizeMedium css-i4bv87-MuiSvgIcon-root"
704
+ data-testid="ArrowBackIcon"
705
+ focusable="false"
706
+ viewBox="0 0 24 24"
707
+ >
708
+ <path
709
+ d="M20 11H7.83l5.59-5.59L12 4l-8 8 8 8 1.41-1.41L7.83 13H20v-2z"
710
+ />
711
+ </svg>
712
+ <span
713
+ class="MuiTouchRipple-root css-8je8zh-MuiTouchRipple-root"
714
+ />
715
+ </button>
716
+ <button
717
+ class="MuiButtonBase-root MuiButton-root MuiButton-outlined MuiButton-outlinedPrimary MuiButton-sizeMedium MuiButton-outlinedSizeMedium MuiButton-root MuiButton-outlined MuiButton-outlinedPrimary MuiButton-sizeMedium MuiButton-outlinedSizeMedium css-1bqryi1-MuiButtonBase-root-MuiButton-root-panButton"
718
+ tabindex="0"
719
+ type="button"
720
+ >
721
+ <svg
722
+ aria-hidden="true"
723
+ class="MuiSvgIcon-root MuiSvgIcon-fontSizeMedium css-i4bv87-MuiSvgIcon-root"
724
+ data-testid="ArrowForwardIcon"
725
+ focusable="false"
726
+ viewBox="0 0 24 24"
727
+ >
728
+ <path
729
+ d="m12 4-1.41 1.41L16.17 11H4v2h12.17l-5.58 5.59L12 20l8-8z"
730
+ />
731
+ </svg>
732
+ <span
733
+ class="MuiTouchRipple-root css-8je8zh-MuiTouchRipple-root"
734
+ />
735
+ </button>
736
+ <div
737
+ class="MuiAutocomplete-root css-l3ln04-MuiAutocomplete-root"
738
+ data-testid="autocomplete"
739
+ style="width: 260.27500000000003px;"
740
+ >
741
+ <div
742
+ class="MuiFormControl-root MuiFormControl-fullWidth MuiTextField-root css-1efd6m0-MuiFormControl-root-MuiTextField-root-headerRefName"
743
+ style="margin: 7px; min-width: 175px;"
744
+ >
745
+ <div
746
+ class="MuiInputBase-root MuiOutlinedInput-root MuiInputBase-colorPrimary MuiInputBase-fullWidth MuiInputBase-formControl MuiInputBase-adornedEnd MuiAutocomplete-inputRoot css-154xyx0-MuiInputBase-root-MuiOutlinedInput-root"
747
+ style="padding: 0px; height: 32px; background: rgba(255, 255, 255, 0.8);"
748
+ >
749
+ <input
750
+ aria-autocomplete="list"
751
+ aria-expanded="false"
752
+ aria-invalid="false"
753
+ autocapitalize="none"
754
+ autocomplete="off"
755
+ class="MuiInputBase-input MuiOutlinedInput-input MuiInputBase-inputAdornedEnd MuiAutocomplete-input MuiAutocomplete-inputFocused css-nxo287-MuiInputBase-input-MuiOutlinedInput-input"
756
+ id="refNameAutocomplete-lgv"
757
+ placeholder="Search for location"
758
+ role="combobox"
759
+ spellcheck="false"
760
+ type="text"
761
+ value="ctgA:1..100 ctgB:1,001..1,698"
762
+ />
763
+ <div
764
+ class="MuiInputAdornment-root MuiInputAdornment-positionEnd MuiInputAdornment-outlined MuiInputAdornment-sizeMedium css-1laqsz7-MuiInputAdornment-root"
765
+ style="margin-right: 7px;"
766
+ >
767
+ <svg
768
+ aria-hidden="true"
769
+ class="MuiSvgIcon-root MuiSvgIcon-fontSizeSmall css-ptiqhd-MuiSvgIcon-root"
770
+ data-testid="SearchIcon"
771
+ focusable="false"
772
+ viewBox="0 0 24 24"
773
+ >
774
+ <path
775
+ d="M15.5 14h-.79l-.28-.27C15.41 12.59 16 11.11 16 9.5 16 5.91 13.09 3 9.5 3S3 5.91 3 9.5 5.91 16 9.5 16c1.61 0 3.09-.59 4.23-1.57l.27.28v.79l5 4.99L20.49 19l-4.99-5zm-6 0C7.01 14 5 11.99 5 9.5S7.01 5 9.5 5 14 7.01 14 9.5 11.99 14 9.5 14z"
776
+ />
777
+ </svg>
778
+ <button
779
+ class="MuiButtonBase-root MuiIconButton-root MuiIconButton-sizeSmall css-1pe4mpk-MuiButtonBase-root-MuiIconButton-root"
780
+ tabindex="0"
781
+ type="button"
782
+ >
783
+ <svg
784
+ aria-hidden="true"
785
+ class="MuiSvgIcon-root MuiSvgIcon-fontSizeSmall css-ptiqhd-MuiSvgIcon-root"
786
+ data-testid="HelpIcon"
787
+ focusable="false"
788
+ viewBox="0 0 24 24"
789
+ >
790
+ <path
791
+ d="M12 2C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zm1 17h-2v-2h2v2zm2.07-7.75-.9.92C13.45 12.9 13 13.5 13 15h-2v-.5c0-1.1.45-2.1 1.17-2.83l1.24-1.26c.37-.36.59-.86.59-1.41 0-1.1-.9-2-2-2s-2 .9-2 2H8c0-2.21 1.79-4 4-4s4 1.79 4 4c0 .88-.36 1.68-.93 2.25z"
792
+ />
793
+ </svg>
794
+ <span
795
+ class="MuiTouchRipple-root css-8je8zh-MuiTouchRipple-root"
796
+ />
797
+ </button>
798
+ </div>
799
+ <fieldset
800
+ aria-hidden="true"
801
+ class="MuiOutlinedInput-notchedOutline css-1d3z3hw-MuiOutlinedInput-notchedOutline"
802
+ >
803
+ <legend
804
+ class="css-ihdtdm"
805
+ >
806
+ <span
807
+ class="notranslate"
808
+ >
809
+
810
+ </span>
811
+ </legend>
812
+ </fieldset>
813
+ </div>
814
+ </div>
815
+ </div>
816
+ </div>
817
+ <p
818
+ class="MuiTypography-root MuiTypography-body2 css-1lztmv5-MuiTypography-root-bp"
819
+ >
820
+ 798bp
821
+ </p>
822
+ <div
823
+ class="css-z84q6m-container"
824
+ >
825
+ <button
826
+ class="MuiButtonBase-root MuiIconButton-root MuiIconButton-sizeLarge css-mf1cb5-MuiButtonBase-root-MuiIconButton-root"
827
+ data-testid="zoom_out"
828
+ tabindex="0"
829
+ type="button"
830
+ >
831
+ <svg
832
+ aria-hidden="true"
833
+ class="MuiSvgIcon-root MuiSvgIcon-fontSizeMedium css-i4bv87-MuiSvgIcon-root"
834
+ data-testid="ZoomOutIcon"
835
+ focusable="false"
836
+ viewBox="0 0 24 24"
837
+ >
838
+ <path
839
+ d="M15.5 14h-.79l-.28-.27C15.41 12.59 16 11.11 16 9.5 16 5.91 13.09 3 9.5 3S3 5.91 3 9.5 5.91 16 9.5 16c1.61 0 3.09-.59 4.23-1.57l.27.28v.79l5 4.99L20.49 19l-4.99-5zm-6 0C7.01 14 5 11.99 5 9.5S7.01 5 9.5 5 14 7.01 14 9.5 11.99 14 9.5 14zM7 9h5v1H7z"
840
+ />
841
+ </svg>
842
+ <span
843
+ class="MuiTouchRipple-root css-8je8zh-MuiTouchRipple-root"
844
+ />
845
+ </button>
846
+ <span
847
+ class="MuiSlider-root MuiSlider-colorPrimary MuiSlider-sizeSmall css-1ub3usb-MuiSlider-root-slider"
848
+ >
849
+ <span
850
+ class="MuiSlider-rail css-14pt78w-MuiSlider-rail"
851
+ />
852
+ <span
853
+ class="MuiSlider-track css-1n40zqk-MuiSlider-track"
854
+ style="left: 0%; width: 9.774680693120512%;"
855
+ />
856
+ <span
857
+ class="MuiSlider-thumb MuiSlider-thumbSizeSmall MuiSlider-thumbColorPrimary css-14gf62f-MuiSlider-thumb"
858
+ data-focusvisible="false"
859
+ data-index="0"
860
+ style="left: 9.774680693120512%;"
861
+ >
862
+ <input
863
+ aria-orientation="horizontal"
864
+ aria-valuemax="564.3856189774724"
865
+ aria-valuemin="-61.143471208234715"
866
+ aria-valuenow="0"
867
+ data-index="0"
868
+ max="564.3856189774724"
869
+ min="-61.143471208234715"
870
+ step="1"
871
+ style="border: 0px; height: 100%; margin: -1px; overflow: hidden; padding: 0px; position: absolute; white-space: nowrap; width: 100%; direction: ltr;"
872
+ type="range"
873
+ value="0"
874
+ />
875
+ </span>
876
+ </span>
877
+ <button
878
+ class="MuiButtonBase-root MuiIconButton-root MuiIconButton-sizeLarge css-mf1cb5-MuiButtonBase-root-MuiIconButton-root"
879
+ data-testid="zoom_in"
880
+ tabindex="0"
881
+ type="button"
882
+ >
883
+ <svg
884
+ aria-hidden="true"
885
+ class="MuiSvgIcon-root MuiSvgIcon-fontSizeMedium css-i4bv87-MuiSvgIcon-root"
886
+ data-testid="ZoomInIcon"
887
+ focusable="false"
888
+ viewBox="0 0 24 24"
889
+ >
890
+ <path
891
+ d="M15.5 14h-.79l-.28-.27C15.41 12.59 16 11.11 16 9.5 16 5.91 13.09 3 9.5 3S3 5.91 3 9.5 5.91 16 9.5 16c1.61 0 3.09-.59 4.23-1.57l.27.28v.79l5 4.99L20.49 19l-4.99-5zm-6 0C7.01 14 5 11.99 5 9.5S7.01 5 9.5 5 14 7.01 14 9.5 11.99 14 9.5 14z"
892
+ />
893
+ <path
894
+ d="M12 10h-2v2H9v-2H7V9h2V7h1v2h2v1z"
895
+ />
896
+ </svg>
897
+ <span
898
+ class="MuiTouchRipple-root css-8je8zh-MuiTouchRipple-root"
899
+ />
900
+ </button>
901
+ </div>
902
+ <div
903
+ class="css-1n1xfjh-spacer"
904
+ />
905
+ </div>
1222
906
  </div>
1223
907
  </div>
1224
908
  <div
1225
- class="MuiPaper-root MuiPaper-outlined MuiPaper-rounded css-dewezf-MuiPaper-root-root"
909
+ class="css-75rarj-tracksContainer"
910
+ data-testid="trackContainer"
1226
911
  >
1227
912
  <div
1228
- class="MuiPaper-root MuiPaper-elevation MuiPaper-rounded MuiPaper-elevation1 css-lv7b0o-MuiPaper-root-trackLabel-trackLabelOverlap-root"
913
+ class="css-1rfvwmf-verticalGuidesZoomContainer"
1229
914
  >
1230
- <span
1231
- class="css-10js96-dragHandle"
1232
- data-testid="dragHandle-lgv-testConfig"
1233
- draggable="true"
1234
- >
1235
- <svg
1236
- aria-hidden="true"
1237
- class="MuiSvgIcon-root MuiSvgIcon-fontSizeSmall css-1cz9l96-MuiSvgIcon-root-dragHandleIcon"
1238
- data-testid="DragIndicatorIcon"
1239
- focusable="false"
1240
- viewBox="0 0 24 24"
1241
- >
1242
- <path
1243
- d="M11 18c0 1.1-.9 2-2 2s-2-.9-2-2 .9-2 2-2 2 .9 2 2zm-2-8c-1.1 0-2 .9-2 2s.9 2 2 2 2-.9 2-2-.9-2-2-2zm0-6c-1.1 0-2 .9-2 2s.9 2 2 2 2-.9 2-2-.9-2-2-2zm6 4c1.1 0 2-.9 2-2s-.9-2-2-2-2 .9-2 2 .9 2 2 2zm0 2c-1.1 0-2 .9-2 2s.9 2 2 2 2-.9 2-2-.9-2-2-2zm0 6c-1.1 0-2 .9-2 2s.9 2 2 2 2-.9 2-2-.9-2-2-2z"
1244
- />
1245
- </svg>
1246
- </span>
1247
- <button
1248
- class="MuiButtonBase-root MuiIconButton-root MuiIconButton-colorSecondary MuiIconButton-sizeMedium css-9e64ep-MuiButtonBase-root-MuiIconButton-root-iconButton"
1249
- tabindex="0"
1250
- title="close this track"
1251
- type="button"
915
+ <div
916
+ class="css-17gfnt3-verticalGuidesContainer"
917
+ style="left: -800px; width: 1702px;"
1252
918
  >
1253
- <svg
1254
- aria-hidden="true"
1255
- class="MuiSvgIcon-root MuiSvgIcon-fontSizeSmall css-ptiqhd-MuiSvgIcon-root"
1256
- data-testid="CloseIcon"
1257
- focusable="false"
1258
- viewBox="0 0 24 24"
919
+ <div
920
+ class="css-a9ifge-boundaryPaddingBlock"
921
+ style="width: 800px;"
922
+ />
923
+ <div
924
+ class="css-1dmfa10-contentBlock"
925
+ style="width: 100px;"
1259
926
  >
1260
- <path
1261
- d="M19 6.41 17.59 5 12 10.59 6.41 5 5 6.41 10.59 12 5 17.59 6.41 19 12 13.41 17.59 19 19 17.59 13.41 12z"
927
+ <div
928
+ class="css-i794sq-tick-minorTick"
929
+ style="left: -21px;"
1262
930
  />
1263
- </svg>
1264
- <span
1265
- class="MuiTouchRipple-root css-8je8zh-MuiTouchRipple-root"
931
+ <div
932
+ class="css-1qcgmte-tick-majorTick"
933
+ style="left: -1px;"
934
+ />
935
+ <div
936
+ class="css-i794sq-tick-minorTick"
937
+ style="left: 19px;"
938
+ />
939
+ <div
940
+ class="css-i794sq-tick-minorTick"
941
+ style="left: 39px;"
942
+ />
943
+ <div
944
+ class="css-i794sq-tick-minorTick"
945
+ style="left: 59px;"
946
+ />
947
+ <div
948
+ class="css-i794sq-tick-minorTick"
949
+ style="left: 79px;"
950
+ />
951
+ <div
952
+ class="css-i794sq-tick-minorTick"
953
+ style="left: 99px;"
954
+ />
955
+ <div
956
+ class="css-i794sq-tick-minorTick"
957
+ style="left: 119px;"
958
+ />
959
+ <div
960
+ class="css-i794sq-tick-minorTick"
961
+ style="left: 139px;"
962
+ />
963
+ </div>
964
+ <div
965
+ class="css-1b6zgog-interRegionPaddingBlock"
966
+ style="width: 2px;"
1266
967
  />
1267
- </button>
1268
- <span
1269
- class="MuiTypography-root MuiTypography-body1 css-877agm-MuiTypography-root-trackName"
1270
- >
1271
- <span>
1272
- Foo Track
1273
- </span>
1274
- </span>
1275
- <button
1276
- aria-haspopup="true"
1277
- class="MuiButtonBase-root MuiIconButton-root MuiIconButton-colorSecondary MuiIconButton-sizeMedium css-9e64ep-MuiButtonBase-root-MuiIconButton-root-iconButton"
1278
- data-testid="track_menu_icon"
1279
- tabindex="0"
1280
- type="button"
1281
- >
1282
- <svg
1283
- aria-hidden="true"
1284
- class="MuiSvgIcon-root MuiSvgIcon-fontSizeSmall css-ptiqhd-MuiSvgIcon-root"
1285
- data-testid="MoreVertIcon"
1286
- focusable="false"
1287
- viewBox="0 0 24 24"
968
+ <div
969
+ class="css-1dmfa10-contentBlock"
970
+ style="width: 800px;"
1288
971
  >
1289
- <path
1290
- d="M12 8c1.1 0 2-.9 2-2s-.9-2-2-2-2 .9-2 2 .9 2 2 2zm0 2c-1.1 0-2 .9-2 2s.9 2 2 2 2-.9 2-2-.9-2-2-2zm0 6c-1.1 0-2 .9-2 2s.9 2 2 2 2-.9 2-2-.9-2-2-2z"
972
+ <div
973
+ class="css-i794sq-tick-minorTick"
974
+ style="left: -21px;"
1291
975
  />
1292
- </svg>
1293
- <span
1294
- class="MuiTouchRipple-root css-8je8zh-MuiTouchRipple-root"
1295
- />
1296
- </button>
976
+ <div
977
+ class="css-1qcgmte-tick-majorTick"
978
+ style="left: -1px;"
979
+ />
980
+ <div
981
+ class="css-i794sq-tick-minorTick"
982
+ style="left: 19px;"
983
+ />
984
+ <div
985
+ class="css-i794sq-tick-minorTick"
986
+ style="left: 39px;"
987
+ />
988
+ <div
989
+ class="css-i794sq-tick-minorTick"
990
+ style="left: 59px;"
991
+ />
992
+ <div
993
+ class="css-i794sq-tick-minorTick"
994
+ style="left: 79px;"
995
+ />
996
+ <div
997
+ class="css-i794sq-tick-minorTick"
998
+ style="left: 99px;"
999
+ />
1000
+ <div
1001
+ class="css-i794sq-tick-minorTick"
1002
+ style="left: 119px;"
1003
+ />
1004
+ <div
1005
+ class="css-i794sq-tick-minorTick"
1006
+ style="left: 139px;"
1007
+ />
1008
+ <div
1009
+ class="css-i794sq-tick-minorTick"
1010
+ style="left: 159px;"
1011
+ />
1012
+ <div
1013
+ class="css-i794sq-tick-minorTick"
1014
+ style="left: 179px;"
1015
+ />
1016
+ <div
1017
+ class="css-1qcgmte-tick-majorTick"
1018
+ style="left: 199px;"
1019
+ />
1020
+ <div
1021
+ class="css-i794sq-tick-minorTick"
1022
+ style="left: 219px;"
1023
+ />
1024
+ <div
1025
+ class="css-i794sq-tick-minorTick"
1026
+ style="left: 239px;"
1027
+ />
1028
+ <div
1029
+ class="css-i794sq-tick-minorTick"
1030
+ style="left: 259px;"
1031
+ />
1032
+ <div
1033
+ class="css-i794sq-tick-minorTick"
1034
+ style="left: 279px;"
1035
+ />
1036
+ <div
1037
+ class="css-i794sq-tick-minorTick"
1038
+ style="left: 299px;"
1039
+ />
1040
+ <div
1041
+ class="css-i794sq-tick-minorTick"
1042
+ style="left: 319px;"
1043
+ />
1044
+ <div
1045
+ class="css-i794sq-tick-minorTick"
1046
+ style="left: 339px;"
1047
+ />
1048
+ <div
1049
+ class="css-i794sq-tick-minorTick"
1050
+ style="left: 359px;"
1051
+ />
1052
+ <div
1053
+ class="css-i794sq-tick-minorTick"
1054
+ style="left: 379px;"
1055
+ />
1056
+ <div
1057
+ class="css-1qcgmte-tick-majorTick"
1058
+ style="left: 399px;"
1059
+ />
1060
+ <div
1061
+ class="css-i794sq-tick-minorTick"
1062
+ style="left: 419px;"
1063
+ />
1064
+ <div
1065
+ class="css-i794sq-tick-minorTick"
1066
+ style="left: 439px;"
1067
+ />
1068
+ <div
1069
+ class="css-i794sq-tick-minorTick"
1070
+ style="left: 459px;"
1071
+ />
1072
+ <div
1073
+ class="css-i794sq-tick-minorTick"
1074
+ style="left: 479px;"
1075
+ />
1076
+ <div
1077
+ class="css-i794sq-tick-minorTick"
1078
+ style="left: 499px;"
1079
+ />
1080
+ <div
1081
+ class="css-i794sq-tick-minorTick"
1082
+ style="left: 519px;"
1083
+ />
1084
+ <div
1085
+ class="css-i794sq-tick-minorTick"
1086
+ style="left: 539px;"
1087
+ />
1088
+ <div
1089
+ class="css-i794sq-tick-minorTick"
1090
+ style="left: 559px;"
1091
+ />
1092
+ <div
1093
+ class="css-i794sq-tick-minorTick"
1094
+ style="left: 579px;"
1095
+ />
1096
+ <div
1097
+ class="css-1qcgmte-tick-majorTick"
1098
+ style="left: 599px;"
1099
+ />
1100
+ <div
1101
+ class="css-i794sq-tick-minorTick"
1102
+ style="left: 619px;"
1103
+ />
1104
+ <div
1105
+ class="css-i794sq-tick-minorTick"
1106
+ style="left: 639px;"
1107
+ />
1108
+ <div
1109
+ class="css-i794sq-tick-minorTick"
1110
+ style="left: 659px;"
1111
+ />
1112
+ <div
1113
+ class="css-i794sq-tick-minorTick"
1114
+ style="left: 679px;"
1115
+ />
1116
+ <div
1117
+ class="css-i794sq-tick-minorTick"
1118
+ style="left: 699px;"
1119
+ />
1120
+ <div
1121
+ class="css-i794sq-tick-minorTick"
1122
+ style="left: 719px;"
1123
+ />
1124
+ <div
1125
+ class="css-i794sq-tick-minorTick"
1126
+ style="left: 739px;"
1127
+ />
1128
+ <div
1129
+ class="css-i794sq-tick-minorTick"
1130
+ style="left: 759px;"
1131
+ />
1132
+ <div
1133
+ class="css-i794sq-tick-minorTick"
1134
+ style="left: 779px;"
1135
+ />
1136
+ <div
1137
+ class="css-1qcgmte-tick-majorTick"
1138
+ style="left: 799px;"
1139
+ />
1140
+ <div
1141
+ class="css-i794sq-tick-minorTick"
1142
+ style="left: 819px;"
1143
+ />
1144
+ <div
1145
+ class="css-i794sq-tick-minorTick"
1146
+ style="left: 839px;"
1147
+ />
1148
+ </div>
1149
+ </div>
1297
1150
  </div>
1298
1151
  <div
1299
- class="css-1ql7uaq-trackRenderingContainer"
1300
- data-testid="trackRenderingContainer-lgv-testConfig"
1301
- style="height: 100px;"
1152
+ class="css-dznme2-rubberbandControl"
1153
+ data-testid="rubberband_controls"
1302
1154
  >
1303
1155
  <div
1304
- class="css-v11ioz-renderingComponentContainer"
1305
- style="transform: scaleX(1);"
1156
+ class="MuiPaper-root MuiPaper-outlined MuiPaper-rounded css-1coqp07-MuiPaper-root-scalebarContainer"
1157
+ data-resizer="true"
1158
+ style="height: 17px; box-sizing: border-box;"
1306
1159
  >
1307
1160
  <div
1308
- class="css-1y9lrrz-display"
1309
- data-testid="display-testConfig-LinearBareDisplay"
1161
+ class="css-khofof-scalebarZoomContainer"
1310
1162
  >
1311
1163
  <div
1312
- class="css-d6gpow-linearBlocks"
1313
- style="left: -800px;"
1164
+ class="css-y3821b-scalebar"
1165
+ style="left: -801px; width: 1702px; height: 17px; box-sizing: border-box;"
1314
1166
  >
1315
1167
  <div
1316
1168
  class="css-a9ifge-boundaryPaddingBlock"
@@ -1320,170 +1172,352 @@ exports[`renders two tracks, two regions 1`] = `
1320
1172
  class="css-1dmfa10-contentBlock"
1321
1173
  style="width: 100px;"
1322
1174
  >
1323
- <svg
1324
- data-testid="svgfeatures"
1325
- height="100"
1326
- width="100"
1175
+ <div
1176
+ class="css-1f3h2yl-tick"
1177
+ style="left: -1px;"
1327
1178
  />
1328
1179
  </div>
1329
1180
  <div
1330
- class="css-1x3apsi-interRegionPaddingBlock"
1181
+ class="css-1b6zgog-interRegionPaddingBlock"
1331
1182
  style="background: none; width: 2px;"
1332
1183
  />
1333
1184
  <div
1334
1185
  class="css-1dmfa10-contentBlock"
1335
1186
  style="width: 800px;"
1336
1187
  >
1337
- <svg
1338
- data-testid="svgfeatures"
1339
- height="100"
1340
- width="800"
1341
- />
1188
+ <div
1189
+ class="css-1f3h2yl-tick"
1190
+ style="left: -1px;"
1191
+ >
1192
+ <p
1193
+ class="MuiTypography-root MuiTypography-body1 css-p92emw-MuiTypography-root-majorTickLabel"
1194
+ >
1195
+ 1,000
1196
+ </p>
1197
+ </div>
1198
+ <div
1199
+ class="css-1f3h2yl-tick"
1200
+ style="left: 199px;"
1201
+ >
1202
+ <p
1203
+ class="MuiTypography-root MuiTypography-body1 css-p92emw-MuiTypography-root-majorTickLabel"
1204
+ >
1205
+ 1,200
1206
+ </p>
1207
+ </div>
1208
+ <div
1209
+ class="css-1f3h2yl-tick"
1210
+ style="left: 399px;"
1211
+ >
1212
+ <p
1213
+ class="MuiTypography-root MuiTypography-body1 css-p92emw-MuiTypography-root-majorTickLabel"
1214
+ >
1215
+ 1,400
1216
+ </p>
1217
+ </div>
1218
+ <div
1219
+ class="css-1f3h2yl-tick"
1220
+ style="left: 599px;"
1221
+ >
1222
+ <p
1223
+ class="MuiTypography-root MuiTypography-body1 css-p92emw-MuiTypography-root-majorTickLabel"
1224
+ >
1225
+ 1,600
1226
+ </p>
1227
+ </div>
1228
+ <div
1229
+ class="css-1f3h2yl-tick"
1230
+ style="left: 799px;"
1231
+ >
1232
+ <p
1233
+ class="MuiTypography-root MuiTypography-body1 css-p92emw-MuiTypography-root-majorTickLabel"
1234
+ >
1235
+ 1,800
1236
+ </p>
1237
+ </div>
1342
1238
  </div>
1343
1239
  </div>
1344
1240
  </div>
1241
+ <p
1242
+ class="MuiTypography-root MuiTypography-body1 css-1vlu65o-MuiTypography-root-refLabel"
1243
+ data-testid="refLabel-ctgA"
1244
+ style="left: -1px; padding-left: 1px;"
1245
+ >
1246
+ ctgA
1247
+ </p>
1248
+ <p
1249
+ class="MuiTypography-root MuiTypography-body1 css-1vlu65o-MuiTypography-root-refLabel"
1250
+ data-testid="refLabel-ctgB"
1251
+ style="left: 101px; padding-left: 1px;"
1252
+ >
1253
+ ctgB
1254
+ </p>
1345
1255
  </div>
1346
1256
  </div>
1347
1257
  <div
1348
- class="css-1hk9st0-overlay"
1349
- style="height: 100px;"
1350
- />
1351
- <div
1352
- class="css-14zcv15-horizontalHandle-resizeHandle"
1353
- data-resizer="true"
1354
- />
1355
- </div>
1356
- <div
1357
- class="MuiPaper-root MuiPaper-outlined MuiPaper-rounded css-dewezf-MuiPaper-root-root"
1358
- >
1359
- <div
1360
- class="MuiPaper-root MuiPaper-elevation MuiPaper-rounded MuiPaper-elevation1 css-lv7b0o-MuiPaper-root-trackLabel-trackLabelOverlap-root"
1258
+ class="MuiPaper-root MuiPaper-outlined MuiPaper-rounded css-dewezf-MuiPaper-root-root"
1361
1259
  >
1362
- <span
1363
- class="css-10js96-dragHandle"
1364
- data-testid="dragHandle-lgv-testConfig2"
1365
- draggable="true"
1260
+ <div
1261
+ class="MuiPaper-root MuiPaper-elevation MuiPaper-rounded MuiPaper-elevation1 css-lv7b0o-MuiPaper-root-trackLabel-trackLabelOverlap-root"
1366
1262
  >
1367
- <svg
1368
- aria-hidden="true"
1369
- class="MuiSvgIcon-root MuiSvgIcon-fontSizeSmall css-1cz9l96-MuiSvgIcon-root-dragHandleIcon"
1370
- data-testid="DragIndicatorIcon"
1371
- focusable="false"
1372
- viewBox="0 0 24 24"
1263
+ <span
1264
+ class="css-k4omgw-dragHandle"
1265
+ data-testid="dragHandle-lgv-testConfig"
1266
+ draggable="true"
1373
1267
  >
1374
- <path
1375
- d="M11 18c0 1.1-.9 2-2 2s-2-.9-2-2 .9-2 2-2 2 .9 2 2zm-2-8c-1.1 0-2 .9-2 2s.9 2 2 2 2-.9 2-2-.9-2-2-2zm0-6c-1.1 0-2 .9-2 2s.9 2 2 2 2-.9 2-2-.9-2-2-2zm6 4c1.1 0 2-.9 2-2s-.9-2-2-2-2 .9-2 2 .9 2 2 2zm0 2c-1.1 0-2 .9-2 2s.9 2 2 2 2-.9 2-2-.9-2-2-2zm0 6c-1.1 0-2 .9-2 2s.9 2 2 2 2-.9 2-2-.9-2-2-2z"
1376
- />
1377
- </svg>
1378
- </span>
1379
- <button
1380
- class="MuiButtonBase-root MuiIconButton-root MuiIconButton-colorSecondary MuiIconButton-sizeMedium css-9e64ep-MuiButtonBase-root-MuiIconButton-root-iconButton"
1381
- tabindex="0"
1382
- title="close this track"
1383
- type="button"
1384
- >
1385
- <svg
1386
- aria-hidden="true"
1387
- class="MuiSvgIcon-root MuiSvgIcon-fontSizeSmall css-ptiqhd-MuiSvgIcon-root"
1388
- data-testid="CloseIcon"
1389
- focusable="false"
1390
- viewBox="0 0 24 24"
1268
+ <svg
1269
+ aria-hidden="true"
1270
+ class="MuiSvgIcon-root MuiSvgIcon-fontSizeSmall css-1cz9l96-MuiSvgIcon-root-dragHandleIcon"
1271
+ data-testid="DragIndicatorIcon"
1272
+ focusable="false"
1273
+ viewBox="0 0 24 24"
1274
+ >
1275
+ <path
1276
+ d="M11 18c0 1.1-.9 2-2 2s-2-.9-2-2 .9-2 2-2 2 .9 2 2zm-2-8c-1.1 0-2 .9-2 2s.9 2 2 2 2-.9 2-2-.9-2-2-2zm0-6c-1.1 0-2 .9-2 2s.9 2 2 2 2-.9 2-2-.9-2-2-2zm6 4c1.1 0 2-.9 2-2s-.9-2-2-2-2 .9-2 2 .9 2 2 2zm0 2c-1.1 0-2 .9-2 2s.9 2 2 2 2-.9 2-2-.9-2-2-2zm0 6c-1.1 0-2 .9-2 2s.9 2 2 2 2-.9 2-2-.9-2-2-2z"
1277
+ />
1278
+ </svg>
1279
+ </span>
1280
+ <button
1281
+ class="MuiButtonBase-root MuiIconButton-root MuiIconButton-sizeMedium css-15mrns3-MuiButtonBase-root-MuiIconButton-root-iconButton"
1282
+ tabindex="0"
1283
+ title="close this track"
1284
+ type="button"
1391
1285
  >
1392
- <path
1393
- d="M19 6.41 17.59 5 12 10.59 6.41 5 5 6.41 10.59 12 5 17.59 6.41 19 12 13.41 17.59 19 19 17.59 13.41 12z"
1286
+ <svg
1287
+ aria-hidden="true"
1288
+ class="MuiSvgIcon-root MuiSvgIcon-fontSizeSmall css-ptiqhd-MuiSvgIcon-root"
1289
+ data-testid="CloseIcon"
1290
+ focusable="false"
1291
+ viewBox="0 0 24 24"
1292
+ >
1293
+ <path
1294
+ d="M19 6.41 17.59 5 12 10.59 6.41 5 5 6.41 10.59 12 5 17.59 6.41 19 12 13.41 17.59 19 19 17.59 13.41 12z"
1295
+ />
1296
+ </svg>
1297
+ <span
1298
+ class="MuiTouchRipple-root css-8je8zh-MuiTouchRipple-root"
1394
1299
  />
1395
- </svg>
1300
+ </button>
1396
1301
  <span
1397
- class="MuiTouchRipple-root css-8je8zh-MuiTouchRipple-root"
1398
- />
1399
- </button>
1400
- <span
1401
- class="MuiTypography-root MuiTypography-body1 css-877agm-MuiTypography-root-trackName"
1402
- >
1403
- <span>
1404
- Bar Track
1302
+ class="MuiTypography-root MuiTypography-body1 css-877agm-MuiTypography-root-trackName"
1303
+ >
1304
+ <span>
1305
+ Foo Track
1306
+ </span>
1405
1307
  </span>
1406
- </span>
1407
- <button
1408
- aria-haspopup="true"
1409
- class="MuiButtonBase-root MuiIconButton-root MuiIconButton-colorSecondary MuiIconButton-sizeMedium css-9e64ep-MuiButtonBase-root-MuiIconButton-root-iconButton"
1410
- data-testid="track_menu_icon"
1411
- tabindex="0"
1412
- type="button"
1413
- >
1414
- <svg
1415
- aria-hidden="true"
1416
- class="MuiSvgIcon-root MuiSvgIcon-fontSizeSmall css-ptiqhd-MuiSvgIcon-root"
1417
- data-testid="MoreVertIcon"
1418
- focusable="false"
1419
- viewBox="0 0 24 24"
1308
+ <button
1309
+ aria-haspopup="true"
1310
+ class="MuiButtonBase-root MuiIconButton-root MuiIconButton-sizeMedium css-15mrns3-MuiButtonBase-root-MuiIconButton-root-iconButton"
1311
+ data-testid="track_menu_icon"
1312
+ tabindex="0"
1313
+ type="button"
1420
1314
  >
1421
- <path
1422
- d="M12 8c1.1 0 2-.9 2-2s-.9-2-2-2-2 .9-2 2 .9 2 2 2zm0 2c-1.1 0-2 .9-2 2s.9 2 2 2 2-.9 2-2-.9-2-2-2zm0 6c-1.1 0-2 .9-2 2s.9 2 2 2 2-.9 2-2-.9-2-2-2z"
1315
+ <svg
1316
+ aria-hidden="true"
1317
+ class="MuiSvgIcon-root MuiSvgIcon-fontSizeSmall css-ptiqhd-MuiSvgIcon-root"
1318
+ data-testid="MoreVertIcon"
1319
+ focusable="false"
1320
+ viewBox="0 0 24 24"
1321
+ >
1322
+ <path
1323
+ d="M12 8c1.1 0 2-.9 2-2s-.9-2-2-2-2 .9-2 2 .9 2 2 2zm0 2c-1.1 0-2 .9-2 2s.9 2 2 2 2-.9 2-2-.9-2-2-2zm0 6c-1.1 0-2 .9-2 2s.9 2 2 2 2-.9 2-2-.9-2-2-2z"
1324
+ />
1325
+ </svg>
1326
+ <span
1327
+ class="MuiTouchRipple-root css-8je8zh-MuiTouchRipple-root"
1423
1328
  />
1424
- </svg>
1425
- <span
1426
- class="MuiTouchRipple-root css-8je8zh-MuiTouchRipple-root"
1427
- />
1428
- </button>
1429
- </div>
1430
- <div
1431
- class="css-1ql7uaq-trackRenderingContainer"
1432
- data-testid="trackRenderingContainer-lgv-testConfig2"
1433
- style="height: 100px;"
1434
- >
1329
+ </button>
1330
+ </div>
1435
1331
  <div
1436
- class="css-v11ioz-renderingComponentContainer"
1437
- style="transform: scaleX(1);"
1332
+ class="css-1ql7uaq-trackRenderingContainer"
1333
+ data-testid="trackRenderingContainer-lgv-testConfig"
1334
+ style="height: 100px;"
1438
1335
  >
1439
1336
  <div
1440
- class="css-1y9lrrz-display"
1441
- data-testid="display-testConfig2-LinearBareDisplay"
1337
+ class="css-v11ioz-renderingComponentContainer"
1338
+ style="transform: scaleX(1);"
1442
1339
  >
1443
1340
  <div
1444
- class="css-d6gpow-linearBlocks"
1445
- style="left: -800px;"
1341
+ class="css-1y9lrrz-display"
1342
+ data-testid="display-testConfig-LinearBareDisplay"
1446
1343
  >
1447
1344
  <div
1448
- class="css-a9ifge-boundaryPaddingBlock"
1449
- style="background: none; width: 800px;"
1450
- />
1451
- <div
1452
- class="css-1dmfa10-contentBlock"
1453
- style="width: 100px;"
1345
+ class="css-d6gpow-linearBlocks"
1346
+ style="left: -800px;"
1454
1347
  >
1455
- <svg
1456
- data-testid="svgfeatures"
1457
- height="100"
1458
- width="100"
1348
+ <div
1349
+ class="css-a9ifge-boundaryPaddingBlock"
1350
+ style="background: none; width: 800px;"
1351
+ />
1352
+ <div
1353
+ class="css-1dmfa10-contentBlock"
1354
+ style="width: 100px;"
1355
+ >
1356
+ <svg
1357
+ data-testid="svgfeatures"
1358
+ height="100"
1359
+ width="100"
1360
+ />
1361
+ </div>
1362
+ <div
1363
+ class="css-1b6zgog-interRegionPaddingBlock"
1364
+ style="background: none; width: 2px;"
1459
1365
  />
1366
+ <div
1367
+ class="css-1dmfa10-contentBlock"
1368
+ style="width: 800px;"
1369
+ >
1370
+ <svg
1371
+ data-testid="svgfeatures"
1372
+ height="100"
1373
+ width="800"
1374
+ />
1375
+ </div>
1460
1376
  </div>
1461
- <div
1462
- class="css-1x3apsi-interRegionPaddingBlock"
1463
- style="background: none; width: 2px;"
1377
+ </div>
1378
+ </div>
1379
+ </div>
1380
+ <div
1381
+ class="css-1hk9st0-overlay"
1382
+ style="height: 100px;"
1383
+ />
1384
+ <div
1385
+ class="css-14zcv15-horizontalHandle-resizeHandle"
1386
+ data-resizer="true"
1387
+ />
1388
+ </div>
1389
+ <div
1390
+ class="MuiPaper-root MuiPaper-outlined MuiPaper-rounded css-dewezf-MuiPaper-root-root"
1391
+ >
1392
+ <div
1393
+ class="MuiPaper-root MuiPaper-elevation MuiPaper-rounded MuiPaper-elevation1 css-lv7b0o-MuiPaper-root-trackLabel-trackLabelOverlap-root"
1394
+ >
1395
+ <span
1396
+ class="css-k4omgw-dragHandle"
1397
+ data-testid="dragHandle-lgv-testConfig2"
1398
+ draggable="true"
1399
+ >
1400
+ <svg
1401
+ aria-hidden="true"
1402
+ class="MuiSvgIcon-root MuiSvgIcon-fontSizeSmall css-1cz9l96-MuiSvgIcon-root-dragHandleIcon"
1403
+ data-testid="DragIndicatorIcon"
1404
+ focusable="false"
1405
+ viewBox="0 0 24 24"
1406
+ >
1407
+ <path
1408
+ d="M11 18c0 1.1-.9 2-2 2s-2-.9-2-2 .9-2 2-2 2 .9 2 2zm-2-8c-1.1 0-2 .9-2 2s.9 2 2 2 2-.9 2-2-.9-2-2-2zm0-6c-1.1 0-2 .9-2 2s.9 2 2 2 2-.9 2-2-.9-2-2-2zm6 4c1.1 0 2-.9 2-2s-.9-2-2-2-2 .9-2 2 .9 2 2 2zm0 2c-1.1 0-2 .9-2 2s.9 2 2 2 2-.9 2-2-.9-2-2-2zm0 6c-1.1 0-2 .9-2 2s.9 2 2 2 2-.9 2-2-.9-2-2-2z"
1409
+ />
1410
+ </svg>
1411
+ </span>
1412
+ <button
1413
+ class="MuiButtonBase-root MuiIconButton-root MuiIconButton-sizeMedium css-15mrns3-MuiButtonBase-root-MuiIconButton-root-iconButton"
1414
+ tabindex="0"
1415
+ title="close this track"
1416
+ type="button"
1417
+ >
1418
+ <svg
1419
+ aria-hidden="true"
1420
+ class="MuiSvgIcon-root MuiSvgIcon-fontSizeSmall css-ptiqhd-MuiSvgIcon-root"
1421
+ data-testid="CloseIcon"
1422
+ focusable="false"
1423
+ viewBox="0 0 24 24"
1424
+ >
1425
+ <path
1426
+ d="M19 6.41 17.59 5 12 10.59 6.41 5 5 6.41 10.59 12 5 17.59 6.41 19 12 13.41 17.59 19 19 17.59 13.41 12z"
1464
1427
  />
1428
+ </svg>
1429
+ <span
1430
+ class="MuiTouchRipple-root css-8je8zh-MuiTouchRipple-root"
1431
+ />
1432
+ </button>
1433
+ <span
1434
+ class="MuiTypography-root MuiTypography-body1 css-877agm-MuiTypography-root-trackName"
1435
+ >
1436
+ <span>
1437
+ Bar Track
1438
+ </span>
1439
+ </span>
1440
+ <button
1441
+ aria-haspopup="true"
1442
+ class="MuiButtonBase-root MuiIconButton-root MuiIconButton-sizeMedium css-15mrns3-MuiButtonBase-root-MuiIconButton-root-iconButton"
1443
+ data-testid="track_menu_icon"
1444
+ tabindex="0"
1445
+ type="button"
1446
+ >
1447
+ <svg
1448
+ aria-hidden="true"
1449
+ class="MuiSvgIcon-root MuiSvgIcon-fontSizeSmall css-ptiqhd-MuiSvgIcon-root"
1450
+ data-testid="MoreVertIcon"
1451
+ focusable="false"
1452
+ viewBox="0 0 24 24"
1453
+ >
1454
+ <path
1455
+ d="M12 8c1.1 0 2-.9 2-2s-.9-2-2-2-2 .9-2 2 .9 2 2 2zm0 2c-1.1 0-2 .9-2 2s.9 2 2 2 2-.9 2-2-.9-2-2-2zm0 6c-1.1 0-2 .9-2 2s.9 2 2 2 2-.9 2-2-.9-2-2-2z"
1456
+ />
1457
+ </svg>
1458
+ <span
1459
+ class="MuiTouchRipple-root css-8je8zh-MuiTouchRipple-root"
1460
+ />
1461
+ </button>
1462
+ </div>
1463
+ <div
1464
+ class="css-1ql7uaq-trackRenderingContainer"
1465
+ data-testid="trackRenderingContainer-lgv-testConfig2"
1466
+ style="height: 100px;"
1467
+ >
1468
+ <div
1469
+ class="css-v11ioz-renderingComponentContainer"
1470
+ style="transform: scaleX(1);"
1471
+ >
1472
+ <div
1473
+ class="css-1y9lrrz-display"
1474
+ data-testid="display-testConfig2-LinearBareDisplay"
1475
+ >
1465
1476
  <div
1466
- class="css-1dmfa10-contentBlock"
1467
- style="width: 800px;"
1477
+ class="css-d6gpow-linearBlocks"
1478
+ style="left: -800px;"
1468
1479
  >
1469
- <svg
1470
- data-testid="svgfeatures"
1471
- height="100"
1472
- width="800"
1480
+ <div
1481
+ class="css-a9ifge-boundaryPaddingBlock"
1482
+ style="background: none; width: 800px;"
1483
+ />
1484
+ <div
1485
+ class="css-1dmfa10-contentBlock"
1486
+ style="width: 100px;"
1487
+ >
1488
+ <svg
1489
+ data-testid="svgfeatures"
1490
+ height="100"
1491
+ width="100"
1492
+ />
1493
+ </div>
1494
+ <div
1495
+ class="css-1b6zgog-interRegionPaddingBlock"
1496
+ style="background: none; width: 2px;"
1473
1497
  />
1498
+ <div
1499
+ class="css-1dmfa10-contentBlock"
1500
+ style="width: 800px;"
1501
+ >
1502
+ <svg
1503
+ data-testid="svgfeatures"
1504
+ height="100"
1505
+ width="800"
1506
+ />
1507
+ </div>
1474
1508
  </div>
1475
1509
  </div>
1476
1510
  </div>
1477
1511
  </div>
1512
+ <div
1513
+ class="css-1hk9st0-overlay"
1514
+ style="height: 100px;"
1515
+ />
1516
+ <div
1517
+ class="css-14zcv15-horizontalHandle-resizeHandle"
1518
+ data-resizer="true"
1519
+ />
1478
1520
  </div>
1479
- <div
1480
- class="css-1hk9st0-overlay"
1481
- style="height: 100px;"
1482
- />
1483
- <div
1484
- class="css-14zcv15-horizontalHandle-resizeHandle"
1485
- data-resizer="true"
1486
- />
1487
1521
  </div>
1488
1522
  </div>
1489
1523
  </div>