dhre-ui-kit 0.0.242 → 0.0.243
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 -2
- package/lib/index.js.map +1 -1
- package/lib/index.mjs +3 -2
- package/lib/index.mjs.map +1 -1
- package/package.json +1 -1
package/lib/index.d.ts
CHANGED
package/lib/index.js
CHANGED
|
@@ -692,7 +692,8 @@ const BottomDrawer = ({
|
|
|
692
692
|
titleStyle,
|
|
693
693
|
titleVariant = "B2_REGULAR",
|
|
694
694
|
showHeader = true,
|
|
695
|
-
blurType = "light"
|
|
695
|
+
blurType = "light",
|
|
696
|
+
showSeparator = true
|
|
696
697
|
}) => {
|
|
697
698
|
const onSwipDown = (event) => {
|
|
698
699
|
const { translationY } = event.nativeEvent;
|
|
@@ -721,7 +722,7 @@ const BottomDrawer = ({
|
|
|
721
722
|
blurType,
|
|
722
723
|
blurAmount
|
|
723
724
|
}
|
|
724
|
-
) : null, /* @__PURE__ */ React__default["default"].createElement(reactNative.View, { style: [styles$z.modalContainer, modalContainerStyle] }, showHeader && /* @__PURE__ */ React__default["default"].createElement(React__default["default"].Fragment, null, /* @__PURE__ */ React__default["default"].createElement(reactNative.View, { style: styles$z.separator }), /* @__PURE__ */ React__default["default"].createElement(reactNative.View, { style: styles$z.headerContainer }, showLeftIcon && leftIcon ? React__default["default"].cloneElement(leftIcon, {
|
|
725
|
+
) : null, /* @__PURE__ */ React__default["default"].createElement(reactNative.View, { style: [styles$z.modalContainer, modalContainerStyle] }, showHeader && /* @__PURE__ */ React__default["default"].createElement(React__default["default"].Fragment, null, showSeparator && /* @__PURE__ */ React__default["default"].createElement(reactNative.View, { style: styles$z.separator }), /* @__PURE__ */ React__default["default"].createElement(reactNative.View, { style: styles$z.headerContainer }, showLeftIcon && leftIcon ? React__default["default"].cloneElement(leftIcon, {
|
|
725
726
|
width: moderateScale(24),
|
|
726
727
|
height: moderateScale(24),
|
|
727
728
|
style: styles$z.leftIconStyle,
|