@jbrowse/plugin-sv-inspector 2.6.3 → 2.7.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.
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import React from 'react';
|
|
2
2
|
import { SvInspectorViewModel } from '../models/SvInspectorView';
|
|
3
|
-
declare const
|
|
3
|
+
declare const SvInspectorView: ({ model, }: {
|
|
4
4
|
model: SvInspectorViewModel;
|
|
5
5
|
}) => React.JSX.Element;
|
|
6
|
-
export default
|
|
6
|
+
export default SvInspectorView;
|
|
@@ -31,7 +31,7 @@ const useStyles = (0, mui_1.makeStyles)()(theme => ({
|
|
|
31
31
|
overflow: 'hidden',
|
|
32
32
|
},
|
|
33
33
|
}));
|
|
34
|
-
|
|
34
|
+
const SvInspectorView = (0, mobx_react_1.observer)(function ({ model, }) {
|
|
35
35
|
const { classes } = useStyles();
|
|
36
36
|
const { SpreadsheetViewReactComponent, CircularViewReactComponent, showCircularView, } = model;
|
|
37
37
|
return (react_1.default.createElement("div", { className: classes.container },
|
|
@@ -48,3 +48,4 @@ exports.default = (0, mobx_react_1.observer)(function SvInspectorView({ model, }
|
|
|
48
48
|
react_1.default.createElement(CircularViewReactComponent, { model: model.circularView })))) : null),
|
|
49
49
|
react_1.default.createElement(ui_1.ResizeHandle, { onDrag: model.resizeHeight, className: classes.resizeHandleHoriz })));
|
|
50
50
|
});
|
|
51
|
+
exports.default = SvInspectorView;
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import React from 'react';
|
|
2
2
|
import { SvInspectorViewModel } from '../models/SvInspectorView';
|
|
3
|
-
declare const
|
|
3
|
+
declare const SvInspectorView: ({ model, }: {
|
|
4
4
|
model: SvInspectorViewModel;
|
|
5
5
|
}) => React.JSX.Element;
|
|
6
|
-
export default
|
|
6
|
+
export default SvInspectorView;
|
|
@@ -26,7 +26,7 @@ const useStyles = makeStyles()(theme => ({
|
|
|
26
26
|
overflow: 'hidden',
|
|
27
27
|
},
|
|
28
28
|
}));
|
|
29
|
-
|
|
29
|
+
const SvInspectorView = observer(function ({ model, }) {
|
|
30
30
|
const { classes } = useStyles();
|
|
31
31
|
const { SpreadsheetViewReactComponent, CircularViewReactComponent, showCircularView, } = model;
|
|
32
32
|
return (React.createElement("div", { className: classes.container },
|
|
@@ -43,3 +43,4 @@ export default observer(function SvInspectorView({ model, }) {
|
|
|
43
43
|
React.createElement(CircularViewReactComponent, { model: model.circularView })))) : null),
|
|
44
44
|
React.createElement(ResizeHandle, { onDrag: model.resizeHeight, className: classes.resizeHandleHoriz })));
|
|
45
45
|
});
|
|
46
|
+
export default SvInspectorView;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@jbrowse/plugin-sv-inspector",
|
|
3
|
-
"version": "2.
|
|
3
|
+
"version": "2.7.0",
|
|
4
4
|
"description": "JBrowse 2 SV inspector view",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"jbrowse",
|
|
@@ -45,7 +45,7 @@
|
|
|
45
45
|
"@jbrowse/plugin-spreadsheet-view": "^2.0.0",
|
|
46
46
|
"@mui/material": "^5.0.0",
|
|
47
47
|
"mobx": "^6.0.0",
|
|
48
|
-
"mobx-react": "^
|
|
48
|
+
"mobx-react": "^9.0.0",
|
|
49
49
|
"mobx-state-tree": "^5.0.0",
|
|
50
50
|
"react": ">=16.8.0",
|
|
51
51
|
"react-dom": ">=16.8.0",
|
|
@@ -57,5 +57,5 @@
|
|
|
57
57
|
"publishConfig": {
|
|
58
58
|
"access": "public"
|
|
59
59
|
},
|
|
60
|
-
"gitHead": "
|
|
60
|
+
"gitHead": "dbe7fb1af01fc89f833d2744635eb44a17365b41"
|
|
61
61
|
}
|