dap-design-system
Version:
Official design system for the DÁP (dap.gov.hu)
24 lines (23 loc) • 706 B
TypeScript
import { DdsElement } from '../../internal/dds-hu-element';
/**
* `dap-ds-tab`
* @summary A tab item component. It is used in dap-ds-tab-group component slot to create a tab item.
* @element dap-ds-tab
* @title - Tab
* *
* @slot - The tab title template.
* @slot content - The tab content.
*
* @csspart base - The main tab content container.
*/
export default class DapDSTab extends DdsElement {
static tagName: string;
static readonly styles: import('lit').CSSResult;
/** The tab id. Required */
tabId: string;
/** The disabled state of the tab. */
disabled: boolean;
private _selected;
firstUpdated(): void;
render(): import('lit-html').TemplateResult<1>;
}