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.
Files changed (82) hide show
  1. package/dist/commonjs/components/Inspector/AnalyticsTab.js +27 -2
  2. package/dist/commonjs/components/Inspector/BundleTab.js +3 -0
  3. package/dist/commonjs/components/Inspector/ConsoleTab.js +24 -1
  4. package/dist/commonjs/components/Inspector/CrashTab.js +30 -1
  5. package/dist/commonjs/components/Inspector/FeatureUnderDevNotice.d.ts +7 -0
  6. package/dist/commonjs/components/Inspector/FeatureUnderDevNotice.js +111 -0
  7. package/dist/commonjs/components/Inspector/InspectorHeader.js +225 -108
  8. package/dist/commonjs/components/Inspector/NetworkDetail.js +2 -1
  9. package/dist/commonjs/components/Inspector/NetworkFilterModal.d.ts +19 -0
  10. package/dist/commonjs/components/Inspector/NetworkFilterModal.js +648 -0
  11. package/dist/commonjs/components/Inspector/NetworkTab.js +89 -147
  12. package/dist/commonjs/components/Inspector/NpmUpdateToast.js +1 -1
  13. package/dist/commonjs/components/Inspector/PerformanceTab.js +3 -0
  14. package/dist/commonjs/components/Inspector/ReduxTab.js +24 -1
  15. package/dist/commonjs/components/Inspector/SettingsPanel.js +73 -88
  16. package/dist/commonjs/components/Inspector/StorageTab.js +37 -11
  17. package/dist/commonjs/components/Inspector/UpdateAvailableModal.js +2 -0
  18. package/dist/commonjs/components/LogCard.js +35 -26
  19. package/dist/commonjs/components/NetworkIcons.d.ts +1 -0
  20. package/dist/commonjs/components/NetworkIcons.js +6 -1
  21. package/dist/commonjs/constants/index.js +3 -0
  22. package/dist/commonjs/constants/version.d.ts +1 -1
  23. package/dist/commonjs/constants/version.js +1 -1
  24. package/dist/commonjs/helpers/telemetry.js +34 -0
  25. package/dist/commonjs/index.js +3 -0
  26. package/dist/commonjs/styles/index.d.ts +11 -0
  27. package/dist/commonjs/styles/index.js +20 -5
  28. package/dist/commonjs/types/enums.d.ts +3 -0
  29. package/dist/commonjs/types/enums.js +3 -0
  30. package/dist/esm/components/Inspector/AnalyticsTab.js +29 -4
  31. package/dist/esm/components/Inspector/BundleTab.js +3 -0
  32. package/dist/esm/components/Inspector/ConsoleTab.js +26 -3
  33. package/dist/esm/components/Inspector/CrashTab.js +32 -3
  34. package/dist/esm/components/Inspector/FeatureUnderDevNotice.d.ts +7 -0
  35. package/dist/esm/components/Inspector/FeatureUnderDevNotice.js +74 -0
  36. package/dist/esm/components/Inspector/InspectorHeader.js +226 -109
  37. package/dist/esm/components/Inspector/NetworkDetail.js +2 -1
  38. package/dist/esm/components/Inspector/NetworkFilterModal.d.ts +19 -0
  39. package/dist/esm/components/Inspector/NetworkFilterModal.js +607 -0
  40. package/dist/esm/components/Inspector/NetworkTab.js +91 -149
  41. package/dist/esm/components/Inspector/NpmUpdateToast.js +1 -1
  42. package/dist/esm/components/Inspector/PerformanceTab.js +3 -0
  43. package/dist/esm/components/Inspector/ReduxTab.js +26 -3
  44. package/dist/esm/components/Inspector/SettingsPanel.js +73 -88
  45. package/dist/esm/components/Inspector/StorageTab.js +39 -13
  46. package/dist/esm/components/Inspector/UpdateAvailableModal.js +2 -0
  47. package/dist/esm/components/LogCard.js +36 -27
  48. package/dist/esm/components/NetworkIcons.d.ts +1 -0
  49. package/dist/esm/components/NetworkIcons.js +4 -0
  50. package/dist/esm/constants/index.js +3 -0
  51. package/dist/esm/constants/version.d.ts +1 -1
  52. package/dist/esm/constants/version.js +1 -1
  53. package/dist/esm/helpers/telemetry.js +34 -0
  54. package/dist/esm/index.js +3 -0
  55. package/dist/esm/styles/index.d.ts +11 -0
  56. package/dist/esm/styles/index.js +20 -5
  57. package/dist/esm/types/enums.d.ts +3 -0
  58. package/dist/esm/types/enums.js +3 -0
  59. package/package.json +2 -2
  60. package/src/components/Inspector/AnalyticsTab.tsx +71 -43
  61. package/src/components/Inspector/BundleTab.tsx +3 -0
  62. package/src/components/Inspector/ConsoleTab.tsx +28 -1
  63. package/src/components/Inspector/CrashTab.tsx +45 -14
  64. package/src/components/Inspector/FeatureUnderDevNotice.tsx +94 -0
  65. package/src/components/Inspector/InspectorHeader.tsx +257 -115
  66. package/src/components/Inspector/NetworkDetail.tsx +2 -1
  67. package/src/components/Inspector/NetworkFilterModal.tsx +710 -0
  68. package/src/components/Inspector/NetworkTab.tsx +127 -204
  69. package/src/components/Inspector/NpmUpdateToast.tsx +1 -1
  70. package/src/components/Inspector/PerformanceTab.tsx +3 -0
  71. package/src/components/Inspector/ReduxTab.tsx +28 -1
  72. package/src/components/Inspector/SettingsPanel.tsx +93 -132
  73. package/src/components/Inspector/StorageTab.tsx +56 -27
  74. package/src/components/Inspector/UpdateAvailableModal.tsx +2 -0
  75. package/src/components/LogCard.tsx +43 -31
  76. package/src/components/NetworkIcons.tsx +27 -0
  77. package/src/constants/index.ts +3 -0
  78. package/src/constants/version.ts +1 -1
  79. package/src/helpers/telemetry.ts +36 -0
  80. package/src/index.tsx +5 -0
  81. package/src/styles/index.ts +20 -5
  82. package/src/types/enums.ts +3 -0
@@ -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: 8,
584
- gap: 6,
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: 2,
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: 10,
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,
@@ -22,6 +22,9 @@ export const Method = {
22
22
  Put: 'PUT',
23
23
  Patch: 'PATCH',
24
24
  Delete: 'DELETE',
25
+ Query: 'QUERY',
26
+ Options: 'OPTIONS',
27
+ Head: 'HEAD',
25
28
  } as const;
26
29
  export type Method = (typeof Method)[keyof typeof Method];
27
30