mirror of
https://gitee.com/ant-design/ant-design.git
synced 2024-11-30 02:59:04 +08:00
502dac12aa
* docs: fix code * feat: lint * feat: prettier * feat: test * feat: review * feat: format html * feat: format html
77 lines
1.6 KiB
TypeScript
77 lines
1.6 KiB
TypeScript
import React from 'react';
|
|
import { Cascader, Select, Space, TreeSelect, Typography } from 'antd';
|
|
|
|
const options = [
|
|
{ value: 'long', label: <Typography>long, long, long piece of text</Typography> },
|
|
{ value: 'short', label: <Typography>short</Typography> },
|
|
{ value: 'normal', label: <div>normal</div> },
|
|
];
|
|
|
|
const App: React.FC = () => (
|
|
<Space wrap>
|
|
<Select
|
|
defaultValue="long, long, long piece of text"
|
|
style={{ width: 120 }}
|
|
allowClear
|
|
options={options}
|
|
/>
|
|
|
|
<Select
|
|
placeholder="Select a option"
|
|
style={{ width: 120, height: 60 }}
|
|
allowClear
|
|
options={options}
|
|
/>
|
|
|
|
<Select
|
|
defaultValue="normal"
|
|
placeholder="Select a option"
|
|
style={{ width: 120 }}
|
|
allowClear
|
|
options={options}
|
|
/>
|
|
|
|
<Select
|
|
defaultValue={['normal']}
|
|
mode="multiple"
|
|
placeholder="Select a option"
|
|
style={{ width: 120 }}
|
|
allowClear
|
|
options={options}
|
|
/>
|
|
|
|
<Select
|
|
mode="multiple"
|
|
placeholder="Select a option"
|
|
style={{ width: 120, height: 60 }}
|
|
allowClear
|
|
options={options}
|
|
/>
|
|
|
|
<Cascader
|
|
placeholder="Select a option"
|
|
style={{ width: 120, height: 60 }}
|
|
allowClear
|
|
options={options}
|
|
/>
|
|
|
|
<TreeSelect
|
|
showSearch
|
|
style={{ width: 120, height: 60 }}
|
|
placeholder="Please select"
|
|
allowClear
|
|
popupMatchSelectWidth={false}
|
|
treeDefaultExpandAll
|
|
treeData={[
|
|
{
|
|
value: 'parent 1',
|
|
title: 'parent 1',
|
|
children: options,
|
|
},
|
|
]}
|
|
/>
|
|
</Space>
|
|
);
|
|
|
|
export default App;
|