dhre-ui-kit 0.0.285 → 0.0.287
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 +5 -5
- package/lib/index.js +5 -5
- package/lib/index.js.map +1 -1
- package/lib/index.mjs +5 -5
- package/lib/index.mjs.map +1 -1
- package/package.json +1 -1
package/lib/index.mjs
CHANGED
|
@@ -660,17 +660,18 @@ const BottomDrawer = ({
|
|
|
660
660
|
showHeader = true,
|
|
661
661
|
showSeparator = true,
|
|
662
662
|
showBlurView = true,
|
|
663
|
-
backdropColor
|
|
663
|
+
backdropColor,
|
|
664
|
+
backdropOpacity = 0.9
|
|
664
665
|
}) => {
|
|
665
|
-
const { theme } = useTheme();
|
|
666
666
|
return /* @__PURE__ */ React.createElement(
|
|
667
667
|
Modal,
|
|
668
668
|
{
|
|
669
669
|
isVisible: isModalVisible,
|
|
670
670
|
swipeDirection: "down",
|
|
671
671
|
onSwipeComplete: toggleModal,
|
|
672
|
-
backdropColor: backdropColor ?? theme.SURFACE_PRIMARY,
|
|
672
|
+
backdropColor: backdropColor ?? theme.SURFACE_PRIMARY.light,
|
|
673
673
|
hasBackdrop: showBlurView,
|
|
674
|
+
backdropOpacity,
|
|
674
675
|
style: { margin: 0 }
|
|
675
676
|
},
|
|
676
677
|
/* @__PURE__ */ React.createElement(
|
|
@@ -700,7 +701,6 @@ const BottomDrawer = ({
|
|
|
700
701
|
)
|
|
701
702
|
);
|
|
702
703
|
};
|
|
703
|
-
var BottomDrawer$1 = withThemeProvider(BottomDrawer);
|
|
704
704
|
|
|
705
705
|
const createStyles$3 = (theme) => {
|
|
706
706
|
return StyleSheet.create({
|
|
@@ -4920,5 +4920,5 @@ const RadioButtonGroup = ({ data, onSelect, containerStyle, labelStyle, optionCo
|
|
|
4920
4920
|
)));
|
|
4921
4921
|
};
|
|
4922
4922
|
|
|
4923
|
-
export { Accordion$1 as Accordion, index$1 as AppointmentCard, Badge$1 as Badge, BottomDrawer
|
|
4923
|
+
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 };
|
|
4924
4924
|
//# sourceMappingURL=index.mjs.map
|