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.
24 lines (23 loc) • 734 B
TypeScript
import { default as WJElement } from '../wje-element/element.js';
/**
* `Step` is a custom web component that represents a step.
* @summary This element represents a step.
* @documentation https://elements.webjet.sk/components/step
* @status stable
* @augments WJElement
* @csspart native - The native part of the step.
* @slot - The default slot for the step.
* @tag wje-step
*/
export default class Step extends WJElement {
/**
* Returns the CSS stylesheet for the component.
* @returns {CSSStyleSheet} The CSS stylesheet.
*/
static get cssStyleSheet(): CSSStyleSheet;
/**
* Returns the list of observed attributes.
* @returns {DocumentFragment}
*/
draw(): DocumentFragment;
}