react-crud-mobile 1.3.202 → 1.3.204

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.202",
3
+ "version": "1.3.204",
4
4
  "license": "MIT",
5
5
  "description": "Uma biblioteca de componentes para React Native",
6
6
  "main": "dist/index.js",
@@ -500,6 +500,9 @@ export default function UIElement(props: ElementType) {
500
500
  };
501
501
 
502
502
  let Container = () => {
503
+ if (scope.isType('list')) {
504
+ console.log(scope.currentDialog);
505
+ }
503
506
  return (
504
507
  <>
505
508
  {isShowLabel() && (
@@ -36,6 +36,8 @@ export default function UIModal({
36
36
  let [index, setIndex] = useState(0);
37
37
  //v1
38
38
 
39
+ console.log(modalVisible);
40
+
39
41
  const label = scope.getLabel();
40
42
  const theme = scope.getTheme();
41
43
  const headerStyle = Utils.nvl(theme.styles?.defaults?.header, {});