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