clwy-react-native-tableview-simple 4.5.3 → 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.3",
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
  {
@@ -205,13 +205,15 @@ const Section: React.FC<SectionInterface> = ({
205
205
  if (footer && withSafeAreaView) {
206
206
  return (
207
207
  <View style={styles.sectionfooter}>
208
- <SafeAreaView>
209
- <Text
210
- allowFontScaling={allowFontScaling}
211
- style={localStyles.sectionfooterText}>
212
- {footer}
213
- </Text>
214
- </SafeAreaView>
208
+ <SafeAreaProvider>
209
+ <SafeAreaView>
210
+ <Text
211
+ allowFontScaling={allowFontScaling}
212
+ style={localStyles.sectionfooterText}>
213
+ {footer}
214
+ </Text>
215
+ </SafeAreaView>
216
+ </SafeAreaProvider>
215
217
  </View>
216
218
  );
217
219
  }
@@ -258,7 +260,7 @@ const styles = StyleSheet.create({
258
260
  section: {},
259
261
  sectionChildren: {},
260
262
  sectionChildrenRoundedCorners: {
261
- borderRadius: 10,
263
+ borderRadius: 30,
262
264
  overflow: 'hidden',
263
265
  },
264
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