react-native-inapp-inspector 1.0.0

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 (291) hide show
  1. package/LICENSE +21 -0
  2. package/README.md +97 -0
  3. package/dist/commonjs/components/AnalyticsDetail.d.ts +6 -0
  4. package/dist/commonjs/components/AnalyticsDetail.js +558 -0
  5. package/dist/commonjs/components/AnalyticsEventCard.d.ts +18 -0
  6. package/dist/commonjs/components/AnalyticsEventCard.js +327 -0
  7. package/dist/commonjs/components/AnalyticsGraph.d.ts +8 -0
  8. package/dist/commonjs/components/AnalyticsGraph.js +416 -0
  9. package/dist/commonjs/components/CodeSnippet.d.ts +8 -0
  10. package/dist/commonjs/components/CodeSnippet.js +427 -0
  11. package/dist/commonjs/components/ConsoleLogCard.d.ts +10 -0
  12. package/dist/commonjs/components/ConsoleLogCard.js +401 -0
  13. package/dist/commonjs/components/CopyButton.d.ts +4 -0
  14. package/dist/commonjs/components/CopyButton.js +69 -0
  15. package/dist/commonjs/components/DiffViewer.d.ts +7 -0
  16. package/dist/commonjs/components/DiffViewer.js +86 -0
  17. package/dist/commonjs/components/DomainHeader.d.ts +18 -0
  18. package/dist/commonjs/components/DomainHeader.js +136 -0
  19. package/dist/commonjs/components/EmptyState.d.ts +5 -0
  20. package/dist/commonjs/components/EmptyState.js +40 -0
  21. package/dist/commonjs/components/HeadersSection.d.ts +4 -0
  22. package/dist/commonjs/components/HeadersSection.js +155 -0
  23. package/dist/commonjs/components/HighlightText.d.ts +3 -0
  24. package/dist/commonjs/components/HighlightText.js +57 -0
  25. package/dist/commonjs/components/JsonViewer.d.ts +7 -0
  26. package/dist/commonjs/components/JsonViewer.js +19 -0
  27. package/dist/commonjs/components/LogCard.d.ts +4 -0
  28. package/dist/commonjs/components/LogCard.js +179 -0
  29. package/dist/commonjs/components/MetaAccordion.d.ts +4 -0
  30. package/dist/commonjs/components/MetaAccordion.js +113 -0
  31. package/dist/commonjs/components/MiniBarChart.d.ts +7 -0
  32. package/dist/commonjs/components/MiniBarChart.js +56 -0
  33. package/dist/commonjs/components/MiniLineChart.d.ts +6 -0
  34. package/dist/commonjs/components/MiniLineChart.js +58 -0
  35. package/dist/commonjs/components/NetworkIcons.d.ts +31 -0
  36. package/dist/commonjs/components/NetworkIcons.js +245 -0
  37. package/dist/commonjs/components/SectionHeader.d.ts +4 -0
  38. package/dist/commonjs/components/SectionHeader.js +87 -0
  39. package/dist/commonjs/components/SourcePageCard.d.ts +4 -0
  40. package/dist/commonjs/components/SourcePageCard.js +132 -0
  41. package/dist/commonjs/components/TouchableScale.d.ts +9 -0
  42. package/dist/commonjs/components/TouchableScale.js +44 -0
  43. package/dist/commonjs/components/TreeNode.d.ts +4 -0
  44. package/dist/commonjs/components/TreeNode.js +140 -0
  45. package/dist/commonjs/constants/index.d.ts +7 -0
  46. package/dist/commonjs/constants/index.js +35 -0
  47. package/dist/commonjs/customHooks/analyticsLogger.d.ts +21 -0
  48. package/dist/commonjs/customHooks/analyticsLogger.js +160 -0
  49. package/dist/commonjs/customHooks/consoleLogger.d.ts +5 -0
  50. package/dist/commonjs/customHooks/consoleLogger.js +141 -0
  51. package/dist/commonjs/customHooks/logFilters.d.ts +5 -0
  52. package/dist/commonjs/customHooks/logFilters.js +34 -0
  53. package/dist/commonjs/customHooks/networkLogger.d.ts +20 -0
  54. package/dist/commonjs/customHooks/networkLogger.js +272 -0
  55. package/dist/commonjs/customHooks/useAccordion.d.ts +17 -0
  56. package/dist/commonjs/customHooks/useAccordion.js +48 -0
  57. package/dist/commonjs/customHooks/webViewLogger.d.ts +22 -0
  58. package/dist/commonjs/customHooks/webViewLogger.js +412 -0
  59. package/dist/commonjs/helpers/index.d.ts +20 -0
  60. package/dist/commonjs/helpers/index.js +229 -0
  61. package/dist/commonjs/index.d.ts +7 -0
  62. package/dist/commonjs/index.js +2668 -0
  63. package/dist/commonjs/styles/AppColors.d.ts +27 -0
  64. package/dist/commonjs/styles/AppColors.js +30 -0
  65. package/dist/commonjs/styles/AppFonts.d.ts +7 -0
  66. package/dist/commonjs/styles/AppFonts.js +10 -0
  67. package/dist/commonjs/styles/index.d.ts +1488 -0
  68. package/dist/commonjs/styles/index.js +1357 -0
  69. package/dist/commonjs/types/index.d.ts +127 -0
  70. package/dist/commonjs/types/index.js +2 -0
  71. package/dist/esm/components/AnalyticsDetail.d.ts +6 -0
  72. package/dist/esm/components/AnalyticsDetail.js +520 -0
  73. package/dist/esm/components/AnalyticsEventCard.d.ts +18 -0
  74. package/dist/esm/components/AnalyticsEventCard.js +288 -0
  75. package/dist/esm/components/AnalyticsGraph.d.ts +8 -0
  76. package/dist/esm/components/AnalyticsGraph.js +378 -0
  77. package/dist/esm/components/CodeSnippet.d.ts +8 -0
  78. package/dist/esm/components/CodeSnippet.js +392 -0
  79. package/dist/esm/components/ConsoleLogCard.d.ts +10 -0
  80. package/dist/esm/components/ConsoleLogCard.js +362 -0
  81. package/dist/esm/components/CopyButton.d.ts +4 -0
  82. package/dist/esm/components/CopyButton.js +31 -0
  83. package/dist/esm/components/DiffViewer.d.ts +7 -0
  84. package/dist/esm/components/DiffViewer.js +48 -0
  85. package/dist/esm/components/DomainHeader.d.ts +18 -0
  86. package/dist/esm/components/DomainHeader.js +98 -0
  87. package/dist/esm/components/EmptyState.d.ts +5 -0
  88. package/dist/esm/components/EmptyState.js +35 -0
  89. package/dist/esm/components/HeadersSection.d.ts +4 -0
  90. package/dist/esm/components/HeadersSection.js +117 -0
  91. package/dist/esm/components/HighlightText.d.ts +3 -0
  92. package/dist/esm/components/HighlightText.js +52 -0
  93. package/dist/esm/components/JsonViewer.d.ts +7 -0
  94. package/dist/esm/components/JsonViewer.js +14 -0
  95. package/dist/esm/components/LogCard.d.ts +4 -0
  96. package/dist/esm/components/LogCard.js +141 -0
  97. package/dist/esm/components/MetaAccordion.d.ts +4 -0
  98. package/dist/esm/components/MetaAccordion.js +108 -0
  99. package/dist/esm/components/MiniBarChart.d.ts +7 -0
  100. package/dist/esm/components/MiniBarChart.js +18 -0
  101. package/dist/esm/components/MiniLineChart.d.ts +6 -0
  102. package/dist/esm/components/MiniLineChart.js +20 -0
  103. package/dist/esm/components/NetworkIcons.d.ts +31 -0
  104. package/dist/esm/components/NetworkIcons.js +176 -0
  105. package/dist/esm/components/SectionHeader.d.ts +4 -0
  106. package/dist/esm/components/SectionHeader.js +49 -0
  107. package/dist/esm/components/SourcePageCard.d.ts +4 -0
  108. package/dist/esm/components/SourcePageCard.js +94 -0
  109. package/dist/esm/components/TouchableScale.d.ts +9 -0
  110. package/dist/esm/components/TouchableScale.js +9 -0
  111. package/dist/esm/components/TreeNode.d.ts +4 -0
  112. package/dist/esm/components/TreeNode.js +102 -0
  113. package/dist/esm/constants/index.d.ts +7 -0
  114. package/dist/esm/constants/index.js +32 -0
  115. package/dist/esm/customHooks/analyticsLogger.d.ts +21 -0
  116. package/dist/esm/customHooks/analyticsLogger.js +152 -0
  117. package/dist/esm/customHooks/consoleLogger.d.ts +5 -0
  118. package/dist/esm/customHooks/consoleLogger.js +134 -0
  119. package/dist/esm/customHooks/logFilters.d.ts +5 -0
  120. package/dist/esm/customHooks/logFilters.js +31 -0
  121. package/dist/esm/customHooks/networkLogger.d.ts +20 -0
  122. package/dist/esm/customHooks/networkLogger.js +264 -0
  123. package/dist/esm/customHooks/useAccordion.d.ts +17 -0
  124. package/dist/esm/customHooks/useAccordion.js +46 -0
  125. package/dist/esm/customHooks/webViewLogger.d.ts +22 -0
  126. package/dist/esm/customHooks/webViewLogger.js +365 -0
  127. package/dist/esm/helpers/index.d.ts +20 -0
  128. package/dist/esm/helpers/index.js +207 -0
  129. package/dist/esm/index.d.ts +7 -0
  130. package/dist/esm/index.js +2611 -0
  131. package/dist/esm/styles/AppColors.d.ts +27 -0
  132. package/dist/esm/styles/AppColors.js +27 -0
  133. package/dist/esm/styles/AppFonts.d.ts +7 -0
  134. package/dist/esm/styles/AppFonts.js +7 -0
  135. package/dist/esm/styles/index.d.ts +1488 -0
  136. package/dist/esm/styles/index.js +1355 -0
  137. package/dist/esm/types/index.d.ts +127 -0
  138. package/dist/esm/types/index.js +1 -0
  139. package/fonts/Inter/Inter.ttc +0 -0
  140. package/fonts/Inter/InterVariable-Italic.ttf +0 -0
  141. package/fonts/Inter/InterVariable.ttf +0 -0
  142. package/fonts/Inter/LICENSE.txt +92 -0
  143. package/fonts/Inter/extras/otf/Inter-Black.otf +0 -0
  144. package/fonts/Inter/extras/otf/Inter-BlackItalic.otf +0 -0
  145. package/fonts/Inter/extras/otf/Inter-Bold.otf +0 -0
  146. package/fonts/Inter/extras/otf/Inter-BoldItalic.otf +0 -0
  147. package/fonts/Inter/extras/otf/Inter-ExtraBold.otf +0 -0
  148. package/fonts/Inter/extras/otf/Inter-ExtraBoldItalic.otf +0 -0
  149. package/fonts/Inter/extras/otf/Inter-ExtraLight.otf +0 -0
  150. package/fonts/Inter/extras/otf/Inter-ExtraLightItalic.otf +0 -0
  151. package/fonts/Inter/extras/otf/Inter-Italic.otf +0 -0
  152. package/fonts/Inter/extras/otf/Inter-Light.otf +0 -0
  153. package/fonts/Inter/extras/otf/Inter-LightItalic.otf +0 -0
  154. package/fonts/Inter/extras/otf/Inter-Medium.otf +0 -0
  155. package/fonts/Inter/extras/otf/Inter-MediumItalic.otf +0 -0
  156. package/fonts/Inter/extras/otf/Inter-Regular.otf +0 -0
  157. package/fonts/Inter/extras/otf/Inter-SemiBold.otf +0 -0
  158. package/fonts/Inter/extras/otf/Inter-SemiBoldItalic.otf +0 -0
  159. package/fonts/Inter/extras/otf/Inter-Thin.otf +0 -0
  160. package/fonts/Inter/extras/otf/Inter-ThinItalic.otf +0 -0
  161. package/fonts/Inter/extras/otf/InterDisplay-Black.otf +0 -0
  162. package/fonts/Inter/extras/otf/InterDisplay-BlackItalic.otf +0 -0
  163. package/fonts/Inter/extras/otf/InterDisplay-Bold.otf +0 -0
  164. package/fonts/Inter/extras/otf/InterDisplay-BoldItalic.otf +0 -0
  165. package/fonts/Inter/extras/otf/InterDisplay-ExtraBold.otf +0 -0
  166. package/fonts/Inter/extras/otf/InterDisplay-ExtraBoldItalic.otf +0 -0
  167. package/fonts/Inter/extras/otf/InterDisplay-ExtraLight.otf +0 -0
  168. package/fonts/Inter/extras/otf/InterDisplay-ExtraLightItalic.otf +0 -0
  169. package/fonts/Inter/extras/otf/InterDisplay-Italic.otf +0 -0
  170. package/fonts/Inter/extras/otf/InterDisplay-Light.otf +0 -0
  171. package/fonts/Inter/extras/otf/InterDisplay-LightItalic.otf +0 -0
  172. package/fonts/Inter/extras/otf/InterDisplay-Medium.otf +0 -0
  173. package/fonts/Inter/extras/otf/InterDisplay-MediumItalic.otf +0 -0
  174. package/fonts/Inter/extras/otf/InterDisplay-Regular.otf +0 -0
  175. package/fonts/Inter/extras/otf/InterDisplay-SemiBold.otf +0 -0
  176. package/fonts/Inter/extras/otf/InterDisplay-SemiBoldItalic.otf +0 -0
  177. package/fonts/Inter/extras/otf/InterDisplay-Thin.otf +0 -0
  178. package/fonts/Inter/extras/otf/InterDisplay-ThinItalic.otf +0 -0
  179. package/fonts/Inter/extras/ttf/Inter-Black.ttf +0 -0
  180. package/fonts/Inter/extras/ttf/Inter-BlackItalic.ttf +0 -0
  181. package/fonts/Inter/extras/ttf/Inter-Bold.ttf +0 -0
  182. package/fonts/Inter/extras/ttf/Inter-BoldItalic.ttf +0 -0
  183. package/fonts/Inter/extras/ttf/Inter-ExtraBold.ttf +0 -0
  184. package/fonts/Inter/extras/ttf/Inter-ExtraBoldItalic.ttf +0 -0
  185. package/fonts/Inter/extras/ttf/Inter-ExtraLight.ttf +0 -0
  186. package/fonts/Inter/extras/ttf/Inter-ExtraLightItalic.ttf +0 -0
  187. package/fonts/Inter/extras/ttf/Inter-Italic.ttf +0 -0
  188. package/fonts/Inter/extras/ttf/Inter-Light.ttf +0 -0
  189. package/fonts/Inter/extras/ttf/Inter-LightItalic.ttf +0 -0
  190. package/fonts/Inter/extras/ttf/Inter-Medium.ttf +0 -0
  191. package/fonts/Inter/extras/ttf/Inter-MediumItalic.ttf +0 -0
  192. package/fonts/Inter/extras/ttf/Inter-Regular.ttf +0 -0
  193. package/fonts/Inter/extras/ttf/Inter-SemiBold.ttf +0 -0
  194. package/fonts/Inter/extras/ttf/Inter-SemiBoldItalic.ttf +0 -0
  195. package/fonts/Inter/extras/ttf/Inter-Thin.ttf +0 -0
  196. package/fonts/Inter/extras/ttf/Inter-ThinItalic.ttf +0 -0
  197. package/fonts/Inter/extras/ttf/InterDisplay-Black.ttf +0 -0
  198. package/fonts/Inter/extras/ttf/InterDisplay-BlackItalic.ttf +0 -0
  199. package/fonts/Inter/extras/ttf/InterDisplay-Bold.ttf +0 -0
  200. package/fonts/Inter/extras/ttf/InterDisplay-BoldItalic.ttf +0 -0
  201. package/fonts/Inter/extras/ttf/InterDisplay-ExtraBold.ttf +0 -0
  202. package/fonts/Inter/extras/ttf/InterDisplay-ExtraBoldItalic.ttf +0 -0
  203. package/fonts/Inter/extras/ttf/InterDisplay-ExtraLight.ttf +0 -0
  204. package/fonts/Inter/extras/ttf/InterDisplay-ExtraLightItalic.ttf +0 -0
  205. package/fonts/Inter/extras/ttf/InterDisplay-Italic.ttf +0 -0
  206. package/fonts/Inter/extras/ttf/InterDisplay-Light.ttf +0 -0
  207. package/fonts/Inter/extras/ttf/InterDisplay-LightItalic.ttf +0 -0
  208. package/fonts/Inter/extras/ttf/InterDisplay-Medium.ttf +0 -0
  209. package/fonts/Inter/extras/ttf/InterDisplay-MediumItalic.ttf +0 -0
  210. package/fonts/Inter/extras/ttf/InterDisplay-Regular.ttf +0 -0
  211. package/fonts/Inter/extras/ttf/InterDisplay-SemiBold.ttf +0 -0
  212. package/fonts/Inter/extras/ttf/InterDisplay-SemiBoldItalic.ttf +0 -0
  213. package/fonts/Inter/extras/ttf/InterDisplay-Thin.ttf +0 -0
  214. package/fonts/Inter/extras/ttf/InterDisplay-ThinItalic.ttf +0 -0
  215. package/fonts/Inter/extras/woff-hinted/Inter-Black.woff2 +0 -0
  216. package/fonts/Inter/extras/woff-hinted/Inter-BlackItalic.woff2 +0 -0
  217. package/fonts/Inter/extras/woff-hinted/Inter-Bold.woff2 +0 -0
  218. package/fonts/Inter/extras/woff-hinted/Inter-BoldItalic.woff2 +0 -0
  219. package/fonts/Inter/extras/woff-hinted/Inter-ExtraBold.woff2 +0 -0
  220. package/fonts/Inter/extras/woff-hinted/Inter-ExtraBoldItalic.woff2 +0 -0
  221. package/fonts/Inter/extras/woff-hinted/Inter-ExtraLight.woff2 +0 -0
  222. package/fonts/Inter/extras/woff-hinted/Inter-ExtraLightItalic.woff2 +0 -0
  223. package/fonts/Inter/extras/woff-hinted/Inter-Italic.woff2 +0 -0
  224. package/fonts/Inter/extras/woff-hinted/Inter-Light.woff2 +0 -0
  225. package/fonts/Inter/extras/woff-hinted/Inter-LightItalic.woff2 +0 -0
  226. package/fonts/Inter/extras/woff-hinted/Inter-Medium.woff2 +0 -0
  227. package/fonts/Inter/extras/woff-hinted/Inter-MediumItalic.woff2 +0 -0
  228. package/fonts/Inter/extras/woff-hinted/Inter-Regular.woff2 +0 -0
  229. package/fonts/Inter/extras/woff-hinted/Inter-SemiBold.woff2 +0 -0
  230. package/fonts/Inter/extras/woff-hinted/Inter-SemiBoldItalic.woff2 +0 -0
  231. package/fonts/Inter/extras/woff-hinted/Inter-Thin.woff2 +0 -0
  232. package/fonts/Inter/extras/woff-hinted/Inter-ThinItalic.woff2 +0 -0
  233. package/fonts/Inter/extras/woff-hinted/InterDisplay-Black.woff2 +0 -0
  234. package/fonts/Inter/extras/woff-hinted/InterDisplay-BlackItalic.woff2 +0 -0
  235. package/fonts/Inter/extras/woff-hinted/InterDisplay-Bold.woff2 +0 -0
  236. package/fonts/Inter/extras/woff-hinted/InterDisplay-BoldItalic.woff2 +0 -0
  237. package/fonts/Inter/extras/woff-hinted/InterDisplay-ExtraBold.woff2 +0 -0
  238. package/fonts/Inter/extras/woff-hinted/InterDisplay-ExtraBoldItalic.woff2 +0 -0
  239. package/fonts/Inter/extras/woff-hinted/InterDisplay-ExtraLight.woff2 +0 -0
  240. package/fonts/Inter/extras/woff-hinted/InterDisplay-ExtraLightItalic.woff2 +0 -0
  241. package/fonts/Inter/extras/woff-hinted/InterDisplay-Italic.woff2 +0 -0
  242. package/fonts/Inter/extras/woff-hinted/InterDisplay-Light.woff2 +0 -0
  243. package/fonts/Inter/extras/woff-hinted/InterDisplay-LightItalic.woff2 +0 -0
  244. package/fonts/Inter/extras/woff-hinted/InterDisplay-Medium.woff2 +0 -0
  245. package/fonts/Inter/extras/woff-hinted/InterDisplay-MediumItalic.woff2 +0 -0
  246. package/fonts/Inter/extras/woff-hinted/InterDisplay-Regular.woff2 +0 -0
  247. package/fonts/Inter/extras/woff-hinted/InterDisplay-SemiBold.woff2 +0 -0
  248. package/fonts/Inter/extras/woff-hinted/InterDisplay-SemiBoldItalic.woff2 +0 -0
  249. package/fonts/Inter/extras/woff-hinted/InterDisplay-Thin.woff2 +0 -0
  250. package/fonts/Inter/extras/woff-hinted/InterDisplay-ThinItalic.woff2 +0 -0
  251. package/fonts/Inter/help.txt +165 -0
  252. package/fonts/Inter/web/Inter-Black.woff2 +0 -0
  253. package/fonts/Inter/web/Inter-BlackItalic.woff2 +0 -0
  254. package/fonts/Inter/web/Inter-Bold.woff2 +0 -0
  255. package/fonts/Inter/web/Inter-BoldItalic.woff2 +0 -0
  256. package/fonts/Inter/web/Inter-ExtraBold.woff2 +0 -0
  257. package/fonts/Inter/web/Inter-ExtraBoldItalic.woff2 +0 -0
  258. package/fonts/Inter/web/Inter-ExtraLight.woff2 +0 -0
  259. package/fonts/Inter/web/Inter-ExtraLightItalic.woff2 +0 -0
  260. package/fonts/Inter/web/Inter-Italic.woff2 +0 -0
  261. package/fonts/Inter/web/Inter-Light.woff2 +0 -0
  262. package/fonts/Inter/web/Inter-LightItalic.woff2 +0 -0
  263. package/fonts/Inter/web/Inter-Medium.woff2 +0 -0
  264. package/fonts/Inter/web/Inter-MediumItalic.woff2 +0 -0
  265. package/fonts/Inter/web/Inter-Regular.woff2 +0 -0
  266. package/fonts/Inter/web/Inter-SemiBold.woff2 +0 -0
  267. package/fonts/Inter/web/Inter-SemiBoldItalic.woff2 +0 -0
  268. package/fonts/Inter/web/Inter-Thin.woff2 +0 -0
  269. package/fonts/Inter/web/Inter-ThinItalic.woff2 +0 -0
  270. package/fonts/Inter/web/InterDisplay-Black.woff2 +0 -0
  271. package/fonts/Inter/web/InterDisplay-BlackItalic.woff2 +0 -0
  272. package/fonts/Inter/web/InterDisplay-Bold.woff2 +0 -0
  273. package/fonts/Inter/web/InterDisplay-BoldItalic.woff2 +0 -0
  274. package/fonts/Inter/web/InterDisplay-ExtraBold.woff2 +0 -0
  275. package/fonts/Inter/web/InterDisplay-ExtraBoldItalic.woff2 +0 -0
  276. package/fonts/Inter/web/InterDisplay-ExtraLight.woff2 +0 -0
  277. package/fonts/Inter/web/InterDisplay-ExtraLightItalic.woff2 +0 -0
  278. package/fonts/Inter/web/InterDisplay-Italic.woff2 +0 -0
  279. package/fonts/Inter/web/InterDisplay-Light.woff2 +0 -0
  280. package/fonts/Inter/web/InterDisplay-LightItalic.woff2 +0 -0
  281. package/fonts/Inter/web/InterDisplay-Medium.woff2 +0 -0
  282. package/fonts/Inter/web/InterDisplay-MediumItalic.woff2 +0 -0
  283. package/fonts/Inter/web/InterDisplay-Regular.woff2 +0 -0
  284. package/fonts/Inter/web/InterDisplay-SemiBold.woff2 +0 -0
  285. package/fonts/Inter/web/InterDisplay-SemiBoldItalic.woff2 +0 -0
  286. package/fonts/Inter/web/InterDisplay-Thin.woff2 +0 -0
  287. package/fonts/Inter/web/InterDisplay-ThinItalic.woff2 +0 -0
  288. package/fonts/Inter/web/InterVariable-Italic.woff2 +0 -0
  289. package/fonts/Inter/web/InterVariable.woff2 +0 -0
  290. package/fonts/Inter/web/inter.css +148 -0
  291. package/package.json +52 -0
