@jbrowse/plugin-lollipop 2.12.0 → 2.12.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/LinearLollipopDisplay/configSchema.js +1 -2
- package/dist/LinearLollipopDisplay/index.js +1 -1
- package/dist/LinearLollipopDisplay/model.d.ts +26 -37
- package/dist/LinearLollipopDisplay/model.js +1 -2
- package/dist/LollipopRenderer/components/ScoreText.js +1 -1
- package/dist/LollipopRenderer/index.js +1 -1
- package/esm/LinearLollipopDisplay/model.d.ts +26 -37
- package/package.json +2 -2
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
"use strict";
|
|
2
2
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
-
exports.configSchemaFactory =
|
|
3
|
+
exports.configSchemaFactory = configSchemaFactory;
|
|
4
4
|
const configuration_1 = require("@jbrowse/core/configuration");
|
|
5
5
|
const plugin_linear_genome_view_1 = require("@jbrowse/plugin-linear-genome-view");
|
|
6
6
|
/**
|
|
@@ -20,4 +20,3 @@ function configSchemaFactory(pluginManager) {
|
|
|
20
20
|
explicitlyTyped: true,
|
|
21
21
|
});
|
|
22
22
|
}
|
|
23
|
-
exports.configSchemaFactory = configSchemaFactory;
|
|
@@ -1,5 +1,6 @@
|
|
|
1
1
|
"use strict";
|
|
2
2
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
exports.default = LinearLollipopDisplayF;
|
|
3
4
|
const pluggableElementTypes_1 = require("@jbrowse/core/pluggableElementTypes");
|
|
4
5
|
const plugin_linear_genome_view_1 = require("@jbrowse/plugin-linear-genome-view");
|
|
5
6
|
const model_1 = require("./model");
|
|
@@ -17,4 +18,3 @@ function LinearLollipopDisplayF(pluginManager) {
|
|
|
17
18
|
});
|
|
18
19
|
});
|
|
19
20
|
}
|
|
20
|
-
exports.default = LinearLollipopDisplayF;
|
|
@@ -1,4 +1,3 @@
|
|
|
1
|
-
/// <reference types="react" />
|
|
2
1
|
import { AnyConfigurationSchemaType } from '@jbrowse/core/configuration';
|
|
3
2
|
/**
|
|
4
3
|
* #stateModel LinearLollipopDisplay
|
|
@@ -33,9 +32,7 @@ export declare function stateModelFactory(configSchema: AnyConfigurationSchemaTy
|
|
|
33
32
|
}, {
|
|
34
33
|
renderInProgress: AbortController | undefined;
|
|
35
34
|
filled: boolean;
|
|
36
|
-
reactElement: import("react").ReactElement
|
|
37
|
-
* #getter
|
|
38
|
-
*/
|
|
35
|
+
reactElement: import("react").ReactElement | undefined;
|
|
39
36
|
features: Map<string, import("@jbrowse/core/util").Feature> | undefined;
|
|
40
37
|
layout: any;
|
|
41
38
|
status: string;
|
|
@@ -47,9 +44,9 @@ export declare function stateModelFactory(configSchema: AnyConfigurationSchemaTy
|
|
|
47
44
|
error?: unknown;
|
|
48
45
|
reload: () => void;
|
|
49
46
|
message: import("react").ReactNode;
|
|
50
|
-
filled?: boolean
|
|
51
|
-
status?: string
|
|
52
|
-
reactElement?: import("react").ReactElement
|
|
47
|
+
filled?: boolean;
|
|
48
|
+
status?: string;
|
|
49
|
+
reactElement?: import("react").ReactElement;
|
|
53
50
|
};
|
|
54
51
|
}) => import("react").JSX.Element | undefined;
|
|
55
52
|
renderProps: any;
|
|
@@ -60,7 +57,7 @@ export declare function stateModelFactory(configSchema: AnyConfigurationSchemaTy
|
|
|
60
57
|
setLoading(abortController: AbortController): void;
|
|
61
58
|
setMessage(messageText: string): void;
|
|
62
59
|
setRendered(props: {
|
|
63
|
-
reactElement: import("react").ReactElement
|
|
60
|
+
reactElement: import("react").ReactElement;
|
|
64
61
|
features: Map<string, import("@jbrowse/core/util").Feature>;
|
|
65
62
|
layout: any;
|
|
66
63
|
maxHeightReached: boolean;
|
|
@@ -109,9 +106,7 @@ export declare function stateModelFactory(configSchema: AnyConfigurationSchemaTy
|
|
|
109
106
|
configuration: AnyConfigurationSchemaType;
|
|
110
107
|
}, {
|
|
111
108
|
rendererTypeName: string;
|
|
112
|
-
error: unknown;
|
|
113
|
-
* #property
|
|
114
|
-
*/
|
|
109
|
+
error: unknown;
|
|
115
110
|
message: string | undefined;
|
|
116
111
|
} & {
|
|
117
112
|
readonly RenderingComponent: import("react").FC<{
|
|
@@ -124,9 +119,7 @@ export declare function stateModelFactory(configSchema: AnyConfigurationSchemaTy
|
|
|
124
119
|
error: unknown;
|
|
125
120
|
message: string | undefined;
|
|
126
121
|
} & import("mobx-state-tree").IStateTreeNode<import("mobx-state-tree").IModelType<{
|
|
127
|
-
id: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").ISimpleType<string>, [undefined]>;
|
|
128
|
-
* #getter
|
|
129
|
-
*/
|
|
122
|
+
id: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").ISimpleType<string>, [undefined]>;
|
|
130
123
|
type: import("mobx-state-tree").ISimpleType<string>;
|
|
131
124
|
rpcDriverName: import("mobx-state-tree").IMaybe<import("mobx-state-tree").ISimpleType<string>>;
|
|
132
125
|
}, {
|
|
@@ -134,8 +127,8 @@ export declare function stateModelFactory(configSchema: AnyConfigurationSchemaTy
|
|
|
134
127
|
error: unknown;
|
|
135
128
|
message: string | undefined;
|
|
136
129
|
}, import("mobx-state-tree")._NotCustomized, import("mobx-state-tree")._NotCustomized>>;
|
|
137
|
-
onHorizontalScroll?: Function
|
|
138
|
-
blockState?: Record<string, any
|
|
130
|
+
onHorizontalScroll?: Function;
|
|
131
|
+
blockState?: Record<string, any>;
|
|
139
132
|
}>;
|
|
140
133
|
readonly DisplayBlurb: import("react").FC<{
|
|
141
134
|
model: {
|
|
@@ -160,12 +153,12 @@ export declare function stateModelFactory(configSchema: AnyConfigurationSchemaTy
|
|
|
160
153
|
readonly parentTrack: any;
|
|
161
154
|
renderProps(): any;
|
|
162
155
|
readonly rendererType: import("@jbrowse/core/pluggableElementTypes").RendererType;
|
|
163
|
-
readonly DisplayMessageComponent: import("react").FC<any
|
|
156
|
+
readonly DisplayMessageComponent: undefined | import("react").FC<any>;
|
|
164
157
|
trackMenuItems(): import("@jbrowse/core/ui").MenuItem[];
|
|
165
158
|
readonly viewMenuActions: import("@jbrowse/core/ui").MenuItem[];
|
|
166
159
|
regionCannotBeRendered(): null;
|
|
167
160
|
} & {
|
|
168
|
-
setMessage(arg?: string
|
|
161
|
+
setMessage(arg?: string): void;
|
|
169
162
|
setError(error?: unknown): void;
|
|
170
163
|
setRpcDriverName(rpcDriverName: string): void;
|
|
171
164
|
reload(): void;
|
|
@@ -178,11 +171,9 @@ export declare function stateModelFactory(configSchema: AnyConfigurationSchemaTy
|
|
|
178
171
|
setHeight(displayHeight: number): number;
|
|
179
172
|
resizeHeight(distance: number): number;
|
|
180
173
|
} & {
|
|
181
|
-
featureDensityStatsP: Promise<import("@jbrowse/core/data_adapters/BaseAdapter").FeatureDensityStats
|
|
182
|
-
featureDensityStats: import("@jbrowse/core/data_adapters/BaseAdapter").FeatureDensityStats
|
|
183
|
-
currStatsBpPerPx: number;
|
|
184
|
-
* #getter
|
|
185
|
-
*/
|
|
174
|
+
featureDensityStatsP: undefined | Promise<import("@jbrowse/core/data_adapters/BaseAdapter").FeatureDensityStats>;
|
|
175
|
+
featureDensityStats: undefined | import("@jbrowse/core/data_adapters/BaseAdapter").FeatureDensityStats;
|
|
176
|
+
currStatsBpPerPx: number;
|
|
186
177
|
} & {
|
|
187
178
|
readonly currentBytesRequested: number;
|
|
188
179
|
readonly currentFeatureScreenDensity: number;
|
|
@@ -193,10 +184,10 @@ export declare function stateModelFactory(configSchema: AnyConfigurationSchemaTy
|
|
|
193
184
|
afterAttach(): void;
|
|
194
185
|
} & {
|
|
195
186
|
setCurrStatsBpPerPx(n: number): void;
|
|
196
|
-
setFeatureDensityStatsLimit(stats?: import("@jbrowse/core/data_adapters/BaseAdapter").FeatureDensityStats
|
|
187
|
+
setFeatureDensityStatsLimit(stats?: import("@jbrowse/core/data_adapters/BaseAdapter").FeatureDensityStats): void;
|
|
197
188
|
getFeatureDensityStats(): Promise<import("@jbrowse/core/data_adapters/BaseAdapter").FeatureDensityStats>;
|
|
198
189
|
setFeatureDensityStatsP(arg: any): void;
|
|
199
|
-
setFeatureDensityStats(featureDensityStats?: import("@jbrowse/core/data_adapters/BaseAdapter").FeatureDensityStats
|
|
190
|
+
setFeatureDensityStats(featureDensityStats?: import("@jbrowse/core/data_adapters/BaseAdapter").FeatureDensityStats): void;
|
|
200
191
|
clearFeatureDensityStats(): void;
|
|
201
192
|
} & {
|
|
202
193
|
readonly regionTooLarge: boolean;
|
|
@@ -205,8 +196,8 @@ export declare function stateModelFactory(configSchema: AnyConfigurationSchemaTy
|
|
|
205
196
|
regionCannotBeRenderedText(_region: import("@jbrowse/core/util").Region): "" | "Force load to see features";
|
|
206
197
|
regionCannotBeRendered(_region: import("@jbrowse/core/util").Region): import("react").JSX.Element | null;
|
|
207
198
|
} & {
|
|
208
|
-
featureIdUnderMouse:
|
|
209
|
-
contextMenuFeature: import("@jbrowse/core/util").Feature
|
|
199
|
+
featureIdUnderMouse: undefined | string;
|
|
200
|
+
contextMenuFeature: undefined | import("@jbrowse/core/util").Feature;
|
|
210
201
|
} & {
|
|
211
202
|
readonly blockType: "dynamicBlocks" | "staticBlocks";
|
|
212
203
|
readonly blockDefinitions: import("@jbrowse/core/util/blockTypes").BlockSet;
|
|
@@ -214,7 +205,7 @@ export declare function stateModelFactory(configSchema: AnyConfigurationSchemaTy
|
|
|
214
205
|
readonly renderDelay: number;
|
|
215
206
|
readonly TooltipComponent: import("react").FC<any>;
|
|
216
207
|
readonly selectedFeatureId: string | undefined;
|
|
217
|
-
readonly DisplayMessageComponent: import("react").FC<any
|
|
208
|
+
readonly DisplayMessageComponent: undefined | import("react").FC<any>;
|
|
218
209
|
} & {
|
|
219
210
|
readonly features: import("@jbrowse/core/util/compositeMap").default<string, import("@jbrowse/core/util").Feature>;
|
|
220
211
|
readonly featureUnderMouse: import("@jbrowse/core/util").Feature | undefined;
|
|
@@ -227,8 +218,8 @@ export declare function stateModelFactory(configSchema: AnyConfigurationSchemaTy
|
|
|
227
218
|
selectFeature(feature: import("@jbrowse/core/util").Feature): void;
|
|
228
219
|
navToFeature(feature: import("@jbrowse/core/util").Feature): void;
|
|
229
220
|
clearFeatureSelection(): void;
|
|
230
|
-
setFeatureIdUnderMouse(feature?: string
|
|
231
|
-
setContextMenuFeature(feature?: import("@jbrowse/core/util").Feature
|
|
221
|
+
setFeatureIdUnderMouse(feature?: string): void;
|
|
222
|
+
setContextMenuFeature(feature?: import("@jbrowse/core/util").Feature): void;
|
|
232
223
|
} & {
|
|
233
224
|
reload(): Promise<void>;
|
|
234
225
|
} & {
|
|
@@ -285,9 +276,7 @@ export declare function stateModelFactory(configSchema: AnyConfigurationSchemaTy
|
|
|
285
276
|
}, {
|
|
286
277
|
renderInProgress: AbortController | undefined;
|
|
287
278
|
filled: boolean;
|
|
288
|
-
reactElement: import("react").ReactElement
|
|
289
|
-
* #getter
|
|
290
|
-
*/
|
|
279
|
+
reactElement: import("react").ReactElement | undefined;
|
|
291
280
|
features: Map<string, import("@jbrowse/core/util").Feature> | undefined;
|
|
292
281
|
layout: any;
|
|
293
282
|
status: string;
|
|
@@ -299,9 +288,9 @@ export declare function stateModelFactory(configSchema: AnyConfigurationSchemaTy
|
|
|
299
288
|
error?: unknown;
|
|
300
289
|
reload: () => void;
|
|
301
290
|
message: import("react").ReactNode;
|
|
302
|
-
filled?: boolean
|
|
303
|
-
status?: string
|
|
304
|
-
reactElement?: import("react").ReactElement
|
|
291
|
+
filled?: boolean;
|
|
292
|
+
status?: string;
|
|
293
|
+
reactElement?: import("react").ReactElement;
|
|
305
294
|
};
|
|
306
295
|
}) => import("react").JSX.Element | undefined;
|
|
307
296
|
renderProps: any;
|
|
@@ -312,7 +301,7 @@ export declare function stateModelFactory(configSchema: AnyConfigurationSchemaTy
|
|
|
312
301
|
setLoading(abortController: AbortController): void;
|
|
313
302
|
setMessage(messageText: string): void;
|
|
314
303
|
setRendered(props: {
|
|
315
|
-
reactElement: import("react").ReactElement
|
|
304
|
+
reactElement: import("react").ReactElement;
|
|
316
305
|
features: Map<string, import("@jbrowse/core/util").Feature>;
|
|
317
306
|
layout: any;
|
|
318
307
|
maxHeightReached: boolean;
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
"use strict";
|
|
2
2
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
-
exports.stateModelFactory =
|
|
3
|
+
exports.stateModelFactory = stateModelFactory;
|
|
4
4
|
const configuration_1 = require("@jbrowse/core/configuration");
|
|
5
5
|
const mobx_state_tree_1 = require("mobx-state-tree");
|
|
6
6
|
const plugin_linear_genome_view_1 = require("@jbrowse/plugin-linear-genome-view");
|
|
@@ -55,4 +55,3 @@ function stateModelFactory(configSchema) {
|
|
|
55
55
|
};
|
|
56
56
|
});
|
|
57
57
|
}
|
|
58
|
-
exports.stateModelFactory = stateModelFactory;
|
|
@@ -3,6 +3,7 @@ var __importDefault = (this && this.__importDefault) || function (mod) {
|
|
|
3
3
|
return (mod && mod.__esModule) ? mod : { "default": mod };
|
|
4
4
|
};
|
|
5
5
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
6
|
+
exports.default = ScoreText;
|
|
6
7
|
const react_1 = __importDefault(require("react"));
|
|
7
8
|
const configuration_1 = require("@jbrowse/core/configuration");
|
|
8
9
|
const color_1 = require("@jbrowse/core/util/color");
|
|
@@ -16,4 +17,3 @@ function ScoreText({ feature, config, layoutRecord: { y, data: { anchorX, radius
|
|
|
16
17
|
}
|
|
17
18
|
return (react_1.default.createElement("text", { style: { fontSize: fontHeight, fill: (0, color_1.contrastingTextColor)(innerColor) }, x: anchorX, y: y + radiusPx - fontHeight / 2.4, textAnchor: "middle", dominantBaseline: "hanging" }, scoreString));
|
|
18
19
|
}
|
|
19
|
-
exports.default = ScoreText;
|
|
@@ -26,6 +26,7 @@ var __importDefault = (this && this.__importDefault) || function (mod) {
|
|
|
26
26
|
return (mod && mod.__esModule) ? mod : { "default": mod };
|
|
27
27
|
};
|
|
28
28
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
29
|
+
exports.default = LollipopRendererF;
|
|
29
30
|
const react_1 = require("react");
|
|
30
31
|
const LollipopRenderer_1 = __importDefault(require("./LollipopRenderer"));
|
|
31
32
|
const configSchema_1 = __importDefault(require("./configSchema"));
|
|
@@ -37,4 +38,3 @@ function LollipopRendererF(pluginManager) {
|
|
|
37
38
|
pluginManager,
|
|
38
39
|
}));
|
|
39
40
|
}
|
|
40
|
-
exports.default = LollipopRendererF;
|
|
@@ -1,4 +1,3 @@
|
|
|
1
|
-
/// <reference types="react" />
|
|
2
1
|
import { AnyConfigurationSchemaType } from '@jbrowse/core/configuration';
|
|
3
2
|
/**
|
|
4
3
|
* #stateModel LinearLollipopDisplay
|
|
@@ -33,9 +32,7 @@ export declare function stateModelFactory(configSchema: AnyConfigurationSchemaTy
|
|
|
33
32
|
}, {
|
|
34
33
|
renderInProgress: AbortController | undefined;
|
|
35
34
|
filled: boolean;
|
|
36
|
-
reactElement: import("react").ReactElement
|
|
37
|
-
* #getter
|
|
38
|
-
*/
|
|
35
|
+
reactElement: import("react").ReactElement | undefined;
|
|
39
36
|
features: Map<string, import("@jbrowse/core/util").Feature> | undefined;
|
|
40
37
|
layout: any;
|
|
41
38
|
status: string;
|
|
@@ -47,9 +44,9 @@ export declare function stateModelFactory(configSchema: AnyConfigurationSchemaTy
|
|
|
47
44
|
error?: unknown;
|
|
48
45
|
reload: () => void;
|
|
49
46
|
message: import("react").ReactNode;
|
|
50
|
-
filled?: boolean
|
|
51
|
-
status?: string
|
|
52
|
-
reactElement?: import("react").ReactElement
|
|
47
|
+
filled?: boolean;
|
|
48
|
+
status?: string;
|
|
49
|
+
reactElement?: import("react").ReactElement;
|
|
53
50
|
};
|
|
54
51
|
}) => import("react").JSX.Element | undefined;
|
|
55
52
|
renderProps: any;
|
|
@@ -60,7 +57,7 @@ export declare function stateModelFactory(configSchema: AnyConfigurationSchemaTy
|
|
|
60
57
|
setLoading(abortController: AbortController): void;
|
|
61
58
|
setMessage(messageText: string): void;
|
|
62
59
|
setRendered(props: {
|
|
63
|
-
reactElement: import("react").ReactElement
|
|
60
|
+
reactElement: import("react").ReactElement;
|
|
64
61
|
features: Map<string, import("@jbrowse/core/util").Feature>;
|
|
65
62
|
layout: any;
|
|
66
63
|
maxHeightReached: boolean;
|
|
@@ -109,9 +106,7 @@ export declare function stateModelFactory(configSchema: AnyConfigurationSchemaTy
|
|
|
109
106
|
configuration: AnyConfigurationSchemaType;
|
|
110
107
|
}, {
|
|
111
108
|
rendererTypeName: string;
|
|
112
|
-
error: unknown;
|
|
113
|
-
* #property
|
|
114
|
-
*/
|
|
109
|
+
error: unknown;
|
|
115
110
|
message: string | undefined;
|
|
116
111
|
} & {
|
|
117
112
|
readonly RenderingComponent: import("react").FC<{
|
|
@@ -124,9 +119,7 @@ export declare function stateModelFactory(configSchema: AnyConfigurationSchemaTy
|
|
|
124
119
|
error: unknown;
|
|
125
120
|
message: string | undefined;
|
|
126
121
|
} & import("mobx-state-tree").IStateTreeNode<import("mobx-state-tree").IModelType<{
|
|
127
|
-
id: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").ISimpleType<string>, [undefined]>;
|
|
128
|
-
* #getter
|
|
129
|
-
*/
|
|
122
|
+
id: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").ISimpleType<string>, [undefined]>;
|
|
130
123
|
type: import("mobx-state-tree").ISimpleType<string>;
|
|
131
124
|
rpcDriverName: import("mobx-state-tree").IMaybe<import("mobx-state-tree").ISimpleType<string>>;
|
|
132
125
|
}, {
|
|
@@ -134,8 +127,8 @@ export declare function stateModelFactory(configSchema: AnyConfigurationSchemaTy
|
|
|
134
127
|
error: unknown;
|
|
135
128
|
message: string | undefined;
|
|
136
129
|
}, import("mobx-state-tree")._NotCustomized, import("mobx-state-tree")._NotCustomized>>;
|
|
137
|
-
onHorizontalScroll?: Function
|
|
138
|
-
blockState?: Record<string, any
|
|
130
|
+
onHorizontalScroll?: Function;
|
|
131
|
+
blockState?: Record<string, any>;
|
|
139
132
|
}>;
|
|
140
133
|
readonly DisplayBlurb: import("react").FC<{
|
|
141
134
|
model: {
|
|
@@ -160,12 +153,12 @@ export declare function stateModelFactory(configSchema: AnyConfigurationSchemaTy
|
|
|
160
153
|
readonly parentTrack: any;
|
|
161
154
|
renderProps(): any;
|
|
162
155
|
readonly rendererType: import("@jbrowse/core/pluggableElementTypes").RendererType;
|
|
163
|
-
readonly DisplayMessageComponent: import("react").FC<any
|
|
156
|
+
readonly DisplayMessageComponent: undefined | import("react").FC<any>;
|
|
164
157
|
trackMenuItems(): import("@jbrowse/core/ui").MenuItem[];
|
|
165
158
|
readonly viewMenuActions: import("@jbrowse/core/ui").MenuItem[];
|
|
166
159
|
regionCannotBeRendered(): null;
|
|
167
160
|
} & {
|
|
168
|
-
setMessage(arg?: string
|
|
161
|
+
setMessage(arg?: string): void;
|
|
169
162
|
setError(error?: unknown): void;
|
|
170
163
|
setRpcDriverName(rpcDriverName: string): void;
|
|
171
164
|
reload(): void;
|
|
@@ -178,11 +171,9 @@ export declare function stateModelFactory(configSchema: AnyConfigurationSchemaTy
|
|
|
178
171
|
setHeight(displayHeight: number): number;
|
|
179
172
|
resizeHeight(distance: number): number;
|
|
180
173
|
} & {
|
|
181
|
-
featureDensityStatsP: Promise<import("@jbrowse/core/data_adapters/BaseAdapter").FeatureDensityStats
|
|
182
|
-
featureDensityStats: import("@jbrowse/core/data_adapters/BaseAdapter").FeatureDensityStats
|
|
183
|
-
currStatsBpPerPx: number;
|
|
184
|
-
* #getter
|
|
185
|
-
*/
|
|
174
|
+
featureDensityStatsP: undefined | Promise<import("@jbrowse/core/data_adapters/BaseAdapter").FeatureDensityStats>;
|
|
175
|
+
featureDensityStats: undefined | import("@jbrowse/core/data_adapters/BaseAdapter").FeatureDensityStats;
|
|
176
|
+
currStatsBpPerPx: number;
|
|
186
177
|
} & {
|
|
187
178
|
readonly currentBytesRequested: number;
|
|
188
179
|
readonly currentFeatureScreenDensity: number;
|
|
@@ -193,10 +184,10 @@ export declare function stateModelFactory(configSchema: AnyConfigurationSchemaTy
|
|
|
193
184
|
afterAttach(): void;
|
|
194
185
|
} & {
|
|
195
186
|
setCurrStatsBpPerPx(n: number): void;
|
|
196
|
-
setFeatureDensityStatsLimit(stats?: import("@jbrowse/core/data_adapters/BaseAdapter").FeatureDensityStats
|
|
187
|
+
setFeatureDensityStatsLimit(stats?: import("@jbrowse/core/data_adapters/BaseAdapter").FeatureDensityStats): void;
|
|
197
188
|
getFeatureDensityStats(): Promise<import("@jbrowse/core/data_adapters/BaseAdapter").FeatureDensityStats>;
|
|
198
189
|
setFeatureDensityStatsP(arg: any): void;
|
|
199
|
-
setFeatureDensityStats(featureDensityStats?: import("@jbrowse/core/data_adapters/BaseAdapter").FeatureDensityStats
|
|
190
|
+
setFeatureDensityStats(featureDensityStats?: import("@jbrowse/core/data_adapters/BaseAdapter").FeatureDensityStats): void;
|
|
200
191
|
clearFeatureDensityStats(): void;
|
|
201
192
|
} & {
|
|
202
193
|
readonly regionTooLarge: boolean;
|
|
@@ -205,8 +196,8 @@ export declare function stateModelFactory(configSchema: AnyConfigurationSchemaTy
|
|
|
205
196
|
regionCannotBeRenderedText(_region: import("@jbrowse/core/util").Region): "" | "Force load to see features";
|
|
206
197
|
regionCannotBeRendered(_region: import("@jbrowse/core/util").Region): import("react").JSX.Element | null;
|
|
207
198
|
} & {
|
|
208
|
-
featureIdUnderMouse:
|
|
209
|
-
contextMenuFeature: import("@jbrowse/core/util").Feature
|
|
199
|
+
featureIdUnderMouse: undefined | string;
|
|
200
|
+
contextMenuFeature: undefined | import("@jbrowse/core/util").Feature;
|
|
210
201
|
} & {
|
|
211
202
|
readonly blockType: "dynamicBlocks" | "staticBlocks";
|
|
212
203
|
readonly blockDefinitions: import("@jbrowse/core/util/blockTypes").BlockSet;
|
|
@@ -214,7 +205,7 @@ export declare function stateModelFactory(configSchema: AnyConfigurationSchemaTy
|
|
|
214
205
|
readonly renderDelay: number;
|
|
215
206
|
readonly TooltipComponent: import("react").FC<any>;
|
|
216
207
|
readonly selectedFeatureId: string | undefined;
|
|
217
|
-
readonly DisplayMessageComponent: import("react").FC<any
|
|
208
|
+
readonly DisplayMessageComponent: undefined | import("react").FC<any>;
|
|
218
209
|
} & {
|
|
219
210
|
readonly features: import("@jbrowse/core/util/compositeMap").default<string, import("@jbrowse/core/util").Feature>;
|
|
220
211
|
readonly featureUnderMouse: import("@jbrowse/core/util").Feature | undefined;
|
|
@@ -227,8 +218,8 @@ export declare function stateModelFactory(configSchema: AnyConfigurationSchemaTy
|
|
|
227
218
|
selectFeature(feature: import("@jbrowse/core/util").Feature): void;
|
|
228
219
|
navToFeature(feature: import("@jbrowse/core/util").Feature): void;
|
|
229
220
|
clearFeatureSelection(): void;
|
|
230
|
-
setFeatureIdUnderMouse(feature?: string
|
|
231
|
-
setContextMenuFeature(feature?: import("@jbrowse/core/util").Feature
|
|
221
|
+
setFeatureIdUnderMouse(feature?: string): void;
|
|
222
|
+
setContextMenuFeature(feature?: import("@jbrowse/core/util").Feature): void;
|
|
232
223
|
} & {
|
|
233
224
|
reload(): Promise<void>;
|
|
234
225
|
} & {
|
|
@@ -285,9 +276,7 @@ export declare function stateModelFactory(configSchema: AnyConfigurationSchemaTy
|
|
|
285
276
|
}, {
|
|
286
277
|
renderInProgress: AbortController | undefined;
|
|
287
278
|
filled: boolean;
|
|
288
|
-
reactElement: import("react").ReactElement
|
|
289
|
-
* #getter
|
|
290
|
-
*/
|
|
279
|
+
reactElement: import("react").ReactElement | undefined;
|
|
291
280
|
features: Map<string, import("@jbrowse/core/util").Feature> | undefined;
|
|
292
281
|
layout: any;
|
|
293
282
|
status: string;
|
|
@@ -299,9 +288,9 @@ export declare function stateModelFactory(configSchema: AnyConfigurationSchemaTy
|
|
|
299
288
|
error?: unknown;
|
|
300
289
|
reload: () => void;
|
|
301
290
|
message: import("react").ReactNode;
|
|
302
|
-
filled?: boolean
|
|
303
|
-
status?: string
|
|
304
|
-
reactElement?: import("react").ReactElement
|
|
291
|
+
filled?: boolean;
|
|
292
|
+
status?: string;
|
|
293
|
+
reactElement?: import("react").ReactElement;
|
|
305
294
|
};
|
|
306
295
|
}) => import("react").JSX.Element | undefined;
|
|
307
296
|
renderProps: any;
|
|
@@ -312,7 +301,7 @@ export declare function stateModelFactory(configSchema: AnyConfigurationSchemaTy
|
|
|
312
301
|
setLoading(abortController: AbortController): void;
|
|
313
302
|
setMessage(messageText: string): void;
|
|
314
303
|
setRendered(props: {
|
|
315
|
-
reactElement: import("react").ReactElement
|
|
304
|
+
reactElement: import("react").ReactElement;
|
|
316
305
|
features: Map<string, import("@jbrowse/core/util").Feature>;
|
|
317
306
|
layout: any;
|
|
318
307
|
maxHeightReached: boolean;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@jbrowse/plugin-lollipop",
|
|
3
|
-
"version": "2.12.
|
|
3
|
+
"version": "2.12.1",
|
|
4
4
|
"description": "JBrowse 2 plugin for lollipops",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"jbrowse",
|
|
@@ -51,5 +51,5 @@
|
|
|
51
51
|
"publishConfig": {
|
|
52
52
|
"access": "public"
|
|
53
53
|
},
|
|
54
|
-
"gitHead": "
|
|
54
|
+
"gitHead": "20f16ae5a56ae5e4806aaa373131e540b0b5b0fd"
|
|
55
55
|
}
|