@jbrowse/plugin-sv-inspector 3.0.3 → 3.0.5
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.
|
@@ -11,8 +11,8 @@ const useStyles = (0, mui_1.makeStyles)()(theme => ({
|
|
|
11
11
|
}));
|
|
12
12
|
const CircularViewOptions = (0, mobx_react_1.observer)(function ({ svInspector, }) {
|
|
13
13
|
const { classes } = useStyles();
|
|
14
|
-
return ((0, jsx_runtime_1.jsx)(
|
|
15
|
-
|
|
16
|
-
|
|
14
|
+
return ((0, jsx_runtime_1.jsx)("div", { className: classes.circularViewOptions, style: { height: svInspector.circularViewOptionsBarHeight }, children: (0, jsx_runtime_1.jsx)(material_1.FormControlLabel, { control: (0, jsx_runtime_1.jsx)(material_1.Checkbox, { checked: svInspector.onlyDisplayRelevantRegionsInCircularView, onChange: e => {
|
|
15
|
+
svInspector.setOnlyDisplayRelevantRegionsInCircularView(e.target.checked);
|
|
16
|
+
} }), label: "show only regions with data" }) }));
|
|
17
17
|
});
|
|
18
18
|
exports.default = CircularViewOptions;
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import { jsx as _jsx } from "react/jsx-runtime";
|
|
2
|
-
import { Checkbox, FormControlLabel
|
|
2
|
+
import { Checkbox, FormControlLabel } from '@mui/material';
|
|
3
3
|
import { observer } from 'mobx-react';
|
|
4
4
|
import { makeStyles } from 'tss-react/mui';
|
|
5
5
|
const useStyles = makeStyles()(theme => ({
|
|
@@ -9,8 +9,8 @@ const useStyles = makeStyles()(theme => ({
|
|
|
9
9
|
}));
|
|
10
10
|
const CircularViewOptions = observer(function ({ svInspector, }) {
|
|
11
11
|
const { classes } = useStyles();
|
|
12
|
-
return (_jsx(
|
|
13
|
-
|
|
14
|
-
|
|
12
|
+
return (_jsx("div", { className: classes.circularViewOptions, style: { height: svInspector.circularViewOptionsBarHeight }, children: _jsx(FormControlLabel, { control: _jsx(Checkbox, { checked: svInspector.onlyDisplayRelevantRegionsInCircularView, onChange: e => {
|
|
13
|
+
svInspector.setOnlyDisplayRelevantRegionsInCircularView(e.target.checked);
|
|
14
|
+
} }), label: "show only regions with data" }) }));
|
|
15
15
|
});
|
|
16
16
|
export default CircularViewOptions;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@jbrowse/plugin-sv-inspector",
|
|
3
|
-
"version": "3.0.
|
|
3
|
+
"version": "3.0.5",
|
|
4
4
|
"description": "JBrowse 2 SV inspector view",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"jbrowse",
|
|
@@ -36,10 +36,10 @@
|
|
|
36
36
|
"clean": "rimraf dist esm *.tsbuildinfo"
|
|
37
37
|
},
|
|
38
38
|
"dependencies": {
|
|
39
|
-
"@jbrowse/core": "^3.0.
|
|
40
|
-
"@jbrowse/plugin-circular-view": "^3.0.
|
|
41
|
-
"@jbrowse/plugin-spreadsheet-view": "^3.0.
|
|
42
|
-
"@jbrowse/sv-core": "^3.0.
|
|
39
|
+
"@jbrowse/core": "^3.0.5",
|
|
40
|
+
"@jbrowse/plugin-circular-view": "^3.0.5",
|
|
41
|
+
"@jbrowse/plugin-spreadsheet-view": "^3.0.5",
|
|
42
|
+
"@jbrowse/sv-core": "^3.0.5",
|
|
43
43
|
"@mui/icons-material": "^6.0.0",
|
|
44
44
|
"@mui/material": "^6.0.0",
|
|
45
45
|
"mobx": "^6.0.0",
|
|
@@ -57,5 +57,5 @@
|
|
|
57
57
|
"publishConfig": {
|
|
58
58
|
"access": "public"
|
|
59
59
|
},
|
|
60
|
-
"gitHead": "
|
|
60
|
+
"gitHead": "a03749efe19e51609922272b845a331897346789"
|
|
61
61
|
}
|