mirror of
https://github.com/ant-design/ant-design.git
synced 2024-11-25 03:29:59 +08:00
d44f404eae
* chore: improve sort api table scripts
* sort api
* add ignore
* Revert "sort api"
This reverts commit 343505d5f0
.
* sort api
* Update package.json
* sort api
* Delete sort-api.js
* sort api
* sort api
* sort api
* fix
* Update index.zh-CN.md
* fix input-number
* fix input-number
* sort func
* fix
* Method moved to the end
* carousel method
1.9 KiB
1.9 KiB
category | type | title | cols | cover |
---|---|---|---|---|
Components | Data Display | Collapse | 1 | https://gw.alipayobjects.com/zos/alicdn/IxH16B9RD/Collapse.svg |
A content area which can be collapsed and expanded.
When To Use
- Can be used to group or hide complex regions to keep the page clean.
Accordion
is a special kind ofCollapse
, which allows only one panel to be expanded at a time.
API
Collapse
Property | Description | Type | Default | Version |
---|---|---|---|---|
accordion | If true, Collapse renders as Accordion | boolean | false | |
activeKey | Key of the active panel | string[] | string number[] | number |
No default value. In accordion mode, it's the key of the first panel |
|
bordered | Toggles rendering of the border around the collapse block | boolean | true | |
defaultActiveKey | Key of the initial active panel | string[] | string number[] | number |
- | |
destroyInactivePanel | Destroy Inactive Panel | boolean | false | |
expandIcon | Allow to customize collapse icon | (panelProps) => ReactNode | - | |
expandIconPosition | Set expand icon position | left | right |
- | |
ghost | Make the collapse borderless and its background transparent | boolean | false | 4.4.0 |
onChange | Callback function executed when active panel is changed | function | - |
Collapse.Panel
Property | Description | Type | Default | Version |
---|---|---|---|---|
disabled | If true, panel cannot be opened or closed | boolean | false | |
extra | The extra element in the corner | ReactNode | - | |
forceRender | Forced render of content on panel, instead of lazy rending after clicking on header | boolean | false | |
header | Title of the panel | ReactNode | - | |
key | Unique key identifying the panel from among its siblings | string | number | - | |
showArrow | If false, panel will not show arrow icon | boolean | true |