react-native-in-app-debugger 1.0.68 → 1.0.70
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 -1
- package/package.json +1 -1
package/index.jsx
CHANGED
|
@@ -140,6 +140,8 @@ export default ({
|
|
|
140
140
|
transform: [{ translateX }, { translateY }],
|
|
141
141
|
position: "absolute",
|
|
142
142
|
borderRadius,
|
|
143
|
+
borderColor: 'white',
|
|
144
|
+
borderWidth: .5,
|
|
143
145
|
backgroundColor: "#000000" + (isOpen ? "ee" : "bb"),
|
|
144
146
|
height,
|
|
145
147
|
width,
|
|
@@ -190,7 +192,7 @@ export default ({
|
|
|
190
192
|
<View style={{ flex: 1, flexDirection: "row" }}>
|
|
191
193
|
{[
|
|
192
194
|
"api",
|
|
193
|
-
!!variables && "
|
|
195
|
+
!!variables && "vars",
|
|
194
196
|
"libs",
|
|
195
197
|
...tabs.map((t) => t.title),
|
|
196
198
|
]
|
package/package.json
CHANGED