@kor-ui/kor
Version:
Web components library containing lightweight, ready-to-use and framework-agnostic User Interface elements.
14 lines (13 loc) • 548 B
TypeScript
import { LitElement } from 'lit';
/**
* @prop {'horizontal'|'vertical'} orientation - Defines the orientation of the component. Possible values are `horizontal` and `vertical`.
*
* @slot - Hosts kor-tab-items.
*/
export declare class korTabs extends LitElement {
orientation: 'horizontal' | 'vertical';
static get styles(): import("lit").CSSResultGroup[];
render(): import("lit-html").TemplateResult<1>;
handleOrientation(): void;
attributeChangedCallback(name: string, oldval: string, newval: string): void;
}