react-native-inapp-inspector 1.1.13 → 1.1.15

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 (250) hide show
  1. package/README.md +9 -34
  2. package/dist/commonjs/assets/svgAssets.d.ts +3 -0
  3. package/dist/commonjs/assets/svgAssets.js +17 -0
  4. package/dist/commonjs/components/AnalyticsEventCard.d.ts +1 -14
  5. package/dist/commonjs/components/AnalyticsEventCard.js +120 -50
  6. package/dist/commonjs/components/AnalyticsGraph.d.ts +2 -6
  7. package/dist/commonjs/components/AnalyticsGraph.js +8 -8
  8. package/dist/commonjs/components/AnalyticsTabView.d.ts +15 -0
  9. package/dist/commonjs/components/AnalyticsTabView.js +157 -0
  10. package/dist/commonjs/components/AnimatedEntrance.d.ts +1 -1
  11. package/dist/commonjs/components/AnimatedEntrance.js +2 -2
  12. package/dist/commonjs/components/ApiDetailView.d.ts +22 -0
  13. package/dist/commonjs/components/ApiDetailView.js +304 -0
  14. package/dist/commonjs/components/ApisTabView.d.ts +33 -0
  15. package/dist/commonjs/components/ApisTabView.js +235 -0
  16. package/dist/commonjs/components/CodeSnippet.d.ts +1 -5
  17. package/dist/commonjs/components/CodeSnippet.js +34 -34
  18. package/dist/commonjs/components/ConsoleLogCard.d.ts +1 -8
  19. package/dist/commonjs/components/ConsoleLogCard.js +262 -442
  20. package/dist/commonjs/components/ConsoleLogDetailView.d.ts +9 -0
  21. package/dist/commonjs/components/ConsoleLogDetailView.js +278 -0
  22. package/dist/commonjs/components/ConsoleLogsTabView.d.ts +24 -0
  23. package/dist/commonjs/components/ConsoleLogsTabView.js +354 -0
  24. package/dist/commonjs/components/DiffViewer.js +4 -2
  25. package/dist/commonjs/components/DomainHeader.js +66 -41
  26. package/dist/commonjs/components/EmptyState.d.ts +2 -2
  27. package/dist/commonjs/components/EmptyState.js +2 -2
  28. package/dist/commonjs/components/EndOfListFooter.d.ts +8 -0
  29. package/dist/commonjs/components/EndOfListFooter.js +90 -0
  30. package/dist/commonjs/components/ErrorBoundary.d.ts +5 -14
  31. package/dist/commonjs/components/ErrorBoundary.js +28 -28
  32. package/dist/commonjs/components/FloatingBubble.d.ts +14 -0
  33. package/dist/commonjs/components/FloatingBubble.js +75 -0
  34. package/dist/commonjs/components/HeadersSection.js +5 -3
  35. package/dist/commonjs/components/HighlightText.d.ts +1 -1
  36. package/dist/commonjs/components/HighlightText.js +5 -7
  37. package/dist/commonjs/components/Inspector/AnalyticsTab.d.ts +3 -0
  38. package/dist/commonjs/components/Inspector/AnalyticsTab.js +232 -0
  39. package/dist/commonjs/components/Inspector/ConsoleTab.d.ts +3 -0
  40. package/dist/commonjs/components/Inspector/ConsoleTab.js +410 -0
  41. package/dist/commonjs/components/Inspector/FabLauncher.d.ts +3 -0
  42. package/dist/commonjs/components/Inspector/FabLauncher.js +54 -0
  43. package/dist/commonjs/components/Inspector/InsightsDashboard.d.ts +3 -0
  44. package/dist/commonjs/components/Inspector/InsightsDashboard.js +619 -0
  45. package/dist/commonjs/components/Inspector/InspectorContext.d.ts +5 -0
  46. package/dist/commonjs/components/Inspector/InspectorContext.js +18 -0
  47. package/dist/commonjs/components/Inspector/InspectorHeader.d.ts +3 -0
  48. package/dist/commonjs/components/Inspector/InspectorHeader.js +452 -0
  49. package/dist/commonjs/components/Inspector/LogDetail.d.ts +3 -0
  50. package/dist/commonjs/components/Inspector/LogDetail.js +963 -0
  51. package/dist/commonjs/components/Inspector/MainScreen.d.ts +3 -0
  52. package/dist/commonjs/components/Inspector/MainScreen.js +68 -0
  53. package/dist/commonjs/components/Inspector/NavigationTracker.d.ts +3 -0
  54. package/dist/commonjs/components/Inspector/NavigationTracker.js +12 -0
  55. package/dist/commonjs/components/Inspector/NetworkDetail.d.ts +3 -0
  56. package/dist/commonjs/components/Inspector/NetworkDetail.js +405 -0
  57. package/dist/commonjs/components/Inspector/NetworkTab.d.ts +3 -0
  58. package/dist/commonjs/components/Inspector/NetworkTab.js +281 -0
  59. package/dist/commonjs/components/Inspector/ReduxTab.d.ts +3 -0
  60. package/dist/commonjs/components/Inspector/ReduxTab.js +75 -0
  61. package/dist/commonjs/components/Inspector/SettingsPanel.d.ts +3 -0
  62. package/dist/commonjs/components/Inspector/SettingsPanel.js +1476 -0
  63. package/dist/commonjs/components/Inspector/TabBar.d.ts +3 -0
  64. package/dist/commonjs/components/Inspector/TabBar.js +95 -0
  65. package/dist/commonjs/components/Inspector/WebViewTab.d.ts +3 -0
  66. package/dist/commonjs/components/Inspector/WebViewTab.js +757 -0
  67. package/dist/commonjs/components/InspectorHeader.d.ts +19 -0
  68. package/dist/commonjs/components/InspectorHeader.js +329 -0
  69. package/dist/commonjs/components/InspectorTabBar.d.ts +16 -0
  70. package/dist/commonjs/components/InspectorTabBar.js +90 -0
  71. package/dist/commonjs/components/JsonViewer.d.ts +4 -1
  72. package/dist/commonjs/components/JsonViewer.js +110 -171
  73. package/dist/commonjs/components/LogCard.js +109 -86
  74. package/dist/commonjs/components/MetaAccordion.d.ts +1 -10
  75. package/dist/commonjs/components/MetaAccordion.js +23 -21
  76. package/dist/commonjs/components/NavigationTracker.d.ts +7 -0
  77. package/dist/commonjs/components/NavigationTracker.js +76 -0
  78. package/dist/commonjs/components/NetworkIcons.d.ts +6 -0
  79. package/dist/commonjs/components/NetworkIcons.js +54 -8
  80. package/dist/commonjs/components/ReduxTabView.d.ts +9 -0
  81. package/dist/commonjs/components/ReduxTabView.js +56 -0
  82. package/dist/commonjs/components/ReduxTreeView.js +241 -200
  83. package/dist/commonjs/components/SegmentedTabs.d.ts +15 -0
  84. package/dist/commonjs/components/SegmentedTabs.js +52 -0
  85. package/dist/commonjs/components/SettingsView.d.ts +13 -0
  86. package/dist/commonjs/components/SettingsView.js +328 -0
  87. package/dist/commonjs/components/TouchableScale.d.ts +2 -2
  88. package/dist/commonjs/components/TouchableScale.js +2 -2
  89. package/dist/commonjs/components/TreeNode.js +2 -2
  90. package/dist/commonjs/constants/index.js +1 -12
  91. package/dist/commonjs/constants/version.d.ts +1 -1
  92. package/dist/commonjs/constants/version.js +1 -1
  93. package/dist/commonjs/customHooks/analyticsLogger.d.ts +8 -0
  94. package/dist/commonjs/customHooks/analyticsLogger.js +42 -1
  95. package/dist/commonjs/customHooks/consoleLogger.js +137 -13
  96. package/dist/commonjs/customHooks/networkLogger.d.ts +0 -1
  97. package/dist/commonjs/customHooks/networkLogger.js +0 -1
  98. package/dist/commonjs/customHooks/reduxLogger.d.ts +2 -9
  99. package/dist/commonjs/enums/index.d.ts +39 -0
  100. package/dist/commonjs/enums/index.js +50 -0
  101. package/dist/commonjs/helpers/index.d.ts +27 -1
  102. package/dist/commonjs/helpers/index.js +187 -12
  103. package/dist/commonjs/helpers/settingsStore.d.ts +2 -24
  104. package/dist/commonjs/i18n/en.json +144 -0
  105. package/dist/commonjs/i18n/index.d.ts +2 -0
  106. package/dist/commonjs/i18n/index.js +27 -0
  107. package/dist/commonjs/i18n/locales/en.json +314 -0
  108. package/dist/commonjs/index.d.ts +2 -3
  109. package/dist/commonjs/index.js +207 -4927
  110. package/dist/commonjs/styles/AppColors.d.ts +148 -0
  111. package/dist/commonjs/styles/AppColors.js +176 -0
  112. package/dist/commonjs/styles/common.d.ts +3 -0
  113. package/dist/commonjs/styles/common.js +201 -0
  114. package/dist/commonjs/styles/index.d.ts +219 -435
  115. package/dist/commonjs/styles/index.js +312 -488
  116. package/dist/commonjs/types/enums.d.ts +9 -0
  117. package/dist/commonjs/types/enums.js +4 -0
  118. package/dist/commonjs/types/index.d.ts +4 -111
  119. package/dist/commonjs/types/index.js +16 -0
  120. package/dist/commonjs/types/interfaces.d.ts +337 -0
  121. package/dist/commonjs/types/interfaces.js +2 -0
  122. package/dist/esm/assets/svgAssets.d.ts +3 -0
  123. package/dist/esm/assets/svgAssets.js +14 -0
  124. package/dist/esm/components/AnalyticsEventCard.d.ts +1 -14
  125. package/dist/esm/components/AnalyticsEventCard.js +118 -48
  126. package/dist/esm/components/AnalyticsGraph.d.ts +2 -6
  127. package/dist/esm/components/AnalyticsGraph.js +8 -8
  128. package/dist/esm/components/AnalyticsTabView.d.ts +15 -0
  129. package/dist/esm/components/AnalyticsTabView.js +151 -0
  130. package/dist/esm/components/AnimatedEntrance.d.ts +1 -1
  131. package/dist/esm/components/AnimatedEntrance.js +2 -2
  132. package/dist/esm/components/ApiDetailView.d.ts +22 -0
  133. package/dist/esm/components/ApiDetailView.js +264 -0
  134. package/dist/esm/components/ApisTabView.d.ts +33 -0
  135. package/dist/esm/components/ApisTabView.js +196 -0
  136. package/dist/esm/components/CodeSnippet.d.ts +1 -5
  137. package/dist/esm/components/CodeSnippet.js +34 -34
  138. package/dist/esm/components/ConsoleLogCard.d.ts +1 -8
  139. package/dist/esm/components/ConsoleLogCard.js +262 -409
  140. package/dist/esm/components/ConsoleLogDetailView.d.ts +9 -0
  141. package/dist/esm/components/ConsoleLogDetailView.js +271 -0
  142. package/dist/esm/components/ConsoleLogsTabView.d.ts +24 -0
  143. package/dist/esm/components/ConsoleLogsTabView.js +348 -0
  144. package/dist/esm/components/DiffViewer.js +4 -2
  145. package/dist/esm/components/DomainHeader.js +66 -41
  146. package/dist/esm/components/EmptyState.d.ts +2 -2
  147. package/dist/esm/components/EmptyState.js +2 -2
  148. package/dist/esm/components/EndOfListFooter.d.ts +8 -0
  149. package/dist/esm/components/EndOfListFooter.js +83 -0
  150. package/dist/esm/components/ErrorBoundary.d.ts +5 -14
  151. package/dist/esm/components/ErrorBoundary.js +29 -29
  152. package/dist/esm/components/FloatingBubble.d.ts +14 -0
  153. package/dist/esm/components/FloatingBubble.js +68 -0
  154. package/dist/esm/components/HeadersSection.js +5 -3
  155. package/dist/esm/components/HighlightText.d.ts +1 -1
  156. package/dist/esm/components/HighlightText.js +5 -7
  157. package/dist/esm/components/Inspector/AnalyticsTab.d.ts +3 -0
  158. package/dist/esm/components/Inspector/AnalyticsTab.js +194 -0
  159. package/dist/esm/components/Inspector/ConsoleTab.d.ts +3 -0
  160. package/dist/esm/components/Inspector/ConsoleTab.js +372 -0
  161. package/dist/esm/components/Inspector/FabLauncher.d.ts +3 -0
  162. package/dist/esm/components/Inspector/FabLauncher.js +49 -0
  163. package/dist/esm/components/Inspector/InsightsDashboard.d.ts +3 -0
  164. package/dist/esm/components/Inspector/InsightsDashboard.js +614 -0
  165. package/dist/esm/components/Inspector/InspectorContext.d.ts +5 -0
  166. package/dist/esm/components/Inspector/InspectorContext.js +13 -0
  167. package/dist/esm/components/Inspector/InspectorHeader.d.ts +3 -0
  168. package/dist/esm/components/Inspector/InspectorHeader.js +447 -0
  169. package/dist/esm/components/Inspector/LogDetail.d.ts +3 -0
  170. package/dist/esm/components/Inspector/LogDetail.js +925 -0
  171. package/dist/esm/components/Inspector/MainScreen.d.ts +3 -0
  172. package/dist/esm/components/Inspector/MainScreen.js +63 -0
  173. package/dist/esm/components/Inspector/NavigationTracker.d.ts +3 -0
  174. package/dist/esm/components/Inspector/NavigationTracker.js +10 -0
  175. package/dist/esm/components/Inspector/NetworkDetail.d.ts +3 -0
  176. package/dist/esm/components/Inspector/NetworkDetail.js +367 -0
  177. package/dist/esm/components/Inspector/NetworkTab.d.ts +3 -0
  178. package/dist/esm/components/Inspector/NetworkTab.js +243 -0
  179. package/dist/esm/components/Inspector/ReduxTab.d.ts +3 -0
  180. package/dist/esm/components/Inspector/ReduxTab.js +70 -0
  181. package/dist/esm/components/Inspector/SettingsPanel.d.ts +3 -0
  182. package/dist/esm/components/Inspector/SettingsPanel.js +1438 -0
  183. package/dist/esm/components/Inspector/TabBar.d.ts +3 -0
  184. package/dist/esm/components/Inspector/TabBar.js +90 -0
  185. package/dist/esm/components/Inspector/WebViewTab.d.ts +3 -0
  186. package/dist/esm/components/Inspector/WebViewTab.js +752 -0
  187. package/dist/esm/components/InspectorHeader.d.ts +19 -0
  188. package/dist/esm/components/InspectorHeader.js +323 -0
  189. package/dist/esm/components/InspectorTabBar.d.ts +16 -0
  190. package/dist/esm/components/InspectorTabBar.js +84 -0
  191. package/dist/esm/components/JsonViewer.d.ts +4 -1
  192. package/dist/esm/components/JsonViewer.js +111 -172
  193. package/dist/esm/components/LogCard.js +111 -88
  194. package/dist/esm/components/MetaAccordion.d.ts +1 -10
  195. package/dist/esm/components/MetaAccordion.js +23 -21
  196. package/dist/esm/components/NavigationTracker.d.ts +7 -0
  197. package/dist/esm/components/NavigationTracker.js +39 -0
  198. package/dist/esm/components/NetworkIcons.d.ts +6 -0
  199. package/dist/esm/components/NetworkIcons.js +46 -6
  200. package/dist/esm/components/ReduxTabView.d.ts +9 -0
  201. package/dist/esm/components/ReduxTabView.js +50 -0
  202. package/dist/esm/components/ReduxTreeView.js +243 -202
  203. package/dist/esm/components/SegmentedTabs.d.ts +15 -0
  204. package/dist/esm/components/SegmentedTabs.js +47 -0
  205. package/dist/esm/components/SettingsView.d.ts +13 -0
  206. package/dist/esm/components/SettingsView.js +321 -0
  207. package/dist/esm/components/TouchableScale.d.ts +2 -2
  208. package/dist/esm/components/TouchableScale.js +2 -2
  209. package/dist/esm/components/TreeNode.js +2 -2
  210. package/dist/esm/constants/index.js +1 -12
  211. package/dist/esm/constants/version.d.ts +1 -1
  212. package/dist/esm/constants/version.js +1 -1
  213. package/dist/esm/customHooks/analyticsLogger.d.ts +8 -0
  214. package/dist/esm/customHooks/analyticsLogger.js +37 -0
  215. package/dist/esm/customHooks/consoleLogger.js +137 -13
  216. package/dist/esm/customHooks/networkLogger.d.ts +0 -1
  217. package/dist/esm/customHooks/networkLogger.js +0 -1
  218. package/dist/esm/customHooks/reduxLogger.d.ts +2 -9
  219. package/dist/esm/enums/index.d.ts +39 -0
  220. package/dist/esm/enums/index.js +47 -0
  221. package/dist/esm/helpers/index.d.ts +27 -1
  222. package/dist/esm/helpers/index.js +180 -11
  223. package/dist/esm/helpers/settingsStore.d.ts +2 -24
  224. package/dist/esm/i18n/en.json +144 -0
  225. package/dist/esm/i18n/index.d.ts +2 -0
  226. package/dist/esm/i18n/index.js +22 -0
  227. package/dist/esm/i18n/locales/en.json +314 -0
  228. package/dist/esm/index.d.ts +2 -3
  229. package/dist/esm/index.js +207 -4923
  230. package/dist/esm/styles/AppColors.d.ts +148 -0
  231. package/dist/esm/styles/AppColors.js +176 -0
  232. package/dist/esm/styles/common.d.ts +3 -0
  233. package/dist/esm/styles/common.js +197 -0
  234. package/dist/esm/styles/index.d.ts +219 -435
  235. package/dist/esm/styles/index.js +312 -488
  236. package/dist/esm/types/enums.d.ts +9 -0
  237. package/dist/esm/types/enums.js +3 -0
  238. package/dist/esm/types/index.d.ts +4 -111
  239. package/dist/esm/types/index.js +2 -1
  240. package/dist/esm/types/interfaces.d.ts +337 -0
  241. package/dist/esm/types/interfaces.js +1 -0
  242. package/example/App.tsx +88 -1
  243. package/example/android/app/build.gradle +29 -1
  244. package/example/android/app/src/main/java/com/example/MainApplication.kt +25 -0
  245. package/example/android/build.gradle +31 -4
  246. package/example/android/gradle/wrapper/gradle-wrapper.properties +1 -1
  247. package/example/android/gradle.properties +1 -0
  248. package/example/android/settings.gradle +20 -1
  249. package/example/package-lock.json +1 -1
  250. package/package.json +3 -1
