react-native-native-select 1.0.1 → 1.0.2
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 +1 -1
- package/package.json +17 -5
package/README.md
CHANGED
|
@@ -8,7 +8,7 @@ It leverages actual OS primitives: `UIMenu` (iOS 14+), `UIPickerView` (iOS Wheel
|
|
|
8
8
|
|
|
9
9
|
| iOS (Dropdown Mode) | iOS (Dialog/Wheel Mode) | Android |
|
|
10
10
|
|:---:|:---:|:---:|
|
|
11
|
-
|  |  |  |
|
|
12
12
|
| *Native UIMenu (iOS 14+)* | *Classic UIPickerView* | *Native AppCompatSpinner* |
|
|
13
13
|
|
|
14
14
|
## Why this library?
|
package/package.json
CHANGED
|
@@ -1,12 +1,10 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "react-native-native-select",
|
|
3
|
-
"version": "1.0.
|
|
3
|
+
"version": "1.0.2",
|
|
4
4
|
"description": "react-native-native-select is a strictly native, performant Select component for React Native built exclusively for the New Architecture.",
|
|
5
|
-
|
|
6
5
|
"main": "src/index.ts",
|
|
7
6
|
"react-native": "src/index.ts",
|
|
8
7
|
"types": "src/index.ts",
|
|
9
|
-
|
|
10
8
|
"source": "src/index",
|
|
11
9
|
"files": [
|
|
12
10
|
"src",
|
|
@@ -20,8 +18,22 @@
|
|
|
20
18
|
"!**/__fixtures__",
|
|
21
19
|
"!**/__mocks__"
|
|
22
20
|
],
|
|
23
|
-
"keywords": [
|
|
24
|
-
|
|
21
|
+
"keywords": [
|
|
22
|
+
"react-native",
|
|
23
|
+
"ios",
|
|
24
|
+
"android",
|
|
25
|
+
"picker",
|
|
26
|
+
"dropdown",
|
|
27
|
+
"select",
|
|
28
|
+
"input select",
|
|
29
|
+
"new architecture",
|
|
30
|
+
"typescript",
|
|
31
|
+
"native-module"
|
|
32
|
+
],
|
|
33
|
+
"repository": {
|
|
34
|
+
"type": "git",
|
|
35
|
+
"url": "git+https://github.com/wneel/react-native-native-select.git"
|
|
36
|
+
},
|
|
25
37
|
"author": "Wayan NEEL <66263633+wneel@users.noreply.github.com> (https://github.com/wneel)",
|
|
26
38
|
"license": "MIT",
|
|
27
39
|
"bugs": {
|