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

@ -151,10 +151,10 @@ export class Button implements ComponentInterface {
class: {
...createColorClasses(color),
[buttonType]: true,
[`${buttonType}-${expand}`]: !!expand,
[`${buttonType}-${size}`]: !!size,
[`${buttonType}-${shape}`]: !!shape,
[`${buttonType}-${fill}`]: !!fill,
[`${buttonType}-${expand}`]: expand !== undefined,
[`${buttonType}-${size}`]: size !== undefined,
[`${buttonType}-${shape}`]: shape !== undefined,
[`${buttonType}-${fill}`]: true,
[`${buttonType}-strong`]: strong,
'focused': keyFocus,