@jbrowse/app-core 2.12.0 → 2.12.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/AppFocus/index.js +1 -2
- package/dist/Assemblies/SessionAssembliesMixin.d.ts +7 -1
- package/dist/Assemblies/SessionAssembliesMixin.js +1 -2
- package/dist/Assemblies/TemporaryAssembliesMixin.js +1 -2
- package/dist/HistoryManagement/index.js +1 -2
- package/dist/JBrowseConfig/index.d.ts +3 -1
- package/dist/JBrowseConfig/index.js +1 -2
- package/dist/JBrowseModel/index.d.ts +9 -5
- package/dist/JBrowseModel/index.js +1 -2
- package/dist/RootMenu/index.js +1 -2
- package/esm/Assemblies/SessionAssembliesMixin.d.ts +7 -1
- package/esm/JBrowseConfig/index.d.ts +3 -1
- package/esm/JBrowseModel/index.d.ts +9 -5
- package/package.json +3 -3
package/dist/AppFocus/index.js
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
"use strict";
|
|
2
2
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
-
exports.AppFocusMixin =
|
|
3
|
+
exports.AppFocusMixin = AppFocusMixin;
|
|
4
4
|
const mobx_state_tree_1 = require("mobx-state-tree");
|
|
5
5
|
/**
|
|
6
6
|
* #stateModel AppFocusMixin
|
|
@@ -24,4 +24,3 @@ function AppFocusMixin() {
|
|
|
24
24
|
},
|
|
25
25
|
}));
|
|
26
26
|
}
|
|
27
|
-
exports.AppFocusMixin = AppFocusMixin;
|
|
@@ -40,7 +40,13 @@ export declare function SessionAssembliesMixin(pluginManager: PluginManager, ass
|
|
|
40
40
|
addSessionAssembly(conf: AnyConfiguration): {
|
|
41
41
|
[x: string]: any;
|
|
42
42
|
} & import("mobx-state-tree/dist/internal").NonEmptyObject & {
|
|
43
|
-
setSubschema(slotName: string, data: unknown):
|
|
43
|
+
setSubschema(slotName: string, data: Record<string, unknown>): Record<string, unknown> | ({
|
|
44
|
+
[x: string]: any;
|
|
45
|
+
} & import("mobx-state-tree/dist/internal").NonEmptyObject & {
|
|
46
|
+
setSubschema(slotName: string, data: Record<string, unknown>): Record<string, unknown> | ({
|
|
47
|
+
[x: string]: any;
|
|
48
|
+
} & import("mobx-state-tree/dist/internal").NonEmptyObject & any & import("mobx-state-tree").IStateTreeNode<import("@jbrowse/core/configuration").AnyConfigurationSchemaType>);
|
|
49
|
+
} & import("mobx-state-tree").IStateTreeNode<import("@jbrowse/core/configuration").AnyConfigurationSchemaType>);
|
|
44
50
|
} & import("mobx-state-tree").IStateTreeNode<import("@jbrowse/core/configuration/configurationSchema").ConfigurationSchemaType<{
|
|
45
51
|
aliases: {
|
|
46
52
|
type: string;
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
"use strict";
|
|
2
2
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
-
exports.SessionAssembliesMixin =
|
|
3
|
+
exports.SessionAssembliesMixin = SessionAssembliesMixin;
|
|
4
4
|
const mobx_state_tree_1 = require("mobx-state-tree");
|
|
5
5
|
/**
|
|
6
6
|
* #stateModel SessionAssembliesMixin
|
|
@@ -41,4 +41,3 @@ function SessionAssembliesMixin(pluginManager, assemblyConfigSchemasType) {
|
|
|
41
41
|
};
|
|
42
42
|
});
|
|
43
43
|
}
|
|
44
|
-
exports.SessionAssembliesMixin = SessionAssembliesMixin;
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
"use strict";
|
|
2
2
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
-
exports.TemporaryAssembliesMixin =
|
|
3
|
+
exports.TemporaryAssembliesMixin = TemporaryAssembliesMixin;
|
|
4
4
|
const mobx_state_tree_1 = require("mobx-state-tree");
|
|
5
5
|
/**
|
|
6
6
|
* #stateModel TemporaryAssembliesMixin
|
|
@@ -42,4 +42,3 @@ function TemporaryAssembliesMixin(pluginManager, assemblyConfigSchemasType = mob
|
|
|
42
42
|
};
|
|
43
43
|
});
|
|
44
44
|
}
|
|
45
|
-
exports.TemporaryAssembliesMixin = TemporaryAssembliesMixin;
|
|
@@ -3,7 +3,7 @@ var __importDefault = (this && this.__importDefault) || function (mod) {
|
|
|
3
3
|
return (mod && mod.__esModule) ? mod : { "default": mod };
|
|
4
4
|
};
|
|
5
5
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
6
|
-
exports.HistoryManagementMixin =
|
|
6
|
+
exports.HistoryManagementMixin = HistoryManagementMixin;
|
|
7
7
|
const TimeTraveller_1 = __importDefault(require("@jbrowse/core/util/TimeTraveller"));
|
|
8
8
|
const mobx_1 = require("mobx");
|
|
9
9
|
const mobx_state_tree_1 = require("mobx-state-tree");
|
|
@@ -54,4 +54,3 @@ function HistoryManagementMixin() {
|
|
|
54
54
|
},
|
|
55
55
|
}));
|
|
56
56
|
}
|
|
57
|
-
exports.HistoryManagementMixin = HistoryManagementMixin;
|
|
@@ -35,7 +35,9 @@ export declare function JBrowseConfigF({ pluginManager, assemblyConfigSchema, }:
|
|
|
35
35
|
description: string;
|
|
36
36
|
defaultValue: string;
|
|
37
37
|
};
|
|
38
|
-
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"
|
|
38
|
+
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" /**
|
|
39
|
+
* #slot configuration.highResolutionScaling
|
|
40
|
+
*/).NonEmptyObject) | undefined>>, [undefined]>;
|
|
39
41
|
}, import("@jbrowse/core/configuration/configurationSchema").ConfigurationSchemaOptions<undefined, undefined>>;
|
|
40
42
|
/**
|
|
41
43
|
* #slot configuration.highResolutionScaling
|
|
@@ -3,7 +3,7 @@ var __importDefault = (this && this.__importDefault) || function (mod) {
|
|
|
3
3
|
return (mod && mod.__esModule) ? mod : { "default": mod };
|
|
4
4
|
};
|
|
5
5
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
6
|
-
exports.JBrowseConfigF =
|
|
6
|
+
exports.JBrowseConfigF = JBrowseConfigF;
|
|
7
7
|
const configuration_1 = require("@jbrowse/core/configuration");
|
|
8
8
|
const RpcManager_1 = __importDefault(require("@jbrowse/core/rpc/RpcManager"));
|
|
9
9
|
const product_core_1 = require("@jbrowse/product-core");
|
|
@@ -131,4 +131,3 @@ function JBrowseConfigF({ pluginManager, assemblyConfigSchema, }) {
|
|
|
131
131
|
}),
|
|
132
132
|
});
|
|
133
133
|
}
|
|
134
|
-
exports.JBrowseConfigF = JBrowseConfigF;
|
|
@@ -25,7 +25,7 @@ export declare function JBrowseModelF({ pluginManager, assemblyConfigSchema, }:
|
|
|
25
25
|
description: string;
|
|
26
26
|
defaultValue: string;
|
|
27
27
|
};
|
|
28
|
-
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]>;
|
|
28
|
+
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]>;
|
|
29
29
|
}, import("@jbrowse/core/configuration/configurationSchema").ConfigurationSchemaOptions<undefined, undefined>>;
|
|
30
30
|
highResolutionScaling: {
|
|
31
31
|
type: string;
|
|
@@ -96,9 +96,7 @@ export declare function JBrowseModelF({ pluginManager, assemblyConfigSchema, }:
|
|
|
96
96
|
defaultValue: boolean;
|
|
97
97
|
};
|
|
98
98
|
subCategories: {
|
|
99
|
-
type: string;
|
|
100
|
-
* #getter
|
|
101
|
-
*/
|
|
99
|
+
type: string;
|
|
102
100
|
defaultValue: boolean;
|
|
103
101
|
};
|
|
104
102
|
}, import("@jbrowse/core/configuration/configurationSchema").ConfigurationSchemaOptions<undefined, undefined>>;
|
|
@@ -142,7 +140,13 @@ export declare function JBrowseModelF({ pluginManager, assemblyConfigSchema, }:
|
|
|
142
140
|
addAssemblyConf(conf: AnyConfigurationModel): {
|
|
143
141
|
[x: string]: any;
|
|
144
142
|
} & import("mobx-state-tree/dist/internal").NonEmptyObject & {
|
|
145
|
-
setSubschema(slotName: string, data: unknown):
|
|
143
|
+
setSubschema(slotName: string, data: Record<string, unknown>): Record<string, unknown> | ({
|
|
144
|
+
[x: string]: any;
|
|
145
|
+
} & import("mobx-state-tree/dist/internal").NonEmptyObject & {
|
|
146
|
+
setSubschema(slotName: string, data: Record<string, unknown>): Record<string, unknown> | ({
|
|
147
|
+
[x: string]: any;
|
|
148
|
+
} & import("mobx-state-tree/dist/internal").NonEmptyObject & any & import("mobx-state-tree").IStateTreeNode<import("@jbrowse/core/configuration").AnyConfigurationSchemaType>);
|
|
149
|
+
} & import("mobx-state-tree").IStateTreeNode<import("@jbrowse/core/configuration").AnyConfigurationSchemaType>);
|
|
146
150
|
} & import("mobx-state-tree").IStateTreeNode<import("@jbrowse/core/configuration").AnyConfigurationSchemaType>;
|
|
147
151
|
/**
|
|
148
152
|
* #action
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
"use strict";
|
|
2
2
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
-
exports.JBrowseModelF =
|
|
3
|
+
exports.JBrowseModelF = JBrowseModelF;
|
|
4
4
|
const mobx_state_tree_1 = require("mobx-state-tree");
|
|
5
5
|
const configuration_1 = require("@jbrowse/core/configuration");
|
|
6
6
|
const mobx_1 = require("mobx");
|
|
@@ -155,4 +155,3 @@ function JBrowseModelF({ pluginManager, assemblyConfigSchema, }) {
|
|
|
155
155
|
},
|
|
156
156
|
}));
|
|
157
157
|
}
|
|
158
|
-
exports.JBrowseModelF = JBrowseModelF;
|
package/dist/RootMenu/index.js
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
"use strict";
|
|
2
2
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
-
exports.RootAppMenuMixin =
|
|
3
|
+
exports.RootAppMenuMixin = RootAppMenuMixin;
|
|
4
4
|
const mobx_state_tree_1 = require("mobx-state-tree");
|
|
5
5
|
/**
|
|
6
6
|
* #stateModel RootAppMenuMixin
|
|
@@ -161,4 +161,3 @@ function RootAppMenuMixin() {
|
|
|
161
161
|
};
|
|
162
162
|
});
|
|
163
163
|
}
|
|
164
|
-
exports.RootAppMenuMixin = RootAppMenuMixin;
|
|
@@ -40,7 +40,13 @@ export declare function SessionAssembliesMixin(pluginManager: PluginManager, ass
|
|
|
40
40
|
addSessionAssembly(conf: AnyConfiguration): {
|
|
41
41
|
[x: string]: any;
|
|
42
42
|
} & import("mobx-state-tree/dist/internal").NonEmptyObject & {
|
|
43
|
-
setSubschema(slotName: string, data: unknown):
|
|
43
|
+
setSubschema(slotName: string, data: Record<string, unknown>): Record<string, unknown> | ({
|
|
44
|
+
[x: string]: any;
|
|
45
|
+
} & import("mobx-state-tree/dist/internal").NonEmptyObject & {
|
|
46
|
+
setSubschema(slotName: string, data: Record<string, unknown>): Record<string, unknown> | ({
|
|
47
|
+
[x: string]: any;
|
|
48
|
+
} & import("mobx-state-tree/dist/internal").NonEmptyObject & any & import("mobx-state-tree").IStateTreeNode<import("@jbrowse/core/configuration").AnyConfigurationSchemaType>);
|
|
49
|
+
} & import("mobx-state-tree").IStateTreeNode<import("@jbrowse/core/configuration").AnyConfigurationSchemaType>);
|
|
44
50
|
} & import("mobx-state-tree").IStateTreeNode<import("@jbrowse/core/configuration/configurationSchema").ConfigurationSchemaType<{
|
|
45
51
|
aliases: {
|
|
46
52
|
type: string;
|
|
@@ -35,7 +35,9 @@ export declare function JBrowseConfigF({ pluginManager, assemblyConfigSchema, }:
|
|
|
35
35
|
description: string;
|
|
36
36
|
defaultValue: string;
|
|
37
37
|
};
|
|
38
|
-
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"
|
|
38
|
+
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" /**
|
|
39
|
+
* #slot configuration.highResolutionScaling
|
|
40
|
+
*/).NonEmptyObject) | undefined>>, [undefined]>;
|
|
39
41
|
}, import("@jbrowse/core/configuration/configurationSchema").ConfigurationSchemaOptions<undefined, undefined>>;
|
|
40
42
|
/**
|
|
41
43
|
* #slot configuration.highResolutionScaling
|
|
@@ -25,7 +25,7 @@ export declare function JBrowseModelF({ pluginManager, assemblyConfigSchema, }:
|
|
|
25
25
|
description: string;
|
|
26
26
|
defaultValue: string;
|
|
27
27
|
};
|
|
28
|
-
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]>;
|
|
28
|
+
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]>;
|
|
29
29
|
}, import("@jbrowse/core/configuration/configurationSchema").ConfigurationSchemaOptions<undefined, undefined>>;
|
|
30
30
|
highResolutionScaling: {
|
|
31
31
|
type: string;
|
|
@@ -96,9 +96,7 @@ export declare function JBrowseModelF({ pluginManager, assemblyConfigSchema, }:
|
|
|
96
96
|
defaultValue: boolean;
|
|
97
97
|
};
|
|
98
98
|
subCategories: {
|
|
99
|
-
type: string;
|
|
100
|
-
* #getter
|
|
101
|
-
*/
|
|
99
|
+
type: string;
|
|
102
100
|
defaultValue: boolean;
|
|
103
101
|
};
|
|
104
102
|
}, import("@jbrowse/core/configuration/configurationSchema").ConfigurationSchemaOptions<undefined, undefined>>;
|
|
@@ -142,7 +140,13 @@ export declare function JBrowseModelF({ pluginManager, assemblyConfigSchema, }:
|
|
|
142
140
|
addAssemblyConf(conf: AnyConfigurationModel): {
|
|
143
141
|
[x: string]: any;
|
|
144
142
|
} & import("mobx-state-tree/dist/internal").NonEmptyObject & {
|
|
145
|
-
setSubschema(slotName: string, data: unknown):
|
|
143
|
+
setSubschema(slotName: string, data: Record<string, unknown>): Record<string, unknown> | ({
|
|
144
|
+
[x: string]: any;
|
|
145
|
+
} & import("mobx-state-tree/dist/internal").NonEmptyObject & {
|
|
146
|
+
setSubschema(slotName: string, data: Record<string, unknown>): Record<string, unknown> | ({
|
|
147
|
+
[x: string]: any;
|
|
148
|
+
} & import("mobx-state-tree/dist/internal").NonEmptyObject & any & import("mobx-state-tree").IStateTreeNode<import("@jbrowse/core/configuration").AnyConfigurationSchemaType>);
|
|
149
|
+
} & import("mobx-state-tree").IStateTreeNode<import("@jbrowse/core/configuration").AnyConfigurationSchemaType>);
|
|
146
150
|
} & import("mobx-state-tree").IStateTreeNode<import("@jbrowse/core/configuration").AnyConfigurationSchemaType>;
|
|
147
151
|
/**
|
|
148
152
|
* #action
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@jbrowse/app-core",
|
|
3
|
-
"version": "2.12.
|
|
3
|
+
"version": "2.12.1",
|
|
4
4
|
"description": "JBrowse 2 code shared between the 'full featured' apps e.g. jbrowse-web and jbrowse-desktop",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"jbrowse",
|
|
@@ -42,7 +42,7 @@
|
|
|
42
42
|
},
|
|
43
43
|
"dependencies": {
|
|
44
44
|
"@babel/runtime": "^7.16.3",
|
|
45
|
-
"@jbrowse/product-core": "^2.12.
|
|
45
|
+
"@jbrowse/product-core": "^2.12.1",
|
|
46
46
|
"@mui/icons-material": "^5.0.0",
|
|
47
47
|
"@mui/material": "^5.10.17",
|
|
48
48
|
"copy-to-clipboard": "^3.3.1",
|
|
@@ -60,5 +60,5 @@
|
|
|
60
60
|
"publishConfig": {
|
|
61
61
|
"access": "public"
|
|
62
62
|
},
|
|
63
|
-
"gitHead": "
|
|
63
|
+
"gitHead": "20f16ae5a56ae5e4806aaa373131e540b0b5b0fd"
|
|
64
64
|
}
|