UNPKG

@nopwdio/ui

Version:
30 lines (29 loc) 808 B
import { LitElement } from "lit"; /** * `ui-cards` is a custom element that arranges its children in a column layout by default. * When the container's width is at least 600px, it switches to a row layout. * * @element ui-cards */ export declare class UiCards extends LitElement { /** * Called when the element is added to a document. * @returns {void} */ connectedCallback(): void; /** * Renders the content of the element. * @returns {import('lit').TemplateResult} */ render(): import("lit-html").TemplateResult<1>; /** * Styles for the `ui-cards` element. * @type {import('lit').CSSResult[]} */ static styles: import("lit").CSSResult[]; } declare global { interface HTMLElementTagNameMap { "ui-cards": UiCards; } }