homeflowjs 0.13.1 → 0.13.3
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.
@@ -16,6 +16,7 @@ const BranchesSearchInput = ({
|
|
16
16
|
isRequired,
|
17
17
|
submitOnSelect,
|
18
18
|
resetPlaceId,
|
19
|
+
inputProps,
|
19
20
|
}) => {
|
20
21
|
const { branchesSearch } = useSelector((state) => state?.branches);
|
21
22
|
const dispatch = useDispatch();
|
@@ -135,6 +136,7 @@ const BranchesSearchInput = ({
|
|
135
136
|
setPlaceID('');
|
136
137
|
}
|
137
138
|
},
|
139
|
+
...inputProps,
|
138
140
|
}}
|
139
141
|
highlightFirstSuggestion
|
140
142
|
/>
|
@@ -155,6 +157,7 @@ BranchesSearchInput.propTypes = {
|
|
155
157
|
PropTypes.string,
|
156
158
|
]),
|
157
159
|
submitOnSelect: PropTypes.bool,
|
160
|
+
inputProps: PropTypes.object,
|
158
161
|
};
|
159
162
|
|
160
163
|
BranchesSearchInput.defaultProps = {
|
@@ -164,6 +167,7 @@ BranchesSearchInput.defaultProps = {
|
|
164
167
|
setIsSelected: '',
|
165
168
|
isRequired: false,
|
166
169
|
submitOnSelect: false,
|
170
|
+
inputProps: {},
|
167
171
|
};
|
168
172
|
|
169
173
|
export default BranchesSearchInput;
|