@jbrowse/plugin-sequence 2.14.0 → 2.15.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.
|
@@ -33,7 +33,7 @@ export declare function modelFactory(configSchema: AnyConfigurationSchemaType):
|
|
|
33
33
|
}, {
|
|
34
34
|
renderInProgress: AbortController | undefined;
|
|
35
35
|
filled: boolean;
|
|
36
|
-
reactElement:
|
|
36
|
+
reactElement: React.ReactElement | undefined;
|
|
37
37
|
features: Map<string, import("@jbrowse/core/util").Feature> | undefined;
|
|
38
38
|
layout: any;
|
|
39
39
|
status: string;
|
|
@@ -44,10 +44,10 @@ export declare function modelFactory(configSchema: AnyConfigurationSchemaType):
|
|
|
44
44
|
model: {
|
|
45
45
|
error?: unknown;
|
|
46
46
|
reload: () => void;
|
|
47
|
-
message:
|
|
47
|
+
message: React.ReactNode;
|
|
48
48
|
filled?: boolean;
|
|
49
49
|
status?: string;
|
|
50
|
-
reactElement?:
|
|
50
|
+
reactElement?: React.ReactElement;
|
|
51
51
|
};
|
|
52
52
|
}) => import("react").JSX.Element | undefined;
|
|
53
53
|
renderProps: any;
|
|
@@ -58,7 +58,7 @@ export declare function modelFactory(configSchema: AnyConfigurationSchemaType):
|
|
|
58
58
|
setLoading(abortController: AbortController): void;
|
|
59
59
|
setMessage(messageText: string): void;
|
|
60
60
|
setRendered(props: {
|
|
61
|
-
reactElement:
|
|
61
|
+
reactElement: React.ReactElement;
|
|
62
62
|
features: Map<string, import("@jbrowse/core/util").Feature>;
|
|
63
63
|
layout: any;
|
|
64
64
|
maxHeightReached: boolean;
|
|
@@ -107,7 +107,7 @@ export declare function modelFactory(configSchema: AnyConfigurationSchemaType):
|
|
|
107
107
|
error: unknown;
|
|
108
108
|
message: string | undefined;
|
|
109
109
|
} & {
|
|
110
|
-
readonly RenderingComponent:
|
|
110
|
+
readonly RenderingComponent: React.FC<{
|
|
111
111
|
model: {
|
|
112
112
|
id: string;
|
|
113
113
|
type: string;
|
|
@@ -128,7 +128,7 @@ export declare function modelFactory(configSchema: AnyConfigurationSchemaType):
|
|
|
128
128
|
onHorizontalScroll?: () => void;
|
|
129
129
|
blockState?: Record<string, any>;
|
|
130
130
|
}>;
|
|
131
|
-
readonly DisplayBlurb:
|
|
131
|
+
readonly DisplayBlurb: React.FC<{
|
|
132
132
|
model: {
|
|
133
133
|
id: string;
|
|
134
134
|
type: string;
|
|
@@ -151,7 +151,7 @@ export declare function modelFactory(configSchema: AnyConfigurationSchemaType):
|
|
|
151
151
|
readonly parentTrack: any;
|
|
152
152
|
renderProps(): any;
|
|
153
153
|
readonly rendererType: import("@jbrowse/core/pluggableElementTypes").RendererType;
|
|
154
|
-
readonly DisplayMessageComponent: undefined |
|
|
154
|
+
readonly DisplayMessageComponent: undefined | React.FC<any>;
|
|
155
155
|
trackMenuItems(): import("@jbrowse/core/ui").MenuItem[];
|
|
156
156
|
readonly viewMenuActions: import("@jbrowse/core/ui").MenuItem[];
|
|
157
157
|
regionCannotBeRendered(): null;
|
|
@@ -197,13 +197,13 @@ export declare function modelFactory(configSchema: AnyConfigurationSchemaType):
|
|
|
197
197
|
featureIdUnderMouse: undefined | string;
|
|
198
198
|
contextMenuFeature: undefined | import("@jbrowse/core/util").Feature;
|
|
199
199
|
} & {
|
|
200
|
+
readonly DisplayMessageComponent: import("react").FC<any> | undefined;
|
|
200
201
|
readonly blockType: "dynamicBlocks" | "staticBlocks";
|
|
201
202
|
readonly blockDefinitions: import("@jbrowse/core/util/blockTypes").BlockSet;
|
|
202
203
|
} & {
|
|
203
204
|
readonly renderDelay: number;
|
|
204
|
-
readonly TooltipComponent: import("
|
|
205
|
+
readonly TooltipComponent: import("@jbrowse/core/util").AnyReactComponentType;
|
|
205
206
|
readonly selectedFeatureId: string | undefined;
|
|
206
|
-
readonly DisplayMessageComponent: undefined | import("react").FC<any>;
|
|
207
207
|
} & {
|
|
208
208
|
readonly features: import("@jbrowse/core/util/compositeMap").default<string, import("@jbrowse/core/util").Feature>;
|
|
209
209
|
readonly featureUnderMouse: import("@jbrowse/core/util").Feature | undefined;
|
|
@@ -325,7 +325,7 @@ export declare function modelFactory(configSchema: AnyConfigurationSchemaType):
|
|
|
325
325
|
}, {
|
|
326
326
|
renderInProgress: AbortController | undefined;
|
|
327
327
|
filled: boolean;
|
|
328
|
-
reactElement:
|
|
328
|
+
reactElement: React.ReactElement | undefined;
|
|
329
329
|
features: Map<string, import("@jbrowse/core/util").Feature> | undefined;
|
|
330
330
|
layout: any;
|
|
331
331
|
status: string;
|
|
@@ -336,10 +336,10 @@ export declare function modelFactory(configSchema: AnyConfigurationSchemaType):
|
|
|
336
336
|
model: {
|
|
337
337
|
error?: unknown;
|
|
338
338
|
reload: () => void;
|
|
339
|
-
message:
|
|
339
|
+
message: React.ReactNode;
|
|
340
340
|
filled?: boolean;
|
|
341
341
|
status?: string;
|
|
342
|
-
reactElement?:
|
|
342
|
+
reactElement?: React.ReactElement;
|
|
343
343
|
};
|
|
344
344
|
}) => import("react").JSX.Element | undefined;
|
|
345
345
|
renderProps: any;
|
|
@@ -350,7 +350,7 @@ export declare function modelFactory(configSchema: AnyConfigurationSchemaType):
|
|
|
350
350
|
setLoading(abortController: AbortController): void;
|
|
351
351
|
setMessage(messageText: string): void;
|
|
352
352
|
setRendered(props: {
|
|
353
|
-
reactElement:
|
|
353
|
+
reactElement: React.ReactElement;
|
|
354
354
|
features: Map<string, import("@jbrowse/core/util").Feature>;
|
|
355
355
|
layout: any;
|
|
356
356
|
maxHeightReached: boolean;
|
|
@@ -392,8 +392,8 @@ export declare function modelFactory(configSchema: AnyConfigurationSchemaType):
|
|
|
392
392
|
type: string;
|
|
393
393
|
id: string;
|
|
394
394
|
configuration: import("mobx-state-tree").ModelSnapshotType<Record<string, any>>;
|
|
395
|
-
rpcDriverName: string | undefined;
|
|
396
395
|
heightPreConfig: number | undefined;
|
|
396
|
+
rpcDriverName: string | undefined;
|
|
397
397
|
userBpPerPxLimit: number | undefined;
|
|
398
398
|
userByteSizeLimit: number | undefined;
|
|
399
399
|
} & import("mobx-state-tree")._NotCustomized>;
|
|
@@ -33,7 +33,7 @@ export declare function modelFactory(configSchema: AnyConfigurationSchemaType):
|
|
|
33
33
|
}, {
|
|
34
34
|
renderInProgress: AbortController | undefined;
|
|
35
35
|
filled: boolean;
|
|
36
|
-
reactElement:
|
|
36
|
+
reactElement: React.ReactElement | undefined;
|
|
37
37
|
features: Map<string, import("@jbrowse/core/util").Feature> | undefined;
|
|
38
38
|
layout: any;
|
|
39
39
|
status: string;
|
|
@@ -44,10 +44,10 @@ export declare function modelFactory(configSchema: AnyConfigurationSchemaType):
|
|
|
44
44
|
model: {
|
|
45
45
|
error?: unknown;
|
|
46
46
|
reload: () => void;
|
|
47
|
-
message:
|
|
47
|
+
message: React.ReactNode;
|
|
48
48
|
filled?: boolean;
|
|
49
49
|
status?: string;
|
|
50
|
-
reactElement?:
|
|
50
|
+
reactElement?: React.ReactElement;
|
|
51
51
|
};
|
|
52
52
|
}) => import("react").JSX.Element | undefined;
|
|
53
53
|
renderProps: any;
|
|
@@ -58,7 +58,7 @@ export declare function modelFactory(configSchema: AnyConfigurationSchemaType):
|
|
|
58
58
|
setLoading(abortController: AbortController): void;
|
|
59
59
|
setMessage(messageText: string): void;
|
|
60
60
|
setRendered(props: {
|
|
61
|
-
reactElement:
|
|
61
|
+
reactElement: React.ReactElement;
|
|
62
62
|
features: Map<string, import("@jbrowse/core/util").Feature>;
|
|
63
63
|
layout: any;
|
|
64
64
|
maxHeightReached: boolean;
|
|
@@ -107,7 +107,7 @@ export declare function modelFactory(configSchema: AnyConfigurationSchemaType):
|
|
|
107
107
|
error: unknown;
|
|
108
108
|
message: string | undefined;
|
|
109
109
|
} & {
|
|
110
|
-
readonly RenderingComponent:
|
|
110
|
+
readonly RenderingComponent: React.FC<{
|
|
111
111
|
model: {
|
|
112
112
|
id: string;
|
|
113
113
|
type: string;
|
|
@@ -128,7 +128,7 @@ export declare function modelFactory(configSchema: AnyConfigurationSchemaType):
|
|
|
128
128
|
onHorizontalScroll?: () => void;
|
|
129
129
|
blockState?: Record<string, any>;
|
|
130
130
|
}>;
|
|
131
|
-
readonly DisplayBlurb:
|
|
131
|
+
readonly DisplayBlurb: React.FC<{
|
|
132
132
|
model: {
|
|
133
133
|
id: string;
|
|
134
134
|
type: string;
|
|
@@ -151,7 +151,7 @@ export declare function modelFactory(configSchema: AnyConfigurationSchemaType):
|
|
|
151
151
|
readonly parentTrack: any;
|
|
152
152
|
renderProps(): any;
|
|
153
153
|
readonly rendererType: import("@jbrowse/core/pluggableElementTypes").RendererType;
|
|
154
|
-
readonly DisplayMessageComponent: undefined |
|
|
154
|
+
readonly DisplayMessageComponent: undefined | React.FC<any>;
|
|
155
155
|
trackMenuItems(): import("@jbrowse/core/ui").MenuItem[];
|
|
156
156
|
readonly viewMenuActions: import("@jbrowse/core/ui").MenuItem[];
|
|
157
157
|
regionCannotBeRendered(): null;
|
|
@@ -197,13 +197,13 @@ export declare function modelFactory(configSchema: AnyConfigurationSchemaType):
|
|
|
197
197
|
featureIdUnderMouse: undefined | string;
|
|
198
198
|
contextMenuFeature: undefined | import("@jbrowse/core/util").Feature;
|
|
199
199
|
} & {
|
|
200
|
+
readonly DisplayMessageComponent: import("react").FC<any> | undefined;
|
|
200
201
|
readonly blockType: "dynamicBlocks" | "staticBlocks";
|
|
201
202
|
readonly blockDefinitions: import("@jbrowse/core/util/blockTypes").BlockSet;
|
|
202
203
|
} & {
|
|
203
204
|
readonly renderDelay: number;
|
|
204
|
-
readonly TooltipComponent: import("
|
|
205
|
+
readonly TooltipComponent: import("@jbrowse/core/util").AnyReactComponentType;
|
|
205
206
|
readonly selectedFeatureId: string | undefined;
|
|
206
|
-
readonly DisplayMessageComponent: undefined | import("react").FC<any>;
|
|
207
207
|
} & {
|
|
208
208
|
readonly features: import("@jbrowse/core/util/compositeMap").default<string, import("@jbrowse/core/util").Feature>;
|
|
209
209
|
readonly featureUnderMouse: import("@jbrowse/core/util").Feature | undefined;
|
|
@@ -325,7 +325,7 @@ export declare function modelFactory(configSchema: AnyConfigurationSchemaType):
|
|
|
325
325
|
}, {
|
|
326
326
|
renderInProgress: AbortController | undefined;
|
|
327
327
|
filled: boolean;
|
|
328
|
-
reactElement:
|
|
328
|
+
reactElement: React.ReactElement | undefined;
|
|
329
329
|
features: Map<string, import("@jbrowse/core/util").Feature> | undefined;
|
|
330
330
|
layout: any;
|
|
331
331
|
status: string;
|
|
@@ -336,10 +336,10 @@ export declare function modelFactory(configSchema: AnyConfigurationSchemaType):
|
|
|
336
336
|
model: {
|
|
337
337
|
error?: unknown;
|
|
338
338
|
reload: () => void;
|
|
339
|
-
message:
|
|
339
|
+
message: React.ReactNode;
|
|
340
340
|
filled?: boolean;
|
|
341
341
|
status?: string;
|
|
342
|
-
reactElement?:
|
|
342
|
+
reactElement?: React.ReactElement;
|
|
343
343
|
};
|
|
344
344
|
}) => import("react").JSX.Element | undefined;
|
|
345
345
|
renderProps: any;
|
|
@@ -350,7 +350,7 @@ export declare function modelFactory(configSchema: AnyConfigurationSchemaType):
|
|
|
350
350
|
setLoading(abortController: AbortController): void;
|
|
351
351
|
setMessage(messageText: string): void;
|
|
352
352
|
setRendered(props: {
|
|
353
|
-
reactElement:
|
|
353
|
+
reactElement: React.ReactElement;
|
|
354
354
|
features: Map<string, import("@jbrowse/core/util").Feature>;
|
|
355
355
|
layout: any;
|
|
356
356
|
maxHeightReached: boolean;
|
|
@@ -392,8 +392,8 @@ export declare function modelFactory(configSchema: AnyConfigurationSchemaType):
|
|
|
392
392
|
type: string;
|
|
393
393
|
id: string;
|
|
394
394
|
configuration: import("mobx-state-tree").ModelSnapshotType<Record<string, any>>;
|
|
395
|
-
rpcDriverName: string | undefined;
|
|
396
395
|
heightPreConfig: number | undefined;
|
|
396
|
+
rpcDriverName: string | undefined;
|
|
397
397
|
userBpPerPxLimit: number | undefined;
|
|
398
398
|
userByteSizeLimit: number | undefined;
|
|
399
399
|
} & import("mobx-state-tree")._NotCustomized>;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@jbrowse/plugin-sequence",
|
|
3
|
-
"version": "2.
|
|
3
|
+
"version": "2.15.1",
|
|
4
4
|
"description": "JBrowse 2 sequence adapters, tracks, etc.",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"jbrowse",
|
|
@@ -44,7 +44,7 @@
|
|
|
44
44
|
"@jbrowse/core": "^2.0.0",
|
|
45
45
|
"@jbrowse/plugin-linear-genome-view": "^2.0.0",
|
|
46
46
|
"@jbrowse/plugin-wiggle": "^2.0.0",
|
|
47
|
-
"@mui/material": "^
|
|
47
|
+
"@mui/material": "^6.0.0",
|
|
48
48
|
"mobx": "^6.0.0",
|
|
49
49
|
"mobx-react": "^9.0.0",
|
|
50
50
|
"mobx-state-tree": "^5.0.0",
|
|
@@ -57,5 +57,5 @@
|
|
|
57
57
|
"distModule": "esm/index.js",
|
|
58
58
|
"srcModule": "src/index.ts",
|
|
59
59
|
"module": "esm/index.js",
|
|
60
|
-
"gitHead": "
|
|
60
|
+
"gitHead": "86ed70124fc5a0b1161266659d1ca9f8796bf3fe"
|
|
61
61
|
}
|