react-native-inapp-inspector 1.1.13 → 1.1.15

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (250) hide show
  1. package/README.md +9 -34
  2. package/dist/commonjs/assets/svgAssets.d.ts +3 -0
  3. package/dist/commonjs/assets/svgAssets.js +17 -0
  4. package/dist/commonjs/components/AnalyticsEventCard.d.ts +1 -14
  5. package/dist/commonjs/components/AnalyticsEventCard.js +120 -50
  6. package/dist/commonjs/components/AnalyticsGraph.d.ts +2 -6
  7. package/dist/commonjs/components/AnalyticsGraph.js +8 -8
  8. package/dist/commonjs/components/AnalyticsTabView.d.ts +15 -0
  9. package/dist/commonjs/components/AnalyticsTabView.js +157 -0
  10. package/dist/commonjs/components/AnimatedEntrance.d.ts +1 -1
  11. package/dist/commonjs/components/AnimatedEntrance.js +2 -2
  12. package/dist/commonjs/components/ApiDetailView.d.ts +22 -0
  13. package/dist/commonjs/components/ApiDetailView.js +304 -0
  14. package/dist/commonjs/components/ApisTabView.d.ts +33 -0
  15. package/dist/commonjs/components/ApisTabView.js +235 -0
  16. package/dist/commonjs/components/CodeSnippet.d.ts +1 -5
  17. package/dist/commonjs/components/CodeSnippet.js +34 -34
  18. package/dist/commonjs/components/ConsoleLogCard.d.ts +1 -8
  19. package/dist/commonjs/components/ConsoleLogCard.js +262 -442
  20. package/dist/commonjs/components/ConsoleLogDetailView.d.ts +9 -0
  21. package/dist/commonjs/components/ConsoleLogDetailView.js +278 -0
  22. package/dist/commonjs/components/ConsoleLogsTabView.d.ts +24 -0
  23. package/dist/commonjs/components/ConsoleLogsTabView.js +354 -0
  24. package/dist/commonjs/components/DiffViewer.js +4 -2
  25. package/dist/commonjs/components/DomainHeader.js +66 -41
  26. package/dist/commonjs/components/EmptyState.d.ts +2 -2
  27. package/dist/commonjs/components/EmptyState.js +2 -2
  28. package/dist/commonjs/components/EndOfListFooter.d.ts +8 -0
  29. package/dist/commonjs/components/EndOfListFooter.js +90 -0
  30. package/dist/commonjs/components/ErrorBoundary.d.ts +5 -14
  31. package/dist/commonjs/components/ErrorBoundary.js +28 -28
  32. package/dist/commonjs/components/FloatingBubble.d.ts +14 -0
  33. package/dist/commonjs/components/FloatingBubble.js +75 -0
  34. package/dist/commonjs/components/HeadersSection.js +5 -3
  35. package/dist/commonjs/components/HighlightText.d.ts +1 -1
  36. package/dist/commonjs/components/HighlightText.js +5 -7
  37. package/dist/commonjs/components/Inspector/AnalyticsTab.d.ts +3 -0
  38. package/dist/commonjs/components/Inspector/AnalyticsTab.js +232 -0
  39. package/dist/commonjs/components/Inspector/ConsoleTab.d.ts +3 -0
  40. package/dist/commonjs/components/Inspector/ConsoleTab.js +410 -0
  41. package/dist/commonjs/components/Inspector/FabLauncher.d.ts +3 -0
  42. package/dist/commonjs/components/Inspector/FabLauncher.js +54 -0
  43. package/dist/commonjs/components/Inspector/InsightsDashboard.d.ts +3 -0
  44. package/dist/commonjs/components/Inspector/InsightsDashboard.js +619 -0
  45. package/dist/commonjs/components/Inspector/InspectorContext.d.ts +5 -0
  46. package/dist/commonjs/components/Inspector/InspectorContext.js +18 -0
  47. package/dist/commonjs/components/Inspector/InspectorHeader.d.ts +3 -0
  48. package/dist/commonjs/components/Inspector/InspectorHeader.js +452 -0
  49. package/dist/commonjs/components/Inspector/LogDetail.d.ts +3 -0
  50. package/dist/commonjs/components/Inspector/LogDetail.js +963 -0
  51. package/dist/commonjs/components/Inspector/MainScreen.d.ts +3 -0
  52. package/dist/commonjs/components/Inspector/MainScreen.js +68 -0
  53. package/dist/commonjs/components/Inspector/NavigationTracker.d.ts +3 -0
  54. package/dist/commonjs/components/Inspector/NavigationTracker.js +12 -0
  55. package/dist/commonjs/components/Inspector/NetworkDetail.d.ts +3 -0
  56. package/dist/commonjs/components/Inspector/NetworkDetail.js +405 -0
  57. package/dist/commonjs/components/Inspector/NetworkTab.d.ts +3 -0
  58. package/dist/commonjs/components/Inspector/NetworkTab.js +281 -0
  59. package/dist/commonjs/components/Inspector/ReduxTab.d.ts +3 -0
  60. package/dist/commonjs/components/Inspector/ReduxTab.js +75 -0
  61. package/dist/commonjs/components/Inspector/SettingsPanel.d.ts +3 -0
  62. package/dist/commonjs/components/Inspector/SettingsPanel.js +1476 -0
  63. package/dist/commonjs/components/Inspector/TabBar.d.ts +3 -0
  64. package/dist/commonjs/components/Inspector/TabBar.js +95 -0
  65. package/dist/commonjs/components/Inspector/WebViewTab.d.ts +3 -0
  66. package/dist/commonjs/components/Inspector/WebViewTab.js +757 -0
  67. package/dist/commonjs/components/InspectorHeader.d.ts +19 -0
  68. package/dist/commonjs/components/InspectorHeader.js +329 -0
  69. package/dist/commonjs/components/InspectorTabBar.d.ts +16 -0
  70. package/dist/commonjs/components/InspectorTabBar.js +90 -0
  71. package/dist/commonjs/components/JsonViewer.d.ts +4 -1
  72. package/dist/commonjs/components/JsonViewer.js +110 -171
  73. package/dist/commonjs/components/LogCard.js +109 -86
  74. package/dist/commonjs/components/MetaAccordion.d.ts +1 -10
  75. package/dist/commonjs/components/MetaAccordion.js +23 -21
  76. package/dist/commonjs/components/NavigationTracker.d.ts +7 -0
  77. package/dist/commonjs/components/NavigationTracker.js +76 -0
  78. package/dist/commonjs/components/NetworkIcons.d.ts +6 -0
  79. package/dist/commonjs/components/NetworkIcons.js +54 -8
  80. package/dist/commonjs/components/ReduxTabView.d.ts +9 -0
  81. package/dist/commonjs/components/ReduxTabView.js +56 -0
  82. package/dist/commonjs/components/ReduxTreeView.js +241 -200
  83. package/dist/commonjs/components/SegmentedTabs.d.ts +15 -0
  84. package/dist/commonjs/components/SegmentedTabs.js +52 -0
  85. package/dist/commonjs/components/SettingsView.d.ts +13 -0
  86. package/dist/commonjs/components/SettingsView.js +328 -0
  87. package/dist/commonjs/components/TouchableScale.d.ts +2 -2
  88. package/dist/commonjs/components/TouchableScale.js +2 -2
  89. package/dist/commonjs/components/TreeNode.js +2 -2
  90. package/dist/commonjs/constants/index.js +1 -12
  91. package/dist/commonjs/constants/version.d.ts +1 -1
  92. package/dist/commonjs/constants/version.js +1 -1
  93. package/dist/commonjs/customHooks/analyticsLogger.d.ts +8 -0
  94. package/dist/commonjs/customHooks/analyticsLogger.js +42 -1
  95. package/dist/commonjs/customHooks/consoleLogger.js +137 -13
  96. package/dist/commonjs/customHooks/networkLogger.d.ts +0 -1
  97. package/dist/commonjs/customHooks/networkLogger.js +0 -1
  98. package/dist/commonjs/customHooks/reduxLogger.d.ts +2 -9
  99. package/dist/commonjs/enums/index.d.ts +39 -0
  100. package/dist/commonjs/enums/index.js +50 -0
  101. package/dist/commonjs/helpers/index.d.ts +27 -1
  102. package/dist/commonjs/helpers/index.js +187 -12
  103. package/dist/commonjs/helpers/settingsStore.d.ts +2 -24
  104. package/dist/commonjs/i18n/en.json +144 -0
  105. package/dist/commonjs/i18n/index.d.ts +2 -0
  106. package/dist/commonjs/i18n/index.js +27 -0
  107. package/dist/commonjs/i18n/locales/en.json +314 -0
  108. package/dist/commonjs/index.d.ts +2 -3
  109. package/dist/commonjs/index.js +207 -4927
  110. package/dist/commonjs/styles/AppColors.d.ts +148 -0
  111. package/dist/commonjs/styles/AppColors.js +176 -0
  112. package/dist/commonjs/styles/common.d.ts +3 -0
  113. package/dist/commonjs/styles/common.js +201 -0
  114. package/dist/commonjs/styles/index.d.ts +219 -435
  115. package/dist/commonjs/styles/index.js +312 -488
  116. package/dist/commonjs/types/enums.d.ts +9 -0
  117. package/dist/commonjs/types/enums.js +4 -0
  118. package/dist/commonjs/types/index.d.ts +4 -111
  119. package/dist/commonjs/types/index.js +16 -0
  120. package/dist/commonjs/types/interfaces.d.ts +337 -0
  121. package/dist/commonjs/types/interfaces.js +2 -0
  122. package/dist/esm/assets/svgAssets.d.ts +3 -0
  123. package/dist/esm/assets/svgAssets.js +14 -0
  124. package/dist/esm/components/AnalyticsEventCard.d.ts +1 -14
  125. package/dist/esm/components/AnalyticsEventCard.js +118 -48
  126. package/dist/esm/components/AnalyticsGraph.d.ts +2 -6
  127. package/dist/esm/components/AnalyticsGraph.js +8 -8
  128. package/dist/esm/components/AnalyticsTabView.d.ts +15 -0
  129. package/dist/esm/components/AnalyticsTabView.js +151 -0
  130. package/dist/esm/components/AnimatedEntrance.d.ts +1 -1
  131. package/dist/esm/components/AnimatedEntrance.js +2 -2
  132. package/dist/esm/components/ApiDetailView.d.ts +22 -0
  133. package/dist/esm/components/ApiDetailView.js +264 -0
  134. package/dist/esm/components/ApisTabView.d.ts +33 -0
  135. package/dist/esm/components/ApisTabView.js +196 -0
  136. package/dist/esm/components/CodeSnippet.d.ts +1 -5
  137. package/dist/esm/components/CodeSnippet.js +34 -34
  138. package/dist/esm/components/ConsoleLogCard.d.ts +1 -8
  139. package/dist/esm/components/ConsoleLogCard.js +262 -409
  140. package/dist/esm/components/ConsoleLogDetailView.d.ts +9 -0
  141. package/dist/esm/components/ConsoleLogDetailView.js +271 -0
  142. package/dist/esm/components/ConsoleLogsTabView.d.ts +24 -0
  143. package/dist/esm/components/ConsoleLogsTabView.js +348 -0
  144. package/dist/esm/components/DiffViewer.js +4 -2
  145. package/dist/esm/components/DomainHeader.js +66 -41
  146. package/dist/esm/components/EmptyState.d.ts +2 -2
  147. package/dist/esm/components/EmptyState.js +2 -2
  148. package/dist/esm/components/EndOfListFooter.d.ts +8 -0
  149. package/dist/esm/components/EndOfListFooter.js +83 -0
  150. package/dist/esm/components/ErrorBoundary.d.ts +5 -14
  151. package/dist/esm/components/ErrorBoundary.js +29 -29
  152. package/dist/esm/components/FloatingBubble.d.ts +14 -0
  153. package/dist/esm/components/FloatingBubble.js +68 -0
  154. package/dist/esm/components/HeadersSection.js +5 -3
  155. package/dist/esm/components/HighlightText.d.ts +1 -1
  156. package/dist/esm/components/HighlightText.js +5 -7
  157. package/dist/esm/components/Inspector/AnalyticsTab.d.ts +3 -0
  158. package/dist/esm/components/Inspector/AnalyticsTab.js +194 -0
  159. package/dist/esm/components/Inspector/ConsoleTab.d.ts +3 -0
  160. package/dist/esm/components/Inspector/ConsoleTab.js +372 -0
  161. package/dist/esm/components/Inspector/FabLauncher.d.ts +3 -0
  162. package/dist/esm/components/Inspector/FabLauncher.js +49 -0
  163. package/dist/esm/components/Inspector/InsightsDashboard.d.ts +3 -0
  164. package/dist/esm/components/Inspector/InsightsDashboard.js +614 -0
  165. package/dist/esm/components/Inspector/InspectorContext.d.ts +5 -0
  166. package/dist/esm/components/Inspector/InspectorContext.js +13 -0
  167. package/dist/esm/components/Inspector/InspectorHeader.d.ts +3 -0
  168. package/dist/esm/components/Inspector/InspectorHeader.js +447 -0
  169. package/dist/esm/components/Inspector/LogDetail.d.ts +3 -0
  170. package/dist/esm/components/Inspector/LogDetail.js +925 -0
  171. package/dist/esm/components/Inspector/MainScreen.d.ts +3 -0
  172. package/dist/esm/components/Inspector/MainScreen.js +63 -0
  173. package/dist/esm/components/Inspector/NavigationTracker.d.ts +3 -0
  174. package/dist/esm/components/Inspector/NavigationTracker.js +10 -0
  175. package/dist/esm/components/Inspector/NetworkDetail.d.ts +3 -0
  176. package/dist/esm/components/Inspector/NetworkDetail.js +367 -0
  177. package/dist/esm/components/Inspector/NetworkTab.d.ts +3 -0
  178. package/dist/esm/components/Inspector/NetworkTab.js +243 -0
  179. package/dist/esm/components/Inspector/ReduxTab.d.ts +3 -0
  180. package/dist/esm/components/Inspector/ReduxTab.js +70 -0
  181. package/dist/esm/components/Inspector/SettingsPanel.d.ts +3 -0
  182. package/dist/esm/components/Inspector/SettingsPanel.js +1438 -0
  183. package/dist/esm/components/Inspector/TabBar.d.ts +3 -0
  184. package/dist/esm/components/Inspector/TabBar.js +90 -0
  185. package/dist/esm/components/Inspector/WebViewTab.d.ts +3 -0
  186. package/dist/esm/components/Inspector/WebViewTab.js +752 -0
  187. package/dist/esm/components/InspectorHeader.d.ts +19 -0
  188. package/dist/esm/components/InspectorHeader.js +323 -0
  189. package/dist/esm/components/InspectorTabBar.d.ts +16 -0
  190. package/dist/esm/components/InspectorTabBar.js +84 -0
  191. package/dist/esm/components/JsonViewer.d.ts +4 -1
  192. package/dist/esm/components/JsonViewer.js +111 -172
  193. package/dist/esm/components/LogCard.js +111 -88
  194. package/dist/esm/components/MetaAccordion.d.ts +1 -10
  195. package/dist/esm/components/MetaAccordion.js +23 -21
  196. package/dist/esm/components/NavigationTracker.d.ts +7 -0
  197. package/dist/esm/components/NavigationTracker.js +39 -0
  198. package/dist/esm/components/NetworkIcons.d.ts +6 -0
  199. package/dist/esm/components/NetworkIcons.js +46 -6
  200. package/dist/esm/components/ReduxTabView.d.ts +9 -0
  201. package/dist/esm/components/ReduxTabView.js +50 -0
  202. package/dist/esm/components/ReduxTreeView.js +243 -202
  203. package/dist/esm/components/SegmentedTabs.d.ts +15 -0
  204. package/dist/esm/components/SegmentedTabs.js +47 -0
  205. package/dist/esm/components/SettingsView.d.ts +13 -0
  206. package/dist/esm/components/SettingsView.js +321 -0
  207. package/dist/esm/components/TouchableScale.d.ts +2 -2
  208. package/dist/esm/components/TouchableScale.js +2 -2
  209. package/dist/esm/components/TreeNode.js +2 -2
  210. package/dist/esm/constants/index.js +1 -12
  211. package/dist/esm/constants/version.d.ts +1 -1
  212. package/dist/esm/constants/version.js +1 -1
  213. package/dist/esm/customHooks/analyticsLogger.d.ts +8 -0
  214. package/dist/esm/customHooks/analyticsLogger.js +37 -0
  215. package/dist/esm/customHooks/consoleLogger.js +137 -13
  216. package/dist/esm/customHooks/networkLogger.d.ts +0 -1
  217. package/dist/esm/customHooks/networkLogger.js +0 -1
  218. package/dist/esm/customHooks/reduxLogger.d.ts +2 -9
  219. package/dist/esm/enums/index.d.ts +39 -0
  220. package/dist/esm/enums/index.js +47 -0
  221. package/dist/esm/helpers/index.d.ts +27 -1
  222. package/dist/esm/helpers/index.js +180 -11
  223. package/dist/esm/helpers/settingsStore.d.ts +2 -24
  224. package/dist/esm/i18n/en.json +144 -0
  225. package/dist/esm/i18n/index.d.ts +2 -0
  226. package/dist/esm/i18n/index.js +22 -0
  227. package/dist/esm/i18n/locales/en.json +314 -0
  228. package/dist/esm/index.d.ts +2 -3
  229. package/dist/esm/index.js +207 -4923
  230. package/dist/esm/styles/AppColors.d.ts +148 -0
  231. package/dist/esm/styles/AppColors.js +176 -0
  232. package/dist/esm/styles/common.d.ts +3 -0
  233. package/dist/esm/styles/common.js +197 -0
  234. package/dist/esm/styles/index.d.ts +219 -435
  235. package/dist/esm/styles/index.js +312 -488
  236. package/dist/esm/types/enums.d.ts +9 -0
  237. package/dist/esm/types/enums.js +3 -0
  238. package/dist/esm/types/index.d.ts +4 -111
  239. package/dist/esm/types/index.js +2 -1
  240. package/dist/esm/types/interfaces.d.ts +337 -0
  241. package/dist/esm/types/interfaces.js +1 -0
  242. package/example/App.tsx +88 -1
  243. package/example/android/app/build.gradle +29 -1
  244. package/example/android/app/src/main/java/com/example/MainApplication.kt +25 -0
  245. package/example/android/build.gradle +31 -4
  246. package/example/android/gradle/wrapper/gradle-wrapper.properties +1 -1
  247. package/example/android/gradle.properties +1 -0
  248. package/example/android/settings.gradle +20 -1
  249. package/example/package-lock.json +1 -1
  250. package/package.json +3 -1
