@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
16 lines (15 loc) • 487 B
TypeScript
/**
* A customizable toolbar component used to organize content across the entire page.
*
* This component provides 'start', 'center', and 'end' `<slot>` elements for inserting custom HTML.
*/
export declare class ModusWcToolbar {
private inheritedAttributes;
/** Reference to the host element */
el: HTMLElement;
/** Custom CSS class to apply to the outer div. */
customClass?: string;
componentWillLoad(): void;
private getClasses;
render(): any;
}