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.
- package/index.jsx +3 -5
- 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:
|
|
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