react-crud-mobile 1.0.704 → 1.0.705
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 -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 +2 -2
- package/dist/react-crud-mobile.esm.js.map +1 -1
- package/package.json +2 -2
- package/src/elements/core/UIModal.tsx +3 -2
|
@@ -1138,7 +1138,7 @@ function UIModal(props) {
|
|
|
1138
1138
|
scope.update = function () {
|
|
1139
1139
|
setIndex(++index);
|
|
1140
1140
|
};
|
|
1141
|
-
scope.
|
|
1141
|
+
scope.dialogShow = function (args) {
|
|
1142
1142
|
var crud = args.crud;
|
|
1143
1143
|
var name = scope.getName('modal');
|
|
1144
1144
|
var edit = args.edit === true;
|
|
@@ -1166,7 +1166,7 @@ function UIModal(props) {
|
|
|
1166
1166
|
scope.currentDialog = d;
|
|
1167
1167
|
toggle(true);
|
|
1168
1168
|
};
|
|
1169
|
-
scope.
|
|
1169
|
+
scope.dialogHide = function (args) {
|
|
1170
1170
|
var _main$dialog;
|
|
1171
1171
|
var old = scope.currentDialog;
|
|
1172
1172
|
main.dialog = reactCrudUtils.Utils.nvl(old.dialog, null);
|