UNPKG

tasmota-esp-web-tools

Version:
40 lines (39 loc) 1.07 kB
import { __decorate } from "tslib"; import { LitElement, html, css } from "lit"; import { property } from "lit/decorators.js"; import "../components/ewt-circular-progress"; class EwtPageProgress extends LitElement { render() { return html ` <div> <ewt-circular-progress active ?indeterminate=${this.progress === undefined} .progress=${this.progress !== undefined ? this.progress / 100 : undefined} density="8" ></ewt-circular-progress> ${this.progress !== undefined ? html `<div>${this.progress}%</div>` : ""} </div> ${this.label} `; } } EwtPageProgress.styles = css ` :host { display: flex; flex-direction: column; text-align: center; } ewt-circular-progress { margin-bottom: 16px; } `; __decorate([ property() ], EwtPageProgress.prototype, "label", void 0); __decorate([ property() ], EwtPageProgress.prototype, "progress", void 0); customElements.define("ewt-page-progress", EwtPageProgress);