react-crud-mobile 1.0.751 → 1.0.753

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.751",
2
+ "version": "1.0.753",
3
3
  "license": "MIT",
4
4
  "description": "Uma biblioteca de componentes para React Native",
5
5
  "main": "dist/index.js",
@@ -37,6 +37,8 @@ export default function UIList(props: ChildType) {
37
37
  setIndex(index);
38
38
  };
39
39
 
40
+ let keyData = scope.key('data', index);
41
+
40
42
  const items = Utils.call(() => {
41
43
  let list = Utils.nvl(scope.getItems(), []);
42
44
 
@@ -46,8 +48,6 @@ export default function UIList(props: ChildType) {
46
48
  .toLowerCase()
47
49
  .trim() as string;
48
50
 
49
- console.log(query);
50
-
51
51
  if (query.length > 1) {
52
52
  let filters: any[] = [];
53
53
  let filterBy = Utils.nvl(original.filterBy, 'label');
@@ -120,8 +120,6 @@ export default function UIList(props: ChildType) {
120
120
  );
121
121
  };
122
122
 
123
- let keyData = scope.key('data');
124
-
125
123
  return (
126
124
  <>
127
125
  {original.search !== false && (