UNPKG

finpro

Version:
26 lines 664 B
import { CSSResultGroup, LitElement, TemplateResult } from 'lit'; /** * @tag fp-tab-panel * @summary Finpro Tab panel component */ export default class FpTabPanel extends LitElement { static get styles(): CSSResultGroup; private tabGroup; connectedCallback(): void; disconnectedCallback(): void; /** * Name of the linked tab. */ tab: string; /** * This attribute set by `tab-group` to make panel visible or hidden. */ visible: boolean; render(): TemplateResult; } declare global { interface HTMLElementTagNameMap { 'fp-tab-panel': FpTabPanel; } } //# sourceMappingURL=fp-tab-panel.d.ts.map