dhre-ui-kit 0.0.139 → 0.0.140
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 +6 -9
- package/lib/index.js.map +1 -1
- package/lib/index.mjs +6 -9
- package/lib/index.mjs.map +1 -1
- package/package.json +1 -1
package/lib/index.js
CHANGED
|
@@ -250,8 +250,8 @@ const theme = {
|
|
|
250
250
|
dark: "#404040"
|
|
251
251
|
},
|
|
252
252
|
[Theme.BORDER_SEPRATOR]: {
|
|
253
|
-
light: "#
|
|
254
|
-
dark: "#
|
|
253
|
+
light: "#0000001A",
|
|
254
|
+
dark: "#404040"
|
|
255
255
|
},
|
|
256
256
|
[Theme.BORDER_SEPERATOR_HEADER]: {
|
|
257
257
|
light: "#E1E1E1",
|
|
@@ -656,7 +656,7 @@ const styles$C = reactNative.StyleSheet.create({
|
|
|
656
656
|
alignItems: "center",
|
|
657
657
|
marginTop: verticalScale(24)
|
|
658
658
|
},
|
|
659
|
-
title: { flex: 1, color: "#fff" },
|
|
659
|
+
title: { flex: 1, color: "#fff", textAlign: "left" },
|
|
660
660
|
leftIconStyle: { marginRight: 8 },
|
|
661
661
|
rightIconStyle: { marginLeft: 8 }
|
|
662
662
|
});
|
|
@@ -2303,9 +2303,6 @@ const styles$k = reactNative.StyleSheet.create({
|
|
|
2303
2303
|
},
|
|
2304
2304
|
actionBtn: {
|
|
2305
2305
|
flexDirection: "row"
|
|
2306
|
-
},
|
|
2307
|
-
seprator: {
|
|
2308
|
-
height: verticalScale(16)
|
|
2309
2306
|
}
|
|
2310
2307
|
});
|
|
2311
2308
|
|
|
@@ -2403,8 +2400,7 @@ const SwipableList = (props) => {
|
|
|
2403
2400
|
{
|
|
2404
2401
|
data,
|
|
2405
2402
|
renderItem,
|
|
2406
|
-
keyExtractor: (item) => item.id
|
|
2407
|
-
ItemSeparatorComponent: () => /* @__PURE__ */ React__default["default"].createElement(reactNative.View, { style: styles$k.seprator })
|
|
2403
|
+
keyExtractor: (item) => item.id
|
|
2408
2404
|
}
|
|
2409
2405
|
));
|
|
2410
2406
|
};
|
|
@@ -2732,7 +2728,8 @@ var ContactModel = withThemeProvider(ContactModal);
|
|
|
2732
2728
|
const styles$e = reactNative.StyleSheet.create({
|
|
2733
2729
|
applyButton: {
|
|
2734
2730
|
marginTop: verticalScale(24),
|
|
2735
|
-
|
|
2731
|
+
paddingVertical: verticalScale(24),
|
|
2732
|
+
justifyContent: "center",
|
|
2736
2733
|
alignItems: "center",
|
|
2737
2734
|
borderRadius: moderateScale(25)
|
|
2738
2735
|
},
|