chore(): update stencil (#16460)

This commit is contained in:
Manu MA
2018-11-26 22:19:48 +01:00
committed by GitHub
parent 12bcb415ee
commit d09e55500c
26 changed files with 331 additions and 233 deletions

View File

@ -61,7 +61,7 @@ export class Label implements ComponentInterface {
const position = this.position;
this.ionStyle.emit({
'label': true,
[`label-${position}`]: !!position
[`label-${position}`]: position !== undefined
});
}
@ -70,7 +70,7 @@ export class Label implements ComponentInterface {
return {
class: {
...createColorClasses(this.color),
[`label-${position}`]: !!position,
[`label-${position}`]: position !== undefined,
[`label-no-animate`]: (this.noAnimate)
}
};