()
| 878 | } |
| 879 | |
| 880 | private emitStyle() { |
| 881 | const { disabled } = this; |
| 882 | |
| 883 | const style: StyleEventDetail = { |
| 884 | 'interactive-disabled': disabled, |
| 885 | }; |
| 886 | |
| 887 | this.ionStyle.emit(style); |
| 888 | } |
| 889 | |
| 890 | private onClick = (ev: UIEvent) => { |
| 891 | const target = ev.target as HTMLElement; |
no outgoing calls
no test coverage detected