@jbrowse/plugin-linear-genome-view 1.7.0 → 1.7.1

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 (50) hide show
  1. package/dist/BaseLinearDisplay/components/BaseLinearDisplay.d.ts +13 -13
  2. package/dist/BaseLinearDisplay/components/Block.d.ts +15 -15
  3. package/dist/BaseLinearDisplay/components/LinearBlocks.d.ts +12 -12
  4. package/dist/BaseLinearDisplay/components/ServerSideRenderedBlockContent.d.ts +4 -4
  5. package/dist/BaseLinearDisplay/index.d.ts +5 -5
  6. package/dist/BaseLinearDisplay/models/BaseLinearDisplayModel.d.ts +227 -230
  7. package/dist/BaseLinearDisplay/models/baseLinearDisplayConfigSchema.d.ts +1 -1
  8. package/dist/BaseLinearDisplay/models/serverSideRenderedBlock.d.ts +96 -96
  9. package/dist/LinearBareDisplay/configSchema.d.ts +2 -2
  10. package/dist/LinearBareDisplay/index.d.ts +2 -2
  11. package/dist/LinearBareDisplay/model.d.ts +192 -192
  12. package/dist/LinearBasicDisplay/components/SetMaxHeight.d.ts +10 -10
  13. package/dist/LinearBasicDisplay/configSchema.d.ts +2 -2
  14. package/dist/LinearBasicDisplay/index.d.ts +2 -2
  15. package/dist/LinearBasicDisplay/model.d.ts +213 -213
  16. package/dist/LinearGenomeView/components/CenterLine.d.ts +14 -14
  17. package/dist/LinearGenomeView/components/ExportSvgDialog.d.ts +6 -6
  18. package/dist/LinearGenomeView/components/Header.d.ts +7 -7
  19. package/dist/LinearGenomeView/components/HelpDialog.d.ts +5 -5
  20. package/dist/LinearGenomeView/components/ImportForm.d.ts +7 -7
  21. package/dist/LinearGenomeView/components/LinearGenomeView.d.ts +7 -7
  22. package/dist/LinearGenomeView/components/LinearGenomeViewSvg.d.ts +4 -4
  23. package/dist/LinearGenomeView/components/MiniControls.d.ts +6 -6
  24. package/dist/LinearGenomeView/components/OverviewRubberBand.d.ts +22 -22
  25. package/dist/LinearGenomeView/components/OverviewScaleBar.d.ts +132 -124
  26. package/dist/LinearGenomeView/components/RefNameAutocomplete.d.ts +21 -21
  27. package/dist/LinearGenomeView/components/RubberBand.d.ts +9 -20
  28. package/dist/LinearGenomeView/components/Ruler.d.ts +27 -27
  29. package/dist/LinearGenomeView/components/ScaleBar.d.ts +401 -401
  30. package/dist/LinearGenomeView/components/SearchBox.d.ts +8 -8
  31. package/dist/LinearGenomeView/components/SearchResultsDialog.d.ts +8 -8
  32. package/dist/LinearGenomeView/components/SequenceDialog.d.ts +8 -8
  33. package/dist/LinearGenomeView/components/TrackContainer.d.ts +9 -9
  34. package/dist/LinearGenomeView/components/TrackLabel.d.ts +44 -44
  35. package/dist/LinearGenomeView/components/TracksContainer.d.ts +10 -10
  36. package/dist/LinearGenomeView/components/VerticalGuides.d.ts +9 -9
  37. package/dist/LinearGenomeView/components/ZoomControls.d.ts +7 -7
  38. package/dist/LinearGenomeView/components/util.d.ts +2 -2
  39. package/dist/LinearGenomeView/index.d.ts +292 -292
  40. package/dist/LinearGenomeView/util.d.ts +14 -14
  41. package/dist/index.d.ts +565 -565
  42. package/package.json +4 -3
  43. package/dist/LinearBareDisplay/index.test.d.ts +0 -1
  44. package/dist/LinearGenomeView/components/LinearGenomeView.test.d.ts +0 -1
  45. package/dist/plugin-linear-genome-view.cjs.development.js +0 -8121
  46. package/dist/plugin-linear-genome-view.cjs.development.js.map +0 -1
  47. package/dist/plugin-linear-genome-view.cjs.production.min.js +0 -2
  48. package/dist/plugin-linear-genome-view.cjs.production.min.js.map +0 -1
  49. package/dist/plugin-linear-genome-view.esm.js +0 -8105
  50. package/dist/plugin-linear-genome-view.esm.js.map +0 -1
