@jbrowse/web-core 2.6.3 → 2.7.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.
|
@@ -12,13 +12,13 @@ import CopyIcon from '@mui/icons-material/FileCopy';
|
|
|
12
12
|
import DeleteIcon from '@mui/icons-material/Delete';
|
|
13
13
|
import InfoIcon from '@mui/icons-material/Info';
|
|
14
14
|
import { DialogQueueSessionMixin, DrawerWidgetSessionMixin, MultipleViewsSessionMixin, ReferenceManagementSessionMixin, SessionTracksManagerSessionMixin, ThemeManagerSessionMixin, } from '@jbrowse/product-core';
|
|
15
|
-
import { SessionAssembliesMixin, TemporaryAssembliesMixin, } from '@jbrowse/app-core';
|
|
15
|
+
import { AppFocusMixin, SessionAssembliesMixin, TemporaryAssembliesMixin, } from '@jbrowse/app-core';
|
|
16
16
|
// locals
|
|
17
17
|
import { WebSessionConnectionsMixin } from '../SessionConnections';
|
|
18
18
|
const AboutDialog = lazy(() => import('./AboutDialog'));
|
|
19
19
|
export function BaseWebSession({ pluginManager, assemblyConfigSchema, }) {
|
|
20
20
|
const sessionModel = types
|
|
21
|
-
.compose('WebCoreSessionModel', ReferenceManagementSessionMixin(pluginManager), DrawerWidgetSessionMixin(pluginManager), DialogQueueSessionMixin(pluginManager), ThemeManagerSessionMixin(pluginManager), MultipleViewsSessionMixin(pluginManager), SessionTracksManagerSessionMixin(pluginManager), SessionAssembliesMixin(pluginManager, assemblyConfigSchema), TemporaryAssembliesMixin(pluginManager, assemblyConfigSchema), WebSessionConnectionsMixin(pluginManager))
|
|
21
|
+
.compose('WebCoreSessionModel', types.compose('WebCoreSessionModelGroupA', ReferenceManagementSessionMixin(pluginManager), DrawerWidgetSessionMixin(pluginManager), DialogQueueSessionMixin(pluginManager), ThemeManagerSessionMixin(pluginManager), MultipleViewsSessionMixin(pluginManager)), types.compose('WebCoreSessionModelGroupB', SessionTracksManagerSessionMixin(pluginManager), SessionAssembliesMixin(pluginManager, assemblyConfigSchema), TemporaryAssembliesMixin(pluginManager, assemblyConfigSchema), WebSessionConnectionsMixin(pluginManager), AppFocusMixin()))
|
|
22
22
|
.props({
|
|
23
23
|
/**
|
|
24
24
|
* #property
|
|
@@ -157,18 +157,7 @@ export declare function WebSessionConnectionsMixin(pluginManager: PluginManager)
|
|
|
157
157
|
[x: string]: any;
|
|
158
158
|
} & import("mobx-state-tree/dist/internal").NonEmptyObject & {
|
|
159
159
|
setSubschema(slotName: string, data: unknown): any;
|
|
160
|
-
} & import("mobx-state-tree").IStateTreeNode<import("@jbrowse/core/configuration
|
|
161
|
-
name: {
|
|
162
|
-
type: string;
|
|
163
|
-
defaultValue: string;
|
|
164
|
-
description: string;
|
|
165
|
-
};
|
|
166
|
-
assemblyNames: {
|
|
167
|
-
type: string;
|
|
168
|
-
defaultValue: never[];
|
|
169
|
-
description: string;
|
|
170
|
-
};
|
|
171
|
-
}, import("@jbrowse/core/configuration/configurationSchema").ConfigurationSchemaOptions<undefined, "connectionId">>>): any;
|
|
160
|
+
} & import("mobx-state-tree").IStateTreeNode<import("@jbrowse/core/configuration").AnyConfigurationSchemaType>): any;
|
|
172
161
|
clearConnections(): void;
|
|
173
162
|
} & {
|
|
174
163
|
addConnectionConf(connectionConf: BaseConnectionConfigModel): any;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@jbrowse/web-core",
|
|
3
|
-
"version": "2.
|
|
3
|
+
"version": "2.7.1",
|
|
4
4
|
"description": "JBrowse 2 code shared between web-app type products",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"jbrowse",
|
|
@@ -42,26 +42,25 @@
|
|
|
42
42
|
},
|
|
43
43
|
"dependencies": {
|
|
44
44
|
"@babel/runtime": "^7.16.3",
|
|
45
|
-
"@jbrowse/app-core": "^2.
|
|
46
|
-
"@jbrowse/product-core": "^2.
|
|
45
|
+
"@jbrowse/app-core": "^2.7.1",
|
|
46
|
+
"@jbrowse/product-core": "^2.7.1",
|
|
47
47
|
"@mui/icons-material": "^5.0.0",
|
|
48
48
|
"@mui/material": "^5.10.17",
|
|
49
49
|
"clone": "^2.0.0",
|
|
50
50
|
"copy-to-clipboard": "^3.3.1",
|
|
51
|
-
"react-error-boundary": "^4.0.3"
|
|
52
|
-
"shortid": "^2.2.15"
|
|
51
|
+
"react-error-boundary": "^4.0.3"
|
|
53
52
|
},
|
|
54
53
|
"peerDependencies": {
|
|
55
54
|
"mobx": "^6.0.0",
|
|
56
|
-
"mobx-react": "^
|
|
55
|
+
"mobx-react": "^9.0.0",
|
|
57
56
|
"mobx-state-tree": "^5.0.0",
|
|
58
|
-
"react": "
|
|
59
|
-
"react-dom": "
|
|
57
|
+
"react": ">=17.0.0",
|
|
58
|
+
"react-dom": ">=17.0.0",
|
|
60
59
|
"rxjs": "^7.0.0",
|
|
61
60
|
"tss-react": "^4.0.0"
|
|
62
61
|
},
|
|
63
62
|
"publishConfig": {
|
|
64
63
|
"access": "public"
|
|
65
64
|
},
|
|
66
|
-
"gitHead": "
|
|
65
|
+
"gitHead": "2cda1611eebd12517f2a3cfc1b612face27005d4"
|
|
67
66
|
}
|