react-crud-mobile 1.3.340 → 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.
@@ -2399,6 +2399,10 @@ function UIElement(props) {
2399
2399
  nextScope.update();
2400
2400
  }
2401
2401
  };
2402
+ if (original.hideEmpty && !scope.isType('list', 'select', 'complete')) {
2403
+ var value = scope.getValue();
2404
+ if (reactCrudUtils.Utils.isEmpty(value)) return /*#__PURE__*/jsxRuntime.jsx(jsxRuntime.Fragment, {});
2405
+ }
2402
2406
  return /*#__PURE__*/jsxRuntime.jsx(CrudContext.Provider, {
2403
2407
  value: {
2404
2408
  crud: crud,