@jbrowse/plugin-legacy-jbrowse 2.2.0 → 2.2.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/JBrowse1Connection/types.d.ts +1 -1
- package/dist/JBrowse1Connection/util.d.ts +1 -1
- package/dist/JBrowse1TextSeachAdapter/JBrowse1TextSearchAdapter.d.ts +1 -1
- package/esm/JBrowse1Connection/types.d.ts +1 -1
- package/esm/JBrowse1Connection/util.d.ts +1 -1
- package/esm/JBrowse1TextSeachAdapter/JBrowse1TextSearchAdapter.d.ts +1 -1
- package/package.json +2 -2
- package/src/NCListAdapter/__snapshots__/NCListAdapter.test.ts.snap +2343 -2343
- package/src/__snapshots__/index.test.js.snap +3 -3
|
@@ -4,7 +4,7 @@ export declare function isSource(arg: any): arg is Source;
|
|
|
4
4
|
/**
|
|
5
5
|
* updates a with values from b, recursively
|
|
6
6
|
*/
|
|
7
|
-
|
|
7
|
+
type Obj = Record<string, any>;
|
|
8
8
|
export declare function deepUpdate(a: Obj, b: Obj): Obj;
|
|
9
9
|
/**
|
|
10
10
|
* replace variables in a template string with values
|
|
@@ -15,7 +15,7 @@ interface SearchResults {
|
|
|
15
15
|
} | string)[];
|
|
16
16
|
exact: [string, number, string, string, number, number][];
|
|
17
17
|
}
|
|
18
|
-
export
|
|
18
|
+
export type NamesIndexRecord = string | Array<string | number>;
|
|
19
19
|
export default class JBrowse1TextSearchAdapter extends BaseAdapter implements BaseTextSearchAdapter {
|
|
20
20
|
httpMap: HttpMap;
|
|
21
21
|
tracksNames?: string[];
|
|
@@ -4,7 +4,7 @@ export declare function isSource(arg: any): arg is Source;
|
|
|
4
4
|
/**
|
|
5
5
|
* updates a with values from b, recursively
|
|
6
6
|
*/
|
|
7
|
-
|
|
7
|
+
type Obj = Record<string, any>;
|
|
8
8
|
export declare function deepUpdate(a: Obj, b: Obj): Obj;
|
|
9
9
|
/**
|
|
10
10
|
* replace variables in a template string with values
|
|
@@ -15,7 +15,7 @@ interface SearchResults {
|
|
|
15
15
|
} | string)[];
|
|
16
16
|
exact: [string, number, string, string, number, number][];
|
|
17
17
|
}
|
|
18
|
-
export
|
|
18
|
+
export type NamesIndexRecord = string | Array<string | number>;
|
|
19
19
|
export default class JBrowse1TextSearchAdapter extends BaseAdapter implements BaseTextSearchAdapter {
|
|
20
20
|
httpMap: HttpMap;
|
|
21
21
|
tracksNames?: string[];
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@jbrowse/plugin-legacy-jbrowse",
|
|
3
|
-
"version": "2.2.
|
|
3
|
+
"version": "2.2.1",
|
|
4
4
|
"description": "JBrowse 2 plugin for connecting to and reading JBrowse 1 data",
|
|
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": "896d175c5d9345049faea8e1155f243c912aac42"
|
|
60
60
|
}
|