dhre-ui-kit 0.0.193 → 0.0.195
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 +15 -1
- package/lib/index.js +282 -223
- package/lib/index.js.map +1 -1
- package/lib/index.mjs +282 -224
- package/lib/index.mjs.map +1 -1
- package/package.json +1 -1
package/lib/index.d.ts
CHANGED
|
@@ -511,6 +511,7 @@ interface ContactModalProps {
|
|
|
511
511
|
onClose: () => void;
|
|
512
512
|
isMailOpen: boolean;
|
|
513
513
|
data: string;
|
|
514
|
+
emailSubject: string;
|
|
514
515
|
}
|
|
515
516
|
declare const _default$b: (props: ContactModalProps) => React$1.JSX.Element;
|
|
516
517
|
|
|
@@ -1095,4 +1096,17 @@ interface PropertyDetailsProps {
|
|
|
1095
1096
|
|
|
1096
1097
|
declare const _default: (props: PropertyDetailsProps) => React$1.JSX.Element;
|
|
1097
1098
|
|
|
1098
|
-
|
|
1099
|
+
type RadioButtonItem = {
|
|
1100
|
+
label: string;
|
|
1101
|
+
value: string;
|
|
1102
|
+
};
|
|
1103
|
+
interface RadioButtonGroupProps {
|
|
1104
|
+
data: RadioButtonItem[];
|
|
1105
|
+
onSelect: (item: RadioButtonItem) => void;
|
|
1106
|
+
containerStyle?: ViewStyle;
|
|
1107
|
+
labelStyle?: ViewStyle;
|
|
1108
|
+
}
|
|
1109
|
+
|
|
1110
|
+
declare const RadioButtonGroup: React$1.FC<RadioButtonGroupProps>;
|
|
1111
|
+
|
|
1112
|
+
export { _default$g as Accordion, _default$1 as AppointmentCard, _default$j as Badge, BottomDrawer, _default$i as Button, Cards, _default$8 as Category, Checkbox as CheckBox, _default$b as ContactModel, CountryDropDown as CountryPicker, _default$5 as CustomDocumentPicker, CustomDropdown$1 as CustomDropdown, _default$f as CustomHeader, type CustomHeaderProps, CustomIcon, CustomLoader, CustomProgressBar, CustomSearchBar, _default$2 as CustomSlideButton, CustomSwitchBtn, _default$k as CustomText, CustomTextInput, CustomTooltip, CustomTypography, DHRE_COLORS_ALERT, DHRE_COLORS_BG, DHRE_COLORS_PRIMARY, DHRE_COLORS_SECONDARY, DHRE_COLORS_TEXT, DHRE_DEFAULT, _default$a as DateRangePicker, CustomDropdown as DropDown, FONT_STYLES, _default$7 as FeedbackForm, FileUpload, FontStyle, _default$d as Line, NotificationBandge, _default$4 as OTPInput, _default$9 as OurOfficesButton, PdfView, PopUp, _default as PropertyDetails, RadioButtonGroup, ShapeType, _default$6 as SingleSelectionTags, Star as StarRating, _default$3 as Stepper, _default$e as SwipableList, _default$h as Tabs, Tags, TextDirectType, CommonTextInput as TextInput, Theme, Toast, type ToastRef, CustomSwitch as ToggleButton, ToggleButtonType, ToggleTextType, _default$c as Topic, copyToClipboard, theme as default, height, horizontalScale, moderateScale, toastService, verticalScale, width };
|