@jbrowse/plugin-config 2.12.0 → 2.12.2
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/ConfigurationEditorWidget/components/ConfigurationTextField.js +1 -1
- package/dist/ConfigurationEditorWidget/index.js +1 -1
- package/dist/ConfigurationEditorWidget/model.js +1 -1
- package/dist/FromConfigAdapter/FromConfigAdapter.js +1 -2
- package/dist/FromConfigAdapter/index.js +1 -1
- package/dist/FromConfigRegionsAdapter/index.js +1 -1
- package/dist/FromConfigSequenceAdapter/index.js +1 -1
- package/dist/RefNameAliasAdapter/index.js +1 -1
- package/dist/index.d.ts +2 -7
- package/esm/index.d.ts +2 -7
- package/package.json +2 -2
|
@@ -3,6 +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.default = ConfigurationTextField;
|
|
6
7
|
const react_1 = __importDefault(require("react"));
|
|
7
8
|
const material_1 = require("@mui/material");
|
|
8
9
|
const ui_1 = require("@jbrowse/core/ui");
|
|
@@ -14,4 +15,3 @@ function ConfigurationTextField(props) {
|
|
|
14
15
|
component: 'div',
|
|
15
16
|
}, fullWidth: true }));
|
|
16
17
|
}
|
|
17
|
-
exports.default = ConfigurationTextField;
|
|
@@ -26,6 +26,7 @@ var __importDefault = (this && this.__importDefault) || function (mod) {
|
|
|
26
26
|
return (mod && mod.__esModule) ? mod : { "default": mod };
|
|
27
27
|
};
|
|
28
28
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
29
|
+
exports.default = registerConfigurationEditorWidget;
|
|
29
30
|
const react_1 = require("react");
|
|
30
31
|
const configuration_1 = require("@jbrowse/core/configuration");
|
|
31
32
|
const pluggableElementTypes_1 = require("@jbrowse/core/pluggableElementTypes");
|
|
@@ -44,4 +45,3 @@ function registerConfigurationEditorWidget(pluginManager) {
|
|
|
44
45
|
});
|
|
45
46
|
});
|
|
46
47
|
}
|
|
47
|
-
exports.default = registerConfigurationEditorWidget;
|
|
@@ -1,5 +1,6 @@
|
|
|
1
1
|
"use strict";
|
|
2
2
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
exports.default = stateModelFactory;
|
|
3
4
|
const mobx_state_tree_1 = require("mobx-state-tree");
|
|
4
5
|
const mst_1 = require("@jbrowse/core/util/types/mst");
|
|
5
6
|
function stateModelFactory(pluginManager) {
|
|
@@ -18,4 +19,3 @@ function stateModelFactory(pluginManager) {
|
|
|
18
19
|
},
|
|
19
20
|
}));
|
|
20
21
|
}
|
|
21
|
-
exports.default = stateModelFactory;
|
|
@@ -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.makeFeatures =
|
|
6
|
+
exports.makeFeatures = makeFeatures;
|
|
7
7
|
const BaseAdapter_1 = require("@jbrowse/core/data_adapters/BaseAdapter");
|
|
8
8
|
const simpleFeature_1 = __importDefault(require("@jbrowse/core/util/simpleFeature"));
|
|
9
9
|
const rxjs_1 = require("@jbrowse/core/util/rxjs");
|
|
@@ -28,7 +28,6 @@ function makeFeatures(fdata) {
|
|
|
28
28
|
}
|
|
29
29
|
return features;
|
|
30
30
|
}
|
|
31
|
-
exports.makeFeatures = makeFeatures;
|
|
32
31
|
class FromConfigAdapter extends BaseAdapter_1.BaseFeatureDataAdapter {
|
|
33
32
|
constructor(conf, getSubAdapter, pluginManager) {
|
|
34
33
|
super(conf, getSubAdapter, pluginManager);
|
|
@@ -26,6 +26,7 @@ var __importDefault = (this && this.__importDefault) || function (mod) {
|
|
|
26
26
|
return (mod && mod.__esModule) ? mod : { "default": mod };
|
|
27
27
|
};
|
|
28
28
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
29
|
+
exports.default = FromConfigAdapterF;
|
|
29
30
|
const pluggableElementTypes_1 = require("@jbrowse/core/pluggableElementTypes");
|
|
30
31
|
const configSchema_1 = __importDefault(require("./configSchema"));
|
|
31
32
|
function FromConfigAdapterF(pluginManager) {
|
|
@@ -38,4 +39,3 @@ function FromConfigAdapterF(pluginManager) {
|
|
|
38
39
|
},
|
|
39
40
|
}));
|
|
40
41
|
}
|
|
41
|
-
exports.default = FromConfigAdapterF;
|
|
@@ -26,6 +26,7 @@ var __importDefault = (this && this.__importDefault) || function (mod) {
|
|
|
26
26
|
return (mod && mod.__esModule) ? mod : { "default": mod };
|
|
27
27
|
};
|
|
28
28
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
29
|
+
exports.default = FromConfigRegionsAdapterF;
|
|
29
30
|
const pluggableElementTypes_1 = require("@jbrowse/core/pluggableElementTypes");
|
|
30
31
|
const configSchema_1 = __importDefault(require("./configSchema"));
|
|
31
32
|
function FromConfigRegionsAdapterF(pluginManager) {
|
|
@@ -38,4 +39,3 @@ function FromConfigRegionsAdapterF(pluginManager) {
|
|
|
38
39
|
},
|
|
39
40
|
}));
|
|
40
41
|
}
|
|
41
|
-
exports.default = FromConfigRegionsAdapterF;
|
|
@@ -26,6 +26,7 @@ var __importDefault = (this && this.__importDefault) || function (mod) {
|
|
|
26
26
|
return (mod && mod.__esModule) ? mod : { "default": mod };
|
|
27
27
|
};
|
|
28
28
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
29
|
+
exports.default = FromConfigSequenceAdapterF;
|
|
29
30
|
const pluggableElementTypes_1 = require("@jbrowse/core/pluggableElementTypes");
|
|
30
31
|
const configSchema_1 = __importDefault(require("./configSchema"));
|
|
31
32
|
function FromConfigSequenceAdapterF(pluginManager) {
|
|
@@ -38,4 +39,3 @@ function FromConfigSequenceAdapterF(pluginManager) {
|
|
|
38
39
|
},
|
|
39
40
|
}));
|
|
40
41
|
}
|
|
41
|
-
exports.default = FromConfigSequenceAdapterF;
|
|
@@ -26,6 +26,7 @@ var __importDefault = (this && this.__importDefault) || function (mod) {
|
|
|
26
26
|
return (mod && mod.__esModule) ? mod : { "default": mod };
|
|
27
27
|
};
|
|
28
28
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
29
|
+
exports.default = RefNameAliasAdapterF;
|
|
29
30
|
const pluggableElementTypes_1 = require("@jbrowse/core/pluggableElementTypes");
|
|
30
31
|
const configSchema_1 = __importDefault(require("./configSchema"));
|
|
31
32
|
function RefNameAliasAdapterF(pluginManager) {
|
|
@@ -38,4 +39,3 @@ function RefNameAliasAdapterF(pluginManager) {
|
|
|
38
39
|
},
|
|
39
40
|
}));
|
|
40
41
|
}
|
|
41
|
-
exports.default = RefNameAliasAdapterF;
|
package/dist/index.d.ts
CHANGED
|
@@ -1,15 +1,10 @@
|
|
|
1
|
-
/// <reference types="react" />
|
|
2
1
|
import Plugin from '@jbrowse/core/Plugin';
|
|
3
2
|
import PluginManager from '@jbrowse/core/PluginManager';
|
|
4
3
|
declare const LazyConfigurationEditorComponent: import("react").LazyExoticComponent<({ model, }: {
|
|
5
4
|
model: {
|
|
6
|
-
target:
|
|
7
|
-
[x: string]: any;
|
|
8
|
-
} & import("mobx-state-tree/dist/internal").NonEmptyObject & {
|
|
9
|
-
setSubschema(slotName: string, data: unknown): any;
|
|
10
|
-
} & import("mobx-state-tree").IStateTreeNode<import("@jbrowse/core/configuration").AnyConfigurationSchemaType>;
|
|
5
|
+
target: import("@jbrowse/core/configuration").AnyConfigurationModel;
|
|
11
6
|
};
|
|
12
|
-
session?: import("@jbrowse/core/util").AbstractSessionModel
|
|
7
|
+
session?: import("@jbrowse/core/util").AbstractSessionModel;
|
|
13
8
|
}) => import("react").JSX.Element>;
|
|
14
9
|
export default class ConfigurationPlugin extends Plugin {
|
|
15
10
|
name: string;
|
package/esm/index.d.ts
CHANGED
|
@@ -1,15 +1,10 @@
|
|
|
1
|
-
/// <reference types="react" />
|
|
2
1
|
import Plugin from '@jbrowse/core/Plugin';
|
|
3
2
|
import PluginManager from '@jbrowse/core/PluginManager';
|
|
4
3
|
declare const LazyConfigurationEditorComponent: import("react").LazyExoticComponent<({ model, }: {
|
|
5
4
|
model: {
|
|
6
|
-
target:
|
|
7
|
-
[x: string]: any;
|
|
8
|
-
} & import("mobx-state-tree/dist/internal").NonEmptyObject & {
|
|
9
|
-
setSubschema(slotName: string, data: unknown): any;
|
|
10
|
-
} & import("mobx-state-tree").IStateTreeNode<import("@jbrowse/core/configuration").AnyConfigurationSchemaType>;
|
|
5
|
+
target: import("@jbrowse/core/configuration").AnyConfigurationModel;
|
|
11
6
|
};
|
|
12
|
-
session?: import("@jbrowse/core/util").AbstractSessionModel
|
|
7
|
+
session?: import("@jbrowse/core/util").AbstractSessionModel;
|
|
13
8
|
}) => import("react").JSX.Element>;
|
|
14
9
|
export default class ConfigurationPlugin extends Plugin {
|
|
15
10
|
name: string;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@jbrowse/plugin-config",
|
|
3
|
-
"version": "2.12.
|
|
3
|
+
"version": "2.12.2",
|
|
4
4
|
"description": "JBrowse 2 config utilities",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"jbrowse",
|
|
@@ -56,5 +56,5 @@
|
|
|
56
56
|
"distModule": "esm/index.js",
|
|
57
57
|
"srcModule": "src/index.ts",
|
|
58
58
|
"module": "esm/index.js",
|
|
59
|
-
"gitHead": "
|
|
59
|
+
"gitHead": "1ec66736ce048a1637f52b7a7ef2eb02d956b771"
|
|
60
60
|
}
|