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.mjs CHANGED
@@ -333,13 +333,13 @@ const CustomTypography = ({
333
333
  Text,
334
334
  {
335
335
  testID,
336
- style: [textStyle, styles$B.container, style],
336
+ style: [textStyle, styles$C.container, style],
337
337
  ...props
338
338
  },
339
339
  text
340
340
  );
341
341
  };
342
- const styles$B = StyleSheet.create({
342
+ const styles$C = StyleSheet.create({
343
343
  container: { writingDirection: "auto", alignSelf: "flex-start" }
344
344
  });
345
345
 
@@ -550,7 +550,7 @@ const DHRE_COLORS_TEXT = {
550
550
  DH_LIGHTGREEN: "#00B578"
551
551
  };
552
552
 
553
- const styles$A = StyleSheet.create({
553
+ const styles$B = StyleSheet.create({
554
554
  badge: {
555
555
  backgroundColor: DHRE_COLORS_ALERT.DH_SUCCESS_GREEN,
556
556
  borderRadius: 15,
@@ -577,16 +577,16 @@ const Badge = ({
577
577
  return /* @__PURE__ */ React.createElement(
578
578
  Pressable,
579
579
  {
580
- style: [styles$A.badge, commonStyles.centerRow, style],
580
+ style: [styles$B.badge, commonStyles.centerRow, style],
581
581
  testID: "BADGE",
582
582
  onPress: handleIconPress
583
583
  },
584
- iconName && /* @__PURE__ */ React.createElement(View, { style: [styles$A.icon, iconStyle] }, React.cloneElement(iconName)),
584
+ iconName && /* @__PURE__ */ React.createElement(View, { style: [styles$B.icon, iconStyle] }, React.cloneElement(iconName)),
585
585
  text && /* @__PURE__ */ React.createElement(
586
586
  CustomTypography,
587
587
  {
588
588
  variant: "B3semiBold",
589
- style: [styles$A.text, textStyle],
589
+ style: [styles$B.text, textStyle],
590
590
  text
591
591
  }
592
592
  )
@@ -594,7 +594,7 @@ const Badge = ({
594
594
  };
595
595
  var Badge$1 = withThemeProvider(Badge);
596
596
 
597
- const styles$z = StyleSheet.create({
597
+ const styles$A = StyleSheet.create({
598
598
  mainContainer: {
599
599
  flex: 1,
600
600
  justifyContent: "flex-end"
@@ -674,36 +674,36 @@ const BottomDrawer = ({
674
674
  behavior: Platform.OS === "ios" ? "padding" : "height",
675
675
  style: { flex: 1 }
676
676
  },
677
- /* @__PURE__ */ React.createElement(View, { style: [styles$z.mainContainer, style], testID }, showBlurView ? /* @__PURE__ */ React.createElement(
677
+ /* @__PURE__ */ React.createElement(View, { style: [styles$A.mainContainer, style], testID }, showBlurView ? /* @__PURE__ */ React.createElement(
678
678
  BlurView,
679
679
  {
680
- style: [styles$z.blurView, blurViewStyle],
680
+ style: [styles$A.blurView, blurViewStyle],
681
681
  blurType,
682
682
  blurAmount
683
683
  }
684
- ) : null, /* @__PURE__ */ React.createElement(View, { style: [styles$z.modalContainer, modalContainerStyle] }, showHeader && /* @__PURE__ */ React.createElement(React.Fragment, null, /* @__PURE__ */ React.createElement(View, { style: styles$z.separator }), /* @__PURE__ */ React.createElement(View, { style: styles$z.headerContainer }, showLeftIcon && leftIcon ? React.cloneElement(leftIcon, {
684
+ ) : null, /* @__PURE__ */ React.createElement(View, { style: [styles$A.modalContainer, modalContainerStyle] }, showHeader && /* @__PURE__ */ React.createElement(React.Fragment, null, /* @__PURE__ */ React.createElement(View, { style: styles$A.separator }), /* @__PURE__ */ React.createElement(View, { style: styles$A.headerContainer }, showLeftIcon && leftIcon ? React.cloneElement(leftIcon, {
685
685
  width: moderateScale(24),
686
686
  height: moderateScale(24),
687
- style: styles$z.leftIconStyle,
687
+ style: styles$A.leftIconStyle,
688
688
  onPress: onLeftIconPress
689
689
  }) : null, /* @__PURE__ */ React.createElement(
690
690
  CustomTypography,
691
691
  {
692
692
  variant: titleVariant,
693
693
  text: title,
694
- style: { ...styles$z.title, ...titleStyle }
694
+ style: { ...styles$A.title, ...titleStyle }
695
695
  }
696
696
  ), showRightIcon && rightIcon ? React.cloneElement(rightIcon, {
697
697
  width: moderateScale(24),
698
698
  height: moderateScale(24),
699
- style: styles$z.rightIconStyle,
699
+ style: styles$A.rightIconStyle,
700
700
  onPress: toggleModal
701
701
  }) : null)), children))
702
702
  ))
703
703
  );
704
704
  };
705
705
 
706
- const styles$y = StyleSheet.create({
706
+ const styles$z = StyleSheet.create({
707
707
  container: {
708
708
  flex: 1,
709
709
  justifyContent: "center",
@@ -718,7 +718,7 @@ const styles$y = StyleSheet.create({
718
718
 
719
719
  const CustomLoader = ({ loading }) => {
720
720
  if (!loading) return null;
721
- return /* @__PURE__ */ React.createElement(View, { style: styles$y.container }, /* @__PURE__ */ React.createElement(ActivityIndicator, { size: "large", color: "#686868" }));
721
+ return /* @__PURE__ */ React.createElement(View, { style: styles$z.container }, /* @__PURE__ */ React.createElement(ActivityIndicator, { size: "large", color: "#686868" }));
722
722
  };
723
723
 
724
724
  const CustomButton = ({
@@ -744,7 +744,7 @@ const CustomButton = ({
744
744
  {
745
745
  testID,
746
746
  style: [
747
- styles$x.buttonContainer,
747
+ styles$y.buttonContainer,
748
748
  containerStyle,
749
749
  isLoading && {
750
750
  paddingVertical: verticalScale(22)
@@ -774,7 +774,7 @@ const CustomButton = ({
774
774
  imagePosition === "right" && rightIcon && /* @__PURE__ */ React.createElement(View, { style: iconStyle }, React.cloneElement(rightIcon, { width: 20, height: 20 }))
775
775
  );
776
776
  };
777
- const styles$x = StyleSheet.create({
777
+ const styles$y = StyleSheet.create({
778
778
  buttonContainer: {
779
779
  flexDirection: "row",
780
780
  alignItems: "center",
@@ -786,7 +786,7 @@ const styles$x = StyleSheet.create({
786
786
  });
787
787
  var CustomButton$1 = withThemeProvider(CustomButton);
788
788
 
789
- const styles$w = StyleSheet.create({
789
+ const styles$x = StyleSheet.create({
790
790
  container: {
791
791
  padding: horizontalScale(20),
792
792
  marginHorizontal: horizontalScale(16),
@@ -851,53 +851,53 @@ const Cards = ({
851
851
  testID,
852
852
  onButtonPress
853
853
  }) => {
854
- return /* @__PURE__ */ React.createElement(View, { testID, style: styles$w.container }, topLeftTitle ? /* @__PURE__ */ React.createElement(View, { style: styles$w.topLeft }, /* @__PURE__ */ React.createElement(
854
+ return /* @__PURE__ */ React.createElement(View, { testID, style: styles$x.container }, topLeftTitle ? /* @__PURE__ */ React.createElement(View, { style: styles$x.topLeft }, /* @__PURE__ */ React.createElement(
855
855
  CustomTypography,
856
856
  {
857
857
  variant: "P2regular",
858
- style: styles$w.title,
858
+ style: styles$x.title,
859
859
  text: topLeftTitle
860
860
  }
861
861
  )) : null, title ? /* @__PURE__ */ React.createElement(
862
862
  CustomTypography,
863
863
  {
864
864
  variant: "H6bold",
865
- style: styles$w.subTitleBelow,
865
+ style: styles$x.subTitleBelow,
866
866
  text: title
867
867
  }
868
868
  ) : null, subtitle ? /* @__PURE__ */ React.createElement(
869
869
  CustomTypography,
870
870
  {
871
871
  variant: "P3regular",
872
- style: styles$w.subtitle,
872
+ style: styles$x.subtitle,
873
873
  text: subtitle
874
874
  }
875
- ) : null, /* @__PURE__ */ React.createElement(View, { style: styles$w.leftBottomView }, iconSource ? iconSource : null, iconTitle ? /* @__PURE__ */ React.createElement(
875
+ ) : null, /* @__PURE__ */ React.createElement(View, { style: styles$x.leftBottomView }, iconSource ? iconSource : null, iconTitle ? /* @__PURE__ */ React.createElement(
876
876
  CustomTypography,
877
877
  {
878
878
  variant: "P3regular",
879
- style: styles$w.subTitleLeftBelow,
879
+ style: styles$x.subTitleLeftBelow,
880
880
  text: iconTitle
881
881
  }
882
882
  ) : null), buttonShown ? /* @__PURE__ */ React.createElement(
883
883
  Pressable,
884
884
  {
885
885
  testID: "Button-Press",
886
- style: styles$w.button,
886
+ style: styles$x.button,
887
887
  onPress: onButtonPress
888
888
  },
889
889
  /* @__PURE__ */ React.createElement(
890
890
  CustomTypography,
891
891
  {
892
892
  variant: "B2semiBold",
893
- style: styles$w.buttonText,
893
+ style: styles$x.buttonText,
894
894
  text: buttonText
895
895
  }
896
896
  )
897
897
  ) : null);
898
898
  };
899
899
 
900
- const styles$v = StyleSheet.create({
900
+ const styles$w = StyleSheet.create({
901
901
  checkboxContainer: {
902
902
  alignItems: "center",
903
903
  justifyContent: "center"
@@ -953,9 +953,9 @@ const Checkbox = ({
953
953
  testID: "Checkbox-Press",
954
954
  onPress: handlePress,
955
955
  disabled: disable,
956
- style: styles$v.directionStyle
956
+ style: styles$w.directionStyle
957
957
  },
958
- /* @__PURE__ */ React.createElement(View, { style: styles$v.checkboxContainer }, React.cloneElement(checked ? checkedIcon : uncheckedIcon)),
958
+ /* @__PURE__ */ React.createElement(View, { style: styles$w.checkboxContainer }, React.cloneElement(checked ? checkedIcon : uncheckedIcon)),
959
959
  /* @__PURE__ */ React.createElement(
960
960
  CustomTypography,
961
961
  {
@@ -967,7 +967,7 @@ const Checkbox = ({
967
967
  ));
968
968
  };
969
969
 
970
- const styles$u = StyleSheet.create({
970
+ const styles$v = StyleSheet.create({
971
971
  labelStyle: {
972
972
  color: DHRE_COLORS_TEXT.DH_TEXTLIGHT
973
973
  },
@@ -1021,26 +1021,26 @@ const CustomDropdown$1 = ({
1021
1021
  CustomTypography,
1022
1022
  {
1023
1023
  variant: "P3regular",
1024
- style: styles$u.labelStyle,
1024
+ style: styles$v.labelStyle,
1025
1025
  text: label
1026
1026
  }
1027
1027
  ), /* @__PURE__ */ React.createElement(
1028
1028
  Pressable,
1029
1029
  {
1030
1030
  testID: `${testId}-BTN`,
1031
- style: styles$u.dropDownStyle,
1031
+ style: styles$v.dropDownStyle,
1032
1032
  onPress: () => setShowOptions(!showOptions)
1033
1033
  },
1034
1034
  iconName && /* @__PURE__ */ React.createElement(View, { style: iconStyle }, React.cloneElement(iconName, {
1035
1035
  width: moderateScale(24),
1036
1036
  height: moderateScale(24),
1037
- style: styles$u.iconStyle
1037
+ style: styles$v.iconStyle
1038
1038
  })),
1039
1039
  /* @__PURE__ */ React.createElement(
1040
1040
  CustomTypography,
1041
1041
  {
1042
1042
  variant: "P3regular",
1043
- style: styles$u.selectedValueStyle,
1043
+ style: styles$v.selectedValueStyle,
1044
1044
  text: selectedValue ? selectedValue.label : placeholder
1045
1045
  }
1046
1046
  ),
@@ -1051,7 +1051,7 @@ const CustomDropdown$1 = ({
1051
1051
  width: moderateScale(24),
1052
1052
  height: moderateScale(24)
1053
1053
  }))
1054
- ), showOptions && /* @__PURE__ */ React.createElement(View, { style: styles$u.optionContainer }, options?.map(({ id, value, label: label2 }) => /* @__PURE__ */ React.createElement(
1054
+ ), showOptions && /* @__PURE__ */ React.createElement(View, { style: styles$v.optionContainer }, options?.map(({ id, value, label: label2 }) => /* @__PURE__ */ React.createElement(
1055
1055
  Pressable,
1056
1056
  {
1057
1057
  key: id,
@@ -1061,7 +1061,7 @@ const CustomDropdown$1 = ({
1061
1061
  oneSelect({ id, value, label: label2 });
1062
1062
  },
1063
1063
  style: [
1064
- styles$u.item,
1064
+ styles$v.item,
1065
1065
  {
1066
1066
  backgroundColor: id === selectedValue?.id ? DHRE_COLORS_BG.DH_GREY1 : DHRE_COLORS_TEXT.DH_WHITE
1067
1067
  }
@@ -1070,7 +1070,7 @@ const CustomDropdown$1 = ({
1070
1070
  iconName && /* @__PURE__ */ React.createElement(View, { style: iconStyle }, React.cloneElement(iconName, {
1071
1071
  width: moderateScale(24),
1072
1072
  height: moderateScale(24),
1073
- style: styles$u.iconStyle
1073
+ style: styles$v.iconStyle
1074
1074
  })),
1075
1075
  /* @__PURE__ */ React.createElement(
1076
1076
  CustomTypography,
@@ -1085,7 +1085,7 @@ const CustomDropdown$1 = ({
1085
1085
  ))));
1086
1086
  };
1087
1087
 
1088
- const styles$t = StyleSheet.create({
1088
+ const styles$u = StyleSheet.create({
1089
1089
  labelStyle: {
1090
1090
  color: DHRE_COLORS_TEXT.DH_TEXTDARK
1091
1091
  },
@@ -1167,18 +1167,18 @@ const CustomTextInput = ({
1167
1167
  CustomTypography,
1168
1168
  {
1169
1169
  variant: "P3medium",
1170
- style: [styles$t.labelStyle, disabled && styles$t.disableTextStyle],
1170
+ style: [styles$u.labelStyle, disabled && styles$u.disableTextStyle],
1171
1171
  text: label
1172
1172
  }
1173
1173
  ), /* @__PURE__ */ React.createElement(
1174
1174
  View,
1175
1175
  {
1176
1176
  style: [
1177
- styles$t.inputContainer,
1178
- isFocused && styles$t.inputFocused,
1179
- error && styles$t.inputError,
1180
- disabled && styles$t.disableInputStyle,
1181
- successMessage ? styles$t.inputSucess : {},
1177
+ styles$u.inputContainer,
1178
+ isFocused && styles$u.inputFocused,
1179
+ error && styles$u.inputError,
1180
+ disabled && styles$u.disableInputStyle,
1181
+ successMessage ? styles$u.inputSucess : {},
1182
1182
  {
1183
1183
  height: multiline ? 120 : 48,
1184
1184
  alignItems: multiline ? "flex-start" : "center"
@@ -1188,7 +1188,7 @@ const CustomTextInput = ({
1188
1188
  isSearchBar && searchIcon && React.cloneElement(searchIcon, {
1189
1189
  width: moderateScale(24),
1190
1190
  height: moderateScale(24),
1191
- style: styles$t.searchIconStyle
1191
+ style: styles$u.searchIconStyle
1192
1192
  }),
1193
1193
  /* @__PURE__ */ React.createElement(
1194
1194
  TextInput,
@@ -1196,7 +1196,7 @@ const CustomTextInput = ({
1196
1196
  ...props,
1197
1197
  onFocus,
1198
1198
  onBlur,
1199
- style: styles$t.input,
1199
+ style: styles$u.input,
1200
1200
  placeholderTextColor: DHRE_COLORS_TEXT.DH_TEXTLIGHTEST,
1201
1201
  editable: !disabled,
1202
1202
  value,
@@ -1252,7 +1252,7 @@ const CustomTooltip = ({
1252
1252
  );
1253
1253
  };
1254
1254
 
1255
- const styles$s = StyleSheet.create({
1255
+ const styles$t = StyleSheet.create({
1256
1256
  container: {
1257
1257
  backgroundColor: DHRE_COLORS_TEXT.DH_BLACK,
1258
1258
  paddingHorizontal: horizontalScale(16),
@@ -1302,21 +1302,21 @@ const FileUpload = ({
1302
1302
  return /* @__PURE__ */ React.createElement(
1303
1303
  View,
1304
1304
  {
1305
- style: [styles$s.container, containerStyle],
1305
+ style: [styles$t.container, containerStyle],
1306
1306
  testID: "file-upload-container"
1307
1307
  },
1308
- /* @__PURE__ */ React.createElement(View, { style: styles$s.content }, /* @__PURE__ */ React.createElement(View, { style: [uploadImageStyling], testID: "file-upload-image" }, icon && React.cloneElement(icon, { style: [iconStyle] })), /* @__PURE__ */ React.createElement(CustomTypography, { variant: "H8bold", style: styles$s.title, text: title }), /* @__PURE__ */ React.createElement(
1308
+ /* @__PURE__ */ React.createElement(View, { style: styles$t.content }, /* @__PURE__ */ React.createElement(View, { style: [uploadImageStyling], testID: "file-upload-image" }, icon && React.cloneElement(icon, { style: [iconStyle] })), /* @__PURE__ */ React.createElement(CustomTypography, { variant: "H8bold", style: styles$t.title, text: title }), /* @__PURE__ */ React.createElement(
1309
1309
  CustomTypography,
1310
1310
  {
1311
1311
  variant: "P4regular",
1312
- style: styles$s.description,
1312
+ style: styles$t.description,
1313
1313
  text: `Drop files directly here or `
1314
1314
  }
1315
1315
  ), /* @__PURE__ */ React.createElement(
1316
1316
  CustomTypography,
1317
1317
  {
1318
1318
  variant: "P4regular",
1319
- style: styles$s.browse,
1319
+ style: styles$t.browse,
1320
1320
  text: btnText
1321
1321
  }
1322
1322
  ), /* @__PURE__ */ React.createElement(
@@ -1324,14 +1324,14 @@ const FileUpload = ({
1324
1324
  {
1325
1325
  testID: "file-upload-description",
1326
1326
  variant: "P4regular",
1327
- style: styles$s.description,
1327
+ style: styles$t.description,
1328
1328
  text: ` from your device`
1329
1329
  }
1330
1330
  )),
1331
1331
  /* @__PURE__ */ React.createElement(
1332
1332
  Pressable,
1333
1333
  {
1334
- style: styles$s.button,
1334
+ style: styles$t.button,
1335
1335
  onPress: onUpload,
1336
1336
  testID: "file-upload-button"
1337
1337
  },
@@ -1339,7 +1339,7 @@ const FileUpload = ({
1339
1339
  CustomTypography,
1340
1340
  {
1341
1341
  variant: "B2semiBold",
1342
- style: styles$s.buttonText,
1342
+ style: styles$t.buttonText,
1343
1343
  text: btnText
1344
1344
  }
1345
1345
  )
@@ -1351,7 +1351,7 @@ const PdfView = (props) => {
1351
1351
  return /* @__PURE__ */ React.createElement(Pdf, { ...props });
1352
1352
  };
1353
1353
 
1354
- const styles$r = StyleSheet.create({
1354
+ const styles$s = StyleSheet.create({
1355
1355
  container: {
1356
1356
  padding: horizontalScale(20),
1357
1357
  marginHorizontal: horizontalScale(16),
@@ -1407,39 +1407,39 @@ const PopUp = ({
1407
1407
  leftButtonShown = false,
1408
1408
  rightButtonShown = false
1409
1409
  }) => {
1410
- return /* @__PURE__ */ React.createElement(View, { testID, style: styles$r.container }, title ? /* @__PURE__ */ React.createElement(
1410
+ return /* @__PURE__ */ React.createElement(View, { testID, style: styles$s.container }, title ? /* @__PURE__ */ React.createElement(
1411
1411
  CustomTypography,
1412
1412
  {
1413
- style: styles$r.subTitleBelow,
1413
+ style: styles$s.subTitleBelow,
1414
1414
  variant: "H6semiBold",
1415
1415
  text: title
1416
1416
  }
1417
1417
  ) : null, subtitle ? /* @__PURE__ */ React.createElement(
1418
1418
  CustomTypography,
1419
1419
  {
1420
- style: styles$r.subtitle,
1420
+ style: styles$s.subtitle,
1421
1421
  variant: "P3regular",
1422
1422
  text: subtitle
1423
1423
  }
1424
- ) : null, /* @__PURE__ */ React.createElement(View, { style: styles$r.buttonContainer }, leftButtonShown ? /* @__PURE__ */ React.createElement(
1424
+ ) : null, /* @__PURE__ */ React.createElement(View, { style: styles$s.buttonContainer }, leftButtonShown ? /* @__PURE__ */ React.createElement(
1425
1425
  Pressable,
1426
1426
  {
1427
1427
  testID: "Left-Button-Press",
1428
- style: styles$r.buttonLeft,
1428
+ style: styles$s.buttonLeft,
1429
1429
  onPress: onButtonPress
1430
1430
  },
1431
1431
  /* @__PURE__ */ React.createElement(
1432
1432
  CustomTypography,
1433
1433
  {
1434
- style: styles$r.buttonLeftText,
1434
+ style: styles$s.buttonLeftText,
1435
1435
  variant: "B2semiBold",
1436
1436
  text: buttonText
1437
1437
  }
1438
1438
  )
1439
- ) : null, rightButtonShown ? /* @__PURE__ */ React.createElement(Pressable, { style: styles$r.button, onPress: onButtonPress }, /* @__PURE__ */ React.createElement(
1439
+ ) : null, rightButtonShown ? /* @__PURE__ */ React.createElement(Pressable, { style: styles$s.button, onPress: onButtonPress }, /* @__PURE__ */ React.createElement(
1440
1440
  CustomTypography,
1441
1441
  {
1442
- style: styles$r.buttonText,
1442
+ style: styles$s.buttonText,
1443
1443
  variant: "B2semiBold",
1444
1444
  text: buttonText
1445
1445
  }
@@ -1477,7 +1477,7 @@ const CustomProgressBar = ({
1477
1477
  return () => clearInterval(progressInterval);
1478
1478
  }, [progress, value, increment, interval]);
1479
1479
  const showPercentage = () => {
1480
- return /* @__PURE__ */ React.createElement(View, { style: styles$q.flexDirection }, /* @__PURE__ */ React.createElement(
1480
+ return /* @__PURE__ */ React.createElement(View, { style: styles$r.flexDirection }, /* @__PURE__ */ React.createElement(
1481
1481
  CustomText$1,
1482
1482
  {
1483
1483
  text: `${value}%`,
@@ -1531,7 +1531,7 @@ const CustomProgressBar = ({
1531
1531
  };
1532
1532
  return /* @__PURE__ */ React.createElement(View, { testID: "custom-progress-bar" }, renderProgressBar());
1533
1533
  };
1534
- const styles$q = StyleSheet.create({
1534
+ const styles$r = StyleSheet.create({
1535
1535
  flexDirection: {
1536
1536
  flexDirection: "column",
1537
1537
  justifyContent: "center",
@@ -1539,7 +1539,7 @@ const styles$q = StyleSheet.create({
1539
1539
  }
1540
1540
  });
1541
1541
 
1542
- const styles$p = StyleSheet.create({
1542
+ const styles$q = StyleSheet.create({
1543
1543
  container: {
1544
1544
  flexDirection: "row",
1545
1545
  alignItems: "center"
@@ -1605,13 +1605,13 @@ const Star = ({
1605
1605
  emptyStarColor
1606
1606
  );
1607
1607
  stars.push(
1608
- /* @__PURE__ */ React.createElement(View, { key: i, style: [styles$p.star, starStyle] }, starType)
1608
+ /* @__PURE__ */ React.createElement(View, { key: i, style: [styles$q.star, starStyle] }, starType)
1609
1609
  );
1610
1610
  }
1611
- return /* @__PURE__ */ React.createElement(View, { style: styles$p.container, testID: "star" }, stars);
1611
+ return /* @__PURE__ */ React.createElement(View, { style: styles$q.container, testID: "star" }, stars);
1612
1612
  };
1613
1613
 
1614
- var styles$o = StyleSheet.create({
1614
+ var styles$p = StyleSheet.create({
1615
1615
  container: {
1616
1616
  flexDirection: "row",
1617
1617
  gap: horizontalScale(5),
@@ -1653,12 +1653,12 @@ const Tabs = ({
1653
1653
  onSelectionChange(selectedTabs);
1654
1654
  }
1655
1655
  };
1656
- return /* @__PURE__ */ React.createElement(View, { style: [styles$o.container, style] }, data?.map(({ id, title, isSelected }) => /* @__PURE__ */ React.createElement(
1656
+ return /* @__PURE__ */ React.createElement(View, { style: [styles$p.container, style] }, data?.map(({ id, title, isSelected }) => /* @__PURE__ */ React.createElement(
1657
1657
  Pressable,
1658
1658
  {
1659
1659
  key: id,
1660
1660
  style: {
1661
- ...styles$o.button,
1661
+ ...styles$p.button,
1662
1662
  backgroundColor: isSelected ? theme.CONTENT_PRIMARY : theme.CONTENT_INVERTED,
1663
1663
  borderColor: isSelected ? theme.CONTENT_INVERTED : theme.CONTENT_SECONDRY
1664
1664
  },
@@ -1678,7 +1678,7 @@ const Tabs = ({
1678
1678
  };
1679
1679
  var Tabs$1 = withThemeProvider(Tabs);
1680
1680
 
1681
- const styles$n = StyleSheet.create({
1681
+ const styles$o = StyleSheet.create({
1682
1682
  container: {
1683
1683
  width: "100%"
1684
1684
  },
@@ -1737,8 +1737,8 @@ const Tags = ({
1737
1737
  ScrollView,
1738
1738
  {
1739
1739
  testID,
1740
- style: styles$n.container,
1741
- contentContainerStyle: styles$n.contentContainer,
1740
+ style: styles$o.container,
1741
+ contentContainerStyle: styles$o.contentContainer,
1742
1742
  horizontal: false
1743
1743
  },
1744
1744
  tags?.map((tag) => /* @__PURE__ */ React.createElement(
@@ -1748,16 +1748,16 @@ const Tags = ({
1748
1748
  key: tag,
1749
1749
  onPress: () => toggleTag(tag),
1750
1750
  style: [
1751
- styles$n.tag,
1751
+ styles$o.tag,
1752
1752
  tagStyles,
1753
- selectedTags.includes(tag) ? styles$n.selectedTag : styles$n.tagUnSelected
1753
+ selectedTags.includes(tag) ? styles$o.selectedTag : styles$o.tagUnSelected
1754
1754
  ]
1755
1755
  },
1756
1756
  /* @__PURE__ */ React.createElement(
1757
1757
  CustomTypography,
1758
1758
  {
1759
1759
  variant: selectedTags.includes(tag) ? "H9semiBold" : "P4regular",
1760
- style: selectedTags.includes(tag) ? styles$n.tagText : styles$n.tagUnselectedText,
1760
+ style: selectedTags.includes(tag) ? styles$o.tagText : styles$o.tagUnselectedText,
1761
1761
  text: tag
1762
1762
  }
1763
1763
  ),
@@ -1773,7 +1773,7 @@ const Tags = ({
1773
1773
  );
1774
1774
  };
1775
1775
 
1776
- const styles$m = StyleSheet.create({
1776
+ const styles$n = StyleSheet.create({
1777
1777
  container: {
1778
1778
  width: horizontalScale(70),
1779
1779
  height: verticalScale(25),
@@ -1838,26 +1838,26 @@ const CustomSwitch = ({
1838
1838
  Pressable,
1839
1839
  {
1840
1840
  onPress: toggleSwitch,
1841
- style: [styles$m.container, { width }],
1841
+ style: [styles$n.container, { width }],
1842
1842
  testID: "custom-switch"
1843
1843
  },
1844
1844
  /* @__PURE__ */ React.createElement(
1845
1845
  View,
1846
1846
  {
1847
1847
  style: [
1848
- styles$m.track,
1848
+ styles$n.track,
1849
1849
  {
1850
1850
  backgroundColor: isOn ? DHRE_COLORS_ALERT.DH_SUCCESS_GREEN_ACCENT : DHRE_COLORS_TEXT.DH_TEXTDISABLED
1851
1851
  }
1852
1852
  ]
1853
1853
  },
1854
- /* @__PURE__ */ React.createElement(Animated.View, { style: [styles$m.thumb, animatedStyle] }),
1854
+ /* @__PURE__ */ React.createElement(Animated.View, { style: [styles$n.thumb, animatedStyle] }),
1855
1855
  type !== ToggleButtonType.SMALL && /* @__PURE__ */ React.createElement(
1856
1856
  CustomTypography,
1857
1857
  {
1858
1858
  variant: "B3semiBold",
1859
1859
  style: [
1860
- styles$m.text,
1860
+ styles$n.text,
1861
1861
  { textAlign: isOn ? TextDirectType.left : TextDirectType.right }
1862
1862
  ],
1863
1863
  text: isOn ? ToggleTextType.ON : ToggleTextType.OFF
@@ -1867,7 +1867,7 @@ const CustomSwitch = ({
1867
1867
  );
1868
1868
  };
1869
1869
 
1870
- const styles$l = StyleSheet.create({
1870
+ const styles$m = StyleSheet.create({
1871
1871
  container: {
1872
1872
  paddingVertical: verticalScale(24),
1873
1873
  borderBottomWidth: moderateScale(1)
@@ -1928,7 +1928,7 @@ const Accordion = ({
1928
1928
  View,
1929
1929
  {
1930
1930
  style: {
1931
- ...styles$l.container,
1931
+ ...styles$m.container,
1932
1932
  borderBottomColor: theme.BORDER_SEPRATOR,
1933
1933
  ...containerStyle
1934
1934
  },
@@ -1937,7 +1937,7 @@ const Accordion = ({
1937
1937
  /* @__PURE__ */ React.createElement(
1938
1938
  Pressable,
1939
1939
  {
1940
- style: [styles$l.header, headerStyle, disabled && { opacity: 0.5 }],
1940
+ style: [styles$m.header, headerStyle, disabled && { opacity: 0.5 }],
1941
1941
  onPress: !disabled ? onToggle : void 0
1942
1942
  },
1943
1943
  headerComponent ? headerComponent() : /* @__PURE__ */ React.createElement(
@@ -1946,7 +1946,7 @@ const Accordion = ({
1946
1946
  variant: titleVariant,
1947
1947
  text: title,
1948
1948
  style: {
1949
- ...styles$l.title,
1949
+ ...styles$m.title,
1950
1950
  color: theme.CONTENT_PRIMARY,
1951
1951
  ...titleStyle
1952
1952
  }
@@ -1955,11 +1955,11 @@ const Accordion = ({
1955
1955
  React.cloneElement(icon, {
1956
1956
  width: moderateScale(20),
1957
1957
  height: moderateScale(20),
1958
- style: styles$l.iconStyle
1958
+ style: styles$m.iconStyle
1959
1959
  })
1960
1960
  ),
1961
1961
  optionalElement ? optionalElement() : null,
1962
- isOpen && /* @__PURE__ */ React.createElement(Animated.View, { style: [styles$l.content, { height: cardHeight }] }, /* @__PURE__ */ React.createElement(
1962
+ isOpen && /* @__PURE__ */ React.createElement(Animated.View, { style: [styles$m.content, { height: cardHeight }] }, /* @__PURE__ */ React.createElement(
1963
1963
  View,
1964
1964
  {
1965
1965
  ref: contentRef,
@@ -1973,7 +1973,7 @@ const Accordion = ({
1973
1973
  };
1974
1974
  var Accordion$1 = withThemeProvider(Accordion);
1975
1975
 
1976
- const styles$k = StyleSheet.create({
1976
+ const styles$l = StyleSheet.create({
1977
1977
  container: {
1978
1978
  position: "absolute",
1979
1979
  alignSelf: "center",
@@ -2057,23 +2057,23 @@ const Toast = React.forwardRef(({ sucessIcon, errorIcon }, ref) => {
2057
2057
  Animated.View,
2058
2058
  {
2059
2059
  style: [
2060
- styles$k.container,
2060
+ styles$l.container,
2061
2061
  { bottom },
2062
2062
  { backgroundColor: isSuccess ? "#00B578" : "#EB0542" }
2063
2063
  ],
2064
2064
  testID: "TOAST"
2065
2065
  },
2066
- /* @__PURE__ */ React.createElement(View, { style: styles$k.toastContainer }, /* @__PURE__ */ React.createElement(View, { style: styles$k.innerContainer }, /* @__PURE__ */ React.createElement(Pressable, { onPress: hideToast }, isSuccess ? sucessIcon : errorIcon), /* @__PURE__ */ React.createElement(
2066
+ /* @__PURE__ */ React.createElement(View, { style: styles$l.toastContainer }, /* @__PURE__ */ React.createElement(View, { style: styles$l.innerContainer }, /* @__PURE__ */ React.createElement(Pressable, { onPress: hideToast }, isSuccess ? sucessIcon : errorIcon), /* @__PURE__ */ React.createElement(
2067
2067
  CustomTypography,
2068
2068
  {
2069
2069
  variant: "L2_REGULAR",
2070
2070
  text: message,
2071
- style: styles$k.messageText
2071
+ style: styles$l.messageText
2072
2072
  }
2073
2073
  ), btnText && /* @__PURE__ */ React.createElement(
2074
2074
  Pressable,
2075
2075
  {
2076
- style: styles$k.button,
2076
+ style: styles$l.button,
2077
2077
  onPress: onBtnPress || void 0,
2078
2078
  testID: "TOAST-BTN"
2079
2079
  },
@@ -2082,7 +2082,7 @@ const Toast = React.forwardRef(({ sucessIcon, errorIcon }, ref) => {
2082
2082
  {
2083
2083
  variant: "L2_BOLD",
2084
2084
  text: btnText,
2085
- style: styles$k.buttonText
2085
+ style: styles$l.buttonText
2086
2086
  }
2087
2087
  )
2088
2088
  ))),
@@ -2100,7 +2100,7 @@ const Toast = React.forwardRef(({ sucessIcon, errorIcon }, ref) => {
2100
2100
  });
2101
2101
  Toast.displayName = "Toast";
2102
2102
 
2103
- const styles$j = StyleSheet.create({
2103
+ const styles$k = StyleSheet.create({
2104
2104
  inputContainer: {
2105
2105
  flexDirection: "row",
2106
2106
  justifyContent: "center",
@@ -2149,7 +2149,7 @@ const CustomSearchBar = ({
2149
2149
  {
2150
2150
  testID,
2151
2151
  style: [
2152
- styles$j.inputContainer,
2152
+ styles$k.inputContainer,
2153
2153
  {
2154
2154
  height: verticalScale(height),
2155
2155
  borderColor: disabled ? disableBorderColor : value ? borderColor : "#686868"
@@ -2170,7 +2170,7 @@ const CustomSearchBar = ({
2170
2170
  React.cloneElement(searchIcon, {
2171
2171
  width: moderateScale(24),
2172
2172
  height: moderateScale(24),
2173
- style: [styles$j.searchIconStyle, searchIconStyle]
2173
+ style: [styles$k.searchIconStyle, searchIconStyle]
2174
2174
  })
2175
2175
  ),
2176
2176
  /* @__PURE__ */ React.createElement(
@@ -2178,7 +2178,7 @@ const CustomSearchBar = ({
2178
2178
  {
2179
2179
  ...props,
2180
2180
  testID: `${testID}-INPUT`,
2181
- style: [styles$j.input, inputStyle],
2181
+ style: [styles$k.input, inputStyle],
2182
2182
  editable: !disabled,
2183
2183
  value,
2184
2184
  placeholderTextColor: disabled ? disablePlaceHolderStyle : enablePlaceHolderStyle,
@@ -2201,13 +2201,13 @@ const CustomSearchBar = ({
2201
2201
  React.cloneElement(rightIcon, {
2202
2202
  // width: moderateScale(24),
2203
2203
  // height: moderateScale(24),
2204
- style: [styles$j.crossIconStyle, crossIconStyle]
2204
+ style: [styles$k.crossIconStyle, crossIconStyle]
2205
2205
  })
2206
2206
  )
2207
2207
  );
2208
2208
  };
2209
2209
 
2210
- const styles$i = StyleSheet.create({
2210
+ const styles$j = StyleSheet.create({
2211
2211
  container: {
2212
2212
  flexDirection: "row",
2213
2213
  justifyContent: "space-between",
@@ -2239,17 +2239,17 @@ const CustomHeader = ({
2239
2239
  View,
2240
2240
  {
2241
2241
  style: {
2242
- ...styles$i.container,
2242
+ ...styles$j.container,
2243
2243
  backgroundColor: theme.SURFACE_SECONDARY,
2244
2244
  borderBottomColor: theme.BORDER_SEPERATOR_HEADER
2245
2245
  },
2246
2246
  testID: testId
2247
2247
  },
2248
- /* @__PURE__ */ React.createElement(View, { style: styles$i.headderContainer }, showLeftIcon && leftIcon ? React.cloneElement(leftIcon, {
2248
+ /* @__PURE__ */ React.createElement(View, { style: styles$j.headderContainer }, showLeftIcon && leftIcon ? React.cloneElement(leftIcon, {
2249
2249
  width: moderateScale(24),
2250
2250
  height: moderateScale(24),
2251
2251
  onPress: onLeftPress,
2252
- style: styles$i.leftIconStyle
2252
+ style: styles$j.leftIconStyle
2253
2253
  }) : null, /* @__PURE__ */ React.createElement(
2254
2254
  CustomTypography,
2255
2255
  {
@@ -2262,13 +2262,13 @@ const CustomHeader = ({
2262
2262
  width: moderateScale(24),
2263
2263
  height: moderateScale(24),
2264
2264
  onPress: onRightPress,
2265
- style: styles$i.rightIconStyle
2265
+ style: styles$j.rightIconStyle
2266
2266
  }) : null
2267
2267
  );
2268
2268
  };
2269
2269
  var CustomHeader$1 = withThemeProvider(CustomHeader);
2270
2270
 
2271
- const styles$h = StyleSheet.create({
2271
+ const styles$i = StyleSheet.create({
2272
2272
  container: {
2273
2273
  flex: 1
2274
2274
  },
@@ -2331,19 +2331,19 @@ const SwipableList = (props) => {
2331
2331
  {
2332
2332
  testID,
2333
2333
  onPress,
2334
- style: [styles$h.actionButton, style]
2334
+ style: [styles$i.actionButton, style]
2335
2335
  },
2336
2336
  icon,
2337
2337
  /* @__PURE__ */ React.createElement(
2338
2338
  CustomTypography,
2339
2339
  {
2340
2340
  variant: "L1_REGULAR",
2341
- style: [styles$h.titleStyle, titleStyle],
2341
+ style: [styles$i.titleStyle, titleStyle],
2342
2342
  text: title
2343
2343
  }
2344
2344
  )
2345
2345
  );
2346
- const leftActionHandle = (item, leftPrimaryActionIcon, leftPrimaryActionTitle, leftSecondaryActionIcon, leftSecondaryActionTitle) => /* @__PURE__ */ React.createElement(View, { style: styles$h.actionBtn }, leftPrimaryActionIcon && /* @__PURE__ */ React.createElement(
2346
+ const leftActionHandle = (item, leftPrimaryActionIcon, leftPrimaryActionTitle, leftSecondaryActionIcon, leftSecondaryActionTitle) => /* @__PURE__ */ React.createElement(View, { style: styles$i.actionBtn }, leftPrimaryActionIcon && /* @__PURE__ */ React.createElement(
2347
2347
  ActionButton,
2348
2348
  {
2349
2349
  icon: leftPrimaryActionIcon,
@@ -2368,7 +2368,7 @@ const SwipableList = (props) => {
2368
2368
  testID: `${testId}-LEFT-SECONDARY-${item.id}`
2369
2369
  }
2370
2370
  ));
2371
- const rightActionHandle = (item) => /* @__PURE__ */ React.createElement(View, { style: [styles$h.actionBtn, rightPrimaryActionStyle] }, rightPrimaryActionIcon && /* @__PURE__ */ React.createElement(
2371
+ const rightActionHandle = (item) => /* @__PURE__ */ React.createElement(View, { style: [styles$i.actionBtn, rightPrimaryActionStyle] }, rightPrimaryActionIcon && /* @__PURE__ */ React.createElement(
2372
2372
  ActionButton,
2373
2373
  {
2374
2374
  icon: rightPrimaryActionIcon,
@@ -2381,7 +2381,7 @@ const SwipableList = (props) => {
2381
2381
  testID: `${testId}-RIGHT-PRIMARY-${item.id}`
2382
2382
  }
2383
2383
  ));
2384
- const renderItem = ({ item }) => /* @__PURE__ */ React.createElement(GestureHandlerRootView, { testID: `${testId}-LIST`, style: styles$h.container }, /* @__PURE__ */ React.createElement(
2384
+ const renderItem = ({ item }) => /* @__PURE__ */ React.createElement(GestureHandlerRootView, { testID: `${testId}-LIST`, style: styles$i.container }, /* @__PURE__ */ React.createElement(
2385
2385
  Swipeable,
2386
2386
  {
2387
2387
  ref: (ref) => swipeableRefs.current[item.id] = ref,
@@ -2407,7 +2407,7 @@ const SwipableList = (props) => {
2407
2407
  View,
2408
2408
  {
2409
2409
  style: {
2410
- ...styles$h.seperator,
2410
+ ...styles$i.seperator,
2411
2411
  backgroundColor: theme.BORDER_SEPRATOR
2412
2412
  }
2413
2413
  }
@@ -2417,7 +2417,7 @@ const SwipableList = (props) => {
2417
2417
  };
2418
2418
  var SwipableList$1 = withThemeProvider(SwipableList);
2419
2419
 
2420
- const styles$g = StyleSheet.create({
2420
+ const styles$h = StyleSheet.create({
2421
2421
  container: {
2422
2422
  justifyContent: "center",
2423
2423
  alignItems: "center"
@@ -2439,7 +2439,7 @@ const CustomIcon = ({
2439
2439
  return /* @__PURE__ */ React.createElement(
2440
2440
  Pressable,
2441
2441
  {
2442
- style: [styles$g.container, containerStyle],
2442
+ style: [styles$h.container, containerStyle],
2443
2443
  onPress,
2444
2444
  testID: testId
2445
2445
  },
@@ -2449,7 +2449,7 @@ const CustomIcon = ({
2449
2449
  {
2450
2450
  variant: titleVariant,
2451
2451
  text: title,
2452
- style: [styles$g.title, titleStyle]
2452
+ style: [styles$h.title, titleStyle]
2453
2453
  }
2454
2454
  )
2455
2455
  );
@@ -2461,14 +2461,14 @@ const HorizontalLine = ({ backgroundColor = "SURFACE_SECONDARY", style }) => {
2461
2461
  View,
2462
2462
  {
2463
2463
  style: [
2464
- styles$f.line,
2464
+ styles$g.line,
2465
2465
  { backgroundColor: theme[backgroundColor] },
2466
2466
  style
2467
2467
  ]
2468
2468
  }
2469
2469
  );
2470
2470
  };
2471
- const styles$f = StyleSheet.create({
2471
+ const styles$g = StyleSheet.create({
2472
2472
  line: {
2473
2473
  height: 1,
2474
2474
  width: "100%"
@@ -2491,18 +2491,18 @@ const Topic = ({
2491
2491
  TouchableOpacity,
2492
2492
  {
2493
2493
  style: [
2494
- styles$e.button,
2494
+ styles$f.button,
2495
2495
  { backgroundColor: theme[Theme.SURFACE_SECONDARY] },
2496
2496
  containterStyle
2497
2497
  ],
2498
2498
  onPress
2499
2499
  },
2500
- rightIcon && /* @__PURE__ */ React.createElement(View, { style: styles$e.rightIconContainer }, React.cloneElement(rightIcon)),
2501
- /* @__PURE__ */ React.createElement(View, { style: styles$e.timeContainer }, time && /* @__PURE__ */ React.createElement(CustomText$1, { text: time, variant: FontStyle.L2_REGULAR })),
2502
- /* @__PURE__ */ React.createElement(View, { style: styles$e.textContainer }, /* @__PURE__ */ React.createElement(View, { style: styles$e.paymentView }, statusImage && /* @__PURE__ */ React.createElement(View, null, React.cloneElement(statusImage)), subTitle && /* @__PURE__ */ React.createElement(
2500
+ rightIcon && /* @__PURE__ */ React.createElement(View, { style: styles$f.rightIconContainer }, React.cloneElement(rightIcon)),
2501
+ /* @__PURE__ */ React.createElement(View, { style: styles$f.timeContainer }, time && /* @__PURE__ */ React.createElement(CustomText$1, { text: time, variant: FontStyle.L2_REGULAR })),
2502
+ /* @__PURE__ */ React.createElement(View, { style: styles$f.textContainer }, /* @__PURE__ */ React.createElement(View, { style: styles$f.paymentView }, statusImage && /* @__PURE__ */ React.createElement(View, null, React.cloneElement(statusImage)), subTitle && /* @__PURE__ */ React.createElement(
2503
2503
  CustomText$1,
2504
2504
  {
2505
- style: [styles$e.subTitle, subTitleStyle],
2505
+ style: [styles$f.subTitle, subTitleStyle],
2506
2506
  text: subTitle,
2507
2507
  variant: FontStyle.L2_REGULAR,
2508
2508
  textColor: Theme.CONTENT_PRIMARY
@@ -2517,7 +2517,7 @@ const Topic = ({
2517
2517
  ))
2518
2518
  );
2519
2519
  };
2520
- const styles$e = StyleSheet.create({
2520
+ const styles$f = StyleSheet.create({
2521
2521
  button: {
2522
2522
  flexDirection: "row",
2523
2523
  alignItems: "center",
@@ -2611,14 +2611,14 @@ const ContactModal = ({
2611
2611
  const renderEmailOptions = () => /* @__PURE__ */ React.createElement(React.Fragment, null, /* @__PURE__ */ React.createElement(
2612
2612
  CustomText$1,
2613
2613
  {
2614
- style: styles$d.title,
2614
+ style: styles$e.title,
2615
2615
  text: "Open email app",
2616
2616
  variant: "L2_REGULAR"
2617
2617
  }
2618
2618
  ), /* @__PURE__ */ React.createElement(
2619
2619
  CustomText$1,
2620
2620
  {
2621
- style: styles$d.subtitle,
2621
+ style: styles$e.subtitle,
2622
2622
  text: "Which app would you like to open?",
2623
2623
  variant: "L2_REGULAR"
2624
2624
  }
@@ -2626,33 +2626,33 @@ const ContactModal = ({
2626
2626
  Pressable,
2627
2627
  {
2628
2628
  onPress: () => handleOptionPress(),
2629
- style: styles$d.optionButton
2629
+ style: styles$e.optionButton
2630
2630
  },
2631
2631
  /* @__PURE__ */ React.createElement(
2632
2632
  CustomText$1,
2633
2633
  {
2634
- style: styles$d.optionText,
2634
+ style: styles$e.optionText,
2635
2635
  text: option,
2636
2636
  variant: "B3_BOLD"
2637
2637
  }
2638
2638
  )
2639
2639
  ))));
2640
- const renderContent = () => /* @__PURE__ */ React.createElement(React.Fragment, null, /* @__PURE__ */ React.createElement(View, { style: styles$d.viewContainer }, isMailOpen ? renderEmailOptions() : /* @__PURE__ */ React.createElement(Pressable, { onPress: handleCall, style: styles$d.optionButton }, /* @__PURE__ */ React.createElement(
2640
+ const renderContent = () => /* @__PURE__ */ React.createElement(React.Fragment, null, /* @__PURE__ */ React.createElement(View, { style: styles$e.viewContainer }, isMailOpen ? renderEmailOptions() : /* @__PURE__ */ React.createElement(Pressable, { onPress: handleCall, style: styles$e.optionButton }, /* @__PURE__ */ React.createElement(
2641
2641
  CustomText$1,
2642
2642
  {
2643
- style: styles$d.optionText,
2643
+ style: styles$e.optionText,
2644
2644
  text: `Call ${phoneNumber}`,
2645
2645
  variant: "B3_BOLD"
2646
2646
  }
2647
- ))), /* @__PURE__ */ React.createElement(Pressable, { onPress: onClose, style: styles$d.cancelButton }, /* @__PURE__ */ React.createElement(
2647
+ ))), /* @__PURE__ */ React.createElement(Pressable, { onPress: onClose, style: styles$e.cancelButton }, /* @__PURE__ */ React.createElement(
2648
2648
  CustomText$1,
2649
2649
  {
2650
- style: styles$d.cancelText,
2650
+ style: styles$e.cancelText,
2651
2651
  text: "Cancel",
2652
2652
  variant: "B2_REGULAR"
2653
2653
  }
2654
2654
  )));
2655
- return /* @__PURE__ */ React.createElement(View, { style: styles$d.container }, /* @__PURE__ */ React.createElement(
2655
+ return /* @__PURE__ */ React.createElement(View, { style: styles$e.container }, /* @__PURE__ */ React.createElement(
2656
2656
  Modal,
2657
2657
  {
2658
2658
  animationType: "slide",
@@ -2660,10 +2660,10 @@ const ContactModal = ({
2660
2660
  visible,
2661
2661
  onRequestClose: onClose
2662
2662
  },
2663
- /* @__PURE__ */ React.createElement(View, { style: styles$d.modalContainer }, /* @__PURE__ */ React.createElement(View, { style: styles$d.modalContent }, renderContent()))
2663
+ /* @__PURE__ */ React.createElement(View, { style: styles$e.modalContainer }, /* @__PURE__ */ React.createElement(View, { style: styles$e.modalContent }, renderContent()))
2664
2664
  ));
2665
2665
  };
2666
- const styles$d = StyleSheet.create({
2666
+ const styles$e = StyleSheet.create({
2667
2667
  container: {
2668
2668
  flex: 1,
2669
2669
  justifyContent: "center",
@@ -2725,7 +2725,7 @@ const styles$d = StyleSheet.create({
2725
2725
  });
2726
2726
  var ContactModel = withThemeProvider(ContactModal);
2727
2727
 
2728
- const styles$c = StyleSheet.create({
2728
+ const styles$d = StyleSheet.create({
2729
2729
  applyButton: {
2730
2730
  marginTop: verticalScale(50),
2731
2731
  paddingVertical: verticalScale(14),
@@ -2828,7 +2828,7 @@ const DateRangePicker = (props) => {
2828
2828
  onButtonPress(selectedRange?.startDate, selectedRange?.endDate);
2829
2829
  },
2830
2830
  containerStyle: {
2831
- ...styles$c.applyButton,
2831
+ ...styles$d.applyButton,
2832
2832
  backgroundColor: theme.SURFACE_INVERTED
2833
2833
  },
2834
2834
  textStyle: { color: theme.CONTENT_INVERTED },
@@ -2855,20 +2855,20 @@ const OurOfficesButton = ({
2855
2855
  TouchableOpacity,
2856
2856
  {
2857
2857
  style: [
2858
- styles$b.button,
2858
+ styles$c.button,
2859
2859
  { backgroundColor: theme["SURFACE_SECONDARY"] },
2860
2860
  containerStyle
2861
2861
  ],
2862
2862
  onPress
2863
2863
  },
2864
- leftIcon && /* @__PURE__ */ React.createElement(View, { style: styles$b.iconContainer }, React.cloneElement(leftIcon)),
2865
- /* @__PURE__ */ React.createElement(View, { style: styles$b.textContainer }, /* @__PURE__ */ React.createElement(
2864
+ leftIcon && /* @__PURE__ */ React.createElement(View, { style: styles$c.iconContainer }, React.cloneElement(leftIcon)),
2865
+ /* @__PURE__ */ React.createElement(View, { style: styles$c.textContainer }, /* @__PURE__ */ React.createElement(
2866
2866
  CustomText$1,
2867
2867
  {
2868
2868
  text: title,
2869
2869
  variant: titleVariant,
2870
2870
  textColor: titleColor,
2871
- style: styles$b.textView
2871
+ style: styles$c.textView
2872
2872
  }
2873
2873
  ), /* @__PURE__ */ React.createElement(
2874
2874
  CustomText$1,
@@ -2876,13 +2876,13 @@ const OurOfficesButton = ({
2876
2876
  text: description,
2877
2877
  variant: descriptionVariant,
2878
2878
  textColor: descriptionColor,
2879
- style: styles$b.flexWrap
2879
+ style: styles$c.flexWrap
2880
2880
  }
2881
2881
  )),
2882
- rightIcon && /* @__PURE__ */ React.createElement(View, { style: styles$b.rightIconContainer }, React.cloneElement(rightIcon))
2882
+ rightIcon && /* @__PURE__ */ React.createElement(View, { style: styles$c.rightIconContainer }, React.cloneElement(rightIcon))
2883
2883
  );
2884
2884
  };
2885
- const styles$b = StyleSheet.create({
2885
+ const styles$c = StyleSheet.create({
2886
2886
  button: {
2887
2887
  flexDirection: "row",
2888
2888
  alignItems: "center",
@@ -2906,7 +2906,7 @@ const styles$b = StyleSheet.create({
2906
2906
  });
2907
2907
  var OurOffices = withThemeProvider(OurOfficesButton);
2908
2908
 
2909
- const styles$a = StyleSheet.create({
2909
+ const styles$b = StyleSheet.create({
2910
2910
  iconContainer: {
2911
2911
  position: "relative",
2912
2912
  alignItems: "center"
@@ -2935,7 +2935,7 @@ const NotificationBandge = ({
2935
2935
  if (notificationCount <= 0) {
2936
2936
  return icon;
2937
2937
  }
2938
- return /* @__PURE__ */ React.createElement(View, { style: styles$a.iconContainer }, icon, /* @__PURE__ */ React.createElement(View, { style: styles$a.badge }, /* @__PURE__ */ React.createElement(Text, { style: [styles$a.badgeText] }, notificationCount > 99 ? "99+" : notificationCount)));
2938
+ return /* @__PURE__ */ React.createElement(View, { style: styles$b.iconContainer }, icon, /* @__PURE__ */ React.createElement(View, { style: styles$b.badge }, /* @__PURE__ */ React.createElement(Text, { style: [styles$b.badgeText] }, notificationCount > 99 ? "99+" : notificationCount)));
2939
2939
  };
2940
2940
 
2941
2941
  const ScrollableList = ({
@@ -3155,7 +3155,7 @@ const CountryDropDown = ({
3155
3155
  setCallingCode(`+${country.callingCode[0]}`);
3156
3156
  getCountryCode(`+${country.callingCode[0]}`);
3157
3157
  };
3158
- return /* @__PURE__ */ React.createElement(React.Fragment, null, /* @__PURE__ */ React.createElement(View, { style: [styles$9.container, containerStyle] }, /* @__PURE__ */ React.createElement(View, { style: [styles$9.countryPickerContainer, countryPickerStyle] }, /* @__PURE__ */ React.createElement(
3158
+ return /* @__PURE__ */ React.createElement(React.Fragment, null, /* @__PURE__ */ React.createElement(View, { style: [styles$a.container, containerStyle] }, /* @__PURE__ */ React.createElement(View, { style: [styles$a.countryPickerContainer, countryPickerStyle] }, /* @__PURE__ */ React.createElement(
3159
3159
  CountryPicker,
3160
3160
  {
3161
3161
  withFilter: true,
@@ -3169,20 +3169,20 @@ const CountryDropDown = ({
3169
3169
  Text,
3170
3170
  {
3171
3171
  onPress: () => setPickerVisible(true),
3172
- style: [styles$9.callingCode, callingCodeStyle]
3172
+ style: [styles$a.callingCode, callingCodeStyle]
3173
3173
  },
3174
3174
  callingCode
3175
- )), /* @__PURE__ */ React.createElement(View, { style: styles$9.flex }, (isFocused || value) && /* @__PURE__ */ React.createElement(
3175
+ )), /* @__PURE__ */ React.createElement(View, { style: styles$a.flex }, (isFocused || value) && /* @__PURE__ */ React.createElement(
3176
3176
  CustomTypography,
3177
3177
  {
3178
3178
  variant: "L2_REGULAR",
3179
3179
  text: label ?? "",
3180
- style: styles$9.floatingLabel
3180
+ style: styles$a.floatingLabel
3181
3181
  }
3182
3182
  ), /* @__PURE__ */ React.createElement(
3183
3183
  TextInput,
3184
3184
  {
3185
- style: [styles$9.input, inputStyle],
3185
+ style: [styles$a.input, inputStyle],
3186
3186
  placeholder: !isFocused ? placeholder : "",
3187
3187
  keyboardType: "phone-pad",
3188
3188
  value,
@@ -3198,13 +3198,13 @@ const CountryDropDown = ({
3198
3198
  variant: "L2_REGULAR",
3199
3199
  text: errorMessage ?? "",
3200
3200
  style: {
3201
- ...styles$9.errorStyle,
3201
+ ...styles$a.errorStyle,
3202
3202
  color: DHRE_DEFAULT.DH_SEMENTIC_ERROR
3203
3203
  }
3204
3204
  }
3205
3205
  ) : null);
3206
3206
  };
3207
- const styles$9 = StyleSheet.create({
3207
+ const styles$a = StyleSheet.create({
3208
3208
  flex: {
3209
3209
  flex: 1
3210
3210
  },
@@ -3273,12 +3273,12 @@ const CommonTextInput = (props) => {
3273
3273
  rightIcon,
3274
3274
  onRightIconPress
3275
3275
  } = props;
3276
- return /* @__PURE__ */ React.createElement(Pressable, { onPress: handlePress, style: styles$8.container }, /* @__PURE__ */ React.createElement(
3276
+ return /* @__PURE__ */ React.createElement(Pressable, { onPress: handlePress, style: styles$9.container }, /* @__PURE__ */ React.createElement(
3277
3277
  TextInput$1,
3278
3278
  {
3279
3279
  mode: "outlined",
3280
3280
  outlineStyle: {
3281
- ...styles$8.outlineStyle,
3281
+ ...styles$9.outlineStyle,
3282
3282
  borderColor: errorMessage?.length ? DHRE_DEFAULT.DH_SEMENTIC_ERROR : value?.length ? activeBorderColor : inactiveBorderColor
3283
3283
  },
3284
3284
  label,
@@ -3294,9 +3294,9 @@ const CommonTextInput = (props) => {
3294
3294
  }
3295
3295
  },
3296
3296
  style: [
3297
- errorMessage ? styles$8.errorInput : styles$8.input,
3297
+ errorMessage ? styles$9.errorInput : styles$9.input,
3298
3298
  inputStyle,
3299
- multiline && styles$8.multilineInput
3299
+ multiline && styles$9.multilineInput
3300
3300
  // Apply multiline style if true
3301
3301
  ],
3302
3302
  maxLength,
@@ -3325,13 +3325,13 @@ const CommonTextInput = (props) => {
3325
3325
  variant: "L2_REGULAR",
3326
3326
  text: errorMessage ?? "",
3327
3327
  style: {
3328
- ...styles$8.errorStyle,
3328
+ ...styles$9.errorStyle,
3329
3329
  color: DHRE_DEFAULT.DH_SEMENTIC_ERROR
3330
3330
  }
3331
3331
  }
3332
3332
  ) : null);
3333
3333
  };
3334
- const styles$8 = StyleSheet.create({
3334
+ const styles$9 = StyleSheet.create({
3335
3335
  container: {
3336
3336
  justifyContent: "center"
3337
3337
  },
@@ -3397,7 +3397,7 @@ const CustomDropdown = (props) => {
3397
3397
  Text,
3398
3398
  {
3399
3399
  style: [
3400
- styles$7.label,
3400
+ styles$8.label,
3401
3401
  labelStyle,
3402
3402
  isFocus && (labelFocusStyle ?? { color: theme.BORDER_INVERTED["light"] })
3403
3403
  ]
@@ -3417,11 +3417,11 @@ const CustomDropdown = (props) => {
3417
3417
  };
3418
3418
  const renderItem = (item) => {
3419
3419
  const isSelected = item[valueField] === value;
3420
- return /* @__PURE__ */ React.createElement(View, { style: [styles$7.itemContainer, itemContainerStyle] }, /* @__PURE__ */ React.createElement(
3420
+ return /* @__PURE__ */ React.createElement(View, { style: [styles$8.itemContainer, itemContainerStyle] }, /* @__PURE__ */ React.createElement(
3421
3421
  Text,
3422
3422
  {
3423
3423
  style: [
3424
- styles$7.itemText,
3424
+ styles$8.itemText,
3425
3425
  itemTextStyle,
3426
3426
  // Apply itemTextStyle to all items
3427
3427
  isSelected && selectedItemTextStyle
@@ -3431,18 +3431,18 @@ const CustomDropdown = (props) => {
3431
3431
  item[labelField]
3432
3432
  ));
3433
3433
  };
3434
- return /* @__PURE__ */ React.createElement(View, { style: [styles$7.container, containerStyle] }, label && renderLabel(), /* @__PURE__ */ React.createElement(
3434
+ return /* @__PURE__ */ React.createElement(View, { style: [styles$8.container, containerStyle] }, label && renderLabel(), /* @__PURE__ */ React.createElement(
3435
3435
  Dropdown,
3436
3436
  {
3437
3437
  ...props,
3438
3438
  style: [
3439
- styles$7.dropdown,
3439
+ styles$8.dropdown,
3440
3440
  dropdownStyle,
3441
3441
  isFocus && (dropdownFocusStyle ?? { borderColor: theme.BORDER_INVERTED["light"] })
3442
3442
  ],
3443
- placeholderStyle: [styles$7.placeholderStyle, placeholderStyle],
3444
- selectedTextStyle: [styles$7.selectedTextStyle, selectedTextStyle],
3445
- iconStyle: [styles$7.iconStyle, iconStyle],
3443
+ placeholderStyle: [styles$8.placeholderStyle, placeholderStyle],
3444
+ selectedTextStyle: [styles$8.selectedTextStyle, selectedTextStyle],
3445
+ iconStyle: [styles$8.iconStyle, iconStyle],
3446
3446
  data: data ?? [],
3447
3447
  labelField,
3448
3448
  valueField,
@@ -3457,11 +3457,11 @@ const CustomDropdown = (props) => {
3457
3457
  itemTextStyle,
3458
3458
  containerStyle: menuContainerStyle,
3459
3459
  activeColor,
3460
- itemContainerStyle: [styles$7.itemListStyle, itemContainerStyle]
3460
+ itemContainerStyle: [styles$8.itemListStyle, itemContainerStyle]
3461
3461
  }
3462
3462
  ));
3463
3463
  };
3464
- const styles$7 = StyleSheet.create({
3464
+ const styles$8 = StyleSheet.create({
3465
3465
  container: {
3466
3466
  backgroundColor: theme.SURFACE_STATIC["light"],
3467
3467
  marginVertical: verticalScale(4)
@@ -3506,7 +3506,7 @@ const styles$7 = StyleSheet.create({
3506
3506
  }
3507
3507
  });
3508
3508
 
3509
- const styles$6 = StyleSheet.create({
3509
+ const styles$7 = StyleSheet.create({
3510
3510
  mainContainer: {
3511
3511
  flexDirection: "row",
3512
3512
  justifyContent: "space-between",
@@ -3565,18 +3565,18 @@ const CustomSwitchBtn = ({
3565
3565
  {
3566
3566
  disabled,
3567
3567
  onPress: toggleSwitch,
3568
- style: { ...styles$6.mainContainer, ...containerStyle }
3568
+ style: { ...styles$7.mainContainer, ...containerStyle }
3569
3569
  },
3570
3570
  /* @__PURE__ */ React.createElement(
3571
3571
  Animated.View,
3572
3572
  {
3573
- style: [styles$6.circle, { transform: [{ translateX }], ...circleStyle }]
3573
+ style: [styles$7.circle, { transform: [{ translateX }], ...circleStyle }]
3574
3574
  }
3575
3575
  ),
3576
3576
  /* @__PURE__ */ React.createElement(
3577
3577
  CustomTypography,
3578
3578
  {
3579
- style: [styles$6.activeText, value ? inActiveTextStyle : activeTextStyle],
3579
+ style: [styles$7.activeText, value ? inActiveTextStyle : activeTextStyle],
3580
3580
  text: activeText,
3581
3581
  variant: activeTextVariant
3582
3582
  }
@@ -3585,7 +3585,7 @@ const CustomSwitchBtn = ({
3585
3585
  CustomTypography,
3586
3586
  {
3587
3587
  style: [
3588
- styles$6.inActiveText,
3588
+ styles$7.inActiveText,
3589
3589
  value ? activeTextStyle : inActiveTextStyle
3590
3590
  ],
3591
3591
  text: inActiveText,
@@ -3702,7 +3702,7 @@ const createStyles = (theme) => {
3702
3702
  };
3703
3703
  var TagSingleSelection = withThemeProvider(TagsComponent);
3704
3704
 
3705
- const styles$5 = StyleSheet.create({
3705
+ const styles$6 = StyleSheet.create({
3706
3706
  container: {
3707
3707
  flexDirection: "row",
3708
3708
  alignItems: "center",
@@ -3775,13 +3775,13 @@ const CustomDocumentPicker = ({
3775
3775
  View,
3776
3776
  {
3777
3777
  style: [
3778
- docDetails ? styles$5.fileUploadContainerStyle : styles$5.container,
3778
+ docDetails ? styles$6.fileUploadContainerStyle : styles$6.container,
3779
3779
  { borderColor: error ? theme.ERROR : theme.BORDER_SECONDRY },
3780
3780
  docDetails ? { backgroundColor: theme.SURFACE_SECONDARY } : {},
3781
3781
  containerStyle
3782
3782
  ]
3783
3783
  },
3784
- /* @__PURE__ */ React.createElement(Pressable, { style: styles$5.innerContainer, onPress: pickDocument }, docDetails ? fileIcon : uploadIcon, /* @__PURE__ */ React.createElement(View, { style: styles$5.titleContainer }, /* @__PURE__ */ React.createElement(
3784
+ /* @__PURE__ */ React.createElement(Pressable, { style: styles$6.innerContainer, onPress: pickDocument }, docDetails ? fileIcon : uploadIcon, /* @__PURE__ */ React.createElement(View, { style: styles$6.titleContainer }, /* @__PURE__ */ React.createElement(
3785
3785
  CustomTypography,
3786
3786
  {
3787
3787
  variant: FontStyle.L2_REGULAR,
@@ -3810,7 +3810,7 @@ const CustomDocumentPicker = ({
3810
3810
  };
3811
3811
  var CustomDocumentPicker$1 = withThemeProvider(memo(CustomDocumentPicker));
3812
3812
 
3813
- const styles$4 = StyleSheet.create({
3813
+ const styles$5 = StyleSheet.create({
3814
3814
  textInputContainer: {
3815
3815
  flexDirection: "row",
3816
3816
  justifyContent: "space-between",
@@ -3932,12 +3932,12 @@ const OTPInput = React.forwardRef(
3932
3932
  ...otpHeaderTextStyle
3933
3933
  }
3934
3934
  }
3935
- ), /* @__PURE__ */ React.createElement(View, { style: { ...styles$4.textInputContainer } }, Array.from({ length }).map((_, index) => /* @__PURE__ */ React.createElement(
3935
+ ), /* @__PURE__ */ React.createElement(View, { style: { ...styles$5.textInputContainer } }, Array.from({ length }).map((_, index) => /* @__PURE__ */ React.createElement(
3936
3936
  TextInput,
3937
3937
  {
3938
3938
  key: index?.toString(),
3939
3939
  style: {
3940
- ...styles$4.textInputStyle,
3940
+ ...styles$5.textInputStyle,
3941
3941
  color: theme$1.CONTENT_PRIMARY,
3942
3942
  borderColor: errorMessage ? theme$1.ERROR : otp.length === length ? theme$1.SUCCESS : activeInput === index ? theme$1.BORDER_INVERTED : theme$1.BORDER_PRIMARY,
3943
3943
  ...textInputStyle
@@ -3960,7 +3960,7 @@ const OTPInput = React.forwardRef(
3960
3960
  Pressable,
3961
3961
  {
3962
3962
  onPress: onClickResendOTP,
3963
- style: styles$4.resendOTPStyle,
3963
+ style: styles$5.resendOTPStyle,
3964
3964
  disabled: !isResendOtpEnable
3965
3965
  },
3966
3966
  /* @__PURE__ */ React.createElement(
@@ -3975,7 +3975,7 @@ const OTPInput = React.forwardRef(
3975
3975
  }
3976
3976
  }
3977
3977
  )
3978
- ), /* @__PURE__ */ React.createElement(View, { style: styles$4.resendOtpContainer }, errorMessage ? /* @__PURE__ */ React.createElement(
3978
+ ), /* @__PURE__ */ React.createElement(View, { style: styles$5.resendOtpContainer }, errorMessage ? /* @__PURE__ */ React.createElement(
3979
3979
  CustomTypography,
3980
3980
  {
3981
3981
  text: errorMessage,
@@ -3991,7 +3991,7 @@ const OTPInput = React.forwardRef(
3991
3991
  var index$4 = withThemeProvider(OTPInput);
3992
3992
  OTPInput.displayName = "OTPInput";
3993
3993
 
3994
- const styles$3 = StyleSheet.create({
3994
+ const styles$4 = StyleSheet.create({
3995
3995
  stepperContainer: {
3996
3996
  flexDirection: "row",
3997
3997
  marginBottom: 24,
@@ -4081,27 +4081,27 @@ const Stepper = ({
4081
4081
  const { theme } = useTheme();
4082
4082
  const renderCircleStyle = (status) => {
4083
4083
  if (status === Status.Active) {
4084
- return { ...styles$3.activeStepCircle, borderColor: theme.CONTENT_PRIMARY };
4084
+ return { ...styles$4.activeStepCircle, borderColor: theme.CONTENT_PRIMARY };
4085
4085
  } else if (status === Status.Inactive) {
4086
4086
  return {
4087
- ...styles$3.inactiveStepCircle,
4087
+ ...styles$4.inactiveStepCircle,
4088
4088
  borderColor: theme.CONTENT_SECONDRY
4089
4089
  };
4090
4090
  } else if (status === Status.Completed) {
4091
- return { ...styles$3.completeStepCircle, backgroundColor: theme.SUCCESS };
4091
+ return { ...styles$4.completeStepCircle, backgroundColor: theme.SUCCESS };
4092
4092
  } else {
4093
- return { ...styles$3.stepCountCircle, borderColor: theme.BORDER_PRIMARY };
4093
+ return { ...styles$4.stepCountCircle, borderColor: theme.BORDER_PRIMARY };
4094
4094
  }
4095
4095
  };
4096
4096
  const renderLableStyle = (status) => {
4097
4097
  if (status === Status.Active) {
4098
- return { ...styles$3.activeStepLabel, color: theme.CONTENT_PRIMARY };
4098
+ return { ...styles$4.activeStepLabel, color: theme.CONTENT_PRIMARY };
4099
4099
  } else if (status === Status.Inactive) {
4100
- return { ...styles$3.inactiveStepLabel, color: theme.CONTENT_SECONDRY };
4100
+ return { ...styles$4.inactiveStepLabel, color: theme.CONTENT_SECONDRY };
4101
4101
  } else if (status === Status.Completed) {
4102
- return { ...styles$3.completeStepLabel, color: theme.CONTENT_PRIMARY };
4102
+ return { ...styles$4.completeStepLabel, color: theme.CONTENT_PRIMARY };
4103
4103
  } else {
4104
- return { ...styles$3.countStepLabel, color: theme.CONTENT_PRIMARY };
4104
+ return { ...styles$4.countStepLabel, color: theme.CONTENT_PRIMARY };
4105
4105
  }
4106
4106
  };
4107
4107
  const renderDividerStyle = (status) => {
@@ -4111,25 +4111,25 @@ const Stepper = ({
4111
4111
  return { borderColor: theme.BORDER_PRIMARY };
4112
4112
  } else if (status === Status.Completed) {
4113
4113
  return {
4114
- ...styles$3.completeStepDivider,
4114
+ ...styles$4.completeStepDivider,
4115
4115
  borderColor: theme.CONTENT_PRIMARY
4116
4116
  };
4117
4117
  } else {
4118
4118
  return { borderColor: theme.CONTENT_SECONDRY };
4119
4119
  }
4120
4120
  };
4121
- return /* @__PURE__ */ React.createElement(View, { style: { ...styles$3.stepperContainer, ...containerStyle } }, data?.map((item, index) => {
4121
+ return /* @__PURE__ */ React.createElement(View, { style: { ...styles$4.stepperContainer, ...containerStyle } }, data?.map((item, index) => {
4122
4122
  const stepCircleStyle = renderCircleStyle(item?.status);
4123
4123
  const dividerStyle = renderDividerStyle(item?.status);
4124
4124
  const labelStyle = renderLableStyle(item?.status);
4125
- const lastViewStyle = index === data?.length - 1 ? styles$3.lastStepWrapper : null;
4125
+ const lastViewStyle = index === data?.length - 1 ? styles$4.lastStepWrapper : null;
4126
4126
  return /* @__PURE__ */ React.createElement(
4127
4127
  View,
4128
4128
  {
4129
4129
  key: index?.toString(),
4130
- style: { ...styles$3.stepperWrapper, ...lastViewStyle }
4130
+ style: { ...styles$4.stepperWrapper, ...lastViewStyle }
4131
4131
  },
4132
- /* @__PURE__ */ React.createElement(View, { style: styles$3.stepperSeparatorContainer }, /* @__PURE__ */ React.createElement(View, { style: { ...stepCircleStyle } }, showStepCount && /* @__PURE__ */ React.createElement(
4132
+ /* @__PURE__ */ React.createElement(View, { style: styles$4.stepperSeparatorContainer }, /* @__PURE__ */ React.createElement(View, { style: { ...stepCircleStyle } }, showStepCount && /* @__PURE__ */ React.createElement(
4133
4133
  CustomTypography,
4134
4134
  {
4135
4135
  text: item?.step,
@@ -4138,8 +4138,8 @@ const Stepper = ({
4138
4138
  color: theme.CONTENT_PRIMARY
4139
4139
  }
4140
4140
  }
4141
- ), showStatus && item?.status === Status.Completed && completedStatusIcon), index != data?.length - 1 && /* @__PURE__ */ React.createElement(View, { style: { ...styles$3.separator, ...dividerStyle } })),
4142
- /* @__PURE__ */ React.createElement(View, { style: styles$3.lableContainer }, /* @__PURE__ */ React.createElement(
4141
+ ), showStatus && item?.status === Status.Completed && completedStatusIcon), index != data?.length - 1 && /* @__PURE__ */ React.createElement(View, { style: { ...styles$4.separator, ...dividerStyle } })),
4142
+ /* @__PURE__ */ React.createElement(View, { style: styles$4.lableContainer }, /* @__PURE__ */ React.createElement(
4143
4143
  CustomTypography,
4144
4144
  {
4145
4145
  text: item?.label,
@@ -4152,7 +4152,7 @@ const Stepper = ({
4152
4152
  };
4153
4153
  var index$3 = withThemeProvider(Stepper);
4154
4154
 
4155
- const styles$2 = StyleSheet.create({
4155
+ const styles$3 = StyleSheet.create({
4156
4156
  container: {
4157
4157
  flex: 1,
4158
4158
  justifyContent: "center",
@@ -4257,7 +4257,7 @@ const CustomSlideButton = ({
4257
4257
  ).current;
4258
4258
  const { theme } = useTheme();
4259
4259
  return /* @__PURE__ */ React.createElement(View, { style: {
4260
- ...styles$2.sliderContainer,
4260
+ ...styles$3.sliderContainer,
4261
4261
  backgroundColor: theme.SURFACE_INVERTED,
4262
4262
  ...containerStyle
4263
4263
  }, onLayout: handleLayout, ref: cardRef }, slideButtonTail && /* @__PURE__ */ React.createElement(
@@ -4266,7 +4266,7 @@ const CustomSlideButton = ({
4266
4266
  ref: slideTailCardRef,
4267
4267
  style: [{ height: "100%", backgroundColor: slideButtonTailColor }]
4268
4268
  }
4269
- ), /* @__PURE__ */ React.createElement(View, { style: styles$2.buttonTextContainer }, /* @__PURE__ */ React.createElement(
4269
+ ), /* @__PURE__ */ React.createElement(View, { style: styles$3.buttonTextContainer }, /* @__PURE__ */ React.createElement(
4270
4270
  CustomTypography,
4271
4271
  {
4272
4272
  text: label,
@@ -4280,14 +4280,14 @@ const CustomSlideButton = ({
4280
4280
  )), /* @__PURE__ */ React.createElement(
4281
4281
  Animated.View,
4282
4282
  {
4283
- style: [styles$2.slider, { transform: [{ translateX: pan }] }],
4283
+ style: [styles$3.slider, { transform: [{ translateX: pan }] }],
4284
4284
  ...panResponder.panHandlers
4285
4285
  },
4286
4286
  /* @__PURE__ */ React.createElement(
4287
4287
  View,
4288
4288
  {
4289
4289
  style: {
4290
- ...styles$2.button,
4290
+ ...styles$3.button,
4291
4291
  backgroundColor: theme.SURFACE_PRIMARY,
4292
4292
  width: verticalScale(size),
4293
4293
  height: verticalScale(size),
@@ -4305,7 +4305,7 @@ const copyToClipboard = (textToCopy) => {
4305
4305
  Clipboard.setString(textToCopy);
4306
4306
  };
4307
4307
 
4308
- const styles$1 = StyleSheet.create({
4308
+ const styles$2 = StyleSheet.create({
4309
4309
  accordionContainer: {
4310
4310
  gap: verticalScale(8),
4311
4311
  marginHorizontal: horizontalScale(24),
@@ -4410,13 +4410,13 @@ const AppointmentCard = ({
4410
4410
  isOpen,
4411
4411
  onToggle,
4412
4412
  containerStyle: {
4413
- ...styles$1.accordionStyle,
4413
+ ...styles$2.accordionStyle,
4414
4414
  backgroundColor: theme.SURFACE_SECONDARY,
4415
4415
  borderColor: theme.BORDER_SEPERATOR_HEADER,
4416
4416
  borderBottomColor: theme.BORDER_SEPERATOR_HEADER
4417
4417
  },
4418
- headerStyle: styles$1.accordionHeader,
4419
- headerComponent: () => /* @__PURE__ */ React.createElement(View, { style: styles$1.accordionHeaderContent }, headerIcon, /* @__PURE__ */ React.createElement(View, { style: styles$1.accordionText }, /* @__PURE__ */ React.createElement(
4418
+ headerStyle: styles$2.accordionHeader,
4419
+ headerComponent: () => /* @__PURE__ */ React.createElement(View, { style: styles$2.accordionHeaderContent }, headerIcon, /* @__PURE__ */ React.createElement(View, { style: styles$2.accordionText }, /* @__PURE__ */ React.createElement(
4420
4420
  CustomTypography,
4421
4421
  {
4422
4422
  text: headerTitle,
@@ -4437,18 +4437,18 @@ const AppointmentCard = ({
4437
4437
  View,
4438
4438
  {
4439
4439
  style: [
4440
- styles$1.accordionDetails,
4440
+ styles$2.accordionDetails,
4441
4441
  { borderTopColor: theme.BORDER_SEPERATOR_HEADER }
4442
4442
  ]
4443
4443
  },
4444
- /* @__PURE__ */ React.createElement(View, { style: styles$1.appointmentInfo }, data.map(({ title: title2, value, isLocation, isStatus }) => /* @__PURE__ */ React.createElement(View, { style: styles$1.infoColumn, key: title2 }, /* @__PURE__ */ React.createElement(
4444
+ /* @__PURE__ */ React.createElement(View, { style: styles$2.appointmentInfo }, data.map(({ title: title2, value, isLocation, isStatus }) => /* @__PURE__ */ React.createElement(View, { style: styles$2.infoColumn, key: title2 }, /* @__PURE__ */ React.createElement(
4445
4445
  CustomTypography,
4446
4446
  {
4447
4447
  text: title2,
4448
4448
  variant: FontStyle.L3_REGULAR,
4449
4449
  style: { color: theme.CONTENT_SECONDRY }
4450
4450
  }
4451
- ), /* @__PURE__ */ React.createElement(View, { style: styles$1.infoRow }, isStatus && statusIcon, /* @__PURE__ */ React.createElement(
4451
+ ), /* @__PURE__ */ React.createElement(View, { style: styles$2.infoRow }, isStatus && statusIcon, /* @__PURE__ */ React.createElement(
4452
4452
  CustomTypography,
4453
4453
  {
4454
4454
  text: value,
@@ -4463,7 +4463,7 @@ const AppointmentCard = ({
4463
4463
  text: directionText,
4464
4464
  variant: FontStyle.L2_REGULAR,
4465
4465
  style: [
4466
- styles$1.getDirectionsText,
4466
+ styles$2.getDirectionsText,
4467
4467
  { color: theme.CONTENT_PRIMARY }
4468
4468
  ],
4469
4469
  onPress: onDirectionPress
@@ -4473,7 +4473,7 @@ const AppointmentCard = ({
4473
4473
  View,
4474
4474
  {
4475
4475
  style: [
4476
- styles$1.infoContainer,
4476
+ styles$2.infoContainer,
4477
4477
  {
4478
4478
  backgroundColor: theme.SURFACE_TERTIARY
4479
4479
  }
@@ -4493,7 +4493,7 @@ const AppointmentCard = ({
4493
4493
  View,
4494
4494
  {
4495
4495
  style: [
4496
- styles$1.actionsContainer,
4496
+ styles$2.actionsContainer,
4497
4497
  {
4498
4498
  borderTopColor: theme.BORDER_SEPERATOR_HEADER
4499
4499
  }
@@ -4505,7 +4505,7 @@ const AppointmentCard = ({
4505
4505
  text: viewText,
4506
4506
  variant: FontStyle.L2_REGULAR,
4507
4507
  style: [
4508
- styles$1.viewText,
4508
+ styles$2.viewText,
4509
4509
  {
4510
4510
  color: theme.CONTENT_PRIMARY
4511
4511
  }
@@ -4513,12 +4513,12 @@ const AppointmentCard = ({
4513
4513
  onPress: onViewDetailsPress
4514
4514
  }
4515
4515
  ),
4516
- /* @__PURE__ */ React.createElement(View, { style: styles$1.actionIcons }, /* @__PURE__ */ React.createElement(
4516
+ /* @__PURE__ */ React.createElement(View, { style: styles$2.actionIcons }, /* @__PURE__ */ React.createElement(
4517
4517
  CustomIcon,
4518
4518
  {
4519
4519
  icon: deleteIcon,
4520
4520
  containerStyle: {
4521
- ...styles$1.iconContainer,
4521
+ ...styles$2.iconContainer,
4522
4522
  backgroundColor: theme.SURFACE_INVERTED
4523
4523
  },
4524
4524
  onPress: onDeletePress
@@ -4528,7 +4528,7 @@ const AppointmentCard = ({
4528
4528
  {
4529
4529
  icon: editIcon,
4530
4530
  containerStyle: {
4531
- ...styles$1.iconContainer,
4531
+ ...styles$2.iconContainer,
4532
4532
  backgroundColor: theme.SURFACE_INVERTED
4533
4533
  },
4534
4534
  onPress: onEditPress
@@ -4540,7 +4540,7 @@ const AppointmentCard = ({
4540
4540
  };
4541
4541
  var index$1 = withThemeProvider(AppointmentCard);
4542
4542
 
4543
- const styles = StyleSheet.create({
4543
+ const styles$1 = StyleSheet.create({
4544
4544
  container: {
4545
4545
  flexDirection: "row",
4546
4546
  justifyContent: "space-between",
@@ -4581,7 +4581,7 @@ const PropertyDetails = ({
4581
4581
  View,
4582
4582
  {
4583
4583
  style: {
4584
- ...styles.container,
4584
+ ...styles$1.container,
4585
4585
  ...containerStyle,
4586
4586
  backgroundColor: theme.SURFACE_SECONDARY,
4587
4587
  borderColor: theme.BORDER_SEPERATOR_HEADER
@@ -4591,7 +4591,7 @@ const PropertyDetails = ({
4591
4591
  width: moderateScale(87),
4592
4592
  height: moderateScale(87)
4593
4593
  }),
4594
- /* @__PURE__ */ React.createElement(View, { style: styles.propertyInfo }, brandIcon, /* @__PURE__ */ React.createElement(
4594
+ /* @__PURE__ */ React.createElement(View, { style: styles$1.propertyInfo }, brandIcon, /* @__PURE__ */ React.createElement(
4595
4595
  CustomTypography,
4596
4596
  {
4597
4597
  text: title,
@@ -4605,7 +4605,7 @@ const PropertyDetails = ({
4605
4605
  variant: FontStyle.L1_REGULAR,
4606
4606
  style: { color: theme.CONTENT_PRIMARY }
4607
4607
  }
4608
- ), /* @__PURE__ */ React.createElement(View, { style: styles.propertyNumber }, /* @__PURE__ */ React.createElement(
4608
+ ), propertyNumber && /* @__PURE__ */ React.createElement(View, { style: styles$1.propertyNumber }, /* @__PURE__ */ React.createElement(
4609
4609
  CustomTypography,
4610
4610
  {
4611
4611
  text: propertyNumber,
@@ -4615,12 +4615,12 @@ const PropertyDetails = ({
4615
4615
  }
4616
4616
  }
4617
4617
  ), hintIcon)),
4618
- /* @__PURE__ */ React.createElement(
4618
+ btnIcon && /* @__PURE__ */ React.createElement(
4619
4619
  CustomIcon,
4620
4620
  {
4621
4621
  icon: btnIcon,
4622
4622
  containerStyle: {
4623
- ...styles.arrowIconContainer,
4623
+ ...styles$1.arrowIconContainer,
4624
4624
  backgroundColor: theme.SURFACE_INVERTED
4625
4625
  },
4626
4626
  onPress: onRightIconPress
@@ -4630,5 +4630,62 @@ const PropertyDetails = ({
4630
4630
  };
4631
4631
  var index = withThemeProvider(PropertyDetails);
4632
4632
 
4633
- 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, 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, index$4 as OTPInput, OurOffices as OurOfficesButton, PdfView, PopUp, index as PropertyDetails, 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 };
4633
+ const styles = StyleSheet.create({
4634
+ container: {
4635
+ rowGap: verticalScale(12)
4636
+ },
4637
+ optionContainer: {
4638
+ flexDirection: "row",
4639
+ columnGap: horizontalScale(8),
4640
+ alignItems: "center"
4641
+ },
4642
+ radioButton: {
4643
+ width: moderateScale(16),
4644
+ height: moderateScale(16),
4645
+ borderRadius: moderateScale(10),
4646
+ borderWidth: moderateScale(1.5),
4647
+ borderColor: "#000"
4648
+ },
4649
+ radioButtonSelected: {
4650
+ backgroundColor: "#000"
4651
+ },
4652
+ label: {
4653
+ color: "#000"
4654
+ }
4655
+ });
4656
+
4657
+ const RadioButtonGroup = ({ data, onSelect, containerStyle, labelStyle }) => {
4658
+ const [selectedOption, setSelectedOption] = useState(null);
4659
+ const handleSelect = (item) => {
4660
+ setSelectedOption(item.value);
4661
+ onSelect(item);
4662
+ };
4663
+ return /* @__PURE__ */ React.createElement(View, { style: [styles.container, containerStyle] }, data?.map((item) => /* @__PURE__ */ React.createElement(
4664
+ TouchableOpacity,
4665
+ {
4666
+ key: item.value,
4667
+ style: styles.optionContainer,
4668
+ onPress: () => handleSelect(item)
4669
+ },
4670
+ /* @__PURE__ */ React.createElement(
4671
+ View,
4672
+ {
4673
+ style: [
4674
+ styles.radioButton,
4675
+ selectedOption === item.value && styles.radioButtonSelected
4676
+ ]
4677
+ }
4678
+ ),
4679
+ /* @__PURE__ */ React.createElement(
4680
+ CustomTypography,
4681
+ {
4682
+ variant: FontStyle.L1_REGULAR,
4683
+ text: item.label,
4684
+ style: [styles.label, labelStyle]
4685
+ }
4686
+ )
4687
+ )));
4688
+ };
4689
+
4690
+ 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, 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, index$4 as 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 };
4634
4691
  //# sourceMappingURL=index.mjs.map