dhre-ui-kit 0.0.284 → 0.0.286
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 +6 -4
- package/lib/index.js +4 -5
- package/lib/index.js.map +1 -1
- package/lib/index.mjs +4 -5
- package/lib/index.mjs.map +1 -1
- package/package.json +1 -1
package/lib/index.mjs
CHANGED
|
@@ -659,16 +659,16 @@ const BottomDrawer = ({
|
|
|
659
659
|
titleVariant = "B2_REGULAR",
|
|
660
660
|
showHeader = true,
|
|
661
661
|
showSeparator = true,
|
|
662
|
-
showBlurView =
|
|
662
|
+
showBlurView = true,
|
|
663
|
+
backdropColor
|
|
663
664
|
}) => {
|
|
664
|
-
const { theme } = useTheme();
|
|
665
665
|
return /* @__PURE__ */ React.createElement(
|
|
666
666
|
Modal,
|
|
667
667
|
{
|
|
668
668
|
isVisible: isModalVisible,
|
|
669
669
|
swipeDirection: "down",
|
|
670
670
|
onSwipeComplete: toggleModal,
|
|
671
|
-
backdropColor: theme.SURFACE_PRIMARY,
|
|
671
|
+
backdropColor: backdropColor ?? theme.SURFACE_PRIMARY.light,
|
|
672
672
|
hasBackdrop: showBlurView,
|
|
673
673
|
style: { margin: 0 }
|
|
674
674
|
},
|
|
@@ -699,7 +699,6 @@ const BottomDrawer = ({
|
|
|
699
699
|
)
|
|
700
700
|
);
|
|
701
701
|
};
|
|
702
|
-
var BottomDrawer$1 = withThemeProvider(BottomDrawer);
|
|
703
702
|
|
|
704
703
|
const createStyles$3 = (theme) => {
|
|
705
704
|
return StyleSheet.create({
|
|
@@ -4919,5 +4918,5 @@ const RadioButtonGroup = ({ data, onSelect, containerStyle, labelStyle, optionCo
|
|
|
4919
4918
|
)));
|
|
4920
4919
|
};
|
|
4921
4920
|
|
|
4922
|
-
export { Accordion$1 as Accordion, index$1 as AppointmentCard, Badge$1 as Badge, BottomDrawer
|
|
4921
|
+
export { Accordion$1 as Accordion, index$1 as AppointmentCard, Badge$1 as Badge, BottomDrawer, CustomButton$1 as Button, Cards, category as Category, Checkbox as CheckBox, ContactModel, CountryDropDown as CountryPicker, CustomDocumentPicker$1 as CustomDocumentPicker, CustomDropdown$1 as CustomDropdown, CustomHeader$1 as CustomHeader, CustomIcon, CustomLoader$1 as CustomLoader, CustomProgressBar, CustomSearchBar, index$2 as CustomSlideButton, CustomSwitchBtn, CustomText$1 as CustomText, CustomTextInput, CustomTooltip, CustomTypography, DHRE_COLORS_ALERT, DHRE_COLORS_BG, DHRE_COLORS_PRIMARY, DHRE_COLORS_SECONDARY, DHRE_COLORS_TEXT, DHRE_DEFAULT, DateRangePicker$1 as DateRangePicker, CustomDropdown as DropDown, FONT_STYLES, feedback as FeedbackForm, FileUpload, FontStyle, Line, NotificationBandge, OTPInput, OurOffices as OurOfficesButton, PdfView, PopUp, index as PropertyDetails, RadioButtonGroup, ShapeType, TagSingleSelection as SingleSelectionTags, Star as StarRating, index$3 as Stepper, SwipableList$1 as SwipableList, Tabs$1 as Tabs, Tags, TextDirectType, CommonTextInput as TextInput, Theme, Toast, CustomSwitch as ToggleButton, ToggleButtonType, ToggleTextType, Topic$1 as Topic, copyToClipboard, theme as default, height, horizontalScale, moderateScale, toastService, verticalScale, width };
|
|
4923
4922
|
//# sourceMappingURL=index.mjs.map
|