@jbrowse/plugin-jobs-management 2.10.3 → 2.11.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/index.d.ts +1 -1
- package/dist/index.js +2 -2
- package/esm/index.d.ts +1 -1
- package/esm/index.js +1 -1
- package/package.json +3 -3
package/dist/index.d.ts
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import Plugin from '@jbrowse/core/Plugin';
|
|
2
2
|
import PluginManager from '@jbrowse/core/PluginManager';
|
|
3
|
-
export default class extends Plugin {
|
|
3
|
+
export default class JobsManagementPlugin extends Plugin {
|
|
4
4
|
name: string;
|
|
5
5
|
install(pluginManager: PluginManager): void;
|
|
6
6
|
configure(pluginManager: PluginManager): void;
|
package/dist/index.js
CHANGED
|
@@ -8,7 +8,7 @@ const util_1 = require("@jbrowse/core/util");
|
|
|
8
8
|
const Icons_1 = require("@jbrowse/core/ui/Icons");
|
|
9
9
|
const util_2 = require("@jbrowse/core/util");
|
|
10
10
|
const JobsListWidget_1 = __importDefault(require("./JobsListWidget"));
|
|
11
|
-
class
|
|
11
|
+
class JobsManagementPlugin extends Plugin_1.default {
|
|
12
12
|
constructor() {
|
|
13
13
|
super(...arguments);
|
|
14
14
|
this.name = 'JobsManagementPlugin';
|
|
@@ -38,4 +38,4 @@ class default_1 extends Plugin_1.default {
|
|
|
38
38
|
}
|
|
39
39
|
}
|
|
40
40
|
}
|
|
41
|
-
exports.default =
|
|
41
|
+
exports.default = JobsManagementPlugin;
|
package/esm/index.d.ts
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import Plugin from '@jbrowse/core/Plugin';
|
|
2
2
|
import PluginManager from '@jbrowse/core/PluginManager';
|
|
3
|
-
export default class extends Plugin {
|
|
3
|
+
export default class JobsManagementPlugin extends Plugin {
|
|
4
4
|
name: string;
|
|
5
5
|
install(pluginManager: PluginManager): void;
|
|
6
6
|
configure(pluginManager: PluginManager): void;
|
package/esm/index.js
CHANGED
|
@@ -3,7 +3,7 @@ import { isAbstractMenuManager } from '@jbrowse/core/util';
|
|
|
3
3
|
import { Indexing } from '@jbrowse/core/ui/Icons';
|
|
4
4
|
import { isSessionModelWithWidgets } from '@jbrowse/core/util';
|
|
5
5
|
import JobsListWidgetF from './JobsListWidget';
|
|
6
|
-
export default class extends Plugin {
|
|
6
|
+
export default class JobsManagementPlugin extends Plugin {
|
|
7
7
|
constructor() {
|
|
8
8
|
super(...arguments);
|
|
9
9
|
this.name = 'JobsManagementPlugin';
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@jbrowse/plugin-jobs-management",
|
|
3
|
-
"version": "2.
|
|
3
|
+
"version": "2.11.1",
|
|
4
4
|
"description": "JBrowse 2 jobs management",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"jbrowse",
|
|
@@ -36,7 +36,7 @@
|
|
|
36
36
|
"clean": "rimraf dist esm *.tsbuildinfo"
|
|
37
37
|
},
|
|
38
38
|
"dependencies": {
|
|
39
|
-
"@jbrowse/text-indexing": "^2.
|
|
39
|
+
"@jbrowse/text-indexing": "^2.11.1",
|
|
40
40
|
"@mui/icons-material": "^5.0.0"
|
|
41
41
|
},
|
|
42
42
|
"peerDependencies": {
|
|
@@ -54,5 +54,5 @@
|
|
|
54
54
|
"publishConfig": {
|
|
55
55
|
"access": "public"
|
|
56
56
|
},
|
|
57
|
-
"gitHead": "
|
|
57
|
+
"gitHead": "11b28d66d782eb06f92ccb993108bb6c3c82819e"
|
|
58
58
|
}
|