@jbrowse/product-core 4.1.14 → 4.1.15
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/RootModel/BaseRootModel.d.ts +2 -2
- package/esm/Session/Connections.d.ts +1 -1
- package/esm/Session/DialogQueue.d.ts +5 -3
- package/esm/Session/DialogQueue.js +2 -2
- package/esm/Session/MultipleViews.d.ts +6 -6
- package/esm/Session/SessionTracks.d.ts +6 -6
- package/esm/Session/Tracks.d.ts +6 -6
- package/package.json +4 -4
|
@@ -517,12 +517,12 @@ export declare function BaseRootModelFactory({ pluginManager, jbrowseModelType,
|
|
|
517
517
|
}, import("@jbrowse/mobx-state-tree")._NotCustomized, import("@jbrowse/mobx-state-tree")._NotCustomized>>) | undefined>;
|
|
518
518
|
getRefNameMapForAdapter(adapterConf: {
|
|
519
519
|
[x: string]: unknown;
|
|
520
|
-
}, assemblyName: string | undefined, opts: import("
|
|
520
|
+
}, assemblyName: string | undefined, opts: import("@jbrowse/core/assemblyManager").AssemblyBaseOpts): Promise<{
|
|
521
521
|
[x: string]: string;
|
|
522
522
|
} | undefined>;
|
|
523
523
|
getReverseRefNameMapForAdapter(adapterConf: {
|
|
524
524
|
[x: string]: unknown;
|
|
525
|
-
}, assemblyName: string | undefined, opts: import("
|
|
525
|
+
}, assemblyName: string | undefined, opts: import("@jbrowse/core/assemblyManager").AssemblyBaseOpts): Promise<{
|
|
526
526
|
[x: string]: string;
|
|
527
527
|
} | undefined>;
|
|
528
528
|
isValidRefName(refName: string, assemblyName: string): boolean;
|
|
@@ -8,7 +8,7 @@ export declare function ConnectionManagementSessionMixin(pluginManager: PluginMa
|
|
|
8
8
|
readonly connections: BaseConnectionConfigModel[];
|
|
9
9
|
} & {
|
|
10
10
|
makeConnection(configuration: AnyConfigurationModel, initialSnapshot?: {}): any;
|
|
11
|
-
prepareToBreakConnection(configuration: AnyConfigurationModel): (Record<string, number>
|
|
11
|
+
prepareToBreakConnection(configuration: AnyConfigurationModel): [() => void, Record<string, number>] | undefined;
|
|
12
12
|
breakConnection(configuration: AnyConfigurationModel): void;
|
|
13
13
|
deleteConnection(configuration: AnyConfigurationModel): any;
|
|
14
14
|
addConnectionConf(connectionConf: AnyConfigurationModel): any;
|
|
@@ -1,15 +1,17 @@
|
|
|
1
1
|
import type PluginManager from '@jbrowse/core/PluginManager';
|
|
2
2
|
import type { DialogComponentType } from '@jbrowse/core/util';
|
|
3
3
|
import type { IAnyStateTreeNode, Instance } from '@jbrowse/mobx-state-tree';
|
|
4
|
+
type DoneCallback = (doneCallback: () => void) => [DialogComponentType, Record<string, unknown>];
|
|
4
5
|
export declare function DialogQueueSessionMixin(_pluginManager: PluginManager): import("@jbrowse/mobx-state-tree").IModelType<{}, {
|
|
5
|
-
queueOfDialogs: [DialogComponentType, unknown][];
|
|
6
|
+
queueOfDialogs: [DialogComponentType, Record<string, unknown>][];
|
|
6
7
|
} & {
|
|
7
8
|
readonly DialogComponent: DialogComponentType | undefined;
|
|
8
|
-
readonly DialogProps: unknown;
|
|
9
|
+
readonly DialogProps: Record<string, unknown> | undefined;
|
|
9
10
|
} & {
|
|
10
11
|
removeActiveDialog(): void;
|
|
11
|
-
queueDialog(
|
|
12
|
+
queueDialog(doneCallback: DoneCallback): void;
|
|
12
13
|
}, import("@jbrowse/mobx-state-tree")._NotCustomized, import("@jbrowse/mobx-state-tree")._NotCustomized>;
|
|
13
14
|
export type SessionWithDialogsType = ReturnType<typeof DialogQueueSessionMixin>;
|
|
14
15
|
export type SessionWithDialogs = Instance<SessionWithDialogsType>;
|
|
15
16
|
export declare function isSessionWithDialogs(session: IAnyStateTreeNode): session is SessionWithDialogs;
|
|
17
|
+
export {};
|
|
@@ -18,8 +18,8 @@ export function DialogQueueSessionMixin(_pluginManager) {
|
|
|
18
18
|
removeActiveDialog() {
|
|
19
19
|
self.queueOfDialogs = self.queueOfDialogs.slice(1);
|
|
20
20
|
},
|
|
21
|
-
queueDialog(
|
|
22
|
-
const [component, props] =
|
|
21
|
+
queueDialog(doneCallback) {
|
|
22
|
+
const [component, props] = doneCallback(() => {
|
|
23
23
|
this.removeActiveDialog();
|
|
24
24
|
});
|
|
25
25
|
self.queueOfDialogs = [...self.queueOfDialogs, [component, props]];
|
|
@@ -598,12 +598,12 @@ export declare function MultipleViewsSessionMixin(pluginManager: PluginManager):
|
|
|
598
598
|
}, import("@jbrowse/mobx-state-tree")._NotCustomized, import("@jbrowse/mobx-state-tree")._NotCustomized>>) | undefined>;
|
|
599
599
|
getRefNameMapForAdapter(adapterConf: {
|
|
600
600
|
[x: string]: unknown;
|
|
601
|
-
}, assemblyName: string | undefined, opts: import("
|
|
601
|
+
}, assemblyName: string | undefined, opts: import("@jbrowse/core/assemblyManager").AssemblyBaseOpts): Promise<{
|
|
602
602
|
[x: string]: string;
|
|
603
603
|
} | undefined>;
|
|
604
604
|
getReverseRefNameMapForAdapter(adapterConf: {
|
|
605
605
|
[x: string]: unknown;
|
|
606
|
-
}, assemblyName: string | undefined, opts: import("
|
|
606
|
+
}, assemblyName: string | undefined, opts: import("@jbrowse/core/assemblyManager").AssemblyBaseOpts): Promise<{
|
|
607
607
|
[x: string]: string;
|
|
608
608
|
} | undefined>;
|
|
609
609
|
isValidRefName(refName: string, assemblyName: string): boolean;
|
|
@@ -1116,12 +1116,12 @@ export declare function MultipleViewsSessionMixin(pluginManager: PluginManager):
|
|
|
1116
1116
|
}, import("@jbrowse/mobx-state-tree")._NotCustomized, import("@jbrowse/mobx-state-tree")._NotCustomized>>) | undefined>;
|
|
1117
1117
|
getRefNameMapForAdapter(adapterConf: {
|
|
1118
1118
|
[x: string]: unknown;
|
|
1119
|
-
}, assemblyName: string | undefined, opts: import("
|
|
1119
|
+
}, assemblyName: string | undefined, opts: import("@jbrowse/core/assemblyManager").AssemblyBaseOpts): Promise<{
|
|
1120
1120
|
[x: string]: string;
|
|
1121
1121
|
} | undefined>;
|
|
1122
1122
|
getReverseRefNameMapForAdapter(adapterConf: {
|
|
1123
1123
|
[x: string]: unknown;
|
|
1124
|
-
}, assemblyName: string | undefined, opts: import("
|
|
1124
|
+
}, assemblyName: string | undefined, opts: import("@jbrowse/core/assemblyManager").AssemblyBaseOpts): Promise<{
|
|
1125
1125
|
[x: string]: string;
|
|
1126
1126
|
} | undefined>;
|
|
1127
1127
|
isValidRefName(refName: string, assemblyName: string): boolean;
|
|
@@ -1651,12 +1651,12 @@ export declare function MultipleViewsSessionMixin(pluginManager: PluginManager):
|
|
|
1651
1651
|
}, import("@jbrowse/mobx-state-tree")._NotCustomized, import("@jbrowse/mobx-state-tree")._NotCustomized>>) | undefined>;
|
|
1652
1652
|
getRefNameMapForAdapter(adapterConf: {
|
|
1653
1653
|
[x: string]: unknown;
|
|
1654
|
-
}, assemblyName: string | undefined, opts: import("
|
|
1654
|
+
}, assemblyName: string | undefined, opts: import("@jbrowse/core/assemblyManager").AssemblyBaseOpts): Promise<{
|
|
1655
1655
|
[x: string]: string;
|
|
1656
1656
|
} | undefined>;
|
|
1657
1657
|
getReverseRefNameMapForAdapter(adapterConf: {
|
|
1658
1658
|
[x: string]: unknown;
|
|
1659
|
-
}, assemblyName: string | undefined, opts: import("
|
|
1659
|
+
}, assemblyName: string | undefined, opts: import("@jbrowse/core/assemblyManager").AssemblyBaseOpts): Promise<{
|
|
1660
1660
|
[x: string]: string;
|
|
1661
1661
|
} | undefined>;
|
|
1662
1662
|
isValidRefName(refName: string, assemblyName: string): boolean;
|
|
@@ -590,12 +590,12 @@ export declare function SessionTracksManagerSessionMixin(pluginManager: PluginMa
|
|
|
590
590
|
}, import("@jbrowse/mobx-state-tree")._NotCustomized, import("@jbrowse/mobx-state-tree")._NotCustomized>>) | undefined>;
|
|
591
591
|
getRefNameMapForAdapter(adapterConf: {
|
|
592
592
|
[x: string]: unknown;
|
|
593
|
-
}, assemblyName: string | undefined, opts: import("
|
|
593
|
+
}, assemblyName: string | undefined, opts: import("@jbrowse/core/assemblyManager").AssemblyBaseOpts): Promise<{
|
|
594
594
|
[x: string]: string;
|
|
595
595
|
} | undefined>;
|
|
596
596
|
getReverseRefNameMapForAdapter(adapterConf: {
|
|
597
597
|
[x: string]: unknown;
|
|
598
|
-
}, assemblyName: string | undefined, opts: import("
|
|
598
|
+
}, assemblyName: string | undefined, opts: import("@jbrowse/core/assemblyManager").AssemblyBaseOpts): Promise<{
|
|
599
599
|
[x: string]: string;
|
|
600
600
|
} | undefined>;
|
|
601
601
|
isValidRefName(refName: string, assemblyName: string): boolean;
|
|
@@ -1108,12 +1108,12 @@ export declare function SessionTracksManagerSessionMixin(pluginManager: PluginMa
|
|
|
1108
1108
|
}, import("@jbrowse/mobx-state-tree")._NotCustomized, import("@jbrowse/mobx-state-tree")._NotCustomized>>) | undefined>;
|
|
1109
1109
|
getRefNameMapForAdapter(adapterConf: {
|
|
1110
1110
|
[x: string]: unknown;
|
|
1111
|
-
}, assemblyName: string | undefined, opts: import("
|
|
1111
|
+
}, assemblyName: string | undefined, opts: import("@jbrowse/core/assemblyManager").AssemblyBaseOpts): Promise<{
|
|
1112
1112
|
[x: string]: string;
|
|
1113
1113
|
} | undefined>;
|
|
1114
1114
|
getReverseRefNameMapForAdapter(adapterConf: {
|
|
1115
1115
|
[x: string]: unknown;
|
|
1116
|
-
}, assemblyName: string | undefined, opts: import("
|
|
1116
|
+
}, assemblyName: string | undefined, opts: import("@jbrowse/core/assemblyManager").AssemblyBaseOpts): Promise<{
|
|
1117
1117
|
[x: string]: string;
|
|
1118
1118
|
} | undefined>;
|
|
1119
1119
|
isValidRefName(refName: string, assemblyName: string): boolean;
|
|
@@ -1643,12 +1643,12 @@ export declare function SessionTracksManagerSessionMixin(pluginManager: PluginMa
|
|
|
1643
1643
|
}, import("@jbrowse/mobx-state-tree")._NotCustomized, import("@jbrowse/mobx-state-tree")._NotCustomized>>) | undefined>;
|
|
1644
1644
|
getRefNameMapForAdapter(adapterConf: {
|
|
1645
1645
|
[x: string]: unknown;
|
|
1646
|
-
}, assemblyName: string | undefined, opts: import("
|
|
1646
|
+
}, assemblyName: string | undefined, opts: import("@jbrowse/core/assemblyManager").AssemblyBaseOpts): Promise<{
|
|
1647
1647
|
[x: string]: string;
|
|
1648
1648
|
} | undefined>;
|
|
1649
1649
|
getReverseRefNameMapForAdapter(adapterConf: {
|
|
1650
1650
|
[x: string]: unknown;
|
|
1651
|
-
}, assemblyName: string | undefined, opts: import("
|
|
1651
|
+
}, assemblyName: string | undefined, opts: import("@jbrowse/core/assemblyManager").AssemblyBaseOpts): Promise<{
|
|
1652
1652
|
[x: string]: string;
|
|
1653
1653
|
} | undefined>;
|
|
1654
1654
|
isValidRefName(refName: string, assemblyName: string): boolean;
|
package/esm/Session/Tracks.d.ts
CHANGED
|
@@ -588,12 +588,12 @@ export declare function TracksManagerSessionMixin(pluginManager: PluginManager):
|
|
|
588
588
|
}, import("@jbrowse/mobx-state-tree")._NotCustomized, import("@jbrowse/mobx-state-tree")._NotCustomized>>) | undefined>;
|
|
589
589
|
getRefNameMapForAdapter(adapterConf: {
|
|
590
590
|
[x: string]: unknown;
|
|
591
|
-
}, assemblyName: string | undefined, opts: import("
|
|
591
|
+
}, assemblyName: string | undefined, opts: import("@jbrowse/core/assemblyManager").AssemblyBaseOpts): Promise<{
|
|
592
592
|
[x: string]: string;
|
|
593
593
|
} | undefined>;
|
|
594
594
|
getReverseRefNameMapForAdapter(adapterConf: {
|
|
595
595
|
[x: string]: unknown;
|
|
596
|
-
}, assemblyName: string | undefined, opts: import("
|
|
596
|
+
}, assemblyName: string | undefined, opts: import("@jbrowse/core/assemblyManager").AssemblyBaseOpts): Promise<{
|
|
597
597
|
[x: string]: string;
|
|
598
598
|
} | undefined>;
|
|
599
599
|
isValidRefName(refName: string, assemblyName: string): boolean;
|
|
@@ -1106,12 +1106,12 @@ export declare function TracksManagerSessionMixin(pluginManager: PluginManager):
|
|
|
1106
1106
|
}, import("@jbrowse/mobx-state-tree")._NotCustomized, import("@jbrowse/mobx-state-tree")._NotCustomized>>) | undefined>;
|
|
1107
1107
|
getRefNameMapForAdapter(adapterConf: {
|
|
1108
1108
|
[x: string]: unknown;
|
|
1109
|
-
}, assemblyName: string | undefined, opts: import("
|
|
1109
|
+
}, assemblyName: string | undefined, opts: import("@jbrowse/core/assemblyManager").AssemblyBaseOpts): Promise<{
|
|
1110
1110
|
[x: string]: string;
|
|
1111
1111
|
} | undefined>;
|
|
1112
1112
|
getReverseRefNameMapForAdapter(adapterConf: {
|
|
1113
1113
|
[x: string]: unknown;
|
|
1114
|
-
}, assemblyName: string | undefined, opts: import("
|
|
1114
|
+
}, assemblyName: string | undefined, opts: import("@jbrowse/core/assemblyManager").AssemblyBaseOpts): Promise<{
|
|
1115
1115
|
[x: string]: string;
|
|
1116
1116
|
} | undefined>;
|
|
1117
1117
|
isValidRefName(refName: string, assemblyName: string): boolean;
|
|
@@ -1641,12 +1641,12 @@ export declare function TracksManagerSessionMixin(pluginManager: PluginManager):
|
|
|
1641
1641
|
}, import("@jbrowse/mobx-state-tree")._NotCustomized, import("@jbrowse/mobx-state-tree")._NotCustomized>>) | undefined>;
|
|
1642
1642
|
getRefNameMapForAdapter(adapterConf: {
|
|
1643
1643
|
[x: string]: unknown;
|
|
1644
|
-
}, assemblyName: string | undefined, opts: import("
|
|
1644
|
+
}, assemblyName: string | undefined, opts: import("@jbrowse/core/assemblyManager").AssemblyBaseOpts): Promise<{
|
|
1645
1645
|
[x: string]: string;
|
|
1646
1646
|
} | undefined>;
|
|
1647
1647
|
getReverseRefNameMapForAdapter(adapterConf: {
|
|
1648
1648
|
[x: string]: unknown;
|
|
1649
|
-
}, assemblyName: string | undefined, opts: import("
|
|
1649
|
+
}, assemblyName: string | undefined, opts: import("@jbrowse/core/assemblyManager").AssemblyBaseOpts): Promise<{
|
|
1650
1650
|
[x: string]: string;
|
|
1651
1651
|
} | undefined>;
|
|
1652
1652
|
isValidRefName(refName: string, assemblyName: string): boolean;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@jbrowse/product-core",
|
|
3
|
-
"version": "4.1.
|
|
3
|
+
"version": "4.1.15",
|
|
4
4
|
"type": "module",
|
|
5
5
|
"sideEffects": false,
|
|
6
6
|
"description": "JBrowse 2 code shared between products but not used by plugins",
|
|
@@ -25,13 +25,13 @@
|
|
|
25
25
|
"esm"
|
|
26
26
|
],
|
|
27
27
|
"dependencies": {
|
|
28
|
-
"@jbrowse/mobx-state-tree": "^5.
|
|
29
|
-
"@mui/material": "^7.3.
|
|
28
|
+
"@jbrowse/mobx-state-tree": "^5.6.0",
|
|
29
|
+
"@mui/material": "^7.3.9",
|
|
30
30
|
"copy-to-clipboard": "^3.3.3",
|
|
31
31
|
"librpc-web-mod": "^2.1.1",
|
|
32
32
|
"mobx": "^6.15.0",
|
|
33
33
|
"mobx-react": "^9.2.1",
|
|
34
|
-
"@jbrowse/core": "^4.1.
|
|
34
|
+
"@jbrowse/core": "^4.1.15"
|
|
35
35
|
},
|
|
36
36
|
"peerDependencies": {
|
|
37
37
|
"react": ">=18.0.0",
|