diff --git a/.changeset/add-pagination-accessibility.md b/.changeset/add-pagination-accessibility.md deleted file mode 100644 index 2e5771f1..00000000 --- a/.changeset/add-pagination-accessibility.md +++ /dev/null @@ -1,12 +0,0 @@ ---- -"react-native-reanimated-carousel": patch ---- - -Add accessibility support to pagination components and replace deprecated TouchableWithoutFeedback with Pressable - -- Add comprehensive accessibility props (accessibilityLabel, accessibilityRole, accessibilityHint, accessibilityState) to both Basic and Custom pagination components -- Add carouselName prop to allow descriptive accessibility labels -- Replace TouchableWithoutFeedback with Pressable to remove deprecation warnings -- Improve screen reader support with proper labeling and state information - -Co-authored-by: AlexJackson01 \ No newline at end of file diff --git a/.changeset/add-programmatic-control-docs.md b/.changeset/add-programmatic-control-docs.md deleted file mode 100644 index 097ae80d..00000000 --- a/.changeset/add-programmatic-control-docs.md +++ /dev/null @@ -1,11 +0,0 @@ ---- -"react-native-reanimated-carousel": patch ---- - -Add comprehensive programmatic control documentation - -- Add new "Programmatic Control" documentation page with detailed examples -- Clarify that there's no React-style controlled component mode -- Update migration guide to use correct terminology and link to new docs -- Provide examples for common use cases: pagination, navigation buttons, dynamic content, auto-advance, and jump-to-item patterns -- Include warnings about race conditions and timing considerations \ No newline at end of file diff --git a/.changeset/fix-touchable-deprecation.md b/.changeset/fix-touchable-deprecation.md deleted file mode 100644 index b88586dd..00000000 --- a/.changeset/fix-touchable-deprecation.md +++ /dev/null @@ -1,9 +0,0 @@ ---- -"react-native-reanimated-carousel": patch ---- - -Replace deprecated TouchableWithoutFeedback with Pressable in pagination components - -Fixes deprecation warnings by replacing TouchableWithoutFeedback with the recommended Pressable component in both Basic and Custom pagination items. This change maintains the same functionality while using the modern React Native API. - -Closes #812 \ No newline at end of file diff --git a/.changeset/shy-walls-clap.md b/.changeset/shy-walls-clap.md deleted file mode 100644 index 11aa13ca..00000000 --- a/.changeset/shy-walls-clap.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -"react-native-reanimated-carousel": patch ---- - -Update homepage in package.json diff --git a/CHANGELOG.md b/CHANGELOG.md index 88a3250b..d8136be3 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,34 @@ # react-native-reanimated-carousel +## 4.0.3 + +### Patch Changes + +- [#834](https://github.com/dohooo/react-native-reanimated-carousel/pull/834) [`1d2767b`](https://github.com/dohooo/react-native-reanimated-carousel/commit/1d2767b566939ff76d92c51b0f4aeea8b71a9eaa) Thanks [@dohooo](https://github.com/dohooo)! - Add accessibility support to pagination components and replace deprecated TouchableWithoutFeedback with Pressable + + - Add comprehensive accessibility props (accessibilityLabel, accessibilityRole, accessibilityHint, accessibilityState) to both Basic and Custom pagination components + - Add carouselName prop to allow descriptive accessibility labels + - Replace TouchableWithoutFeedback with Pressable to remove deprecation warnings + - Improve screen reader support with proper labeling and state information + + Co-authored-by: AlexJackson01 + +- [#834](https://github.com/dohooo/react-native-reanimated-carousel/pull/834) [`1d2767b`](https://github.com/dohooo/react-native-reanimated-carousel/commit/1d2767b566939ff76d92c51b0f4aeea8b71a9eaa) Thanks [@dohooo](https://github.com/dohooo)! - Add comprehensive programmatic control documentation + + - Add new "Programmatic Control" documentation page with detailed examples + - Clarify that there's no React-style controlled component mode + - Update migration guide to use correct terminology and link to new docs + - Provide examples for common use cases: pagination, navigation buttons, dynamic content, auto-advance, and jump-to-item patterns + - Include warnings about race conditions and timing considerations + +- [#834](https://github.com/dohooo/react-native-reanimated-carousel/pull/834) [`1d2767b`](https://github.com/dohooo/react-native-reanimated-carousel/commit/1d2767b566939ff76d92c51b0f4aeea8b71a9eaa) Thanks [@dohooo](https://github.com/dohooo)! - Replace deprecated TouchableWithoutFeedback with Pressable in pagination components + + Fixes deprecation warnings by replacing TouchableWithoutFeedback with the recommended Pressable component in both Basic and Custom pagination items. This change maintains the same functionality while using the modern React Native API. + + Closes #812 + +- [#834](https://github.com/dohooo/react-native-reanimated-carousel/pull/834) [`1d2767b`](https://github.com/dohooo/react-native-reanimated-carousel/commit/1d2767b566939ff76d92c51b0f4aeea8b71a9eaa) Thanks [@dohooo](https://github.com/dohooo)! - Update homepage in package.json + ## 4.0.2 ### Patch Changes diff --git a/package.json b/package.json index 387d6916..fb499915 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "react-native-reanimated-carousel", - "version": "4.0.2", + "version": "4.0.3", "packageManager": "yarn@4.0.2", "description": "Simple carousel component.fully implemented using Reanimated 2.Infinitely scrolling, very smooth.", "author": "Doho (https://github.com/dohooo)",