chore(): update to latest stencil

* fix(): Update to latest stencil and change types to export from interface not index.

* chore(): fix merge conflict of file added.
This commit is contained in:
Josh Thomas
2018-08-22 11:46:43 -05:00
committed by Manu MA
parent da2dc7be49
commit bd32887767
6 changed files with 6096 additions and 6446 deletions

View File

@ -232,7 +232,9 @@ export class Datetime {
const pickerOptions = this.generatePickerOptions();
this.picker = await this.pickerCtrl.create(pickerOptions);
this.validate();
await this.picker.present();
if (this.picker) {
await this.picker.present();
}
}
private emitStyle() {