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) • 884 B
TypeScript
import { default as WJElement } from '../wje-element/element.js';
/**
* @summary This class represents Card Controls element, extending the WJElement class.
* @documentation https://elements.webjet.sk/components/card-controls
* @status stable
* @augments WJElement
* @slot - The card controls main content.
* @cssproperty [--wje-card-controls-font-size=11px] - Font size of the component;
* @cssproperty [--wje-card-controls-font-family=--wje-font-family-secondary] - Font family of the component;
*/
export default class CardControls extends WJElement {
/**
* Get CSS stylesheet for the CardControls element.
* @static
* @returns {object} styles - The CSS styles
*/
static get cssStyleSheet(): object;
/**
* Draw method for the CardControls element.
* @returns {object} fragment - The document fragment
*/
draw(): object;
}