Graph Footer to MWC (#11803)

This commit is contained in:
Zack Barett 2022-02-23 10:31:33 -06:00 committed by GitHub
parent 8db22d4f88
commit 5f69a4c165
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -1,10 +1,10 @@
import "@polymer/paper-input/paper-input";
import { CSSResultGroup, html, LitElement, TemplateResult } from "lit"; import { CSSResultGroup, html, LitElement, TemplateResult } from "lit";
import { customElement, property, state } from "lit/decorators"; import { customElement, property, state } from "lit/decorators";
import { assert } from "superstruct"; import { assert } from "superstruct";
import { fireEvent, HASSDomEvent } from "../../../../common/dom/fire_event"; import { fireEvent, HASSDomEvent } from "../../../../common/dom/fire_event";
import "../../../../components/entity/ha-entity-picker"; import "../../../../components/entity/ha-entity-picker";
import "../../../../components/ha-formfield"; import "../../../../components/ha-formfield";
import "../../../../components/ha-textfield";
import "../../../../components/ha-switch"; import "../../../../components/ha-switch";
import type { HomeAssistant } from "../../../../types"; import type { HomeAssistant } from "../../../../types";
import { graphHeaderFooterConfigStruct } from "../../header-footer/structs"; import { graphHeaderFooterConfigStruct } from "../../header-footer/structs";
@ -73,7 +73,7 @@ export class HuiGraphFooterEditor
@change=${this._change} @change=${this._change}
></ha-switch> ></ha-switch>
</ha-formfield> </ha-formfield>
<paper-input <ha-textfield
type="number" type="number"
.label="${this.hass.localize( .label="${this.hass.localize(
"ui.panel.lovelace.editor.card.generic.hours_to_show" "ui.panel.lovelace.editor.card.generic.hours_to_show"
@ -83,8 +83,8 @@ export class HuiGraphFooterEditor
.value=${this._hours_to_show} .value=${this._hours_to_show}
min="1" min="1"
.configValue=${"hours_to_show"} .configValue=${"hours_to_show"}
@value-changed=${this._valueChanged} @input=${this._valueChanged}
></paper-input> ></ha-textfield>
</div> </div>
</div> </div>
`; `;