Web: Components: InputPhone - descriptions changed

This commit is contained in:
Sergei Kosyrev 2023-04-10 19:38:22 +05:30
parent f08dc3439f
commit 689a5b30b3

View File

@ -204,19 +204,19 @@ const InputPhone = ({
};
InputPhone.propTypes = {
/** Default selected country Russia */
/** Default selected country */
defaultCountry: PropTypes.object.isRequired,
/** Text displayed on the Input placeholder */
phonePlaceholderText: PropTypes.string,
/** Text displayed on the SearchInput placeholder */
searchPlaceholderText: PropTypes.string,
/** Indicates the input field has scaled */
/** Indicates that the input field has scaled */
scaled: PropTypes.bool,
/** Called when value is changed */
/** The callback function that is called when the value is changed */
onChange: PropTypes.func,
/** Gets the country mask */
searchEmptyMessage: PropTypes.string,
/** Text is displayed when invalid country dial code */
/** Text displayed in case of the invalid country dial code */
errorMessage: PropTypes.string,
};