react-crud-mobile 1.3.9 → 1.3.11
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/dist/react-crud-mobile.cjs.development.js +3 -2
- package/dist/react-crud-mobile.cjs.development.js.map +1 -1
- package/dist/react-crud-mobile.cjs.production.min.js +1 -1
- package/dist/react-crud-mobile.cjs.production.min.js.map +1 -1
- package/dist/react-crud-mobile.esm.js +3 -2
- package/dist/react-crud-mobile.esm.js.map +1 -1
- package/package.json +1 -1
- package/src/elements/core/UIModal.tsx +4 -3
|
@@ -1351,7 +1351,6 @@ function UIModal(props) {
|
|
|
1351
1351
|
};
|
|
1352
1352
|
scope.dialogShow = function (args) {
|
|
1353
1353
|
var crud = args.crud;
|
|
1354
|
-
console.log(index);
|
|
1355
1354
|
var name = scope.getName('modal');
|
|
1356
1355
|
var edit = args.edit === true;
|
|
1357
1356
|
var def = {};
|
|
@@ -1407,6 +1406,8 @@ function UIModal(props) {
|
|
|
1407
1406
|
var defaults = {
|
|
1408
1407
|
color: color
|
|
1409
1408
|
};
|
|
1409
|
+
var key = scope.currentDialog.name + "-" + index;
|
|
1410
|
+
console.log(key);
|
|
1410
1411
|
return /*#__PURE__*/jsxRuntime.jsxs(reactNative.Modal, {
|
|
1411
1412
|
animationType: "slide",
|
|
1412
1413
|
transparent: true,
|
|
@@ -1456,7 +1457,7 @@ function UIModal(props) {
|
|
|
1456
1457
|
})
|
|
1457
1458
|
})]
|
|
1458
1459
|
}), /*#__PURE__*/jsxRuntime.jsx(UIToast, {})]
|
|
1459
|
-
});
|
|
1460
|
+
}, key);
|
|
1460
1461
|
}
|
|
1461
1462
|
var styles$8 = /*#__PURE__*/reactNative.StyleSheet.create({
|
|
1462
1463
|
modalTop: {
|