feat(checkbox): add checkbox, consistent function names

This commit is contained in:
Brandy Carney
2017-08-24 19:12:58 -04:00
parent f965ef7e34
commit ace8ab8693
11 changed files with 890 additions and 10 deletions

View File

@ -39,13 +39,13 @@ export class Toggle implements BooleanInputComponent {
}
@PropDidChange('checked')
changed(val: boolean) {
checkedChanged(val: boolean) {
this.ionChange.emit({ checked: val });
this.emitStyle();
}
@PropDidChange('disabled')
disableChanged() {
disabledChanged() {
this.emitStyle();
}