@lodev09/react-native-true-sheet 3.6.4 → 3.6.5

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.
@@ -63,9 +63,8 @@ class TrueSheetBottomSheetView(private val reactContext: ThemedReactContext) : F
63
63
  }
64
64
 
65
65
  override fun setTranslationY(translationY: Float) {
66
- // Skip resetting translation to 0 for parent sheets (non-topmost)
67
66
  // This prevents keyboard inset animations from resetting parent sheet translation
68
- if (delegate?.isTopmostSheet == false && translationY == 0f && this.translationY != 0f) {
67
+ if (translationY == 0f && this.translationY != 0f) {
69
68
  return
70
69
  }
71
70
  super.setTranslationY(translationY)
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@lodev09/react-native-true-sheet",
3
- "version": "3.6.4",
3
+ "version": "3.6.5",
4
4
  "description": "The true native bottom sheet experience for your React Native Apps.",
5
5
  "source": "./src/index.ts",
6
6
  "main": "./lib/module/index.js",