mirror of
https://github.com/ant-design/ant-design.git
synced 2024-11-24 02:59:58 +08:00
b9a6b7b578
* demo: update demo * add form * clear * add Select * add * fix style * fix style * fix * revert
84 lines
2.1 KiB
TypeScript
84 lines
2.1 KiB
TypeScript
import React, { useState } from 'react';
|
|
import {
|
|
Button,
|
|
Cascader,
|
|
DatePicker,
|
|
Form,
|
|
Input,
|
|
InputNumber,
|
|
Radio,
|
|
Select,
|
|
Switch,
|
|
TreeSelect,
|
|
} from 'antd';
|
|
|
|
type SizeType = Parameters<typeof Form>[0]['size'];
|
|
|
|
const App: React.FC = () => {
|
|
const [componentSize, setComponentSize] = useState<SizeType | 'default'>('default');
|
|
|
|
const onFormLayoutChange = ({ size }: { size: SizeType }) => {
|
|
setComponentSize(size);
|
|
};
|
|
|
|
return (
|
|
<Form
|
|
labelCol={{ span: 4 }}
|
|
wrapperCol={{ span: 14 }}
|
|
layout="horizontal"
|
|
initialValues={{ size: componentSize }}
|
|
onValuesChange={onFormLayoutChange}
|
|
size={componentSize as SizeType}
|
|
style={{ maxWidth: 600 }}
|
|
>
|
|
<Form.Item label="Form Size" name="size">
|
|
<Radio.Group>
|
|
<Radio.Button value="small">Small</Radio.Button>
|
|
<Radio.Button value="default">Default</Radio.Button>
|
|
<Radio.Button value="large">Large</Radio.Button>
|
|
</Radio.Group>
|
|
</Form.Item>
|
|
<Form.Item label="Input">
|
|
<Input />
|
|
</Form.Item>
|
|
<Form.Item label="Select">
|
|
<Select>
|
|
<Select.Option value="demo">Demo</Select.Option>
|
|
</Select>
|
|
</Form.Item>
|
|
<Form.Item label="TreeSelect">
|
|
<TreeSelect
|
|
treeData={[
|
|
{ title: 'Light', value: 'light', children: [{ title: 'Bamboo', value: 'bamboo' }] },
|
|
]}
|
|
/>
|
|
</Form.Item>
|
|
<Form.Item label="Cascader">
|
|
<Cascader
|
|
options={[
|
|
{
|
|
value: 'zhejiang',
|
|
label: 'Zhejiang',
|
|
children: [{ value: 'hangzhou', label: 'Hangzhou' }],
|
|
},
|
|
]}
|
|
/>
|
|
</Form.Item>
|
|
<Form.Item label="DatePicker">
|
|
<DatePicker />
|
|
</Form.Item>
|
|
<Form.Item label="InputNumber">
|
|
<InputNumber />
|
|
</Form.Item>
|
|
<Form.Item label="Switch" valuePropName="checked">
|
|
<Switch />
|
|
</Form.Item>
|
|
<Form.Item label="Button">
|
|
<Button>Button</Button>
|
|
</Form.Item>
|
|
</Form>
|
|
);
|
|
};
|
|
|
|
export default App;
|