@jbrowse/plugin-data-management 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.
- package/dist/AddConnectionWidget/components/AddConnectionWidget.d.ts +9 -9
- package/dist/AddConnectionWidget/components/ConfigureConnection.d.ts +2 -2
- package/dist/AddConnectionWidget/components/ConnectionTypeSelect.d.ts +8 -8
- package/dist/AddConnectionWidget/index.d.ts +2 -2
- package/dist/AddConnectionWidget/model.d.ts +5 -5
- package/dist/AddTrackWidget/components/AddTrackWidget.d.ts +7 -7
- package/dist/AddTrackWidget/components/ConfirmTrack.d.ts +7 -7
- package/dist/AddTrackWidget/components/TrackSourceSelect.d.ts +7 -7
- package/dist/AddTrackWidget/index.d.ts +2 -2
- package/dist/AddTrackWidget/model.d.ts +42 -42
- package/dist/AssemblyManager/AssemblyAddForm.d.ts +6 -6
- package/dist/AssemblyManager/AssemblyEditor.d.ts +5 -5
- package/dist/AssemblyManager/AssemblyManager.d.ts +6 -6
- package/dist/AssemblyManager/AssemblyTable.d.ts +13 -13
- package/dist/AssemblyManager/index.d.ts +1 -1
- package/dist/HierarchicalTrackSelectorWidget/components/CloseConnectionDialog.d.ts +7 -7
- package/dist/HierarchicalTrackSelectorWidget/components/DeleteConnectionDialog.d.ts +13 -13
- package/dist/HierarchicalTrackSelectorWidget/components/HierarchicalTrackSelector.d.ts +6 -6
- package/dist/HierarchicalTrackSelectorWidget/components/ManageConnectionsDialog.d.ts +9 -9
- package/dist/HierarchicalTrackSelectorWidget/components/ToggleConnectionsDialog.d.ts +10 -10
- package/dist/HierarchicalTrackSelectorWidget/index.d.ts +2 -2
- package/dist/HierarchicalTrackSelectorWidget/model.d.ts +37 -37
- package/dist/PluginStoreWidget/components/CustomPluginForm.d.ts +9 -9
- package/dist/PluginStoreWidget/components/InstalledPlugin.d.ts +11 -11
- package/dist/PluginStoreWidget/components/InstalledPluginsList.d.ts +9 -9
- package/dist/PluginStoreWidget/components/PluginCard.d.ts +10 -10
- package/dist/PluginStoreWidget/components/PluginStoreWidget.d.ts +7 -7
- package/dist/PluginStoreWidget/index.d.ts +3 -3
- package/dist/PluginStoreWidget/model.d.ts +13 -13
- package/dist/SetDefaultSession/SetDefaultSession.d.ts +6 -6
- package/dist/SetDefaultSession/index.d.ts +1 -1
- package/dist/index.d.ts +27 -27
- package/dist/ucsc-trackhub/configSchema.d.ts +2 -2
- package/dist/ucsc-trackhub/index.d.ts +2 -2
- package/dist/ucsc-trackhub/model.d.ts +15 -4
- package/dist/ucsc-trackhub/ucscAssemblies.d.ts +2 -2
- package/dist/ucsc-trackhub/ucscTrackHub.d.ts +6 -6
- package/package.json +4 -3
- package/dist/AddConnectionWidget/components/AddConnectionWidget.test.d.ts +0 -1
- package/dist/AddTrackWidget/components/AddTrackWidget.test.d.ts +0 -1
- package/dist/AddTrackWidget/index.test.d.ts +0 -1
- package/dist/HierarchicalTrackSelectorWidget/components/HierarchicalTrackSelector.test.d.ts +0 -1
- package/dist/HierarchicalTrackSelectorWidget/model.test.d.ts +0 -1
- package/dist/PluginStoreWidget/components/PluginStoreWidget.test.d.ts +0 -1
- package/dist/PluginStoreWidget/model.test.d.ts +0 -1
- package/dist/index.test.d.ts +0 -1
- package/dist/plugin-data-management.cjs.development.js +0 -4856
- package/dist/plugin-data-management.cjs.development.js.map +0 -1
- package/dist/plugin-data-management.cjs.production.min.js +0 -2
- package/dist/plugin-data-management.cjs.production.min.js.map +0 -1
- package/dist/plugin-data-management.esm.js +0 -4829
- package/dist/plugin-data-management.esm.js.map +0 -1
|
@@ -1,9 +1,9 @@
|
|
|
1
|
-
declare function _default({ model }: {
|
|
2
|
-
model: any;
|
|
3
|
-
}): JSX.Element;
|
|
4
|
-
declare namespace _default {
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
}
|
|
8
|
-
}
|
|
9
|
-
export default _default;
|
|
1
|
+
declare function _default({ model }: {
|
|
2
|
+
model: any;
|
|
3
|
+
}): JSX.Element;
|
|
4
|
+
declare namespace _default {
|
|
5
|
+
namespace propTypes {
|
|
6
|
+
const model: import("prop-types").Validator<any>;
|
|
7
|
+
}
|
|
8
|
+
}
|
|
9
|
+
export default _default;
|
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
export default ConfigureConnection;
|
|
2
|
-
declare function ConfigureConnection(props: any): JSX.Element;
|
|
1
|
+
export default ConfigureConnection;
|
|
2
|
+
declare function ConfigureConnection(props: any): JSX.Element;
|
|
@@ -1,8 +1,8 @@
|
|
|
1
|
-
/// <reference types="react" />
|
|
2
|
-
import ConnectionType from '@jbrowse/core/pluggableElementTypes/ConnectionType';
|
|
3
|
-
declare function ConnectionTypeSelect(props: {
|
|
4
|
-
connectionTypeChoices: ConnectionType[];
|
|
5
|
-
connectionType: ConnectionType;
|
|
6
|
-
setConnectionType: Function;
|
|
7
|
-
}): JSX.Element | null;
|
|
8
|
-
export default ConnectionTypeSelect;
|
|
1
|
+
/// <reference types="react" />
|
|
2
|
+
import ConnectionType from '@jbrowse/core/pluggableElementTypes/ConnectionType';
|
|
3
|
+
declare function ConnectionTypeSelect(props: {
|
|
4
|
+
connectionTypeChoices: ConnectionType[];
|
|
5
|
+
connectionType: ConnectionType;
|
|
6
|
+
setConnectionType: Function;
|
|
7
|
+
}): JSX.Element | null;
|
|
8
|
+
export default ConnectionTypeSelect;
|
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
export { default as stateModel } from "./model";
|
|
2
|
-
export const configSchema: import("@jbrowse/core/configuration").AnyConfigurationSchemaType;
|
|
1
|
+
export { default as stateModel } from "./model";
|
|
2
|
+
export const configSchema: import("@jbrowse/core/configuration").AnyConfigurationSchemaType;
|
|
@@ -1,5 +1,5 @@
|
|
|
1
|
-
declare var _default: import("mobx-state-tree").IModelType<{
|
|
2
|
-
id: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").ISimpleType<string>, [undefined]>;
|
|
3
|
-
type: import("mobx-state-tree").ISimpleType<"AddConnectionWidget">;
|
|
4
|
-
}, {}, import("mobx-state-tree")._NotCustomized, import("mobx-state-tree")._NotCustomized>;
|
|
5
|
-
export default _default;
|
|
1
|
+
declare var _default: import("mobx-state-tree").IModelType<{
|
|
2
|
+
id: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").ISimpleType<string>, [undefined]>;
|
|
3
|
+
type: import("mobx-state-tree").ISimpleType<"AddConnectionWidget">;
|
|
4
|
+
}, {}, import("mobx-state-tree")._NotCustomized, import("mobx-state-tree")._NotCustomized>;
|
|
5
|
+
export default _default;
|
|
@@ -1,7 +1,7 @@
|
|
|
1
|
-
/// <reference types="react" />
|
|
2
|
-
import { AddTrackModel } from '../model';
|
|
3
|
-
declare function AddTrackWidget({ model }: {
|
|
4
|
-
model: AddTrackModel;
|
|
5
|
-
}): JSX.Element;
|
|
6
|
-
declare const _default: typeof AddTrackWidget;
|
|
7
|
-
export default _default;
|
|
1
|
+
/// <reference types="react" />
|
|
2
|
+
import { AddTrackModel } from '../model';
|
|
3
|
+
declare function AddTrackWidget({ model }: {
|
|
4
|
+
model: AddTrackModel;
|
|
5
|
+
}): JSX.Element;
|
|
6
|
+
declare const _default: typeof AddTrackWidget;
|
|
7
|
+
export default _default;
|
|
@@ -1,7 +1,7 @@
|
|
|
1
|
-
/// <reference types="react" />
|
|
2
|
-
import { AddTrackModel } from '../model';
|
|
3
|
-
declare function ConfirmTrack({ model }: {
|
|
4
|
-
model: AddTrackModel;
|
|
5
|
-
}): JSX.Element;
|
|
6
|
-
declare const _default: typeof ConfirmTrack;
|
|
7
|
-
export default _default;
|
|
1
|
+
/// <reference types="react" />
|
|
2
|
+
import { AddTrackModel } from '../model';
|
|
3
|
+
declare function ConfirmTrack({ model }: {
|
|
4
|
+
model: AddTrackModel;
|
|
5
|
+
}): JSX.Element;
|
|
6
|
+
declare const _default: typeof ConfirmTrack;
|
|
7
|
+
export default _default;
|
|
@@ -1,7 +1,7 @@
|
|
|
1
|
-
/// <reference types="react" />
|
|
2
|
-
import { AddTrackModel } from '../model';
|
|
3
|
-
declare function TrackSourceSelect({ model }: {
|
|
4
|
-
model: AddTrackModel;
|
|
5
|
-
}): JSX.Element;
|
|
6
|
-
declare const _default: typeof TrackSourceSelect;
|
|
7
|
-
export default _default;
|
|
1
|
+
/// <reference types="react" />
|
|
2
|
+
import { AddTrackModel } from '../model';
|
|
3
|
+
declare function TrackSourceSelect({ model }: {
|
|
4
|
+
model: AddTrackModel;
|
|
5
|
+
}): JSX.Element;
|
|
6
|
+
declare const _default: typeof TrackSourceSelect;
|
|
7
|
+
export default _default;
|
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
export { default as stateModelFactory } from "./model";
|
|
2
|
-
export const configSchema: import("@jbrowse/core/configuration").AnyConfigurationSchemaType;
|
|
1
|
+
export { default as stateModelFactory } from "./model";
|
|
2
|
+
export const configSchema: import("@jbrowse/core/configuration").AnyConfigurationSchemaType;
|
|
@@ -1,42 +1,42 @@
|
|
|
1
|
-
import { Instance } from 'mobx-state-tree';
|
|
2
|
-
import PluginManager from '@jbrowse/core/PluginManager';
|
|
3
|
-
import { FileLocation } from '@jbrowse/core/util/types';
|
|
4
|
-
export default function f(pluginManager: PluginManager): import("mobx-state-tree").IModelType<{
|
|
5
|
-
id: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").ISimpleType<string>, [undefined]>;
|
|
6
|
-
type: import("mobx-state-tree").ISimpleType<"AddTrackWidget">;
|
|
7
|
-
view: import("mobx-state-tree").IMaybe<import("mobx-state-tree").IReferenceType<import("mobx-state-tree").IAnyType>>;
|
|
8
|
-
}, {
|
|
9
|
-
trackSource: string;
|
|
10
|
-
trackData:
|
|
11
|
-
indexTrackData:
|
|
12
|
-
altAssemblyName: string;
|
|
13
|
-
altTrackName: string;
|
|
14
|
-
altTrackType: string;
|
|
15
|
-
adapterHint: string;
|
|
16
|
-
} & {
|
|
17
|
-
setAdapterHint(obj: string): void;
|
|
18
|
-
setTrackSource(str: string): void;
|
|
19
|
-
setTrackData(obj: FileLocation): void;
|
|
20
|
-
setIndexTrackData(obj: FileLocation): void;
|
|
21
|
-
setAssembly(str: string): void;
|
|
22
|
-
setTrackName(str: string): void;
|
|
23
|
-
setTrackType(str: string): void;
|
|
24
|
-
clearData(): void;
|
|
25
|
-
} & {
|
|
26
|
-
readonly trackAdapter: import("@jbrowse/core/util/tracks").AdapterConfig | undefined;
|
|
27
|
-
readonly trackName: string;
|
|
28
|
-
readonly isFtp: boolean;
|
|
29
|
-
readonly isRelativeTrackUrl: boolean;
|
|
30
|
-
readonly isRelativeIndexUrl: boolean;
|
|
31
|
-
readonly isRelativeUrl: boolean;
|
|
32
|
-
readonly trackHttp: any;
|
|
33
|
-
readonly indexHttp: any;
|
|
34
|
-
readonly wrongProtocol: any;
|
|
35
|
-
readonly unsupported: boolean;
|
|
36
|
-
readonly assembly: any;
|
|
37
|
-
readonly trackType: string;
|
|
38
|
-
} & {
|
|
39
|
-
readonly warningMessage: "" | "Warning: JBrowse cannot access files using the ftp protocol" | "Warning: one or more of your files do not provide the protocol e.g.\n https://, please provide an absolute URL unless you are sure a\n relative URL is intended." | "Warning: You entered a http:// resources but we cannot access HTTP\n resources from JBrowse when it is running on https. Please use an\n https URL for your track, or access the JBrowse app from the http\n protocol";
|
|
40
|
-
}, import("mobx-state-tree")._NotCustomized, import("mobx-state-tree")._NotCustomized>;
|
|
41
|
-
export declare type AddTrackStateModel = ReturnType<typeof f>;
|
|
42
|
-
export declare type AddTrackModel = Instance<AddTrackStateModel>;
|
|
1
|
+
import { Instance } from 'mobx-state-tree';
|
|
2
|
+
import PluginManager from '@jbrowse/core/PluginManager';
|
|
3
|
+
import { FileLocation } from '@jbrowse/core/util/types';
|
|
4
|
+
export default function f(pluginManager: PluginManager): import("mobx-state-tree").IModelType<{
|
|
5
|
+
id: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").ISimpleType<string>, [undefined]>;
|
|
6
|
+
type: import("mobx-state-tree").ISimpleType<"AddTrackWidget">;
|
|
7
|
+
view: import("mobx-state-tree").IMaybe<import("mobx-state-tree").IReferenceType<import("mobx-state-tree").IAnyType>>;
|
|
8
|
+
}, {
|
|
9
|
+
trackSource: string;
|
|
10
|
+
trackData: FileLocation | undefined;
|
|
11
|
+
indexTrackData: FileLocation | undefined;
|
|
12
|
+
altAssemblyName: string;
|
|
13
|
+
altTrackName: string;
|
|
14
|
+
altTrackType: string;
|
|
15
|
+
adapterHint: string;
|
|
16
|
+
} & {
|
|
17
|
+
setAdapterHint(obj: string): void;
|
|
18
|
+
setTrackSource(str: string): void;
|
|
19
|
+
setTrackData(obj: FileLocation): void;
|
|
20
|
+
setIndexTrackData(obj: FileLocation): void;
|
|
21
|
+
setAssembly(str: string): void;
|
|
22
|
+
setTrackName(str: string): void;
|
|
23
|
+
setTrackType(str: string): void;
|
|
24
|
+
clearData(): void;
|
|
25
|
+
} & {
|
|
26
|
+
readonly trackAdapter: import("@jbrowse/core/util/tracks").AdapterConfig | undefined;
|
|
27
|
+
readonly trackName: string;
|
|
28
|
+
readonly isFtp: boolean;
|
|
29
|
+
readonly isRelativeTrackUrl: boolean;
|
|
30
|
+
readonly isRelativeIndexUrl: boolean;
|
|
31
|
+
readonly isRelativeUrl: boolean;
|
|
32
|
+
readonly trackHttp: any;
|
|
33
|
+
readonly indexHttp: any;
|
|
34
|
+
readonly wrongProtocol: any;
|
|
35
|
+
readonly unsupported: boolean;
|
|
36
|
+
readonly assembly: any;
|
|
37
|
+
readonly trackType: string;
|
|
38
|
+
} & {
|
|
39
|
+
readonly warningMessage: "" | "Warning: JBrowse cannot access files using the ftp protocol" | "Warning: one or more of your files do not provide the protocol e.g.\n https://, please provide an absolute URL unless you are sure a\n relative URL is intended." | "Warning: You entered a http:// resources but we cannot access HTTP\n resources from JBrowse when it is running on https. Please use an\n https URL for your track, or access the JBrowse app from the http\n protocol";
|
|
40
|
+
}, import("mobx-state-tree")._NotCustomized, import("mobx-state-tree")._NotCustomized>;
|
|
41
|
+
export declare type AddTrackStateModel = ReturnType<typeof f>;
|
|
42
|
+
export declare type AddTrackModel = Instance<AddTrackStateModel>;
|
|
@@ -1,6 +1,6 @@
|
|
|
1
|
-
/// <reference types="react" />
|
|
2
|
-
declare const AssemblyAddForm: ({ rootModel, setFormOpen, }: {
|
|
3
|
-
rootModel: any;
|
|
4
|
-
setFormOpen: Function;
|
|
5
|
-
}) => JSX.Element;
|
|
6
|
-
export default AssemblyAddForm;
|
|
1
|
+
/// <reference types="react" />
|
|
2
|
+
declare const AssemblyAddForm: ({ rootModel, setFormOpen, }: {
|
|
3
|
+
rootModel: any;
|
|
4
|
+
setFormOpen: Function;
|
|
5
|
+
}) => JSX.Element;
|
|
6
|
+
export default AssemblyAddForm;
|
|
@@ -1,5 +1,5 @@
|
|
|
1
|
-
/// <reference types="react" />
|
|
2
|
-
declare const AssemblyEditor: ({ assembly, }: {
|
|
3
|
-
assembly: any;
|
|
4
|
-
}) => JSX.Element;
|
|
5
|
-
export default AssemblyEditor;
|
|
1
|
+
/// <reference types="react" />
|
|
2
|
+
declare const AssemblyEditor: ({ assembly, }: {
|
|
3
|
+
assembly: any;
|
|
4
|
+
}) => JSX.Element;
|
|
5
|
+
export default AssemblyEditor;
|
|
@@ -1,6 +1,6 @@
|
|
|
1
|
-
/// <reference types="react" />
|
|
2
|
-
declare const AssemblyManager: ({ rootModel, onClose, }: {
|
|
3
|
-
rootModel: any;
|
|
4
|
-
onClose: (arg: boolean) => void;
|
|
5
|
-
}) => JSX.Element;
|
|
6
|
-
export default AssemblyManager;
|
|
1
|
+
/// <reference types="react" />
|
|
2
|
+
declare const AssemblyManager: ({ rootModel, onClose, }: {
|
|
3
|
+
rootModel: any;
|
|
4
|
+
onClose: (arg: boolean) => void;
|
|
5
|
+
}) => JSX.Element;
|
|
6
|
+
export default AssemblyManager;
|
|
@@ -1,13 +1,13 @@
|
|
|
1
|
-
/// <reference types="react" />
|
|
2
|
-
import { AnyConfigurationModel } from '@jbrowse/core/configuration/configurationSchema';
|
|
3
|
-
declare const AssemblyTable: ({ rootModel, setIsAssemblyBeingEdited, setAssemblyBeingEdited, }: {
|
|
4
|
-
rootModel: {
|
|
5
|
-
jbrowse: {
|
|
6
|
-
removeAssemblyConf: (arg: string) => void;
|
|
7
|
-
assemblies: AnyConfigurationModel[];
|
|
8
|
-
};
|
|
9
|
-
};
|
|
10
|
-
setIsAssemblyBeingEdited(arg: boolean): void;
|
|
11
|
-
setAssemblyBeingEdited(arg: AnyConfigurationModel): void;
|
|
12
|
-
}) => JSX.Element;
|
|
13
|
-
export default AssemblyTable;
|
|
1
|
+
/// <reference types="react" />
|
|
2
|
+
import { AnyConfigurationModel } from '@jbrowse/core/configuration/configurationSchema';
|
|
3
|
+
declare const AssemblyTable: ({ rootModel, setIsAssemblyBeingEdited, setAssemblyBeingEdited, }: {
|
|
4
|
+
rootModel: {
|
|
5
|
+
jbrowse: {
|
|
6
|
+
removeAssemblyConf: (arg: string) => void;
|
|
7
|
+
assemblies: AnyConfigurationModel[];
|
|
8
|
+
};
|
|
9
|
+
};
|
|
10
|
+
setIsAssemblyBeingEdited(arg: boolean): void;
|
|
11
|
+
setAssemblyBeingEdited(arg: AnyConfigurationModel): void;
|
|
12
|
+
}) => JSX.Element;
|
|
13
|
+
export default AssemblyTable;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
export { default } from './AssemblyManager';
|
|
1
|
+
export { default } from './AssemblyManager';
|
|
@@ -1,7 +1,7 @@
|
|
|
1
|
-
/// <reference types="react" />
|
|
2
|
-
declare function CloseConnectionDialog({ modalInfo, setModalInfo, }: {
|
|
3
|
-
modalInfo: any;
|
|
4
|
-
setModalInfo: Function;
|
|
5
|
-
}): JSX.Element;
|
|
6
|
-
declare const _default: typeof CloseConnectionDialog;
|
|
7
|
-
export default _default;
|
|
1
|
+
/// <reference types="react" />
|
|
2
|
+
declare function CloseConnectionDialog({ modalInfo, setModalInfo, }: {
|
|
3
|
+
modalInfo: any;
|
|
4
|
+
setModalInfo: Function;
|
|
5
|
+
}): JSX.Element;
|
|
6
|
+
declare const _default: typeof CloseConnectionDialog;
|
|
7
|
+
export default _default;
|
|
@@ -1,13 +1,13 @@
|
|
|
1
|
-
/// <reference types="react" />
|
|
2
|
-
import { AnyConfigurationModel } from '@jbrowse/core/configuration/configurationSchema';
|
|
3
|
-
import { AbstractSessionModel } from '@jbrowse/core/util';
|
|
4
|
-
declare function DeleteConnectionDialog({ deleteDialogDetails, session, handleClose, }: {
|
|
5
|
-
deleteDialogDetails: {
|
|
6
|
-
name: string;
|
|
7
|
-
connectionConf: AnyConfigurationModel;
|
|
8
|
-
};
|
|
9
|
-
session: AbstractSessionModel;
|
|
10
|
-
handleClose: Function;
|
|
11
|
-
}): JSX.Element;
|
|
12
|
-
declare const _default: typeof DeleteConnectionDialog;
|
|
13
|
-
export default _default;
|
|
1
|
+
/// <reference types="react" />
|
|
2
|
+
import { AnyConfigurationModel } from '@jbrowse/core/configuration/configurationSchema';
|
|
3
|
+
import { AbstractSessionModel } from '@jbrowse/core/util';
|
|
4
|
+
declare function DeleteConnectionDialog({ deleteDialogDetails, session, handleClose, }: {
|
|
5
|
+
deleteDialogDetails: {
|
|
6
|
+
name: string;
|
|
7
|
+
connectionConf: AnyConfigurationModel;
|
|
8
|
+
};
|
|
9
|
+
session: AbstractSessionModel;
|
|
10
|
+
handleClose: Function;
|
|
11
|
+
}): JSX.Element;
|
|
12
|
+
declare const _default: typeof DeleteConnectionDialog;
|
|
13
|
+
export default _default;
|
|
@@ -1,6 +1,6 @@
|
|
|
1
|
-
export default HierarchicalTrackSelectorContainer;
|
|
2
|
-
declare function HierarchicalTrackSelectorContainer({ model, toolbarHeight, overrideDimensions }: {
|
|
3
|
-
model: any;
|
|
4
|
-
toolbarHeight: any;
|
|
5
|
-
overrideDimensions: any;
|
|
6
|
-
}): JSX.Element;
|
|
1
|
+
export default HierarchicalTrackSelectorContainer;
|
|
2
|
+
declare function HierarchicalTrackSelectorContainer({ model, toolbarHeight, overrideDimensions }: {
|
|
3
|
+
model: any;
|
|
4
|
+
toolbarHeight: any;
|
|
5
|
+
overrideDimensions: any;
|
|
6
|
+
}): JSX.Element;
|
|
@@ -1,9 +1,9 @@
|
|
|
1
|
-
/// <reference types="react" />
|
|
2
|
-
import { AbstractSessionModel } from '@jbrowse/core/util';
|
|
3
|
-
declare function ManageConnectionsDlg({ session, handleClose, breakConnection, }: {
|
|
4
|
-
handleClose: () => void;
|
|
5
|
-
session: AbstractSessionModel;
|
|
6
|
-
breakConnection: Function;
|
|
7
|
-
}): JSX.Element;
|
|
8
|
-
declare const _default: typeof ManageConnectionsDlg;
|
|
9
|
-
export default _default;
|
|
1
|
+
/// <reference types="react" />
|
|
2
|
+
import { AbstractSessionModel } from '@jbrowse/core/util';
|
|
3
|
+
declare function ManageConnectionsDlg({ session, handleClose, breakConnection, }: {
|
|
4
|
+
handleClose: () => void;
|
|
5
|
+
session: AbstractSessionModel;
|
|
6
|
+
breakConnection: Function;
|
|
7
|
+
}): JSX.Element;
|
|
8
|
+
declare const _default: typeof ManageConnectionsDlg;
|
|
9
|
+
export default _default;
|
|
@@ -1,10 +1,10 @@
|
|
|
1
|
-
/// <reference types="react" />
|
|
2
|
-
import { AbstractSessionModel } from '@jbrowse/core/util';
|
|
3
|
-
declare function ToggleConnectionDialog({ session, handleClose, assemblyName, breakConnection, }: {
|
|
4
|
-
handleClose: () => void;
|
|
5
|
-
session: AbstractSessionModel;
|
|
6
|
-
assemblyName: string;
|
|
7
|
-
breakConnection: Function;
|
|
8
|
-
}): JSX.Element;
|
|
9
|
-
declare const _default: typeof ToggleConnectionDialog;
|
|
10
|
-
export default _default;
|
|
1
|
+
/// <reference types="react" />
|
|
2
|
+
import { AbstractSessionModel } from '@jbrowse/core/util';
|
|
3
|
+
declare function ToggleConnectionDialog({ session, handleClose, assemblyName, breakConnection, }: {
|
|
4
|
+
handleClose: () => void;
|
|
5
|
+
session: AbstractSessionModel;
|
|
6
|
+
assemblyName: string;
|
|
7
|
+
breakConnection: Function;
|
|
8
|
+
}): JSX.Element;
|
|
9
|
+
declare const _default: typeof ToggleConnectionDialog;
|
|
10
|
+
export default _default;
|
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
export { default as stateModelFactory } from "./model";
|
|
2
|
-
export const configSchema: import("@jbrowse/core/configuration").AnyConfigurationSchemaType;
|
|
1
|
+
export { default as stateModelFactory } from "./model";
|
|
2
|
+
export const configSchema: import("@jbrowse/core/configuration").AnyConfigurationSchemaType;
|
|
@@ -1,37 +1,37 @@
|
|
|
1
|
-
export function generateHierarchy(model: any, trackConfigurations: any, collapsed: any): never[];
|
|
2
|
-
declare function _default(pluginManager: any): import("mobx-state-tree").IModelType<{
|
|
3
|
-
id: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").ISimpleType<string>, [undefined]>;
|
|
4
|
-
type: import("mobx-state-tree").ISimpleType<"HierarchicalTrackSelectorWidget">;
|
|
5
|
-
collapsed: import("mobx-state-tree").IMapType<import("mobx-state-tree").ISimpleType<boolean>>;
|
|
6
|
-
filterText: import("mobx-state-tree").IType<string | undefined, string, string>;
|
|
7
|
-
view: import("mobx-state-tree").IMaybe<import("mobx-state-tree").IReferenceType<any>>;
|
|
8
|
-
}, {
|
|
9
|
-
setView(view: any): void;
|
|
10
|
-
toggleCategory(pathName: any): void;
|
|
11
|
-
clearFilterText(): void;
|
|
12
|
-
setFilterText(newText: any): void;
|
|
13
|
-
} & {
|
|
14
|
-
getRefSeqTrackConf(assemblyName: any): any;
|
|
15
|
-
trackConfigurations(assemblyName: any): any[];
|
|
16
|
-
readonly assemblyNames: any;
|
|
17
|
-
connectionTrackConfigurations(assemblyName: any, connection: any): any;
|
|
18
|
-
hierarchy(assemblyName: any): {
|
|
19
|
-
name: string;
|
|
20
|
-
id: string;
|
|
21
|
-
children: ({
|
|
22
|
-
id: any;
|
|
23
|
-
name: any;
|
|
24
|
-
children: never[];
|
|
25
|
-
state: {
|
|
26
|
-
expanded: boolean;
|
|
27
|
-
};
|
|
28
|
-
} | {
|
|
29
|
-
name: string;
|
|
30
|
-
id: string;
|
|
31
|
-
children: any[];
|
|
32
|
-
})[];
|
|
33
|
-
};
|
|
34
|
-
connectionHierarchy(assemblyName: any, connection: any): never[];
|
|
35
|
-
allTracksInCategoryPath(path: any, connection: any, assemblyName: any): {};
|
|
36
|
-
}, import("mobx-state-tree")._NotCustomized, import("mobx-state-tree")._NotCustomized>;
|
|
37
|
-
export default _default;
|
|
1
|
+
export function generateHierarchy(model: any, trackConfigurations: any, collapsed: any): never[];
|
|
2
|
+
declare function _default(pluginManager: any): import("mobx-state-tree").IModelType<{
|
|
3
|
+
id: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").ISimpleType<string>, [undefined]>;
|
|
4
|
+
type: import("mobx-state-tree").ISimpleType<"HierarchicalTrackSelectorWidget">;
|
|
5
|
+
collapsed: import("mobx-state-tree").IMapType<import("mobx-state-tree").ISimpleType<boolean>>;
|
|
6
|
+
filterText: import("mobx-state-tree").IType<string | undefined, string, string>;
|
|
7
|
+
view: import("mobx-state-tree").IMaybe<import("mobx-state-tree").IReferenceType<any>>;
|
|
8
|
+
}, {
|
|
9
|
+
setView(view: any): void;
|
|
10
|
+
toggleCategory(pathName: any): void;
|
|
11
|
+
clearFilterText(): void;
|
|
12
|
+
setFilterText(newText: any): void;
|
|
13
|
+
} & {
|
|
14
|
+
getRefSeqTrackConf(assemblyName: any): any;
|
|
15
|
+
trackConfigurations(assemblyName: any): any[];
|
|
16
|
+
readonly assemblyNames: any;
|
|
17
|
+
connectionTrackConfigurations(assemblyName: any, connection: any): any;
|
|
18
|
+
hierarchy(assemblyName: any): {
|
|
19
|
+
name: string;
|
|
20
|
+
id: string;
|
|
21
|
+
children: ({
|
|
22
|
+
id: any;
|
|
23
|
+
name: any;
|
|
24
|
+
children: never[];
|
|
25
|
+
state: {
|
|
26
|
+
expanded: boolean;
|
|
27
|
+
};
|
|
28
|
+
} | {
|
|
29
|
+
name: string;
|
|
30
|
+
id: string;
|
|
31
|
+
children: any[];
|
|
32
|
+
})[];
|
|
33
|
+
};
|
|
34
|
+
connectionHierarchy(assemblyName: any, connection: any): never[];
|
|
35
|
+
allTracksInCategoryPath(path: any, connection: any, assemblyName: any): {};
|
|
36
|
+
}, import("mobx-state-tree")._NotCustomized, import("mobx-state-tree")._NotCustomized>;
|
|
37
|
+
export default _default;
|
|
@@ -1,9 +1,9 @@
|
|
|
1
|
-
/// <reference types="react" />
|
|
2
|
-
import { PluginStoreModel } from '../model';
|
|
3
|
-
declare function CustomPluginForm({ open, onClose, model, }: {
|
|
4
|
-
open: boolean;
|
|
5
|
-
onClose(): void;
|
|
6
|
-
model: PluginStoreModel;
|
|
7
|
-
}): JSX.Element;
|
|
8
|
-
declare const _default: typeof CustomPluginForm;
|
|
9
|
-
export default _default;
|
|
1
|
+
/// <reference types="react" />
|
|
2
|
+
import { PluginStoreModel } from '../model';
|
|
3
|
+
declare function CustomPluginForm({ open, onClose, model, }: {
|
|
4
|
+
open: boolean;
|
|
5
|
+
onClose(): void;
|
|
6
|
+
model: PluginStoreModel;
|
|
7
|
+
}): JSX.Element;
|
|
8
|
+
declare const _default: typeof CustomPluginForm;
|
|
9
|
+
export default _default;
|
|
@@ -1,11 +1,11 @@
|
|
|
1
|
-
/// <reference types="react" />
|
|
2
|
-
import PluginManager from '@jbrowse/core/PluginManager';
|
|
3
|
-
import { BasePlugin } from '@jbrowse/core/util/types';
|
|
4
|
-
import { PluginStoreModel } from '../model';
|
|
5
|
-
declare function InstalledPlugin({ plugin, model, pluginManager, }: {
|
|
6
|
-
plugin: BasePlugin;
|
|
7
|
-
model: PluginStoreModel;
|
|
8
|
-
pluginManager: PluginManager;
|
|
9
|
-
}): JSX.Element;
|
|
10
|
-
declare const _default: typeof InstalledPlugin;
|
|
11
|
-
export default _default;
|
|
1
|
+
/// <reference types="react" />
|
|
2
|
+
import PluginManager from '@jbrowse/core/PluginManager';
|
|
3
|
+
import { BasePlugin } from '@jbrowse/core/util/types';
|
|
4
|
+
import { PluginStoreModel } from '../model';
|
|
5
|
+
declare function InstalledPlugin({ plugin, model, pluginManager, }: {
|
|
6
|
+
plugin: BasePlugin;
|
|
7
|
+
model: PluginStoreModel;
|
|
8
|
+
pluginManager: PluginManager;
|
|
9
|
+
}): JSX.Element;
|
|
10
|
+
declare const _default: typeof InstalledPlugin;
|
|
11
|
+
export default _default;
|
|
@@ -1,9 +1,9 @@
|
|
|
1
|
-
/// <reference types="react" />
|
|
2
|
-
import PluginManager from '@jbrowse/core/PluginManager';
|
|
3
|
-
import { PluginStoreModel } from '../model';
|
|
4
|
-
declare function InstalledPluginsList({ pluginManager, model, }: {
|
|
5
|
-
pluginManager: PluginManager;
|
|
6
|
-
model: PluginStoreModel;
|
|
7
|
-
}): JSX.Element;
|
|
8
|
-
declare const _default: typeof InstalledPluginsList;
|
|
9
|
-
export default _default;
|
|
1
|
+
/// <reference types="react" />
|
|
2
|
+
import PluginManager from '@jbrowse/core/PluginManager';
|
|
3
|
+
import { PluginStoreModel } from '../model';
|
|
4
|
+
declare function InstalledPluginsList({ pluginManager, model, }: {
|
|
5
|
+
pluginManager: PluginManager;
|
|
6
|
+
model: PluginStoreModel;
|
|
7
|
+
}): JSX.Element;
|
|
8
|
+
declare const _default: typeof InstalledPluginsList;
|
|
9
|
+
export default _default;
|
|
@@ -1,10 +1,10 @@
|
|
|
1
|
-
/// <reference types="react" />
|
|
2
|
-
import { JBrowsePlugin } from '@jbrowse/core/util/types';
|
|
3
|
-
import { PluginStoreModel } from '../model';
|
|
4
|
-
declare function PluginCard({ plugin, model, adminMode, }: {
|
|
5
|
-
plugin: JBrowsePlugin;
|
|
6
|
-
model: PluginStoreModel;
|
|
7
|
-
adminMode: boolean;
|
|
8
|
-
}): JSX.Element;
|
|
9
|
-
declare const _default: typeof PluginCard;
|
|
10
|
-
export default _default;
|
|
1
|
+
/// <reference types="react" />
|
|
2
|
+
import { JBrowsePlugin } from '@jbrowse/core/util/types';
|
|
3
|
+
import { PluginStoreModel } from '../model';
|
|
4
|
+
declare function PluginCard({ plugin, model, adminMode, }: {
|
|
5
|
+
plugin: JBrowsePlugin;
|
|
6
|
+
model: PluginStoreModel;
|
|
7
|
+
adminMode: boolean;
|
|
8
|
+
}): JSX.Element;
|
|
9
|
+
declare const _default: typeof PluginCard;
|
|
10
|
+
export default _default;
|
|
@@ -1,7 +1,7 @@
|
|
|
1
|
-
/// <reference types="react" />
|
|
2
|
-
import { PluginStoreModel } from '../model';
|
|
3
|
-
declare function PluginStoreWidget({ model }: {
|
|
4
|
-
model: PluginStoreModel;
|
|
5
|
-
}): JSX.Element;
|
|
6
|
-
declare const _default: typeof PluginStoreWidget;
|
|
7
|
-
export default _default;
|
|
1
|
+
/// <reference types="react" />
|
|
2
|
+
import { PluginStoreModel } from '../model';
|
|
3
|
+
declare function PluginStoreWidget({ model }: {
|
|
4
|
+
model: PluginStoreModel;
|
|
5
|
+
}): JSX.Element;
|
|
6
|
+
declare const _default: typeof PluginStoreWidget;
|
|
7
|
+
export default _default;
|
|
@@ -1,3 +1,3 @@
|
|
|
1
|
-
export { default as ReactComponent } from "./components/PluginStoreWidget";
|
|
2
|
-
export { default as stateModelFactory } from "./model";
|
|
3
|
-
export const configSchema: import("@jbrowse/core/configuration").AnyConfigurationSchemaType;
|
|
1
|
+
export { default as ReactComponent } from "./components/PluginStoreWidget";
|
|
2
|
+
export { default as stateModelFactory } from "./model";
|
|
3
|
+
export const configSchema: import("@jbrowse/core/configuration").AnyConfigurationSchemaType;
|
|
@@ -1,13 +1,13 @@
|
|
|
1
|
-
import { Instance } from 'mobx-state-tree';
|
|
2
|
-
import PluginManager from '@jbrowse/core/PluginManager';
|
|
3
|
-
export default function f(pluginManager: PluginManager): import("mobx-state-tree").IModelType<{
|
|
4
|
-
id: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").ISimpleType<string>, [undefined]>;
|
|
5
|
-
type: import("mobx-state-tree").ISimpleType<"PluginStoreWidget">;
|
|
6
|
-
filterText: import("mobx-state-tree").IType<string | undefined, string, string>;
|
|
7
|
-
view: import("mobx-state-tree").IMaybe<import("mobx-state-tree").IReferenceType<import("mobx-state-tree").IAnyType>>;
|
|
8
|
-
}, {
|
|
9
|
-
clearFilterText(): void;
|
|
10
|
-
setFilterText(newText: string): void;
|
|
11
|
-
}, import("mobx-state-tree")._NotCustomized, import("mobx-state-tree")._NotCustomized>;
|
|
12
|
-
export declare type PluginStoreStateModel = ReturnType<typeof f>;
|
|
13
|
-
export declare type PluginStoreModel = Instance<PluginStoreStateModel>;
|
|
1
|
+
import { Instance } from 'mobx-state-tree';
|
|
2
|
+
import PluginManager from '@jbrowse/core/PluginManager';
|
|
3
|
+
export default function f(pluginManager: PluginManager): import("mobx-state-tree").IModelType<{
|
|
4
|
+
id: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").ISimpleType<string>, [undefined]>;
|
|
5
|
+
type: import("mobx-state-tree").ISimpleType<"PluginStoreWidget">;
|
|
6
|
+
filterText: import("mobx-state-tree").IType<string | undefined, string, string>;
|
|
7
|
+
view: import("mobx-state-tree").IMaybe<import("mobx-state-tree").IReferenceType<import("mobx-state-tree").IAnyType>>;
|
|
8
|
+
}, {
|
|
9
|
+
clearFilterText(): void;
|
|
10
|
+
setFilterText(newText: string): void;
|
|
11
|
+
}, import("mobx-state-tree")._NotCustomized, import("mobx-state-tree")._NotCustomized>;
|
|
12
|
+
export declare type PluginStoreStateModel = ReturnType<typeof f>;
|
|
13
|
+
export declare type PluginStoreModel = Instance<PluginStoreStateModel>;
|
|
@@ -1,6 +1,6 @@
|
|
|
1
|
-
/// <reference types="react" />
|
|
2
|
-
declare const SetDefaultSession: ({ rootModel, onClose }: {
|
|
3
|
-
rootModel?: unknown;
|
|
4
|
-
onClose: () => void;
|
|
5
|
-
}) => JSX.Element | null;
|
|
6
|
-
export default SetDefaultSession;
|
|
1
|
+
/// <reference types="react" />
|
|
2
|
+
declare const SetDefaultSession: ({ rootModel, onClose }: {
|
|
3
|
+
rootModel?: unknown;
|
|
4
|
+
onClose: () => void;
|
|
5
|
+
}) => JSX.Element | null;
|
|
6
|
+
export default SetDefaultSession;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
export { default } from './SetDefaultSession';
|
|
1
|
+
export { default } from './SetDefaultSession';
|