react-native-inapp-inspector 2.2.3 → 2.2.5

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 (93) hide show
  1. package/dist/commonjs/components/AnalyticsDetail.js +5 -1
  2. package/dist/commonjs/components/AnalyticsEventCard.js +2 -1
  3. package/dist/commonjs/components/BrandSquareIcon.js +51 -117
  4. package/dist/commonjs/components/DiffViewer.js +1 -1
  5. package/dist/commonjs/components/Inspector/BundleTab.js +22 -0
  6. package/dist/commonjs/components/Inspector/DeviceInfoTab.d.ts +3 -0
  7. package/dist/commonjs/components/Inspector/DeviceInfoTab.js +835 -0
  8. package/dist/commonjs/components/Inspector/InspectorHeader.js +12 -14
  9. package/dist/commonjs/components/Inspector/LogDetail.js +6 -3
  10. package/dist/commonjs/components/Inspector/MainScreen.js +7 -3
  11. package/dist/commonjs/components/Inspector/NetworkTab.js +92 -15
  12. package/dist/commonjs/components/Inspector/PerformanceTab.js +38 -12
  13. package/dist/commonjs/components/Inspector/SettingsPanel.js +440 -229
  14. package/dist/commonjs/components/Inspector/StorageTab.d.ts +3 -0
  15. package/dist/commonjs/components/Inspector/StorageTab.js +892 -0
  16. package/dist/commonjs/components/Inspector/TabBar.js +14 -0
  17. package/dist/commonjs/components/Inspector/TelemetryConsentModal.js +12 -18
  18. package/dist/commonjs/components/Inspector/UpdateAvailableModal.js +4 -1
  19. package/dist/commonjs/components/NetworkIcons.d.ts +6 -0
  20. package/dist/commonjs/components/NetworkIcons.js +30 -1
  21. package/dist/commonjs/constants/version.d.ts +1 -1
  22. package/dist/commonjs/constants/version.js +1 -1
  23. package/dist/commonjs/customHooks/bundleAnalyzer.js +44 -22
  24. package/dist/commonjs/customHooks/storageInspector.d.ts +67 -0
  25. package/dist/commonjs/customHooks/storageInspector.js +486 -0
  26. package/dist/commonjs/i18n/locales/en.json +8 -2
  27. package/dist/commonjs/index.d.ts +1 -0
  28. package/dist/commonjs/index.js +16 -1
  29. package/dist/commonjs/native/NativeInspector.js +50 -26
  30. package/dist/commonjs/storage.d.ts +5 -0
  31. package/dist/commonjs/storage.js +18 -0
  32. package/dist/commonjs/types/enums.d.ts +5 -0
  33. package/dist/commonjs/types/enums.js +5 -0
  34. package/dist/esm/components/AnalyticsDetail.js +6 -2
  35. package/dist/esm/components/AnalyticsEventCard.js +2 -1
  36. package/dist/esm/components/BrandSquareIcon.js +52 -118
  37. package/dist/esm/components/DiffViewer.js +1 -1
  38. package/dist/esm/components/Inspector/BundleTab.js +22 -0
  39. package/dist/esm/components/Inspector/DeviceInfoTab.d.ts +3 -0
  40. package/dist/esm/components/Inspector/DeviceInfoTab.js +796 -0
  41. package/dist/esm/components/Inspector/InspectorHeader.js +13 -15
  42. package/dist/esm/components/Inspector/LogDetail.js +7 -4
  43. package/dist/esm/components/Inspector/MainScreen.js +7 -3
  44. package/dist/esm/components/Inspector/NetworkTab.js +93 -16
  45. package/dist/esm/components/Inspector/PerformanceTab.js +39 -13
  46. package/dist/esm/components/Inspector/SettingsPanel.js +441 -230
  47. package/dist/esm/components/Inspector/StorageTab.d.ts +3 -0
  48. package/dist/esm/components/Inspector/StorageTab.js +853 -0
  49. package/dist/esm/components/Inspector/TabBar.js +15 -1
  50. package/dist/esm/components/Inspector/TelemetryConsentModal.js +12 -18
  51. package/dist/esm/components/Inspector/UpdateAvailableModal.js +4 -1
  52. package/dist/esm/components/NetworkIcons.d.ts +6 -0
  53. package/dist/esm/components/NetworkIcons.js +23 -0
  54. package/dist/esm/constants/version.d.ts +1 -1
  55. package/dist/esm/constants/version.js +1 -1
  56. package/dist/esm/customHooks/bundleAnalyzer.js +44 -22
  57. package/dist/esm/customHooks/storageInspector.d.ts +67 -0
  58. package/dist/esm/customHooks/storageInspector.js +469 -0
  59. package/dist/esm/i18n/locales/en.json +8 -2
  60. package/dist/esm/index.d.ts +1 -0
  61. package/dist/esm/index.js +5 -0
  62. package/dist/esm/native/NativeInspector.js +51 -27
  63. package/dist/esm/storage.d.ts +5 -0
  64. package/dist/esm/storage.js +5 -0
  65. package/dist/esm/types/enums.d.ts +5 -0
  66. package/dist/esm/types/enums.js +5 -0
  67. package/ios/NetworkInspectorModule.mm +34 -19
  68. package/package.json +8 -1
  69. package/src/components/AnalyticsDetail.tsx +6 -1
  70. package/src/components/AnalyticsEventCard.tsx +2 -1
  71. package/src/components/BrandSquareIcon.tsx +109 -118
  72. package/src/components/DiffViewer.tsx +1 -1
  73. package/src/components/Inspector/BundleTab.tsx +29 -0
  74. package/src/components/Inspector/DeviceInfoTab.tsx +1204 -0
  75. package/src/components/Inspector/InspectorHeader.tsx +13 -14
  76. package/src/components/Inspector/LogDetail.tsx +15 -11
  77. package/src/components/Inspector/MainScreen.tsx +7 -3
  78. package/src/components/Inspector/NetworkTab.tsx +104 -16
  79. package/src/components/Inspector/PerformanceTab.tsx +46 -12
  80. package/src/components/Inspector/SettingsPanel.tsx +570 -304
  81. package/src/components/Inspector/StorageTab.tsx +1048 -0
  82. package/src/components/Inspector/TabBar.tsx +20 -0
  83. package/src/components/Inspector/TelemetryConsentModal.tsx +17 -52
  84. package/src/components/Inspector/UpdateAvailableModal.tsx +13 -1
  85. package/src/components/NetworkIcons.tsx +103 -0
  86. package/src/constants/version.ts +1 -1
  87. package/src/customHooks/bundleAnalyzer.ts +47 -22
  88. package/src/customHooks/storageInspector.ts +509 -0
  89. package/src/i18n/locales/en.json +8 -2
  90. package/src/index.tsx +21 -1
  91. package/src/native/NativeInspector.ts +56 -24
  92. package/src/storage.ts +18 -0
  93. package/src/types/enums.ts +5 -0
