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 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
 
@@ -2992,7 +2994,7 @@ const DateRangePicker = (props) => {
2992
2994
  textDisabledColor: theme.CONTENT_DISABLE
2993
2995
  },
2994
2996
  style: {
2995
- backgroundColor: theme.SURFACE_SECONDARY,
2997
+ backgroundColor: theme.SURFACE_TERTIARY,
2996
2998
  color: theme.CONTENT_SECONDRY,
2997
2999
  borderRadius: 24
2998
3000
  },