react-crud-mobile 1.3.165 → 1.3.167

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.165",
3
+ "version": "1.3.167",
4
4
  "license": "MIT",
5
5
  "description": "Uma biblioteca de componentes para React Native",
6
6
  "main": "dist/index.js",
@@ -94,6 +94,10 @@ export default function UIButton(props: ChildType) {
94
94
  def = { ...def, ...BUTTONS_SIZE[size] };
95
95
  }
96
96
 
97
+ if (!label) {
98
+ def = { ...def, borderRadius: 20 };
99
+ }
100
+
97
101
  let css = style('button', def);
98
102
 
99
103
  if (!css.width) {
@@ -42,7 +42,7 @@ export default function UIList(props: ChildType) {
42
42
  const items = Utils.call(() => {
43
43
  let list = Utils.nvl(scope.getItems(), []);
44
44
 
45
- if (original.search && !original.list?.url) {
45
+ if (original.search !== false && !original.list?.url) {
46
46
  let query = crud
47
47
  .get('query', '')
48
48
  .toLowerCase()