react-native-drum-picker 0.1.0 → 0.1.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/CHANGELOG.md +35 -13
- package/README.md +4 -2
- package/img/image.png +0 -0
- package/package.json +2 -1
package/CHANGELOG.md
CHANGED
|
@@ -7,30 +7,52 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
|
|
|
7
7
|
|
|
8
8
|
## [Unreleased]
|
|
9
9
|
|
|
10
|
+
_No changes yet._
|
|
11
|
+
|
|
12
|
+
## [0.1.2] - 2026-05-22
|
|
13
|
+
|
|
14
|
+
### Fixed
|
|
15
|
+
|
|
16
|
+
- README preview image displays on [npm](https://www.npmjs.com/package/react-native-drum-picker): `img/` included in published tarball; preview uses GitHub raw URL.
|
|
17
|
+
|
|
18
|
+
## [0.1.1] - 2026-05-22
|
|
19
|
+
|
|
10
20
|
### Added
|
|
11
21
|
|
|
12
|
-
-
|
|
13
|
-
-
|
|
14
|
-
- `DateDrumPicker` wrapper with flexible modes (`day`, `month`, `year`, combinations).
|
|
15
|
-
- Transparent background support (`backgroundColor`, `containerBackgroundColor`, `itemBackgroundColor`).
|
|
16
|
-
- iOS-style center selection indicator (optional).
|
|
17
|
-
- Distance-based text fade and size interpolation while scrolling.
|
|
22
|
+
- README preview screenshot (`img/image.png`).
|
|
23
|
+
- Open-source docs: `CONTRIBUTING.md`, `SECURITY.md`, GitHub issue/PR templates.
|
|
18
24
|
|
|
19
25
|
### Changed
|
|
20
26
|
|
|
21
|
-
- (
|
|
27
|
+
- README license badge uses GitHub (not npm) when package metadata is unavailable.
|
|
28
|
+
- `react-native.config.js` documents Android-only autolinking.
|
|
22
29
|
|
|
23
30
|
### Fixed
|
|
24
31
|
|
|
25
|
-
- (
|
|
32
|
+
- CI: `gradlew` executable bit on Linux (`chmod +x`).
|
|
33
|
+
- CI: `yarn typecheck` excludes `src/**/__tests__`.
|
|
34
|
+
- CI: `build-library` runs `yarn build` instead of missing `yarn prepare`.
|
|
26
35
|
|
|
27
|
-
## [0.1.0] -
|
|
36
|
+
## [0.1.0] - 2026-05-21
|
|
28
37
|
|
|
29
|
-
|
|
38
|
+
First release on [npm](https://www.npmjs.com/package/react-native-drum-picker).
|
|
30
39
|
|
|
31
40
|
### Added
|
|
32
41
|
|
|
33
|
-
-
|
|
42
|
+
- Android-native `DrumPicker` Fabric view (Kotlin, `RecyclerView`, snap-to-center).
|
|
43
|
+
- TypeScript public API and codegen spec (`DrumPickerView`).
|
|
44
|
+
- `DateDrumPicker` wrapper with flexible modes (`day`, `month`, `year`, and combinations).
|
|
45
|
+
- Transparent background support (`backgroundColor`, `containerBackgroundColor`, `itemBackgroundColor`).
|
|
46
|
+
- iOS-style center selection indicator (optional).
|
|
47
|
+
- Distance-based text fade and size interpolation while scrolling.
|
|
48
|
+
- Date logic: days per month/year, year range normalization, controlled and uncontrolled `DateDrumPicker`.
|
|
49
|
+
|
|
50
|
+
## [0.0.1] - 2026-05-21
|
|
51
|
+
|
|
52
|
+
Initial GitHub release. See [v0.0.1](https://github.com/scrollDynasty/react-native-drum-picker/releases/tag/v0.0.1).
|
|
34
53
|
|
|
35
|
-
[Unreleased]: https://github.com/scrollDynasty/react-native-drum-picker/compare/v0.1.
|
|
36
|
-
[0.1.
|
|
54
|
+
[Unreleased]: https://github.com/scrollDynasty/react-native-drum-picker/compare/v0.1.2...HEAD
|
|
55
|
+
[0.1.2]: https://github.com/scrollDynasty/react-native-drum-picker/releases/tag/v0.1.2
|
|
56
|
+
[0.1.1]: https://github.com/scrollDynasty/react-native-drum-picker/releases/tag/v0.1.1
|
|
57
|
+
[0.1.0]: https://github.com/scrollDynasty/react-native-drum-picker/compare/v0.0.1...v0.1.0
|
|
58
|
+
[0.0.1]: https://github.com/scrollDynasty/react-native-drum-picker/releases/tag/v0.0.1
|
package/README.md
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
# react-native-drum-picker
|
|
2
2
|
|
|
3
3
|
[](https://www.npmjs.com/package/react-native-drum-picker)
|
|
4
|
-
[](https://github.com/scrollDynasty/react-native-drum-picker/blob/main/LICENSE)
|
|
5
5
|
[](https://reactnative.dev)
|
|
6
6
|
[](https://reactnative.dev)
|
|
7
7
|
|
|
@@ -9,7 +9,9 @@ A smooth **Android-native** iOS-style drum/wheel picker for React Native (Fabric
|
|
|
9
9
|
|
|
10
10
|
## Preview
|
|
11
11
|
|
|
12
|
-
|
|
12
|
+
`DateDrumPicker` on Android (day · month · year):
|
|
13
|
+
|
|
14
|
+

|
|
13
15
|
|
|
14
16
|
## Features
|
|
15
17
|
|
package/img/image.png
ADDED
|
Binary file
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "react-native-drum-picker",
|
|
3
|
-
"version": "0.1.
|
|
3
|
+
"version": "0.1.2",
|
|
4
4
|
"description": "Android-native iOS-style drum/wheel picker for React Native (Fabric)",
|
|
5
5
|
"main": "./lib/module/index.js",
|
|
6
6
|
"module": "./lib/module/index.js",
|
|
@@ -18,6 +18,7 @@
|
|
|
18
18
|
},
|
|
19
19
|
"files": [
|
|
20
20
|
"README.md",
|
|
21
|
+
"img",
|
|
21
22
|
"LICENSE",
|
|
22
23
|
"CHANGELOG.md",
|
|
23
24
|
"react-native.config.js",
|