@@ -265,8 +265,9 @@ const AnalyticsDetail = ({ event, }) => {
265
265
  </react_native_1.View>)}
266
266
 
267
267
  {itemsCount !== null && (<react_native_1.View style={detailStyles.itemsPill}>
268
+ <NetworkIcons_1.PackageIcon size={12} color="#1D4ED8"/>
268
269
  <react_native_1.Text style={detailStyles.itemsValue}>
269
- 📦 {itemsCount} items
270
+ {itemsCount} items
270
271
  </react_native_1.Text>
271
272
  </react_native_1.View>)}
272
273
  </react_native_1.View>
@@ -569,6 +570,9 @@ const detailStyles = react_native_1.StyleSheet.create({
569
570
  color: '#047857',
570
571
  },
571
572
  itemsPill: {
573
+ flexDirection: 'row',
574
+ alignItems: 'center',
575
+ gap: 4,
572
576
  backgroundColor: '#EFF6FF',
573
577
  paddingHorizontal: 7,
574
578
  paddingVertical: 3,
@@ -200,8 +200,9 @@ const AnalyticsEventCard = react_1.default.memo(function AnalyticsEventCard({ ev
200
200
  borderColor: `${AppColors_1.AppColors.brandPurple}25`,
201
201
  },
202
202
  ]}>
203
+ <NetworkIcons_1.SparkleIcon color={AppColors_1.AppColors.brandPurple} size={10}/>
203
204
  <react_native_1.Text style={[cardStyles.chipText, { color: AppColors_1.AppColors.brandPurple, fontFamily: AppFonts_1.AppFonts.interBold }]}>
204
- {userPropCount} {t('analytics.props')}
205
+ {userPropCount} {t('analytics.props')}
205
206
  </react_native_1.Text>
206
207
  </react_native_1.View>)}
