react-msaview 5.6.2 → 5.6.3
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/bundle/index.js +1 -1
- package/bundle/index.js.map +1 -1
- package/dist/index.d.ts +2 -1
- package/dist/version.d.ts +1 -1
- package/dist/version.js +1 -1
- package/package.json +3 -3
- package/src/index.ts +7 -0
- package/src/version.ts +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -5,4 +5,5 @@ export { type MsaViewModel, default as MSAModelF } from './model.ts';
|
|
|
5
5
|
export type { MSAFormat, MSAParserType } from 'msa-parsers';
|
|
6
6
|
export type { HierarchyNode } from './hierarchy.ts';
|
|
7
7
|
export type { InterProScanResults } from './launchInterProScan.ts';
|
|
8
|
-
export type {
|
|
8
|
+
export type { ColumnCounts } from './columnCounts.ts';
|
|
9
|
+
export type { Accession, BasicTrack, BasicTrackModel, DomainBand, Node, NodeWithIds, NodeWithIdsAndLength, TextTrackModel, TidyDomainAnnotation, } from './types.ts';
|
package/dist/version.d.ts
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
export declare const version = "5.6.
|
|
1
|
+
export declare const version = "5.6.3";
|
package/dist/version.js
CHANGED
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
export const version = '5.6.
|
|
1
|
+
export const version = '5.6.3';
|
|
2
2
|
//# sourceMappingURL=version.js.map
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "react-msaview",
|
|
3
3
|
"author": "Colin",
|
|
4
|
-
"version": "5.6.
|
|
4
|
+
"version": "5.6.3",
|
|
5
5
|
"license": "MIT",
|
|
6
6
|
"type": "module",
|
|
7
7
|
"repository": {
|
|
@@ -41,8 +41,8 @@
|
|
|
41
41
|
"dependencies": {
|
|
42
42
|
"colord": "^2.9.3",
|
|
43
43
|
"flatbush": "^4.6.2",
|
|
44
|
-
"@jbrowse/svgcanvas": "5.6.
|
|
45
|
-
"msa-parsers": "5.6.
|
|
44
|
+
"@jbrowse/svgcanvas": "5.6.3",
|
|
45
|
+
"msa-parsers": "5.6.3"
|
|
46
46
|
},
|
|
47
47
|
"scripts": {
|
|
48
48
|
"clean": "rimraf dist bundle",
|
package/src/index.ts
CHANGED
|
@@ -12,12 +12,19 @@ export { type MsaViewModel, default as MSAModelF } from './model.ts'
|
|
|
12
12
|
export type { MSAFormat, MSAParserType } from 'msa-parsers'
|
|
13
13
|
export type { HierarchyNode } from './hierarchy.ts'
|
|
14
14
|
export type { InterProScanResults } from './launchInterProScan.ts'
|
|
15
|
+
// ColumnCounts, DomainBand and TidyDomainAnnotation surface in the inferred type
|
|
16
|
+
// of the composed state model, so a downstream plugin cannot emit declarations
|
|
17
|
+
// for its own stateModelFactory without being able to name them (TS2883).
|
|
18
|
+
// jbrowse-plugin-msaview already re-exports MSAFormat for exactly this reason.
|
|
19
|
+
export type { ColumnCounts } from './columnCounts.ts'
|
|
15
20
|
export type {
|
|
16
21
|
Accession,
|
|
17
22
|
BasicTrack,
|
|
18
23
|
BasicTrackModel,
|
|
24
|
+
DomainBand,
|
|
19
25
|
Node,
|
|
20
26
|
NodeWithIds,
|
|
21
27
|
NodeWithIdsAndLength,
|
|
22
28
|
TextTrackModel,
|
|
29
|
+
TidyDomainAnnotation,
|
|
23
30
|
} from './types.ts'
|
package/src/version.ts
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
export const version = '5.6.
|
|
1
|
+
export const version = '5.6.3'
|