hlyc-web-pack 3.6.69 → 3.6.71

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -1,5 +1,5 @@
1
1
  import React from 'react';
2
- import { RadioChangeEvent, InputNumberProps } from 'antd';
2
+ import { RadioChangeEvent, InputNumberProps, AutoCompleteProps } from 'antd';
3
3
  import { RowProps } from 'antd/es/row';
4
4
  import { ColProps } from 'antd/es/col';
5
5
  import { FormProps, Rule, FormItemProps } from 'antd/es/form';
@@ -51,7 +51,7 @@ interface UnionType {
51
51
  export declare type FormListType = {
52
52
  colProps?: ColProps;
53
53
  visible?: boolean;
54
- componentName: 'Input' | 'InputNumber' | 'HideInput' | 'TextArea' | 'AutoComplete' | 'Select' | 'Multiple' | 'MultipleTag' | 'RemoteSearch' | 'DatePicker' | 'RangePicker' | 'TimeRangePicker' | 'TimePicker' | 'Switch' | 'Radio' | 'Checkbox' | 'TreeSelect' | 'Union' | 'RegionSelection' | 'Rate' | 'Null';
54
+ componentName: 'Input' | 'InputNumber' | 'HideInput' | 'TextArea' | 'AutoComplete' | 'InputAutoComplete' | 'Select' | 'Multiple' | 'MultipleTag' | 'RemoteSearch' | 'DatePicker' | 'RangePicker' | 'TimeRangePicker' | 'TimePicker' | 'Switch' | 'Radio' | 'Checkbox' | 'TreeSelect' | 'Union' | 'RegionSelection' | 'Rate' | 'Null';
55
55
  name?: string;
56
56
  label?: string | React.ReactNode;
57
57
  dependencies?: (string | number)[];
@@ -69,6 +69,7 @@ export declare type FormListType = {
69
69
  rangePickerConfig?: RangePickerProps;
70
70
  timeRangePickerConfig?: TimeRangePickerProps;
71
71
  timePickerConfig?: TimePickerProps;
72
+ inputAutoCompleteConfig?: AutoCompleteProps;
72
73
  unionConfig?: {
73
74
  unionItems: UnionType[];
74
75
  divide?: string;
@@ -101,6 +102,7 @@ export declare type FormListType = {
101
102
  };
102
103
  rows?: number;
103
104
  rules?: Rule[];
105
+ inputAutoCompleteChange?: AutoCompleteProps['onChange'];
104
106
  inputChange?: (e: React.ChangeEvent<HTMLInputElement>, other?: any) => void;
105
107
  inputNumberChange?: InputNumberProps['onChange'];
106
108
  inputEnter?: (e: React.KeyboardEvent<HTMLInputElement>) => void;