ant-design/components/steps/demo/variant-debug.tsx
二货爱吃白萝卜 ff614114c0
refactor: Rename Steps labelPlacement to titlePlacement (#53873)
* refactor: labelPlacement

* test: update snapshot
2025-05-20 18:00:38 +08:00

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} titlePlacement="vertical" />
<Steps {...sharedProps} titlePlacement="vertical" size="small" />
</ConfigProvider>
</Flex>
);
};
export default App;