react-crud-mobile 1.3.311 → 1.3.313
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 +9 -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 +9 -0
- package/dist/react-crud-mobile.esm.js.map +1 -1
- package/package.json +2 -2
- package/src/elements/UIElement.tsx +10 -0
@@ -2227,6 +2227,15 @@ function UIElement(props) {
|
|
2227
2227
|
var _box = _extends({}, getStyle('box', _extends({}, boxStyle.box, {
|
2228
2228
|
alignSelf: 'stretch'
|
2229
2229
|
})));
|
2230
|
+
var borderWidth = original.boxBorder;
|
2231
|
+
if (borderWidth) {
|
2232
|
+
if (borderWidth === true) {
|
2233
|
+
borderWidth = 1;
|
2234
|
+
}
|
2235
|
+
_box = _extends({}, _box, {
|
2236
|
+
borderWidth: borderWidth
|
2237
|
+
});
|
2238
|
+
}
|
2230
2239
|
return /*#__PURE__*/jsxRuntime.jsx(reactNative.View, {
|
2231
2240
|
style: getStyle('card', _extends({}, _box)),
|
2232
2241
|
children: /*#__PURE__*/jsxRuntime.jsx(reactNative.View, {
|