igniteui-webcomponents
Version:
Ignite UI for Web Components is a complete library of UI components, giving you the ability to build modern web applications using encapsulation and the concept of reusable components in a dependency-free approach.
22 lines (21 loc) • 568 B
TypeScript
import { LitElement } from 'lit';
/**
* Represents the content of a tab
*
* @element igc-tab-panel
*
* @slot - Renders the content.
*/
export default class IgcTabPanelComponent extends LitElement {
static readonly tagName = "igc-tab-panel";
static styles: import("lit").CSSResult;
static register(): void;
private static readonly increment;
connectedCallback(): void;
protected render(): import("lit-html").TemplateResult<1>;
}
declare global {
interface HTMLElementTagNameMap {
'igc-tab-panel': IgcTabPanelComponent;
}
}