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
package/package.json
CHANGED
@@ -585,7 +585,7 @@ export default function UIElement(props: ElementType) {
|
|
585
585
|
|
586
586
|
let borderWidth = original.boxBorder;
|
587
587
|
|
588
|
-
if (borderWidth) {
|
588
|
+
if (borderWidth || borderWidth === 0) {
|
589
589
|
if (borderWidth === true) {
|
590
590
|
borderWidth = 1;
|
591
591
|
}
|
@@ -753,7 +753,7 @@ export default function UIElement(props: ElementType) {
|
|
753
753
|
|
754
754
|
let boxStyle = StyleSheet.create({
|
755
755
|
box: {
|
756
|
-
borderWidth:
|
756
|
+
borderWidth: 1,
|
757
757
|
borderColor: '#dedede',
|
758
758
|
borderStyle: 'solid',
|
759
759
|
backgroundColor: 'white',
|