Releases: callstack/react-native-slider
v4.3.0: React Native new architecture support
This version introduces the support of React Native new architecture.
This was implemented in #410 by @okwasniewski
It was a huge amount of decent work, so I strongly encourage to check out the PR and give the Slider a go with new architecture in your app.
To do that, upgrade Slider package in your app and follow the official guide on how to migrate your app to new architecture.
This update does also introduce some improvements/changes "under the hood" so in case of any problems/errors please report them by creating new issue.
v4.2.4: Bug fixes and minor chore improvements
v4.2.3: Hotfix for Android default value
This release brings the hotfix for ignored default Android value issue.
- fix: do not reset the seekbar listener when setting the value (#387)
v4.2.2: Bugfixes and improvements
This release introduces several fixes and improvements, as well as some of the dependencies updates.
What has changed:
- Fix: SeekBar on Android is rendering incorrectly in RTL mode (#371)
@pavel-stryber - Fix: onChange is not called for tap when on Android (#367)
- Fix: onAccessibilityAction causes crash (#368)
- Fix: Type error when using Slider with props as ref (#369)
For full changelog please refer to: v4.2.1...v4.2.2
v4.2.1: Fix for conflicting disable states in accessibility
- Fix: Conflicting states for accessibility and non-accessibility users (#354)
@fabriziobertoglio1987
v4.2.0: Controlled value
This release introduces the value property refactored so that it can be easily used to programmatically control the position of the thumb.
Most important notes about the updated value property:
- Can be used to programmatically control the position of the thumb,
- Affects the thumb's position immediately once updated
- Programmatic update to the
valuedoes not trigger theonValueChangeevent - When updated during manual dragging the manual update has priority
- Property is still optional and can be still used as an initial value only
For more information please visit the PR implementing the feature: #349
v4.1.12: Removed redundant flow-bin dependency
- Remove redundant flow-bin dependency (#341)
v4.1.11: Fix of `unable to resolve dependency tree` when installing using npm
- Remove react-native-windows from peerDependencies (#338)
@BartoszKlonowski
v4.1.10: Bugfixes
- Slider should announce disabled when interacting with (#335)
- Fix: OnSlidingComplete is launched at the end of tap event (#336)
- Fix: can't drag to the end of track on iOS (#334)
@BartoszKlonowski - Fix accessibility-related crash on Android 4.x (#220). (#248)
@MarkCSmith - Use PorterDuff filter when setColorFilter is depracated (#331)
@BartoszKlonowski
v4.1.9: Android build fix of unrecognized `VERSION_CODES`
- Fix: compileSdkVersion causing cannot find symbol build error (#328)
@BartoszKlonowski