react-native-inapp-inspector 2.3.8 → 2.3.10
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/AnalyticsTab.js +27 -2
- package/dist/commonjs/components/Inspector/BundleTab.js +3 -0
- package/dist/commonjs/components/Inspector/ConsoleTab.js +24 -1
- package/dist/commonjs/components/Inspector/CrashTab.js +30 -1
- package/dist/commonjs/components/Inspector/FeatureUnderDevNotice.d.ts +7 -0
- package/dist/commonjs/components/Inspector/FeatureUnderDevNotice.js +111 -0
- package/dist/commonjs/components/Inspector/InspectorHeader.js +225 -108
- 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/NpmUpdateToast.js +1 -1
- package/dist/commonjs/components/Inspector/PerformanceTab.js +3 -0
- package/dist/commonjs/components/Inspector/ReduxTab.js +24 -1
- package/dist/commonjs/components/Inspector/SettingsPanel.js +73 -88
- package/dist/commonjs/components/Inspector/StorageTab.js +37 -11
- package/dist/commonjs/components/Inspector/UpdateAvailableModal.js +2 -0
- package/dist/commonjs/components/LogCard.js +35 -26
- package/dist/commonjs/components/NetworkIcons.d.ts +1 -0
- package/dist/commonjs/components/NetworkIcons.js +6 -1
- 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/telemetry.js +34 -0
- package/dist/commonjs/index.js +3 -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 +3 -0
- package/dist/commonjs/types/enums.js +3 -0
- package/dist/esm/components/Inspector/AnalyticsTab.js +29 -4
- package/dist/esm/components/Inspector/BundleTab.js +3 -0
- package/dist/esm/components/Inspector/ConsoleTab.js +26 -3
- package/dist/esm/components/Inspector/CrashTab.js +32 -3
- package/dist/esm/components/Inspector/FeatureUnderDevNotice.d.ts +7 -0
- package/dist/esm/components/Inspector/FeatureUnderDevNotice.js +74 -0
- package/dist/esm/components/Inspector/InspectorHeader.js +226 -109
- 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/NpmUpdateToast.js +1 -1
- package/dist/esm/components/Inspector/PerformanceTab.js +3 -0
- package/dist/esm/components/Inspector/ReduxTab.js +26 -3
- package/dist/esm/components/Inspector/SettingsPanel.js +73 -88
- package/dist/esm/components/Inspector/StorageTab.js +39 -13
- package/dist/esm/components/Inspector/UpdateAvailableModal.js +2 -0
- package/dist/esm/components/LogCard.js +36 -27
- package/dist/esm/components/NetworkIcons.d.ts +1 -0
- package/dist/esm/components/NetworkIcons.js +4 -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/telemetry.js +34 -0
- package/dist/esm/index.js +3 -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 +3 -0
- package/dist/esm/types/enums.js +3 -0
- package/package.json +2 -2
- package/src/components/Inspector/AnalyticsTab.tsx +71 -43
- package/src/components/Inspector/BundleTab.tsx +3 -0
- package/src/components/Inspector/ConsoleTab.tsx +28 -1
- package/src/components/Inspector/CrashTab.tsx +45 -14
- package/src/components/Inspector/FeatureUnderDevNotice.tsx +94 -0
- package/src/components/Inspector/InspectorHeader.tsx +257 -115
- 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/NpmUpdateToast.tsx +1 -1
- package/src/components/Inspector/PerformanceTab.tsx +3 -0
- package/src/components/Inspector/ReduxTab.tsx +28 -1
- package/src/components/Inspector/SettingsPanel.tsx +93 -132
- package/src/components/Inspector/StorageTab.tsx +56 -27
- package/src/components/Inspector/UpdateAvailableModal.tsx +2 -0
- package/src/components/LogCard.tsx +43 -31
- package/src/components/NetworkIcons.tsx +27 -0
- package/src/constants/index.ts +3 -0
- package/src/constants/version.ts +1 -1
- package/src/helpers/telemetry.ts +36 -0
- package/src/index.tsx +5 -0
- package/src/styles/index.ts +20 -5
- package/src/types/enums.ts +3 -0
package/src/styles/index.ts
CHANGED
|
@@ -575,18 +575,21 @@ export const getRawStyles = (colors: typeof AppColors) => ({
|
|
|
575
575
|
alignItems: 'center',
|
|
576
576
|
justifyContent: 'space-between',
|
|
577
577
|
marginBottom: 4,
|
|
578
|
+
minHeight: 22,
|
|
578
579
|
},
|
|
579
580
|
cardHeaderLeft: {
|
|
580
581
|
flexDirection: 'row',
|
|
581
582
|
alignItems: 'center',
|
|
582
583
|
flex: 1,
|
|
583
|
-
marginRight:
|
|
584
|
-
gap:
|
|
584
|
+
marginRight: 6,
|
|
585
|
+
gap: 5,
|
|
586
|
+
minWidth: 0,
|
|
585
587
|
},
|
|
586
588
|
cardHeaderRight: {
|
|
587
589
|
flexDirection: 'row',
|
|
588
590
|
alignItems: 'center',
|
|
589
591
|
gap: 5,
|
|
592
|
+
flexShrink: 0,
|
|
590
593
|
},
|
|
591
594
|
|
|
592
595
|
smallCheckbox: {
|
|
@@ -673,6 +676,7 @@ export const getRawStyles = (colors: typeof AppColors) => ({
|
|
|
673
676
|
flexDirection: 'row',
|
|
674
677
|
alignItems: 'flex-start',
|
|
675
678
|
flex: 1,
|
|
679
|
+
minWidth: 0,
|
|
676
680
|
gap: 6,
|
|
677
681
|
},
|
|
678
682
|
slugTag: {
|
|
@@ -685,6 +689,7 @@ export const getRawStyles = (colors: typeof AppColors) => ({
|
|
|
685
689
|
paddingVertical: 1.5,
|
|
686
690
|
borderRadius: 4,
|
|
687
691
|
marginTop: 1,
|
|
692
|
+
flexShrink: 0,
|
|
688
693
|
},
|
|
689
694
|
slugText: {
|
|
690
695
|
fontFamily: AppFonts.interMedium,
|
|
@@ -697,18 +702,21 @@ export const getRawStyles = (colors: typeof AppColors) => ({
|
|
|
697
702
|
flexDirection: 'row',
|
|
698
703
|
alignItems: 'center',
|
|
699
704
|
gap: 4,
|
|
705
|
+
flexShrink: 0,
|
|
700
706
|
},
|
|
701
707
|
|
|
702
708
|
cardFooterRow: {
|
|
703
709
|
flexDirection: 'row',
|
|
704
710
|
alignItems: 'center',
|
|
705
711
|
justifyContent: 'space-between',
|
|
706
|
-
marginTop:
|
|
712
|
+
marginTop: 4,
|
|
713
|
+
minHeight: 18,
|
|
707
714
|
},
|
|
708
715
|
cardDateRow: {
|
|
709
716
|
flexDirection: 'row',
|
|
710
717
|
alignItems: 'center',
|
|
711
718
|
gap: 3.5,
|
|
719
|
+
flexShrink: 0,
|
|
712
720
|
},
|
|
713
721
|
cardDateText: {
|
|
714
722
|
fontFamily: AppFonts.interRegular,
|
|
@@ -720,6 +728,7 @@ export const getRawStyles = (colors: typeof AppColors) => ({
|
|
|
720
728
|
flexDirection: 'row',
|
|
721
729
|
alignItems: 'center',
|
|
722
730
|
gap: 5,
|
|
731
|
+
flexShrink: 0,
|
|
723
732
|
},
|
|
724
733
|
|
|
725
734
|
chip: {
|
|
@@ -814,9 +823,15 @@ export const getRawStyles = (colors: typeof AppColors) => ({
|
|
|
814
823
|
flexDirection: 'row',
|
|
815
824
|
alignItems: 'center',
|
|
816
825
|
justifyContent: 'space-between',
|
|
817
|
-
paddingBottom:
|
|
826
|
+
paddingBottom: 8,
|
|
827
|
+
gap: 8,
|
|
828
|
+
},
|
|
829
|
+
detailInfoRight: {
|
|
830
|
+
flexDirection: 'row',
|
|
831
|
+
alignItems: 'center',
|
|
832
|
+
gap: 5,
|
|
833
|
+
flexShrink: 0,
|
|
818
834
|
},
|
|
819
|
-
detailInfoRight: {flexDirection: 'row', alignItems: 'center', gap: 6},
|
|
820
835
|
|
|
821
836
|
metaContainer: {
|
|
822
837
|
backgroundColor: colors.primaryLight,
|