@jbrowse/plugin-linear-genome-view 1.6.4 → 1.6.7
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/BaseLinearDisplay/components/LinearBlocks.d.ts +0 -5
- package/dist/BaseLinearDisplay/models/baseLinearDisplayConfigSchema.d.ts +1 -1
- package/dist/LinearBareDisplay/configSchema.d.ts +1 -1
- package/dist/LinearBasicDisplay/configSchema.d.ts +1 -1
- package/dist/LinearGenomeView/components/ScaleBar.d.ts +2 -0
- package/dist/LinearGenomeView/components/TrackContainer.d.ts +1 -1
- package/dist/LinearGenomeView/index.d.ts +1 -0
- package/dist/index.d.ts +1 -1
- package/dist/plugin-linear-genome-view.cjs.development.js +147 -249
- package/dist/plugin-linear-genome-view.cjs.development.js.map +1 -1
- package/dist/plugin-linear-genome-view.cjs.production.min.js +1 -1
- package/dist/plugin-linear-genome-view.cjs.production.min.js.map +1 -1
- package/dist/plugin-linear-genome-view.esm.js +149 -251
- package/dist/plugin-linear-genome-view.esm.js.map +1 -1
- package/package.json +2 -2
- package/src/BaseLinearDisplay/components/BaseLinearDisplay.tsx +2 -4
- package/src/BaseLinearDisplay/components/LinearBlocks.tsx +4 -8
- package/src/BaseLinearDisplay/models/BaseLinearDisplayModel.tsx +11 -3
- package/src/LinearBasicDisplay/model.ts +1 -1
- package/src/LinearGenomeView/components/HelpDialog.tsx +14 -1
- package/src/LinearGenomeView/components/LinearGenomeViewSvg.tsx +1 -13
- package/src/LinearGenomeView/components/OverviewScaleBar.tsx +7 -3
- package/src/LinearGenomeView/components/TrackContainer.tsx +35 -38
- package/src/LinearGenomeView/components/TrackLabel.tsx +5 -5
- package/src/LinearGenomeView/components/TracksContainer.tsx +0 -1
- package/src/LinearGenomeView/components/__snapshots__/LinearGenomeView.test.js.snap +23 -26
- package/src/LinearGenomeView/index.test.ts +44 -42
- package/src/LinearGenomeView/index.tsx +167 -242
- package/src/LinearGenomeView/volvoxDisplayedRegions.json +16 -0
- package/dist/LinearGenomeView/components/ReturnToImportFormDialog.d.ts +0 -9
- package/src/LinearGenomeView/components/ReturnToImportFormDialog.tsx +0 -83
|
@@ -7,11 +7,6 @@ declare const RenderedBlocks: ({ model }: {
|
|
|
7
7
|
declare function LinearBlocks({ model }: {
|
|
8
8
|
model: BaseLinearDisplayModel;
|
|
9
9
|
}): JSX.Element;
|
|
10
|
-
declare namespace LinearBlocks {
|
|
11
|
-
var propTypes: {
|
|
12
|
-
model: import("prop-types").Validator<any>;
|
|
13
|
-
};
|
|
14
|
-
}
|
|
15
10
|
export { RenderedBlocks, useStyles };
|
|
16
11
|
declare const _default: typeof LinearBlocks;
|
|
17
12
|
export default _default;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
export declare const baseLinearDisplayConfigSchema: import("@jbrowse/core/configuration
|
|
1
|
+
export declare const baseLinearDisplayConfigSchema: import("@jbrowse/core/configuration").AnyConfigurationSchemaType;
|
|
@@ -1,2 +1,2 @@
|
|
|
1
1
|
import PluginManager from '@jbrowse/core/PluginManager';
|
|
2
|
-
export declare function configSchemaFactory(pluginManager: PluginManager): import("@jbrowse/core/configuration
|
|
2
|
+
export declare function configSchemaFactory(pluginManager: PluginManager): import("@jbrowse/core/configuration").AnyConfigurationSchemaType;
|
|
@@ -1,2 +1,2 @@
|
|
|
1
1
|
import PluginManager from '@jbrowse/core/PluginManager';
|
|
2
|
-
export default function configSchemaFactory(pluginManager: PluginManager): import("@jbrowse/core/configuration
|
|
2
|
+
export default function configSchemaFactory(pluginManager: PluginManager): import("@jbrowse/core/configuration").AnyConfigurationSchemaType;
|
|
@@ -171,6 +171,7 @@ declare const _default: React.ForwardRefExoticComponent<{
|
|
|
171
171
|
readonly cytobandOffset: number;
|
|
172
172
|
} & {
|
|
173
173
|
menuItems(): import("@jbrowse/core/ui").MenuItem[];
|
|
174
|
+
} & {
|
|
174
175
|
readonly staticBlocks: import("@jbrowse/core/util/blockTypes").BlockSet;
|
|
175
176
|
readonly dynamicBlocks: import("@jbrowse/core/util/blockTypes").BlockSet;
|
|
176
177
|
readonly roundedDynamicBlocks: {
|
|
@@ -367,6 +368,7 @@ declare const _default: React.ForwardRefExoticComponent<{
|
|
|
367
368
|
readonly cytobandOffset: number;
|
|
368
369
|
} & {
|
|
369
370
|
menuItems(): import("@jbrowse/core/ui").MenuItem[];
|
|
371
|
+
} & {
|
|
370
372
|
readonly staticBlocks: import("@jbrowse/core/util/blockTypes").BlockSet;
|
|
371
373
|
readonly dynamicBlocks: import("@jbrowse/core/util/blockTypes").BlockSet;
|
|
372
374
|
readonly roundedDynamicBlocks: {
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
/// <reference types="react" />
|
|
2
2
|
import { BaseTrackModel } from '@jbrowse/core/pluggableElementTypes/models';
|
|
3
3
|
import { LinearGenomeViewModel } from '..';
|
|
4
|
-
declare function TrackContainer(
|
|
4
|
+
declare function TrackContainer({ model, track, }: {
|
|
5
5
|
model: LinearGenomeViewModel;
|
|
6
6
|
track: BaseTrackModel;
|
|
7
7
|
}): JSX.Element;
|
|
@@ -259,6 +259,7 @@ export declare function stateModelFactory(pluginManager: PluginManager): import(
|
|
|
259
259
|
readonly cytobandOffset: number;
|
|
260
260
|
} & {
|
|
261
261
|
menuItems(): MenuItem[];
|
|
262
|
+
} & {
|
|
262
263
|
readonly staticBlocks: BlockSet;
|
|
263
264
|
readonly dynamicBlocks: BlockSet;
|
|
264
265
|
readonly roundedDynamicBlocks: {
|
package/dist/index.d.ts
CHANGED
|
@@ -555,7 +555,7 @@ export default class LinearGenomeViewPlugin extends Plugin {
|
|
|
555
555
|
userBpPerPxLimit: number | undefined;
|
|
556
556
|
userByteSizeLimit: number | undefined;
|
|
557
557
|
}>;
|
|
558
|
-
baseLinearDisplayConfigSchema: import("@jbrowse/core/configuration
|
|
558
|
+
baseLinearDisplayConfigSchema: import("@jbrowse/core/configuration").AnyConfigurationSchemaType;
|
|
559
559
|
};
|
|
560
560
|
install(pluginManager: PluginManager): void;
|
|
561
561
|
configure(pluginManager: PluginManager): void;
|