react-native-in-app-debugger 1.0.73 → 1.0.74

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 -5
  2. package/package.json +1 -1
package/index.jsx CHANGED
@@ -140,8 +140,8 @@ export default ({
140
140
  transform: [{ translateX }, { translateY }],
141
141
  position: "absolute",
142
142
  borderRadius,
143
- borderColor: 'white',
144
- borderWidth: .5,
143
+ borderColor: isOpen ? undefined : "white",
144
+ borderWidth: 0.5,
145
145
  backgroundColor: "#000000" + (isOpen ? "ee" : "bb"),
146
146
  height,
147
147
  width,
@@ -227,9 +227,7 @@ export default ({
227
227
  </View>
228
228
  <X style={{ marginRight: 5 }} onPress={() => setIsOpen(false)} />
229
229
  </View>
230
- {tab === "vars" && !!variables && (
231
- <Variables variables={variables} />
232
- )}
230
+ {tab === "vars" && !!variables && <Variables variables={variables} />}
233
231
  {tab === "libs" && <Libs />}
234
232
  {tab === "api" && (
235
233
  <Api
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "react-native-in-app-debugger",
3
- "version": "1.0.73",
3
+ "version": "1.0.74",
4
4
  "description": "This library's main usage is to be used by Non-Technical testers during UAT, SIT or any testing phase.",
5
5
  "main": "index.jsx",
6
6
  "scripts": {