react-crud-mobile 1.3.351 → 1.3.352

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.351",
3
+ "version": "1.3.352",
4
4
  "license": "MIT",
5
5
  "description": "Uma biblioteca de componentes para React Native v1",
6
6
  "main": "dist/index.js",
@@ -380,15 +380,6 @@ export default function UIElement(props: ElementType) {
380
380
  )}
381
381
  </UIButton>
382
382
  )}
383
- {scope.is('type', 'icon') && (
384
- <UIIcon
385
- {...defaultsUI}
386
- onClick={onClick}
387
- variant={scope.attr('variant', 'outlined')}
388
- >
389
- {scope.getDisplayValue()}
390
- </UIIcon>
391
- )}
392
383
  {scope.is('type', 'link') && (
393
384
  <UILink
394
385
  {...defaultsUI}
@@ -553,6 +544,16 @@ export default function UIElement(props: ElementType) {
553
544
  <UIView {...props} scope={scope} crud={crud} />
554
545
  )}
555
546
 
547
+ {scope.is('type', 'icon') && (
548
+ <UIIcon
549
+ {...defaultsUI}
550
+ onClick={onClick}
551
+ variant={scope.attr('variant', 'outlined')}
552
+ >
553
+ {scope.getDisplayValue()}
554
+ </UIIcon>
555
+ )}
556
+
556
557
  {isShowChild() && (
557
558
  <UIChildren
558
559
  {...props}