mbio-ui
Version:
Web components library containing lightweight, ready-to-use and framework-agnostic User Interface elements.
16 lines (15 loc) • 538 B
TypeScript
import { LitElement } from 'lit';
/**
* @prop {Boolean} active - If set to true, a highlight style gets applied.
*
* @slot - Hosts (mbio-table-cells).
*/
export declare class mbioTableRow 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;
}