mirror of
https://github.com/ant-design/ant-design.git
synced 2024-12-13 07:39:10 +08:00
9f733993f1
* docs: replace the deprecated dropdownMatchSelectWidth * docs: replace dropdownMatchSelectWidth in config-provider * revert config-provider * test: update snapshot * test: update snapshot and revert config-provider test
49 lines
1.3 KiB
TypeScript
49 lines
1.3 KiB
TypeScript
import React, { useState } from 'react';
|
|
import type { RadioChangeEvent, SelectProps } from 'antd';
|
|
import { Radio, Select } from 'antd';
|
|
|
|
type SelectCommonPlacement = SelectProps['placement'];
|
|
|
|
const App: React.FC = () => {
|
|
const [placement, SetPlacement] = useState<SelectCommonPlacement>('topLeft');
|
|
|
|
const placementChange = (e: RadioChangeEvent) => {
|
|
SetPlacement(e.target.value);
|
|
};
|
|
|
|
return (
|
|
<>
|
|
<Radio.Group value={placement} onChange={placementChange}>
|
|
<Radio.Button value="topLeft">topLeft</Radio.Button>
|
|
<Radio.Button value="topRight">topRight</Radio.Button>
|
|
<Radio.Button value="bottomLeft">bottomLeft</Radio.Button>
|
|
<Radio.Button value="bottomRight">bottomRight</Radio.Button>
|
|
</Radio.Group>
|
|
<br />
|
|
<br />
|
|
<Select
|
|
defaultValue="HangZhou"
|
|
style={{ width: 120 }}
|
|
popupMatchSelectWidth={false}
|
|
placement={placement}
|
|
options={[
|
|
{
|
|
value: 'HangZhou',
|
|
label: 'HangZhou #310000',
|
|
},
|
|
{
|
|
value: 'NingBo',
|
|
label: 'NingBo #315000',
|
|
},
|
|
{
|
|
value: 'WenZhou',
|
|
label: 'WenZhou #325000',
|
|
},
|
|
]}
|
|
/>
|
|
</>
|
|
);
|
|
};
|
|
|
|
export default App;
|