@@ -0,0 +1,1355 @@
1
+ import { StyleSheet, Platform, StatusBar } from 'react-native';
2
+ import { AppColors } from './AppColors';
3
+ // Utils
4
+ import { AppFonts } from './AppFonts';
5
+ const styles = StyleSheet.create({
6
+ header: {
7
+ flexDirection: 'row',
8
+ alignItems: 'center',
9
+ paddingHorizontal: 16,
10
+ paddingVertical: 12,
11
+ zIndex: 10,
12
+ minHeight: 56,
13
+ shadowColor: '#000000',
14
+ shadowOffset: { width: 0, height: 2 },
15
+ shadowOpacity: 0.08,
16
+ shadowRadius: 4,
17
+ elevation: 4,
18
+ },
19
+ headerLeft: { flex: 1, alignItems: 'flex-start' },
20
+ headerCenter: { flex: 3, alignItems: 'center' },
21
+ headerRight: {
22
+ flex: 1,
23
+ flexDirection: 'row',
24
+ alignItems: 'center',
25
+ justifyContent: 'flex-end',
26
+ },
27
+ headerTitle: {
28
+ fontFamily: AppFonts.interBold,
29
+ color: AppColors.primaryLight,
30
+ fontSize: 18,
31
+ letterSpacing: 0.3,
32
+ },
33
+ headerButtonGroup: {
34
+ flexDirection: 'row',
35
+ alignItems: 'center',
36
+ backgroundColor: 'rgba(255, 255, 255, 0.15)',
37
+ borderRadius: 8,
38
+ padding: 3,
39
+ },
40
+ headerGroupButton: {
41
+ flexDirection: 'row',
42
+ alignItems: 'center',
43
+ paddingHorizontal: 12,
44
+ paddingVertical: 6,
45
+ borderRadius: 6,
46
+ gap: 4,
47
+ },
48
+ headerGroupButtonActive: {
49
+ backgroundColor: 'rgba(255, 255, 255, 0.25)',
50
+ },
51
+ headerGroupButtonText: {
52
+ fontFamily: AppFonts.interBold,
53
+ fontSize: 14,
54
+ color: 'rgba(255, 255, 255, 0.6)',
55
+ letterSpacing: 0.2,
56
+ },
57
+ headerDetailCenter: {
58
+ alignItems: 'center',
59
+ justifyContent: 'center',
60
+ width: '100%',
61
+ },
62
+ headerDetailRow: {
63
+ flexDirection: 'row',
64
+ alignItems: 'center',
65
+ gap: 8,
66
+ maxWidth: '100%',
67
+ },
68
+ headerMethodBadge: {
69
+ paddingHorizontal: 6,
70
+ paddingVertical: 3,
71
+ borderRadius: 6,
72
+ shadowColor: '#000000',
73
+ shadowOffset: { width: 0, height: 1 },
74
+ shadowOpacity: 0.1,
75
+ shadowRadius: 2,
76
+ elevation: 1,
77
+ },
78
+ headerMethodText: {
79
+ fontFamily: AppFonts.interBold,
80
+ color: AppColors.primaryLight,
81
+ fontSize: 10,
82
+ letterSpacing: 0.5,
83
+ },
84
+ headerDetailTitle: {
85
+ fontFamily: AppFonts.interMedium,
86
+ color: AppColors.primaryLight,
87
+ fontSize: 15,
88
+ flexShrink: 1,
89
+ letterSpacing: 0.2,
90
+ },
91
+ headerDetailSubRow: {
92
+ flexDirection: 'row',
93
+ alignItems: 'center',
94
+ gap: 6,
95
+ marginTop: 4,
96
+ },
97
+ headerStatusDot: {
98
+ width: 7,
99
+ height: 7,
100
+ borderRadius: 3.5,
101
+ shadowColor: '#000000',
102
+ shadowOffset: { width: 0, height: 1 },
103
+ shadowOpacity: 0.2,
104
+ shadowRadius: 1,
105
+ elevation: 1,
106
+ },
107
+ headerSubTitle: {
108
+ fontFamily: AppFonts.interMedium,
109
+ color: AppColors.primaryLight,
110
+ fontSize: 11,
111
+ opacity: 0.95,
112
+ letterSpacing: 0.2,
113
+ },
114
+ headerCountBadge: {
115
+ flexDirection: 'row',
116
+ alignItems: 'center',
117
+ backgroundColor: 'rgba(0,0,0,0.2)',
118
+ paddingHorizontal: 12,
119
+ paddingVertical: 6,
120
+ borderRadius: 16,
121
+ gap: 6,
122
+ borderWidth: 0.5,
123
+ borderColor: 'rgba(255,255,255,0.2)',
124
+ shadowColor: '#000000',
125
+ shadowOffset: { width: 0, height: 1 },
126
+ shadowOpacity: 0.1,
127
+ shadowRadius: 2,
128
+ elevation: 2,
129
+ },
130
+ headerCountText: {
131
+ fontFamily: AppFonts.interMedium,
132
+ color: 'rgba(255,255,255,0.95)',
133
+ fontSize: 12,
134
+ letterSpacing: 0.2,
135
+ },
136
+ iconBtnMinimal: { padding: 6 },
137
+ listContent: { paddingBottom: 20 },
138
+ detailScroll: { flex: 1 },
139
+ detailContent: { paddingHorizontal: 8, paddingTop: 10, paddingBottom: 40 },
140
+ fabWrapper: {
141
+ position: 'absolute',
142
+ bottom: 180,
143
+ right: 20,
144
+ alignItems: 'center',
145
+ justifyContent: 'center',
146
+ zIndex: 99999,
147
+ elevation: 15,
148
+ shadowColor: AppColors.purple,
149
+ shadowOffset: { width: 0, height: 8 },
150
+ shadowOpacity: 0.4,
151
+ shadowRadius: 12,
152
+ },
153
+ fabPulseRing: {
154
+ position: 'absolute',
155
+ width: 60,
156
+ height: 60,
157
+ borderRadius: 30,
158
+ backgroundColor: `${AppColors.purple}25`,
159
+ },
160
+ fab: {
161
+ width: 56,
162
+ height: 56,
163
+ borderRadius: 28,
164
+ alignItems: 'center',
165
+ justifyContent: 'center',
166
+ shadowColor: AppColors.shadowColorString,
167
+ shadowOffset: { width: 0, height: 6 },
168
+ shadowOpacity: 0.35,
169
+ shadowRadius: 10,
170
+ elevation: 12,
171
+ },
172
+ fabText: {
173
+ fontFamily: AppFonts.interBold,
174
+ color: AppColors.primaryLight,
175
+ fontSize: 14,
176
+ },
177
+ fabBadge: {
178
+ position: 'absolute',
179
+ top: -6,
180
+ right: -6,
181
+ minWidth: 24,
182
+ height: 24,
183
+ borderRadius: 12,
184
+ alignItems: 'center',
185
+ justifyContent: 'center',
186
+ paddingHorizontal: 6,
187
+ borderWidth: 2.5,
188
+ borderColor: AppColors.primaryLight,
189
+ shadowColor: AppColors.shadowColorString,
190
+ shadowOffset: { width: 0, height: 2 },
191
+ shadowOpacity: 0.2,
192
+ shadowRadius: 3,
193
+ elevation: 3,
194
+ },
195
+ fabBadgeNormal: { backgroundColor: AppColors.purple },
196
+ fabBadgeError: { backgroundColor: AppColors.errorColor },
197
+ fabBadgeText: {
198
+ fontFamily: AppFonts.interBold,
199
+ color: AppColors.primaryLight,
200
+ fontSize: 11,
201
+ },
202
+ dashboardCard: {
203
+ marginHorizontal: 16,
204
+ marginBottom: 16,
205
+ backgroundColor: AppColors.primaryLight,
206
+ borderRadius: 16,
207
+ borderWidth: 1,
208
+ borderColor: AppColors.grayBorderSecondary,
209
+ shadowColor: '#000000',
210
+ shadowOffset: { width: 0, height: 4 },
211
+ shadowOpacity: 0.09,
212
+ shadowRadius: 12,
213
+ elevation: 6,
214
+ overflow: 'hidden',
215
+ },
216
+ dashboardStatsRow: {
217
+ flexDirection: 'row',
218
+ paddingVertical: 14,
219
+ paddingHorizontal: 8,
220
+ },
221
+ statBox: {
222
+ flex: 1,
223
+ alignItems: 'center',
224
+ justifyContent: 'center',
225
+ },
226
+ dashboardStatDivider: {
227
+ width: 1,
228
+ backgroundColor: AppColors.dividerColor,
229
+ height: '80%',
230
+ alignSelf: 'center',
231
+ },
232
+ statValue: {
233
+ fontFamily: AppFonts.interBold,
234
+ color: AppColors.primaryBlack,
235
+ fontSize: 14,
236
+ },
237
+ statLabel: {
238
+ fontFamily: AppFonts.interMedium,
239
+ color: AppColors.grayTextWeak,
240
+ fontSize: 10,
241
+ marginTop: 4,
242
+ textTransform: 'uppercase',
243
+ letterSpacing: 0.5,
244
+ },
245
+ miniGraphWrap: {
246
+ marginTop: 8,
247
+ height: 16,
248
+ alignItems: 'center',
249
+ justifyContent: 'center',
250
+ },
251
+ toolbarRow: {
252
+ flexDirection: 'row',
253
+ alignItems: 'center',
254
+ justifyContent: 'space-between',
255
+ paddingHorizontal: 16,
256
+ marginBottom: 14,
257
+ gap: 10,
258
+ marginTop: 4,
259
+ },
260
+ toolbarRight: {
261
+ flexDirection: 'row',
262
+ alignItems: 'center',
263
+ gap: 10,
264
+ },
265
+ toolbarDivider: {
266
+ width: 1,
267
+ height: 20,
268
+ backgroundColor: AppColors.dividerColor,
269
+ marginHorizontal: 2,
270
+ },
271
+ toolbarBtn: {
272
+ width: 40,
273
+ height: 40,
274
+ borderRadius: 20,
275
+ alignItems: 'center',
276
+ justifyContent: 'center',
277
+ backgroundColor: AppColors.primaryLight,
278
+ borderWidth: 1.5,
279
+ borderColor: AppColors.grayBorderSecondary,
280
+ shadowColor: '#000000',
281
+ shadowOffset: { width: 0, height: 1 },
282
+ shadowOpacity: 0.04,
283
+ shadowRadius: 2,
284
+ elevation: 1,
285
+ },
286
+ toolbarBtnActive: {
287
+ borderColor: AppColors.purple,
288
+ backgroundColor: AppColors.purpleShade50,
289
+ shadowOpacity: 0.08,
290
+ shadowRadius: 3,
291
+ elevation: 2,
292
+ },
293
+ trashBadge: {
294
+ position: 'absolute',
295
+ top: -4,
296
+ right: -4,
297
+ backgroundColor: AppColors.errorColor,
298
+ borderRadius: 10,
299
+ minWidth: 18,
300
+ height: 18,
301
+ alignItems: 'center',
302
+ justifyContent: 'center',
303
+ borderWidth: 1.5,
304
+ borderColor: AppColors.primaryLight,
305
+ },
306
+ trashBadgeText: {
307
+ color: AppColors.primaryLight,
308
+ fontFamily: AppFonts.interBold,
309
+ fontSize: 9,
310
+ },
311
+ filtersContainer: {
312
+ paddingHorizontal: 16,
313
+ paddingBottom: 16,
314
+ },
315
+ filtersHeading: {
316
+ fontFamily: AppFonts.interBold,
317
+ color: AppColors.grayTextStrong,
318
+ fontSize: 12,
319
+ textTransform: 'uppercase',
320
+ letterSpacing: 0.6,
321
+ marginBottom: 8,
322
+ },
323
+ statusRowContent: {
324
+ alignItems: 'center',
325
+ paddingVertical: 4,
326
+ },
327
+ statusFilterWrap: { marginRight: 8 },
328
+ statusFilterChip: {
329
+ paddingHorizontal: 16,
330
+ height: 38,
331
+ justifyContent: 'center',
332
+ alignItems: 'center',
333
+ borderRadius: 24,
334
+ borderWidth: 1.5,
335
+ borderColor: AppColors.grayBorderSecondary,
336
+ backgroundColor: AppColors.primaryLight,
337
+ shadowColor: '#000000',
338
+ shadowOffset: { width: 0, height: 1 },
339
+ shadowOpacity: 0.03,
340
+ shadowRadius: 2,
341
+ elevation: 1,
342
+ },
343
+ statusFilterActive: {
344
+ borderColor: AppColors.purple,
345
+ backgroundColor: AppColors.purpleShade50,
346
+ },
347
+ statusFilterText: {
348
+ fontFamily: AppFonts.interMedium,
349
+ color: AppColors.grayText,
350
+ fontSize: 13,
351
+ },
352
+ resultCount: {
353
+ fontFamily: AppFonts.interRegular,
354
+ color: AppColors.grayTextWeak,
355
+ fontSize: 12,
356
+ marginHorizontal: 16,
357
+ marginBottom: 8,
358
+ marginTop: 4,
359
+ letterSpacing: 0.2,
360
+ },
361
+ searchContainer: {
362
+ flex: 1,
363
+ flexDirection: 'row',
364
+ alignItems: 'center',
365
+ backgroundColor: AppColors.primaryLight,
366
+ borderRadius: 24,
367
+ paddingHorizontal: 14,
368
+ paddingVertical: 6,
369
+ borderWidth: 1.5,
370
+ borderColor: AppColors.grayBorderSecondary,
371
+ shadowColor: '#000000',
372
+ shadowOffset: { width: 0, height: 1 },
373
+ shadowOpacity: 0.04,
374
+ shadowRadius: 2,
375
+ elevation: 1,
376
+ },
377
+ searchInput: {
378
+ flex: 1,
379
+ fontFamily: AppFonts.interRegular,
380
+ color: AppColors.primaryBlack,
381
+ paddingVertical: Platform.OS === 'ios' ? 8 : 4,
382
+ marginLeft: 8,
383
+ fontSize: 14,
384
+ },
385
+ clearBtn: { padding: 4 },
386
+ clearBtnText: {
387
+ fontFamily: AppFonts.interRegular,
388
+ color: AppColors.grayTextWeak,
389
+ fontSize: 14,
390
+ },
391
+ menuDropdown: {
392
+ position: 'absolute',
393
+ top: Platform.OS === 'android' ? (StatusBar.currentHeight || 24) + 60 : 90,
394
+ width: 170,
395
+ backgroundColor: AppColors.primaryLight,
396
+ borderRadius: 14,
397
+ borderWidth: 1,
398
+ borderColor: AppColors.grayBorderSecondary,
399
+ zIndex: 999,
400
+ shadowColor: '#000000',
401
+ shadowOffset: { width: 0, height: 8 },
402
+ shadowOpacity: 0.15,
403
+ shadowRadius: 12,
404
+ elevation: 8,
405
+ overflow: 'hidden',
406
+ },
407
+ dropdownItem: {
408
+ padding: 13,
409
+ borderBottomWidth: 1,
410
+ borderBottomColor: AppColors.dividerColor,
411
+ },
412
+ domainHeaderSeparator: {
413
+ marginTop: 12,
414
+ paddingTop: 16,
415
+ borderTopWidth: 1,
416
+ borderTopColor: AppColors.dividerColor,
417
+ },
418
+ domainHeaderRow: {
419
+ flexDirection: 'row',
420
+ alignItems: 'center',
421
+ justifyContent: 'space-between',
422
+ paddingLeft: 20,
423
+ paddingRight: 16,
424
+ marginTop: 12,
425
+ marginBottom: 6,
426
+ },
427
+ domainHeaderLeft: {
428
+ flexDirection: 'row',
429
+ alignItems: 'center',
430
+ flex: 1,
431
+ paddingRight: 10,
432
+ gap: 6,
433
+ },
434
+ domainHeaderText: {
435
+ fontFamily: AppFonts.interBold,
436
+ fontSize: 14,
437
+ fontWeight: '700',
438
+ textTransform: 'capitalize',
439
+ flexShrink: 1,
440
+ marginLeft: 2,
441
+ },
442
+ domainSubRow: {
443
+ flexDirection: 'row',
444
+ alignItems: 'center',
445
+ flexWrap: 'wrap',
446
+ marginTop: 2,
447
+ },
448
+ domainTimestamp: {
449
+ fontFamily: AppFonts.interRegular,
450
+ fontSize: 10,
451
+ color: AppColors.grayTextWeak,
452
+ },
453
+ domainMethodCount: {
454
+ fontFamily: AppFonts.interBold,
455
+ fontSize: 9,
456
+ marginLeft: 4,
457
+ },
458
+ domainStatsGroup: {
459
+ flexDirection: 'row',
460
+ alignItems: 'center',
461
+ borderRadius: 8,
462
+ borderWidth: 1,
463
+ borderColor: AppColors.grayBorderSecondary,
464
+ overflow: 'hidden',
465
+ backgroundColor: AppColors.grayBackground,
466
+ },
467
+ groupBtnItem: {
468
+ flexDirection: 'row',
469
+ alignItems: 'center',
470
+ gap: 4,
471
+ paddingHorizontal: 8,
472
+ paddingVertical: 5,
473
+ },
474
+ groupBtnBorderRight: {
475
+ borderRightWidth: 1,
476
+ borderRightColor: AppColors.grayBorderSecondary,
477
+ },
478
+ domainStatText: {
479
+ fontFamily: AppFonts.interBold,
480
+ fontSize: 10,
481
+ },
482
+ treeNodeRow: {
483
+ flexDirection: 'row',
484
+ alignItems: 'stretch',
485
+ paddingRight: 16,
486
+ },
487
+ treeLines: {
488
+ width: 40,
489
+ position: 'relative',
490
+ },
491
+ modernTreeLine: {
492
+ position: 'absolute',
493
+ left: 23,
494
+ top: 0,
495
+ width: 16,
496
+ height: '100%',
497
+ borderLeftWidth: 1.5,
498
+ opacity: 0.5,
499
+ },
500
+ modernTreeLineLast: {
501
+ height: '50%',
502
+ borderBottomWidth: 1.5,
503
+ borderBottomLeftRadius: 12,
504
+ },
505
+ modernTreeBranch: {
506
+ position: 'absolute',
507
+ left: 23,
508
+ top: '50%',
509
+ width: 16,
510
+ borderTopWidth: 1.5,
511
+ opacity: 0.5,
512
+ },
513
+ treeCardWrapper: {
514
+ flex: 1,
515
+ paddingVertical: 4,
516
+ },
517
+ card: {
518
+ marginHorizontal: 0,
519
+ marginVertical: 0,
520
+ borderRadius: 14,
521
+ overflow: 'hidden',
522
+ shadowColor: '#000000',
523
+ shadowOffset: { width: 0, height: 3 },
524
+ shadowOpacity: 0.08,
525
+ shadowRadius: 6,
526
+ elevation: 3,
527
+ borderWidth: 1,
528
+ borderColor: AppColors.grayBorderSecondary,
529
+ backgroundColor: AppColors.primaryLight,
530
+ },
531
+ cardBody: { paddingHorizontal: 12, paddingTop: 12, paddingBottom: 10 },
532
+ cardTopRow: {
533
+ flexDirection: 'row',
534
+ alignItems: 'center',
535
+ marginBottom: 6,
536
+ },
537
+ smallCheckbox: {
538
+ width: 13,
539
+ height: 13,
540
+ borderRadius: 4,
541
+ borderWidth: 1.5,
542
+ borderColor: AppColors.grayTextWeak,
543
+ alignItems: 'center',
544
+ justifyContent: 'center',
545
+ backgroundColor: '#fff',
546
+ marginRight: 8,
547
+ },
548
+ smallCheckboxChecked: {
549
+ backgroundColor: AppColors.purple,
550
+ borderColor: AppColors.purple,
551
+ },
552
+ serialNumber: {
553
+ fontFamily: AppFonts.interBold,
554
+ color: AppColors.grayTextWeak,
555
+ fontSize: 10,
556
+ marginRight: 6,
557
+ minWidth: 20,
558
+ },
559
+ chip: {
560
+ flexDirection: 'row',
561
+ alignItems: 'center',
562
+ gap: 4,
563
+ paddingHorizontal: 6,
564
+ paddingVertical: 3,
565
+ borderRadius: 8,
566
+ borderWidth: 1,
567
+ },
568
+ chipText: {
569
+ fontFamily: AppFonts.interBold,
570
+ fontSize: 10,
571
+ },
572
+ cardMiddleRow: {
573
+ flexDirection: 'row',
574
+ alignItems: 'center',
575
+ justifyContent: 'space-between',
576
+ marginBottom: 6,
577
+ },
578
+ cardBottomRow: {
579
+ flexDirection: 'row',
580
+ alignItems: 'center',
581
+ justifyContent: 'space-between',
582
+ marginBottom: 6,
583
+ },
584
+ cardDateRow: {
585
+ flexDirection: 'row',
586
+ alignItems: 'center',
587
+ gap: 4,
588
+ },
589
+ cardDateText: {
590
+ fontFamily: AppFonts.interRegular,
591
+ color: AppColors.grayTextWeak,
592
+ fontSize: 10,
593
+ letterSpacing: 0.2,
594
+ },
595
+ cardMetaRow: {
596
+ flexDirection: 'row',
597
+ alignItems: 'center',
598
+ gap: 6,
599
+ flexShrink: 0,
600
+ },
601
+ urlPathText: {
602
+ fontFamily: AppFonts.interMedium,
603
+ color: AppColors.primaryBlack,
604
+ fontSize: 13,
605
+ flexShrink: 1,
606
+ },
607
+ urlDomainText: {
608
+ fontFamily: AppFonts.interRegular,
609
+ color: AppColors.grayText,
610
+ fontSize: 11,
611
+ flex: 1,
612
+ },
613
+ requestTypeText: {
614
+ fontFamily: AppFonts.interRegular,
615
+ color: AppColors.grayText,
616
+ fontSize: 10,
617
+ },
618
+ methodBadge: {
619
+ paddingHorizontal: 10,
620
+ paddingVertical: 5,
621
+ borderRadius: 8,
622
+ marginRight: 8,
623
+ shadowColor: '#000000',
624
+ shadowOffset: { width: 0, height: 1 },
625
+ shadowOpacity: 0.08,
626
+ shadowRadius: 2,
627
+ elevation: 1,
628
+ },
629
+ methodBadgeText: {
630
+ fontFamily: AppFonts.interBold,
631
+ fontSize: 11,
632
+ letterSpacing: 0.6,
633
+ },
634
+ timelineTrack: {
635
+ height: 3,
636
+ backgroundColor: AppColors.graySurface,
637
+ marginTop: 4,
638
+ borderRadius: 1.5,
639
+ overflow: 'hidden',
640
+ position: 'relative',
641
+ },
642
+ timelineBar: { position: 'absolute', height: '100%', borderRadius: 1.5 },
643
+ empty: {
644
+ flex: 1,
645
+ alignItems: 'center',
646
+ justifyContent: 'center',
647
+ },
648
+ emptyIcon: { fontSize: 32, color: AppColors.grayTextWeak },
649
+ emptyContainer: {
650
+ flex: 1,
651
+ alignItems: 'center',
652
+ justifyContent: 'center',
653
+ paddingVertical: 80,
654
+ paddingHorizontal: 20,
655
+ },
656
+ emptyIconWrap: {
657
+ width: 72,
658
+ height: 72,
659
+ borderRadius: 36,
660
+ backgroundColor: AppColors.purpleShade50,
661
+ alignItems: 'center',
662
+ justifyContent: 'center',
663
+ marginBottom: 20,
664
+ shadowColor: '#000000',
665
+ shadowOffset: { width: 0, height: 2 },
666
+ shadowOpacity: 0.06,
667
+ shadowRadius: 4,
668
+ elevation: 1,
669
+ },
670
+ emptyTitle: {
671
+ fontFamily: AppFonts.interBold,
672
+ color: AppColors.grayTextStrong,
673
+ fontSize: 18,
674
+ marginBottom: 8,
675
+ letterSpacing: 0.3,
676
+ },
677
+ emptySub: {
678
+ fontFamily: AppFonts.interRegular,
679
+ color: AppColors.grayTextWeak,
680
+ fontSize: 14,
681
+ textAlign: 'center',
682
+ lineHeight: 20,
683
+ letterSpacing: 0.2,
684
+ },
685
+ reloadBtn: {
686
+ marginTop: 28,
687
+ paddingHorizontal: 24,
688
+ paddingVertical: 12,
689
+ backgroundColor: AppColors.purple,
690
+ borderRadius: 24,
691
+ shadowColor: AppColors.purple,
692
+ shadowOffset: { width: 0, height: 4 },
693
+ shadowOpacity: 0.35,
694
+ shadowRadius: 8,
695
+ elevation: 5,
696
+ },
697
+ reloadBtnText: {
698
+ color: '#FFF',
699
+ fontFamily: AppFonts.interBold,
700
+ fontSize: 14,
701
+ letterSpacing: 0.3,
702
+ },
703
+ detailInfoBar: {
704
+ borderRadius: 14,
705
+ paddingVertical: 14,
706
+ paddingHorizontal: 10,
707
+ marginBottom: 12,
708
+ borderWidth: 1,
709
+ borderColor: AppColors.grayBorderSecondary,
710
+ backgroundColor: AppColors.primaryLight,
711
+ shadowColor: '#000000',
712
+ shadowOffset: { width: 0, height: 2 },
713
+ shadowOpacity: 0.05,
714
+ shadowRadius: 4,
715
+ elevation: 2,
716
+ },
717
+ detailInfoTop: {
718
+ flexDirection: 'row',
719
+ alignItems: 'center',
720
+ justifyContent: 'space-between',
721
+ paddingBottom: 10,
722
+ },
723
+ detailInfoRight: { flexDirection: 'row', alignItems: 'center', gap: 6 },
724
+ detailMethodLabel: {
725
+ fontFamily: AppFonts.interBold,
726
+ fontSize: 14,
727
+ letterSpacing: 0.5,
728
+ },
729
+ detailUrlContainer: {
730
+ backgroundColor: AppColors.grayBackground,
731
+ borderRadius: 10,
732
+ padding: 13,
733
+ borderWidth: 1,
734
+ borderColor: AppColors.grayBorderSecondary,
735
+ shadowColor: '#000000',
736
+ shadowOffset: { width: 0, height: 1 },
737
+ shadowOpacity: 0.04,
738
+ shadowRadius: 2,
739
+ elevation: 1,
740
+ },
741
+ detailUrl: {
742
+ fontFamily: AppFonts.interRegular,
743
+ color: AppColors.purple,
744
+ fontSize: 13,
745
+ lineHeight: 20,
746
+ textDecorationLine: 'underline',
747
+ letterSpacing: 0.2,
748
+ },
749
+ metaContainer: {
750
+ backgroundColor: AppColors.primaryLight,
751
+ borderWidth: 1,
752
+ borderColor: AppColors.grayBorderSecondary,
753
+ borderRadius: 14,
754
+ marginBottom: 12,
755
+ overflow: 'hidden',
756
+ shadowColor: '#000000',
757
+ shadowOffset: { width: 0, height: 2 },
758
+ shadowOpacity: 0.05,
759
+ shadowRadius: 4,
760
+ elevation: 2,
761
+ },
762
+ metaHeader: {
763
+ flexDirection: 'row',
764
+ alignItems: 'center',
765
+ justifyContent: 'space-between',
766
+ paddingHorizontal: 12,
767
+ paddingVertical: 10,
768
+ borderBottomWidth: 1,
769
+ borderBottomColor: AppColors.dividerColor,
770
+ backgroundColor: AppColors.primaryLight,
771
+ },
772
+ metaTitle: {
773
+ fontFamily: AppFonts.interBold,
774
+ color: AppColors.grayTextStrong,
775
+ fontSize: 12,
776
+ letterSpacing: 0.6,
777
+ textTransform: 'uppercase',
778
+ },
779
+ metaChevron: {
780
+ fontFamily: AppFonts.interRegular,
781
+ color: AppColors.grayTextWeak,
782
+ fontSize: 11,
783
+ },
784
+ metaBody: { paddingHorizontal: 12, paddingBottom: 8, paddingTop: 4 },
785
+ metaRow: {
786
+ flexDirection: 'row',
787
+ alignItems: 'center',
788
+ justifyContent: 'space-between',
789
+ paddingVertical: 8,
790
+ },
791
+ metaDivider: { height: 1, backgroundColor: AppColors.dividerColor },
792
+ metaLabelRow: { flexDirection: 'row', alignItems: 'center', gap: 8 },
793
+ metaLabel: {
794
+ fontFamily: AppFonts.interRegular,
795
+ color: AppColors.grayText,
796
+ fontSize: 13,
797
+ },
798
+ metaValue: {
799
+ fontFamily: AppFonts.interMedium,
800
+ color: AppColors.primaryBlack,
801
+ fontSize: 13,
802
+ },
803
+ metaValueRow: { flexDirection: 'row', alignItems: 'center', gap: 8 },
804
+ perfBadge: {
805
+ paddingHorizontal: 8,
806
+ paddingVertical: 2,
807
+ borderRadius: 6,
808
+ borderWidth: 1,
809
+ },
810
+ perfBadgeText: {
811
+ fontFamily: AppFonts.interBold,
812
+ fontSize: 11,
813
+ },
814
+ seperator: {
815
+ height: 1,
816
+ backgroundColor: AppColors.dividerColor,
817
+ marginVertical: 10,
818
+ },
819
+ detailSearchRow: {
820
+ flexDirection: 'row',
821
+ alignItems: 'center',
822
+ marginBottom: 10,
823
+ },
824
+ detailSearchBox: {
825
+ flex: 1,
826
+ flexDirection: 'row',
827
+ alignItems: 'center',
828
+ justifyContent: 'space-between',
829
+ backgroundColor: AppColors.primaryLight,
830
+ borderRadius: 12,
831
+ paddingLeft: 16,
832
+ borderWidth: 1,
833
+ borderColor: AppColors.grayBorderSecondary,
834
+ },
835
+ detailSearchInput: {
836
+ flex: 1,
837
+ fontFamily: AppFonts.interRegular,
838
+ color: AppColors.primaryBlack,
839
+ height: 40,
840
+ },
841
+ sectionContainer: {
842
+ backgroundColor: AppColors.primaryLight,
843
+ borderWidth: 1,
844
+ borderColor: AppColors.grayBorderSecondary,
845
+ borderRadius: 12,
846
+ marginBottom: 10,
847
+ overflow: 'hidden',
848
+ },
849
+ sectionHeaderGradient: {
850
+ backgroundColor: '#f9f9fa',
851
+ paddingVertical: 12,
852
+ paddingHorizontal: 8,
853
+ borderBottomWidth: 1,
854
+ borderBottomColor: AppColors.dividerColor,
855
+ },
856
+ sectionHeaderRow: {
857
+ flexDirection: 'row',
858
+ alignItems: 'center',
859
+ justifyContent: 'space-between',
860
+ },
861
+ sectionTitleRow: {
862
+ flexDirection: 'row',
863
+ alignItems: 'center',
864
+ gap: 8,
865
+ flex: 1,
866
+ marginRight: 8,
867
+ },
868
+ sectionTitle: {
869
+ fontFamily: AppFonts.interBold,
870
+ color: AppColors.grayTextStrong,
871
+ fontSize: 14,
872
+ flexShrink: 1,
873
+ },
874
+ sectionHeaderActions: { flexDirection: 'row', alignItems: 'center', gap: 6 },
875
+ htCard: {
876
+ backgroundColor: AppColors.primaryLight,
877
+ borderRadius: 12,
878
+ borderWidth: 1,
879
+ borderColor: AppColors.grayBorderSecondary,
880
+ borderLeftWidth: 3,
881
+ marginBottom: 10,
882
+ overflow: 'hidden',
883
+ },
884
+ htCardHeader: {
885
+ flexDirection: 'row',
886
+ alignItems: 'center',
887
+ paddingHorizontal: 8,
888
+ paddingVertical: 10,
889
+ gap: 8,
890
+ borderBottomWidth: 1,
891
+ borderBottomColor: AppColors.dividerColor,
892
+ backgroundColor: AppColors.primaryLight,
893
+ },
894
+ htIconWrap: {
895
+ width: 28,
896
+ height: 28,
897
+ borderRadius: 8,
898
+ alignItems: 'center',
899
+ justifyContent: 'center',
900
+ },
901
+ htTitle: {
902
+ fontFamily: AppFonts.interBold,
903
+ color: AppColors.grayTextStrong,
904
+ fontSize: 13,
905
+ flexShrink: 1,
906
+ },
907
+ htBadge: {
908
+ borderRadius: 10,
909
+ paddingHorizontal: 7,
910
+ paddingVertical: 2,
911
+ borderWidth: 1,
912
+ },
913
+ htBadgeText: {
914
+ fontFamily: AppFonts.interBold,
915
+ fontSize: 10,
916
+ },
917
+ htHeaderSpacer: { flex: 1 },
918
+ htChevronBtn: {
919
+ width: 30,
920
+ height: 30,
921
+ borderRadius: 8,
922
+ borderWidth: 1,
923
+ borderColor: AppColors.grayBorderSecondary,
924
+ backgroundColor: AppColors.primaryLight,
925
+ alignItems: 'center',
926
+ justifyContent: 'center',
927
+ },
928
+ htColHeadRow: {
929
+ flexDirection: 'row',
930
+ paddingHorizontal: 8,
931
+ paddingVertical: 6,
932
+ backgroundColor: AppColors.graySurface,
933
+ borderBottomWidth: 1,
934
+ borderBottomColor: AppColors.dividerColor,
935
+ },
936
+ htColHead: {
937
+ fontFamily: AppFonts.interBold,
938
+ color: AppColors.grayTextWeak,
939
+ fontSize: 10,
940
+ letterSpacing: 0.8,
941
+ textTransform: 'uppercase',
942
+ },
943
+ htRow: {
944
+ flexDirection: 'row',
945
+ paddingHorizontal: 8,
946
+ paddingVertical: 0,
947
+ alignItems: 'flex-start',
948
+ },
949
+ htRowBorder: {
950
+ borderBottomWidth: StyleSheet.hairlineWidth,
951
+ borderBottomColor: AppColors.dividerColor,
952
+ },
953
+ htKeyCell: {
954
+ width: '30%',
955
+ paddingVertical: 10,
956
+ paddingRight: 4,
957
+ },
958
+ htKey: {
959
+ fontFamily: AppFonts.interMedium,
960
+ color: AppColors.purple,
961
+ fontSize: 11,
962
+ lineHeight: 16,
963
+ },
964
+ htCellDivider: {
965
+ width: StyleSheet.hairlineWidth,
966
+ backgroundColor: AppColors.dividerColor,
967
+ alignSelf: 'stretch',
968
+ marginVertical: 4,
969
+ },
970
+ htValueCell: {
971
+ flex: 1,
972
+ paddingVertical: 10,
973
+ paddingLeft: 6,
974
+ },
975
+ htValue: {
976
+ fontFamily: AppFonts.interRegular,
977
+ color: AppColors.primaryBlack,
978
+ fontSize: 11,
979
+ lineHeight: 17,
980
+ },
981
+ htExpandRow: {
982
+ marginTop: 4,
983
+ },
984
+ htExpandText: {
985
+ fontFamily: AppFonts.interBold,
986
+ color: AppColors.purple,
987
+ fontSize: 10,
988
+ letterSpacing: 0.3,
989
+ },
990
+ htCopyBtn: {
991
+ paddingHorizontal: 6,
992
+ paddingVertical: 12,
993
+ alignItems: 'center',
994
+ justifyContent: 'center',
995
+ },
996
+ htEmpty: {
997
+ paddingHorizontal: 12,
998
+ paddingVertical: 16,
999
+ alignItems: 'center',
1000
+ },
1001
+ htEmptyText: {
1002
+ fontFamily: AppFonts.interRegular,
1003
+ color: AppColors.grayTextWeak,
1004
+ fontSize: 12,
1005
+ },
1006
+ iconSquareBtn: {
1007
+ width: 30,
1008
+ height: 30,
1009
+ borderRadius: 8,
1010
+ borderWidth: 1,
1011
+ borderColor: AppColors.grayBorderSecondary,
1012
+ backgroundColor: AppColors.grayBackground,
1013
+ alignItems: 'center',
1014
+ justifyContent: 'center',
1015
+ },
1016
+ iconSquareBtnSuccess: {
1017
+ borderColor: AppColors.greenColor,
1018
+ backgroundColor: AppColors.greenStatus,
1019
+ },
1020
+ iconSquareBtnActive: {
1021
+ borderColor: AppColors.skyBlue,
1022
+ backgroundColor: AppColors.purpleShade50,
1023
+ },
1024
+ codeBlockScroll: { width: '100%', backgroundColor: 'transparent' },
1025
+ codeBlock: {
1026
+ paddingTop: 12,
1027
+ paddingHorizontal: 8,
1028
+ paddingBottom: 16,
1029
+ minWidth: '100%',
1030
+ },
1031
+ codeSyntax: {
1032
+ color: AppColors.grayTextWeak,
1033
+ fontFamily: Platform.OS === 'ios' ? 'Menlo' : 'monospace',
1034
+ },
1035
+ codeKey: {
1036
+ color: AppColors.purple,
1037
+ fontFamily: Platform.OS === 'ios' ? 'Menlo' : 'monospace',
1038
+ },
1039
+ codeText: {
1040
+ color: AppColors.greenBaggageText,
1041
+ fontFamily: Platform.OS === 'ios' ? 'Menlo' : 'monospace',
1042
+ },
1043
+ codeTextNil: {
1044
+ color: AppColors.errorColor,
1045
+ fontFamily: Platform.OS === 'ios' ? 'Menlo' : 'monospace',
1046
+ },
1047
+ treeRow: { flexDirection: 'row', alignItems: 'center', paddingVertical: 6 },
1048
+ treeChevron: {
1049
+ fontFamily: AppFonts.interRegular,
1050
+ color: AppColors.grayTextWeak,
1051
+ marginRight: 8,
1052
+ },
1053
+ treeKeyMargin: { marginRight: 6 },
1054
+ highlight: {
1055
+ backgroundColor: AppColors.paleYellow,
1056
+ color: AppColors.primaryBlack,
1057
+ },
1058
+ arrayBadge: {
1059
+ backgroundColor: AppColors.purpleShade50,
1060
+ borderColor: AppColors.purple,
1061
+ borderWidth: 1,
1062
+ borderRadius: 6,
1063
+ paddingHorizontal: 6,
1064
+ paddingVertical: 2,
1065
+ },
1066
+ arrayBadgeText: {
1067
+ fontFamily: AppFonts.interMedium,
1068
+ color: AppColors.purple,
1069
+ fontSize: 11,
1070
+ },
1071
+ objectBadge: {
1072
+ backgroundColor: AppColors.grayBackground,
1073
+ borderColor: AppColors.grayTextWeak,
1074
+ borderWidth: 1,
1075
+ borderRadius: 6,
1076
+ paddingHorizontal: 6,
1077
+ paddingVertical: 2,
1078
+ },
1079
+ objectBadgeText: {
1080
+ fontFamily: AppFonts.interMedium,
1081
+ color: AppColors.grayTextWeak,
1082
+ fontSize: 11,
1083
+ },
1084
+ diffBlock: { paddingTop: 12, paddingHorizontal: 12, paddingBottom: 16, gap: 4 },
1085
+ diffAdded: {
1086
+ color: AppColors.greenColor,
1087
+ fontFamily: Platform.OS === 'ios' ? 'Menlo' : 'monospace',
1088
+ fontSize: 12,
1089
+ },
1090
+ diffRemoved: {
1091
+ color: AppColors.errorColor,
1092
+ fontFamily: Platform.OS === 'ios' ? 'Menlo' : 'monospace',
1093
+ fontSize: 12,
1094
+ },
1095
+ diffChanged: {
1096
+ color: AppColors.lightOrange,
1097
+ fontFamily: Platform.OS === 'ios' ? 'Menlo' : 'monospace',
1098
+ fontSize: 12,
1099
+ },
1100
+ filePreviewNode: { paddingVertical: 8, marginVertical: 4 },
1101
+ filePreviewCard: {
1102
+ flexDirection: 'row',
1103
+ alignItems: 'center',
1104
+ backgroundColor: AppColors.grayBackground,
1105
+ borderRadius: 10,
1106
+ padding: 10,
1107
+ borderWidth: 1,
1108
+ borderColor: AppColors.grayBorderSecondary,
1109
+ gap: 12,
1110
+ maxWidth: 300,
1111
+ },
1112
+ filePreviewThumb: {
1113
+ width: 44,
1114
+ height: 44,
1115
+ borderRadius: 6,
1116
+ backgroundColor: AppColors.grayBorderSecondary,
1117
+ },
1118
+ filePreviewDoc: {
1119
+ width: 44,
1120
+ height: 44,
1121
+ borderRadius: 6,
1122
+ backgroundColor: AppColors.graySurface,
1123
+ alignItems: 'center',
1124
+ justifyContent: 'center',
1125
+ },
1126
+ filePreviewName: {
1127
+ fontFamily: AppFonts.interMedium,
1128
+ color: AppColors.primaryBlack,
1129
+ fontSize: 13,
1130
+ marginBottom: 2,
1131
+ },
1132
+ filePreviewType: {
1133
+ fontFamily: AppFonts.interRegular,
1134
+ color: AppColors.grayText,
1135
+ fontSize: 11,
1136
+ },
1137
+ imagePreviewWrapper: {
1138
+ width: '100%',
1139
+ height: 200,
1140
+ borderRadius: 12,
1141
+ overflow: 'hidden',
1142
+ marginBottom: 16,
1143
+ backgroundColor: AppColors.grayBackground,
1144
+ borderWidth: 1,
1145
+ borderColor: AppColors.grayBorderSecondary,
1146
+ },
1147
+ imagePreview: {
1148
+ width: '100%',
1149
+ height: '100%',
1150
+ },
1151
+ imageDownloadBtn: {
1152
+ position: 'absolute',
1153
+ bottom: 12,
1154
+ right: 12,
1155
+ width: 36,
1156
+ height: 36,
1157
+ borderRadius: 18,
1158
+ backgroundColor: 'rgba(255, 255, 255, 0.9)',
1159
+ alignItems: 'center',
1160
+ justifyContent: 'center',
1161
+ shadowColor: '#000',
1162
+ shadowOffset: { width: 0, height: 2 },
1163
+ shadowOpacity: 0.2,
1164
+ shadowRadius: 4,
1165
+ elevation: 3,
1166
+ },
1167
+ sourcePageCard: {
1168
+ backgroundColor: AppColors.primaryLight,
1169
+ borderWidth: 1,
1170
+ borderColor: AppColors.grayBorderSecondary,
1171
+ borderRadius: 12,
1172
+ marginBottom: 10,
1173
+ overflow: 'hidden',
1174
+ },
1175
+ sourcePageAccordionHeader: {
1176
+ flexDirection: 'row',
1177
+ alignItems: 'center',
1178
+ justifyContent: 'space-between',
1179
+ paddingHorizontal: 12,
1180
+ paddingVertical: 10,
1181
+ borderBottomWidth: 1,
1182
+ borderBottomColor: AppColors.dividerColor,
1183
+ backgroundColor: AppColors.primaryLight,
1184
+ },
1185
+ sourcePageTop: {
1186
+ flexDirection: 'row',
1187
+ alignItems: 'center',
1188
+ gap: 10,
1189
+ flex: 1,
1190
+ },
1191
+ sourcePageHeaderRight: {
1192
+ flexDirection: 'row',
1193
+ alignItems: 'center',
1194
+ gap: 6,
1195
+ },
1196
+ sourcePageIcon: {
1197
+ width: 36,
1198
+ height: 36,
1199
+ borderRadius: 10,
1200
+ backgroundColor: AppColors.purpleShade50,
1201
+ borderWidth: 1,
1202
+ borderColor: `${AppColors.purple}30`,
1203
+ alignItems: 'center',
1204
+ justifyContent: 'center',
1205
+ },
1206
+ sourcePageLabel: {
1207
+ fontFamily: AppFonts.interRegular,
1208
+ color: AppColors.grayText,
1209
+ fontSize: 11,
1210
+ marginBottom: 2,
1211
+ },
1212
+ sourcePageValue: {
1213
+ fontFamily: AppFonts.interBold,
1214
+ color: AppColors.purple,
1215
+ fontSize: 14,
1216
+ },
1217
+ sourceParamsBox: {
1218
+ borderTopWidth: 1,
1219
+ borderTopColor: AppColors.dividerColor,
1220
+ },
1221
+ paramsAccordionHeader: {
1222
+ flexDirection: 'row',
1223
+ alignItems: 'center',
1224
+ justifyContent: 'space-between',
1225
+ paddingHorizontal: 12,
1226
+ paddingVertical: 10,
1227
+ borderBottomWidth: 1,
1228
+ borderBottomColor: AppColors.dividerColor,
1229
+ backgroundColor: '#fafafa',
1230
+ },
1231
+ paramsAccordionLeft: {
1232
+ flexDirection: 'row',
1233
+ alignItems: 'center',
1234
+ gap: 8,
1235
+ },
1236
+ paramsAccordionRight: {
1237
+ flexDirection: 'row',
1238
+ alignItems: 'center',
1239
+ gap: 6,
1240
+ },
1241
+ sourceParamsLabel: {
1242
+ fontFamily: AppFonts.interBold,
1243
+ color: AppColors.grayTextStrong,
1244
+ fontSize: 12,
1245
+ letterSpacing: 0.4,
1246
+ textTransform: 'uppercase',
1247
+ },
1248
+ paramsBody: {
1249
+ paddingHorizontal: 12,
1250
+ paddingBottom: 8,
1251
+ paddingTop: 4,
1252
+ },
1253
+ paramRow: {
1254
+ flexDirection: 'row',
1255
+ alignItems: 'center',
1256
+ justifyContent: 'space-between',
1257
+ paddingVertical: 10,
1258
+ gap: 8,
1259
+ },
1260
+ paramRowBorder: {
1261
+ borderBottomWidth: 1,
1262
+ borderBottomColor: AppColors.dividerColor,
1263
+ },
1264
+ paramKey: {
1265
+ fontFamily: AppFonts.Sfprotext,
1266
+ color: AppColors.purple,
1267
+ fontSize: 12,
1268
+ flex: 1,
1269
+ },
1270
+ paramValueRow: {
1271
+ flexDirection: 'row',
1272
+ alignItems: 'center',
1273
+ gap: 8,
1274
+ flex: 2,
1275
+ justifyContent: 'flex-end',
1276
+ },
1277
+ paramValue: {
1278
+ fontFamily: AppFonts.Sfprotext,
1279
+ color: AppColors.greenBaggageText,
1280
+ fontSize: 12,
1281
+ textAlign: 'right',
1282
+ flexShrink: 1,
1283
+ },
1284
+ headerGradient: {
1285
+ width: '100%',
1286
+ },
1287
+ // Status chip used in MetaAccordion
1288
+ statusChip: {
1289
+ paddingHorizontal: 10,
1290
+ paddingVertical: 4,
1291
+ borderRadius: 8,
1292
+ borderWidth: 1,
1293
+ },
1294
+ statusText: {
1295
+ fontFamily: AppFonts.interBold,
1296
+ fontSize: 12,
1297
+ },
1298
+ // ─── Tab Bar ───────────────────────────────────────────────────────────────
1299
+ tabBar: {
1300
+ flexDirection: 'row',
1301
+ backgroundColor: AppColors.grayBackground,
1302
+ paddingHorizontal: 12,
1303
+ paddingTop: 10,
1304
+ paddingBottom: 4,
1305
+ gap: 8,
1306
+ },
1307
+ tabItem: {
1308
+ paddingHorizontal: 16,
1309
+ paddingVertical: 8,
1310
+ borderRadius: 10,
1311
+ alignItems: 'center',
1312
+ justifyContent: 'center',
1313
+ backgroundColor: '#EDEDF4',
1314
+ },
1315
+ tabItemActive: {
1316
+ backgroundColor: AppColors.purple,
1317
+ shadowColor: AppColors.purple,
1318
+ shadowOpacity: 0.3,
1319
+ shadowRadius: 6,
1320
+ shadowOffset: { width: 0, height: 2 },
1321
+ elevation: 3,
1322
+ },
1323
+ tabText: {
1324
+ fontFamily: AppFonts.interBold,
1325
+ fontSize: 13,
1326
+ color: AppColors.grayText,
1327
+ },
1328
+ tabTextActive: {
1329
+ color: '#FFFFFF',
1330
+ },
1331
+ // ─── Screen Grouping Headers ───────────────────────────────────────────────
1332
+ screenSectionHeader: {
1333
+ flexDirection: 'row',
1334
+ alignItems: 'center',
1335
+ justifyContent: 'space-between',
1336
+ paddingHorizontal: 16,
1337
+ paddingVertical: 12,
1338
+ backgroundColor: '#F7F7FA',
1339
+ borderTopWidth: 1,
1340
+ borderBottomWidth: 1,
1341
+ borderColor: AppColors.grayBorderSecondary,
1342
+ marginTop: 8,
1343
+ },
1344
+ screenSectionTitle: {
1345
+ fontFamily: AppFonts.interBold,
1346
+ fontSize: 13,
1347
+ color: AppColors.primaryBlack,
1348
+ },
1349
+ screenSectionCount: {
1350
+ fontFamily: AppFonts.interMedium,
1351
+ fontSize: 12,
1352
+ color: AppColors.grayText,
1353
+ },
1354
+ });
1355
+ export default styles;