mirror of
https://github.com/ant-design/ant-design.git
synced 2025-06-18 08:00:53 +08:00

* basic flex * chore: style basic * chore: status style * chore: small size * chore: label vertical * chore: more style * chore: hover disabled * chore: variant * chore: dot variant * chore: max width * chore: hover dot * chore: update style * chore: click style * chore: init percent * chore: pass detail * chore: for progress * chore: clean up * chore: clean up * chore: multiple css var * chore: status text * chore: status use var * chore: fix nest * chore: use svg * chore: type of panel * chore: offset support * chore: inline offset * chore: warning of steps * docs: add semantic preview * chore: semantic transition * chore: hover * chore: adjust style * chore: update semantic preview * chore: fix nav style * chore: patch panel motion * chore: update semantic preview * docs: update config provider doc * chore: fix part ts def * chore: fix test ts * test: update test case * test: coverage * chore: fix lint * test: update test case * test: update snapshot * chore: adjust style * chore: fix rtl * docs: update design * chore: update sctructure * chore: update comment * chore: clean up * chore: clean up * chore: cursor style * chore: coverage * docs: add missing part * chore: order * test: add test case * chore: fix ts * chore: clean up
81 lines
2.1 KiB
TypeScript
81 lines
2.1 KiB
TypeScript
import React from 'react';
|
|
import { ConfigProvider, Divider, Flex, Steps, StepsProps } from 'antd';
|
|
|
|
const items: StepsProps['items'] = [
|
|
{
|
|
title: 'Finished',
|
|
content: 'This is a content.',
|
|
},
|
|
{
|
|
title: 'In Progress',
|
|
content: 'This is a content.',
|
|
status: 'error',
|
|
},
|
|
{
|
|
title: 'Waiting',
|
|
content: 'This is a content.',
|
|
},
|
|
];
|
|
|
|
const App: React.FC = () => {
|
|
const [current, setCurrent] = React.useState(1);
|
|
|
|
const sharedProps: StepsProps = {
|
|
current,
|
|
variant: 'outlined',
|
|
onChange: (current: number) => {
|
|
setCurrent(current);
|
|
},
|
|
items,
|
|
};
|
|
|
|
const sharedPercentProps: StepsProps = {
|
|
current,
|
|
variant: 'outlined',
|
|
onChange: (current: number) => {
|
|
setCurrent(current);
|
|
},
|
|
items: items.map(({ status, ...item }) => item),
|
|
percent: 60,
|
|
};
|
|
|
|
return (
|
|
<Flex vertical gap="middle">
|
|
<Steps {...sharedProps} variant="filled" />
|
|
<Steps {...sharedProps} />
|
|
<Steps {...sharedProps} size="small" />
|
|
<Steps {...sharedPercentProps} size="small" />
|
|
<Flex gap="middle">
|
|
<Steps {...sharedPercentProps} orientation="vertical" />
|
|
<Steps {...sharedPercentProps} size="small" orientation="vertical" />
|
|
</Flex>
|
|
<Flex gap="middle">
|
|
<Steps {...sharedProps} orientation="vertical" />
|
|
<Steps {...sharedProps} orientation="vertical" size="small" />
|
|
</Flex>
|
|
<Steps {...sharedProps} type="dot" size="small" />
|
|
<Flex gap="middle">
|
|
<Steps {...sharedProps} type="dot" size="small" orientation="vertical" />
|
|
<Steps {...sharedProps} type="navigation" size="small" orientation="vertical" />
|
|
</Flex>
|
|
<Divider />
|
|
<ConfigProvider
|
|
theme={{
|
|
components: {
|
|
Steps: {
|
|
descriptionMaxWidth: 140,
|
|
customIconSize: 22,
|
|
},
|
|
},
|
|
}}
|
|
>
|
|
<Steps {...sharedProps} type="dot" />
|
|
<Steps {...sharedProps} labelPlacement="vertical" />
|
|
<Steps {...sharedProps} labelPlacement="vertical" size="small" />
|
|
</ConfigProvider>
|
|
</Flex>
|
|
);
|
|
};
|
|
|
|
export default App;
|