mirror of
https://github.com/home-assistant/frontend.git
synced 2025-07-31 13:07:49 +00:00
commit
d0d293fe21
@ -27,6 +27,11 @@ module.exports.plugins = [
|
|||||||
/@polymer\/font-roboto\/roboto\.js$/,
|
/@polymer\/font-roboto\/roboto\.js$/,
|
||||||
path.resolve(__dirname, "../src/util/empty.js")
|
path.resolve(__dirname, "../src/util/empty.js")
|
||||||
),
|
),
|
||||||
|
// Ignore mwc icons pointing at CDN.
|
||||||
|
new webpack.NormalModuleReplacementPlugin(
|
||||||
|
/@material\/mwc-icon\/mwc-icon-font\.js$/,
|
||||||
|
path.resolve(__dirname, "../src/util/empty.js")
|
||||||
|
),
|
||||||
];
|
];
|
||||||
|
|
||||||
module.exports.optimization = (latestBuild) => ({
|
module.exports.optimization = (latestBuild) => ({
|
||||||
|
2
setup.py
2
setup.py
@ -2,7 +2,7 @@ from setuptools import setup, find_packages
|
|||||||
|
|
||||||
setup(
|
setup(
|
||||||
name="home-assistant-frontend",
|
name="home-assistant-frontend",
|
||||||
version="20190319.0",
|
version="20190319.1",
|
||||||
description="The Home Assistant frontend",
|
description="The Home Assistant frontend",
|
||||||
url="https://github.com/home-assistant/home-assistant-polymer",
|
url="https://github.com/home-assistant/home-assistant-polymer",
|
||||||
author="The Home Assistant Authors",
|
author="The Home Assistant Authors",
|
||||||
|
@ -29,7 +29,7 @@ class LovelacePanel extends LitElement {
|
|||||||
|
|
||||||
@property() public narrow?: boolean;
|
@property() public narrow?: boolean;
|
||||||
|
|
||||||
public route?: Route;
|
@property() public route?: Route;
|
||||||
|
|
||||||
@property() private _columns?: number;
|
@property() private _columns?: number;
|
||||||
|
|
||||||
@ -38,7 +38,7 @@ class LovelacePanel extends LitElement {
|
|||||||
|
|
||||||
@property() private _errorMsg?: string;
|
@property() private _errorMsg?: string;
|
||||||
|
|
||||||
private lovelace?: Lovelace;
|
@property() private lovelace?: Lovelace;
|
||||||
|
|
||||||
private mqls?: MediaQueryList[];
|
private mqls?: MediaQueryList[];
|
||||||
|
|
||||||
|
@ -66,6 +66,7 @@ export class HUIView extends LitElement {
|
|||||||
|
|
||||||
constructor() {
|
constructor() {
|
||||||
super();
|
super();
|
||||||
|
console.log("CONSTRUCT HUI-VIEW");
|
||||||
this._cards = [];
|
this._cards = [];
|
||||||
this._badges = [];
|
this._badges = [];
|
||||||
}
|
}
|
||||||
|
Loading…
x
Reference in New Issue
Block a user