@jbrowse/plugin-linear-genome-view 1.6.5 → 1.6.6
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/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/TrackContainer.d.ts +3 -2
- package/dist/index.d.ts +1 -1
- package/dist/plugin-linear-genome-view.cjs.development.js +118 -228
- 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 +120 -230
- package/dist/plugin-linear-genome-view.esm.js.map +1 -1
- package/package.json +2 -2
- package/src/BaseLinearDisplay/components/BaseLinearDisplay.tsx +1 -1
- package/src/BaseLinearDisplay/models/BaseLinearDisplayModel.tsx +6 -1
- 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 +24 -39
- package/src/LinearGenomeView/components/__snapshots__/LinearGenomeView.test.js.snap +194 -197
- package/src/LinearGenomeView/index.test.ts +44 -42
- package/src/LinearGenomeView/index.tsx +55 -131
- package/src/LinearGenomeView/volvoxDisplayedRegions.json +16 -0
- package/dist/LinearGenomeView/components/ReturnToImportFormDialog.d.ts +0 -9
- package/src/LinearGenomeView/components/ReturnToImportFormDialog.tsx +0 -83
|
@@ -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;
|
|
@@ -1,8 +1,9 @@
|
|
|
1
1
|
/// <reference types="react" />
|
|
2
2
|
import { BaseTrackModel } from '@jbrowse/core/pluggableElementTypes/models';
|
|
3
3
|
import { LinearGenomeViewModel } from '..';
|
|
4
|
-
declare
|
|
5
|
-
|
|
4
|
+
declare type LGV = LinearGenomeViewModel;
|
|
5
|
+
declare function TrackContainer({ model, track, }: {
|
|
6
|
+
model: LGV;
|
|
6
7
|
track: BaseTrackModel;
|
|
7
8
|
}): JSX.Element;
|
|
8
9
|
declare const _default: typeof TrackContainer;
|
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;
|