react-crud-mobile 1.3.178 → 1.3.180

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,6 +1,6 @@
1
1
  {
2
2
  "name": "react-crud-mobile",
3
- "version": "1.3.178",
3
+ "version": "1.3.180",
4
4
  "license": "MIT",
5
5
  "description": "Uma biblioteca de componentes para React Native",
6
6
  "main": "dist/index.js",
@@ -802,6 +802,7 @@ const styles = StyleSheet.create({
802
802
  label: {
803
803
  fontWeight: 400,
804
804
  fontSize: 12,
805
+ paddingVertical: 3,
805
806
  color: 'labelColor',
806
807
  },
807
808
  inner: { width: '100%' },
@@ -48,8 +48,6 @@ export default function UIList(props: ChildType) {
48
48
  .toLowerCase()
49
49
  .trim() as string;
50
50
 
51
- console.log(query);
52
-
53
51
  if (query.length > 1) {
54
52
  let filters: any[] = [];
55
53
  let filterBy = Utils.nvl(original.filterBy, 'label');
@@ -111,6 +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.getPart('list') }}
114
115
  keyExtractor={item => {
115
116
  let key = scope.getItemValue(item);
116
117