@jbrowse/plugin-data-management 2.10.3 → 2.11.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/ConnectionTypeSelect.d.ts +1 -1
- package/dist/AddConnectionWidget/index.d.ts +1 -2
- package/dist/AddConnectionWidget/index.js +3 -2
- package/dist/AddTrackWidget/index.d.ts +1 -2
- package/dist/AddTrackWidget/index.js +3 -2
- package/dist/AssemblyManager/AssemblyEditor.d.ts +1 -5
- package/dist/HierarchicalTrackSelectorWidget/components/HierarchicalFab.d.ts +1 -1
- package/dist/HierarchicalTrackSelectorWidget/components/HierarchicalFab.js +2 -2
- package/dist/HierarchicalTrackSelectorWidget/components/HierarchicalTrackSelector.d.ts +1 -1
- package/dist/HierarchicalTrackSelectorWidget/components/HierarchicalTrackSelector.js +1 -1
- package/dist/HierarchicalTrackSelectorWidget/components/dialogs/CloseConnectionDialog.d.ts +4 -4
- package/dist/HierarchicalTrackSelectorWidget/components/faceted/FacetedSelector.js +11 -11
- package/dist/HierarchicalTrackSelectorWidget/components/tree/DropdownTrackSelector.d.ts +1 -1
- package/dist/HierarchicalTrackSelectorWidget/components/tree/TrackLabelMenu.d.ts +2 -2
- package/dist/HierarchicalTrackSelectorWidget/index.d.ts +1 -2
- package/dist/HierarchicalTrackSelectorWidget/index.js +3 -2
- package/dist/HierarchicalTrackSelectorWidget/model.d.ts +15 -39
- package/dist/HierarchicalTrackSelectorWidget/model.js +98 -89
- package/dist/HierarchicalTrackSelectorWidget/util.d.ts +1 -1
- package/dist/HierarchicalTrackSelectorWidget/util.js +4 -3
- package/dist/PluginStoreWidget/index.d.ts +1 -2
- package/dist/PluginStoreWidget/index.js +3 -2
- package/dist/index.d.ts +1 -1
- package/dist/index.js +2 -2
- package/dist/ucsc-trackhub/doConnect.js +1 -1
- package/dist/ucsc-trackhub/index.d.ts +1 -2
- package/dist/ucsc-trackhub/index.js +3 -2
- package/esm/AddConnectionWidget/components/ConnectionTypeSelect.d.ts +1 -1
- package/esm/AddConnectionWidget/index.d.ts +1 -2
- package/esm/AddConnectionWidget/index.js +2 -2
- package/esm/AddTrackWidget/index.d.ts +1 -2
- package/esm/AddTrackWidget/index.js +2 -2
- package/esm/AssemblyManager/AssemblyEditor.d.ts +1 -5
- package/esm/HierarchicalTrackSelectorWidget/components/HierarchicalFab.d.ts +1 -1
- package/esm/HierarchicalTrackSelectorWidget/components/HierarchicalFab.js +2 -2
- package/esm/HierarchicalTrackSelectorWidget/components/HierarchicalTrackSelector.d.ts +1 -1
- package/esm/HierarchicalTrackSelectorWidget/components/HierarchicalTrackSelector.js +1 -1
- package/esm/HierarchicalTrackSelectorWidget/components/dialogs/CloseConnectionDialog.d.ts +4 -4
- package/esm/HierarchicalTrackSelectorWidget/components/faceted/FacetedSelector.js +11 -11
- package/esm/HierarchicalTrackSelectorWidget/components/tree/DropdownTrackSelector.d.ts +1 -1
- package/esm/HierarchicalTrackSelectorWidget/components/tree/TrackLabelMenu.d.ts +2 -2
- package/esm/HierarchicalTrackSelectorWidget/index.d.ts +1 -2
- package/esm/HierarchicalTrackSelectorWidget/index.js +2 -2
- package/esm/HierarchicalTrackSelectorWidget/model.d.ts +15 -39
- package/esm/HierarchicalTrackSelectorWidget/model.js +99 -90
- package/esm/HierarchicalTrackSelectorWidget/util.d.ts +1 -1
- package/esm/HierarchicalTrackSelectorWidget/util.js +4 -3
- package/esm/PluginStoreWidget/index.d.ts +1 -2
- package/esm/PluginStoreWidget/index.js +2 -2
- package/esm/index.d.ts +1 -1
- package/esm/index.js +1 -1
- package/esm/ucsc-trackhub/doConnect.js +1 -1
- package/esm/ucsc-trackhub/index.d.ts +1 -2
- package/esm/ucsc-trackhub/index.js +2 -2
- package/package.json +3 -3
package/dist/index.d.ts
CHANGED
|
@@ -5,7 +5,7 @@ declare const AssemblyManager: import("react").LazyExoticComponent<({ rootModel,
|
|
|
5
5
|
rootModel: any;
|
|
6
6
|
onClose: (arg: boolean) => void;
|
|
7
7
|
}) => import("react").JSX.Element>;
|
|
8
|
-
export default class extends Plugin {
|
|
8
|
+
export default class DataManagementPlugin extends Plugin {
|
|
9
9
|
name: string;
|
|
10
10
|
exports: {
|
|
11
11
|
AssemblyManager: import("react").LazyExoticComponent<({ rootModel, onClose, }: {
|
package/dist/index.js
CHANGED
|
@@ -36,7 +36,7 @@ const PluginStoreWidget_1 = __importDefault(require("./PluginStoreWidget"));
|
|
|
36
36
|
const HierarchicalTrackSelectorWidget_1 = __importDefault(require("./HierarchicalTrackSelectorWidget"));
|
|
37
37
|
const AssemblyManager = (0, react_1.lazy)(() => Promise.resolve().then(() => __importStar(require('./AssemblyManager'))));
|
|
38
38
|
exports.AssemblyManager = AssemblyManager;
|
|
39
|
-
class
|
|
39
|
+
class DataManagementPlugin extends Plugin_1.default {
|
|
40
40
|
constructor() {
|
|
41
41
|
super(...arguments);
|
|
42
42
|
this.name = 'DataManagementPlugin';
|
|
@@ -53,4 +53,4 @@ class default_1 extends Plugin_1.default {
|
|
|
53
53
|
}
|
|
54
54
|
configure(_pluginManager) { }
|
|
55
55
|
}
|
|
56
|
-
exports.default =
|
|
56
|
+
exports.default = DataManagementPlugin;
|
|
@@ -124,7 +124,7 @@ async function doConnect(self) {
|
|
|
124
124
|
}
|
|
125
125
|
catch (e) {
|
|
126
126
|
console.error(e);
|
|
127
|
-
session.
|
|
127
|
+
session.notifyError(`${(0, configuration_1.getConf)(self, 'name')}: "${e}"`, e);
|
|
128
128
|
(_a = session.breakConnection) === null || _a === void 0 ? void 0 : _a.call(session, self.configuration);
|
|
129
129
|
}
|
|
130
130
|
}
|
|
@@ -6,7 +6,7 @@ Object.defineProperty(exports, "__esModule", { value: true });
|
|
|
6
6
|
const pluggableElementTypes_1 = require("@jbrowse/core/pluggableElementTypes");
|
|
7
7
|
const model_1 = __importDefault(require("./model"));
|
|
8
8
|
const configSchema_1 = __importDefault(require("./configSchema"));
|
|
9
|
-
|
|
9
|
+
function UCSCTrackHubConnectionF(pluginManager) {
|
|
10
10
|
pluginManager.addConnectionType(() => new pluggableElementTypes_1.ConnectionType({
|
|
11
11
|
name: 'UCSCTrackHubConnection',
|
|
12
12
|
configSchema: configSchema_1.default,
|
|
@@ -15,4 +15,5 @@ exports.default = (pluginManager) => {
|
|
|
15
15
|
description: 'A track or assembly hub in the Track Hub format',
|
|
16
16
|
url: '//genome.ucsc.edu/goldenPath/help/hgTrackHubHelp.html#Intro',
|
|
17
17
|
}));
|
|
18
|
-
}
|
|
18
|
+
}
|
|
19
|
+
exports.default = UCSCTrackHubConnectionF;
|
|
@@ -2,7 +2,7 @@ import React from 'react';
|
|
|
2
2
|
import { ConnectionType } from '@jbrowse/core/pluggableElementTypes';
|
|
3
3
|
declare const ConnectionTypeSelect: ({ connectionTypeChoices, connectionType, setConnectionType, }: {
|
|
4
4
|
connectionTypeChoices: ConnectionType[];
|
|
5
|
-
connectionType?: ConnectionType
|
|
5
|
+
connectionType?: ConnectionType;
|
|
6
6
|
setConnectionType: (c?: ConnectionType) => void;
|
|
7
7
|
}) => React.JSX.Element;
|
|
8
8
|
export default ConnectionTypeSelect;
|
|
@@ -3,7 +3,7 @@ import { WidgetType } from '@jbrowse/core/pluggableElementTypes';
|
|
|
3
3
|
import { lazy } from 'react';
|
|
4
4
|
import stateModel from './model';
|
|
5
5
|
const configSchema = ConfigurationSchema('AddConnectionWidget', {});
|
|
6
|
-
export default (pluginManager)
|
|
6
|
+
export default function AddConnectionWidgetF(pluginManager) {
|
|
7
7
|
pluginManager.addWidgetType(() => {
|
|
8
8
|
return new WidgetType({
|
|
9
9
|
name: 'AddConnectionWidget',
|
|
@@ -13,4 +13,4 @@ export default (pluginManager) => {
|
|
|
13
13
|
ReactComponent: lazy(() => import('./components/AddConnectionWidget')),
|
|
14
14
|
});
|
|
15
15
|
});
|
|
16
|
-
}
|
|
16
|
+
}
|
|
@@ -3,7 +3,7 @@ import { WidgetType } from '@jbrowse/core/pluggableElementTypes';
|
|
|
3
3
|
import { lazy } from 'react';
|
|
4
4
|
import stateModelFactory from './model';
|
|
5
5
|
const configSchema = ConfigurationSchema('AddTrackWidget', {});
|
|
6
|
-
export default (pluginManager)
|
|
6
|
+
export default function AddTrackWidgetF(pluginManager) {
|
|
7
7
|
pluginManager.addWidgetType(() => {
|
|
8
8
|
return new WidgetType({
|
|
9
9
|
name: 'AddTrackWidget',
|
|
@@ -13,4 +13,4 @@ export default (pluginManager) => {
|
|
|
13
13
|
ReactComponent: lazy(() => import('./components/AddTrackWidget')),
|
|
14
14
|
});
|
|
15
15
|
});
|
|
16
|
-
}
|
|
16
|
+
}
|
|
@@ -1,10 +1,6 @@
|
|
|
1
1
|
import React from 'react';
|
|
2
2
|
import { AnyConfigurationModel } from '@jbrowse/core/configuration';
|
|
3
3
|
declare const AssemblyEditor: ({ assembly, }: {
|
|
4
|
-
assembly?:
|
|
5
|
-
[x: string]: any;
|
|
6
|
-
} & import("mobx-state-tree/dist/internal").NonEmptyObject & {
|
|
7
|
-
setSubschema(slotName: string, data: unknown): any;
|
|
8
|
-
} & import("mobx-state-tree").IStateTreeNode<import("@jbrowse/core/configuration").AnyConfigurationSchemaType>) | undefined;
|
|
4
|
+
assembly?: AnyConfigurationModel;
|
|
9
5
|
}) => React.JSX.Element;
|
|
10
6
|
export default AssemblyEditor;
|
|
@@ -21,7 +21,7 @@ const HierarchicalFab = observer(function ({ model, }) {
|
|
|
21
21
|
}
|
|
22
22
|
const hasConnections = isSessionModelWithConnections(session);
|
|
23
23
|
const hasAddTrack = isSessionWithAddTracks(session);
|
|
24
|
-
return
|
|
24
|
+
return hasAddTrack || hasConnections ? (React.createElement(React.Fragment, null,
|
|
25
25
|
React.createElement(Fab, { color: "secondary", className: classes.fab, onClick: event => setAnchorEl(event.currentTarget) },
|
|
26
26
|
React.createElement(AddIcon, null)),
|
|
27
27
|
React.createElement(Menu, { anchorEl: anchorEl, open: Boolean(anchorEl), onClose: () => setAnchorEl(null) },
|
|
@@ -38,6 +38,6 @@ const HierarchicalFab = observer(function ({ model, }) {
|
|
|
38
38
|
view: model.view.id,
|
|
39
39
|
}));
|
|
40
40
|
}
|
|
41
|
-
} }, "Add track")) : null))) : null
|
|
41
|
+
} }, "Add track")) : null))) : null;
|
|
42
42
|
});
|
|
43
43
|
export default HierarchicalFab;
|
|
@@ -10,7 +10,7 @@ const AutoSizedHierarchicalTree = ({ tree, model, offset, }) => {
|
|
|
10
10
|
return typeof jest === 'undefined' ? (React.createElement(AutoSizer, { disableWidth: true }, args => (React.createElement(HierarchicalTree, { height: (args.height || offset) - offset, model: model, tree: tree })))) : (React.createElement(HierarchicalTree, { height: 9000, model: model, tree: tree }));
|
|
11
11
|
};
|
|
12
12
|
const Wrapper = ({ overrideDimensions, children, }) => {
|
|
13
|
-
return overrideDimensions ? (React.createElement("div", { style: { ...overrideDimensions } }, children)) : (
|
|
13
|
+
return overrideDimensions ? (React.createElement("div", { style: { ...overrideDimensions } }, children)) : (children);
|
|
14
14
|
};
|
|
15
15
|
const HierarchicalTrackSelectorContainer = observer(function ({ model, toolbarHeight, overrideDimensions, }) {
|
|
16
16
|
return (React.createElement(Wrapper, { overrideDimensions: overrideDimensions },
|
|
@@ -1,10 +1,10 @@
|
|
|
1
1
|
import React from 'react';
|
|
2
2
|
declare const CloseConnectionDialog: ({ modalInfo, onClose, }: {
|
|
3
3
|
modalInfo?: {
|
|
4
|
-
name?: string
|
|
5
|
-
dereferenceTypeCount?: Record<string, number
|
|
6
|
-
safelyBreakConnection?: (
|
|
7
|
-
}
|
|
4
|
+
name?: string;
|
|
5
|
+
dereferenceTypeCount?: Record<string, number>;
|
|
6
|
+
safelyBreakConnection?: () => void;
|
|
7
|
+
};
|
|
8
8
|
onClose: () => void;
|
|
9
9
|
}) => React.JSX.Element;
|
|
10
10
|
export default CloseConnectionDialog;
|
|
@@ -38,7 +38,7 @@ const FacetedSelector = observer(function FacetedSelector({ model, }) {
|
|
|
38
38
|
{
|
|
39
39
|
field: 'name',
|
|
40
40
|
hideable: false,
|
|
41
|
-
renderCell:
|
|
41
|
+
renderCell: params => {
|
|
42
42
|
const { value, row } = params;
|
|
43
43
|
const { id, conf } = row;
|
|
44
44
|
return (React.createElement("div", { className: classes.cell },
|
|
@@ -49,29 +49,29 @@ const FacetedSelector = observer(function FacetedSelector({ model, }) {
|
|
|
49
49
|
},
|
|
50
50
|
...filteredNonMetadataKeys.map(e => {
|
|
51
51
|
var _a;
|
|
52
|
-
return
|
|
52
|
+
return {
|
|
53
53
|
field: e,
|
|
54
54
|
width: (_a = widthsDebounced[e]) !== null && _a !== void 0 ? _a : 100,
|
|
55
|
-
renderCell:
|
|
55
|
+
renderCell: params => {
|
|
56
56
|
const val = params.value;
|
|
57
|
-
return val ? React.createElement(SanitizedHTML, { className: classes.cell, html: val }) : '';
|
|
57
|
+
return val ? (React.createElement(SanitizedHTML, { className: classes.cell, html: val })) : ('');
|
|
58
58
|
},
|
|
59
|
-
}
|
|
59
|
+
};
|
|
60
60
|
}),
|
|
61
61
|
...filteredMetadataKeys.map(e => {
|
|
62
62
|
var _a;
|
|
63
|
-
return
|
|
63
|
+
return {
|
|
64
64
|
field: `metadata.${e}`,
|
|
65
65
|
headerName: ['name', ...filteredNonMetadataKeys].includes(e)
|
|
66
66
|
? `${e} (from metadata)`
|
|
67
67
|
: e,
|
|
68
68
|
width: (_a = widthsDebounced['metadata.' + e]) !== null && _a !== void 0 ? _a : 100,
|
|
69
|
-
valueGetter: (
|
|
70
|
-
renderCell:
|
|
71
|
-
const val = params.
|
|
72
|
-
return val ? React.createElement(SanitizedHTML, { className: classes.cell, html: val }) : '';
|
|
69
|
+
valueGetter: (_, row) => `${row.metadata[e]}`,
|
|
70
|
+
renderCell: params => {
|
|
71
|
+
const val = params.value;
|
|
72
|
+
return val ? (React.createElement(SanitizedHTML, { className: classes.cell, html: val })) : ('');
|
|
73
73
|
},
|
|
74
|
-
}
|
|
74
|
+
};
|
|
75
75
|
}),
|
|
76
76
|
];
|
|
77
77
|
return (React.createElement(React.Fragment, null,
|
|
@@ -6,7 +6,7 @@ declare const DropdownTrackSelector: ({ model, tracks, extraMenuItems, children,
|
|
|
6
6
|
model: HierarchicalTrackSelectorModel;
|
|
7
7
|
tracks: AnyConfigurationModel[];
|
|
8
8
|
extraMenuItems: MenuItem[];
|
|
9
|
-
onClick?: (
|
|
9
|
+
onClick?: () => void;
|
|
10
10
|
children: React.ReactElement;
|
|
11
11
|
}) => React.JSX.Element | null;
|
|
12
12
|
export default DropdownTrackSelector;
|
|
@@ -4,9 +4,9 @@ import { HierarchicalTrackSelectorModel } from '../../model';
|
|
|
4
4
|
declare const TrackLabelMenu: ({ id, trackId, stopPropagation, model, setOpen, conf, }: {
|
|
5
5
|
id: string;
|
|
6
6
|
trackId: string;
|
|
7
|
-
stopPropagation?: boolean
|
|
7
|
+
stopPropagation?: boolean;
|
|
8
8
|
conf: AnyConfigurationModel;
|
|
9
|
-
setOpen?: (
|
|
9
|
+
setOpen?: (arg: boolean) => void;
|
|
10
10
|
model: HierarchicalTrackSelectorModel;
|
|
11
11
|
}) => React.JSX.Element;
|
|
12
12
|
export default TrackLabelMenu;
|
|
@@ -1,5 +1,4 @@
|
|
|
1
1
|
import PluginManager from '@jbrowse/core/PluginManager';
|
|
2
|
-
|
|
3
|
-
export default _default;
|
|
2
|
+
export default function HierarchicalTrackSelectorWidgetF(pluginManager: PluginManager): void;
|
|
4
3
|
export { type HierarchicalTrackSelectorModel, default as stateModelFactory, } from './model';
|
|
5
4
|
export { default as configSchema } from './configSchema';
|
|
@@ -2,7 +2,7 @@ import stateModelFactory from './model';
|
|
|
2
2
|
import configSchema from './configSchema';
|
|
3
3
|
import { WidgetType } from '@jbrowse/core/pluggableElementTypes';
|
|
4
4
|
import { lazy } from 'react';
|
|
5
|
-
export default (pluginManager)
|
|
5
|
+
export default function HierarchicalTrackSelectorWidgetF(pluginManager) {
|
|
6
6
|
pluginManager.addWidgetType(() => {
|
|
7
7
|
return new WidgetType({
|
|
8
8
|
name: 'HierarchicalTrackSelectorWidget',
|
|
@@ -12,6 +12,6 @@ export default (pluginManager) => {
|
|
|
12
12
|
ReactComponent: lazy(() => import('./components/HierarchicalTrackSelector')),
|
|
13
13
|
});
|
|
14
14
|
});
|
|
15
|
-
}
|
|
15
|
+
}
|
|
16
16
|
export { default as stateModelFactory, } from './model';
|
|
17
17
|
export { default as configSchema } from './configSchema';
|
|
@@ -14,22 +14,6 @@ export default function stateTreeFactory(pluginManager: PluginManager): import("
|
|
|
14
14
|
* #property
|
|
15
15
|
*/
|
|
16
16
|
type: import("mobx-state-tree").ISimpleType<"HierarchicalTrackSelectorWidget">;
|
|
17
|
-
/**
|
|
18
|
-
* #property
|
|
19
|
-
*/
|
|
20
|
-
initialized: import("mobx-state-tree").IMaybe<import("mobx-state-tree").ISimpleType<boolean>>;
|
|
21
|
-
/**
|
|
22
|
-
* #property
|
|
23
|
-
*/
|
|
24
|
-
collapsed: import("mobx-state-tree").IMapType<import("mobx-state-tree").ISimpleType<boolean>>;
|
|
25
|
-
/**
|
|
26
|
-
* #property
|
|
27
|
-
*/
|
|
28
|
-
sortTrackNames: import("mobx-state-tree").IMaybe<import("mobx-state-tree").ISimpleType<boolean>>;
|
|
29
|
-
/**
|
|
30
|
-
* #property
|
|
31
|
-
*/
|
|
32
|
-
sortCategories: import("mobx-state-tree").IMaybe<import("mobx-state-tree").ISimpleType<boolean>>;
|
|
33
17
|
/**
|
|
34
18
|
* #property
|
|
35
19
|
*/
|
|
@@ -45,13 +29,9 @@ export default function stateTreeFactory(pluginManager: PluginManager): import("
|
|
|
45
29
|
panelWidth: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").ISimpleType<number>, [undefined]>;
|
|
46
30
|
}, {
|
|
47
31
|
visible: Record<string, boolean>;
|
|
48
|
-
widths: Record<string, number | undefined>;
|
|
49
|
-
* #property
|
|
50
|
-
*/
|
|
32
|
+
widths: Record<string, number | undefined>;
|
|
51
33
|
useShoppingCart: boolean;
|
|
52
|
-
filters: import("mobx").ObservableMap<string, string[]>;
|
|
53
|
-
* #property
|
|
54
|
-
*/
|
|
34
|
+
filters: import("mobx").ObservableMap<string, string[]>;
|
|
55
35
|
} & {
|
|
56
36
|
setFilter(key: string, value: string[]): void;
|
|
57
37
|
setPanelWidth(width: number): void;
|
|
@@ -111,6 +91,9 @@ export default function stateTreeFactory(pluginManager: PluginManager): import("
|
|
|
111
91
|
} & import("mobx-state-tree/dist/internal").NonEmptyObject & {
|
|
112
92
|
setSubschema(slotName: string, data: unknown): any;
|
|
113
93
|
} & import("mobx-state-tree").IStateTreeNode<import("@jbrowse/core/configuration").AnyConfigurationSchemaType>)[];
|
|
94
|
+
sortTrackNames: boolean;
|
|
95
|
+
sortCategories: boolean;
|
|
96
|
+
collapsed: import("mobx").ObservableMap<string, boolean>;
|
|
114
97
|
filterText: string;
|
|
115
98
|
recentlyUsedCounter: number;
|
|
116
99
|
favoritesCounter: number;
|
|
@@ -135,6 +118,10 @@ export default function stateTreeFactory(pluginManager: PluginManager): import("
|
|
|
135
118
|
* #getter
|
|
136
119
|
*/
|
|
137
120
|
readonly recentlyUsedSet: Set<string>;
|
|
121
|
+
/**
|
|
122
|
+
* #getter
|
|
123
|
+
*/
|
|
124
|
+
readonly assemblyNames: string[];
|
|
138
125
|
} & {
|
|
139
126
|
/**
|
|
140
127
|
* #action
|
|
@@ -212,6 +199,10 @@ export default function stateTreeFactory(pluginManager: PluginManager): import("
|
|
|
212
199
|
* #action
|
|
213
200
|
*/
|
|
214
201
|
expandAllCategories(): void;
|
|
202
|
+
/**
|
|
203
|
+
* #action
|
|
204
|
+
*/
|
|
205
|
+
setCollapsedCategories(str: [string, boolean][]): void;
|
|
215
206
|
/**
|
|
216
207
|
* #action
|
|
217
208
|
*/
|
|
@@ -241,24 +232,11 @@ export default function stateTreeFactory(pluginManager: PluginManager): import("
|
|
|
241
232
|
/**
|
|
242
233
|
* #getter
|
|
243
234
|
*/
|
|
244
|
-
readonly
|
|
245
|
-
} & {
|
|
246
|
-
/**
|
|
247
|
-
* #getter
|
|
248
|
-
*/
|
|
249
|
-
readonly recentlyUsedLocalStorageKey: string;
|
|
235
|
+
readonly activeSortTrackNames: boolean;
|
|
250
236
|
/**
|
|
251
237
|
* #getter
|
|
252
238
|
*/
|
|
253
|
-
readonly
|
|
254
|
-
/**
|
|
255
|
-
* #getter
|
|
256
|
-
*/
|
|
257
|
-
readonly activeSortTrackNames: any;
|
|
258
|
-
/**
|
|
259
|
-
* #getter
|
|
260
|
-
*/
|
|
261
|
-
readonly activeSortCategories: any;
|
|
239
|
+
readonly activeSortCategories: boolean;
|
|
262
240
|
/**
|
|
263
241
|
* #getter
|
|
264
242
|
* filter out tracks that don't match the current assembly/display types
|
|
@@ -344,8 +322,6 @@ export default function stateTreeFactory(pluginManager: PluginManager): import("
|
|
|
344
322
|
* #action
|
|
345
323
|
*/
|
|
346
324
|
collapseTopLevelCategories(): void;
|
|
347
|
-
} & {
|
|
348
|
-
afterCreate(): void;
|
|
349
325
|
} & {
|
|
350
326
|
/**
|
|
351
327
|
* #getter
|