@jbrowse/web-core 2.9.0 → 2.10.0
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/BaseWebSession/index.d.ts +579 -244
- package/dist/BaseWebSession/index.js +15 -0
- package/esm/BaseWebSession/index.d.ts +579 -244
- package/esm/BaseWebSession/index.js +15 -0
- package/package.json +4 -4
|
@@ -16,6 +16,21 @@ import { AppFocusMixin, SessionAssembliesMixin, TemporaryAssembliesMixin, } from
|
|
|
16
16
|
// locals
|
|
17
17
|
import { WebSessionConnectionsMixin } from '../SessionConnections';
|
|
18
18
|
const AboutDialog = lazy(() => import('./AboutDialog'));
|
|
19
|
+
/**
|
|
20
|
+
* #stateModel BaseWebSession
|
|
21
|
+
* used for "web based" products, including jbrowse-web and react-app
|
|
22
|
+
* composed of
|
|
23
|
+
* - [ReferenceManagementSessionMixin](../referencemanagementsessionmixin)
|
|
24
|
+
* - [DrawerWidgetSessionMixin](../drawerwidgetsessionmixin)
|
|
25
|
+
* - [DialogQueueSessionMixin](../dialogqueuesessionmixin)
|
|
26
|
+
* - [ThemeManagerSessionMixin](../thememanagersessionmixin)
|
|
27
|
+
* - [MultipleViewsSessionMixin](../multipleviewssessionmixin)
|
|
28
|
+
* - [SessionTracksManagerSessionMixin](../sessiontracksmanagersessionmixin)
|
|
29
|
+
* - [SessionAssembliesMixin](../sessionassembliesmixin)
|
|
30
|
+
* - [TemporaryAssembliesMixin](../temporaryassembliesmixin)
|
|
31
|
+
* - [WebSessionConnectionsMixin](../websessionconnectionsmixin)
|
|
32
|
+
* - [AppFocusMixin](../appfocusmixin)
|
|
33
|
+
*/
|
|
19
34
|
export function BaseWebSession({ pluginManager, assemblyConfigSchema, }) {
|
|
20
35
|
const sessionModel = types
|
|
21
36
|
.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()))
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@jbrowse/web-core",
|
|
3
|
-
"version": "2.
|
|
3
|
+
"version": "2.10.0",
|
|
4
4
|
"description": "JBrowse 2 code shared between web-app type products",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"jbrowse",
|
|
@@ -42,8 +42,8 @@
|
|
|
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.10.0",
|
|
46
|
+
"@jbrowse/product-core": "^2.10.0",
|
|
47
47
|
"@mui/icons-material": "^5.0.0",
|
|
48
48
|
"@mui/material": "^5.10.17",
|
|
49
49
|
"clone": "^2.0.0",
|
|
@@ -62,5 +62,5 @@
|
|
|
62
62
|
"publishConfig": {
|
|
63
63
|
"access": "public"
|
|
64
64
|
},
|
|
65
|
-
"gitHead": "
|
|
65
|
+
"gitHead": "223d8bfb68fd1bacaf22852639ad5920f1b7f43b"
|
|
66
66
|
}
|