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 CHANGED
@@ -54,6 +54,7 @@ interface BottomDrawerProps {
54
54
  backdropOpacity?: number;
55
55
  propagateSwipe?: boolean;
56
56
  swipeDirection?: string;
57
+ footer?: React.ReactNode;
57
58
  }
58
59
 
59
60
  declare const BottomDrawer: React$1.FC<BottomDrawerProps>;
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: "red",
2992
+ dayTextColor: theme.CONTENT_SECONDRY,
2991
2993
  todayTextColor: theme.SUCCESS,
2992
2994
  textDisabledColor: theme.CONTENT_DISABLE
2993
2995
  },