Fix popup icons for 0.100. Fix #98

This commit is contained in:
Thomas Lovén 2020-05-22 09:30:05 +02:00
parent 350a18bf81
commit 8823cb6272
5 changed files with 373 additions and 696 deletions

File diff suppressed because one or more lines are too long

4
hacs.json Normal file
View File

@ -0,0 +1,4 @@
{
"name": "hacs",
"homeassistant": "0.100.0"
}

View File

@ -43,13 +43,13 @@ class BrowserPlayer extends LitElement {
return html` return html`
<ha-card> <ha-card>
<div class="card-content"> <div class="card-content">
<paper-icon-button <ha-icon-button
.icon=${player.muted .icon=${player.muted
? "mdi:volume-off" ? "mdi:volume-off"
: "mdi:volume-high" : "mdi:volume-high"
} }
@click=${this.handleMute} @click=${this.handleMute}
></paper-icon-button> ></ha-icon-button>
<ha-paper-slider <ha-paper-slider
min=0 min=0
max=1 max=1

1047
package-lock.json generated

File diff suppressed because it is too large Load Diff

View File

@ -1,7 +1,7 @@
{ {
"name": "browser_mod", "name": "browser_mod",
"private": true, "private": true,
"version": "1.0.2", "version": "1.0.3",
"description": "", "description": "",
"scripts": { "scripts": {
"build": "webpack", "build": "webpack",
@ -12,7 +12,7 @@
"author": "Thomas Lovén", "author": "Thomas Lovén",
"license": "MIT", "license": "MIT",
"devDependencies": { "devDependencies": {
"webpack": "^4.42.1", "webpack": "^4.43.0",
"webpack-cli": "^3.3.11" "webpack-cli": "^3.3.11"
}, },
"dependencies": { "dependencies": {