react-native-debug-toolkit 0.1.1 → 0.1.2

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.js CHANGED
@@ -2,9 +2,10 @@
2
2
  * React Native Debug Toolkit
3
3
  * A comprehensive debugging toolkit for React Native
4
4
  */
5
+ import DebugToolKit from './lib/DebugToolKit'
6
+ import { createNetworkFeature } from './lib/features/NetworkFeature'
5
7
 
6
- import DebugToolKit from './lib/DebugToolKit';
7
- import BuildType from './lib/utils/BuildTypeBridge';
8
+ export { DebugToolKit, createNetworkFeature }
9
+
10
+ export default DebugToolKit
8
11
 
9
- export { BuildType };
10
- export default DebugToolKit;
@@ -1,6 +1,6 @@
1
1
  import React, { useState, useCallback } from 'react'
2
2
  import { View, Text, StyleSheet, Clipboard, Dimensions } from 'react-native'
3
- import { ScrollView, Pressable } from 'react-native-gesture-handler'
3
+ import { ScrollView, Pressable } from 'react-native'
4
4
 
5
5
  const { width: SCREEN_WIDTH } = Dimensions.get('window')
6
6
 
@@ -214,12 +214,12 @@ const styles = StyleSheet.create({
214
214
  modalContainer: {
215
215
  flex: 1,
216
216
  backgroundColor: 'rgba(0,0,0,0.5)',
217
- justifyContent: 'center',
217
+ justifyContent: 'flex-end',
218
218
  alignItems: 'center',
219
219
  },
220
220
  modalContent: {
221
- width: '90%',
222
- height: '80%',
221
+ width: '100%',
222
+ height: '90%',
223
223
  backgroundColor: '#fff',
224
224
  borderRadius: 10,
225
225
  overflow: 'hidden',
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "react-native-debug-toolkit",
3
- "version": "0.1.1",
3
+ "version": "0.1.2",
4
4
  "description": "A simple yet powerful debugging toolkit for React Native with a convenient floating UI for development",
5
5
  "main": "index.js",
6
6
  "types": "index.d.ts",