dhre-ui-kit 0.0.337 → 0.0.338
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 +4 -2
- package/lib/index.js.map +1 -1
- package/lib/index.mjs +4 -2
- package/lib/index.mjs.map +1 -1
- package/package.json +1 -1
package/lib/index.d.ts
CHANGED
package/lib/index.js
CHANGED
|
@@ -722,6 +722,7 @@ const BottomDrawer = ({
|
|
|
722
722
|
showBlurView = true,
|
|
723
723
|
backdropColor,
|
|
724
724
|
backdropOpacity = 0.9,
|
|
725
|
+
footer,
|
|
725
726
|
propagateSwipe = true,
|
|
726
727
|
swipeDirection = "down"
|
|
727
728
|
}) => {
|
|
@@ -761,7 +762,8 @@ const BottomDrawer = ({
|
|
|
761
762
|
style: styles$z.rightIconStyle,
|
|
762
763
|
onPress: toggleModal
|
|
763
764
|
}) : null)), children))
|
|
764
|
-
)
|
|
765
|
+
),
|
|
766
|
+
footer ? /* @__PURE__ */ React__default["default"].createElement(React__default["default"].Fragment, null, footer) : null
|
|
765
767
|
);
|
|
766
768
|
};
|
|
767
769
|
|
|
@@ -2992,7 +2994,7 @@ const DateRangePicker = (props) => {
|
|
|
2992
2994
|
textDisabledColor: theme.CONTENT_DISABLE
|
|
2993
2995
|
},
|
|
2994
2996
|
style: {
|
|
2995
|
-
backgroundColor: theme.
|
|
2997
|
+
backgroundColor: theme.SURFACE_TERTIARY,
|
|
2996
2998
|
color: theme.CONTENT_SECONDRY,
|
|
2997
2999
|
borderRadius: 24
|
|
2998
3000
|
},
|