mirror of
https://github.com/ant-design/ant-design.git
synced 2024-12-03 16:39:41 +08:00
6776bb8916
* docs: update demo * chore: add script * test: fix demo test * docs: convert demos * chore: move script * test: remove react-dom import * chore: update deps * docs: update riddle js * test: fix image test * docs: fix riddle demo
48 lines
923 B
Markdown
48 lines
923 B
Markdown
---
|
|
order: 100
|
|
title:
|
|
zh-CN: 测试 label 省略
|
|
en-US: label ellipsis
|
|
debug: true
|
|
---
|
|
|
|
## zh-CN
|
|
|
|
`label` 中使用 `<Typography.Text ellipsis>` 时应该显示 `...`。
|
|
|
|
## en-US
|
|
|
|
Use `<Typography.Text ellipsis>` in label should show `...`.
|
|
|
|
```tsx
|
|
import { Form, Input, Typography } from 'antd';
|
|
|
|
const Demo = () => (
|
|
<Form name="label-ellipsis" labelCol={{ span: 8 }} wrapperCol={{ span: 16 }}>
|
|
<Form.Item
|
|
label={
|
|
<Typography.Text ellipsis>
|
|
longtextlongtextlongtextlongtextlongtextlongtextlongtext
|
|
</Typography.Text>
|
|
}
|
|
name="username"
|
|
>
|
|
<Input />
|
|
</Form.Item>
|
|
|
|
<Form.Item
|
|
label={
|
|
<Typography.Text ellipsis>
|
|
longtext longtext longtext longtext longtext longtext longtext
|
|
</Typography.Text>
|
|
}
|
|
name="password"
|
|
>
|
|
<Input.Password />
|
|
</Form.Item>
|
|
</Form>
|
|
);
|
|
|
|
export default () => <Demo />;
|
|
```
|