@dhiraj0720/report1chart 2.9.4 → 2.9.6

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,6 +1,6 @@
1
1
  {
2
2
  "name": "@dhiraj0720/report1chart",
3
- "version": "2.9.4",
3
+ "version": "2.9.6",
4
4
  "main": "src/index.jsx",
5
5
  "scripts": {
6
6
  "test": "echo 'No tests'"
@@ -41,7 +41,7 @@ const FrozenTableReport1A = ({ rows = [], isFullscreen = false }) => {
41
41
  return <Text style={{ textAlign: 'center', padding: 20, color: '#666' }}>No data available</Text>;
42
42
  }
43
43
 
44
- const frozenColumnWidth = isFullscreen ? 180 : 150;
44
+ const frozenColumnWidth = isFullscreen ? 180 : 130;
45
45
 
46
46
  return (
47
47
  <View style={styles.container}>
@@ -108,7 +108,7 @@ const styles = StyleSheet.create({
108
108
  flexDirection: 'row',
109
109
  },
110
110
  cell: {
111
- minWidth: 120, // Increased to prevent wrapping
111
+ minWidth: 100, // Increased to prevent wrapping
112
112
  maxWidth: 180, // Optional: limit max width
113
113
  paddingHorizontal: 12,
114
114
  paddingVertical: 12,
@@ -97,9 +97,11 @@ const styles = StyleSheet.create({
97
97
  header: {
98
98
  flexDirection: 'row',
99
99
  alignItems: 'center',
100
- paddingVertical: 18,
101
100
  paddingHorizontal: 16,
102
- backgroundColor: '#4E79A7', // Deep blue
101
+ paddingVertical: 18,
102
+ backgroundColor: '#4E79A7',
103
+ borderBottomWidth: 1,
104
+ borderColor: '#4E79A7',
103
105
  },
104
106
  backButton: {
105
107
  padding: 8,
@@ -205,7 +205,7 @@ const styles = StyleSheet.create({
205
205
  borderBottomWidth: 1,
206
206
  borderColor: '#4E79A7',
207
207
  },
208
- backIcon: { fontSize: 28, color: '#fff', fontWeight: '800' },
208
+ backIcon: { fontSize: 32, color: '#fff', fontWeight: '800' },
209
209
  headerTitle: { fontSize: 19, fontWeight: '700', color: '#fff', flex: 1, textAlign: 'center' },
210
210
 
211
211
  filterBar: {