@@ -33,10 +33,12 @@ var __importStar = (this && this.__importStar) || (function () {
33
33
  };
34
34
  })();
35
35
  Object.defineProperty(exports, "__esModule", { value: true });
36
- exports.toggleGlobalTheme = exports.getRawStyles = void 0;
36
+ exports.toggleGlobalTheme = exports.getRawStyles = exports.commonStyles = void 0;
37
37
  const react_native_1 = require("react-native");
38
38
  const AppColors_1 = __importStar(require("./AppColors"));
39
39
  const AppFonts_1 = require("./AppFonts");
40
+ const common_1 = __importStar(require("./common"));
41
+ exports.commonStyles = common_1.default;
40
42
  const getRawStyles = (colors) => ({
41
43
  header: {
42
44
  flexDirection: 'row',
@@ -45,7 +47,7 @@ const getRawStyles = (colors) => ({
45
47
  paddingVertical: 10,
46
48
  zIndex: 10,
47
49
  minHeight: 64,
48
- shadowColor: '#000000',
50
+ shadowColor: colors.black,
49
51
  shadowOffset: { width: 0, height: 2 },
50
52
  shadowOpacity: 0.08,
51
53
  shadowRadius: 4,
@@ -66,37 +68,6 @@ const getRawStyles = (colors) => ({
66
68
  letterSpacing: 0.3,
67
69
  paddingBottom: 4,
68
70
  },
69
- headerButtonGroup: {
70
- flexDirection: 'row',
71
- alignItems: 'center',
72
- backgroundColor: 'rgba(255, 255, 255, 0.1)',
73
- borderRadius: 10,
74
- padding: 3,
75
- borderWidth: 1,
76
- borderColor: 'rgba(255, 255, 255, 0.08)',
77
- },
78
- headerGroupButton: {
79
- flexDirection: 'row',
80
- alignItems: 'center',
81
- paddingHorizontal: 8,
82
- paddingVertical: 6,
83
- borderRadius: 8,
84
- gap: 4,
85
- },
86
- headerGroupButtonActive: {
87
- backgroundColor: 'rgba(255, 255, 255, 0.22)',
88
- shadowColor: '#000000',
89
- shadowOffset: { width: 0, height: 1 },
90
- shadowOpacity: 0.12,
91
- shadowRadius: 2,
92
- elevation: 2,
93
- },
94
- headerGroupButtonText: {
95
- fontFamily: AppFonts_1.AppFonts.interMedium,
96
- fontSize: 10.5,
97
- color: 'rgba(255, 255, 255, 0.65)',
98
- letterSpacing: 0.1,
99
- },
100
71
  headerDetailCenter: {
101
72
  alignItems: 'center',
102
73
  justifyContent: 'center',
@@ -112,7 +83,7 @@ const getRawStyles = (colors) => ({
112
83
  paddingHorizontal: 6,
113
84
  paddingVertical: 3,
114
85
  borderRadius: 6,
115
- shadowColor: '#000000',
86
+ shadowColor: colors.black,
116
87
  shadowOffset: { width: 0, height: 1 },
117
88
  shadowOpacity: 0.1,
118
89
  shadowRadius: 2,
@@ -141,7 +112,7 @@ const getRawStyles = (colors) => ({
141
112
  width: 7,
142
113
  height: 7,
143
114
  borderRadius: 3.5,
144
- shadowColor: '#000000',
115
+ shadowColor: colors.black,
145
116
  shadowOffset: { width: 0, height: 1 },
146
117
  shadowOpacity: 0.2,
147
118
  shadowRadius: 1,
@@ -157,14 +128,14 @@ const getRawStyles = (colors) => ({
157
128
  headerCountBadge: {
158
129
  flexDirection: 'row',
159
130
  alignItems: 'center',
160
- backgroundColor: 'rgba(0,0,0,0.2)',
131
+ backgroundColor: `${colors.black}33`,
161
132
  paddingHorizontal: 12,
162
133
  paddingVertical: 6,
163
134
  borderRadius: 16,
164
135
  gap: 6,
165
136
  borderWidth: 0.5,
166
- borderColor: 'rgba(255,255,255,0.2)',
167
- shadowColor: '#000000',
137
+ borderColor: `${colors.white}33`,
138
+ shadowColor: colors.black,
168
139
  shadowOffset: { width: 0, height: 1 },
169
140
  shadowOpacity: 0.1,
170
141
  shadowRadius: 2,
@@ -172,21 +143,10 @@ const getRawStyles = (colors) => ({
172
143
  },
173
144
  headerCountText: {
174
145
  fontFamily: AppFonts_1.AppFonts.interMedium,
175
- color: 'rgba(255,255,255,0.95)',
146
+ color: `${colors.white}F2`,
176
147
  fontSize: 12,
177
148
  letterSpacing: 0.2,
178
149
  },
179
- iconBtnMinimal: { padding: 6 },
180
- closeButtonSquare: {
181
- width: 32,
182
- height: 32,
183
- borderRadius: 8,
184
- backgroundColor: 'rgba(255, 255, 255, 0.15)',
185
- alignItems: 'center',
186
- justifyContent: 'center',
187
- borderWidth: 1,
188
- borderColor: 'rgba(255, 255, 255, 0.08)',
189
- },
190
150
  listContent: { paddingBottom: 12 },
191
151
  // #2 — scroll-to-top button, always shown at the bottom right.
192
152
  scrollTopBtn: {
@@ -199,7 +159,7 @@ const getRawStyles = (colors) => ({
199
159
  backgroundColor: colors.purple,
200
160
  alignItems: 'center',
201
161
  justifyContent: 'center',
202
- shadowColor: '#000000',
162
+ shadowColor: colors.black,
203
163
  shadowOffset: { width: 0, height: 3 },
204
164
  shadowOpacity: 0.25,
205
165
  shadowRadius: 5,
@@ -207,7 +167,16 @@ const getRawStyles = (colors) => ({
207
167
  zIndex: 50,
208
168
  },
209
169
  detailScroll: { flex: 1 },
210
- detailContent: { paddingHorizontal: 6, paddingTop: 8, paddingBottom: 20 },
170
+ closeButtonSquare: {
171
+ width: 32,
172
+ height: 32,
173
+ borderRadius: 8,
174
+ backgroundColor: `${colors.white}26`,
175
+ alignItems: 'center',
176
+ justifyContent: 'center',
177
+ borderWidth: 1,
178
+ borderColor: `${colors.white}14`,
179
+ },
211
180
  fabWrapper: {
212
181
  position: 'absolute',
213
182
  bottom: 180,
@@ -221,16 +190,6 @@ const getRawStyles = (colors) => ({
221
190
  shadowOpacity: 0.4,
222
191
  shadowRadius: 12,
223
192
  },
224
- fabIconContainer: {
225
- backgroundColor: '#FFFFFF',
226
- borderRadius: 28,
227
- width: 56,
228
- height: 56,
229
- borderWidth: 1.5,
230
- borderColor: colors.purple,
231
- alignItems: 'center',
232
- justifyContent: 'center',
233
- },
234
193
  fabPulseRing: {
235
194
  position: 'absolute',
236
195
  width: 60,
@@ -254,72 +213,21 @@ const getRawStyles = (colors) => ({
254
213
  height: 102,
255
214
  transform: [{ rotate: '25deg' }],
256
215
  },
257
- fab: {
258
- width: 56,
259
- height: 56,
260
- borderRadius: 28,
261
- alignItems: 'center',
262
- justifyContent: 'center',
263
- backgroundColor: colors.purple,
264
- shadowColor: colors.shadowColorString,
265
- shadowOffset: { width: 0, height: 6 },
266
- shadowOpacity: 0.35,
267
- shadowRadius: 10,
268
- elevation: 12,
269
- },
270
- fabText: {
271
- fontFamily: AppFonts_1.AppFonts.interBold,
272
- color: colors.primaryLight,
273
- fontSize: 14,
274
- },
275
- fabBadge: {
216
+ fabGreenDot: {
276
217
  position: 'absolute',
277
- top: -6,
278
- right: -6,
279
- minWidth: 24,
280
- height: 24,
281
- borderRadius: 12,
282
- alignItems: 'center',
283
- justifyContent: 'center',
284
- paddingHorizontal: 6,
285
- borderWidth: 2.5,
218
+ top: 2,
219
+ right: 2,
220
+ width: 12,
221
+ height: 12,
222
+ borderRadius: 6,
223
+ backgroundColor: colors.greenA400,
224
+ borderWidth: 2,
286
225
  borderColor: colors.primaryLight,
287
- shadowColor: colors.shadowColorString,
288
- shadowOffset: { width: 0, height: 2 },
226
+ shadowColor: colors.black,
227
+ shadowOffset: { width: 0, height: 1 },
289
228
  shadowOpacity: 0.2,
290
- shadowRadius: 3,
291
- elevation: 3,
292
- },
293
- fabBadgeNormal: { backgroundColor: colors.purple },
294
- fabBadgeError: { backgroundColor: colors.errorColor },
295
- fabBadgeText: {
296
- fontFamily: AppFonts_1.AppFonts.interBold,
297
- color: colors.primaryLight,
298
- fontSize: 11,
299
- },
300
- statBox: {
301
- flex: 1,
302
- alignItems: 'center',
303
- justifyContent: 'center',
304
- },
305
- statValue: {
306
- fontFamily: AppFonts_1.AppFonts.interBold,
307
- color: colors.primaryBlack,
308
- fontSize: 14,
309
- },
310
- statLabel: {
311
- fontFamily: AppFonts_1.AppFonts.interMedium,
312
- color: colors.grayTextWeak,
313
- fontSize: 10,
314
- marginTop: 4,
315
- textTransform: 'uppercase',
316
- letterSpacing: 0.5,
317
- },
318
- miniGraphWrap: {
319
- marginTop: 8,
320
- height: 16,
321
- alignItems: 'center',
322
- justifyContent: 'center',
229
+ shadowRadius: 1.5,
230
+ elevation: 2,
323
231
  },
324
232
  toolbarRow: {
325
233
  flexDirection: 'row',
@@ -335,12 +243,6 @@ const getRawStyles = (colors) => ({
335
243
  alignItems: 'center',
336
244
  gap: 10,
337
245
  },
338
- toolbarDivider: {
339
- width: 1,
340
- height: 20,
341
- backgroundColor: colors.dividerColor,
342
- marginHorizontal: 2,
343
- },
344
246
  toolbarBtn: {
345
247
  width: 34,
346
248
  height: 34,
@@ -350,7 +252,7 @@ const getRawStyles = (colors) => ({
350
252
  backgroundColor: colors.primaryLight,
351
253
  borderWidth: 1.5,
352
254
  borderColor: colors.grayBorderSecondary,
353
- shadowColor: '#000000',
255
+ shadowColor: colors.black,
354
256
  shadowOffset: { width: 0, height: 1 },
355
257
  shadowOpacity: 0.04,
356
258
  shadowRadius: 2,
@@ -399,17 +301,18 @@ const getRawStyles = (colors) => ({
399
301
  },
400
302
  statusFilterWrap: { marginRight: 6 },
401
303
  statusFilterChip: {
402
- paddingHorizontal: 10,
403
- height: 30,
404
- justifyContent: 'center',
304
+ flexDirection: 'row',
405
305
  alignItems: 'center',
306
+ paddingHorizontal: 9,
307
+ height: 32,
308
+ justifyContent: 'center',
406
309
  borderRadius: 24,
407
310
  borderWidth: 1.5,
408
311
  borderColor: colors.grayBorderSecondary,
409
312
  backgroundColor: colors.primaryLight,
410
- shadowColor: '#000000',
313
+ shadowColor: colors.black,
411
314
  shadowOffset: { width: 0, height: 1 },
412
- shadowOpacity: 0.03,
315
+ shadowOpacity: 0.04,
413
316
  shadowRadius: 2,
414
317
  elevation: 1,
415
318
  },
@@ -417,6 +320,29 @@ const getRawStyles = (colors) => ({
417
320
  borderColor: colors.purple,
418
321
  backgroundColor: colors.purpleShade50,
419
322
  },
323
+ filterCheckbox: {
324
+ width: 13,
325
+ height: 13,
326
+ borderRadius: 3,
327
+ borderWidth: 1.5,
328
+ borderColor: colors.grayBorderSecondary,
329
+ backgroundColor: colors.primaryLight,
330
+ alignItems: 'center',
331
+ justifyContent: 'center',
332
+ marginRight: 6,
333
+ },
334
+ filterCheckboxActive: {
335
+ borderColor: 'transparent',
336
+ },
337
+ filterChipIcon: {
338
+ marginRight: 5,
339
+ },
340
+ methodBadgeMini: {
341
+ width: 4.5,
342
+ height: 13,
343
+ borderRadius: 2,
344
+ marginRight: 6,
345
+ },
420
346
  statusFilterText: {
421
347
  fontFamily: AppFonts_1.AppFonts.interMedium,
422
348
  color: colors.grayText,
@@ -441,7 +367,7 @@ const getRawStyles = (colors) => ({
441
367
  paddingVertical: 4,
442
368
  borderWidth: 1.5,
443
369
  borderColor: colors.grayBorderSecondary,
444
- shadowColor: '#000000',
370
+ shadowColor: colors.black,
445
371
  shadowOffset: { width: 0, height: 1 },
446
372
  shadowOpacity: 0.04,
447
373
  shadowRadius: 2,
@@ -456,97 +382,84 @@ const getRawStyles = (colors) => ({
456
382
  fontSize: 14,
457
383
  },
458
384
  clearBtn: { padding: 4 },
459
- clearBtnText: {
460
- fontFamily: AppFonts_1.AppFonts.interRegular,
461
- color: colors.grayTextWeak,
462
- fontSize: 14,
463
- },
464
- menuDropdown: {
465
- position: 'absolute',
466
- top: react_native_1.Platform.OS === 'android' ? (react_native_1.StatusBar.currentHeight || 24) + 60 : 90,
467
- width: 170,
468
- backgroundColor: colors.primaryLight,
469
- borderRadius: 14,
385
+ domainHeaderCard: {
386
+ marginHorizontal: 12,
387
+ marginTop: 12,
388
+ marginBottom: 4,
389
+ paddingHorizontal: 12,
390
+ paddingVertical: 8,
391
+ borderRadius: 10,
392
+ backgroundColor: colors.grayBackground,
470
393
  borderWidth: 1,
471
394
  borderColor: colors.grayBorderSecondary,
472
- zIndex: 999,
473
- shadowColor: '#000000',
474
- shadowOffset: { width: 0, height: 8 },
475
- shadowOpacity: 0.15,
476
- shadowRadius: 12,
477
- elevation: 8,
478
- overflow: 'hidden',
479
395
  },
480
- dropdownItem: {
481
- padding: 13,
482
- borderBottomWidth: 1,
483
- borderBottomColor: colors.dividerColor,
484
- },
485
- domainHeaderSeparator: {
486
- marginTop: 12,
487
- paddingTop: 16,
488
- borderTopWidth: 1,
489
- borderTopColor: colors.dividerColor,
490
- },
491
- domainHeaderRow: {
396
+ domainHeaderTopRow: {
492
397
  flexDirection: 'row',
493
398
  alignItems: 'center',
494
399
  justifyContent: 'space-between',
495
- paddingLeft: 20,
496
- paddingRight: 16,
497
- marginTop: 12,
498
- marginBottom: 6,
499
400
  },
500
401
  domainHeaderLeft: {
501
402
  flexDirection: 'row',
502
403
  alignItems: 'center',
503
404
  flex: 1,
504
- paddingRight: 10,
505
- gap: 6,
405
+ gap: 8,
406
+ },
407
+ domainIconWrap: {
408
+ width: 26,
409
+ height: 26,
410
+ borderRadius: 6,
411
+ alignItems: 'center',
412
+ justifyContent: 'center',
506
413
  },
507
- domainHeaderText: {
414
+ domainTitleText: {
508
415
  fontFamily: AppFonts_1.AppFonts.interBold,
509
- fontSize: 14,
416
+ fontSize: 13.5,
510
417
  fontWeight: '700',
418
+ color: colors.primaryBlack,
511
419
  textTransform: 'capitalize',
512
- flexShrink: 1,
513
- marginLeft: 2,
514
420
  },
515
- domainSubRow: {
421
+ domainSummaryRow: {
516
422
  flexDirection: 'row',
517
423
  alignItems: 'center',
518
- flexWrap: 'wrap',
519
- marginTop: 2,
424
+ gap: 6,
425
+ marginTop: 1,
520
426
  },
521
- domainTimestamp: {
427
+ domainSummaryText: {
522
428
  fontFamily: AppFonts_1.AppFonts.interRegular,
523
429
  fontSize: 10,
524
430
  color: colors.grayTextWeak,
525
431
  },
526
- domainMethodCount: {
432
+ domainPctText: {
527
433
  fontFamily: AppFonts_1.AppFonts.interBold,
528
- fontSize: 9,
529
- marginLeft: 4,
434
+ fontSize: 9.5,
530
435
  },
531
- domainStatsGroup: {
436
+ domainProgressTrack: {
532
437
  flexDirection: 'row',
533
- alignItems: 'center',
534
- borderRadius: 8,
535
- borderWidth: 1,
536
- borderColor: colors.grayBorderSecondary,
438
+ height: 2.5,
439
+ borderRadius: 1.25,
537
440
  overflow: 'hidden',
538
- backgroundColor: colors.grayBackground,
441
+ backgroundColor: 'rgba(148, 163, 184, 0.2)',
442
+ marginTop: 6,
443
+ width: '100%',
444
+ },
445
+ domainProgressSegment: {
446
+ height: '100%',
539
447
  },
540
- groupBtnItem: {
448
+ domainStatsGroup: {
541
449
  flexDirection: 'row',
542
450
  alignItems: 'center',
543
451
  gap: 4,
544
- paddingHorizontal: 8,
545
- paddingVertical: 5,
546
452
  },
547
- groupBtnBorderRight: {
548
- borderRightWidth: 1,
549
- borderRightColor: colors.grayBorderSecondary,
453
+ domainStatPill: {
454
+ flexDirection: 'row',
455
+ alignItems: 'center',
456
+ gap: 3,
457
+ paddingHorizontal: 6,
458
+ paddingVertical: 3,
459
+ borderRadius: 6,
460
+ borderWidth: 1,
461
+ borderColor: colors.grayBorderSecondary,
462
+ backgroundColor: colors.primaryLight,
550
463
  },
551
464
  domainStatText: {
552
465
  fontFamily: AppFonts_1.AppFonts.interBold,
@@ -555,17 +468,18 @@ const getRawStyles = (colors) => ({
555
468
  treeNodeRow: {
556
469
  flexDirection: 'row',
557
470
  alignItems: 'stretch',
558
- paddingRight: 16,
471
+ paddingLeft: 12,
472
+ paddingRight: 12,
559
473
  },
560
474
  treeLines: {
561
- width: 40,
475
+ width: 28,
562
476
  position: 'relative',
563
477
  },
564
478
  modernTreeLine: {
565
479
  position: 'absolute',
566
- left: 23,
480
+ left: 14,
567
481
  top: 0,
568
- width: 16,
482
+ width: 14,
569
483
  height: '100%',
570
484
  borderLeftWidth: 1.5,
571
485
  opacity: 0.5,
@@ -573,39 +487,56 @@ const getRawStyles = (colors) => ({
573
487
  modernTreeLineLast: {
574
488
  height: '50%',
575
489
  borderBottomWidth: 1.5,
576
- borderBottomLeftRadius: 12,
490
+ borderBottomLeftRadius: 10,
577
491
  },
578
492
  modernTreeBranch: {
579
493
  position: 'absolute',
580
- left: 23,
494
+ left: 14,
581
495
  top: '50%',
582
- width: 16,
496
+ width: 14,
583
497
  borderTopWidth: 1.5,
584
498
  opacity: 0.5,
585
499
  },
586
500
  treeCardWrapper: {
587
501
  flex: 1,
588
- paddingVertical: 4,
502
+ paddingVertical: 3.5,
589
503
  },
590
504
  card: {
591
505
  marginHorizontal: 0,
592
506
  marginVertical: 0,
593
- borderRadius: 14,
507
+ borderRadius: 12,
594
508
  overflow: 'hidden',
595
- shadowColor: '#000000',
596
- shadowOffset: { width: 0, height: 3 },
597
- shadowOpacity: 0.08,
598
- shadowRadius: 6,
599
- elevation: 3,
509
+ shadowColor: colors.black,
510
+ shadowOffset: { width: 0, height: 2 },
511
+ shadowOpacity: 0.05,
512
+ shadowRadius: 4,
513
+ elevation: 2,
600
514
  borderWidth: 1,
601
515
  borderColor: colors.grayBorderSecondary,
602
516
  backgroundColor: colors.primaryLight,
603
517
  },
604
- cardBody: { paddingHorizontal: 10, paddingTop: 8, paddingBottom: 8 },
605
- cardTopRow: {
518
+ cardBody: {
519
+ paddingHorizontal: 12,
520
+ paddingTop: 10,
521
+ paddingBottom: 9,
522
+ },
523
+ cardHeaderRow: {
606
524
  flexDirection: 'row',
607
525
  alignItems: 'center',
608
- marginBottom: 6,
526
+ justifyContent: 'space-between',
527
+ marginBottom: 4,
528
+ },
529
+ cardHeaderLeft: {
530
+ flexDirection: 'row',
531
+ alignItems: 'center',
532
+ flex: 1,
533
+ marginRight: 8,
534
+ gap: 6,
535
+ },
536
+ cardHeaderRight: {
537
+ flexDirection: 'row',
538
+ alignItems: 'center',
539
+ gap: 5,
609
540
  },
610
541
  smallCheckbox: {
611
542
  width: 13,
@@ -615,8 +546,7 @@ const getRawStyles = (colors) => ({
615
546
  borderColor: colors.grayTextWeak,
616
547
  alignItems: 'center',
617
548
  justifyContent: 'center',
618
- backgroundColor: '#fff',
619
- marginRight: 8,
549
+ backgroundColor: colors.white,
620
550
  },
621
551
  smallCheckboxChecked: {
622
552
  backgroundColor: colors.purple,
@@ -626,102 +556,118 @@ const getRawStyles = (colors) => ({
626
556
  fontFamily: AppFonts_1.AppFonts.interBold,
627
557
  color: colors.grayTextWeak,
628
558
  fontSize: 10,
629
- marginRight: 6,
630
- minWidth: 20,
631
559
  },
632
- chip: {
633
- flexDirection: 'row',
560
+ methodBadge: {
561
+ paddingHorizontal: 6,
562
+ paddingVertical: 2.5,
563
+ borderRadius: 6,
634
564
  alignItems: 'center',
635
- gap: 4,
565
+ justifyContent: 'center',
566
+ shadowColor: colors.black,
567
+ shadowOffset: { width: 0, height: 1 },
568
+ shadowOpacity: 0.08,
569
+ shadowRadius: 2,
570
+ elevation: 1,
571
+ },
572
+ methodBadgeText: {
573
+ fontFamily: AppFonts_1.AppFonts.interBold,
574
+ fontSize: 9.5,
575
+ letterSpacing: 0.4,
576
+ },
577
+ cardHostText: {
578
+ fontFamily: AppFonts_1.AppFonts.interMedium,
579
+ fontSize: 12,
580
+ color: colors.primaryBlack,
581
+ flexShrink: 1,
582
+ },
583
+ statusPill: {
636
584
  paddingHorizontal: 6,
637
- paddingVertical: 3,
638
- borderRadius: 8,
585
+ paddingVertical: 2,
586
+ borderRadius: 6,
639
587
  borderWidth: 1,
588
+ alignItems: 'center',
589
+ justifyContent: 'center',
640
590
  },
641
- chipText: {
591
+ statusPillText: {
642
592
  fontFamily: AppFonts_1.AppFonts.interBold,
643
593
  fontSize: 10,
644
594
  },
645
- cardMiddleRow: {
595
+ cardSlugBox: {
646
596
  flexDirection: 'row',
647
597
  alignItems: 'center',
648
598
  justifyContent: 'space-between',
649
- marginBottom: 6,
599
+ backgroundColor: colors.grayBackground,
600
+ borderRadius: 7,
601
+ borderWidth: 1,
602
+ borderColor: colors.grayBorderSecondary,
603
+ paddingHorizontal: 8,
604
+ paddingVertical: 5,
605
+ marginVertical: 5,
606
+ gap: 6,
650
607
  },
651
- cardBottomRow: {
608
+ slugLeft: {
609
+ flexDirection: 'row',
610
+ alignItems: 'center',
611
+ flex: 1,
612
+ gap: 6,
613
+ },
614
+ slugTag: {
615
+ fontFamily: AppFonts_1.AppFonts.interBold,
616
+ fontSize: 8.5,
617
+ color: colors.grayTextWeak,
618
+ letterSpacing: 0.5,
619
+ },
620
+ slugText: {
621
+ fontFamily: AppFonts_1.AppFonts.interBold,
622
+ fontSize: 12.5,
623
+ color: colors.primaryBlack,
624
+ flexShrink: 1,
625
+ },
626
+ slugRight: {
627
+ flexDirection: 'row',
628
+ alignItems: 'center',
629
+ gap: 4,
630
+ },
631
+ cardFooterRow: {
652
632
  flexDirection: 'row',
653
633
  alignItems: 'center',
654
634
  justifyContent: 'space-between',
655
- marginBottom: 6,
635
+ marginTop: 2,
656
636
  },
657
637
  cardDateRow: {
658
638
  flexDirection: 'row',
659
639
  alignItems: 'center',
660
- gap: 4,
640
+ gap: 3.5,
661
641
  },
662
642
  cardDateText: {
663
643
  fontFamily: AppFonts_1.AppFonts.interRegular,
664
644
  color: colors.grayTextWeak,
665
645
  fontSize: 10,
666
- letterSpacing: 0.2,
646
+ letterSpacing: 0.1,
667
647
  },
668
- cardMetaRow: {
648
+ cardFooterRight: {
669
649
  flexDirection: 'row',
670
650
  alignItems: 'center',
671
- gap: 6,
672
- flexShrink: 0,
673
- },
674
- urlPathText: {
675
- fontFamily: AppFonts_1.AppFonts.interMedium,
676
- color: colors.primaryBlack,
677
- fontSize: 13,
678
- flexShrink: 1,
651
+ gap: 5,
679
652
  },
680
- urlDomainText: {
681
- fontFamily: AppFonts_1.AppFonts.interRegular,
682
- color: colors.grayText,
683
- fontSize: 11,
684
- flex: 1,
685
- },
686
- requestTypeText: {
687
- fontFamily: AppFonts_1.AppFonts.interRegular,
688
- color: colors.grayText,
689
- fontSize: 10,
690
- },
691
- methodBadge: {
692
- paddingHorizontal: 6,
693
- paddingVertical: 3,
694
- borderRadius: 6,
695
- marginRight: 6,
696
- minWidth: 46,
653
+ chip: {
654
+ flexDirection: 'row',
697
655
  alignItems: 'center',
698
- justifyContent: 'center',
699
- shadowColor: '#000000',
700
- shadowOffset: { width: 0, height: 1 },
701
- shadowOpacity: 0.08,
702
- shadowRadius: 2,
703
- elevation: 1,
656
+ gap: 3.5,
657
+ paddingHorizontal: 5,
658
+ paddingVertical: 2,
659
+ borderRadius: 5,
660
+ borderWidth: 1,
704
661
  },
705
- methodBadgeText: {
662
+ chipText: {
706
663
  fontFamily: AppFonts_1.AppFonts.interBold,
707
664
  fontSize: 9.5,
708
- letterSpacing: 0.4,
709
- },
710
- timelineTrack: {
711
- height: 3,
712
- backgroundColor: colors.graySurface,
713
- marginTop: 4,
714
- borderRadius: 1.5,
715
- overflow: 'hidden',
716
- position: 'relative',
717
665
  },
718
- timelineBar: { position: 'absolute', height: '100%', borderRadius: 1.5 },
719
666
  empty: {
720
667
  flex: 1,
721
668
  alignItems: 'center',
722
669
  justifyContent: 'center',
723
670
  },
724
- emptyIcon: { fontSize: 32, color: colors.grayTextWeak },
725
671
  emptyContainer: {
726
672
  flex: 1,
727
673
  alignItems: 'center',
@@ -737,7 +683,7 @@ const getRawStyles = (colors) => ({
737
683
  alignItems: 'center',
738
684
  justifyContent: 'center',
739
685
  marginBottom: 20,
740
- shadowColor: '#000000',
686
+ shadowColor: colors.black,
741
687
  shadowOffset: { width: 0, height: 2 },
742
688
  shadowOpacity: 0.06,
743
689
  shadowRadius: 4,
@@ -771,7 +717,7 @@ const getRawStyles = (colors) => ({
771
717
  elevation: 5,
772
718
  },
773
719
  reloadBtnText: {
774
- color: '#FFF',
720
+ color: colors.white,
775
721
  fontFamily: AppFonts_1.AppFonts.interBold,
776
722
  fontSize: 14,
777
723
  letterSpacing: 0.3,
@@ -784,7 +730,7 @@ const getRawStyles = (colors) => ({
784
730
  borderWidth: 1,
785
731
  borderColor: colors.grayBorderSecondary,
786
732
  backgroundColor: colors.primaryLight,
787
- shadowColor: '#000000',
733
+ shadowColor: colors.black,
788
734
  shadowOffset: { width: 0, height: 2 },
789
735
  shadowOpacity: 0.05,
790
736
  shadowRadius: 4,
@@ -797,31 +743,6 @@ const getRawStyles = (colors) => ({
797
743
  paddingBottom: 10,
798
744
  },
799
745
  detailInfoRight: { flexDirection: 'row', alignItems: 'center', gap: 6 },
800
- detailMethodLabel: {
801
- fontFamily: AppFonts_1.AppFonts.interBold,
802
- fontSize: 14,
803
- letterSpacing: 0.5,
804
- },
805
- detailUrlContainer: {
806
- backgroundColor: colors.grayBackground,
807
- borderRadius: 10,
808
- padding: 13,
809
- borderWidth: 1,
810
- borderColor: colors.grayBorderSecondary,
811
- shadowColor: '#000000',
812
- shadowOffset: { width: 0, height: 1 },
813
- shadowOpacity: 0.04,
814
- shadowRadius: 2,
815
- elevation: 1,
816
- },
817
- detailUrl: {
818
- fontFamily: AppFonts_1.AppFonts.interRegular,
819
- color: colors.purple,
820
- fontSize: 13,
821
- lineHeight: 20,
822
- textDecorationLine: 'underline',
823
- letterSpacing: 0.2,
824
- },
825
746
  metaContainer: {
826
747
  backgroundColor: colors.primaryLight,
827
748
  borderWidth: 1,
@@ -829,7 +750,7 @@ const getRawStyles = (colors) => ({
829
750
  borderRadius: 14,
830
751
  marginBottom: 12,
831
752
  overflow: 'hidden',
832
- shadowColor: '#000000',
753
+ shadowColor: colors.black,
833
754
  shadowOffset: { width: 0, height: 2 },
834
755
  shadowOpacity: 0.05,
835
756
  shadowRadius: 4,
@@ -852,11 +773,6 @@ const getRawStyles = (colors) => ({
852
773
  letterSpacing: 0.6,
853
774
  textTransform: 'uppercase',
854
775
  },
855
- metaChevron: {
856
- fontFamily: AppFonts_1.AppFonts.interRegular,
857
- color: colors.grayTextWeak,
858
- fontSize: 11,
859
- },
860
776
  metaBody: { paddingHorizontal: 12, paddingBottom: 8, paddingTop: 4 },
861
777
  metaRow: {
862
778
  flexDirection: 'row',
@@ -867,7 +783,7 @@ const getRawStyles = (colors) => ({
867
783
  metaDivider: { height: 1, backgroundColor: colors.dividerColor },
868
784
  metaLabelRow: { flexDirection: 'row', alignItems: 'center', gap: 8 },
869
785
  metaLabel: {
870
- fontFamily: AppFonts_1.AppFonts.interRegular,
786
+ fontFamily: AppFonts_1.AppFonts.interBold,
871
787
  color: colors.grayText,
872
788
  fontSize: 13,
873
789
  },
@@ -887,11 +803,6 @@ const getRawStyles = (colors) => ({
887
803
  fontFamily: AppFonts_1.AppFonts.interBold,
888
804
  fontSize: 11,
889
805
  },
890
- seperator: {
891
- height: 1,
892
- backgroundColor: colors.dividerColor,
893
- marginVertical: 10,
894
- },
895
806
  detailSearchRow: {
896
807
  flexDirection: 'row',
897
808
  alignItems: 'center',
@@ -923,7 +834,7 @@ const getRawStyles = (colors) => ({
923
834
  overflow: 'hidden',
924
835
  },
925
836
  sectionHeaderGradient: {
926
- backgroundColor: '#f9f9fa',
837
+ backgroundColor: colors.grayBackground,
927
838
  paddingVertical: 12,
928
839
  paddingHorizontal: 8,
929
840
  borderBottomWidth: 1,
@@ -1106,26 +1017,29 @@ const getRawStyles = (colors) => ({
1106
1017
  },
1107
1018
  codeSyntax: {
1108
1019
  color: colors.grayTextWeak,
1109
- fontFamily: react_native_1.Platform.OS === 'ios' ? 'Menlo' : 'monospace',
1020
+ fontFamily: AppFonts_1.AppFonts.interRegular,
1021
+ fontSize: 12.5,
1022
+ lineHeight: 18,
1110
1023
  },
1111
1024
  codeKey: {
1112
1025
  color: colors.purple,
1113
- fontFamily: react_native_1.Platform.OS === 'ios' ? 'Menlo' : 'monospace',
1026
+ fontFamily: AppFonts_1.AppFonts.interBold,
1027
+ fontSize: 12.5,
1028
+ lineHeight: 18,
1114
1029
  },
1115
1030
  codeText: {
1116
1031
  color: colors.greenBaggageText,
1117
- fontFamily: react_native_1.Platform.OS === 'ios' ? 'Menlo' : 'monospace',
1032
+ fontFamily: AppFonts_1.AppFonts.interRegular,
1033
+ fontSize: 12.5,
1034
+ lineHeight: 18,
1118
1035
  },
1119
1036
  codeTextNil: {
1120
1037
  color: colors.errorColor,
1121
- fontFamily: react_native_1.Platform.OS === 'ios' ? 'Menlo' : 'monospace',
1038
+ fontFamily: AppFonts_1.AppFonts.interMedium,
1039
+ fontSize: 12.5,
1040
+ lineHeight: 18,
1122
1041
  },
1123
1042
  treeRow: { flexDirection: 'row', alignItems: 'center', paddingVertical: 6 },
1124
- treeChevron: {
1125
- fontFamily: AppFonts_1.AppFonts.interRegular,
1126
- color: colors.grayTextWeak,
1127
- marginRight: 8,
1128
- },
1129
1043
  treeKeyMargin: { marginRight: 6 },
1130
1044
  highlight: {
1131
1045
  backgroundColor: colors.paleYellow,
@@ -1165,17 +1079,17 @@ const getRawStyles = (colors) => ({
1165
1079
  },
1166
1080
  diffAdded: {
1167
1081
  color: colors.greenColor,
1168
- fontFamily: react_native_1.Platform.OS === 'ios' ? 'Menlo' : 'monospace',
1082
+ fontFamily: AppFonts_1.AppFonts.interRegular,
1169
1083
  fontSize: 12,
1170
1084
  },
1171
1085
  diffRemoved: {
1172
1086
  color: colors.errorColor,
1173
- fontFamily: react_native_1.Platform.OS === 'ios' ? 'Menlo' : 'monospace',
1087
+ fontFamily: AppFonts_1.AppFonts.interRegular,
1174
1088
  fontSize: 12,
1175
1089
  },
1176
1090
  diffChanged: {
1177
1091
  color: colors.lightOrange,
1178
- fontFamily: react_native_1.Platform.OS === 'ios' ? 'Menlo' : 'monospace',
1092
+ fontFamily: AppFonts_1.AppFonts.interRegular,
1179
1093
  fontSize: 12,
1180
1094
  },
1181
1095
  filePreviewNode: { paddingVertical: 8, marginVertical: 4 },
@@ -1236,10 +1150,10 @@ const getRawStyles = (colors) => ({
1236
1150
  width: 36,
1237
1151
  height: 36,
1238
1152
  borderRadius: 18,
1239
- backgroundColor: 'rgba(255, 255, 255, 0.9)',
1153
+ backgroundColor: `${colors.white}E6`,
1240
1154
  alignItems: 'center',
1241
1155
  justifyContent: 'center',
1242
- shadowColor: '#000',
1156
+ shadowColor: colors.black,
1243
1157
  shadowOffset: { width: 0, height: 2 },
1244
1158
  shadowOpacity: 0.2,
1245
1159
  shadowRadius: 4,
@@ -1307,7 +1221,7 @@ const getRawStyles = (colors) => ({
1307
1221
  paddingVertical: 10,
1308
1222
  borderBottomWidth: 1,
1309
1223
  borderBottomColor: colors.dividerColor,
1310
- backgroundColor: '#fafafa',
1224
+ backgroundColor: colors.grayBackground,
1311
1225
  },
1312
1226
  paramsAccordionLeft: {
1313
1227
  flexDirection: 'row',
@@ -1380,64 +1294,10 @@ const getRawStyles = (colors) => ({
1380
1294
  fontSize: 12,
1381
1295
  },
1382
1296
  // ─── Tab Bar ───────────────────────────────────────────────────────────────
1383
- tabBar: {
1384
- flexDirection: 'row',
1385
- backgroundColor: colors.grayBackground,
1386
- paddingHorizontal: 12,
1387
- paddingTop: 10,
1388
- paddingBottom: 4,
1389
- gap: 8,
1390
- },
1391
- tabItem: {
1392
- paddingHorizontal: 16,
1393
- paddingVertical: 8,
1394
- borderRadius: 10,
1395
- alignItems: 'center',
1396
- justifyContent: 'center',
1397
- backgroundColor: '#EDEDF4',
1398
- },
1399
- tabItemActive: {
1400
- backgroundColor: colors.purple,
1401
- shadowColor: colors.purple,
1402
- shadowOpacity: 0.3,
1403
- shadowRadius: 6,
1404
- shadowOffset: { width: 0, height: 2 },
1405
- elevation: 3,
1406
- },
1407
- tabText: {
1408
- fontFamily: AppFonts_1.AppFonts.interBold,
1409
- fontSize: 13,
1410
- color: colors.grayText,
1411
- },
1412
- tabTextActive: {
1413
- color: '#FFFFFF',
1414
- },
1415
1297
  // ─── Screen Grouping Headers ───────────────────────────────────────────────
1416
- screenSectionHeader: {
1417
- flexDirection: 'row',
1418
- alignItems: 'center',
1419
- justifyContent: 'space-between',
1420
- paddingHorizontal: 16,
1421
- paddingVertical: 12,
1422
- backgroundColor: '#F7F7FA',
1423
- borderTopWidth: 1,
1424
- borderBottomWidth: 1,
1425
- borderColor: colors.grayBorderSecondary,
1426
- marginTop: 8,
1427
- },
1428
- screenSectionTitle: {
1429
- fontFamily: AppFonts_1.AppFonts.interBold,
1430
- fontSize: 13,
1431
- color: colors.primaryBlack,
1432
- },
1433
- screenSectionCount: {
1434
- fontFamily: AppFonts_1.AppFonts.interMedium,
1435
- fontSize: 12,
1436
- color: colors.grayText,
1437
- },
1438
1298
  modalBackdrop: {
1439
1299
  flex: 1,
1440
- backgroundColor: 'rgba(0, 0, 0, 0.45)',
1300
+ backgroundColor: `${colors.black}73`,
1441
1301
  justifyContent: 'flex-end',
1442
1302
  },
1443
1303
  modalBackdropPressable: {
@@ -1449,7 +1309,7 @@ const getRawStyles = (colors) => ({
1449
1309
  borderTopLeftRadius: 20,
1450
1310
  borderTopRightRadius: 20,
1451
1311
  overflow: 'hidden',
1452
- shadowColor: '#000000',
1312
+ shadowColor: colors.black,
1453
1313
  shadowOffset: { width: 0, height: -4 },
1454
1314
  shadowOpacity: 0.15,
1455
1315
  shadowRadius: 10,
@@ -1488,149 +1348,112 @@ const getRawStyles = (colors) => ({
1488
1348
  color: colors.grayText,
1489
1349
  },
1490
1350
  contentTabButtonTextActive: {
1491
- color: '#FFFFFF',
1492
- fontWeight: 'bold',
1493
- },
1494
- insightsContainer: {
1495
- flex: 1,
1496
- backgroundColor: colors.grayBackground,
1497
- },
1498
- insightsContent: {
1499
- padding: 10,
1500
- paddingBottom: 24,
1501
- },
1502
- dashboardContainer: {
1503
- gap: 10,
1351
+ color: colors.white,
1352
+ fontFamily: AppFonts_1.AppFonts.interBold,
1504
1353
  },
1505
- dashboardModuleCard: {
1354
+ analyticsHeaderCard: {
1506
1355
  backgroundColor: colors.primaryLight,
1507
- borderRadius: 10,
1356
+ borderRadius: 12,
1508
1357
  borderWidth: 1,
1509
1358
  borderColor: colors.grayBorderSecondary,
1510
- padding: 12,
1511
- shadowColor: '#000000',
1359
+ padding: 14,
1360
+ marginHorizontal: 12,
1361
+ marginTop: 8,
1362
+ marginBottom: 8,
1363
+ shadowColor: colors.black,
1512
1364
  shadowOpacity: 0.03,
1513
1365
  shadowRadius: 4,
1514
1366
  shadowOffset: { width: 0, height: 1 },
1515
1367
  elevation: 1,
1516
1368
  },
1517
- dashboardModuleHeader: {
1369
+ analyticsHeaderTop: {
1518
1370
  flexDirection: 'row',
1519
1371
  justifyContent: 'space-between',
1520
1372
  alignItems: 'center',
1521
1373
  marginBottom: 10,
1522
- borderBottomWidth: 1,
1523
- borderBottomColor: colors.dividerColor,
1524
- paddingBottom: 8,
1525
1374
  },
1526
- dashboardModuleTitle: {
1375
+ analyticsHeaderTitle: {
1527
1376
  fontFamily: AppFonts_1.AppFonts.interBold,
1528
- fontSize: 13,
1377
+ fontSize: 14,
1529
1378
  color: colors.primaryBlack,
1530
1379
  },
1531
- dashboardModuleGoText: {
1532
- fontFamily: AppFonts_1.AppFonts.interBold,
1380
+ statusDot: {
1381
+ width: 6,
1382
+ height: 6,
1383
+ borderRadius: 3,
1384
+ },
1385
+ analyticsHeaderSubtitle: {
1386
+ fontFamily: AppFonts_1.AppFonts.interMedium,
1533
1387
  fontSize: 11,
1388
+ color: colors.grayText,
1389
+ marginTop: 2,
1390
+ },
1391
+ analyticsHeaderToggle: {
1392
+ paddingVertical: 4,
1393
+ paddingHorizontal: 8,
1394
+ borderRadius: 4,
1395
+ backgroundColor: colors.grayBackground,
1396
+ borderWidth: 1,
1397
+ borderColor: colors.grayBorderSecondary,
1398
+ },
1399
+ analyticsHeaderToggleText: {
1400
+ fontFamily: AppFonts_1.AppFonts.interBold,
1401
+ fontSize: 10,
1534
1402
  color: colors.purple,
1535
1403
  },
1536
- dashboardModuleGrid: {
1404
+ analyticsStatsRow: {
1537
1405
  flexDirection: 'row',
1538
- flexWrap: 'wrap',
1539
- justifyContent: 'space-between',
1540
1406
  gap: 8,
1407
+ borderTopWidth: 1,
1408
+ borderTopColor: colors.dividerColor,
1409
+ paddingTop: 10,
1541
1410
  },
1542
- dashboardGridItem: {
1411
+ analyticsStatBox: {
1543
1412
  flex: 1,
1544
- minWidth: '22%',
1545
1413
  backgroundColor: colors.grayBackground,
1546
- borderRadius: 8,
1547
- paddingVertical: 8,
1548
- paddingHorizontal: 4,
1414
+ borderRadius: 6,
1415
+ paddingVertical: 6,
1549
1416
  alignItems: 'center',
1550
- justifyContent: 'center',
1551
1417
  },
1552
- dashboardGridVal: {
1418
+ analyticsStatValue: {
1553
1419
  fontFamily: AppFonts_1.AppFonts.interBold,
1554
- fontSize: 13,
1420
+ fontSize: 14,
1555
1421
  color: colors.primaryBlack,
1556
1422
  },
1557
- dashboardGridLbl: {
1558
- fontFamily: AppFonts_1.AppFonts.interMedium,
1559
- fontSize: 10,
1560
- color: colors.grayTextWeak,
1561
- marginTop: 2,
1562
- },
1563
- analyticsCardRow: {},
1564
- analyticsTopEventsCard: {
1565
- marginHorizontal: 16,
1566
- marginBottom: 12,
1567
- backgroundColor: colors.primaryLight,
1568
- borderRadius: 12,
1569
- borderWidth: 1,
1570
- borderColor: colors.grayBorderSecondary,
1571
- paddingHorizontal: 16,
1572
- paddingVertical: 12,
1573
- shadowColor: '#000',
1574
- shadowOpacity: 0.04,
1575
- shadowRadius: 4,
1576
- shadowOffset: { width: 0, height: 1 },
1577
- elevation: 1,
1423
+ analyticsStatLabel: {
1424
+ fontFamily: AppFonts_1.AppFonts.interRegular,
1425
+ fontSize: 9,
1426
+ color: colors.grayText,
1427
+ marginTop: 1,
1578
1428
  },
1579
- analyticsTopEventsHeaderRow: {
1580
- flexDirection: 'row',
1581
- alignItems: 'center',
1582
- justifyContent: 'space-between',
1583
- marginBottom: 12,
1429
+ analyticsHeaderDetails: {
1430
+ borderTopWidth: 1,
1431
+ borderTopColor: colors.dividerColor,
1432
+ paddingTop: 10,
1433
+ marginTop: 10,
1584
1434
  },
1585
- analyticsTopEventsTitle: {
1435
+ detailsGroupTitle: {
1586
1436
  fontFamily: AppFonts_1.AppFonts.interBold,
1587
- fontSize: 10,
1588
- color: colors.grayTextWeak,
1589
- letterSpacing: 0.8,
1590
- textTransform: 'uppercase',
1591
- },
1592
- analyticsTopEventsSubtitle: {
1593
- fontFamily: AppFonts_1.AppFonts.interMedium,
1594
- fontSize: 9,
1595
- color: colors.grayTextWeak,
1596
- letterSpacing: 0.4,
1437
+ fontSize: 11,
1438
+ color: colors.purple,
1439
+ marginBottom: 6,
1597
1440
  },
1598
- analyticsTopEventRow: {
1441
+ detailsRow: {
1599
1442
  flexDirection: 'row',
1600
- alignItems: 'center',
1601
- marginBottom: 8,
1602
- gap: 8,
1443
+ justifyContent: 'space-between',
1444
+ paddingVertical: 4,
1445
+ borderBottomWidth: 0.5,
1446
+ borderBottomColor: colors.dividerColor,
1603
1447
  },
1604
- analyticsTopEventName: {
1448
+ detailsKey: {
1605
1449
  fontFamily: AppFonts_1.AppFonts.interMedium,
1606
- fontSize: 12,
1450
+ fontSize: 11,
1607
1451
  color: colors.primaryBlack,
1608
- flex: 1,
1609
1452
  },
1610
- analyticsTopEventBarWrap: {
1611
- flex: 0.8,
1612
- height: 3,
1613
- backgroundColor: colors.grayBackground,
1614
- borderRadius: 2,
1615
- overflow: 'hidden',
1616
- },
1617
- analyticsTopEventBar: {
1618
- height: '100%',
1619
- borderRadius: 2,
1620
- },
1621
- analyticsTopEventCount: {
1622
- fontFamily: AppFonts_1.AppFonts.interBold,
1453
+ detailsValue: {
1454
+ fontFamily: AppFonts_1.AppFonts.interRegular,
1623
1455
  fontSize: 11,
1624
1456
  color: colors.grayText,
1625
- width: 24,
1626
- textAlign: 'right',
1627
- },
1628
- analyticsIconCircle: {
1629
- width: 24,
1630
- height: 24,
1631
- borderRadius: 12,
1632
- alignItems: 'center',
1633
- justifyContent: 'center',
1634
1457
  },
1635
1458
  });
1636
1459
  exports.getRawStyles = getRawStyles;
@@ -1647,6 +1470,7 @@ rebuildStyles(false);
1647
1470
  const toggleGlobalTheme = (isDark) => {
1648
1471
  (0, AppColors_1.updateAppColorsTheme)(isDark);
1649
1472
  rebuildStyles(isDark);
1473
+ (0, common_1.rebuildCommonStyles)(isDark ? (0, AppColors_1.getThemeColors)(true) : AppColors_1.default);
1650
1474
  };
1651
1475
  exports.toggleGlobalTheme = toggleGlobalTheme;
1652
1476
  exports.default = styles;