dhre-ui-kit 0.0.288 → 0.0.290
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/lib/index.d.ts +1 -0
- package/lib/index.js +7 -3
- package/lib/index.js.map +1 -1
- package/lib/index.mjs +7 -3
- package/lib/index.mjs.map +1 -1
- package/package.json +1 -1
package/lib/index.mjs
CHANGED
|
@@ -676,7 +676,8 @@ const BottomDrawer = ({
|
|
|
676
676
|
showSeparator = true,
|
|
677
677
|
showBlurView = true,
|
|
678
678
|
backdropColor,
|
|
679
|
-
backdropOpacity = 0.9
|
|
679
|
+
backdropOpacity = 0.9,
|
|
680
|
+
propagateSwipe = true
|
|
680
681
|
}) => {
|
|
681
682
|
return /* @__PURE__ */ React.createElement(
|
|
682
683
|
Modal,
|
|
@@ -687,6 +688,7 @@ const BottomDrawer = ({
|
|
|
687
688
|
backdropColor: backdropColor ?? theme.SURFACE_PRIMARY.light,
|
|
688
689
|
hasBackdrop: showBlurView,
|
|
689
690
|
backdropOpacity,
|
|
691
|
+
propagateSwipe,
|
|
690
692
|
style: { margin: 0 }
|
|
691
693
|
},
|
|
692
694
|
/* @__PURE__ */ React.createElement(
|
|
@@ -3453,14 +3455,16 @@ const styles$9 = StyleSheet.create({
|
|
|
3453
3455
|
backgroundColor: DHRE_COLORS_TEXT.DH_WHITE,
|
|
3454
3456
|
paddingVertical: 0,
|
|
3455
3457
|
height: verticalScale(48),
|
|
3456
|
-
justifyContent: "center"
|
|
3458
|
+
justifyContent: "center",
|
|
3459
|
+
fontSize: moderateScale(16)
|
|
3457
3460
|
},
|
|
3458
3461
|
errorInput: {
|
|
3459
3462
|
marginTop: verticalScale(12),
|
|
3460
3463
|
backgroundColor: DHRE_COLORS_TEXT.DH_WHITE,
|
|
3461
3464
|
paddingVertical: 0,
|
|
3462
3465
|
height: verticalScale(48),
|
|
3463
|
-
justifyContent: "center"
|
|
3466
|
+
justifyContent: "center",
|
|
3467
|
+
fontSize: moderateScale(16)
|
|
3464
3468
|
},
|
|
3465
3469
|
multilineInput: {
|
|
3466
3470
|
height: verticalScale(100),
|