@jbrowse/plugin-gccontent 2.11.1 → 2.12.0
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/LinearGCContentDisplay/shared.d.ts +7 -3
- package/dist/LinearGCContentDisplay/stateModel1.d.ts +6 -0
- package/dist/LinearGCContentDisplay/stateModel2.d.ts +6 -0
- package/esm/LinearGCContentDisplay/shared.d.ts +7 -3
- package/esm/LinearGCContentDisplay/stateModel1.d.ts +6 -0
- package/esm/LinearGCContentDisplay/stateModel2.d.ts +6 -0
- package/package.json +2 -2
|
@@ -77,9 +77,7 @@ export default function SharedModelF(pluginManager: PluginManager, configSchema:
|
|
|
77
77
|
defaultValue: number;
|
|
78
78
|
};
|
|
79
79
|
fetchSizeLimit: {
|
|
80
|
-
type: string;
|
|
81
|
-
* #property
|
|
82
|
-
*/
|
|
80
|
+
type: string;
|
|
83
81
|
defaultValue: number;
|
|
84
82
|
description: string;
|
|
85
83
|
};
|
|
@@ -94,6 +92,11 @@ export default function SharedModelF(pluginManager: PluginManager, configSchema:
|
|
|
94
92
|
defaultValue: string;
|
|
95
93
|
contextVariable: string[];
|
|
96
94
|
};
|
|
95
|
+
jexlFilters: {
|
|
96
|
+
type: string;
|
|
97
|
+
description: string;
|
|
98
|
+
defaultValue: never[];
|
|
99
|
+
};
|
|
97
100
|
}, import("@jbrowse/core/configuration/configurationSchema").ConfigurationSchemaOptions<undefined, "displayId">>;
|
|
98
101
|
} & {
|
|
99
102
|
selectedRendering: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").ISimpleType<string>, [undefined]>;
|
|
@@ -238,6 +241,7 @@ export default function SharedModelF(pluginManager: PluginManager, configSchema:
|
|
|
238
241
|
addBlock(key: string, block: import("@jbrowse/core/util/blockTypes").BaseBlock): void;
|
|
239
242
|
deleteBlock(key: string): void;
|
|
240
243
|
selectFeature(feature: import("@jbrowse/core/util").Feature): void;
|
|
244
|
+
navToFeature(feature: import("@jbrowse/core/util").Feature): void;
|
|
241
245
|
clearFeatureSelection(): void;
|
|
242
246
|
setFeatureIdUnderMouse(feature?: string | undefined): void;
|
|
243
247
|
setContextMenuFeature(feature?: import("@jbrowse/core/util").Feature | undefined): void;
|
|
@@ -91,6 +91,11 @@ export default function stateModelF(pluginManager: PluginManager, configSchema:
|
|
|
91
91
|
defaultValue: string;
|
|
92
92
|
contextVariable: string[];
|
|
93
93
|
};
|
|
94
|
+
jexlFilters: {
|
|
95
|
+
type: string;
|
|
96
|
+
description: string;
|
|
97
|
+
defaultValue: never[];
|
|
98
|
+
};
|
|
94
99
|
}, import("@jbrowse/core/configuration/configurationSchema").ConfigurationSchemaOptions<undefined, "displayId">>;
|
|
95
100
|
} & {
|
|
96
101
|
selectedRendering: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").ISimpleType<string>, [undefined]>;
|
|
@@ -229,6 +234,7 @@ export default function stateModelF(pluginManager: PluginManager, configSchema:
|
|
|
229
234
|
addBlock(key: string, block: import("@jbrowse/core/util/blockTypes").BaseBlock): void;
|
|
230
235
|
deleteBlock(key: string): void;
|
|
231
236
|
selectFeature(feature: import("@jbrowse/core/util").Feature): void;
|
|
237
|
+
navToFeature(feature: import("@jbrowse/core/util").Feature): void;
|
|
232
238
|
clearFeatureSelection(): void;
|
|
233
239
|
setFeatureIdUnderMouse(feature?: string | undefined): void;
|
|
234
240
|
setContextMenuFeature(feature?: import("@jbrowse/core/util").Feature | undefined): void;
|
|
@@ -96,6 +96,11 @@ export default function stateModelF(pluginManager: PluginManager, configSchema:
|
|
|
96
96
|
defaultValue: string;
|
|
97
97
|
contextVariable: string[];
|
|
98
98
|
};
|
|
99
|
+
jexlFilters: {
|
|
100
|
+
type: string;
|
|
101
|
+
description: string;
|
|
102
|
+
defaultValue: never[];
|
|
103
|
+
};
|
|
99
104
|
}, import("@jbrowse/core/configuration/configurationSchema").ConfigurationSchemaOptions<undefined, "displayId">>;
|
|
100
105
|
} & {
|
|
101
106
|
selectedRendering: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").ISimpleType<string>, [undefined]>;
|
|
@@ -234,6 +239,7 @@ export default function stateModelF(pluginManager: PluginManager, configSchema:
|
|
|
234
239
|
addBlock(key: string, block: import("@jbrowse/core/util/blockTypes").BaseBlock): void;
|
|
235
240
|
deleteBlock(key: string): void;
|
|
236
241
|
selectFeature(feature: import("@jbrowse/core/util").Feature): void;
|
|
242
|
+
navToFeature(feature: import("@jbrowse/core/util").Feature): void;
|
|
237
243
|
clearFeatureSelection(): void;
|
|
238
244
|
setFeatureIdUnderMouse(feature?: string | undefined): void;
|
|
239
245
|
setContextMenuFeature(feature?: import("@jbrowse/core/util").Feature | undefined): void;
|
|
@@ -77,9 +77,7 @@ export default function SharedModelF(pluginManager: PluginManager, configSchema:
|
|
|
77
77
|
defaultValue: number;
|
|
78
78
|
};
|
|
79
79
|
fetchSizeLimit: {
|
|
80
|
-
type: string;
|
|
81
|
-
* #property
|
|
82
|
-
*/
|
|
80
|
+
type: string;
|
|
83
81
|
defaultValue: number;
|
|
84
82
|
description: string;
|
|
85
83
|
};
|
|
@@ -94,6 +92,11 @@ export default function SharedModelF(pluginManager: PluginManager, configSchema:
|
|
|
94
92
|
defaultValue: string;
|
|
95
93
|
contextVariable: string[];
|
|
96
94
|
};
|
|
95
|
+
jexlFilters: {
|
|
96
|
+
type: string;
|
|
97
|
+
description: string;
|
|
98
|
+
defaultValue: never[];
|
|
99
|
+
};
|
|
97
100
|
}, import("@jbrowse/core/configuration/configurationSchema").ConfigurationSchemaOptions<undefined, "displayId">>;
|
|
98
101
|
} & {
|
|
99
102
|
selectedRendering: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").ISimpleType<string>, [undefined]>;
|
|
@@ -238,6 +241,7 @@ export default function SharedModelF(pluginManager: PluginManager, configSchema:
|
|
|
238
241
|
addBlock(key: string, block: import("@jbrowse/core/util/blockTypes").BaseBlock): void;
|
|
239
242
|
deleteBlock(key: string): void;
|
|
240
243
|
selectFeature(feature: import("@jbrowse/core/util").Feature): void;
|
|
244
|
+
navToFeature(feature: import("@jbrowse/core/util").Feature): void;
|
|
241
245
|
clearFeatureSelection(): void;
|
|
242
246
|
setFeatureIdUnderMouse(feature?: string | undefined): void;
|
|
243
247
|
setContextMenuFeature(feature?: import("@jbrowse/core/util").Feature | undefined): void;
|
|
@@ -91,6 +91,11 @@ export default function stateModelF(pluginManager: PluginManager, configSchema:
|
|
|
91
91
|
defaultValue: string;
|
|
92
92
|
contextVariable: string[];
|
|
93
93
|
};
|
|
94
|
+
jexlFilters: {
|
|
95
|
+
type: string;
|
|
96
|
+
description: string;
|
|
97
|
+
defaultValue: never[];
|
|
98
|
+
};
|
|
94
99
|
}, import("@jbrowse/core/configuration/configurationSchema").ConfigurationSchemaOptions<undefined, "displayId">>;
|
|
95
100
|
} & {
|
|
96
101
|
selectedRendering: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").ISimpleType<string>, [undefined]>;
|
|
@@ -229,6 +234,7 @@ export default function stateModelF(pluginManager: PluginManager, configSchema:
|
|
|
229
234
|
addBlock(key: string, block: import("@jbrowse/core/util/blockTypes").BaseBlock): void;
|
|
230
235
|
deleteBlock(key: string): void;
|
|
231
236
|
selectFeature(feature: import("@jbrowse/core/util").Feature): void;
|
|
237
|
+
navToFeature(feature: import("@jbrowse/core/util").Feature): void;
|
|
232
238
|
clearFeatureSelection(): void;
|
|
233
239
|
setFeatureIdUnderMouse(feature?: string | undefined): void;
|
|
234
240
|
setContextMenuFeature(feature?: import("@jbrowse/core/util").Feature | undefined): void;
|
|
@@ -96,6 +96,11 @@ export default function stateModelF(pluginManager: PluginManager, configSchema:
|
|
|
96
96
|
defaultValue: string;
|
|
97
97
|
contextVariable: string[];
|
|
98
98
|
};
|
|
99
|
+
jexlFilters: {
|
|
100
|
+
type: string;
|
|
101
|
+
description: string;
|
|
102
|
+
defaultValue: never[];
|
|
103
|
+
};
|
|
99
104
|
}, import("@jbrowse/core/configuration/configurationSchema").ConfigurationSchemaOptions<undefined, "displayId">>;
|
|
100
105
|
} & {
|
|
101
106
|
selectedRendering: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").ISimpleType<string>, [undefined]>;
|
|
@@ -234,6 +239,7 @@ export default function stateModelF(pluginManager: PluginManager, configSchema:
|
|
|
234
239
|
addBlock(key: string, block: import("@jbrowse/core/util/blockTypes").BaseBlock): void;
|
|
235
240
|
deleteBlock(key: string): void;
|
|
236
241
|
selectFeature(feature: import("@jbrowse/core/util").Feature): void;
|
|
242
|
+
navToFeature(feature: import("@jbrowse/core/util").Feature): void;
|
|
237
243
|
clearFeatureSelection(): void;
|
|
238
244
|
setFeatureIdUnderMouse(feature?: string | undefined): void;
|
|
239
245
|
setContextMenuFeature(feature?: import("@jbrowse/core/util").Feature | undefined): void;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@jbrowse/plugin-gccontent",
|
|
3
|
-
"version": "2.
|
|
3
|
+
"version": "2.12.0",
|
|
4
4
|
"description": "JBrowse 2 gccontent concepts",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"jbrowse",
|
|
@@ -53,5 +53,5 @@
|
|
|
53
53
|
"distModule": "esm/index.js",
|
|
54
54
|
"srcModule": "src/index.ts",
|
|
55
55
|
"module": "esm/index.js",
|
|
56
|
-
"gitHead": "
|
|
56
|
+
"gitHead": "935f2602d29abc737bb1f493a922b6218d023ae2"
|
|
57
57
|
}
|