@jbrowse/plugin-gccontent 2.10.1 → 2.10.3
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.
|
@@ -42,8 +42,15 @@ export default function stateModelFactory(pluginManager: PluginManager, configSc
|
|
|
42
42
|
message: string | undefined;
|
|
43
43
|
maxHeightReached: boolean;
|
|
44
44
|
ReactComponent: ({ model, }: {
|
|
45
|
-
model:
|
|
46
|
-
|
|
45
|
+
model: {
|
|
46
|
+
error?: unknown;
|
|
47
|
+
reload: () => void;
|
|
48
|
+
message: import("react").ReactNode;
|
|
49
|
+
filled?: boolean | undefined;
|
|
50
|
+
status?: string | undefined;
|
|
51
|
+
reactElement?: import("react").ReactElement<any, string | import("react").JSXElementConstructor<any>> | undefined;
|
|
52
|
+
};
|
|
53
|
+
}) => import("react").JSX.Element | undefined;
|
|
47
54
|
renderProps: any;
|
|
48
55
|
} & {
|
|
49
56
|
doReload(): void;
|
|
@@ -135,7 +142,9 @@ export default function stateModelFactory(pluginManager: PluginManager, configSc
|
|
|
135
142
|
} & import("mobx-state-tree/dist/internal").NonEmptyObject & {
|
|
136
143
|
rendererTypeName: string;
|
|
137
144
|
error: unknown;
|
|
138
|
-
message: string | undefined;
|
|
145
|
+
message: string | undefined; /**
|
|
146
|
+
* #property
|
|
147
|
+
*/
|
|
139
148
|
} & import("mobx-state-tree").IStateTreeNode<import("mobx-state-tree").IModelType<{
|
|
140
149
|
id: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").ISimpleType<string>, [undefined]>;
|
|
141
150
|
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
|
},
|
|
@@ -42,8 +42,15 @@ export default function stateModelFactory(pluginManager: PluginManager, configSc
|
|
|
42
42
|
message: string | undefined;
|
|
43
43
|
maxHeightReached: boolean;
|
|
44
44
|
ReactComponent: ({ model, }: {
|
|
45
|
-
model:
|
|
46
|
-
|
|
45
|
+
model: {
|
|
46
|
+
error?: unknown;
|
|
47
|
+
reload: () => void;
|
|
48
|
+
message: import("react").ReactNode;
|
|
49
|
+
filled?: boolean | undefined;
|
|
50
|
+
status?: string | undefined;
|
|
51
|
+
reactElement?: import("react").ReactElement<any, string | import("react").JSXElementConstructor<any>> | undefined;
|
|
52
|
+
};
|
|
53
|
+
}) => import("react").JSX.Element | undefined;
|
|
47
54
|
renderProps: any;
|
|
48
55
|
} & {
|
|
49
56
|
doReload(): void;
|
|
@@ -135,7 +142,9 @@ export default function stateModelFactory(pluginManager: PluginManager, configSc
|
|
|
135
142
|
} & import("mobx-state-tree/dist/internal").NonEmptyObject & {
|
|
136
143
|
rendererTypeName: string;
|
|
137
144
|
error: unknown;
|
|
138
|
-
message: string | undefined;
|
|
145
|
+
message: string | undefined; /**
|
|
146
|
+
* #property
|
|
147
|
+
*/
|
|
139
148
|
} & import("mobx-state-tree").IStateTreeNode<import("mobx-state-tree").IModelType<{
|
|
140
149
|
id: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").ISimpleType<string>, [undefined]>;
|
|
141
150
|
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.3",
|
|
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": "c8fc800cd17decd72b2e971c7a6add3b95214e72"
|
|
57
57
|
}
|