react-native-wheel-pick 1.1.8 → 1.1.9

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 +1 -1
  2. package/package.json +4 -7
package/README.md CHANGED
@@ -123,7 +123,7 @@ import { Picker, DatePicker } from 'react-native-wheel-pick';
123
123
  ```
124
124
  ## Release Note
125
125
 
126
- ### 1.1.8 (July 3 2022)
126
+ ### 1.1.9 (July 3 2022)
127
127
  - Support for peer dependencies React 18 by `--legacy-peer-deps`
128
128
 
129
129
  ### 1.1.7 (June 21 2022)
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "react-native-wheel-pick",
3
- "version": "1.1.8",
3
+ "version": "1.1.9",
4
4
  "description": "React native wheel picker iOS style with android.",
5
5
  "main": "src/index.js",
6
6
  "scripts": {
@@ -22,14 +22,11 @@
22
22
  "url": "https://github.com/TronNatthakorn/react-native-wheel-pick/issues"
23
23
  },
24
24
  "homepage": "https://github.com/TronNatthakorn/react-native-wheel-pick#readme",
25
- "dependencies": {
26
- "moment": "^2.19.1",
27
- "@react-native-community/datetimepicker": "^6.1.3",
28
- "@react-native-picker/picker": "^2.4.1"
29
- },
30
25
  "peerDependencies": {
31
26
  "moment": ">=2.0.0",
32
27
  "prop-types": "*",
33
- "deprecated-react-native-prop-types": ">=2.3.0"
28
+ "deprecated-react-native-prop-types": ">=2.3.0",
29
+ "@react-native-community/datetimepicker": ">=6.1.3",
30
+ "@react-native-picker/picker": ">=2.4.1"
34
31
  }
35
32
  }