@@ -1,4 +1,6 @@
1
1
  import AppColors from './AppColors';
2
+ import commonStyles from './common';
3
+ export { commonStyles };
2
4
  export declare const getRawStyles: (colors: typeof AppColors) => {
3
5
  header: {
4
6
  flexDirection: string;
@@ -37,40 +39,6 @@ export declare const getRawStyles: (colors: typeof AppColors) => {
37
39
  letterSpacing: number;
38
40
  paddingBottom: number;
39
41
  };
40
- headerButtonGroup: {
41
- flexDirection: string;
42
- alignItems: string;
43
- backgroundColor: string;
44
- borderRadius: number;
45
- padding: number;
46
- borderWidth: number;
47
- borderColor: string;
48
- };
49
- headerGroupButton: {
50
- flexDirection: string;
51
- alignItems: string;
52
- paddingHorizontal: number;
53
- paddingVertical: number;
54
- borderRadius: number;
55
- gap: number;
56
- };
57
- headerGroupButtonActive: {
58
- backgroundColor: string;
59
- shadowColor: string;
60
- shadowOffset: {
61
- width: number;
62
- height: number;
63
- };
64
- shadowOpacity: number;
65
- shadowRadius: number;
66
- elevation: number;
67
- };
68
- headerGroupButtonText: {
69
- fontFamily: string;
70
- fontSize: number;
71
- color: string;
72
- letterSpacing: number;
73
- };
74
42
  headerDetailCenter: {
75
43
  alignItems: string;
76
44
  justifyContent: string;
@@ -159,19 +127,6 @@ export declare const getRawStyles: (colors: typeof AppColors) => {
159
127
  fontSize: number;
160
128
  letterSpacing: number;
161
129
  };
162
- iconBtnMinimal: {
163
- padding: number;
164
- };
165
- closeButtonSquare: {
166
- width: number;
167
- height: number;
168
- borderRadius: number;
169
- backgroundColor: string;
170
- alignItems: string;
171
- justifyContent: string;
172
- borderWidth: number;
173
- borderColor: string;
174
- };
175
130
  listContent: {
176
131
  paddingBottom: number;
177
132
  };
@@ -198,10 +153,15 @@ export declare const getRawStyles: (colors: typeof AppColors) => {
198
153
  detailScroll: {
199
154
  flex: number;
200
155
  };
201
- detailContent: {
202
- paddingHorizontal: number;
203
- paddingTop: number;
204
- paddingBottom: number;
156
+ closeButtonSquare: {
157
+ width: number;
158
+ height: number;
159
+ borderRadius: number;
160
+ backgroundColor: string;
161
+ alignItems: string;
162
+ justifyContent: string;
163
+ borderWidth: number;
164
+ borderColor: string;
205
165
  };
206
166
  fabWrapper: {
207
167
  position: string;
@@ -219,16 +179,6 @@ export declare const getRawStyles: (colors: typeof AppColors) => {
219
179
  shadowOpacity: number;
220
180
  shadowRadius: number;
221
181
  };
222
- fabIconContainer: {
223
- backgroundColor: string;
224
- borderRadius: number;
225
- width: number;
226
- height: number;
227
- borderWidth: number;
228
- borderColor: string;
229
- alignItems: string;
230
- justifyContent: string;
231
- };
232
182
  fabPulseRing: {
233
183
  position: string;
234
184
  width: number;
@@ -252,37 +202,14 @@ export declare const getRawStyles: (colors: typeof AppColors) => {
252
202
  rotate: string;
253
203
  }[];
254
204
  };
255
- fab: {
256
- width: number;
257
- height: number;
258
- borderRadius: number;
259
- alignItems: string;
260
- justifyContent: string;
261
- backgroundColor: string;
262
- shadowColor: string;
263
- shadowOffset: {
264
- width: number;
265
- height: number;
266
- };
267
- shadowOpacity: number;
268
- shadowRadius: number;
269
- elevation: number;
270
- };
271
- fabText: {
272
- fontFamily: string;
273
- color: string;
274
- fontSize: number;
275
- };
276
- fabBadge: {
205
+ fabGreenDot: {
277
206
  position: string;
278
207
  top: number;
279
208
  right: number;
280
- minWidth: number;
209
+ width: number;
281
210
  height: number;
282
211
  borderRadius: number;
283
- alignItems: string;
284
- justifyContent: string;
285
- paddingHorizontal: number;
212
+ backgroundColor: string;
286
213
  borderWidth: number;
287
214
  borderColor: string;
288
215
  shadowColor: string;
@@ -294,41 +221,6 @@ export declare const getRawStyles: (colors: typeof AppColors) => {
294
221
  shadowRadius: number;
295
222
  elevation: number;
296
223
  };
297
- fabBadgeNormal: {
298
- backgroundColor: string;
299
- };
300
- fabBadgeError: {
301
- backgroundColor: string;
302
- };
303
- fabBadgeText: {
304
- fontFamily: string;
305
- color: string;
306
- fontSize: number;
307
- };
308
- statBox: {
309
- flex: number;
310
- alignItems: string;
311
- justifyContent: string;
312
- };
313
- statValue: {
314
- fontFamily: string;
315
- color: string;
316
- fontSize: number;
317
- };
318
- statLabel: {
319
- fontFamily: string;
320
- color: string;
321
- fontSize: number;
322
- marginTop: number;
323
- textTransform: string;
324
- letterSpacing: number;
325
- };
326
- miniGraphWrap: {
327
- marginTop: number;
328
- height: number;
329
- alignItems: string;
330
- justifyContent: string;
331
- };
332
224
  toolbarRow: {
333
225
  flexDirection: string;
334
226
  alignItems: string;
@@ -343,12 +235,6 @@ export declare const getRawStyles: (colors: typeof AppColors) => {
343
235
  alignItems: string;
344
236
  gap: number;
345
237
  };
346
- toolbarDivider: {
347
- width: number;
348
- height: number;
349
- backgroundColor: string;
350
- marginHorizontal: number;
351
- };
352
238
  toolbarBtn: {
353
239
  width: number;
354
240
  height: number;
@@ -412,10 +298,11 @@ export declare const getRawStyles: (colors: typeof AppColors) => {
412
298
  marginRight: number;
413
299
  };
414
300
  statusFilterChip: {
301
+ flexDirection: string;
302
+ alignItems: string;
415
303
  paddingHorizontal: number;
416
304
  height: number;
417
305
  justifyContent: string;
418
- alignItems: string;
419
306
  borderRadius: number;
420
307
  borderWidth: number;
421
308
  borderColor: string;
@@ -433,6 +320,29 @@ export declare const getRawStyles: (colors: typeof AppColors) => {
433
320
  borderColor: string;
434
321
  backgroundColor: string;
435
322
  };
323
+ filterCheckbox: {
324
+ width: number;
325
+ height: number;
326
+ borderRadius: number;
327
+ borderWidth: number;
328
+ borderColor: string;
329
+ backgroundColor: string;
330
+ alignItems: string;
331
+ justifyContent: string;
332
+ marginRight: number;
333
+ };
334
+ filterCheckboxActive: {
335
+ borderColor: string;
336
+ };
337
+ filterChipIcon: {
338
+ marginRight: number;
339
+ };
340
+ methodBadgeMini: {
341
+ width: number;
342
+ height: number;
343
+ borderRadius: number;
344
+ marginRight: number;
345
+ };
436
346
  statusFilterText: {
437
347
  fontFamily: string;
438
348
  color: string;
@@ -477,100 +387,84 @@ export declare const getRawStyles: (colors: typeof AppColors) => {
477
387
  clearBtn: {
478
388
  padding: number;
479
389
  };
480
- clearBtnText: {
481
- fontFamily: string;
482
- color: string;
483
- fontSize: number;
484
- };
485
- menuDropdown: {
486
- position: string;
487
- top: number;
488
- width: number;
489
- backgroundColor: string;
390
+ domainHeaderCard: {
391
+ marginHorizontal: number;
392
+ marginTop: number;
393
+ marginBottom: number;
394
+ paddingHorizontal: number;
395
+ paddingVertical: number;
490
396
  borderRadius: number;
397
+ backgroundColor: string;
491
398
  borderWidth: number;
492
399
  borderColor: string;
493
- zIndex: number;
494
- shadowColor: string;
495
- shadowOffset: {
496
- width: number;
497
- height: number;
498
- };
499
- shadowOpacity: number;
500
- shadowRadius: number;
501
- elevation: number;
502
- overflow: string;
503
- };
504
- dropdownItem: {
505
- padding: number;
506
- borderBottomWidth: number;
507
- borderBottomColor: string;
508
400
  };
509
- domainHeaderSeparator: {
510
- marginTop: number;
511
- paddingTop: number;
512
- borderTopWidth: number;
513
- borderTopColor: string;
514
- };
515
- domainHeaderRow: {
401
+ domainHeaderTopRow: {
516
402
  flexDirection: string;
517
403
  alignItems: string;
518
404
  justifyContent: string;
519
- paddingLeft: number;
520
- paddingRight: number;
521
- marginTop: number;
522
- marginBottom: number;
523
405
  };
524
406
  domainHeaderLeft: {
525
407
  flexDirection: string;
526
408
  alignItems: string;
527
409
  flex: number;
528
- paddingRight: number;
529
410
  gap: number;
530
411
  };
531
- domainHeaderText: {
412
+ domainIconWrap: {
413
+ width: number;
414
+ height: number;
415
+ borderRadius: number;
416
+ alignItems: string;
417
+ justifyContent: string;
418
+ };
419
+ domainTitleText: {
532
420
  fontFamily: string;
533
421
  fontSize: number;
534
422
  fontWeight: string;
423
+ color: string;
535
424
  textTransform: string;
536
- flexShrink: number;
537
- marginLeft: number;
538
425
  };
539
- domainSubRow: {
426
+ domainSummaryRow: {
540
427
  flexDirection: string;
541
428
  alignItems: string;
542
- flexWrap: string;
429
+ gap: number;
543
430
  marginTop: number;
544
431
  };
545
- domainTimestamp: {
432
+ domainSummaryText: {
546
433
  fontFamily: string;
547
434
  fontSize: number;
548
435
  color: string;
549
436
  };
550
- domainMethodCount: {
437
+ domainPctText: {
551
438
  fontFamily: string;
552
439
  fontSize: number;
553
- marginLeft: number;
554
440
  };
555
- domainStatsGroup: {
441
+ domainProgressTrack: {
556
442
  flexDirection: string;
557
- alignItems: string;
443
+ height: number;
558
444
  borderRadius: number;
559
- borderWidth: number;
560
- borderColor: string;
561
445
  overflow: string;
562
446
  backgroundColor: string;
447
+ marginTop: number;
448
+ width: string;
449
+ };
450
+ domainProgressSegment: {
451
+ height: string;
452
+ };
453
+ domainStatsGroup: {
454
+ flexDirection: string;
455
+ alignItems: string;
456
+ gap: number;
563
457
  };
564
- groupBtnItem: {
458
+ domainStatPill: {
565
459
  flexDirection: string;
566
460
  alignItems: string;
567
461
  gap: number;
568
462
  paddingHorizontal: number;
569
463
  paddingVertical: number;
570
- };
571
- groupBtnBorderRight: {
572
- borderRightWidth: number;
573
- borderRightColor: string;
464
+ borderRadius: number;
465
+ borderWidth: number;
466
+ borderColor: string;
467
+ backgroundColor: string;
574
468
  };
575
469
  domainStatText: {
576
470
  fontFamily: string;
@@ -579,6 +473,7 @@ export declare const getRawStyles: (colors: typeof AppColors) => {
579
473
  treeNodeRow: {
580
474
  flexDirection: string;
581
475
  alignItems: string;
476
+ paddingLeft: number;
582
477
  paddingRight: number;
583
478
  };
584
479
  treeLines: {
@@ -633,11 +528,24 @@ export declare const getRawStyles: (colors: typeof AppColors) => {
633
528
  paddingTop: number;
634
529
  paddingBottom: number;
635
530
  };
636
- cardTopRow: {
531
+ cardHeaderRow: {
637
532
  flexDirection: string;
638
533
  alignItems: string;
534
+ justifyContent: string;
639
535
  marginBottom: number;
640
536
  };
537
+ cardHeaderLeft: {
538
+ flexDirection: string;
539
+ alignItems: string;
540
+ flex: number;
541
+ marginRight: number;
542
+ gap: number;
543
+ };
544
+ cardHeaderRight: {
545
+ flexDirection: string;
546
+ alignItems: string;
547
+ gap: number;
548
+ };
641
549
  smallCheckbox: {
642
550
  width: number;
643
551
  height: number;
@@ -647,7 +555,6 @@ export declare const getRawStyles: (colors: typeof AppColors) => {
647
555
  alignItems: string;
648
556
  justifyContent: string;
649
557
  backgroundColor: string;
650
- marginRight: number;
651
558
  };
652
559
  smallCheckboxChecked: {
653
560
  backgroundColor: string;
@@ -657,33 +564,86 @@ export declare const getRawStyles: (colors: typeof AppColors) => {
657
564
  fontFamily: string;
658
565
  color: string;
659
566
  fontSize: number;
660
- marginRight: number;
661
- minWidth: number;
662
567
  };
663
- chip: {
664
- flexDirection: string;
568
+ methodBadge: {
569
+ paddingHorizontal: number;
570
+ paddingVertical: number;
571
+ borderRadius: number;
665
572
  alignItems: string;
666
- gap: number;
573
+ justifyContent: string;
574
+ shadowColor: string;
575
+ shadowOffset: {
576
+ width: number;
577
+ height: number;
578
+ };
579
+ shadowOpacity: number;
580
+ shadowRadius: number;
581
+ elevation: number;
582
+ };
583
+ methodBadgeText: {
584
+ fontFamily: string;
585
+ fontSize: number;
586
+ letterSpacing: number;
587
+ };
588
+ cardHostText: {
589
+ fontFamily: string;
590
+ fontSize: number;
591
+ color: string;
592
+ flexShrink: number;
593
+ };
594
+ statusPill: {
667
595
  paddingHorizontal: number;
668
596
  paddingVertical: number;
669
597
  borderRadius: number;
670
598
  borderWidth: number;
599
+ alignItems: string;
600
+ justifyContent: string;
601
+ };
602
+ statusPillText: {
603
+ fontFamily: string;
604
+ fontSize: number;
605
+ };
606
+ cardSlugBox: {
607
+ flexDirection: string;
608
+ alignItems: string;
609
+ justifyContent: string;
610
+ backgroundColor: string;
611
+ borderRadius: number;
612
+ borderWidth: number;
613
+ borderColor: string;
614
+ paddingHorizontal: number;
615
+ paddingVertical: number;
616
+ marginVertical: number;
617
+ gap: number;
618
+ };
619
+ slugLeft: {
620
+ flexDirection: string;
621
+ alignItems: string;
622
+ flex: number;
623
+ gap: number;
671
624
  };
672
- chipText: {
625
+ slugTag: {
626
+ fontFamily: string;
627
+ fontSize: number;
628
+ color: string;
629
+ letterSpacing: number;
630
+ };
631
+ slugText: {
673
632
  fontFamily: string;
674
633
  fontSize: number;
634
+ color: string;
635
+ flexShrink: number;
675
636
  };
676
- cardMiddleRow: {
637
+ slugRight: {
677
638
  flexDirection: string;
678
639
  alignItems: string;
679
- justifyContent: string;
680
- marginBottom: number;
640
+ gap: number;
681
641
  };
682
- cardBottomRow: {
642
+ cardFooterRow: {
683
643
  flexDirection: string;
684
644
  alignItems: string;
685
645
  justifyContent: string;
686
- marginBottom: number;
646
+ marginTop: number;
687
647
  };
688
648
  cardDateRow: {
689
649
  flexDirection: string;
@@ -696,73 +656,29 @@ export declare const getRawStyles: (colors: typeof AppColors) => {
696
656
  fontSize: number;
697
657
  letterSpacing: number;
698
658
  };
699
- cardMetaRow: {
659
+ cardFooterRight: {
700
660
  flexDirection: string;
701
661
  alignItems: string;
702
662
  gap: number;
703
- flexShrink: number;
704
- };
705
- urlPathText: {
706
- fontFamily: string;
707
- color: string;
708
- fontSize: number;
709
- flexShrink: number;
710
- };
711
- urlDomainText: {
712
- fontFamily: string;
713
- color: string;
714
- fontSize: number;
715
- flex: number;
716
- };
717
- requestTypeText: {
718
- fontFamily: string;
719
- color: string;
720
- fontSize: number;
721
663
  };
722
- methodBadge: {
664
+ chip: {
665
+ flexDirection: string;
666
+ alignItems: string;
667
+ gap: number;
723
668
  paddingHorizontal: number;
724
669
  paddingVertical: number;
725
670
  borderRadius: number;
726
- marginRight: number;
727
- minWidth: number;
728
- alignItems: string;
729
- justifyContent: string;
730
- shadowColor: string;
731
- shadowOffset: {
732
- width: number;
733
- height: number;
734
- };
735
- shadowOpacity: number;
736
- shadowRadius: number;
737
- elevation: number;
671
+ borderWidth: number;
738
672
  };
739
- methodBadgeText: {
673
+ chipText: {
740
674
  fontFamily: string;
741
675
  fontSize: number;
742
- letterSpacing: number;
743
- };
744
- timelineTrack: {
745
- height: number;
746
- backgroundColor: string;
747
- marginTop: number;
748
- borderRadius: number;
749
- overflow: string;
750
- position: string;
751
- };
752
- timelineBar: {
753
- position: string;
754
- height: string;
755
- borderRadius: number;
756
676
  };
757
677
  empty: {
758
678
  flex: number;
759
679
  alignItems: string;
760
680
  justifyContent: string;
761
681
  };
762
- emptyIcon: {
763
- fontSize: number;
764
- color: string;
765
- };
766
682
  emptyContainer: {
767
683
  flex: number;
768
684
  alignItems: string;
@@ -851,34 +767,6 @@ export declare const getRawStyles: (colors: typeof AppColors) => {
851
767
  alignItems: string;
852
768
  gap: number;
853
769
  };
854
- detailMethodLabel: {
855
- fontFamily: string;
856
- fontSize: number;
857
- letterSpacing: number;
858
- };
859
- detailUrlContainer: {
860
- backgroundColor: string;
861
- borderRadius: number;
862
- padding: number;
863
- borderWidth: number;
864
- borderColor: string;
865
- shadowColor: string;
866
- shadowOffset: {
867
- width: number;
868
- height: number;
869
- };
870
- shadowOpacity: number;
871
- shadowRadius: number;
872
- elevation: number;
873
- };
874
- detailUrl: {
875
- fontFamily: string;
876
- color: string;
877
- fontSize: number;
878
- lineHeight: number;
879
- textDecorationLine: string;
880
- letterSpacing: number;
881
- };
882
770
  metaContainer: {
883
771
  backgroundColor: string;
884
772
  borderWidth: number;
@@ -912,11 +800,6 @@ export declare const getRawStyles: (colors: typeof AppColors) => {
912
800
  letterSpacing: number;
913
801
  textTransform: string;
914
802
  };
915
- metaChevron: {
916
- fontFamily: string;
917
- color: string;
918
- fontSize: number;
919
- };
920
803
  metaBody: {
921
804
  paddingHorizontal: number;
922
805
  paddingBottom: number;
@@ -962,11 +845,6 @@ export declare const getRawStyles: (colors: typeof AppColors) => {
962
845
  fontFamily: string;
963
846
  fontSize: number;
964
847
  };
965
- seperator: {
966
- height: number;
967
- backgroundColor: string;
968
- marginVertical: number;
969
- };
970
848
  detailSearchRow: {
971
849
  flexDirection: string;
972
850
  alignItems: string;
@@ -1191,29 +1069,32 @@ export declare const getRawStyles: (colors: typeof AppColors) => {
1191
1069
  codeSyntax: {
1192
1070
  color: string;
1193
1071
  fontFamily: string;
1072
+ fontSize: number;
1073
+ lineHeight: number;
1194
1074
  };
1195
1075
  codeKey: {
1196
1076
  color: string;
1197
1077
  fontFamily: string;
1078
+ fontSize: number;
1079
+ lineHeight: number;
1198
1080
  };
1199
1081
  codeText: {
1200
1082
  color: string;
1201
1083
  fontFamily: string;
1084
+ fontSize: number;
1085
+ lineHeight: number;
1202
1086
  };
1203
1087
  codeTextNil: {
1204
1088
  color: string;
1205
1089
  fontFamily: string;
1090
+ fontSize: number;
1091
+ lineHeight: number;
1206
1092
  };
1207
1093
  treeRow: {
1208
1094
  flexDirection: string;
1209
1095
  alignItems: string;
1210
1096
  paddingVertical: number;
1211
1097
  };
1212
- treeChevron: {
1213
- fontFamily: string;
1214
- color: string;
1215
- marginRight: number;
1216
- };
1217
1098
  treeKeyMargin: {
1218
1099
  marginRight: number;
1219
1100
  };
@@ -1474,63 +1355,6 @@ export declare const getRawStyles: (colors: typeof AppColors) => {
1474
1355
  fontFamily: string;
1475
1356
  fontSize: number;
1476
1357
  };
1477
- tabBar: {
1478
- flexDirection: string;
1479
- backgroundColor: string;
1480
- paddingHorizontal: number;
1481
- paddingTop: number;
1482
- paddingBottom: number;
1483
- gap: number;
1484
- };
1485
- tabItem: {
1486
- paddingHorizontal: number;
1487
- paddingVertical: number;
1488
- borderRadius: number;
1489
- alignItems: string;
1490
- justifyContent: string;
1491
- backgroundColor: string;
1492
- };
1493
- tabItemActive: {
1494
- backgroundColor: string;
1495
- shadowColor: string;
1496
- shadowOpacity: number;
1497
- shadowRadius: number;
1498
- shadowOffset: {
1499
- width: number;
1500
- height: number;
1501
- };
1502
- elevation: number;
1503
- };
1504
- tabText: {
1505
- fontFamily: string;
1506
- fontSize: number;
1507
- color: string;
1508
- };
1509
- tabTextActive: {
1510
- color: string;
1511
- };
1512
- screenSectionHeader: {
1513
- flexDirection: string;
1514
- alignItems: string;
1515
- justifyContent: string;
1516
- paddingHorizontal: number;
1517
- paddingVertical: number;
1518
- backgroundColor: string;
1519
- borderTopWidth: number;
1520
- borderBottomWidth: number;
1521
- borderColor: string;
1522
- marginTop: number;
1523
- };
1524
- screenSectionTitle: {
1525
- fontFamily: string;
1526
- fontSize: number;
1527
- color: string;
1528
- };
1529
- screenSectionCount: {
1530
- fontFamily: string;
1531
- fontSize: number;
1532
- color: string;
1533
- };
1534
1358
  modalBackdrop: {
1535
1359
  flex: number;
1536
1360
  backgroundColor: string;
@@ -1595,25 +1419,17 @@ export declare const getRawStyles: (colors: typeof AppColors) => {
1595
1419
  };
1596
1420
  contentTabButtonTextActive: {
1597
1421
  color: string;
1598
- fontWeight: string;
1599
- };
1600
- insightsContainer: {
1601
- flex: number;
1602
- backgroundColor: string;
1603
- };
1604
- insightsContent: {
1605
- padding: number;
1606
- paddingBottom: number;
1607
- };
1608
- dashboardContainer: {
1609
- gap: number;
1422
+ fontFamily: string;
1610
1423
  };
1611
- dashboardModuleCard: {
1424
+ analyticsHeaderCard: {
1612
1425
  backgroundColor: string;
1613
1426
  borderRadius: number;
1614
1427
  borderWidth: number;
1615
1428
  borderColor: string;
1616
1429
  padding: number;
1430
+ marginHorizontal: number;
1431
+ marginTop: number;
1432
+ marginBottom: number;
1617
1433
  shadowColor: string;
1618
1434
  shadowOpacity: number;
1619
1435
  shadowRadius: number;
@@ -1623,126 +1439,94 @@ export declare const getRawStyles: (colors: typeof AppColors) => {
1623
1439
  };
1624
1440
  elevation: number;
1625
1441
  };
1626
- dashboardModuleHeader: {
1442
+ analyticsHeaderTop: {
1627
1443
  flexDirection: string;
1628
1444
  justifyContent: string;
1629
1445
  alignItems: string;
1630
1446
  marginBottom: number;
1631
- borderBottomWidth: number;
1632
- borderBottomColor: string;
1633
- paddingBottom: number;
1634
1447
  };
1635
- dashboardModuleTitle: {
1448
+ analyticsHeaderTitle: {
1449
+ fontFamily: string;
1450
+ fontSize: number;
1451
+ color: string;
1452
+ };
1453
+ statusDot: {
1454
+ width: number;
1455
+ height: number;
1456
+ borderRadius: number;
1457
+ };
1458
+ analyticsHeaderSubtitle: {
1636
1459
  fontFamily: string;
1637
1460
  fontSize: number;
1638
1461
  color: string;
1462
+ marginTop: number;
1639
1463
  };
1640
- dashboardModuleGoText: {
1464
+ analyticsHeaderToggle: {
1465
+ paddingVertical: number;
1466
+ paddingHorizontal: number;
1467
+ borderRadius: number;
1468
+ backgroundColor: string;
1469
+ borderWidth: number;
1470
+ borderColor: string;
1471
+ };
1472
+ analyticsHeaderToggleText: {
1641
1473
  fontFamily: string;
1642
1474
  fontSize: number;
1643
1475
  color: string;
1644
1476
  };
1645
- dashboardModuleGrid: {
1477
+ analyticsStatsRow: {
1646
1478
  flexDirection: string;
1647
- flexWrap: string;
1648
- justifyContent: string;
1649
1479
  gap: number;
1480
+ borderTopWidth: number;
1481
+ borderTopColor: string;
1482
+ paddingTop: number;
1650
1483
  };
1651
- dashboardGridItem: {
1484
+ analyticsStatBox: {
1652
1485
  flex: number;
1653
- minWidth: string;
1654
1486
  backgroundColor: string;
1655
1487
  borderRadius: number;
1656
1488
  paddingVertical: number;
1657
- paddingHorizontal: number;
1658
1489
  alignItems: string;
1659
- justifyContent: string;
1660
1490
  };
1661
- dashboardGridVal: {
1491
+ analyticsStatValue: {
1662
1492
  fontFamily: string;
1663
1493
  fontSize: number;
1664
1494
  color: string;
1665
1495
  };
1666
- dashboardGridLbl: {
1496
+ analyticsStatLabel: {
1667
1497
  fontFamily: string;
1668
1498
  fontSize: number;
1669
1499
  color: string;
1670
1500
  marginTop: number;
1671
1501
  };
1672
- analyticsCardRow: {};
1673
- analyticsTopEventsCard: {
1674
- marginHorizontal: number;
1675
- marginBottom: number;
1676
- backgroundColor: string;
1677
- borderRadius: number;
1678
- borderWidth: number;
1679
- borderColor: string;
1680
- paddingHorizontal: number;
1681
- paddingVertical: number;
1682
- shadowColor: string;
1683
- shadowOpacity: number;
1684
- shadowRadius: number;
1685
- shadowOffset: {
1686
- width: number;
1687
- height: number;
1688
- };
1689
- elevation: number;
1690
- };
1691
- analyticsTopEventsHeaderRow: {
1692
- flexDirection: string;
1693
- alignItems: string;
1694
- justifyContent: string;
1695
- marginBottom: number;
1696
- };
1697
- analyticsTopEventsTitle: {
1698
- fontFamily: string;
1699
- fontSize: number;
1700
- color: string;
1701
- letterSpacing: number;
1702
- textTransform: string;
1502
+ analyticsHeaderDetails: {
1503
+ borderTopWidth: number;
1504
+ borderTopColor: string;
1505
+ paddingTop: number;
1506
+ marginTop: number;
1703
1507
  };
1704
- analyticsTopEventsSubtitle: {
1508
+ detailsGroupTitle: {
1705
1509
  fontFamily: string;
1706
1510
  fontSize: number;
1707
1511
  color: string;
1708
- letterSpacing: number;
1512
+ marginBottom: number;
1709
1513
  };
1710
- analyticsTopEventRow: {
1514
+ detailsRow: {
1711
1515
  flexDirection: string;
1712
- alignItems: string;
1713
- marginBottom: number;
1714
- gap: number;
1516
+ justifyContent: string;
1517
+ paddingVertical: number;
1518
+ borderBottomWidth: number;
1519
+ borderBottomColor: string;
1715
1520
  };
1716
- analyticsTopEventName: {
1521
+ detailsKey: {
1717
1522
  fontFamily: string;
1718
1523
  fontSize: number;
1719
1524
  color: string;
1720
- flex: number;
1721
- };
1722
- analyticsTopEventBarWrap: {
1723
- flex: number;
1724
- height: number;
1725
- backgroundColor: string;
1726
- borderRadius: number;
1727
- overflow: string;
1728
- };
1729
- analyticsTopEventBar: {
1730
- height: string;
1731
- borderRadius: number;
1732
1525
  };
1733
- analyticsTopEventCount: {
1526
+ detailsValue: {
1734
1527
  fontFamily: string;
1735
1528
  fontSize: number;
1736
1529
  color: string;
1737
- width: number;
1738
- textAlign: string;
1739
- };
1740
- analyticsIconCircle: {
1741
- width: number;
1742
- height: number;
1743
- borderRadius: number;
1744
- alignItems: string;
1745
- justifyContent: string;
1746
1530
  };
1747
1531
  };
1748
1532
  declare const styles: any;