mirror of
https://github.com/ionic-team/ionic-framework.git
synced 2025-08-20 20:33:32 +08:00
chore(): update stencil (#16460)
This commit is contained in:
@ -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,
|
||||
|
Reference in New Issue
Block a user