@jbrowse/plugin-gccontent 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.
|
@@ -135,7 +135,9 @@ export default function stateModelFactory(pluginManager: PluginManager, configSc
|
|
|
135
135
|
} & import("mobx-state-tree/dist/internal").NonEmptyObject & {
|
|
136
136
|
rendererTypeName: string;
|
|
137
137
|
error: unknown;
|
|
138
|
-
message: string | undefined;
|
|
138
|
+
message: string | undefined; /**
|
|
139
|
+
* #property
|
|
140
|
+
*/
|
|
139
141
|
} & import("mobx-state-tree").IStateTreeNode<import("mobx-state-tree").IModelType<{
|
|
140
142
|
id: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").ISimpleType<string>, [undefined]>;
|
|
141
143
|
type: import("mobx-state-tree").ISimpleType<string>;
|
|
@@ -28,7 +28,7 @@ const util_1 = require("@jbrowse/core/util");
|
|
|
28
28
|
const plugin_wiggle_1 = require("@jbrowse/plugin-wiggle");
|
|
29
29
|
const mobx_state_tree_1 = require("mobx-state-tree");
|
|
30
30
|
const react_1 = require("react");
|
|
31
|
-
const
|
|
31
|
+
const EditGCContentParamsDialog = (0, react_1.lazy)(() => Promise.resolve().then(() => __importStar(require('./components/EditGCContentParams'))));
|
|
32
32
|
/**
|
|
33
33
|
* #stateModel LinearGCContentDisplay
|
|
34
34
|
* #category display
|
|
@@ -76,7 +76,7 @@ function stateModelFactory(pluginManager, configSchema) {
|
|
|
76
76
|
label: 'Change GC parameters',
|
|
77
77
|
onClick: () => {
|
|
78
78
|
(0, util_1.getSession)(self).queueDialog(handleClose => [
|
|
79
|
-
|
|
79
|
+
EditGCContentParamsDialog,
|
|
80
80
|
{ model: self, handleClose },
|
|
81
81
|
]);
|
|
82
82
|
},
|
|
@@ -135,7 +135,9 @@ export default function stateModelFactory(pluginManager: PluginManager, configSc
|
|
|
135
135
|
} & import("mobx-state-tree/dist/internal").NonEmptyObject & {
|
|
136
136
|
rendererTypeName: string;
|
|
137
137
|
error: unknown;
|
|
138
|
-
message: string | undefined;
|
|
138
|
+
message: string | undefined; /**
|
|
139
|
+
* #property
|
|
140
|
+
*/
|
|
139
141
|
} & import("mobx-state-tree").IStateTreeNode<import("mobx-state-tree").IModelType<{
|
|
140
142
|
id: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").ISimpleType<string>, [undefined]>;
|
|
141
143
|
type: import("mobx-state-tree").ISimpleType<string>;
|
|
@@ -3,7 +3,7 @@ import { getSession } from '@jbrowse/core/util';
|
|
|
3
3
|
import { linearWiggleDisplayModelFactory } from '@jbrowse/plugin-wiggle';
|
|
4
4
|
import { types } from 'mobx-state-tree';
|
|
5
5
|
import { lazy } from 'react';
|
|
6
|
-
const
|
|
6
|
+
const EditGCContentParamsDialog = lazy(() => import('./components/EditGCContentParams'));
|
|
7
7
|
/**
|
|
8
8
|
* #stateModel LinearGCContentDisplay
|
|
9
9
|
* #category display
|
|
@@ -51,7 +51,7 @@ export default function stateModelFactory(pluginManager, configSchema) {
|
|
|
51
51
|
label: 'Change GC parameters',
|
|
52
52
|
onClick: () => {
|
|
53
53
|
getSession(self).queueDialog(handleClose => [
|
|
54
|
-
|
|
54
|
+
EditGCContentParamsDialog,
|
|
55
55
|
{ model: self, handleClose },
|
|
56
56
|
]);
|
|
57
57
|
},
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@jbrowse/plugin-gccontent",
|
|
3
|
-
"version": "2.10.
|
|
3
|
+
"version": "2.10.2",
|
|
4
4
|
"description": "JBrowse 2 gccontent concepts",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"jbrowse",
|
|
@@ -53,5 +53,5 @@
|
|
|
53
53
|
"distModule": "esm/index.js",
|
|
54
54
|
"srcModule": "src/index.ts",
|
|
55
55
|
"module": "esm/index.js",
|
|
56
|
-
"gitHead": "
|
|
56
|
+
"gitHead": "7ca3b7db337ebd88853e2d96cdab940ed550c4fb"
|
|
57
57
|
}
|