@jbrowse/plugin-breakpoint-split-view 2.13.0 → 2.13.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.
|
@@ -63,6 +63,7 @@ export default function stateModelFactory(pluginManager: PluginManager): import(
|
|
|
63
63
|
showGridlines: import("mobx-state-tree").IType<boolean | undefined, boolean, boolean>;
|
|
64
64
|
highlight: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").IArrayType<import("mobx-state-tree").IType<Required<import("@jbrowse/core/util").ParsedLocString>, Required<import("@jbrowse/core/util").ParsedLocString>, Required<import("@jbrowse/core/util").ParsedLocString>>>, [undefined]>;
|
|
65
65
|
colorByCDS: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").ISimpleType<boolean>, [undefined]>;
|
|
66
|
+
showTrackOutlines: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").ISimpleType<boolean>, [undefined]>;
|
|
66
67
|
}, {
|
|
67
68
|
width: number;
|
|
68
69
|
} & {
|
|
@@ -84,12 +85,12 @@ export default function stateModelFactory(pluginManager: PluginManager): import(
|
|
|
84
85
|
leftOffset: undefined | import("@jbrowse/plugin-linear-genome-view/src/LinearGenomeView").BpOffset;
|
|
85
86
|
rightOffset: undefined | import("@jbrowse/plugin-linear-genome-view/src/LinearGenomeView").BpOffset;
|
|
86
87
|
} & {
|
|
87
|
-
scaleBarDisplayPrefix(): "";
|
|
88
88
|
readonly trackLabelsSetting: any;
|
|
89
89
|
readonly width: number;
|
|
90
90
|
readonly interRegionPaddingWidth: number;
|
|
91
91
|
readonly assemblyNames: string[];
|
|
92
92
|
} & {
|
|
93
|
+
scaleBarDisplayPrefix(): string;
|
|
93
94
|
MiniControlsComponent(): React.FC<any>;
|
|
94
95
|
HeaderComponent(): React.FC<any>;
|
|
95
96
|
readonly assemblyErrors: string;
|
|
@@ -119,6 +120,7 @@ export default function stateModelFactory(pluginManager: PluginManager): import(
|
|
|
119
120
|
rewriteOnClicks(trackType: string, viewMenuActions: import("@jbrowse/core/ui").MenuItem[]): void;
|
|
120
121
|
readonly trackTypeActions: Map<string, import("@jbrowse/core/ui").MenuItem[]>;
|
|
121
122
|
} & {
|
|
123
|
+
setShowTrackOutlines(arg: boolean): void;
|
|
122
124
|
setColorByCDS(flag: boolean): void;
|
|
123
125
|
setShowCytobands(flag: boolean): void;
|
|
124
126
|
setWidth(newWidth: number): void;
|
|
@@ -259,6 +261,7 @@ export default function stateModelFactory(pluginManager: PluginManager): import(
|
|
|
259
261
|
showGridlines: import("mobx-state-tree").IType<boolean | undefined, boolean, boolean>;
|
|
260
262
|
highlight: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").IArrayType<import("mobx-state-tree").IType<Required<import("@jbrowse/core/util").ParsedLocString>, Required<import("@jbrowse/core/util").ParsedLocString>, Required<import("@jbrowse/core/util").ParsedLocString>>>, [undefined]>;
|
|
261
263
|
colorByCDS: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").ISimpleType<boolean>, [undefined]>;
|
|
264
|
+
showTrackOutlines: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").ISimpleType<boolean>, [undefined]>;
|
|
262
265
|
}>>, import("mobx-state-tree")._NotCustomized>>;
|
|
263
266
|
}, {
|
|
264
267
|
width: number;
|
|
@@ -63,6 +63,7 @@ export default function stateModelFactory(pluginManager: PluginManager): import(
|
|
|
63
63
|
showGridlines: import("mobx-state-tree").IType<boolean | undefined, boolean, boolean>;
|
|
64
64
|
highlight: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").IArrayType<import("mobx-state-tree").IType<Required<import("@jbrowse/core/util").ParsedLocString>, Required<import("@jbrowse/core/util").ParsedLocString>, Required<import("@jbrowse/core/util").ParsedLocString>>>, [undefined]>;
|
|
65
65
|
colorByCDS: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").ISimpleType<boolean>, [undefined]>;
|
|
66
|
+
showTrackOutlines: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").ISimpleType<boolean>, [undefined]>;
|
|
66
67
|
}, {
|
|
67
68
|
width: number;
|
|
68
69
|
} & {
|
|
@@ -84,12 +85,12 @@ export default function stateModelFactory(pluginManager: PluginManager): import(
|
|
|
84
85
|
leftOffset: undefined | import("@jbrowse/plugin-linear-genome-view/src/LinearGenomeView").BpOffset;
|
|
85
86
|
rightOffset: undefined | import("@jbrowse/plugin-linear-genome-view/src/LinearGenomeView").BpOffset;
|
|
86
87
|
} & {
|
|
87
|
-
scaleBarDisplayPrefix(): "";
|
|
88
88
|
readonly trackLabelsSetting: any;
|
|
89
89
|
readonly width: number;
|
|
90
90
|
readonly interRegionPaddingWidth: number;
|
|
91
91
|
readonly assemblyNames: string[];
|
|
92
92
|
} & {
|
|
93
|
+
scaleBarDisplayPrefix(): string;
|
|
93
94
|
MiniControlsComponent(): React.FC<any>;
|
|
94
95
|
HeaderComponent(): React.FC<any>;
|
|
95
96
|
readonly assemblyErrors: string;
|
|
@@ -119,6 +120,7 @@ export default function stateModelFactory(pluginManager: PluginManager): import(
|
|
|
119
120
|
rewriteOnClicks(trackType: string, viewMenuActions: import("@jbrowse/core/ui").MenuItem[]): void;
|
|
120
121
|
readonly trackTypeActions: Map<string, import("@jbrowse/core/ui").MenuItem[]>;
|
|
121
122
|
} & {
|
|
123
|
+
setShowTrackOutlines(arg: boolean): void;
|
|
122
124
|
setColorByCDS(flag: boolean): void;
|
|
123
125
|
setShowCytobands(flag: boolean): void;
|
|
124
126
|
setWidth(newWidth: number): void;
|
|
@@ -259,6 +261,7 @@ export default function stateModelFactory(pluginManager: PluginManager): import(
|
|
|
259
261
|
showGridlines: import("mobx-state-tree").IType<boolean | undefined, boolean, boolean>;
|
|
260
262
|
highlight: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").IArrayType<import("mobx-state-tree").IType<Required<import("@jbrowse/core/util").ParsedLocString>, Required<import("@jbrowse/core/util").ParsedLocString>, Required<import("@jbrowse/core/util").ParsedLocString>>>, [undefined]>;
|
|
261
263
|
colorByCDS: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").ISimpleType<boolean>, [undefined]>;
|
|
264
|
+
showTrackOutlines: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").ISimpleType<boolean>, [undefined]>;
|
|
262
265
|
}>>, import("mobx-state-tree")._NotCustomized>>;
|
|
263
266
|
}, {
|
|
264
267
|
width: number;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@jbrowse/plugin-breakpoint-split-view",
|
|
3
|
-
"version": "2.13.
|
|
3
|
+
"version": "2.13.1",
|
|
4
4
|
"description": "JBrowse 2 breakpoint detail split view",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"jbrowse",
|
|
@@ -58,5 +58,5 @@
|
|
|
58
58
|
"publishConfig": {
|
|
59
59
|
"access": "public"
|
|
60
60
|
},
|
|
61
|
-
"gitHead": "
|
|
61
|
+
"gitHead": "fcebca71cc1d066654603e1a9accfa6c6d4f764d"
|
|
62
62
|
}
|