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 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
- - Android-native `DrumPicker` Fabric view (Kotlin, `RecyclerView`, snap-to-center).
13
- - TypeScript public API and codegen spec (`DrumPickerView`).
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
- - (nothing yet)
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
- - (nothing yet)
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] - TBD
36
+ ## [0.1.0] - 2026-05-21
28
37
 
29
- > First public npm release when published. Replace **TBD** with the release date.
38
+ First release on [npm](https://www.npmjs.com/package/react-native-drum-picker).
30
39
 
31
40
  ### Added
32
41
 
33
- - Initial open-source release (Android only).
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.0...HEAD
36
- [0.1.0]: https://github.com/scrollDynasty/react-native-drum-picker/releases/tag/v0.1.0
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
  [![npm version](https://img.shields.io/npm/v/react-native-drum-picker.svg)](https://www.npmjs.com/package/react-native-drum-picker)
4
- [![license](https://img.shields.io/npm/l/react-native-drum-picker.svg)](https://github.com/scrollDynasty/react-native-drum-picker/blob/main/LICENSE)
4
+ [![license](https://img.shields.io/github/license/scrollDynasty/react-native-drum-picker.svg)](https://github.com/scrollDynasty/react-native-drum-picker/blob/main/LICENSE)
5
5
  [![platform](https://img.shields.io/badge/platform-Android-3DDC84.svg)](https://reactnative.dev)
6
6
  [![React Native](https://img.shields.io/badge/React%20Native-%E2%89%A50.76-61DAFB.svg)](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
- > Add a GIF or screenshot here.
12
+ `DateDrumPicker` on Android (day · month · year):
13
+
14
+ ![DateDrumPicker preview — day, month, year columns](https://raw.githubusercontent.com/scrollDynasty/react-native-drum-picker/main/img/image.png)
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.0",
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",