@dhiraj0720/report1chart 2.8.9 → 2.9.1

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.8.9",
3
+ "version": "2.9.1",
4
4
  "main": "src/index.jsx",
5
5
  "scripts": {
6
6
  "test": "echo 'No tests'"
@@ -28,6 +28,8 @@ const Report1AScreen = ({ endpoint, token, onBack }) => {
28
28
  </TouchableOpacity>
29
29
  <Text style={styles.headerTitle}>PERFORMANS RAPORU (USD)</Text>
30
30
  </View>
31
+
32
+
31
33
 
32
34
  {/* FULLSCREEN BUTTON */}
33
35
  <TouchableOpacity
@@ -65,7 +67,9 @@ const Report1AScreen = ({ endpoint, token, onBack }) => {
65
67
 
66
68
  // ONLY ADDED THIS STYLES PART — NOTHING ELSE CHANGED
67
69
  const styles = StyleSheet.create({
68
- header: {
70
+
71
+
72
+ header: {
69
73
  flexDirection: 'row',
70
74
  alignItems: 'center',
71
75
  paddingHorizontal: 16,
@@ -73,7 +77,6 @@ const styles = StyleSheet.create({
73
77
  backgroundColor: '#4E79A7',
74
78
  borderBottomWidth: 1,
75
79
  borderColor: '#4E79A7',
76
- marginBottom: 12,
77
80
  },
78
81
  backIcon: {
79
82
  fontSize: 32,
@@ -119,27 +119,10 @@ const Report3AScreen = ({ api, token, onBack }) => {
119
119
  <TouchableOpacity
120
120
  onPress={() => setFullscreen(true)} style={styles.filterItem}
121
121
  >
122
- <Text style={styles.filterText}>⤢ Full Screen</Text>
122
+ <Text style={styles.filterText} width={22} height={22}>⤢ Full Screen</Text>
123
123
  </TouchableOpacity>
124
124
  </View>
125
125
 
126
- <View style={styles.filterBar}>
127
- <TouchableOpacity onPress={() => setMonthsModal(true)} style={styles.filterItem}>
128
- <Svg width={22} height={22} viewBox="0 0 24 24" fill="none">
129
- <Path d="M20 4H4V6.5L12 14.5L20 6.5V4Z" stroke="#000" strokeWidth={2} strokeLinecap="round" strokeLinejoin="round" />
130
- <Path d="M8 11V19L16 19V11" stroke="#000" strokeWidth={2} strokeLinecap="round" strokeLinejoin="round" />
131
- </Svg>
132
- <Text style={styles.filterText}>Months ({selectedMonths.length}/{months.length})</Text>
133
- </TouchableOpacity>
134
-
135
- <TouchableOpacity onPress={() => setDivisionModal(true)} style={styles.filterItem}>
136
- <Svg width={22} height={22} viewBox="0 0 24 24" fill="none">
137
- <Path d="M20 4H4V6.5L12 14.5L20 6.5V4Z" stroke="#000" strokeWidth={2} strokeLinecap="round" strokeLinejoin="round" />
138
- <Path d="M8 11V19L16 19V11" stroke="#000" strokeWidth={2} strokeLinecap="round" strokeLinejoin="round" />
139
- </Svg>
140
- <Text style={styles.filterText}>{currentDivisionName}</Text>
141
- </TouchableOpacity>
142
- </View>
143
126
 
144
127
  <ScrollView style={styles.content}>
145
128
  {/* FULL SCREEN BUTTON
@@ -222,7 +205,7 @@ const styles = StyleSheet.create({
222
205
  borderBottomWidth: 1,
223
206
  borderColor: '#4E79A7',
224
207
  },
225
- backIcon: { fontSize: 28, color: '#fff', fontWeight: '700' },
208
+ backIcon: { fontSize: 28, color: '#fff', fontWeight: '800' },
226
209
  headerTitle: { fontSize: 19, fontWeight: '700', color: '#fff', flex: 1, textAlign: 'center' },
227
210
 
228
211
  filterBar: {