@jbrowse/plugin-lollipop 3.6.5 → 3.7.0
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.
|
@@ -171,6 +171,7 @@ export declare function stateModelFactory(configSchema: AnyConfigurationSchemaTy
|
|
|
171
171
|
regionCannotBeRenderedText(_region: import("@jbrowse/core/util").Region): "" | "Force load to see features";
|
|
172
172
|
regionCannotBeRendered(_region: import("@jbrowse/core/util").Region): import("react/jsx-runtime").JSX.Element | null;
|
|
173
173
|
} & {
|
|
174
|
+
mouseoverExtraInformation: string | undefined;
|
|
174
175
|
featureIdUnderMouse: undefined | string;
|
|
175
176
|
contextMenuFeature: undefined | import("@jbrowse/core/util").Feature;
|
|
176
177
|
} & {
|
|
@@ -185,9 +186,22 @@ export declare function stateModelFactory(configSchema: AnyConfigurationSchemaTy
|
|
|
185
186
|
} & {
|
|
186
187
|
readonly features: import("@jbrowse/core/util/compositeMap").default<string, import("@jbrowse/core/util").Feature>;
|
|
187
188
|
readonly featureUnderMouse: import("@jbrowse/core/util").Feature | undefined;
|
|
189
|
+
readonly layoutFeatures: import("@jbrowse/core/util/compositeMap").default<string, [number, number, number, number] | [number, number, number, number, {
|
|
190
|
+
label?: string;
|
|
191
|
+
description?: string;
|
|
192
|
+
refName: string;
|
|
193
|
+
}]>;
|
|
188
194
|
getFeatureOverlapping(blockKey: string, x: number, y: number): string | undefined;
|
|
189
|
-
getFeatureByID(blockKey: string, id: string): [number, number, number, number] |
|
|
190
|
-
|
|
195
|
+
getFeatureByID(blockKey: string, id: string): ([number, number, number, number] | [number, number, number, number, {
|
|
196
|
+
label?: string;
|
|
197
|
+
description?: string;
|
|
198
|
+
refName: string;
|
|
199
|
+
}]) | undefined;
|
|
200
|
+
searchFeatureByID(id: string): ([number, number, number, number] | [number, number, number, number, {
|
|
201
|
+
label?: string;
|
|
202
|
+
description?: string;
|
|
203
|
+
refName: string;
|
|
204
|
+
}]) | undefined;
|
|
191
205
|
} & {
|
|
192
206
|
addBlock(key: string, block: import("@jbrowse/core/util/blockTypes").BaseBlock): void;
|
|
193
207
|
deleteBlock(key: string): void;
|
|
@@ -196,6 +210,7 @@ export declare function stateModelFactory(configSchema: AnyConfigurationSchemaTy
|
|
|
196
210
|
clearFeatureSelection(): void;
|
|
197
211
|
setFeatureIdUnderMouse(feature?: string): void;
|
|
198
212
|
setContextMenuFeature(feature?: import("@jbrowse/core/util").Feature): void;
|
|
213
|
+
setMouseoverExtraInformation(extra?: string): void;
|
|
199
214
|
} & {
|
|
200
215
|
reload(): Promise<void>;
|
|
201
216
|
} & {
|
|
@@ -171,6 +171,7 @@ export declare function stateModelFactory(configSchema: AnyConfigurationSchemaTy
|
|
|
171
171
|
regionCannotBeRenderedText(_region: import("@jbrowse/core/util").Region): "" | "Force load to see features";
|
|
172
172
|
regionCannotBeRendered(_region: import("@jbrowse/core/util").Region): import("react/jsx-runtime").JSX.Element | null;
|
|
173
173
|
} & {
|
|
174
|
+
mouseoverExtraInformation: string | undefined;
|
|
174
175
|
featureIdUnderMouse: undefined | string;
|
|
175
176
|
contextMenuFeature: undefined | import("@jbrowse/core/util").Feature;
|
|
176
177
|
} & {
|
|
@@ -185,9 +186,22 @@ export declare function stateModelFactory(configSchema: AnyConfigurationSchemaTy
|
|
|
185
186
|
} & {
|
|
186
187
|
readonly features: import("@jbrowse/core/util/compositeMap").default<string, import("@jbrowse/core/util").Feature>;
|
|
187
188
|
readonly featureUnderMouse: import("@jbrowse/core/util").Feature | undefined;
|
|
189
|
+
readonly layoutFeatures: import("@jbrowse/core/util/compositeMap").default<string, [number, number, number, number] | [number, number, number, number, {
|
|
190
|
+
label?: string;
|
|
191
|
+
description?: string;
|
|
192
|
+
refName: string;
|
|
193
|
+
}]>;
|
|
188
194
|
getFeatureOverlapping(blockKey: string, x: number, y: number): string | undefined;
|
|
189
|
-
getFeatureByID(blockKey: string, id: string): [number, number, number, number] |
|
|
190
|
-
|
|
195
|
+
getFeatureByID(blockKey: string, id: string): ([number, number, number, number] | [number, number, number, number, {
|
|
196
|
+
label?: string;
|
|
197
|
+
description?: string;
|
|
198
|
+
refName: string;
|
|
199
|
+
}]) | undefined;
|
|
200
|
+
searchFeatureByID(id: string): ([number, number, number, number] | [number, number, number, number, {
|
|
201
|
+
label?: string;
|
|
202
|
+
description?: string;
|
|
203
|
+
refName: string;
|
|
204
|
+
}]) | undefined;
|
|
191
205
|
} & {
|
|
192
206
|
addBlock(key: string, block: import("@jbrowse/core/util/blockTypes").BaseBlock): void;
|
|
193
207
|
deleteBlock(key: string): void;
|
|
@@ -196,6 +210,7 @@ export declare function stateModelFactory(configSchema: AnyConfigurationSchemaTy
|
|
|
196
210
|
clearFeatureSelection(): void;
|
|
197
211
|
setFeatureIdUnderMouse(feature?: string): void;
|
|
198
212
|
setContextMenuFeature(feature?: import("@jbrowse/core/util").Feature): void;
|
|
213
|
+
setMouseoverExtraInformation(extra?: string): void;
|
|
199
214
|
} & {
|
|
200
215
|
reload(): Promise<void>;
|
|
201
216
|
} & {
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@jbrowse/plugin-lollipop",
|
|
3
|
-
"version": "3.
|
|
3
|
+
"version": "3.7.0",
|
|
4
4
|
"description": "JBrowse 2 plugin for lollipops",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"jbrowse",
|
|
@@ -36,8 +36,8 @@
|
|
|
36
36
|
"clean": "rimraf dist esm *.tsbuildinfo"
|
|
37
37
|
},
|
|
38
38
|
"dependencies": {
|
|
39
|
-
"@jbrowse/core": "^3.
|
|
40
|
-
"@jbrowse/plugin-linear-genome-view": "^3.
|
|
39
|
+
"@jbrowse/core": "^3.7.0",
|
|
40
|
+
"@jbrowse/plugin-linear-genome-view": "^3.7.0",
|
|
41
41
|
"@mui/material": "^7.0.0",
|
|
42
42
|
"mobx": "^6.0.0",
|
|
43
43
|
"mobx-react": "^9.0.0",
|
|
@@ -52,5 +52,5 @@
|
|
|
52
52
|
"publishConfig": {
|
|
53
53
|
"access": "public"
|
|
54
54
|
},
|
|
55
|
-
"gitHead": "
|
|
55
|
+
"gitHead": "85bdd0d58286b7adbfd408146b15847676317635"
|
|
56
56
|
}
|