react-native-international-phone-number 0.11.2 → 0.11.3

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.
Files changed (2) hide show
  1. package/README.md +5 -3
  2. package/package.json +3 -3
package/README.md CHANGED
@@ -99,14 +99,16 @@
99
99
 
100
100
  ## Installation
101
101
 
102
+ To use this library, make sure you have **react-native-international-phone-number** installed along with its required dependency **react-native-safe-area-context**:
103
+
102
104
  ```bash
103
- $ npm i --save react-native-international-phone-number
105
+ npm install react-native-international-phone-number react-native-safe-area-context
104
106
  ```
105
107
 
106
- OR
108
+ Since **react-native-safe-area-context** includes native code, you’ll need to install the iOS pods on macOS to complete the linking:
107
109
 
108
110
  ```bash
109
- $ yarn add react-native-international-phone-number
111
+ npx pod-install ios
110
112
  ```
111
113
 
112
114
  ## Additional config to WEB
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "react-native-international-phone-number",
3
3
  "author": "AstrOOnauta (https://github.com/AstrOOnauta)",
4
- "version": "0.11.2",
4
+ "version": "0.11.3",
5
5
  "description": "International mobile phone input component with mask for React Native",
6
6
  "main": "lib/index.js",
7
7
  "types": "lib/index.d.ts",
@@ -44,8 +44,8 @@
44
44
  "react-native": "*"
45
45
  },
46
46
  "dependencies": {
47
- "react-native-country-select": "0.3.4",
48
- "libphonenumber-js": "1.12.25"
47
+ "react-native-country-select": "0.3.7",
48
+ "libphonenumber-js": "1.12.28"
49
49
  },
50
50
  "devDependencies": {
51
51
  "metro-react-native-babel-preset": "^0.61.0"