react-crud-mobile 1.3.269 → 1.3.270
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 -3
- 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 -3
- package/dist/react-crud-mobile.esm.js.map +1 -1
- package/package.json +1 -1
- package/src/elements/core/UIModal.tsx +2 -2
@@ -1374,7 +1374,7 @@ function UIToast() {
|
|
1374
1374
|
}
|
1375
1375
|
|
1376
1376
|
function UIModal(props) {
|
1377
|
-
var
|
1377
|
+
var _theme$styles;
|
1378
1378
|
var owner = props.scope;
|
1379
1379
|
var _useState = React.useState(0),
|
1380
1380
|
index = _useState[0],
|
@@ -1390,7 +1390,7 @@ function UIModal(props) {
|
|
1390
1390
|
setIndex(++index);
|
1391
1391
|
};
|
1392
1392
|
if (dialog.debug) console.log(dialog);
|
1393
|
-
|
1393
|
+
//const modalVisible = curr.uuid === main.dialog?.crud?.uuid;
|
1394
1394
|
var scope = dialog.scope;
|
1395
1395
|
var label = scope.getLabel();
|
1396
1396
|
var theme = scope.getTheme();
|
@@ -1514,7 +1514,7 @@ function UIModal(props) {
|
|
1514
1514
|
children: /*#__PURE__*/jsxRuntime.jsx(reactNative.Modal, {
|
1515
1515
|
animationType: "slide",
|
1516
1516
|
transparent: true,
|
1517
|
-
visible:
|
1517
|
+
visible: true,
|
1518
1518
|
onRequestClose: onClose,
|
1519
1519
|
children: /*#__PURE__*/jsxRuntime.jsx(ModalInner, {})
|
1520
1520
|
}, key)
|