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

22 lines (21 loc) 687 B
/** * A customizable panel component used to organize content in a structured layout. * * This component provides 'header', 'body', and 'footer' `<slot>` elements for inserting custom HTML. */ export declare class ModusWcPanel { private inheritedAttributes; /** Reference to the host element */ el: HTMLElement; /** Custom CSS class to apply to the outer div. */ customClass?: string; /** Width of the panel in pixels. */ width?: string; /** Height of the panel in pixels. */ height?: string; /** Enable floating mode with elevated shadow. */ floating?: boolean; componentWillLoad(): void; private getClasses; render(): any; }