react-crud-mobile 1.0.899 → 1.0.901
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 -4
- 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 -4
- package/dist/react-crud-mobile.esm.js.map +1 -1
- package/package.json +1 -1
- package/src/elements/UIElement.tsx +6 -2
- package/src/elements/core/UIQuantity.tsx +1 -0
package/package.json
CHANGED
|
@@ -570,12 +570,16 @@ export default function UIElement(props: ElementType) {
|
|
|
570
570
|
|
|
571
571
|
let boxStyle = StyleSheet.create({
|
|
572
572
|
box: {
|
|
573
|
-
borderWidth:
|
|
573
|
+
borderWidth: 0,
|
|
574
574
|
borderColor: '#dedede',
|
|
575
575
|
borderStyle: 'solid',
|
|
576
576
|
backgroundColor: 'white',
|
|
577
|
-
borderRadius:
|
|
577
|
+
borderRadius: 12,
|
|
578
578
|
width: '100%',
|
|
579
|
+
shadowColor: '#000',
|
|
580
|
+
shadowOpacity: 0.1,
|
|
581
|
+
shadowRadius: 4,
|
|
582
|
+
marginBottom: 16,
|
|
579
583
|
},
|
|
580
584
|
});
|
|
581
585
|
|