UNPKG

@siberiaweb/components

Version:
34 lines (24 loc) 617 B
import CSS from "./CSS"; import WebComponent from "@siberiaweb/webcomponent/lib/WebComponent"; /** * Панель вкладок. */ export default class TabPanel extends WebComponent { /** * Наименование компонента. */ public static readonly COMPONENT_NAME = "sw-tab-panel"; /** * @override */ protected firstConnectedCallback() { super.firstConnectedCallback(); this.classList.add( CSS.TAB_PANEL ); } /** * Конструктор. */ constructor() { super(); } }