UNPKG

@metacell/geppetto-meta-client

Version:

Geppetto web frontend. Geppetto is an open-source platform to build web-based tools to visualize and simulate neuroscience data and models.

33 lines (30 loc) 868 B
/* * status can be one of: * - ACTIVE: the user can see the tab content. * - MINIMIZED: the tab is minimized. * - HIDDEN: other tab in the node is currently selected * - MAXIMIZED: the tab is maximized (only one tab can be maximized simultaneously) */ export var WidgetStatus = /*#__PURE__*/function (WidgetStatus) { WidgetStatus["HIDDEN"] = "HIDDEN"; WidgetStatus["ACTIVE"] = "ACTIVE"; WidgetStatus["MAXIMIZED"] = "MAXIMIZED"; WidgetStatus["MINIMIZED"] = "MINIMIZED"; return WidgetStatus; }({}); export var TabsetPosition = /*#__PURE__*/function (TabsetPosition) { TabsetPosition["LEFT"] = "LEFT"; TabsetPosition["RIGHT"] = "RIGHT"; TabsetPosition["TOP"] = "TOP"; TabsetPosition["BOTTOM"] = "BOTTOM"; return TabsetPosition; }({}); /** * Extended Node interface */ /** * Widget interface */ /** * Widget Component interface. */