react-crud-mobile 1.3.312 → 1.3.314

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.
@@ -2218,6 +2218,15 @@ function UIElement(props) {
2218
2218
  var _box = _extends({}, getStyle('box', _extends({}, boxStyle.box, {
2219
2219
  alignSelf: 'stretch'
2220
2220
  })));
2221
+ var borderWidth = original.boxBorder;
2222
+ if (borderWidth || borderWidth === 0) {
2223
+ if (borderWidth === true) {
2224
+ borderWidth = 1;
2225
+ }
2226
+ _box = _extends({}, _box, {
2227
+ borderWidth: borderWidth
2228
+ });
2229
+ }
2221
2230
  return /*#__PURE__*/jsx(View, {
2222
2231
  style: getStyle('card', _extends({}, _box)),
2223
2232
  children: /*#__PURE__*/jsx(View, {