react-native-inapp-inspector 2.2.3 → 2.2.4
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/AnalyticsDetail.js +5 -1
- package/dist/commonjs/components/AnalyticsEventCard.js +2 -1
- package/dist/commonjs/components/DiffViewer.js +1 -1
- package/dist/commonjs/components/Inspector/BundleTab.js +22 -0
- package/dist/commonjs/components/Inspector/DeviceInfoTab.d.ts +3 -0
- package/dist/commonjs/components/Inspector/DeviceInfoTab.js +835 -0
- package/dist/commonjs/components/Inspector/InspectorHeader.js +12 -14
- package/dist/commonjs/components/Inspector/LogDetail.js +6 -3
- package/dist/commonjs/components/Inspector/MainScreen.js +7 -3
- package/dist/commonjs/components/Inspector/NetworkTab.js +92 -15
- package/dist/commonjs/components/Inspector/PerformanceTab.js +38 -12
- package/dist/commonjs/components/Inspector/SettingsPanel.js +440 -229
- package/dist/commonjs/components/Inspector/StorageTab.d.ts +3 -0
- package/dist/commonjs/components/Inspector/StorageTab.js +892 -0
- package/dist/commonjs/components/Inspector/TabBar.js +14 -0
- package/dist/commonjs/components/Inspector/TelemetryConsentModal.js +11 -2
- package/dist/commonjs/components/Inspector/UpdateAvailableModal.js +4 -1
- package/dist/commonjs/components/NetworkIcons.d.ts +6 -0
- package/dist/commonjs/components/NetworkIcons.js +30 -1
- package/dist/commonjs/constants/version.d.ts +1 -1
- package/dist/commonjs/constants/version.js +1 -1
- package/dist/commonjs/customHooks/bundleAnalyzer.js +44 -22
- package/dist/commonjs/customHooks/storageInspector.d.ts +67 -0
- package/dist/commonjs/customHooks/storageInspector.js +486 -0
- package/dist/commonjs/i18n/locales/en.json +8 -2
- package/dist/commonjs/index.d.ts +1 -0
- package/dist/commonjs/index.js +16 -1
- package/dist/commonjs/storage.d.ts +5 -0
- package/dist/commonjs/storage.js +18 -0
- package/dist/commonjs/types/enums.d.ts +5 -0
- package/dist/commonjs/types/enums.js +5 -0
- package/dist/esm/components/AnalyticsDetail.js +6 -2
- package/dist/esm/components/AnalyticsEventCard.js +2 -1
- package/dist/esm/components/DiffViewer.js +1 -1
- package/dist/esm/components/Inspector/BundleTab.js +22 -0
- package/dist/esm/components/Inspector/DeviceInfoTab.d.ts +3 -0
- package/dist/esm/components/Inspector/DeviceInfoTab.js +796 -0
- package/dist/esm/components/Inspector/InspectorHeader.js +13 -15
- package/dist/esm/components/Inspector/LogDetail.js +7 -4
- package/dist/esm/components/Inspector/MainScreen.js +7 -3
- package/dist/esm/components/Inspector/NetworkTab.js +93 -16
- package/dist/esm/components/Inspector/PerformanceTab.js +39 -13
- package/dist/esm/components/Inspector/SettingsPanel.js +441 -230
- package/dist/esm/components/Inspector/StorageTab.d.ts +3 -0
- package/dist/esm/components/Inspector/StorageTab.js +853 -0
- package/dist/esm/components/Inspector/TabBar.js +15 -1
- package/dist/esm/components/Inspector/TelemetryConsentModal.js +11 -2
- package/dist/esm/components/Inspector/UpdateAvailableModal.js +4 -1
- package/dist/esm/components/NetworkIcons.d.ts +6 -0
- package/dist/esm/components/NetworkIcons.js +23 -0
- package/dist/esm/constants/version.d.ts +1 -1
- package/dist/esm/constants/version.js +1 -1
- package/dist/esm/customHooks/bundleAnalyzer.js +44 -22
- package/dist/esm/customHooks/storageInspector.d.ts +67 -0
- package/dist/esm/customHooks/storageInspector.js +469 -0
- package/dist/esm/i18n/locales/en.json +8 -2
- package/dist/esm/index.d.ts +1 -0
- package/dist/esm/index.js +5 -0
- package/dist/esm/storage.d.ts +5 -0
- package/dist/esm/storage.js +5 -0
- package/dist/esm/types/enums.d.ts +5 -0
- package/dist/esm/types/enums.js +5 -0
- package/package.json +8 -1
- package/src/components/AnalyticsDetail.tsx +6 -1
- package/src/components/AnalyticsEventCard.tsx +2 -1
- package/src/components/DiffViewer.tsx +1 -1
- package/src/components/Inspector/BundleTab.tsx +29 -0
- package/src/components/Inspector/DeviceInfoTab.tsx +1204 -0
- package/src/components/Inspector/InspectorHeader.tsx +13 -14
- package/src/components/Inspector/LogDetail.tsx +15 -11
- package/src/components/Inspector/MainScreen.tsx +7 -3
- package/src/components/Inspector/NetworkTab.tsx +104 -16
- package/src/components/Inspector/PerformanceTab.tsx +46 -12
- package/src/components/Inspector/SettingsPanel.tsx +570 -304
- package/src/components/Inspector/StorageTab.tsx +1048 -0
- package/src/components/Inspector/TabBar.tsx +20 -0
- package/src/components/Inspector/TelemetryConsentModal.tsx +26 -2
- package/src/components/Inspector/UpdateAvailableModal.tsx +13 -1
- package/src/components/NetworkIcons.tsx +103 -0
- package/src/constants/version.ts +1 -1
- package/src/customHooks/bundleAnalyzer.ts +47 -22
- package/src/customHooks/storageInspector.ts +509 -0
- package/src/i18n/locales/en.json +8 -2
- package/src/index.tsx +21 -1
- package/src/storage.ts +18 -0
- package/src/types/enums.ts +5 -0
|
@@ -162,8 +162,9 @@ const AnalyticsEventCard = React.memo(function AnalyticsEventCard({ event, onPre
|
|
|
162
162
|
borderColor: `${AppColors.brandPurple}25`,
|
|
163
163
|
},
|
|
164
164
|
]}>
|
|
165
|
+
<SparkleIcon color={AppColors.brandPurple} size={10}/>
|
|
165
166
|
<Text style={[cardStyles.chipText, { color: AppColors.brandPurple, fontFamily: AppFonts.interBold }]}>
|
|
166
|
-
|
|
167
|
+
{userPropCount} {t('analytics.props')}
|
|
167
168
|
</Text>
|
|
168
169
|
</View>)}
|
|
169
170
|
|
|
@@ -40,7 +40,7 @@ const DiffViewer = React.memo(({ oldData, newData, forceOpen, }) => {
|
|
|
40
40
|
return (<Text key={i} selectable={true} style={styles.diffChanged}>
|
|
41
41
|
~ <Text style={styles.codeKey}>{key}</Text>
|
|
42
42
|
{JSON.stringify(d.oldVal)}{' '}
|
|
43
|
-
<Text style={{ color: AppColors.grayTextWeak }}
|
|
43
|
+
<Text style={{ color: AppColors.grayTextWeak }}>→</Text>{' '}
|
|
44
44
|
{JSON.stringify(d.newVal)}
|
|
45
45
|
</Text>);
|
|
46
46
|
})}
|
|
@@ -985,6 +985,28 @@ const BundleTab = React.memo(() => {
|
|
|
985
985
|
{t('bundle.liveAnalysisUnavailableSub')}
|
|
986
986
|
</Text>
|
|
987
987
|
</View>
|
|
988
|
+
<TouchableScale onPress={refreshAnalysis} style={{
|
|
989
|
+
backgroundColor: `${AppColors.amber700}18`,
|
|
990
|
+
paddingHorizontal: 8,
|
|
991
|
+
paddingVertical: 5,
|
|
992
|
+
borderRadius: 6,
|
|
993
|
+
borderWidth: 1,
|
|
994
|
+
borderColor: `${AppColors.amber700}30`,
|
|
995
|
+
flexDirection: 'row',
|
|
996
|
+
alignItems: 'center',
|
|
997
|
+
gap: 4,
|
|
998
|
+
}}>
|
|
999
|
+
{isAnalyzing ? (<ActivityIndicator size="small" color={AppColors.amber700}/>) : (<>
|
|
1000
|
+
<RefreshCcwIcon color={AppColors.amber700} size={11}/>
|
|
1001
|
+
<Text style={{
|
|
1002
|
+
fontSize: 10.5,
|
|
1003
|
+
fontFamily: AppFonts.interBold,
|
|
1004
|
+
color: AppColors.amber700,
|
|
1005
|
+
}}>
|
|
1006
|
+
Retry
|
|
1007
|
+
</Text>
|
|
1008
|
+
</>)}
|
|
1009
|
+
</TouchableScale>
|
|
988
1010
|
</View>
|
|
989
1011
|
</View>)}
|
|
990
1012
|
|