@kor-ui/kor
Version:
Web components library containing lightweight, ready-to-use and framework-agnostic User Interface elements.
16 lines (15 loc) • 536 B
TypeScript
import { LitElement } from 'lit';
/**
* @prop {Boolean} active - If set to true, a highlight style gets applied.
*
* @slot - Hosts (kor-table-cells).
*/
export declare class korTableRow extends LitElement {
active: boolean | undefined;
static get styles(): import("lit").CSSResultGroup[];
render(): import("lit-html").TemplateResult<1>;
attributeChangedCallback(name: string, oldval: string, newval: string): void;
connectedCallback(): void;
handleActive(): void;
handleColumns(): void;
}