dhre-ui-kit 0.0.286 → 0.0.287
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 -1
- 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.d.ts
CHANGED
|
@@ -48,9 +48,9 @@ interface BottomDrawerProps {
|
|
|
48
48
|
titleStyle?: TextStyle;
|
|
49
49
|
titleVariant?: string;
|
|
50
50
|
showHeader?: boolean;
|
|
51
|
-
blurType?: 'dark' | 'light';
|
|
52
51
|
showSeparator?: boolean;
|
|
53
52
|
backdropColor?: string;
|
|
53
|
+
backdropOpacity?: number;
|
|
54
54
|
}
|
|
55
55
|
|
|
56
56
|
declare const BottomDrawer: React$1.FC<BottomDrawerProps>;
|
package/lib/index.js
CHANGED
|
@@ -697,7 +697,8 @@ const BottomDrawer = ({
|
|
|
697
697
|
showHeader = true,
|
|
698
698
|
showSeparator = true,
|
|
699
699
|
showBlurView = true,
|
|
700
|
-
backdropColor
|
|
700
|
+
backdropColor,
|
|
701
|
+
backdropOpacity = 0.9
|
|
701
702
|
}) => {
|
|
702
703
|
return /* @__PURE__ */ React__default["default"].createElement(
|
|
703
704
|
Modal__default["default"],
|
|
@@ -707,6 +708,7 @@ const BottomDrawer = ({
|
|
|
707
708
|
onSwipeComplete: toggleModal,
|
|
708
709
|
backdropColor: backdropColor ?? theme.SURFACE_PRIMARY.light,
|
|
709
710
|
hasBackdrop: showBlurView,
|
|
711
|
+
backdropOpacity,
|
|
710
712
|
style: { margin: 0 }
|
|
711
713
|
},
|
|
712
714
|
/* @__PURE__ */ React__default["default"].createElement(
|