207
208
 
@@ -42,138 +42,72 @@ const react_native_svg_1 = __importStar(require("react-native-svg"));
42
42
  const BrandSquareIcon = ({ size = 56 }) => {
43
43
  return (<react_native_svg_1.default width={size} height={size} viewBox="0 0 256 256" fill="none">
44
44
  <react_native_svg_1.Defs>
45
- <react_native_svg_1.LinearGradient id="tileSquare" x1="30" y1="30" x2="210" y2="222" gradientUnits="userSpaceOnUse">
46
- <react_native_svg_1.Stop offset="0" stopColor="#141B33"/>
47
- <react_native_svg_1.Stop offset="1" stopColor="#0A0E1C"/>
45
+ <react_native_svg_1.LinearGradient id="bs_tile" x1="0" y1="0" x2="256" y2="256" gradientUnits="userSpaceOnUse">
46
+ <react_native_svg_1.Stop offset="0" stopColor="#1E1B4B"/>
47
+ <react_native_svg_1.Stop offset="1" stopColor="#0F172A"/>
48
48
  </react_native_svg_1.LinearGradient>
49
- <react_native_svg_1.LinearGradient id="edgeSquare" x1="14" y1="22" x2="220" y2="228" gradientUnits="userSpaceOnUse">
50
- <react_native_svg_1.Stop offset="0" stopColor="#3A4E7A"/>
51
- <react_native_svg_1.Stop offset="1" stopColor="#1A2238"/>
49
+ <react_native_svg_1.LinearGradient id="bs_beam" x1="0" y1="0" x2="256" y2="256" gradientUnits="userSpaceOnUse">
50
+ <react_native_svg_1.Stop offset="0" stopColor="#818CF8"/>
51
+ <react_native_svg_1.Stop offset="0.5" stopColor="#A855F7"/>
52
+ <react_native_svg_1.Stop offset="1" stopColor="#EC4899"/>
52
53
  </react_native_svg_1.LinearGradient>
53
- <react_native_svg_1.LinearGradient id="beamSquare" x1="70" y1="74" x2="194" y2="187" gradientUnits="userSpaceOnUse">
54
- <react_native_svg_1.Stop offset="0" stopColor="#5EEAD4"/>
55
- <react_native_svg_1.Stop offset="0.5" stopColor="#38BDF8"/>
56
- <react_native_svg_1.Stop offset="1" stopColor="#A78BFA"/>
54
+ <react_native_svg_1.LinearGradient id="bs_body" x1="0" y1="0" x2="0" y2="256" gradientUnits="userSpaceOnUse">
55
+ <react_native_svg_1.Stop offset="0" stopColor="#312E81"/>
56
+ <react_native_svg_1.Stop offset="1" stopColor="#1E1B4B"/>
57
57
  </react_native_svg_1.LinearGradient>
58
- <react_native_svg_1.RadialGradient id="haloSquare" cx="0.5" cy="0.45" r="0.55">
59
- <react_native_svg_1.Stop offset="0" stopColor="#38BDF8" stopOpacity={0.12}/>
60
- <react_native_svg_1.Stop offset="1" stopColor="#38BDF8" stopOpacity={0}/>
58
+ <react_native_svg_1.RadialGradient id="bs_iris" cx="40%" cy="40%" r="60%">
59
+ <react_native_svg_1.Stop offset="0" stopColor="#FDE047"/>
60
+ <react_native_svg_1.Stop offset="0.7" stopColor="#F59E0B"/>
61
+ <react_native_svg_1.Stop offset="1" stopColor="#D97706"/>
61
62
  </react_native_svg_1.RadialGradient>
62
- <react_native_svg_1.LinearGradient id="owlbodySquare" x1="78" y1="60" x2="178" y2="186" gradientUnits="userSpaceOnUse">
63
- <react_native_svg_1.Stop offset="0" stopColor="#202E55"/>
64
- <react_native_svg_1.Stop offset="1" stopColor="#10182F"/>
65
- </react_native_svg_1.LinearGradient>
66
- <react_native_svg_1.LinearGradient id="beakSquare" x1="120" y1="151" x2="136" y2="168" gradientUnits="userSpaceOnUse">
67
- <react_native_svg_1.Stop offset="0" stopColor="#FCD34D"/>
68
- <react_native_svg_1.Stop offset="1" stopColor="#FB923C"/>
69
- </react_native_svg_1.LinearGradient>
70
- <react_native_svg_1.RadialGradient id="irisSquare" cx="0.42" cy="0.38" r="0.72">
71
- <react_native_svg_1.Stop offset="0" stopColor="#FDE68A"/>
72
- <react_native_svg_1.Stop offset="0.5" stopColor="#FBBF24"/>
73
- <react_native_svg_1.Stop offset="1" stopColor="#F59E0B"/>
74
- </react_native_svg_1.RadialGradient>
75
- <react_native_svg_1.RadialGradient id="blushSquare" cx="0.5" cy="0.5" r="0.5">
76
- <react_native_svg_1.Stop offset="0" stopColor="#FB7185" stopOpacity={0.5}/>
77
- <react_native_svg_1.Stop offset="1" stopColor="#FB7185" stopOpacity={0}/>
78
- </react_native_svg_1.RadialGradient>
79
- <react_native_svg_1.LinearGradient id="wingSquare" x1="70" y1="120" x2="190" y2="206" gradientUnits="userSpaceOnUse">
80
- <react_native_svg_1.Stop offset="0" stopColor="#1A2545"/>
81
- <react_native_svg_1.Stop offset="1" stopColor="#0E1530"/>
82
- </react_native_svg_1.LinearGradient>
83
- <react_native_svg_1.LinearGradient id="faceplateSquare" x1="70" y1="72" x2="186" y2="152" gradientUnits="userSpaceOnUse">
84
- <react_native_svg_1.Stop offset="0" stopColor="#35497E"/>
85
- <react_native_svg_1.Stop offset="1" stopColor="#1E2D4D"/>
86
- </react_native_svg_1.LinearGradient>
87
- <react_native_svg_1.RadialGradient id="lensglassSquare" cx="0.4" cy="0.32" r="0.75">
88
- <react_native_svg_1.Stop offset="0" stopColor="#7DE8FF" stopOpacity={0.22}/>
89
- <react_native_svg_1.Stop offset="0.7" stopColor="#7DE8FF" stopOpacity={0.05}/>
90
- <react_native_svg_1.Stop offset="1" stopColor="#7DE8FF" stopOpacity={0}/>
91
- </react_native_svg_1.RadialGradient>
92
- <react_native_svg_1.LinearGradient id="bellySquare" x1="94" y1="126" x2="162" y2="212" gradientUnits="userSpaceOnUse">
93
- <react_native_svg_1.Stop offset="0" stopColor="#33477A"/>
94
- <react_native_svg_1.Stop offset="1" stopColor="#1D2B53"/>
63
+ <react_native_svg_1.LinearGradient id="bs_beak" x1="0" y1="0" x2="0" y2="20" gradientUnits="userSpaceOnUse">
64
+ <react_native_svg_1.Stop offset="0" stopColor="#FBBF24"/>
65
+ <react_native_svg_1.Stop offset="1" stopColor="#F97316"/>
95
66
  </react_native_svg_1.LinearGradient>
96
67
  </react_native_svg_1.Defs>
97
- <react_native_svg_1.Rect x={8} y={8} width={240} height={240} rx={58} fill="url(#tileSquare)"/>
98
- <react_native_svg_1.Rect x={8.6} y={8.6} width={238.8} height={238.8} rx={57.4} fill="none" stroke="url(#edgeSquare)" strokeOpacity={0.6} strokeWidth={1.2}/>
99
- <react_native_svg_1.Circle cx={128} cy={128} r={104} fill="url(#haloSquare)"/>
100
- <react_native_svg_1.G transform="translate(128 128) scale(1.16) translate(-128 -134)">
101
- {/* wing 1 */}
102
- <react_native_svg_1.Path d="M74 124 C58 154 60 190 86 204 C79 176 77 148 88 126 Z" fill="url(#wingSquare)" stroke="url(#beamSquare)" strokeWidth={2.5} strokeOpacity={0.45}/>
103
- {/* wing 2 */}
104
- <react_native_svg_1.Path d="M182 124 C198 154 196 190 170 204 C177 176 179 148 168 126 Z" fill="url(#wingSquare)" stroke="url(#beamSquare)" strokeWidth={2.5} strokeOpacity={0.45}/>
105
- {/* body */}
106
- <react_native_svg_1.Path d="M62 150 C58 104 70 70 90 58 L98 42 L116 62 Q128 57 140 62 L158 42 L166 58 C186 70 198 104 194 150 C198 180 184 204 152 212 C140 216 116 216 104 212 C72 204 58 180 62 150 Z" fill="url(#owlbodySquare)" stroke="url(#beamSquare)" strokeWidth={4} strokeLinejoin="round"/>
107
-
108
- {/* inner-ear shadows */}
109
- <react_native_svg_1.Path d="M99 48 L114 62 L104 63 L98 55 Z" fill="#080F22" opacity={0.5}/>
110
- <react_native_svg_1.Path d="M157 48 L142 62 L152 63 L158 55 Z" fill="#080F22" opacity={0.5}/>
111
-
112
- {/* wing feather lines */}
113
- <react_native_svg_1.G stroke="#22325A" strokeWidth={2.2} fill="none" strokeLinecap="round" opacity={0.75}>
114
- <react_native_svg_1.Path d="M80 138 q-5 26 3 50"/>
115
- <react_native_svg_1.Path d="M90 134 q-4 26 3 48"/>
116
- <react_native_svg_1.Path d="M176 138 q5 26 -3 50"/>
117
- <react_native_svg_1.Path d="M166 134 q4 26 -3 48"/>
118
- </react_native_svg_1.G>
119
68
 
120
- {/* belly plate */}
121
- <react_native_svg_1.Path d="M128 126 C151 126 164 148 162 174 C160 198 146 212 128 212 C110 212 96 198 94 174 C92 148 105 126 128 126 Z" fill="url(#bellySquare)"/>
69
+ {/* Rounded App Tile Background */}
70
+ <react_native_svg_1.Rect x="8" y="8" width="240" height="240" rx="54" fill="url(#bs_tile)"/>
71
+ <react_native_svg_1.Rect x="8" y="8" width="240" height="240" rx="54" fill="none" stroke="url(#bs_beam)" strokeWidth="3" strokeOpacity={0.4}/>
122
72
 
123
- {/* belly feather scallops */}
124
- <react_native_svg_1.G stroke="#3E588C" strokeWidth={2.3} fill="none" strokeLinecap="round" opacity={0.4}>
125
- <react_native_svg_1.Path d="M110 154 Q118 162 126 154"/>
126
- <react_native_svg_1.Path d="M126 154 Q134 162 142 154"/>
127
- <react_native_svg_1.Path d="M142 154 Q150 162 158 154"/>
128
- <react_native_svg_1.Path d="M102 172 Q110 180 118 172"/>
129
- <react_native_svg_1.Path d="M150 172 Q158 180 166 172"/>
130
- <react_native_svg_1.Path d="M112 190 Q120 198 128 190"/>
131
- <react_native_svg_1.Path d="M128 190 Q136 198 144 190"/>
132
- </react_native_svg_1.G>
73
+ {/* Owl Outer Body Contour */}
74
+ <react_native_svg_1.Path d="M64 148 C60 102 72 68 92 56 L100 40 L118 60 Q128 55 138 60 L156 40 L164 56 C184 68 196 102 192 148 C196 178 182 202 150 210 C138 214 118 214 106 210 C74 202 60 178 64 148 Z" fill="url(#bs_body)" stroke="url(#bs_beam)" strokeWidth="4" strokeLinejoin="round"/>
133
75
 
134
- {/* developer chest screen + code emblem */}
135
- <react_native_svg_1.Rect x={107} y={161} width={42} height={32} rx={9} fill="#0C1426" stroke="url(#beamSquare)" strokeWidth={2} strokeOpacity={0.7}/>
136
- <react_native_svg_1.G stroke="#8FD0EC" strokeWidth={3} strokeLinecap="round" strokeLinejoin="round" fill="none">
137
- <react_native_svg_1.Path d="M122 170 L115 177 L122 184"/>
138
- <react_native_svg_1.Path d="M134 170 L141 177 L134 184"/>
139
- <react_native_svg_1.Path d="M130 168 L126 186"/>
140
- </react_native_svg_1.G>
76
+ {/* Wings */}
77
+ <react_native_svg_1.Path d="M74 124 C58 154 60 190 86 204 C79 176 77 148 88 126 Z" fill="#1E1B4B" stroke="#818CF8" strokeWidth="2.5" strokeOpacity={0.6}/>
78
+ <react_native_svg_1.Path d="M182 124 C198 154 196 190 170 204 C177 176 179 148 168 126 Z" fill="#1E1B4B" stroke="#818CF8" strokeWidth="2.5" strokeOpacity={0.6}/>
141
79
 
142
- {/* facial disc */}
143
- <react_native_svg_1.Path d="M128 92 C148 70 186 78 186 108 C186 134 160 152 128 152 C96 152 70 134 70 108 C70 78 108 70 128 92 Z" fill="url(#faceplateSquare)" stroke="#52709E" strokeWidth={2.6} strokeOpacity={0.7}/>
144
- {/* facial-disc centre ridge */}
145
- <react_native_svg_1.Path d="M128 96 L128 120" stroke="#52709E" strokeWidth={2} strokeLinecap="round" strokeOpacity={0.45}/>
80
+ {/* Belly Screen Plate */}
81
+ <react_native_svg_1.Rect x="105" y="160" width="46" height="34" rx="8" fill="#0B0F19" stroke="url(#bs_beam)" strokeWidth="2"/>
82
+ {/* Code Emblem on Chest */}
83
+ <react_native_svg_1.G stroke="#A5B4FC" strokeWidth="2.8" strokeLinecap="round" strokeLinejoin="round" fill="none">
84
+ <react_native_svg_1.Path d="M120 171 L114 177 L120 183"/>
85
+ <react_native_svg_1.Path d="M136 171 L142 177 L136 183"/>
86
+ <react_native_svg_1.Path d="M130 169 L126 185" stroke="#EC4899"/>
87
+ </react_native_svg_1.G>
146
88
 
147
- {/* feet */}
148
- <react_native_svg_1.G stroke="url(#beakSquare)" strokeWidth={5} strokeLinecap="round" fill="none">
149
- <react_native_svg_1.Path d="M111 209 L105 224 M111 209 L111 226 M111 209 L117 224"/>
150
- <react_native_svg_1.Path d="M145 209 L139 224 M145 209 L145 226 M145 209 L151 224"/>
151
- </react_native_svg_1.G>
89
+ {/* Facial Disc & Mask */}
90
+ <react_native_svg_1.Path d="M128 92 C148 70 186 78 186 108 C186 134 160 152 128 152 C96 152 70 134 70 108 C70 78 108 70 128 92 Z" fill="#2E1065" stroke="#818CF8" strokeWidth="2" strokeOpacity={0.6}/>
152
91
 
153
- {/* normal eye: big cute yellow iris, dark pupil, sparkles */}
154
- <react_native_svg_1.Circle cx={153} cy={107} r={17} fill="url(#irisSquare)" stroke="#1A1205" strokeWidth={2.2}/>
155
- <react_native_svg_1.Circle cx={153} cy={108} r={8.2} fill="#0A0E18"/>
156
- <react_native_svg_1.Circle cx={156.2} cy={104} r={3.1} fill="#ffffff" opacity={0.95}/>
157
- <react_native_svg_1.Circle cx={149.6} cy={111} r={1.6} fill="#ffffff" opacity={0.7}/>
92
+ {/* Right Eye (Normal Cute Eye) */}
93
+ <react_native_svg_1.Circle cx="154" cy="108" r="17" fill="url(#bs_iris)" stroke="#0F172A" strokeWidth="2"/>
94
+ <react_native_svg_1.Circle cx="154" cy="108" r="8.5" fill="#0F172A"/>
95
+ <react_native_svg_1.Circle cx="157" cy="105" r="3" fill="#FFFFFF"/>
96
+ <react_native_svg_1.Circle cx="151" cy="111" r="1.5" fill="#FFFFFF" opacity={0.8}/>
158
97
 
159
- {/* beak */}
160
- <react_native_svg_1.Path d="M123.5 123 Q128 121 132.5 123 Q131 132 128 134.5 Q125 132 123.5 123 Z" fill="url(#beakSquare)"/>
98
+ {/* Left Eye (Diagnostic Magnifier Lens) */}
99
+ <react_native_svg_1.Circle cx="96" cy="104" r="20" fill="url(#bs_iris)" stroke="#0F172A" strokeWidth="2"/>
100
+ <react_native_svg_1.Circle cx="96" cy="104" r="10" fill="#0F172A"/>
101
+ <react_native_svg_1.Circle cx="99.5" cy="100.5" r="3.5" fill="#FFFFFF"/>
102
+ <react_native_svg_1.Circle cx="92" cy="107" r="1.8" fill="#FFFFFF" opacity={0.8}/>
161
103
 
162
- {/* magnifier held to the big (debug) eye */}
163
- <react_native_svg_1.Circle cx={95} cy={103} r={20} fill="url(#irisSquare)" stroke="#1A1205" strokeWidth={2.6}/>
164
- <react_native_svg_1.Circle cx={95} cy={104} r={10} fill="#0A0E18"/>
165
- <react_native_svg_1.Circle cx={98.6} cy={100} r={3.4} fill="#ffffff" opacity={0.95}/>
166
- <react_native_svg_1.Circle cx={91} cy={107} r={1.8} fill="#ffffff" opacity={0.7}/>
167
- <react_native_svg_1.Circle cx={95} cy={103} r={28} fill="url(#lensglassSquare)"/>
168
- <react_native_svg_1.Path d="M77 87 A28 28 0 0 1 106 79" fill="none" stroke="#ffffff" strokeWidth={4} strokeLinecap="round" strokeOpacity={0.5}/>
169
- <react_native_svg_1.Line x1={75} y1={123} x2={54} y2={147} stroke="#0A0F1C" strokeWidth={14} strokeLinecap="round"/>
170
- <react_native_svg_1.Line x1={75} y1={123} x2={54} y2={147} stroke="url(#beamSquare)" strokeWidth={8.5} strokeLinecap="round"/>
171
- <react_native_svg_1.Circle cx={95} cy={103} r={28} fill="none" stroke="url(#beamSquare)" strokeWidth={7}/>
104
+ {/* Magnifier Glass Ring & Handle */}
105
+ <react_native_svg_1.Line x1="76" y1="124" x2="55" y2="148" stroke="#0F172A" strokeWidth="12" strokeLinecap="round"/>
106
+ <react_native_svg_1.Line x1="76" y1="124" x2="55" y2="148" stroke="url(#bs_beam)" strokeWidth="7" strokeLinecap="round"/>
107
+ <react_native_svg_1.Circle cx="96" cy="104" r="28" fill="#38BDF8" fillOpacity={0.12} stroke="url(#bs_beam)" strokeWidth="6"/>
172
108
 
173
- {/* rosy cheeks */}
174
- <react_native_svg_1.Ellipse cx={83} cy={127} rx={9} ry={6} fill="url(#blushSquare)"/>
175
- <react_native_svg_1.Ellipse cx={167} cy={122} rx={9} ry={6} fill="url(#blushSquare)"/>
176
- </react_native_svg_1.G>
109
+ {/* Beak */}
110
+ <react_native_svg_1.Path d="M123.5 123 Q128 121 132.5 123 Q131 132 128 134.5 Q125 132 123.5 123 Z" fill="url(#bs_beak)"/>
177
111
  </react_native_svg_1.default>);
178
112
  };
