react-native-in-app-debugger 1.0.27 → 1.0.29
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/Api.jsx +3 -2
- package/Variables.jsx +1 -0
- package/package.json +1 -1
package/Api.jsx
CHANGED
|
@@ -130,7 +130,7 @@ export default (props) => {
|
|
|
130
130
|
textDecorationLine: errorOnly ? "line-through" : undefined,
|
|
131
131
|
}}
|
|
132
132
|
>
|
|
133
|
-
{apis.filter(isError).length}
|
|
133
|
+
{apis.filter(isError).length} error{apis.filter(isError).length > 1 ? 's' : ''}
|
|
134
134
|
</Text>
|
|
135
135
|
</TouchableOpacity>
|
|
136
136
|
)}
|
|
@@ -166,6 +166,7 @@ export default (props) => {
|
|
|
166
166
|
contentContainerStyle={{ padding: 5 }}
|
|
167
167
|
keyExtractor={(i) => i.id}
|
|
168
168
|
stickySectionHeadersEnabled
|
|
169
|
+
showsVerticalScrollIndicator
|
|
169
170
|
sections={apis
|
|
170
171
|
.filter((a) =>
|
|
171
172
|
!filter || filterUrlOnly
|
|
@@ -261,7 +262,7 @@ const styles = StyleSheet.create({
|
|
|
261
262
|
gap: 5,
|
|
262
263
|
backgroundColor: "black",
|
|
263
264
|
padding: 5,
|
|
264
|
-
paddingTop:
|
|
265
|
+
paddingTop: 10,
|
|
265
266
|
shadowColor: "black",
|
|
266
267
|
shadowOffset: {
|
|
267
268
|
width: 0,
|
package/Variables.jsx
CHANGED
|
@@ -18,6 +18,7 @@ export default ({ variables }) => {
|
|
|
18
18
|
data={Object.keys(variables).filter(
|
|
19
19
|
(k) => !filter || variables[k].toLowerCase().includes(filter) || k.toLowerCase().includes(filter),
|
|
20
20
|
)}
|
|
21
|
+
showsVerticalScrollIndicator
|
|
21
22
|
keyExtractor={(i) => i}
|
|
22
23
|
renderItem={({ item }) => (
|
|
23
24
|
<Text selectable style={{ color: 'white', marginVertical: 10 }}>
|