hlyc-web-pack 3.6.70 → 3.6.72

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;
@@ -79,6 +80,7 @@ export declare type FormListType = {
79
80
  remoteConfig?: {
80
81
  initLoad?: false;
81
82
  reLoad?: boolean;
83
+ focusQuery?: false;
82
84
  remoteApi: remotePromiseType;
83
85
  remoteMode?: 'multiple' | 'tags';
84
86
  allowClear?: boolean;
@@ -101,6 +103,7 @@ export declare type FormListType = {
101
103
  };
102
104
  rows?: number;
103
105
  rules?: Rule[];
106
+ inputAutoCompleteChange?: AutoCompleteProps['onChange'];
104
107
  inputChange?: (e: React.ChangeEvent<HTMLInputElement>, other?: any) => void;
105
108
  inputNumberChange?: InputNumberProps['onChange'];
106
109
  inputEnter?: (e: React.KeyboardEvent<HTMLInputElement>) => void;