react-crud-mobile 1.3.9 → 1.3.10
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 +2 -1
- 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 +2 -1
- package/dist/react-crud-mobile.esm.js.map +1 -1
- package/package.json +1 -1
- package/src/elements/core/UIModal.tsx +2 -0
|
@@ -1407,6 +1407,7 @@ function UIModal(props) {
|
|
|
1407
1407
|
var defaults = {
|
|
1408
1408
|
color: color
|
|
1409
1409
|
};
|
|
1410
|
+
var key = scope.currentDialog.name + "-" + index;
|
|
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: {
|