@jbrowse/product-core 2.11.2 → 2.12.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/RootModel/BaseRootModel.d.ts +14 -144
- package/dist/RootModel/BaseRootModel.js +2 -3
- package/dist/RootModel/FormatAbout.js +1 -2
- package/dist/RootModel/FormatDetails.js +1 -2
- package/dist/RootModel/HierarchicalConfig.js +1 -2
- package/dist/RootModel/InternetAccounts.js +1 -2
- package/dist/Session/BaseSession.d.ts +10 -8
- package/dist/Session/BaseSession.js +3 -4
- package/dist/Session/Connections.d.ts +29 -71
- package/dist/Session/Connections.js +2 -3
- package/dist/Session/DialogQueue.js +2 -3
- package/dist/Session/DrawerWidgets.js +2 -3
- package/dist/Session/MultipleViews.d.ts +84 -461
- package/dist/Session/MultipleViews.js +2 -3
- package/dist/Session/ReferenceManagement.js +2 -3
- package/dist/Session/SessionTracks.d.ts +69 -525
- package/dist/Session/SessionTracks.js +2 -3
- package/dist/Session/Themes.js +2 -3
- package/dist/Session/Tracks.d.ts +62 -535
- package/dist/Session/Tracks.js +2 -3
- package/dist/rpcWorker.js +1 -2
- package/dist/ui/AboutDialog.js +1 -2
- package/dist/ui/AboutDialogContents.d.ts +3 -2
- package/dist/ui/AboutDialogContents.js +19 -10
- package/dist/ui/FileInfoPanel.js +1 -1
- package/dist/ui/RefNameInfoDialog.d.ts +7 -0
- package/dist/ui/RefNameInfoDialog.js +110 -0
- package/esm/RootModel/BaseRootModel.d.ts +14 -144
- package/esm/Session/BaseSession.d.ts +10 -8
- package/esm/Session/Connections.d.ts +29 -71
- package/esm/Session/MultipleViews.d.ts +84 -461
- package/esm/Session/SessionTracks.d.ts +69 -525
- package/esm/Session/Tracks.d.ts +62 -535
- package/esm/ui/AboutDialogContents.d.ts +3 -2
- package/esm/ui/AboutDialogContents.js +19 -9
- package/esm/ui/RefNameInfoDialog.d.ts +7 -0
- package/esm/ui/RefNameInfoDialog.js +82 -0
- package/package.json +3 -3
|
@@ -1,6 +1,7 @@
|
|
|
1
1
|
"use strict";
|
|
2
2
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
-
exports.
|
|
3
|
+
exports.SessionTracksManagerSessionMixin = SessionTracksManagerSessionMixin;
|
|
4
|
+
exports.isSessionWithSessionTracks = isSessionWithSessionTracks;
|
|
4
5
|
const mobx_state_tree_1 = require("mobx-state-tree");
|
|
5
6
|
// locals
|
|
6
7
|
const Tracks_1 = require("./Tracks");
|
|
@@ -67,9 +68,7 @@ function SessionTracksManagerSessionMixin(pluginManager) {
|
|
|
67
68
|
};
|
|
68
69
|
});
|
|
69
70
|
}
|
|
70
|
-
exports.SessionTracksManagerSessionMixin = SessionTracksManagerSessionMixin;
|
|
71
71
|
/** Type guard for SessionWithSessionTracks */
|
|
72
72
|
function isSessionWithSessionTracks(thing) {
|
|
73
73
|
return (0, BaseSession_1.isBaseSession)(thing) && 'sessionTracks' in thing;
|
|
74
74
|
}
|
|
75
|
-
exports.isSessionWithSessionTracks = isSessionWithSessionTracks;
|
package/dist/Session/Themes.js
CHANGED
|
@@ -1,6 +1,7 @@
|
|
|
1
1
|
"use strict";
|
|
2
2
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
-
exports.
|
|
3
|
+
exports.ThemeManagerSessionMixin = ThemeManagerSessionMixin;
|
|
4
|
+
exports.isSessionWithThemes = isSessionWithThemes;
|
|
4
5
|
const mobx_state_tree_1 = require("mobx-state-tree");
|
|
5
6
|
const configuration_1 = require("@jbrowse/core/configuration");
|
|
6
7
|
const ui_1 = require("@jbrowse/core/ui");
|
|
@@ -56,9 +57,7 @@ function ThemeManagerSessionMixin(_pluginManager) {
|
|
|
56
57
|
},
|
|
57
58
|
}));
|
|
58
59
|
}
|
|
59
|
-
exports.ThemeManagerSessionMixin = ThemeManagerSessionMixin;
|
|
60
60
|
/** Type guard for SessionWithThemes */
|
|
61
61
|
function isSessionWithThemes(session) {
|
|
62
62
|
return 'theme' in session;
|
|
63
63
|
}
|
|
64
|
-
exports.isSessionWithThemes = isSessionWithThemes;
|