@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.
Files changed (25) hide show
  1. package/dist/BaseLinearDisplay/models/baseLinearDisplayConfigSchema.d.ts +1 -1
  2. package/dist/LinearBareDisplay/configSchema.d.ts +1 -1
  3. package/dist/LinearBasicDisplay/configSchema.d.ts +1 -1
  4. package/dist/LinearGenomeView/components/TrackContainer.d.ts +3 -2
  5. package/dist/index.d.ts +1 -1
  6. package/dist/plugin-linear-genome-view.cjs.development.js +118 -228
  7. package/dist/plugin-linear-genome-view.cjs.development.js.map +1 -1
  8. package/dist/plugin-linear-genome-view.cjs.production.min.js +1 -1
  9. package/dist/plugin-linear-genome-view.cjs.production.min.js.map +1 -1
  10. package/dist/plugin-linear-genome-view.esm.js +120 -230
  11. package/dist/plugin-linear-genome-view.esm.js.map +1 -1
  12. package/package.json +2 -2
  13. package/src/BaseLinearDisplay/components/BaseLinearDisplay.tsx +1 -1
  14. package/src/BaseLinearDisplay/models/BaseLinearDisplayModel.tsx +6 -1
  15. package/src/LinearBasicDisplay/model.ts +1 -1
  16. package/src/LinearGenomeView/components/HelpDialog.tsx +14 -1
  17. package/src/LinearGenomeView/components/LinearGenomeViewSvg.tsx +1 -13
  18. package/src/LinearGenomeView/components/OverviewScaleBar.tsx +7 -3
  19. package/src/LinearGenomeView/components/TrackContainer.tsx +24 -39
  20. package/src/LinearGenomeView/components/__snapshots__/LinearGenomeView.test.js.snap +194 -197
  21. package/src/LinearGenomeView/index.test.ts +44 -42
  22. package/src/LinearGenomeView/index.tsx +55 -131
  23. package/src/LinearGenomeView/volvoxDisplayedRegions.json +16 -0
  24. package/dist/LinearGenomeView/components/ReturnToImportFormDialog.d.ts +0 -9
  25. package/src/LinearGenomeView/components/ReturnToImportFormDialog.tsx +0 -83
@@ -1 +1 @@
1
- export declare const baseLinearDisplayConfigSchema: import("@jbrowse/core/configuration/configurationSchema").AnyConfigurationSchemaType;
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/configurationSchema").AnyConfigurationSchemaType;
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/configurationSchema").AnyConfigurationSchemaType;
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 function TrackContainer(props: {
5
- model: LinearGenomeViewModel;
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/configurationSchema").AnyConfigurationSchemaType;
558
+ baseLinearDisplayConfigSchema: import("@jbrowse/core/configuration").AnyConfigurationSchemaType;
559
559
  };
560
560
  install(pluginManager: PluginManager): void;
561
561
  configure(pluginManager: PluginManager): void;