@sandlada/mdc
Version:
@sandlada/mdc is an open source component library that follows the Material Design 3 design specifications.
24 lines • 678 B
TypeScript
import { BaseTabs } from './internal/base-tabs';
declare global {
interface HTMLElementTagNameMap {
'mdc-tabs': Tabs;
}
}
/**
* @element mdc-tabs
*
* A tab bar that manages single selection across its `mdc-tab` children and
* animates the active indicator between them.
*
* @slot — One or more `mdc-tab` elements.
*
* @fires change — Cancelable. Fires before selection commits; `preventDefault()`
* reverts the selection.
*
* @cssproperty --mdc-tabs-enabled-divider-color
* @cssproperty --mdc-tabs-divider-height
*/
export declare class Tabs extends BaseTabs {
static styles: import("lit").CSSResult;
}
//# sourceMappingURL=tabs.d.ts.map