(active: boolean)
| 630 | } |
| 631 | |
| 632 | _setActiveState(active: boolean) { |
| 633 | const eventPrevented = !this.fireDecoratorEvent("active-state-change"); |
| 634 | |
| 635 | if (eventPrevented || this.loading) { |
| 636 | return; |
| 637 | } |
| 638 | |
| 639 | this.active = active; |
| 640 | } |
| 641 | |
| 642 | get hasButtonType() { |
| 643 | return this.design !== ButtonDesign.Default && this.design !== ButtonDesign.Transparent; |
no outgoing calls
no test coverage detected