@@ -58,7 +58,7 @@ export interface IntlTelInputProps {
58
58
* @default null
59
59
*/
60
60
customPlaceholder ?:
61
- | ( ( placeholder : string , seletedCountryData : CountryData ) => string )
61
+ | ( ( placeholder : string , selectedCountryData : CountryData ) => string )
62
62
| null
63
63
/**
64
64
* Don't display the countries you specify. (Array)
@@ -119,7 +119,7 @@ export interface IntlTelInputProps {
119
119
onPhoneNumberChange ?: (
120
120
isValid : boolean ,
121
121
value : string ,
122
- seletedCountryData : CountryData ,
122
+ selectedCountryData : CountryData ,
123
123
fullNumber : string ,
124
124
extension : string ,
125
125
) => void
@@ -130,7 +130,7 @@ export interface IntlTelInputProps {
130
130
onPhoneNumberBlur ?: (
131
131
isValid : boolean ,
132
132
value : string ,
133
- seletedCountryData : CountryData ,
133
+ selectedCountryData : CountryData ,
134
134
fullNumber : string ,
135
135
extension : string ,
136
136
event : React . FocusEvent < HTMLInputElement > ,
@@ -142,7 +142,7 @@ export interface IntlTelInputProps {
142
142
onPhoneNumberFocus ?: (
143
143
isValid : boolean ,
144
144
value : string ,
145
- seletedCountryData : CountryData ,
145
+ selectedCountryData : CountryData ,
146
146
fullNumber : string ,
147
147
extension : string ,
148
148
event : React . FocusEvent < HTMLInputElement > ,
@@ -153,7 +153,7 @@ export interface IntlTelInputProps {
153
153
*/
154
154
onSelectFlag ?: (
155
155
currentNumber : string ,
156
- seletedCountryData : CountryData ,
156
+ selectedCountryData : CountryData ,
157
157
fullNumber : string ,
158
158
isValid : boolean ,
159
159
) => void
0 commit comments