dhre-ui-kit 2.0.4 → 2.0.5
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.js +12 -10
- package/lib/index.js.map +1 -1
- package/lib/index.mjs +12 -10
- package/lib/index.mjs.map +1 -1
- package/package.json +1 -1
package/lib/index.mjs
CHANGED
|
@@ -561,9 +561,9 @@ const DHRE_DEFAULT = {
|
|
|
561
561
|
DH_BG_GREY_900: "#6F7387",
|
|
562
562
|
DH_BG_GREY: "#F2F3F8",
|
|
563
563
|
DH_SUCESS: "#2DE3A6",
|
|
564
|
-
DH_ERROR: "#
|
|
564
|
+
DH_ERROR: "#E8594F",
|
|
565
565
|
DH_INFO: "#339ECF",
|
|
566
|
-
DH_SEMENTIC_ERROR: "#
|
|
566
|
+
DH_SEMENTIC_ERROR: "#E8594F",
|
|
567
567
|
DH_SEMENTIC_WARNING: "#EB8425"
|
|
568
568
|
};
|
|
569
569
|
const DHRE_COLORS_TEXT = {
|
|
@@ -6666,7 +6666,7 @@ const Toast = React.forwardRef(
|
|
|
6666
6666
|
style: [
|
|
6667
6667
|
styles$l.container,
|
|
6668
6668
|
{ bottom },
|
|
6669
|
-
{ backgroundColor: isSuccess ? "#00B578" : "#
|
|
6669
|
+
{ backgroundColor: isSuccess ? "#00B578" : "#E8594F" },
|
|
6670
6670
|
{ height: verticalScale(height) }
|
|
6671
6671
|
],
|
|
6672
6672
|
testID: "TOAST"
|
|
@@ -8934,7 +8934,7 @@ const styles$3 = StyleSheet.create({
|
|
|
8934
8934
|
},
|
|
8935
8935
|
sliderContainer: {
|
|
8936
8936
|
height: verticalScale(48),
|
|
8937
|
-
borderRadius: moderateScale(25),
|
|
8937
|
+
// borderRadius: moderateScale(25),
|
|
8938
8938
|
overflow: "hidden",
|
|
8939
8939
|
justifyContent: "center"
|
|
8940
8940
|
},
|
|
@@ -8948,7 +8948,7 @@ const styles$3 = StyleSheet.create({
|
|
|
8948
8948
|
height: verticalScale(40),
|
|
8949
8949
|
justifyContent: "center",
|
|
8950
8950
|
alignItems: "center",
|
|
8951
|
-
borderRadius: moderateScale(20),
|
|
8951
|
+
// borderRadius: moderateScale(20),
|
|
8952
8952
|
margin: 4
|
|
8953
8953
|
},
|
|
8954
8954
|
buttonTextContainer: {
|
|
@@ -8958,8 +8958,8 @@ const styles$3 = StyleSheet.create({
|
|
|
8958
8958
|
bottom: 0,
|
|
8959
8959
|
top: 0,
|
|
8960
8960
|
alignItems: "center",
|
|
8961
|
-
justifyContent: "center"
|
|
8962
|
-
borderRadius: 25
|
|
8961
|
+
justifyContent: "center"
|
|
8962
|
+
// borderRadius: 25,
|
|
8963
8963
|
}
|
|
8964
8964
|
});
|
|
8965
8965
|
|
|
@@ -9106,7 +9106,7 @@ const CustomSlideButton = React.forwardRef(
|
|
|
9106
9106
|
backgroundColor: theme.SURFACE_PRIMARY,
|
|
9107
9107
|
width: verticalScale(size),
|
|
9108
9108
|
height: verticalScale(size),
|
|
9109
|
-
borderRadius: verticalScale(size / 2),
|
|
9109
|
+
// borderRadius: verticalScale(size / 2),
|
|
9110
9110
|
...sliderStyle
|
|
9111
9111
|
}
|
|
9112
9112
|
},
|
|
@@ -9400,12 +9400,14 @@ const PropertyDetails = ({
|
|
|
9400
9400
|
...styles$1.container,
|
|
9401
9401
|
backgroundColor: theme.SURFACE_SECONDARY,
|
|
9402
9402
|
borderColor: theme.BORDER_SEPERATOR_HEADER,
|
|
9403
|
-
...containerStyle
|
|
9403
|
+
...containerStyle,
|
|
9404
|
+
...{ borderRadius: 0 }
|
|
9404
9405
|
}
|
|
9405
9406
|
},
|
|
9406
9407
|
React.cloneElement(icon, {
|
|
9407
9408
|
width: moderateScale(87),
|
|
9408
|
-
height: moderateScale(87)
|
|
9409
|
+
height: moderateScale(87),
|
|
9410
|
+
borderRadius: 0
|
|
9409
9411
|
}),
|
|
9410
9412
|
/* @__PURE__ */ React.createElement(View, { style: styles$1.propertyInfo }, brandIcon, /* @__PURE__ */ React.createElement(
|
|
9411
9413
|
CustomTypography,
|