This commit is contained in:
Paulus Schoutsen 2019-03-14 15:35:02 -07:00
parent 2349e2f251
commit 4ff2d941c3

View File

@ -1,7 +1,6 @@
import { import {
html, html,
LitElement, LitElement,
PropertyDeclarations,
PropertyValues, PropertyValues,
TemplateResult, TemplateResult,
CSSResult, CSSResult,
@ -64,6 +63,7 @@ class HUIRoot extends LitElement {
@property() public hass?: HomeAssistant; @property() public hass?: HomeAssistant;
@property() public lovelace?: Lovelace; @property() public lovelace?: Lovelace;
@property() public columns?: number; @property() public columns?: number;
@property() public narrow?: boolean;
@property() public route?: { path: string; prefix: string }; @property() public route?: { path: string; prefix: string };
@property() private _routeData?: { view: string }; @property() private _routeData?: { view: string };
@property() private _curView?: number | "hass-unused-entities"; @property() private _curView?: number | "hass-unused-entities";