@@ -1,8 +1,8 @@
1
- /// <reference types="react" />
2
- import { LinearGenomeViewModel } from '..';
3
- declare function SearchBox({ model, showHelp, }: {
4
- showHelp?: boolean;
5
- model: LinearGenomeViewModel;
6
- }): JSX.Element;
7
- declare const _default: typeof SearchBox;
8
- export default _default;
1
+ /// <reference types="react" />
2
+ import { LinearGenomeViewModel } from '..';
3
+ declare function SearchBox({ model, showHelp, }: {
4
+ showHelp?: boolean;
5
+ model: LinearGenomeViewModel;
6
+ }): JSX.Element;
7
+ declare const _default: typeof SearchBox;
8
+ export default _default;
@@ -1,8 +1,8 @@
1
- /// <reference types="react" />
2
- import { LinearGenomeViewModel } from '../..';
3
- export declare const useStyles: (props?: any) => Record<"dialogContent" | "closeButton", string>;
4
- export default function SearchResultsDialog({ model, optAssemblyName, handleClose, }: {
5
- model: LinearGenomeViewModel;
6
- optAssemblyName?: string;
7
- handleClose: () => void;
8
- }): JSX.Element;
1
+ /// <reference types="react" />
2
+ import { LinearGenomeViewModel } from '../..';
3
+ export declare const useStyles: (props?: any) => import("@material-ui/styles").ClassNameMap<"closeButton" | "dialogContent">;
4
+ export default function SearchResultsDialog({ model, optAssemblyName, handleClose, }: {
5
+ model: LinearGenomeViewModel;
6
+ optAssemblyName?: string;
7
+ handleClose: () => void;
8
+ }): JSX.Element;
@@ -1,8 +1,8 @@
1
- /// <reference types="react" />
2
- import { LinearGenomeViewModel } from '..';
3
- declare function SequenceDialog({ model, handleClose, }: {
4
- model: LinearGenomeViewModel;
5
- handleClose: () => void;
6
- }): JSX.Element;
7
- declare const _default: typeof SequenceDialog;
8
- export default _default;
1
+ /// <reference types="react" />
2
+ import { LinearGenomeViewModel } from '..';
3
+ declare function SequenceDialog({ model, handleClose, }: {
4
+ model: LinearGenomeViewModel;
5
+ handleClose: () => void;
6
+ }): JSX.Element;
7
+ declare const _default: typeof SequenceDialog;
8
+ export default _default;
@@ -1,9 +1,9 @@
1
- /// <reference types="react" />
2
- import { BaseTrackModel } from '@jbrowse/core/pluggableElementTypes/models';
3
- import { LinearGenomeViewModel } from '..';
4
- declare function TrackContainer({ model, track, }: {
5
- model: LinearGenomeViewModel;
6
- track: BaseTrackModel;
7
- }): JSX.Element;
8
- declare const _default: typeof TrackContainer;
9
- export default _default;
1
+ /// <reference types="react" />
2
+ import { BaseTrackModel } from '@jbrowse/core/pluggableElementTypes/models';
3
+ import { LinearGenomeViewModel } from '..';
4
+ declare function TrackContainer({ model, track, }: {
5
+ model: LinearGenomeViewModel;
6
+ track: BaseTrackModel;
7
+ }): JSX.Element;
8
+ declare const _default: typeof TrackContainer;
9
+ export default _default;
@@ -1,44 +1,44 @@
1
- import React from 'react';
2
- declare const _default: React.ForwardRefExoticComponent<{
3
- track: import("mobx-state-tree").ModelInstanceTypeProps<{
4
- id: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").ISimpleType<string>, [undefined]>;
5
- type: import("mobx-state-tree").ISimpleType<string>;
6
- configuration: import("mobx-state-tree").ITypeUnion<any, any, any>;
7
- displays: import("mobx-state-tree").IArrayType<import("mobx-state-tree").IAnyType>;
8
- }> & {
9
- readonly rpcSessionId: any;
10
- readonly name: any;
11
- readonly textSearchAdapter: any;
12
- readonly adapterType: any;
13
- readonly viewMenuActions: import("@jbrowse/core/ui").MenuItem[];
14
- readonly canConfigure: any;
15
- } & {
16
- activateConfigurationUI(): void;
17
- showDisplay(displayId: string, initialSnapshot?: {}): void;
18
- hideDisplay(displayId: string): number;
19
- replaceDisplay(oldDisplayId: string, newDisplayId: string, initialSnapshot?: {}): void;
20
- } & {
21
- trackMenuItems(): import("@jbrowse/core/ui").MenuItem[];
22
- } & import("mobx-state-tree").IStateTreeNode<import("mobx-state-tree").IModelType<{
23
- id: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").ISimpleType<string>, [undefined]>;
24
- type: import("mobx-state-tree").ISimpleType<string>;
25
- configuration: import("mobx-state-tree").ITypeUnion<any, any, any>;
26
- displays: import("mobx-state-tree").IArrayType<import("mobx-state-tree").IAnyType>;
27
- }, {
28
- readonly rpcSessionId: any;
29
- readonly name: any;
30
- readonly textSearchAdapter: any;
31
- readonly adapterType: any;
32
- readonly viewMenuActions: import("@jbrowse/core/ui").MenuItem[];
33
- readonly canConfigure: any;
34
- } & {
35
- activateConfigurationUI(): void;
36
- showDisplay(displayId: string, initialSnapshot?: {}): void;
37
- hideDisplay(displayId: string): number;
38
- replaceDisplay(oldDisplayId: string, newDisplayId: string, initialSnapshot?: {}): void;
39
- } & {
40
- trackMenuItems(): import("@jbrowse/core/ui").MenuItem[];
41
- }, import("mobx-state-tree")._NotCustomized, import("mobx-state-tree")._NotCustomized>>;
42
- className?: string | undefined;
43
- } & React.RefAttributes<unknown>>;
44
- export default _default;
1
+ import React from 'react';
2
+ declare const _default: React.ForwardRefExoticComponent<{
3
+ track: import("mobx-state-tree").ModelInstanceTypeProps<{
4
+ id: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").ISimpleType<string>, [undefined]>;
5
+ type: import("mobx-state-tree").ISimpleType<string>;
6
+ configuration: import("mobx-state-tree").ITypeUnion<any, any, any>;
7
+ displays: import("mobx-state-tree").IArrayType<import("mobx-state-tree").IAnyType>;
8
+ }> & {
9
+ readonly rpcSessionId: any;
10
+ readonly name: any;
11
+ readonly textSearchAdapter: any;
12
+ readonly adapterType: any;
13
+ readonly viewMenuActions: import("@jbrowse/core/ui").MenuItem[];
14
+ readonly canConfigure: any;
15
+ } & {
16
+ activateConfigurationUI(): void;
17
+ showDisplay(displayId: string, initialSnapshot?: {} | undefined): void;
18
+ hideDisplay(displayId: string): number;
19
+ replaceDisplay(oldDisplayId: string, newDisplayId: string, initialSnapshot?: {} | undefined): void;
20
+ } & {
21
+ trackMenuItems(): import("@jbrowse/core/ui").MenuItem[];
22
+ } & import("mobx-state-tree").IStateTreeNode<import("mobx-state-tree").IModelType<{
23
+ id: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").ISimpleType<string>, [undefined]>;
24
+ type: import("mobx-state-tree").ISimpleType<string>;
25
+ configuration: import("mobx-state-tree").ITypeUnion<any, any, any>;
26
+ displays: import("mobx-state-tree").IArrayType<import("mobx-state-tree").IAnyType>;
27
+ }, {
28
+ readonly rpcSessionId: any;
29
+ readonly name: any;
30
+ readonly textSearchAdapter: any;
31
+ readonly adapterType: any;
32
+ readonly viewMenuActions: import("@jbrowse/core/ui").MenuItem[];
33
+ readonly canConfigure: any;
34
+ } & {
35
+ activateConfigurationUI(): void;
36
+ showDisplay(displayId: string, initialSnapshot?: {} | undefined): void;
37
+ hideDisplay(displayId: string): number;
38
+ replaceDisplay(oldDisplayId: string, newDisplayId: string, initialSnapshot?: {} | undefined): void;
39
+ } & {
40
+ trackMenuItems(): import("@jbrowse/core/ui").MenuItem[];
41
+ }, import("mobx-state-tree")._NotCustomized, import("mobx-state-tree")._NotCustomized>>;
42
+ className?: string | undefined;
43
+ } & React.RefAttributes<unknown>>;
44
+ export default _default;
@@ -1,10 +1,10 @@
1
- import { Instance } from 'mobx-state-tree';
2
- import React from 'react';
3
- import { LinearGenomeViewStateModel } from '..';
4
- declare type LGV = Instance<LinearGenomeViewStateModel>;
5
- declare function TracksContainer({ children, model, }: {
6
- children: React.ReactNode;
7
- model: LGV;
8
- }): JSX.Element;
9
- declare const _default: typeof TracksContainer;
10
- export default _default;
1
+ import { Instance } from 'mobx-state-tree';
2
+ import React from 'react';
3
+ import { LinearGenomeViewStateModel } from '..';
4
+ declare type LGV = Instance<LinearGenomeViewStateModel>;
5
+ declare function TracksContainer({ children, model, }: {
6
+ children: React.ReactNode;
7
+ model: LGV;
8
+ }): JSX.Element;
9
+ declare const _default: typeof TracksContainer;
10
+ export default _default;
@@ -1,9 +1,9 @@
1
- /// <reference types="react" />
2
- import { Instance } from 'mobx-state-tree';
3
- import { LinearGenomeViewStateModel } from '..';
4
- declare type LGV = Instance<LinearGenomeViewStateModel>;
5
- declare function VerticalGuides({ model }: {
6
- model: LGV;
7
- }): JSX.Element;
8
- declare const _default: typeof VerticalGuides;
9
- export default _default;
1
+ /// <reference types="react" />
2
+ import { Instance } from 'mobx-state-tree';
3
+ import { LinearGenomeViewStateModel } from '..';
4
+ declare type LGV = Instance<LinearGenomeViewStateModel>;
5
+ declare function VerticalGuides({ model }: {
6
+ model: LGV;
7
+ }): JSX.Element;
8
+ declare const _default: typeof VerticalGuides;
9
+ export default _default;
@@ -1,7 +1,7 @@
1
- /// <reference types="react" />
2
- import { LinearGenomeViewModel } from '..';
3
- declare function ZoomControls({ model }: {
4
- model: LinearGenomeViewModel;
5
- }): JSX.Element;
6
- declare const _default: typeof ZoomControls;
7
- export default _default;
1
+ /// <reference types="react" />
2
+ import { LinearGenomeViewModel } from '..';
3
+ declare function ZoomControls({ model }: {
4
+ model: LinearGenomeViewModel;
5
+ }): JSX.Element;
6
+ declare const _default: typeof ZoomControls;
7
+ export default _default;
@@ -1,2 +1,2 @@
1
- import BaseResult from '@jbrowse/core/TextSearch/BaseResults';
2
- export declare function dedupe(results: BaseResult[] | undefined, cb: (result: BaseResult) => string): BaseResult[];
1
+ import BaseResult from '@jbrowse/core/TextSearch/BaseResults';
2
+ export declare function dedupe(results: BaseResult[] | undefined, cb: (result: BaseResult) => string): BaseResult[];