@jbrowse/react-circular-genome-view2 3.7.0 → 4.0.1
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/esm/JBrowseCircularGenomeView/JBrowseCircularGenomeView.d.ts +1 -1
- package/esm/JBrowseCircularGenomeView/JBrowseCircularGenomeView.js +1 -1
- package/esm/JBrowseCircularGenomeView/index.d.ts +1 -1
- package/esm/JBrowseCircularGenomeView/index.js +1 -1
- package/esm/corePlugins.d.ts +2 -2
- package/esm/createModel/createConfigModel.d.ts +25 -29
- package/esm/createModel/createConfigModel.js +1 -1
- package/esm/createModel/createModel.d.ts +517 -680
- package/esm/createModel/createModel.js +5 -5
- package/esm/createModel/createSessionModel.d.ts +247 -327
- package/esm/createModel/createSessionModel.js +5 -4
- package/esm/createModel/index.d.ts +3 -3
- package/esm/createModel/index.js +3 -3
- package/esm/createViewState.d.ts +1305 -1757
- package/esm/createViewState.js +3 -4
- package/esm/index.d.ts +4 -4
- package/esm/index.js +4 -4
- package/esm/loadPlugins.js +1 -1
- package/esm/types.d.ts +1 -1
- package/esm/version.d.ts +1 -1
- package/esm/version.js +1 -1
- package/esm/webpack.d.ts +4 -4
- package/esm/webpack.js +4 -4
- package/package.json +38 -40
- package/dist/JBrowseCircularGenomeView/JBrowseCircularGenomeView.d.ts +0 -5
- package/dist/JBrowseCircularGenomeView/JBrowseCircularGenomeView.js +0 -23
- package/dist/JBrowseCircularGenomeView/index.d.ts +0 -1
- package/dist/JBrowseCircularGenomeView/index.js +0 -8
- package/dist/corePlugins.d.ts +0 -3
- package/dist/corePlugins.js +0 -22
- package/dist/createModel/AboutDialog.d.ts +0 -1
- package/dist/createModel/AboutDialog.js +0 -5
- package/dist/createModel/createConfigModel.d.ts +0 -104
- package/dist/createModel/createConfigModel.js +0 -43
- package/dist/createModel/createModel.d.ts +0 -4588
- package/dist/createModel/createModel.js +0 -117
- package/dist/createModel/createSessionModel.d.ts +0 -1870
- package/dist/createModel/createSessionModel.js +0 -115
- package/dist/createModel/index.d.ts +0 -3
- package/dist/createModel/index.js +0 -12
- package/dist/createViewState.d.ts +0 -11770
- package/dist/createViewState.js +0 -64
- package/dist/index.d.ts +0 -4
- package/dist/index.js +0 -14
- package/dist/loadPlugins.d.ts +0 -13
- package/dist/loadPlugins.js +0 -12
- package/dist/react-circular-genome-view.umd.production.min.js +0 -229
- package/dist/react-circular-genome-view.umd.production.min.js.LICENSE.txt +0 -145
- package/dist/react-circular-genome-view.umd.production.min.js.map +0 -1
- package/dist/types.d.ts +0 -5
- package/dist/types.js +0 -2
- package/dist/version.d.ts +0 -1
- package/dist/version.js +0 -4
- package/dist/webpack.d.ts +0 -7
- package/dist/webpack.js +0 -53
|
@@ -6,7 +6,7 @@ import { getEnv } from '@jbrowse/core/util';
|
|
|
6
6
|
import { EmbeddedViewContainer, ModalWidget } from '@jbrowse/embedded-core';
|
|
7
7
|
import { ThemeProvider } from '@mui/material';
|
|
8
8
|
import { observer } from 'mobx-react';
|
|
9
|
-
const JBrowseCircularGenomeView = observer(function ({ viewState, }) {
|
|
9
|
+
const JBrowseCircularGenomeView = observer(function JBrowseCircularGenomeView({ viewState, }) {
|
|
10
10
|
const { session } = viewState;
|
|
11
11
|
const { view } = session;
|
|
12
12
|
const { pluginManager } = getEnv(session);
|
|
@@ -1 +1 @@
|
|
|
1
|
-
export { default } from './JBrowseCircularGenomeView';
|
|
1
|
+
export { default } from './JBrowseCircularGenomeView.tsx';
|
|
@@ -1 +1 @@
|
|
|
1
|
-
export { default } from
|
|
1
|
+
export { default } from "./JBrowseCircularGenomeView.js";
|
package/esm/corePlugins.d.ts
CHANGED
|
@@ -1,3 +1,3 @@
|
|
|
1
|
-
import
|
|
2
|
-
declare const corePlugins: (typeof
|
|
1
|
+
import CircularGenomeView from '@jbrowse/plugin-circular-view';
|
|
2
|
+
declare const corePlugins: (typeof CircularGenomeView)[];
|
|
3
3
|
export default corePlugins;
|
|
@@ -1,20 +1,20 @@
|
|
|
1
1
|
import type PluginManager from '@jbrowse/core/PluginManager';
|
|
2
2
|
import type { AnyConfigurationSchemaType } from '@jbrowse/core/configuration';
|
|
3
|
-
export default function createConfigModel(pluginManager: PluginManager, assemblyConfigSchemasType: AnyConfigurationSchemaType): import("mobx-state-tree").IModelType<{
|
|
4
|
-
configuration: import("
|
|
5
|
-
rpc: import("
|
|
3
|
+
export default function createConfigModel(pluginManager: PluginManager, assemblyConfigSchemasType: AnyConfigurationSchemaType): import("@jbrowse/mobx-state-tree").IModelType<{
|
|
4
|
+
configuration: import("node_modules/@jbrowse/core/src/configuration/configurationSchema").ConfigurationSchemaType<{
|
|
5
|
+
rpc: import("node_modules/@jbrowse/core/src/configuration/configurationSchema").ConfigurationSchemaType<{
|
|
6
6
|
defaultDriver: {
|
|
7
7
|
type: string;
|
|
8
8
|
description: string;
|
|
9
9
|
defaultValue: string;
|
|
10
10
|
};
|
|
11
|
-
drivers: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").IMapType<import("mobx-state-tree").ITypeUnion<import("mobx-state-tree").ModelCreationType<import("mobx-state-tree/dist/internal").ExtractCFromProps<Record<string, any>>> | undefined, import("mobx-state-tree").ModelSnapshotType<Record<string, any>>, ({} & Partial<import("mobx-state-tree/dist/internal").ExtractCFromProps<Record<string, any>>> & import("mobx-state-tree/dist/internal").NonEmptyObject) | undefined>>, [undefined]>;
|
|
12
|
-
}, import("
|
|
11
|
+
drivers: import("@jbrowse/mobx-state-tree").IOptionalIType<import("@jbrowse/mobx-state-tree").IMapType<import("@jbrowse/mobx-state-tree").ITypeUnion<import("@jbrowse/mobx-state-tree").ModelCreationType<import("@jbrowse/mobx-state-tree/dist/internal").ExtractCFromProps<Record<string, any>>> | undefined, import("@jbrowse/mobx-state-tree").ModelSnapshotType<Record<string, any>>, ({} & Partial<import("@jbrowse/mobx-state-tree/dist/internal").ExtractCFromProps<Record<string, any>>> & import("@jbrowse/mobx-state-tree/dist/internal").NonEmptyObject) | undefined>>, [undefined]>;
|
|
12
|
+
}, import("node_modules/@jbrowse/core/src/configuration/configurationSchema").ConfigurationSchemaOptions<undefined, undefined>>;
|
|
13
13
|
highResolutionScaling: {
|
|
14
14
|
type: string;
|
|
15
15
|
defaultValue: number;
|
|
16
16
|
};
|
|
17
|
-
formatDetails: import("
|
|
17
|
+
formatDetails: import("node_modules/@jbrowse/core/src/configuration/configurationSchema").ConfigurationSchemaType<{
|
|
18
18
|
feature: {
|
|
19
19
|
type: string;
|
|
20
20
|
description: string;
|
|
@@ -37,8 +37,8 @@ export default function createConfigModel(pluginManager: PluginManager, assembly
|
|
|
37
37
|
defaultValue: number;
|
|
38
38
|
description: string;
|
|
39
39
|
};
|
|
40
|
-
}, import("
|
|
41
|
-
formatAbout: import("
|
|
40
|
+
}, import("node_modules/@jbrowse/core/src/configuration/configurationSchema").ConfigurationSchemaOptions<undefined, undefined>>;
|
|
41
|
+
formatAbout: import("node_modules/@jbrowse/core/src/configuration/configurationSchema").ConfigurationSchemaType<{
|
|
42
42
|
config: {
|
|
43
43
|
type: string;
|
|
44
44
|
description: string;
|
|
@@ -49,9 +49,9 @@ export default function createConfigModel(pluginManager: PluginManager, assembly
|
|
|
49
49
|
type: string;
|
|
50
50
|
defaultValue: boolean;
|
|
51
51
|
};
|
|
52
|
-
}, import("
|
|
53
|
-
hierarchical: import("
|
|
54
|
-
sort: import("
|
|
52
|
+
}, import("node_modules/@jbrowse/core/src/configuration/configurationSchema").ConfigurationSchemaOptions<undefined, undefined>>;
|
|
53
|
+
hierarchical: import("node_modules/@jbrowse/core/src/configuration/configurationSchema").ConfigurationSchemaType<{
|
|
54
|
+
sort: import("node_modules/@jbrowse/core/src/configuration/configurationSchema").ConfigurationSchemaType<{
|
|
55
55
|
trackNames: {
|
|
56
56
|
type: string;
|
|
57
57
|
defaultValue: boolean;
|
|
@@ -60,8 +60,8 @@ export default function createConfigModel(pluginManager: PluginManager, assembly
|
|
|
60
60
|
type: string;
|
|
61
61
|
defaultValue: boolean;
|
|
62
62
|
};
|
|
63
|
-
}, import("
|
|
64
|
-
defaultCollapsed: import("
|
|
63
|
+
}, import("node_modules/@jbrowse/core/src/configuration/configurationSchema").ConfigurationSchemaOptions<undefined, undefined>>;
|
|
64
|
+
defaultCollapsed: import("node_modules/@jbrowse/core/src/configuration/configurationSchema").ConfigurationSchemaType<{
|
|
65
65
|
categoryNames: {
|
|
66
66
|
type: string;
|
|
67
67
|
defaultValue: never[];
|
|
@@ -74,31 +74,27 @@ export default function createConfigModel(pluginManager: PluginManager, assembly
|
|
|
74
74
|
type: string;
|
|
75
75
|
defaultValue: boolean;
|
|
76
76
|
};
|
|
77
|
-
}, import("
|
|
78
|
-
}, import("
|
|
77
|
+
}, import("node_modules/@jbrowse/core/src/configuration/configurationSchema").ConfigurationSchemaOptions<undefined, undefined>>;
|
|
78
|
+
}, import("node_modules/@jbrowse/core/src/configuration/configurationSchema").ConfigurationSchemaOptions<undefined, undefined>>;
|
|
79
79
|
theme: {
|
|
80
80
|
type: string;
|
|
81
81
|
defaultValue: {};
|
|
82
82
|
};
|
|
83
|
-
}, import("
|
|
83
|
+
}, import("node_modules/@jbrowse/core/src/configuration/configurationSchema").ConfigurationSchemaOptions<undefined, undefined>>;
|
|
84
84
|
assembly: AnyConfigurationSchemaType;
|
|
85
|
-
tracks: import("mobx-state-tree").IArrayType<import("mobx-state-tree").IAnyModelType>;
|
|
86
|
-
internetAccounts: import("mobx-state-tree").IArrayType<import("mobx-state-tree").IAnyModelType>;
|
|
87
|
-
connections: import("mobx-state-tree").IArrayType<import("mobx-state-tree").IAnyModelType>;
|
|
88
|
-
aggregateTextSearchAdapters: import("mobx-state-tree").IArrayType<import("mobx-state-tree").IAnyModelType>;
|
|
89
|
-
plugins: import("mobx-state-tree").IType<any, any, any>;
|
|
85
|
+
tracks: import("@jbrowse/mobx-state-tree").IArrayType<import("@jbrowse/mobx-state-tree").IAnyModelType>;
|
|
86
|
+
internetAccounts: import("@jbrowse/mobx-state-tree").IArrayType<import("@jbrowse/mobx-state-tree").IAnyModelType>;
|
|
87
|
+
connections: import("@jbrowse/mobx-state-tree").IArrayType<import("@jbrowse/mobx-state-tree").IAnyModelType>;
|
|
88
|
+
aggregateTextSearchAdapters: import("@jbrowse/mobx-state-tree").IArrayType<import("@jbrowse/mobx-state-tree").IAnyModelType>;
|
|
89
|
+
plugins: import("@jbrowse/mobx-state-tree").IType<any, any, any>;
|
|
90
90
|
}, {
|
|
91
91
|
readonly assemblies: ({
|
|
92
92
|
[x: string]: any;
|
|
93
|
-
} & import("mobx-state-tree/dist/internal").NonEmptyObject & {
|
|
93
|
+
} & import("@jbrowse/mobx-state-tree/dist/internal").NonEmptyObject & {
|
|
94
94
|
setSubschema(slotName: string, data: Record<string, unknown>): Record<string, unknown> | ({
|
|
95
95
|
[x: string]: any;
|
|
96
|
-
} & import("mobx-state-tree/dist/internal").NonEmptyObject &
|
|
97
|
-
|
|
98
|
-
[x: string]: any;
|
|
99
|
-
} & import("mobx-state-tree/dist/internal").NonEmptyObject & any & import("mobx-state-tree").IStateTreeNode<AnyConfigurationSchemaType>);
|
|
100
|
-
} & import("mobx-state-tree").IStateTreeNode<AnyConfigurationSchemaType>);
|
|
101
|
-
} & import("mobx-state-tree").IStateTreeNode<AnyConfigurationSchemaType>)[];
|
|
96
|
+
} & import("@jbrowse/mobx-state-tree/dist/internal").NonEmptyObject & any & import("@jbrowse/mobx-state-tree").IStateTreeNode<AnyConfigurationSchemaType>);
|
|
97
|
+
} & import("@jbrowse/mobx-state-tree").IStateTreeNode<AnyConfigurationSchemaType>)[];
|
|
102
98
|
readonly assemblyName: string;
|
|
103
99
|
readonly rpcManager: any;
|
|
104
|
-
}, import("mobx-state-tree")._NotCustomized, import("mobx-state-tree")._NotCustomized>;
|
|
100
|
+
}, import("@jbrowse/mobx-state-tree")._NotCustomized, import("@jbrowse/mobx-state-tree")._NotCustomized>;
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { ConfigurationSchema, readConfObject, } from '@jbrowse/core/configuration';
|
|
2
2
|
import RpcManager from '@jbrowse/core/rpc/RpcManager';
|
|
3
|
+
import { getParent, types } from '@jbrowse/mobx-state-tree';
|
|
3
4
|
import { FormatAboutConfigSchemaFactory, FormatDetailsConfigSchemaFactory, HierarchicalConfigSchemaFactory, } from '@jbrowse/product-core';
|
|
4
|
-
import { getParent, types } from 'mobx-state-tree';
|
|
5
5
|
export default function createConfigModel(pluginManager, assemblyConfigSchemasType) {
|
|
6
6
|
return types
|
|
7
7
|
.model('Configuration', {
|