@jbrowse/product-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.
- package/dist/RootModel/BaseRootModel.d.ts +136 -115
- package/dist/RootModel/HierarchicalConfig.d.ts +3 -3
- package/dist/RootModel/HierarchicalConfig.js +3 -3
- package/dist/Session/BaseSession.d.ts +13 -6
- package/dist/Session/BaseSession.js +3 -6
- package/dist/Session/Connections.d.ts +1 -2
- package/dist/Session/DialogQueue.d.ts +1 -1
- package/dist/Session/DialogQueue.js +1 -1
- package/dist/Session/MultipleViews.d.ts +396 -353
- package/dist/Session/ReferenceManagement.d.ts +1 -1
- package/dist/Session/ReferenceManagement.js +1 -1
- package/dist/Session/SessionTracks.d.ts +389 -351
- package/dist/Session/Themes.d.ts +2 -4
- package/dist/Session/Themes.js +1 -1
- package/dist/Session/Tracks.d.ts +387 -337
- package/dist/rpcWorker.js +0 -1
- package/esm/RootModel/BaseRootModel.d.ts +136 -115
- package/esm/RootModel/HierarchicalConfig.d.ts +3 -3
- package/esm/RootModel/HierarchicalConfig.js +3 -3
- package/esm/Session/BaseSession.d.ts +13 -6
- package/esm/Session/BaseSession.js +3 -3
- package/esm/Session/Connections.d.ts +1 -2
- package/esm/Session/DialogQueue.d.ts +1 -1
- package/esm/Session/DialogQueue.js +1 -1
- package/esm/Session/MultipleViews.d.ts +396 -353
- package/esm/Session/ReferenceManagement.d.ts +1 -1
- package/esm/Session/ReferenceManagement.js +1 -1
- package/esm/Session/SessionTracks.d.ts +389 -351
- package/esm/Session/Themes.d.ts +2 -4
- package/esm/Session/Themes.js +1 -1
- package/esm/Session/Tracks.d.ts +387 -337
- package/esm/rpcWorker.js +0 -1
- package/package.json +7 -7
|
@@ -9,7 +9,7 @@ export interface ReferringNode {
|
|
|
9
9
|
/**
|
|
10
10
|
* #stateModel ReferenceManagementSessionMixin
|
|
11
11
|
*/
|
|
12
|
-
export declare function ReferenceManagementSessionMixin(
|
|
12
|
+
export declare function ReferenceManagementSessionMixin(_pluginManager: PluginManager): import("mobx-state-tree").IModelType<{}, {
|
|
13
13
|
/**
|
|
14
14
|
* #method
|
|
15
15
|
* See if any MST nodes currently have a types.reference to this object.
|
|
@@ -6,7 +6,7 @@ import { isBaseSession } from './BaseSession';
|
|
|
6
6
|
/**
|
|
7
7
|
* #stateModel ReferenceManagementSessionMixin
|
|
8
8
|
*/
|
|
9
|
-
export function ReferenceManagementSessionMixin(
|
|
9
|
+
export function ReferenceManagementSessionMixin(_pluginManager) {
|
|
10
10
|
return types
|
|
11
11
|
.model('ReferenceManagementSessionMixin', {})
|
|
12
12
|
.views(self => ({
|