@jbrowse/plugin-lollipop 2.15.0 → 2.15.2
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.
|
@@ -5,8 +5,12 @@ import { AnyConfigurationSchemaType } from '@jbrowse/core/configuration';
|
|
|
5
5
|
* - [BaseLinearDisplay](../baselineardisplay)
|
|
6
6
|
*/
|
|
7
7
|
export declare function stateModelFactory(configSchema: AnyConfigurationSchemaType): import("mobx-state-tree").IModelType<{
|
|
8
|
-
id: import("mobx-state-tree"
|
|
9
|
-
|
|
8
|
+
id: import("mobx-state-tree" /**
|
|
9
|
+
* #getter
|
|
10
|
+
*/).IOptionalIType<import("mobx-state-tree").ISimpleType<string>, [undefined]>;
|
|
11
|
+
type: import("mobx-state-tree" /**
|
|
12
|
+
* #getter
|
|
13
|
+
*/).ISimpleType<string>;
|
|
10
14
|
rpcDriverName: import("mobx-state-tree").IMaybe<import("mobx-state-tree").ISimpleType<string>>;
|
|
11
15
|
} & {
|
|
12
16
|
heightPreConfig: import("mobx-state-tree").IMaybe<import("mobx-state-tree").ISimpleType<number>>;
|
|
@@ -32,7 +36,7 @@ export declare function stateModelFactory(configSchema: AnyConfigurationSchemaTy
|
|
|
32
36
|
}, {
|
|
33
37
|
renderInProgress: AbortController | undefined;
|
|
34
38
|
filled: boolean;
|
|
35
|
-
reactElement:
|
|
39
|
+
reactElement: React.ReactElement | undefined;
|
|
36
40
|
features: Map<string, import("@jbrowse/core/util").Feature> | undefined;
|
|
37
41
|
layout: any;
|
|
38
42
|
status: string;
|
|
@@ -43,12 +47,12 @@ export declare function stateModelFactory(configSchema: AnyConfigurationSchemaTy
|
|
|
43
47
|
model: {
|
|
44
48
|
error?: unknown;
|
|
45
49
|
reload: () => void;
|
|
46
|
-
message:
|
|
50
|
+
message: React.ReactNode;
|
|
47
51
|
filled?: boolean;
|
|
48
52
|
status?: string;
|
|
49
|
-
reactElement?:
|
|
53
|
+
reactElement?: React.ReactElement;
|
|
50
54
|
};
|
|
51
|
-
}) =>
|
|
55
|
+
}) => React.JSX.Element | undefined;
|
|
52
56
|
renderProps: any;
|
|
53
57
|
} & {
|
|
54
58
|
doReload(): void;
|
|
@@ -57,7 +61,7 @@ export declare function stateModelFactory(configSchema: AnyConfigurationSchemaTy
|
|
|
57
61
|
setLoading(abortController: AbortController): void;
|
|
58
62
|
setMessage(messageText: string): void;
|
|
59
63
|
setRendered(props: {
|
|
60
|
-
reactElement:
|
|
64
|
+
reactElement: React.ReactElement;
|
|
61
65
|
features: Map<string, import("@jbrowse/core/util").Feature>;
|
|
62
66
|
layout: any;
|
|
63
67
|
maxHeightReached: boolean;
|
|
@@ -109,7 +113,7 @@ export declare function stateModelFactory(configSchema: AnyConfigurationSchemaTy
|
|
|
109
113
|
error: unknown;
|
|
110
114
|
message: string | undefined;
|
|
111
115
|
} & {
|
|
112
|
-
readonly RenderingComponent:
|
|
116
|
+
readonly RenderingComponent: React.FC<{
|
|
113
117
|
model: {
|
|
114
118
|
id: string;
|
|
115
119
|
type: string;
|
|
@@ -130,7 +134,7 @@ export declare function stateModelFactory(configSchema: AnyConfigurationSchemaTy
|
|
|
130
134
|
onHorizontalScroll?: () => void;
|
|
131
135
|
blockState?: Record<string, any>;
|
|
132
136
|
}>;
|
|
133
|
-
readonly DisplayBlurb:
|
|
137
|
+
readonly DisplayBlurb: React.FC<{
|
|
134
138
|
model: {
|
|
135
139
|
id: string;
|
|
136
140
|
type: string;
|
|
@@ -153,7 +157,7 @@ export declare function stateModelFactory(configSchema: AnyConfigurationSchemaTy
|
|
|
153
157
|
readonly parentTrack: any;
|
|
154
158
|
renderProps(): any;
|
|
155
159
|
readonly rendererType: import("@jbrowse/core/pluggableElementTypes").RendererType;
|
|
156
|
-
readonly DisplayMessageComponent: undefined |
|
|
160
|
+
readonly DisplayMessageComponent: undefined | React.FC<any>;
|
|
157
161
|
trackMenuItems(): import("@jbrowse/core/ui").MenuItem[];
|
|
158
162
|
readonly viewMenuActions: import("@jbrowse/core/ui").MenuItem[];
|
|
159
163
|
regionCannotBeRendered(): null;
|
|
@@ -194,18 +198,18 @@ export declare function stateModelFactory(configSchema: AnyConfigurationSchemaTy
|
|
|
194
198
|
readonly regionTooLargeReason: string;
|
|
195
199
|
} & {
|
|
196
200
|
regionCannotBeRenderedText(_region: import("@jbrowse/core/util").Region): "" | "Force load to see features";
|
|
197
|
-
regionCannotBeRendered(_region: import("@jbrowse/core/util").Region):
|
|
201
|
+
regionCannotBeRendered(_region: import("@jbrowse/core/util").Region): React.JSX.Element | null;
|
|
198
202
|
} & {
|
|
199
203
|
featureIdUnderMouse: undefined | string;
|
|
200
204
|
contextMenuFeature: undefined | import("@jbrowse/core/util").Feature;
|
|
201
205
|
} & {
|
|
206
|
+
readonly DisplayMessageComponent: React.FC<any> | undefined;
|
|
202
207
|
readonly blockType: "dynamicBlocks" | "staticBlocks";
|
|
203
208
|
readonly blockDefinitions: import("@jbrowse/core/util/blockTypes").BlockSet;
|
|
204
209
|
} & {
|
|
205
210
|
readonly renderDelay: number;
|
|
206
|
-
readonly TooltipComponent: import("
|
|
211
|
+
readonly TooltipComponent: import("@jbrowse/core/util").AnyReactComponentType;
|
|
207
212
|
readonly selectedFeatureId: string | undefined;
|
|
208
|
-
readonly DisplayMessageComponent: undefined | import("react").FC<any>;
|
|
209
213
|
} & {
|
|
210
214
|
readonly features: import("@jbrowse/core/util/compositeMap").default<string, import("@jbrowse/core/util").Feature>;
|
|
211
215
|
readonly featureUnderMouse: import("@jbrowse/core/util").Feature | undefined;
|
|
@@ -227,7 +231,7 @@ export declare function stateModelFactory(configSchema: AnyConfigurationSchemaTy
|
|
|
227
231
|
contextMenuItems(): import("@jbrowse/core/ui").MenuItem[];
|
|
228
232
|
renderProps(): any;
|
|
229
233
|
} & {
|
|
230
|
-
renderSvg(opts: import("@jbrowse/plugin-linear-genome-view").ExportSvgDisplayOptions): Promise<
|
|
234
|
+
renderSvg(opts: import("@jbrowse/plugin-linear-genome-view").ExportSvgDisplayOptions): Promise<React.JSX.Element>;
|
|
231
235
|
afterAttach(): void;
|
|
232
236
|
} & {
|
|
233
237
|
/**
|
|
@@ -276,7 +280,7 @@ export declare function stateModelFactory(configSchema: AnyConfigurationSchemaTy
|
|
|
276
280
|
}, {
|
|
277
281
|
renderInProgress: AbortController | undefined;
|
|
278
282
|
filled: boolean;
|
|
279
|
-
reactElement:
|
|
283
|
+
reactElement: React.ReactElement | undefined;
|
|
280
284
|
features: Map<string, import("@jbrowse/core/util").Feature> | undefined;
|
|
281
285
|
layout: any;
|
|
282
286
|
status: string;
|
|
@@ -287,12 +291,12 @@ export declare function stateModelFactory(configSchema: AnyConfigurationSchemaTy
|
|
|
287
291
|
model: {
|
|
288
292
|
error?: unknown;
|
|
289
293
|
reload: () => void;
|
|
290
|
-
message:
|
|
294
|
+
message: React.ReactNode;
|
|
291
295
|
filled?: boolean;
|
|
292
296
|
status?: string;
|
|
293
|
-
reactElement?:
|
|
297
|
+
reactElement?: React.ReactElement;
|
|
294
298
|
};
|
|
295
|
-
}) =>
|
|
299
|
+
}) => React.JSX.Element | undefined;
|
|
296
300
|
renderProps: any;
|
|
297
301
|
} & {
|
|
298
302
|
doReload(): void;
|
|
@@ -301,7 +305,7 @@ export declare function stateModelFactory(configSchema: AnyConfigurationSchemaTy
|
|
|
301
305
|
setLoading(abortController: AbortController): void;
|
|
302
306
|
setMessage(messageText: string): void;
|
|
303
307
|
setRendered(props: {
|
|
304
|
-
reactElement:
|
|
308
|
+
reactElement: React.ReactElement;
|
|
305
309
|
features: Map<string, import("@jbrowse/core/util").Feature>;
|
|
306
310
|
layout: any;
|
|
307
311
|
maxHeightReached: boolean;
|
|
@@ -343,8 +347,8 @@ export declare function stateModelFactory(configSchema: AnyConfigurationSchemaTy
|
|
|
343
347
|
type: string;
|
|
344
348
|
id: string;
|
|
345
349
|
configuration: import("mobx-state-tree").ModelSnapshotType<Record<string, any>>;
|
|
346
|
-
rpcDriverName: string | undefined;
|
|
347
350
|
heightPreConfig: number | undefined;
|
|
351
|
+
rpcDriverName: string | undefined;
|
|
348
352
|
userBpPerPxLimit: number | undefined;
|
|
349
353
|
userByteSizeLimit: number | undefined;
|
|
350
354
|
} & import("mobx-state-tree")._NotCustomized>;
|
|
@@ -5,8 +5,12 @@ import { AnyConfigurationSchemaType } from '@jbrowse/core/configuration';
|
|
|
5
5
|
* - [BaseLinearDisplay](../baselineardisplay)
|
|
6
6
|
*/
|
|
7
7
|
export declare function stateModelFactory(configSchema: AnyConfigurationSchemaType): import("mobx-state-tree").IModelType<{
|
|
8
|
-
id: import("mobx-state-tree"
|
|
9
|
-
|
|
8
|
+
id: import("mobx-state-tree" /**
|
|
9
|
+
* #getter
|
|
10
|
+
*/).IOptionalIType<import("mobx-state-tree").ISimpleType<string>, [undefined]>;
|
|
11
|
+
type: import("mobx-state-tree" /**
|
|
12
|
+
* #getter
|
|
13
|
+
*/).ISimpleType<string>;
|
|
10
14
|
rpcDriverName: import("mobx-state-tree").IMaybe<import("mobx-state-tree").ISimpleType<string>>;
|
|
11
15
|
} & {
|
|
12
16
|
heightPreConfig: import("mobx-state-tree").IMaybe<import("mobx-state-tree").ISimpleType<number>>;
|
|
@@ -32,7 +36,7 @@ export declare function stateModelFactory(configSchema: AnyConfigurationSchemaTy
|
|
|
32
36
|
}, {
|
|
33
37
|
renderInProgress: AbortController | undefined;
|
|
34
38
|
filled: boolean;
|
|
35
|
-
reactElement:
|
|
39
|
+
reactElement: React.ReactElement | undefined;
|
|
36
40
|
features: Map<string, import("@jbrowse/core/util").Feature> | undefined;
|
|
37
41
|
layout: any;
|
|
38
42
|
status: string;
|
|
@@ -43,12 +47,12 @@ export declare function stateModelFactory(configSchema: AnyConfigurationSchemaTy
|
|
|
43
47
|
model: {
|
|
44
48
|
error?: unknown;
|
|
45
49
|
reload: () => void;
|
|
46
|
-
message:
|
|
50
|
+
message: React.ReactNode;
|
|
47
51
|
filled?: boolean;
|
|
48
52
|
status?: string;
|
|
49
|
-
reactElement?:
|
|
53
|
+
reactElement?: React.ReactElement;
|
|
50
54
|
};
|
|
51
|
-
}) =>
|
|
55
|
+
}) => React.JSX.Element | undefined;
|
|
52
56
|
renderProps: any;
|
|
53
57
|
} & {
|
|
54
58
|
doReload(): void;
|
|
@@ -57,7 +61,7 @@ export declare function stateModelFactory(configSchema: AnyConfigurationSchemaTy
|
|
|
57
61
|
setLoading(abortController: AbortController): void;
|
|
58
62
|
setMessage(messageText: string): void;
|
|
59
63
|
setRendered(props: {
|
|
60
|
-
reactElement:
|
|
64
|
+
reactElement: React.ReactElement;
|
|
61
65
|
features: Map<string, import("@jbrowse/core/util").Feature>;
|
|
62
66
|
layout: any;
|
|
63
67
|
maxHeightReached: boolean;
|
|
@@ -109,7 +113,7 @@ export declare function stateModelFactory(configSchema: AnyConfigurationSchemaTy
|
|
|
109
113
|
error: unknown;
|
|
110
114
|
message: string | undefined;
|
|
111
115
|
} & {
|
|
112
|
-
readonly RenderingComponent:
|
|
116
|
+
readonly RenderingComponent: React.FC<{
|
|
113
117
|
model: {
|
|
114
118
|
id: string;
|
|
115
119
|
type: string;
|
|
@@ -130,7 +134,7 @@ export declare function stateModelFactory(configSchema: AnyConfigurationSchemaTy
|
|
|
130
134
|
onHorizontalScroll?: () => void;
|
|
131
135
|
blockState?: Record<string, any>;
|
|
132
136
|
}>;
|
|
133
|
-
readonly DisplayBlurb:
|
|
137
|
+
readonly DisplayBlurb: React.FC<{
|
|
134
138
|
model: {
|
|
135
139
|
id: string;
|
|
136
140
|
type: string;
|
|
@@ -153,7 +157,7 @@ export declare function stateModelFactory(configSchema: AnyConfigurationSchemaTy
|
|
|
153
157
|
readonly parentTrack: any;
|
|
154
158
|
renderProps(): any;
|
|
155
159
|
readonly rendererType: import("@jbrowse/core/pluggableElementTypes").RendererType;
|
|
156
|
-
readonly DisplayMessageComponent: undefined |
|
|
160
|
+
readonly DisplayMessageComponent: undefined | React.FC<any>;
|
|
157
161
|
trackMenuItems(): import("@jbrowse/core/ui").MenuItem[];
|
|
158
162
|
readonly viewMenuActions: import("@jbrowse/core/ui").MenuItem[];
|
|
159
163
|
regionCannotBeRendered(): null;
|
|
@@ -194,18 +198,18 @@ export declare function stateModelFactory(configSchema: AnyConfigurationSchemaTy
|
|
|
194
198
|
readonly regionTooLargeReason: string;
|
|
195
199
|
} & {
|
|
196
200
|
regionCannotBeRenderedText(_region: import("@jbrowse/core/util").Region): "" | "Force load to see features";
|
|
197
|
-
regionCannotBeRendered(_region: import("@jbrowse/core/util").Region):
|
|
201
|
+
regionCannotBeRendered(_region: import("@jbrowse/core/util").Region): React.JSX.Element | null;
|
|
198
202
|
} & {
|
|
199
203
|
featureIdUnderMouse: undefined | string;
|
|
200
204
|
contextMenuFeature: undefined | import("@jbrowse/core/util").Feature;
|
|
201
205
|
} & {
|
|
206
|
+
readonly DisplayMessageComponent: React.FC<any> | undefined;
|
|
202
207
|
readonly blockType: "dynamicBlocks" | "staticBlocks";
|
|
203
208
|
readonly blockDefinitions: import("@jbrowse/core/util/blockTypes").BlockSet;
|
|
204
209
|
} & {
|
|
205
210
|
readonly renderDelay: number;
|
|
206
|
-
readonly TooltipComponent: import("
|
|
211
|
+
readonly TooltipComponent: import("@jbrowse/core/util").AnyReactComponentType;
|
|
207
212
|
readonly selectedFeatureId: string | undefined;
|
|
208
|
-
readonly DisplayMessageComponent: undefined | import("react").FC<any>;
|
|
209
213
|
} & {
|
|
210
214
|
readonly features: import("@jbrowse/core/util/compositeMap").default<string, import("@jbrowse/core/util").Feature>;
|
|
211
215
|
readonly featureUnderMouse: import("@jbrowse/core/util").Feature | undefined;
|
|
@@ -227,7 +231,7 @@ export declare function stateModelFactory(configSchema: AnyConfigurationSchemaTy
|
|
|
227
231
|
contextMenuItems(): import("@jbrowse/core/ui").MenuItem[];
|
|
228
232
|
renderProps(): any;
|
|
229
233
|
} & {
|
|
230
|
-
renderSvg(opts: import("@jbrowse/plugin-linear-genome-view").ExportSvgDisplayOptions): Promise<
|
|
234
|
+
renderSvg(opts: import("@jbrowse/plugin-linear-genome-view").ExportSvgDisplayOptions): Promise<React.JSX.Element>;
|
|
231
235
|
afterAttach(): void;
|
|
232
236
|
} & {
|
|
233
237
|
/**
|
|
@@ -276,7 +280,7 @@ export declare function stateModelFactory(configSchema: AnyConfigurationSchemaTy
|
|
|
276
280
|
}, {
|
|
277
281
|
renderInProgress: AbortController | undefined;
|
|
278
282
|
filled: boolean;
|
|
279
|
-
reactElement:
|
|
283
|
+
reactElement: React.ReactElement | undefined;
|
|
280
284
|
features: Map<string, import("@jbrowse/core/util").Feature> | undefined;
|
|
281
285
|
layout: any;
|
|
282
286
|
status: string;
|
|
@@ -287,12 +291,12 @@ export declare function stateModelFactory(configSchema: AnyConfigurationSchemaTy
|
|
|
287
291
|
model: {
|
|
288
292
|
error?: unknown;
|
|
289
293
|
reload: () => void;
|
|
290
|
-
message:
|
|
294
|
+
message: React.ReactNode;
|
|
291
295
|
filled?: boolean;
|
|
292
296
|
status?: string;
|
|
293
|
-
reactElement?:
|
|
297
|
+
reactElement?: React.ReactElement;
|
|
294
298
|
};
|
|
295
|
-
}) =>
|
|
299
|
+
}) => React.JSX.Element | undefined;
|
|
296
300
|
renderProps: any;
|
|
297
301
|
} & {
|
|
298
302
|
doReload(): void;
|
|
@@ -301,7 +305,7 @@ export declare function stateModelFactory(configSchema: AnyConfigurationSchemaTy
|
|
|
301
305
|
setLoading(abortController: AbortController): void;
|
|
302
306
|
setMessage(messageText: string): void;
|
|
303
307
|
setRendered(props: {
|
|
304
|
-
reactElement:
|
|
308
|
+
reactElement: React.ReactElement;
|
|
305
309
|
features: Map<string, import("@jbrowse/core/util").Feature>;
|
|
306
310
|
layout: any;
|
|
307
311
|
maxHeightReached: boolean;
|
|
@@ -343,8 +347,8 @@ export declare function stateModelFactory(configSchema: AnyConfigurationSchemaTy
|
|
|
343
347
|
type: string;
|
|
344
348
|
id: string;
|
|
345
349
|
configuration: import("mobx-state-tree").ModelSnapshotType<Record<string, any>>;
|
|
346
|
-
rpcDriverName: string | undefined;
|
|
347
350
|
heightPreConfig: number | undefined;
|
|
351
|
+
rpcDriverName: string | undefined;
|
|
348
352
|
userBpPerPxLimit: number | undefined;
|
|
349
353
|
userByteSizeLimit: number | undefined;
|
|
350
354
|
} & import("mobx-state-tree")._NotCustomized>;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@jbrowse/plugin-lollipop",
|
|
3
|
-
"version": "2.15.
|
|
3
|
+
"version": "2.15.2",
|
|
4
4
|
"description": "JBrowse 2 plugin for lollipops",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"jbrowse",
|
|
@@ -50,5 +50,5 @@
|
|
|
50
50
|
"publishConfig": {
|
|
51
51
|
"access": "public"
|
|
52
52
|
},
|
|
53
|
-
"gitHead": "
|
|
53
|
+
"gitHead": "8a58cefbfe39af4c97bcb6ead354d72c9fef9224"
|
|
54
54
|
}
|