UNPKG

@umbraco-ui/uui-table

Version:

A basic loader element

14 lines (13 loc) 594 B
import { LitElement } from 'lit'; /** * Table column element. Equivalent of native col. Any styles you apply to it will be applied to the corresponding column in the table. Must be a child of uui-table. If you want to have unstyled column between two styled columns put this element into the markup without any styles applied to it. * @element uui-table-column */ export declare class UUITableColumnElement extends LitElement { static styles: import("lit").CSSResult[]; } declare global { interface HTMLElementTagNameMap { 'uui-table-column': UUITableColumnElement; } }