UNPKG

survey-creator-core

Version:

Use SurveyJS Creator to create or edit JSON for SurveyJS Form Library.

17 lines (16 loc) 664 B
import { ActionContainer, Base } from "survey-core"; import { SidebarModel } from "./side-bar-model"; import { MenuButton } from "../../utils/actions"; export declare class TabControlModel extends Base { sidePanel: SidebarModel; bottomToolbar: ActionContainer<MenuButton>; expandCollapseAction: MenuButton; onTopToolbarItemCreated: (bar: ActionContainer<MenuButton>) => void; private updateExpandCollapseAction; private createToggleAction; constructor(sidePanel: SidebarModel); private topToolbarValue; get isTopToolbarCreated(): boolean; get topToolbar(): ActionContainer<MenuButton>; get sideBarClassName(): string; }