react-crud-mobile 1.0.546 → 1.0.548

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.546",
2
+ "version": "1.0.548",
3
3
  "license": "MIT",
4
4
  "description": "Uma biblioteca de componentes para React Native",
5
5
  "main": "dist/index.js",
@@ -44,7 +44,7 @@
44
44
  "@react-native-vector-icons/ionicons": "^7.4.0",
45
45
  "@react-native-vector-icons/material-icons": "^0.0.1",
46
46
  "react": "19.0.0",
47
- "react-crud-utils": "^0.1.200",
47
+ "react-crud-utils": "^0.1.201",
48
48
  "react-dom": "19.0.0",
49
49
  "react-native": "0.79.2",
50
50
  "react-native-gesture-handler": "~2.24.0",
@@ -480,6 +480,9 @@ elementStyle.card = StyleSheet.create({
480
480
  });
481
481
 
482
482
  elementStyle.input = StyleSheet.create({
483
+ label: {
484
+ paddingLeft: 8,
485
+ },
483
486
  inner: {
484
487
  flex: 1,
485
488
  width: '100%',
@@ -535,7 +538,12 @@ const styles = StyleSheet.create({
535
538
  width: '100%',
536
539
  alignItems: 'flex-start',
537
540
  },
538
- label: { width: '100%', fontWeight: 400, fontSize: 12, color: '#534f4f' },
541
+ label: {
542
+ width: '100%',
543
+ fontWeight: 400,
544
+ fontSize: 12,
545
+ color: 'labelColor',
546
+ },
539
547
  inner: { width: '100%' },
540
548
  });
541
549