179
113
  exports.BrandSquareIcon = BrandSquareIcon;
@@ -78,7 +78,7 @@ const DiffViewer = react_1.default.memo(({ oldData, newData, forceOpen, }) => {
78
78
  return (<react_native_1.Text key={i} selectable={true} style={styles_1.default.diffChanged}>
79
79
  ~ <react_native_1.Text style={styles_1.default.codeKey}>{key}</react_native_1.Text>
80
80
  {JSON.stringify(d.oldVal)}{' '}
81
- <react_native_1.Text style={{ color: AppColors_1.AppColors.grayTextWeak }}>➔</react_native_1.Text>{' '}
81
+ <react_native_1.Text style={{ color: AppColors_1.AppColors.grayTextWeak }}>→</react_native_1.Text>{' '}
82
82
  {JSON.stringify(d.newVal)}
83
83
  </react_native_1.Text>);
84
84
  })}
@@ -1025,6 +1025,28 @@ const BundleTab = react_1.default.memo(() => {
1025
1025
  {t('bundle.liveAnalysisUnavailableSub')}
1026
1026
  </react_native_1.Text>
1027
1027
  </react_native_1.View>
1028
+ <TouchableScale_1.default onPress={refreshAnalysis} style={{
1029
+ backgroundColor: `${AppColors_1.AppColors.amber700}18`,
1030
+ paddingHorizontal: 8,
1031
+ paddingVertical: 5,
1032
+ borderRadius: 6,
1033
+ borderWidth: 1,
1034
+ borderColor: `${AppColors_1.AppColors.amber700}30`,
1035
+ flexDirection: 'row',
1036
+ alignItems: 'center',
1037
+ gap: 4,
1038
+ }}>
1039
+ {isAnalyzing ? (<react_native_1.ActivityIndicator size="small" color={AppColors_1.AppColors.amber700}/>) : (<>
1040
+ <NetworkIcons_1.RefreshCcwIcon color={AppColors_1.AppColors.amber700} size={11}/>
1041
+ <react_native_1.Text style={{
1042
+ fontSize: 10.5,
1043
+ fontFamily: AppFonts_1.AppFonts.interBold,
1044
+ color: AppColors_1.AppColors.amber700,
1045
+ }}>
1046
+ Retry
1047
+ </react_native_1.Text>
1048
+ </>)}
1049
+ </TouchableScale_1.default>
1028
1050
  </react_native_1.View>
1029
1051
  </react_native_1.View>)}
1030
1052
 
@@ -0,0 +1,3 @@
1
+ import React from 'react';
2
+ export declare const DeviceInfoTab: React.MemoExoticComponent<() => React.JSX.Element>;
3
+ export default DeviceInfoTab;