@jbrowse/plugin-trix 1.7.0 → 1.7.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/TrixTextSearchAdapter/TrixTextSearchAdapter.d.ts +14 -14
- package/dist/TrixTextSearchAdapter/configSchema.d.ts +2 -2
- package/dist/TrixTextSearchAdapter/index.d.ts +2 -2
- package/dist/index.d.ts +6 -6
- package/package.json +4 -3
- package/dist/plugin-trix.cjs.development.js +0 -1173
- package/dist/plugin-trix.cjs.development.js.map +0 -1
- package/dist/plugin-trix.cjs.production.min.js +0 -2
- package/dist/plugin-trix.cjs.production.min.js.map +0 -1
- package/dist/plugin-trix.esm.js +0 -1167
- package/dist/plugin-trix.esm.js.map +0 -1
|
@@ -1,14 +1,14 @@
|
|
|
1
|
-
import Trix from '@gmod/trix';
|
|
2
|
-
import { BaseTextSearchAdapter, BaseArgs, BaseAdapter } from '@jbrowse/core/data_adapters/BaseAdapter';
|
|
3
|
-
import BaseResult from '@jbrowse/core/TextSearch/BaseResults';
|
|
4
|
-
import { AnyConfigurationModel } from '@jbrowse/core/configuration';
|
|
5
|
-
import PluginManager from '@jbrowse/core/PluginManager';
|
|
6
|
-
import { getSubAdapterType } from '@jbrowse/core/data_adapters/dataAdapterCache';
|
|
7
|
-
export default class TrixTextSearchAdapter extends BaseAdapter implements BaseTextSearchAdapter {
|
|
8
|
-
indexingAttributes?: string[];
|
|
9
|
-
trixJs: Trix;
|
|
10
|
-
tracksNames?: string[];
|
|
11
|
-
constructor(config: AnyConfigurationModel, getSubAdapter?: getSubAdapterType, pluginManager?: PluginManager);
|
|
12
|
-
searchIndex(args: BaseArgs): Promise<BaseResult[]>;
|
|
13
|
-
freeResources(): void;
|
|
14
|
-
}
|
|
1
|
+
import Trix from '@gmod/trix';
|
|
2
|
+
import { BaseTextSearchAdapter, BaseArgs, BaseAdapter } from '@jbrowse/core/data_adapters/BaseAdapter';
|
|
3
|
+
import BaseResult from '@jbrowse/core/TextSearch/BaseResults';
|
|
4
|
+
import { AnyConfigurationModel } from '@jbrowse/core/configuration';
|
|
5
|
+
import PluginManager from '@jbrowse/core/PluginManager';
|
|
6
|
+
import { getSubAdapterType } from '@jbrowse/core/data_adapters/dataAdapterCache';
|
|
7
|
+
export default class TrixTextSearchAdapter extends BaseAdapter implements BaseTextSearchAdapter {
|
|
8
|
+
indexingAttributes?: string[];
|
|
9
|
+
trixJs: Trix;
|
|
10
|
+
tracksNames?: string[];
|
|
11
|
+
constructor(config: AnyConfigurationModel, getSubAdapter?: getSubAdapterType, pluginManager?: PluginManager);
|
|
12
|
+
searchIndex(args: BaseArgs): Promise<BaseResult[]>;
|
|
13
|
+
freeResources(): void;
|
|
14
|
+
}
|
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
declare const _default: import("@jbrowse/core/configuration").AnyConfigurationSchemaType;
|
|
2
|
-
export default _default;
|
|
1
|
+
declare const _default: import("@jbrowse/core/configuration").AnyConfigurationSchemaType;
|
|
2
|
+
export default _default;
|
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
export { default as AdapterClass } from './TrixTextSearchAdapter';
|
|
2
|
-
export { default as configSchema } from './configSchema';
|
|
1
|
+
export { default as AdapterClass } from './TrixTextSearchAdapter';
|
|
2
|
+
export { default as configSchema } from './configSchema';
|
package/dist/index.d.ts
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
|
-
import Plugin from '@jbrowse/core/Plugin';
|
|
2
|
-
import PluginManager from '@jbrowse/core/PluginManager';
|
|
3
|
-
export default class extends Plugin {
|
|
4
|
-
name: string;
|
|
5
|
-
install(pluginManager: PluginManager): void;
|
|
6
|
-
}
|
|
1
|
+
import Plugin from '@jbrowse/core/Plugin';
|
|
2
|
+
import PluginManager from '@jbrowse/core/PluginManager';
|
|
3
|
+
export default class extends Plugin {
|
|
4
|
+
name: string;
|
|
5
|
+
install(pluginManager: PluginManager): void;
|
|
6
|
+
}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@jbrowse/plugin-trix",
|
|
3
|
-
"version": "1.7.
|
|
3
|
+
"version": "1.7.1",
|
|
4
4
|
"description": "JBrowse 2 trix text search adapter",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"jbrowse",
|
|
@@ -29,7 +29,8 @@
|
|
|
29
29
|
"prepack": "yarn build; yarn useDist",
|
|
30
30
|
"postpack": "yarn useSrc",
|
|
31
31
|
"useDist": "node ../../scripts/useDist.js",
|
|
32
|
-
"useSrc": "node ../../scripts/useSrc.js"
|
|
32
|
+
"useSrc": "node ../../scripts/useSrc.js",
|
|
33
|
+
"postbuild": "tsc --build tsconfig.build.json"
|
|
33
34
|
},
|
|
34
35
|
"peerDependencies": {
|
|
35
36
|
"@jbrowse/core": "^1.0.0",
|
|
@@ -46,5 +47,5 @@
|
|
|
46
47
|
"publishConfig": {
|
|
47
48
|
"access": "public"
|
|
48
49
|
},
|
|
49
|
-
"gitHead": "
|
|
50
|
+
"gitHead": "6da232090c90f22ac96fd464c33082c89b8da14b"
|
|
50
51
|
}
|