react-crud-mobile 1.3.341 → 1.3.342
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 +4 -0
- 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 +4 -0
- package/dist/react-crud-mobile.esm.js.map +1 -1
- package/package.json +1 -1
- package/src/elements/UIElement.tsx +6 -0
@@ -2390,6 +2390,10 @@ function UIElement(props) {
|
|
2390
2390
|
nextScope.update();
|
2391
2391
|
}
|
2392
2392
|
};
|
2393
|
+
if (original.hideEmpty && !scope.isType('list', 'select', 'complete')) {
|
2394
|
+
var value = scope.getValue();
|
2395
|
+
if (Utils.isEmpty(value)) return /*#__PURE__*/jsx(Fragment, {});
|
2396
|
+
}
|
2393
2397
|
return /*#__PURE__*/jsx(CrudContext.Provider, {
|
2394
2398
|
value: {
|
2395
2399
|
crud: crud,
|