@lodev09/react-native-true-sheet 3.0.0-beta.15 → 3.0.0-beta.16
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.
|
@@ -284,9 +284,6 @@ class TrueSheetView(private val reactContext: ThemedReactContext) :
|
|
|
284
284
|
fun setDetents(newDetents: MutableList<Double>) {
|
|
285
285
|
viewController.detents = newDetents
|
|
286
286
|
}
|
|
287
|
-
|
|
288
|
-
fun setBlurTint(tint: String?) {}
|
|
289
|
-
|
|
290
287
|
fun setEdgeToEdgeFullScreen(edgeToEdgeFullScreen: Boolean) {
|
|
291
288
|
viewController.edgeToEdgeFullScreen = edgeToEdgeFullScreen
|
|
292
289
|
}
|
|
@@ -158,7 +158,16 @@ class TrueSheetViewManager :
|
|
|
158
158
|
@ReactProp(name = "blurTint")
|
|
159
159
|
override fun setBlurTint(view: TrueSheetView, tint: String?) {
|
|
160
160
|
// iOS-specific prop - no-op on Android
|
|
161
|
-
|
|
161
|
+
}
|
|
162
|
+
|
|
163
|
+
@ReactProp(name = "blurIntensity", defaultDouble = 1.0)
|
|
164
|
+
override fun setBlurIntensity(view: TrueSheetView, value: Double) {
|
|
165
|
+
// iOS-specific prop - no-op on Android
|
|
166
|
+
}
|
|
167
|
+
|
|
168
|
+
@ReactProp(name = "blurInteraction", defaultBoolean = false)
|
|
169
|
+
override fun setBlurInteraction(view: TrueSheetView, value: Boolean) {
|
|
170
|
+
// iOS-specific prop - no-op on Android
|
|
162
171
|
}
|
|
163
172
|
|
|
164
173
|
@ReactProp(name = "edgeToEdgeFullScreen", defaultBoolean = false)
|
package/package.json
CHANGED