clwy-react-native-tableview-simple 4.5.4 → 4.5.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/package.json CHANGED
@@ -2,7 +2,7 @@
2
2
  "name": "clwy-react-native-tableview-simple",
3
3
  "description": "React Native component for TableView made with pure CSS",
4
4
  "homepage": "https://github.com/Purii/react-native-tableview-simple",
5
- "version": "4.5.4",
5
+ "version": "4.5.5",
6
6
  "author": "Patrick Böder <hello@patrickpuritscher.com>",
7
7
  "scripts": {
8
8
  "clean": "watchman watch-del-all && rm -rf node_modules/ && yarn cache clean && yarn",
@@ -504,8 +504,8 @@ const styles = StyleSheet.create({
504
504
  height: 10,
505
505
  marginLeft: 7,
506
506
  backgroundColor: 'transparent',
507
- borderTopWidth: 1,
508
- borderRightWidth: 1,
507
+ borderTopWidth: 2,
508
+ borderRightWidth: 2,
509
509
  borderColor: '#c7c7cc',
510
510
  transform: [
511
511
  {
@@ -260,7 +260,7 @@ const styles = StyleSheet.create({
260
260
  section: {},
261
261
  sectionChildren: {},
262
262
  sectionChildrenRoundedCorners: {
263
- borderRadius: 10,
263
+ borderRadius: 30,
264
264
  overflow: 'hidden',
265
265
  },
266
266
  sectionheader: {
@@ -66,7 +66,7 @@ const Separator: React.FC<SeparatorInterface> = ({
66
66
  const styles = StyleSheet.create({
67
67
  separator: {},
68
68
  separatorInner: {
69
- height: StyleSheet.hairlineWidth,
69
+ height: 1,
70
70
  },
71
71
  });
72
72