chore(): update to latest stencil

This commit is contained in:
Manu Mtz.-Almeida
2018-08-08 17:21:41 +02:00
parent a71f382795
commit 5668dc4fc5
2 changed files with 3 additions and 3 deletions

View File

@ -27,7 +27,7 @@
"ionicons": "4.3.0" "ionicons": "4.3.0"
}, },
"devDependencies": { "devDependencies": {
"@stencil/core": "0.11.2", "@stencil/core": "0.11.3",
"@stencil/dev-server": "latest", "@stencil/dev-server": "latest",
"@stencil/sass": "0.1.0", "@stencil/sass": "0.1.0",
"@stencil/utils": "latest", "@stencil/utils": "latest",

View File

@ -120,9 +120,9 @@ export class Item {
hostData() { hostData() {
const childStyles = {}; const childStyles = {};
for (const value of this.itemStyles.values()) { this.itemStyles.forEach(value => {
Object.assign(childStyles, value); Object.assign(childStyles, value);
} });
return { return {
'tappable': this.isClickable(), 'tappable': this.isClickable(),