react-crud-mobile 1.3.180 → 1.3.182
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/dist/react-crud-mobile.cjs.development.js +2 -2
- package/dist/react-crud-mobile.cjs.development.js.map +1 -1
- package/dist/react-crud-mobile.cjs.production.min.js +1 -1
- package/dist/react-crud-mobile.cjs.production.min.js.map +1 -1
- package/dist/react-crud-mobile.esm.js +2 -2
- package/dist/react-crud-mobile.esm.js.map +1 -1
- package/package.json +1 -1
- package/src/elements/core/SafeView.tsx +1 -1
- package/src/elements/core/UIOrder.tsx +1 -1
package/package.json
CHANGED
@@ -47,7 +47,7 @@ export default function SafeView(props: SafeViewType) {
|
|
47
47
|
behavior={Platform.OS === 'ios' ? 'padding' : 'height'}
|
48
48
|
style={{
|
49
49
|
flex: 1, // 🔹 Ocupa 100% da tela
|
50
|
-
justifyContent: '
|
50
|
+
justifyContent: 'flex-start',
|
51
51
|
}}
|
52
52
|
>
|
53
53
|
<TouchableWithoutFeedback
|
@@ -111,7 +111,7 @@ export default function UIOrder(props: ChildType) {
|
|
111
111
|
ListHeaderComponent={<UIHeader scope={scope} />}
|
112
112
|
ListFooterComponent={<>{scope.getPart('footer')}</>}
|
113
113
|
renderItem={renderItem}
|
114
|
-
containerStyle={{ ...scope.
|
114
|
+
containerStyle={{ ...scope.getStyle('list') }}
|
115
115
|
keyExtractor={item => {
|
116
116
|
let key = scope.getItemValue(item);
|
117
117
|
|