chore(): update to latest stencil

This commit is contained in:
Manu Mtz.-Almeida
2018-08-07 03:09:06 +02:00
parent 9f4d873409
commit ac91bcc8ae
2 changed files with 4 additions and 2 deletions

View File

@ -27,7 +27,7 @@
"ionicons": "4.3.0" "ionicons": "4.3.0"
}, },
"devDependencies": { "devDependencies": {
"@stencil/core": "0.11.1", "@stencil/core": "0.11.2",
"@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

@ -264,7 +264,9 @@ export class Datetime {
}, },
{ {
text: this.doneText, text: this.doneText,
handler: (data: any) => this.value = data handler: (data: any) => {
this.value = data;
}
} }
]; ];
} }