()
| 664 | } |
| 665 | |
| 666 | _toggleRespPopover() { |
| 667 | if (this.disabled || this.readonly) { |
| 668 | return; |
| 669 | } |
| 670 | |
| 671 | this._iconPressed = true; |
| 672 | |
| 673 | this.responsivePopover = this._respPopover(); |
| 674 | if (this._isPickerOpen) { |
| 675 | this.responsivePopover.open = false; |
| 676 | } else { |
| 677 | this.responsivePopover.opener = this; |
| 678 | this.responsivePopover.open = true; |
| 679 | } |
| 680 | } |
| 681 | |
| 682 | _onkeydown(e: KeyboardEvent) { |
| 683 | const isTab = (isTabNext(e) || isTabPrevious(e)); |
no test coverage detected