react-native-in-app-debugger 1.0.64 → 1.0.66
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 +2 -2
- package/package.json +1 -1
package/index.jsx
CHANGED
|
@@ -143,7 +143,7 @@ export default ({
|
|
|
143
143
|
backgroundColor: "#000000" + (isOpen ? "ee" : "bb"),
|
|
144
144
|
height,
|
|
145
145
|
width,
|
|
146
|
-
zIndex:
|
|
146
|
+
zIndex: 999999999999999,
|
|
147
147
|
borderTopRightRadius: numPendingApiCalls || errors ? 0 : undefined,
|
|
148
148
|
}}
|
|
149
149
|
{...(isOpen ? {} : panResponder.panHandlers)}
|
|
@@ -153,7 +153,7 @@ export default ({
|
|
|
153
153
|
testId={testId}
|
|
154
154
|
accessible
|
|
155
155
|
onPress={() => setDisapear(true)}
|
|
156
|
-
style={{ height: 1, width: 1 }}
|
|
156
|
+
style={{ height: 1, width: 1, left: 10 }}
|
|
157
157
|
/>
|
|
158
158
|
{!shouldShowDetails ? (
|
|
159
159
|
<TouchableOpacity
|
package/package.json
CHANGED