Skip to content

Commit 26f9b1c

Browse files
fix: amend selectedCountryData typo (#393)
1 parent 7ee9921 commit 26f9b1c

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

src/components/IntlTelInput.d.ts

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -58,7 +58,7 @@ export interface IntlTelInputProps {
5858
* @default null
5959
*/
6060
customPlaceholder?:
61-
| ((placeholder: string, seletedCountryData: CountryData) => string)
61+
| ((placeholder: string, selectedCountryData: CountryData) => string)
6262
| null
6363
/**
6464
* Don't display the countries you specify. (Array)
@@ -119,7 +119,7 @@ export interface IntlTelInputProps {
119119
onPhoneNumberChange?: (
120120
isValid: boolean,
121121
value: string,
122-
seletedCountryData: CountryData,
122+
selectedCountryData: CountryData,
123123
fullNumber: string,
124124
extension: string,
125125
) => void
@@ -130,7 +130,7 @@ export interface IntlTelInputProps {
130130
onPhoneNumberBlur?: (
131131
isValid: boolean,
132132
value: string,
133-
seletedCountryData: CountryData,
133+
selectedCountryData: CountryData,
134134
fullNumber: string,
135135
extension: string,
136136
event: React.FocusEvent<HTMLInputElement>,
@@ -142,7 +142,7 @@ export interface IntlTelInputProps {
142142
onPhoneNumberFocus?: (
143143
isValid: boolean,
144144
value: string,
145-
seletedCountryData: CountryData,
145+
selectedCountryData: CountryData,
146146
fullNumber: string,
147147
extension: string,
148148
event: React.FocusEvent<HTMLInputElement>,
@@ -153,7 +153,7 @@ export interface IntlTelInputProps {
153153
*/
154154
onSelectFlag?: (
155155
currentNumber: string,
156-
seletedCountryData: CountryData,
156+
selectedCountryData: CountryData,
157157
fullNumber: string,
158158
isValid: boolean,
159159
) => void

0 commit comments

Comments
 (0)