@jbrowse/plugin-linear-comparative-view 2.12.3 → 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.
@@ -23,7 +23,9 @@ declare function stateModelFactory(schema: AnyConfigurationSchemaType): import("
23
23
  refName: import("mobx-state-tree").ISimpleType<string>;
24
24
  start: import("mobx-state-tree").ISimpleType<number>;
25
25
  end: import("mobx-state-tree").ISimpleType<number>;
26
- reversed: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").ISimpleType<boolean>, [undefined]>;
26
+ reversed: import("mobx-state-tree" /**
27
+ * #property
28
+ */).IOptionalIType<import("mobx-state-tree").ISimpleType<boolean>, [undefined]>;
27
29
  } & {
28
30
  assemblyName: import("mobx-state-tree").ISimpleType<string>;
29
31
  }, {
@@ -40,6 +40,7 @@ declare function stateModelFactory(pluginManager: PluginManager): import("mobx-s
40
40
  showGridlines: import("mobx-state-tree").IType<boolean | undefined, boolean, boolean>;
41
41
  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]>;
42
42
  colorByCDS: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").ISimpleType<boolean>, [undefined]>;
43
+ showTrackOutlines: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").ISimpleType<boolean>, [undefined]>;
43
44
  }, {
44
45
  width: number;
45
46
  } & {
@@ -66,6 +67,7 @@ declare function stateModelFactory(pluginManager: PluginManager): import("mobx-s
66
67
  readonly interRegionPaddingWidth: number;
67
68
  readonly assemblyNames: string[];
68
69
  } & {
70
+ scaleBarDisplayPrefix(): string;
69
71
  MiniControlsComponent(): import("react").FC<any>;
70
72
  HeaderComponent(): import("react").FC<any>;
71
73
  readonly assemblyErrors: string;
@@ -95,6 +97,7 @@ declare function stateModelFactory(pluginManager: PluginManager): import("mobx-s
95
97
  rewriteOnClicks(trackType: string, viewMenuActions: MenuItem[]): void;
96
98
  readonly trackTypeActions: Map<string, MenuItem[]>;
97
99
  } & {
100
+ setShowTrackOutlines(arg: boolean): void;
98
101
  setColorByCDS(flag: boolean): void;
99
102
  setShowCytobands(flag: boolean): void;
100
103
  setWidth(newWidth: number): void;
@@ -235,6 +238,7 @@ declare function stateModelFactory(pluginManager: PluginManager): import("mobx-s
235
238
  showGridlines: import("mobx-state-tree").IType<boolean | undefined, boolean, boolean>;
236
239
  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]>;
237
240
  colorByCDS: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").ISimpleType<boolean>, [undefined]>;
241
+ showTrackOutlines: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").ISimpleType<boolean>, [undefined]>;
238
242
  }>>, import("mobx-state-tree")._NotCustomized>>;
239
243
  viewTrackConfigs: import("mobx-state-tree").IArrayType<import("mobx-state-tree").IAnyModelType>;
240
244
  }, {
@@ -246,6 +250,9 @@ declare function stateModelFactory(pluginManager: PluginManager): import("mobx-s
246
250
  setWidth(newWidth: number): void;
247
251
  setMinimized(flag: boolean): void;
248
252
  } & {
253
+ /**
254
+ * #volatile
255
+ */
249
256
  width: number | undefined;
250
257
  } & {
251
258
  /**
@@ -82,13 +82,16 @@ function stateModelFactory(pluginManager) {
82
82
  .stateModel),
83
83
  /**
84
84
  * #property
85
- * this represents tracks specific to this view specifically used
86
- * for read vs ref dotplots where this track would not really apply
85
+ * this represents tracks specific to this view specifically used for
86
+ * read vs ref dotplots where this track would not really apply
87
87
  * elsewhere
88
88
  */
89
89
  viewTrackConfigs: mobx_state_tree_1.types.array(pluginManager.pluggableConfigSchemaType('track')),
90
90
  }))
91
91
  .volatile(() => ({
92
+ /**
93
+ * #volatile
94
+ */
92
95
  width: undefined,
93
96
  }))
