mirror of
https://gitee.com/ant-design/ant-design.git
synced 2024-12-15 09:21:22 +08:00
cbcfd38ca7
* build: try to use dumi as doc tool * docs: migrate demo structure to dumi way * refactor: use type export & import * docs: migrate demo previewer to dumi * docs: create empty layout & components * docs: apply custom rehype plugin * docs: create empty extra pages * docs: Add Banner component * chore: move theme tsconfig.json * docs: home page init * docs: migrate header (#37896) * docs: header * docs: update * docs: home init * clean up * test: fix site lint * chore: tsc ignore demo * chore: dumi demo migrate script * chore: cards * docs: home layout * docs: Update locale logic * docs: fix getLink logic * chore: fix ci (#37899) * chore: fix ci * ci: remove check-ts-demo * ci: preview build * test: ignore demo.tsx * chore: update script * test: update snapshot * test: update node and image test * chore: add .surgeignore * docs: layout providers (#37908) * docs: add components sidebar (#37923) * docs: sidebar * docs: update docs title * docs: update design doc * chore: code clean * docs: handle changelog page * docs: add title * docs: add subtitle * docs: active header nav * chore: code clean * docs: overview * chore: code clean * docs: update intl (#37918) * docs: update intl * chore: code clean * docs: update favicons * chore: update testPathIgnorePatterns * chore: code clean * chore: code clean * chore: copy 404.html (#37996) * docs: Home page theme picker * chore: Update migrate script * docs: home page update * docs: theme editor style * docs: theme lang * chore: update migrate.js * docs: fix demo (#38094) * chore: update migrate.js * docs: update md * docs: update demo * test: fix snapshot * chore: move debug to code attr in migrate script * chore: update md Co-authored-by: PeachScript <scdzwyxst@gmail.com> * feat: overview page * feat: Migrate `404` page (#38118) * feat: migrate IconSearch component (#37916) * feat<site/IconSearch>: copy IconDisplay from site to .dumi * feat<site/IconSearch>: change docs of icon * feat<site/IconSearch>: tweak * feat<site/IconSearch>: use useIntl instead of injectIntl * feat<site/IconSearch>: fix ts type error * feat<site/IconSearch>: use intl.formatMessage to render text * docs: Adjust home btn sizw * docs: Update doc * feat: v5 site overview page (#38131) * feat: site * fix: fix * feat: v5 site overview page * fix: fix path * fix: fix * fix: fix * docs: fix margin logic * feat: v5 site change-log page (#38137) * feat: v5 site change-log page (#38162) * docs: site redirect to home pag * docs: theme picker * docs: use react-intl from dumi (#38183) * docs: Theme Picker * docs: update dumi config * docs: home back fix * docs: picker colorful * docs: locale of it * docs: update components desc * docs: site of links * docs: update components list * docs: update desc * feat: Migrate `DemoWrapper` component (#38166) * feat: Migrate `DemoWrapper` component * feat: remove invalid comments and add comment for `key` prop * docs: FloatButton pure panel * chore: update demo * chore: update dumi config * Revert "chore: update demo" This reverts commit 028265d3ba5987df5f13c3e9d42cf76cb1812b2e. * chore: test logic adjust to support cnpm modules * chore: add locale alias * docs: /index to / * docs: add locale redirect head script * chore: adjust compact * docs: fix missing token * feat: compact switch * chore: code clean * docs: update home * docs: fix radius token * docs: hash of it * chore: adjust home page * docs: Add background map * docs: site theme bac logic * docs: avatar * docs: update logo color * docs: home banner * docs: adjust tour size * docs: purepanl update * docs: transfooter * docs: update banner gif * docs: content (#38361) * docs: title & EditButton * docs: content * chore: fix toc * docs: resource page * docs: transform resource data from hast * docs: filename & Resource Card * chore: enable prerender * chore: remove less * docs: toc style * chore: fix lint * docs: fix Layout page * docs: fix CP page * chore: update demos * docs: workaround for export dynamic html * chore: enable demo eslint * docs: table style * fix: header shadow * chore: update snapshot * fix: toc style * docs: add title * docs: Adjust site * feat: helmet * docs: site css * fix: description * feat: toc debug * docs: update config-provider * feat: use colorPanel * fix: colorPanel value * feat: anchor ink ball style * feat: apply theme editor * fix: code block style * chore: update demo * chore: fix lint * chore: code clean * chore: update snapshot * feat: ts2js * chore: description * docs: site ready for ssr includes: - move client render logic to useEffect in site theme - extract antd cssinjs to a single css file like bisheng - workaround to support react@18 pipeableStream for emotion * chore: bump testing lib * docs: font size of title * chore: remove react-sortable-hoc * chore: update snapshot * chore: update script Co-authored-by: PeachScript <scdzwyxst@gmail.com> Co-authored-by: MadCcc <1075746765@qq.com> Co-authored-by: zqran <uuxnet@gmail.com> Co-authored-by: TrickyPi <530257315@qq.com> Co-authored-by: lijianan <574980606@qq.com>
652 lines
18 KiB
TypeScript
652 lines
18 KiB
TypeScript
import React, { useState } from 'react';
|
|
import {
|
|
ClockCircleOutlined,
|
|
DownOutlined,
|
|
MailOutlined,
|
|
SettingOutlined,
|
|
} from '@ant-design/icons';
|
|
import type { SpaceProps, TreeSelectProps } from 'antd';
|
|
import {
|
|
Alert,
|
|
Button,
|
|
Card,
|
|
Checkbox,
|
|
Col,
|
|
ConfigProvider,
|
|
DatePicker,
|
|
Divider,
|
|
Dropdown,
|
|
Form,
|
|
Input,
|
|
InputNumber,
|
|
Mentions,
|
|
Menu,
|
|
Pagination,
|
|
Progress,
|
|
Radio,
|
|
Row,
|
|
Select,
|
|
Slider,
|
|
Space,
|
|
Spin,
|
|
Steps,
|
|
Switch,
|
|
Table,
|
|
Tabs,
|
|
Tag,
|
|
Timeline,
|
|
TimePicker,
|
|
Transfer,
|
|
Tree,
|
|
TreeSelect,
|
|
Typography,
|
|
} from 'antd';
|
|
import { SketchPicker } from 'react-color';
|
|
|
|
const SplitSpace: React.FC<SpaceProps> = props => (
|
|
<Space split={<Divider type="vertical" />} size={4} {...props} />
|
|
);
|
|
|
|
const menuItems = [
|
|
{
|
|
key: 'mail',
|
|
icon: <MailOutlined />,
|
|
label: 'Mail',
|
|
},
|
|
{
|
|
key: 'SubMenu',
|
|
icon: <SettingOutlined />,
|
|
label: 'Submenu',
|
|
children: [
|
|
{
|
|
type: 'group',
|
|
label: 'Item 1',
|
|
children: [
|
|
{
|
|
key: 'setting:1',
|
|
label: 'Option 1',
|
|
},
|
|
{
|
|
key: 'setting:2',
|
|
label: 'Option 2',
|
|
},
|
|
],
|
|
},
|
|
],
|
|
},
|
|
];
|
|
|
|
const inputProps = {
|
|
style: { width: 128 },
|
|
};
|
|
|
|
const selectProps = {
|
|
...inputProps,
|
|
options: [
|
|
{ value: 'light', label: 'Light' },
|
|
{ value: 'bamboo', label: 'Bamboo' },
|
|
{ value: 'little', label: 'Little' },
|
|
],
|
|
};
|
|
|
|
const treeData = [
|
|
{
|
|
value: 'little',
|
|
key: 'little',
|
|
label: 'Little',
|
|
title: 'Little',
|
|
children: [
|
|
{ value: 'light', key: 'light', label: 'Light', title: 'Light' },
|
|
{ value: 'bamboo', key: 'bamboo', label: 'Bamboo', title: 'Bamboo' },
|
|
],
|
|
},
|
|
];
|
|
|
|
const treeSelectProps: TreeSelectProps = {
|
|
...inputProps,
|
|
treeCheckable: true,
|
|
maxTagCount: 'responsive',
|
|
treeData,
|
|
};
|
|
|
|
const carTabListNoTitle = [
|
|
{
|
|
key: 'article',
|
|
tab: 'article',
|
|
},
|
|
{
|
|
key: 'app',
|
|
tab: 'app',
|
|
},
|
|
{
|
|
key: 'project',
|
|
tab: 'project',
|
|
},
|
|
];
|
|
|
|
const MyTransfer = () => {
|
|
const mockData = [];
|
|
for (let i = 0; i < 20; i++) {
|
|
mockData.push({
|
|
key: i.toString(),
|
|
title: `content${i + 1}`,
|
|
description: `description of content${i + 1}`,
|
|
});
|
|
}
|
|
|
|
return (
|
|
<Transfer
|
|
dataSource={mockData}
|
|
targetKeys={['18']}
|
|
selectedKeys={['3']}
|
|
render={item => item.title}
|
|
/>
|
|
);
|
|
};
|
|
|
|
const App: React.FC = () => {
|
|
const [color, setColor] = useState({
|
|
primaryColor: '#1890ff',
|
|
errorColor: '#ff4d4f',
|
|
warningColor: '#faad14',
|
|
successColor: '#52c41a',
|
|
infoColor: '#1890ff',
|
|
});
|
|
|
|
const onColorChange = (nextColor: Partial<typeof color>) => {
|
|
const mergedNextColor = {
|
|
...color,
|
|
...nextColor,
|
|
};
|
|
setColor(mergedNextColor);
|
|
ConfigProvider.config({
|
|
theme: mergedNextColor,
|
|
});
|
|
};
|
|
|
|
return (
|
|
<Row gutter={16} wrap={false}>
|
|
<Col flex="none">
|
|
<Space direction="vertical" align="center">
|
|
{/* Primary Color */}
|
|
<SketchPicker
|
|
presetColors={['#1890ff', '#25b864', '#ff6f00']}
|
|
color={color.primaryColor}
|
|
onChange={({ hex }) => {
|
|
onColorChange({
|
|
primaryColor: hex,
|
|
});
|
|
}}
|
|
/>
|
|
|
|
<span style={{ color: 'var(--ant-primary-color)' }}>var(`--ant-primary-color`)</span>
|
|
|
|
{/* Error Color */}
|
|
<SketchPicker
|
|
presetColors={['#ff4d4f']}
|
|
color={color.errorColor}
|
|
onChange={({ hex }) => {
|
|
onColorChange({
|
|
errorColor: hex,
|
|
});
|
|
}}
|
|
/>
|
|
|
|
<span style={{ color: 'var(--ant-error-color)' }}>var(`--ant-error-color`)</span>
|
|
|
|
{/* Warning Color */}
|
|
<SketchPicker
|
|
presetColors={['#faad14']}
|
|
color={color.warningColor}
|
|
onChange={({ hex }) => {
|
|
onColorChange({
|
|
warningColor: hex,
|
|
});
|
|
}}
|
|
/>
|
|
|
|
<span style={{ color: 'var(--ant-warning-color)' }}>var(`--ant-warning-color`)</span>
|
|
|
|
{/* Success Color */}
|
|
<SketchPicker
|
|
presetColors={['#52c41a']}
|
|
color={color.successColor}
|
|
onChange={({ hex }) => {
|
|
onColorChange({
|
|
successColor: hex,
|
|
});
|
|
}}
|
|
/>
|
|
|
|
<span style={{ color: 'var(--ant-success-color)' }}>var(`--ant-success-color`)</span>
|
|
|
|
{/* Info Color */}
|
|
<SketchPicker
|
|
presetColors={['#1890ff']}
|
|
color={color.infoColor}
|
|
onChange={({ hex }) => {
|
|
onColorChange({
|
|
infoColor: hex,
|
|
});
|
|
}}
|
|
/>
|
|
|
|
<span style={{ color: 'var(--ant-info-color)' }}>var(`--ant-info-color`)</span>
|
|
</Space>
|
|
</Col>
|
|
|
|
<Col flex="auto">
|
|
<Space direction="vertical" split={<Divider />} style={{ width: '100%' }} size={0}>
|
|
{/* Primary Button */}
|
|
<SplitSpace>
|
|
<Button type="primary">Primary</Button>
|
|
<Button>Default</Button>
|
|
<Button type="dashed">Dashed</Button>
|
|
<Button type="text">Text</Button>
|
|
<Button type="link">Link</Button>
|
|
</SplitSpace>
|
|
|
|
{/* Danger Button */}
|
|
<SplitSpace>
|
|
<Button danger type="primary">
|
|
Primary
|
|
</Button>
|
|
<Button danger>Default</Button>
|
|
<Button danger type="dashed">
|
|
Dashed
|
|
</Button>
|
|
<Button danger type="text">
|
|
Text
|
|
</Button>
|
|
<Button danger type="link">
|
|
Link
|
|
</Button>
|
|
</SplitSpace>
|
|
|
|
{/* Ghost Button */}
|
|
<SplitSpace style={{ background: 'rgb(190, 200, 200)' }}>
|
|
<Button type="primary" ghost>
|
|
Primary
|
|
</Button>
|
|
<Button ghost>Default</Button>
|
|
<Button type="dashed" ghost>
|
|
Dashed
|
|
</Button>
|
|
<Button type="primary" ghost danger>
|
|
Primary
|
|
</Button>
|
|
<Button ghost danger>
|
|
Default
|
|
</Button>
|
|
<Button type="dashed" ghost danger>
|
|
Dashed
|
|
</Button>
|
|
</SplitSpace>
|
|
|
|
{/* Typography */}
|
|
<SplitSpace>
|
|
<Typography.Text type="success">Text (success)</Typography.Text>
|
|
<Typography.Text type="warning">Text(warning)</Typography.Text>
|
|
<Typography.Text type="danger">Text(danger)</Typography.Text>
|
|
<Typography.Link href="https://ant.design" target="_blank">
|
|
Link
|
|
</Typography.Link>
|
|
<Typography.Text copyable>Text</Typography.Text>
|
|
|
|
{/* Dropdown */}
|
|
<Dropdown
|
|
menu={{
|
|
items: [
|
|
{
|
|
key: '1',
|
|
label: '1st menu item',
|
|
},
|
|
{
|
|
key: '2',
|
|
label: 'a danger item',
|
|
danger: true,
|
|
},
|
|
],
|
|
}}
|
|
>
|
|
<a onClick={e => e.preventDefault()}>
|
|
<Space>
|
|
Hover me
|
|
<DownOutlined />
|
|
</Space>
|
|
</a>
|
|
</Dropdown>
|
|
|
|
{/* Spin */}
|
|
<Spin />
|
|
</SplitSpace>
|
|
|
|
{/* Menu - horizontal */}
|
|
<Row gutter={16}>
|
|
<Col span={12}>
|
|
<Menu mode="horizontal" defaultSelectedKeys={['mail']} items={menuItems} />
|
|
</Col>
|
|
<Col span={12}>
|
|
<Menu
|
|
mode="horizontal"
|
|
theme="dark"
|
|
defaultSelectedKeys={['mail']}
|
|
items={menuItems}
|
|
/>
|
|
</Col>
|
|
</Row>
|
|
|
|
{/* Menu - vertical */}
|
|
<Row gutter={16}>
|
|
<Col span={12}>
|
|
<Menu mode="inline" defaultSelectedKeys={['mail']} items={menuItems} />
|
|
</Col>
|
|
<Col span={12}>
|
|
<Menu mode="vertical" theme="dark" defaultSelectedKeys={['mail']} items={menuItems} />
|
|
</Col>
|
|
</Row>
|
|
|
|
{/* Pagination */}
|
|
<Pagination showQuickJumper defaultCurrent={2} total={500} />
|
|
|
|
{/* Steps */}
|
|
<Steps
|
|
current={1}
|
|
percent={60}
|
|
items={[
|
|
{
|
|
title: 'Finished',
|
|
description: 'This is a description.',
|
|
},
|
|
{
|
|
title: 'In Progress',
|
|
subTitle: 'Left 00:00:08',
|
|
description: 'This is a description.',
|
|
},
|
|
{
|
|
title: 'Waiting',
|
|
description: 'This is a description.',
|
|
},
|
|
]}
|
|
/>
|
|
|
|
{/* Steps - dot */}
|
|
<Steps
|
|
current={2}
|
|
status="error"
|
|
progressDot
|
|
items={[
|
|
{
|
|
title: 'Finished',
|
|
description: 'You can hover on the dot.',
|
|
},
|
|
{
|
|
title: 'In Progress',
|
|
description: 'You can hover on the dot.',
|
|
},
|
|
{
|
|
title: 'Error',
|
|
description: 'You can hover on the dot.',
|
|
},
|
|
{
|
|
title: 'Waiting',
|
|
description: 'You can hover on the dot.',
|
|
},
|
|
]}
|
|
/>
|
|
|
|
{/* Form - Input */}
|
|
<Form>
|
|
<SplitSpace>
|
|
<Form.Item>
|
|
<Input {...inputProps} />
|
|
</Form.Item>
|
|
<Form.Item hasFeedback validateStatus="success">
|
|
<Input {...inputProps} />
|
|
</Form.Item>
|
|
<Form.Item hasFeedback validateStatus="warning">
|
|
<Input {...inputProps} />
|
|
</Form.Item>
|
|
<Form.Item hasFeedback validateStatus="error">
|
|
<Input {...inputProps} />
|
|
</Form.Item>
|
|
<Form.Item hasFeedback validateStatus="validating">
|
|
<Input {...inputProps} />
|
|
</Form.Item>
|
|
</SplitSpace>
|
|
</Form>
|
|
|
|
{/* Form - Select */}
|
|
<Form>
|
|
<SplitSpace>
|
|
<Form.Item>
|
|
<Select {...selectProps} />
|
|
</Form.Item>
|
|
<Form.Item hasFeedback validateStatus="success">
|
|
<Select {...selectProps} />
|
|
</Form.Item>
|
|
<Form.Item hasFeedback validateStatus="warning">
|
|
<Select {...selectProps} />
|
|
</Form.Item>
|
|
<Form.Item hasFeedback validateStatus="error">
|
|
<Select {...selectProps} />
|
|
</Form.Item>
|
|
<Form.Item hasFeedback validateStatus="validating">
|
|
<Select {...selectProps} />
|
|
</Form.Item>
|
|
</SplitSpace>
|
|
</Form>
|
|
|
|
{/* Form - TreeSelect */}
|
|
<Form>
|
|
<SplitSpace>
|
|
<Form.Item>
|
|
<TreeSelect {...treeSelectProps} />
|
|
</Form.Item>
|
|
<Form.Item hasFeedback validateStatus="success">
|
|
<TreeSelect {...treeSelectProps} />
|
|
</Form.Item>
|
|
<Form.Item hasFeedback validateStatus="warning">
|
|
<TreeSelect {...treeSelectProps} />
|
|
</Form.Item>
|
|
<Form.Item hasFeedback validateStatus="error">
|
|
<TreeSelect {...treeSelectProps} />
|
|
</Form.Item>
|
|
<Form.Item hasFeedback validateStatus="validating">
|
|
<TreeSelect {...treeSelectProps} />
|
|
</Form.Item>
|
|
</SplitSpace>
|
|
</Form>
|
|
|
|
{/* Form - InputNumber */}
|
|
<Form>
|
|
<SplitSpace>
|
|
<Form.Item>
|
|
<InputNumber />
|
|
</Form.Item>
|
|
<Form.Item hasFeedback validateStatus="success">
|
|
<InputNumber />
|
|
</Form.Item>
|
|
<Form.Item hasFeedback validateStatus="warning">
|
|
<InputNumber />
|
|
</Form.Item>
|
|
<Form.Item hasFeedback validateStatus="error">
|
|
<InputNumber />
|
|
</Form.Item>
|
|
<Form.Item hasFeedback validateStatus="validating">
|
|
<InputNumber />
|
|
</Form.Item>
|
|
</SplitSpace>
|
|
</Form>
|
|
|
|
{/* Form - DatePicker */}
|
|
<Form>
|
|
<SplitSpace>
|
|
<Form.Item>
|
|
<DatePicker />
|
|
</Form.Item>
|
|
<Form.Item hasFeedback validateStatus="success">
|
|
<DatePicker />
|
|
</Form.Item>
|
|
<Form.Item hasFeedback validateStatus="warning">
|
|
<DatePicker />
|
|
</Form.Item>
|
|
<Form.Item hasFeedback validateStatus="error">
|
|
<DatePicker />
|
|
</Form.Item>
|
|
<Form.Item hasFeedback validateStatus="validating">
|
|
<DatePicker />
|
|
</Form.Item>
|
|
</SplitSpace>
|
|
</Form>
|
|
|
|
<SplitSpace>
|
|
<Checkbox>Checkbox</Checkbox>
|
|
|
|
<Radio.Group defaultValue="bamboo">
|
|
<Radio value="bamboo">Bamboo</Radio>
|
|
<Radio value="light">Light</Radio>
|
|
<Radio value="little">Little</Radio>
|
|
</Radio.Group>
|
|
|
|
<Mentions placeholder="Mention by @">
|
|
<Mentions.Option value="afc163">afc163</Mentions.Option>
|
|
<Mentions.Option value="zombieJ">zombieJ</Mentions.Option>
|
|
<Mentions.Option value="yesmeck">yesmeck</Mentions.Option>
|
|
</Mentions>
|
|
|
|
<Slider defaultValue={30} style={{ width: 100 }} />
|
|
|
|
<Switch defaultChecked />
|
|
</SplitSpace>
|
|
|
|
<SplitSpace>
|
|
<DatePicker.RangePicker />
|
|
<TimePicker.RangePicker />
|
|
</SplitSpace>
|
|
|
|
<Row gutter={16}>
|
|
<Col span={8}>
|
|
{/* Card */}
|
|
<Card
|
|
style={{ width: '100%' }}
|
|
tabList={carTabListNoTitle}
|
|
tabBarExtraContent={<a href="#">More</a>}
|
|
/>
|
|
</Col>
|
|
<Col span={8}>
|
|
{/* Table */}
|
|
<Table
|
|
size="small"
|
|
bordered
|
|
rowSelection={{}}
|
|
columns={[
|
|
{
|
|
title: 'Key',
|
|
dataIndex: 'key',
|
|
filters: [
|
|
{
|
|
text: 'Little',
|
|
value: 'little',
|
|
},
|
|
],
|
|
sorter: (a, b) => a.key.length - b.key.length,
|
|
},
|
|
]}
|
|
dataSource={[
|
|
{
|
|
key: 'Bamboo',
|
|
},
|
|
{
|
|
key: 'Light',
|
|
},
|
|
{
|
|
key: 'Little',
|
|
},
|
|
]}
|
|
/>
|
|
</Col>
|
|
<Col span={8}>
|
|
{/* Table */}
|
|
<Tabs defaultActiveKey="1">
|
|
<Tabs.TabPane tab="Tab 1" key="1">
|
|
Content of Tab Pane 1
|
|
</Tabs.TabPane>
|
|
<Tabs.TabPane tab="Tab 2" key="2">
|
|
Content of Tab Pane 2
|
|
</Tabs.TabPane>
|
|
<Tabs.TabPane tab="Tab 3" key="3">
|
|
Content of Tab Pane 3
|
|
</Tabs.TabPane>
|
|
</Tabs>
|
|
</Col>
|
|
</Row>
|
|
|
|
<SplitSpace>
|
|
<Tag color="success">success</Tag>
|
|
<Tag color="processing">processing</Tag>
|
|
<Tag color="error">error</Tag>
|
|
<Tag color="warning">warning</Tag>
|
|
<Tag color="default">default</Tag>
|
|
<Tag.CheckableTag checked>CheckableTag</Tag.CheckableTag>
|
|
</SplitSpace>
|
|
|
|
<Row gutter={16}>
|
|
<Col span={16}>
|
|
<Timeline mode="alternate">
|
|
<Timeline.Item>Create a services site 2015-09-01</Timeline.Item>
|
|
<Timeline.Item color="gray">
|
|
Solve initial network problems 2015-09-01
|
|
</Timeline.Item>
|
|
<Timeline.Item dot={<ClockCircleOutlined style={{ fontSize: '16px' }} />}>
|
|
Sed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium
|
|
doloremque laudantium, totam rem aperiam, eaque ipsa quae ab illo inventore
|
|
veritatis et quasi architecto beatae vitae dicta sunt explicabo.
|
|
</Timeline.Item>
|
|
</Timeline>
|
|
</Col>
|
|
|
|
<Col span={8}>
|
|
<Tree treeData={treeData} height={200} defaultExpandAll checkable />
|
|
</Col>
|
|
</Row>
|
|
|
|
{/* Alert */}
|
|
<Row gutter={16}>
|
|
<Col span={6}>
|
|
<Alert showIcon message="Success Text" type="success" />
|
|
</Col>
|
|
<Col span={6}>
|
|
<Alert showIcon message="Info Text" type="info" />
|
|
</Col>
|
|
<Col span={6}>
|
|
<Alert showIcon message="Warning Text" type="warning" />
|
|
</Col>
|
|
<Col span={6}>
|
|
<Alert showIcon message="Error Text" type="error" />
|
|
</Col>
|
|
</Row>
|
|
|
|
{/* Progress */}
|
|
<Row gutter={16}>
|
|
<Col flex="auto">
|
|
<Progress percent={30} />
|
|
<Progress percent={70} status="exception" />
|
|
<Progress percent={100} />
|
|
</Col>
|
|
<Col flex="none">
|
|
<Progress type="circle" percent={75} />
|
|
<Progress type="circle" percent={70} status="exception" />
|
|
<Progress type="circle" percent={100} />
|
|
</Col>
|
|
</Row>
|
|
|
|
<MyTransfer />
|
|
</Space>
|
|
</Col>
|
|
</Row>
|
|
);
|
|
};
|
|
|
|
export default App;
|