@jbrowse/plugin-arc 2.11.1 → 2.11.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.
- package/dist/LinearArcDisplay/configSchema.d.ts +5 -0
- package/dist/LinearArcDisplay/model.d.ts +24 -21
- package/dist/LinearPairedArcDisplay/configSchema.d.ts +5 -0
- package/esm/LinearArcDisplay/configSchema.d.ts +5 -0
- package/esm/LinearArcDisplay/model.d.ts +24 -21
- package/esm/LinearPairedArcDisplay/configSchema.d.ts +5 -0
- package/package.json +2 -2
|
@@ -29,4 +29,9 @@ export declare function configSchemaFactory(pluginManager: PluginManager): impor
|
|
|
29
29
|
defaultValue: string;
|
|
30
30
|
contextVariable: string[];
|
|
31
31
|
};
|
|
32
|
+
jexlFilters: {
|
|
33
|
+
type: string;
|
|
34
|
+
description: string;
|
|
35
|
+
defaultValue: never[];
|
|
36
|
+
};
|
|
32
37
|
}, import("@jbrowse/core/configuration/configurationSchema").ConfigurationSchemaOptions<undefined, "displayId">>, undefined>>;
|
|
@@ -77,24 +77,21 @@ export declare function stateModelFactory(configSchema: AnyConfigurationSchemaTy
|
|
|
77
77
|
maxFeatureScreenDensity: {
|
|
78
78
|
type: string;
|
|
79
79
|
description: string;
|
|
80
|
-
defaultValue: number;
|
|
81
|
-
|
|
82
|
-
*/
|
|
83
|
-
}; /**
|
|
84
|
-
* #property
|
|
85
|
-
*/
|
|
80
|
+
defaultValue: number;
|
|
81
|
+
};
|
|
86
82
|
fetchSizeLimit: {
|
|
87
83
|
type: string;
|
|
88
84
|
defaultValue: number;
|
|
89
|
-
|
|
85
|
+
/**
|
|
90
86
|
* #getter
|
|
91
87
|
*/
|
|
88
|
+
description: string;
|
|
92
89
|
};
|
|
93
90
|
height: {
|
|
94
|
-
type: string;
|
|
95
|
-
defaultValue: number; /**
|
|
91
|
+
type: string; /**
|
|
96
92
|
* #getter
|
|
97
93
|
*/
|
|
94
|
+
defaultValue: number;
|
|
98
95
|
description: string;
|
|
99
96
|
};
|
|
100
97
|
mouseover: {
|
|
@@ -103,6 +100,11 @@ export declare function stateModelFactory(configSchema: AnyConfigurationSchemaTy
|
|
|
103
100
|
defaultValue: string;
|
|
104
101
|
contextVariable: string[];
|
|
105
102
|
};
|
|
103
|
+
jexlFilters: {
|
|
104
|
+
type: string;
|
|
105
|
+
description: string;
|
|
106
|
+
defaultValue: never[];
|
|
107
|
+
};
|
|
106
108
|
}, import("@jbrowse/core/configuration/configurationSchema").ConfigurationSchemaOptions<undefined, "displayId">>;
|
|
107
109
|
} & {
|
|
108
110
|
/**
|
|
@@ -210,9 +212,7 @@ export declare function stateModelFactory(configSchema: AnyConfigurationSchemaTy
|
|
|
210
212
|
regionCannotBeRendered(_region: import("@jbrowse/core/util").Region): import("react").JSX.Element | null;
|
|
211
213
|
} & {
|
|
212
214
|
featureIdUnderMouse: string | undefined;
|
|
213
|
-
contextMenuFeature: import("@jbrowse/core/util").Feature | undefined;
|
|
214
|
-
* #method
|
|
215
|
-
*/
|
|
215
|
+
contextMenuFeature: import("@jbrowse/core/util").Feature | undefined;
|
|
216
216
|
} & {
|
|
217
217
|
readonly blockType: "dynamicBlocks" | "staticBlocks";
|
|
218
218
|
readonly blockDefinitions: import("@jbrowse/core/util/blockTypes").BlockSet;
|
|
@@ -231,6 +231,7 @@ export declare function stateModelFactory(configSchema: AnyConfigurationSchemaTy
|
|
|
231
231
|
addBlock(key: string, block: import("@jbrowse/core/util/blockTypes").BaseBlock): void;
|
|
232
232
|
deleteBlock(key: string): void;
|
|
233
233
|
selectFeature(feature: import("@jbrowse/core/util").Feature): void;
|
|
234
|
+
navToFeature(feature: import("@jbrowse/core/util").Feature): void;
|
|
234
235
|
clearFeatureSelection(): void;
|
|
235
236
|
setFeatureIdUnderMouse(feature?: string | undefined): void;
|
|
236
237
|
setContextMenuFeature(feature?: import("@jbrowse/core/util").Feature | undefined): void;
|
|
@@ -367,24 +368,21 @@ export declare function stateModelFactory(configSchema: AnyConfigurationSchemaTy
|
|
|
367
368
|
maxFeatureScreenDensity: {
|
|
368
369
|
type: string;
|
|
369
370
|
description: string;
|
|
370
|
-
defaultValue: number;
|
|
371
|
-
|
|
372
|
-
*/
|
|
373
|
-
}; /**
|
|
374
|
-
* #property
|
|
375
|
-
*/
|
|
371
|
+
defaultValue: number;
|
|
372
|
+
};
|
|
376
373
|
fetchSizeLimit: {
|
|
377
374
|
type: string;
|
|
378
375
|
defaultValue: number;
|
|
379
|
-
|
|
376
|
+
/**
|
|
380
377
|
* #getter
|
|
381
378
|
*/
|
|
379
|
+
description: string;
|
|
382
380
|
};
|
|
383
381
|
height: {
|
|
384
|
-
type: string;
|
|
385
|
-
defaultValue: number; /**
|
|
382
|
+
type: string; /**
|
|
386
383
|
* #getter
|
|
387
384
|
*/
|
|
385
|
+
defaultValue: number;
|
|
388
386
|
description: string;
|
|
389
387
|
};
|
|
390
388
|
mouseover: {
|
|
@@ -393,6 +391,11 @@ export declare function stateModelFactory(configSchema: AnyConfigurationSchemaTy
|
|
|
393
391
|
defaultValue: string;
|
|
394
392
|
contextVariable: string[];
|
|
395
393
|
};
|
|
394
|
+
jexlFilters: {
|
|
395
|
+
type: string;
|
|
396
|
+
description: string;
|
|
397
|
+
defaultValue: never[];
|
|
398
|
+
};
|
|
396
399
|
}, import("@jbrowse/core/configuration/configurationSchema").ConfigurationSchemaOptions<undefined, "displayId">>;
|
|
397
400
|
}>> & import("mobx-state-tree/dist/internal").NonEmptyObject & import("mobx-state-tree")._NotCustomized, {
|
|
398
401
|
id: string;
|
|
@@ -33,4 +33,9 @@ export declare function configSchemaFactory(): import("@jbrowse/core/configurati
|
|
|
33
33
|
defaultValue: string;
|
|
34
34
|
contextVariable: string[];
|
|
35
35
|
};
|
|
36
|
+
jexlFilters: {
|
|
37
|
+
type: string;
|
|
38
|
+
description: string;
|
|
39
|
+
defaultValue: never[];
|
|
40
|
+
};
|
|
36
41
|
}, import("@jbrowse/core/configuration/configurationSchema").ConfigurationSchemaOptions<undefined, "displayId">>, undefined>>;
|
|
@@ -29,4 +29,9 @@ export declare function configSchemaFactory(pluginManager: PluginManager): impor
|
|
|
29
29
|
defaultValue: string;
|
|
30
30
|
contextVariable: string[];
|
|
31
31
|
};
|
|
32
|
+
jexlFilters: {
|
|
33
|
+
type: string;
|
|
34
|
+
description: string;
|
|
35
|
+
defaultValue: never[];
|
|
36
|
+
};
|
|
32
37
|
}, import("@jbrowse/core/configuration/configurationSchema").ConfigurationSchemaOptions<undefined, "displayId">>, undefined>>;
|
|
@@ -77,24 +77,21 @@ export declare function stateModelFactory(configSchema: AnyConfigurationSchemaTy
|
|
|
77
77
|
maxFeatureScreenDensity: {
|
|
78
78
|
type: string;
|
|
79
79
|
description: string;
|
|
80
|
-
defaultValue: number;
|
|
81
|
-
|
|
82
|
-
*/
|
|
83
|
-
}; /**
|
|
84
|
-
* #property
|
|
85
|
-
*/
|
|
80
|
+
defaultValue: number;
|
|
81
|
+
};
|
|
86
82
|
fetchSizeLimit: {
|
|
87
83
|
type: string;
|
|
88
84
|
defaultValue: number;
|
|
89
|
-
|
|
85
|
+
/**
|
|
90
86
|
* #getter
|
|
91
87
|
*/
|
|
88
|
+
description: string;
|
|
92
89
|
};
|
|
93
90
|
height: {
|
|
94
|
-
type: string;
|
|
95
|
-
defaultValue: number; /**
|
|
91
|
+
type: string; /**
|
|
96
92
|
* #getter
|
|
97
93
|
*/
|
|
94
|
+
defaultValue: number;
|
|
98
95
|
description: string;
|
|
99
96
|
};
|
|
100
97
|
mouseover: {
|
|
@@ -103,6 +100,11 @@ export declare function stateModelFactory(configSchema: AnyConfigurationSchemaTy
|
|
|
103
100
|
defaultValue: string;
|
|
104
101
|
contextVariable: string[];
|
|
105
102
|
};
|
|
103
|
+
jexlFilters: {
|
|
104
|
+
type: string;
|
|
105
|
+
description: string;
|
|
106
|
+
defaultValue: never[];
|
|
107
|
+
};
|
|
106
108
|
}, import("@jbrowse/core/configuration/configurationSchema").ConfigurationSchemaOptions<undefined, "displayId">>;
|
|
107
109
|
} & {
|
|
108
110
|
/**
|
|
@@ -210,9 +212,7 @@ export declare function stateModelFactory(configSchema: AnyConfigurationSchemaTy
|
|
|
210
212
|
regionCannotBeRendered(_region: import("@jbrowse/core/util").Region): import("react").JSX.Element | null;
|
|
211
213
|
} & {
|
|
212
214
|
featureIdUnderMouse: string | undefined;
|
|
213
|
-
contextMenuFeature: import("@jbrowse/core/util").Feature | undefined;
|
|
214
|
-
* #method
|
|
215
|
-
*/
|
|
215
|
+
contextMenuFeature: import("@jbrowse/core/util").Feature | undefined;
|
|
216
216
|
} & {
|
|
217
217
|
readonly blockType: "dynamicBlocks" | "staticBlocks";
|
|
218
218
|
readonly blockDefinitions: import("@jbrowse/core/util/blockTypes").BlockSet;
|
|
@@ -231,6 +231,7 @@ export declare function stateModelFactory(configSchema: AnyConfigurationSchemaTy
|
|
|
231
231
|
addBlock(key: string, block: import("@jbrowse/core/util/blockTypes").BaseBlock): void;
|
|
232
232
|
deleteBlock(key: string): void;
|
|
233
233
|
selectFeature(feature: import("@jbrowse/core/util").Feature): void;
|
|
234
|
+
navToFeature(feature: import("@jbrowse/core/util").Feature): void;
|
|
234
235
|
clearFeatureSelection(): void;
|
|
235
236
|
setFeatureIdUnderMouse(feature?: string | undefined): void;
|
|
236
237
|
setContextMenuFeature(feature?: import("@jbrowse/core/util").Feature | undefined): void;
|
|
@@ -367,24 +368,21 @@ export declare function stateModelFactory(configSchema: AnyConfigurationSchemaTy
|
|
|
367
368
|
maxFeatureScreenDensity: {
|
|
368
369
|
type: string;
|
|
369
370
|
description: string;
|
|
370
|
-
defaultValue: number;
|
|
371
|
-
|
|
372
|
-
*/
|
|
373
|
-
}; /**
|
|
374
|
-
* #property
|
|
375
|
-
*/
|
|
371
|
+
defaultValue: number;
|
|
372
|
+
};
|
|
376
373
|
fetchSizeLimit: {
|
|
377
374
|
type: string;
|
|
378
375
|
defaultValue: number;
|
|
379
|
-
|
|
376
|
+
/**
|
|
380
377
|
* #getter
|
|
381
378
|
*/
|
|
379
|
+
description: string;
|
|
382
380
|
};
|
|
383
381
|
height: {
|
|
384
|
-
type: string;
|
|
385
|
-
defaultValue: number; /**
|
|
382
|
+
type: string; /**
|
|
386
383
|
* #getter
|
|
387
384
|
*/
|
|
385
|
+
defaultValue: number;
|
|
388
386
|
description: string;
|
|
389
387
|
};
|
|
390
388
|
mouseover: {
|
|
@@ -393,6 +391,11 @@ export declare function stateModelFactory(configSchema: AnyConfigurationSchemaTy
|
|
|
393
391
|
defaultValue: string;
|
|
394
392
|
contextVariable: string[];
|
|
395
393
|
};
|
|
394
|
+
jexlFilters: {
|
|
395
|
+
type: string;
|
|
396
|
+
description: string;
|
|
397
|
+
defaultValue: never[];
|
|
398
|
+
};
|
|
396
399
|
}, import("@jbrowse/core/configuration/configurationSchema").ConfigurationSchemaOptions<undefined, "displayId">>;
|
|
397
400
|
}>> & import("mobx-state-tree/dist/internal").NonEmptyObject & import("mobx-state-tree")._NotCustomized, {
|
|
398
401
|
id: string;
|
|
@@ -33,4 +33,9 @@ export declare function configSchemaFactory(): import("@jbrowse/core/configurati
|
|
|
33
33
|
defaultValue: string;
|
|
34
34
|
contextVariable: string[];
|
|
35
35
|
};
|
|
36
|
+
jexlFilters: {
|
|
37
|
+
type: string;
|
|
38
|
+
description: string;
|
|
39
|
+
defaultValue: never[];
|
|
40
|
+
};
|
|
36
41
|
}, import("@jbrowse/core/configuration/configurationSchema").ConfigurationSchemaOptions<undefined, "displayId">>, undefined>>;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@jbrowse/plugin-arc",
|
|
3
|
-
"version": "2.11.
|
|
3
|
+
"version": "2.11.2",
|
|
4
4
|
"description": "JBrowse 2 arc adapters, tracks, etc.",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"jbrowse",
|
|
@@ -53,5 +53,5 @@
|
|
|
53
53
|
"publishConfig": {
|
|
54
54
|
"access": "public"
|
|
55
55
|
},
|
|
56
|
-
"gitHead": "
|
|
56
|
+
"gitHead": "511048cb6965f0bf624c96de244e7fd47fce17d6"
|
|
57
57
|
}
|