@jbrowse/plugin-trix 2.11.0 → 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 +2 -2
package/dist/index.d.ts
CHANGED
package/dist/index.js
CHANGED
|
@@ -6,7 +6,7 @@ Object.defineProperty(exports, "__esModule", { value: true });
|
|
|
6
6
|
const TextSearchAdapterType_1 = __importDefault(require("@jbrowse/core/pluggableElementTypes/TextSearchAdapterType"));
|
|
7
7
|
const Plugin_1 = __importDefault(require("@jbrowse/core/Plugin"));
|
|
8
8
|
const TrixTextSearchAdapter_1 = require("./TrixTextSearchAdapter");
|
|
9
|
-
class
|
|
9
|
+
class TrixPlugin extends Plugin_1.default {
|
|
10
10
|
constructor() {
|
|
11
11
|
super(...arguments);
|
|
12
12
|
this.name = 'TrixPlugin';
|
|
@@ -21,4 +21,4 @@ class default_1 extends Plugin_1.default {
|
|
|
21
21
|
}));
|
|
22
22
|
}
|
|
23
23
|
}
|
|
24
|
-
exports.default =
|
|
24
|
+
exports.default = TrixPlugin;
|
package/esm/index.d.ts
CHANGED
package/esm/index.js
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import TextSearchAdapterType from '@jbrowse/core/pluggableElementTypes/TextSearchAdapterType';
|
|
2
2
|
import Plugin from '@jbrowse/core/Plugin';
|
|
3
3
|
import { AdapterClass as TrixTextSearchAdapterClass, configSchema as trixAdapterConfigSchema, } from './TrixTextSearchAdapter';
|
|
4
|
-
export default class extends Plugin {
|
|
4
|
+
export default class TrixPlugin extends Plugin {
|
|
5
5
|
constructor() {
|
|
6
6
|
super(...arguments);
|
|
7
7
|
this.name = 'TrixPlugin';
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@jbrowse/plugin-trix",
|
|
3
|
-
"version": "2.11.
|
|
3
|
+
"version": "2.11.1",
|
|
4
4
|
"description": "JBrowse 2 trix text search adapter",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"jbrowse",
|
|
@@ -52,5 +52,5 @@
|
|
|
52
52
|
"distModule": "esm/index.js",
|
|
53
53
|
"srcModule": "src/index.ts",
|
|
54
54
|
"module": "esm/index.js",
|
|
55
|
-
"gitHead": "
|
|
55
|
+
"gitHead": "11b28d66d782eb06f92ccb993108bb6c3c82819e"
|
|
56
56
|
}
|