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