dhre-ui-kit 0.0.192 → 0.0.194
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 +17 -4
- package/lib/index.js +279 -221
- package/lib/index.js.map +1 -1
- package/lib/index.mjs +279 -222
- package/lib/index.mjs.map +1 -1
- package/package.json +1 -1
package/lib/index.d.ts
CHANGED
|
@@ -1086,13 +1086,26 @@ interface PropertyDetailsProps {
|
|
|
1086
1086
|
brandIcon: React.ReactElement;
|
|
1087
1087
|
title: string;
|
|
1088
1088
|
subTitle: string;
|
|
1089
|
-
propertyNumber
|
|
1090
|
-
hintIcon
|
|
1091
|
-
btnIcon
|
|
1089
|
+
propertyNumber?: string;
|
|
1090
|
+
hintIcon?: React.ReactElement;
|
|
1091
|
+
btnIcon?: React.ReactElement;
|
|
1092
1092
|
containerStyle?: ViewStyle;
|
|
1093
1093
|
onRightIconPress: () => void;
|
|
1094
1094
|
}
|
|
1095
1095
|
|
|
1096
1096
|
declare const _default: (props: PropertyDetailsProps) => React$1.JSX.Element;
|
|
1097
1097
|
|
|
1098
|
-
|
|
1098
|
+
type RadioButtonItem = {
|
|
1099
|
+
label: string;
|
|
1100
|
+
value: string;
|
|
1101
|
+
};
|
|
1102
|
+
interface RadioButtonGroupProps {
|
|
1103
|
+
data: RadioButtonItem[];
|
|
1104
|
+
onSelect: (item: RadioButtonItem) => void;
|
|
1105
|
+
containerStyle?: ViewStyle;
|
|
1106
|
+
labelStyle?: ViewStyle;
|
|
1107
|
+
}
|
|
1108
|
+
|
|
1109
|
+
declare const RadioButtonGroup: React$1.FC<RadioButtonGroupProps>;
|
|
1110
|
+
|
|
1111
|
+
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 };
|