@jbrowse/plugin-lollipop 2.11.0 → 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/LinearLollipopDisplay/configSchema.d.ts +5 -0
- package/dist/LinearLollipopDisplay/model.d.ts +11 -0
- package/dist/LollipopRenderer/LollipopRenderer.d.ts +1 -1
- package/dist/LollipopRenderer/LollipopRenderer.js +2 -2
- package/dist/index.d.ts +1 -1
- package/dist/index.js +2 -2
- package/esm/LinearLollipopDisplay/configSchema.d.ts +5 -0
- package/esm/LinearLollipopDisplay/model.d.ts +11 -0
- package/esm/LollipopRenderer/LollipopRenderer.d.ts +1 -1
- package/esm/LollipopRenderer/LollipopRenderer.js +1 -1
- package/esm/index.d.ts +1 -1
- package/esm/index.js +1 -1
- 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>>;
|
|
@@ -92,6 +92,11 @@ export declare function stateModelFactory(configSchema: AnyConfigurationSchemaTy
|
|
|
92
92
|
defaultValue: string;
|
|
93
93
|
contextVariable: string[];
|
|
94
94
|
};
|
|
95
|
+
jexlFilters: {
|
|
96
|
+
type: string;
|
|
97
|
+
description: string;
|
|
98
|
+
defaultValue: never[];
|
|
99
|
+
};
|
|
95
100
|
}, import("@jbrowse/core/configuration/configurationSchema").ConfigurationSchemaOptions<undefined, "displayId">>;
|
|
96
101
|
} & {
|
|
97
102
|
/**
|
|
@@ -220,6 +225,7 @@ export declare function stateModelFactory(configSchema: AnyConfigurationSchemaTy
|
|
|
220
225
|
addBlock(key: string, block: import("@jbrowse/core/util/blockTypes").BaseBlock): void;
|
|
221
226
|
deleteBlock(key: string): void;
|
|
222
227
|
selectFeature(feature: import("@jbrowse/core/util").Feature): void;
|
|
228
|
+
navToFeature(feature: import("@jbrowse/core/util").Feature): void;
|
|
223
229
|
clearFeatureSelection(): void;
|
|
224
230
|
setFeatureIdUnderMouse(feature?: string | undefined): void;
|
|
225
231
|
setContextMenuFeature(feature?: import("@jbrowse/core/util").Feature | undefined): void;
|
|
@@ -338,6 +344,11 @@ export declare function stateModelFactory(configSchema: AnyConfigurationSchemaTy
|
|
|
338
344
|
defaultValue: string;
|
|
339
345
|
contextVariable: string[];
|
|
340
346
|
};
|
|
347
|
+
jexlFilters: {
|
|
348
|
+
type: string;
|
|
349
|
+
description: string;
|
|
350
|
+
defaultValue: never[];
|
|
351
|
+
};
|
|
341
352
|
}, import("@jbrowse/core/configuration/configurationSchema").ConfigurationSchemaOptions<undefined, "displayId">>;
|
|
342
353
|
}>> & import("mobx-state-tree/dist/internal").NonEmptyObject & import("mobx-state-tree")._NotCustomized, {
|
|
343
354
|
type: string;
|
|
@@ -40,7 +40,7 @@ class FloatingLayoutSession extends BoxRendererType_1.LayoutSession {
|
|
|
40
40
|
return false; // layout.left layout.width === this.width
|
|
41
41
|
}
|
|
42
42
|
}
|
|
43
|
-
class
|
|
43
|
+
class LollipopRenderer extends BoxRendererType_1.default {
|
|
44
44
|
createSession(args) {
|
|
45
45
|
return new FloatingLayoutSession(args);
|
|
46
46
|
}
|
|
@@ -48,4 +48,4 @@ class default_1 extends BoxRendererType_1.default {
|
|
|
48
48
|
return new Layout_1.PrecomputedFloatingLayout(json);
|
|
49
49
|
}
|
|
50
50
|
}
|
|
51
|
-
exports.default =
|
|
51
|
+
exports.default = LollipopRenderer;
|
package/dist/index.d.ts
CHANGED
package/dist/index.js
CHANGED
|
@@ -6,7 +6,7 @@ Object.defineProperty(exports, "__esModule", { value: true });
|
|
|
6
6
|
const Plugin_1 = __importDefault(require("@jbrowse/core/Plugin"));
|
|
7
7
|
const LinearLollipopDisplay_1 = __importDefault(require("./LinearLollipopDisplay"));
|
|
8
8
|
const LollipopRenderer_1 = __importDefault(require("./LollipopRenderer"));
|
|
9
|
-
class
|
|
9
|
+
class LollipopPlugin extends Plugin_1.default {
|
|
10
10
|
constructor() {
|
|
11
11
|
super(...arguments);
|
|
12
12
|
this.name = 'LollipopPlugin';
|
|
@@ -16,4 +16,4 @@ class default_1 extends Plugin_1.default {
|
|
|
16
16
|
(0, LinearLollipopDisplay_1.default)(pluginManager);
|
|
17
17
|
}
|
|
18
18
|
}
|
|
19
|
-
exports.default =
|
|
19
|
+
exports.default = LollipopPlugin;
|
|
@@ -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>>;
|
|
@@ -92,6 +92,11 @@ export declare function stateModelFactory(configSchema: AnyConfigurationSchemaTy
|
|
|
92
92
|
defaultValue: string;
|
|
93
93
|
contextVariable: string[];
|
|
94
94
|
};
|
|
95
|
+
jexlFilters: {
|
|
96
|
+
type: string;
|
|
97
|
+
description: string;
|
|
98
|
+
defaultValue: never[];
|
|
99
|
+
};
|
|
95
100
|
}, import("@jbrowse/core/configuration/configurationSchema").ConfigurationSchemaOptions<undefined, "displayId">>;
|
|
96
101
|
} & {
|
|
97
102
|
/**
|
|
@@ -220,6 +225,7 @@ export declare function stateModelFactory(configSchema: AnyConfigurationSchemaTy
|
|
|
220
225
|
addBlock(key: string, block: import("@jbrowse/core/util/blockTypes").BaseBlock): void;
|
|
221
226
|
deleteBlock(key: string): void;
|
|
222
227
|
selectFeature(feature: import("@jbrowse/core/util").Feature): void;
|
|
228
|
+
navToFeature(feature: import("@jbrowse/core/util").Feature): void;
|
|
223
229
|
clearFeatureSelection(): void;
|
|
224
230
|
setFeatureIdUnderMouse(feature?: string | undefined): void;
|
|
225
231
|
setContextMenuFeature(feature?: import("@jbrowse/core/util").Feature | undefined): void;
|
|
@@ -338,6 +344,11 @@ export declare function stateModelFactory(configSchema: AnyConfigurationSchemaTy
|
|
|
338
344
|
defaultValue: string;
|
|
339
345
|
contextVariable: string[];
|
|
340
346
|
};
|
|
347
|
+
jexlFilters: {
|
|
348
|
+
type: string;
|
|
349
|
+
description: string;
|
|
350
|
+
defaultValue: never[];
|
|
351
|
+
};
|
|
341
352
|
}, import("@jbrowse/core/configuration/configurationSchema").ConfigurationSchemaOptions<undefined, "displayId">>;
|
|
342
353
|
}>> & import("mobx-state-tree/dist/internal").NonEmptyObject & import("mobx-state-tree")._NotCustomized, {
|
|
343
354
|
type: string;
|
|
@@ -12,7 +12,7 @@ class FloatingLayoutSession extends LayoutSession {
|
|
|
12
12
|
return false; // layout.left layout.width === this.width
|
|
13
13
|
}
|
|
14
14
|
}
|
|
15
|
-
export default class extends BoxRendererType {
|
|
15
|
+
export default class LollipopRenderer extends BoxRendererType {
|
|
16
16
|
createSession(args) {
|
|
17
17
|
return new FloatingLayoutSession(args);
|
|
18
18
|
}
|
package/esm/index.d.ts
CHANGED
package/esm/index.js
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import Plugin from '@jbrowse/core/Plugin';
|
|
2
2
|
import LinearLollipopDisplayF from './LinearLollipopDisplay';
|
|
3
3
|
import LollipopRendererF from './LollipopRenderer';
|
|
4
|
-
export default class extends Plugin {
|
|
4
|
+
export default class LollipopPlugin extends Plugin {
|
|
5
5
|
constructor() {
|
|
6
6
|
super(...arguments);
|
|
7
7
|
this.name = 'LollipopPlugin';
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@jbrowse/plugin-lollipop",
|
|
3
|
-
"version": "2.11.
|
|
3
|
+
"version": "2.11.2",
|
|
4
4
|
"description": "JBrowse 2 plugin for lollipops",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"jbrowse",
|
|
@@ -51,5 +51,5 @@
|
|
|
51
51
|
"publishConfig": {
|
|
52
52
|
"access": "public"
|
|
53
53
|
},
|
|
54
|
-
"gitHead": "
|
|
54
|
+
"gitHead": "511048cb6965f0bf624c96de244e7fd47fce17d6"
|
|
55
55
|
}
|