react-native-in-app-debugger 1.0.59 → 1.0.61
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/index.jsx +2 -1
- package/index.jsx +1 -0
- package/package.json +1 -1
package/Api/index.jsx
CHANGED
|
@@ -229,8 +229,9 @@ export default (props) => {
|
|
|
229
229
|
const content = { ...item };
|
|
230
230
|
delete content.id;
|
|
231
231
|
Clipboard.setString(
|
|
232
|
-
JSON.stringify(content, undefined,
|
|
232
|
+
JSON.stringify(content, undefined, 3)
|
|
233
233
|
);
|
|
234
|
+
Alert.alert('Copied');
|
|
234
235
|
}}
|
|
235
236
|
style={styles.actionButton}
|
|
236
237
|
>
|
package/index.jsx
CHANGED
|
@@ -140,6 +140,7 @@ export default ({
|
|
|
140
140
|
backgroundColor: "#000000" + (isOpen ? "ee" : "bb"),
|
|
141
141
|
height,
|
|
142
142
|
width,
|
|
143
|
+
zIndex: 9999999999999999999999999999,
|
|
143
144
|
borderTopRightRadius: numPendingApiCalls || errors ? 0 : undefined,
|
|
144
145
|
}}
|
|
145
146
|
{...(isOpen ? {} : panResponder.panHandlers)}
|
package/package.json
CHANGED