ab-ui-library 1.37.6 → 1.37.7
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.
|
@@ -104,6 +104,7 @@ var Select = function Select(props) {
|
|
|
104
104
|
setFieldValue = props.setFieldValue,
|
|
105
105
|
setSelectedItem = props.setSelectedItem,
|
|
106
106
|
onInputChange = props.onInputChange,
|
|
107
|
+
handleInputChange = props.handleInputChange,
|
|
107
108
|
outerHelperText = props.outerHelperText,
|
|
108
109
|
innerHelperText = props.innerHelperText,
|
|
109
110
|
isRequiredField = props.isRequiredField,
|
|
@@ -277,6 +278,7 @@ var Select = function Select(props) {
|
|
|
277
278
|
label: label,
|
|
278
279
|
onChange: onSearch,
|
|
279
280
|
onInput: onInputChange,
|
|
281
|
+
handleChange: handleInputChange,
|
|
280
282
|
required: isRequiredField,
|
|
281
283
|
leftIconProps: leftIconProps,
|
|
282
284
|
rightIconProps: isOpen ? selectRightIconOpenedProps : selectRightIconProps,
|
|
@@ -123,6 +123,7 @@ export interface TSingleSelectPropTypes extends IFormCompProps, TSelectBaseProps
|
|
|
123
123
|
selectedItem?: TItemValue;
|
|
124
124
|
setSelectedItem?: (items: TItemValue | undefined) => void;
|
|
125
125
|
onInputChange?: (event: FormEvent<HTMLInputElement>) => void;
|
|
126
|
+
handleInputChange?: (event: TChangeEventType, value: string) => void;
|
|
126
127
|
isSearchable?: boolean;
|
|
127
128
|
isDynamicSearchable?: boolean;
|
|
128
129
|
outerHelperText?: string;
|