tree-select
tree-select copied to clipboard
Keydown Event not selecting the dropdown list.
Hey, i am having an issue with TreeSelect. I have a dropdown button. On clicking this, i get a dropdown list but i am not able to do any selection by pressing down arrow from my keyboard.

<TreeSelect
className="TreeSelectRootCss" style={style}
dropdownClassName="TreeSelectDropdownCss"
treeData={data}
treeDataSimpleMode={{id:'id', pId:'pId', rootPId:null}}
value={value}
placeholder={placeholder}
onChange={onChange}
treeCheckable = {toggleFlag}
allowClear = {allowClear}
/>
Currently there is not support for KeyCode.UP, KeyCode.DOWN, KeyCode.LEFT, KeyCode.RIGHT - https://github.com/react-component/tree-select/blob/master/src/Select.jsx#L411
are there any plans in doing this ?