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 CHANGED
@@ -51,6 +51,7 @@ interface BottomDrawerProps {
51
51
  showSeparator?: boolean;
52
52
  backdropColor?: string;
53
53
  backdropOpacity?: number;
54
+ propagateSwipe?: boolean;
54
55
  }
55
56
 
56
57
  declare const BottomDrawer: React$1.FC<BottomDrawerProps>;
package/lib/index.js CHANGED
@@ -713,7 +713,8 @@ const BottomDrawer = ({
713
713
  showSeparator = true,
714
714
  showBlurView = true,
715
715
  backdropColor,
716
- backdropOpacity = 0.9
716
+ backdropOpacity = 0.9,
717
+ propagateSwipe = true
717
718
  }) => {
718
719
  return /* @__PURE__ */ React__default["default"].createElement(
719
720
  Modal__default["default"],
@@ -724,6 +725,7 @@ const BottomDrawer = ({
724
725
  backdropColor: backdropColor ?? theme.SURFACE_PRIMARY.light,
725
726
  hasBackdrop: showBlurView,
726
727
  backdropOpacity,
728
+ propagateSwipe,
727
729
  style: { margin: 0 }
728
730
  },
729
731
  /* @__PURE__ */ React__default["default"].createElement(
@@ -3490,14 +3492,16 @@ const styles$9 = reactNative.StyleSheet.create({
3490
3492
  backgroundColor: DHRE_COLORS_TEXT.DH_WHITE,
3491
3493
  paddingVertical: 0,
3492
3494
  height: verticalScale(48),
3493
- justifyContent: "center"
3495
+ justifyContent: "center",
3496
+ fontSize: moderateScale(16)
3494
3497
  },
3495
3498
  errorInput: {
3496
3499
  marginTop: verticalScale(12),
3497
3500
  backgroundColor: DHRE_COLORS_TEXT.DH_WHITE,
3498
3501
  paddingVertical: 0,
3499
3502
  height: verticalScale(48),
3500
- justifyContent: "center"
3503
+ justifyContent: "center",
3504
+ fontSize: moderateScale(16)
3501
3505
  },
3502
3506
  multilineInput: {
3503
3507
  height: verticalScale(100),