UNPKG

@loadsmart/miranda-wc

Version:

Miranda Web Components component library

58 lines (57 loc) 1.58 kB
import type { PropertyValues } from 'lit'; import { BaseLayout } from '../base-layout'; import type { StackProps } from './stack.types'; export declare class Stack extends BaseLayout implements StackProps { protected static CSSPropertiesPrefix: string; static styles: import("lit").CSSResult[]; static get properties(): { gap: { type: StringConstructor; }; align: { type: StringConstructor; }; justify: { type: StringConstructor; }; padding: { type: StringConstructor; }; paddingX: { type: StringConstructor; attribute: string; }; paddingY: { type: StringConstructor; attribute: string; }; paddingT: { type: StringConstructor; attribute: string; }; paddingB: { type: StringConstructor; attribute: string; }; paddingL: { type: StringConstructor; attribute: string; }; paddingR: { type: StringConstructor; attribute: string; }; }; gap: StackProps['gap']; align: StackProps['align']; justify: StackProps['justify']; getCSSPropertiesPrefix(): string; static define(): void; protected update(changedProperties: PropertyValues<StackProps>): void; render(): import("lit-html").TemplateResult<1>; } declare global { interface HTMLElementTagNameMap { 'm-stack': Stack; } }