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