@jbrowse/app-core 2.10.1 → 2.10.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/ui/App/App.js
CHANGED
|
@@ -63,7 +63,7 @@ const useStyles = (0, mui_1.makeStyles)()(theme => ({
|
|
|
63
63
|
}));
|
|
64
64
|
const LazyDrawerWidget = (0, mobx_react_1.observer)(function (props) {
|
|
65
65
|
const { session } = props;
|
|
66
|
-
return (react_1.default.createElement(react_1.Suspense, { fallback:
|
|
66
|
+
return (react_1.default.createElement(react_1.Suspense, { fallback: null },
|
|
67
67
|
react_1.default.createElement(DrawerWidget, { session: session })));
|
|
68
68
|
});
|
|
69
69
|
const ViewContainer = (0, mobx_react_1.observer)(function (props) {
|
|
@@ -27,7 +27,7 @@ const react_1 = __importStar(require("react"));
|
|
|
27
27
|
const mobx_react_1 = require("mobx-react");
|
|
28
28
|
const DialogQueue = (0, mobx_react_1.observer)(function ({ session, }) {
|
|
29
29
|
const { DialogComponent, DialogProps } = session;
|
|
30
|
-
return (react_1.default.createElement(react_1.default.Fragment, null, DialogComponent ? (react_1.default.createElement(react_1.Suspense, { fallback:
|
|
30
|
+
return (react_1.default.createElement(react_1.default.Fragment, null, DialogComponent ? (react_1.default.createElement(react_1.Suspense, { fallback: null },
|
|
31
31
|
react_1.default.createElement(DialogComponent, { ...DialogProps }))) : null));
|
|
32
32
|
});
|
|
33
33
|
exports.default = DialogQueue;
|
package/esm/ui/App/App.js
CHANGED
|
@@ -34,7 +34,7 @@ const useStyles = makeStyles()(theme => ({
|
|
|
34
34
|
}));
|
|
35
35
|
const LazyDrawerWidget = observer(function (props) {
|
|
36
36
|
const { session } = props;
|
|
37
|
-
return (React.createElement(Suspense, { fallback:
|
|
37
|
+
return (React.createElement(Suspense, { fallback: null },
|
|
38
38
|
React.createElement(DrawerWidget, { session: session })));
|
|
39
39
|
});
|
|
40
40
|
const ViewContainer = observer(function (props) {
|
|
@@ -2,7 +2,7 @@ import React, { Suspense } from 'react';
|
|
|
2
2
|
import { observer } from 'mobx-react';
|
|
3
3
|
const DialogQueue = observer(function ({ session, }) {
|
|
4
4
|
const { DialogComponent, DialogProps } = session;
|
|
5
|
-
return (React.createElement(React.Fragment, null, DialogComponent ? (React.createElement(Suspense, { fallback:
|
|
5
|
+
return (React.createElement(React.Fragment, null, DialogComponent ? (React.createElement(Suspense, { fallback: null },
|
|
6
6
|
React.createElement(DialogComponent, { ...DialogProps }))) : null));
|
|
7
7
|
});
|
|
8
8
|
export default DialogQueue;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@jbrowse/app-core",
|
|
3
|
-
"version": "2.10.
|
|
3
|
+
"version": "2.10.2",
|
|
4
4
|
"description": "JBrowse 2 code shared between the 'full featured' apps e.g. jbrowse-web and jbrowse-desktop",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"jbrowse",
|
|
@@ -42,7 +42,7 @@
|
|
|
42
42
|
},
|
|
43
43
|
"dependencies": {
|
|
44
44
|
"@babel/runtime": "^7.16.3",
|
|
45
|
-
"@jbrowse/product-core": "^2.10.
|
|
45
|
+
"@jbrowse/product-core": "^2.10.2",
|
|
46
46
|
"@mui/icons-material": "^5.0.0",
|
|
47
47
|
"@mui/material": "^5.10.17",
|
|
48
48
|
"copy-to-clipboard": "^3.3.1",
|
|
@@ -60,5 +60,5 @@
|
|
|
60
60
|
"publishConfig": {
|
|
61
61
|
"access": "public"
|
|
62
62
|
},
|
|
63
|
-
"gitHead": "
|
|
63
|
+
"gitHead": "7ca3b7db337ebd88853e2d96cdab940ed550c4fb"
|
|
64
64
|
}
|