(e: MouseEvent)
| 766 | } |
| 767 | |
| 768 | _decSpin(e: MouseEvent) { |
| 769 | if (this._isFocused || this._decIconDisabled) { |
| 770 | e.preventDefault(); |
| 771 | } |
| 772 | if (!this._decIconDisabled) { |
| 773 | this._spinValue(false, true); |
| 774 | } else { |
| 775 | this.input.focus(); |
| 776 | } |
| 777 | } |
| 778 | |
| 779 | _incSpin(e: MouseEvent) { |
| 780 | if (this._isFocused || this._incIconDisabled) { |
nothing calls this directly
no test coverage detected