for example, in the following demo code, there is no 888 in the 888 focus option when I type it. After losing focus, the 888 just entered will be emptied automatically. If I want to keep the entered 888 in the input box and get this value, how can I get this value?
<Select
placeholder=""
showSearch={true}
onChange={this.onChange}
allowClear={true}
>
<Option value="test0">test0</Option>
<Option value="test1">test1</Option>
<Option value="test2">test2</Option>
</Select>