mirror of
https://gitee.com/ant-design/ant-design.git
synced 2024-11-30 11:08:45 +08:00
4a896e9df3
* feat: Support source in the onSearch handler of Input Component when the value had changed * feat: Support source in the onSearch handler of Input Component when the value had changed * feat: Support source in the onSearch handler of Input Component when the value had changed * feat: optimize code * feat: optimize code
49 lines
1.2 KiB
TypeScript
49 lines
1.2 KiB
TypeScript
import { AudioOutlined } from '@ant-design/icons';
|
|
import React from 'react';
|
|
import { Input, Space } from 'antd';
|
|
import type { SearchProps } from '../Search';
|
|
|
|
const { Search } = Input;
|
|
|
|
const suffix = (
|
|
<AudioOutlined
|
|
style={{
|
|
fontSize: 16,
|
|
color: '#1677ff',
|
|
}}
|
|
/>
|
|
);
|
|
|
|
const onSearch: SearchProps['onSearch'] = (value, _e, info) => console.log(info?.source, value);
|
|
|
|
const App: React.FC = () => (
|
|
<Space direction="vertical">
|
|
<Search placeholder="input search text" onSearch={onSearch} style={{ width: 200 }} />
|
|
<Search placeholder="input search text" allowClear onSearch={onSearch} style={{ width: 200 }} />
|
|
<Search
|
|
addonBefore="https://"
|
|
placeholder="input search text"
|
|
allowClear
|
|
onSearch={onSearch}
|
|
style={{ width: 304 }}
|
|
/>
|
|
<Search placeholder="input search text" onSearch={onSearch} enterButton />
|
|
<Search
|
|
placeholder="input search text"
|
|
allowClear
|
|
enterButton="Search"
|
|
size="large"
|
|
onSearch={onSearch}
|
|
/>
|
|
<Search
|
|
placeholder="input search text"
|
|
enterButton="Search"
|
|
size="large"
|
|
suffix={suffix}
|
|
onSearch={onSearch}
|
|
/>
|
|
</Space>
|
|
);
|
|
|
|
export default App;
|