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