UNPKG

@trimble-oss/moduswebcomponents

Version:

Modus Web Components is a modern, accessible UI library built with Stencil JS that provides reusable web components following Trimble's Modus design system. This updated version focuses on improved flexibility, enhanced theming options, comprehensive cust

21 lines (20 loc) 602 B
/** * A customizable skeleton component used to create skeletons of various sizes and shapes */ export declare class ModusWcSkeleton { private inheritedAttributes; /** Reference to the host element */ el: HTMLElement; /** Custom CSS class to apply to the inner div. */ customClass?: string; /** The height of the skeleton. */ height: string; /** The shape of the skeleton. */ shape?: 'circle' | 'rectangle'; /** The width of the skeleton. */ width: string; componentWillLoad(): void; private getClasses; private getStyles; render(): any; }