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.mjs
CHANGED
|
@@ -686,6 +686,7 @@ const BottomDrawer = ({
|
|
|
686
686
|
showBlurView = true,
|
|
687
687
|
backdropColor,
|
|
688
688
|
backdropOpacity = 0.9,
|
|
689
|
+
footer,
|
|
689
690
|
propagateSwipe = true,
|
|
690
691
|
swipeDirection = "down"
|
|
691
692
|
}) => {
|
|
@@ -725,7 +726,8 @@ const BottomDrawer = ({
|
|
|
725
726
|
style: styles$z.rightIconStyle,
|
|
726
727
|
onPress: toggleModal
|
|
727
728
|
}) : null)), children))
|
|
728
|
-
)
|
|
729
|
+
),
|
|
730
|
+
footer ? /* @__PURE__ */ React.createElement(React.Fragment, null, footer) : null
|
|
729
731
|
);
|
|
730
732
|
};
|
|
731
733
|
|
|
@@ -2956,7 +2958,7 @@ const DateRangePicker = (props) => {
|
|
|
2956
2958
|
textDisabledColor: theme.CONTENT_DISABLE
|
|
2957
2959
|
},
|
|
2958
2960
|
style: {
|
|
2959
|
-
backgroundColor: theme.
|
|
2961
|
+
backgroundColor: theme.SURFACE_TERTIARY,
|
|
2960
2962
|
color: theme.CONTENT_SECONDRY,
|
|
2961
2963
|
borderRadius: 24
|
|
2962
2964
|
},
|