| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798 | 
							- /* eslint-disable max-len */
 
- import withField from './hoc/withField';
 
- // Basic component
 
- import Input from '../input/index';
 
- import TextArea from '../input/textarea';
 
- import InputNumber from '../inputNumber/index';
 
- import Select from '../select/index';
 
- import { Checkbox } from '../checkbox/index';
 
- import CheckboxGroup from '../checkbox/checkboxGroup';
 
- import { Radio } from '../radio/index';
 
- import RadioGroup from '../radio/radioGroup';
 
- import DatePicker from '../datePicker/index';
 
- import Switch from '../switch/index';
 
- import Slider from '../slider/index';
 
- import TimePicker from '../timePicker/index';
 
- import TreeSelect from '../treeSelect/index';
 
- import Cascader from '../cascader/index';
 
- import Rating from '../rating/index';
 
- import AutoComplete from '../autoComplete/index';
 
- import Upload from '../upload/index';
 
- import TagInput from '../tagInput/index';
 
- import { FormCheckboxType, FormRadioType, FormSelectType } from './interface';
 
- const FormInput = withField(Input, { maintainCursor: true });
 
- const FormInputNumber = withField(InputNumber as any, { maintainCursor: true });
 
- const FormTextArea = withField(TextArea, { maintainCursor: true });
 
- const FormSelect = withField(Select) as typeof FormSelectType;
 
- // Select after withField is a new Component, without the Option attribute, it needs to be manually assigned once
 
- FormSelect.Option = Select.Option;
 
- FormSelect.OptGroup = Select.OptGroup;
 
- const FormCheckboxGroup = withField(CheckboxGroup);
 
- const FormCheckbox = withField(Checkbox, {
 
-     valueKey: 'checked',
 
-     valuePath: 'target.checked',
 
-     shouldInject: false,
 
- }) as typeof FormCheckboxType;
 
- const FormRadioGroup = withField(RadioGroup, { valuePath: 'target.value' });
 
- const FormRadio = withField(Radio, {
 
-     valueKey: 'checked',
 
-     valuePath: 'target.checked',
 
-     shouldInject: false,
 
- }) as typeof FormRadioType;
 
- const FormDatePicker = withField(DatePicker);
 
- const FormSwitch = withField(Switch, { valueKey: 'checked' });
 
- const FormSlider = withField(Slider);
 
- /**
 
-  * Reasons for using ts-igonre:
 
-  * 
 
-  * 1. TimePicker: The propTypes of the locale is defined as object (it is not necessary and too troublesome to write a complete shapeOf), 
 
-  * but the interface defines a complete type, the two cannot match, and ts will report an error, so skip it here.
 
-  * 
 
-  * 2. Cascader: treeData { label, value } define in PropTypes.shapeOf alreaady declare isRequired, ts still throw error 
 
-  *    【Property is optional in type “InferProps<{ value: Validator<string | number>; label: Validator<any>; }>” but required in type CascaderData】
 
-  *    skip it here.
 
-  * 3. TreeSelect: value same as cascader, skip it here
 
-  * 
 
-  */
 
- // @ts-ignore-next-line
 
- const FormTimePicker = withField(TimePicker);
 
- // @ts-ignore-next-line
 
- const FormTreeSelect = withField(TreeSelect);
 
- // @ts-ignore-next-line
 
- const FormCascader = withField(Cascader);
 
- const FormRating = withField(Rating);
 
- const FormAutoComplete = withField(AutoComplete, { valueKey: 'value', onKeyChangeFnName: 'onChange' });
 
- const FormUpload = withField(Upload, { valueKey: 'fileList', valuePath: 'fileList', onKeyChangeFnName: 'onChange' });
 
- const FormTagInput = withField(TagInput);
 
- export {
 
-     FormInput,
 
-     FormInputNumber,
 
-     FormTextArea,
 
-     FormSelect,
 
-     FormCheckboxGroup,
 
-     FormCheckbox,
 
-     FormRadioGroup,
 
-     FormRadio,
 
-     FormDatePicker,
 
-     FormSwitch,
 
-     FormSlider,
 
-     FormTimePicker,
 
-     FormTreeSelect,
 
-     FormCascader,
 
-     FormRating,
 
-     FormAutoComplete,
 
-     FormUpload,
 
-     FormTagInput
 
- };
 
 
  |