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 +1 -0
- package/lib/index.js +3 -1
- package/lib/index.js.map +1 -1
- package/lib/index.mjs +3 -1
- 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(
|