mirror of
https://github.com/ant-design/ant-design.git
synced 2025-01-07 20:08:21 +08:00
fb0b4f0fc9
* docs: add api first appearance * docs: fix auto-complete doc * docs: replace Version Added with Version * docs: date picker common method * docs: date picker common method * docs: tree * docs: remove meaningless 3.0.0
32 lines
1.2 KiB
Markdown
32 lines
1.2 KiB
Markdown
---
|
|
category: Components
|
|
type: Data Display
|
|
title: Description List
|
|
cols: 1
|
|
---
|
|
|
|
Display multiple read-only fields in groups.
|
|
|
|
## When To Use
|
|
|
|
Commonly displayed on the details page.
|
|
|
|
## API
|
|
|
|
### Descriptions
|
|
|
|
| Property | Description | Type | Default | Version |
|
|
| --- | --- | --- | --- | --- |
|
|
| title | The title of the description list, placed at the top | ReactNode | - | 3.19.0 |
|
|
| bordered | whether to display the border | boolean | false | 3.19.0 |
|
|
| column | the number of `DescriptionItems` in a row,could be a number or a object like `{ xs: 8, sm: 16, md: 24}`,(Only set `bordered={true}` to take effect) | number | 3 | 3.19.0 |
|
|
| size | set the size of the list. Can be set to `middle`,`small`, or not filled | `default | middle | small` | false | 3.19.0 |
|
|
| layout | Define description layout | `horizontal | vertical` | `horizontal` | 3.19.8 |
|
|
|
|
### DescriptionItem
|
|
|
|
| Property | Description | Type | Default | Version |
|
|
| -------- | ------------------------------ | --------- | ------- | ------- |
|
|
| label | description of the content | ReactNode | - | 3.19.0 |
|
|
| span | The number of columns included | number | 1 | 3.19.0 |
|