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.js
CHANGED
|
@@ -597,9 +597,9 @@ const DHRE_DEFAULT = {
|
|
|
597
597
|
DH_BG_GREY_900: "#6F7387",
|
|
598
598
|
DH_BG_GREY: "#F2F3F8",
|
|
599
599
|
DH_SUCESS: "#2DE3A6",
|
|
600
|
-
DH_ERROR: "#
|
|
600
|
+
DH_ERROR: "#E8594F",
|
|
601
601
|
DH_INFO: "#339ECF",
|
|
602
|
-
DH_SEMENTIC_ERROR: "#
|
|
602
|
+
DH_SEMENTIC_ERROR: "#E8594F",
|
|
603
603
|
DH_SEMENTIC_WARNING: "#EB8425"
|
|
604
604
|
};
|
|
605
605
|
const DHRE_COLORS_TEXT = {
|
|
@@ -6702,7 +6702,7 @@ const Toast = React__default["default"].forwardRef(
|
|
|
6702
6702
|
style: [
|
|
6703
6703
|
styles$l.container,
|
|
6704
6704
|
{ bottom },
|
|
6705
|
-
{ backgroundColor: isSuccess ? "#00B578" : "#
|
|
6705
|
+
{ backgroundColor: isSuccess ? "#00B578" : "#E8594F" },
|
|
6706
6706
|
{ height: verticalScale(height) }
|
|
6707
6707
|
],
|
|
6708
6708
|
testID: "TOAST"
|
|
@@ -8970,7 +8970,7 @@ const styles$3 = reactNative.StyleSheet.create({
|
|
|
8970
8970
|
},
|
|
8971
8971
|
sliderContainer: {
|
|
8972
8972
|
height: verticalScale(48),
|
|
8973
|
-
borderRadius: moderateScale(25),
|
|
8973
|
+
// borderRadius: moderateScale(25),
|
|
8974
8974
|
overflow: "hidden",
|
|
8975
8975
|
justifyContent: "center"
|
|
8976
8976
|
},
|
|
@@ -8984,7 +8984,7 @@ const styles$3 = reactNative.StyleSheet.create({
|
|
|
8984
8984
|
height: verticalScale(40),
|
|
8985
8985
|
justifyContent: "center",
|
|
8986
8986
|
alignItems: "center",
|
|
8987
|
-
borderRadius: moderateScale(20),
|
|
8987
|
+
// borderRadius: moderateScale(20),
|
|
8988
8988
|
margin: 4
|
|
8989
8989
|
},
|
|
8990
8990
|
buttonTextContainer: {
|
|
@@ -8994,8 +8994,8 @@ const styles$3 = reactNative.StyleSheet.create({
|
|
|
8994
8994
|
bottom: 0,
|
|
8995
8995
|
top: 0,
|
|
8996
8996
|
alignItems: "center",
|
|
8997
|
-
justifyContent: "center"
|
|
8998
|
-
borderRadius: 25
|
|
8997
|
+
justifyContent: "center"
|
|
8998
|
+
// borderRadius: 25,
|
|
8999
8999
|
}
|
|
9000
9000
|
});
|
|
9001
9001
|
|
|
@@ -9142,7 +9142,7 @@ const CustomSlideButton = React__default["default"].forwardRef(
|
|
|
9142
9142
|
backgroundColor: theme.SURFACE_PRIMARY,
|
|
9143
9143
|
width: verticalScale(size),
|
|
9144
9144
|
height: verticalScale(size),
|
|
9145
|
-
borderRadius: verticalScale(size / 2),
|
|
9145
|
+
// borderRadius: verticalScale(size / 2),
|
|
9146
9146
|
...sliderStyle
|
|
9147
9147
|
}
|
|
9148
9148
|
},
|
|
@@ -9436,12 +9436,14 @@ const PropertyDetails = ({
|
|
|
9436
9436
|
...styles$1.container,
|
|
9437
9437
|
backgroundColor: theme.SURFACE_SECONDARY,
|
|
9438
9438
|
borderColor: theme.BORDER_SEPERATOR_HEADER,
|
|
9439
|
-
...containerStyle
|
|
9439
|
+
...containerStyle,
|
|
9440
|
+
...{ borderRadius: 0 }
|
|
9440
9441
|
}
|
|
9441
9442
|
},
|
|
9442
9443
|
React__default["default"].cloneElement(icon, {
|
|
9443
9444
|
width: moderateScale(87),
|
|
9444
|
-
height: moderateScale(87)
|
|
9445
|
+
height: moderateScale(87),
|
|
9446
|
+
borderRadius: 0
|
|
9445
9447
|
}),
|
|
9446
9448
|
/* @__PURE__ */ React__default["default"].createElement(reactNative.View, { style: styles$1.propertyInfo }, brandIcon, /* @__PURE__ */ React__default["default"].createElement(
|
|
9447
9449
|
CustomTypography,
|