react-native-country-select 0.3.8 → 0.3.9

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.
@@ -133,6 +133,7 @@ export const AlphabeticFilter: React.FC<AlphabeticFilterProps> = ({
133
133
  styles.alphabetLetter,
134
134
  isActive && styles.alphabetLetterActive,
135
135
  countrySelectStyle?.alphabetLetter,
136
+ isActive && countrySelectStyle?.alphabetLetterActive,
136
137
  ]}
137
138
  accessibilityRole="button"
138
139
  accessibilityHint={
@@ -151,6 +152,7 @@ export const AlphabeticFilter: React.FC<AlphabeticFilterProps> = ({
151
152
  styles.alphabetLetterText,
152
153
  isActive && styles.alphabetLetterTextActive,
153
154
  countrySelectStyle?.alphabetLetterText,
155
+ isActive && countrySelectStyle?.alphabetLetterTextActive,
154
156
  ]}
155
157
  allowFontScaling={allowFontScaling}
156
158
  >
@@ -166,6 +168,7 @@ export const AlphabeticFilter: React.FC<AlphabeticFilterProps> = ({
166
168
  styles.alphabetLetter,
167
169
  styles.alphabetLetterDisabled,
168
170
  countrySelectStyle?.alphabetLetter,
171
+ countrySelectStyle?.alphabetLetterDisabled,
169
172
  ]}
170
173
  >
171
174
  <Text
@@ -173,6 +176,7 @@ export const AlphabeticFilter: React.FC<AlphabeticFilterProps> = ({
173
176
  styles.alphabetLetterText,
174
177
  styles.alphabetLetterTextDisabled,
175
178
  countrySelectStyle?.alphabetLetterText,
179
+ countrySelectStyle?.alphabetLetterTextDisabled,
176
180
  ]}
177
181
  >
178
182
  {letter}
@@ -34,6 +34,7 @@ export type ICountryCca2 =
34
34
  | 'BR'
35
35
  | 'BB'
36
36
  | 'BN'
37
+ | 'BQ'
37
38
  | 'BT'
38
39
  | 'BV'
39
40
  | 'BW'
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "react-native-country-select",
3
- "version": "0.3.8",
3
+ "version": "0.3.9",
4
4
  "description": "🌍 React Native country picker with flags, search, TypeScript, i18n, and offline support. Lightweight, customizable, and designed with a modern UI.",
5
5
  "main": "lib/index.tsx",
6
6
  "types": "lib/index.d.ts",