react-crud-mobile 1.3.129 → 1.3.131
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/UIElement.tsx +5 -1
- package/src/elements/core/UIModal.tsx +1 -1
|
@@ -1362,7 +1362,7 @@ function UIModal(_ref) {
|
|
|
1362
1362
|
var scrollRef = React.useRef(null);
|
|
1363
1363
|
var style = function style(part, extra) {
|
|
1364
1364
|
var st = _extends({}, styles$8[part], extra);
|
|
1365
|
-
return _extends({},
|
|
1365
|
+
return _extends({}, scope.getStyle(part, st));
|
|
1366
1366
|
};
|
|
1367
1367
|
var onClose = function onClose() {
|
|
1368
1368
|
var _scope$currentDialog;
|
|
@@ -2115,7 +2115,8 @@ function UIElement(props) {
|
|
|
2115
2115
|
}, def));
|
|
2116
2116
|
var el = {
|
|
2117
2117
|
label: original.label,
|
|
2118
|
-
icon: original.icon
|
|
2118
|
+
icon: original.icon,
|
|
2119
|
+
type: 'dialog'
|
|
2119
2120
|
};
|
|
2120
2121
|
if (typeof event.dialog === 'object') {
|
|
2121
2122
|
el = _extends({}, el, event.dialog);
|