UNPKG

@larva.io/webcomponents

Version:

Fentrica SmartUnits WebComponents package

72 lines (71 loc) 2.29 kB
/*! * (C) Fentrica http://fentrica.com - Seee LICENSE.md */ import { h } from "@stencil/core"; export class PushButtonContent { // @Event() click!: EventEmitter; // populates render() { return (h("div", { key: '5dc8d26f9e7de82d5ddbf1857f040a0620d9c9e1', class: "content" }, h("lar-button-push", { key: '43764946b7ed5773a2b3ef37f553b2d25716096c', color: this.color, disabled: this.disabled }))); } static get is() { return "lar-push-button-content"; } static get encapsulation() { return "scoped"; } static get originalStyleUrls() { return { "$": ["push-button.scss"] }; } static get styleUrls() { return { "$": ["push-button.css"] }; } static get properties() { return { "color": { "type": "string", "mutable": false, "complexType": { "original": "Color", "resolved": "string", "references": { "Color": { "location": "import", "path": "../../interface", "id": "src/interface.d.ts::Color" } } }, "required": false, "optional": true, "docs": { "tags": [], "text": "" }, "getter": false, "setter": false, "reflect": false, "attribute": "color" }, "disabled": { "type": "boolean", "mutable": false, "complexType": { "original": "boolean", "resolved": "boolean", "references": {} }, "required": false, "optional": true, "docs": { "tags": [], "text": "" }, "getter": false, "setter": false, "reflect": false, "attribute": "disabled" } }; } } //# sourceMappingURL=push-button-content.js.map