native-pytech 1.0.121 → 1.0.122

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.
@@ -28,7 +28,7 @@ const Component = memo(({ id, borders }) => {
28
28
  const style = justTop ? { bottom: null } : { top: null }; //Cancela el bottom o el top de styles.space
29
29
  return <View style={[styles.space, styles.border, styleSpaces, style, { backgroundColor: borders.color }]}/>;
30
30
  }
31
- return (<View pointerEvents='none' style={[styles.space, styleSpaces]}>
31
+ return (<View style={[styles.space, styleSpaces]}>
32
32
  {shownTop == null ?
33
33
  <BorderExtended isTop={true} id={id} color={borders.color}/> :
34
34
  <Border show={borders.shownTop} color={borders.color}/>}
@@ -75,7 +75,8 @@ const styles = StyleSheet.create({
75
75
  left: left,
76
76
  right: right,
77
77
  bottom: 0,
78
- top: -heightPixel
78
+ top: -heightPixel,
79
+ pointerEvents: 'none'
79
80
  },
80
81
  border: {
81
82
  height: heightPixel,
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "native-pytech",
3
- "version": "1.0.121",
3
+ "version": "1.0.122",
4
4
  "description": "Libreria de React Native Pytech",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",