94
97
  .views(self => ({
@@ -56,6 +56,7 @@ export default function stateModelFactory(pluginManager: PluginManager): import(
56
56
  showGridlines: import("mobx-state-tree").IType<boolean | undefined, boolean, boolean>;
57
57
  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]>;
58
58
  colorByCDS: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").ISimpleType<boolean>, [undefined]>;
59
+ showTrackOutlines: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").ISimpleType<boolean>, [undefined]>;
59
60
  }, {
60
61
  width: number;
61
62
  } & {
@@ -82,6 +83,7 @@ export default function stateModelFactory(pluginManager: PluginManager): import(
82
83
  readonly interRegionPaddingWidth: number;
83
84
  readonly assemblyNames: string[];
84
85
  } & {
86
+ scaleBarDisplayPrefix(): string;
85
87
  MiniControlsComponent(): React.FC<any>;
86
88
  HeaderComponent(): React.FC<any>;
87
89
  readonly assemblyErrors: string;
@@ -111,6 +113,7 @@ export default function stateModelFactory(pluginManager: PluginManager): import(
111
113
  rewriteOnClicks(trackType: string, viewMenuActions: import("@jbrowse/core/ui").MenuItem[]): void;
112
114
  readonly trackTypeActions: Map<string, import("@jbrowse/core/ui").MenuItem[]>;
113
115
  } & {
116
+ setShowTrackOutlines(arg: boolean): void;
114
117
  setColorByCDS(flag: boolean): void;
115
118
  setShowCytobands(flag: boolean): void;
116
119
  setWidth(newWidth: number): void;
@@ -251,6 +254,7 @@ export default function stateModelFactory(pluginManager: PluginManager): import(
251
254
  showGridlines: import("mobx-state-tree").IType<boolean | undefined, boolean, boolean>;
252
255
  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]>;
253
256
  colorByCDS: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").ISimpleType<boolean>, [undefined]>;
257
+ showTrackOutlines: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").ISimpleType<boolean>, [undefined]>;
254
258
  }>>, import("mobx-state-tree")._NotCustomized>>;
255
259
  viewTrackConfigs: import("mobx-state-tree").IArrayType<import("mobx-state-tree").IAnyModelType>;
256
260
  } & {
@@ -23,7 +23,9 @@ declare function stateModelFactory(schema: AnyConfigurationSchemaType): import("
23
23
  refName: import("mobx-state-tree").ISimpleType<string>;
24
24
  start: import("mobx-state-tree").ISimpleType<number>;
25
25
  end: import("mobx-state-tree").ISimpleType<number>;
26
- reversed: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").ISimpleType<boolean>, [undefined]>;
26
+ reversed: import("mobx-state-tree" /**
27
+ * #property
28
+ */).IOptionalIType<import("mobx-state-tree").ISimpleType<boolean>, [undefined]>;
27
29
  } & {
28
30
  assemblyName: import("mobx-state-tree").ISimpleType<string>;
29
31
  }, {
@@ -40,6 +40,7 @@ declare function stateModelFactory(pluginManager: PluginManager): import("mobx-s
40
40
  showGridlines: import("mobx-state-tree").IType<boolean | undefined, boolean, boolean>;
41
41
  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]>;
42
42
  colorByCDS: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").ISimpleType<boolean>, [undefined]>;
43
+ showTrackOutlines: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").ISimpleType<boolean>, [undefined]>;
43
44
  }, {
44
45
  width: number;
45
46
  } & {
@@ -66,6 +67,7 @@ declare function stateModelFactory(pluginManager: PluginManager): import("mobx-s
66
67
  readonly interRegionPaddingWidth: number;
67
68
  readonly assemblyNames: string[];
68
69
  } & {
70
+ scaleBarDisplayPrefix(): string;
69
71
  MiniControlsComponent(): import("react").FC<any>;
70
72
  HeaderComponent(): import("react").FC<any>;
71
73
  readonly assemblyErrors: string;
@@ -95,6 +97,7 @@ declare function stateModelFactory(pluginManager: PluginManager): import("mobx-s
95
97
  rewriteOnClicks(trackType: string, viewMenuActions: MenuItem[]): void;
96
98
  readonly trackTypeActions: Map<string, MenuItem[]>;
97
99
  } & {
100
+ setShowTrackOutlines(arg: boolean): void;
98
101
  setColorByCDS(flag: boolean): void;
99
102
  setShowCytobands(flag: boolean): void;
100
103
  setWidth(newWidth: number): void;
@@ -235,6 +238,7 @@ declare function stateModelFactory(pluginManager: PluginManager): import("mobx-s
235
238
  showGridlines: import("mobx-state-tree").IType<boolean | undefined, boolean, boolean>;
236
239
  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]>;
237
240
  colorByCDS: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").ISimpleType<boolean>, [undefined]>;
241
+ showTrackOutlines: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").ISimpleType<boolean>, [undefined]>;
238
242
  }>>, import("mobx-state-tree")._NotCustomized>>;
239
243
  viewTrackConfigs: import("mobx-state-tree").IArrayType<import("mobx-state-tree").IAnyModelType>;
240
244
  }, {
@@ -246,6 +250,9 @@ declare function stateModelFactory(pluginManager: PluginManager): import("mobx-s
246
250
  setWidth(newWidth: number): void;
247
251
  setMinimized(flag: boolean): void;
248
252
  } & {
253
+ /**
254
+ * #volatile
255
+ */
249
256
  width: number | undefined;
250
257
  } & {
251
258
  /**
@@ -54,13 +54,16 @@ function stateModelFactory(pluginManager) {
54
54
  .stateModel),
55
55
  /**
56
56
  * #property
57
- * this represents tracks specific to this view specifically used
58
- * for read vs ref dotplots where this track would not really apply
57
+ * this represents tracks specific to this view specifically used for
58
+ * read vs ref dotplots where this track would not really apply
59
59
  * elsewhere
60
60
  */
61
61
  viewTrackConfigs: types.array(pluginManager.pluggableConfigSchemaType('track')),
62
62
  }))
63
63
  .volatile(() => ({
64
+ /**
65
+ * #volatile
66
+ */
64
67
  width: undefined,
65
68
  }))
66
69
  .views(self => ({
@@ -56,6 +56,7 @@ export default function stateModelFactory(pluginManager: PluginManager): import(
56
56
  showGridlines: import("mobx-state-tree").IType<boolean | undefined, boolean, boolean>;
57
57
  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]>;
58
58
  colorByCDS: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").ISimpleType<boolean>, [undefined]>;
59
+ showTrackOutlines: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").ISimpleType<boolean>, [undefined]>;
59
60
  }, {
60
61
  width: number;
61
62
  } & {
@@ -82,6 +83,7 @@ export default function stateModelFactory(pluginManager: PluginManager): import(
82
83
  readonly interRegionPaddingWidth: number;
83
84
  readonly assemblyNames: string[];
84
85
  } & {
86
+ scaleBarDisplayPrefix(): string;
85
87
  MiniControlsComponent(): React.FC<any>;
86
88
  HeaderComponent(): React.FC<any>;
87
89
  readonly assemblyErrors: string;
@@ -111,6 +113,7 @@ export default function stateModelFactory(pluginManager: PluginManager): import(
111
113
  rewriteOnClicks(trackType: string, viewMenuActions: import("@jbrowse/core/ui").MenuItem[]): void;
112
114
  readonly trackTypeActions: Map<string, import("@jbrowse/core/ui").MenuItem[]>;
113
115
  } & {
116
+ setShowTrackOutlines(arg: boolean): void;
114
117
  setColorByCDS(flag: boolean): void;
115
118
  setShowCytobands(flag: boolean): void;
116
119
  setWidth(newWidth: number): void;
@@ -251,6 +254,7 @@ export default function stateModelFactory(pluginManager: PluginManager): import(
251
254
  showGridlines: import("mobx-state-tree").IType<boolean | undefined, boolean, boolean>;
252
255
  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]>;
253
256
  colorByCDS: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").ISimpleType<boolean>, [undefined]>;
257
+ showTrackOutlines: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").ISimpleType<boolean>, [undefined]>;
254
258
  }>>, import("mobx-state-tree")._NotCustomized>>;
255
259
  viewTrackConfigs: import("mobx-state-tree").IArrayType<import("mobx-state-tree").IAnyModelType>;
256
260
  } & {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@jbrowse/plugin-linear-comparative-view",
3
- "version": "2.12.3",
3
+ "version": "2.13.1",
4
4
  "description": "JBrowse 2 linear comparative view",
5
5
  "keywords": [
6
6
  "jbrowse",
@@ -61,5 +61,5 @@
61
61
  "publishConfig": {
62
62
  "access": "public"
63
63
  },
64
- "gitHead": "2775490221cde56af344acebb0afa7e14531cd81"
64
+ "gitHead": "fcebca71cc1d066654603e1a9accfa6c6d4f764d"
65
65
  }