survey-creator-core
Version:
A framework-independent core package of the SurveyJS Survey Creator component. With Survey Creator, you can visually design complex, interactive JSON forms and surveys in a drag-and-drop interface.
17 lines (16 loc) • 664 B
TypeScript
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;
}