wj-elements
Version:
WebJET Elements is a modern set of user interface tools harnessing the power of web components designed to simplify web application development.
29 lines (28 loc) • 759 B
TypeScript
import { default as WJElement } from '../wje-element/element.js';
/**
* @summary Orgchart is a custom web component that extends WJElement.
* @documentation https://elements.webjet.sk/components/Orgchart
* @status stable
* @augments WJElement
* @csspart - Styles the element.
* @tag wje-orgchart
* @example
*/
export default class Orgchart extends WJElement {
/**
* Returns the CSS styles for the component.
* @static
* @returns {CSSStyleSheet}
*/
static get cssStyleSheet(): CSSStyleSheet;
/**
* Draws the component for the org chart.
* @returns {DocumentFragment}
*/
draw(): DocumentFragment;
native: HTMLDivElement;
/**
* Sync ARIA attributes on host.
*/
syncAria(): void;
}