UNPKG

@georapbox/a-tab-group

Version:

A custom element to create a group of tabs and tab panels.

19 lines 557 B
/** * @summary This is a panel for a `<a-tab-group>` tab panel. * @documentation https://github.com/georapbox/a-tab-group * * @tagname a-tab-panel * @extends HTMLElement * * @csspart base - The component's base wrapper. * * @slot - The content of the tab panel. */ export class ATabPanel extends HTMLElement { static defineCustomElement(elementName?: string): void; /** * Lifecycle method that is called when the element is first connected to the DOM. */ connectedCallback(): void; } //# sourceMappingURL=a-tab-panel.d.ts.map