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.
|
|
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",
|
package/src/components/Cell.tsx
CHANGED
|
@@ -504,8 +504,8 @@ const styles = StyleSheet.create({
|
|
|
504
504
|
height: 10,
|
|
505
505
|
marginLeft: 7,
|
|
506
506
|
backgroundColor: 'transparent',
|
|
507
|
-
borderTopWidth:
|
|
508
|
-
borderRightWidth:
|
|
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
|
-
<
|
|
209
|
-
<
|
|
210
|
-
|
|
211
|
-
|
|
212
|
-
|
|
213
|
-
|
|
214
|
-
|
|
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:
|
|
263
|
+
borderRadius: 30,
|
|
262
264
|
overflow: 'hidden',
|
|
263
265
|
},
|
|
264
266
|
sectionheader: {
|