react-native-input-select 0.20.0 → 0.22.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.
Files changed (2) hide show
  1. package/README.md +10 -4
  2. package/package.json +1 -1
package/README.md CHANGED
@@ -2,23 +2,27 @@
2
2
 
3
3
  # react-native-input-select
4
4
 
5
- A fully customizable dropdown selection package for react-native android and iOS with multiple select and search capabilities.
5
+ |A fully customizable dropdown selection package for react-native android and iOS with multiple select and search capabilities.
6
6
 
7
7
  ## Installation
8
8
 
9
+ With npm
9
10
  ```sh
10
11
  npm install react-native-input-select
12
+ ```
13
+ With yarn
14
+
15
+ ```sh
11
16
  yarn add react-native-input-select
12
17
  ```
13
18
 
14
19
  ## Demo
15
20
 
16
- |<video src='https://user-images.githubusercontent.com/9849221/148668734-a48aad4d-99bb-4942-a167-561ed59fe38e.mov' width=90/> |
21
+ https://user-images.githubusercontent.com/9849221/226240418-efa4fe9f-4055-4c03-888e-8b7093adcd63.mov
17
22
 
23
+
18
24
  ## Basic Usage
19
25
 
20
- For more examples visit our (wiki page)[https://github.com/azeezat/react-native-select/wiki]
21
-
22
26
  ```js
23
27
  import React from 'react';
24
28
  import Dropdown from 'react-native-input-select';
@@ -50,6 +54,8 @@ export default function App() {
50
54
  );
51
55
  }
52
56
  ```
57
+ For more examples visit our [wiki page](https://github.com/azeezat/react-native-select/wiki)
58
+
53
59
 
54
60
  ## Props
55
61
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "react-native-input-select",
3
- "version": "0.20.0",
3
+ "version": "0.22.0",
4
4
  "description": "A customizable dropdown selection package for react-native for android and iOS with multiple select and search capabilities.",
5
5
  "main": "lib/commonjs/index",
6
6
  "module": "lib/module/index",