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.
26 lines (25 loc) • 855 B
TypeScript
import { default as WJElement } from '../wje-element/element.js';
/**
* `Timeline` is a custom web component that represents a timeline.
* @summary This element represents a timeline.
* @documentation https://elements.webjet.sk/components/timeline
* @status stable
* @augments WJElement
* @slot - Slot for the timeline items.
* @csspart native - The native part of the rating component.
* @csspart vertical-line - The vertical line part of the rating component.
* @tag wje-timeline
*/
export default class Timeline extends WJElement {
/**
* Returns the CSS stylesheet for the component.
* @static
* @returns {CSSStyleSheet} The CSS stylesheet
*/
static get cssStyleSheet(): CSSStyleSheet;
/**
* Draws the component for the timeline.
* @returns {DocumentFragment}
*/
draw(): DocumentFragment;
}