dhre-ui-kit 0.0.336 → 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
|
|
|
@@ -2987,7 +2989,7 @@ const DateRangePicker = (props) => {
|
|
|
2987
2989
|
calendarBackground: "transparent",
|
|
2988
2990
|
arrowColor: theme.CONTENT_PRIMARY,
|
|
2989
2991
|
monthTextColor: theme.CONTENT_PRIMARY,
|
|
2990
|
-
dayTextColor:
|
|
2992
|
+
dayTextColor: theme.CONTENT_SECONDRY,
|
|
2991
2993
|
todayTextColor: theme.SUCCESS,
|
|
2992
2994
|
textDisabledColor: theme.CONTENT_DISABLE
|
|
2993
2995
|
},
|