@jbrowse/plugin-linear-genome-view 2.3.3 → 2.4.0

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