dhre-ui-kit 0.0.288 → 0.0.289

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(