(e: KeyboardEvent)
| 134 | 'aria-labelledby': labelledBy, |
| 135 | 'aria-describedby': ariaDescribedBy, |
| 136 | onKeyDown(e: KeyboardEvent) { |
| 137 | if (state.isOpen) { |
| 138 | return; |
| 139 | } |
| 140 | |
| 141 | if (props.onKeyDown) { |
| 142 | props.onKeyDown(e); |
| 143 | } |
| 144 | }, |
| 145 | onKeyUp(e: KeyboardEvent) { |
| 146 | if (state.isOpen) { |
| 147 | return; |