react-native-in-app-debugger 1.0.18 → 1.0.19

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.
Files changed (2) hide show
  1. package/index.jsx +3 -3
  2. package/package.json +1 -1
package/index.jsx CHANGED
@@ -94,14 +94,14 @@ export default ({
94
94
  <View style={styles.badgeContainer}>
95
95
  {!!numPendingApiCalls && (
96
96
  <View style={[styles.badge, { backgroundColor: "orange" }]}>
97
- <Text style={{ fontSize: 8, color: "white" }}>
97
+ <Text style={{ fontSize: 6, color: "white" }}>
98
98
  {numPendingApiCalls}
99
99
  </Text>
100
100
  </View>
101
101
  )}
102
102
  {!!errors && (
103
103
  <View style={[styles.badge, { backgroundColor: "red" }]}>
104
- <Text style={{ fontSize: 8, color: "white" }}>{errors}</Text>
104
+ <Text style={{ fontSize: 6, color: "white" }}>{errors}</Text>
105
105
  </View>
106
106
  )}
107
107
  </View>
@@ -185,7 +185,7 @@ const styles = StyleSheet.create({
185
185
  zIndex: 999,
186
186
  },
187
187
  badge: {
188
- padding: 4,
188
+ padding: 3,
189
189
  borderRadius: 999,
190
190
  },
191
191
  close: {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "react-native-in-app-debugger",
3
- "version": "1.0.18",
3
+ "version": "1.0.19",
4
4
  "description": "",
5
5
  "main": "index.jsx",
6
6
  "scripts": {