react-native-wheel-pick 1.1.6 → 1.1.7
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/NOTICE +1 -1
- package/README.md +8 -6
- package/android/build.gradle +1 -1
- package/package.json +1 -1
package/NOTICE
CHANGED
|
@@ -12,5 +12,5 @@ https://github.com/lesliesam/react-native-wheel-picker
|
|
|
12
12
|
This project contains code copied from @wusuopu/react-native-wheel-picker:
|
|
13
13
|
https://github.com/wusuopu/react-native-wheel-picker
|
|
14
14
|
|
|
15
|
-
This project contains code copied from @pinguinjkeke/react-native-wheel-datepicker
|
|
15
|
+
This project contains code copied from @pinguinjkeke/react-native-wheel-datepicker:
|
|
16
16
|
https://github.com/pinguinjkeke/react-native-wheel-datepicker
|
package/README.md
CHANGED
|
@@ -5,7 +5,7 @@ React native wheel picker for both iOS and android. (Support DatePicker)
|
|
|
5
5
|
|
|
6
6
|
This is not original but inspired by [react-native-wheel-datepicker](https://github.com/pinguinjkeke/react-native-wheel-datepicker)
|
|
7
7
|
|
|
8
|
-
|
|
8
|
+
## Preview
|
|
9
9
|
|
|
10
10
|

|
|
11
11
|
|
|
@@ -13,7 +13,7 @@ This is not original but inspired by [react-native-wheel-datepicker](https://git
|
|
|
13
13
|
|
|
14
14
|
- For Picker of iOS use [@react-native-picker/picker](https://github.com/react-native-picker/picker)
|
|
15
15
|
- For DatePicker of iOS use [@react-native-community/datetimepicker](https://github.com/react-native-datetimepicker/datetimepicker)
|
|
16
|
-
- For Picker and DatePicker of Android use WheelPicker of [
|
|
16
|
+
- For Picker and DatePicker of Android use WheelPicker of [AigeStudio](https://github.com/AigeStudio/WheelPicker)
|
|
17
17
|
|
|
18
18
|
## How to use
|
|
19
19
|
|
|
@@ -123,6 +123,10 @@ import { Picker, DatePicker } from 'react-native-wheel-pick';
|
|
|
123
123
|
```
|
|
124
124
|
## Release Note
|
|
125
125
|
|
|
126
|
+
### 1.1.7 (June 21 2022)
|
|
127
|
+
[Android]
|
|
128
|
+
- compileSdk -> compileSdkVersion
|
|
129
|
+
|
|
126
130
|
### 1.1.6 (June 20 2022)
|
|
127
131
|
- Add more step for How to use
|
|
128
132
|
|
|
@@ -144,9 +148,7 @@ import { Picker, DatePicker } from 'react-native-wheel-pick';
|
|
|
144
148
|
|
|
145
149
|
[Android]
|
|
146
150
|
- Update sdk support for SDK Version 30 (Google Play need sdk version 30+)
|
|
147
|
-
- Now android support for style of selectLine / selectBackground. Special thanks to [@kaisv7n](https://github.com/kaisv7n) for his pull request,
|
|
148
|
-
[Update WheelPicker version, exposed more methods and fixed crash on android](https://github.com/TronNatthakorn/react-native-wheel-pick/pull/12) I changed prop name for more understandable.
|
|
149
|
-
|
|
151
|
+
- Now android support for style of selectLine / selectBackground. Special thanks to [@kaisv7n](https://github.com/kaisv7n) for his pull request, [Update WheelPicker version, exposed more methods and fixed crash on android](https://github.com/TronNatthakorn/react-native-wheel-pick/pull/12) I changed prop name for more understandable.
|
|
150
152
|
- DatePicker of Android also support width.
|
|
151
153
|
- Deprecated some android prop that make library faster. (Atmospheric / Curved / visibleItemCount / itemSpace)
|
|
152
154
|
If you want it back pull request are welcome.
|
|
@@ -156,7 +158,7 @@ If you want it back pull request are welcome.
|
|
|
156
158
|
[IOS]
|
|
157
159
|
- Do not use PickerIOS and DatePickerIOS of 'react-native' anymore.
|
|
158
160
|
|
|
159
|
-
|
|
161
|
+
## FYI
|
|
160
162
|
|
|
161
163
|
For version 1.1.3 - I update this library support for React Native Version 0.68.2 / Android 11 / iOS 15.2
|
|
162
164
|
|
package/android/build.gradle
CHANGED