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/package.json CHANGED
@@ -1,5 +1,5 @@
1
1
  {
2
- "version": "1.0.899",
2
+ "version": "1.0.901",
3
3
  "license": "MIT",
4
4
  "description": "Uma biblioteca de componentes para React Native",
5
5
  "main": "dist/index.js",
@@ -570,12 +570,16 @@ export default function UIElement(props: ElementType) {
570
570
 
571
571
  let boxStyle = StyleSheet.create({
572
572
  box: {
573
- borderWidth: 1,
573
+ borderWidth: 0,
574
574
  borderColor: '#dedede',
575
575
  borderStyle: 'solid',
576
576
  backgroundColor: 'white',
577
- borderRadius: 10,
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
 
@@ -38,6 +38,7 @@ export default function UIQuantity(props: ChildType) {
38
38
  flex: 1,
39
39
  flexDirection: 'row',
40
40
  textAlign: 'center',
41
+ fontWeight: '500',
41
42
  },
42
43
  buttonInner: {
43
44
  flexDirection: 'row',