@jbrowse/plugin-linear-genome-view 1.6.3 → 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 (30) hide show
  1. package/dist/BaseLinearDisplay/components/LinearBlocks.d.ts +0 -5
  2. package/dist/BaseLinearDisplay/models/baseLinearDisplayConfigSchema.d.ts +1 -1
  3. package/dist/LinearBareDisplay/configSchema.d.ts +1 -1
  4. package/dist/LinearBasicDisplay/configSchema.d.ts +1 -1
  5. package/dist/LinearGenomeView/components/ScaleBar.d.ts +2 -0
  6. package/dist/LinearGenomeView/components/TrackContainer.d.ts +3 -2
  7. package/dist/LinearGenomeView/index.d.ts +1 -0
  8. package/dist/index.d.ts +1 -1
  9. package/dist/plugin-linear-genome-view.cjs.development.js +143 -250
  10. package/dist/plugin-linear-genome-view.cjs.development.js.map +1 -1
  11. package/dist/plugin-linear-genome-view.cjs.production.min.js +1 -1
  12. package/dist/plugin-linear-genome-view.cjs.production.min.js.map +1 -1
  13. package/dist/plugin-linear-genome-view.esm.js +145 -252
  14. package/dist/plugin-linear-genome-view.esm.js.map +1 -1
  15. package/package.json +2 -2
  16. package/src/BaseLinearDisplay/components/BaseLinearDisplay.tsx +2 -4
  17. package/src/BaseLinearDisplay/components/LinearBlocks.tsx +4 -8
  18. package/src/BaseLinearDisplay/models/BaseLinearDisplayModel.tsx +11 -3
  19. package/src/LinearBasicDisplay/model.ts +1 -1
  20. package/src/LinearGenomeView/components/HelpDialog.tsx +14 -1
  21. package/src/LinearGenomeView/components/LinearGenomeViewSvg.tsx +1 -13
  22. package/src/LinearGenomeView/components/OverviewScaleBar.tsx +7 -3
  23. package/src/LinearGenomeView/components/TrackContainer.tsx +24 -39
  24. package/src/LinearGenomeView/components/TrackLabel.tsx +5 -5
  25. package/src/LinearGenomeView/components/__snapshots__/LinearGenomeView.test.js.snap +194 -191
  26. package/src/LinearGenomeView/index.test.ts +44 -42
  27. package/src/LinearGenomeView/index.tsx +176 -245
  28. package/src/LinearGenomeView/volvoxDisplayedRegions.json +16 -0
  29. package/dist/LinearGenomeView/components/ReturnToImportFormDialog.d.ts +0 -9
  30. 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/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;
@@ -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,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;
@@ -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/configurationSchema").AnyConfigurationSchemaType;
558
+ baseLinearDisplayConfigSchema: import("@jbrowse/core/configuration").AnyConfigurationSchemaType;
559
559
  };
560
560
  install(pluginManager: PluginManager): void;
561
561
  configure(pluginManager: PluginManager): void;