style(tap-click): rename activable to activatable

This commit is contained in:
Brandy Carney
2018-09-05 13:17:24 -04:00
parent 6d6f70ce09
commit 6ed4690834
12 changed files with 17 additions and 18 deletions

View File

@ -149,6 +149,7 @@ export class Button {
const { buttonType, color, expand, fill, mode, shape, size, strong } = this;
return {
'ion-activatable': true,
class: {
...createColorClasses(color),
...getButtonClassMap(buttonType, mode),
@ -158,8 +159,7 @@ export class Button {
...getButtonTypeClassMap(buttonType, strong ? 'strong' : undefined, mode),
...getButtonTypeClassMap(buttonType, fill, mode),
'focused': this.keyFocus,
},
'ion-activable': true,
}
};
}