@avaiyakapil/react-native-country-picker 1.0.0
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.
- package/README.md +978 -0
- package/package.json +74 -0
- package/src/CountryPicker/countries-emoji.json +1 -0
- package/src/CountryPicker/index.tsx +887 -0
- package/src/CountryPicker/styles.ts +141 -0
- package/src/CountryPicker/types.ts +290 -0
- package/src/index.ts +5 -0
package/package.json
ADDED
|
@@ -0,0 +1,74 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "@avaiyakapil/react-native-country-picker",
|
|
3
|
+
"version": "1.0.0",
|
|
4
|
+
"description": "React Native country picker component with search, flags, calling codes, and 250+ countries. Perfect for phone number input, country selection, and internationalization. Highly customizable with TypeScript support.",
|
|
5
|
+
"main": "src/index.ts",
|
|
6
|
+
"types": "src/index.ts",
|
|
7
|
+
"files": [
|
|
8
|
+
"src",
|
|
9
|
+
"README.md"
|
|
10
|
+
],
|
|
11
|
+
"scripts": {
|
|
12
|
+
"test": "echo \"Error: no test specified\" && exit 1"
|
|
13
|
+
},
|
|
14
|
+
"repository": {
|
|
15
|
+
"type": "git",
|
|
16
|
+
"url": "https://github.com/avaiyakapil/react-native-country-picker.git"
|
|
17
|
+
},
|
|
18
|
+
"homepage": "https://github.com/avaiyakapil/react-native-country-picker#readme",
|
|
19
|
+
"bugs": {
|
|
20
|
+
"url": "https://github.com/avaiyakapil/react-native-country-picker/issues"
|
|
21
|
+
},
|
|
22
|
+
"keywords": [
|
|
23
|
+
"country",
|
|
24
|
+
"country-picker",
|
|
25
|
+
"country-selector",
|
|
26
|
+
"country-select",
|
|
27
|
+
"country-chooser",
|
|
28
|
+
"react",
|
|
29
|
+
"react-native",
|
|
30
|
+
"react-native-country-picker",
|
|
31
|
+
"react-native-country-selector",
|
|
32
|
+
"react-component",
|
|
33
|
+
"phone-code",
|
|
34
|
+
"phone-number",
|
|
35
|
+
"calling-code",
|
|
36
|
+
"dial-code",
|
|
37
|
+
"flag",
|
|
38
|
+
"flags",
|
|
39
|
+
"country-flags",
|
|
40
|
+
"international",
|
|
41
|
+
"i18n",
|
|
42
|
+
"internationalization",
|
|
43
|
+
"locale",
|
|
44
|
+
"localization",
|
|
45
|
+
"phone-input",
|
|
46
|
+
"phone-number-input",
|
|
47
|
+
"country-code",
|
|
48
|
+
"iso-3166",
|
|
49
|
+
"country-list",
|
|
50
|
+
"country-data",
|
|
51
|
+
"mobile",
|
|
52
|
+
"ios",
|
|
53
|
+
"android",
|
|
54
|
+
"expo",
|
|
55
|
+
"typescript",
|
|
56
|
+
"ts",
|
|
57
|
+
"picker",
|
|
58
|
+
"dropdown",
|
|
59
|
+
"select",
|
|
60
|
+
"modal",
|
|
61
|
+
"search",
|
|
62
|
+
"searchable",
|
|
63
|
+
"customizable",
|
|
64
|
+
"animated"
|
|
65
|
+
],
|
|
66
|
+
"author": "Kapil Avaiya",
|
|
67
|
+
"license": "ISC",
|
|
68
|
+
"peerDependencies": {
|
|
69
|
+
"react": ">=16.8.0",
|
|
70
|
+
"react-native": ">=0.59.0",
|
|
71
|
+
"react-native-safe-area-context": ">=3.0.0",
|
|
72
|
+
"react-native-vector-icons": ">=6.0.0"
|
|
73
|
+
}
|
|
74
|
+
}
|