@larva.io/webcomponents
Version:
Fentrica SmartUnits WebComponents package
80 lines (79 loc) • 2.61 kB
JavaScript
/*!
* (C) Fentrica http://fentrica.com - Seee LICENSE.md
*/
import { h } from "@stencil/core";
export class DoorContent {
// @Event() click!: EventEmitter; // populates
render() {
return (h("lar-button", { key: '93cc3f285f340515a2282ea6bcc7a81e61304c88', disabled: this.disabled, color: this.color }, h("lar-translate", { key: 'b7184a58877ecd146aafbd61989216731d421f2b', t: this.value })));
}
static get is() { return "lar-door-content"; }
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"
},
"value": {
"type": "string",
"mutable": false,
"complexType": {
"original": "string",
"resolved": "string",
"references": {}
},
"required": false,
"optional": false,
"docs": {
"tags": [],
"text": ""
},
"getter": false,
"setter": false,
"reflect": false,
"attribute": "value"
}
};
}
}
//# sourceMappingURL=door-content.js.map