mirror of
https://github.com/ant-design/ant-design.git
synced 2024-12-04 17:09:46 +08:00
7fd093bd0a
* docs: add general components TS demo * docs: add layout components TS demo * docs: add navigation components TS demo * docs: add data entry components TS demo * chore(deps): add types for qs * docs: add data display TS demo * docs: add feedback components TS demo * docs: add other components TS demo * chore(deps): add types * docs: unified demo code style * docs: fix lint error * docs: add demo TS type * docs: fix demo TS type * test: update snapshot * docs: fix TS demo * feat: update Rate character type * docs: fix lint error * feat: update Rate character type * feat: update Rate character type
46 lines
956 B
Markdown
46 lines
956 B
Markdown
---
|
|
order: 9
|
|
title:
|
|
zh-CN: 自定义点状步骤条
|
|
en-US: Customized Dot Style
|
|
---
|
|
|
|
## zh-CN
|
|
|
|
为点状步骤条增加自定义展示。
|
|
|
|
## en-US
|
|
|
|
You can customize the display for Steps with progress dot style.
|
|
|
|
```tsx
|
|
import React from 'react';
|
|
import { Steps, Popover } from 'antd';
|
|
import type { StepsProps } from 'antd';
|
|
|
|
const { Step } = Steps;
|
|
|
|
const customDot: StepsProps['progressDot'] = (dot, { status, index }) => (
|
|
<Popover
|
|
content={
|
|
<span>
|
|
step {index} status: {status}
|
|
</span>
|
|
}
|
|
>
|
|
{dot}
|
|
</Popover>
|
|
);
|
|
|
|
const App: React.FC = () => (
|
|
<Steps current={1} progressDot={customDot}>
|
|
<Step title="Finished" description="You can hover on the dot." />
|
|
<Step title="In Progress" description="You can hover on the dot." />
|
|
<Step title="Waiting" description="You can hover on the dot." />
|
|
<Step title="Waiting" description="You can hover on the dot." />
|
|
</Steps>
|
|
);
|
|
|
|
export default App;
|
|
```
|