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