react-crud-mobile 1.0.656 → 1.0.658

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
@@ -1,5 +1,5 @@
1
1
  {
2
- "version": "1.0.656",
2
+ "version": "1.0.658",
3
3
  "license": "MIT",
4
4
  "description": "Uma biblioteca de componentes para React Native",
5
5
  "main": "dist/index.js",
@@ -44,7 +44,7 @@
44
44
  "@react-native-vector-icons/ionicons": "^7.4.0",
45
45
  "@react-native-vector-icons/material-icons": "^0.0.1",
46
46
  "react": "19.0.0",
47
- "react-crud-utils": "^0.1.262",
47
+ "react-crud-utils": "^0.1.263",
48
48
  "react-dom": "19.0.0",
49
49
  "react-native": "0.79.2",
50
50
  "react-native-gesture-handler": "~2.24.0",
@@ -117,6 +117,7 @@ const stylesList = StyleSheet.create({
117
117
  backgroundColor: '#f5f5f5',
118
118
  gap: 10,
119
119
  borderRadius: 8,
120
+ minHeight: 40,
120
121
  },
121
122
  rowInner: {
122
123
  flexGrow: 1, // ✅ cresce conforme o conteúdo
@@ -144,6 +145,7 @@ const stylesRepeat = StyleSheet.create({
144
145
  row: {
145
146
  padding: 0,
146
147
  width: '100%',
148
+ minHeight: 40,
147
149
  },
148
150
  rowInner: {
149
151
  flexGrow: 1, // ✅ cresce conforme o conteúdo
@@ -38,7 +38,7 @@ export default function UIListRow(props: UIListRowType) {
38
38
  };
39
39
 
40
40
  const Child = () => {
41
- if (!isVisible && !row.visible && index > 20) {
41
+ if (!isVisible && original.useIsInView && !row.visible && index > 20) {
42
42
  return <></>;
43
43
  }
44
44
  return (