UNPKG

wj-elements

Version:

WebJET Elements is a modern set of user interface tools harnessing the power of web components designed to simplify web application development.

24 lines (23 loc) 708 B
import { default as WJElement } from '../wje-element/element.js'; /** * `TabPanel` is a custom web component that represents a tab panel. * @summary This element represents a tab panel. * @documentation https://elements.webjet.sk/components/tab-panel * @status stable * @augments {WJElement} * @slot - The default slot for the tab panel. * @tag wje-tab-panel */ export default class TabPanel extends WJElement { /** * Returns the CSS styles for the component. * @static * @returns {CSSStyleSheet} */ static get cssStyleSheet(): CSSStyleSheet; /** * Draws the component for the tab panel. * @returns {DocumentFragment} */ draw(): DocumentFragment; }