pdbe-molstar
Version:
Molstar implementation for PDBe
31 lines (30 loc) • 922 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
exports.PDBeLeftPanelControls = exports.DefaultLeftPanelControls = void 0;
const core_1 = require("./core");
const tabs_1 = require("./tabs");
/** Left panel in core Molstar */
exports.DefaultLeftPanelControls = (0, core_1.LeftPanel)({
tabsTop: [
tabs_1.CoreLeftPanelTabs.root,
tabs_1.CoreLeftPanelTabs.data,
tabs_1.CoreLeftPanelTabs.states,
tabs_1.CoreLeftPanelTabs.help,
tabs_1.PDBeLeftPanelTabs.segments,
],
tabsBottom: [
tabs_1.CoreLeftPanelTabs.settings,
],
defaultTab: 'none',
});
/** Left panel in PDBe Molstar */
exports.PDBeLeftPanelControls = (0, core_1.LeftPanel)({
tabsTop: [
tabs_1.CoreLeftPanelTabs.help,
tabs_1.PDBeLeftPanelTabs.segments,
],
tabsBottom: [
tabs_1.CoreLeftPanelTabs.settings,
],
defaultTab: 'none',
});