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
@@ -2219,7 +2219,7 @@ function UIElement(props) {
|
|
2219
2219
|
alignSelf: 'stretch'
|
2220
2220
|
})));
|
2221
2221
|
var borderWidth = original.boxBorder;
|
2222
|
-
if (borderWidth) {
|
2222
|
+
if (borderWidth || borderWidth === 0) {
|
2223
2223
|
if (borderWidth === true) {
|
2224
2224
|
borderWidth = 1;
|
2225
2225
|
}
|
@@ -2365,7 +2365,7 @@ function UIElement(props) {
|
|
2365
2365
|
}
|
2366
2366
|
var boxStyle = /*#__PURE__*/StyleSheet.create({
|
2367
2367
|
box: {
|
2368
|
-
borderWidth:
|
2368
|
+
borderWidth: 1,
|
2369
2369
|
borderColor: '#dedede',
|
2370
2370
|
borderStyle: 'solid',
|
2371
2371
|
backgroundColor: 'white',
|