react-native-inapp-inspector 2.3.9 → 2.3.11
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/dist/commonjs/components/Inspector/DebuggingTab.d.ts +3 -0
- package/dist/commonjs/components/Inspector/DebuggingTab.js +682 -0
- package/dist/commonjs/components/Inspector/MainScreen.js +2 -0
- package/dist/commonjs/components/Inspector/NetworkDetail.js +2 -1
- package/dist/commonjs/components/Inspector/NetworkFilterModal.d.ts +19 -0
- package/dist/commonjs/components/Inspector/NetworkFilterModal.js +648 -0
- package/dist/commonjs/components/Inspector/NetworkTab.js +89 -147
- package/dist/commonjs/components/Inspector/SettingsPanel.js +12 -0
- package/dist/commonjs/components/Inspector/TabBar.js +9 -0
- package/dist/commonjs/components/LogCard.js +5 -26
- package/dist/commonjs/components/NetworkIcons.d.ts +2 -0
- package/dist/commonjs/components/NetworkIcons.js +13 -1
- package/dist/commonjs/components/QRCodeView.d.ts +9 -0
- package/dist/commonjs/components/QRCodeView.js +79 -0
- package/dist/commonjs/constants/index.js +3 -0
- package/dist/commonjs/constants/version.d.ts +1 -1
- package/dist/commonjs/constants/version.js +1 -1
- package/dist/commonjs/helpers/qrGenerator.d.ts +2 -0
- package/dist/commonjs/helpers/qrGenerator.js +170 -0
- package/dist/commonjs/index.js +2 -0
- package/dist/commonjs/styles/index.d.ts +11 -0
- package/dist/commonjs/styles/index.js +20 -5
- package/dist/commonjs/types/enums.d.ts +5 -0
- package/dist/commonjs/types/enums.js +5 -0
- package/dist/esm/components/Inspector/DebuggingTab.d.ts +3 -0
- package/dist/esm/components/Inspector/DebuggingTab.js +642 -0
- package/dist/esm/components/Inspector/MainScreen.js +2 -0
- package/dist/esm/components/Inspector/NetworkDetail.js +2 -1
- package/dist/esm/components/Inspector/NetworkFilterModal.d.ts +19 -0
- package/dist/esm/components/Inspector/NetworkFilterModal.js +607 -0
- package/dist/esm/components/Inspector/NetworkTab.js +91 -149
- package/dist/esm/components/Inspector/SettingsPanel.js +13 -1
- package/dist/esm/components/Inspector/TabBar.js +10 -1
- package/dist/esm/components/LogCard.js +5 -26
- package/dist/esm/components/NetworkIcons.d.ts +2 -0
- package/dist/esm/components/NetworkIcons.js +10 -0
- package/dist/esm/components/QRCodeView.d.ts +9 -0
- package/dist/esm/components/QRCodeView.js +42 -0
- package/dist/esm/constants/index.js +3 -0
- package/dist/esm/constants/version.d.ts +1 -1
- package/dist/esm/constants/version.js +1 -1
- package/dist/esm/helpers/qrGenerator.d.ts +2 -0
- package/dist/esm/helpers/qrGenerator.js +167 -0
- package/dist/esm/index.js +2 -0
- package/dist/esm/styles/index.d.ts +11 -0
- package/dist/esm/styles/index.js +20 -5
- package/dist/esm/types/enums.d.ts +5 -0
- package/dist/esm/types/enums.js +5 -0
- package/package.json +2 -2
- package/src/components/Inspector/DebuggingTab.tsx +755 -0
- package/src/components/Inspector/MainScreen.tsx +2 -0
- package/src/components/Inspector/NetworkDetail.tsx +2 -1
- package/src/components/Inspector/NetworkFilterModal.tsx +710 -0
- package/src/components/Inspector/NetworkTab.tsx +127 -204
- package/src/components/Inspector/SettingsPanel.tsx +20 -0
- package/src/components/Inspector/TabBar.tsx +11 -0
- package/src/components/LogCard.tsx +5 -30
- package/src/components/NetworkIcons.tsx +66 -0
- package/src/components/QRCodeView.tsx +71 -0
- package/src/constants/index.ts +3 -0
- package/src/constants/version.ts +1 -1
- package/src/helpers/qrGenerator.ts +184 -0
- package/src/index.tsx +2 -0
- package/src/styles/index.ts +20 -5
- package/src/types/enums.ts +5 -0
|
@@ -29,6 +29,7 @@ import CrashTab from './CrashTab';
|
|
|
29
29
|
import CrashDetail from './CrashDetail';
|
|
30
30
|
import DeviceInfoTab from './DeviceInfoTab';
|
|
31
31
|
import StorageTab from './StorageTab';
|
|
32
|
+
import DebuggingTab from './DebuggingTab';
|
|
32
33
|
import SettingsPanel from './SettingsPanel';
|
|
33
34
|
import NpmUpdateToast from './NpmUpdateToast';
|
|
34
35
|
import Toast from '../Toast';
|
|
@@ -170,6 +171,7 @@ const MainScreen = () => {
|
|
|
170
171
|
{activeTab === 'crash' && <CrashTab />}
|
|
171
172
|
{activeTab === 'device' && <DeviceInfoTab />}
|
|
172
173
|
{activeTab === 'storage' && <StorageTab />}
|
|
174
|
+
{activeTab === 'debugging' && <DebuggingTab />}
|
|
173
175
|
</Animated.View>
|
|
174
176
|
|
|
175
177
|
{/* Detail View Layer - Rendered on top with smooth slide & spring transition */}
|
|
@@ -98,7 +98,7 @@ const NetworkDetail = React.memo(() => {
|
|
|
98
98
|
return (
|
|
99
99
|
<View style={{flex: 1}}>
|
|
100
100
|
{/* Non-scrollable details header */}
|
|
101
|
-
<View style={{paddingHorizontal:
|
|
101
|
+
<View style={{paddingHorizontal: 8, paddingTop: 4}}>
|
|
102
102
|
<View style={styles.detailInfoBar}>
|
|
103
103
|
{(() => {
|
|
104
104
|
let schemeStr = '';
|
|
@@ -159,6 +159,7 @@ const NetworkDetail = React.memo(() => {
|
|
|
159
159
|
gap: 6,
|
|
160
160
|
flexWrap: 'wrap',
|
|
161
161
|
flex: 1,
|
|
162
|
+
minWidth: 0,
|
|
162
163
|
}}>
|
|
163
164
|
{/* Method Chip */}
|
|
164
165
|
<View
|