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.
27 lines (26 loc) • 837 B
TypeScript
import { default as WJElement } from '../wje-element/element.js';
/**
* @summary The Grid class is a custom web component that extends WJElement. It is a simple grid that can hold other elements or components.
* It provides a slot for adding child elements or components.
* @documentation https://elements.webjet.sk/components/grid
* @status stable
* @augments WJElement
* @slot - The slot for adding child elements or components.
*/
export default class Grid extends WJElement {
/**
* Getter for the CSS stylesheet.
* @returns {*}
*/
static get cssStyleSheet(): any;
/**
* Getter for the observed attributes.
* @returns {*[]}
*/
static get observedAttributes(): any[];
/**
* Draws the Grid element.
* @returns {DocumentFragment}
*/
draw(): DocumentFragment;
}