react-crud-mobile 1.3.313 → 1.3.315
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 +2 -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 +2 -2
- package/dist/react-crud-mobile.esm.js.map +1 -1
- package/package.json +1 -1
- package/src/elements/UIElement.tsx +2 -2
@@ -2228,7 +2228,7 @@ function UIElement(props) {
|
|
2228
2228
|
alignSelf: 'stretch'
|
2229
2229
|
})));
|
2230
2230
|
var borderWidth = original.boxBorder;
|
2231
|
-
if (borderWidth) {
|
2231
|
+
if (borderWidth || borderWidth === 0) {
|
2232
2232
|
if (borderWidth === true) {
|
2233
2233
|
borderWidth = 1;
|
2234
2234
|
}
|
@@ -2374,7 +2374,7 @@ function UIElement(props) {
|
|
2374
2374
|
}
|
2375
2375
|
var boxStyle = /*#__PURE__*/reactNative.StyleSheet.create({
|
2376
2376
|
box: {
|
2377
|
-
borderWidth:
|
2377
|
+
borderWidth: 1,
|
2378
2378
|
borderColor: '#dedede',
|
2379
2379
|
borderStyle: 'solid',
|
2380
2380
|
backgroundColor: 'white',
|